[
  {
    "path": ".gitignore",
    "content": "**/__pycache__\nruns/\nmodels/\ndatasets/\ndatasets\n.vscode/\ncore*\nvis_output/\ntest_vis/\nopenai\n.DS_Store\nXMem/weights/"
  },
  {
    "path": ".gitmodules",
    "content": "[submodule \"LLaMA-VID\"]\n\tpath = LLaMA-VID\n\turl = git@github.com:dvlab-research/LLaMA-VID.git"
  },
  {
    "path": "README.md",
    "content": "# VISA: Reasoning Video Object Segmentation via Large Language Model\n\n<font size=7><div align='center' >\n[![ GitHub stars ](https://badgen.net/github/stars/cilinyan/VISA)](https://github.com/cilinyan/VISA)\n[![arXiv](https://img.shields.io/badge/arXiv-2407.11325-972B24)](http://arxiv.org/abs/2407.11325)\n[![Static Badge](https://img.shields.io/badge/dataset-ReVOS-3F7EBC)](https://github.com/cilinyan/ReVOS-api)\n</div></font>\n\n<div align=center>\n<img src=\"assert/architecture.png\" style=\"width:100%;\">\n</div>\n\n## 🚀 Performance\n\n<div style=\"text-align: justify;\">\n  VISA demonstrates remarkable proficiency in handling complex segmentation tasks that require: (a) reasoning based on world knowledge; (b) inference of future events; and (c) a comprehensive understanding of video content.\n</div>\n\n<div align=center>\n<img src=\"assert/performance.png\" style=\"width:50%;\">\n</div>\n\n## 🛠️ Installation\n```shell\npip install -r requirements.txt\npip install flash-attn --no-build-isolation\n```\n\n## 🦄 Training and Validation\n\n### 1. Training Data Preparation\n\nBefore training, please download the datasets, and then configure the path in [dataset_config.py](utils/dataset_config.py).\n\n<details open>\n<summary> <strong>LISA's Dataset</strong> </summary>\n  \nFollow [LISA](https://github.com/dvlab-research/LISA/tree/main) to prepare LISA's datasets. The dataset folder should be stored in the `$LISA_ROOT` folder.\n\n```\nLISA_ROOT\n├── ade20k\n├── coco\n├── cocostuff\n├── llava_dataset\n├── mapillary\n├── reason_seg\n├── refer_seg\n└── vlpart\n```\n\n</details>\n\n\n<details open>\n<summary> <strong>Chat-UniVi's Dataset</strong> </summary>\n\nFollow [Chat-UniVi/Chat-UniVi-Instruct](https://huggingface.co/datasets/Chat-UniVi/Chat-UniVi-Instruct/tree/main) to prepare `Chat-UniVi-Instruct` datasets. The dataset folder should be stored in the `$ChatUniVi_ROOT` folder.\n```\nChatUniVi_ROOT\n├── Fine-tuning\n│   ├── MIMIC_imageonly\n│   └── VIDEO\n└── ScienceQA_tuning\n```\n\n</details>\n\n\n<details open>\n<summary> <strong>RVOS's Dataset</strong> </summary>\n\n1. Reasoning Video Segmentation Datasets: [ReVOS](https://github.com/cilinyan/ReVOS-api).\n2. Referring Video Segmentation Datasets: [Ref-Youtube-VOS](https://github.com/wjn922/ReferFormer/blob/main/docs/data.md), [Ref-DAVIS17](https://github.com/wjn922/ReferFormer/blob/main/docs/data.md), [MeViS](https://github.com/henghuiding/MeViS).\n   - Ref-Youtube-VOS: Download `mask_dict.pkl` from [OneDrive](https://mailsjlueducn-my.sharepoint.com/:f:/g/personal/yancl9918_mails_jlu_edu_cn/EqR9g3yWG5pPtVoil0EfsbgBJhCZ7YwaRG9w9GsYy1_N5g?e=JLaJfc) or [BaiduPan](https://pan.baidu.com/s/1mbJaDDy0UTlA7sysp0zypg?pwd=visa).\n   - Ref-DAVIS17: Download `mask_dict.pkl` from [OneDrive](https://mailsjlueducn-my.sharepoint.com/:f:/g/personal/yancl9918_mails_jlu_edu_cn/Eq8bmGqNcYxGhQ1bioN65q4B_gPxIabpJUjGaV5uqcaq3w?e=2J6Ldp) or [BaiduPan](https://pan.baidu.com/s/1Gg5qPvxRZMKDp0JrVRJ75w?pwd=visa).\n3. Open-Vocabulary Video Instance Segmentation Dataset: [LV-VIS](https://github.com/haochenheheda/LVVIS/tree/main).\n   Download `mask_dict.json` and `meta_expressions.json` from [OneDrive](https://mailsjlueducn-my.sharepoint.com/:f:/g/personal/yancl9918_mails_jlu_edu_cn/EttXAjMV8yFJhHMQwX3mIw0BP7dymKV-cuw4uAotDaAwYw?e=j6Y44X) or [BaiduPan](https://pan.baidu.com/s/1LOWPnuxXF_LXGSL7osRptA?pwd=visa). Then, put the annotations files in the `$RVOS_ROOT/lvvis/train` directory as follows.\n```\nRVOS_ROOT\n├── ReVOS\n│   ├── JPEGImages \n│   ├── mask_dict.json             \n│   ├── mask_dict_foreground.json   \n│   ├── meta_expressions_train_.json \n│   └── meta_expressions_valid_.json \n├── lvvis\n│   └── train\n|       ├── JPEGImages\n|       ├── mask_dict.json\n|       └── meta_expressions.json\n├── Ref-Youtube-VOS\n│   ├── meta_expressions\n|   |   ├── train/meta_expressions.json\n|   |   └── valid/meta_expressions.json\n│   ├── train\n|   |   ├── JPEGImages\n|   |   └── mask_dict.pkl\n│   └── valid\n|       └── JPEGImages\n├── davis17\n│   ├── meta_expressions\n|   |   ├── train/meta_expressions.json\n|   |   └── valid/meta_expressions.json\n│   ├── train\n|   |   ├── JPEGImages\n|   |   └── mask_dict.pkl\n│   └── valid\n|       ├── JPEGImages\n|       └── mask_dict.pkl\n└── mevis\n```\n\n</details>\n\n### 2. Pre-trained weights\n\n<details open>\n<summary> <strong>Chat-UniVi</strong> </summary>\n\nTo train VISA-7B or 13B, you need to download Chat-UniVi weights from [Chat-UniVi-7B](https://huggingface.co/Chat-UniVi/Chat-UniVi) and [Chat-UniVi-13B](https://huggingface.co/Chat-UniVi/Chat-UniVi-13B).\n\n</details>\n\n<details open>\n<summary> <strong>SAM</strong> </summary>\n\nDownload SAM ViT-H pre-trained weights from the [link](https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth).\n\n</details>\n\n### 3. Training VISA\n\n```shell\n# Training VISA-7B\nbash scripts/train_7b.sh \n\n# Extracting fp32 consolidated weights from a zero 1, 2 and 3 DeepSpeed checkpoints.\ncd /PATH/TO/VISA-7B/ckpt_model && python zero_to_fp32.py . ../pytorch_model.bin\n\n# Merge LoRA Weight\nCUDA_VISIBLE_DEVICES=\"\" python merge_lora_weights_and_save_hf_model.py \\\n  --version Chat-UniVi/Chat-UniVi \\\n  --weight /PATH/TO/VISA-7B/pytorch_model.bin \\\n  --save_path /PATH/TO/VISA-7B/hf_model\n```\n\n### 4. Validation\n\n<details open>\n<summary> <strong>1. Using `VISA` to generate predicted mask of each video <a href=\"https://github.com/cilinyan/VISA/blob/main/scripts/val_7b_video.sh\">[demo]</a></strong> </summary>\n\n```shell\ndeepspeed --master_port=24999 train_ds.py \\\n  --version=\"/PATH/TO/VISA-7B/hf_model\" \\\n  --vision_pretrained=\"/PATH/TO/sam_vit_h_4b8939.pth\" \\\n  --log_base_dir=\"/PATH/TO/LOG_BASE_DIR\" \\\n  --exp_name=\"val_7b\" \\\n  --balance_sample \\\n  --dataset=\"reason_seg\" \\\n  --sample_rates=\"13\" \\\n  --val_dataset \"revos_valid\" \\\n  --eval_only \n```\n\n</details>\n\n<details open>\n<summary> <strong>2. Using <a href=\"https://github.com/dvlab-research/LLaMA-VID\">LLaMA-VID</a> to generate target frame for each video</a></strong> </summary>\n\n> You can directly download the results of our run from [OneDrive](https://mailsjlueducn-my.sharepoint.com/:u:/g/personal/yancl9918_mails_jlu_edu_cn/ETmoJF2i8ZZBsgIwdELiL8gBfptZZoPWjx6Y0eH6Myr3sw?e=mTt6rO) or [BaiduPan](https://pan.baidu.com/s/1YWs6NLPvANfhgUBHKQwnBg?pwd=visa)\n\n- Run [http_server_mp.py](https://github.com/cilinyan/VISA/blob/main/utils_llamavid/llamavid_server.py) to build the API server for LLaMA-VID [`[demo]`](https://github.com/cilinyan/VISA/blob/c53d2cd31407eab583c5eb04f84fd95b4694f2ce/utils_llamavid/llamavid_server.py#L215-L220)\n   ```shell\n   python utils_llamavid/llamavid_server.py \\\n       --vision_tower /PATH/TO/eva_vit_g.pth \\\n       --image_processor /PATH/TO/openai/clip-vit-large-patch14 \\\n       --model-path /PATH/TO/YanweiLi/llama-vid-13b-full-224-video-fps-1\n   ```\n- Using the API for inference [`[demo]`](https://github.com/cilinyan/VISA/blob/c53d2cd31407eab583c5eb04f84fd95b4694f2ce/utils_llamavid/llamavid_client.py#L58-L63)\n  \n   ```shell\n   python utils_llamavid/llamavid_client.py \\\n       --video_root /PATH/TO/ReVOS/JPEGImages \\\n       --data_json_file /PATH/TO/ReVOS/meta_expressions_valid_.json\n   ```\n\n</details>\n\n<details open>\n<summary> <strong>3. Using <a href=\"https://github.com/cilinyan/VISA/blob/main/XMem/tracking.py\">XMem</a> for mask propagation <a href=\"https://github.com/cilinyan/VISA/blob/c53d2cd31407eab583c5eb04f84fd95b4694f2ce/XMem/tracking.py#L103-L110\">[demo]</a> </strong> </summary>\n</details>\n\n<details open>\n\n<summary> <strong>4. Evaluate ReVOS's performance <a href=\"https://github.com/cilinyan/VISA/blob/main/tools/eval_revos.py#L74-L81\">[demo]</a> </strong> </summary>\n\n```shell\ncd tools\npython eval_revos.py /PATH/TO/FINAL_ANNOTATION [ARGS]\n```\n  \n</details>\n\n## 📑 Todo list\n  \n- [x] Release code with `Text-guided Frame Sampler`'s Local Sampling\n\n- [ ] Release VISA model weights [issue #6](https://github.com/cilinyan/VISA/issues/6)\n\n- [ ] Release code with `Text-guided Frame Sampler`'s Global-Local Sampling\n\n## ⭐ Cite\n\nIf you find this project useful in your research, please consider citing:\n\n```\n@article{yan2024visa,\n  title={VISA: Reasoning Video Object Segmentation via Large Language Models},\n  author={Yan, Cilin and Wang, Haochen and Yan, Shilin and Jiang, Xiaolong and Hu, Yao and Kang, Guoliang and Xie, Weidi and Gavves, Efstratios},\n  journal={arXiv preprint arXiv:2407.11325},\n  year={2024}\n}\n```\n\n## 🎖️ Acknowledgement\nThis work is built upon the [LLaVA](https://github.com/haotian-liu/LLaVA), [SAM](https://github.com/facebookresearch/segment-anything), [LISA](https://github.com/dvlab-research/LISA), [Chat-UniVi](https://github.com/PKU-YuanGroup/Chat-UniVi), [MeViS](https://github.com/henghuiding/MeViS), [LLaMA-VID](https://github.com/dvlab-research/LLaMA-VID) and [XMem](https://github.com/hkchengrex/XMem).\n\n"
  },
  {
    "path": "XMem/dataset/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/dataset/range_transform.py",
    "content": "import torchvision.transforms as transforms\n\nim_mean = (124, 116, 104)\n\nim_normalization = transforms.Normalize(\n                    mean=[0.485, 0.456, 0.406],\n                    std=[0.229, 0.224, 0.225]\n                )\n\ninv_im_trans = transforms.Normalize(\n                mean=[-0.485/0.229, -0.456/0.224, -0.406/0.225],\n                std=[1/0.229, 1/0.224, 1/0.225])\n"
  },
  {
    "path": "XMem/dataset/reseed.py",
    "content": "import torch\nimport random\n\ndef reseed(seed):\n    random.seed(seed)\n    torch.manual_seed(seed)"
  },
  {
    "path": "XMem/dataset/static_dataset.py",
    "content": "import os\nfrom os import path\n\nimport torch\nfrom torch.utils.data.dataset import Dataset\nfrom torchvision import transforms\nfrom torchvision.transforms import InterpolationMode\nfrom PIL import Image\nimport numpy as np\n\nfrom dataset.range_transform import im_normalization, im_mean\nfrom dataset.tps import random_tps_warp\nfrom dataset.reseed import reseed\n\n\nclass StaticTransformDataset(Dataset):\n    \"\"\"\n    Generate pseudo VOS data by applying random transforms on static images.\n    Single-object only.\n\n    Method 0 - FSS style (class/1.jpg class/1.png)\n    Method 1 - Others style (XXX.jpg XXX.png)\n    \"\"\"\n    def __init__(self, parameters, num_frames=3, max_num_obj=1):\n        self.num_frames = num_frames\n        self.max_num_obj = max_num_obj\n\n        self.im_list = []\n        for parameter in parameters:\n            root, method, multiplier = parameter\n            if method == 0:\n                # Get images\n                classes = os.listdir(root)\n                for c in classes:\n                    imgs = os.listdir(path.join(root, c))\n                    jpg_list = [im for im in imgs if 'jpg' in im[-3:].lower()]\n\n                    joint_list = [path.join(root, c, im) for im in jpg_list]\n                    self.im_list.extend(joint_list * multiplier)\n\n            elif method == 1:\n                self.im_list.extend([path.join(root, im) for im in os.listdir(root) if '.jpg' in im] * multiplier)\n\n        print(f'{len(self.im_list)} images found.')\n\n        # These set of transform is the same for im/gt pairs, but different among the 3 sampled frames\n        self.pair_im_lone_transform = transforms.Compose([\n            transforms.ColorJitter(0.1, 0.05, 0.05, 0), # No hue change here as that's not realistic\n        ])\n\n        self.pair_im_dual_transform = transforms.Compose([\n            transforms.RandomAffine(degrees=20, scale=(0.9,1.1), shear=10, interpolation=InterpolationMode.BICUBIC, fill=im_mean),\n            transforms.Resize(384, InterpolationMode.BICUBIC),\n            transforms.RandomCrop((384, 384), pad_if_needed=True, fill=im_mean),\n        ])\n\n        self.pair_gt_dual_transform = transforms.Compose([\n            transforms.RandomAffine(degrees=20, scale=(0.9,1.1), shear=10, interpolation=InterpolationMode.BICUBIC, fill=0),\n            transforms.Resize(384, InterpolationMode.NEAREST),\n            transforms.RandomCrop((384, 384), pad_if_needed=True, fill=0),\n        ])\n\n\n        # These transform are the same for all pairs in the sampled sequence\n        self.all_im_lone_transform = transforms.Compose([\n            transforms.ColorJitter(0.1, 0.05, 0.05, 0.05),\n            transforms.RandomGrayscale(0.05),\n        ])\n\n        self.all_im_dual_transform = transforms.Compose([\n            transforms.RandomAffine(degrees=0, scale=(0.8, 1.5), fill=im_mean),\n            transforms.RandomHorizontalFlip(),\n        ])\n\n        self.all_gt_dual_transform = transforms.Compose([\n            transforms.RandomAffine(degrees=0, scale=(0.8, 1.5), fill=0),\n            transforms.RandomHorizontalFlip(),\n        ])\n\n        # Final transform without randomness\n        self.final_im_transform = transforms.Compose([\n            transforms.ToTensor(),\n            im_normalization,\n        ])\n\n        self.final_gt_transform = transforms.Compose([\n            transforms.ToTensor(),\n        ])\n\n    def _get_sample(self, idx):\n        im = Image.open(self.im_list[idx]).convert('RGB')\n        gt = Image.open(self.im_list[idx][:-3]+'png').convert('L')\n\n        sequence_seed = np.random.randint(2147483647)\n\n        images = []\n        masks = []\n        for _ in range(self.num_frames):\n            reseed(sequence_seed)\n            this_im = self.all_im_dual_transform(im)\n            this_im = self.all_im_lone_transform(this_im)\n            reseed(sequence_seed)\n            this_gt = self.all_gt_dual_transform(gt)\n\n            pairwise_seed = np.random.randint(2147483647)\n            reseed(pairwise_seed)\n            this_im = self.pair_im_dual_transform(this_im)\n            this_im = self.pair_im_lone_transform(this_im)\n            reseed(pairwise_seed)\n            this_gt = self.pair_gt_dual_transform(this_gt)\n\n            # Use TPS only some of the times\n            # Not because TPS is bad -- just that it is too slow and I need to speed up data loading\n            if np.random.rand() < 0.33:\n                this_im, this_gt = random_tps_warp(this_im, this_gt, scale=0.02)\n\n            this_im = self.final_im_transform(this_im)\n            this_gt = self.final_gt_transform(this_gt)\n\n            images.append(this_im)\n            masks.append(this_gt)\n\n        images = torch.stack(images, 0)\n        masks = torch.stack(masks, 0)\n\n        return images, masks.numpy()\n\n    def __getitem__(self, idx):\n        additional_objects = np.random.randint(self.max_num_obj)\n        indices = [idx, *np.random.randint(self.__len__(), size=additional_objects)]\n\n        merged_images = None\n        merged_masks = np.zeros((self.num_frames, 384, 384), dtype=np.int64)\n\n        for i, list_id in enumerate(indices):\n            images, masks = self._get_sample(list_id)\n            if merged_images is None:\n                merged_images = images\n            else:\n                merged_images = merged_images*(1-masks) + images*masks\n            merged_masks[masks[:,0]>0.5] = (i+1)\n\n        masks = merged_masks\n\n        labels = np.unique(masks[0])\n        # Remove background\n        labels = labels[labels!=0]\n        target_objects = labels.tolist()\n\n        # Generate one-hot ground-truth\n        cls_gt = np.zeros((self.num_frames, 384, 384), dtype=np.int64)\n        first_frame_gt = np.zeros((1, self.max_num_obj, 384, 384), dtype=np.int64)\n        for i, l in enumerate(target_objects):\n            this_mask = (masks==l)\n            cls_gt[this_mask] = i+1\n            first_frame_gt[0,i] = (this_mask[0])\n        cls_gt = np.expand_dims(cls_gt, 1)\n\n        info = {}\n        info['name'] = self.im_list[idx]\n        info['num_objects'] = max(1, len(target_objects))\n\n        # 1 if object exist, 0 otherwise\n        selector = [1 if i < info['num_objects'] else 0 for i in range(self.max_num_obj)]\n        selector = torch.FloatTensor(selector)\n\n        data = {\n            'rgb': merged_images,\n            'first_frame_gt': first_frame_gt,\n            'cls_gt': cls_gt,\n            'selector': selector,\n            'info': info\n        }\n\n        return data\n\n\n    def __len__(self):\n        return len(self.im_list)\n"
  },
  {
    "path": "XMem/dataset/tps.py",
    "content": "import numpy as np\nfrom PIL import Image\nimport cv2\nimport thinplate as tps\n\ncv2.setNumThreads(0)\n\ndef pick_random_points(h, w, n_samples):\n    y_idx = np.random.choice(np.arange(h), size=n_samples, replace=False)\n    x_idx = np.random.choice(np.arange(w), size=n_samples, replace=False)\n    return y_idx/h, x_idx/w\n\n\ndef warp_dual_cv(img, mask, c_src, c_dst):\n    dshape = img.shape\n    theta = tps.tps_theta_from_points(c_src, c_dst, reduced=True)\n    grid = tps.tps_grid(theta, c_dst, dshape)\n    mapx, mapy = tps.tps_grid_to_remap(grid, img.shape)\n    return cv2.remap(img, mapx, mapy, cv2.INTER_LINEAR), cv2.remap(mask, mapx, mapy, cv2.INTER_NEAREST)\n\n\ndef random_tps_warp(img, mask, scale, n_ctrl_pts=12):\n    \"\"\"\n    Apply a random TPS warp of the input image and mask\n    Uses randomness from numpy\n    \"\"\"\n    img = np.asarray(img)\n    mask = np.asarray(mask)\n\n    h, w = mask.shape\n    points = pick_random_points(h, w, n_ctrl_pts)\n    c_src = np.stack(points, 1)\n    c_dst = c_src + np.random.normal(scale=scale, size=c_src.shape)\n    warp_im, warp_gt = warp_dual_cv(img, mask, c_src, c_dst)\n\n    return Image.fromarray(warp_im), Image.fromarray(warp_gt)\n\n"
  },
  {
    "path": "XMem/dataset/util.py",
    "content": "import numpy as np\n\n\ndef all_to_onehot(masks, labels):\n    if len(masks.shape) == 3:\n        Ms = np.zeros((len(labels), masks.shape[0], masks.shape[1], masks.shape[2]), dtype=np.uint8)\n    else:\n        Ms = np.zeros((len(labels), masks.shape[0], masks.shape[1]), dtype=np.uint8)\n\n    for ni, l in enumerate(labels):\n        Ms[ni] = (masks == l).astype(np.uint8)\n        \n    return Ms\n"
  },
  {
    "path": "XMem/dataset/vos_dataset.py",
    "content": "import os\nfrom os import path, replace\n\nimport torch\nfrom torch.utils.data.dataset import Dataset\nfrom torchvision import transforms\nfrom torchvision.transforms import InterpolationMode\nfrom PIL import Image\nimport numpy as np\n\nfrom dataset.range_transform import im_normalization, im_mean\nfrom dataset.reseed import reseed\n\n\nclass VOSDataset(Dataset):\n    \"\"\"\n    Works for DAVIS/YouTubeVOS/BL30K training\n    For each sequence:\n    - Pick three frames\n    - Pick two objects\n    - Apply some random transforms that are the same for all frames\n    - Apply random transform to each of the frame\n    - The distance between frames is controlled\n    \"\"\"\n    def __init__(self, im_root, gt_root, max_jump, is_bl, subset=None, num_frames=3, max_num_obj=3, finetune=False):\n        self.im_root = im_root\n        self.gt_root = gt_root\n        self.max_jump = max_jump\n        self.is_bl = is_bl\n        self.num_frames = num_frames\n        self.max_num_obj = max_num_obj\n\n        self.videos = []\n        self.frames = {}\n\n        vid_list = sorted(os.listdir(self.im_root))\n        # Pre-filtering\n        for vid in vid_list:\n            if subset is not None:\n                if vid not in subset:\n                    continue\n            frames = sorted(os.listdir(os.path.join(self.im_root, vid)))\n            if len(frames) < num_frames:\n                continue\n            self.frames[vid] = frames\n            self.videos.append(vid)\n\n        print('%d out of %d videos accepted in %s.' % (len(self.videos), len(vid_list), im_root))\n\n        # These set of transform is the same for im/gt pairs, but different among the 3 sampled frames\n        self.pair_im_lone_transform = transforms.Compose([\n            transforms.ColorJitter(0.01, 0.01, 0.01, 0),\n        ])\n\n        self.pair_im_dual_transform = transforms.Compose([\n            transforms.RandomAffine(degrees=0 if finetune or self.is_bl else 15, shear=0 if finetune or self.is_bl else 10, interpolation=InterpolationMode.BILINEAR, fill=im_mean),\n        ])\n\n        self.pair_gt_dual_transform = transforms.Compose([\n            transforms.RandomAffine(degrees=0 if finetune or self.is_bl else 15, shear=0 if finetune or self.is_bl else 10, interpolation=InterpolationMode.NEAREST, fill=0),\n        ])\n\n        # These transform are the same for all pairs in the sampled sequence\n        self.all_im_lone_transform = transforms.Compose([\n            transforms.ColorJitter(0.1, 0.03, 0.03, 0),\n            transforms.RandomGrayscale(0.05),\n        ])\n\n        if self.is_bl:\n            # Use a different cropping scheme for the blender dataset because the image size is different\n            self.all_im_dual_transform = transforms.Compose([\n                transforms.RandomHorizontalFlip(),\n                transforms.RandomResizedCrop((384, 384), scale=(0.25, 1.00), interpolation=InterpolationMode.BILINEAR)\n            ])\n\n            self.all_gt_dual_transform = transforms.Compose([\n                transforms.RandomHorizontalFlip(),\n                transforms.RandomResizedCrop((384, 384), scale=(0.25, 1.00), interpolation=InterpolationMode.NEAREST)\n            ])\n        else:\n            self.all_im_dual_transform = transforms.Compose([\n                transforms.RandomHorizontalFlip(),\n                transforms.RandomResizedCrop((384, 384), scale=(0.36,1.00), interpolation=InterpolationMode.BILINEAR)\n            ])\n\n            self.all_gt_dual_transform = transforms.Compose([\n                transforms.RandomHorizontalFlip(),\n                transforms.RandomResizedCrop((384, 384), scale=(0.36,1.00), interpolation=InterpolationMode.NEAREST)\n            ])\n\n        # Final transform without randomness\n        self.final_im_transform = transforms.Compose([\n            transforms.ToTensor(),\n            im_normalization,\n        ])\n\n    def __getitem__(self, idx):\n        video = self.videos[idx]\n        info = {}\n        info['name'] = video\n\n        vid_im_path = path.join(self.im_root, video)\n        vid_gt_path = path.join(self.gt_root, video)\n        frames = self.frames[video]\n\n        trials = 0\n        while trials < 5:\n            info['frames'] = [] # Appended with actual frames\n\n            num_frames = self.num_frames\n            length = len(frames)\n            this_max_jump = min(len(frames), self.max_jump)\n\n            # iterative sampling\n            frames_idx = [np.random.randint(length)]\n            acceptable_set = set(range(max(0, frames_idx[-1]-this_max_jump), min(length, frames_idx[-1]+this_max_jump+1))).difference(set(frames_idx))\n            while(len(frames_idx) < num_frames):\n                idx = np.random.choice(list(acceptable_set))\n                frames_idx.append(idx)\n                new_set = set(range(max(0, frames_idx[-1]-this_max_jump), min(length, frames_idx[-1]+this_max_jump+1)))\n                acceptable_set = acceptable_set.union(new_set).difference(set(frames_idx))\n\n            frames_idx = sorted(frames_idx)\n            if np.random.rand() < 0.5:\n                # Reverse time\n                frames_idx = frames_idx[::-1]\n\n            sequence_seed = np.random.randint(2147483647)\n            images = []\n            masks = []\n            target_objects = []\n            for f_idx in frames_idx:\n                jpg_name = frames[f_idx][:-4] + '.jpg'\n                png_name = frames[f_idx][:-4] + '.png'\n                info['frames'].append(jpg_name)\n\n                reseed(sequence_seed)\n                this_im = Image.open(path.join(vid_im_path, jpg_name)).convert('RGB')\n                this_im = self.all_im_dual_transform(this_im)\n                this_im = self.all_im_lone_transform(this_im)\n                reseed(sequence_seed)\n                this_gt = Image.open(path.join(vid_gt_path, png_name)).convert('P')\n                this_gt = self.all_gt_dual_transform(this_gt)\n\n                pairwise_seed = np.random.randint(2147483647)\n                reseed(pairwise_seed)\n                this_im = self.pair_im_dual_transform(this_im)\n                this_im = self.pair_im_lone_transform(this_im)\n                reseed(pairwise_seed)\n                this_gt = self.pair_gt_dual_transform(this_gt)\n\n                this_im = self.final_im_transform(this_im)\n                this_gt = np.array(this_gt)\n\n                images.append(this_im)\n                masks.append(this_gt)\n\n            images = torch.stack(images, 0)\n\n            labels = np.unique(masks[0])\n            # Remove background\n            labels = labels[labels!=0]\n\n            if self.is_bl:\n                # Find large enough labels\n                good_lables = []\n                for l in labels:\n                    pixel_sum = (masks[0]==l).sum()\n                    if pixel_sum > 10*10:\n                        # OK if the object is always this small\n                        # Not OK if it is actually much bigger\n                        if pixel_sum > 30*30:\n                            good_lables.append(l)\n                        elif max((masks[1]==l).sum(), (masks[2]==l).sum()) < 20*20:\n                            good_lables.append(l)\n                labels = np.array(good_lables, dtype=np.uint8)\n            \n            if len(labels) == 0:\n                target_objects = []\n                trials += 1\n            else:\n                target_objects = labels.tolist()\n                break\n\n        if len(target_objects) > self.max_num_obj:\n            target_objects = np.random.choice(target_objects, size=self.max_num_obj, replace=False)\n\n        info['num_objects'] = max(1, len(target_objects))\n\n        masks = np.stack(masks, 0)\n\n        # Generate one-hot ground-truth\n        cls_gt = np.zeros((self.num_frames, 384, 384), dtype=np.int64)\n        first_frame_gt = np.zeros((1, self.max_num_obj, 384, 384), dtype=np.int64)\n        for i, l in enumerate(target_objects):\n            this_mask = (masks==l)\n            cls_gt[this_mask] = i+1\n            first_frame_gt[0,i] = (this_mask[0])\n        cls_gt = np.expand_dims(cls_gt, 1)\n\n        # 1 if object exist, 0 otherwise\n        selector = [1 if i < info['num_objects'] else 0 for i in range(self.max_num_obj)]\n        selector = torch.FloatTensor(selector)\n\n        data = {\n            'rgb': images,\n            'first_frame_gt': first_frame_gt,\n            'cls_gt': cls_gt,\n            'selector': selector,\n            'info': info,\n        }\n\n        return data\n\n    def __len__(self):\n        return len(self.videos)"
  },
  {
    "path": "XMem/eval.py",
    "content": "import os\nfrom os import path\nfrom argparse import ArgumentParser\nimport shutil\n\nimport torch\nimport torch.nn.functional as F\nfrom torch.utils.data import DataLoader\nimport numpy as np\nfrom PIL import Image\n\nfrom inference.data.test_datasets import LongTestDataset, DAVISTestDataset, YouTubeVOSTestDataset\nfrom inference.data.mask_mapper import MaskMapper\nfrom model.network import XMem\nfrom inference.inference_core import InferenceCore\n\nfrom tqdm import tqdm\ntry:\n    import hickle as hkl\nexcept ImportError:\n    print('Failed to import hickle. Fine if not using multi-scale testing.')\n\nparser = ArgumentParser()\nparser.add_argument('--model', default='./saves/XMem.pth')\nparser.add_argument('--meta_exp', type=str)\n\n# Data options\nparser.add_argument('--d16_path', default='../DAVIS/2016')\nparser.add_argument('--d17_path', default='../DAVIS/2017')\nparser.add_argument('--y18_path', default='../YouTube2018')\nparser.add_argument('--y19_path', default='../YouTube')\nparser.add_argument('--lv_path', default='../long_video_set')\n# For generic (G) evaluation, point to a folder that contains \"JPEGImages\" and \"Annotations\"\nparser.add_argument('--generic_path')\nparser.add_argument('--img_dir')\nparser.add_argument('--reversed', action='store_true')\nparser.add_argument('--split_part', type=int, default=0)\n\n\nparser.add_argument('--dataset', help='D16/D17/Y18/Y19/LV1/LV3/G', default='D17')\nparser.add_argument('--split', help='val/test', default='val')\nparser.add_argument('--output', default=None)\nparser.add_argument('--save_all', action='store_true', \n            help='Save all frames. Useful only in YouTubeVOS/long-time video', )\n\nparser.add_argument('--benchmark', action='store_true', help='enable to disable amp for FPS benchmarking')\n        \n# Long-term memory options\nparser.add_argument('--disable_long_term', action='store_true')\nparser.add_argument('--max_mid_term_frames', help='T_max in paper, decrease to save memory', type=int, default=10)\nparser.add_argument('--min_mid_term_frames', help='T_min in paper, decrease to save memory', type=int, default=5)\nparser.add_argument('--max_long_term_elements', help='LT_max in paper, increase if objects disappear for a long time', type=int, default=10000)\nparser.add_argument('--num_prototypes', help='P in paper', type=int, default=128)\n\nparser.add_argument('--top_k', type=int, default=30)\nparser.add_argument('--mem_every', help='r in paper. Increase to improve running speed.', type=int, default=5)\nparser.add_argument('--deep_update_every', help='Leave -1 normally to synchronize with mem_every', type=int, default=-1)\n\n# Multi-scale options\nparser.add_argument('--save_scores', action='store_true')\nparser.add_argument('--flip', action='store_true')\nparser.add_argument('--size', default=480, type=int, help='Resize the shorter side to this size. -1 to use original resolution. ')\n\nargs = parser.parse_args()\nconfig = vars(args)\nconfig['enable_long_term'] = not config['disable_long_term']\n\nif args.output is None:\n    args.output = f'../output/{args.dataset}_{args.split}'\n    print(f'Output path not provided. Defaulting to {args.output}')\n\n\"\"\"\nData preparation\n\"\"\"\nis_youtube = args.dataset.startswith('Y')\nis_davis = args.dataset.startswith('D')\nis_lv = args.dataset.startswith('LV')\n\nif is_youtube or args.save_scores:\n    out_path = path.join(args.output, 'Annotations')\nelse:\n    out_path = args.output\n\nif is_youtube:\n    if args.dataset == 'Y18':\n        yv_path = args.y18_path\n    elif args.dataset == 'Y19':\n        yv_path = args.y19_path\n\n    if args.split == 'val':\n        args.split = 'valid'\n        meta_dataset = YouTubeVOSTestDataset(data_root=yv_path, split='valid', size=args.size)\n    elif args.split == 'test':\n        meta_dataset = YouTubeVOSTestDataset(data_root=yv_path, split='test', size=args.size)\n    else:\n        raise NotImplementedError\n\nelif is_davis:\n    if args.dataset == 'D16':\n        if args.split == 'val':\n            # Set up Dataset, a small hack to use the image set in the 2017 folder because the 2016 one is of a different format\n            meta_dataset = DAVISTestDataset(args.d16_path, imset='../../2017/trainval/ImageSets/2016/val.txt', size=args.size)\n        else:\n            raise NotImplementedError\n        palette = None\n    elif args.dataset == 'D17':\n        if args.split == 'val':\n            meta_dataset = DAVISTestDataset(path.join(args.d17_path, 'trainval'), imset='2017/val.txt', size=args.size)\n        elif args.split == 'test':\n            meta_dataset = DAVISTestDataset(path.join(args.d17_path, 'test-dev'), imset='2017/test-dev.txt', size=args.size)\n        else:\n            raise NotImplementedError\n\nelif is_lv:\n    if args.dataset == 'LV1':\n        meta_dataset = LongTestDataset(args.meta_exp, path.join(args.lv_path, 'long_video'))\n    elif args.dataset == 'LV3':\n        meta_dataset = LongTestDataset(args.meta_exp, path.join(args.lv_path, 'long_video_x3'))\n    else:\n        raise NotImplementedError\nelif args.dataset == 'G':\n    meta_dataset = LongTestDataset(args.meta_exp, path.join(args.generic_path), size=args.size, img_dir=args.img_dir, reversed_=args.reversed, split_part=args.split_part)\n    if not args.save_all:\n        args.save_all = True\n        print('save_all is forced to be true in generic evaluation mode.')\nelse:\n    raise NotImplementedError\n\ntorch.autograd.set_grad_enabled(False)\n\n# Set up loader\nmeta_loader = meta_dataset.get_datasets()\n\n# Load our checkpoint\nnetwork = XMem(config, args.model).cuda().eval()\nif args.model is not None:\n    model_weights = torch.load(args.model)\n    network.load_weights(model_weights, init_as_zero_if_needed=True)\nelse:\n    print('No model loaded.')\n\ntotal_process_time = 0\ntotal_frames = 0\n# Start eval\nfor vid_reader in tqdm(meta_loader, total=len(meta_dataset)):\n\n    loader = DataLoader(vid_reader, batch_size=1, shuffle=False, num_workers=2)\n    vid_name = vid_reader.vid_name\n    vid_length = len(loader)\n    # no need to count usage for LT if the video is not that long anyway\n    config['enable_long_term_count_usage'] = (\n        config['enable_long_term'] and\n        (vid_length\n            / (config['max_mid_term_frames']-config['min_mid_term_frames'])\n            * config['num_prototypes'])\n        >= config['max_long_term_elements']\n    )\n\n    mapper = MaskMapper()\n    processor = InferenceCore(network, config=config)\n    first_mask_loaded = False\n\n    for ti, data in enumerate(loader):\n        with torch.cuda.amp.autocast(enabled=not args.benchmark):\n            rgb = data['rgb'].cuda()[0]\n            msk = data.get('mask')\n            info = data['info']\n            frame = info['frame'][0]\n            shape = info['shape']\n            need_resize = info['need_resize'][0]\n\n            \"\"\"\n            For timing see https://discuss.pytorch.org/t/how-to-measure-time-in-pytorch/26964\n            Seems to be very similar in testing as my previous timing method \n            with two cuda sync + time.time() in STCN though \n            \"\"\"\n            start = torch.cuda.Event(enable_timing=True)\n            end = torch.cuda.Event(enable_timing=True)\n            start.record()\n\n            if not first_mask_loaded:\n                if msk is not None:\n                    first_mask_loaded = True\n                else:\n                    # no point to do anything without a mask\n                    continue\n\n            if args.flip:\n                rgb = torch.flip(rgb, dims=[-1])\n                msk = torch.flip(msk, dims=[-1]) if msk is not None else None\n\n            # Map possibly non-continuous labels to continuous ones\n            if msk is not None:\n                msk, labels = mapper.convert_mask(msk[0].numpy())\n                msk = torch.Tensor(msk).cuda()\n                if need_resize:\n                    if msk.shape[0] == 0:\n                        print(vid_name)\n                    msk = vid_reader.resize_mask(msk.unsqueeze(0))[0]\n                processor.set_all_labels(list(mapper.remappings.values()))\n            else:\n                labels = None\n\n            # Run the model on this frame\n            prob = processor.step(rgb, msk, labels, end=(ti==vid_length-1))\n\n            # Upsample to original size if needed\n            if need_resize:\n                prob = F.interpolate(prob.unsqueeze(1), shape, mode='bilinear', align_corners=False)[:,0]\n\n            end.record()\n            torch.cuda.synchronize()\n            total_process_time += (start.elapsed_time(end)/1000)\n            total_frames += 1\n\n            if args.flip:\n                prob = torch.flip(prob, dims=[-1])\n\n            # Probability mask -> index mask\n            out_mask = torch.max(prob, dim=0).indices\n            out_mask = (out_mask.detach().cpu().numpy()).astype(np.uint8)\n\n            if args.save_scores:\n                prob = (prob.detach().cpu().numpy()*255).astype(np.uint8)\n\n            # Save the mask\n            if args.save_all or info['save'][0]:\n                this_out_path = path.join(out_path, vid_name)\n                os.makedirs(this_out_path, exist_ok=True)\n                out_mask = mapper.remap_index_mask(out_mask)\n                out_img = Image.fromarray(out_mask)\n                if vid_reader.get_palette() is not None:\n                    out_img.putpalette(vid_reader.get_palette())\n                out_img.save(os.path.join(this_out_path, frame[:-4]+'.png'))\n\n            if args.save_scores:\n                np_path = path.join(args.output, 'Scores', vid_name)\n                os.makedirs(np_path, exist_ok=True)\n                if ti==len(loader)-1:\n                    hkl.dump(mapper.remappings, path.join(np_path, f'backward.hkl'), mode='w')\n                if args.save_all or info['save'][0]:\n                    hkl.dump(prob, path.join(np_path, f'{frame[:-4]}.hkl'), mode='w', compression='lzf')\n\nprint(f'Total processing time: {total_process_time}')\nprint(f'Total processed frames: {total_frames}')\nprint(f'FPS: {total_frames / total_process_time}')\nprint(f'Max allocated memory (MB): {torch.cuda.max_memory_allocated() / (2**20)}')\n\nif not args.save_scores:\n    if is_youtube:\n        print('Making zip for YouTubeVOS...')\n        shutil.make_archive(path.join(args.output, path.basename(args.output)), 'zip', args.output, 'Annotations')\n    elif is_davis and args.split == 'test':\n        print('Making zip for DAVIS test-dev...')\n        shutil.make_archive(args.output, 'zip', args.output)\n"
  },
  {
    "path": "XMem/eval_batch.py",
    "content": "import os\nimport time\nimport torch\nimport argparse\nimport multiprocessing as mp\nfrom termcolor import colored\nfrom datetime import datetime\nfrom importlib.util import find_spec\nif find_spec(\"GPUtil\") is None: os.system(\"pip install gputil\")\nimport GPUtil\n\n_GPU_LIST = [_.id for _ in GPUtil.getGPUs()]\n_GPU_QUEUE = mp.Queue()\nfor _ in _GPU_LIST: _GPU_QUEUE.put(_)\n\ndef run_eval(meta_expression, temp_xmem_anno, final_xmem_anno, img_dir, split_part, cfgs=\" --reversed \"):\n    gpu_id = _GPU_QUEUE.get()\n    cmd = f\"CUDA_VISIBLE_DEVICES={gpu_id} python eval.py --meta_exp {meta_expression} --output {final_xmem_anno} --generic_path {temp_xmem_anno} --img_dir {img_dir} --split_part {split_part} --dataset G {cfgs}\"\n    print(f\"Running: {cmd}\")\n    os.system(cmd)\n    _GPU_QUEUE.put(gpu_id)\n\ndef main():\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--meta_expression\", type=str, help='/PATH/TO/ReVOS/meta_expressions_valid__llamavid.json')\n    parser.add_argument(\"--temp_xmem_anno\",  type=str, help='/PATH/TO/VISA_exp/revos_valid_XMem_temp/Annotations')\n    parser.add_argument(\"--final_xmem_anno\", type=str, help='/PATH/TO/VISA_exp/revos_valid_XMem_final/Annotations')\n    parser.add_argument(\"--img_dir\",         type=str, help='/PATH/TO/ReVOS/JPEGImages')\n    args = parser.parse_args()\n\n    p = mp.Pool(8)\n    for split_part in [0, 1, 2, 3]:\n        for cfgs in [\"  \", \" --reversed \"]:\n            p.apply_async(\n                run_eval,\n                args=(args.meta_expression, args.temp_xmem_anno, args.final_xmem_anno, args.img_dir, split_part, cfgs),\n                error_callback=lambda e: print(colored(e, \"red\"))\n            )\n    p.close()\n    p.join()\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "XMem/generate_xmem_data_single.py",
    "content": "import sys\nimport os\nimport os.path as osp\nimport glob\nimport cv2\nimport multiprocessing\nimport json\nimport argparse\nfrom tqdm import tqdm\nfrom termcolor import colored\n\n\"\"\"\npython generate_xmem_data_single.py \\\n    --video_root      /PATH/TO/VISA_exp/revos_valid/Annotations \\\n    --output_dir      /PATH/TO/VISA_exp/revos_valid_XMem_temp/Annotations \\\n    --final_xmem_anno /PATH/TO/VISA_exp/revos_valid_XMem_final/Annotations \\\n    --llama_vid_meta  /PATH/TO/ReVOS/meta_expressions_valid__llamavid.json\n\"\"\"\n\ndef generate(obj, temp_xmem_anno, final_xmem_anno):\n\n    obj_dir, video_name, obj_id, tp = obj\n    img_list = glob.glob(obj_dir + '/*.png')  # Mask\n    img_list.sort()\n    frame_id = int(len(img_list) * tp)\n    if frame_id == len(img_list):\n        frame_id -= 1\n    \n    used_img = img_list[frame_id]\n\n    img_output_path = osp.join(temp_xmem_anno, video_name, obj_id, osp.basename(used_img))\n    final_img_output_dir = osp.join(final_xmem_anno, video_name, obj_id)\n    img_output_dir = osp.dirname(img_output_path)\n    os.makedirs(img_output_dir, exist_ok=True)\n    os.makedirs(final_img_output_dir, exist_ok=True)\n    os.system('cp {} {}'.format(used_img, img_output_path))\n\n    img = cv2.imread(img_output_path)\n    if img.sum() == 0:\n        target_img_list = [i.split('/')[-1] for i in img_list]\n        for img_ in target_img_list:\n            print(os.path.join(final_img_output_dir, img_))\n            os.system('cp {} {}'.format(img_output_path, os.path.join(img_output_dir, img_)))\n            os.system('cp {} {}'.format(img_output_path, os.path.join(final_img_output_dir, img_)))\n    return 0\n\ndef main():\n    parser =  argparse.ArgumentParser(description='rgvos')\n    parser.add_argument('--video_root',      type=str, help='/PATH/TO/VISA_exp/revos_valid/Annotations', )\n    parser.add_argument('--temp_xmem_anno',  type=str, help='/PATH/TO/VISA_exp/revos_valid_XMem_temp/Annotations', )  # 保存单帧 Mask 的路径\n    parser.add_argument('--final_xmem_anno', type=str, help='/PATH/TO/VISA_exp/revos_valid_XMem_final/Annotations', )  # 保存 XMem 最后输出结果的路径\n    parser.add_argument(\"--llama_vid_meta\",  type=str, help='/PATH/TO/ReVOS/meta_expressions_valid__llamavid.json', )\n    args = parser.parse_args()\n\n    video_root      = args.video_root\n    temp_xmem_anno  = args.temp_xmem_anno\n    final_xmem_anno = args.final_xmem_anno\n    os.makedirs(temp_xmem_anno, exist_ok=True)\n\n    data = json.load(open(args.llama_vid_meta, 'r'))['videos']\n\n    all_obj_list = []\n    for video_name in data.keys():\n        exps = data[video_name]['expressions']\n        for obj_id in exps.keys():\n            tp = exps[obj_id]['tp']\n            obj_dir = os.path.join(video_root, video_name, obj_id)\n            all_obj_list.append([obj_dir, video_name, obj_id, tp])\n\n    print('start')\n    cpu_num = multiprocessing.cpu_count()-1\n    print(\"cpu_num:\", cpu_num)\n    pool = multiprocessing.Pool(cpu_num)\n    pbar = tqdm(total=len(all_obj_list))\n\n    for obj in all_obj_list:\n        pool.apply_async(\n            generate, \n            args           = (obj, temp_xmem_anno, final_xmem_anno ),\n            callback       = lambda *a: pbar.update(1),\n            error_callback = lambda e: print(colored(e, \"red\"))\n        )\n        \n    pool.close()\n    pool.join()\n    pbar.close()\n\n\nif __name__ == '__main__':\n    main()"
  },
  {
    "path": "XMem/inference/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/inference/data/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/inference/data/mask_mapper.py",
    "content": "import numpy as np\nimport torch\n\nfrom dataset.util import all_to_onehot\n\n\nclass MaskMapper:\n    \"\"\"\n    This class is used to convert a indexed-mask to a one-hot representation.\n    It also takes care of remapping non-continuous indices\n    It has two modes:\n        1. Default. Only masks with new indices are supposed to go into the remapper.\n        This is also the case for YouTubeVOS.\n        i.e., regions with index 0 are not \"background\", but \"don't care\".\n\n        2. Exhaustive. Regions with index 0 are considered \"background\".\n        Every single pixel is considered to be \"labeled\".\n    \"\"\"\n    def __init__(self):\n        self.labels = []\n        self.remappings = {}\n\n        # if coherent, no mapping is required\n        self.coherent = True\n\n    def convert_mask(self, mask, exhaustive=False):\n        # mask is in index representation, H*W numpy array\n        labels = np.unique(mask).astype(np.uint8)\n        labels = labels[labels!=0].tolist()\n\n\n        new_labels = list(set(labels) - set(self.labels))\n        if not exhaustive:\n            assert len(new_labels) == len(labels), 'Old labels found in non-exhaustive mode'\n\n        # add new remappings\n        for i, l in enumerate(new_labels):\n            self.remappings[l] = i+len(self.labels)+1\n            if self.coherent and i+len(self.labels)+1 != l:\n                self.coherent = False\n\n        if exhaustive:\n            new_mapped_labels = range(1, len(self.labels)+len(new_labels)+1)\n        else:\n            if self.coherent:\n                new_mapped_labels = new_labels\n            else:\n                new_mapped_labels = range(len(self.labels)+1, len(self.labels)+len(new_labels)+1)\n\n        self.labels.extend(new_labels)\n        mask = torch.from_numpy(all_to_onehot(mask, self.labels)).float()\n\n        # mask num_objects*H*W\n        return mask, new_mapped_labels\n\n\n    def remap_index_mask(self, mask):\n        # mask is in index representation, H*W numpy array\n        if self.coherent:\n            return mask\n\n        new_mask = np.zeros_like(mask)\n        for l, i in self.remappings.items():\n            new_mask[mask==i] = l\n        return new_mask"
  },
  {
    "path": "XMem/inference/data/test_datasets.py",
    "content": "import os\nfrom os import path\nimport json\nimport glob\n\nfrom inference.data.video_reader import VideoReader\n\n\nclass LongTestDataset:\n\n    def __init__(self, meta_expression, data_root, size=-1, img_dir = '', reversed_ = False, split_part = 0):\n        self.image_dir = img_dir\n        self.mask_dir = data_root\n        self.size = size\n        self.reversed = reversed_\n        self.split_part = split_part\n\n        self.vid_list = []\n\n        videos_names = json.load(open(meta_expression, 'r'))['videos']\n        for video_name in videos_names:\n            video_mask_dir = path.join(self.mask_dir, video_name)\n            obj_ids = [d for d in os.listdir(video_mask_dir) if os.path.isdir(path.join(video_mask_dir, d))]\n            for obj_id in obj_ids:\n                obj_dir = path.join(video_mask_dir, obj_id)\n                img_list = glob.glob(obj_dir + '/*')\n                if len(img_list) == 1:\n                    self.vid_list.append(path.join(video_name, obj_id))\n        \n\n        self.vid_list.sort()\n        self.vid_list = [i for idx, i in enumerate(self.vid_list) if idx % 4 == self.split_part]\n\n    def get_datasets(self):\n        for video in self.vid_list:\n            yield VideoReader(video, \n                path.join(self.image_dir, '/'.join(video.split('/')[:-1])), \n                path.join(self.mask_dir, video),\n                to_save = [\n                    name[:-4] for name in os.listdir(path.join(self.mask_dir, video))  # remove .png\n                ],\n                size=self.size,\n                reversed=self.reversed,\n            )\n\n    def __len__(self):\n        return len(self.vid_list)\n\n\nclass DAVISTestDataset:\n    def __init__(self, data_root, imset='2017/val.txt', size=-1):\n        if size != 480:\n            self.image_dir = path.join(data_root, 'JPEGImages', 'Full-Resolution')\n            self.mask_dir = path.join(data_root, 'Annotations', 'Full-Resolution')\n            if not path.exists(self.image_dir):\n                print(f'{self.image_dir} not found. Look at other options.')\n                self.image_dir = path.join(data_root, 'JPEGImages', '1080p')\n                self.mask_dir = path.join(data_root, 'Annotations', '1080p')\n            assert path.exists(self.image_dir), 'path not found'\n        else:\n            self.image_dir = path.join(data_root, 'JPEGImages', '480p')\n            self.mask_dir = path.join(data_root, 'Annotations', '480p')\n        self.size_dir = path.join(data_root, 'JPEGImages', '480p')\n        self.size = size\n\n        with open(path.join(data_root, 'ImageSets', imset)) as f:\n            self.vid_list = sorted([line.strip() for line in f])\n\n    def get_datasets(self):\n        for video in self.vid_list:\n            yield VideoReader(video, \n                path.join(self.image_dir, video), \n                path.join(self.mask_dir, video),\n                size=self.size,\n                size_dir=path.join(self.size_dir, video),\n            )\n\n    def __len__(self):\n        return len(self.vid_list)\n\n\nclass YouTubeVOSTestDataset:\n    def __init__(self, data_root, split, size=480):\n        self.image_dir = path.join(data_root, 'all_frames', split+'_all_frames', 'JPEGImages')\n        self.mask_dir = path.join(data_root, split, 'Annotations')\n        self.size = size\n\n        self.vid_list = sorted(os.listdir(self.image_dir))\n        self.req_frame_list = {}\n\n        with open(path.join(data_root, split, 'meta.json')) as f:\n            # read meta.json to know which frame is required for evaluation\n            meta = json.load(f)['videos']\n\n            for vid in self.vid_list:\n                req_frames = []\n                objects = meta[vid]['objects']\n                for value in objects.values():\n                    req_frames.extend(value['frames'])\n\n                req_frames = list(set(req_frames))\n                self.req_frame_list[vid] = req_frames\n\n    def get_datasets(self):\n        for video in self.vid_list:\n            yield VideoReader(video, \n                path.join(self.image_dir, video), \n                path.join(self.mask_dir, video),\n                size=self.size,\n                to_save=self.req_frame_list[video], \n                use_all_mask=True\n            )\n\n    def __len__(self):\n        return len(self.vid_list)\n"
  },
  {
    "path": "XMem/inference/data/video_reader.py",
    "content": "import os\nfrom os import path\n\nfrom torch.utils.data.dataset import Dataset\nfrom torchvision import transforms\nfrom torchvision.transforms import InterpolationMode\nimport torch.nn.functional as F\nfrom PIL import Image\nimport numpy as np\n\nfrom dataset.range_transform import im_normalization\n\n\nclass VideoReader(Dataset):\n    \"\"\"\n    This class is used to read a video, one frame at a time\n    \"\"\"\n    def __init__(self, vid_name, image_dir, mask_dir, size=-1, to_save=None, use_all_mask=False, size_dir=None, reversed = False):\n        \"\"\"\n        image_dir - points to a directory of jpg images\n        mask_dir - points to a directory of png masks\n        size - resize min. side to size. Does nothing if <0.\n        to_save - optionally contains a list of file names without extensions \n            where the segmentation mask is required\n        use_all_mask - when true, read all available mask in mask_dir.\n            Default false. Set to true for YouTubeVOS validation.\n        \"\"\"\n        self.vid_name = vid_name\n        self.image_dir = image_dir\n        self.mask_dir = mask_dir\n        self.to_save = to_save\n        self.use_all_mask = use_all_mask\n        self.reversed = reversed\n        if size_dir is None:\n            self.size_dir = self.image_dir\n        else:\n            self.size_dir = size_dir\n\n        self.frames = sorted(os.listdir(self.image_dir))\n        if self.reversed:\n            self.frames = self.frames[::-1]\n        self.palette = Image.open(path.join(mask_dir, sorted(os.listdir(mask_dir))[0])).getpalette()\n        self.first_gt_path = path.join(self.mask_dir, sorted(os.listdir(self.mask_dir))[0])\n\n        if size < 0:\n            self.im_transform = transforms.Compose([\n                transforms.ToTensor(),\n                im_normalization,\n            ])\n        else:\n            self.im_transform = transforms.Compose([\n                transforms.ToTensor(),\n                im_normalization,\n                transforms.Resize(size, interpolation=InterpolationMode.BILINEAR),\n            ])\n        self.size = size\n\n\n    def __getitem__(self, idx):\n        frame = self.frames[idx]\n        info = {}\n        data = {}\n        info['frame'] = frame\n        info['save'] = (self.to_save is None) or (frame[:-4] in self.to_save)\n\n        im_path = path.join(self.image_dir, frame)\n        img = Image.open(im_path).convert('RGB')\n\n        if self.image_dir == self.size_dir:\n            shape = np.array(img).shape[:2]\n        else:\n            size_path = path.join(self.size_dir, frame)\n            size_im = Image.open(size_path).convert('RGB')\n            shape = np.array(size_im).shape[:2]\n\n        gt_path = path.join(self.mask_dir, frame[:-4]+'.png')\n        img = self.im_transform(img)\n\n        load_mask = self.use_all_mask or (gt_path == self.first_gt_path)\n        if load_mask and path.exists(gt_path):\n            mask = Image.open(gt_path).convert('P')\n            mask = np.array(mask, dtype=np.uint8)\n            data['mask'] = mask\n\n        info['shape'] = shape\n        info['need_resize'] = not (self.size < 0)\n        data['rgb'] = img\n        data['info'] = info\n\n        return data\n\n    def resize_mask(self, mask):\n        # mask transform is applied AFTER mapper, so we need to post-process it in eval.py\n        h, w = mask.shape[-2:]\n        min_hw = min(h, w)\n        return F.interpolate(mask, (int(h/min_hw*self.size), int(w/min_hw*self.size)), \n                    mode='nearest')\n\n    def get_palette(self):\n        return self.palette\n\n    def __len__(self):\n        return len(self.frames)\n"
  },
  {
    "path": "XMem/inference/inference_core.py",
    "content": "from inference.memory_manager import MemoryManager\nfrom model.network import XMem\nfrom model.aggregate import aggregate\n\nfrom util.tensor_util import pad_divide_by, unpad\n\n\nclass InferenceCore:\n    def __init__(self, network:XMem, config):\n        self.config = config\n        self.network = network\n        self.mem_every = config['mem_every']\n        self.deep_update_every = config['deep_update_every']\n        self.enable_long_term = config['enable_long_term']\n\n        # if deep_update_every < 0, synchronize deep update with memory frame\n        self.deep_update_sync = (self.deep_update_every < 0)\n\n        self.clear_memory()\n        self.all_labels = None\n\n    def clear_memory(self):\n        self.curr_ti = -1\n        self.last_mem_ti = 0\n        if not self.deep_update_sync:\n            self.last_deep_update_ti = -self.deep_update_every\n        self.memory = MemoryManager(config=self.config)\n\n    def update_config(self, config):\n        self.mem_every = config['mem_every']\n        self.deep_update_every = config['deep_update_every']\n        self.enable_long_term = config['enable_long_term']\n\n        # if deep_update_every < 0, synchronize deep update with memory frame\n        self.deep_update_sync = (self.deep_update_every < 0)\n        self.memory.update_config(config)\n\n    def set_all_labels(self, all_labels):\n        # self.all_labels = [l.item() for l in all_labels]\n        self.all_labels = all_labels\n\n    def step(self, image, mask=None, valid_labels=None, end=False):\n        # image: 3*H*W\n        # mask: num_objects*H*W or None\n        self.curr_ti += 1\n        image, self.pad = pad_divide_by(image, 16)\n        image = image.unsqueeze(0) # add the batch dimension\n\n        is_mem_frame = ((self.curr_ti-self.last_mem_ti >= self.mem_every) or (mask is not None)) and (not end)\n        need_segment = (self.curr_ti > 0) and ((valid_labels is None) or (len(self.all_labels) != len(valid_labels)))\n        is_deep_update = (\n            (self.deep_update_sync and is_mem_frame) or  # synchronized\n            (not self.deep_update_sync and self.curr_ti-self.last_deep_update_ti >= self.deep_update_every) # no-sync\n        ) and (not end)\n        is_normal_update = (not self.deep_update_sync or not is_deep_update) and (not end)\n\n        key, shrinkage, selection, f16, f8, f4 = self.network.encode_key(image, \n                                                    need_ek=(self.enable_long_term or need_segment), \n                                                    need_sk=is_mem_frame)\n        multi_scale_features = (f16, f8, f4)\n\n        # segment the current frame is needed\n        if need_segment:\n            memory_readout = self.memory.match_memory(key, selection).unsqueeze(0)\n            hidden, _, pred_prob_with_bg = self.network.segment(multi_scale_features, memory_readout, \n                                    self.memory.get_hidden(), h_out=is_normal_update, strip_bg=False)\n            # remove batch dim\n            pred_prob_with_bg = pred_prob_with_bg[0]\n            pred_prob_no_bg = pred_prob_with_bg[1:]\n            if is_normal_update:\n                self.memory.set_hidden(hidden)\n        else:\n            pred_prob_no_bg = pred_prob_with_bg = None\n\n        # use the input mask if any\n        if mask is not None:\n            mask, _ = pad_divide_by(mask, 16)\n\n            if pred_prob_no_bg is not None:\n                # if we have a predicted mask, we work on it\n                # make pred_prob_no_bg consistent with the input mask\n                mask_regions = (mask.sum(0) > 0.5)\n                pred_prob_no_bg[:, mask_regions] = 0\n                # shift by 1 because mask/pred_prob_no_bg do not contain background\n                mask = mask.type_as(pred_prob_no_bg)\n                if valid_labels is not None:\n                    shift_by_one_non_labels = [i for i in range(pred_prob_no_bg.shape[0]) if (i+1) not in valid_labels]\n                    # non-labelled objects are copied from the predicted mask\n                    mask[shift_by_one_non_labels] = pred_prob_no_bg[shift_by_one_non_labels]\n            pred_prob_with_bg = aggregate(mask, dim=0)\n\n            # also create new hidden states\n            self.memory.create_hidden_state(len(self.all_labels), key)\n\n        # save as memory if needed\n        if is_mem_frame:\n            value, hidden = self.network.encode_value(image, f16, self.memory.get_hidden(), \n                                    pred_prob_with_bg[1:].unsqueeze(0), is_deep_update=is_deep_update)\n            self.memory.add_memory(key, shrinkage, value, self.all_labels, \n                                    selection=selection if self.enable_long_term else None)\n            self.last_mem_ti = self.curr_ti\n\n            if is_deep_update:\n                self.memory.set_hidden(hidden)\n                self.last_deep_update_ti = self.curr_ti\n                \n        return unpad(pred_prob_with_bg, self.pad)\n"
  },
  {
    "path": "XMem/inference/interact/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/inference/interact/fbrs/LICENSE",
    "content": "Mozilla Public License Version 2.0\n==================================\n\n1. Definitions\n--------------\n\n1.1. \"Contributor\"\n    means each individual or legal entity that creates, contributes to\n    the creation of, or owns Covered Software.\n\n1.2. \"Contributor Version\"\n    means the combination of the Contributions of others (if any) used\n    by a Contributor and that particular Contributor's Contribution.\n\n1.3. \"Contribution\"\n    means Covered Software of a particular Contributor.\n\n1.4. \"Covered Software\"\n    means Source Code Form to which the initial Contributor has attached\n    the notice in Exhibit A, the Executable Form of such Source Code\n    Form, and Modifications of such Source Code Form, in each case\n    including portions thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\n    means\n\n    (a) that the initial Contributor has attached the notice described\n        in Exhibit B to the Covered Software; or\n\n    (b) that the Covered Software was made available under the terms of\n        version 1.1 or earlier of the License, but not also under the\n        terms of a Secondary License.\n\n1.6. \"Executable Form\"\n    means any form of the work other than Source Code Form.\n\n1.7. \"Larger Work\"\n    means a work that combines Covered Software with other material, in\n    a separate file or files, that is not Covered Software.\n\n1.8. \"License\"\n    means this document.\n\n1.9. \"Licensable\"\n    means having the right to grant, to the maximum extent possible,\n    whether at the time of the initial grant or subsequently, any and\n    all of the rights conveyed by this License.\n\n1.10. \"Modifications\"\n    means any of the following:\n\n    (a) any file in Source Code Form that results from an addition to,\n        deletion from, or modification of the contents of Covered\n        Software; or\n\n    (b) any new file in Source Code Form that contains any Covered\n        Software.\n\n1.11. \"Patent Claims\" of a Contributor\n    means any patent claim(s), including without limitation, method,\n    process, and apparatus claims, in any patent Licensable by such\n    Contributor that would be infringed, but for the grant of the\n    License, by the making, using, selling, offering for sale, having\n    made, import, or transfer of either its Contributions or its\n    Contributor Version.\n\n1.12. \"Secondary License\"\n    means either the GNU General Public License, Version 2.0, the GNU\n    Lesser General Public License, Version 2.1, the GNU Affero General\n    Public License, Version 3.0, or any later versions of those\n    licenses.\n\n1.13. \"Source Code Form\"\n    means the form of the work preferred for making modifications.\n\n1.14. \"You\" (or \"Your\")\n    means an individual or a legal entity exercising rights under this\n    License. For legal entities, \"You\" includes any entity that\n    controls, is controlled by, or is under common control with You. For\n    purposes of this definition, \"control\" means (a) the power, direct\n    or indirect, to cause the direction or management of such entity,\n    whether by contract or otherwise, or (b) ownership of more than\n    fifty percent (50%) of the outstanding shares or beneficial\n    ownership of such entity.\n\n2. License Grants and Conditions\n--------------------------------\n\n2.1. Grants\n\nEach Contributor hereby grants You a world-wide, royalty-free,\nnon-exclusive license:\n\n(a) under intellectual property rights (other than patent or trademark)\n    Licensable by such Contributor to use, reproduce, make available,\n    modify, display, perform, distribute, and otherwise exploit its\n    Contributions, either on an unmodified basis, with Modifications, or\n    as part of a Larger Work; and\n\n(b) under Patent Claims of such Contributor to make, use, sell, offer\n    for sale, have made, import, and otherwise transfer either its\n    Contributions or its Contributor Version.\n\n2.2. Effective Date\n\nThe licenses granted in Section 2.1 with respect to any Contribution\nbecome effective for each Contribution on the date the Contributor first\ndistributes such Contribution.\n\n2.3. Limitations on Grant Scope\n\nThe licenses granted in this Section 2 are the only rights granted under\nthis License. No additional rights or licenses will be implied from the\ndistribution or licensing of Covered Software under this License.\nNotwithstanding Section 2.1(b) above, no patent license is granted by a\nContributor:\n\n(a) for any code that a Contributor has removed from Covered Software;\n    or\n\n(b) for infringements caused by: (i) Your and any other third party's\n    modifications of Covered Software, or (ii) the combination of its\n    Contributions with other software (except as part of its Contributor\n    Version); or\n\n(c) under Patent Claims infringed by Covered Software in the absence of\n    its Contributions.\n\nThis License does not grant any rights in the trademarks, service marks,\nor logos of any Contributor (except as may be necessary to comply with\nthe notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\nNo Contributor makes additional grants as a result of Your choice to\ndistribute the Covered Software under a subsequent version of this\nLicense (see Section 10.2) or under the terms of a Secondary License (if\npermitted under the terms of Section 3.3).\n\n2.5. Representation\n\nEach Contributor represents that the Contributor believes its\nContributions are its original creation(s) or it has sufficient rights\nto grant the rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\nThis License is not intended to limit any rights You have under\napplicable copyright doctrines of fair use, fair dealing, or other\nequivalents.\n\n2.7. Conditions\n\nSections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted\nin Section 2.1.\n\n3. Responsibilities\n-------------------\n\n3.1. Distribution of Source Form\n\nAll distribution of Covered Software in Source Code Form, including any\nModifications that You create or to which You contribute, must be under\nthe terms of this License. You must inform recipients that the Source\nCode Form of the Covered Software is governed by the terms of this\nLicense, and how they can obtain a copy of this License. You may not\nattempt to alter or restrict the recipients' rights in the Source Code\nForm.\n\n3.2. Distribution of Executable Form\n\nIf You distribute Covered Software in Executable Form then:\n\n(a) such Covered Software must also be made available in Source Code\n    Form, as described in Section 3.1, and You must inform recipients of\n    the Executable Form how they can obtain a copy of such Source Code\n    Form by reasonable means in a timely manner, at a charge no more\n    than the cost of distribution to the recipient; and\n\n(b) You may distribute such Executable Form under the terms of this\n    License, or sublicense it under different terms, provided that the\n    license for the Executable Form does not attempt to limit or alter\n    the recipients' rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\nYou may create and distribute a Larger Work under terms of Your choice,\nprovided that You also comply with the requirements of this License for\nthe Covered Software. If the Larger Work is a combination of Covered\nSoftware with a work governed by one or more Secondary Licenses, and the\nCovered Software is not Incompatible With Secondary Licenses, this\nLicense permits You to additionally distribute such Covered Software\nunder the terms of such Secondary License(s), so that the recipient of\nthe Larger Work may, at their option, further distribute the Covered\nSoftware under the terms of either this License or such Secondary\nLicense(s).\n\n3.4. Notices\n\nYou may not remove or alter the substance of any license notices\n(including copyright notices, patent notices, disclaimers of warranty,\nor limitations of liability) contained within the Source Code Form of\nthe Covered Software, except that You may alter any license notices to\nthe extent required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\nYou may choose to offer, and to charge a fee for, warranty, support,\nindemnity or liability obligations to one or more recipients of Covered\nSoftware. However, You may do so only on Your own behalf, and not on\nbehalf of any Contributor. You must make it absolutely clear that any\nsuch warranty, support, indemnity, or liability obligation is offered by\nYou alone, and You hereby agree to indemnify every Contributor for any\nliability incurred by such Contributor as a result of warranty, support,\nindemnity or liability terms You offer. You may include additional\ndisclaimers of warranty and limitations of liability specific to any\njurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n---------------------------------------------------\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Software due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe terms of this License to the maximum extent possible; and (b)\ndescribe the limitations and the code they affect. Such description must\nbe placed in a text file included with all distributions of the Covered\nSoftware under this License. Except to the extent prohibited by statute\nor regulation, such description must be sufficiently detailed for a\nrecipient of ordinary skill to be able to understand it.\n\n5. Termination\n--------------\n\n5.1. The rights granted under this License will terminate automatically\nif You fail to comply with any of its terms. However, if You become\ncompliant, then the rights granted under this License from a particular\nContributor are reinstated (a) provisionally, unless and until such\nContributor explicitly and finally terminates Your grants, and (b) on an\nongoing basis, if such Contributor fails to notify You of the\nnon-compliance by some reasonable means prior to 60 days after You have\ncome back into compliance. Moreover, Your grants from a particular\nContributor are reinstated on an ongoing basis if such Contributor\nnotifies You of the non-compliance by some reasonable means, this is the\nfirst time You have received notice of non-compliance with this License\nfrom such Contributor, and You become compliant prior to 30 days after\nYour receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\ninfringement claim (excluding declaratory judgment actions,\ncounter-claims, and cross-claims) alleging that a Contributor Version\ndirectly or indirectly infringes any patent, then the rights granted to\nYou by any and all Contributors for the Covered Software under Section\n2.1 of this License shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all\nend user license agreements (excluding distributors and resellers) which\nhave been validly granted by You or Your distributors under this License\nprior to termination shall survive termination.\n\n************************************************************************\n*                                                                      *\n*  6. Disclaimer of Warranty                                           *\n*  -------------------------                                           *\n*                                                                      *\n*  Covered Software is provided under this License on an \"as is\"       *\n*  basis, without warranty of any kind, either expressed, implied, or  *\n*  statutory, including, without limitation, warranties that the       *\n*  Covered Software is free of defects, merchantable, fit for a        *\n*  particular purpose or non-infringing. The entire risk as to the     *\n*  quality and performance of the Covered Software is with You.        *\n*  Should any Covered Software prove defective in any respect, You     *\n*  (not any Contributor) assume the cost of any necessary servicing,   *\n*  repair, or correction. This disclaimer of warranty constitutes an   *\n*  essential part of this License. No use of any Covered Software is   *\n*  authorized under this License except under this disclaimer.         *\n*                                                                      *\n************************************************************************\n\n************************************************************************\n*                                                                      *\n*  7. Limitation of Liability                                          *\n*  --------------------------                                          *\n*                                                                      *\n*  Under no circumstances and under no legal theory, whether tort      *\n*  (including negligence), contract, or otherwise, shall any           *\n*  Contributor, or anyone who distributes Covered Software as          *\n*  permitted above, be liable to You for any direct, indirect,         *\n*  special, incidental, or consequential damages of any character      *\n*  including, without limitation, damages for lost profits, loss of    *\n*  goodwill, work stoppage, computer failure or malfunction, or any    *\n*  and all other commercial damages or losses, even if such party      *\n*  shall have been informed of the possibility of such damages. This   *\n*  limitation of liability shall not apply to liability for death or   *\n*  personal injury resulting from such party's negligence to the       *\n*  extent applicable law prohibits such limitation. Some               *\n*  jurisdictions do not allow the exclusion or limitation of           *\n*  incidental or consequential damages, so this exclusion and          *\n*  limitation may not apply to You.                                    *\n*                                                                      *\n************************************************************************\n\n8. Litigation\n-------------\n\nAny litigation relating to this License may be brought only in the\ncourts of a jurisdiction where the defendant maintains its principal\nplace of business and such litigation shall be governed by laws of that\njurisdiction, without reference to its conflict-of-law provisions.\nNothing in this Section shall prevent a party's ability to bring\ncross-claims or counter-claims.\n\n9. Miscellaneous\n----------------\n\nThis License represents the complete agreement concerning the subject\nmatter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent\nnecessary to make it enforceable. Any law or regulation which provides\nthat the language of a contract shall be construed against the drafter\nshall not be used to construe this License against a Contributor.\n\n10. Versions of the License\n---------------------------\n\n10.1. New Versions\n\nMozilla Foundation is the license steward. Except as provided in Section\n10.3, no one other than the license steward has the right to modify or\npublish new versions of this License. Each version will be given a\ndistinguishing version number.\n\n10.2. Effect of New Versions\n\nYou may distribute the Covered Software under the terms of the version\nof the License under which You originally received the Covered Software,\nor under the terms of any subsequent version published by the license\nsteward.\n\n10.3. Modified Versions\n\nIf you create software not governed by this License, and you want to\ncreate a new license for such software, you may create and use a\nmodified version of this License if you rename the license and remove\nany references to the name of the license steward (except to note that\nsuch modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary\nLicenses\n\nIf You choose to distribute Source Code Form that is Incompatible With\nSecondary Licenses under the terms of this version of the License, the\nnotice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n-------------------------------------------\n\n  This Source Code Form is subject to the terms of the Mozilla Public\n  License, v. 2.0. If a copy of the MPL was not distributed with this\n  file, You can obtain one at http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular\nfile, then You may include the notice in a location (such as a LICENSE\nfile in a relevant directory) where a recipient would be likely to look\nfor such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice\n---------------------------------------------------------\n\n  This Source Code Form is \"Incompatible With Secondary Licenses\", as\n  defined by the Mozilla Public License, v. 2.0."
  },
  {
    "path": "XMem/inference/interact/fbrs/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/inference/interact/fbrs/controller.py",
    "content": "import torch\ntry:\n    from torch import mps\nexcept:\n    pass\n\nfrom ..fbrs.inference import clicker\nfrom ..fbrs.inference.predictors import get_predictor\n\n\nclass InteractiveController:\n    def __init__(self, net, device, predictor_params, prob_thresh=0.5):\n        self.net = net.to(device)\n        self.prob_thresh = prob_thresh\n        self.clicker = clicker.Clicker()\n        self.states = []\n        self.probs_history = []\n        self.object_count = 0\n        self._result_mask = None\n\n        self.image = None\n        self.predictor = None\n        self.device = device\n        self.predictor_params = predictor_params\n        self.reset_predictor()\n\n    def set_image(self, image):\n        self.image = image\n        self._result_mask = torch.zeros(image.shape[-2:], dtype=torch.uint8)\n        self.object_count = 0\n        self.reset_last_object()\n\n    def add_click(self, x, y, is_positive):\n        self.states.append({\n            'clicker': self.clicker.get_state(),\n            'predictor': self.predictor.get_states()\n        })\n\n        click = clicker.Click(is_positive=is_positive, coords=(y, x))\n        self.clicker.add_click(click)\n        pred = self.predictor.get_prediction(self.clicker)\n        if self.device.type == 'cuda':\n            torch.cuda.empty_cache()\n        elif self.device.type == 'mps':\n            mps.empty_cache()\n\n        if self.probs_history:\n            self.probs_history.append((self.probs_history[-1][0], pred))\n        else:\n            self.probs_history.append((torch.zeros_like(pred), pred))\n\n    def undo_click(self):\n        if not self.states:\n            return\n\n        prev_state = self.states.pop()\n        self.clicker.set_state(prev_state['clicker'])\n        self.predictor.set_states(prev_state['predictor'])\n        self.probs_history.pop()\n\n    def partially_finish_object(self):\n        object_prob = self.current_object_prob\n        if object_prob is None:\n            return\n\n        self.probs_history.append((object_prob, torch.zeros_like(object_prob)))\n        self.states.append(self.states[-1])\n\n        self.clicker.reset_clicks()\n        self.reset_predictor()\n\n    def finish_object(self):\n        object_prob = self.current_object_prob\n        if object_prob is None:\n            return\n\n        self.object_count += 1\n        object_mask = object_prob > self.prob_thresh\n        self._result_mask[object_mask] = self.object_count\n        self.reset_last_object()\n\n    def reset_last_object(self):\n        self.states = []\n        self.probs_history = []\n        self.clicker.reset_clicks()\n        self.reset_predictor()\n\n    def reset_predictor(self, predictor_params=None):\n        if predictor_params is not None:\n            self.predictor_params = predictor_params\n        self.predictor = get_predictor(self.net, device=self.device,\n                                       **self.predictor_params)\n        if self.image is not None:\n            self.predictor.set_input_image(self.image)\n\n    @property\n    def current_object_prob(self):\n        if self.probs_history:\n            current_prob_total, current_prob_additive = self.probs_history[-1]\n            return torch.maximum(current_prob_total, current_prob_additive)\n        else:\n            return None\n\n    @property\n    def is_incomplete_mask(self):\n        return len(self.probs_history) > 0\n\n    @property\n    def result_mask(self):\n        return self._result_mask.clone()\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/clicker.py",
    "content": "from collections import namedtuple\n\nimport numpy as np\nfrom copy import deepcopy\nfrom scipy.ndimage import distance_transform_edt\n\nClick = namedtuple('Click', ['is_positive', 'coords'])\n\n\nclass Clicker(object):\n    def __init__(self, gt_mask=None, init_clicks=None, ignore_label=-1):\n        if gt_mask is not None:\n            self.gt_mask = gt_mask == 1\n            self.not_ignore_mask = gt_mask != ignore_label\n        else:\n            self.gt_mask = None\n\n        self.reset_clicks()\n\n        if init_clicks is not None:\n            for click in init_clicks:\n                self.add_click(click)\n\n    def make_next_click(self, pred_mask):\n        assert self.gt_mask is not None\n        click = self._get_click(pred_mask)\n        self.add_click(click)\n\n    def get_clicks(self, clicks_limit=None):\n        return self.clicks_list[:clicks_limit]\n\n    def _get_click(self, pred_mask, padding=True):\n        fn_mask = np.logical_and(np.logical_and(self.gt_mask, np.logical_not(pred_mask)), self.not_ignore_mask)\n        fp_mask = np.logical_and(np.logical_and(np.logical_not(self.gt_mask), pred_mask), self.not_ignore_mask)\n\n        if padding:\n            fn_mask = np.pad(fn_mask, ((1, 1), (1, 1)), 'constant')\n            fp_mask = np.pad(fp_mask, ((1, 1), (1, 1)), 'constant')\n\n        fn_mask_dt = distance_transform_edt(fn_mask)\n        fp_mask_dt = distance_transform_edt(fp_mask)\n\n        if padding:\n            fn_mask_dt = fn_mask_dt[1:-1, 1:-1]\n            fp_mask_dt = fp_mask_dt[1:-1, 1:-1]\n\n        fn_mask_dt = fn_mask_dt * self.not_clicked_map\n        fp_mask_dt = fp_mask_dt * self.not_clicked_map\n\n        fn_max_dist = np.max(fn_mask_dt)\n        fp_max_dist = np.max(fp_mask_dt)\n\n        is_positive = fn_max_dist > fp_max_dist\n        if is_positive:\n            coords_y, coords_x = np.where(fn_mask_dt == fn_max_dist)  # coords is [y, x]\n        else:\n            coords_y, coords_x = np.where(fp_mask_dt == fp_max_dist)  # coords is [y, x]\n\n        return Click(is_positive=is_positive, coords=(coords_y[0], coords_x[0]))\n\n    def add_click(self, click):\n        coords = click.coords\n\n        if click.is_positive:\n            self.num_pos_clicks += 1\n        else:\n            self.num_neg_clicks += 1\n\n        self.clicks_list.append(click)\n        if self.gt_mask is not None:\n            self.not_clicked_map[coords[0], coords[1]] = False\n\n    def _remove_last_click(self):\n        click = self.clicks_list.pop()\n        coords = click.coords\n\n        if click.is_positive:\n            self.num_pos_clicks -= 1\n        else:\n            self.num_neg_clicks -= 1\n\n        if self.gt_mask is not None:\n            self.not_clicked_map[coords[0], coords[1]] = True\n\n    def reset_clicks(self):\n        if self.gt_mask is not None:\n            self.not_clicked_map = np.ones_like(self.gt_mask, dtype=np.bool)\n\n        self.num_pos_clicks = 0\n        self.num_neg_clicks = 0\n\n        self.clicks_list = []\n\n    def get_state(self):\n        return deepcopy(self.clicks_list)\n\n    def set_state(self, state):\n        self.reset_clicks()\n        for click in state:\n            self.add_click(click)\n\n    def __len__(self):\n        return len(self.clicks_list)\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/evaluation.py",
    "content": "from time import time\n\nimport numpy as np\nimport torch\n\nfrom ..inference import utils\nfrom ..inference.clicker import Clicker\n\ntry:\n    get_ipython()\n    from tqdm import tqdm_notebook as tqdm\nexcept NameError:\n    from tqdm import tqdm\n\n\ndef evaluate_dataset(dataset, predictor, oracle_eval=False, **kwargs):\n    all_ious = []\n\n    start_time = time()\n    for index in tqdm(range(len(dataset)), leave=False):\n        sample = dataset.get_sample(index)\n        item = dataset[index]\n\n        if oracle_eval:\n            gt_mask = torch.tensor(sample['instances_mask'], dtype=torch.float32)\n            gt_mask = gt_mask.unsqueeze(0).unsqueeze(0)\n            predictor.opt_functor.mask_loss.set_gt_mask(gt_mask)\n        _, sample_ious, _ = evaluate_sample(item['images'], sample['instances_mask'], predictor, **kwargs)\n        all_ious.append(sample_ious)\n    end_time = time()\n    elapsed_time = end_time - start_time\n\n    return all_ious, elapsed_time\n\n\ndef evaluate_sample(image_nd, instances_mask, predictor, max_iou_thr,\n                    pred_thr=0.49, max_clicks=20):\n    clicker = Clicker(gt_mask=instances_mask)\n    pred_mask = np.zeros_like(instances_mask)\n    ious_list = []\n\n    with torch.no_grad():\n        predictor.set_input_image(image_nd)\n\n        for click_number in range(max_clicks):\n            clicker.make_next_click(pred_mask)\n            pred_probs = predictor.get_prediction(clicker)\n            pred_mask = pred_probs > pred_thr\n\n            iou = utils.get_iou(instances_mask, pred_mask)\n            ious_list.append(iou)\n\n            if iou >= max_iou_thr:\n                break\n\n        return clicker.clicks_list, np.array(ious_list, dtype=np.float32), pred_probs\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/predictors/__init__.py",
    "content": "from .base import BasePredictor\nfrom .brs import InputBRSPredictor, FeatureBRSPredictor, HRNetFeatureBRSPredictor\nfrom .brs_functors import InputOptimizer, ScaleBiasOptimizer\nfrom ..transforms import ZoomIn\nfrom ...model.is_hrnet_model import DistMapsHRNetModel\n\n\ndef get_predictor(net, brs_mode, device,\n                  prob_thresh=0.49,\n                  with_flip=True,\n                  zoom_in_params=dict(),\n                  predictor_params=None,\n                  brs_opt_func_params=None,\n                  lbfgs_params=None):\n    lbfgs_params_ = {\n        'm': 20,\n        'factr': 0,\n        'pgtol': 1e-8,\n        'maxfun': 20,\n    }\n\n    predictor_params_ = {\n        'optimize_after_n_clicks': 1\n    }\n\n    if zoom_in_params is not None:\n        zoom_in = ZoomIn(**zoom_in_params)\n    else:\n        zoom_in = None\n\n    if lbfgs_params is not None:\n        lbfgs_params_.update(lbfgs_params)\n    lbfgs_params_['maxiter'] = 2 * lbfgs_params_['maxfun']\n\n    if brs_opt_func_params is None:\n        brs_opt_func_params = dict()\n\n    if brs_mode == 'NoBRS':\n        if predictor_params is not None:\n            predictor_params_.update(predictor_params)\n        predictor = BasePredictor(net, device, zoom_in=zoom_in, with_flip=with_flip, **predictor_params_)\n    elif brs_mode.startswith('f-BRS'):\n        predictor_params_.update({\n            'net_clicks_limit': 8,\n        })\n        if predictor_params is not None:\n            predictor_params_.update(predictor_params)\n\n        insertion_mode = {\n            'f-BRS-A': 'after_c4',\n            'f-BRS-B': 'after_aspp',\n            'f-BRS-C': 'after_deeplab'\n        }[brs_mode]\n\n        opt_functor = ScaleBiasOptimizer(prob_thresh=prob_thresh,\n                                         with_flip=with_flip,\n                                         optimizer_params=lbfgs_params_,\n                                         **brs_opt_func_params)\n\n        if isinstance(net, DistMapsHRNetModel):\n            FeaturePredictor = HRNetFeatureBRSPredictor\n            insertion_mode = {'after_c4': 'A', 'after_aspp': 'A', 'after_deeplab': 'C'}[insertion_mode]\n        else:\n            FeaturePredictor = FeatureBRSPredictor\n\n        predictor = FeaturePredictor(net, device,\n                                     opt_functor=opt_functor,\n                                     with_flip=with_flip,\n                                     insertion_mode=insertion_mode,\n                                     zoom_in=zoom_in,\n                                     **predictor_params_)\n    elif brs_mode == 'RGB-BRS' or brs_mode == 'DistMap-BRS':\n        use_dmaps = brs_mode == 'DistMap-BRS'\n\n        predictor_params_.update({\n            'net_clicks_limit': 5,\n        })\n        if predictor_params is not None:\n            predictor_params_.update(predictor_params)\n\n        opt_functor = InputOptimizer(prob_thresh=prob_thresh,\n                                     with_flip=with_flip,\n                                     optimizer_params=lbfgs_params_,\n                                     **brs_opt_func_params)\n\n        predictor = InputBRSPredictor(net, device,\n                                      optimize_target='dmaps' if use_dmaps else 'rgb',\n                                      opt_functor=opt_functor,\n                                      with_flip=with_flip,\n                                      zoom_in=zoom_in,\n                                      **predictor_params_)\n    else:\n        raise NotImplementedError\n\n    return predictor\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/predictors/base.py",
    "content": "import torch\nimport torch.nn.functional as F\n\nfrom ..transforms import AddHorizontalFlip, SigmoidForPred, LimitLongestSide\n\n\nclass BasePredictor(object):\n    def __init__(self, net, device,\n                 net_clicks_limit=None,\n                 with_flip=False,\n                 zoom_in=None,\n                 max_size=None,\n                 **kwargs):\n        self.net = net\n        self.with_flip = with_flip\n        self.net_clicks_limit = net_clicks_limit\n        self.original_image = None\n        self.device = device\n        self.zoom_in = zoom_in\n\n        self.transforms = [zoom_in] if zoom_in is not None else []\n        if max_size is not None:\n            self.transforms.append(LimitLongestSide(max_size=max_size))\n        self.transforms.append(SigmoidForPred())\n        if with_flip:\n            self.transforms.append(AddHorizontalFlip())\n\n    def set_input_image(self, image_nd):\n        for transform in self.transforms:\n            transform.reset()\n        self.original_image = image_nd.to(self.device)\n        if len(self.original_image.shape) == 3:\n            self.original_image = self.original_image.unsqueeze(0)\n\n    def get_prediction(self, clicker):\n        clicks_list = clicker.get_clicks()\n\n        image_nd, clicks_lists, is_image_changed = self.apply_transforms(\n            self.original_image, [clicks_list]\n        )\n\n        pred_logits = self._get_prediction(image_nd, clicks_lists, is_image_changed)\n        prediction = F.interpolate(pred_logits, mode='bilinear', align_corners=True,\n                                   size=image_nd.size()[2:])\n\n        for t in reversed(self.transforms):\n            prediction = t.inv_transform(prediction)\n\n        if self.zoom_in is not None and self.zoom_in.check_possible_recalculation():\n            print('zooming')\n            return self.get_prediction(clicker)\n\n        # return prediction.cpu().numpy()[0, 0]\n        return prediction\n\n    def _get_prediction(self, image_nd, clicks_lists, is_image_changed):\n        points_nd = self.get_points_nd(clicks_lists)\n        return self.net(image_nd, points_nd)['instances']\n\n    def _get_transform_states(self):\n        return [x.get_state() for x in self.transforms]\n\n    def _set_transform_states(self, states):\n        assert len(states) == len(self.transforms)\n        for state, transform in zip(states, self.transforms):\n            transform.set_state(state)\n\n    def apply_transforms(self, image_nd, clicks_lists):\n        is_image_changed = False\n        for t in self.transforms:\n            image_nd, clicks_lists = t.transform(image_nd, clicks_lists)\n            is_image_changed |= t.image_changed\n\n        return image_nd, clicks_lists, is_image_changed\n\n    def get_points_nd(self, clicks_lists):\n        total_clicks = []\n        num_pos_clicks = [sum(x.is_positive for x in clicks_list) for clicks_list in clicks_lists]\n        num_neg_clicks = [len(clicks_list) - num_pos for clicks_list, num_pos in zip(clicks_lists, num_pos_clicks)]\n        num_max_points = max(num_pos_clicks + num_neg_clicks)\n        if self.net_clicks_limit is not None:\n            num_max_points = min(self.net_clicks_limit, num_max_points)\n        num_max_points = max(1, num_max_points)\n\n        for clicks_list in clicks_lists:\n            clicks_list = clicks_list[:self.net_clicks_limit]\n            pos_clicks = [click.coords for click in clicks_list if click.is_positive]\n            pos_clicks = pos_clicks + (num_max_points - len(pos_clicks)) * [(-1, -1)]\n\n            neg_clicks = [click.coords for click in clicks_list if not click.is_positive]\n            neg_clicks = neg_clicks + (num_max_points - len(neg_clicks)) * [(-1, -1)]\n            total_clicks.append(pos_clicks + neg_clicks)\n\n        return torch.tensor(total_clicks, device=self.device)\n\n    def get_states(self):\n        return {'transform_states': self._get_transform_states()}\n\n    def set_states(self, states):\n        self._set_transform_states(states['transform_states'])\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/predictors/brs.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport numpy as np\nfrom scipy.optimize import fmin_l_bfgs_b\n\nfrom .base import BasePredictor\nfrom ...model.is_hrnet_model import DistMapsHRNetModel\n\n\nclass BRSBasePredictor(BasePredictor):\n    def __init__(self, model, device, opt_functor, optimize_after_n_clicks=1, **kwargs):\n        super().__init__(model, device, **kwargs)\n        self.optimize_after_n_clicks = optimize_after_n_clicks\n        self.opt_functor = opt_functor\n\n        self.opt_data = None\n        self.input_data = None\n\n    def set_input_image(self, image_nd):\n        super().set_input_image(image_nd)\n        self.opt_data = None\n        self.input_data = None\n\n    def _get_clicks_maps_nd(self, clicks_lists, image_shape, radius=1):\n        pos_clicks_map = np.zeros((len(clicks_lists), 1) + image_shape, dtype=np.float32)\n        neg_clicks_map = np.zeros((len(clicks_lists), 1) + image_shape, dtype=np.float32)\n\n        for list_indx, clicks_list in enumerate(clicks_lists):\n            for click in clicks_list:\n                y, x = click.coords\n                y, x = int(round(y)), int(round(x))\n                y1, x1 = y - radius, x - radius\n                y2, x2 = y + radius + 1, x + radius + 1\n\n                if click.is_positive:\n                    pos_clicks_map[list_indx, 0, y1:y2, x1:x2] = True\n                else:\n                    neg_clicks_map[list_indx, 0, y1:y2, x1:x2] = True\n\n        with torch.no_grad():\n            pos_clicks_map = torch.from_numpy(pos_clicks_map).to(self.device)\n            neg_clicks_map = torch.from_numpy(neg_clicks_map).to(self.device)\n\n        return pos_clicks_map, neg_clicks_map\n\n    def get_states(self):\n        return {'transform_states': self._get_transform_states(), 'opt_data': self.opt_data}\n\n    def set_states(self, states):\n        self._set_transform_states(states['transform_states'])\n        self.opt_data = states['opt_data']\n\n\nclass FeatureBRSPredictor(BRSBasePredictor):\n    def __init__(self, model, device, opt_functor, insertion_mode='after_deeplab', **kwargs):\n        super().__init__(model, device, opt_functor=opt_functor, **kwargs)\n        self.insertion_mode = insertion_mode\n        self._c1_features = None\n\n        if self.insertion_mode == 'after_deeplab':\n            self.num_channels = model.feature_extractor.ch\n        elif self.insertion_mode == 'after_c4':\n            self.num_channels = model.feature_extractor.aspp_in_channels\n        elif self.insertion_mode == 'after_aspp':\n            self.num_channels = model.feature_extractor.ch + 32\n        else:\n            raise NotImplementedError\n\n    def _get_prediction(self, image_nd, clicks_lists, is_image_changed):\n        points_nd = self.get_points_nd(clicks_lists)\n        pos_mask, neg_mask = self._get_clicks_maps_nd(clicks_lists, image_nd.shape[2:])\n\n        num_clicks = len(clicks_lists[0])\n        bs = image_nd.shape[0] // 2 if self.with_flip else image_nd.shape[0]\n\n        if self.opt_data is None or self.opt_data.shape[0] // (2 * self.num_channels) != bs:\n            self.opt_data = np.zeros((bs * 2 * self.num_channels), dtype=np.float32)\n\n        if num_clicks <= self.net_clicks_limit or is_image_changed or self.input_data is None:\n            self.input_data = self._get_head_input(image_nd, points_nd)\n\n        def get_prediction_logits(scale, bias):\n            scale = scale.view(bs, -1, 1, 1)\n            bias = bias.view(bs, -1, 1, 1)\n            if self.with_flip:\n                scale = scale.repeat(2, 1, 1, 1)\n                bias = bias.repeat(2, 1, 1, 1)\n\n            scaled_backbone_features = self.input_data * scale\n            scaled_backbone_features = scaled_backbone_features + bias\n            if self.insertion_mode == 'after_c4':\n                x = self.net.feature_extractor.aspp(scaled_backbone_features)\n                x = F.interpolate(x, mode='bilinear', size=self._c1_features.size()[2:],\n                                  align_corners=True)\n                x = torch.cat((x, self._c1_features), dim=1)\n                scaled_backbone_features = self.net.feature_extractor.head(x)\n            elif self.insertion_mode == 'after_aspp':\n                scaled_backbone_features = self.net.feature_extractor.head(scaled_backbone_features)\n\n            pred_logits = self.net.head(scaled_backbone_features)\n            pred_logits = F.interpolate(pred_logits, size=image_nd.size()[2:], mode='bilinear',\n                                        align_corners=True)\n            return pred_logits\n\n        self.opt_functor.init_click(get_prediction_logits, pos_mask, neg_mask, self.device)\n        if num_clicks > self.optimize_after_n_clicks:\n            opt_result = fmin_l_bfgs_b(func=self.opt_functor, x0=self.opt_data,\n                                       **self.opt_functor.optimizer_params)\n            self.opt_data = opt_result[0]\n\n        with torch.no_grad():\n            if self.opt_functor.best_prediction is not None:\n                opt_pred_logits = self.opt_functor.best_prediction\n            else:\n                opt_data_nd = torch.from_numpy(self.opt_data).to(self.device)\n                opt_vars, _ = self.opt_functor.unpack_opt_params(opt_data_nd)\n                opt_pred_logits = get_prediction_logits(*opt_vars)\n\n        return opt_pred_logits\n\n    def _get_head_input(self, image_nd, points):\n        with torch.no_grad():\n            coord_features = self.net.dist_maps(image_nd, points)\n            x = self.net.rgb_conv(torch.cat((image_nd, coord_features), dim=1))\n            if self.insertion_mode == 'after_c4' or self.insertion_mode == 'after_aspp':\n                c1, _, c3, c4 = self.net.feature_extractor.backbone(x)\n                c1 = self.net.feature_extractor.skip_project(c1)\n\n                if self.insertion_mode == 'after_aspp':\n                    x = self.net.feature_extractor.aspp(c4)\n                    x = F.interpolate(x, size=c1.size()[2:], mode='bilinear', align_corners=True)\n                    x = torch.cat((x, c1), dim=1)\n                    backbone_features = x\n                else:\n                    backbone_features = c4\n                    self._c1_features = c1\n            else:\n                backbone_features = self.net.feature_extractor(x)[0]\n\n        return backbone_features\n\n\nclass HRNetFeatureBRSPredictor(BRSBasePredictor):\n    def __init__(self, model, device, opt_functor, insertion_mode='A', **kwargs):\n        super().__init__(model, device, opt_functor=opt_functor, **kwargs)\n        self.insertion_mode = insertion_mode\n        self._c1_features = None\n\n        if self.insertion_mode == 'A':\n            self.num_channels = sum(k * model.feature_extractor.width for k in [1, 2, 4, 8])\n        elif self.insertion_mode == 'C':\n            self.num_channels = 2 * model.feature_extractor.ocr_width\n        else:\n            raise NotImplementedError\n\n    def _get_prediction(self, image_nd, clicks_lists, is_image_changed):\n        points_nd = self.get_points_nd(clicks_lists)\n        pos_mask, neg_mask = self._get_clicks_maps_nd(clicks_lists, image_nd.shape[2:])\n        num_clicks = len(clicks_lists[0])\n        bs = image_nd.shape[0] // 2 if self.with_flip else image_nd.shape[0]\n\n        if self.opt_data is None or self.opt_data.shape[0] // (2 * self.num_channels) != bs:\n            self.opt_data = np.zeros((bs * 2 * self.num_channels), dtype=np.float32)\n\n        if num_clicks <= self.net_clicks_limit or is_image_changed or self.input_data is None:\n            self.input_data = self._get_head_input(image_nd, points_nd)\n\n        def get_prediction_logits(scale, bias):\n            scale = scale.view(bs, -1, 1, 1)\n            bias = bias.view(bs, -1, 1, 1)\n            if self.with_flip:\n                scale = scale.repeat(2, 1, 1, 1)\n                bias = bias.repeat(2, 1, 1, 1)\n\n            scaled_backbone_features = self.input_data * scale\n            scaled_backbone_features = scaled_backbone_features + bias\n            if self.insertion_mode == 'A':\n                out_aux = self.net.feature_extractor.aux_head(scaled_backbone_features)\n                feats = self.net.feature_extractor.conv3x3_ocr(scaled_backbone_features)\n\n                context = self.net.feature_extractor.ocr_gather_head(feats, out_aux)\n                feats = self.net.feature_extractor.ocr_distri_head(feats, context)\n                pred_logits = self.net.feature_extractor.cls_head(feats)\n            elif self.insertion_mode == 'C':\n                pred_logits = self.net.feature_extractor.cls_head(scaled_backbone_features)\n            else:\n                raise NotImplementedError\n\n            pred_logits = F.interpolate(pred_logits, size=image_nd.size()[2:], mode='bilinear',\n                                        align_corners=True)\n            return pred_logits\n\n        self.opt_functor.init_click(get_prediction_logits, pos_mask, neg_mask, self.device)\n        if num_clicks > self.optimize_after_n_clicks:\n            opt_result = fmin_l_bfgs_b(func=self.opt_functor, x0=self.opt_data,\n                                       **self.opt_functor.optimizer_params)\n            self.opt_data = opt_result[0]\n\n        with torch.no_grad():\n            if self.opt_functor.best_prediction is not None:\n                opt_pred_logits = self.opt_functor.best_prediction\n            else:\n                opt_data_nd = torch.from_numpy(self.opt_data).to(self.device)\n                opt_vars, _ = self.opt_functor.unpack_opt_params(opt_data_nd)\n                opt_pred_logits = get_prediction_logits(*opt_vars)\n\n        return opt_pred_logits\n\n    def _get_head_input(self, image_nd, points):\n        with torch.no_grad():\n            coord_features = self.net.dist_maps(image_nd, points)\n            x = self.net.rgb_conv(torch.cat((image_nd, coord_features), dim=1))\n            feats = self.net.feature_extractor.compute_hrnet_feats(x)\n            if self.insertion_mode == 'A':\n                backbone_features = feats\n            elif self.insertion_mode == 'C':\n                out_aux = self.net.feature_extractor.aux_head(feats)\n                feats = self.net.feature_extractor.conv3x3_ocr(feats)\n\n                context = self.net.feature_extractor.ocr_gather_head(feats, out_aux)\n                backbone_features = self.net.feature_extractor.ocr_distri_head(feats, context)\n            else:\n                raise NotImplementedError\n\n        return backbone_features\n\n\nclass InputBRSPredictor(BRSBasePredictor):\n    def __init__(self, model, device, opt_functor, optimize_target='rgb', **kwargs):\n        super().__init__(model, device, opt_functor=opt_functor, **kwargs)\n        self.optimize_target = optimize_target\n\n    def _get_prediction(self, image_nd, clicks_lists, is_image_changed):\n        points_nd = self.get_points_nd(clicks_lists)\n        pos_mask, neg_mask = self._get_clicks_maps_nd(clicks_lists, image_nd.shape[2:])\n        num_clicks = len(clicks_lists[0])\n\n        if self.opt_data is None or is_image_changed:\n            opt_channels = 2 if self.optimize_target == 'dmaps' else 3\n            bs = image_nd.shape[0] // 2 if self.with_flip else image_nd.shape[0]\n            self.opt_data = torch.zeros((bs, opt_channels, image_nd.shape[2], image_nd.shape[3]),\n                                        device=self.device, dtype=torch.float32)\n\n        def get_prediction_logits(opt_bias):\n            input_image = image_nd\n            if self.optimize_target == 'rgb':\n                input_image = input_image + opt_bias\n            dmaps = self.net.dist_maps(input_image, points_nd)\n            if self.optimize_target == 'dmaps':\n                dmaps = dmaps + opt_bias\n\n            x = self.net.rgb_conv(torch.cat((input_image, dmaps), dim=1))\n            if self.optimize_target == 'all':\n                x = x + opt_bias\n\n            if isinstance(self.net, DistMapsHRNetModel):\n                pred_logits = self.net.feature_extractor(x)[0]\n            else:\n                backbone_features = self.net.feature_extractor(x)\n                pred_logits = self.net.head(backbone_features[0])\n            pred_logits = F.interpolate(pred_logits, size=image_nd.size()[2:], mode='bilinear', align_corners=True)\n\n            return pred_logits\n\n        self.opt_functor.init_click(get_prediction_logits, pos_mask, neg_mask, self.device,\n                                    shape=self.opt_data.shape)\n        if num_clicks > self.optimize_after_n_clicks:\n            opt_result = fmin_l_bfgs_b(func=self.opt_functor, x0=self.opt_data.cpu().numpy().ravel(),\n                                       **self.opt_functor.optimizer_params)\n\n            self.opt_data = torch.from_numpy(opt_result[0]).view(self.opt_data.shape).to(self.device)\n\n        with torch.no_grad():\n            if self.opt_functor.best_prediction is not None:\n                opt_pred_logits = self.opt_functor.best_prediction\n            else:\n                opt_vars, _ = self.opt_functor.unpack_opt_params(self.opt_data)\n                opt_pred_logits = get_prediction_logits(*opt_vars)\n\n        return opt_pred_logits\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/predictors/brs_functors.py",
    "content": "import torch\nimport numpy as np\n\nfrom ...model.metrics import _compute_iou\nfrom .brs_losses import BRSMaskLoss\n\n\nclass BaseOptimizer:\n    def __init__(self, optimizer_params,\n                 prob_thresh=0.49,\n                 reg_weight=1e-3,\n                 min_iou_diff=0.01,\n                 brs_loss=BRSMaskLoss(),\n                 with_flip=False,\n                 flip_average=False,\n                 **kwargs):\n        self.brs_loss = brs_loss\n        self.optimizer_params = optimizer_params\n        self.prob_thresh = prob_thresh\n        self.reg_weight = reg_weight\n        self.min_iou_diff = min_iou_diff\n        self.with_flip = with_flip\n        self.flip_average = flip_average\n\n        self.best_prediction = None\n        self._get_prediction_logits = None\n        self._opt_shape = None\n        self._best_loss = None\n        self._click_masks = None\n        self._last_mask = None\n        self.device = None\n\n    def init_click(self, get_prediction_logits, pos_mask, neg_mask, device, shape=None):\n        self.best_prediction = None\n        self._get_prediction_logits = get_prediction_logits\n        self._click_masks = (pos_mask, neg_mask)\n        self._opt_shape = shape\n        self._last_mask = None\n        self.device = device\n\n    def __call__(self, x):\n        opt_params = torch.from_numpy(x).float().to(self.device)\n        opt_params.requires_grad_(True)\n\n        with torch.enable_grad():\n            opt_vars, reg_loss = self.unpack_opt_params(opt_params)\n            result_before_sigmoid = self._get_prediction_logits(*opt_vars)\n            result = torch.sigmoid(result_before_sigmoid)\n\n            pos_mask, neg_mask = self._click_masks\n            if self.with_flip and self.flip_average:\n                result, result_flipped = torch.chunk(result, 2, dim=0)\n                result = 0.5 * (result + torch.flip(result_flipped, dims=[3]))\n                pos_mask, neg_mask = pos_mask[:result.shape[0]], neg_mask[:result.shape[0]]\n\n            loss, f_max_pos, f_max_neg = self.brs_loss(result, pos_mask, neg_mask)\n            loss = loss + reg_loss\n\n        f_val = loss.detach().cpu().numpy()\n        if self.best_prediction is None or f_val < self._best_loss:\n            self.best_prediction = result_before_sigmoid.detach()\n            self._best_loss = f_val\n\n        if f_max_pos < (1 - self.prob_thresh) and f_max_neg < self.prob_thresh:\n            return [f_val, np.zeros_like(x)]\n\n        current_mask = result > self.prob_thresh\n        if self._last_mask is not None and self.min_iou_diff > 0:\n            diff_iou = _compute_iou(current_mask, self._last_mask)\n            if len(diff_iou) > 0 and diff_iou.mean() > 1 - self.min_iou_diff:\n                return [f_val, np.zeros_like(x)]\n        self._last_mask = current_mask\n\n        loss.backward()\n        f_grad = opt_params.grad.cpu().numpy().ravel().astype(np.float32)\n\n        return [f_val, f_grad]\n\n    def unpack_opt_params(self, opt_params):\n        raise NotImplementedError\n\n\nclass InputOptimizer(BaseOptimizer):\n    def unpack_opt_params(self, opt_params):\n        opt_params = opt_params.view(self._opt_shape)\n        if self.with_flip:\n            opt_params_flipped = torch.flip(opt_params, dims=[3])\n            opt_params = torch.cat([opt_params, opt_params_flipped], dim=0)\n        reg_loss = self.reg_weight * torch.sum(opt_params**2)\n\n        return (opt_params,), reg_loss\n\n\nclass ScaleBiasOptimizer(BaseOptimizer):\n    def __init__(self, *args, scale_act=None, reg_bias_weight=10.0, **kwargs):\n        super().__init__(*args, **kwargs)\n        self.scale_act = scale_act\n        self.reg_bias_weight = reg_bias_weight\n\n    def unpack_opt_params(self, opt_params):\n        scale, bias = torch.chunk(opt_params, 2, dim=0)\n        reg_loss = self.reg_weight * (torch.sum(scale**2) + self.reg_bias_weight * torch.sum(bias**2))\n\n        if self.scale_act == 'tanh':\n            scale = torch.tanh(scale)\n        elif self.scale_act == 'sin':\n            scale = torch.sin(scale)\n\n        return (1 + scale, bias), reg_loss\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/predictors/brs_losses.py",
    "content": "import torch\n\nfrom ...model.losses import SigmoidBinaryCrossEntropyLoss\n\n\nclass BRSMaskLoss(torch.nn.Module):\n    def __init__(self, eps=1e-5):\n        super().__init__()\n        self._eps = eps\n\n    def forward(self, result, pos_mask, neg_mask):\n        pos_diff = (1 - result) * pos_mask\n        pos_target = torch.sum(pos_diff ** 2)\n        pos_target = pos_target / (torch.sum(pos_mask) + self._eps)\n\n        neg_diff = result * neg_mask\n        neg_target = torch.sum(neg_diff ** 2)\n        neg_target = neg_target / (torch.sum(neg_mask) + self._eps)\n        \n        loss = pos_target + neg_target\n\n        with torch.no_grad():\n            f_max_pos = torch.max(torch.abs(pos_diff)).item()\n            f_max_neg = torch.max(torch.abs(neg_diff)).item()\n\n        return loss, f_max_pos, f_max_neg\n\n\nclass OracleMaskLoss(torch.nn.Module):\n    def __init__(self):\n        super().__init__()\n        self.gt_mask = None\n        self.loss = SigmoidBinaryCrossEntropyLoss(from_sigmoid=True)\n        self.predictor = None\n        self.history = []\n\n    def set_gt_mask(self, gt_mask):\n        self.gt_mask = gt_mask\n        self.history = []\n\n    def forward(self, result, pos_mask, neg_mask):\n        gt_mask = self.gt_mask.to(result.device)\n        if self.predictor.object_roi is not None:\n            r1, r2, c1, c2 = self.predictor.object_roi[:4]\n            gt_mask = gt_mask[:, :, r1:r2 + 1, c1:c2 + 1]\n            gt_mask = torch.nn.functional.interpolate(gt_mask, result.size()[2:],  mode='bilinear', align_corners=True)\n\n        if result.shape[0] == 2:\n            gt_mask_flipped = torch.flip(gt_mask, dims=[3])\n            gt_mask = torch.cat([gt_mask, gt_mask_flipped], dim=0)\n\n        loss = self.loss(result, gt_mask)\n        self.history.append(loss.detach().cpu().numpy()[0])\n\n        if len(self.history) > 5 and abs(self.history[-5] - self.history[-1]) < 1e-5:\n            return 0, 0, 0\n\n        return loss, 1.0, 1.0\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/transforms/__init__.py",
    "content": "from .base import SigmoidForPred\nfrom .flip import AddHorizontalFlip\nfrom .zoom_in import ZoomIn\nfrom .limit_longest_side import LimitLongestSide\nfrom .crops import Crops\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/transforms/base.py",
    "content": "import torch\n\n\nclass BaseTransform(object):\n    def __init__(self):\n        self.image_changed = False\n\n    def transform(self, image_nd, clicks_lists):\n        raise NotImplementedError\n\n    def inv_transform(self, prob_map):\n        raise NotImplementedError\n\n    def reset(self):\n        raise NotImplementedError\n\n    def get_state(self):\n        raise NotImplementedError\n\n    def set_state(self, state):\n        raise NotImplementedError\n\n\nclass SigmoidForPred(BaseTransform):\n    def transform(self, image_nd, clicks_lists):\n        return image_nd, clicks_lists\n\n    def inv_transform(self, prob_map):\n        return torch.sigmoid(prob_map)\n\n    def reset(self):\n        pass\n\n    def get_state(self):\n        return None\n\n    def set_state(self, state):\n        pass\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/transforms/crops.py",
    "content": "import math\n\nimport torch\nimport numpy as np\n\nfrom ...inference.clicker import Click\nfrom .base import BaseTransform\n\n\nclass Crops(BaseTransform):\n    def __init__(self, crop_size=(320, 480), min_overlap=0.2):\n        super().__init__()\n        self.crop_height, self.crop_width = crop_size\n        self.min_overlap = min_overlap\n\n        self.x_offsets = None\n        self.y_offsets = None\n        self._counts = None\n\n    def transform(self, image_nd, clicks_lists):\n        assert image_nd.shape[0] == 1 and len(clicks_lists) == 1\n        image_height, image_width = image_nd.shape[2:4]\n        self._counts = None\n\n        if image_height < self.crop_height or image_width < self.crop_width:\n            return image_nd, clicks_lists\n\n        self.x_offsets = get_offsets(image_width, self.crop_width, self.min_overlap)\n        self.y_offsets = get_offsets(image_height, self.crop_height, self.min_overlap)\n        self._counts = np.zeros((image_height, image_width))\n\n        image_crops = []\n        for dy in self.y_offsets:\n            for dx in self.x_offsets:\n                self._counts[dy:dy + self.crop_height, dx:dx + self.crop_width] += 1\n                image_crop = image_nd[:, :, dy:dy + self.crop_height, dx:dx + self.crop_width]\n                image_crops.append(image_crop)\n        image_crops = torch.cat(image_crops, dim=0)\n        self._counts = torch.tensor(self._counts, device=image_nd.device, dtype=torch.float32)\n\n        clicks_list = clicks_lists[0]\n        clicks_lists = []\n        for dy in self.y_offsets:\n            for dx in self.x_offsets:\n                crop_clicks = [Click(is_positive=x.is_positive, coords=(x.coords[0] - dy, x.coords[1] - dx))\n                               for x in clicks_list]\n                clicks_lists.append(crop_clicks)\n\n        return image_crops, clicks_lists\n\n    def inv_transform(self, prob_map):\n        if self._counts is None:\n            return prob_map\n\n        new_prob_map = torch.zeros((1, 1, *self._counts.shape),\n                                   dtype=prob_map.dtype, device=prob_map.device)\n\n        crop_indx = 0\n        for dy in self.y_offsets:\n            for dx in self.x_offsets:\n                new_prob_map[0, 0, dy:dy + self.crop_height, dx:dx + self.crop_width] += prob_map[crop_indx, 0]\n                crop_indx += 1\n        new_prob_map = torch.div(new_prob_map, self._counts)\n\n        return new_prob_map\n\n    def get_state(self):\n        return self.x_offsets, self.y_offsets, self._counts\n\n    def set_state(self, state):\n        self.x_offsets, self.y_offsets, self._counts = state\n\n    def reset(self):\n        self.x_offsets = None\n        self.y_offsets = None\n        self._counts = None\n\n\ndef get_offsets(length, crop_size, min_overlap_ratio=0.2):\n    if length == crop_size:\n        return [0]\n\n    N = (length / crop_size - min_overlap_ratio) / (1 - min_overlap_ratio)\n    N = math.ceil(N)\n\n    overlap_ratio = (N - length / crop_size) / (N - 1)\n    overlap_width = int(crop_size * overlap_ratio)\n\n    offsets = [0]\n    for i in range(1, N):\n        new_offset = offsets[-1] + crop_size - overlap_width\n        if new_offset + crop_size > length:\n            new_offset = length - crop_size\n\n        offsets.append(new_offset)\n\n    return offsets\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/transforms/flip.py",
    "content": "import torch\n\nfrom ..clicker import Click\nfrom .base import BaseTransform\n\n\nclass AddHorizontalFlip(BaseTransform):\n    def transform(self, image_nd, clicks_lists):\n        assert len(image_nd.shape) == 4\n        image_nd = torch.cat([image_nd, torch.flip(image_nd, dims=[3])], dim=0)\n\n        image_width = image_nd.shape[3]\n        clicks_lists_flipped = []\n        for clicks_list in clicks_lists:\n            clicks_list_flipped = [Click(is_positive=click.is_positive,\n                                         coords=(click.coords[0], image_width - click.coords[1] - 1))\n                                   for click in clicks_list]\n            clicks_lists_flipped.append(clicks_list_flipped)\n        clicks_lists = clicks_lists + clicks_lists_flipped\n\n        return image_nd, clicks_lists\n\n    def inv_transform(self, prob_map):\n        assert len(prob_map.shape) == 4 and prob_map.shape[0] % 2 == 0\n        num_maps = prob_map.shape[0] // 2\n        prob_map, prob_map_flipped = prob_map[:num_maps], prob_map[num_maps:]\n\n        return 0.5 * (prob_map + torch.flip(prob_map_flipped, dims=[3]))\n\n    def get_state(self):\n        return None\n\n    def set_state(self, state):\n        pass\n\n    def reset(self):\n        pass\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/transforms/limit_longest_side.py",
    "content": "from .zoom_in import ZoomIn, get_roi_image_nd\n\n\nclass LimitLongestSide(ZoomIn):\n    def __init__(self, max_size=800):\n        super().__init__(target_size=max_size, skip_clicks=0)\n\n    def transform(self, image_nd, clicks_lists):\n        assert image_nd.shape[0] == 1 and len(clicks_lists) == 1\n        image_max_size = max(image_nd.shape[2:4])\n        self.image_changed = False\n\n        if image_max_size <= self.target_size:\n            return image_nd, clicks_lists\n        self._input_image = image_nd\n\n        self._object_roi = (0, image_nd.shape[2] - 1, 0, image_nd.shape[3] - 1)\n        self._roi_image = get_roi_image_nd(image_nd, self._object_roi, self.target_size)\n        self.image_changed = True\n\n        tclicks_lists = [self._transform_clicks(clicks_lists[0])]\n        return self._roi_image, tclicks_lists\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/transforms/zoom_in.py",
    "content": "import torch\n\nfrom ..clicker import Click\nfrom ...utils.misc import get_bbox_iou, get_bbox_from_mask, expand_bbox, clamp_bbox\nfrom .base import BaseTransform\n\n\nclass ZoomIn(BaseTransform):\n    def __init__(self,\n                 target_size=400,\n                 skip_clicks=1,\n                 expansion_ratio=1.4,\n                 min_crop_size=200,\n                 recompute_thresh_iou=0.5,\n                 prob_thresh=0.50):\n        super().__init__()\n        self.target_size = target_size\n        self.min_crop_size = min_crop_size\n        self.skip_clicks = skip_clicks\n        self.expansion_ratio = expansion_ratio\n        self.recompute_thresh_iou = recompute_thresh_iou\n        self.prob_thresh = prob_thresh\n\n        self._input_image_shape = None\n        self._prev_probs = None\n        self._object_roi = None\n        self._roi_image = None\n\n    def transform(self, image_nd, clicks_lists):\n        assert image_nd.shape[0] == 1 and len(clicks_lists) == 1\n        self.image_changed = False\n\n        clicks_list = clicks_lists[0]\n        if len(clicks_list) <= self.skip_clicks:\n            return image_nd, clicks_lists\n\n        self._input_image_shape = image_nd.shape\n\n        current_object_roi = None\n        if self._prev_probs is not None:\n            current_pred_mask = (self._prev_probs > self.prob_thresh)[0, 0]\n            if current_pred_mask.sum() > 0:\n                current_object_roi = get_object_roi(current_pred_mask, clicks_list,\n                                                    self.expansion_ratio, self.min_crop_size)\n\n        if current_object_roi is None:\n            return image_nd, clicks_lists\n\n        update_object_roi = False\n        if self._object_roi is None:\n            update_object_roi = True\n        elif not check_object_roi(self._object_roi, clicks_list):\n            update_object_roi = True\n        elif get_bbox_iou(current_object_roi, self._object_roi) < self.recompute_thresh_iou:\n            update_object_roi = True\n\n        if update_object_roi:\n            self._object_roi = current_object_roi\n            self._roi_image = get_roi_image_nd(image_nd, self._object_roi, self.target_size)\n            self.image_changed = True\n\n        tclicks_lists = [self._transform_clicks(clicks_list)]\n        return self._roi_image.to(image_nd.device), tclicks_lists\n\n    def inv_transform(self, prob_map):\n        if self._object_roi is None:\n            self._prev_probs = prob_map.cpu().numpy()\n            return prob_map\n\n        assert prob_map.shape[0] == 1\n        rmin, rmax, cmin, cmax = self._object_roi\n        prob_map = torch.nn.functional.interpolate(prob_map, size=(rmax - rmin + 1, cmax - cmin + 1),\n                                                   mode='bilinear', align_corners=True)\n\n        if self._prev_probs is not None:\n            new_prob_map = torch.zeros(*self._prev_probs.shape, device=prob_map.device, dtype=prob_map.dtype)\n            new_prob_map[:, :, rmin:rmax + 1, cmin:cmax + 1] = prob_map\n        else:\n            new_prob_map = prob_map\n\n        self._prev_probs = new_prob_map.cpu().numpy()\n\n        return new_prob_map\n\n    def check_possible_recalculation(self):\n        if self._prev_probs is None or self._object_roi is not None or self.skip_clicks > 0:\n            return False\n\n        pred_mask = (self._prev_probs > self.prob_thresh)[0, 0]\n        if pred_mask.sum() > 0:\n            possible_object_roi = get_object_roi(pred_mask, [],\n                                                 self.expansion_ratio, self.min_crop_size)\n            image_roi = (0, self._input_image_shape[2] - 1, 0, self._input_image_shape[3] - 1)\n            if get_bbox_iou(possible_object_roi, image_roi) < 0.50:\n                return True\n        return False\n\n    def get_state(self):\n        roi_image = self._roi_image.cpu() if self._roi_image is not None else None\n        return self._input_image_shape, self._object_roi, self._prev_probs, roi_image, self.image_changed\n\n    def set_state(self, state):\n        self._input_image_shape, self._object_roi, self._prev_probs, self._roi_image, self.image_changed = state\n\n    def reset(self):\n        self._input_image_shape = None\n        self._object_roi = None\n        self._prev_probs = None\n        self._roi_image = None\n        self.image_changed = False\n\n    def _transform_clicks(self, clicks_list):\n        if self._object_roi is None:\n            return clicks_list\n\n        rmin, rmax, cmin, cmax = self._object_roi\n        crop_height, crop_width = self._roi_image.shape[2:]\n\n        transformed_clicks = []\n        for click in clicks_list:\n            new_r = crop_height * (click.coords[0] - rmin) / (rmax - rmin + 1)\n            new_c = crop_width * (click.coords[1] - cmin) / (cmax - cmin + 1)\n            transformed_clicks.append(Click(is_positive=click.is_positive, coords=(new_r, new_c)))\n        return transformed_clicks\n\n\ndef get_object_roi(pred_mask, clicks_list, expansion_ratio, min_crop_size):\n    pred_mask = pred_mask.copy()\n\n    for click in clicks_list:\n        if click.is_positive:\n            pred_mask[int(click.coords[0]), int(click.coords[1])] = 1\n\n    bbox = get_bbox_from_mask(pred_mask)\n    bbox = expand_bbox(bbox, expansion_ratio, min_crop_size)\n    h, w = pred_mask.shape[0], pred_mask.shape[1]\n    bbox = clamp_bbox(bbox, 0, h - 1, 0, w - 1)\n\n    return bbox\n\n\ndef get_roi_image_nd(image_nd, object_roi, target_size):\n    rmin, rmax, cmin, cmax = object_roi\n\n    height = rmax - rmin + 1\n    width = cmax - cmin + 1\n\n    if isinstance(target_size, tuple):\n        new_height, new_width = target_size\n    else:\n        scale = target_size / max(height, width)\n        new_height = int(round(height * scale))\n        new_width = int(round(width * scale))\n\n    with torch.no_grad():\n        roi_image_nd = image_nd[:, :, rmin:rmax + 1, cmin:cmax + 1]\n        roi_image_nd = torch.nn.functional.interpolate(roi_image_nd, size=(new_height, new_width),\n                                                       mode='bilinear', align_corners=True)\n\n    return roi_image_nd\n\n\ndef check_object_roi(object_roi, clicks_list):\n    for click in clicks_list:\n        if click.is_positive:\n            if click.coords[0] < object_roi[0] or click.coords[0] >= object_roi[1]:\n                return False\n            if click.coords[1] < object_roi[2] or click.coords[1] >= object_roi[3]:\n                return False\n\n    return True\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/inference/utils.py",
    "content": "from datetime import timedelta\nfrom pathlib import Path\n\nimport torch\nimport numpy as np\n\nfrom ..model.is_deeplab_model import get_deeplab_model\nfrom ..model.is_hrnet_model import get_hrnet_model\n\n\ndef get_time_metrics(all_ious, elapsed_time):\n    n_images = len(all_ious)\n    n_clicks = sum(map(len, all_ious))\n\n    mean_spc = elapsed_time / n_clicks\n    mean_spi = elapsed_time / n_images\n\n    return mean_spc, mean_spi\n\n\ndef load_is_model(checkpoint, device, backbone='auto', **kwargs):\n    if isinstance(checkpoint, (str, Path)):\n        state_dict = torch.load(checkpoint, map_location='cpu')\n    else:\n        state_dict = checkpoint\n\n    if backbone == 'auto':\n        for k in state_dict.keys():\n            if 'feature_extractor.stage2.0.branches' in k:\n                return load_hrnet_is_model(state_dict, device, backbone, **kwargs)\n        return load_deeplab_is_model(state_dict, device, backbone, **kwargs)\n    elif 'resnet' in backbone:\n        return load_deeplab_is_model(state_dict, device, backbone, **kwargs)\n    elif 'hrnet' in backbone:\n        return load_hrnet_is_model(state_dict, device, backbone, **kwargs)\n    else:\n        raise NotImplementedError('Unknown backbone')\n\n\ndef load_hrnet_is_model(state_dict, device, backbone='auto', width=48, ocr_width=256,\n                        small=False, cpu_dist_maps=False, norm_radius=260):\n    if backbone == 'auto':\n        num_fe_weights = len([x for x in state_dict.keys() if 'feature_extractor.' in x])\n        small = num_fe_weights < 1800\n\n        ocr_f_down = [v for k, v in state_dict.items() if 'object_context_block.f_down.1.0.bias' in k]\n        assert len(ocr_f_down) == 1\n        ocr_width = ocr_f_down[0].shape[0]\n\n        s2_conv1_w = [v for k, v in state_dict.items() if 'stage2.0.branches.0.0.conv1.weight' in k]\n        assert  len(s2_conv1_w) == 1\n        width = s2_conv1_w[0].shape[0]\n\n    model = get_hrnet_model(width=width, ocr_width=ocr_width, small=small,\n                            with_aux_output=False, cpu_dist_maps=cpu_dist_maps,\n                            norm_radius=norm_radius)\n\n    model.load_state_dict(state_dict, strict=False)\n    for param in model.parameters():\n        param.requires_grad = False\n    model.to(device)\n    model.eval()\n\n    return model\n\n\ndef load_deeplab_is_model(state_dict, device, backbone='auto', deeplab_ch=128, aspp_dropout=0.2,\n                          cpu_dist_maps=False, norm_radius=260):\n    if backbone == 'auto':\n        num_backbone_params = len([x for x in state_dict.keys()\n                                   if 'feature_extractor.backbone' in x and not('num_batches_tracked' in x)])\n\n        if num_backbone_params <= 181:\n            backbone = 'resnet34'\n        elif num_backbone_params <= 276:\n            backbone = 'resnet50'\n        elif num_backbone_params <= 531:\n            backbone = 'resnet101'\n        else:\n            raise NotImplementedError('Unknown backbone')\n\n        if 'aspp_dropout' in state_dict:\n            aspp_dropout = float(state_dict['aspp_dropout'].cpu().numpy())\n        else:\n            aspp_project_weight = [v for k, v in state_dict.items() if 'aspp.project.0.weight' in k][0]\n            deeplab_ch = aspp_project_weight.size(0)\n            if deeplab_ch == 256:\n                aspp_dropout = 0.5\n\n    model = get_deeplab_model(backbone=backbone, deeplab_ch=deeplab_ch,\n                              aspp_dropout=aspp_dropout, cpu_dist_maps=cpu_dist_maps,\n                              norm_radius=norm_radius)\n\n    model.load_state_dict(state_dict, strict=False)\n    for param in model.parameters():\n        param.requires_grad = False\n    model.to(device)\n    model.eval()\n\n    return model\n\n\ndef get_iou(gt_mask, pred_mask, ignore_label=-1):\n    ignore_gt_mask_inv = gt_mask != ignore_label\n    obj_gt_mask = gt_mask == 1\n\n    intersection = np.logical_and(np.logical_and(pred_mask, obj_gt_mask), ignore_gt_mask_inv).sum()\n    union = np.logical_and(np.logical_or(pred_mask, obj_gt_mask), ignore_gt_mask_inv).sum()\n\n    return intersection / union\n\n\ndef compute_noc_metric(all_ious, iou_thrs, max_clicks=20):\n    def _get_noc(iou_arr, iou_thr):\n        vals = iou_arr >= iou_thr\n        return np.argmax(vals) + 1 if np.any(vals) else max_clicks\n\n    noc_list = []\n    over_max_list = []\n    for iou_thr in iou_thrs:\n        scores_arr = np.array([_get_noc(iou_arr, iou_thr)\n                               for iou_arr in all_ious], dtype=np.int32)\n\n        score = scores_arr.mean()\n        over_max = (scores_arr == max_clicks).sum()\n\n        noc_list.append(score)\n        over_max_list.append(over_max)\n\n    return noc_list, over_max_list\n\n\ndef find_checkpoint(weights_folder, checkpoint_name):\n    weights_folder = Path(weights_folder)\n    if ':' in checkpoint_name:\n        model_name, checkpoint_name = checkpoint_name.split(':')\n        models_candidates = [x for x in weights_folder.glob(f'{model_name}*') if x.is_dir()]\n        assert len(models_candidates) == 1\n        model_folder = models_candidates[0]\n    else:\n        model_folder = weights_folder\n\n    if checkpoint_name.endswith('.pth'):\n        if Path(checkpoint_name).exists():\n            checkpoint_path = checkpoint_name\n        else:\n            checkpoint_path = weights_folder / checkpoint_name\n    else:\n        model_checkpoints = list(model_folder.rglob(f'{checkpoint_name}*.pth'))\n        assert len(model_checkpoints) == 1\n        checkpoint_path = model_checkpoints[0]\n\n    return str(checkpoint_path)\n\n\ndef get_results_table(noc_list, over_max_list, brs_type, dataset_name, mean_spc, elapsed_time,\n                      n_clicks=20, model_name=None):\n    table_header = (f'|{\"BRS Type\":^13}|{\"Dataset\":^11}|'\n                    f'{\"NoC@80%\":^9}|{\"NoC@85%\":^9}|{\"NoC@90%\":^9}|'\n                    f'{\">=\"+str(n_clicks)+\"@85%\":^9}|{\">=\"+str(n_clicks)+\"@90%\":^9}|'\n                    f'{\"SPC,s\":^7}|{\"Time\":^9}|')\n    row_width = len(table_header)\n\n    header = f'Eval results for model: {model_name}\\n' if model_name is not None else ''\n    header += '-' * row_width + '\\n'\n    header += table_header + '\\n' + '-' * row_width\n\n    eval_time = str(timedelta(seconds=int(elapsed_time)))\n    table_row = f'|{brs_type:^13}|{dataset_name:^11}|'\n    table_row += f'{noc_list[0]:^9.2f}|'\n    table_row += f'{noc_list[1]:^9.2f}|' if len(noc_list) > 1 else f'{\"?\":^9}|'\n    table_row += f'{noc_list[2]:^9.2f}|' if len(noc_list) > 2 else f'{\"?\":^9}|'\n    table_row += f'{over_max_list[1]:^9}|' if len(noc_list) > 1 else f'{\"?\":^9}|'\n    table_row += f'{over_max_list[2]:^9}|' if len(noc_list) > 2 else f'{\"?\":^9}|'\n    table_row += f'{mean_spc:^7.3f}|{eval_time:^9}|'\n\n    return header, table_row"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/inference/interact/fbrs/model/initializer.py",
    "content": "import torch\nimport torch.nn as nn\nimport numpy as np\n\n\nclass Initializer(object):\n    def __init__(self, local_init=True, gamma=None):\n        self.local_init = local_init\n        self.gamma = gamma\n\n    def __call__(self, m):\n        if getattr(m, '__initialized', False):\n            return\n\n        if isinstance(m, (nn.BatchNorm1d, nn.BatchNorm2d, nn.BatchNorm3d,\n                          nn.InstanceNorm1d, nn.InstanceNorm2d, nn.InstanceNorm3d,\n                          nn.GroupNorm, nn.SyncBatchNorm)) or 'BatchNorm' in m.__class__.__name__:\n            if m.weight is not None:\n                self._init_gamma(m.weight.data)\n            if m.bias is not None:\n                self._init_beta(m.bias.data)\n        else:\n            if getattr(m, 'weight', None) is not None:\n                self._init_weight(m.weight.data)\n            if getattr(m, 'bias', None) is not None:\n                self._init_bias(m.bias.data)\n\n        if self.local_init:\n            object.__setattr__(m, '__initialized', True)\n\n    def _init_weight(self, data):\n        nn.init.uniform_(data, -0.07, 0.07)\n\n    def _init_bias(self, data):\n        nn.init.constant_(data, 0)\n\n    def _init_gamma(self, data):\n        if self.gamma is None:\n            nn.init.constant_(data, 1.0)\n        else:\n            nn.init.normal_(data, 1.0, self.gamma)\n\n    def _init_beta(self, data):\n        nn.init.constant_(data, 0)\n\n\nclass Bilinear(Initializer):\n    def __init__(self, scale, groups, in_channels, **kwargs):\n        super().__init__(**kwargs)\n        self.scale = scale\n        self.groups = groups\n        self.in_channels = in_channels\n\n    def _init_weight(self, data):\n        \"\"\"Reset the weight and bias.\"\"\"\n        bilinear_kernel = self.get_bilinear_kernel(self.scale)\n        weight = torch.zeros_like(data)\n        for i in range(self.in_channels):\n            if self.groups == 1:\n                j = i\n            else:\n                j = 0\n            weight[i, j] = bilinear_kernel\n        data[:] = weight\n\n    @staticmethod\n    def get_bilinear_kernel(scale):\n        \"\"\"Generate a bilinear upsampling kernel.\"\"\"\n        kernel_size = 2 * scale - scale % 2\n        scale = (kernel_size + 1) // 2\n        center = scale - 0.5 * (1 + kernel_size % 2)\n\n        og = np.ogrid[:kernel_size, :kernel_size]\n        kernel = (1 - np.abs(og[0] - center) / scale) * (1 - np.abs(og[1] - center) / scale)\n\n        return torch.tensor(kernel, dtype=torch.float32)\n\n\nclass XavierGluon(Initializer):\n    def __init__(self, rnd_type='uniform', factor_type='avg', magnitude=3, **kwargs):\n        super().__init__(**kwargs)\n\n        self.rnd_type = rnd_type\n        self.factor_type = factor_type\n        self.magnitude = float(magnitude)\n\n    def _init_weight(self, arr):\n        fan_in, fan_out = nn.init._calculate_fan_in_and_fan_out(arr)\n\n        if self.factor_type == 'avg':\n            factor = (fan_in + fan_out) / 2.0\n        elif self.factor_type == 'in':\n            factor = fan_in\n        elif self.factor_type == 'out':\n            factor = fan_out\n        else:\n            raise ValueError('Incorrect factor type')\n        scale = np.sqrt(self.magnitude / factor)\n\n        if self.rnd_type == 'uniform':\n            nn.init.uniform_(arr, -scale, scale)\n        elif self.rnd_type == 'gaussian':\n            nn.init.normal_(arr, 0, scale)\n        else:\n            raise ValueError('Unknown random type')\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/is_deeplab_model.py",
    "content": "import torch\nimport torch.nn as nn\n\nfrom .ops import DistMaps\nfrom .modeling.deeplab_v3 import DeepLabV3Plus\nfrom .modeling.basic_blocks import SepConvHead\n\n\ndef get_deeplab_model(backbone='resnet50', deeplab_ch=256, aspp_dropout=0.5,\n                      norm_layer=nn.BatchNorm2d, backbone_norm_layer=None,\n                      use_rgb_conv=True, cpu_dist_maps=False,\n                      norm_radius=260):\n    model = DistMapsModel(\n        feature_extractor=DeepLabV3Plus(backbone=backbone,\n                                        ch=deeplab_ch,\n                                        project_dropout=aspp_dropout,\n                                        norm_layer=norm_layer,\n                                        backbone_norm_layer=backbone_norm_layer),\n        head=SepConvHead(1, in_channels=deeplab_ch, mid_channels=deeplab_ch // 2,\n                         num_layers=2, norm_layer=norm_layer),\n        use_rgb_conv=use_rgb_conv,\n        norm_layer=norm_layer,\n        norm_radius=norm_radius,\n        cpu_dist_maps=cpu_dist_maps\n    )\n\n    return model\n\n\nclass DistMapsModel(nn.Module):\n    def __init__(self, feature_extractor, head, norm_layer=nn.BatchNorm2d, use_rgb_conv=True,\n                 cpu_dist_maps=False, norm_radius=260):\n        super(DistMapsModel, self).__init__()\n\n        if use_rgb_conv:\n            self.rgb_conv = nn.Sequential(\n                nn.Conv2d(in_channels=5, out_channels=8, kernel_size=1),\n                nn.LeakyReLU(negative_slope=0.2),\n                norm_layer(8),\n                nn.Conv2d(in_channels=8, out_channels=3, kernel_size=1),\n            )\n        else:\n            self.rgb_conv = None\n\n        self.dist_maps = DistMaps(norm_radius=norm_radius, spatial_scale=1.0,\n                                  cpu_mode=cpu_dist_maps)\n        self.feature_extractor = feature_extractor\n        self.head = head\n\n    def forward(self, image, points):\n        coord_features = self.dist_maps(image, points)\n\n        if self.rgb_conv is not None:\n            x = self.rgb_conv(torch.cat((image, coord_features), dim=1))\n        else:\n            c1, c2 = torch.chunk(coord_features, 2, dim=1)\n            c3 = torch.ones_like(c1)\n            coord_features = torch.cat((c1, c2, c3), dim=1)\n            x = 0.8 * image * coord_features + 0.2 * image\n\n        backbone_features = self.feature_extractor(x)\n        instance_out = self.head(backbone_features[0])\n        instance_out = nn.functional.interpolate(instance_out, size=image.size()[2:],\n                                                 mode='bilinear', align_corners=True)\n\n        return {'instances': instance_out}\n\n    def load_weights(self, path_to_weights):\n        current_state_dict = self.state_dict()\n        new_state_dict = torch.load(path_to_weights, map_location='cpu')\n        current_state_dict.update(new_state_dict)\n        self.load_state_dict(current_state_dict)\n\n    def get_trainable_params(self):\n        backbone_params = nn.ParameterList()\n        other_params = nn.ParameterList()\n\n        for name, param in self.named_parameters():\n            if param.requires_grad:\n                if 'backbone' in name:\n                    backbone_params.append(param)\n                else:\n                    other_params.append(param)\n        return backbone_params, other_params\n\n\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/is_hrnet_model.py",
    "content": "import torch\nimport torch.nn as nn\n\nfrom .ops import DistMaps\nfrom .modeling.hrnet_ocr import HighResolutionNet\n\n\ndef get_hrnet_model(width=48, ocr_width=256, small=False, norm_radius=260,\n                    use_rgb_conv=True, with_aux_output=False, cpu_dist_maps=False,\n                    norm_layer=nn.BatchNorm2d):\n    model = DistMapsHRNetModel(\n        feature_extractor=HighResolutionNet(width=width, ocr_width=ocr_width, small=small,\n                                            num_classes=1, norm_layer=norm_layer),\n        use_rgb_conv=use_rgb_conv,\n        with_aux_output=with_aux_output,\n        norm_layer=norm_layer,\n        norm_radius=norm_radius,\n        cpu_dist_maps=cpu_dist_maps\n    )\n\n    return model\n\n\nclass DistMapsHRNetModel(nn.Module):\n    def __init__(self, feature_extractor, use_rgb_conv=True, with_aux_output=False,\n                 norm_layer=nn.BatchNorm2d, norm_radius=260, cpu_dist_maps=False):\n        super(DistMapsHRNetModel, self).__init__()\n        self.with_aux_output = with_aux_output\n\n        if use_rgb_conv:\n            self.rgb_conv = nn.Sequential(\n                nn.Conv2d(in_channels=5, out_channels=8, kernel_size=1),\n                nn.LeakyReLU(negative_slope=0.2),\n                norm_layer(8),\n                nn.Conv2d(in_channels=8, out_channels=3, kernel_size=1),\n            )\n        else:\n            self.rgb_conv = None\n\n        self.dist_maps = DistMaps(norm_radius=norm_radius, spatial_scale=1.0, cpu_mode=cpu_dist_maps)\n        self.feature_extractor = feature_extractor\n\n    def forward(self, image, points):\n        coord_features = self.dist_maps(image, points)\n\n        if self.rgb_conv is not None:\n            x = self.rgb_conv(torch.cat((image, coord_features), dim=1))\n        else:\n            c1, c2 = torch.chunk(coord_features, 2, dim=1)\n            c3 = torch.ones_like(c1)\n            coord_features = torch.cat((c1, c2, c3), dim=1)\n            x = 0.8 * image * coord_features + 0.2 * image\n\n        feature_extractor_out = self.feature_extractor(x)\n        instance_out = feature_extractor_out[0]\n        instance_out = nn.functional.interpolate(instance_out, size=image.size()[2:],\n                                                 mode='bilinear', align_corners=True)\n        outputs = {'instances': instance_out}\n        if self.with_aux_output:\n            instance_aux_out = feature_extractor_out[1]\n            instance_aux_out = nn.functional.interpolate(instance_aux_out, size=image.size()[2:],\n                                                         mode='bilinear', align_corners=True)\n            outputs['instances_aux'] = instance_aux_out\n\n        return outputs\n\n    def load_weights(self, path_to_weights):\n        current_state_dict = self.state_dict()\n        new_state_dict = torch.load(path_to_weights)\n        current_state_dict.update(new_state_dict)\n        self.load_state_dict(current_state_dict)\n\n    def get_trainable_params(self):\n        backbone_params = nn.ParameterList()\n        other_params = nn.ParameterList()\n        other_params_keys = []\n        nonbackbone_keywords = ['rgb_conv', 'aux_head', 'cls_head', 'conv3x3_ocr', 'ocr_distri_head']\n\n        for name, param in self.named_parameters():\n            if param.requires_grad:\n                if any(x in name for x in nonbackbone_keywords):\n                    other_params.append(param)\n                    other_params_keys.append(name)\n                else:\n                    backbone_params.append(param)\n        print('Nonbackbone params:', sorted(other_params_keys))\n        return backbone_params, other_params\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/losses.py",
    "content": "import numpy as np\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\nfrom ..utils import misc\n\n\nclass NormalizedFocalLossSigmoid(nn.Module):\n    def __init__(self, axis=-1, alpha=0.25, gamma=2,\n                 from_logits=False, batch_axis=0,\n                 weight=None, size_average=True, detach_delimeter=True,\n                 eps=1e-12, scale=1.0,\n                 ignore_label=-1):\n        super(NormalizedFocalLossSigmoid, self).__init__()\n        self._axis = axis\n        self._alpha = alpha\n        self._gamma = gamma\n        self._ignore_label = ignore_label\n        self._weight = weight if weight is not None else 1.0\n        self._batch_axis = batch_axis\n\n        self._scale = scale\n        self._from_logits = from_logits\n        self._eps = eps\n        self._size_average = size_average\n        self._detach_delimeter = detach_delimeter\n        self._k_sum = 0\n\n    def forward(self, pred, label, sample_weight=None):\n        one_hot = label > 0\n        sample_weight = label != self._ignore_label\n\n        if not self._from_logits:\n            pred = torch.sigmoid(pred)\n\n        alpha = torch.where(one_hot, self._alpha * sample_weight, (1 - self._alpha) * sample_weight)\n        pt = torch.where(one_hot, pred, 1 - pred)\n        pt = torch.where(sample_weight, pt, torch.ones_like(pt))\n\n        beta = (1 - pt) ** self._gamma\n\n        sw_sum = torch.sum(sample_weight, dim=(-2, -1), keepdim=True)\n        beta_sum = torch.sum(beta, dim=(-2, -1), keepdim=True)\n        mult = sw_sum / (beta_sum + self._eps)\n        if self._detach_delimeter:\n            mult = mult.detach()\n        beta = beta * mult\n\n        ignore_area = torch.sum(label == self._ignore_label, dim=tuple(range(1, label.dim()))).cpu().numpy()\n        sample_mult = torch.mean(mult, dim=tuple(range(1, mult.dim()))).cpu().numpy()\n        if np.any(ignore_area == 0):\n            self._k_sum = 0.9 * self._k_sum + 0.1 * sample_mult[ignore_area == 0].mean()\n\n        loss = -alpha * beta * torch.log(torch.min(pt + self._eps, torch.ones(1, dtype=torch.float).to(pt.device)))\n        loss = self._weight * (loss * sample_weight)\n\n        if self._size_average:\n            bsum = torch.sum(sample_weight, dim=misc.get_dims_with_exclusion(sample_weight.dim(), self._batch_axis))\n            loss = torch.sum(loss, dim=misc.get_dims_with_exclusion(loss.dim(), self._batch_axis)) / (bsum + self._eps)\n        else:\n            loss = torch.sum(loss, dim=misc.get_dims_with_exclusion(loss.dim(), self._batch_axis))\n\n        return self._scale * loss\n\n    def log_states(self, sw, name, global_step):\n        sw.add_scalar(tag=name + '_k', value=self._k_sum, global_step=global_step)\n\n\nclass FocalLoss(nn.Module):\n    def __init__(self, axis=-1, alpha=0.25, gamma=2,\n                 from_logits=False, batch_axis=0,\n                 weight=None, num_class=None,\n                 eps=1e-9, size_average=True, scale=1.0):\n        super(FocalLoss, self).__init__()\n        self._axis = axis\n        self._alpha = alpha\n        self._gamma = gamma\n        self._weight = weight if weight is not None else 1.0\n        self._batch_axis = batch_axis\n\n        self._scale = scale\n        self._num_class = num_class\n        self._from_logits = from_logits\n        self._eps = eps\n        self._size_average = size_average\n\n    def forward(self, pred, label, sample_weight=None):\n        if not self._from_logits:\n            pred = F.sigmoid(pred)\n\n        one_hot = label > 0\n        pt = torch.where(one_hot, pred, 1 - pred)\n\n        t = label != -1\n        alpha = torch.where(one_hot, self._alpha * t, (1 - self._alpha) * t)\n        beta = (1 - pt) ** self._gamma\n\n        loss = -alpha * beta * torch.log(torch.min(pt + self._eps, torch.ones(1, dtype=torch.float).to(pt.device)))\n        sample_weight = label != -1\n\n        loss = self._weight * (loss * sample_weight)\n\n        if self._size_average:\n            tsum = torch.sum(label == 1, dim=misc.get_dims_with_exclusion(label.dim(), self._batch_axis))\n            loss = torch.sum(loss, dim=misc.get_dims_with_exclusion(loss.dim(), self._batch_axis)) / (tsum + self._eps)\n        else:\n            loss = torch.sum(loss, dim=misc.get_dims_with_exclusion(loss.dim(), self._batch_axis))\n\n        return self._scale * loss\n\n\nclass SigmoidBinaryCrossEntropyLoss(nn.Module):\n    def __init__(self, from_sigmoid=False, weight=None, batch_axis=0, ignore_label=-1):\n        super(SigmoidBinaryCrossEntropyLoss, self).__init__()\n        self._from_sigmoid = from_sigmoid\n        self._ignore_label = ignore_label\n        self._weight = weight if weight is not None else 1.0\n        self._batch_axis = batch_axis\n\n    def forward(self, pred, label):\n        label = label.view(pred.size())\n        sample_weight = label != self._ignore_label\n        label = torch.where(sample_weight, label, torch.zeros_like(label))\n\n        if not self._from_sigmoid:\n            loss = torch.relu(pred) - pred * label + F.softplus(-torch.abs(pred))\n        else:\n            eps = 1e-12\n            loss = -(torch.log(pred + eps) * label\n                     + torch.log(1. - pred + eps) * (1. - label))\n\n        loss = self._weight * (loss * sample_weight)\n        return torch.mean(loss, dim=misc.get_dims_with_exclusion(loss.dim(), self._batch_axis))\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/metrics.py",
    "content": "import torch\nimport numpy as np\n\nfrom ..utils import misc\n\n\nclass TrainMetric(object):\n    def __init__(self, pred_outputs, gt_outputs):\n        self.pred_outputs = pred_outputs\n        self.gt_outputs = gt_outputs\n\n    def update(self, *args, **kwargs):\n        raise NotImplementedError\n\n    def get_epoch_value(self):\n        raise NotImplementedError\n\n    def reset_epoch_stats(self):\n        raise NotImplementedError\n\n    def log_states(self, sw, tag_prefix, global_step):\n        pass\n\n    @property\n    def name(self):\n        return type(self).__name__\n\n\nclass AdaptiveIoU(TrainMetric):\n    def __init__(self, init_thresh=0.4, thresh_step=0.025, thresh_beta=0.99, iou_beta=0.9,\n                 ignore_label=-1, from_logits=True,\n                 pred_output='instances', gt_output='instances'):\n        super().__init__(pred_outputs=(pred_output,), gt_outputs=(gt_output,))\n        self._ignore_label = ignore_label\n        self._from_logits = from_logits\n        self._iou_thresh = init_thresh\n        self._thresh_step = thresh_step\n        self._thresh_beta = thresh_beta\n        self._iou_beta = iou_beta\n        self._ema_iou = 0.0\n        self._epoch_iou_sum = 0.0\n        self._epoch_batch_count = 0\n\n    def update(self, pred, gt):\n        gt_mask = gt > 0\n        if self._from_logits:\n            pred = torch.sigmoid(pred)\n\n        gt_mask_area = torch.sum(gt_mask, dim=(1, 2)).detach().cpu().numpy()\n        if np.all(gt_mask_area == 0):\n            return\n\n        ignore_mask = gt == self._ignore_label\n        max_iou = _compute_iou(pred > self._iou_thresh, gt_mask, ignore_mask).mean()\n        best_thresh = self._iou_thresh\n        for t in [best_thresh - self._thresh_step, best_thresh + self._thresh_step]:\n            temp_iou = _compute_iou(pred > t, gt_mask, ignore_mask).mean()\n            if temp_iou > max_iou:\n                max_iou = temp_iou\n                best_thresh = t\n\n        self._iou_thresh = self._thresh_beta * self._iou_thresh + (1 - self._thresh_beta) * best_thresh\n        self._ema_iou = self._iou_beta * self._ema_iou + (1 - self._iou_beta) * max_iou\n        self._epoch_iou_sum += max_iou\n        self._epoch_batch_count += 1\n\n    def get_epoch_value(self):\n        if self._epoch_batch_count > 0:\n            return self._epoch_iou_sum / self._epoch_batch_count\n        else:\n            return 0.0\n\n    def reset_epoch_stats(self):\n        self._epoch_iou_sum = 0.0\n        self._epoch_batch_count = 0\n\n    def log_states(self, sw, tag_prefix, global_step):\n        sw.add_scalar(tag=tag_prefix + '_ema_iou', value=self._ema_iou, global_step=global_step)\n        sw.add_scalar(tag=tag_prefix + '_iou_thresh', value=self._iou_thresh, global_step=global_step)\n\n    @property\n    def iou_thresh(self):\n        return self._iou_thresh\n\n\ndef _compute_iou(pred_mask, gt_mask, ignore_mask=None, keep_ignore=False):\n    if ignore_mask is not None:\n        pred_mask = torch.where(ignore_mask, torch.zeros_like(pred_mask), pred_mask)\n\n    reduction_dims = misc.get_dims_with_exclusion(gt_mask.dim(), 0)\n    union = torch.mean((pred_mask | gt_mask).float(), dim=reduction_dims).detach().cpu().numpy()\n    intersection = torch.mean((pred_mask & gt_mask).float(), dim=reduction_dims).detach().cpu().numpy()\n    nonzero = union > 0\n\n    iou = intersection[nonzero] / union[nonzero]\n    if not keep_ignore:\n        return iou\n    else:\n        result = np.full_like(intersection, -1)\n        result[nonzero] = iou\n        return result\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/modeling/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/inference/interact/fbrs/model/modeling/basic_blocks.py",
    "content": "import torch.nn as nn\n\nfrom ...model import ops\n\n\nclass ConvHead(nn.Module):\n    def __init__(self, out_channels, in_channels=32, num_layers=1,\n                 kernel_size=3, padding=1,\n                 norm_layer=nn.BatchNorm2d):\n        super(ConvHead, self).__init__()\n        convhead = []\n\n        for i in range(num_layers):\n            convhead.extend([\n                nn.Conv2d(in_channels, in_channels, kernel_size, padding=padding),\n                nn.ReLU(),\n                norm_layer(in_channels) if norm_layer is not None else nn.Identity()\n            ])\n        convhead.append(nn.Conv2d(in_channels, out_channels, 1, padding=0))\n\n        self.convhead = nn.Sequential(*convhead)\n\n    def forward(self, *inputs):\n        return self.convhead(inputs[0])\n\n\nclass SepConvHead(nn.Module):\n    def __init__(self, num_outputs, in_channels, mid_channels, num_layers=1,\n                 kernel_size=3, padding=1, dropout_ratio=0.0, dropout_indx=0,\n                 norm_layer=nn.BatchNorm2d):\n        super(SepConvHead, self).__init__()\n\n        sepconvhead = []\n\n        for i in range(num_layers):\n            sepconvhead.append(\n                SeparableConv2d(in_channels=in_channels if i == 0 else mid_channels,\n                                out_channels=mid_channels,\n                                dw_kernel=kernel_size, dw_padding=padding,\n                                norm_layer=norm_layer, activation='relu')\n            )\n            if dropout_ratio > 0 and dropout_indx == i:\n                sepconvhead.append(nn.Dropout(dropout_ratio))\n\n        sepconvhead.append(\n            nn.Conv2d(in_channels=mid_channels, out_channels=num_outputs, kernel_size=1, padding=0)\n        )\n\n        self.layers = nn.Sequential(*sepconvhead)\n\n    def forward(self, *inputs):\n        x = inputs[0]\n\n        return self.layers(x)\n\n\nclass SeparableConv2d(nn.Module):\n    def __init__(self, in_channels, out_channels, dw_kernel, dw_padding, dw_stride=1,\n                 activation=None, use_bias=False, norm_layer=None):\n        super(SeparableConv2d, self).__init__()\n        _activation = ops.select_activation_function(activation)\n        self.body = nn.Sequential(\n            nn.Conv2d(in_channels, in_channels, kernel_size=dw_kernel, stride=dw_stride,\n                      padding=dw_padding, bias=use_bias, groups=in_channels),\n            nn.Conv2d(in_channels, out_channels, kernel_size=1, stride=1, bias=use_bias),\n            norm_layer(out_channels) if norm_layer is not None else nn.Identity(),\n            _activation()\n        )\n\n    def forward(self, x):\n        return self.body(x)\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/modeling/deeplab_v3.py",
    "content": "from contextlib import ExitStack\n\nimport torch\nfrom torch import nn\nimport torch.nn.functional as F\n\nfrom .basic_blocks import SeparableConv2d\nfrom .resnet import ResNetBackbone\nfrom ...model import ops\n\n\nclass DeepLabV3Plus(nn.Module):\n    def __init__(self, backbone='resnet50', norm_layer=nn.BatchNorm2d,\n                 backbone_norm_layer=None,\n                 ch=256,\n                 project_dropout=0.5,\n                 inference_mode=False,\n                 **kwargs):\n        super(DeepLabV3Plus, self).__init__()\n        if backbone_norm_layer is None:\n            backbone_norm_layer = norm_layer\n\n        self.backbone_name = backbone\n        self.norm_layer = norm_layer\n        self.backbone_norm_layer = backbone_norm_layer\n        self.inference_mode = False\n        self.ch = ch\n        self.aspp_in_channels = 2048\n        self.skip_project_in_channels = 256  # layer 1 out_channels\n\n        self._kwargs = kwargs\n        if backbone == 'resnet34':\n            self.aspp_in_channels = 512\n            self.skip_project_in_channels = 64\n\n        self.backbone = ResNetBackbone(backbone=self.backbone_name, pretrained_base=False,\n                                       norm_layer=self.backbone_norm_layer, **kwargs)\n\n        self.head = _DeepLabHead(in_channels=ch + 32, mid_channels=ch, out_channels=ch,\n                                 norm_layer=self.norm_layer)\n        self.skip_project = _SkipProject(self.skip_project_in_channels, 32, norm_layer=self.norm_layer)\n        self.aspp = _ASPP(in_channels=self.aspp_in_channels,\n                          atrous_rates=[12, 24, 36],\n                          out_channels=ch,\n                          project_dropout=project_dropout,\n                          norm_layer=self.norm_layer)\n\n        if inference_mode:\n            self.set_prediction_mode()\n\n    def load_pretrained_weights(self):\n        pretrained = ResNetBackbone(backbone=self.backbone_name, pretrained_base=True,\n                                    norm_layer=self.backbone_norm_layer, **self._kwargs)\n        backbone_state_dict = self.backbone.state_dict()\n        pretrained_state_dict = pretrained.state_dict()\n\n        backbone_state_dict.update(pretrained_state_dict)\n        self.backbone.load_state_dict(backbone_state_dict)\n\n        if self.inference_mode:\n            for param in self.backbone.parameters():\n                param.requires_grad = False\n\n    def set_prediction_mode(self):\n        self.inference_mode = True\n        self.eval()\n\n    def forward(self, x):\n        with ExitStack() as stack:\n            if self.inference_mode:\n                stack.enter_context(torch.no_grad())\n\n            c1, _, c3, c4 = self.backbone(x)\n            c1 = self.skip_project(c1)\n\n            x = self.aspp(c4)\n            x = F.interpolate(x, c1.size()[2:], mode='bilinear', align_corners=True)\n            x = torch.cat((x, c1), dim=1)\n            x = self.head(x)\n\n        return x,\n\n\nclass _SkipProject(nn.Module):\n    def __init__(self, in_channels, out_channels, norm_layer=nn.BatchNorm2d):\n        super(_SkipProject, self).__init__()\n        _activation = ops.select_activation_function(\"relu\")\n\n        self.skip_project = nn.Sequential(\n            nn.Conv2d(in_channels, out_channels, kernel_size=1, bias=False),\n            norm_layer(out_channels),\n            _activation()\n        )\n\n    def forward(self, x):\n        return self.skip_project(x)\n\n\nclass _DeepLabHead(nn.Module):\n    def __init__(self, out_channels, in_channels, mid_channels=256, norm_layer=nn.BatchNorm2d):\n        super(_DeepLabHead, self).__init__()\n\n        self.block = nn.Sequential(\n            SeparableConv2d(in_channels=in_channels, out_channels=mid_channels, dw_kernel=3,\n                            dw_padding=1, activation='relu', norm_layer=norm_layer),\n            SeparableConv2d(in_channels=mid_channels, out_channels=mid_channels, dw_kernel=3,\n                            dw_padding=1, activation='relu', norm_layer=norm_layer),\n            nn.Conv2d(in_channels=mid_channels, out_channels=out_channels, kernel_size=1)\n        )\n\n    def forward(self, x):\n        return self.block(x)\n\n\nclass _ASPP(nn.Module):\n    def __init__(self, in_channels, atrous_rates, out_channels=256,\n                 project_dropout=0.5, norm_layer=nn.BatchNorm2d):\n        super(_ASPP, self).__init__()\n\n        b0 = nn.Sequential(\n            nn.Conv2d(in_channels=in_channels, out_channels=out_channels, kernel_size=1, bias=False),\n            norm_layer(out_channels),\n            nn.ReLU()\n        )\n\n        rate1, rate2, rate3 = tuple(atrous_rates)\n        b1 = _ASPPConv(in_channels, out_channels, rate1, norm_layer)\n        b2 = _ASPPConv(in_channels, out_channels, rate2, norm_layer)\n        b3 = _ASPPConv(in_channels, out_channels, rate3, norm_layer)\n        b4 = _AsppPooling(in_channels, out_channels, norm_layer=norm_layer)\n\n        self.concurent = nn.ModuleList([b0, b1, b2, b3, b4])\n\n        project = [\n            nn.Conv2d(in_channels=5*out_channels, out_channels=out_channels,\n                      kernel_size=1, bias=False),\n            norm_layer(out_channels),\n            nn.ReLU()\n        ]\n        if project_dropout > 0:\n            project.append(nn.Dropout(project_dropout))\n        self.project = nn.Sequential(*project)\n\n    def forward(self, x):\n        x = torch.cat([block(x) for block in self.concurent], dim=1)\n\n        return self.project(x)\n\n\nclass _AsppPooling(nn.Module):\n    def __init__(self, in_channels, out_channels, norm_layer):\n        super(_AsppPooling, self).__init__()\n\n        self.gap = nn.Sequential(\n            nn.AdaptiveAvgPool2d((1, 1)),\n            nn.Conv2d(in_channels=in_channels, out_channels=out_channels,\n                      kernel_size=1, bias=False),\n            norm_layer(out_channels),\n            nn.ReLU()\n        )\n\n    def forward(self, x):\n        pool = self.gap(x)\n        return F.interpolate(pool, x.size()[2:], mode='bilinear', align_corners=True)\n\n\ndef _ASPPConv(in_channels, out_channels, atrous_rate, norm_layer):\n    block = nn.Sequential(\n        nn.Conv2d(in_channels=in_channels, out_channels=out_channels,\n                  kernel_size=3, padding=atrous_rate,\n                  dilation=atrous_rate, bias=False),\n        norm_layer(out_channels),\n        nn.ReLU()\n    )\n\n    return block\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/modeling/hrnet_ocr.py",
    "content": "import os\nimport numpy as np\nimport torch\nimport torch.nn as nn\nimport torch._utils\nimport torch.nn.functional as F\nfrom .ocr import SpatialOCR_Module, SpatialGather_Module\nfrom .resnetv1b import BasicBlockV1b, BottleneckV1b\n\nrelu_inplace = True\n\n\nclass HighResolutionModule(nn.Module):\n    def __init__(self, num_branches, blocks, num_blocks, num_inchannels,\n                 num_channels, fuse_method,multi_scale_output=True,\n                 norm_layer=nn.BatchNorm2d, align_corners=True):\n        super(HighResolutionModule, self).__init__()\n        self._check_branches(num_branches, num_blocks, num_inchannels, num_channels)\n\n        self.num_inchannels = num_inchannels\n        self.fuse_method = fuse_method\n        self.num_branches = num_branches\n        self.norm_layer = norm_layer\n        self.align_corners = align_corners\n\n        self.multi_scale_output = multi_scale_output\n\n        self.branches = self._make_branches(\n            num_branches, blocks, num_blocks, num_channels)\n        self.fuse_layers = self._make_fuse_layers()\n        self.relu = nn.ReLU(inplace=relu_inplace)\n\n    def _check_branches(self, num_branches, num_blocks, num_inchannels, num_channels):\n        if num_branches != len(num_blocks):\n            error_msg = 'NUM_BRANCHES({}) <> NUM_BLOCKS({})'.format(\n                num_branches, len(num_blocks))\n            raise ValueError(error_msg)\n\n        if num_branches != len(num_channels):\n            error_msg = 'NUM_BRANCHES({}) <> NUM_CHANNELS({})'.format(\n                num_branches, len(num_channels))\n            raise ValueError(error_msg)\n\n        if num_branches != len(num_inchannels):\n            error_msg = 'NUM_BRANCHES({}) <> NUM_INCHANNELS({})'.format(\n                num_branches, len(num_inchannels))\n            raise ValueError(error_msg)\n\n    def _make_one_branch(self, branch_index, block, num_blocks, num_channels,\n                         stride=1):\n        downsample = None\n        if stride != 1 or \\\n                self.num_inchannels[branch_index] != num_channels[branch_index] * block.expansion:\n            downsample = nn.Sequential(\n                nn.Conv2d(self.num_inchannels[branch_index],\n                          num_channels[branch_index] * block.expansion,\n                          kernel_size=1, stride=stride, bias=False),\n                self.norm_layer(num_channels[branch_index] * block.expansion),\n            )\n\n        layers = []\n        layers.append(block(self.num_inchannels[branch_index],\n                            num_channels[branch_index], stride,\n                            downsample=downsample, norm_layer=self.norm_layer))\n        self.num_inchannels[branch_index] = \\\n            num_channels[branch_index] * block.expansion\n        for i in range(1, num_blocks[branch_index]):\n            layers.append(block(self.num_inchannels[branch_index],\n                                num_channels[branch_index],\n                                norm_layer=self.norm_layer))\n\n        return nn.Sequential(*layers)\n\n    def _make_branches(self, num_branches, block, num_blocks, num_channels):\n        branches = []\n\n        for i in range(num_branches):\n            branches.append(\n                self._make_one_branch(i, block, num_blocks, num_channels))\n\n        return nn.ModuleList(branches)\n\n    def _make_fuse_layers(self):\n        if self.num_branches == 1:\n            return None\n\n        num_branches = self.num_branches\n        num_inchannels = self.num_inchannels\n        fuse_layers = []\n        for i in range(num_branches if self.multi_scale_output else 1):\n            fuse_layer = []\n            for j in range(num_branches):\n                if j > i:\n                    fuse_layer.append(nn.Sequential(\n                        nn.Conv2d(in_channels=num_inchannels[j],\n                                  out_channels=num_inchannels[i],\n                                  kernel_size=1,\n                                  bias=False),\n                        self.norm_layer(num_inchannels[i])))\n                elif j == i:\n                    fuse_layer.append(None)\n                else:\n                    conv3x3s = []\n                    for k in range(i - j):\n                        if k == i - j - 1:\n                            num_outchannels_conv3x3 = num_inchannels[i]\n                            conv3x3s.append(nn.Sequential(\n                                nn.Conv2d(num_inchannels[j],\n                                          num_outchannels_conv3x3,\n                                          kernel_size=3, stride=2, padding=1, bias=False),\n                                self.norm_layer(num_outchannels_conv3x3)))\n                        else:\n                            num_outchannels_conv3x3 = num_inchannels[j]\n                            conv3x3s.append(nn.Sequential(\n                                nn.Conv2d(num_inchannels[j],\n                                          num_outchannels_conv3x3,\n                                          kernel_size=3, stride=2, padding=1, bias=False),\n                                self.norm_layer(num_outchannels_conv3x3),\n                                nn.ReLU(inplace=relu_inplace)))\n                    fuse_layer.append(nn.Sequential(*conv3x3s))\n            fuse_layers.append(nn.ModuleList(fuse_layer))\n\n        return nn.ModuleList(fuse_layers)\n\n    def get_num_inchannels(self):\n        return self.num_inchannels\n\n    def forward(self, x):\n        if self.num_branches == 1:\n            return [self.branches[0](x[0])]\n\n        for i in range(self.num_branches):\n            x[i] = self.branches[i](x[i])\n\n        x_fuse = []\n        for i in range(len(self.fuse_layers)):\n            y = x[0] if i == 0 else self.fuse_layers[i][0](x[0])\n            for j in range(1, self.num_branches):\n                if i == j:\n                    y = y + x[j]\n                elif j > i:\n                    width_output = x[i].shape[-1]\n                    height_output = x[i].shape[-2]\n                    y = y + F.interpolate(\n                        self.fuse_layers[i][j](x[j]),\n                        size=[height_output, width_output],\n                        mode='bilinear', align_corners=self.align_corners)\n                else:\n                    y = y + self.fuse_layers[i][j](x[j])\n            x_fuse.append(self.relu(y))\n\n        return x_fuse\n\n\nclass HighResolutionNet(nn.Module):\n    def __init__(self, width, num_classes, ocr_width=256, small=False,\n                 norm_layer=nn.BatchNorm2d, align_corners=True):\n        super(HighResolutionNet, self).__init__()\n        self.norm_layer = norm_layer\n        self.width = width\n        self.ocr_width = ocr_width\n        self.align_corners = align_corners\n\n        self.conv1 = nn.Conv2d(3, 64, kernel_size=3, stride=2, padding=1, bias=False)\n        self.bn1 = norm_layer(64)\n        self.conv2 = nn.Conv2d(64, 64, kernel_size=3, stride=2, padding=1, bias=False)\n        self.bn2 = norm_layer(64)\n        self.relu = nn.ReLU(inplace=relu_inplace)\n\n        num_blocks = 2 if small else 4\n\n        stage1_num_channels = 64\n        self.layer1 = self._make_layer(BottleneckV1b, 64, stage1_num_channels, blocks=num_blocks)\n        stage1_out_channel = BottleneckV1b.expansion * stage1_num_channels\n\n        self.stage2_num_branches = 2\n        num_channels = [width, 2 * width]\n        num_inchannels = [\n            num_channels[i] * BasicBlockV1b.expansion for i in range(len(num_channels))]\n        self.transition1 = self._make_transition_layer(\n            [stage1_out_channel], num_inchannels)\n        self.stage2, pre_stage_channels = self._make_stage(\n            BasicBlockV1b, num_inchannels=num_inchannels, num_modules=1, num_branches=self.stage2_num_branches,\n            num_blocks=2 * [num_blocks], num_channels=num_channels)\n\n        self.stage3_num_branches = 3\n        num_channels = [width, 2 * width, 4 * width]\n        num_inchannels = [\n            num_channels[i] * BasicBlockV1b.expansion for i in range(len(num_channels))]\n        self.transition2 = self._make_transition_layer(\n            pre_stage_channels, num_inchannels)\n        self.stage3, pre_stage_channels = self._make_stage(\n            BasicBlockV1b, num_inchannels=num_inchannels,\n            num_modules=3 if small else 4, num_branches=self.stage3_num_branches,\n            num_blocks=3 * [num_blocks], num_channels=num_channels)\n\n        self.stage4_num_branches = 4\n        num_channels = [width, 2 * width, 4 * width, 8 * width]\n        num_inchannels = [\n            num_channels[i] * BasicBlockV1b.expansion for i in range(len(num_channels))]\n        self.transition3 = self._make_transition_layer(\n            pre_stage_channels, num_inchannels)\n        self.stage4, pre_stage_channels = self._make_stage(\n            BasicBlockV1b, num_inchannels=num_inchannels, num_modules=2 if small else 3,\n            num_branches=self.stage4_num_branches,\n            num_blocks=4 * [num_blocks], num_channels=num_channels)\n\n        last_inp_channels = np.int32(np.sum(pre_stage_channels))\n        ocr_mid_channels = 2 * ocr_width\n        ocr_key_channels = ocr_width\n\n        self.conv3x3_ocr = nn.Sequential(\n            nn.Conv2d(last_inp_channels, ocr_mid_channels,\n                      kernel_size=3, stride=1, padding=1),\n            norm_layer(ocr_mid_channels),\n            nn.ReLU(inplace=relu_inplace),\n        )\n        self.ocr_gather_head = SpatialGather_Module(num_classes)\n\n        self.ocr_distri_head = SpatialOCR_Module(in_channels=ocr_mid_channels,\n                                                 key_channels=ocr_key_channels,\n                                                 out_channels=ocr_mid_channels,\n                                                 scale=1,\n                                                 dropout=0.05,\n                                                 norm_layer=norm_layer,\n                                                 align_corners=align_corners)\n        self.cls_head = nn.Conv2d(\n            ocr_mid_channels, num_classes, kernel_size=1, stride=1, padding=0, bias=True)\n\n        self.aux_head = nn.Sequential(\n            nn.Conv2d(last_inp_channels, last_inp_channels,\n                      kernel_size=1, stride=1, padding=0),\n            norm_layer(last_inp_channels),\n            nn.ReLU(inplace=relu_inplace),\n            nn.Conv2d(last_inp_channels, num_classes,\n                      kernel_size=1, stride=1, padding=0, bias=True)\n        )\n\n    def _make_transition_layer(\n            self, num_channels_pre_layer, num_channels_cur_layer):\n        num_branches_cur = len(num_channels_cur_layer)\n        num_branches_pre = len(num_channels_pre_layer)\n\n        transition_layers = []\n        for i in range(num_branches_cur):\n            if i < num_branches_pre:\n                if num_channels_cur_layer[i] != num_channels_pre_layer[i]:\n                    transition_layers.append(nn.Sequential(\n                        nn.Conv2d(num_channels_pre_layer[i],\n                                  num_channels_cur_layer[i],\n                                  kernel_size=3,\n                                  stride=1,\n                                  padding=1,\n                                  bias=False),\n                        self.norm_layer(num_channels_cur_layer[i]),\n                        nn.ReLU(inplace=relu_inplace)))\n                else:\n                    transition_layers.append(None)\n            else:\n                conv3x3s = []\n                for j in range(i + 1 - num_branches_pre):\n                    inchannels = num_channels_pre_layer[-1]\n                    outchannels = num_channels_cur_layer[i] \\\n                        if j == i - num_branches_pre else inchannels\n                    conv3x3s.append(nn.Sequential(\n                        nn.Conv2d(inchannels, outchannels,\n                                  kernel_size=3, stride=2, padding=1, bias=False),\n                        self.norm_layer(outchannels),\n                        nn.ReLU(inplace=relu_inplace)))\n                transition_layers.append(nn.Sequential(*conv3x3s))\n\n        return nn.ModuleList(transition_layers)\n\n    def _make_layer(self, block, inplanes, planes, blocks, stride=1):\n        downsample = None\n        if stride != 1 or inplanes != planes * block.expansion:\n            downsample = nn.Sequential(\n                nn.Conv2d(inplanes, planes * block.expansion,\n                          kernel_size=1, stride=stride, bias=False),\n                self.norm_layer(planes * block.expansion),\n            )\n\n        layers = []\n        layers.append(block(inplanes, planes, stride,\n                            downsample=downsample, norm_layer=self.norm_layer))\n        inplanes = planes * block.expansion\n        for i in range(1, blocks):\n            layers.append(block(inplanes, planes, norm_layer=self.norm_layer))\n\n        return nn.Sequential(*layers)\n\n    def _make_stage(self, block, num_inchannels,\n                    num_modules, num_branches, num_blocks, num_channels,\n                    fuse_method='SUM',\n                    multi_scale_output=True):\n        modules = []\n        for i in range(num_modules):\n            # multi_scale_output is only used last module\n            if not multi_scale_output and i == num_modules - 1:\n                reset_multi_scale_output = False\n            else:\n                reset_multi_scale_output = True\n            modules.append(\n                HighResolutionModule(num_branches,\n                                     block,\n                                     num_blocks,\n                                     num_inchannels,\n                                     num_channels,\n                                     fuse_method,\n                                     reset_multi_scale_output,\n                                     norm_layer=self.norm_layer,\n                                     align_corners=self.align_corners)\n            )\n            num_inchannels = modules[-1].get_num_inchannels()\n\n        return nn.Sequential(*modules), num_inchannels\n\n    def forward(self, x):\n        feats = self.compute_hrnet_feats(x)\n        out_aux = self.aux_head(feats)\n        feats = self.conv3x3_ocr(feats)\n\n        context = self.ocr_gather_head(feats, out_aux)\n        feats = self.ocr_distri_head(feats, context)\n        out = self.cls_head(feats)\n\n        return [out, out_aux]\n\n    def compute_hrnet_feats(self, x):\n        x = self.conv1(x)\n        x = self.bn1(x)\n        x = self.relu(x)\n        x = self.conv2(x)\n        x = self.bn2(x)\n        x = self.relu(x)\n        x = self.layer1(x)\n\n        x_list = []\n        for i in range(self.stage2_num_branches):\n            if self.transition1[i] is not None:\n                x_list.append(self.transition1[i](x))\n            else:\n                x_list.append(x)\n        y_list = self.stage2(x_list)\n\n        x_list = []\n        for i in range(self.stage3_num_branches):\n            if self.transition2[i] is not None:\n                if i < self.stage2_num_branches:\n                    x_list.append(self.transition2[i](y_list[i]))\n                else:\n                    x_list.append(self.transition2[i](y_list[-1]))\n            else:\n                x_list.append(y_list[i])\n        y_list = self.stage3(x_list)\n\n        x_list = []\n        for i in range(self.stage4_num_branches):\n            if self.transition3[i] is not None:\n                if i < self.stage3_num_branches:\n                    x_list.append(self.transition3[i](y_list[i]))\n                else:\n                    x_list.append(self.transition3[i](y_list[-1]))\n            else:\n                x_list.append(y_list[i])\n        x = self.stage4(x_list)\n\n        # Upsampling\n        x0_h, x0_w = x[0].size(2), x[0].size(3)\n        x1 = F.interpolate(x[1], size=(x0_h, x0_w),\n                           mode='bilinear', align_corners=self.align_corners)\n        x2 = F.interpolate(x[2], size=(x0_h, x0_w),\n                           mode='bilinear', align_corners=self.align_corners)\n        x3 = F.interpolate(x[3], size=(x0_h, x0_w),\n                           mode='bilinear', align_corners=self.align_corners)\n\n        return torch.cat([x[0], x1, x2, x3], 1)\n\n    def load_pretrained_weights(self, pretrained_path=''):\n        model_dict = self.state_dict()\n\n        if not os.path.exists(pretrained_path):\n            print(f'\\nFile \"{pretrained_path}\" does not exist.')\n            print('You need to specify the correct path to the pre-trained weights.\\n'\n                  'You can download the weights for HRNet from the repository:\\n'\n                  'https://github.com/HRNet/HRNet-Image-Classification')\n            exit(1)\n        pretrained_dict = torch.load(pretrained_path, map_location={'cuda:0': 'cpu'})\n        pretrained_dict = {k.replace('last_layer', 'aux_head').replace('model.', ''): v for k, v in\n                           pretrained_dict.items()}\n\n        print('model_dict-pretrained_dict:', sorted(list(set(model_dict) - set(pretrained_dict))))\n        print('pretrained_dict-model_dict:', sorted(list(set(pretrained_dict) - set(model_dict))))\n\n        pretrained_dict = {k: v for k, v in pretrained_dict.items()\n                           if k in model_dict.keys()}\n\n        model_dict.update(pretrained_dict)\n        self.load_state_dict(model_dict)\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/modeling/ocr.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch._utils\nimport torch.nn.functional as F\n\n\nclass SpatialGather_Module(nn.Module):\n    \"\"\"\n        Aggregate the context features according to the initial\n        predicted probability distribution.\n        Employ the soft-weighted method to aggregate the context.\n    \"\"\"\n\n    def __init__(self, cls_num=0, scale=1):\n        super(SpatialGather_Module, self).__init__()\n        self.cls_num = cls_num\n        self.scale = scale\n\n    def forward(self, feats, probs):\n        batch_size, c, h, w = probs.size(0), probs.size(1), probs.size(2), probs.size(3)\n        probs = probs.view(batch_size, c, -1)\n        feats = feats.view(batch_size, feats.size(1), -1)\n        feats = feats.permute(0, 2, 1)  # batch x hw x c\n        probs = F.softmax(self.scale * probs, dim=2)  # batch x k x hw\n        ocr_context = torch.matmul(probs, feats) \\\n            .permute(0, 2, 1).unsqueeze(3)  # batch x k x c\n        return ocr_context\n\n\nclass SpatialOCR_Module(nn.Module):\n    \"\"\"\n    Implementation of the OCR module:\n    We aggregate the global object representation to update the representation for each pixel.\n    \"\"\"\n\n    def __init__(self,\n                 in_channels,\n                 key_channels,\n                 out_channels,\n                 scale=1,\n                 dropout=0.1,\n                 norm_layer=nn.BatchNorm2d,\n                 align_corners=True):\n        super(SpatialOCR_Module, self).__init__()\n        self.object_context_block = ObjectAttentionBlock2D(in_channels, key_channels, scale,\n                                                           norm_layer, align_corners)\n        _in_channels = 2 * in_channels\n\n        self.conv_bn_dropout = nn.Sequential(\n            nn.Conv2d(_in_channels, out_channels, kernel_size=1, padding=0, bias=False),\n            nn.Sequential(norm_layer(out_channels), nn.ReLU(inplace=True)),\n            nn.Dropout2d(dropout)\n        )\n\n    def forward(self, feats, proxy_feats):\n        context = self.object_context_block(feats, proxy_feats)\n\n        output = self.conv_bn_dropout(torch.cat([context, feats], 1))\n\n        return output\n\n\nclass ObjectAttentionBlock2D(nn.Module):\n    '''\n    The basic implementation for object context block\n    Input:\n        N X C X H X W\n    Parameters:\n        in_channels       : the dimension of the input feature map\n        key_channels      : the dimension after the key/query transform\n        scale             : choose the scale to downsample the input feature maps (save memory cost)\n        bn_type           : specify the bn type\n    Return:\n        N X C X H X W\n    '''\n\n    def __init__(self,\n                 in_channels,\n                 key_channels,\n                 scale=1,\n                 norm_layer=nn.BatchNorm2d,\n                 align_corners=True):\n        super(ObjectAttentionBlock2D, self).__init__()\n        self.scale = scale\n        self.in_channels = in_channels\n        self.key_channels = key_channels\n        self.align_corners = align_corners\n\n        self.pool = nn.MaxPool2d(kernel_size=(scale, scale))\n        self.f_pixel = nn.Sequential(\n            nn.Conv2d(in_channels=self.in_channels, out_channels=self.key_channels,\n                      kernel_size=1, stride=1, padding=0, bias=False),\n            nn.Sequential(norm_layer(self.key_channels), nn.ReLU(inplace=True)),\n            nn.Conv2d(in_channels=self.key_channels, out_channels=self.key_channels,\n                      kernel_size=1, stride=1, padding=0, bias=False),\n            nn.Sequential(norm_layer(self.key_channels), nn.ReLU(inplace=True))\n        )\n        self.f_object = nn.Sequential(\n            nn.Conv2d(in_channels=self.in_channels, out_channels=self.key_channels,\n                      kernel_size=1, stride=1, padding=0, bias=False),\n            nn.Sequential(norm_layer(self.key_channels), nn.ReLU(inplace=True)),\n            nn.Conv2d(in_channels=self.key_channels, out_channels=self.key_channels,\n                      kernel_size=1, stride=1, padding=0, bias=False),\n            nn.Sequential(norm_layer(self.key_channels), nn.ReLU(inplace=True))\n        )\n        self.f_down = nn.Sequential(\n            nn.Conv2d(in_channels=self.in_channels, out_channels=self.key_channels,\n                      kernel_size=1, stride=1, padding=0, bias=False),\n            nn.Sequential(norm_layer(self.key_channels), nn.ReLU(inplace=True))\n        )\n        self.f_up = nn.Sequential(\n            nn.Conv2d(in_channels=self.key_channels, out_channels=self.in_channels,\n                      kernel_size=1, stride=1, padding=0, bias=False),\n            nn.Sequential(norm_layer(self.in_channels), nn.ReLU(inplace=True))\n        )\n\n    def forward(self, x, proxy):\n        batch_size, h, w = x.size(0), x.size(2), x.size(3)\n        if self.scale > 1:\n            x = self.pool(x)\n\n        query = self.f_pixel(x).view(batch_size, self.key_channels, -1)\n        query = query.permute(0, 2, 1)\n        key = self.f_object(proxy).view(batch_size, self.key_channels, -1)\n        value = self.f_down(proxy).view(batch_size, self.key_channels, -1)\n        value = value.permute(0, 2, 1)\n\n        sim_map = torch.matmul(query, key)\n        sim_map = (self.key_channels ** -.5) * sim_map\n        sim_map = F.softmax(sim_map, dim=-1)\n\n        # add bg context ...\n        context = torch.matmul(sim_map, value)\n        context = context.permute(0, 2, 1).contiguous()\n        context = context.view(batch_size, self.key_channels, *x.size()[2:])\n        context = self.f_up(context)\n        if self.scale > 1:\n            context = F.interpolate(input=context, size=(h, w),\n                                    mode='bilinear', align_corners=self.align_corners)\n\n        return context\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/modeling/resnet.py",
    "content": "import torch\nfrom .resnetv1b import resnet34_v1b, resnet50_v1s, resnet101_v1s, resnet152_v1s\n\n\nclass ResNetBackbone(torch.nn.Module):\n    def __init__(self, backbone='resnet50', pretrained_base=True, dilated=True, **kwargs):\n        super(ResNetBackbone, self).__init__()\n\n        if backbone == 'resnet34':\n            pretrained = resnet34_v1b(pretrained=pretrained_base, dilated=dilated, **kwargs)\n        elif backbone == 'resnet50':\n            pretrained = resnet50_v1s(pretrained=pretrained_base, dilated=dilated, **kwargs)\n        elif backbone == 'resnet101':\n            pretrained = resnet101_v1s(pretrained=pretrained_base, dilated=dilated, **kwargs)\n        elif backbone == 'resnet152':\n            pretrained = resnet152_v1s(pretrained=pretrained_base, dilated=dilated, **kwargs)\n        else:\n            raise RuntimeError(f'unknown backbone: {backbone}')\n\n        self.conv1 = pretrained.conv1\n        self.bn1 = pretrained.bn1\n        self.relu = pretrained.relu\n        self.maxpool = pretrained.maxpool\n        self.layer1 = pretrained.layer1\n        self.layer2 = pretrained.layer2\n        self.layer3 = pretrained.layer3\n        self.layer4 = pretrained.layer4\n\n    def forward(self, x):\n        x = self.conv1(x)\n        x = self.bn1(x)\n        x = self.relu(x)\n        x = self.maxpool(x)\n        c1 = self.layer1(x)\n        c2 = self.layer2(c1)\n        c3 = self.layer3(c2)\n        c4 = self.layer4(c3)\n\n        return c1, c2, c3, c4\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/modeling/resnetv1b.py",
    "content": "import torch\nimport torch.nn as nn\nGLUON_RESNET_TORCH_HUB = 'rwightman/pytorch-pretrained-gluonresnet'\n\n\nclass BasicBlockV1b(nn.Module):\n    expansion = 1\n\n    def __init__(self, inplanes, planes, stride=1, dilation=1, downsample=None,\n                 previous_dilation=1, norm_layer=nn.BatchNorm2d):\n        super(BasicBlockV1b, self).__init__()\n        self.conv1 = nn.Conv2d(inplanes, planes, kernel_size=3, stride=stride,\n                               padding=dilation, dilation=dilation, bias=False)\n        self.bn1 = norm_layer(planes)\n        self.conv2 = nn.Conv2d(planes, planes, kernel_size=3, stride=1,\n                               padding=previous_dilation, dilation=previous_dilation, bias=False)\n        self.bn2 = norm_layer(planes)\n\n        self.relu = nn.ReLU(inplace=True)\n        self.downsample = downsample\n        self.stride = stride\n\n    def forward(self, x):\n        residual = x\n\n        out = self.conv1(x)\n        out = self.bn1(out)\n        out = self.relu(out)\n\n        out = self.conv2(out)\n        out = self.bn2(out)\n\n        if self.downsample is not None:\n            residual = self.downsample(x)\n\n        out = out + residual\n        out = self.relu(out)\n\n        return out\n\n\nclass BottleneckV1b(nn.Module):\n    expansion = 4\n\n    def __init__(self, inplanes, planes, stride=1, dilation=1, downsample=None,\n                 previous_dilation=1, norm_layer=nn.BatchNorm2d):\n        super(BottleneckV1b, self).__init__()\n        self.conv1 = nn.Conv2d(inplanes, planes, kernel_size=1, bias=False)\n        self.bn1 = norm_layer(planes)\n\n        self.conv2 = nn.Conv2d(planes, planes, kernel_size=3, stride=stride,\n                               padding=dilation, dilation=dilation, bias=False)\n        self.bn2 = norm_layer(planes)\n\n        self.conv3 = nn.Conv2d(planes, planes * self.expansion, kernel_size=1, bias=False)\n        self.bn3 = norm_layer(planes * self.expansion)\n\n        self.relu = nn.ReLU(inplace=True)\n        self.downsample = downsample\n        self.stride = stride\n\n    def forward(self, x):\n        residual = x\n\n        out = self.conv1(x)\n        out = self.bn1(out)\n        out = self.relu(out)\n\n        out = self.conv2(out)\n        out = self.bn2(out)\n        out = self.relu(out)\n\n        out = self.conv3(out)\n        out = self.bn3(out)\n\n        if self.downsample is not None:\n            residual = self.downsample(x)\n\n        out = out + residual\n        out = self.relu(out)\n\n        return out\n\n\nclass ResNetV1b(nn.Module):\n    \"\"\" Pre-trained ResNetV1b Model, which produces the strides of 8 featuremaps at conv5.\n\n    Parameters\n    ----------\n    block : Block\n        Class for the residual block. Options are BasicBlockV1, BottleneckV1.\n    layers : list of int\n        Numbers of layers in each block\n    classes : int, default 1000\n        Number of classification classes.\n    dilated : bool, default False\n        Applying dilation strategy to pretrained ResNet yielding a stride-8 model,\n        typically used in Semantic Segmentation.\n    norm_layer : object\n        Normalization layer used (default: :class:`nn.BatchNorm2d`)\n    deep_stem : bool, default False\n        Whether to replace the 7x7 conv1 with 3 3x3 convolution layers.\n    avg_down : bool, default False\n        Whether to use average pooling for projection skip connection between stages/downsample.\n    final_drop : float, default 0.0\n        Dropout ratio before the final classification layer.\n\n    Reference:\n        - He, Kaiming, et al. \"Deep residual learning for image recognition.\"\n        Proceedings of the IEEE conference on computer vision and pattern recognition. 2016.\n\n        - Yu, Fisher, and Vladlen Koltun. \"Multi-scale context aggregation by dilated convolutions.\"\n    \"\"\"\n    def __init__(self, block, layers, classes=1000, dilated=True, deep_stem=False, stem_width=32,\n                 avg_down=False, final_drop=0.0, norm_layer=nn.BatchNorm2d):\n        self.inplanes = stem_width*2 if deep_stem else 64\n        super(ResNetV1b, self).__init__()\n        if not deep_stem:\n            self.conv1 = nn.Conv2d(3, 64, kernel_size=7, stride=2, padding=3, bias=False)\n        else:\n            self.conv1 = nn.Sequential(\n                nn.Conv2d(3, stem_width, kernel_size=3, stride=2, padding=1, bias=False),\n                norm_layer(stem_width),\n                nn.ReLU(True),\n                nn.Conv2d(stem_width, stem_width, kernel_size=3, stride=1, padding=1, bias=False),\n                norm_layer(stem_width),\n                nn.ReLU(True),\n                nn.Conv2d(stem_width, 2*stem_width, kernel_size=3, stride=1, padding=1, bias=False)\n            )\n        self.bn1 = norm_layer(self.inplanes)\n        self.relu = nn.ReLU(True)\n        self.maxpool = nn.MaxPool2d(3, stride=2, padding=1)\n        self.layer1 = self._make_layer(block, 64, layers[0], avg_down=avg_down,\n                                       norm_layer=norm_layer)\n        self.layer2 = self._make_layer(block, 128, layers[1], stride=2, avg_down=avg_down,\n                                       norm_layer=norm_layer)\n        if dilated:\n            self.layer3 = self._make_layer(block, 256, layers[2], stride=1, dilation=2,\n                                           avg_down=avg_down, norm_layer=norm_layer)\n            self.layer4 = self._make_layer(block, 512, layers[3], stride=1, dilation=4,\n                                           avg_down=avg_down, norm_layer=norm_layer)\n        else:\n            self.layer3 = self._make_layer(block, 256, layers[2], stride=2,\n                                           avg_down=avg_down, norm_layer=norm_layer)\n            self.layer4 = self._make_layer(block, 512, layers[3], stride=2,\n                                           avg_down=avg_down, norm_layer=norm_layer)\n        self.avgpool = nn.AdaptiveAvgPool2d((1, 1))\n        self.drop = None\n        if final_drop > 0.0:\n            self.drop = nn.Dropout(final_drop)\n        self.fc = nn.Linear(512 * block.expansion, classes)\n\n    def _make_layer(self, block, planes, blocks, stride=1, dilation=1,\n                    avg_down=False, norm_layer=nn.BatchNorm2d):\n        downsample = None\n        if stride != 1 or self.inplanes != planes * block.expansion:\n            downsample = []\n            if avg_down:\n                if dilation == 1:\n                    downsample.append(\n                        nn.AvgPool2d(kernel_size=stride, stride=stride, ceil_mode=True, count_include_pad=False)\n                    )\n                else:\n                    downsample.append(\n                        nn.AvgPool2d(kernel_size=1, stride=1, ceil_mode=True, count_include_pad=False)\n                    )\n                downsample.extend([\n                    nn.Conv2d(self.inplanes, out_channels=planes * block.expansion,\n                              kernel_size=1, stride=1, bias=False),\n                    norm_layer(planes * block.expansion)\n                ])\n                downsample = nn.Sequential(*downsample)\n            else:\n                downsample = nn.Sequential(\n                    nn.Conv2d(self.inplanes, out_channels=planes * block.expansion,\n                              kernel_size=1, stride=stride, bias=False),\n                    norm_layer(planes * block.expansion)\n                )\n\n        layers = []\n        if dilation in (1, 2):\n            layers.append(block(self.inplanes, planes, stride, dilation=1, downsample=downsample,\n                                previous_dilation=dilation, norm_layer=norm_layer))\n        elif dilation == 4:\n            layers.append(block(self.inplanes, planes, stride, dilation=2, downsample=downsample,\n                                previous_dilation=dilation, norm_layer=norm_layer))\n        else:\n            raise RuntimeError(\"=> unknown dilation size: {}\".format(dilation))\n\n        self.inplanes = planes * block.expansion\n        for _ in range(1, blocks):\n            layers.append(block(self.inplanes, planes, dilation=dilation,\n                                previous_dilation=dilation, norm_layer=norm_layer))\n\n        return nn.Sequential(*layers)\n\n    def forward(self, x):\n        x = self.conv1(x)\n        x = self.bn1(x)\n        x = self.relu(x)\n        x = self.maxpool(x)\n\n        x = self.layer1(x)\n        x = self.layer2(x)\n        x = self.layer3(x)\n        x = self.layer4(x)\n\n        x = self.avgpool(x)\n        x = x.view(x.size(0), -1)\n        if self.drop is not None:\n            x = self.drop(x)\n        x = self.fc(x)\n\n        return x\n\n\ndef _safe_state_dict_filtering(orig_dict, model_dict_keys):\n    filtered_orig_dict = {}\n    for k, v in orig_dict.items():\n        if k in model_dict_keys:\n            filtered_orig_dict[k] = v\n        else:\n            print(f\"[ERROR] Failed to load <{k}> in backbone\")\n    return filtered_orig_dict\n\n\ndef resnet34_v1b(pretrained=False, **kwargs):\n    model = ResNetV1b(BasicBlockV1b, [3, 4, 6, 3], **kwargs)\n    if pretrained:\n        model_dict = model.state_dict()\n        filtered_orig_dict = _safe_state_dict_filtering(\n            torch.hub.load(GLUON_RESNET_TORCH_HUB, 'gluon_resnet34_v1b', pretrained=True).state_dict(),\n            model_dict.keys()\n        )\n        model_dict.update(filtered_orig_dict)\n        model.load_state_dict(model_dict)\n    return model\n\n\ndef resnet50_v1s(pretrained=False, **kwargs):\n    model = ResNetV1b(BottleneckV1b, [3, 4, 6, 3], deep_stem=True, stem_width=64, **kwargs)\n    if pretrained:\n        model_dict = model.state_dict()\n        filtered_orig_dict = _safe_state_dict_filtering(\n            torch.hub.load(GLUON_RESNET_TORCH_HUB, 'gluon_resnet50_v1s', pretrained=True).state_dict(),\n            model_dict.keys()\n        )\n        model_dict.update(filtered_orig_dict)\n        model.load_state_dict(model_dict)\n    return model\n\n\ndef resnet101_v1s(pretrained=False, **kwargs):\n    model = ResNetV1b(BottleneckV1b, [3, 4, 23, 3], deep_stem=True, stem_width=64, **kwargs)\n    if pretrained:\n        model_dict = model.state_dict()\n        filtered_orig_dict = _safe_state_dict_filtering(\n            torch.hub.load(GLUON_RESNET_TORCH_HUB, 'gluon_resnet101_v1s', pretrained=True).state_dict(),\n            model_dict.keys()\n        )\n        model_dict.update(filtered_orig_dict)\n        model.load_state_dict(model_dict)\n    return model\n\n\ndef resnet152_v1s(pretrained=False, **kwargs):\n    model = ResNetV1b(BottleneckV1b, [3, 8, 36, 3], deep_stem=True, stem_width=64, **kwargs)\n    if pretrained:\n        model_dict = model.state_dict()\n        filtered_orig_dict = _safe_state_dict_filtering(\n            torch.hub.load(GLUON_RESNET_TORCH_HUB, 'gluon_resnet152_v1s', pretrained=True).state_dict(),\n            model_dict.keys()\n        )\n        model_dict.update(filtered_orig_dict)\n        model.load_state_dict(model_dict)\n    return model\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/ops.py",
    "content": "import torch\nfrom torch import nn as nn\nimport numpy as np\n\nfrom . import initializer as initializer\nfrom ..utils.cython import get_dist_maps\n\n\ndef select_activation_function(activation):\n    if isinstance(activation, str):\n        if activation.lower() == 'relu':\n            return nn.ReLU\n        elif activation.lower() == 'softplus':\n            return nn.Softplus\n        else:\n            raise ValueError(f\"Unknown activation type {activation}\")\n    elif isinstance(activation, nn.Module):\n        return activation\n    else:\n        raise ValueError(f\"Unknown activation type {activation}\")\n\n\nclass BilinearConvTranspose2d(nn.ConvTranspose2d):\n    def __init__(self, in_channels, out_channels, scale, groups=1):\n        kernel_size = 2 * scale - scale % 2\n        self.scale = scale\n\n        super().__init__(\n            in_channels, out_channels,\n            kernel_size=kernel_size,\n            stride=scale,\n            padding=1,\n            groups=groups,\n            bias=False)\n\n        self.apply(initializer.Bilinear(scale=scale, in_channels=in_channels, groups=groups))\n\n\nclass DistMaps(nn.Module):\n    def __init__(self, norm_radius, spatial_scale=1.0, cpu_mode=False):\n        super(DistMaps, self).__init__()\n        self.spatial_scale = spatial_scale\n        self.norm_radius = norm_radius\n        self.cpu_mode = cpu_mode\n\n    def get_coord_features(self, points, batchsize, rows, cols):\n        if self.cpu_mode:\n            coords = []\n            for i in range(batchsize):\n                norm_delimeter = self.spatial_scale * self.norm_radius\n                coords.append(get_dist_maps(points[i].cpu().float().numpy(), rows, cols,\n                                            norm_delimeter))\n            coords = torch.from_numpy(np.stack(coords, axis=0)).to(points.device).float()\n        else:\n            num_points = points.shape[1] // 2\n            points = points.view(-1, 2)\n            invalid_points = torch.max(points, dim=1, keepdim=False)[0] < 0\n            row_array = torch.arange(start=0, end=rows, step=1, dtype=torch.float32, device=points.device)\n            col_array = torch.arange(start=0, end=cols, step=1, dtype=torch.float32, device=points.device)\n\n            coord_rows, coord_cols = torch.meshgrid(row_array, col_array)\n            coords = torch.stack((coord_rows, coord_cols), dim=0).unsqueeze(0).repeat(points.size(0), 1, 1, 1)\n\n            add_xy = (points * self.spatial_scale).view(points.size(0), points.size(1), 1, 1)\n            coords.add_(-add_xy)\n            coords.div_(self.norm_radius * self.spatial_scale)\n            coords.mul_(coords)\n\n            coords[:, 0] += coords[:, 1]\n            coords = coords[:, :1]\n\n            coords[invalid_points, :, :, :] = 1e6\n\n            coords = coords.view(-1, num_points, 1, rows, cols)\n            coords = coords.min(dim=1)[0]  # -> (bs * num_masks * 2) x 1 x h x w\n            coords = coords.view(-1, 2, rows, cols)\n\n        coords.sqrt_().mul_(2).tanh_()\n\n        return coords\n\n    def forward(self, x, coords):\n        return self.get_coord_features(coords, x.shape[0], x.shape[2], x.shape[3])\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/LICENSE",
    "content": "MIT License\n\nCopyright (c) 2018 Tamaki Kojima\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/README.md",
    "content": "# pytorch-syncbn\n\nTamaki Kojima(tamakoji@gmail.com)\n\n## Announcement\n\n**Pytorch 1.0 support**\n\n## Overview\nThis is alternative implementation of \"Synchronized Multi-GPU Batch Normalization\" which computes global stats across gpus instead of locally computed. SyncBN are getting important for those input image is large, and must use multi-gpu to increase the minibatch-size for the training.\n\nThe code was inspired by [Pytorch-Encoding](https://github.com/zhanghang1989/PyTorch-Encoding) and [Inplace-ABN](https://github.com/mapillary/inplace_abn)\n\n## Remarks\n- Unlike [Pytorch-Encoding](https://github.com/zhanghang1989/PyTorch-Encoding), you don't need custom `nn.DataParallel`\n- Unlike [Inplace-ABN](https://github.com/mapillary/inplace_abn), you can just replace your `nn.BatchNorm2d` to this module implementation, since it will not mark for inplace operation\n- You can plug into arbitrary module written in PyTorch to enable Synchronized BatchNorm\n- Backward computation is rewritten and tested against behavior of `nn.BatchNorm2d`\n\n## Requirements\nFor PyTorch, please refer to https://pytorch.org/\n\nNOTE : The code is tested only with PyTorch v1.0.0, CUDA10/CuDNN7.4.2 on ubuntu18.04\n\nIt utilize Pytorch JIT mechanism to compile seamlessly, using ninja. Please install ninja-build before use.\n\n```\nsudo apt-get install ninja-build\n```\n\nAlso install all dependencies for python. For pip, run:\n\n\n```\npip install -U -r requirements.txt\n```\n\n## Build\n\nThere is no need to build. just run and JIT will take care.\nJIT and cpp extensions are supported after PyTorch0.4, however it is highly recommended to use PyTorch > 1.0 due to huge design changes.\n\n## Usage\n\nPlease refer to [`test.py`](./test.py) for testing the difference between `nn.BatchNorm2d` and `modules.nn.BatchNorm2d`\n\n```\nimport torch\nfrom modules import nn as NN\nnum_gpu = torch.cuda.device_count()\nmodel = nn.Sequential(\n    nn.Conv2d(3, 3, 1, 1, bias=False),\n    NN.BatchNorm2d(3),\n    nn.ReLU(inplace=True),\n    nn.Conv2d(3, 3, 1, 1, bias=False),\n    NN.BatchNorm2d(3),\n).cuda()\nmodel = nn.DataParallel(model, device_ids=range(num_gpu))\nx = torch.rand(num_gpu, 3, 2, 2).cuda()\nz = model(x)\n```\n\n## Math\n\n### Forward\n1. compute <img src=\"https://latex.codecogs.com/gif.latex?\\sum{x_i},\\sum{x_i^2}\"/> in each gpu\n2. gather all <img src=\"https://latex.codecogs.com/gif.latex?\\sum{x_i},\\sum{x_i^2}\"/> from workers to master and compute <img src=\"https://latex.codecogs.com/gif.latex?\\mu,\\sigma\"/> where\n\n    <img src=\"https://latex.codecogs.com/gif.latex?\\mu=\\frac{\\sum{x_i}}{N}\"/>\n\n    and\n\n    <img src=\"https://latex.codecogs.com/gif.latex?\\sigma^2=\\frac{\\sum{x_i^2}-\\mu\\sum{x_i}}{N}\"/></a>\n\n    and then above global stats to be shared to all gpus, update running_mean and running_var by moving average using global stats.\n\n3. forward batchnorm using global stats by\n\n    <img src=\"https://latex.codecogs.com/gif.latex?\\hat{x_i}=\\frac{x_i-\\mu}{\\sqrt{\\sigma^2&plus;\\epsilon}}\"/>\n\n    and then\n\n    <img src=\"https://latex.codecogs.com/gif.latex?y_i=\\gamma\\cdot\\hat{x_i}&plus;\\beta\"/>\n\n    where <img src=\"https://latex.codecogs.com/gif.latex?\\gamma\"/> is weight parameter and <img src=\"https://latex.codecogs.com/gif.latex?\\beta\"/> is bias parameter.\n\n4. save <img src=\"https://latex.codecogs.com/gif.latex?x,&space;\\gamma\\&space;\\beta,&space;\\mu,&space;\\sigma^2\"/> for backward\n\n### Backward\n\n1. Restore saved <img src=\"https://latex.codecogs.com/gif.latex?x,&space;\\gamma\\&space;\\beta,&space;\\mu,&space;\\sigma^2\"/>\n\n2. Compute below sums on each gpu\n\n    <img src=\"https://latex.codecogs.com/gif.latex?\\sum_{i=1}^{N_j}(\\frac{dJ}{dy_i})\"/>\n\n    and\n\n    <img src=\"https://latex.codecogs.com/gif.latex?\\sum_{i=1}^{N_j}(\\frac{dJ}{dy_i}\\cdot\\hat{x_i})\"/>\n\n    where <img src=\"https://latex.codecogs.com/gif.latex?j\\in[0,1,....,num\\_gpu]\"/>\n\n    then gather them at master node to sum up global, and normalize with N where N is total number of elements for each channels. Global sums are then shared among all gpus.\n\n3. compute gradients using global stats\n\n    <img src=\"https://latex.codecogs.com/gif.latex?\\frac{dJ}{dx_i},&space;\\frac{dJ}{d\\gamma},&space;\\frac{dJ}{d\\beta}&space;\"/>\n\n    where\n\n    <img src=\"https://latex.codecogs.com/gif.latex?\\frac{dJ}{d\\gamma}=\\sum_{i=1}^{N}(\\frac{dJ}{dy_i}\\cdot\\hat{x_i})\"/>\n\n    and\n\n    <img src=\"https://latex.codecogs.com/gif.latex?\\frac{dJ}{d\\beta}=\\sum_{i=1}^{N}(\\frac{dJ}{dy_i})\"/>\n\n    and finally,\n\n    <img src=\"https://latex.codecogs.com/gif.latex?\\frac{dJ}{dx_i}=\\frac{dJ}{d\\hat{x_i}}\\frac{d\\hat{x_i}}{dx_i}+\\frac{dJ}{d\\mu_i}\\frac{d\\mu_i}{dx_i}+\\frac{dJ}{d\\sigma^2_i}\\frac{d\\sigma^2_i}{dx_i}\"/>  \n\n    <img src=\"https://latex.codecogs.com/gif.latex?=\\frac{1}{N\\sqrt{(\\sigma^2+\\epsilon)}}(N\\frac{dJ}{d\\hat{x_i}}-\\sum_{j=1}^{N}(\\frac{dJ}{d\\hat{x_j}})-\\hat{x_i}\\sum_{j=1}^{N}(\\frac{dJ}{d\\hat{x_j}}\\hat{x_j}))\"/>  \n\n    <img src=\"https://latex.codecogs.com/gif.latex?=\\frac{\\gamma}{N\\sqrt{(\\sigma^2+\\epsilon)}}(N\\frac{dJ}{dy_i}-\\sum_{j=1}^{N}(\\frac{dJ}{dy_j})-\\hat{x_i}\\sum_{j=1}^{N}(\\frac{dJ}{dy_j}\\hat{x_j}))\"/>  \n\n   Note that in the implementation, normalization with N is performed at step (2) and above equation and implementation is not exactly the same, but mathematically is same.\n\n   You can go deeper on above explanation at [Kevin Zakka's Blog](https://kevinzakka.github.io/2016/09/14/batch_normalization/)"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/modules/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/modules/functional/__init__.py",
    "content": "from .syncbn import batchnorm2d_sync\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/modules/functional/_csrc.py",
    "content": "\"\"\"\n/*****************************************************************************/\n\nExtension module loader\n\ncode referenced from : https://github.com/facebookresearch/maskrcnn-benchmark\n\n/*****************************************************************************/\n\"\"\"\nfrom __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport glob\nimport os.path\n\nimport torch\n\ntry:\n    from torch.utils.cpp_extension import load\n    from torch.utils.cpp_extension import CUDA_HOME\nexcept ImportError:\n    raise ImportError(\n        \"The cpp layer extensions requires PyTorch 0.4 or higher\")\n\n\ndef _load_C_extensions():\n    this_dir = os.path.dirname(os.path.abspath(__file__))\n    this_dir = os.path.join(this_dir, \"csrc\")\n\n    main_file = glob.glob(os.path.join(this_dir, \"*.cpp\"))\n    sources_cpu = glob.glob(os.path.join(this_dir, \"cpu\", \"*.cpp\"))\n    sources_cuda = glob.glob(os.path.join(this_dir, \"cuda\", \"*.cu\"))\n\n    sources = main_file + sources_cpu\n\n    extra_cflags = []\n    extra_cuda_cflags = []\n    if torch.cuda.is_available() and CUDA_HOME is not None:\n        sources.extend(sources_cuda)\n        extra_cflags = [\"-O3\", \"-DWITH_CUDA\"]\n        extra_cuda_cflags = [\"--expt-extended-lambda\"]\n    sources = [os.path.join(this_dir, s) for s in sources]\n    extra_include_paths = [this_dir]\n    return load(\n        name=\"ext_lib\",\n        sources=sources,\n        extra_cflags=extra_cflags,\n        extra_include_paths=extra_include_paths,\n        extra_cuda_cflags=extra_cuda_cflags,\n    )\n\n\n_backend = _load_C_extensions()\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/modules/functional/csrc/bn.h",
    "content": "/*****************************************************************************\n\nSyncBN\n\n*****************************************************************************/\n#pragma once\n\n#ifdef WITH_CUDA\n#include \"cuda/ext_lib.h\"\n#endif\n\n/// SyncBN\n\nstd::vector<at::Tensor> syncbn_sum_sqsum(const at::Tensor& x) {\n  if (x.is_cuda()) {\n#ifdef WITH_CUDA\n    return syncbn_sum_sqsum_cuda(x);\n#else\n    AT_ERROR(\"Not compiled with GPU support\");\n#endif\n  } else {\n    AT_ERROR(\"CPU implementation not supported\");\n  }\n}\n\nat::Tensor syncbn_forward(const at::Tensor& x, const at::Tensor& weight,\n                          const at::Tensor& bias, const at::Tensor& mean,\n                          const at::Tensor& var, bool affine, float eps) {\n  if (x.is_cuda()) {\n#ifdef WITH_CUDA\n    return syncbn_forward_cuda(x, weight, bias, mean, var, affine, eps);\n#else\n    AT_ERROR(\"Not compiled with GPU support\");\n#endif\n  } else {\n    AT_ERROR(\"CPU implementation not supported\");\n  }\n}\n\nstd::vector<at::Tensor> syncbn_backward_xhat(const at::Tensor& dz,\n                                             const at::Tensor& x,\n                                             const at::Tensor& mean,\n                                             const at::Tensor& var, float eps) {\n  if (dz.is_cuda()) {\n#ifdef WITH_CUDA\n    return syncbn_backward_xhat_cuda(dz, x, mean, var, eps);\n#else\n    AT_ERROR(\"Not compiled with GPU support\");\n#endif\n  } else {\n    AT_ERROR(\"CPU implementation not supported\");\n  }\n}\n\nstd::vector<at::Tensor> syncbn_backward(\n    const at::Tensor& dz, const at::Tensor& x, const at::Tensor& weight,\n    const at::Tensor& bias, const at::Tensor& mean, const at::Tensor& var,\n    const at::Tensor& sum_dz, const at::Tensor& sum_dz_xhat, bool affine,\n    float eps) {\n  if (dz.is_cuda()) {\n#ifdef WITH_CUDA\n    return syncbn_backward_cuda(dz, x, weight, bias, mean, var, sum_dz,\n                                sum_dz_xhat, affine, eps);\n#else\n    AT_ERROR(\"Not compiled with GPU support\");\n#endif\n  } else {\n    AT_ERROR(\"CPU implementation not supported\");\n  }\n}\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/modules/functional/csrc/cuda/bn_cuda.cu",
    "content": "/*****************************************************************************\n\nCUDA SyncBN code\n\ncode referenced from : https://github.com/mapillary/inplace_abn\n\n*****************************************************************************/\n#include <ATen/ATen.h>\n#include <thrust/device_ptr.h>\n#include <thrust/transform.h>\n#include <vector>\n#include \"cuda/common.h\"\n\n// Utilities\nvoid get_dims(at::Tensor x, int64_t &num, int64_t &chn, int64_t &sp) {\n  num = x.size(0);\n  chn = x.size(1);\n  sp = 1;\n  for (int64_t i = 2; i < x.ndimension(); ++i) sp *= x.size(i);\n}\n\n/// SyncBN\n\ntemplate <typename T>\nstruct SqSumOp {\n  __device__ SqSumOp(const T *t, int c, int s) : tensor(t), chn(c), sp(s) {}\n  __device__ __forceinline__ Pair<T> operator()(int batch, int plane, int n) {\n    T x = tensor[(batch * chn + plane) * sp + n];\n    return Pair<T>(x, x * x);  // x, x^2\n  }\n  const T *tensor;\n  const int chn;\n  const int sp;\n};\n\ntemplate <typename T>\n__global__ void syncbn_sum_sqsum_kernel(const T *x, T *sum, T *sqsum,\n                                        int num, int chn, int sp) {\n  int plane = blockIdx.x;\n  Pair<T> res =\n      reduce<Pair<T>, SqSumOp<T>>(SqSumOp<T>(x, chn, sp), plane, num, chn, sp);\n  __syncthreads();\n  if (threadIdx.x == 0) {\n    sum[plane] = res.v1;\n    sqsum[plane] = res.v2;\n  }\n}\n\nstd::vector<at::Tensor> syncbn_sum_sqsum_cuda(const at::Tensor &x) {\n  CHECK_INPUT(x);\n\n  // Extract dimensions\n  int64_t num, chn, sp;\n  get_dims(x, num, chn, sp);\n\n  // Prepare output tensors\n  auto sum = at::empty({chn}, x.options());\n  auto sqsum = at::empty({chn}, x.options());\n\n  // Run kernel\n  dim3 blocks(chn);\n  dim3 threads(getNumThreads(sp));\n  AT_DISPATCH_FLOATING_TYPES(\n      x.type(), \"syncbn_sum_sqsum_cuda\", ([&] {\n        syncbn_sum_sqsum_kernel<scalar_t><<<blocks, threads>>>(\n            x.data<scalar_t>(), sum.data<scalar_t>(),\n            sqsum.data<scalar_t>(), num, chn, sp);\n    }));\n  return {sum, sqsum};\n}\n\ntemplate <typename T>\n__global__ void syncbn_forward_kernel(T *z, const T *x, const T *weight,\n                                      const T *bias, const T *mean,\n                                      const T *var, bool affine, float eps,\n                                      int num, int chn, int sp) {\n  int plane = blockIdx.x;\n  T _mean = mean[plane];\n  T _var = var[plane];\n  T _weight = affine ? weight[plane] : T(1);\n  T _bias = affine ? bias[plane] : T(0);\n  float _invstd = T(0);\n  if (_var || eps) {\n    _invstd = rsqrt(_var + eps);\n  }\n  for (int batch = 0; batch < num; ++batch) {\n    for (int n = threadIdx.x; n < sp; n += blockDim.x) {\n      T _x = x[(batch * chn + plane) * sp + n];\n      T _xhat = (_x - _mean) * _invstd;\n      T _z = _xhat * _weight + _bias;\n      z[(batch * chn + plane) * sp + n] = _z;\n    }\n  }\n}\n\nat::Tensor syncbn_forward_cuda(const at::Tensor &x, const at::Tensor &weight,\n                               const at::Tensor &bias, const at::Tensor &mean,\n                               const at::Tensor &var, bool affine, float eps) {\n  CHECK_INPUT(x);\n  CHECK_INPUT(weight);\n  CHECK_INPUT(bias);\n  CHECK_INPUT(mean);\n  CHECK_INPUT(var);\n\n  // Extract dimensions\n  int64_t num, chn, sp;\n  get_dims(x, num, chn, sp);\n\n  auto z = at::zeros_like(x);\n\n  // Run kernel\n  dim3 blocks(chn);\n  dim3 threads(getNumThreads(sp));\n  AT_DISPATCH_FLOATING_TYPES(\n      x.type(), \"syncbn_forward_cuda\", ([&] {\n        syncbn_forward_kernel<scalar_t><<<blocks, threads>>>(\n            z.data<scalar_t>(), x.data<scalar_t>(),\n            weight.data<scalar_t>(), bias.data<scalar_t>(),\n            mean.data<scalar_t>(), var.data<scalar_t>(),\n            affine, eps, num, chn, sp);\n      }));\n  return z;\n}\n\ntemplate <typename T>\nstruct XHatOp {\n  __device__ XHatOp(T _weight, T _bias, const T *_dz, const T *_x, int c, int s)\n      : weight(_weight), bias(_bias), x(_x), dz(_dz), chn(c), sp(s) {}\n  __device__ __forceinline__ Pair<T> operator()(int batch, int plane, int n) {\n    // xhat = (x - bias) * weight\n    T _xhat = (x[(batch * chn + plane) * sp + n] - bias) * weight;\n    // dxhat * x_hat\n    T _dz = dz[(batch * chn + plane) * sp + n];\n    return Pair<T>(_dz, _dz * _xhat);\n  }\n  const T weight;\n  const T bias;\n  const T *dz;\n  const T *x;\n  const int chn;\n  const int sp;\n};\n\ntemplate <typename T>\n__global__ void syncbn_backward_xhat_kernel(const T *dz, const T *x,\n                                            const T *mean, const T *var,\n                                            T *sum_dz, T *sum_dz_xhat,\n                                            float eps, int num, int chn,\n                                            int sp) {\n  int plane = blockIdx.x;\n  T _mean = mean[plane];\n  T _var = var[plane];\n  T _invstd = T(0);\n  if (_var || eps) {\n    _invstd = rsqrt(_var + eps);\n  }\n  Pair<T> res = reduce<Pair<T>, XHatOp<T>>(\n      XHatOp<T>(_invstd, _mean, dz, x, chn, sp), plane, num, chn, sp);\n  __syncthreads();\n  if (threadIdx.x == 0) {\n    // \\sum(\\frac{dJ}{dy_i})\n    sum_dz[plane] = res.v1;\n    // \\sum(\\frac{dJ}{dy_i}*\\hat{x_i})\n    sum_dz_xhat[plane] = res.v2;\n  }\n}\n\nstd::vector<at::Tensor> syncbn_backward_xhat_cuda(const at::Tensor &dz,\n                                                  const at::Tensor &x,\n                                                  const at::Tensor &mean,\n                                                  const at::Tensor &var,\n                                                  float eps) {\n  CHECK_INPUT(dz);\n  CHECK_INPUT(x);\n  CHECK_INPUT(mean);\n  CHECK_INPUT(var);\n  // Extract dimensions\n  int64_t num, chn, sp;\n  get_dims(x, num, chn, sp);\n  // Prepare output tensors\n  auto sum_dz = at::empty({chn}, x.options());\n  auto sum_dz_xhat = at::empty({chn}, x.options());\n  // Run kernel\n  dim3 blocks(chn);\n  dim3 threads(getNumThreads(sp));\n  AT_DISPATCH_FLOATING_TYPES(\n      x.type(), \"syncbn_backward_xhat_cuda\", ([&] {\n        syncbn_backward_xhat_kernel<scalar_t><<<blocks, threads>>>(\n            dz.data<scalar_t>(), x.data<scalar_t>(), mean.data<scalar_t>(),\n            var.data<scalar_t>(), sum_dz.data<scalar_t>(),\n            sum_dz_xhat.data<scalar_t>(), eps, num, chn, sp);\n      }));\n  return {sum_dz, sum_dz_xhat};\n}\n\ntemplate <typename T>\n__global__ void syncbn_backward_kernel(const T *dz, const T *x, const T *weight,\n                                       const T *bias, const T *mean,\n                                       const T *var, const T *sum_dz,\n                                       const T *sum_dz_xhat, T *dx, T *dweight,\n                                       T *dbias, bool affine, float eps,\n                                       int num, int chn, int sp) {\n  int plane = blockIdx.x;\n  T _mean = mean[plane];\n  T _var = var[plane];\n  T _weight = affine ? weight[plane] : T(1);\n  T _sum_dz = sum_dz[plane];\n  T _sum_dz_xhat = sum_dz_xhat[plane];\n  T _invstd = T(0);\n  if (_var || eps) {\n    _invstd = rsqrt(_var + eps);\n  }\n  /*\n    \\frac{dJ}{dx_i} = \\frac{1}{N\\sqrt{(\\sigma^2+\\epsilon)}} (\n      N\\frac{dJ}{d\\hat{x_i}} -\n      \\sum_{j=1}^{N}(\\frac{dJ}{d\\hat{x_j}}) -\n      \\hat{x_i}\\sum_{j=1}^{N}(\\frac{dJ}{d\\hat{x_j}}\\hat{x_j})\n    )\n    Note : N is omitted here since it will be accumulated and\n    _sum_dz and _sum_dz_xhat expected to be already normalized\n    before the call.\n  */\n  if (dx) {\n    T _mul = _weight * _invstd;\n    for (int batch = 0; batch < num; ++batch) {\n      for (int n = threadIdx.x; n < sp; n += blockDim.x) {\n        T _dz = dz[(batch * chn + plane) * sp + n];\n        T _xhat = (x[(batch * chn + plane) * sp + n] - _mean) * _invstd;\n        T _dx = (_dz - _sum_dz - _xhat * _sum_dz_xhat) * _mul;\n        dx[(batch * chn + plane) * sp + n] = _dx;\n      }\n    }\n  }\n  __syncthreads();\n  if (threadIdx.x == 0) {\n    if (affine) {\n      T _norm = num * sp;\n      dweight[plane] += _sum_dz_xhat * _norm;\n      dbias[plane] += _sum_dz * _norm;\n    }\n  }\n}\n\nstd::vector<at::Tensor> syncbn_backward_cuda(\n    const at::Tensor &dz, const at::Tensor &x, const at::Tensor &weight,\n    const at::Tensor &bias, const at::Tensor &mean, const at::Tensor &var,\n    const at::Tensor &sum_dz, const at::Tensor &sum_dz_xhat, bool affine,\n    float eps) {\n  CHECK_INPUT(dz);\n  CHECK_INPUT(x);\n  CHECK_INPUT(weight);\n  CHECK_INPUT(bias);\n  CHECK_INPUT(mean);\n  CHECK_INPUT(var);\n  CHECK_INPUT(sum_dz);\n  CHECK_INPUT(sum_dz_xhat);\n\n  // Extract dimensions\n  int64_t num, chn, sp;\n  get_dims(x, num, chn, sp);\n\n  // Prepare output tensors\n  auto dx = at::zeros_like(dz);\n  auto dweight = at::zeros_like(weight);\n  auto dbias = at::zeros_like(bias);\n\n  // Run kernel\n  dim3 blocks(chn);\n  dim3 threads(getNumThreads(sp));\n  AT_DISPATCH_FLOATING_TYPES(\n      x.type(), \"syncbn_backward_cuda\", ([&] {\n        syncbn_backward_kernel<scalar_t><<<blocks, threads>>>(\n            dz.data<scalar_t>(), x.data<scalar_t>(), weight.data<scalar_t>(),\n            bias.data<scalar_t>(), mean.data<scalar_t>(), var.data<scalar_t>(),\n            sum_dz.data<scalar_t>(), sum_dz_xhat.data<scalar_t>(),\n            dx.data<scalar_t>(), dweight.data<scalar_t>(),\n            dbias.data<scalar_t>(), affine, eps, num, chn, sp);\n      }));\n  return {dx, dweight, dbias};\n}"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/modules/functional/csrc/cuda/common.h",
    "content": "/*****************************************************************************\n\nCUDA utility funcs\n\ncode referenced from : https://github.com/mapillary/inplace_abn\n\n*****************************************************************************/\n#pragma once\n\n#include <cuda_runtime_api.h>\n\n// Checks\n#ifndef AT_CHECK\n    #define AT_CHECK AT_ASSERT\n#endif\n#define CHECK_CUDA(x) AT_CHECK(x.type().is_cuda(), #x \" must be a CUDA tensor\")\n#define CHECK_CONTIGUOUS(x) AT_CHECK(x.is_contiguous(), #x \" must be contiguous\")\n#define CHECK_INPUT(x) CHECK_CUDA(x); CHECK_CONTIGUOUS(x)\n\n/*\n * General settings\n */\nconst int WARP_SIZE = 32;\nconst int MAX_BLOCK_SIZE = 512;\n\ntemplate <typename T>\nstruct Pair {\n  T v1, v2;\n  __device__ Pair() {}\n  __device__ Pair(T _v1, T _v2) : v1(_v1), v2(_v2) {}\n  __device__ Pair(T v) : v1(v), v2(v) {}\n  __device__ Pair(int v) : v1(v), v2(v) {}\n  __device__ Pair &operator+=(const Pair<T> &a) {\n    v1 += a.v1;\n    v2 += a.v2;\n    return *this;\n  }\n};\n\n/*\n * Utility functions\n */\ntemplate <typename T>\n__device__ __forceinline__ T WARP_SHFL_XOR(T value, int laneMask,\n                                           int width = warpSize,\n                                           unsigned int mask = 0xffffffff) {\n#if CUDART_VERSION >= 9000\n  return __shfl_xor_sync(mask, value, laneMask, width);\n#else\n  return __shfl_xor(value, laneMask, width);\n#endif\n}\n\n__device__ __forceinline__ int getMSB(int val) { return 31 - __clz(val); }\n\nstatic int getNumThreads(int nElem) {\n  int threadSizes[5] = {32, 64, 128, 256, MAX_BLOCK_SIZE};\n  for (int i = 0; i != 5; ++i) {\n    if (nElem <= threadSizes[i]) {\n      return threadSizes[i];\n    }\n  }\n  return MAX_BLOCK_SIZE;\n}\n\ntemplate <typename T>\nstatic __device__ __forceinline__ T warpSum(T val) {\n#if __CUDA_ARCH__ >= 300\n  for (int i = 0; i < getMSB(WARP_SIZE); ++i) {\n    val += WARP_SHFL_XOR(val, 1 << i, WARP_SIZE);\n  }\n#else\n  __shared__ T values[MAX_BLOCK_SIZE];\n  values[threadIdx.x] = val;\n  __threadfence_block();\n  const int base = (threadIdx.x / WARP_SIZE) * WARP_SIZE;\n  for (int i = 1; i < WARP_SIZE; i++) {\n    val += values[base + ((i + threadIdx.x) % WARP_SIZE)];\n  }\n#endif\n  return val;\n}\n\ntemplate <typename T>\nstatic __device__ __forceinline__ Pair<T> warpSum(Pair<T> value) {\n  value.v1 = warpSum(value.v1);\n  value.v2 = warpSum(value.v2);\n  return value;\n}\n\ntemplate <typename T, typename Op>\n__device__ T reduce(Op op, int plane, int N, int C, int S) {\n  T sum = (T)0;\n  for (int batch = 0; batch < N; ++batch) {\n    for (int x = threadIdx.x; x < S; x += blockDim.x) {\n      sum += op(batch, plane, x);\n    }\n  }\n\n  // sum over NumThreads within a warp\n  sum = warpSum(sum);\n\n  // 'transpose', and reduce within warp again\n  __shared__ T shared[32];\n  __syncthreads();\n  if (threadIdx.x % WARP_SIZE == 0) {\n    shared[threadIdx.x / WARP_SIZE] = sum;\n  }\n  if (threadIdx.x >= blockDim.x / WARP_SIZE && threadIdx.x < WARP_SIZE) {\n    // zero out the other entries in shared\n    shared[threadIdx.x] = (T)0;\n  }\n  __syncthreads();\n  if (threadIdx.x / WARP_SIZE == 0) {\n    sum = warpSum(shared[threadIdx.x]);\n    if (threadIdx.x == 0) {\n      shared[0] = sum;\n    }\n  }\n  __syncthreads();\n\n  // Everyone picks it up, should be broadcast into the whole gradInput\n  return shared[0];\n}"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/modules/functional/csrc/cuda/ext_lib.h",
    "content": "/*****************************************************************************\n\nCUDA SyncBN code\n\n*****************************************************************************/\n#pragma once\n#include <torch/extension.h>\n#include <vector>\n\n/// Sync-BN\nstd::vector<at::Tensor> syncbn_sum_sqsum_cuda(const at::Tensor& x);\nat::Tensor syncbn_forward_cuda(const at::Tensor& x, const at::Tensor& weight,\n                               const at::Tensor& bias, const at::Tensor& mean,\n                               const at::Tensor& var, bool affine, float eps);\nstd::vector<at::Tensor> syncbn_backward_xhat_cuda(const at::Tensor& dz,\n                                                  const at::Tensor& x,\n                                                  const at::Tensor& mean,\n                                                  const at::Tensor& var,\n                                                  float eps);\nstd::vector<at::Tensor> syncbn_backward_cuda(\n    const at::Tensor& dz, const at::Tensor& x, const at::Tensor& weight,\n    const at::Tensor& bias, const at::Tensor& mean, const at::Tensor& var,\n    const at::Tensor& sum_dz, const at::Tensor& sum_dz_xhat, bool affine,\n    float eps);\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/modules/functional/csrc/ext_lib.cpp",
    "content": "#include \"bn.h\"\n\nPYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {\n  m.def(\"syncbn_sum_sqsum\", &syncbn_sum_sqsum, \"Sum and Sum^2 computation\");\n  m.def(\"syncbn_forward\", &syncbn_forward, \"SyncBN forward computation\");\n  m.def(\"syncbn_backward_xhat\", &syncbn_backward_xhat,\n        \"First part of SyncBN backward computation\");\n  m.def(\"syncbn_backward\", &syncbn_backward,\n        \"Second part of SyncBN backward computation\");\n}"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/modules/functional/syncbn.py",
    "content": "\"\"\"\n/*****************************************************************************/\n\nBatchNorm2dSync with multi-gpu\n\ncode referenced from : https://github.com/mapillary/inplace_abn\n\n/*****************************************************************************/\n\"\"\"\nfrom __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport torch.cuda.comm as comm\nfrom torch.autograd import Function\nfrom torch.autograd.function import once_differentiable\nfrom ._csrc import _backend\n\n\ndef _count_samples(x):\n    count = 1\n    for i, s in enumerate(x.size()):\n        if i != 1:\n            count *= s\n    return count\n\n\nclass BatchNorm2dSyncFunc(Function):\n\n    @staticmethod\n    def forward(ctx, x, weight, bias, running_mean, running_var,\n                extra, compute_stats=True, momentum=0.1, eps=1e-05):\n        def _parse_extra(ctx, extra):\n            ctx.is_master = extra[\"is_master\"]\n            if ctx.is_master:\n                ctx.master_queue = extra[\"master_queue\"]\n                ctx.worker_queues = extra[\"worker_queues\"]\n                ctx.worker_ids = extra[\"worker_ids\"]\n            else:\n                ctx.master_queue = extra[\"master_queue\"]\n                ctx.worker_queue = extra[\"worker_queue\"]\n        # Save context\n        if extra is not None:\n            _parse_extra(ctx, extra)\n        ctx.compute_stats = compute_stats\n        ctx.momentum = momentum\n        ctx.eps = eps\n        ctx.affine = weight is not None and bias is not None\n        if ctx.compute_stats:\n            N = _count_samples(x) * (ctx.master_queue.maxsize + 1)\n            assert N > 1\n            # 1. compute sum(x) and sum(x^2)\n            xsum, xsqsum = _backend.syncbn_sum_sqsum(x.detach())\n            if ctx.is_master:\n                xsums, xsqsums = [xsum], [xsqsum]\n                # master : gatther all sum(x) and sum(x^2) from slaves\n                for _ in range(ctx.master_queue.maxsize):\n                    xsum_w, xsqsum_w = ctx.master_queue.get()\n                    ctx.master_queue.task_done()\n                    xsums.append(xsum_w)\n                    xsqsums.append(xsqsum_w)\n                xsum = comm.reduce_add(xsums)\n                xsqsum = comm.reduce_add(xsqsums)\n                mean = xsum / N\n                sumvar = xsqsum - xsum * mean\n                var = sumvar / N\n                uvar = sumvar / (N - 1)\n                # master : broadcast global mean, variance to all slaves\n                tensors = comm.broadcast_coalesced(\n                    (mean, uvar, var), [mean.get_device()] + ctx.worker_ids)\n                for ts, queue in zip(tensors[1:], ctx.worker_queues):\n                    queue.put(ts)\n            else:\n                # slave : send sum(x) and sum(x^2) to master\n                ctx.master_queue.put((xsum, xsqsum))\n                # slave : get global mean and variance\n                mean, uvar, var = ctx.worker_queue.get()\n                ctx.worker_queue.task_done()\n\n            # Update running stats\n            running_mean.mul_((1 - ctx.momentum)).add_(ctx.momentum * mean)\n            running_var.mul_((1 - ctx.momentum)).add_(ctx.momentum * uvar)\n            ctx.N = N\n            ctx.save_for_backward(x, weight, bias, mean, var)\n        else:\n            mean, var = running_mean, running_var\n\n        # do batch norm forward\n        z = _backend.syncbn_forward(x, weight, bias, mean, var,\n                                    ctx.affine, ctx.eps)\n        return z\n\n    @staticmethod\n    @once_differentiable\n    def backward(ctx, dz):\n        x, weight, bias, mean, var = ctx.saved_tensors\n        dz = dz.contiguous()\n\n        # 1. compute \\sum(\\frac{dJ}{dy_i}) and \\sum(\\frac{dJ}{dy_i}*\\hat{x_i})\n        sum_dz, sum_dz_xhat = _backend.syncbn_backward_xhat(\n            dz, x, mean, var, ctx.eps)\n        if ctx.is_master:\n            sum_dzs, sum_dz_xhats = [sum_dz], [sum_dz_xhat]\n            # master : gatther from slaves\n            for _ in range(ctx.master_queue.maxsize):\n                sum_dz_w, sum_dz_xhat_w = ctx.master_queue.get()\n                ctx.master_queue.task_done()\n                sum_dzs.append(sum_dz_w)\n                sum_dz_xhats.append(sum_dz_xhat_w)\n            # master : compute global stats\n            sum_dz = comm.reduce_add(sum_dzs)\n            sum_dz_xhat = comm.reduce_add(sum_dz_xhats)\n            sum_dz /= ctx.N\n            sum_dz_xhat /= ctx.N\n            # master : broadcast global stats\n            tensors = comm.broadcast_coalesced(\n                (sum_dz, sum_dz_xhat), [mean.get_device()] + ctx.worker_ids)\n            for ts, queue in zip(tensors[1:], ctx.worker_queues):\n                queue.put(ts)\n        else:\n            # slave : send to master\n            ctx.master_queue.put((sum_dz, sum_dz_xhat))\n            # slave : get global stats\n            sum_dz, sum_dz_xhat = ctx.worker_queue.get()\n            ctx.worker_queue.task_done()\n\n        # do batch norm backward\n        dx, dweight, dbias = _backend.syncbn_backward(\n            dz, x, weight, bias, mean, var, sum_dz, sum_dz_xhat,\n            ctx.affine, ctx.eps)\n\n        return dx, dweight, dbias, \\\n            None, None, None, None, None, None\n\nbatchnorm2d_sync = BatchNorm2dSyncFunc.apply\n\n__all__ = [\"batchnorm2d_sync\"]\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/modules/nn/__init__.py",
    "content": "from .syncbn import *\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/model/syncbn/modules/nn/syncbn.py",
    "content": "\"\"\"\n/*****************************************************************************/\n\nBatchNorm2dSync with multi-gpu\n\n/*****************************************************************************/\n\"\"\"\nfrom __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\ntry:\n    # python 3\n    from queue import Queue\nexcept ImportError:\n    # python 2\n    from Queue import Queue\n\nimport torch\nimport torch.nn as nn\nfrom torch.nn import functional as F\nfrom torch.nn.parameter import Parameter\nfrom isegm.model.syncbn.modules.functional import batchnorm2d_sync\n\n\nclass _BatchNorm(nn.Module):\n    \"\"\"\n    Customized BatchNorm from nn.BatchNorm\n    >> added freeze attribute to enable bn freeze.\n    \"\"\"\n\n    def __init__(self, num_features, eps=1e-5, momentum=0.1, affine=True,\n                 track_running_stats=True):\n        super(_BatchNorm, self).__init__()\n        self.num_features = num_features\n        self.eps = eps\n        self.momentum = momentum\n        self.affine = affine\n        self.track_running_stats = track_running_stats\n        self.freezed = False\n        if self.affine:\n            self.weight = Parameter(torch.Tensor(num_features))\n            self.bias = Parameter(torch.Tensor(num_features))\n        else:\n            self.register_parameter('weight', None)\n            self.register_parameter('bias', None)\n        if self.track_running_stats:\n            self.register_buffer('running_mean', torch.zeros(num_features))\n            self.register_buffer('running_var', torch.ones(num_features))\n        else:\n            self.register_parameter('running_mean', None)\n            self.register_parameter('running_var', None)\n        self.reset_parameters()\n\n    def reset_parameters(self):\n        if self.track_running_stats:\n            self.running_mean.zero_()\n            self.running_var.fill_(1)\n        if self.affine:\n            self.weight.data.uniform_()\n            self.bias.data.zero_()\n\n    def _check_input_dim(self, input):\n        return NotImplemented\n\n    def forward(self, input):\n        self._check_input_dim(input)\n\n        compute_stats = not self.freezed and \\\n            self.training and self.track_running_stats\n\n        ret = F.batch_norm(input, self.running_mean, self.running_var,\n                           self.weight, self.bias, compute_stats,\n                           self.momentum, self.eps)\n        return ret\n\n    def extra_repr(self):\n        return '{num_features}, eps={eps}, momentum={momentum}, '\\\n               'affine={affine}, ' \\\n               'track_running_stats={track_running_stats}'.format(\n                   **self.__dict__)\n\n\nclass BatchNorm2dNoSync(_BatchNorm):\n    \"\"\"\n    Equivalent to nn.BatchNorm2d\n    \"\"\"\n\n    def _check_input_dim(self, input):\n        if input.dim() != 4:\n            raise ValueError('expected 4D input (got {}D input)'\n                             .format(input.dim()))\n\n\nclass BatchNorm2dSync(BatchNorm2dNoSync):\n    \"\"\"\n    BatchNorm2d with automatic multi-GPU Sync\n    \"\"\"\n\n    def __init__(self, num_features, eps=1e-5, momentum=0.1, affine=True,\n                 track_running_stats=True):\n        super(BatchNorm2dSync, self).__init__(\n            num_features, eps=eps, momentum=momentum, affine=affine,\n            track_running_stats=track_running_stats)\n        self.sync_enabled = True\n        self.devices = list(range(torch.cuda.device_count()))\n        if len(self.devices) > 1:\n            # Initialize queues\n            self.worker_ids = self.devices[1:]\n            self.master_queue = Queue(len(self.worker_ids))\n            self.worker_queues = [Queue(1) for _ in self.worker_ids]\n\n    def forward(self, x):\n        compute_stats = not self.freezed and \\\n            self.training and self.track_running_stats\n        if self.sync_enabled and compute_stats and len(self.devices) > 1:\n            if x.get_device() == self.devices[0]:\n                # Master mode\n                extra = {\n                    \"is_master\": True,\n                    \"master_queue\": self.master_queue,\n                    \"worker_queues\": self.worker_queues,\n                    \"worker_ids\": self.worker_ids\n                }\n            else:\n                # Worker mode\n                extra = {\n                    \"is_master\": False,\n                    \"master_queue\": self.master_queue,\n                    \"worker_queue\": self.worker_queues[\n                        self.worker_ids.index(x.get_device())]\n                }\n            return batchnorm2d_sync(x, self.weight, self.bias,\n                                    self.running_mean, self.running_var,\n                                    extra, compute_stats, self.momentum,\n                                    self.eps)\n        return super(BatchNorm2dSync, self).forward(x)\n\n    def __repr__(self):\n        \"\"\"repr\"\"\"\n        rep = '{name}({num_features}, eps={eps}, momentum={momentum},' \\\n            'affine={affine}, ' \\\n            'track_running_stats={track_running_stats},' \\\n            'devices={devices})'\n        return rep.format(name=self.__class__.__name__, **self.__dict__)\n\n#BatchNorm2d = BatchNorm2dNoSync\nBatchNorm2d = BatchNorm2dSync\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/utils/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/inference/interact/fbrs/utils/cython/__init__.py",
    "content": "# noinspection PyUnresolvedReferences\nfrom .dist_maps import get_dist_maps"
  },
  {
    "path": "XMem/inference/interact/fbrs/utils/cython/_get_dist_maps.pyx",
    "content": "import numpy as np\ncimport cython\ncimport numpy as np\nfrom libc.stdlib cimport malloc, free\n\nctypedef struct qnode:\n    int row\n    int col\n    int layer\n    int orig_row\n    int orig_col\n\n@cython.infer_types(True)\n@cython.boundscheck(False)\n@cython.wraparound(False)\n@cython.nonecheck(False)\ndef get_dist_maps(np.ndarray[np.float32_t, ndim=2, mode=\"c\"] points,\n                  int height, int width, float norm_delimeter):\n    cdef np.ndarray[np.float32_t, ndim=3, mode=\"c\"] dist_maps = \\\n        np.full((2, height, width), 1e6, dtype=np.float32, order=\"C\")\n\n    cdef int *dxy = [-1, 0, 0, -1, 0, 1, 1, 0]\n    cdef int i, j, x, y, dx, dy\n    cdef qnode v\n    cdef qnode *q = <qnode *> malloc((4 * height * width + 1) * sizeof(qnode))\n    cdef int qhead = 0, qtail = -1\n    cdef float ndist\n\n    for i in range(points.shape[0]):\n        x, y = round(points[i, 0]), round(points[i, 1])\n        if x >= 0:\n            qtail += 1\n            q[qtail].row = x\n            q[qtail].col = y\n            q[qtail].orig_row = x\n            q[qtail].orig_col = y\n            if i >= points.shape[0] / 2:\n                q[qtail].layer = 1\n            else:\n                q[qtail].layer = 0\n            dist_maps[q[qtail].layer, x, y] = 0\n\n    while qtail - qhead + 1 > 0:\n        v = q[qhead]\n        qhead += 1\n\n        for k in range(4):\n            x = v.row + dxy[2 * k]\n            y = v.col + dxy[2 * k + 1]\n\n            ndist = ((x - v.orig_row)/norm_delimeter) ** 2 + ((y - v.orig_col)/norm_delimeter) ** 2\n            if (x >= 0 and y >= 0 and x < height and y < width and\n                dist_maps[v.layer, x, y] > ndist):\n                qtail += 1\n                q[qtail].orig_col = v.orig_col\n                q[qtail].orig_row = v.orig_row\n                q[qtail].layer = v.layer\n                q[qtail].row = x\n                q[qtail].col = y\n                dist_maps[v.layer, x, y] = ndist\n\n    free(q)\n    return dist_maps\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/utils/cython/_get_dist_maps.pyxbld",
    "content": "import numpy\n\ndef make_ext(modname, pyxfilename):\n    from distutils.extension import Extension\n    return Extension(modname, [pyxfilename],\n              include_dirs=[numpy.get_include()],\n              extra_compile_args=['-O3'], language='c++')\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/utils/cython/dist_maps.py",
    "content": "import pyximport; pyximport.install(pyximport=True, language_level=3)\n# noinspection PyUnresolvedReferences\nfrom ._get_dist_maps import get_dist_maps"
  },
  {
    "path": "XMem/inference/interact/fbrs/utils/misc.py",
    "content": "from functools import partial\n\nimport torch\nimport numpy as np\n\n\ndef get_dims_with_exclusion(dim, exclude=None):\n    dims = list(range(dim))\n    if exclude is not None:\n        dims.remove(exclude)\n\n    return dims\n\n\ndef get_unique_labels(mask):\n    return np.nonzero(np.bincount(mask.flatten() + 1))[0] - 1\n\n\ndef get_bbox_from_mask(mask):\n    rows = np.any(mask, axis=1)\n    cols = np.any(mask, axis=0)\n    rmin, rmax = np.where(rows)[0][[0, -1]]\n    cmin, cmax = np.where(cols)[0][[0, -1]]\n\n    return rmin, rmax, cmin, cmax\n\n\ndef expand_bbox(bbox, expand_ratio, min_crop_size=None):\n    rmin, rmax, cmin, cmax = bbox\n    rcenter = 0.5 * (rmin + rmax)\n    ccenter = 0.5 * (cmin + cmax)\n    height = expand_ratio * (rmax - rmin + 1)\n    width = expand_ratio * (cmax - cmin + 1)\n    if min_crop_size is not None:\n        height = max(height, min_crop_size)\n        width = max(width, min_crop_size)\n\n    rmin = int(round(rcenter - 0.5 * height))\n    rmax = int(round(rcenter + 0.5 * height))\n    cmin = int(round(ccenter - 0.5 * width))\n    cmax = int(round(ccenter + 0.5 * width))\n\n    return rmin, rmax, cmin, cmax\n\n\ndef clamp_bbox(bbox, rmin, rmax, cmin, cmax):\n    return (max(rmin, bbox[0]), min(rmax, bbox[1]),\n            max(cmin, bbox[2]), min(cmax, bbox[3]))\n\n\ndef get_bbox_iou(b1, b2):\n    h_iou = get_segments_iou(b1[:2], b2[:2])\n    w_iou = get_segments_iou(b1[2:4], b2[2:4])\n    return h_iou * w_iou\n\n\ndef get_segments_iou(s1, s2):\n    a, b = s1\n    c, d = s2\n    intersection = max(0, min(b, d) - max(a, c) + 1)\n    union = max(1e-6, max(b, d) - min(a, c) + 1)\n    return intersection / union\n"
  },
  {
    "path": "XMem/inference/interact/fbrs/utils/vis.py",
    "content": "from functools import lru_cache\n\nimport cv2\nimport numpy as np\n\n\ndef visualize_instances(imask, bg_color=255,\n                        boundaries_color=None, boundaries_width=1, boundaries_alpha=0.8):\n    num_objects = imask.max() + 1\n    palette = get_palette(num_objects)\n    if bg_color is not None:\n        palette[0] = bg_color\n\n    result = palette[imask].astype(np.uint8)\n    if boundaries_color is not None:\n        boundaries_mask = get_boundaries(imask, boundaries_width=boundaries_width)\n        tresult = result.astype(np.float32)\n        tresult[boundaries_mask] = boundaries_color\n        tresult = tresult * boundaries_alpha + (1 - boundaries_alpha) * result\n        result = tresult.astype(np.uint8)\n\n    return result\n\n\n@lru_cache(maxsize=16)\ndef get_palette(num_cls):\n    palette = np.zeros(3 * num_cls, dtype=np.int32)\n\n    for j in range(0, num_cls):\n        lab = j\n        i = 0\n\n        while lab > 0:\n            palette[j*3 + 0] |= (((lab >> 0) & 1) << (7-i))\n            palette[j*3 + 1] |= (((lab >> 1) & 1) << (7-i))\n            palette[j*3 + 2] |= (((lab >> 2) & 1) << (7-i))\n            i = i + 1\n            lab >>= 3\n\n    return palette.reshape((-1, 3))\n\n\ndef visualize_mask(mask, num_cls):\n    palette = get_palette(num_cls)\n    mask[mask == -1] = 0\n\n    return palette[mask].astype(np.uint8)\n\n\ndef visualize_proposals(proposals_info, point_color=(255, 0, 0), point_radius=1):\n    proposal_map, colors, candidates = proposals_info\n\n    proposal_map = draw_probmap(proposal_map)\n    for x, y in candidates:\n        proposal_map = cv2.circle(proposal_map, (y, x), point_radius, point_color, -1)\n\n    return proposal_map\n\n\ndef draw_probmap(x):\n    return cv2.applyColorMap((x * 255).astype(np.uint8), cv2.COLORMAP_HOT)\n\n\ndef draw_points(image, points, color, radius=3):\n    image = image.copy()\n    for p in points:\n        image = cv2.circle(image, (int(p[1]), int(p[0])), radius, color, -1)\n\n    return image\n\n\ndef draw_instance_map(x, palette=None):\n    num_colors = x.max() + 1\n    if palette is None:\n        palette = get_palette(num_colors)\n\n    return palette[x].astype(np.uint8)\n\n\ndef blend_mask(image, mask, alpha=0.6):\n    if mask.min() == -1:\n        mask = mask.copy() + 1\n\n    imap = draw_instance_map(mask)\n    result = (image * (1 - alpha) + alpha * imap).astype(np.uint8)\n    return result\n\n\ndef get_boundaries(instances_masks, boundaries_width=1):\n    boundaries = np.zeros((instances_masks.shape[0], instances_masks.shape[1]), dtype=np.bool)\n\n    for obj_id in np.unique(instances_masks.flatten()):\n        if obj_id == 0:\n            continue\n\n        obj_mask = instances_masks == obj_id\n        kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (3, 3))\n        inner_mask = cv2.erode(obj_mask.astype(np.uint8), kernel, iterations=boundaries_width).astype(np.bool)\n\n        obj_boundary = np.logical_xor(obj_mask, np.logical_and(inner_mask, obj_mask))\n        boundaries = np.logical_or(boundaries, obj_boundary)\n    return boundaries\n    \n \ndef draw_with_blend_and_clicks(img, mask=None, alpha=0.6, clicks_list=None, pos_color=(0, 255, 0),\n                               neg_color=(255, 0, 0), radius=4):\n    result = img.copy()\n\n    if mask is not None:\n        palette = get_palette(np.max(mask) + 1)\n        rgb_mask = palette[mask.astype(np.uint8)]\n\n        mask_region = (mask > 0).astype(np.uint8)\n        result = result * (1 - mask_region[:, :, np.newaxis]) + \\\n            (1 - alpha) * mask_region[:, :, np.newaxis] * result + \\\n            alpha * rgb_mask\n        result = result.astype(np.uint8)\n\n        # result = (result * (1 - alpha) + alpha * rgb_mask).astype(np.uint8)\n\n    if clicks_list is not None and len(clicks_list) > 0:\n        pos_points = [click.coords for click in clicks_list if click.is_positive]\n        neg_points = [click.coords for click in clicks_list if not click.is_positive]\n\n        result = draw_points(result, pos_points, pos_color, radius=radius)\n        result = draw_points(result, neg_points, neg_color, radius=radius)\n\n    return result\n\n"
  },
  {
    "path": "XMem/inference/interact/fbrs_controller.py",
    "content": "import torch\nfrom .fbrs.controller import InteractiveController\nfrom .fbrs.inference import utils\n\n\nclass FBRSController:\n    def __init__(self, checkpoint_path, device='cuda:0', max_size=800):\n        model = utils.load_is_model(checkpoint_path, device, cpu_dist_maps=True, norm_radius=260)\n\n        # Predictor params\n        zoomin_params = {\n                'skip_clicks': 1,\n                'target_size': 480,\n                'expansion_ratio': 1.4,\n            }\n\n        predictor_params = {\n            'brs_mode': 'f-BRS-B',\n            'prob_thresh': 0.5,\n            'zoom_in_params': zoomin_params,\n            'predictor_params': {\n                'net_clicks_limit': 8,\n                'max_size': 800,\n            },\n            'brs_opt_func_params': {'min_iou_diff': 1e-3},\n            'lbfgs_params': {'maxfun': 20}\n        }\n\n        self.controller = InteractiveController(model, device, predictor_params)\n        self.anchored = False\n        self.device = device\n\n    def unanchor(self):\n        self.anchored = False\n\n    def interact(self, image, x, y, is_positive):\n        image = image.to(self.device, non_blocking=True)\n        if not self.anchored:\n            self.controller.set_image(image)\n            self.controller.reset_predictor()\n            self.anchored = True\n\n        self.controller.add_click(x, y, is_positive)\n        # return self.controller.result_mask\n        # return self.controller.probs_history[-1][1]\n        return (self.controller.probs_history[-1][1]>0.5).float()\n\n    def undo(self):\n        self.controller.undo_click()\n        if len(self.controller.probs_history) == 0:\n            return None\n        else:\n            return (self.controller.probs_history[-1][1]>0.5).float()"
  },
  {
    "path": "XMem/inference/interact/gui.py",
    "content": "\"\"\"\nBased on https://github.com/hkchengrex/MiVOS/tree/MiVOS-STCN \n(which is based on https://github.com/seoungwugoh/ivs-demo)\n\nThis version is much simplified. \nIn this repo, we don't have\n- local control\n- fusion module\n- undo\n- timers\n\nbut with XMem as the backbone and is more memory (for both CPU and GPU) friendly\n\"\"\"\n\nimport functools\n\nimport os\nimport cv2\n# fix conflicts between qt5 and cv2\nos.environ.pop(\"QT_QPA_PLATFORM_PLUGIN_PATH\")\n\nimport numpy as np\nimport torch\ntry:\n    from torch import mps\nexcept:\n    print('torch.MPS not available.')\n\nfrom PySide6.QtWidgets import (QWidget, QApplication, QComboBox, QCheckBox,\n    QHBoxLayout, QLabel, QPushButton, QTextEdit, QSpinBox, QFileDialog,\n    QPlainTextEdit, QVBoxLayout, QSizePolicy, QButtonGroup, QSlider, QRadioButton)\n\nfrom PySide6.QtGui import QPixmap, QKeySequence, QImage, QTextCursor, QIcon, QShortcut\nfrom PySide6.QtCore import Qt, QTimer\n\nfrom model.network import XMem\n\nfrom inference.inference_core import InferenceCore\nfrom .s2m_controller import S2MController\nfrom .fbrs_controller import FBRSController\n\nfrom .interactive_utils import *\nfrom .interaction import *\nfrom .resource_manager import ResourceManager\nfrom .gui_utils import *\n\n\nclass App(QWidget):\n    def __init__(self, net: XMem, \n                resource_manager: ResourceManager, \n                s2m_ctrl:S2MController, \n                fbrs_ctrl:FBRSController, config, device):\n        super().__init__()\n\n        self.initialized = False\n        self.num_objects = config['num_objects']\n        self.s2m_controller = s2m_ctrl\n        self.fbrs_controller = fbrs_ctrl\n        self.config = config\n        self.processor = InferenceCore(net, config)\n        self.processor.set_all_labels(list(range(1, self.num_objects+1)))\n        self.res_man = resource_manager\n        self.device = device\n\n        self.num_frames = len(self.res_man)\n        self.height, self.width = self.res_man.h, self.res_man.w\n\n        # set window\n        self.setWindowTitle('XMem Demo')\n        self.setGeometry(100, 100, self.width, self.height+100)\n        self.setWindowIcon(QIcon('docs/icon.png'))\n\n        # some buttons\n        self.play_button = QPushButton('Play Video')\n        self.play_button.clicked.connect(self.on_play_video)\n        self.commit_button = QPushButton('Commit')\n        self.commit_button.clicked.connect(self.on_commit)\n        self.export_button = QPushButton('Export Overlays as Video')\n        self.export_button.clicked.connect(self.on_export_visualization)\n\n        self.forward_run_button = QPushButton('Forward Propagate')\n        self.forward_run_button.clicked.connect(self.on_forward_propagation)\n        self.forward_run_button.setMinimumWidth(150)\n\n        self.backward_run_button = QPushButton('Backward Propagate')\n        self.backward_run_button.clicked.connect(self.on_backward_propagation)\n        self.backward_run_button.setMinimumWidth(150)\n\n        self.reset_button = QPushButton('Reset Frame')\n        self.reset_button.clicked.connect(self.on_reset_mask)\n\n        # LCD\n        self.lcd = QTextEdit()\n        self.lcd.setReadOnly(True)\n        self.lcd.setMaximumHeight(28)\n        self.lcd.setMaximumWidth(120)\n        self.lcd.setText('{: 4d} / {: 4d}'.format(0, self.num_frames-1))\n\n        # Current Mask LCD\n        self.object_dial = QSpinBox()\n        self.object_dial.setReadOnly(False)\n        self.object_dial.setMaximumHeight(28)\n        self.object_dial.setMaximumWidth(56)\n        self.object_dial.setMinimum(1)\n        self.object_dial.setMaximum(self.num_objects)\n        self.object_dial.editingFinished.connect(self.on_object_dial_change)\n\n        # timeline slider\n        self.tl_slider = QSlider(Qt.Orientation.Horizontal)\n        self.tl_slider.valueChanged.connect(self.tl_slide)\n        self.tl_slider.setMinimum(0)\n        self.tl_slider.setMaximum(self.num_frames-1)\n        self.tl_slider.setValue(0)\n        self.tl_slider.setTickPosition(QSlider.TickPosition.TicksBelow)\n        self.tl_slider.setTickInterval(1)\n        \n        # brush size slider\n        self.brush_label = QLabel()\n        self.brush_label.setAlignment(Qt.AlignmentFlag.AlignCenter)\n        self.brush_label.setMinimumWidth(150)\n        \n        self.brush_slider = QSlider(Qt.Orientation.Horizontal)\n        self.brush_slider.valueChanged.connect(self.brush_slide)\n        self.brush_slider.setMinimum(1)\n        self.brush_slider.setMaximum(100)\n        self.brush_slider.setValue(3)\n        self.brush_slider.setTickPosition(QSlider.TickPosition.TicksBelow)\n        self.brush_slider.setTickInterval(2)\n        self.brush_slider.setMinimumWidth(300)\n\n        # combobox\n        self.combo = QComboBox(self)\n        self.combo.addItem(\"davis\")\n        self.combo.addItem(\"fade\")\n        self.combo.addItem(\"light\")\n        self.combo.addItem(\"popup\")\n        self.combo.addItem(\"layered\")\n        self.combo.currentTextChanged.connect(self.set_viz_mode)\n\n        self.save_visualization_checkbox = QCheckBox(self)\n        self.save_visualization_checkbox.toggled.connect(self.on_save_visualization_toggle)\n        self.save_visualization_checkbox.setChecked(False)\n        self.save_visualization = False\n\n        # Radio buttons for type of interactions\n        self.curr_interaction = 'Click'\n        self.interaction_group = QButtonGroup()\n        self.radio_fbrs = QRadioButton('Click')\n        self.radio_s2m = QRadioButton('Scribble')\n        self.radio_free = QRadioButton('Free')\n        self.interaction_group.addButton(self.radio_fbrs)\n        self.interaction_group.addButton(self.radio_s2m)\n        self.interaction_group.addButton(self.radio_free)\n        self.radio_fbrs.toggled.connect(self.interaction_radio_clicked)\n        self.radio_s2m.toggled.connect(self.interaction_radio_clicked)\n        self.radio_free.toggled.connect(self.interaction_radio_clicked)\n        self.radio_fbrs.toggle()\n\n        # Main canvas -> QLabel\n        self.main_canvas = QLabel()\n        self.main_canvas.setSizePolicy(QSizePolicy.Policy.Expanding,\n                QSizePolicy.Policy.Expanding)\n        self.main_canvas.setAlignment(Qt.AlignmentFlag.AlignCenter)\n        self.main_canvas.setMinimumSize(100, 100)\n\n        self.main_canvas.mousePressEvent = self.on_mouse_press\n        self.main_canvas.mouseMoveEvent = self.on_mouse_motion\n        self.main_canvas.setMouseTracking(True) # Required for all-time tracking\n        self.main_canvas.mouseReleaseEvent = self.on_mouse_release\n\n        # Minimap -> Also a QLabel\n        self.minimap = QLabel()\n        self.minimap.setSizePolicy(QSizePolicy.Policy.Expanding,\n                QSizePolicy.Policy.Expanding)\n        self.minimap.setAlignment(Qt.AlignmentFlag.AlignTop)\n        self.minimap.setMinimumSize(100, 100)\n\n        # Zoom-in buttons\n        self.zoom_p_button = QPushButton('Zoom +')\n        self.zoom_p_button.clicked.connect(self.on_zoom_plus)\n        self.zoom_m_button = QPushButton('Zoom -')\n        self.zoom_m_button.clicked.connect(self.on_zoom_minus)\n\n        # Parameters setting\n        self.clear_mem_button = QPushButton('Clear memory')\n        self.clear_mem_button.clicked.connect(self.on_clear_memory)\n\n        self.work_mem_gauge, self.work_mem_gauge_layout = create_gauge('Working memory size')\n        self.long_mem_gauge, self.long_mem_gauge_layout = create_gauge('Long-term memory size')\n        self.gpu_mem_gauge, self.gpu_mem_gauge_layout = create_gauge('GPU mem. (all processes, w/ caching)')\n        self.torch_mem_gauge, self.torch_mem_gauge_layout = create_gauge('GPU mem. (used by torch, w/o caching)')\n\n        self.update_memory_size()\n        self.update_gpu_usage()\n\n        self.work_mem_min, self.work_mem_min_layout = create_parameter_box(1, 100, 'Min. working memory frames', \n                                                        callback=self.on_work_min_change)\n        self.work_mem_max, self.work_mem_max_layout = create_parameter_box(2, 100, 'Max. working memory frames', \n                                                        callback=self.on_work_max_change)\n        self.long_mem_max, self.long_mem_max_layout = create_parameter_box(1000, 100000, \n                                                        'Max. long-term memory size', step=1000, callback=self.update_config)\n        self.num_prototypes_box, self.num_prototypes_box_layout = create_parameter_box(32, 1280, \n                                                        'Number of prototypes', step=32, callback=self.update_config)\n        self.mem_every_box, self.mem_every_box_layout = create_parameter_box(1, 100, 'Memory frame every (r)', \n                                                        callback=self.update_config)\n\n        self.work_mem_min.setValue(self.processor.memory.min_mt_frames)\n        self.work_mem_max.setValue(self.processor.memory.max_mt_frames)\n        self.long_mem_max.setValue(self.processor.memory.max_long_elements)\n        self.num_prototypes_box.setValue(self.processor.memory.num_prototypes)\n        self.mem_every_box.setValue(self.processor.mem_every)\n\n        # import mask/layer\n        self.import_mask_button = QPushButton('Import mask')\n        self.import_mask_button.clicked.connect(self.on_import_mask)\n        self.import_layer_button = QPushButton('Import layer')\n        self.import_layer_button.clicked.connect(self.on_import_layer)\n\n        # Console on the GUI\n        self.console = QPlainTextEdit()\n        self.console.setReadOnly(True)\n        self.console.setMinimumHeight(100)\n        self.console.setMaximumHeight(100)\n\n        # navigator\n        navi = QHBoxLayout()\n\n        interact_subbox = QVBoxLayout()\n        interact_topbox = QHBoxLayout()\n        interact_botbox = QHBoxLayout()\n        interact_topbox.setAlignment(Qt.AlignmentFlag.AlignCenter)\n        interact_topbox.addWidget(self.lcd)\n        interact_topbox.addWidget(self.play_button)\n        interact_topbox.addWidget(self.radio_s2m)\n        interact_topbox.addWidget(self.radio_fbrs)\n        interact_topbox.addWidget(self.radio_free)\n        interact_topbox.addWidget(self.reset_button)\n        interact_botbox.addWidget(QLabel('Current Object ID:'))\n        interact_botbox.addWidget(self.object_dial)\n        interact_botbox.addWidget(self.brush_label)\n        interact_botbox.addWidget(self.brush_slider)\n        interact_subbox.addLayout(interact_topbox)\n        interact_subbox.addLayout(interact_botbox)\n        navi.addLayout(interact_subbox)\n\n        apply_fixed_size_policy = lambda x: x.setSizePolicy(QSizePolicy.Policy.Fixed, \n                                                            QSizePolicy.Policy.Fixed)\n        apply_to_all_children_widget(interact_topbox, apply_fixed_size_policy)\n        apply_to_all_children_widget(interact_botbox, apply_fixed_size_policy)\n\n        navi.addStretch(1)\n        navi.addStretch(1)\n        overlay_subbox = QVBoxLayout()\n        overlay_topbox = QHBoxLayout()\n        overlay_botbox = QHBoxLayout()\n        overlay_botbox.setAlignment(Qt.AlignmentFlag.AlignRight)\n        overlay_topbox.addWidget(QLabel('Overlay Mode'))\n        overlay_topbox.addWidget(self.combo)\n        overlay_topbox.addWidget(QLabel('Save overlay during propagation'))\n        overlay_topbox.addWidget(self.save_visualization_checkbox)\n        overlay_botbox.addWidget(self.export_button)\n        overlay_subbox.addLayout(overlay_topbox)\n        overlay_subbox.addLayout(overlay_botbox)\n        navi.addLayout(overlay_subbox)\n        apply_to_all_children_widget(overlay_topbox, apply_fixed_size_policy)\n        apply_to_all_children_widget(overlay_botbox, apply_fixed_size_policy)\n\n        navi.addStretch(1)\n        navi.addWidget(self.commit_button)\n        navi.addWidget(self.forward_run_button)\n        navi.addWidget(self.backward_run_button)\n        \n        # Drawing area, main canvas and minimap\n        draw_area = QHBoxLayout()\n        draw_area.addWidget(self.main_canvas, 4)\n\n        # Minimap area\n        minimap_area = QVBoxLayout()\n        minimap_area.setAlignment(Qt.AlignmentFlag.AlignTop)\n        mini_label = QLabel('Minimap')\n        mini_label.setAlignment(Qt.AlignmentFlag.AlignTop)\n        minimap_area.addWidget(mini_label)\n\n        # Minimap zooming\n        minimap_ctrl = QHBoxLayout()\n        minimap_ctrl.setAlignment(Qt.AlignmentFlag.AlignTop)\n        minimap_ctrl.addWidget(self.zoom_p_button)\n        minimap_ctrl.addWidget(self.zoom_m_button)\n        minimap_area.addLayout(minimap_ctrl)\n        minimap_area.addWidget(self.minimap)\n\n        # Parameters \n        minimap_area.addLayout(self.work_mem_gauge_layout)\n        minimap_area.addLayout(self.long_mem_gauge_layout)\n        minimap_area.addLayout(self.gpu_mem_gauge_layout)\n        minimap_area.addLayout(self.torch_mem_gauge_layout)\n        minimap_area.addWidget(self.clear_mem_button)\n        minimap_area.addLayout(self.work_mem_min_layout)\n        minimap_area.addLayout(self.work_mem_max_layout)\n        minimap_area.addLayout(self.long_mem_max_layout)\n        minimap_area.addLayout(self.num_prototypes_box_layout)\n        minimap_area.addLayout(self.mem_every_box_layout)\n\n        # import mask/layer\n        import_area = QHBoxLayout()\n        import_area.setAlignment(Qt.AlignmentFlag.AlignTop)\n        import_area.addWidget(self.import_mask_button)\n        import_area.addWidget(self.import_layer_button)\n        minimap_area.addLayout(import_area)\n\n        # console\n        minimap_area.addWidget(self.console)\n\n        draw_area.addLayout(minimap_area, 1)\n\n        layout = QVBoxLayout()\n        layout.addLayout(draw_area)\n        layout.addWidget(self.tl_slider)\n        layout.addLayout(navi)\n        self.setLayout(layout)\n\n        # timer to play video\n        self.timer = QTimer()\n        self.timer.setSingleShot(False)\n        self.timer.timeout.connect(self.on_play_video_timer)\n\n        # timer to update GPU usage\n        self.gpu_timer = QTimer()\n        self.gpu_timer.setSingleShot(False)\n        self.gpu_timer.timeout.connect(self.on_gpu_timer)\n        self.gpu_timer.setInterval(2000)\n        self.gpu_timer.start()\n\n        # current frame info\n        self.curr_frame_dirty = False\n        self.current_image = np.zeros((self.height, self.width, 3), dtype=np.uint8) \n        self.current_image_torch = None\n        self.current_mask = np.zeros((self.height, self.width), dtype=np.uint8)\n        self.current_prob = torch.zeros((self.num_objects, self.height, self.width), dtype=torch.float).to(self.device)\n\n        # initialize visualization\n        self.viz_mode = 'davis'\n        self.vis_map = np.zeros((self.height, self.width, 3), dtype=np.uint8)\n        self.vis_alpha = np.zeros((self.height, self.width, 1), dtype=np.float32)\n        self.brush_vis_map = np.zeros((self.height, self.width, 3), dtype=np.uint8)\n        self.brush_vis_alpha = np.zeros((self.height, self.width, 1), dtype=np.float32)\n        self.cursur = 0\n        self.on_showing = None\n\n        # Zoom parameters\n        self.zoom_pixels = 150\n        \n        # initialize action\n        self.interaction = None\n        self.pressed = False\n        self.right_click = False\n        self.current_object = 1\n        self.last_ex = self.last_ey = 0\n\n        self.propagating = False\n\n        # Objects shortcuts\n        for i in range(1, self.num_objects+1):\n            QShortcut(QKeySequence(str(i)), self).activated.connect(functools.partial(self.hit_number_key, i))\n            QShortcut(QKeySequence(f\"Ctrl+{i}\"), self).activated.connect(functools.partial(self.hit_number_key, i))\n\n        # <- and -> shortcuts\n        QShortcut(QKeySequence(Qt.Key.Key_Left), self).activated.connect(self.on_prev_frame)\n        QShortcut(QKeySequence(Qt.Key.Key_Right), self).activated.connect(self.on_next_frame)\n\n        self.interacted_prob = None\n        self.overlay_layer = None\n        self.overlay_layer_torch = None\n\n        # the object id used for popup/layered overlay\n        self.vis_target_objects = [1]\n        # try to load the default overlay\n        self._try_load_layer('./docs/ECCV-logo.png')\n\n        self.load_current_image_mask()\n        self.show_current_frame()\n        self.show()\n\n        self.console_push_text('Initialized.')\n        self.initialized = True\n\n    def resizeEvent(self, event):\n        self.show_current_frame()\n\n    def console_push_text(self, text):\n        self.console.moveCursor(QTextCursor.MoveOperation.End)\n        self.console.insertPlainText(text+'\\n')\n\n    def interaction_radio_clicked(self, event):\n        self.last_interaction = self.curr_interaction\n        if self.radio_s2m.isChecked():\n            self.curr_interaction = 'Scribble'\n            self.brush_size = 3\n            self.brush_slider.setDisabled(True)\n        elif self.radio_fbrs.isChecked():\n            self.curr_interaction = 'Click'\n            self.brush_size = 3\n            self.brush_slider.setDisabled(True)\n        elif self.radio_free.isChecked():\n            self.brush_slider.setDisabled(False)\n            self.brush_slide()\n            self.curr_interaction = 'Free'\n        if self.curr_interaction == 'Scribble':\n            self.commit_button.setEnabled(True)\n        else:\n            self.commit_button.setEnabled(False)\n\n    def load_current_image_mask(self, no_mask=False):\n        self.current_image = self.res_man.get_image(self.cursur)\n        self.current_image_torch = None\n\n        if not no_mask:\n            loaded_mask = self.res_man.get_mask(self.cursur)\n            if loaded_mask is None:\n                self.current_mask.fill(0)\n            else:\n                self.current_mask = loaded_mask.copy()\n            self.current_prob = None\n\n    def load_current_torch_image_mask(self, no_mask=False):\n        if self.current_image_torch is None:\n            self.current_image_torch, self.current_image_torch_no_norm = image_to_torch(self.current_image, self.device)\n\n        if self.current_prob is None and not no_mask:\n            self.current_prob = index_numpy_to_one_hot_torch(self.current_mask, self.num_objects+1).to(self.device)\n\n    def compose_current_im(self):\n        self.viz = get_visualization(self.viz_mode, self.current_image, self.current_mask, \n                            self.overlay_layer, self.vis_target_objects)\n\n    def update_interact_vis(self):\n        # Update the interactions without re-computing the overlay\n        height, width, channel = self.viz.shape\n        bytesPerLine = 3 * width\n\n        vis_map = self.vis_map\n        vis_alpha = self.vis_alpha\n        brush_vis_map = self.brush_vis_map\n        brush_vis_alpha = self.brush_vis_alpha\n\n        self.viz_with_stroke = self.viz*(1-vis_alpha) + vis_map*vis_alpha\n        self.viz_with_stroke = self.viz_with_stroke*(1-brush_vis_alpha) + brush_vis_map*brush_vis_alpha\n        self.viz_with_stroke = self.viz_with_stroke.astype(np.uint8)\n\n        qImg = QImage(self.viz_with_stroke.data, width, height, bytesPerLine, QImage.Format.Format_RGB888)\n        self.main_canvas.setPixmap(QPixmap(qImg.scaled(self.main_canvas.size(),\n                Qt.AspectRatioMode.KeepAspectRatio, Qt.TransformationMode.FastTransformation)))\n\n        self.main_canvas_size = self.main_canvas.size()\n        self.image_size = qImg.size()\n\n    def update_minimap(self):\n        ex, ey = self.last_ex, self.last_ey\n        r = self.zoom_pixels//2\n        ex = int(round(max(r, min(self.width-r, ex))))\n        ey = int(round(max(r, min(self.height-r, ey))))\n\n        patch = self.viz_with_stroke[ey-r:ey+r, ex-r:ex+r, :].astype(np.uint8)\n\n        height, width, channel = patch.shape\n        bytesPerLine = 3 * width\n        qImg = QImage(patch.data, width, height, bytesPerLine, QImage.Format.Format_RGB888)\n        self.minimap.setPixmap(QPixmap(qImg.scaled(self.minimap.size(),\n                Qt.AspectRatioMode.KeepAspectRatio, Qt.TransformationMode.FastTransformation)))\n\n    def update_current_image_fast(self):\n        # fast path, uses gpu. Changes the image in-place to avoid copying\n        self.viz = get_visualization_torch(self.viz_mode, self.current_image_torch_no_norm, \n                    self.current_prob, self.overlay_layer_torch, self.vis_target_objects)\n        if self.save_visualization:\n            self.res_man.save_visualization(self.cursur, self.viz)\n\n        height, width, channel = self.viz.shape\n        bytesPerLine = 3 * width\n\n        qImg = QImage(self.viz.data, width, height, bytesPerLine, QImage.Format.Format_RGB888)\n        self.main_canvas.setPixmap(QPixmap(qImg.scaled(self.main_canvas.size(),\n                Qt.AspectRatioMode.KeepAspectRatio, Qt.TransformationMode.FastTransformation)))\n\n    def show_current_frame(self, fast=False):\n        # Re-compute overlay and show the image\n        if fast:\n            self.update_current_image_fast()\n        else:\n            self.compose_current_im()\n            self.update_interact_vis()\n            self.update_minimap()\n\n        self.lcd.setText('{: 3d} / {: 3d}'.format(self.cursur, self.num_frames-1))\n        self.tl_slider.setValue(self.cursur)\n\n    def pixel_pos_to_image_pos(self, x, y):\n        # Un-scale and un-pad the label coordinates into image coordinates\n        oh, ow = self.image_size.height(), self.image_size.width()\n        nh, nw = self.main_canvas_size.height(), self.main_canvas_size.width()\n\n        h_ratio = nh/oh\n        w_ratio = nw/ow\n        dominate_ratio = min(h_ratio, w_ratio)\n\n        # Solve scale\n        x /= dominate_ratio\n        y /= dominate_ratio\n\n        # Solve padding\n        fh, fw = nh/dominate_ratio, nw/dominate_ratio\n        x -= (fw-ow)/2\n        y -= (fh-oh)/2\n\n        return x, y\n\n    def is_pos_out_of_bound(self, x, y):\n        x, y = self.pixel_pos_to_image_pos(x, y)\n\n        out_of_bound = (\n            (x < 0) or\n            (y < 0) or\n            (x > self.width-1) or \n            (y > self.height-1)\n        )\n\n        return out_of_bound\n\n    def get_scaled_pos(self, x, y):\n        x, y = self.pixel_pos_to_image_pos(x, y)\n\n        x = max(0, min(self.width-1, x))\n        y = max(0, min(self.height-1, y))\n\n        return x, y\n\n    def clear_visualization(self):\n        self.vis_map.fill(0)\n        self.vis_alpha.fill(0)\n\n    def reset_this_interaction(self):\n        self.complete_interaction()\n        self.clear_visualization()\n        self.interaction = None\n        if self.fbrs_controller is not None:\n            self.fbrs_controller.unanchor()\n\n    def set_viz_mode(self):\n        self.viz_mode = self.combo.currentText()\n        self.show_current_frame()\n\n    def save_current_mask(self):\n        # save mask to hard disk\n        self.res_man.save_mask(self.cursur, self.current_mask)\n\n    def tl_slide(self):\n        # if we are propagating, the on_run function will take care of everything\n        # don't do duplicate work here\n        if not self.propagating:\n            if self.curr_frame_dirty:\n                self.save_current_mask()\n            self.curr_frame_dirty = False\n\n            self.reset_this_interaction()\n            self.cursur = self.tl_slider.value()\n            self.load_current_image_mask()\n            self.show_current_frame()\n\n    def brush_slide(self):\n        self.brush_size = self.brush_slider.value()\n        self.brush_label.setText('Brush size (in free mode): %d' % self.brush_size)\n        try:\n            if type(self.interaction) == FreeInteraction:\n                self.interaction.set_size(self.brush_size)\n        except AttributeError:\n            # Initialization, forget about it\n            pass\n\n    def on_forward_propagation(self):\n        if self.propagating:\n            # acts as a pause button\n            self.propagating = False\n        else:\n            self.propagate_fn = self.on_next_frame\n            self.backward_run_button.setEnabled(False)\n            self.forward_run_button.setText('Pause Propagation')\n            self.on_propagation()\n\n    def on_backward_propagation(self):\n        if self.propagating:\n            # acts as a pause button\n            self.propagating = False\n        else:\n            self.propagate_fn = self.on_prev_frame\n            self.forward_run_button.setEnabled(False)\n            self.backward_run_button.setText('Pause Propagation')\n            self.on_propagation()\n\n    def on_pause(self):\n        self.propagating = False\n        self.forward_run_button.setEnabled(True)\n        self.backward_run_button.setEnabled(True)\n        self.clear_mem_button.setEnabled(True)\n        self.forward_run_button.setText('Forward Propagate')\n        self.backward_run_button.setText('Backward Propagate')\n        self.console_push_text('Propagation stopped.')\n\n    def on_propagation(self):\n        # start to propagate\n        self.load_current_torch_image_mask()\n        self.show_current_frame(fast=True)\n\n        self.console_push_text('Propagation started.')\n        self.current_prob = self.processor.step(self.current_image_torch, self.current_prob[1:])\n        self.current_mask = torch_prob_to_numpy_mask(self.current_prob)\n        # clear\n        self.interacted_prob = None\n        self.reset_this_interaction()\n\n        self.propagating = True\n        self.clear_mem_button.setEnabled(False)\n        # propagate till the end\n        while self.propagating:\n            self.propagate_fn()\n\n            self.load_current_image_mask(no_mask=True)\n            self.load_current_torch_image_mask(no_mask=True)\n\n            self.current_prob = self.processor.step(self.current_image_torch)\n            self.current_mask = torch_prob_to_numpy_mask(self.current_prob)\n\n            self.save_current_mask()\n            self.show_current_frame(fast=True)\n\n            self.update_memory_size()\n            QApplication.processEvents()\n\n            if self.cursur == 0 or self.cursur == self.num_frames-1:\n                break\n\n        self.propagating = False\n        self.curr_frame_dirty = False\n        self.on_pause()\n        self.tl_slide()\n        QApplication.processEvents()\n\n    def pause_propagation(self):\n        self.propagating = False\n\n    def on_commit(self):\n        self.complete_interaction()\n        self.update_interacted_mask()\n\n    def on_prev_frame(self):\n        # self.tl_slide will trigger on setValue\n        self.cursur = max(0, self.cursur-1)\n        self.tl_slider.setValue(self.cursur)\n\n    def on_next_frame(self):\n        # self.tl_slide will trigger on setValue\n        self.cursur = min(self.cursur+1, self.num_frames-1)\n        self.tl_slider.setValue(self.cursur)\n\n    def on_play_video_timer(self):\n        self.cursur += 1\n        if self.cursur > self.num_frames-1:\n            self.cursur = 0\n        self.tl_slider.setValue(self.cursur)\n\n    def on_play_video(self):\n        if self.timer.isActive():\n            self.timer.stop()\n            self.play_button.setText('Play Video')\n        else:\n            self.timer.start(1000 // 30)\n            self.play_button.setText('Stop Video')\n\n    def on_export_visualization(self):\n        # NOTE: Save visualization at the end of propagation\n        image_folder = f\"{self.config['workspace']}/visualization/\"\n        save_folder = self.config['workspace']\n        if os.path.exists(image_folder):\n            # Sorted so frames will be in order\n            self.console_push_text(f'Exporting visualization to {self.config[\"workspace\"]}/visualization.mp4')\n            images = [img for img in sorted(os.listdir(image_folder)) if img.endswith(\".jpg\")]\n            frame = cv2.imread(os.path.join(image_folder, images[0]))\n            height, width, layers = frame.shape\n            # 10 is the FPS -- change if needed\n            video = cv2.VideoWriter(f\"{save_folder}/visualization.mp4\", cv2.VideoWriter_fourcc(*'mp4v'), 10, (width,height))\n            for image in images:\n                video.write(cv2.imread(os.path.join(image_folder, image)))\n            video.release()\n            self.console_push_text(f'Visualization exported to {self.config[\"workspace\"]}/visualization.mp4')\n        else:\n            self.console_push_text(f'No visualization images found in {image_folder}')\n\n    def on_object_dial_change(self):\n        object_id = self.object_dial.value()\n        self.hit_number_key(object_id)\n\n    def on_reset_mask(self):\n        self.current_mask.fill(0)\n        if self.current_prob is not None:\n            self.current_prob.fill_(0)\n        self.curr_frame_dirty = True\n        self.save_current_mask()\n        self.reset_this_interaction()\n        self.show_current_frame()\n\n    def on_zoom_plus(self):\n        self.zoom_pixels -= 25\n        self.zoom_pixels = max(50, self.zoom_pixels)\n        self.update_minimap()\n\n    def on_zoom_minus(self):\n        self.zoom_pixels += 25\n        self.zoom_pixels = min(self.zoom_pixels, 300)\n        self.update_minimap()\n\n    def set_navi_enable(self, boolean):\n        self.zoom_p_button.setEnabled(boolean)\n        self.zoom_m_button.setEnabled(boolean)\n        self.run_button.setEnabled(boolean)\n        self.tl_slider.setEnabled(boolean)\n        self.play_button.setEnabled(boolean)\n        self.export_button.setEnabled(boolean)\n        self.lcd.setEnabled(boolean)\n\n    def hit_number_key(self, number):\n        if number == self.current_object:\n            return\n        self.current_object = number\n        self.object_dial.setValue(number)\n        if self.fbrs_controller is not None:\n            self.fbrs_controller.unanchor()\n        self.console_push_text(f'Current object changed to {number}.')\n        self.clear_brush()\n        self.vis_brush(self.last_ex, self.last_ey)\n        self.update_interact_vis()\n        self.show_current_frame()\n\n    def clear_brush(self):\n        self.brush_vis_map.fill(0)\n        self.brush_vis_alpha.fill(0)\n\n    def vis_brush(self, ex, ey):\n        self.brush_vis_map = cv2.circle(self.brush_vis_map, \n                (int(round(ex)), int(round(ey))), self.brush_size//2+1, color_map[self.current_object], thickness=-1)\n        self.brush_vis_alpha = cv2.circle(self.brush_vis_alpha, \n                (int(round(ex)), int(round(ey))), self.brush_size//2+1, 0.5, thickness=-1)\n\n    def on_mouse_press(self, event):\n        if self.is_pos_out_of_bound(event.position().x(), event.position().y()):\n            return\n\n        # mid-click\n        if (event.button() == Qt.MouseButton.MiddleButton):\n            ex, ey = self.get_scaled_pos(event.position().x(), event.position().y())\n            target_object = self.current_mask[int(ey),int(ex)]\n            if target_object in self.vis_target_objects:\n                self.vis_target_objects.remove(target_object)\n            else:\n                self.vis_target_objects.append(target_object)\n            self.console_push_text(f'Target objects for visualization changed to {self.vis_target_objects}')\n            self.show_current_frame()\n            return\n\n        self.right_click = (event.button() == Qt.MouseButton.RightButton)\n        self.pressed = True\n\n        h, w = self.height, self.width\n\n        self.load_current_torch_image_mask()\n        image = self.current_image_torch\n\n        last_interaction = self.interaction\n        new_interaction = None\n        if self.curr_interaction == 'Scribble':\n            if last_interaction is None or type(last_interaction) != ScribbleInteraction:\n                self.complete_interaction()\n                new_interaction = ScribbleInteraction(image, torch.from_numpy(self.current_mask).float().to(self.device), \n                        (h, w), self.s2m_controller, self.num_objects)\n        elif self.curr_interaction == 'Free':\n            if last_interaction is None or type(last_interaction) != FreeInteraction:\n                self.complete_interaction()\n                new_interaction = FreeInteraction(image, self.current_mask, (h, w), \n                        self.num_objects)\n                new_interaction.set_size(self.brush_size)\n        elif self.curr_interaction == 'Click':\n            if (last_interaction is None or type(last_interaction) != ClickInteraction \n                    or last_interaction.tar_obj != self.current_object):\n                self.complete_interaction()\n                self.fbrs_controller.unanchor()\n                new_interaction = ClickInteraction(image, self.current_prob, (h, w), \n                            self.fbrs_controller, self.current_object)\n\n        if new_interaction is not None:\n            self.interaction = new_interaction\n\n        # Just motion it as the first step\n        self.on_mouse_motion(event)\n\n    def on_mouse_motion(self, event):\n        ex, ey = self.get_scaled_pos(event.position().x(), event.position().y())\n        self.last_ex, self.last_ey = ex, ey\n        self.clear_brush()\n        # Visualize\n        self.vis_brush(ex, ey)\n        if self.pressed:\n            if self.curr_interaction == 'Scribble' or self.curr_interaction == 'Free':\n                obj = 0 if self.right_click else self.current_object\n                self.vis_map, self.vis_alpha = self.interaction.push_point(\n                    ex, ey, obj, (self.vis_map, self.vis_alpha)\n                )\n        self.update_interact_vis()\n        self.update_minimap()\n\n    def update_interacted_mask(self):\n        self.current_prob = self.interacted_prob\n        self.current_mask = torch_prob_to_numpy_mask(self.interacted_prob)\n        self.show_current_frame()\n        self.save_current_mask()\n        self.curr_frame_dirty = False\n\n    def complete_interaction(self):\n        if self.interaction is not None:\n            self.clear_visualization()\n            self.interaction = None\n\n    def on_mouse_release(self, event):\n        if not self.pressed:\n            # this can happen when the initial press is out-of-bound\n            return\n\n        ex, ey = self.get_scaled_pos(event.position().x(), event.position().y())\n\n        self.console_push_text('%s interaction at frame %d.' % (self.curr_interaction, self.cursur))\n        interaction = self.interaction\n\n        if self.curr_interaction == 'Scribble' or self.curr_interaction == 'Free':\n            self.on_mouse_motion(event)\n            interaction.end_path()\n            if self.curr_interaction == 'Free':\n                self.clear_visualization()\n        elif self.curr_interaction == 'Click':\n            ex, ey = self.get_scaled_pos(event.position().x(), event.position().y())\n            self.vis_map, self.vis_alpha = interaction.push_point(ex, ey,\n                self.right_click, (self.vis_map, self.vis_alpha))\n\n        self.interacted_prob = interaction.predict().to(self.device)\n        self.update_interacted_mask()\n        self.update_gpu_usage()\n\n        self.pressed = self.right_click = False\n\n    def wheelEvent(self, event):\n        ex, ey = self.get_scaled_pos(event.position().x(), event.position().y())\n        if self.curr_interaction == 'Free':\n            self.brush_slider.setValue(self.brush_slider.value() + event.angleDelta().y()//30)\n        self.clear_brush()\n        self.vis_brush(ex, ey)\n        self.update_interact_vis()\n        self.update_minimap()\n\n    def update_gpu_usage(self):\n        if self.device.type == 'cuda':\n            info = torch.cuda.mem_get_info()\n        elif self.device.type == 'mps':\n            info = (0, mps.current_allocated_memory()) # NOTE: torch.mps does not support accessing free and total memory\n        else:\n            info = (0, 0)\n        global_free, global_total = info\n        global_free /= (2**30)\n        global_total /= (2**30)\n        global_used = global_total - global_free\n\n        self.gpu_mem_gauge.setFormat(f'{global_used:.01f} GB / {global_total:.01f} GB')\n        self.gpu_mem_gauge.setValue(round(global_used/global_total*100))\n\n        used_by_torch = torch.cuda.max_memory_allocated() / (2**20)\n        self.torch_mem_gauge.setFormat(f'{used_by_torch:.0f} MB / {global_total:.01f} GB')\n        self.torch_mem_gauge.setValue(round(used_by_torch/global_total*100/1024))\n\n    def on_gpu_timer(self):\n        self.update_gpu_usage()\n\n    def update_memory_size(self):\n        try:\n            max_work_elements = self.processor.memory.max_work_elements\n            max_long_elements = self.processor.memory.max_long_elements\n\n            curr_work_elements = self.processor.memory.work_mem.size\n            curr_long_elements = self.processor.memory.long_mem.size\n\n            self.work_mem_gauge.setFormat(f'{curr_work_elements} / {max_work_elements}')\n            self.work_mem_gauge.setValue(round(curr_work_elements/max_work_elements*100))\n\n            self.long_mem_gauge.setFormat(f'{curr_long_elements} / {max_long_elements}')\n            self.long_mem_gauge.setValue(round(curr_long_elements/max_long_elements*100))\n\n        except AttributeError:\n            self.work_mem_gauge.setFormat('Unknown')\n            self.long_mem_gauge.setFormat('Unknown')\n            self.work_mem_gauge.setValue(0)\n            self.long_mem_gauge.setValue(0)\n\n    def on_work_min_change(self):\n        if self.initialized:\n            self.work_mem_min.setValue(min(self.work_mem_min.value(), self.work_mem_max.value()-1))\n            self.update_config()\n\n    def on_work_max_change(self):\n        if self.initialized:\n            self.work_mem_max.setValue(max(self.work_mem_max.value(), self.work_mem_min.value()+1))\n            self.update_config()\n\n    def update_config(self):\n        if self.initialized:\n            self.config['min_mid_term_frames'] = self.work_mem_min.value()\n            self.config['max_mid_term_frames'] = self.work_mem_max.value()\n            self.config['max_long_term_elements'] = self.long_mem_max.value()\n            self.config['num_prototypes'] = self.num_prototypes_box.value()\n            self.config['mem_every'] = self.mem_every_box.value()\n\n            self.processor.update_config(self.config)\n\n    def on_clear_memory(self):\n        self.processor.clear_memory()\n        if self.device.type == 'cuda':\n            torch.cuda.empty_cache()\n        elif self.device.type == 'mps':\n            mps.empty_cache()\n        self.update_gpu_usage()\n        self.update_memory_size()\n\n    def _open_file(self, prompt):\n        options = QFileDialog.Options()\n        file_name, _ = QFileDialog.getOpenFileName(self, prompt, \"\", \"Image files (*)\", options=options)\n        return file_name\n\n    def on_import_mask(self):\n        file_name = self._open_file('Mask')\n        if len(file_name) == 0:\n            return\n\n        mask = self.res_man.read_external_image(file_name, size=(self.height, self.width))\n\n        shape_condition = (\n            (len(mask.shape) == 2) and\n            (mask.shape[-1] == self.width) and \n            (mask.shape[-2] == self.height)\n        )\n\n        object_condition = (\n            mask.max() <= self.num_objects\n        )\n\n        if not shape_condition:\n            self.console_push_text(f'Expected ({self.height}, {self.width}). Got {mask.shape} instead.')\n        elif not object_condition:\n            self.console_push_text(f'Expected {self.num_objects} objects. Got {mask.max()} objects instead.')\n        else:\n            self.console_push_text(f'Mask file {file_name} loaded.')\n            self.current_image_torch = self.current_prob = None\n            self.current_mask = mask\n            self.show_current_frame()\n            self.save_current_mask()\n\n    def on_import_layer(self):\n        file_name = self._open_file('Layer')\n        if len(file_name) == 0:\n            return\n\n        self._try_load_layer(file_name)\n\n    def _try_load_layer(self, file_name):\n        try:\n            layer = self.res_man.read_external_image(file_name, size=(self.height, self.width))\n\n            if layer.shape[-1] == 3:\n                layer = np.concatenate([layer, np.ones_like(layer[:,:,0:1])*255], axis=-1)\n\n            condition = (\n                (len(layer.shape) == 3) and\n                (layer.shape[-1] == 4) and \n                (layer.shape[-2] == self.width) and \n                (layer.shape[-3] == self.height)\n            )\n\n            if not condition:\n                self.console_push_text(f'Expected ({self.height}, {self.width}, 4). Got {layer.shape}.')\n            else:\n                self.console_push_text(f'Layer file {file_name} loaded.')\n                self.overlay_layer = layer\n                self.overlay_layer_torch = torch.from_numpy(layer).float().to(self.device)/255\n                self.show_current_frame()\n        except FileNotFoundError:\n            self.console_push_text(f'{file_name} not found.')\n\n    def on_save_visualization_toggle(self):\n        self.save_visualization = self.save_visualization_checkbox.isChecked()\n"
  },
  {
    "path": "XMem/inference/interact/gui_utils.py",
    "content": "from PySide6.QtCore import Qt\nfrom PySide6.QtWidgets import (QBoxLayout, QHBoxLayout, QLabel, QSpinBox, QVBoxLayout, QProgressBar)\n\n\ndef create_parameter_box(min_val, max_val, text, step=1, callback=None):\n    layout = QHBoxLayout()\n\n    dial = QSpinBox()\n    dial.setMaximumHeight(28)\n    dial.setMaximumWidth(150)\n    dial.setMinimum(min_val)\n    dial.setMaximum(max_val)\n    dial.setAlignment(Qt.AlignmentFlag.AlignRight)\n    dial.setSingleStep(step)\n    dial.valueChanged.connect(callback)\n\n    label = QLabel(text)\n    label.setAlignment(Qt.AlignmentFlag.AlignRight)\n\n    layout.addWidget(label)\n    layout.addWidget(dial)\n\n    return dial, layout\n\n\ndef create_gauge(text):\n    layout = QHBoxLayout()\n\n    gauge = QProgressBar()\n    gauge.setMaximumHeight(28)\n    gauge.setMaximumWidth(200)\n    gauge.setAlignment(Qt.AlignmentFlag.AlignCenter)\n\n    label = QLabel(text)\n    label.setAlignment(Qt.AlignmentFlag.AlignRight)\n\n    layout.addWidget(label)\n    layout.addWidget(gauge)\n\n    return gauge, layout\n\n\ndef apply_to_all_children_widget(layout, func):\n    # deliberately non-recursive\n    for i in range(layout.count()):\n        func(layout.itemAt(i).widget())"
  },
  {
    "path": "XMem/inference/interact/interaction.py",
    "content": "\"\"\"\nContains all the types of interaction related to the GUI\nNot related to automatic evaluation in the DAVIS dataset\n\nYou can inherit the Interaction class to create new interaction types\nundo is (sometimes partially) supported\n\"\"\"\n\n\nimport torch\nimport torch.nn.functional as F\nimport numpy as np\nimport cv2\nimport time\nfrom .interactive_utils import color_map, index_numpy_to_one_hot_torch\n\n\ndef aggregate_sbg(prob, keep_bg=False, hard=False):\n    device = prob.device\n    k, h, w = prob.shape\n    ex_prob = torch.zeros((k+1, h, w), device=device)\n    ex_prob[0] = 0.5\n    ex_prob[1:] = prob\n    ex_prob = torch.clamp(ex_prob, 1e-7, 1-1e-7)\n    logits = torch.log((ex_prob /(1-ex_prob)))\n\n    if hard:\n        # Very low temperature o((⊙﹏⊙))o 🥶\n        logits *= 1000\n\n    if keep_bg:\n        return F.softmax(logits, dim=0)\n    else:\n        return F.softmax(logits, dim=0)[1:]\n\ndef aggregate_wbg(prob, keep_bg=False, hard=False):\n    k, h, w = prob.shape\n    new_prob = torch.cat([\n        torch.prod(1-prob, dim=0, keepdim=True),\n        prob\n    ], 0).clamp(1e-7, 1-1e-7)\n    logits = torch.log((new_prob /(1-new_prob)))\n\n    if hard:\n        # Very low temperature o((⊙﹏⊙))o 🥶\n        logits *= 1000\n\n    if keep_bg:\n        return F.softmax(logits, dim=0)\n    else:\n        return F.softmax(logits, dim=0)[1:]\n\nclass Interaction:\n    def __init__(self, image, prev_mask, true_size, controller):\n        self.image = image \n        self.prev_mask = prev_mask\n        self.controller = controller\n        self.start_time = time.time()\n\n        self.h, self.w = true_size\n\n        self.out_prob = None\n        self.out_mask = None\n\n    def predict(self):\n        pass\n\n\nclass FreeInteraction(Interaction):\n    def __init__(self, image, prev_mask, true_size, num_objects):\n        \"\"\"\n        prev_mask should be index format numpy array\n        \"\"\"\n        super().__init__(image, prev_mask, true_size, None)\n\n        self.K = num_objects\n\n        self.drawn_map = self.prev_mask.copy()\n        self.curr_path = [[] for _ in range(self.K + 1)]\n\n        self.size = None\n\n    def set_size(self, size):\n        self.size = size\n\n    \"\"\"\n    k - object id\n    vis - a tuple (visualization map, pass through alpha). None if not needed.\n    \"\"\"\n    def push_point(self, x, y, k, vis=None):\n        if vis is not None:\n            vis_map, vis_alpha = vis\n        selected = self.curr_path[k]\n        selected.append((x, y))\n        if len(selected) >= 2:\n            cv2.line(self.drawn_map, \n                (int(round(selected[-2][0])), int(round(selected[-2][1]))),\n                (int(round(selected[-1][0])), int(round(selected[-1][1]))),\n                k, thickness=self.size)\n\n            # Plot visualization\n            if vis is not None:\n                # Visualization for drawing\n                if k == 0:\n                    vis_map = cv2.line(vis_map, \n                        (int(round(selected[-2][0])), int(round(selected[-2][1]))),\n                        (int(round(selected[-1][0])), int(round(selected[-1][1]))),\n                        color_map[k], thickness=self.size)\n                else:\n                    vis_map = cv2.line(vis_map, \n                        (int(round(selected[-2][0])), int(round(selected[-2][1]))),\n                        (int(round(selected[-1][0])), int(round(selected[-1][1]))),\n                        color_map[k], thickness=self.size)\n                # Visualization on/off boolean filter\n                vis_alpha = cv2.line(vis_alpha, \n                    (int(round(selected[-2][0])), int(round(selected[-2][1]))),\n                    (int(round(selected[-1][0])), int(round(selected[-1][1]))),\n                    0.75, thickness=self.size)\n\n        if vis is not None:\n            return vis_map, vis_alpha\n\n    def end_path(self):\n        # Complete the drawing\n        self.curr_path = [[] for _ in range(self.K + 1)]\n\n    def predict(self):\n        self.out_prob = index_numpy_to_one_hot_torch(self.drawn_map, self.K+1)\n        # self.out_prob = torch.from_numpy(self.drawn_map).float().cuda()\n        # self.out_prob, _ = pad_divide_by(self.out_prob, 16, self.out_prob.shape[-2:])\n        # self.out_prob = aggregate_sbg(self.out_prob, keep_bg=True)\n        return self.out_prob\n\nclass ScribbleInteraction(Interaction):\n    def __init__(self, image, prev_mask, true_size, controller, num_objects):\n        \"\"\"\n        prev_mask should be in an indexed form\n        \"\"\"\n        super().__init__(image, prev_mask, true_size, controller)\n\n        self.K = num_objects\n\n        self.drawn_map = np.empty((self.h, self.w), dtype=np.uint8)\n        self.drawn_map.fill(255)\n        # background + k\n        self.curr_path = [[] for _ in range(self.K + 1)]\n        self.size = 3\n\n    \"\"\"\n    k - object id\n    vis - a tuple (visualization map, pass through alpha). None if not needed.\n    \"\"\"\n    def push_point(self, x, y, k, vis=None):\n        if vis is not None:\n            vis_map, vis_alpha = vis\n        selected = self.curr_path[k]\n        selected.append((x, y))\n        if len(selected) >= 2:\n            self.drawn_map = cv2.line(self.drawn_map, \n                (int(round(selected[-2][0])), int(round(selected[-2][1]))),\n                (int(round(selected[-1][0])), int(round(selected[-1][1]))),\n                k, thickness=self.size)\n\n            # Plot visualization\n            if vis is not None:\n                # Visualization for drawing\n                if k == 0:\n                    vis_map = cv2.line(vis_map, \n                        (int(round(selected[-2][0])), int(round(selected[-2][1]))),\n                        (int(round(selected[-1][0])), int(round(selected[-1][1]))),\n                        color_map[k], thickness=self.size)\n                else:\n                    vis_map = cv2.line(vis_map, \n                            (int(round(selected[-2][0])), int(round(selected[-2][1]))),\n                            (int(round(selected[-1][0])), int(round(selected[-1][1]))),\n                            color_map[k], thickness=self.size)\n                # Visualization on/off boolean filter\n                vis_alpha = cv2.line(vis_alpha, \n                        (int(round(selected[-2][0])), int(round(selected[-2][1]))),\n                        (int(round(selected[-1][0])), int(round(selected[-1][1]))),\n                        0.75, thickness=self.size)\n\n        # Optional vis return\n        if vis is not None:\n            return vis_map, vis_alpha\n\n    def end_path(self):\n        # Complete the drawing\n        self.curr_path = [[] for _ in range(self.K + 1)]\n\n    def predict(self):\n        self.out_prob = self.controller.interact(self.image.unsqueeze(0), self.prev_mask, self.drawn_map)\n        self.out_prob = aggregate_wbg(self.out_prob, keep_bg=True, hard=True)\n        return self.out_prob\n\n\nclass ClickInteraction(Interaction):\n    def __init__(self, image, prev_mask, true_size, controller, tar_obj):\n        \"\"\"\n        prev_mask in a prob. form\n        \"\"\"\n        super().__init__(image, prev_mask, true_size, controller)\n        self.tar_obj = tar_obj\n\n        # negative/positive for each object\n        self.pos_clicks = []\n        self.neg_clicks = []\n\n        self.out_prob = self.prev_mask.clone()\n\n    \"\"\"\n    neg - Negative interaction or not\n    vis - a tuple (visualization map, pass through alpha). None if not needed.\n    \"\"\"\n    def push_point(self, x, y, neg, vis=None):\n        # Clicks\n        if neg:\n            self.neg_clicks.append((x, y))\n        else:\n            self.pos_clicks.append((x, y))\n\n        # Do the prediction\n        self.obj_mask = self.controller.interact(self.image.unsqueeze(0), x, y, not neg)\n\n        # Plot visualization\n        if vis is not None:\n            vis_map, vis_alpha = vis\n            # Visualization for clicks\n            if neg:\n                vis_map = cv2.circle(vis_map, \n                        (int(round(x)), int(round(y))),\n                        2, color_map[0], thickness=-1)\n            else:\n                vis_map = cv2.circle(vis_map, \n                        (int(round(x)), int(round(y))),\n                        2, color_map[self.tar_obj], thickness=-1)\n\n            vis_alpha = cv2.circle(vis_alpha, \n                        (int(round(x)), int(round(y))),\n                        2, 1, thickness=-1)\n\n            # Optional vis return\n            return vis_map, vis_alpha\n\n    def predict(self):\n        self.out_prob = self.prev_mask.clone()\n        # a small hack to allow the interacting object to overwrite existing masks\n        # without remembering all the object probabilities\n        self.out_prob = torch.clamp(self.out_prob, max=0.9)\n        self.out_prob[self.tar_obj] = self.obj_mask\n        self.out_prob = aggregate_wbg(self.out_prob[1:], keep_bg=True, hard=True)\n        return self.out_prob\n"
  },
  {
    "path": "XMem/inference/interact/interactive_utils.py",
    "content": "# Modifed from https://github.com/seoungwugoh/ivs-demo\n\nimport numpy as np\n\nimport torch\nimport torch.nn.functional as F\nfrom util.palette import davis_palette\nfrom dataset.range_transform import im_normalization\n\ndef image_to_torch(frame: np.ndarray, device='cuda'):\n    # frame: H*W*3 numpy array\n    frame = frame.transpose(2, 0, 1)\n    frame = torch.from_numpy(frame).float().to(device)/255\n    frame_norm = im_normalization(frame)\n    return frame_norm, frame\n\ndef torch_prob_to_numpy_mask(prob):\n    mask = torch.max(prob, dim=0).indices\n    mask = mask.cpu().numpy().astype(np.uint8)\n    return mask\n\ndef index_numpy_to_one_hot_torch(mask, num_classes):\n    mask = torch.from_numpy(mask).long()\n    return F.one_hot(mask, num_classes=num_classes).permute(2, 0, 1).float()\n\n\"\"\"\nSome constants fro visualization\n\"\"\"\ntry:\n    if torch.cuda.is_available():\n        device = torch.device(\"cuda\")\n    elif torch.backends.mps.is_available():\n        device = torch.device(\"mps\")\n    else:\n        device = torch.device(\"cpu\")\nexcept:\n    device = torch.device(\"cpu\")\n\ncolor_map_np = np.frombuffer(davis_palette, dtype=np.uint8).reshape(-1, 3).copy()\n# scales for better visualization\ncolor_map_np = (color_map_np.astype(np.float32)*1.5).clip(0, 255).astype(np.uint8)\ncolor_map = color_map_np.tolist()\ncolor_map_torch = torch.from_numpy(color_map_np).to(device) / 255\n\ngrayscale_weights = np.array([[0.3,0.59,0.11]]).astype(np.float32)\ngrayscale_weights_torch = torch.from_numpy(grayscale_weights).to(device).unsqueeze(0)\n\ndef get_visualization(mode, image, mask, layer, target_object):\n    if mode == 'fade':\n        return overlay_davis(image, mask, fade=True)\n    elif mode == 'davis':\n        return overlay_davis(image, mask)\n    elif mode == 'light':\n        return overlay_davis(image, mask, 0.9)\n    elif mode == 'popup':\n        return overlay_popup(image, mask, target_object)\n    elif mode == 'layered':\n        if layer is None:\n            print('Layer file not given. Defaulting to DAVIS.')\n            return overlay_davis(image, mask)\n        else:\n            return overlay_layer(image, mask, layer, target_object)\n    else:\n        raise NotImplementedError\n\ndef get_visualization_torch(mode, image, prob, layer, target_object):\n    if mode == 'fade':\n        return overlay_davis_torch(image, prob, fade=True)\n    elif mode == 'davis':\n        return overlay_davis_torch(image, prob)\n    elif mode == 'light':\n        return overlay_davis_torch(image, prob, 0.9)\n    elif mode == 'popup':\n        return overlay_popup_torch(image, prob, target_object)\n    elif mode == 'layered':\n        if layer is None:\n            print('Layer file not given. Defaulting to DAVIS.')\n            return overlay_davis_torch(image, prob)\n        else:\n            return overlay_layer_torch(image, prob, layer, target_object)\n    else:\n        raise NotImplementedError\n\ndef overlay_davis(image, mask, alpha=0.5, fade=False):\n    \"\"\" Overlay segmentation on top of RGB image. from davis official\"\"\"\n    im_overlay = image.copy()\n\n    colored_mask = color_map_np[mask]\n    foreground = image*alpha + (1-alpha)*colored_mask\n    binary_mask = (mask > 0)\n    # Compose image\n    im_overlay[binary_mask] = foreground[binary_mask]\n    if fade:\n        im_overlay[~binary_mask] = im_overlay[~binary_mask] * 0.6\n    return im_overlay.astype(image.dtype)\n\ndef overlay_popup(image, mask, target_object):\n    # Keep foreground colored. Convert background to grayscale.\n    im_overlay = image.copy()\n\n    binary_mask = ~(np.isin(mask, target_object))\n    colored_region = (im_overlay[binary_mask]*grayscale_weights).sum(-1, keepdims=-1)\n    im_overlay[binary_mask] = colored_region\n    return im_overlay.astype(image.dtype)\n\ndef overlay_layer(image, mask, layer, target_object):\n    # insert a layer between foreground and background\n    # The CPU version is less accurate because we are using the hard mask\n    # The GPU version has softer edges as it uses soft probabilities\n    obj_mask = (np.isin(mask, target_object)).astype(np.float32)[:, :, np.newaxis]\n    layer_alpha = layer[:, :, 3].astype(np.float32)[:, :, np.newaxis] / 255\n    layer_rgb = layer[:, :, :3]\n    background_alpha = np.maximum(obj_mask, layer_alpha)\n    im_overlay = (image * (1 - background_alpha) + layer_rgb * (1 - obj_mask) * layer_alpha +\n                  image * obj_mask).clip(0, 255)\n    return im_overlay.astype(image.dtype)\n\ndef overlay_davis_torch(image, mask, alpha=0.5, fade=False):\n    \"\"\" Overlay segmentation on top of RGB image. from davis official\"\"\"\n    # Changes the image in-place to avoid copying\n    image = image.permute(1, 2, 0)\n    im_overlay = image\n    mask = torch.max(mask, dim=0).indices\n\n    colored_mask = color_map_torch[mask]\n    foreground = image*alpha + (1-alpha)*colored_mask\n    binary_mask = (mask > 0)\n    # Compose image\n    im_overlay[binary_mask] = foreground[binary_mask]\n    if fade:\n        im_overlay[~binary_mask] = im_overlay[~binary_mask] * 0.6\n\n    im_overlay = (im_overlay*255).cpu().numpy()\n    im_overlay = im_overlay.astype(np.uint8)\n\n    return im_overlay\n\ndef overlay_popup_torch(image, mask, target_object):\n    # Keep foreground colored. Convert background to grayscale.\n    image = image.permute(1, 2, 0)\n    \n    if len(target_object) == 0:\n        obj_mask = torch.zeros_like(mask[0]).unsqueeze(2)\n    else:\n        # I should not need to convert this to numpy.\n        # uUsing list works most of the time but consistently fails\n        # if I include first object -> exclude it -> include it again.\n        # I check everywhere and it makes absolutely no sense.\n        # I am blaming this on PyTorch and calling it a day\n        obj_mask = mask[np.array(target_object,dtype=np.int32)].sum(0).unsqueeze(2)\n    gray_image = (image*grayscale_weights_torch).sum(-1, keepdim=True)\n    im_overlay = obj_mask*image + (1-obj_mask)*gray_image\n\n    im_overlay = (im_overlay*255).cpu().numpy()\n    im_overlay = im_overlay.astype(np.uint8)\n\n    return im_overlay\n\ndef overlay_layer_torch(image, prob, layer, target_object):\n    # insert a layer between foreground and background\n    # The CPU version is less accurate because we are using the hard mask\n    # The GPU version has softer edges as it uses soft probabilities\n    image = image.permute(1, 2, 0)\n\n    if len(target_object) == 0:\n        obj_mask = torch.zeros_like(prob[0]).unsqueeze(2)\n    else:\n        # TODO: figure out why we need to convert this to numpy array\n        obj_mask = prob[np.array(target_object, dtype=np.int32)].sum(0).unsqueeze(2)\n    layer_alpha = layer[:, :, 3].unsqueeze(2)\n    layer_rgb = layer[:, :, :3]\n    background_alpha = torch.maximum(obj_mask, layer_alpha)\n    im_overlay = (image * (1 - background_alpha) + layer_rgb * (1 - obj_mask) * layer_alpha +\n                  image * obj_mask).clip(0, 1)\n\n    im_overlay = (im_overlay * 255).cpu().numpy()\n    im_overlay = im_overlay.astype(np.uint8)\n\n    return im_overlay\n\n"
  },
  {
    "path": "XMem/inference/interact/resource_manager.py",
    "content": "import os\nfrom os import path\nimport shutil\nimport collections\n\nimport cv2\nfrom PIL import Image\nif not hasattr(Image, 'Resampling'):  # Pillow<9.0\n    Image.Resampling = Image\nimport numpy as np\n\nfrom util.palette import davis_palette\nimport progressbar\n \n\n# https://bugs.python.org/issue28178\n# ah python ah why\nclass LRU:\n    def __init__(self, func, maxsize=128):\n        self.cache = collections.OrderedDict()\n        self.func = func\n        self.maxsize = maxsize\n \n    def __call__(self, *args):\n        cache = self.cache\n        if args in cache:\n            cache.move_to_end(args)\n            return cache[args]\n        result = self.func(*args)\n        cache[args] = result\n        if len(cache) > self.maxsize:\n            cache.popitem(last=False)\n        return result\n\n    def invalidate(self, key):\n        self.cache.pop(key, None)\n\n\nclass ResourceManager:\n    def __init__(self, config):\n        # determine inputs\n        images = config['images']\n        video = config['video']\n        self.workspace = config['workspace']\n        self.size = config['size']\n        self.palette = davis_palette\n\n        # create temporary workspace if not specified\n        if self.workspace is None:\n            if images is not None:\n                basename = path.basename(images)\n            elif video is not None:\n                basename = path.basename(video)[:-4]\n            else:\n                raise NotImplementedError(\n                    'Either images, video, or workspace has to be specified')\n\n            self.workspace = path.join('./workspace', basename)\n\n        print(f'Workspace is in: {self.workspace}')\n\n        # determine the location of input images\n        need_decoding = False\n        need_resizing = False\n        if path.exists(path.join(self.workspace, 'images')):\n            pass\n        elif images is not None:\n            need_resizing = True\n        elif video is not None:\n            # will decode video into frames later\n            need_decoding = True\n\n        # create workspace subdirectories\n        self.image_dir = path.join(self.workspace, 'images')\n        self.mask_dir = path.join(self.workspace, 'masks')\n        os.makedirs(self.image_dir, exist_ok=True)\n        os.makedirs(self.mask_dir, exist_ok=True)\n\n        # convert read functions to be buffered\n        self.get_image = LRU(self._get_image_unbuffered, maxsize=config['buffer_size'])\n        self.get_mask = LRU(self._get_mask_unbuffered, maxsize=config['buffer_size'])\n\n        # extract frames from video\n        if need_decoding:\n            self._extract_frames(video)\n\n        # copy/resize existing images to the workspace\n        if need_resizing:\n            self._copy_resize_frames(images)\n\n        # read all frame names\n        self.names = sorted(os.listdir(self.image_dir))\n        self.names = [f[:-4] for f in self.names] # remove extensions\n        self.length = len(self.names)\n\n        assert self.length > 0, f'No images found! Check {self.workspace}/images. Remove folder if necessary.'\n\n        print(f'{self.length} images found.')\n\n        self.height, self.width = self.get_image(0).shape[:2]\n        self.visualization_init = False\n\n    def _extract_frames(self, video):\n        cap = cv2.VideoCapture(video)\n        frame_index = 0\n        print(f'Extracting frames from {video} into {self.image_dir}...')\n        bar = progressbar.ProgressBar(max_value=progressbar.UnknownLength)\n        while(cap.isOpened()):\n            _, frame = cap.read()\n            if frame is None:\n                break\n            if self.size > 0:\n                h, w = frame.shape[:2]\n                new_w = (w*self.size//min(w, h))\n                new_h = (h*self.size//min(w, h))\n                if new_w != w or new_h != h:\n                    frame = cv2.resize(frame,dsize=(new_w,new_h),interpolation=cv2.INTER_AREA)\n            cv2.imwrite(path.join(self.image_dir, f'{frame_index:07d}.jpg'), frame)\n            frame_index += 1\n            bar.update(frame_index)\n        bar.finish()\n        print('Done!')\n\n    def _copy_resize_frames(self, images):\n        image_list = os.listdir(images)\n        print(f'Copying/resizing frames into {self.image_dir}...')\n        for image_name in progressbar.progressbar(image_list):\n            if self.size < 0:\n                # just copy\n                shutil.copy2(path.join(images, image_name), self.image_dir)\n            else:\n                frame = cv2.imread(path.join(images, image_name))\n                h, w = frame.shape[:2]\n                new_w = (w*self.size//min(w, h))\n                new_h = (h*self.size//min(w, h))\n                if new_w != w or new_h != h:\n                    frame = cv2.resize(frame,dsize=(new_w,new_h),interpolation=cv2.INTER_AREA)\n                cv2.imwrite(path.join(self.image_dir, image_name), frame)\n        print('Done!')\n\n    def save_mask(self, ti, mask):\n        # mask should be uint8 H*W without channels\n        assert 0 <= ti < self.length\n        assert isinstance(mask, np.ndarray)\n\n        mask = Image.fromarray(mask)\n        mask.putpalette(self.palette)\n        mask.save(path.join(self.mask_dir, self.names[ti]+'.png'))\n        self.invalidate(ti)\n\n    def save_visualization(self, ti, image):\n        # image should be uint8 3*H*W\n        assert 0 <= ti < self.length\n        assert isinstance(image, np.ndarray)\n        if not self.visualization_init:\n            self.visualization_dir = path.join(self.workspace, 'visualization')\n            os.makedirs(self.visualization_dir, exist_ok=True)\n            self.visualization_init = True\n\n        image = Image.fromarray(image)\n        image.save(path.join(self.visualization_dir, self.names[ti]+'.jpg'))\n\n    def _get_image_unbuffered(self, ti):\n        # returns H*W*3 uint8 array\n        assert 0 <= ti < self.length\n\n        image = Image.open(path.join(self.image_dir, self.names[ti]+'.jpg'))\n        image = np.array(image)\n        return image\n\n    def _get_mask_unbuffered(self, ti):\n        # returns H*W uint8 array\n        assert 0 <= ti < self.length\n\n        mask_path = path.join(self.mask_dir, self.names[ti]+'.png')\n        if path.exists(mask_path):\n            mask = Image.open(mask_path)\n            mask = np.array(mask)\n            return mask\n        else:\n            return None\n\n    def read_external_image(self, file_name, size=None):\n        image = Image.open(file_name)\n        is_mask = image.mode in ['L', 'P']\n        if size is not None:\n            # PIL uses (width, height)\n            image = image.resize((size[1], size[0]), \n                    resample=Image.Resampling.NEAREST if is_mask else Image.Resampling.BICUBIC)\n        image = np.array(image)\n        return image\n\n    def invalidate(self, ti):\n        # the image buffer is never invalidated\n        self.get_mask.invalidate((ti,))\n\n    def __len__(self):\n        return self.length\n\n    @property\n    def h(self):\n        return self.height\n\n    @property\n    def w(self):\n        return self.width\n"
  },
  {
    "path": "XMem/inference/interact/s2m/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/inference/interact/s2m/_deeplab.py",
    "content": "# Credit: https://github.com/VainF/DeepLabV3Plus-Pytorch\n\nimport torch\nfrom torch import nn\nfrom torch.nn import functional as F\n\nfrom .utils import _SimpleSegmentationModel\n\n\n__all__ = [\"DeepLabV3\"]\n\n\nclass DeepLabV3(_SimpleSegmentationModel):\n    \"\"\"\n    Implements DeepLabV3 model from\n    `\"Rethinking Atrous Convolution for Semantic Image Segmentation\"\n    <https://arxiv.org/abs/1706.05587>`_.\n\n    Arguments:\n        backbone (nn.Module): the network used to compute the features for the model.\n            The backbone should return an OrderedDict[Tensor], with the key being\n            \"out\" for the last feature map used, and \"aux\" if an auxiliary classifier\n            is used.\n        classifier (nn.Module): module that takes the \"out\" element returned from\n            the backbone and returns a dense prediction.\n        aux_classifier (nn.Module, optional): auxiliary classifier used during training\n    \"\"\"\n    pass\n\nclass DeepLabHeadV3Plus(nn.Module):\n    def __init__(self, in_channels, low_level_channels, num_classes, aspp_dilate=[12, 24, 36]):\n        super(DeepLabHeadV3Plus, self).__init__()\n        self.project = nn.Sequential( \n            nn.Conv2d(low_level_channels, 48, 1, bias=False),\n            nn.BatchNorm2d(48),\n            nn.ReLU(inplace=True),\n        )\n\n        self.aspp = ASPP(in_channels, aspp_dilate)\n\n        self.classifier = nn.Sequential(\n            nn.Conv2d(304, 256, 3, padding=1, bias=False),\n            nn.BatchNorm2d(256),\n            nn.ReLU(inplace=True),\n            nn.Conv2d(256, num_classes, 1)\n        )\n        self._init_weight()\n\n    def forward(self, feature):\n        low_level_feature = self.project( feature['low_level'] )\n        output_feature = self.aspp(feature['out'])\n        output_feature = F.interpolate(output_feature, size=low_level_feature.shape[2:], mode='bilinear', align_corners=False)\n        return self.classifier( torch.cat( [ low_level_feature, output_feature ], dim=1 ) )\n    \n    def _init_weight(self):\n        for m in self.modules():\n            if isinstance(m, nn.Conv2d):\n                nn.init.kaiming_normal_(m.weight)\n            elif isinstance(m, (nn.BatchNorm2d, nn.GroupNorm)):\n                nn.init.constant_(m.weight, 1)\n                nn.init.constant_(m.bias, 0)\n\nclass DeepLabHead(nn.Module):\n    def __init__(self, in_channels, num_classes, aspp_dilate=[12, 24, 36]):\n        super(DeepLabHead, self).__init__()\n\n        self.classifier = nn.Sequential(\n            ASPP(in_channels, aspp_dilate),\n            nn.Conv2d(256, 256, 3, padding=1, bias=False),\n            nn.BatchNorm2d(256),\n            nn.ReLU(inplace=True),\n            nn.Conv2d(256, num_classes, 1)\n        )\n        self._init_weight()\n\n    def forward(self, feature):\n        return self.classifier( feature['out'] )\n\n    def _init_weight(self):\n        for m in self.modules():\n            if isinstance(m, nn.Conv2d):\n                nn.init.kaiming_normal_(m.weight)\n            elif isinstance(m, (nn.BatchNorm2d, nn.GroupNorm)):\n                nn.init.constant_(m.weight, 1)\n                nn.init.constant_(m.bias, 0)\n\nclass AtrousSeparableConvolution(nn.Module):\n    \"\"\" Atrous Separable Convolution\n    \"\"\"\n    def __init__(self, in_channels, out_channels, kernel_size,\n                            stride=1, padding=0, dilation=1, bias=True):\n        super(AtrousSeparableConvolution, self).__init__()\n        self.body = nn.Sequential(\n            # Separable Conv\n            nn.Conv2d( in_channels, in_channels, kernel_size=kernel_size, stride=stride, padding=padding, dilation=dilation, bias=bias, groups=in_channels ),\n            # PointWise Conv\n            nn.Conv2d( in_channels, out_channels, kernel_size=1, stride=1, padding=0, bias=bias),\n        )\n        \n        self._init_weight()\n\n    def forward(self, x):\n        return self.body(x)\n\n    def _init_weight(self):\n        for m in self.modules():\n            if isinstance(m, nn.Conv2d):\n                nn.init.kaiming_normal_(m.weight)\n            elif isinstance(m, (nn.BatchNorm2d, nn.GroupNorm)):\n                nn.init.constant_(m.weight, 1)\n                nn.init.constant_(m.bias, 0)\n\nclass ASPPConv(nn.Sequential):\n    def __init__(self, in_channels, out_channels, dilation):\n        modules = [\n            nn.Conv2d(in_channels, out_channels, 3, padding=dilation, dilation=dilation, bias=False),\n            nn.BatchNorm2d(out_channels),\n            nn.ReLU(inplace=True)\n        ]\n        super(ASPPConv, self).__init__(*modules)\n\nclass ASPPPooling(nn.Sequential):\n    def __init__(self, in_channels, out_channels):\n        super(ASPPPooling, self).__init__(\n            nn.AdaptiveAvgPool2d(1),\n            nn.Conv2d(in_channels, out_channels, 1, bias=False),\n            nn.BatchNorm2d(out_channels),\n            nn.ReLU(inplace=True))\n\n    def forward(self, x):\n        size = x.shape[-2:]\n        x = super(ASPPPooling, self).forward(x)\n        return F.interpolate(x, size=size, mode='bilinear', align_corners=False)\n\nclass ASPP(nn.Module):\n    def __init__(self, in_channels, atrous_rates):\n        super(ASPP, self).__init__()\n        out_channels = 256\n        modules = []\n        modules.append(nn.Sequential(\n            nn.Conv2d(in_channels, out_channels, 1, bias=False),\n            nn.BatchNorm2d(out_channels),\n            nn.ReLU(inplace=True)))\n\n        rate1, rate2, rate3 = tuple(atrous_rates)\n        modules.append(ASPPConv(in_channels, out_channels, rate1))\n        modules.append(ASPPConv(in_channels, out_channels, rate2))\n        modules.append(ASPPConv(in_channels, out_channels, rate3))\n        modules.append(ASPPPooling(in_channels, out_channels))\n\n        self.convs = nn.ModuleList(modules)\n\n        self.project = nn.Sequential(\n            nn.Conv2d(5 * out_channels, out_channels, 1, bias=False),\n            nn.BatchNorm2d(out_channels),\n            nn.ReLU(inplace=True),\n            nn.Dropout(0.1),)\n\n    def forward(self, x):\n        res = []\n        for conv in self.convs:\n            res.append(conv(x))\n        res = torch.cat(res, dim=1)\n        return self.project(res)\n\n\n\ndef convert_to_separable_conv(module):\n    new_module = module\n    if isinstance(module, nn.Conv2d) and module.kernel_size[0]>1:\n        new_module = AtrousSeparableConvolution(module.in_channels,\n                                      module.out_channels, \n                                      module.kernel_size,\n                                      module.stride,\n                                      module.padding,\n                                      module.dilation,\n                                      module.bias)\n    for name, child in module.named_children():\n        new_module.add_module(name, convert_to_separable_conv(child))\n    return new_module"
  },
  {
    "path": "XMem/inference/interact/s2m/s2m_network.py",
    "content": "# Credit: https://github.com/VainF/DeepLabV3Plus-Pytorch\n\nfrom .utils import IntermediateLayerGetter\nfrom ._deeplab import DeepLabHead, DeepLabHeadV3Plus, DeepLabV3\nfrom . import s2m_resnet\n\ndef _segm_resnet(name, backbone_name, num_classes, output_stride, pretrained_backbone):\n\n    if output_stride==8:\n        replace_stride_with_dilation=[False, True, True]\n        aspp_dilate = [12, 24, 36]\n    else:\n        replace_stride_with_dilation=[False, False, True]\n        aspp_dilate = [6, 12, 18]\n\n    backbone = s2m_resnet.__dict__[backbone_name](\n        pretrained=pretrained_backbone,\n        replace_stride_with_dilation=replace_stride_with_dilation)\n    \n    inplanes = 2048\n    low_level_planes = 256\n\n    if name=='deeplabv3plus':\n        return_layers = {'layer4': 'out', 'layer1': 'low_level'}\n        classifier = DeepLabHeadV3Plus(inplanes, low_level_planes, num_classes, aspp_dilate)\n    elif name=='deeplabv3':\n        return_layers = {'layer4': 'out'}\n        classifier = DeepLabHead(inplanes , num_classes, aspp_dilate)\n    backbone = IntermediateLayerGetter(backbone, return_layers=return_layers)\n\n    model = DeepLabV3(backbone, classifier)\n    return model\n\ndef _load_model(arch_type, backbone, num_classes, output_stride, pretrained_backbone):\n\n    if backbone.startswith('resnet'):\n        model = _segm_resnet(arch_type, backbone, num_classes, output_stride=output_stride, pretrained_backbone=pretrained_backbone)\n    else:\n        raise NotImplementedError\n    return model\n\n\n# Deeplab v3\ndef deeplabv3_resnet50(num_classes=1, output_stride=16, pretrained_backbone=False):\n    \"\"\"Constructs a DeepLabV3 model with a ResNet-50 backbone.\n\n    Args:\n        num_classes (int): number of classes.\n        output_stride (int): output stride for deeplab.\n        pretrained_backbone (bool): If True, use the pretrained backbone.\n    \"\"\"\n    return _load_model('deeplabv3', 'resnet50', num_classes, output_stride=output_stride, pretrained_backbone=pretrained_backbone)\n\n\n# Deeplab v3+\ndef deeplabv3plus_resnet50(num_classes=1, output_stride=16, pretrained_backbone=False):\n    \"\"\"Constructs a DeepLabV3 model with a ResNet-50 backbone.\n\n    Args:\n        num_classes (int): number of classes.\n        output_stride (int): output stride for deeplab.\n        pretrained_backbone (bool): If True, use the pretrained backbone.\n    \"\"\"\n    return _load_model('deeplabv3plus', 'resnet50', num_classes, output_stride=output_stride, pretrained_backbone=pretrained_backbone)\n\n"
  },
  {
    "path": "XMem/inference/interact/s2m/s2m_resnet.py",
    "content": "import torch\nimport torch.nn as nn\ntry:\n    from torchvision.models.utils import load_state_dict_from_url\nexcept ModuleNotFoundError:\n    from torch.utils.model_zoo import load_url as load_state_dict_from_url\n\n\n__all__ = ['ResNet', 'resnet50']\n\n\nmodel_urls = {\n    'resnet50': 'https://download.pytorch.org/models/resnet50-19c8e357.pth',\n}\n\n\ndef conv3x3(in_planes, out_planes, stride=1, groups=1, dilation=1):\n    \"\"\"3x3 convolution with padding\"\"\"\n    return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride,\n                     padding=dilation, groups=groups, bias=False, dilation=dilation)\n\n\ndef conv1x1(in_planes, out_planes, stride=1):\n    \"\"\"1x1 convolution\"\"\"\n    return nn.Conv2d(in_planes, out_planes, kernel_size=1, stride=stride, bias=False)\n\n\nclass Bottleneck(nn.Module):\n    expansion = 4\n\n    def __init__(self, inplanes, planes, stride=1, downsample=None, groups=1,\n                 base_width=64, dilation=1, norm_layer=None):\n        super(Bottleneck, self).__init__()\n        if norm_layer is None:\n            norm_layer = nn.BatchNorm2d\n        width = int(planes * (base_width / 64.)) * groups\n        # Both self.conv2 and self.downsample layers downsample the input when stride != 1\n        self.conv1 = conv1x1(inplanes, width)\n        self.bn1 = norm_layer(width)\n        self.conv2 = conv3x3(width, width, stride, groups, dilation)\n        self.bn2 = norm_layer(width)\n        self.conv3 = conv1x1(width, planes * self.expansion)\n        self.bn3 = norm_layer(planes * self.expansion)\n        self.relu = nn.ReLU(inplace=True)\n        self.downsample = downsample\n        self.stride = stride\n\n    def forward(self, x):\n        identity = x\n\n        out = self.conv1(x)\n        out = self.bn1(out)\n        out = self.relu(out)\n\n        out = self.conv2(out)\n        out = self.bn2(out)\n        out = self.relu(out)\n\n        out = self.conv3(out)\n        out = self.bn3(out)\n\n        if self.downsample is not None:\n            identity = self.downsample(x)\n\n        out += identity\n        out = self.relu(out)\n\n        return out\n\n\nclass ResNet(nn.Module):\n\n    def __init__(self, block, layers, num_classes=1000, zero_init_residual=False,\n                 groups=1, width_per_group=64, replace_stride_with_dilation=None,\n                 norm_layer=None):\n        super(ResNet, self).__init__()\n        if norm_layer is None:\n            norm_layer = nn.BatchNorm2d\n        self._norm_layer = norm_layer\n\n        self.inplanes = 64\n        self.dilation = 1\n        if replace_stride_with_dilation is None:\n            # each element in the tuple indicates if we should replace\n            # the 2x2 stride with a dilated convolution instead\n            replace_stride_with_dilation = [False, False, False]\n        if len(replace_stride_with_dilation) != 3:\n            raise ValueError(\"replace_stride_with_dilation should be None \"\n                             \"or a 3-element tuple, got {}\".format(replace_stride_with_dilation))\n        self.groups = groups\n        self.base_width = width_per_group\n        self.conv1 = nn.Conv2d(6, self.inplanes, kernel_size=7, stride=2, padding=3,\n                               bias=False)\n        self.bn1 = norm_layer(self.inplanes)\n        self.relu = nn.ReLU(inplace=True)\n        self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)\n        self.layer1 = self._make_layer(block, 64, layers[0])\n        self.layer2 = self._make_layer(block, 128, layers[1], stride=2,\n                                       dilate=replace_stride_with_dilation[0])\n        self.layer3 = self._make_layer(block, 256, layers[2], stride=2,\n                                       dilate=replace_stride_with_dilation[1])\n        self.layer4 = self._make_layer(block, 512, layers[3], stride=2,\n                                       dilate=replace_stride_with_dilation[2])\n        self.avgpool = nn.AdaptiveAvgPool2d((1, 1))\n        self.fc = nn.Linear(512 * block.expansion, num_classes)\n\n        for m in self.modules():\n            if isinstance(m, nn.Conv2d):\n                nn.init.kaiming_normal_(m.weight, mode='fan_out', nonlinearity='relu')\n            elif isinstance(m, (nn.BatchNorm2d, nn.GroupNorm)):\n                nn.init.constant_(m.weight, 1)\n                nn.init.constant_(m.bias, 0)\n\n        # Zero-initialize the last BN in each residual branch,\n        # so that the residual branch starts with zeros, and each residual block behaves like an identity.\n        # This improves the model by 0.2~0.3% according to https://arxiv.org/abs/1706.02677\n        if zero_init_residual:\n            for m in self.modules():\n                if isinstance(m, Bottleneck):\n                    nn.init.constant_(m.bn3.weight, 0)\n\n    def _make_layer(self, block, planes, blocks, stride=1, dilate=False):\n        norm_layer = self._norm_layer\n        downsample = None\n        previous_dilation = self.dilation\n        if dilate:\n            self.dilation *= stride\n            stride = 1\n        if stride != 1 or self.inplanes != planes * block.expansion:\n            downsample = nn.Sequential(\n                conv1x1(self.inplanes, planes * block.expansion, stride),\n                norm_layer(planes * block.expansion),\n            )\n\n        layers = []\n        layers.append(block(self.inplanes, planes, stride, downsample, self.groups,\n                            self.base_width, previous_dilation, norm_layer))\n        self.inplanes = planes * block.expansion\n        for _ in range(1, blocks):\n            layers.append(block(self.inplanes, planes, groups=self.groups,\n                                base_width=self.base_width, dilation=self.dilation,\n                                norm_layer=norm_layer))\n\n        return nn.Sequential(*layers)\n\n    def forward(self, x):\n        x = self.conv1(x)\n        x = self.bn1(x)\n        x = self.relu(x)\n        x = self.maxpool(x)\n\n        x = self.layer1(x)\n        x = self.layer2(x)\n        x = self.layer3(x)\n        x = self.layer4(x)\n\n        x = self.avgpool(x)\n        x = torch.flatten(x, 1)\n        x = self.fc(x)\n\n        return x\n\n\ndef _resnet(arch, block, layers, pretrained, progress, **kwargs):\n    model = ResNet(block, layers, **kwargs)\n    if pretrained:\n        state_dict = load_state_dict_from_url(model_urls[arch],\n                                              progress=progress)\n        model.load_state_dict(state_dict)\n    return model\n\n\ndef resnet50(pretrained=False, progress=True, **kwargs):\n    r\"\"\"ResNet-50 model from\n    `\"Deep Residual Learning for Image Recognition\" <https://arxiv.org/pdf/1512.03385.pdf>`_\n\n    Args:\n        pretrained (bool): If True, returns a model pre-trained on ImageNet\n        progress (bool): If True, displays a progress bar of the download to stderr\n    \"\"\"\n    return _resnet('resnet50', Bottleneck, [3, 4, 6, 3], pretrained, progress,\n                   **kwargs)\n"
  },
  {
    "path": "XMem/inference/interact/s2m/utils.py",
    "content": "# Credit: https://github.com/VainF/DeepLabV3Plus-Pytorch\n\nimport torch\nimport torch.nn as nn\nimport numpy as np\nimport torch.nn.functional as F\nfrom collections import OrderedDict\n\nclass _SimpleSegmentationModel(nn.Module):\n    def __init__(self, backbone, classifier):\n        super(_SimpleSegmentationModel, self).__init__()\n        self.backbone = backbone\n        self.classifier = classifier\n        \n    def forward(self, x):\n        input_shape = x.shape[-2:]\n        features = self.backbone(x)\n        x = self.classifier(features)\n        x = F.interpolate(x, size=input_shape, mode='bilinear', align_corners=False)\n        return x\n\n\nclass IntermediateLayerGetter(nn.ModuleDict):\n    \"\"\"\n    Module wrapper that returns intermediate layers from a model\n\n    It has a strong assumption that the modules have been registered\n    into the model in the same order as they are used.\n    This means that one should **not** reuse the same nn.Module\n    twice in the forward if you want this to work.\n\n    Additionally, it is only able to query submodules that are directly\n    assigned to the model. So if `model` is passed, `model.feature1` can\n    be returned, but not `model.feature1.layer2`.\n\n    Arguments:\n        model (nn.Module): model on which we will extract the features\n        return_layers (Dict[name, new_name]): a dict containing the names\n            of the modules for which the activations will be returned as\n            the key of the dict, and the value of the dict is the name\n            of the returned activation (which the user can specify).\n\n    Examples::\n\n        >>> m = torchvision.models.resnet18(pretrained=True)\n        >>> # extract layer1 and layer3, giving as names `feat1` and feat2`\n        >>> new_m = torchvision.models._utils.IntermediateLayerGetter(m,\n        >>>     {'layer1': 'feat1', 'layer3': 'feat2'})\n        >>> out = new_m(torch.rand(1, 3, 224, 224))\n        >>> print([(k, v.shape) for k, v in out.items()])\n        >>>     [('feat1', torch.Size([1, 64, 56, 56])),\n        >>>      ('feat2', torch.Size([1, 256, 14, 14]))]\n    \"\"\"\n    def __init__(self, model, return_layers):\n        if not set(return_layers).issubset([name for name, _ in model.named_children()]):\n            raise ValueError(\"return_layers are not present in model\")\n\n        orig_return_layers = return_layers\n        return_layers = {k: v for k, v in return_layers.items()}\n        layers = OrderedDict()\n        for name, module in model.named_children():\n            layers[name] = module\n            if name in return_layers:\n                del return_layers[name]\n            if not return_layers:\n                break\n\n        super(IntermediateLayerGetter, self).__init__(layers)\n        self.return_layers = orig_return_layers\n\n    def forward(self, x):\n        out = OrderedDict()\n        for name, module in self.named_children():\n            x = module(x)\n            if name in self.return_layers:\n                out_name = self.return_layers[name]\n                out[out_name] = x\n        return out\n"
  },
  {
    "path": "XMem/inference/interact/s2m_controller.py",
    "content": "import torch\nimport numpy as np\nfrom ..interact.s2m.s2m_network import deeplabv3plus_resnet50 as S2M\n\nfrom util.tensor_util import pad_divide_by, unpad\n\n\nclass S2MController:\n    \"\"\"\n    A controller for Scribble-to-Mask (for user interaction, not for DAVIS)\n    Takes the image, previous mask, and scribbles to produce a new mask\n    ignore_class is usually 255 \n    0 is NOT the ignore class -- it is the label for the background\n    \"\"\"\n    def __init__(self, s2m_net:S2M, num_objects, ignore_class, device='cuda:0'):\n        self.s2m_net = s2m_net\n        self.num_objects = num_objects\n        self.ignore_class = ignore_class\n        self.device = device\n\n    def interact(self, image, prev_mask, scr_mask):\n        print(self.device)\n        image = image.to(self.device, non_blocking=True)\n        prev_mask = prev_mask.unsqueeze(0)\n\n        h, w = image.shape[-2:]\n        unaggre_mask = torch.zeros((self.num_objects, h, w), dtype=torch.float32, device=image.device)\n\n        for ki in range(1, self.num_objects+1):\n            p_srb = (scr_mask==ki).astype(np.uint8)\n            n_srb = ((scr_mask!=ki) * (scr_mask!=self.ignore_class)).astype(np.uint8)\n\n            Rs = torch.from_numpy(np.stack([p_srb, n_srb], 0)).unsqueeze(0).float().to(image.device)\n\n            inputs = torch.cat([image, (prev_mask==ki).float().unsqueeze(0), Rs], 1)\n            inputs, pads = pad_divide_by(inputs, 16)\n\n            unaggre_mask[ki-1] = unpad(torch.sigmoid(self.s2m_net(inputs)), pads)\n\n        return unaggre_mask"
  },
  {
    "path": "XMem/inference/interact/timer.py",
    "content": "import time\n\nclass Timer:\n    def __init__(self):\n        self._acc_time = 0\n        self._paused = True\n\n    def start(self):\n        if self._paused:\n            self.last_time = time.time()\n            self._paused = False\n        return self\n\n    def pause(self):\n        self.count()\n        self._paused = True\n        return self\n\n    def count(self):\n        if self._paused:\n            return self._acc_time\n        t = time.time()\n        self._acc_time += t - self.last_time\n        self.last_time = t\n        return self._acc_time\n\n    def format(self):\n        # count = int(self.count()*100)\n        # return '%02d:%02d:%02d' % (count//6000, (count//100)%60, count%100)\n        return '%03.2f' % self.count()\n\n    def __str__(self):\n        return self.format()"
  },
  {
    "path": "XMem/inference/kv_memory_store.py",
    "content": "import torch\nfrom typing import List\n\nclass KeyValueMemoryStore:\n    \"\"\"\n    Works for key/value pairs type storage\n    e.g., working and long-term memory\n    \"\"\"\n\n    \"\"\"\n    An object group is created when new objects enter the video\n    Objects in the same group share the same temporal extent\n    i.e., objects initialized in the same frame are in the same group\n    For DAVIS/interactive, there is only one object group\n    For YouTubeVOS, there can be multiple object groups\n    \"\"\"\n\n    def __init__(self, count_usage: bool):\n        self.count_usage = count_usage\n\n        # keys are stored in a single tensor and are shared between groups/objects\n        # values are stored as a list indexed by object groups\n        self.k = None\n        self.v = []\n        self.obj_groups = []\n        # for debugging only\n        self.all_objects = []\n\n        # shrinkage and selection are also single tensors\n        self.s = self.e = None\n\n        # usage\n        if self.count_usage:\n            self.use_count = self.life_count = None\n\n    def add(self, key, value, shrinkage, selection, objects: List[int]):\n        new_count = torch.zeros((key.shape[0], 1, key.shape[2]), device=key.device, dtype=torch.float32)\n        new_life = torch.zeros((key.shape[0], 1, key.shape[2]), device=key.device, dtype=torch.float32) + 1e-7\n\n        # add the key\n        if self.k is None:\n            self.k = key\n            self.s = shrinkage\n            self.e = selection\n            if self.count_usage:\n                self.use_count = new_count\n                self.life_count = new_life\n        else:\n            self.k = torch.cat([self.k, key], -1)\n            if shrinkage is not None:\n                self.s = torch.cat([self.s, shrinkage], -1)\n            if selection is not None:\n                self.e = torch.cat([self.e, selection], -1)\n            if self.count_usage:\n                self.use_count = torch.cat([self.use_count, new_count], -1)\n                self.life_count = torch.cat([self.life_count, new_life], -1)\n\n        # add the value\n        if objects is not None:\n            # When objects is given, v is a tensor; used in working memory\n            assert isinstance(value, torch.Tensor)\n            # First consume objects that are already in the memory bank\n            # cannot use set here because we need to preserve order\n            # shift by one as background is not part of value\n            remaining_objects = [obj-1 for obj in objects]\n            for gi, group in enumerate(self.obj_groups):\n                for obj in group:\n                    # should properly raise an error if there are overlaps in obj_groups\n                    remaining_objects.remove(obj)\n                self.v[gi] = torch.cat([self.v[gi], value[group]], -1)\n\n            # If there are remaining objects, add them as a new group\n            if len(remaining_objects) > 0:\n                new_group = list(remaining_objects)\n                self.v.append(value[new_group])\n                self.obj_groups.append(new_group)\n                self.all_objects.extend(new_group)\n                \n                assert sorted(self.all_objects) == self.all_objects, 'Objects MUST be inserted in sorted order '\n        else:\n            # When objects is not given, v is a list that already has the object groups sorted\n            # used in long-term memory\n            assert isinstance(value, list)\n            for gi, gv in enumerate(value):\n                if gv is None:\n                    continue\n                if gi < self.num_groups:\n                    self.v[gi] = torch.cat([self.v[gi], gv], -1)\n                else:\n                    self.v.append(gv)\n\n    def update_usage(self, usage):\n        # increase all life count by 1\n        # increase use of indexed elements\n        if not self.count_usage:\n            return\n        \n        self.use_count += usage.view_as(self.use_count)\n        self.life_count += 1\n\n    def sieve_by_range(self, start: int, end: int, min_size: int):\n        # keep only the elements *outside* of this range (with some boundary conditions)\n        # i.e., concat (a[:start], a[end:])\n        # min_size is only used for values, we do not sieve values under this size\n        # (because they are not consolidated)\n\n        if end == 0:\n            # negative 0 would not work as the end index!\n            self.k = self.k[:,:,:start]\n            if self.count_usage:\n                self.use_count = self.use_count[:,:,:start]\n                self.life_count = self.life_count[:,:,:start]\n            if self.s is not None:\n                self.s = self.s[:,:,:start]\n            if self.e is not None:\n                self.e = self.e[:,:,:start]\n            \n            for gi in range(self.num_groups):\n                if self.v[gi].shape[-1] >= min_size:\n                    self.v[gi] = self.v[gi][:,:,:start]\n        else:\n            self.k = torch.cat([self.k[:,:,:start], self.k[:,:,end:]], -1)\n            if self.count_usage:\n                self.use_count = torch.cat([self.use_count[:,:,:start], self.use_count[:,:,end:]], -1)\n                self.life_count = torch.cat([self.life_count[:,:,:start], self.life_count[:,:,end:]], -1)\n            if self.s is not None:\n                self.s = torch.cat([self.s[:,:,:start], self.s[:,:,end:]], -1)\n            if self.e is not None:\n                self.e = torch.cat([self.e[:,:,:start], self.e[:,:,end:]], -1)\n            \n            for gi in range(self.num_groups):\n                if self.v[gi].shape[-1] >= min_size:\n                    self.v[gi] = torch.cat([self.v[gi][:,:,:start], self.v[gi][:,:,end:]], -1)\n\n    def remove_obsolete_features(self, max_size: int):\n        # normalize with life duration\n        usage = self.get_usage().flatten()\n\n        values, _ = torch.topk(usage, k=(self.size-max_size), largest=False, sorted=True)\n        survived = (usage > values[-1])\n\n        self.k = self.k[:, :, survived]\n        self.s = self.s[:, :, survived] if self.s is not None else None\n        # Long-term memory does not store ek so this should not be needed\n        self.e = self.e[:, :, survived] if self.e is not None else None\n        if self.num_groups > 1:\n            raise NotImplementedError(\"\"\"The current data structure does not support feature removal with \n            multiple object groups (e.g., some objects start to appear later in the video)\n            The indices for \"survived\" is based on keys but not all values are present for every key\n            Basically we need to remap the indices for keys to values\n            \"\"\")\n        for gi in range(self.num_groups):\n            self.v[gi] = self.v[gi][:, :, survived]\n\n        self.use_count = self.use_count[:, :, survived]\n        self.life_count = self.life_count[:, :, survived]\n\n    def get_usage(self):\n        # return normalized usage\n        if not self.count_usage:\n            raise RuntimeError('I did not count usage!')\n        else:\n            usage = self.use_count / self.life_count\n            return usage\n\n    def get_all_sliced(self, start: int, end: int):\n        # return k, sk, ek, usage in order, sliced by start and end\n\n        if end == 0:\n            # negative 0 would not work as the end index!\n            k = self.k[:,:,start:]\n            sk = self.s[:,:,start:] if self.s is not None else None\n            ek = self.e[:,:,start:] if self.e is not None else None\n            usage = self.get_usage()[:,:,start:]\n        else:\n            k = self.k[:,:,start:end]\n            sk = self.s[:,:,start:end] if self.s is not None else None\n            ek = self.e[:,:,start:end] if self.e is not None else None\n            usage = self.get_usage()[:,:,start:end]\n\n        return k, sk, ek, usage\n\n    def get_v_size(self, ni: int):\n        return self.v[ni].shape[2]\n\n    def engaged(self):\n        return self.k is not None\n\n    @property\n    def size(self):\n        if self.k is None:\n            return 0\n        else:\n            return self.k.shape[-1]\n\n    @property\n    def num_groups(self):\n        return len(self.v)\n\n    @property\n    def key(self):\n        return self.k\n\n    @property\n    def value(self):\n        return self.v\n\n    @property\n    def shrinkage(self):\n        return self.s\n\n    @property\n    def selection(self):\n        return self.e\n\n"
  },
  {
    "path": "XMem/inference/memory_manager.py",
    "content": "import torch\nimport warnings\n\nfrom inference.kv_memory_store import KeyValueMemoryStore\nfrom model.memory_util import *\n\n\nclass MemoryManager:\n    \"\"\"\n    Manages all three memory stores and the transition between working/long-term memory\n    \"\"\"\n    def __init__(self, config):\n        self.hidden_dim = config['hidden_dim']\n        self.top_k = config['top_k']\n\n        self.enable_long_term = config['enable_long_term']\n        self.enable_long_term_usage = config['enable_long_term_count_usage']\n        if self.enable_long_term:\n            self.max_mt_frames = config['max_mid_term_frames']\n            self.min_mt_frames = config['min_mid_term_frames']\n            self.num_prototypes = config['num_prototypes']\n            self.max_long_elements = config['max_long_term_elements']\n\n        # dimensions will be inferred from input later\n        self.CK = self.CV = None\n        self.H = self.W = None\n\n        # The hidden state will be stored in a single tensor for all objects\n        # B x num_objects x CH x H x W\n        self.hidden = None\n\n        self.work_mem = KeyValueMemoryStore(count_usage=self.enable_long_term)\n        if self.enable_long_term:\n            self.long_mem = KeyValueMemoryStore(count_usage=self.enable_long_term_usage)\n\n        self.reset_config = True\n\n    def update_config(self, config):\n        self.reset_config = True\n        self.hidden_dim = config['hidden_dim']\n        self.top_k = config['top_k']\n\n        assert self.enable_long_term == config['enable_long_term'], 'cannot update this'\n        assert self.enable_long_term_usage == config['enable_long_term_count_usage'], 'cannot update this'\n\n        self.enable_long_term_usage = config['enable_long_term_count_usage']\n        if self.enable_long_term:\n            self.max_mt_frames = config['max_mid_term_frames']\n            self.min_mt_frames = config['min_mid_term_frames']\n            self.num_prototypes = config['num_prototypes']\n            self.max_long_elements = config['max_long_term_elements']\n\n    def _readout(self, affinity, v):\n        # this function is for a single object group\n        return v @ affinity\n\n    def match_memory(self, query_key, selection):\n        # query_key: B x C^k x H x W\n        # selection:  B x C^k x H x W\n        num_groups = self.work_mem.num_groups\n        h, w = query_key.shape[-2:]\n\n        query_key = query_key.flatten(start_dim=2)\n        selection = selection.flatten(start_dim=2) if selection is not None else None\n\n        \"\"\"\n        Memory readout using keys\n        \"\"\"\n\n        if self.enable_long_term and self.long_mem.engaged():\n            # Use long-term memory\n            long_mem_size = self.long_mem.size\n            memory_key = torch.cat([self.long_mem.key, self.work_mem.key], -1)\n            shrinkage = torch.cat([self.long_mem.shrinkage, self.work_mem.shrinkage], -1) \n\n            similarity = get_similarity(memory_key, shrinkage, query_key, selection)\n            work_mem_similarity = similarity[:, long_mem_size:]\n            long_mem_similarity = similarity[:, :long_mem_size]\n\n            # get the usage with the first group\n            # the first group always have all the keys valid\n            affinity, usage = do_softmax(\n                    torch.cat([long_mem_similarity[:, -self.long_mem.get_v_size(0):], work_mem_similarity], 1), \n                    top_k=self.top_k, inplace=True, return_usage=True)\n            affinity = [affinity]\n\n            # compute affinity group by group as later groups only have a subset of keys\n            for gi in range(1, num_groups):\n                if gi < self.long_mem.num_groups:\n                    # merge working and lt similarities before softmax\n                    affinity_one_group = do_softmax(\n                        torch.cat([long_mem_similarity[:, -self.long_mem.get_v_size(gi):], \n                                    work_mem_similarity[:, -self.work_mem.get_v_size(gi):]], 1), \n                        top_k=self.top_k, inplace=True)\n                else:\n                    # no long-term memory for this group\n                    affinity_one_group = do_softmax(work_mem_similarity[:, -self.work_mem.get_v_size(gi):], \n                        top_k=self.top_k, inplace=(gi==num_groups-1))\n                affinity.append(affinity_one_group)\n\n            all_memory_value = []\n            for gi, gv in enumerate(self.work_mem.value):\n                # merge the working and lt values before readout\n                if gi < self.long_mem.num_groups:\n                    all_memory_value.append(torch.cat([self.long_mem.value[gi], self.work_mem.value[gi]], -1))\n                else:\n                    all_memory_value.append(gv)\n\n            \"\"\"\n            Record memory usage for working and long-term memory\n            \"\"\"\n            # ignore the index return for long-term memory\n            work_usage = usage[:, long_mem_size:]\n            self.work_mem.update_usage(work_usage.flatten())\n\n            if self.enable_long_term_usage:\n                # ignore the index return for working memory\n                long_usage = usage[:, :long_mem_size]\n                self.long_mem.update_usage(long_usage.flatten())\n        else:\n            # No long-term memory\n            similarity = get_similarity(self.work_mem.key, self.work_mem.shrinkage, query_key, selection)\n\n            if self.enable_long_term:\n                affinity, usage = do_softmax(similarity, inplace=(num_groups==1), \n                    top_k=self.top_k, return_usage=True)\n\n                # Record memory usage for working memory\n                self.work_mem.update_usage(usage.flatten())\n            else:\n                affinity = do_softmax(similarity, inplace=(num_groups==1), \n                    top_k=self.top_k, return_usage=False)\n\n            affinity = [affinity]\n\n            # compute affinity group by group as later groups only have a subset of keys\n            for gi in range(1, num_groups):\n                affinity_one_group = do_softmax(similarity[:, -self.work_mem.get_v_size(gi):], \n                    top_k=self.top_k, inplace=(gi==num_groups-1))\n                affinity.append(affinity_one_group)\n                \n            all_memory_value = self.work_mem.value\n\n        # Shared affinity within each group\n        all_readout_mem = torch.cat([\n            self._readout(affinity[gi], gv)\n            for gi, gv in enumerate(all_memory_value)\n        ], 0)\n\n        return all_readout_mem.view(all_readout_mem.shape[0], self.CV, h, w)\n\n    def add_memory(self, key, shrinkage, value, objects, selection=None):\n        # key: 1*C*H*W\n        # value: 1*num_objects*C*H*W\n        # objects contain a list of object indices\n        if self.H is None or self.reset_config:\n            self.reset_config = False\n            self.H, self.W = key.shape[-2:]\n            self.HW = self.H*self.W\n            if self.enable_long_term:\n                # convert from num. frames to num. nodes\n                self.min_work_elements = self.min_mt_frames*self.HW\n                self.max_work_elements = self.max_mt_frames*self.HW\n\n        # key:   1*C*N\n        # value: num_objects*C*N\n        key = key.flatten(start_dim=2)\n        shrinkage = shrinkage.flatten(start_dim=2) \n        value = value[0].flatten(start_dim=2)\n\n        self.CK = key.shape[1]\n        self.CV = value.shape[1]\n\n        if selection is not None:\n            if not self.enable_long_term:\n                warnings.warn('the selection factor is only needed in long-term mode', UserWarning)\n            selection = selection.flatten(start_dim=2)\n\n        self.work_mem.add(key, value, shrinkage, selection, objects)\n\n        # long-term memory cleanup\n        if self.enable_long_term:\n            # Do memory compressed if needed\n            if self.work_mem.size >= self.max_work_elements:\n                # Remove obsolete features if needed\n                if self.long_mem.size >= (self.max_long_elements-self.num_prototypes):\n                    self.long_mem.remove_obsolete_features(self.max_long_elements-self.num_prototypes)\n                    \n                self.compress_features()\n\n\n    def create_hidden_state(self, n, sample_key):\n        # n is the TOTAL number of objects\n        h, w = sample_key.shape[-2:]\n        if self.hidden is None:\n            self.hidden = torch.zeros((1, n, self.hidden_dim, h, w), device=sample_key.device)\n        elif self.hidden.shape[1] != n:\n            self.hidden = torch.cat([\n                self.hidden, \n                torch.zeros((1, n-self.hidden.shape[1], self.hidden_dim, h, w), device=sample_key.device)\n            ], 1)\n\n        assert(self.hidden.shape[1] == n)\n\n    def set_hidden(self, hidden):\n        self.hidden = hidden\n\n    def get_hidden(self):\n        return self.hidden\n\n    def compress_features(self):\n        HW = self.HW\n        candidate_value = []\n        total_work_mem_size = self.work_mem.size\n        for gv in self.work_mem.value:\n            # Some object groups might be added later in the video\n            # So not all keys have values associated with all objects\n            # We need to keep track of the key->value validity\n            mem_size_in_this_group = gv.shape[-1]\n            if mem_size_in_this_group == total_work_mem_size:\n                # full LT\n                candidate_value.append(gv[:,:,HW:-self.min_work_elements+HW])\n            else:\n                # mem_size is smaller than total_work_mem_size, but at least HW\n                assert HW <= mem_size_in_this_group < total_work_mem_size\n                if mem_size_in_this_group > self.min_work_elements+HW:\n                    # part of this object group still goes into LT\n                    candidate_value.append(gv[:,:,HW:-self.min_work_elements+HW])\n                else:\n                    # this object group cannot go to the LT at all\n                    candidate_value.append(None)\n\n        # perform memory consolidation\n        prototype_key, prototype_value, prototype_shrinkage = self.consolidation(\n            *self.work_mem.get_all_sliced(HW, -self.min_work_elements+HW), candidate_value)\n\n        # remove consolidated working memory\n        self.work_mem.sieve_by_range(HW, -self.min_work_elements+HW, min_size=self.min_work_elements+HW)\n\n        # add to long-term memory\n        self.long_mem.add(prototype_key, prototype_value, prototype_shrinkage, selection=None, objects=None)\n\n    def consolidation(self, candidate_key, candidate_shrinkage, candidate_selection, usage, candidate_value):\n        # keys: 1*C*N\n        # values: num_objects*C*N\n        N = candidate_key.shape[-1]\n\n        # find the indices with max usage\n        _, max_usage_indices = torch.topk(usage, k=self.num_prototypes, dim=-1, sorted=True)\n        prototype_indices = max_usage_indices.flatten()\n\n        # Prototypes are invalid for out-of-bound groups\n        validity = [prototype_indices >= (N-gv.shape[2]) if gv is not None else None for gv in candidate_value]\n\n        prototype_key = candidate_key[:, :, prototype_indices]\n        prototype_selection = candidate_selection[:, :, prototype_indices] if candidate_selection is not None else None\n\n        \"\"\"\n        Potentiation step\n        \"\"\"\n        similarity = get_similarity(candidate_key, candidate_shrinkage, prototype_key, prototype_selection)\n\n        # convert similarity to affinity\n        # need to do it group by group since the softmax normalization would be different\n        affinity = [\n            do_softmax(similarity[:, -gv.shape[2]:, validity[gi]]) if gv is not None else None\n            for gi, gv in enumerate(candidate_value)\n        ]\n\n        # some values can be have all False validity. Weed them out.\n        affinity = [\n            aff if aff is None or aff.shape[-1] > 0 else None for aff in affinity\n        ]\n\n        # readout the values\n        prototype_value = [\n            self._readout(affinity[gi], gv) if affinity[gi] is not None else None\n            for gi, gv in enumerate(candidate_value)\n        ]\n\n        # readout the shrinkage term\n        prototype_shrinkage = self._readout(affinity[0], candidate_shrinkage) if candidate_shrinkage is not None else None\n\n        return prototype_key, prototype_value, prototype_shrinkage\n"
  },
  {
    "path": "XMem/interactive_demo.py",
    "content": "\"\"\"\nA simple user interface for XMem\n\"\"\"\n\nimport os\nfrom os import path\n# fix for Windows\nif 'QT_QPA_PLATFORM_PLUGIN_PATH' not in os.environ:\n    os.environ['QT_QPA_PLATFORM_PLUGIN_PATH'] = ''\n\nimport signal\nsignal.signal(signal.SIGINT, signal.SIG_DFL)\n\nimport sys\nfrom argparse import ArgumentParser\n\nimport torch\n\nfrom model.network import XMem\nfrom inference.interact.s2m_controller import S2MController\nfrom inference.interact.fbrs_controller import FBRSController\nfrom inference.interact.s2m.s2m_network import deeplabv3plus_resnet50 as S2M\n\nfrom PySide6.QtWidgets import QApplication\nfrom inference.interact.gui import App\nfrom inference.interact.resource_manager import ResourceManager\nfrom contextlib import nullcontext\n\ntorch.set_grad_enabled(False)\n\nif torch.cuda.is_available():\n    device = torch.device(\"cuda\")\nelif torch.backends.mps.is_available():\n    device = torch.device(\"mps\")\nelse:\n    device = torch.device(\"cpu\")\n\nif __name__ == '__main__':\n    # Arguments parsing\n    parser = ArgumentParser()\n    parser.add_argument('--model', default='./saves/XMem.pth')\n    parser.add_argument('--s2m_model', default='saves/s2m.pth')\n    parser.add_argument('--fbrs_model', default='saves/fbrs.pth')\n\n    \"\"\"\n    Priority 1: If a \"images\" folder exists in the workspace, we will read from that directory\n    Priority 2: If --images is specified, we will copy/resize those images to the workspace\n    Priority 3: If --video is specified, we will extract the frames to the workspace (in an \"images\" folder) and read from there\n\n    In any case, if a \"masks\" folder exists in the workspace, we will use that to initialize the mask\n    That way, you can continue annotation from an interrupted run as long as the same workspace is used.\n    \"\"\"\n    parser.add_argument('--images', help='Folders containing input images.', default=None)\n    parser.add_argument('--video', help='Video file readable by OpenCV.', default=None)\n    parser.add_argument('--workspace', help='directory for storing buffered images (if needed) and output masks', default=None)\n\n    parser.add_argument('--buffer_size', help='Correlate with CPU memory consumption', type=int, default=100)\n    \n    parser.add_argument('--num_objects', type=int, default=1)\n\n    # Long-memory options\n    # Defaults. Some can be changed in the GUI.\n    parser.add_argument('--max_mid_term_frames', help='T_max in paper, decrease to save memory', type=int, default=10)\n    parser.add_argument('--min_mid_term_frames', help='T_min in paper, decrease to save memory', type=int, default=5)\n    parser.add_argument('--max_long_term_elements', help='LT_max in paper, increase if objects disappear for a long time', \n                                                    type=int, default=10000)\n    parser.add_argument('--num_prototypes', help='P in paper', type=int, default=128) \n\n    parser.add_argument('--top_k', type=int, default=30)\n    parser.add_argument('--mem_every', type=int, default=10)\n    parser.add_argument('--deep_update_every', help='Leave -1 normally to synchronize with mem_every', type=int, default=-1)\n    parser.add_argument('--no_amp', help='Turn off AMP', action='store_true')\n    parser.add_argument('--size', default=480, type=int, \n            help='Resize the shorter side to this size. -1 to use original resolution. ')\n    args = parser.parse_args()\n\n    # create temporary workspace if not specified\n    config = vars(args)\n    config['enable_long_term'] = True\n    config['enable_long_term_count_usage'] = True\n\n    if config[\"workspace\"] is None:\n        if config[\"images\"] is not None:\n            basename = path.basename(config[\"images\"])\n        elif config[\"video\"] is not None:\n            basename = path.basename(config[\"video\"])[:-4]\n        else:\n            raise NotImplementedError(\n                'Either images, video, or workspace has to be specified')\n\n        config[\"workspace\"] = path.join('./workspace', basename)\n\n    with torch.cuda.amp.autocast(enabled=not args.no_amp) if device.type == 'cuda' else nullcontext():\n        # Load our checkpoint\n        network = XMem(config, args.model, map_location=device).to(device).eval()\n\n        # Loads the S2M model\n        if args.s2m_model is not None:\n            s2m_saved = torch.load(args.s2m_model, map_location=device)\n            s2m_model = S2M().to(device).eval()\n            s2m_model.load_state_dict(s2m_saved)\n        else:\n            s2m_model = None\n\n        s2m_controller = S2MController(s2m_model, args.num_objects, ignore_class=255, device=device)\n        if args.fbrs_model is not None:\n            fbrs_controller = FBRSController(args.fbrs_model, device=device)\n        else:\n            fbrs_controller = None\n\n        # Manages most IO\n        resource_manager = ResourceManager(config)\n\n        app = QApplication(sys.argv)\n        ex = App(network, resource_manager, s2m_controller, fbrs_controller, config, device)\n        sys.exit(app.exec())\n"
  },
  {
    "path": "XMem/merge_multi_scale.py",
    "content": "import os\nfrom os import path\nfrom argparse import ArgumentParser\nimport glob\nfrom collections import defaultdict\n\nimport numpy as np\nimport hickle as hkl\nfrom PIL import Image, ImagePalette\n\nfrom progressbar import progressbar\nfrom multiprocessing import Pool\nfrom util import palette\n\nfrom util.palette import davis_palette, youtube_palette\nimport shutil\n\n\ndef search_options(options, name):\n    for option in options:\n        if path.exists(path.join(option, name)):\n            return path.join(option, name)\n    else:\n        return None\n\ndef process_vid(vid):\n    vid_path = search_options(all_options, vid)\n    if vid_path is not None:\n        backward_mapping = hkl.load(path.join(vid_path, 'backward.hkl'))\n    else:\n        backward_mapping = None\n\n    frames = os.listdir(path.join(all_options[0], vid))\n    frames = [f for f in frames if 'backward' not in f]\n\n    print(vid)\n    if 'Y' in args.dataset:\n        this_out_path = path.join(out_path, 'Annotations', vid)\n    else:\n        this_out_path = path.join(out_path, vid)\n    os.makedirs(this_out_path, exist_ok=True)\n\n    for f in frames:\n        result_sum = None\n\n        for option in all_options:\n            if not path.exists(path.join(option, vid, f)):\n                continue\n\n            result = hkl.load(path.join(option, vid, f))\n            if result_sum is None:\n                result_sum = result.astype(np.float32)\n            else:\n                result_sum += result\n\n        # argmax and to idx\n        result_sum = np.argmax(result_sum, axis=0)\n\n        # Remap the indices to the original domain\n        if backward_mapping is not None:\n            idx_mask = np.zeros_like(result_sum, dtype=np.uint8)\n            for l, i in backward_mapping.items():\n                idx_mask[result_sum==i] = l\n        else:\n            idx_mask = result_sum.astype(np.uint8)\n\n        # Save the results\n        img_E = Image.fromarray(idx_mask)\n        img_E.putpalette(palette)\n        img_E.save(path.join(this_out_path, f[:-4]+'.png'))\n\n\nif __name__ == '__main__':\n    \"\"\"\n    Arguments loading\n    \"\"\"\n    parser = ArgumentParser()\n    parser.add_argument('--dataset', default='Y', help='D/Y, D for DAVIS; Y for YouTubeVOS')\n    parser.add_argument('--list', nargs=\"+\")\n    parser.add_argument('--pattern', default=None, help='Glob patten. Can be used in place of list.')\n    parser.add_argument('--output')\n    parser.add_argument('--num_proc', default=4, type=int)\n    args = parser.parse_args()\n\n    out_path = args.output\n\n    # Find the input candidates\n    if args.pattern is None:\n        all_options = args.list\n    else:\n        assert args.list is None, 'cannot specify both list and pattern'\n        all_options = glob.glob(args.pattern)\n\n    # Get the correct palette\n    if 'D' in args.dataset:\n        palette = ImagePalette.ImagePalette(mode='P', palette=davis_palette)\n    elif 'Y' in args.dataset:\n        palette = ImagePalette.ImagePalette(mode='P', palette=youtube_palette)\n    else:\n        raise NotImplementedError\n\n    # Count of the number of videos in each candidate\n    all_options = [path.join(o, 'Scores') for o in all_options]\n    vid_count = defaultdict(int)\n    for option in all_options:\n        vid_in_here = sorted(os.listdir(option))\n        for vid in vid_in_here:\n            vid_count[vid] += 1\n\n    all_vid = []\n    count_to_vid = defaultdict(int)\n    for k, v in vid_count.items():\n        count_to_vid[v] += 1\n        all_vid.append(k)\n\n    for k, v in count_to_vid.items():\n        print('Videos with count %d: %d' % (k, v))\n\n    all_vid = sorted(all_vid)\n    print('Total number of videos: ', len(all_vid))\n\n    pool = Pool(processes=args.num_proc)\n    for _ in progressbar(pool.imap_unordered(process_vid, all_vid), max_value=len(all_vid)):\n       pass\n\n    pool.close()\n    pool.join()\n\n    if 'D' in args.dataset:\n        print('Making zip for DAVIS test-dev...')\n        shutil.make_archive(args.output, 'zip', args.output)\n\n    if 'Y' in args.dataset:\n        print('Making zip for YouTubeVOS...')\n        shutil.make_archive(path.join(args.output, path.basename(args.output)), 'zip', args.output, 'Annotations')\n"
  },
  {
    "path": "XMem/merge_results.py",
    "content": "import glob\nimport os\nfrom PIL import Image\nimport numpy as np\nimport tqdm\nimport multiprocessing\n\nmulti_dir = \"mevis_val/vis_output/\"\noutdir = \"mevis_val_merge/vis_output/\"\n\n\nall_obj_list = []\nvideo_list = glob.glob(os.path.join(multi_dir, \"0/*\"))\nfor video in video_list:\n    obj_list = glob.glob(video + \"/*\")\n    all_obj_list = all_obj_list + ['/'.join(i.split('/')[-2:]) for i in obj_list]\n\ndef merge(obj):\n        obj_output_dir = os.path.join(outdir, obj)\n        os.makedirs(obj_output_dir, exist_ok=True)\n        img_list = [i.split('/')[-1] for i in glob.glob(os.path.join(multi_dir, \"0\", obj, \"*.png\"))]\n        for img_name in img_list:\n            agg_img = None\n            for i in range(7):\n                img_path = os.path.join(multi_dir, str(i), obj, img_name)\n                tmp_img = (np.array(Image.open(img_path)) > 0).astype(np.uint8)\n                if agg_img is not None:\n                    agg_img = agg_img + tmp_img\n                else:\n                    agg_img = tmp_img\n            agg_img = (agg_img >= 4).astype(np.uint8)\n            agg_img = Image.fromarray(agg_img)\n            img_output_path = os.path.join(obj_output_dir, img_name)\n            agg_img.save(img_output_path)\n\nprint('start')\ncpu_num = multiprocessing.cpu_count()-1\nprint(\"cpu_num:\", cpu_num)\npool = multiprocessing.Pool(cpu_num)\n\nfor obj in all_obj_list:\n    pool.apply_async(merge, args=(obj,))\n    \npool.close()\npool.join()\n"
  },
  {
    "path": "XMem/model/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/model/aggregate.py",
    "content": "import torch\nimport torch.nn.functional as F\n\n\n# Soft aggregation from STM\ndef aggregate(prob, dim, return_logits=False):\n    new_prob = torch.cat([\n        torch.prod(1-prob, dim=dim, keepdim=True),\n        prob\n    ], dim).clamp(1e-7, 1-1e-7)\n    logits = torch.log((new_prob /(1-new_prob)))\n    prob = F.softmax(logits, dim=dim)\n\n    if return_logits:\n        return logits, prob\n    else:\n        return prob"
  },
  {
    "path": "XMem/model/cbam.py",
    "content": "# Modified from https://github.com/Jongchan/attention-module/blob/master/MODELS/cbam.py\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\nclass BasicConv(nn.Module):\n    def __init__(self, in_planes, out_planes, kernel_size, stride=1, padding=0, dilation=1, groups=1, bias=True):\n        super(BasicConv, self).__init__()\n        self.out_channels = out_planes\n        self.conv = nn.Conv2d(in_planes, out_planes, kernel_size=kernel_size, stride=stride, padding=padding, dilation=dilation, groups=groups, bias=bias)\n\n    def forward(self, x):\n        x = self.conv(x)\n        return x\n\nclass Flatten(nn.Module):\n    def forward(self, x):\n        return x.view(x.size(0), -1)\n\nclass ChannelGate(nn.Module):\n    def __init__(self, gate_channels, reduction_ratio=16, pool_types=['avg', 'max']):\n        super(ChannelGate, self).__init__()\n        self.gate_channels = gate_channels\n        self.mlp = nn.Sequential(\n            Flatten(),\n            nn.Linear(gate_channels, gate_channels // reduction_ratio),\n            nn.ReLU(),\n            nn.Linear(gate_channels // reduction_ratio, gate_channels)\n            )\n        self.pool_types = pool_types\n    def forward(self, x):\n        channel_att_sum = None\n        for pool_type in self.pool_types:\n            if pool_type=='avg':\n                avg_pool = F.avg_pool2d( x, (x.size(2), x.size(3)), stride=(x.size(2), x.size(3)))\n                channel_att_raw = self.mlp( avg_pool )\n            elif pool_type=='max':\n                max_pool = F.max_pool2d( x, (x.size(2), x.size(3)), stride=(x.size(2), x.size(3)))\n                channel_att_raw = self.mlp( max_pool )\n\n            if channel_att_sum is None:\n                channel_att_sum = channel_att_raw\n            else:\n                channel_att_sum = channel_att_sum + channel_att_raw\n\n        scale = torch.sigmoid( channel_att_sum ).unsqueeze(2).unsqueeze(3).expand_as(x)\n        return x * scale\n\nclass ChannelPool(nn.Module):\n    def forward(self, x):\n        return torch.cat( (torch.max(x,1)[0].unsqueeze(1), torch.mean(x,1).unsqueeze(1)), dim=1 )\n\nclass SpatialGate(nn.Module):\n    def __init__(self):\n        super(SpatialGate, self).__init__()\n        kernel_size = 7\n        self.compress = ChannelPool()\n        self.spatial = BasicConv(2, 1, kernel_size, stride=1, padding=(kernel_size-1) // 2)\n    def forward(self, x):\n        x_compress = self.compress(x)\n        x_out = self.spatial(x_compress)\n        scale = torch.sigmoid(x_out) # broadcasting\n        return x * scale\n\nclass CBAM(nn.Module):\n    def __init__(self, gate_channels, reduction_ratio=16, pool_types=['avg', 'max'], no_spatial=False):\n        super(CBAM, self).__init__()\n        self.ChannelGate = ChannelGate(gate_channels, reduction_ratio, pool_types)\n        self.no_spatial=no_spatial\n        if not no_spatial:\n            self.SpatialGate = SpatialGate()\n    def forward(self, x):\n        x_out = self.ChannelGate(x)\n        if not self.no_spatial:\n            x_out = self.SpatialGate(x_out)\n        return x_out\n"
  },
  {
    "path": "XMem/model/group_modules.py",
    "content": "\"\"\"\nGroup-specific modules\nThey handle features that also depends on the mask. \nFeatures are typically of shape\n    batch_size * num_objects * num_channels * H * W\n\nAll of them are permutation equivariant w.r.t. to the num_objects dimension\n\"\"\"\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\n\ndef interpolate_groups(g, ratio, mode, align_corners):\n    batch_size, num_objects = g.shape[:2]\n    g = F.interpolate(g.flatten(start_dim=0, end_dim=1), \n                scale_factor=ratio, mode=mode, align_corners=align_corners)\n    g = g.view(batch_size, num_objects, *g.shape[1:])\n    return g\n\ndef upsample_groups(g, ratio=2, mode='bilinear', align_corners=False):\n    return interpolate_groups(g, ratio, mode, align_corners)\n\ndef downsample_groups(g, ratio=1/2, mode='area', align_corners=None):\n    return interpolate_groups(g, ratio, mode, align_corners)\n\n\nclass GConv2D(nn.Conv2d):\n    def forward(self, g):\n        batch_size, num_objects = g.shape[:2]\n        g = super().forward(g.flatten(start_dim=0, end_dim=1))\n        return g.view(batch_size, num_objects, *g.shape[1:])\n\n\nclass GroupResBlock(nn.Module):\n    def __init__(self, in_dim, out_dim):\n        super().__init__()\n\n        if in_dim == out_dim:\n            self.downsample = None\n        else:\n            self.downsample = GConv2D(in_dim, out_dim, kernel_size=3, padding=1)\n\n        self.conv1 = GConv2D(in_dim, out_dim, kernel_size=3, padding=1)\n        self.conv2 = GConv2D(out_dim, out_dim, kernel_size=3, padding=1)\n \n    def forward(self, g):\n        out_g = self.conv1(F.relu(g))\n        out_g = self.conv2(F.relu(out_g))\n        \n        if self.downsample is not None:\n            g = self.downsample(g)\n\n        return out_g + g\n\n\nclass MainToGroupDistributor(nn.Module):\n    def __init__(self, x_transform=None, method='cat', reverse_order=False):\n        super().__init__()\n\n        self.x_transform = x_transform\n        self.method = method\n        self.reverse_order = reverse_order\n\n    def forward(self, x, g):\n        num_objects = g.shape[1]\n\n        if self.x_transform is not None:\n            x = self.x_transform(x)\n\n        if self.method == 'cat':\n            if self.reverse_order:\n                g = torch.cat([g, x.unsqueeze(1).expand(-1,num_objects,-1,-1,-1)], 2)\n            else:\n                g = torch.cat([x.unsqueeze(1).expand(-1,num_objects,-1,-1,-1), g], 2)\n        elif self.method == 'add':\n            g = x.unsqueeze(1).expand(-1,num_objects,-1,-1,-1) + g\n        else:\n            raise NotImplementedError\n\n        return g\n"
  },
  {
    "path": "XMem/model/losses.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\nfrom collections import defaultdict\n\n\ndef dice_loss(input_mask, cls_gt):\n    num_objects = input_mask.shape[1]\n    losses = []\n    for i in range(num_objects):\n        mask = input_mask[:,i].flatten(start_dim=1)\n        # background not in mask, so we add one to cls_gt\n        gt = (cls_gt==(i+1)).float().flatten(start_dim=1)\n        numerator = 2 * (mask * gt).sum(-1)\n        denominator = mask.sum(-1) + gt.sum(-1)\n        loss = 1 - (numerator + 1) / (denominator + 1)\n        losses.append(loss)\n    return torch.cat(losses).mean()\n\n\n# https://stackoverflow.com/questions/63735255/how-do-i-compute-bootstrapped-cross-entropy-loss-in-pytorch\nclass BootstrappedCE(nn.Module):\n    def __init__(self, start_warm, end_warm, top_p=0.15):\n        super().__init__()\n\n        self.start_warm = start_warm\n        self.end_warm = end_warm\n        self.top_p = top_p\n\n    def forward(self, input, target, it):\n        if it < self.start_warm:\n            return F.cross_entropy(input, target), 1.0\n\n        raw_loss = F.cross_entropy(input, target, reduction='none').view(-1)\n        num_pixels = raw_loss.numel()\n\n        if it > self.end_warm:\n            this_p = self.top_p\n        else:\n            this_p = self.top_p + (1-self.top_p)*((self.end_warm-it)/(self.end_warm-self.start_warm))\n        loss, _ = torch.topk(raw_loss, int(num_pixels * this_p), sorted=False)\n        return loss.mean(), this_p\n\n\nclass LossComputer:\n    def __init__(self, config):\n        super().__init__()\n        self.config = config\n        self.bce = BootstrappedCE(config['start_warm'], config['end_warm'])\n\n    def compute(self, data, num_objects, it):\n        losses = defaultdict(int)\n\n        b, t = data['rgb'].shape[:2]\n\n        losses['total_loss'] = 0\n        for ti in range(1, t):\n            for bi in range(b):\n                loss, p = self.bce(data[f'logits_{ti}'][bi:bi+1, :num_objects[bi]+1], data['cls_gt'][bi:bi+1,ti,0], it)\n                losses['p'] += p / b / (t-1)\n                losses[f'ce_loss_{ti}'] += loss / b\n\n            losses['total_loss'] += losses['ce_loss_%d'%ti]\n            losses[f'dice_loss_{ti}'] = dice_loss(data[f'masks_{ti}'], data['cls_gt'][:,ti,0])\n            losses['total_loss'] += losses[f'dice_loss_{ti}']\n\n        return losses\n"
  },
  {
    "path": "XMem/model/memory_util.py",
    "content": "import math\nimport numpy as np\nimport torch\nfrom typing import Optional\n\n\ndef get_similarity(mk, ms, qk, qe):\n    # used for training/inference and memory reading/memory potentiation\n    # mk: B x CK x [N]    - Memory keys\n    # ms: B x  1 x [N]    - Memory shrinkage\n    # qk: B x CK x [HW/P] - Query keys\n    # qe: B x CK x [HW/P] - Query selection\n    # Dimensions in [] are flattened\n    CK = mk.shape[1]\n    mk = mk.flatten(start_dim=2)\n    ms = ms.flatten(start_dim=1).unsqueeze(2) if ms is not None else None\n    qk = qk.flatten(start_dim=2)\n    qe = qe.flatten(start_dim=2) if qe is not None else None\n\n    if qe is not None:\n        # See appendix for derivation\n        # or you can just trust me ヽ(ー_ー )ノ\n        mk = mk.transpose(1, 2)\n        a_sq = (mk.pow(2) @ qe)\n        two_ab = 2 * (mk @ (qk * qe))\n        b_sq = (qe * qk.pow(2)).sum(1, keepdim=True)\n        similarity = (-a_sq+two_ab-b_sq)\n    else:\n        # similar to STCN if we don't have the selection term\n        a_sq = mk.pow(2).sum(1).unsqueeze(2)\n        two_ab = 2 * (mk.transpose(1, 2) @ qk)\n        similarity = (-a_sq+two_ab)\n\n    if ms is not None:\n        similarity = similarity * ms / math.sqrt(CK)   # B*N*HW\n    else:\n        similarity = similarity / math.sqrt(CK)   # B*N*HW\n\n    return similarity\n\ndef do_softmax(similarity, top_k: Optional[int]=None, inplace=False, return_usage=False):\n    # normalize similarity with top-k softmax\n    # similarity: B x N x [HW/P]\n    # use inplace with care\n    if top_k is not None:\n        values, indices = torch.topk(similarity, k=top_k, dim=1)\n\n        x_exp = values.exp_()\n        x_exp /= torch.sum(x_exp, dim=1, keepdim=True)\n        if inplace:\n            similarity.zero_().scatter_(1, indices, x_exp) # B*N*HW\n            affinity = similarity\n        else:\n            affinity = torch.zeros_like(similarity).scatter_(1, indices, x_exp) # B*N*HW\n    else:\n        maxes = torch.max(similarity, dim=1, keepdim=True)[0]\n        x_exp = torch.exp(similarity - maxes)\n        x_exp_sum = torch.sum(x_exp, dim=1, keepdim=True)\n        affinity = x_exp / x_exp_sum \n        indices = None\n\n    if return_usage:\n        return affinity, affinity.sum(dim=2)\n\n    return affinity\n\ndef get_affinity(mk, ms, qk, qe):\n    # shorthand used in training with no top-k\n    similarity = get_similarity(mk, ms, qk, qe)\n    affinity = do_softmax(similarity)\n    return affinity\n\ndef readout(affinity, mv):\n    B, CV, T, H, W = mv.shape\n\n    mo = mv.view(B, CV, T*H*W) \n    mem = torch.bmm(mo, affinity)\n    mem = mem.view(B, CV, H, W)\n\n    return mem\n"
  },
  {
    "path": "XMem/model/modules.py",
    "content": "\"\"\"\nmodules.py - This file stores the rather boring network blocks.\n\nx - usually means features that only depends on the image\ng - usually means features that also depends on the mask. \n    They might have an extra \"group\" or \"num_objects\" dimension, hence\n    batch_size * num_objects * num_channels * H * W\n\nThe trailing number of a variable usually denote the stride\n\n\"\"\"\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\nfrom model.group_modules import *\nfrom model import resnet\nfrom model.cbam import CBAM\n\n\nclass FeatureFusionBlock(nn.Module):\n    def __init__(self, x_in_dim, g_in_dim, g_mid_dim, g_out_dim):\n        super().__init__()\n\n        self.distributor = MainToGroupDistributor()\n        self.block1 = GroupResBlock(x_in_dim+g_in_dim, g_mid_dim)\n        self.attention = CBAM(g_mid_dim)\n        self.block2 = GroupResBlock(g_mid_dim, g_out_dim)\n\n    def forward(self, x, g):\n        batch_size, num_objects = g.shape[:2]\n\n        g = self.distributor(x, g)\n        g = self.block1(g)\n        r = self.attention(g.flatten(start_dim=0, end_dim=1))\n        r = r.view(batch_size, num_objects, *r.shape[1:])\n\n        g = self.block2(g+r)\n\n        return g\n\n\nclass HiddenUpdater(nn.Module):\n    # Used in the decoder, multi-scale feature + GRU\n    def __init__(self, g_dims, mid_dim, hidden_dim):\n        super().__init__()\n        self.hidden_dim = hidden_dim\n\n        self.g16_conv = GConv2D(g_dims[0], mid_dim, kernel_size=1)\n        self.g8_conv = GConv2D(g_dims[1], mid_dim, kernel_size=1)\n        self.g4_conv = GConv2D(g_dims[2], mid_dim, kernel_size=1)\n\n        self.transform = GConv2D(mid_dim+hidden_dim, hidden_dim*3, kernel_size=3, padding=1)\n\n        nn.init.xavier_normal_(self.transform.weight)\n\n    def forward(self, g, h):\n        g = self.g16_conv(g[0]) + self.g8_conv(downsample_groups(g[1], ratio=1/2)) + \\\n            self.g4_conv(downsample_groups(g[2], ratio=1/4))\n\n        g = torch.cat([g, h], 2)\n\n        # defined slightly differently than standard GRU, \n        # namely the new value is generated before the forget gate.\n        # might provide better gradient but frankly it was initially just an \n        # implementation error that I never bothered fixing\n        values = self.transform(g)\n        forget_gate = torch.sigmoid(values[:,:,:self.hidden_dim])\n        update_gate = torch.sigmoid(values[:,:,self.hidden_dim:self.hidden_dim*2])\n        new_value = torch.tanh(values[:,:,self.hidden_dim*2:])\n        new_h = forget_gate*h*(1-update_gate) + update_gate*new_value\n\n        return new_h\n\n\nclass HiddenReinforcer(nn.Module):\n    # Used in the value encoder, a single GRU\n    def __init__(self, g_dim, hidden_dim):\n        super().__init__()\n        self.hidden_dim = hidden_dim\n        self.transform = GConv2D(g_dim+hidden_dim, hidden_dim*3, kernel_size=3, padding=1)\n\n        nn.init.xavier_normal_(self.transform.weight)\n\n    def forward(self, g, h):\n        g = torch.cat([g, h], 2)\n\n        # defined slightly differently than standard GRU, \n        # namely the new value is generated before the forget gate.\n        # might provide better gradient but frankly it was initially just an \n        # implementation error that I never bothered fixing\n        values = self.transform(g)\n        forget_gate = torch.sigmoid(values[:,:,:self.hidden_dim])\n        update_gate = torch.sigmoid(values[:,:,self.hidden_dim:self.hidden_dim*2])\n        new_value = torch.tanh(values[:,:,self.hidden_dim*2:])\n        new_h = forget_gate*h*(1-update_gate) + update_gate*new_value\n\n        return new_h\n\n\nclass ValueEncoder(nn.Module):\n    def __init__(self, value_dim, hidden_dim, single_object=False):\n        super().__init__()\n        \n        self.single_object = single_object\n        network = resnet.resnet18(pretrained=True, extra_dim=1 if single_object else 2)\n        self.conv1 = network.conv1\n        self.bn1 = network.bn1\n        self.relu = network.relu  # 1/2, 64\n        self.maxpool = network.maxpool\n\n        self.layer1 = network.layer1 # 1/4, 64\n        self.layer2 = network.layer2 # 1/8, 128\n        self.layer3 = network.layer3 # 1/16, 256\n\n        self.distributor = MainToGroupDistributor()\n        self.fuser = FeatureFusionBlock(1024, 256, value_dim, value_dim)\n        if hidden_dim > 0:\n            self.hidden_reinforce = HiddenReinforcer(value_dim, hidden_dim)\n        else:\n            self.hidden_reinforce = None\n\n    def forward(self, image, image_feat_f16, h, masks, others, is_deep_update=True):\n        # image_feat_f16 is the feature from the key encoder\n        if not self.single_object:\n            g = torch.stack([masks, others], 2)\n        else:\n            g = masks.unsqueeze(2)\n        g = self.distributor(image, g)\n\n        batch_size, num_objects = g.shape[:2]\n        g = g.flatten(start_dim=0, end_dim=1)\n\n        g = self.conv1(g)\n        g = self.bn1(g) # 1/2, 64\n        g = self.maxpool(g)  # 1/4, 64\n        g = self.relu(g) \n\n        g = self.layer1(g) # 1/4\n        g = self.layer2(g) # 1/8\n        g = self.layer3(g) # 1/16\n\n        g = g.view(batch_size, num_objects, *g.shape[1:])\n        g = self.fuser(image_feat_f16, g)\n\n        if is_deep_update and self.hidden_reinforce is not None:\n            h = self.hidden_reinforce(g, h)\n\n        return g, h\n \n\nclass KeyEncoder(nn.Module):\n    def __init__(self):\n        super().__init__()\n        network = resnet.resnet50(pretrained=True)\n        self.conv1 = network.conv1\n        self.bn1 = network.bn1\n        self.relu = network.relu  # 1/2, 64\n        self.maxpool = network.maxpool\n\n        self.res2 = network.layer1 # 1/4, 256\n        self.layer2 = network.layer2 # 1/8, 512\n        self.layer3 = network.layer3 # 1/16, 1024\n\n    def forward(self, f):\n        x = self.conv1(f) \n        x = self.bn1(x)\n        x = self.relu(x)   # 1/2, 64\n        x = self.maxpool(x)  # 1/4, 64\n        f4 = self.res2(x)   # 1/4, 256\n        f8 = self.layer2(f4) # 1/8, 512\n        f16 = self.layer3(f8) # 1/16, 1024\n\n        return f16, f8, f4\n\n\nclass UpsampleBlock(nn.Module):\n    def __init__(self, skip_dim, g_up_dim, g_out_dim, scale_factor=2):\n        super().__init__()\n        self.skip_conv = nn.Conv2d(skip_dim, g_up_dim, kernel_size=3, padding=1)\n        self.distributor = MainToGroupDistributor(method='add')\n        self.out_conv = GroupResBlock(g_up_dim, g_out_dim)\n        self.scale_factor = scale_factor\n\n    def forward(self, skip_f, up_g):\n        skip_f = self.skip_conv(skip_f)\n        g = upsample_groups(up_g, ratio=self.scale_factor)\n        g = self.distributor(skip_f, g)\n        g = self.out_conv(g)\n        return g\n\n\nclass KeyProjection(nn.Module):\n    def __init__(self, in_dim, keydim):\n        super().__init__()\n\n        self.key_proj = nn.Conv2d(in_dim, keydim, kernel_size=3, padding=1)\n        # shrinkage\n        self.d_proj = nn.Conv2d(in_dim, 1, kernel_size=3, padding=1)\n        # selection\n        self.e_proj = nn.Conv2d(in_dim, keydim, kernel_size=3, padding=1)\n\n        nn.init.orthogonal_(self.key_proj.weight.data)\n        nn.init.zeros_(self.key_proj.bias.data)\n    \n    def forward(self, x, need_s, need_e):\n        shrinkage = self.d_proj(x)**2 + 1 if (need_s) else None\n        selection = torch.sigmoid(self.e_proj(x)) if (need_e) else None\n\n        return self.key_proj(x), shrinkage, selection\n\n\nclass Decoder(nn.Module):\n    def __init__(self, val_dim, hidden_dim):\n        super().__init__()\n\n        self.fuser = FeatureFusionBlock(1024, val_dim+hidden_dim, 512, 512)\n        if hidden_dim > 0:\n            self.hidden_update = HiddenUpdater([512, 256, 256+1], 256, hidden_dim)\n        else:\n            self.hidden_update = None\n        \n        self.up_16_8 = UpsampleBlock(512, 512, 256) # 1/16 -> 1/8\n        self.up_8_4 = UpsampleBlock(256, 256, 256) # 1/8 -> 1/4\n\n        self.pred = nn.Conv2d(256, 1, kernel_size=3, padding=1, stride=1)\n\n    def forward(self, f16, f8, f4, hidden_state, memory_readout, h_out=True):\n        batch_size, num_objects = memory_readout.shape[:2]\n\n        if self.hidden_update is not None:\n            g16 = self.fuser(f16, torch.cat([memory_readout, hidden_state], 2))\n        else:\n            g16 = self.fuser(f16, memory_readout)\n\n        g8 = self.up_16_8(f8, g16)\n        g4 = self.up_8_4(f4, g8)\n        logits = self.pred(F.relu(g4.flatten(start_dim=0, end_dim=1)))\n\n        if h_out and self.hidden_update is not None:\n            g4 = torch.cat([g4, logits.view(batch_size, num_objects, 1, *logits.shape[-2:])], 2)\n            hidden_state = self.hidden_update([g16, g8, g4], hidden_state)\n        else:\n            hidden_state = None\n        \n        logits = F.interpolate(logits, scale_factor=4, mode='bilinear', align_corners=False)\n        logits = logits.view(batch_size, num_objects, *logits.shape[-2:])\n\n        return hidden_state, logits\n"
  },
  {
    "path": "XMem/model/network.py",
    "content": "\"\"\"\nThis file defines XMem, the highest level nn.Module interface\nDuring training, it is used by trainer.py\nDuring evaluation, it is used by inference_core.py\n\nIt further depends on modules.py which gives more detailed implementations of sub-modules\n\"\"\"\n\nimport torch\nimport torch.nn as nn\n\nfrom loguru import logger\n\nfrom model.aggregate import aggregate\nfrom model.modules import *\nfrom model.memory_util import *\n\n\nclass XMem(nn.Module):\n    def __init__(self, config, model_path=None, map_location=None):\n        \"\"\"\n        model_path/map_location are used in evaluation only\n        map_location is for converting models saved in cuda to cpu\n        \"\"\"\n        super().__init__()\n        model_weights = self.init_hyperparameters(config, model_path, map_location)\n\n        self.single_object = config.get('single_object', False)\n        print(f'Single object mode: {self.single_object}')\n\n        self.key_encoder = KeyEncoder()\n        self.value_encoder = ValueEncoder(self.value_dim, self.hidden_dim, self.single_object)\n\n        # Projection from f16 feature space to key/value space\n        self.key_proj = KeyProjection(1024, self.key_dim)\n\n        self.decoder = Decoder(self.value_dim, self.hidden_dim)\n\n        if model_weights is not None:\n            self.load_weights(model_weights, init_as_zero_if_needed=True)\n\n    def encode_key(self, frame, need_sk=True, need_ek=True): \n        # Determine input shape\n        if len(frame.shape) == 5:\n            # shape is b*t*c*h*w\n            need_reshape = True\n            b, t = frame.shape[:2]\n            # flatten so that we can feed them into a 2D CNN\n            frame = frame.flatten(start_dim=0, end_dim=1)\n        elif len(frame.shape) == 4:\n            # shape is b*c*h*w\n            need_reshape = False\n        else:\n            raise NotImplementedError\n    \n        f16, f8, f4 = self.key_encoder(frame)\n        key, shrinkage, selection = self.key_proj(f16, need_sk, need_ek)\n\n        if need_reshape:\n            # B*C*T*H*W\n            key = key.view(b, t, *key.shape[-3:]).transpose(1, 2).contiguous()\n            if shrinkage is not None:\n                shrinkage = shrinkage.view(b, t, *shrinkage.shape[-3:]).transpose(1, 2).contiguous()\n            if selection is not None:\n                selection = selection.view(b, t, *selection.shape[-3:]).transpose(1, 2).contiguous()\n\n            # B*T*C*H*W\n            f16 = f16.view(b, t, *f16.shape[-3:])\n            f8 = f8.view(b, t, *f8.shape[-3:])\n            f4 = f4.view(b, t, *f4.shape[-3:])\n\n        return key, shrinkage, selection, f16, f8, f4\n\n    def encode_value(self, frame, image_feat_f16, h16, masks, is_deep_update=True): \n        num_objects = masks.shape[1]\n        if num_objects != 1:\n            others = torch.cat([\n                torch.sum(\n                    masks[:, [j for j in range(num_objects) if i!=j]]\n                , dim=1, keepdim=True)\n            for i in range(num_objects)], 1)\n        else:\n            others = torch.zeros_like(masks)\n\n        g16, h16 = self.value_encoder(frame, image_feat_f16, h16, masks, others, is_deep_update)\n\n        return g16, h16\n\n    # Used in training only. \n    # This step is replaced by MemoryManager in test time\n    def read_memory(self, query_key, query_selection, memory_key, \n                    memory_shrinkage, memory_value):\n        \"\"\"\n        query_key       : B * CK * H * W\n        query_selection : B * CK * H * W\n        memory_key      : B * CK * T * H * W\n        memory_shrinkage: B * 1  * T * H * W\n        memory_value    : B * num_objects * CV * T * H * W\n        \"\"\"\n        batch_size, num_objects = memory_value.shape[:2]\n        memory_value = memory_value.flatten(start_dim=1, end_dim=2)\n\n        affinity = get_affinity(memory_key, memory_shrinkage, query_key, query_selection)\n        memory = readout(affinity, memory_value)\n        memory = memory.view(batch_size, num_objects, self.value_dim, *memory.shape[-2:])\n\n        return memory\n\n    def segment(self, multi_scale_features, memory_readout,\n                    hidden_state, selector=None, h_out=True, strip_bg=True): \n\n        hidden_state, logits = self.decoder(*multi_scale_features, hidden_state, memory_readout, h_out=h_out)\n        prob = torch.sigmoid(logits)\n        if selector is not None:\n            prob = prob * selector\n            \n        logits, prob = aggregate(prob, dim=1, return_logits=True)\n        if strip_bg:\n            # Strip away the background\n            prob = prob[:, 1:]\n\n        return hidden_state, logits, prob\n\n    def forward(self, mode, *args, **kwargs):\n        if mode == 'encode_key':\n            return self.encode_key(*args, **kwargs)\n        elif mode == 'encode_value':\n            return self.encode_value(*args, **kwargs)\n        elif mode == 'read_memory':\n            return self.read_memory(*args, **kwargs)\n        elif mode == 'segment':\n            return self.segment(*args, **kwargs)\n        else:\n            raise NotImplementedError\n\n    @logger.catch()\n    def init_hyperparameters(self, config, model_path=None, map_location=None):\n        \"\"\"\n        Init three hyperparameters: key_dim, value_dim, and hidden_dim\n        If model_path is provided, we load these from the model weights\n        The actual parameters are then updated to the config in-place\n\n        Otherwise we load it either from the config or default\n        \"\"\"\n        if model_path is not None:\n            # load the model and key/value/hidden dimensions with some hacks\n            # config is updated with the loaded parameters\n            model_weights = torch.load(model_path, map_location=map_location)\n            self.key_dim = model_weights['key_proj.key_proj.weight'].shape[0]\n            self.value_dim = model_weights['value_encoder.fuser.block2.conv2.weight'].shape[0]\n            self.disable_hidden = 'decoder.hidden_update.transform.weight' not in model_weights\n            if self.disable_hidden:\n                self.hidden_dim = 0\n            else:\n                self.hidden_dim = model_weights['decoder.hidden_update.transform.weight'].shape[0]//3\n            print(f'Hyperparameters read from the model weights: '\n                    f'C^k={self.key_dim}, C^v={self.value_dim}, C^h={self.hidden_dim}')\n        else:\n            model_weights = None\n            # load dimensions from config or default\n            if 'key_dim' not in config:\n                self.key_dim = 64\n                print(f'key_dim not found in config. Set to default {self.key_dim}')\n            else:\n                self.key_dim = config['key_dim']\n\n            if 'value_dim' not in config:\n                self.value_dim = 512\n                print(f'value_dim not found in config. Set to default {self.value_dim}')\n            else:\n                self.value_dim = config['value_dim']\n\n            if 'hidden_dim' not in config:\n                self.hidden_dim = 64\n                print(f'hidden_dim not found in config. Set to default {self.hidden_dim}')\n            else:\n                self.hidden_dim = config['hidden_dim']\n\n            self.disable_hidden = (self.hidden_dim <= 0)\n\n        config['key_dim'] = self.key_dim\n        config['value_dim'] = self.value_dim\n        config['hidden_dim'] = self.hidden_dim\n\n        return model_weights\n\n    @logger.catch()\n    def load_weights(self, src_dict, init_as_zero_if_needed=False):\n        # Maps SO weight (without other_mask) to MO weight (with other_mask)\n        for k in list(src_dict.keys()):\n            if k == 'value_encoder.conv1.weight':\n                if src_dict[k].shape[1] == 4:\n                    print('Converting weights from single object to multiple objects.')\n                    pads = torch.zeros((64,1,7,7), device=src_dict[k].device)\n                    if not init_as_zero_if_needed:\n                        print('Randomly initialized padding.')\n                        nn.init.orthogonal_(pads)\n                    else:\n                        print('Zero-initialized padding.')\n                    src_dict[k] = torch.cat([src_dict[k], pads], 1)\n\n        self.load_state_dict(src_dict)\n"
  },
  {
    "path": "XMem/model/resnet.py",
    "content": "\"\"\"\nresnet.py - A modified ResNet structure\nWe append extra channels to the first conv by some network surgery\n\"\"\"\n\nfrom collections import OrderedDict\nimport math\n\nimport torch\nimport torch.nn as nn\nfrom torch.utils import model_zoo\n\n\ndef load_weights_add_extra_dim(target, source_state, extra_dim=1):\n    new_dict = OrderedDict()\n\n    for k1, v1 in target.state_dict().items():\n        if not 'num_batches_tracked' in k1:\n            if k1 in source_state:\n                tar_v = source_state[k1]\n\n                if v1.shape != tar_v.shape:\n                    # Init the new segmentation channel with zeros\n                    # print(v1.shape, tar_v.shape)\n                    c, _, w, h = v1.shape\n                    pads = torch.zeros((c,extra_dim,w,h), device=tar_v.device)\n                    nn.init.orthogonal_(pads)\n                    tar_v = torch.cat([tar_v, pads], 1)\n\n                new_dict[k1] = tar_v\n\n    target.load_state_dict(new_dict)\n\n\nmodel_urls = {\n    'resnet18': 'https://download.pytorch.org/models/resnet18-5c106cde.pth',\n    'resnet50': 'https://download.pytorch.org/models/resnet50-19c8e357.pth',\n}\n\n\ndef conv3x3(in_planes, out_planes, stride=1, dilation=1):\n    return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride,\n                     padding=dilation, dilation=dilation, bias=False)\n\n\nclass BasicBlock(nn.Module):\n    expansion = 1\n\n    def __init__(self, inplanes, planes, stride=1, downsample=None, dilation=1):\n        super(BasicBlock, self).__init__()\n        self.conv1 = conv3x3(inplanes, planes, stride=stride, dilation=dilation)\n        self.bn1 = nn.BatchNorm2d(planes)\n        self.relu = nn.ReLU(inplace=True)\n        self.conv2 = conv3x3(planes, planes, stride=1, dilation=dilation)\n        self.bn2 = nn.BatchNorm2d(planes)\n        self.downsample = downsample\n        self.stride = stride\n\n    def forward(self, x):\n        residual = x\n\n        out = self.conv1(x)\n        out = self.bn1(out)\n        out = self.relu(out)\n\n        out = self.conv2(out)\n        out = self.bn2(out)\n\n        if self.downsample is not None:\n            residual = self.downsample(x)\n\n        out += residual\n        out = self.relu(out)\n\n        return out\n\n\nclass Bottleneck(nn.Module):\n    expansion = 4\n\n    def __init__(self, inplanes, planes, stride=1, downsample=None, dilation=1):\n        super(Bottleneck, self).__init__()\n        self.conv1 = nn.Conv2d(inplanes, planes, kernel_size=1, bias=False)\n        self.bn1 = nn.BatchNorm2d(planes)\n        self.conv2 = nn.Conv2d(planes, planes, kernel_size=3, stride=stride, dilation=dilation,\n                               padding=dilation, bias=False)\n        self.bn2 = nn.BatchNorm2d(planes)\n        self.conv3 = nn.Conv2d(planes, planes * 4, kernel_size=1, bias=False)\n        self.bn3 = nn.BatchNorm2d(planes * 4)\n        self.relu = nn.ReLU(inplace=True)\n        self.downsample = downsample\n        self.stride = stride\n\n    def forward(self, x):\n        residual = x\n\n        out = self.conv1(x)\n        out = self.bn1(out)\n        out = self.relu(out)\n\n        out = self.conv2(out)\n        out = self.bn2(out)\n        out = self.relu(out)\n\n        out = self.conv3(out)\n        out = self.bn3(out)\n\n        if self.downsample is not None:\n            residual = self.downsample(x)\n\n        out += residual\n        out = self.relu(out)\n\n        return out\n\n\nclass ResNet(nn.Module):\n    def __init__(self, block, layers=(3, 4, 23, 3), extra_dim=0):\n        self.inplanes = 64\n        super(ResNet, self).__init__()\n        self.conv1 = nn.Conv2d(3+extra_dim, 64, kernel_size=7, stride=2, padding=3, bias=False)\n        self.bn1 = nn.BatchNorm2d(64)\n        self.relu = nn.ReLU(inplace=True)\n        self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)\n        self.layer1 = self._make_layer(block, 64, layers[0])\n        self.layer2 = self._make_layer(block, 128, layers[1], stride=2)\n        self.layer3 = self._make_layer(block, 256, layers[2], stride=2)\n        self.layer4 = self._make_layer(block, 512, layers[3], stride=2)\n\n        for m in self.modules():\n            if isinstance(m, nn.Conv2d):\n                n = m.kernel_size[0] * m.kernel_size[1] * m.out_channels\n                m.weight.data.normal_(0, math.sqrt(2. / n))\n            elif isinstance(m, nn.BatchNorm2d):\n                m.weight.data.fill_(1)\n                m.bias.data.zero_()\n\n    def _make_layer(self, block, planes, blocks, stride=1, dilation=1):\n        downsample = None\n        if stride != 1 or self.inplanes != planes * block.expansion:\n            downsample = nn.Sequential(\n                nn.Conv2d(self.inplanes, planes * block.expansion,\n                          kernel_size=1, stride=stride, bias=False),\n                nn.BatchNorm2d(planes * block.expansion),\n            )\n\n        layers = [block(self.inplanes, planes, stride, downsample)]\n        self.inplanes = planes * block.expansion\n        for i in range(1, blocks):\n            layers.append(block(self.inplanes, planes, dilation=dilation))\n\n        return nn.Sequential(*layers)\n\ndef resnet18(pretrained=True, extra_dim=0):\n    model = ResNet(BasicBlock, [2, 2, 2, 2], extra_dim)\n    if pretrained:\n        load_weights_add_extra_dim(model, model_zoo.load_url(model_urls['resnet18']), extra_dim)\n    return model\n\ndef resnet50(pretrained=True, extra_dim=0):\n    model = ResNet(Bottleneck, [3, 4, 6, 3], extra_dim)\n    if pretrained:\n        load_weights_add_extra_dim(model, model_zoo.load_url(model_urls['resnet50']), extra_dim)\n    return model\n\n"
  },
  {
    "path": "XMem/model/trainer.py",
    "content": "\"\"\"\ntrainer.py - warpper and utility functions for network training\nCompute loss, back-prop, update parameters, logging, etc.\n\"\"\"\n\n\nimport os\nimport time\nimport numpy as np\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\n\nfrom model.network import XMem\nfrom model.losses import LossComputer\nfrom util.log_integrator import Integrator\nfrom util.image_saver import pool_pairs\n\n\nclass XMemTrainer:\n    def __init__(self, config, logger=None, save_path=None, local_rank=0, world_size=1):\n        self.config = config\n        self.num_frames = config['num_frames']\n        self.num_ref_frames = config['num_ref_frames']\n        self.deep_update_prob = config['deep_update_prob']\n        self.local_rank = local_rank\n\n        self.XMem = nn.parallel.DistributedDataParallel(\n            XMem(config).cuda(), \n            device_ids=[local_rank], output_device=local_rank, broadcast_buffers=False)\n\n        # Set up logger when local_rank=0\n        self.logger = logger\n        self.save_path = save_path\n        if logger is not None:\n            self.last_time = time.time()\n            self.logger.log_string('model_size', str(sum([param.nelement() for param in self.XMem.parameters()])))\n        self.train_integrator = Integrator(self.logger, distributed=True, local_rank=local_rank, world_size=world_size)\n        self.loss_computer = LossComputer(config)\n\n        self.train()\n        self.optimizer = optim.AdamW(filter(\n            lambda p: p.requires_grad, self.XMem.parameters()), lr=config['lr'], weight_decay=config['weight_decay'])\n        self.scheduler = optim.lr_scheduler.MultiStepLR(self.optimizer, config['steps'], config['gamma'])\n        if config['amp']:\n            self.scaler = torch.cuda.amp.GradScaler()\n\n        # Logging info\n        self.log_text_interval = config['log_text_interval']\n        self.log_image_interval = config['log_image_interval']\n        self.save_network_interval = config['save_network_interval']\n        self.save_checkpoint_interval = config['save_checkpoint_interval']\n        if config['debug']:\n            self.log_text_interval = self.log_image_interval = 1\n\n    def do_pass(self, data, it=0):\n        # No need to store the gradient outside training\n        torch.set_grad_enabled(self._is_train)\n\n        for k, v in data.items():\n            if type(v) != list and type(v) != dict and type(v) != int:\n                data[k] = v.cuda(non_blocking=True)\n\n        out = {}\n        frames = data['rgb']\n        first_frame_gt = data['first_frame_gt'].float()\n        b = frames.shape[0]\n        num_filled_objects = [o.item() for o in data['info']['num_objects']]\n        num_objects = first_frame_gt.shape[2]\n        selector = data['selector'].unsqueeze(2).unsqueeze(2)\n\n        with torch.cuda.amp.autocast(enabled=self.config['amp']):\n            # image features never change, compute once\n            key, shrinkage, selection, f16, f8, f4 = self.XMem('encode_key', frames)\n\n            filler_one = torch.zeros(1, dtype=torch.int64)\n            hidden = torch.zeros((b, num_objects, self.config['hidden_dim'], *key.shape[-2:]))\n            v16, hidden = self.XMem('encode_value', frames[:,0], f16[:,0], hidden, first_frame_gt[:,0])\n            values = v16.unsqueeze(3) # add the time dimension\n\n            for ti in range(1, self.num_frames):\n                if ti <= self.num_ref_frames:\n                    ref_values = values\n                    ref_keys = key[:,:,:ti]\n                    ref_shrinkage = shrinkage[:,:,:ti] if shrinkage is not None else None\n                else:\n                    # pick num_ref_frames random frames\n                    # this is not very efficient but I think we would \n                    # need broadcasting in gather which we don't have\n                    indices = [\n                        torch.cat([filler_one, torch.randperm(ti-1)[:self.num_ref_frames-1]+1])\n                    for _ in range(b)]\n                    ref_values = torch.stack([\n                        values[bi, :, :, indices[bi]] for bi in range(b)\n                    ], 0)\n                    ref_keys = torch.stack([\n                        key[bi, :, indices[bi]] for bi in range(b)\n                    ], 0)\n                    ref_shrinkage = torch.stack([\n                        shrinkage[bi, :, indices[bi]] for bi in range(b)\n                    ], 0) if shrinkage is not None else None\n\n                # Segment frame ti\n                memory_readout = self.XMem('read_memory', key[:,:,ti], selection[:,:,ti] if selection is not None else None, \n                                        ref_keys, ref_shrinkage, ref_values)\n                hidden, logits, masks = self.XMem('segment', (f16[:,ti], f8[:,ti], f4[:,ti]), memory_readout, \n                        hidden, selector, h_out=(ti < (self.num_frames-1)))\n\n                # No need to encode the last frame\n                if ti < (self.num_frames-1):\n                    is_deep_update = np.random.rand() < self.deep_update_prob\n                    v16, hidden = self.XMem('encode_value', frames[:,ti], f16[:,ti], hidden, masks, is_deep_update=is_deep_update)\n                    values = torch.cat([values, v16.unsqueeze(3)], 3)\n\n                out[f'masks_{ti}'] = masks\n                out[f'logits_{ti}'] = logits\n\n            if self._do_log or self._is_train:\n                losses = self.loss_computer.compute({**data, **out}, num_filled_objects, it)\n\n                # Logging\n                if self._do_log:\n                    self.integrator.add_dict(losses)\n                    if self._is_train:\n                        if it % self.log_image_interval == 0 and it != 0:\n                            if self.logger is not None:\n                                images = {**data, **out}\n                                size = (384, 384)\n                                self.logger.log_cv2('train/pairs', pool_pairs(images, size, num_filled_objects), it)\n\n            if self._is_train:\n                if (it) % self.log_text_interval == 0 and it != 0:\n                    if self.logger is not None:\n                        self.logger.log_scalar('train/lr', self.scheduler.get_last_lr()[0], it)\n                        self.logger.log_metrics('train', 'time', (time.time()-self.last_time)/self.log_text_interval, it)\n                    self.last_time = time.time()\n                    self.train_integrator.finalize('train', it)\n                    self.train_integrator.reset_except_hooks()\n\n                if it % self.save_network_interval == 0 and it != 0:\n                    if self.logger is not None:\n                        self.save_network(it)\n\n                if it % self.save_checkpoint_interval == 0 and it != 0:\n                    if self.logger is not None:\n                        self.save_checkpoint(it)\n\n        # Backward pass\n        self.optimizer.zero_grad(set_to_none=True)\n        if self.config['amp']:\n            self.scaler.scale(losses['total_loss']).backward()\n            self.scaler.step(self.optimizer)\n            self.scaler.update()\n        else:\n            losses['total_loss'].backward() \n            self.optimizer.step()\n\n        self.scheduler.step()\n\n    def save_network(self, it):\n        if self.save_path is None:\n            print('Saving has been disabled.')\n            return\n        \n        os.makedirs(os.path.dirname(self.save_path), exist_ok=True)\n        model_path = f'{self.save_path}_{it}.pth'\n        torch.save(self.XMem.module.state_dict(), model_path)\n        print(f'Network saved to {model_path}.')\n\n    def save_checkpoint(self, it):\n        if self.save_path is None:\n            print('Saving has been disabled.')\n            return\n\n        os.makedirs(os.path.dirname(self.save_path), exist_ok=True)\n        checkpoint_path = f'{self.save_path}_checkpoint_{it}.pth'\n        checkpoint = { \n            'it': it,\n            'network': self.XMem.module.state_dict(),\n            'optimizer': self.optimizer.state_dict(),\n            'scheduler': self.scheduler.state_dict()}\n        torch.save(checkpoint, checkpoint_path)\n        print(f'Checkpoint saved to {checkpoint_path}.')\n\n    def load_checkpoint(self, path):\n        # This method loads everything and should be used to resume training\n        map_location = 'cuda:%d' % self.local_rank\n        checkpoint = torch.load(path, map_location={'cuda:0': map_location})\n\n        it = checkpoint['it']\n        network = checkpoint['network']\n        optimizer = checkpoint['optimizer']\n        scheduler = checkpoint['scheduler']\n\n        map_location = 'cuda:%d' % self.local_rank\n        self.XMem.module.load_state_dict(network)\n        self.optimizer.load_state_dict(optimizer)\n        self.scheduler.load_state_dict(scheduler)\n\n        print('Network weights, optimizer states, and scheduler states loaded.')\n\n        return it\n\n    def load_network_in_memory(self, src_dict):\n        self.XMem.module.load_weights(src_dict)\n        print('Network weight loaded from memory.')\n\n    def load_network(self, path):\n        # This method loads only the network weight and should be used to load a pretrained model\n        map_location = 'cuda:%d' % self.local_rank\n        src_dict = torch.load(path, map_location={'cuda:0': map_location})\n\n        self.load_network_in_memory(src_dict)\n        print(f'Network weight loaded from {path}')\n\n    def train(self):\n        self._is_train = True\n        self._do_log = True\n        self.integrator = self.train_integrator\n        self.XMem.eval()\n        return self\n\n    def val(self):\n        self._is_train = False\n        self._do_log = True\n        self.XMem.eval()\n        return self\n\n    def test(self):\n        self._is_train = False\n        self._do_log = False\n        self.XMem.eval()\n        return self\n\n"
  },
  {
    "path": "XMem/requirements.txt",
    "content": "progressbar2\ngdown\nhickle\ntensorboard\nnumpy"
  },
  {
    "path": "XMem/scripts/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/scripts/download_bl30k.py",
    "content": "import os\nimport gdown\nimport tarfile\n\n\nLICENSE = \"\"\"\nThis dataset is a derivative of ShapeNet.\nPlease read and respect their licenses and terms before use. \nTextures and skybox image are obtained from Google image search with the \"non-commercial reuse\" flag.\nDo not use this dataset for commercial purposes.\nYou should cite both ShapeNet and our paper if you use this dataset.\n\"\"\"\n\nprint(LICENSE)\nprint('Datasets will be downloaded and extracted to ../BL30K')\nprint('The script will download and extract the segment one by one')\nprint('You are going to need ~1TB of free disk space')\nreply = input('[y] to confirm, others to exit: ')\nif reply != 'y':\n    exit()\n\nlinks = [\n    'https://drive.google.com/uc?id=1z9V5zxLOJLNt1Uj7RFqaP2FZWKzyXvVc',\n    'https://drive.google.com/uc?id=11-IzgNwEAPxgagb67FSrBdzZR7OKAEdJ',\n    'https://drive.google.com/uc?id=1ZfIv6GTo-OGpXpoKen1fUvDQ0A_WoQ-Q',\n    'https://drive.google.com/uc?id=1G4eXgYS2kL7_Cc0x3N1g1x7Zl8D_aU_-',\n    'https://drive.google.com/uc?id=1Y8q0V_oBwJIY27W_6-8CD1dRqV2gNTdE',\n    'https://drive.google.com/uc?id=1nawBAazf_unMv46qGBHhWcQ4JXZ5883r',\n]\n\nnames = [\n    'BL30K_a.tar',\n    'BL30K_b.tar',\n    'BL30K_c.tar',\n    'BL30K_d.tar',\n    'BL30K_e.tar',\n    'BL30K_f.tar',\n]\n\nfor i, link in enumerate(links):\n    print('Downloading segment %d/%d ...' % (i, len(links)))\n    gdown.download(link, output='../%s' % names[i], quiet=False)\n    print('Extracting...')\n    with tarfile.open('../%s' % names[i], 'r') as tar_file:\n        tar_file.extractall('../%s' % names[i])\n    print('Cleaning up...')\n    os.remove('../%s' % names[i])\n\n\nprint('Done.')"
  },
  {
    "path": "XMem/scripts/download_datasets.py",
    "content": "import os\nimport gdown\nimport zipfile\nfrom scripts import resize_youtube\n\n\nLICENSE = \"\"\"\nThese are either re-distribution of the original datasets or derivatives (through simple processing) of the original datasets. \nPlease read and respect their licenses and terms before use. \nYou should cite the original papers if you use any of the datasets.\n\nFor BL30K, see download_bl30k.py\n\nLinks:\nDUTS: http://saliencydetection.net/duts\nHRSOD: https://github.com/yi94code/HRSOD\nFSS: https://github.com/HKUSTCV/FSS-1000\nECSSD: https://www.cse.cuhk.edu.hk/leojia/projects/hsaliency/dataset.html\nBIG: https://github.com/hkchengrex/CascadePSP\n\nYouTubeVOS: https://youtube-vos.org\nDAVIS: https://davischallenge.org/\nBL30K: https://github.com/hkchengrex/MiVOS\nLong-Time Video: https://github.com/xmlyqing00/AFB-URR\n\"\"\"\n\nprint(LICENSE)\nprint('Datasets will be downloaded and extracted to ../YouTube, ../YouTube2018, ../static, ../DAVIS, ../long_video_set')\nreply = input('[y] to confirm, others to exit: ')\nif reply != 'y':\n    exit()\n\n\n\"\"\"\nStatic image data\n\"\"\"\nos.makedirs('../static', exist_ok=True)\nprint('Downloading static datasets...')\ngdown.download('https://drive.google.com/uc?id=1wUJq3HcLdN-z1t4CsUhjeZ9BVDb9YKLd', output='../static/static_data.zip', quiet=False)\nprint('Extracting static datasets...')\nwith zipfile.ZipFile('../static/static_data.zip', 'r') as zip_file:\n    zip_file.extractall('../static/')\nprint('Cleaning up static datasets...')\nos.remove('../static/static_data.zip')\n\n\n\"\"\"\nDAVIS dataset\n\"\"\"\n# Google drive mirror: https://drive.google.com/drive/folders/1hEczGHw7qcMScbCJukZsoOW4Q9byx16A?usp=sharing\nos.makedirs('../DAVIS/2017', exist_ok=True)\n\nprint('Downloading DAVIS 2016...')\ngdown.download('https://drive.google.com/uc?id=198aRlh5CpAoFz0hfRgYbiNenn_K8DxWD', output='../DAVIS/DAVIS-data.zip', quiet=False)\n\nprint('Downloading DAVIS 2017 trainval...')\ngdown.download('https://drive.google.com/uc?id=1kiaxrX_4GuW6NmiVuKGSGVoKGWjOdp6d', output='../DAVIS/2017/DAVIS-2017-trainval-480p.zip', quiet=False)\n\nprint('Downloading DAVIS 2017 testdev...')\ngdown.download('https://drive.google.com/uc?id=1fmkxU2v9cQwyb62Tj1xFDdh2p4kDsUzD', output='../DAVIS/2017/DAVIS-2017-test-dev-480p.zip', quiet=False)\n\nprint('Downloading DAVIS 2017 scribbles...')\ngdown.download('https://drive.google.com/uc?id=1JzIQSu36h7dVM8q0VoE4oZJwBXvrZlkl', output='../DAVIS/2017/DAVIS-2017-scribbles-trainval.zip', quiet=False)\n\nprint('Extracting DAVIS datasets...')\nwith zipfile.ZipFile('../DAVIS/DAVIS-data.zip', 'r') as zip_file:\n    zip_file.extractall('../DAVIS/')\nos.rename('../DAVIS/DAVIS', '../DAVIS/2016')\n\nwith zipfile.ZipFile('../DAVIS/2017/DAVIS-2017-trainval-480p.zip', 'r') as zip_file:\n    zip_file.extractall('../DAVIS/2017/')\nwith zipfile.ZipFile('../DAVIS/2017/DAVIS-2017-scribbles-trainval.zip', 'r') as zip_file:\n    zip_file.extractall('../DAVIS/2017/')\nos.rename('../DAVIS/2017/DAVIS', '../DAVIS/2017/trainval')\n\nwith zipfile.ZipFile('../DAVIS/2017/DAVIS-2017-test-dev-480p.zip', 'r') as zip_file:\n    zip_file.extractall('../DAVIS/2017/')\nos.rename('../DAVIS/2017/DAVIS', '../DAVIS/2017/test-dev')\n\nprint('Cleaning up DAVIS datasets...')\nos.remove('../DAVIS/2017/DAVIS-2017-trainval-480p.zip')\nos.remove('../DAVIS/2017/DAVIS-2017-test-dev-480p.zip')\nos.remove('../DAVIS/2017/DAVIS-2017-scribbles-trainval.zip')\nos.remove('../DAVIS/DAVIS-data.zip')\n\n\n\"\"\"\nYouTubeVOS dataset\n\"\"\"\nos.makedirs('../YouTube', exist_ok=True)\nos.makedirs('../YouTube/all_frames', exist_ok=True)\n\nprint('Downloading YouTubeVOS train...')\ngdown.download('https://drive.google.com/uc?id=13Eqw0gVK-AO5B-cqvJ203mZ2vzWck9s4', output='../YouTube/train.zip', quiet=False)\nprint('Downloading YouTubeVOS val...')\ngdown.download('https://drive.google.com/uc?id=1o586Wjya-f2ohxYf9C1RlRH-gkrzGS8t', output='../YouTube/valid.zip', quiet=False)\nprint('Downloading YouTubeVOS all frames valid...')\ngdown.download('https://drive.google.com/uc?id=1rWQzZcMskgpEQOZdJPJ7eTmLCBEIIpEN', output='../YouTube/all_frames/valid.zip', quiet=False)\n\nprint('Extracting YouTube datasets...')\nwith zipfile.ZipFile('../YouTube/train.zip', 'r') as zip_file:\n    zip_file.extractall('../YouTube/')\nwith zipfile.ZipFile('../YouTube/valid.zip', 'r') as zip_file:\n    zip_file.extractall('../YouTube/')\nwith zipfile.ZipFile('../YouTube/all_frames/valid.zip', 'r') as zip_file:\n    zip_file.extractall('../YouTube/all_frames')\n\nprint('Cleaning up YouTubeVOS datasets...')\nos.remove('../YouTube/train.zip')\nos.remove('../YouTube/valid.zip')\nos.remove('../YouTube/all_frames/valid.zip')\n\nprint('Resizing YouTubeVOS to 480p...')\nresize_youtube.resize_all('../YouTube/train', '../YouTube/train_480p')\n\n# YouTubeVOS 2018\nos.makedirs('../YouTube2018', exist_ok=True)\nos.makedirs('../YouTube2018/all_frames', exist_ok=True)\n\nprint('Downloading YouTubeVOS2018 val...')\ngdown.download('https://drive.google.com/uc?id=1-QrceIl5sUNTKz7Iq0UsWC6NLZq7girr', output='../YouTube2018/valid.zip', quiet=False)\nprint('Downloading YouTubeVOS2018 all frames valid...')\ngdown.download('https://drive.google.com/uc?id=1yVoHM6zgdcL348cFpolFcEl4IC1gorbV', output='../YouTube2018/all_frames/valid.zip', quiet=False)\n\nprint('Extracting YouTube2018 datasets...')\nwith zipfile.ZipFile('../YouTube2018/valid.zip', 'r') as zip_file:\n    zip_file.extractall('../YouTube2018/')\nwith zipfile.ZipFile('../YouTube2018/all_frames/valid.zip', 'r') as zip_file:\n    zip_file.extractall('../YouTube2018/all_frames')\n\nprint('Cleaning up YouTubeVOS2018 datasets...')\nos.remove('../YouTube2018/valid.zip')\nos.remove('../YouTube2018/all_frames/valid.zip')\n\n\n\"\"\"\nLong-Time Video dataset\n\"\"\"\nos.makedirs('../long_video_set', exist_ok=True)\nprint('Downloading long video dataset...')\ngdown.download('https://drive.google.com/uc?id=100MxAuV0_UL20ca5c-5CNpqQ5QYPDSoz', output='../long_video_set/LongTimeVideo.zip', quiet=False)\nprint('Extracting long video dataset...')\nwith zipfile.ZipFile('../long_video_set/LongTimeVideo.zip', 'r') as zip_file:\n    zip_file.extractall('../long_video_set/')\nprint('Cleaning up long video dataset...')\nos.remove('../long_video_set/LongTimeVideo.zip')\n\n\nprint('Done.')"
  },
  {
    "path": "XMem/scripts/download_models.sh",
    "content": "wget -P ./saves/ https://github.com/hkchengrex/XMem/releases/download/v1.0/XMem.pth\nwget -P ./saves/ https://github.com/hkchengrex/XMem/releases/download/v1.0/XMem-s012.pth"
  },
  {
    "path": "XMem/scripts/download_models_demo.sh",
    "content": "wget -P ./saves/ https://github.com/hkchengrex/XMem/releases/download/v1.0/XMem.pth\nwget -P ./saves/ https://github.com/hkchengrex/XMem/releases/download/v1.0/fbrs.pth\nwget -P ./saves/ https://github.com/hkchengrex/XMem/releases/download/v1.0/s2m.pth"
  },
  {
    "path": "XMem/scripts/expand_long_vid.py",
    "content": "import sys\nimport os\nfrom os import path\nfrom shutil import copy2\n\ninput_path = sys.argv[1]\noutput_path = sys.argv[2]\nmultiplier = int(sys.argv[3])\nimage_path = path.join(input_path, 'JPEGImages')\ngt_path = path.join(input_path, 'Annotations')\n\nvideos = sorted(os.listdir(image_path))\n\nfor vid in videos:\n    os.makedirs(path.join(output_path, 'JPEGImages', vid), exist_ok=True)\n    os.makedirs(path.join(output_path, 'Annotations', vid), exist_ok=True)\n    frames = sorted(os.listdir(path.join(image_path, vid)))\n\n    num_frames = len(frames)\n    counter = 0\n    output_counter = 0\n    direction = 1\n    for _ in range(multiplier):\n        for _ in range(num_frames):\n            copy2(path.join(image_path, vid, frames[counter]), \n                    path.join(output_path, 'JPEGImages', vid, f'{output_counter:05d}.jpg'))\n\n            mask_path = path.join(gt_path, vid, frames[counter].replace('.jpg', '.png'))\n            if path.exists(mask_path):\n                copy2(mask_path, \n                    path.join(output_path, 'Annotations', vid, f'{output_counter:05d}.png'))\n\n            counter += direction\n            output_counter += 1\n            if counter == 0 or counter == len(frames) - 1:\n                direction *= -1\n"
  },
  {
    "path": "XMem/scripts/resize_youtube.py",
    "content": "import sys\nimport os\nfrom os import path\n\nfrom PIL import Image\nimport numpy as np\nfrom progressbar import progressbar\nfrom multiprocessing import Pool\n\nnew_min_size = 480\n\ndef resize_vid_jpeg(inputs):\n    vid_name, folder_path, out_path = inputs\n\n    vid_path = path.join(folder_path, vid_name)\n    vid_out_path = path.join(out_path, 'JPEGImages', vid_name)\n    os.makedirs(vid_out_path, exist_ok=True)\n\n    for im_name in os.listdir(vid_path):\n        hr_im = Image.open(path.join(vid_path, im_name))\n        w, h = hr_im.size\n\n        ratio = new_min_size / min(w, h)\n\n        lr_im = hr_im.resize((int(w*ratio), int(h*ratio)), Image.BICUBIC)\n        lr_im.save(path.join(vid_out_path, im_name))\n\ndef resize_vid_anno(inputs):\n    vid_name, folder_path, out_path = inputs\n\n    vid_path = path.join(folder_path, vid_name)\n    vid_out_path = path.join(out_path, 'Annotations', vid_name)\n    os.makedirs(vid_out_path, exist_ok=True)\n\n    for im_name in os.listdir(vid_path):\n        hr_im = Image.open(path.join(vid_path, im_name)).convert('P')\n        w, h = hr_im.size\n\n        ratio = new_min_size / min(w, h)\n\n        lr_im = hr_im.resize((int(w*ratio), int(h*ratio)), Image.NEAREST)\n        lr_im.save(path.join(vid_out_path, im_name))\n\n\ndef resize_all(in_path, out_path):\n    for folder in os.listdir(in_path):\n\n        if folder not in ['JPEGImages', 'Annotations']:\n            continue\n        folder_path = path.join(in_path, folder)\n        videos = os.listdir(folder_path)\n\n        videos = [(v, folder_path, out_path) for v in videos]\n\n        if folder == 'JPEGImages':\n            print('Processing images')\n            os.makedirs(path.join(out_path, 'JPEGImages'), exist_ok=True)\n\n            pool = Pool(processes=8)\n            for _ in progressbar(pool.imap_unordered(resize_vid_jpeg, videos), max_value=len(videos)):\n                pass\n        else:\n            print('Processing annotations')\n            os.makedirs(path.join(out_path, 'Annotations'), exist_ok=True)\n\n            pool = Pool(processes=8)\n            for _ in progressbar(pool.imap_unordered(resize_vid_anno, videos), max_value=len(videos)):\n                pass\n\n\nif __name__ == '__main__':\n    in_path = sys.argv[1]\n    out_path = sys.argv[2]\n\n    resize_all(in_path, out_path)\n\n    print('Done.')"
  },
  {
    "path": "XMem/tracking.py",
    "content": "import sys\nsys.path.insert(0, './XMem')\n\nimport os\nimport os.path as osp\nimport glob\nimport cv2\nimport json\nimport argparse\nimport multiprocessing as mp\nfrom tqdm import tqdm\nfrom termcolor import colored\n\nfrom importlib.util import find_spec\nif find_spec(\"GPUtil\") is None: os.system(\"pip install gputil\")\nimport GPUtil\n\n_GPU_LIST = [_.id for _ in GPUtil.getGPUs()]\n_GPU_QUEUE = mp.Queue()\nfor _ in _GPU_LIST: _GPU_QUEUE.put(_)\n\ndef run_eval(meta_expression, temp_xmem_anno, final_xmem_anno, img_dir, split_part, xmem_weight, cfgs=\" --reversed \", ):\n    gpu_id = _GPU_QUEUE.get()\n    cmd = f\"cd XMem && CUDA_VISIBLE_DEVICES={gpu_id} python eval.py --meta_exp {meta_expression} --output {final_xmem_anno} --generic_path {temp_xmem_anno} --img_dir {img_dir} --split_part {split_part} --model {xmem_weight} --dataset G {cfgs}\"\n    print(f\"Running: {cmd}\")\n    os.system(cmd)\n    _GPU_QUEUE.put(gpu_id)\n\ndef generate(obj, temp_xmem_anno, final_xmem_anno):\n\n    obj_dir, video_name, obj_id, tp = obj\n    img_list = glob.glob(obj_dir + '/*.png')  # Mask\n    img_list.sort()\n    frame_id = int(len(img_list) * tp)\n    if frame_id == len(img_list):\n        frame_id -= 1\n    \n    used_img = img_list[frame_id]\n\n    img_output_path = osp.join(temp_xmem_anno, video_name, obj_id, osp.basename(used_img))\n    final_img_output_dir = osp.join(final_xmem_anno, video_name, obj_id)\n    img_output_dir = osp.dirname(img_output_path)\n    os.makedirs(img_output_dir, exist_ok=True)\n    os.makedirs(final_img_output_dir, exist_ok=True)\n    os.system('cp {} {}'.format(used_img, img_output_path))\n\n    img = cv2.imread(img_output_path)\n    if img.sum() == 0:\n        target_img_list = [i.split('/')[-1] for i in img_list]\n        for img_ in target_img_list:\n            print(os.path.join(final_img_output_dir, img_))\n            os.system('cp {} {}'.format(img_output_path, os.path.join(img_output_dir, img_)))\n            os.system('cp {} {}'.format(img_output_path, os.path.join(final_img_output_dir, img_)))\n    return 0\n\ndef prepare(args):\n    video_root      = args.video_root\n    temp_xmem_anno  = args.temp_xmem_anno\n    final_xmem_anno = args.final_xmem_anno\n    os.makedirs(temp_xmem_anno, exist_ok=True)\n\n    data = json.load(open(args.llama_vid_meta, 'r'))['videos']\n\n    all_obj_list = []\n    for video_name in data.keys():\n        exps = data[video_name]['expressions']\n        for obj_id in exps.keys():\n            tp = exps[obj_id]['tp']\n            obj_dir = os.path.join(video_root, video_name, obj_id)\n            all_obj_list.append([obj_dir, video_name, obj_id, tp])\n\n    print('start')\n    cpu_num = mp.cpu_count()-1\n    print(\"cpu_num:\", cpu_num)\n    pool = mp.Pool(cpu_num)\n    pbar = tqdm(total=len(all_obj_list))\n\n    for obj in all_obj_list:\n        pool.apply_async(\n            generate, \n            args           = (obj, temp_xmem_anno, final_xmem_anno ),\n            callback       = lambda *a: pbar.update(1),\n            error_callback = lambda e: print(colored(e, \"red\"))\n        )\n        \n    pool.close()\n    pool.join()\n    pbar.close()\n\ndef inference(args):\n    p = mp.Pool(8)\n    for split_part in [0, 1, 2, 3]:\n        for cfgs in [\"  \", \" --reversed \"]:\n            p.apply_async(\n                run_eval,\n                args=(args.llama_vid_meta, args.temp_xmem_anno, args.final_xmem_anno, args.img_dir, split_part, args.xmem_weight, cfgs),\n                error_callback=lambda e: print(colored(e, \"red\"))\n            )\n    p.close()\n    p.join()\n\n\"\"\"\npython XMem/tracking.py \\\n    --video_root      /mnt/public03/dataset/ovis/rgvos/visa7b/val_7b/revos_valid/Annotations \\\n    --temp_xmem_anno  /mnt/public03/dataset/ovis/rgvos/visa7b/val_7b/revos_valid/revos_valid_XMem_temp/Annotations \\\n    --final_xmem_anno /mnt/public03/dataset/ovis/rgvos/visa7b/val_7b/revos_valid/revos_valid_XMem_final/Annotations \\\n    --llama_vid_meta  /mnt/public02/usr/yancilin/clyan_data/other-datasets/ReVOS/meta_expressions_valid__llamavid.json \\\n    --img_dir         /mnt/public02/usr/yancilin/clyan_data/other-datasets/ReVOS/JPEGImages \\\n    --xmem_weight     /mnt/public02/usr/yancilin/VISA/XMem/weights/XMem.pth\n\"\"\"\n\ndef main():\n    parser = argparse.ArgumentParser(description='rgvos')\n    parser.add_argument('--video_root',      type=str, help='/PATH/TO/VISA_exp/revos_valid/Annotations', )\n    parser.add_argument('--temp_xmem_anno',  type=str, help='/PATH/TO/VISA_exp/revos_valid_XMem_temp/Annotations', )  # 保存单帧 Mask 的路径\n    parser.add_argument('--final_xmem_anno', type=str, help='/PATH/TO/VISA_exp/revos_valid_XMem_final/Annotations', )  # 保存 XMem 最后输出结果的路径\n    parser.add_argument(\"--llama_vid_meta\",  type=str, help='/PATH/TO/ReVOS/meta_expressions_valid__llamavid.json', )\n    parser.add_argument(\"--img_dir\",         type=str, help='/PATH/TO/ReVOS/JPEGImages')\n    parser.add_argument(\"--xmem_weight\",     type=str, help='/PATH/TO/XMEM_WEIGHT')\n    args = parser.parse_args()\n\n    prepare(args)\n    inference(args)\n\n    print('Done.')\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "XMem/train.py",
    "content": "import datetime\nfrom os import path\nimport math\nimport git\n\nimport random\nimport numpy as np\nimport torch\nfrom torch.utils.data import DataLoader, ConcatDataset\nimport torch.distributed as distributed\n\nfrom model.trainer import XMemTrainer\nfrom dataset.static_dataset import StaticTransformDataset\nfrom dataset.vos_dataset import VOSDataset\n\nfrom util.logger import TensorboardLogger\nfrom util.configuration import Configuration\nfrom util.load_subset import load_sub_davis, load_sub_yv\n\n\n\"\"\"\nInitial setup\n\"\"\"\n# Init distributed environment\ndistributed.init_process_group(backend=\"nccl\")\nprint(f'CUDA Device count: {torch.cuda.device_count()}')\n\n# Parse command line arguments\nraw_config = Configuration()\nraw_config.parse()\n\nif raw_config['benchmark']:\n    torch.backends.cudnn.benchmark = True\n\n# Get current git info\nrepo = git.Repo(\".\")\ngit_info = str(repo.active_branch)+' '+str(repo.head.commit.hexsha)\n\nlocal_rank = torch.distributed.get_rank()\nworld_size = torch.distributed.get_world_size()\ntorch.cuda.set_device(local_rank)\n\nprint(f'I am rank {local_rank} in this world of size {world_size}!')\n\nnetwork_in_memory = None\nstages = raw_config['stages']\nstages_to_perform = list(stages)\nfor si, stage in enumerate(stages_to_perform):\n\n    # Set seed to ensure the same initialization\n    torch.manual_seed(14159265)\n    np.random.seed(14159265)\n    random.seed(14159265)\n\n    # Pick stage specific hyperparameters out\n    stage_config = raw_config.get_stage_parameters(stage)\n    config = dict(**raw_config.args, **stage_config)\n    if config['exp_id'] != 'NULL':\n        config['exp_id'] = config['exp_id']+'_s%s'%stages[:si+1]\n\n    config['single_object'] = (stage == '0')\n\n    config['num_gpus'] = world_size\n    if config['batch_size']//config['num_gpus']*config['num_gpus'] != config['batch_size']:\n        raise ValueError('Batch size must be divisible by the number of GPUs.')\n    config['batch_size'] //= config['num_gpus']\n    config['num_workers'] //= config['num_gpus']\n    print(f'We are assuming {config[\"num_gpus\"]} GPUs.')\n\n    print(f'We are now starting stage {stage}')\n\n    \"\"\"\n    Model related\n    \"\"\"\n    if local_rank == 0:\n        # Logging\n        if config['exp_id'].lower() != 'null':\n            print('I will take the role of logging!')\n            long_id = '%s_%s' % (datetime.datetime.now().strftime('%b%d_%H.%M.%S'), config['exp_id'])\n        else:\n            long_id = None\n        logger = TensorboardLogger(config['exp_id'], long_id, git_info)\n        logger.log_string('hyperpara', str(config))\n\n        # Construct the rank 0 model\n        model = XMemTrainer(config, logger=logger, \n                        save_path=path.join('saves', long_id, long_id) if long_id is not None else None, \n                        local_rank=local_rank, world_size=world_size).train()\n    else:\n        # Construct model for other ranks\n        model = XMemTrainer(config, local_rank=local_rank, world_size=world_size).train()\n\n    # Load pertrained model if needed\n    if raw_config['load_checkpoint'] is not None:\n        total_iter = model.load_checkpoint(raw_config['load_checkpoint'])\n        raw_config['load_checkpoint'] = None\n        print('Previously trained model loaded!')\n    else:\n        total_iter = 0\n\n    if network_in_memory is not None:\n        print('I am loading network from the previous stage')\n        model.load_network_in_memory(network_in_memory)\n        network_in_memory = None\n    elif raw_config['load_network'] is not None:\n        print('I am loading network from a disk, as listed in configuration')\n        model.load_network(raw_config['load_network'])\n        raw_config['load_network'] = None\n\n    \"\"\"\n    Dataloader related\n    \"\"\"\n    # To re-seed the randomness everytime we start a worker\n    def worker_init_fn(worker_id): \n        worker_seed = torch.initial_seed()%(2**31) + worker_id + local_rank*100\n        np.random.seed(worker_seed)\n        random.seed(worker_seed)\n\n    def construct_loader(dataset):\n        train_sampler = torch.utils.data.distributed.DistributedSampler(dataset, rank=local_rank, shuffle=True)\n        train_loader = DataLoader(dataset, config['batch_size'], sampler=train_sampler, num_workers=config['num_workers'],\n                                worker_init_fn=worker_init_fn, drop_last=True)\n        return train_sampler, train_loader\n\n    def renew_vos_loader(max_skip, finetune=False):\n        # //5 because we only have annotation for every five frames\n        yv_dataset = VOSDataset(path.join(yv_root, 'JPEGImages'), \n                            path.join(yv_root, 'Annotations'), max_skip//5, is_bl=False, subset=load_sub_yv(), num_frames=config['num_frames'], finetune=finetune)\n        davis_dataset = VOSDataset(path.join(davis_root, 'JPEGImages', '480p'), \n                            path.join(davis_root, 'Annotations', '480p'), max_skip, is_bl=False, subset=load_sub_davis(), num_frames=config['num_frames'], finetune=finetune)\n        train_dataset = ConcatDataset([davis_dataset]*5 + [yv_dataset])\n\n        print(f'YouTube dataset size: {len(yv_dataset)}')\n        print(f'DAVIS dataset size: {len(davis_dataset)}')\n        print(f'Concat dataset size: {len(train_dataset)}')\n        print(f'Renewed with {max_skip=}')\n\n        return construct_loader(train_dataset)\n\n    def renew_bl_loader(max_skip, finetune=False):\n        train_dataset = VOSDataset(path.join(bl_root, 'JPEGImages'), \n                            path.join(bl_root, 'Annotations'), max_skip, is_bl=True, num_frames=config['num_frames'], finetune=finetune)\n\n        print(f'Blender dataset size: {len(train_dataset)}')\n        print(f'Renewed with {max_skip=}')\n\n        return construct_loader(train_dataset)\n\n    \"\"\"\n    Dataset related\n    \"\"\"\n\n    \"\"\"\n    These define the training schedule of the distance between frames\n    We will switch to max_skip_values[i] once we pass the percentage specified by increase_skip_fraction[i]\n    Not effective for stage 0 training\n    The initial value is not listed here but in renew_vos_loader(X)\n    \"\"\"\n    max_skip_values = [10, 15, 5, 5]\n\n    if stage == '0':\n        static_root = path.expanduser(config['static_root'])\n        # format: path, method (style of storing images), mutliplier\n        train_dataset = StaticTransformDataset(\n            [\n                (path.join(static_root, 'fss'), 0, 1),\n                (path.join(static_root, 'DUTS-TR'), 1, 1),\n                (path.join(static_root, 'DUTS-TE'), 1, 1),\n                (path.join(static_root, 'ecssd'), 1, 1),\n                (path.join(static_root, 'BIG_small'), 1, 5),\n                (path.join(static_root, 'HRSOD_small'), 1, 5),\n            ], num_frames=config['num_frames'])\n        train_sampler, train_loader = construct_loader(train_dataset)\n\n        print(f'Static dataset size: {len(train_dataset)}')\n    elif stage == '1':\n        increase_skip_fraction = [0.1, 0.3, 0.8, 100]\n        bl_root = path.join(path.expanduser(config['bl_root']))\n\n        train_sampler, train_loader = renew_bl_loader(5)\n        renew_loader = renew_bl_loader\n    else:\n        # stage 2 or 3\n        increase_skip_fraction = [0.1, 0.3, 0.9, 100]\n        # VOS dataset, 480p is used for both datasets\n        yv_root = path.join(path.expanduser(config['yv_root']), 'train_480p')\n        davis_root = path.join(path.expanduser(config['davis_root']), '2017', 'trainval')\n\n        train_sampler, train_loader = renew_vos_loader(5)\n        renew_loader = renew_vos_loader\n\n\n    \"\"\"\n    Determine max epoch\n    \"\"\"\n    total_epoch = math.ceil(config['iterations']/len(train_loader))\n    current_epoch = total_iter // len(train_loader)\n    print(f'We approximately use {total_epoch} epochs.')\n    if stage != '0':\n        change_skip_iter = [round(config['iterations']*f) for f in increase_skip_fraction]\n        # Skip will only change after an epoch, not in the middle\n        print(f'The skip value will change approximately at the following iterations: {change_skip_iter[:-1]}')\n\n    \"\"\"\n    Starts training\n    \"\"\"\n    finetuning = False\n    # Need this to select random bases in different workers\n    np.random.seed(np.random.randint(2**30-1) + local_rank*100)\n    try:\n        while total_iter < config['iterations'] + config['finetune']:\n            \n            # Crucial for randomness! \n            train_sampler.set_epoch(current_epoch)\n            current_epoch += 1\n            print(f'Current epoch: {current_epoch}')\n\n            # Train loop\n            model.train()\n            for data in train_loader:\n                # Update skip if needed\n                if stage!='0' and total_iter >= change_skip_iter[0]:\n                    while total_iter >= change_skip_iter[0]:\n                        cur_skip = max_skip_values[0]\n                        max_skip_values = max_skip_values[1:]\n                        change_skip_iter = change_skip_iter[1:]\n                    print(f'Changing skip to {cur_skip=}')\n                    train_sampler, train_loader = renew_loader(cur_skip)\n                    break\n\n                # fine-tune means fewer augmentations to train the sensory memory\n                if config['finetune'] > 0 and not finetuning and total_iter >= config['iterations']:\n                    train_sampler, train_loader = renew_loader(cur_skip, finetune=True)\n                    finetuning = True\n                    model.save_network_interval = 1000\n                    break\n\n                model.do_pass(data, total_iter)\n                total_iter += 1\n\n                if total_iter >= config['iterations'] + config['finetune']:\n                    break\n    finally:\n        if not config['debug'] and model.logger is not None and total_iter>5000:\n            model.save_network(total_iter)\n            model.save_checkpoint(total_iter)\n\n    network_in_memory = model.XMem.module.state_dict()\n\ndistributed.destroy_process_group()\n"
  },
  {
    "path": "XMem/util/__init__.py",
    "content": ""
  },
  {
    "path": "XMem/util/configuration.py",
    "content": "from argparse import ArgumentParser\n\n\ndef none_or_default(x, default):\n    return x if x is not None else default\n\nclass Configuration():\n    def parse(self, unknown_arg_ok=False):\n        parser = ArgumentParser()\n\n        # Enable torch.backends.cudnn.benchmark -- Faster in some cases, test in your own environment\n        parser.add_argument('--benchmark', action='store_true')\n        parser.add_argument('--no_amp', action='store_true')\n\n        # Data parameters\n        parser.add_argument('--static_root', help='Static training data root', default='../static')\n        parser.add_argument('--bl_root', help='Blender training data root', default='../BL30K')\n        parser.add_argument('--yv_root', help='YouTubeVOS data root', default='../YouTube')\n        parser.add_argument('--davis_root', help='DAVIS data root', default='../DAVIS')\n        parser.add_argument('--num_workers', help='Total number of dataloader workers across all GPUs processes', type=int, default=16)\n\n        parser.add_argument('--key_dim', default=64, type=int)\n        parser.add_argument('--value_dim', default=512, type=int)\n        parser.add_argument('--hidden_dim', default=64, help='Set to =0 to disable', type=int)\n\n        parser.add_argument('--deep_update_prob', default=0.2, type=float)\n\n        parser.add_argument('--stages', help='Training stage (0-static images, 1-Blender dataset, 2-DAVIS+YouTubeVOS)', default='02')\n\n        \"\"\"\n        Stage-specific learning parameters\n        Batch sizes are effective -- you don't have to scale them when you scale the number processes\n        \"\"\"\n        # Stage 0, static images\n        parser.add_argument('--s0_batch_size', default=16, type=int)\n        parser.add_argument('--s0_iterations', default=150000, type=int)\n        parser.add_argument('--s0_finetune', default=0, type=int)\n        parser.add_argument('--s0_steps', nargs=\"*\", default=[], type=int)\n        parser.add_argument('--s0_lr', help='Initial learning rate', default=1e-5, type=float)\n        parser.add_argument('--s0_num_ref_frames', default=2, type=int)\n        parser.add_argument('--s0_num_frames', default=3, type=int)\n        parser.add_argument('--s0_start_warm', default=20000, type=int)\n        parser.add_argument('--s0_end_warm', default=70000, type=int)\n\n        # Stage 1, BL30K\n        parser.add_argument('--s1_batch_size', default=8, type=int)\n        parser.add_argument('--s1_iterations', default=250000, type=int)\n        # fine-tune means fewer augmentations to train the sensory memory\n        parser.add_argument('--s1_finetune', default=0, type=int)\n        parser.add_argument('--s1_steps', nargs=\"*\", default=[200000], type=int)\n        parser.add_argument('--s1_lr', help='Initial learning rate', default=1e-5, type=float)\n        parser.add_argument('--s1_num_ref_frames', default=3, type=int)\n        parser.add_argument('--s1_num_frames', default=8, type=int)\n        parser.add_argument('--s1_start_warm', default=20000, type=int)\n        parser.add_argument('--s1_end_warm', default=70000, type=int)\n\n        # Stage 2, DAVIS+YoutubeVOS, longer\n        parser.add_argument('--s2_batch_size', default=8, type=int)\n        parser.add_argument('--s2_iterations', default=150000, type=int)\n        # fine-tune means fewer augmentations to train the sensory memory\n        parser.add_argument('--s2_finetune', default=10000, type=int)\n        parser.add_argument('--s2_steps', nargs=\"*\", default=[120000], type=int)\n        parser.add_argument('--s2_lr', help='Initial learning rate', default=1e-5, type=float)\n        parser.add_argument('--s2_num_ref_frames', default=3, type=int)\n        parser.add_argument('--s2_num_frames', default=8, type=int)\n        parser.add_argument('--s2_start_warm', default=20000, type=int)\n        parser.add_argument('--s2_end_warm', default=70000, type=int)\n\n        # Stage 3, DAVIS+YoutubeVOS, shorter\n        parser.add_argument('--s3_batch_size', default=8, type=int)\n        parser.add_argument('--s3_iterations', default=100000, type=int)\n        # fine-tune means fewer augmentations to train the sensory memory\n        parser.add_argument('--s3_finetune', default=10000, type=int)\n        parser.add_argument('--s3_steps', nargs=\"*\", default=[80000], type=int)\n        parser.add_argument('--s3_lr', help='Initial learning rate', default=1e-5, type=float)\n        parser.add_argument('--s3_num_ref_frames', default=3, type=int)\n        parser.add_argument('--s3_num_frames', default=8, type=int)\n        parser.add_argument('--s3_start_warm', default=20000, type=int)\n        parser.add_argument('--s3_end_warm', default=70000, type=int)\n\n        parser.add_argument('--gamma', help='LR := LR*gamma at every decay step', default=0.1, type=float)\n        parser.add_argument('--weight_decay', default=0.05, type=float)\n\n        # Loading\n        parser.add_argument('--load_network', help='Path to pretrained network weight only')\n        parser.add_argument('--load_checkpoint', help='Path to the checkpoint file, including network, optimizer and such')\n\n        # Logging information\n        parser.add_argument('--log_text_interval', default=100, type=int)\n        parser.add_argument('--log_image_interval', default=1000, type=int)\n        parser.add_argument('--save_network_interval', default=25000, type=int)\n        parser.add_argument('--save_checkpoint_interval', default=50000, type=int)\n        parser.add_argument('--exp_id', help='Experiment UNIQUE id, use NULL to disable logging to tensorboard', default='NULL')\n        parser.add_argument('--debug', help='Debug mode which logs information more often', action='store_true')\n\n        # # Multiprocessing parameters, not set by users\n        # parser.add_argument('--local_rank', default=0, type=int, help='Local rank of this process')\n\n        if unknown_arg_ok:\n            args, _ = parser.parse_known_args()\n            self.args = vars(args)\n        else:\n            self.args = vars(parser.parse_args())\n\n        self.args['amp'] = not self.args['no_amp']\n\n        # check if the stages are valid\n        stage_to_perform = list(self.args['stages'])\n        for s in stage_to_perform:\n            if s not in ['0', '1', '2', '3']:\n                raise NotImplementedError\n\n    def get_stage_parameters(self, stage):\n        parameters = {\n            'batch_size': self.args['s%s_batch_size'%stage],\n            'iterations': self.args['s%s_iterations'%stage],\n            'finetune': self.args['s%s_finetune'%stage],\n            'steps': self.args['s%s_steps'%stage],\n            'lr': self.args['s%s_lr'%stage],\n            'num_ref_frames': self.args['s%s_num_ref_frames'%stage],\n            'num_frames': self.args['s%s_num_frames'%stage],\n            'start_warm': self.args['s%s_start_warm'%stage],\n            'end_warm': self.args['s%s_end_warm'%stage],\n        }\n\n        return parameters\n\n    def __getitem__(self, key):\n        return self.args[key]\n\n    def __setitem__(self, key, value):\n        self.args[key] = value\n\n    def __str__(self):\n        return str(self.args)\n"
  },
  {
    "path": "XMem/util/davis_subset.txt",
    "content": "bear\nbmx-bumps\nboat\nboxing-fisheye\nbreakdance-flare\nbus\ncar-turn\ncat-girl\nclassic-car\ncolor-run\ncrossing\ndance-jump\ndancing\ndisc-jockey\ndog-agility\ndog-gooses\ndogs-scale\ndrift-turn\ndrone\nelephant\nflamingo\nhike\nhockey\nhorsejump-low\nkid-football\nkite-walk\nkoala\nlady-running\nlindy-hop\nlongboard\nlucia\nmallard-fly\nmallard-water\nmiami-surf\nmotocross-bumps\nmotorbike\nnight-race\nparagliding\nplanes-water\nrallye\nrhino\nrollerblade\nschoolgirls\nscooter-board\nscooter-gray\nsheep\nskate-park\nsnowboard\nsoccerball\nstroller\nstunt\nsurf\nswing\ntennis\ntractor-sand\ntrain\ntuk-tuk\nupside-down\nvaranus-cage\nwalking"
  },
  {
    "path": "XMem/util/image_saver.py",
    "content": "import cv2\nimport numpy as np\n\nimport torch\nfrom dataset.range_transform import inv_im_trans\nfrom collections import defaultdict\n\ndef tensor_to_numpy(image):\n    image_np = (image.numpy() * 255).astype('uint8')\n    return image_np\n\ndef tensor_to_np_float(image):\n    image_np = image.numpy().astype('float32')\n    return image_np\n\ndef detach_to_cpu(x):\n    return x.detach().cpu()\n\ndef transpose_np(x):\n    return np.transpose(x, [1,2,0])\n\ndef tensor_to_gray_im(x):\n    x = detach_to_cpu(x)\n    x = tensor_to_numpy(x)\n    x = transpose_np(x)\n    return x\n\ndef tensor_to_im(x):\n    x = detach_to_cpu(x)\n    x = inv_im_trans(x).clamp(0, 1)\n    x = tensor_to_numpy(x)\n    x = transpose_np(x)\n    return x\n\n# Predefined key <-> caption dict\nkey_captions = {\n    'im': 'Image', \n    'gt': 'GT', \n}\n\n\"\"\"\nReturn an image array with captions\nkeys in dictionary will be used as caption if not provided\nvalues should contain lists of cv2 images\n\"\"\"\ndef get_image_array(images, grid_shape, captions={}):\n    h, w = grid_shape\n    cate_counts = len(images)\n    rows_counts = len(next(iter(images.values())))\n\n    font = cv2.FONT_HERSHEY_SIMPLEX\n\n    output_image = np.zeros([w*cate_counts, h*(rows_counts+1), 3], dtype=np.uint8)\n    col_cnt = 0\n    for k, v in images.items():\n\n        # Default as key value itself\n        caption = captions.get(k, k)\n\n        # Handles new line character\n        dy = 40\n        for i, line in enumerate(caption.split('\\n')):\n            cv2.putText(output_image, line, (10, col_cnt*w+100+i*dy),\n                     font, 0.8, (255,255,255), 2, cv2.LINE_AA)\n\n        # Put images\n        for row_cnt, img in enumerate(v):\n            im_shape = img.shape\n            if len(im_shape) == 2:\n                img = img[..., np.newaxis]\n\n            img = (img * 255).astype('uint8')\n\n            output_image[(col_cnt+0)*w:(col_cnt+1)*w,\n                         (row_cnt+1)*h:(row_cnt+2)*h, :] = img\n            \n        col_cnt += 1\n\n    return output_image\n\ndef base_transform(im, size):\n        im = tensor_to_np_float(im)\n        if len(im.shape) == 3:\n            im = im.transpose((1, 2, 0))\n        else:\n            im = im[:, :, None]\n\n        # Resize\n        if im.shape[1] != size:\n            im = cv2.resize(im, size, interpolation=cv2.INTER_NEAREST)\n\n        return im.clip(0, 1)\n\ndef im_transform(im, size):\n        return base_transform(inv_im_trans(detach_to_cpu(im)), size=size)\n\ndef mask_transform(mask, size):\n    return base_transform(detach_to_cpu(mask), size=size)\n\ndef out_transform(mask, size):\n    return base_transform(detach_to_cpu(torch.sigmoid(mask)), size=size)\n\ndef pool_pairs(images, size, num_objects):\n    req_images = defaultdict(list)\n\n    b, t = images['rgb'].shape[:2]\n\n    # limit the number of images saved\n    b = min(2, b)\n\n    # find max num objects\n    max_num_objects = max(num_objects[:b])\n\n    GT_suffix = ''\n    for bi in range(b):\n        GT_suffix += ' \\n%s' % images['info']['name'][bi][-25:-4]\n\n    for bi in range(b):\n        for ti in range(t):\n            req_images['RGB'].append(im_transform(images['rgb'][bi,ti], size))\n            for oi in range(max_num_objects):\n                if ti == 0 or oi >= num_objects[bi]:\n                    req_images['Mask_%d'%oi].append(mask_transform(images['first_frame_gt'][bi][0,oi], size))\n                    # req_images['Mask_X8_%d'%oi].append(mask_transform(images['first_frame_gt'][bi][0,oi], size))\n                    # req_images['Mask_X16_%d'%oi].append(mask_transform(images['first_frame_gt'][bi][0,oi], size))\n                else:\n                    req_images['Mask_%d'%oi].append(mask_transform(images['masks_%d'%ti][bi][oi], size))\n                    # req_images['Mask_%d'%oi].append(mask_transform(images['masks_%d'%ti][bi][oi][2], size))\n                    # req_images['Mask_X8_%d'%oi].append(mask_transform(images['masks_%d'%ti][bi][oi][1], size))\n                    # req_images['Mask_X16_%d'%oi].append(mask_transform(images['masks_%d'%ti][bi][oi][0], size))\n                req_images['GT_%d_%s'%(oi, GT_suffix)].append(mask_transform(images['cls_gt'][bi,ti,0]==(oi+1), size))\n                # print((images['cls_gt'][bi,ti,0]==(oi+1)).shape)\n                # print(mask_transform(images['cls_gt'][bi,ti,0]==(oi+1), size).shape)\n\n\n    return get_image_array(req_images, size, key_captions)"
  },
  {
    "path": "XMem/util/load_subset.py",
    "content": "\"\"\"\nload_subset.py - Presents a subset of data\nDAVIS - only the training set\nYouTubeVOS - I manually filtered some erroneous ones out but I haven't checked all\n\"\"\"\n\n\ndef load_sub_davis(path='util/davis_subset.txt'):\n    with open(path, mode='r') as f:\n        subset = set(f.read().splitlines())\n    return subset\n\ndef load_sub_yv(path='util/yv_subset.txt'):\n    with open(path, mode='r') as f:\n        subset = set(f.read().splitlines())\n    return subset\n"
  },
  {
    "path": "XMem/util/log_integrator.py",
    "content": "\"\"\"\nIntegrate numerical values for some iterations\nTypically used for loss computation / logging to tensorboard\nCall finalize and create a new Integrator when you want to display/log\n\"\"\"\n\nimport torch\n\n\nclass Integrator:\n    def __init__(self, logger, distributed=True, local_rank=0, world_size=1):\n        self.values = {}\n        self.counts = {}\n        self.hooks  = [] # List is used here to maintain insertion order\n\n        self.logger = logger\n\n        self.distributed = distributed\n        self.local_rank = local_rank\n        self.world_size = world_size\n\n    def add_tensor(self, key, tensor):\n        if key not in self.values:\n            self.counts[key] = 1\n            if type(tensor) == float or type(tensor) == int:\n                self.values[key] = tensor\n            else:\n                self.values[key] = tensor.mean().item()\n        else:\n            self.counts[key] += 1\n            if type(tensor) == float or type(tensor) == int:\n                self.values[key] += tensor\n            else:\n                self.values[key] += tensor.mean().item()\n\n    def add_dict(self, tensor_dict):\n        for k, v in tensor_dict.items():\n            self.add_tensor(k, v)\n\n    def add_hook(self, hook):\n        \"\"\"\n        Adds a custom hook, i.e. compute new metrics using values in the dict\n        The hook takes the dict as argument, and returns a (k, v) tuple\n        e.g. for computing IoU\n        \"\"\"\n        if type(hook) == list:\n            self.hooks.extend(hook)\n        else:\n            self.hooks.append(hook)\n\n    def reset_except_hooks(self):\n        self.values = {}\n        self.counts = {}\n\n    # Average and output the metrics\n    def finalize(self, prefix, it, f=None):\n\n        for hook in self.hooks:\n            k, v = hook(self.values)\n            self.add_tensor(k, v)\n\n        for k, v in self.values.items():\n\n            if k[:4] == 'hide':\n                continue\n\n            avg = v / self.counts[k]\n\n            if self.distributed:\n                # Inplace operation\n                avg = torch.tensor(avg).cuda()\n                torch.distributed.reduce(avg, dst=0)\n\n                if self.local_rank == 0:\n                    avg = (avg/self.world_size).cpu().item()\n                    self.logger.log_metrics(prefix, k, avg, it, f)\n            else:\n                # Simple does it\n                self.logger.log_metrics(prefix, k, avg, it, f)\n\n"
  },
  {
    "path": "XMem/util/logger.py",
    "content": "\"\"\"\nDumps things to tensorboard and console\n\"\"\"\n\nimport os\nimport warnings\n\nimport torchvision.transforms as transforms\nfrom torch.utils.tensorboard import SummaryWriter\n\n\ndef tensor_to_numpy(image):\n    image_np = (image.numpy() * 255).astype('uint8')\n    return image_np\n\ndef detach_to_cpu(x):\n    return x.detach().cpu()\n\ndef fix_width_trunc(x):\n    return ('{:.9s}'.format('{:0.9f}'.format(x)))\n\nclass TensorboardLogger:\n    def __init__(self, short_id, id, git_info):\n        self.short_id = short_id\n        if self.short_id == 'NULL':\n            self.short_id = 'DEBUG'\n\n        if id is None:\n            self.no_log = True\n            warnings.warn('Logging has been disbaled.')\n        else:\n            self.no_log = False\n\n            self.inv_im_trans = transforms.Normalize(\n                mean=[-0.485/0.229, -0.456/0.224, -0.406/0.225],\n                std=[1/0.229, 1/0.224, 1/0.225])\n\n            self.inv_seg_trans = transforms.Normalize(\n                mean=[-0.5/0.5],\n                std=[1/0.5])\n\n            log_path = os.path.join('.', 'saves', '%s' % id)\n            self.logger = SummaryWriter(log_path)\n\n        self.log_string('git', git_info)\n\n    def log_scalar(self, tag, x, step):\n        if self.no_log:\n            warnings.warn('Logging has been disabled.')\n            return\n        self.logger.add_scalar(tag, x, step)\n\n    def log_metrics(self, l1_tag, l2_tag, val, step, f=None):\n        tag = l1_tag + '/' + l2_tag\n        text = '{:s} - It {:6d} [{:5s}] [{:13}]: {:s}'.format(self.short_id, step, l1_tag.upper(), l2_tag, fix_width_trunc(val))\n        print(text)\n        if f is not None:\n            f.write(text + '\\n')\n            f.flush()\n        self.log_scalar(tag, val, step)\n\n    def log_im(self, tag, x, step):\n        if self.no_log:\n            warnings.warn('Logging has been disabled.')\n            return\n        x = detach_to_cpu(x)\n        x = self.inv_im_trans(x)\n        x = tensor_to_numpy(x)\n        self.logger.add_image(tag, x, step)\n\n    def log_cv2(self, tag, x, step):\n        if self.no_log:\n            warnings.warn('Logging has been disabled.')\n            return\n        x = x.transpose((2, 0, 1))\n        self.logger.add_image(tag, x, step)\n\n    def log_seg(self, tag, x, step):\n        if self.no_log:\n            warnings.warn('Logging has been disabled.')\n            return\n        x = detach_to_cpu(x)\n        x = self.inv_seg_trans(x)\n        x = tensor_to_numpy(x)\n        self.logger.add_image(tag, x, step)\n\n    def log_gray(self, tag, x, step):\n        if self.no_log:\n            warnings.warn('Logging has been disabled.')\n            return\n        x = detach_to_cpu(x)\n        x = tensor_to_numpy(x)\n        self.logger.add_image(tag, x, step)\n\n    def log_string(self, tag, x):\n        print(tag, x)\n        if self.no_log:\n            warnings.warn('Logging has been disabled.')\n            return\n        self.logger.add_text(tag, x)\n        "
  },
  {
    "path": "XMem/util/palette.py",
    "content": "davis_palette = b'\\x00\\x00\\x00\\x80\\x00\\x00\\x00\\x80\\x00\\x80\\x80\\x00\\x00\\x00\\x80\\x80\\x00\\x80\\x00\\x80\\x80\\x80\\x80\\x80@\\x00\\x00\\xc0\\x00\\x00@\\x80\\x00\\xc0\\x80\\x00@\\x00\\x80\\xc0\\x00\\x80@\\x80\\x80\\xc0\\x80\\x80\\x00@\\x00\\x80@\\x00\\x00\\xc0\\x00\\x80\\xc0\\x00\\x00@\\x80\\x80@\\x80\\x00\\xc0\\x80\\x80\\xc0\\x80@@\\x00\\xc0@\\x00@\\xc0\\x00\\xc0\\xc0\\x00@@\\x80\\xc0@\\x80@\\xc0\\x80\\xc0\\xc0\\x80\\x00\\x00@\\x80\\x00@\\x00\\x80@\\x80\\x80@\\x00\\x00\\xc0\\x80\\x00\\xc0\\x00\\x80\\xc0\\x80\\x80\\xc0@\\x00@\\xc0\\x00@@\\x80@\\xc0\\x80@@\\x00\\xc0\\xc0\\x00\\xc0@\\x80\\xc0\\xc0\\x80\\xc0\\x00@@\\x80@@\\x00\\xc0@\\x80\\xc0@\\x00@\\xc0\\x80@\\xc0\\x00\\xc0\\xc0\\x80\\xc0\\xc0@@@\\xc0@@@\\xc0@\\xc0\\xc0@@@\\xc0\\xc0@\\xc0@\\xc0\\xc0\\xc0\\xc0\\xc0 \\x00\\x00\\xa0\\x00\\x00 \\x80\\x00\\xa0\\x80\\x00 \\x00\\x80\\xa0\\x00\\x80 \\x80\\x80\\xa0\\x80\\x80`\\x00\\x00\\xe0\\x00\\x00`\\x80\\x00\\xe0\\x80\\x00`\\x00\\x80\\xe0\\x00\\x80`\\x80\\x80\\xe0\\x80\\x80 @\\x00\\xa0@\\x00 \\xc0\\x00\\xa0\\xc0\\x00 @\\x80\\xa0@\\x80 \\xc0\\x80\\xa0\\xc0\\x80`@\\x00\\xe0@\\x00`\\xc0\\x00\\xe0\\xc0\\x00`@\\x80\\xe0@\\x80`\\xc0\\x80\\xe0\\xc0\\x80 \\x00@\\xa0\\x00@ \\x80@\\xa0\\x80@ \\x00\\xc0\\xa0\\x00\\xc0 \\x80\\xc0\\xa0\\x80\\xc0`\\x00@\\xe0\\x00@`\\x80@\\xe0\\x80@`\\x00\\xc0\\xe0\\x00\\xc0`\\x80\\xc0\\xe0\\x80\\xc0 @@\\xa0@@ \\xc0@\\xa0\\xc0@ @\\xc0\\xa0@\\xc0 \\xc0\\xc0\\xa0\\xc0\\xc0`@@\\xe0@@`\\xc0@\\xe0\\xc0@`@\\xc0\\xe0@\\xc0`\\xc0\\xc0\\xe0\\xc0\\xc0\\x00 \\x00\\x80 \\x00\\x00\\xa0\\x00\\x80\\xa0\\x00\\x00 \\x80\\x80 \\x80\\x00\\xa0\\x80\\x80\\xa0\\x80@ \\x00\\xc0 \\x00@\\xa0\\x00\\xc0\\xa0\\x00@ \\x80\\xc0 \\x80@\\xa0\\x80\\xc0\\xa0\\x80\\x00`\\x00\\x80`\\x00\\x00\\xe0\\x00\\x80\\xe0\\x00\\x00`\\x80\\x80`\\x80\\x00\\xe0\\x80\\x80\\xe0\\x80@`\\x00\\xc0`\\x00@\\xe0\\x00\\xc0\\xe0\\x00@`\\x80\\xc0`\\x80@\\xe0\\x80\\xc0\\xe0\\x80\\x00 @\\x80 @\\x00\\xa0@\\x80\\xa0@\\x00 \\xc0\\x80 \\xc0\\x00\\xa0\\xc0\\x80\\xa0\\xc0@ @\\xc0 @@\\xa0@\\xc0\\xa0@@ \\xc0\\xc0 \\xc0@\\xa0\\xc0\\xc0\\xa0\\xc0\\x00`@\\x80`@\\x00\\xe0@\\x80\\xe0@\\x00`\\xc0\\x80`\\xc0\\x00\\xe0\\xc0\\x80\\xe0\\xc0@`@\\xc0`@@\\xe0@\\xc0\\xe0@@`\\xc0\\xc0`\\xc0@\\xe0\\xc0\\xc0\\xe0\\xc0  \\x00\\xa0 \\x00 \\xa0\\x00\\xa0\\xa0\\x00  \\x80\\xa0 \\x80 \\xa0\\x80\\xa0\\xa0\\x80` \\x00\\xe0 \\x00`\\xa0\\x00\\xe0\\xa0\\x00` \\x80\\xe0 \\x80`\\xa0\\x80\\xe0\\xa0\\x80 `\\x00\\xa0`\\x00 \\xe0\\x00\\xa0\\xe0\\x00 `\\x80\\xa0`\\x80 \\xe0\\x80\\xa0\\xe0\\x80``\\x00\\xe0`\\x00`\\xe0\\x00\\xe0\\xe0\\x00``\\x80\\xe0`\\x80`\\xe0\\x80\\xe0\\xe0\\x80  @\\xa0 @ \\xa0@\\xa0\\xa0@  \\xc0\\xa0 \\xc0 \\xa0\\xc0\\xa0\\xa0\\xc0` @\\xe0 @`\\xa0@\\xe0\\xa0@` \\xc0\\xe0 \\xc0`\\xa0\\xc0\\xe0\\xa0\\xc0 `@\\xa0`@ \\xe0@\\xa0\\xe0@ `\\xc0\\xa0`\\xc0 \\xe0\\xc0\\xa0\\xe0\\xc0``@\\xe0`@`\\xe0@\\xe0\\xe0@``\\xc0\\xe0`\\xc0`\\xe0\\xc0\\xe0\\xe0\\xc0'\n\nyoutube_palette = b'\\x00\\x00\\x00\\xec_g\\xf9\\x91W\\xfa\\xc8c\\x99\\xc7\\x94b\\xb3\\xb2f\\x99\\xcc\\xc5\\x94\\xc5\\xabyg\\xff\\xff\\xffes~\\x0b\\x0b\\x0b\\x0c\\x0c\\x0c\\r\\r\\r\\x0e\\x0e\\x0e\\x0f\\x0f\\x0f'\n"
  },
  {
    "path": "XMem/util/tensor_util.py",
    "content": "import torch.nn.functional as F\n\n\ndef compute_tensor_iu(seg, gt):\n    intersection = (seg & gt).float().sum()\n    union = (seg | gt).float().sum()\n\n    return intersection, union\n\ndef compute_tensor_iou(seg, gt):\n    intersection, union = compute_tensor_iu(seg, gt)\n    iou = (intersection + 1e-6) / (union + 1e-6)\n    \n    return iou \n\n# STM\ndef pad_divide_by(in_img, d):\n    h, w = in_img.shape[-2:]\n\n    if h % d > 0:\n        new_h = h + d - h % d\n    else:\n        new_h = h\n    if w % d > 0:\n        new_w = w + d - w % d\n    else:\n        new_w = w\n    lh, uh = int((new_h-h) / 2), int(new_h-h) - int((new_h-h) / 2)\n    lw, uw = int((new_w-w) / 2), int(new_w-w) - int((new_w-w) / 2)\n    pad_array = (int(lw), int(uw), int(lh), int(uh))\n    out = F.pad(in_img, pad_array)\n    return out, pad_array\n\ndef unpad(img, pad):\n    if len(img.shape) == 4:\n        if pad[2]+pad[3] > 0:\n            img = img[:,:,pad[2]:-pad[3],:]\n        if pad[0]+pad[1] > 0:\n            img = img[:,:,:,pad[0]:-pad[1]]\n    elif len(img.shape) == 3:\n        if pad[2]+pad[3] > 0:\n            img = img[:,pad[2]:-pad[3],:]\n        if pad[0]+pad[1] > 0:\n            img = img[:,:,pad[0]:-pad[1]]\n    else:\n        raise NotImplementedError\n    return img"
  },
  {
    "path": "XMem/util/yv_subset.txt",
    "content": "003234408d\n0043f083b5\n0044fa5fba\n005a527edd\n0065b171f9\n00917dcfc4\n00a23ccf53\n00ad5016a4\n01082ae388\n011ac0a06f\n013099c098\n0155498c85\n01694ad9c8\n017ac35701\n01b80e8e1a\n01baa5a4e1\n01c3111683\n01c4cb5ffe\n01c76f0a82\n01c783268c\n01ed275c6e\n01ff60d1fa\n020cd28cd2\n02264db755\n0248626d9a\n02668dbffa\n0274193026\n02d28375aa\n02f3a5c4df\n031ccc99b1\n0321b18c10\n0348a45bca\n0355e92655\n0358b938c1\n0368107cf1\n0379ddf557\n038b2cc71d\n038c15a5dd\n03a06cc98a\n03a63e187f\n03c95b4dae\n03e2b57b0e\n04194e1248\n0444918a5f\n04460a7a52\n04474174a4\n0450095513\n045f00aed2\n04667fabaa\n04735c5030\n04990d1915\n04d62d9d98\n04f21da964\n04fbad476e\n04fe256562\n0503bf89c9\n0536c9eed0\n054acb238f\n05579ca250\n056c200404\n05774f3a2c\n058a7592c8\n05a0a513df\n05a569d8aa\n05aa652648\n05d7715782\n05e0b0f28f\n05fdbbdd7a\n05ffcfed85\n0630391881\n06840b2bbe\n068f7dce6f\n0693719753\n06ce2b51fb\n06e224798e\n06ee361788\n06fbb3fa2c\n0700264286\n070c918ca7\n07129e14a4\n07177017e9\n07238ffc58\n07353b2a89\n0738493cbf\n075926c651\n075c701292\n0762ea9a30\n07652ee4af\n076f206928\n077d32af19\n079049275c\n07913cdda7\n07a11a35e8\n07ac33b6df\n07b6e8fda8\n07c62c3d11\n07cc1c7d74\n080196ef01\n081207976e\n081ae4fa44\n081d8250cb\n082900c5d4\n0860df21e2\n0866d4c5e3\n0891ac2eb6\n08931bc458\n08aa2705d5\n08c8450db7\n08d50b926c\n08e1e4de15\n08e48c1a48\n08f561c65e\n08feb87790\n09049f6fe3\n092e4ff450\n09338adea8\n093c335ccc\n0970d28339\n0974a213dc\n097b471ed8\n0990941758\n09a348f4fa\n09a6841288\n09c5bad17b\n09c9ce80c7\n09ff54fef4\n0a23765d15\n0a275e7f12\n0a2f2bd294\n0a7a2514aa\n0a7b27fde9\n0a8c467cc3\n0ac8c560ae\n0b1627e896\n0b285c47f6\n0b34ec1d55\n0b5b5e8e5a\n0b68535614\n0b6f9105fc\n0b7dbfa3cb\n0b9cea51ca\n0b9d012be8\n0bcfc4177d\n0bd37b23c1\n0bd864064c\n0c11c6bf7b\n0c26bc77ac\n0c3a04798c\n0c44a9d545\n0c817cc390\n0ca839ee9a\n0cd7ac0ac0\n0ce06e0121\n0cfe974a89\n0d2fcc0dcd\n0d3aad05d2\n0d40b015f4\n0d97fba242\n0d9cc80d7e\n0dab85b6d3\n0db5c427a5\n0dbaf284f1\n0de4923598\n0df28a9101\n0e04f636c4\n0e05f0e232\n0e0930474b\n0e27472bea\n0e30020549\n0e621feb6c\n0e803c7d73\n0e9ebe4e3c\n0e9f2785ec\n0ea68d418b\n0eb403a222\n0ee92053d6\n0eefca067f\n0f17fa6fcb\n0f1ac8e9a3\n0f202e9852\n0f2ab8b1ff\n0f51a78756\n0f5fbe16b0\n0f6072077b\n0f6b69b2f4\n0f6c2163de\n0f74ec5599\n0f9683715b\n0fa7b59356\n0fb173695b\n0fc958cde2\n0fe7b1a621\n0ffcdb491c\n101caff7d4\n1022fe8417\n1032e80b37\n103f501680\n104e64565f\n104f1ab997\n106242403f\n10b31f5431\n10eced835e\n110d26fa3a\n1122c1d16a\n1145b49a5f\n11485838c2\n114e7676ec\n1157472b95\n115ee1072c\n1171141012\n117757b4b8\n1178932d2f\n117cc76bda\n1180cbf814\n1187bbd0e3\n1197e44b26\n119cf20728\n119dd54871\n11a0c3b724\n11a6ba8c94\n11c722a456\n11cbcb0b4d\n11ccf5e99d\n11ce6f452e\n11e53de6f2\n11feabe596\n120cb9514d\n12156b25b3\n122896672d\n1232b2f1d4\n1233ac8596\n1239c87234\n1250423f7c\n1257a1bc67\n125d1b19dd\n126d203967\n1295e19071\n12ad198c54\n12bddb2bcb\n12ec9b93ee\n12eebedc35\n132852e094\n1329409f2a\n13325cfa14\n134d06dbf9\n135625b53d\n13870016f9\n13960b3c84\n13adaad9d9\n13ae097e20\n13e3070469\n13f6a8c20d\n1416925cf2\n142d2621f5\n145d5d7c03\n145fdc3ac5\n1471274fa7\n14a6b5a139\n14c21cea0d\n14dae0dc93\n14f9bd22b5\n14fd28ae99\n15097d5d4e\n150ea711f2\n1514e3563f\n152aaa3a9e\n152b7d3bd7\n15617297cc\n15abbe0c52\n15d1fb3de5\n15f67b0fab\n161eb59aad\n16288ea47f\n164410ce62\n165c3c8cd4\n165c42b41b\n165ec9e22b\n1669502269\n16763cccbb\n16adde065e\n16af445362\n16afd538ad\n16c3fa4d5d\n16d1d65c27\n16e8599e94\n16fe9fb444\n1705796b02\n1724db7671\n17418e81ea\n175169edbb\n17622326fd\n17656bae77\n17b0d94172\n17c220e4f6\n17c7bcd146\n17cb4afe89\n17cd79a434\n17d18604c3\n17d8ca1a37\n17e33f4330\n17f7a6d805\n180abc8378\n183ba3d652\n185bf64702\n18913cc690\n1892651815\n189ac8208a\n189b44e92c\n18ac264b76\n18b245ab49\n18b5cebc34\n18bad52083\n18bb5144d5\n18c6f205c5\n1903f9ea15\n1917b209f2\n191e74c01d\n19367bb94e\n193ffaa217\n19696b67d3\n197f3ab6f3\n1981e763cc\n198afe39ae\n19a6e62b9b\n19b60d5335\n19c00c11f9\n19e061eb88\n19e8bc6178\n19ee80dac6\n1a25a9170a\n1a359a6c1a\n1a3e87c566\n1a5fe06b00\n1a6c0fbd1e\n1a6f3b5a4b\n1a8afbad92\n1a8bdc5842\n1a95752aca\n1a9c131cb7\n1aa3da3ee3\n1ab27ec7ea\n1abf16d21d\n1acd0f993b\n1ad202e499\n1af8d2395d\n1afd39a1fa\n1b2d31306f\n1b3fa67f0e\n1b43fa74b4\n1b73ea9fc2\n1b7e8bb255\n1b8680f8cd\n1b883843c0\n1b8898785b\n1b88ba1aa4\n1b96a498e5\n1bbc4c274f\n1bd87fe9ab\n1c4090c75b\n1c41934f84\n1c72b04b56\n1c87955a3a\n1c9f9eb792\n1ca240fede\n1ca5673803\n1cada35274\n1cb44b920d\n1cd10e62be\n1d3087d5e5\n1d3685150a\n1d6ff083aa\n1d746352a6\n1da256d146\n1da4e956b1\n1daf812218\n1dba687bce\n1dce57d05d\n1de4a9e537\n1dec5446c8\n1dfbe6f586\n1e1a18c45a\n1e1e42529d\n1e4be70796\n1eb60959c8\n1ec8b2566b\n1ecdc2941c\n1ee0ac70ff\n1ef8e17def\n1f1a2a9fc0\n1f1beb8daa\n1f2609ee13\n1f3876f8d0\n1f4ec0563d\n1f64955634\n1f7d31b5b2\n1f8014b7fd\n1f9c7d10f1\n1fa350df76\n1fc9538993\n1fe2f0ec59\n2000c02f9d\n20142b2f05\n201a8d75e5\n2023b3ee4f\n202b767bbc\n203594a418\n2038987336\n2039c3aecb\n204a90d81f\n207bc6cf01\n208833d1d1\n20c6d8b362\n20e3e52e0a\n2117fa0c14\n211bc5d102\n2120d9c3c3\n2125235a49\n21386f5978\n2142af8795\n215dfc0f73\n217bae91e5\n217c0d44e4\n219057c87b\n21d0edbf81\n21df87ad76\n21f1d089f5\n21f4019116\n222597030f\n222904eb5b\n223a0e0657\n223bd973ab\n22472f7395\n224e7c833e\n225aba51d9\n2261d421ea\n2263a8782b\n2268cb1ffd\n2268e93b0a\n2293c99f3f\n22a1141970\n22b13084b2\n22d9f5ab0c\n22f02efe3a\n232c09b75b\n2350d71b4b\n2376440551\n2383d8aafd\n238b84e67f\n238d4b86f6\n238d947c6b\n23993ce90d\n23b0c8a9ab\n23b3beafcc\n23d80299fe\n23f404a9fc\n240118e58a\n2431dec2fd\n24440e0ac7\n2457274dbc\n2465bf515d\n246b142c4d\n247d729e36\n2481ceafeb\n24866b4e6a\n2489d78320\n24ab0b83e8\n24b0868d92\n24b5207cd9\n24ddf05c03\n250116161c\n256ad2e3fc\n256bd83d5e\n256dcc8ab8\n2589956baa\n258b3b33c6\n25ad437e29\n25ae395636\n25c750c6db\n25d2c3fe5d\n25dc80db7c\n25f97e926f\n26011bc28b\n260846ffbe\n260dd9ad33\n267964ee57\n2680861931\n268ac7d3fc\n26b895d91e\n26bc786d4f\n26ddd2ef12\n26de3d18ca\n26f7784762\n2703e52a6a\n270ed80c12\n2719b742ab\n272f4163d0\n27303333e1\n27659fa7d6\n279214115d\n27a5f92a9c\n27cf2af1f3\n27f0d5f8a2\n28075f33c1\n281629cb41\n282b0d51f5\n282fcab00b\n28449fa0dc\n28475208ca\n285580b7c4\n285b69e223\n288c117201\n28a8eb9623\n28bf9c3cf3\n28c6b8f86a\n28c972dacd\n28d9fa6016\n28e392de91\n28f4a45190\n298c844fc9\n29a0356a2b\n29d779f9e3\n29dde5f12b\n29de7b6579\n29e630bdd0\n29f2332d30\n2a18873352\n2a3824ff31\n2a559dd27f\n2a5c09acbd\n2a63eb1524\n2a6a30a4ea\n2a6d9099d1\n2a821394e3\n2a8c5b1342\n2abc8d66d2\n2ac9ef904a\n2b08f37364\n2b351bfd7d\n2b659a49d7\n2b69ee5c26\n2b6c30bbbd\n2b88561cf2\n2b8b14954e\n2ba621c750\n2bab50f9a7\n2bb00c2434\n2bbde474ef\n2bdd82fb86\n2be06fb855\n2bf545c2f5\n2bffe4cf9a\n2c04b887b7\n2c05209105\n2c0ad8cf39\n2c11fedca8\n2c1a94ebfb\n2c1e8c8e2f\n2c29fabcf1\n2c2c076c01\n2c3ea7ee7d\n2c41fa0648\n2c44bb6d1c\n2c54cfbb78\n2c5537eddf\n2c6e63b7de\n2cb10c6a7e\n2cbcd5ccd1\n2cc5d9c5f6\n2cd01cf915\n2cdbf5f0a7\n2ce660f123\n2cf114677e\n2d01eef98e\n2d03593bdc\n2d183ac8c4\n2d33ad3935\n2d3991d83e\n2d4333577b\n2d4d015c64\n2d8f5e5025\n2d900bdb8e\n2d9a1a1d49\n2db0576a5c\n2dc0838721\n2dcc417f82\n2df005b843\n2df356de14\n2e00393d96\n2e03b8127a\n2e0f886168\n2e2bf37e6d\n2e42410932\n2ea78f46e4\n2ebb017a26\n2ee2edba2a\n2efb07554a\n2f17e4fc1e\n2f2c65c2f3\n2f2d9b33be\n2f309c206b\n2f53822e88\n2f53998171\n2f5b0c89b1\n2f680909e6\n2f710f66bd\n2f724132b9\n2f7e3517ae\n2f96f5fc6f\n2f97d9fecb\n2fbfa431ec\n2fc9520b53\n2fcd9f4c62\n2feb30f208\n2ff7f5744f\n30085a2cc6\n30176e3615\n301f72ee11\n3026bb2f61\n30318465dc\n3054ca937d\n306121e726\n3064ad91e8\n307444a47f\n307bbb7409\n30a20194ab\n30c35c64a4\n30dbdb2cd6\n30fc77d72f\n310021b58b\n3113140ee8\n3150b2ee57\n31539918c4\n318dfe2ce2\n3193da4835\n319f725ad9\n31bbd0d793\n322505c47f\n322b237865\n322da43910\n3245e049fb\n324c4c38f6\n324e35111a\n3252398f09\n327dc4cabf\n328d918c7d\n3290c0de97\n3299ae3116\n32a7cd687b\n33098cedb4\n3332334ac4\n334cb835ac\n3355e056eb\n33639a2847\n3373891cdc\n337975816b\n33e29d7e91\n34046fe4f2\n3424f58959\n34370a710f\n343bc6a65a\n3450382ef7\n3454303a08\n346aacf439\n346e92ff37\n34a5ece7dd\n34b109755a\n34d1b37101\n34dd2c70a7\n34efa703df\n34fbee00a6\n3504df2fda\n35195a56a1\n351c822748\n351cfd6bc5\n3543d8334c\n35573455c7\n35637a827f\n357a710863\n358bf16f9e\n35ab34cc34\n35c6235b8d\n35d01a438a\n3605019d3b\n3609bc3f88\n360e25da17\n36299c687c\n362c5bc56e\n3649228783\n365b0501ea\n365f459863\n369893f3ad\n369c9977e1\n369dde050a\n36c7dac02f\n36d5b1493b\n36f5cc68fd\n3735480d18\n374b479880\n375a49d38f\n375a5c0e09\n376bda9651\n377db65f60\n37c19d1087\n37d4ae24fc\n37ddce7f8b\n37e10d33af\n37e45c6247\n37fa0001e8\n3802d458c0\n382caa3cb4\n383bb93111\n388843df90\n38924f4a7f\n38b00f93d7\n38c197c10e\n38c9c3d801\n38eb2bf67f\n38fe9b3ed1\n390352cced\n390c51b987\n390ca6f1d6\n392bc0f8a1\n392ecb43bd\n3935291688\n3935e63b41\n394454fa9c\n394638fc8b\n39545e20b7\n397abeae8f\n3988074b88\n398f5d5f19\n39bc49a28c\n39befd99fb\n39c3c7bf55\n39d584b09f\n39f6f6ffb1\n3a079fb484\n3a0d3a81b7\n3a1d55d22b\n3a20a7583e\n3a2c1f66e5\n3a33f4d225\n3a3bf84b13\n3a4565e5ec\n3a4e32ed5e\n3a7ad86ce0\n3a7bdde9b8\n3a98867cbe\n3aa3f1c9e8\n3aa7fce8b6\n3aa876887d\n3ab807ded6\n3ab9b1a85a\n3adac8d7da\n3ae1a4016f\n3ae2deaec2\n3ae81609d6\n3af847e62f\n3b23792b84\n3b3b0af2ee\n3b512dad74\n3b6c7988f6\n3b6e983b5b\n3b74a0fc20\n3b7a50b80d\n3b96d3492f\n3b9ad0c5a9\n3b9ba0894a\n3bb4e10ed7\n3bd9a9b515\n3beef45388\n3c019c0a24\n3c090704aa\n3c2784fc0d\n3c47ab95f8\n3c4db32d74\n3c5ff93faf\n3c700f073e\n3c713cbf2f\n3c8320669c\n3c90d225ee\n3cadbcc404\n3cb9be84a5\n3cc37fd487\n3cc6f90cb2\n3cd5e035ef\n3cdf03531b\n3cdf828f59\n3d254b0bca\n3d5aeac5ba\n3d690473e1\n3d69fed2fb\n3d8997aeb6\n3db0d6b07e\n3db1ddb8cf\n3db907ac77\n3dcbc0635b\n3dd48ed55f\n3de4ac4ec4\n3decd63d88\n3e04a6be11\n3e108fb65a\n3e1448b01c\n3e16c19634\n3e2845307e\n3e38336da5\n3e3a819865\n3e3e4be915\n3e680622d7\n3e7d2aeb07\n3e7d8f363d\n3e91f10205\n3ea4c49bbe\n3eb39d11ab\n3ec273c8d5\n3ed3f91271\n3ee062a2fd\n3eede9782c\n3ef2fa99cb\n3efc6e9892\n3f0b0dfddd\n3f0c860359\n3f18728586\n3f3b15f083\n3f45a470ad\n3f4f3bc803\n3fd96c5267\n3fea675fab\n3fee8cbc9f\n3fff16d112\n401888b36c\n4019231330\n402316532d\n402680df52\n404d02e0c0\n40709263a8\n4083cfbe15\n40a96c5cb1\n40b8e50f82\n40f4026bf5\n4100b57a3a\n41059fdd0b\n41124e36de\n4122aba5f9\n413bab0f0d\n4164faee0b\n418035eec9\n4182d51532\n418bb97e10\n41a34c20e7\n41dab05200\n41ff6d5e2a\n420caf0859\n42264230ba\n425a0c96e0\n42da96b87c\n42eb5a5b0f\n42f17cd14d\n42f5c61c49\n42ffdcdee9\n432f9884f9\n43326d9940\n4350f3ab60\n4399ffade3\n43a6c21f37\n43b5555faa\n43d63b752a\n4416bdd6ac\n4444753edd\n444aa274e7\n444d4e0596\n446b8b5f7a\n4478f694bb\n44b1da0d87\n44b4dad8c9\n44b5ece1b9\n44d239b24e\n44eaf8f51e\n44f4f57099\n44f7422af2\n450787ac97\n4523656564\n4536c882e5\n453b65daa4\n454f227427\n45636d806a\n456fb9362e\n457e717a14\n45a89f35e1\n45bf0e947d\n45c36a9eab\n45d9fc1357\n45f8128b97\n4607f6c03c\n46146dfd39\n4620e66b1e\n4625f3f2d3\n462b22f263\n4634736113\n463c0f4fdd\n46565a75f8\n46630b55ae\n466839cb37\n466ba4ae0c\n4680236c9d\n46bf4e8709\n46e18e42f1\n46f5093c59\n47269e0499\n472da1c484\n47354fab09\n4743bb84a7\n474a796272\n4783d2ab87\n479cad5da3\n479f5d7ef6\n47a05fbd1d\n4804ee2767\n4810c3fbca\n482fb439c2\n48375af288\n484ab44de4\n485f3944cd\n4867b84887\n486a8ac57e\n486e69c5bd\n48812cf33e\n4894b3b9ea\n48bd66517d\n48d83b48a4\n49058178b8\n4918d10ff0\n4932911f80\n49405b7900\n49972c2d14\n499bf07002\n49b16e9377\n49c104258e\n49c879f82d\n49e7326789\n49ec3e406a\n49fbf0c98a\n4a0255c865\n4a088fe99a\n4a341402d0\n4a3471bdf5\n4a4b50571c\n4a50f3d2e9\n4a6e3faaa1\n4a7191f08a\n4a86fcfc30\n4a885fa3ef\n4a8af115de\n4aa2e0f865\n4aa9d6527f\n4abb74bb52\n4ae13de1cd\n4af8cb323f\n4b02c272b3\n4b19c529fb\n4b2974eff4\n4b3154c159\n4b54d2587f\n4b556740ff\n4b67aa9ef6\n4b97cc7b8d\n4baa1ed4aa\n4bc8c676bb\n4beaea4dbe\n4bf5763d24\n4bffa92b67\n4c25dfa8ec\n4c397b6fd4\n4c51e75d66\n4c7710908f\n4c9b5017be\n4ca2ffc361\n4cad2e93bc\n4cd427b535\n4cd9a4b1ef\n4cdfe3c2b2\n4cef87b649\n4cf208e9b3\n4cf5bc3e60\n4cfdd73249\n4cff5c9e42\n4d26d41091\n4d5c23c554\n4d67c59727\n4d983cad9f\n4da0d00b55\n4daa179861\n4dadd57153\n4db117e6c5\n4de4ce4dea\n4dfaee19e5\n4dfdd7fab0\n4e3f346aa5\n4e49c2a9c7\n4e4e06a749\n4e70279712\n4e72856cc7\n4e752f8075\n4e7a28907f\n4e824b9247\n4e82b1df57\n4e87a639bc\n4ea77bfd15\n4eb6fc23a2\n4ec9da329e\n4efb9a0720\n4f062fbc63\n4f35be0e0b\n4f37e86797\n4f414dd6e7\n4f424abded\n4f470cc3ae\n4f601d255a\n4f7386a1ab\n4f824d3dcd\n4f827b0751\n4f8db33a13\n4fa160f8a3\n4fa9c30a45\n4facd8f0e8\n4fca07ad01\n4fded94004\n4fdfef4dea\n4feb3ac01f\n4fffec8479\n500c835a86\n50168342bf\n50243cffdc\n5031d5a036\n504dd9c0fd\n50568fbcfb\n5069c7c5b3\n508189ac91\n50b6b3d4b7\n50c6f4fe3e\n50cce40173\n50efbe152f\n50f290b95d\n5104aa1fea\n5110dc72c0\n511e8ecd7f\n513aada14e\n5158d6e985\n5161e1fa57\n51794ddd58\n517d276725\n51a597ee04\n51b37b6d97\n51b5dc30a0\n51e85b347b\n51eea1fdac\n51eef778af\n51f384721c\n521cfadcb4\n52355da42f\n5247d4b160\n524b470fd0\n524cee1534\n5252195e8a\n5255c9ca97\n525928f46f\n526df007a7\n529b12de78\n52c7a3d653\n52c8ec0373\n52d225ed52\n52ee406d9e\n52ff1ccd4a\n53143511e8\n5316d11eb7\n53253f2362\n534a560609\n5352c4a70e\n536096501f\n536b17bcea\n5380eaabff\n5390a43a54\n53af427bb2\n53bf5964ce\n53c30110b5\n53cad8e44a\n53d9c45013\n53e274f1b5\n53e32d21ea\n540850e1c7\n540cb31cfe\n541c4da30f\n541d7935d7\n545468262b\n5458647306\n54657855cd\n547b3fb23b\n5497dc3712\n549c56f1d4\n54a4260bb1\n54b98b8d5e\n54e1054b0f\n54e8867b83\n54ebe34f6e\n5519b4ad13\n551acbffd5\n55341f42da\n5566ab97e1\n556c79bbf2\n5589637cc4\n558aa072f0\n559824b6f6\n55c1764e90\n55eda6c77e\n562d173565\n5665c024cb\n566cef4959\n5675d78833\n5678a91bd8\n567a2b4bd0\n569c282890\n56cc449917\n56e71f3e07\n56f09b9d92\n56fc0e8cf9\n571ca79c71\n57243657cf\n57246af7d1\n57427393e9\n574b682c19\n578f211b86\n5790ac295d\n579393912d\n57a344ab1a\n57bd3bcda4\n57bfb7fa4c\n57c010175e\n57c457cc75\n57c7fc2183\n57d5289a01\n58045fde85\n58163c37cd\n582d463e5c\n5851739c15\n585dd0f208\n587250f3c3\n589e4cc1de\n589f65f5d5\n58a07c17d5\n58adc6d8b6\n58b9bcf656\n58c374917e\n58fc75fd42\n5914c30f05\n59323787d5\n5937b08d69\n594065ddd7\n595a0ceea6\n59623ec40b\n597ff7ef78\n598935ef05\n598c2ad3b2\n59a6459751\n59b175e138\n59bf0a149f\n59d53d1649\n59e3e6fae7\n59fe33e560\n5a13a73fe5\n5a25c22770\n5a4a785006\n5a50640995\n5a75f7a1cf\n5a841e59ad\n5a91c5ab6d\n5ab49d9de0\n5aba1057fe\n5abe46ba6d\n5ac7c88d0c\n5aeb95cc7d\n5af15e4fc3\n5afe381ae4\n5b07b4229d\n5b1001cc4f\n5b1df237d2\n5b263013bf\n5b27d19f0b\n5b48ae16c5\n5b5babc719\n5baaebdf00\n5bab55cdbe\n5bafef6e79\n5bd1f84545\n5bddc3ba25\n5bdf7c20d2\n5bf23bc9d3\n5c01f6171a\n5c021681b7\n5c185cff1d\n5c42aba280\n5c44bf8ab6\n5c4c574894\n5c52fa4662\n5c6ea7dac3\n5c74315dc2\n5c7668855e\n5c83e96778\n5ca36173e4\n5cac477371\n5cb0cb1b2f\n5cb0cfb98f\n5cb49a19cf\n5cbf7dc388\n5d0e07d126\n5d1e24b6e3\n5d663000ff\n5da6b2dc5d\n5de9b90f24\n5e08de0ed7\n5e1011df9a\n5e1ce354fd\n5e35512dd7\n5e418b25f9\n5e4849935a\n5e4ee19663\n5e886ef78f\n5e8d00b974\n5e8d59dc31\n5ed838bd5c\n5edda6ee5a\n5ede4d2f7a\n5ede9767da\n5eec4d9fe5\n5eecf07824\n5eef7ed4f4\n5ef5860ac6\n5ef6573a99\n5f1193e72b\n5f29ced797\n5f32cf521e\n5f51876986\n5f6ebe94a9\n5f6f14977c\n5f808d0d2d\n5fb8aded6a\n5fba90767d\n5fd1c7a3df\n5fd3da9f68\n5fee2570ae\n5ff66140d6\n5ff8b85b53\n600803c0f6\n600be7f53e\n6024888af8\n603189a03c\n6057307f6e\n6061ddbb65\n606c86c455\n60c61cc2e5\n60e51ff1ae\n610e38b751\n61344be2f6\n6135e27185\n614afe7975\n614e571886\n614e7078db\n619812a1a7\n61b481a78b\n61c7172650\n61cf7e40d2\n61d08ef5a1\n61da008958\n61ed178ecb\n61f5d1282c\n61fd977e49\n621584cffe\n625817a927\n625892cf0b\n625b89d28a\n629995af95\n62a0840bb5\n62ad6e121c\n62d6ece152\n62ede7b2da\n62f025e1bc\n6316faaebc\n63281534dc\n634058dda0\n6353f09384\n6363c87314\n636e4872e0\n637681cd6b\n6376d49f31\n6377809ec2\n63936d7de5\n639bddef11\n63d37e9fd3\n63d90c2bae\n63e544a5d6\n63ebbcf874\n63fff40b31\n6406c72e4d\n64148128be\n6419386729\n643092bc41\n644081b88d\n64453cf61d\n644bad9729\n6454f548fd\n645913b63a\n64750b825f\n64a43876b7\n64dd6c83e3\n64e05bf46e\n64f55f1478\n650b0165e4\n651066ed39\n652b67d960\n653821d680\n6538d00d73\n65866dce22\n6589565c8c\n659832db64\n65ab7e1d98\n65b7dda462\n65bd5eb4f5\n65dcf115ab\n65e9825801\n65f9afe51c\n65ff12bcb5\n666b660284\n6671643f31\n668364b372\n66852243cb\n6693a52081\n669b572898\n66e98e78f5\n670f12e88f\n674c12c92d\n675c27208a\n675ed3e1ca\n67741db50a\n678a2357eb\n67b0f4d562\n67cfbff9b1\n67e717d6bd\n67ea169a3b\n67ea809e0e\n681249baa3\n683de643d9\n6846ac20df\n6848e012ef\n684bcd8812\n684dc1c40c\n685a1fa9cf\n686dafaac9\n68807d8601\n6893778c77\n6899d2dabe\n68a2fad4ab\n68cb45fda3\n68cc4a1970\n68dcb40675\n68ea4a8c3d\n68f6e7fbf0\n68fa8300b4\n69023db81f\n6908ccf557\n691a111e7c\n6927723ba5\n692ca0e1a2\n692eb57b63\n69340faa52\n693cbf0c9d\n6942f684ad\n6944fc833b\n69491c0ebf\n695b61a2b0\n6979b4d83f\n697d4fdb02\n69910460a4\n6997636670\n69a436750b\n69aebf7669\n69b8c17047\n69c67f109f\n69e0e7b868\n69ea9c09d1\n69f0af42a6\n6a078cdcc7\n6a37a91708\n6a42176f2e\n6a48e4aea8\n6a5977be3a\n6a5de0535f\n6a80d2e2e5\n6a96c8815d\n6a986084e2\n6aa8e50445\n6ab9dce449\n6abf0ba6b2\n6acc6049d9\n6adb31756c\n6ade215eb0\n6afb7d50e4\n6afd692f1a\n6b0b1044fe\n6b17c67633\n6b1b6ef28b\n6b1e04d00d\n6b2261888d\n6b25d6528a\n6b3a24395c\n6b685eb75b\n6b79be238c\n6b928b7ba6\n6b9c43c25a\n6ba99cc41f\n6bdab62bcd\n6bf2e853b1\n6bf584200f\n6bf95df2b9\n6c0949c51c\n6c11a5f11f\n6c23d89189\n6c4387daf5\n6c4ce479a4\n6c5123e4bc\n6c54265f16\n6c56848429\n6c623fac5f\n6c81b014e9\n6c99ea7c31\n6c9d29d509\n6c9e3b7d1a\n6ca006e283\n6caeb928d6\n6cb2ee722a\n6cbfd32c5e\n6cc791250b\n6cccc985e0\n6d12e30c48\n6d4bf200ad\n6d6d2b8843\n6d6eea5682\n6d7a3d0c21\n6d7efa9b9e\n6da21f5c91\n6da6adabc0\n6dd2827fbb\n6dd36705b9\n6df3637557\n6dfe55e9e5\n6e1a21ba55\n6e2f834767\n6e36e4929a\n6e4f460caf\n6e618d26b6\n6ead4670f7\n6eaff19b9f\n6eb2e1cd9e\n6eb30b3b5a\n6eca26c202\n6ecad29e52\n6ef0b44654\n6efcfe9275\n6f4789045c\n6f49f522ef\n6f67d7c4c4\n6f96e91d81\n6fc6fce380\n6fc9b44c00\n6fce7f3226\n6fdf1ca888\n702fd8b729\n70405185d2\n7053e4f41e\n707bf4ce41\n7082544248\n708535b72a\n7094ac0f60\n70a6b875fa\n70c3e97e41\n7106b020ab\n711dce6fe2\n7136a4453f\n7143fb084f\n714d902095\n7151c53b32\n715357be94\n7163b8085f\n716df1aa59\n71caded286\n71d2665f35\n71d67b9e19\n71e06dda39\n720b398b9c\n720e3fa04c\n720e7a5f1e\n721bb6f2cb\n722803f4f2\n72552a07c9\n726243a205\n72690ef572\n728cda9b65\n728e81c319\n72a810a799\n72acb8cdf6\n72b01281f9\n72cac683e4\n72cadebbce\n72cae058a5\n72d8dba870\n72e8d1c1ff\n72edc08285\n72f04f1a38\n731b825695\n7320b49b13\n732626383b\n732df1eb05\n73329902ab\n733798921e\n733824d431\n734ea0d7fb\n735a7cf7b9\n7367a42892\n7368d5c053\n73c6ae7711\n73e1852735\n73e4e5cc74\n73eac9156b\n73f8441a88\n7419e2ab3f\n74267f68b9\n7435690c8c\n747c44785c\n747f1b1f2f\n748b2d5c01\n74d4cee0a4\n74ec2b3073\n74ef677020\n750be4c4d8\n75172d4ac8\n75285a7eb1\n75504539c3\n7550949b1d\n7551cbd537\n75595b453d\n7559b4b0ec\n755bd1fbeb\n756f76f74d\n7570ca7f3c\n757a69746e\n757cac96c6\n7584129dc3\n75a058dbcd\n75b09ce005\n75cae39a8f\n75cee6caf0\n75cf58fb2c\n75d5c2f32a\n75eaf5669d\n75f7937438\n75f99bd3b3\n75fa586876\n7613df1f84\n762e1b3487\n76379a3e69\n764271f0f3\n764503c499\n7660005554\n7666351b84\n76693db153\n767856368b\n768671f652\n768802b80d\n76962c7ed2\n76a75f4eee\n76b90809f7\n770a441457\n772a0fa402\n772f2ffc3e\n774f6c2175\n77610860e0\n777e58ff3d\n77920f1708\n7799df28e7\n779e847a9a\n77ba4edc72\n77c834dc43\n77d8aa8691\n77e7f38f4d\n77eea6845e\n7806308f33\n78254660ea\n7828af8bff\n784398620a\n784d201b12\n78613981ed\n78896c6baf\n78aff3ebc0\n78c7c03716\n78d3676361\n78e29dd4c3\n78f1a1a54f\n79208585cd\n792218456c\n7923bad550\n794e6fc49f\n796e6762ce\n797cd21f71\n79921b21c2\n79a5778027\n79bc006280\n79bf95e624\n79d9e00c55\n79e20fc008\n79e9db913e\n79f014085e\n79fcbb433a\n7a13a5dfaa\n7a14bc9a36\n7a3c535f70\n7a446a51e9\n7a56e759c5\n7a5f46198d\n7a626ec98d\n7a802264c4\n7a8b5456ca\n7abdff3086\n7aecf9f7ac\n7b0fd09c28\n7b18b3db87\n7b39fe7371\n7b49e03d4c\n7b5388c9f1\n7b5cf7837f\n7b733d31d8\n7b74fd7b98\n7b918ccb8a\n7ba3ce3485\n7bb0abc031\n7bb5bb25cd\n7bb7dac673\n7bc7761b8c\n7bf3820566\n7c03a18ec1\n7c078f211b\n7c37d7991a\n7c4ec17eff\n7c649c2aaf\n7c73340ab7\n7c78a2266d\n7c88ce3c5b\n7ca6843a72\n7cc9258dee\n7cec7296ae\n7d0ffa68a4\n7d11b4450f\n7d1333fcbe\n7d18074fef\n7d18c8c716\n7d508fb027\n7d55f791f0\n7d74e3c2f6\n7d783f67a9\n7d83a5d854\n7dd409947e\n7de45f75e5\n7e0cd25696\n7e1922575c\n7e1e3bbcc1\n7e24023274\n7e2f212fd3\n7e6d1cc1f4\n7e7cdcb284\n7e9b6bef69\n7ea5b49283\n7eb2605d96\n7eb26b8485\n7ecd1f0c69\n7f02b3cfe2\n7f1723f0d5\n7f21063c3a\n7f3658460e\n7f54132e48\n7f559f9d4a\n7f5faedf8b\n7f838baf2b\n7fa5f527e3\n7ff84d66dd\n802b45c8c4\n804382b1ad\n804c558adb\n804f6338a4\n8056117b89\n806b6223ab\n8088bda461\n80b790703b\n80c4a94706\n80ce2e351b\n80db581acd\n80e12193df\n80e41b608f\n80f16b016d\n81541b3725\n8175486e6a\n8179095000\n8193671178\n81a58d2c6b\n81aa1286fb\n81dffd30fb\n8200245704\n823e7a86e8\n824973babb\n824ca5538f\n827171a845\n8273a03530\n827cf4f886\n82b865c7dd\n82c1517708\n82d15514d6\n82e117b900\n82fec06574\n832b5ef379\n83424c9fbf\n8345358fb8\n834b50b31b\n835e3b67d7\n836ea92b15\n837c618777\n838eb3bd89\n839381063f\n839bc71489\n83a8151377\n83ae88d217\n83ca8bcad0\n83ce590d7f\n83d3130ba0\n83d40bcba5\n83daba503a\n83de906ec0\n84044f37f3\n84696b5a5e\n84752191a3\n847eeeb2e0\n848e7835a0\n84a4b29286\n84a4bf147d\n84be115c09\n84d95c4350\n84e0922cf7\n84f0cfc665\n8515f6db22\n851f2f32c1\n852a4d6067\n854c48b02a\n857a387c86\n859633d56a\n85a4f4a639\n85ab85510c\n85b1eda0d9\n85dc1041c6\n85e081f3c7\n85f75187ad\n8604bb2b75\n860745b042\n863b4049d7\n8643de22d0\n8647d06439\n864ffce4fe\n8662d9441a\n8666521b13\n868d6a0685\n869fa45998\n86a40b655d\n86a8ae4223\n86b2180703\n86c85d27df\n86d3755680\n86e61829a1\n871015806c\n871e409c5c\n8744b861ce\n8749369ba0\n878a299541\n8792c193a0\n8799ab0118\n87d1f7d741\n882b9e4500\n885673ea17\n8859dedf41\n8873ab2806\n887a93b198\n8883e991a9\n8891aa6dfa\n8899d8cbcd\n88b8274d67\n88d3b80af6\n88ede83da2\n88f345941b\n890976d6da\n8909bde9ab\n8929c7d5d9\n89363acf76\n89379487e0\n8939db6354\n893f658345\n8953138465\n895c96d671\n895cbf96f9\n895e8b29a7\n898fa256c8\n89986c60be\n89b874547b\n89bdb021d5\n89c802ff9c\n89d6336c2b\n89ebb27334\n8a27e2407c\n8a31f7bca5\n8a4a2fc105\n8a5d6c619c\n8a75ad7924\n8aa817e4ed\n8aad0591eb\n8aca214360\n8ae168c71b\n8b0cfbab97\n8b3645d826\n8b3805dbd4\n8b473f0f5d\n8b4f6d1186\n8b4fb018b7\n8b518ee936\n8b523bdfd6\n8b52fb5fba\n8b91036e5c\n8b99a77ac5\n8ba04b1e7b\n8ba782192f\n8bbeaad78b\n8bd1b45776\n8bd7a2dda6\n8bdb091ccf\n8be56f165d\n8be950d00f\n8bf84e7d45\n8bffc4374b\n8bfff50747\n8c09867481\n8c0a3251c3\n8c3015cccb\n8c469815cf\n8c9ccfedc7\n8ca1af9f3c\n8ca3f6e6c1\n8ca6a4f60f\n8cac6900fe\n8cba221a1e\n8cbbe62ccd\n8d064b29e2\n8d167e7c08\n8d4ab94e1c\n8d81f6f899\n8d87897d66\n8dcccd2bd2\n8dcfb878a8\n8dd3ab71b9\n8dda6bf10f\n8ddd51ca94\n8dea22c533\n8def5bd3bf\n8e1848197c\n8e3a83cf2d\n8e478e73f3\n8e98ae3c84\n8ea6687ab0\n8eb0d315c1\n8ec10891f9\n8ec3065ec2\n8ecf51a971\n8eddbab9f7\n8ee198467a\n8ee2368f40\n8ef595ce82\n8f0a653ad7\n8f1204a732\n8f1600f7f6\n8f16366707\n8f1ce0a411\n8f2e05e814\n8f320d0e09\n8f3b4a84ad\n8f3fdad3da\n8f5d3622d8\n8f62a2c633\n8f81c9405a\n8f8c974d53\n8f918598b6\n8ff61619f6\n9002761b41\n90107941f3\n90118a42ee\n902bc16b37\n903e87e0d6\n9041a0f489\n9047bf3222\n9057bfa502\n90617b0954\n9076f4b6db\n9077e69b08\n909655b4a6\n909c2eca88\n909dbd1b76\n90bc4a319a\n90c7a87887\n90cc785ddd\n90d300f09b\n9101ea9b1b\n9108130458\n911ac9979b\n9151cad9b5\n9153762797\n91634ee0c9\n916942666f\n9198cfb4ea\n919ac864d6\n91b67d58d4\n91bb8df281\n91be106477\n91c33b4290\n91ca7dd9f3\n91d095f869\n91f107082e\n920329dd5e\n920c959958\n92128fbf4b\n9223dacb40\n923137bb7f\n9268e1f88a\n927647fe08\n9276f5ba47\n92a28cd233\n92b5c1fc6d\n92c46be756\n92dabbe3a0\n92e3159361\n92ebab216a\n934bdc2893\n9359174efc\n935d97dd2f\n935feaba1b\n93901858ee\n939378f6d6\n939bdf742e\n93a22bee7e\n93da9aeddf\n93e2feacce\n93e6f1fdf9\n93e811e393\n93e85d8fd3\n93f623d716\n93ff35e801\n94031f12f2\n94091a4873\n94125907e3\n9418653742\n941c870569\n94209c86f0\n9437c715eb\n9445c3eca2\n9467c8617c\n946d71fb5d\n948f3ae6fb\n9498baa359\n94a33abeab\n94bf1af5e3\n94cf3a8025\n94db712ac8\n94e4b66cff\n94e76cbaf6\n950be91db1\n952058e2d0\n952633c37f\n952ec313fe\n9533fc037c\n9574b81269\n9579b73761\n957f7bc48b\n958073d2b0\n9582e0eb33\n9584092d0b\n95b58b8004\n95bd88da55\n95f74a9959\n962781c601\n962f045bf5\n964ad23b44\n967b90590e\n967bffe201\n96825c4714\n968492136a\n9684ef9d64\n968c41829e\n96a856ef9a\n96dfc49961\n96e1a5b4f8\n96e6ff0917\n96fb88e9d7\n96fbe5fc23\n96fc924050\n9715cc83dc\n9720eff40f\n972c187c0d\n97476eb38d\n97659ed431\n9773492949\n97756b264f\n977bff0d10\n97ab569ff3\n97ba838008\n97d9d008c7\n97e59f09fa\n97eb642e56\n98043e2d14\n981ff580cf\n983e66cbfc\n984f0f1c36\n98595f2bb4\n985c3be474\n9869a12362\n986b5a5e18\n9877af5063\n98911292da\n9893a3cf77\n9893d9202d\n98a8b06e7f\n98ac6f93d9\n98b6974d12\n98ba3c9417\n98c7c00a19\n98d044f206\n98e909f9d1\n98fe7f0410\n990f2742c7\n992bd0779a\n994b9b47ba\n9955b76bf5\n9966f3adac\n997117a654\n999d53d841\n99c04108d3\n99c4277aee\n99c6b1acf2\n99dc8bb20b\n99fcba71e5\n99fecd4efb\n9a02c70ba2\n9a08e7a6f8\n9a2f2c0f86\n9a3254a76e\n9a3570a020\n9a39112493\n9a4e9fd399\n9a50af4bfb\n9a68631d24\n9a72318dbf\n9a767493b7\n9a7fc1548b\n9a84ccf6a7\n9a9c0e15b7\n9adf06d89b\n9b22b54ee4\n9b473fc8fe\n9b4f081782\n9b997664ba\n9bc454e109\n9bccfd04de\n9bce4583a2\n9bebf1b87f\n9bfc50d261\n9c166c86ff\n9c293ef4d7\n9c29c047b0\n9c3bc2e2a7\n9c3ce23bd1\n9c404cac0c\n9c5180d23a\n9c7feca6e4\n9caa49d3ff\n9cb2f1b646\n9ce6f765c3\n9cfee34031\n9d01f08ec6\n9d04c280b8\n9d12ceaddc\n9d15f8cb3c\n9d2101e9bf\n9d407c3aeb\n9ddefc6165\n9df0b1e298\n9e16f115d8\n9e249b4982\n9e29b1982c\n9e493e4773\n9e4c752cd0\n9e4de40671\n9e6319faeb\n9e6ddbb52d\n9eadcea74f\n9ecec5f8ea\n9efb47b595\n9f30bfe61e\n9f3734c3a4\n9f5b858101\n9f66640cda\n9f913803e9\n9f97bc74c8\n9fbad86e20\n9fc2bad316\n9fc5c3af78\n9fcb310255\n9fcc256871\n9fd2fd4d47\na0071ae316\na023141022\na046399a74\na066e739c1\na06722ba82\na07a15dd64\na07b47f694\na09c39472e\na0b208fe2e\na0b61c959e\na0bc6c611d\na0e6da5ba2\na1193d6490\na14ef483ff\na14f709908\na15ccc5658\na16062456f\na174e8d989\na177c2733c\na17c62e764\na18ad065fc\na1aaf63216\na1bb65fb91\na1bd8e5349\na1dfdd0cac\na2052e4f6c\na20fd34693\na21ffe4d81\na22349e647\na235d01ec1\na24f63e8a2\na2554c9f6d\na263ce8a87\na29bfc29ec\na2a80072d4\na2a800ab63\na2bcd10a33\na2bdaff3b0\na2c146ab0d\na2c996e429\na2dc51ebe8\na2e6608bfa\na2f2a55f01\na301869dea\na31fccd2cc\na34f440f33\na35e0206da\na36bdc4cab\na36e8c79d8\na378053b20\na37db3a2b3\na38950ebc2\na39a0eb433\na39c9bca52\na3a945dc8c\na3b40a0c1e\na3b8588550\na3c502bec3\na3f2878017\na3f4d58010\na3f51855c3\na402dc0dfe\na4065a7eda\na412bb2fef\na416b56b53\na41ec95906\na43299e362\na4757bd7af\na48c53c454\na49dcf9ad5\na4a506521f\na4ba7753d9\na4bac06849\na4f05d681c\na50c10060f\na50eb5a0ea\na5122c6ec6\na522b1aa79\na590915345\na5b5b59139\na5b77abe43\na5c2b2c3e1\na5cd17bb11\na5da03aef1\na5dd11de0d\na5ea2b93b6\na5eaeac80b\na5ec5b0265\na5f350a87e\na5f472caf4\na6027a53cf\na61715bb1b\na61cf4389d\na61d9bbd9b\na6470dbbf5\na64a40f3eb\na653d5c23b\na65bd23cb5\na66e0b7ad4\na66fc5053c\na68259572b\na6a810a92c\na6bc36937f\na6c3a374e9\na6d8a4228d\na6f4e0817f\na71e0481f5\na7203deb2d\na7392d4438\na73d3c3902\na7491f1578\na74b9ca19c\na77b7a91df\na78195a5f5\na78758d4ce\na7e6d6c29a\na800d85e88\na832fa8790\na83d06410d\na8999af004\na8f78125b9\na907b18df1\na919392446\na965504e88\na96b84b8d2\na973f239cd\na977126596\na9804f2a08\na984e56893\na99738f24c\na99bdd0079\na9c9c1517e\na9cbf9c41b\na9e42e3c0c\naa07b7c1c0\naa175e5ec7\naa1a338630\naa27d7b868\naa45f1caaf\naa49e46432\naa51934e1b\naa6287bb6c\naa6d999971\naa85278334\naab33f0e2a\naaba004362\naade4cf385\naae78feda4\naaed233bf3\naaff16c2db\nab199e8dfb\nab23b78715\nab2e1b5577\nab33a18ded\nab45078265\nab56201494\nab90f0d24b\nabab2e6c20\nabb50c8697\nabbe2d15a0\nabbe73cd21\nabe61a11bb\nabeae8ce21\nac2b431d5f\nac2cb1b9eb\nac31fcd6d0\nac3d3a126d\nac46bd8087\nac783ef388\nacb73e4297\nacbf581760\naccafc3531\nacf2c4b745\nacf44293a2\nacf736a27b\nacff336758\nad1fe56886\nad28f9b9d9\nad2de9f80e\nad397527b2\nad3d1cfbcb\nad3fada9d9\nad4108ee8e\nad54468654\nad573f7d31\nad6255bc29\nad65ebaa07\nad97cc064a\nadabbd1cc4\nadb0b5a270\nadc648f890\nadd21ee467\nadfd15ceef\nadfdd52eac\nae01cdab63\nae0b50ff4f\nae13ee3d70\nae1bcbd423\nae20d09dea\nae2cecf5f6\nae3bc4a0ef\nae499c7514\nae628f2cd4\nae8545d581\nae93214fe6\nae9cd16dbf\naeba9ac967\naebb242b5c\naed4e0b4c4\naedd71f125\naef3e2cb0e\naf0b54cee3\naf3de54c7a\naf5fd24a36\naf8826d084\naf8ad72057\nafb71e22c5\nafcb331e1f\nafe1a35c1e\nb01080b5d3\nb05ad0d345\nb0623a6232\nb064dbd4b7\nb06ed37831\nb06f5888e6\nb08dcc490e\nb0a68228dc\nb0aece727f\nb0b0731606\nb0c7f11f9f\nb0cca8b830\nb0dd580a89\nb0de66ca08\nb0df7c5c5c\nb0f5295608\nb11099eb09\nb132a53086\nb1399fac64\nb13abc0c69\nb1457e3b5e\nb15bf4453b\nb179c4a82d\nb17ee70e8c\nb190b1aa65\nb19b3e22c0\nb19c561fab\nb1d1cd2e6e\nb1d7c03927\nb1d7fe2753\nb1f540a4bd\nb1fc9c64e1\nb1fcbb3ced\nb220939e93\nb22099b419\nb241e95235\nb2432ae86d\nb2456267df\nb247940d01\nb24af1c35c\nb24f600420\nb24fe36b2a\nb258fb0b7d\nb26b219919\nb26d9904de\nb274456ce1\nb27b28d581\nb2a26bc912\nb2a9c51e1b\nb2b0baf470\nb2b2756fe7\nb2ce7699e3\nb2edc76bd2\nb2f6b52100\nb30bf47bcd\nb34105a4e9\nb372a82edf\nb3779a1962\nb379ab4ff5\nb37a1d69e3\nb37c01396e\nb382b09e25\nb3996e4ba5\nb3d9ca2aee\nb3dde1e1e9\nb3eb7f05eb\nb40b25055c\nb41e0f1f19\nb44e32a42b\nb4805ae9cd\nb4807569a5\nb48efceb3e\nb493c25c7f\nb4b565aba1\nb4b715a15b\nb4d0c90bf4\nb4d84bc371\nb4e5ad97aa\nb4eaea9e6b\nb50f4b90d5\nb53f675641\nb54278cd43\nb554843889\nb573c0677a\nb58d853734\nb5943b18ab\nb5a09a83f3\nb5aae1fe25\nb5b9da5364\nb5eb64d419\nb5ebb1d000\nb5f1c0c96a\nb5f7fece90\nb6070de1bb\nb60a76fe73\nb61f998772\nb62c943664\nb63094ba0c\nb64fca8100\nb673e7dcfb\nb678b7db00\nb68fc1b217\nb69926d9fa\nb6a1df3764\nb6a4859528\nb6b4738b78\nb6b4f847b7\nb6b8d502d4\nb6bb00e366\nb6d65a9eef\nb6d79a0845\nb6e9ec577f\nb6ec609f7b\nb6f92a308d\nb70a2c0ab1\nb70a5a0d50\nb70c052f2f\nb70d231781\nb72ac6e10b\nb7302d8226\nb73867d769\nb751e767f2\nb76df6e059\nb77e5eddef\nb7a2c2c83c\nb7bcbe6466\nb7c2a469c4\nb7d69da8f0\nb7f31b7c36\nb7f675fb98\nb7fb871660\nb82e5ad1c9\nb841cfb932\nb84b8ae665\nb85b78ac2b\nb86c17caa6\nb86e50d82d\nb871db031a\nb87d56925a\nb8aaa59b75\nb8c03d1091\nb8c3210036\nb8e16df00b\nb8f34cf72e\nb8fb75864e\nb9004db86c\nb9166cbae9\nb920b256a6\nb938d79dff\nb93963f214\nb941aef1a0\nb94d34d14e\nb964c57da4\nb96a95bc7a\nb96c57d2c7\nb9b6bdde0c\nb9bcb3e0f2\nb9d3b92169\nb9dd4b306c\nb9f43ef41e\nba1f03c811\nba3a775d7b\nba3c7f2a31\nba3fcd417d\nba5e1f4faa\nba795f3089\nba8a291e6a\nba98512f97\nbac9db04f5\nbaedae3442\nbaff40d29d\nbb04e28695\nbb1b0ee89f\nbb1c770fe7\nbb1fc34f99\nbb2d220506\nbb334e5cdb\nbb337f9830\nbb721eb9aa\nbb87ff58bd\nbb89a6b18a\nbbaa9a036a\nbbb4302dda\nbbd31510cf\nbbe0256a75\nbc141b9ad5\nbc17ab8a99\nbc318160de\nbc3b9ee033\nbc4240b43c\nbc4ce49105\nbc4f71372d\nbc6b8d6371\nbcaad44ad7\nbcc241b081\nbcc5d8095e\nbcd1d39afb\nbd0d849da4\nbd0e9ed437\nbd2c94730f\nbd321d2be6\nbd3ec46511\nbd5b2e2848\nbd7e02b139\nbd96f9943a\nbda224cb25\nbda4a82837\nbdb74e333f\nbdccd69dde\nbddcc15521\nbe116aab29\nbe15e18f1e\nbe1a284edb\nbe2a367a7b\nbe376082d0\nbe3e3cffbd\nbe5d1d89a0\nbe8b72fe37\nbe9b29e08e\nbea1f6e62c\nbea83281b5\nbeb921a4c9\nbec5e9edcd\nbeeb8a3f92\nbf2232b58d\nbf28751739\nbf443804e8\nbf461df850\nbf5374f122\nbf551a6f60\nbf8d0f5ada\nbf961167a6\nbfab1ad8f9\nbfcb05d88d\nbfd8f6e6c9\nbfd91d0742\nbfe262322f\nc013f42ed7\nc01878083f\nc01faff1ed\nc046fd0edb\nc053e35f97\nc079a6482d\nc0847b521a\nc0a1e06710\nc0e8d4635c\nc0e973ad85\nc0f49c6579\nc0f5b222d7\nc10d07c90d\nc1268d998c\nc130c3fc0c\nc14826ad5e\nc15b922281\nc16f09cb63\nc18e19d922\nc1c830a735\nc1e8aeea45\nc20a5ccc99\nc20fd5e597\nc219d6f8dc\nc2406ae462\nc26f7b5824\nc279e641ee\nc27adaeac5\nc2a35c1cda\nc2a9903b8b\nc2b62567c1\nc2b974ec8c\nc2baaff7bf\nc2be6900f2\nc304dd44d5\nc307f33da2\nc30a7b62c9\nc3128733ee\nc31fa6c598\nc325c8201e\nc32d4aa5d1\nc33f28249a\nc34365e2d7\nc3457af795\nc34d120a88\nc3509e728d\nc35e4fa6c4\nc36240d96f\nc3641dfc5a\nc37b17a4a9\nc39559ddf6\nc3b0c6e180\nc3b3d82e6c\nc3be369fdb\nc3bf1e40c2\nc3c760b015\nc3dd38bf98\nc3e4274614\nc3edc48cbd\nc41e6587f5\nc4272227b0\nc42917fe82\nc438858117\nc44676563f\nc44beb7472\nc45411dacb\nc4571bedc8\nc46deb2956\nc479ee052e\nc47d551843\nc49f07d46d\nc4cc40c1fc\nc4f256f5d5\nc4f5b1ddcc\nc4ff9b4885\nc52bce43db\nc544da6854\nc55784c766\nc557b69fbf\nc593a3f7ab\nc598faa682\nc5ab1f09c8\nc5b6da8602\nc5b9128d94\nc5e845c6b7\nc5fba7b341\nc60897f093\nc61fe6ed7c\nc62188c536\nc64035b2e2\nc69689f177\nc6a12c131f\nc6bb6d2d5c\nc6c18e860f\nc6d9526e0d\nc6e55c33f0\nc7030b28bd\nc70682c7cc\nc70f9be8c5\nc71f30d7b6\nc73c8e747f\nc760eeb8b3\nc7637cab0a\nc7a1a17308\nc7bf937af5\nc7c2860db3\nc7cef4aee2\nc7ebfc5d57\nc813dcf13c\nc82235a49a\nc82a7619a1\nc82ecb90cb\nc844f03dc7\nc8557963f3\nc89147e6e8\nc8a46ff0c8\nc8ab107dd5\nc8b869a04a\nc8c7b306a6\nc8c8b28781\nc8d79e3163\nc8edab0415\nc8f494f416\nc8f6cba9fd\nc909ceea97\nc9188f4980\nc922365dd4\nc92c8c3c75\nc937eb0b83\nc94b31b5e5\nc95cd17749\nc96379c03c\nc96465ee65\nc965afa713\nc9734b451f\nc9862d82dc\nc98b6fe013\nc9999b7c48\nc99e92aaf0\nc9b3a8fbda\nc9bf64e965\nc9c3cb3797\nc9d1c60cd0\nc9de9c22c4\nca1828fa54\nca346f17eb\nca3787d3d3\nca4b99cbac\nca91c69e3b\nca91e99105\ncaa8e97f81\ncaac5807f8\ncabba242c2\ncad5a656a9\ncad673e375\ncad8a85930\ncae7b0a02b\ncae7ef3184\ncaeb6b6cbb\ncaecf0a5db\ncb15312003\ncb2e35d610\ncb35a87504\ncb3f22b0cf\ncbb410da64\ncc8728052e\ncc892997b8\ncce03c2a9b\ncd47a23e31\ncd4dc03dc0\ncd5ae611da\ncd603bb9d1\ncd8f49734c\ncdc6b1c032\ncdcfe008ad\ncdd57027c2\nce1af99b4b\nce1bc5743a\nce25872021\nce2776f78f\nce49b1f474\nce4f0a266f\nce5641b195\nce6866aa19\nce712ed3c9\nce7d1c8117\nce7dbeaa88\nce9b015a5e\ncea7697b25\ncebbd826cf\ncec3415361\ncec41ad4f4\nced49d26df\nced7705ab2\ncef824a1e1\ncf13f5c95a\ncf4376a52d\ncf85ab28b5\ncfc2e50b9d\ncfcd571fff\ncfd9d4ae47\ncfda2dcce5\ncff035928b\ncff8191891\nd01608c2a5\nd01a8f1f83\nd021d68bca\nd04258ca14\nd0483573dc\nd04a90aaff\nd05279c0bd\nd0696bd5fc\nd072fda75b\nd0a83bcd9f\nd0ab39112e\nd0acde820f\nd0b4442c71\nd0c65e9e95\nd0fb600c73\nd107a1457c\nd123d674c1\nd14d1e9289\nd154e3388e\nd177e9878a\nd1802f69f8\nd182c4483a\nd195d31128\nd200838929\nd205e3cff5\nd247420c4c\nd2484bff33\nd26f6ed9b0\nd280fcd1cb\nd2857f0faa\nd292a50c7f\nd295ea2dc7\nd2a58b4fa6\nd2b026739a\nd2ebe0890f\nd2ede5d862\nd301ca58cc\nd3069da8bb\nd343d4a77d\nd355e634ef\nd367fb5253\nd36d16358e\nd38bc77e2c\nd38d1679e2\nd3932ad4bd\nd3987b2930\nd39934abe3\nd3ae1c3f4c\nd3b088e593\nd3e6e05e16\nd3eefae7c5\nd3f55f5ab8\nd3f5c309cc\nd4034a7fdf\nd4193011f3\nd429c67630\nd42c0ff975\nd44a764409\nd44e6acd1d\nd45158c175\nd454e8444f\nd45f62717e\nd48ebdcf74\nd49ab52a25\nd4a607ad81\nd4b063c7db\nd4da13e9ba\nd4dd1a7d00\nd4f4f7c9c3\nd521aba02e\nd535bb1b97\nd53b955f78\nd55cb7a205\nd55f247a45\nd5695544d8\nd5853d9b8b\nd5b6c6d94a\nd5cae12834\nd5df027f0c\nd5ee40e5d0\nd600046f73\nd632fd3510\nd6476cad55\nd65a7bae86\nd664c89912\nd689658f06\nd6917db4be\nd69967143e\nd699d3d798\nd69f757a3f\nd6ac0e065c\nd6c02bfda5\nd6c1b5749e\nd6e12ef6cc\nd6eed152c4\nd6faaaf726\nd704766646\nd708e1350c\nd7135cf104\nd7157a9f44\nd719cf9316\nd724134cfd\nd73a60a244\nd7411662da\nd74875ea7c\nd756f5a694\nd7572b7d8a\nd763bd6d96\nd7697c8b13\nd7797196b4\nd79c834768\nd7b34e5d73\nd7bb6b37a7\nd7c7e064a6\nd7fbf545b3\nd82a0aa15b\nd847e24abd\nd8596701b7\nd86101499c\nd87069ba86\nd87160957b\nd874654b52\nd88a403092\nd8aee40f3f\nd8e77a222d\nd8eb07c381\nd9010348a1\nd90e3cf281\nd92532c7b2\nd927fae122\nd95707bca8\nd973b31c00\nd991cb471d\nd992c69d37\nd99d770820\nd9b63abc11\nd9db6f1983\nd9e52be2d2\nd9edc82650\nda01070697\nda070ea4b7\nda080507b9\nda0e944cc4\nda28d94ff4\nda5d78b9d1\nda6003fc72\nda690fee9f\nda6c68708f\nda7a816676\ndac361e828\ndac71659b8\ndad980385d\ndaebc12b77\ndb0968cdd3\ndb231a7100\ndb59282ace\ndb7f267c3f\ndba35b87fd\ndbba735a50\ndbca076acd\ndbd66dc3ac\ndbdc3c292b\ndbf4a5b32b\ndbfc417d28\ndc1745e0a2\ndc32a44804\ndc34b35e30\ndc504a4f79\ndc704dd647\ndc71bc6918\ndc7771b3be\ndcf8c93617\ndd0f4c9fb9\ndd415df125\ndd601f9a3f\ndd61d903df\ndd77583736\ndd8636bd8b\ndd9fe6c6ac\nddb2da4c14\nddcd450d47\ndde8e67fb4\nddfc3f04d3\nde2ab79dfa\nde2f35b2fd\nde30990a51\nde36b216da\nde37403340\nde46e4943b\nde4ddbccb1\nde5e480f05\nde6a9382ca\nde74a601d3\nde827c510d\nded6069f7b\ndefb71c741\ndf01f277f1\ndf05214b82\ndf0638b0a0\ndf11931ffe\ndf1b0e4620\ndf20a8650d\ndf2bc56d7c\ndf365282c6\ndf39a0d9df\ndf3c430c24\ndf5536cfb9\ndf59cfd91d\ndf5e2152b3\ndf741313c9\ndf7626172f\ndf8ad5deb9\ndf96aa609a\ndf9705605c\ndf9c91c4da\ndfc0d3d27a\ndfdbf91a99\ne00baaae9b\ne0a938c6e7\ne0b2ceee6f\ne0bdb5dfae\ne0be1f6e17\ne0c478f775\ne0de82caa7\ne0f217dd59\ne0f7208874\ne0fb58395e\ne1194c2e9d\ne11adcd05d\ne128124b9d\ne1495354e4\ne1561d6d4b\ne158805399\ne16945b951\ne19edcd34b\ne1a1544285\ne1ab7957f4\ne1d26d35be\ne1e957085b\ne1f14510fa\ne214b160f4\ne2167379b8\ne21acb20ab\ne221105579\ne22ddf8a1b\ne22de45950\ne22ffc469b\ne23cca5244\ne252f46f0b\ne25fa6cf39\ne26e486026\ne275760245\ne27bbedbfe\ne29e9868a8\ne2b37ff8af\ne2b608d309\ne2bef4da9a\ne2c87a6421\ne2ea25542c\ne2fb1d6497\ne2fcc99117\ne33c18412a\ne348377191\ne352cb59c8\ne36ac982f0\ne391bc981e\ne39e3e0a06\ne3bf38265f\ne3d5b2cd21\ne3d60e82d5\ne3e3245492\ne3e4134877\ne3f4635e03\ne4004ee048\ne402d1afa5\ne415093d27\ne41ceb5d81\ne424653b78\ne42b6d3dbb\ne42d60f0d4\ne436d0ff1e\ne43d7ae2c5\ne4428801bc\ne44e0b4917\ne470345ede\ne48e8b4263\ne4922e3726\ne4936852bb\ne495f32c60\ne499228f26\ne4af66e163\ne4b2095f58\ne4d19c8283\ne4d4872dab\ne4e2983570\ne4eaa63aab\ne4ef0a3a34\ne4f8e5f46e\ne4ffb6d0dd\ne53e21aa02\ne57f4f668b\ne588433c1e\ne597442c99\ne5abc0e96b\ne5be628030\ne5ce96a55d\ne5d6b70a9f\ne5fde1574c\ne625e1d27b\ne6261d2348\ne6267d46bc\ne6295f223f\ne63463d8c6\ne6387bd1e0\ne653883384\ne65f134e0b\ne668ef5664\ne672ccd250\ne674510b20\ne676107765\ne699da0cdf\ne6be243065\ne6deab5e0b\ne6f065f2b9\ne71629e7b5\ne72a7d7b0b\ne72f6104e1\ne75a466eea\ne76c55933f\ne7784ec8ad\ne78922e5e6\ne78d450a9c\ne7c6354e77\ne7c8de1fce\ne7ea10db28\ne803918710\ne8073a140b\ne828dd02db\ne845994987\ne8485a2615\ne85c5118a7\ne88b6736e4\ne8962324e3\ne8b3018d36\ne8cee8bf0b\ne8d97ebece\ne8da49ea6a\ne8ed1a3ccf\ne8f7904326\ne8f8341dec\ne8fa21eb13\ne90c10fc4c\ne914b8cac8\ne92b6bfea4\ne92e1b7623\ne93f83e512\ne9422ad240\ne9460b55f9\ne9502628f6\ne950befd5f\ne9582bdd1b\ne95e5afe0f\ne97cfac475\ne98d57d99c\ne98eda8978\ne99706b555\ne9bc0760ba\ne9d3c78bf3\ne9ec1b7ea8\nea065cc205\nea138b6617\nea16d3fd48\nea2545d64b\nea286a581c\nea320da917\nea345f3627\nea3b94a591\nea444a37eb\nea4a01216b\nea5672ffa8\neaa99191cb\neaab4d746c\neac7a59bc1\nead5d3835a\neaec65cfa7\neaed1a87be\neb2f821c6f\neb383cb82e\neb6992fe02\neb6ac20a01\neb6d7ab39e\neb7921facd\neb8fce51a6\nebbb90e9f9\nebbf5c9ee1\nebc4ec32e6\nebe56e5ef8\nec1299aee4\nec139ff675\nec193e1a01\nec28252938\nec387be051\nec3d4fac00\nec4186ce12\nec579c2f96\necae59b782\necb33a0448\nece6bc9e92\necfedd4035\necfff22fd6\ned3291c3d6\ned3cd5308d\ned3e6fc1a5\ned72ae8825\ned7455da68\ned844e879f\ned8f814b2b\ned911a1f63\ned9ff4f649\neda8ab984b\nedb8878849\nedbfdfe1b4\nedd22c46a2\nedd663afa3\nede3552eae\nedeab61ee0\nee07583fc0\nee316eaed6\nee3f509537\nee40a1e491\nee4bf100f1\nee6f9b01f9\nee947ed771\nee9706ac7f\nee9a7840ae\neeb90cb569\neebf45e5c5\neeed0c7d73\nef0061a309\nef07f1a655\nef0a8e8f35\nef232a2aed\nef308ad2e9\nef44945428\nef45ce3035\nef5dde449d\nef5e770988\nef6359cea3\nef65268834\nef6cb5eae0\nef78972bc2\nef8cfcfc4f\nef96501dd0\nef9a2e976b\nefb24f950f\nefce0c1868\nefe5ac6901\nefe828affa\nefea4e0523\nf0268aa627\nf0483250c8\nf04cf99ee6\nf05b189097\nf08928c6d3\nf09d74856f\nf0a7607d63\nf0ad38da27\nf0c34e1213\nf0c7f86c29\nf0dfa18ba7\nf0eb3179f7\nf119bab27d\nf14409b6a3\nf1489baff4\nf14c18cf6a\nf15c607b92\nf1af214222\nf1b77bd309\nf1ba9e1a3e\nf1d99239eb\nf1dc710cf4\nf1ec5c08fa\nf22648fe12\nf22d21f1f1\nf233257395\nf23e95dbe5\nf2445b1572\nf253b3486d\nf277c7a6a4\nf2ab2b84d6\nf2b7c9b1f3\nf2b83d5ce5\nf2c276018f\nf2cfd94d64\nf2dd6e3add\nf2e7653f16\nf2f333ad06\nf2f55d6713\nf2fdb6abec\nf305a56d9f\nf3085d6570\nf3325c3338\nf3400f1204\nf34497c932\nf34a56525e\nf36483c824\nf3704d5663\nf3734c4913\nf38e5aa5b4\nf3986fba44\nf3a0ffc7d9\nf3b24a7d28\nf3e6c35ec3\nf3fc0ea80b\nf40a683fbe\nf4207ca554\nf4377499c2\nf46184f393\nf46c2d0a6d\nf46c364dca\nf46f7a0b63\nf46fe141b0\nf470b9aeb0\nf47eb7437f\nf48b535719\nf49e4866ac\nf4aa882cfd\nf4daa3dbd5\nf4dd51ac35\nf507a1b9dc\nf51c5ac84b\nf52104164b\nf54c67b9bb\nf5966cadd2\nf5bddf5598\nf5d85cfd17\nf5e2e7d6a0\nf5f051e9b4\nf5f8a93a76\nf6283e8af5\nf635e9568b\nf6474735be\nf659251be2\nf66981af4e\nf6708fa398\nf697fe8e8f\nf6adb12c42\nf6c7906ca4\nf6cd0a8016\nf6d6f15ae7\nf6e501892c\nf6f59d986f\nf6fe8c90a5\nf714160545\nf74c3888d7\nf7782c430e\nf7783ae5f2\nf77ab47923\nf788a98327\nf7961ac1f0\nf7a71e7574\nf7a8521432\nf7afbf4947\nf7b7cd5f44\nf7cf4b4a39\nf7d49799ad\nf7e0c9bb83\nf7e5b84928\nf7e6bd58be\nf7f2a38ac6\nf7f6cb2d6d\nf83f19e796\nf85796a921\nf8603c26b2\nf8819b42ec\nf891f8eaa1\nf89288d10c\nf895ae8cc1\nf8b4ac12f1\nf8c3fb2b01\nf8c8de2764\nf8db369b40\nf8fcb6a78c\nf94aafdeef\nf95d217b70\nf9681d5103\nf9750192a4\nf9823a32c2\nf991ddb4c2\nf99d535567\nf9ae3d98b7\nf9b6217959\nf9bd1fabf5\nf9c68eaa64\nf9d3e04c4f\nf9daf64494\nf9e4cc5a0a\nf9ea6b7f31\nf9f3852526\nfa04c615cf\nfa08e00a56\nfa4370d74d\nfa67744af3\nfa88d48a92\nfa8b904cc9\nfa9526bdf1\nfa9b9d2426\nfad633fbe1\nfaf5222dc3\nfaff0e15f1\nfb08c64e8c\nfb23455a7f\nfb2e19fa6e\nfb34dfbb77\nfb47fcea1e\nfb49738155\nfb4cbc514b\nfb4e6062f7\nfb5ba7ad6e\nfb63cd1236\nfb81157a07\nfb92abdaeb\nfba22a6848\nfbaca0c9df\nfbc645f602\nfbd77444cd\nfbe53dc8e8\nfbe541dd73\nfbe8488798\nfbfd25174f\nfc28cb305e\nfc33b1ffd6\nfc6186f0bb\nfc918e3a40\nfc96cda9d8\nfc9832eea4\nfcb10d0f81\nfcd20a2509\nfcf637e3ab\nfcfd81727f\nfd31890379\nfd33551c28\nfd542da05e\nfd6789b3fe\nfd77828200\nfd7af75f4d\nfdb28d0fbb\nfdb3d1fb1e\nfdb8b04124\nfdc6e3d581\nfdfce7e6fc\nfe0f76d41b\nfe24b0677d\nfe3c02699d\nfe58b48235\nfe6a5596b8\nfe6c244f63\nfe7afec086\nfe985d510a\nfe9db35d15\nfea8ffcd36\nfeb1080388\nfed208bfca\nfeda5ad1c2\nfeec95b386\nff15a5eff6\nff204daf4b\nff25f55852\nff2ada194f\nff2ce142e8\nff49d36d20\nff5a1ec4f3\nff66152b25\nff692fdc56\nff773b1a1e\nff97129478\nffb904207d\nffc43fc345\nfffe5f8df6\n"
  },
  {
    "path": "merge_lora_weights_and_save_hf_model.py",
    "content": "import argparse\nimport glob\nimport os\nimport sys\n\nimport cv2\nimport numpy as np\nimport torch\nimport torch.nn.functional as F\nimport transformers\nfrom peft import LoraConfig, get_peft_model\nfrom transformers import AutoTokenizer\n\nfrom model.VISA import VISAForCausalLM\nfrom utils.utils import DEFAULT_IM_END_TOKEN, DEFAULT_IM_START_TOKEN\n\n\"\"\"\npython merge_lora_weights_and_save_hf_model.py \\\n    --version   /mnt/nlp-ali/usr/yancilin/clyan-data-2/video-llm/Chat-UniVi/Chat-UniVi \\\n    --weight    /mnt/public03/dataset/ovis/rgvos/visa7b/ckpt_model/pytorch_model15000.bin \\\n    --save_path /mnt/public03/dataset/ovis/rgvos/visa7b/ckpt_model/hf_model\n\"\"\"\n\ndef parse_args(args):\n    parser = argparse.ArgumentParser(\n        description=\"merge lora weights and save model with hf format\"\n    )\n    parser.add_argument(\n        \"--version\", default=\"Chat-UniVi/Chat-UniVi\", type=str, required=True\n    )\n    parser.add_argument(\n        \"--weight\", default=\"/path/to/visa/pytorch_model.bin\", type=str, required=True\n    )\n    parser.add_argument(\n        \"--save_path\", default=\"/path/to/hf_model\", type=str, required=True\n    )\n    parser.add_argument(\"--precision\", default=\"bf16\", type=str, choices=[\"fp32\", \"bf16\", \"fp16\"], help=\"precision for inference\", )\n    parser.add_argument(\"--vision_pretrained\", default=\"PATH_TO_SAM_ViT-H\", type=str)\n    parser.add_argument(\"--out_dim\", default=256, type=int)\n    parser.add_argument(\"--image_size\", default=1024, type=int, help=\"image size\")\n    parser.add_argument(\"--model_max_length\", default=512, type=int)\n    parser.add_argument(\"--vision-tower\", default=\"openai/clip-vit-large-patch14\", type=str, )\n    parser.add_argument(\"--lora_r\", default=8, type=int)\n    parser.add_argument(\"--lora_alpha\", default=16, type=int)\n    parser.add_argument(\"--lora_dropout\", default=0.05, type=float)\n    parser.add_argument(\"--lora_target_modules\", default=\"q_proj,v_proj\", type=str)\n    parser.add_argument(\"--local-rank\", default=0, type=int, help=\"node rank\")\n    parser.add_argument(\"--train_mask_decoder\", action=\"store_true\", default=True)\n    parser.add_argument(\"--use_mm_start_end\", action=\"store_true\", default=False)\n    parser.add_argument(\"--conv_type\", default=\"llava_v1\", type=str, choices=[\"llava_v1\", \"llava_llama_2\"], )\n    return parser.parse_args(args)\n\n\ndef main(args):\n    args = parse_args(args)\n\n    # Create model\n    tokenizer = transformers.AutoTokenizer.from_pretrained(\n        args.version,\n        cache_dir        = None,\n        model_max_length = args.model_max_length,\n        padding_side     = \"right\",\n        use_fast         = False,\n    )\n    tokenizer.pad_token = tokenizer.unk_token\n    num_added_tokens    = tokenizer.add_tokens(\"[SEG]\")\n    args.seg_token_idx  = tokenizer(\"[SEG]\", add_special_tokens=False).input_ids[0]\n\n    if args.use_mm_start_end:\n        tokenizer.add_tokens([DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN], special_tokens=True)\n\n    model_args = {\n        \"train_mask_decoder\": args.train_mask_decoder,\n        \"out_dim\"           : args.out_dim,\n        \"seg_token_idx\"     : args.seg_token_idx,\n        \"vision_tower\"      : args.vision_tower,\n    }\n\n    torch_dtype = torch.float32\n    if args.precision == \"bf16\":\n        torch_dtype = torch.bfloat16\n    elif args.precision == \"fp16\":\n        torch_dtype = torch.half\n    model = VISAForCausalLM.from_pretrained(args.version, torch_dtype=torch_dtype, low_cpu_mem_usage=True, **model_args, )\n    model.config.eos_token_id = tokenizer.eos_token_id\n    model.config.bos_token_id = tokenizer.bos_token_id\n    model.config.pad_token_id = tokenizer.pad_token_id\n\n    model.get_model().initialize_vision_modules(model.get_model().config)\n    vision_tower = model.get_model().get_vision_tower()\n    vision_tower.to(dtype=torch_dtype)\n    model.get_model().initialize_lisa_modules(model.get_model().config)\n\n    lora_r = args.lora_r\n    if lora_r > 0:\n\n        def find_linear_layers(model, lora_target_modules):\n            cls = torch.nn.Linear\n            lora_module_names = set()\n            for name, module in model.named_modules():\n                if (\n                    isinstance(module, cls)\n                    and all([x not in name for x in [\"visual_model\", \"vision_tower\", \"mm_projector\", \"text_hidden_fcs\", ]])\n                    and any([x in name for x in lora_target_modules])\n                ):\n                    lora_module_names.add(name)\n            return sorted(list(lora_module_names))\n\n        lora_alpha = args.lora_alpha\n        lora_dropout = args.lora_dropout\n        lora_target_modules = find_linear_layers(model, args.lora_target_modules.split(\",\"), )\n        lora_config = LoraConfig(\n            r              = lora_r,\n            lora_alpha     = lora_alpha,\n            target_modules = lora_target_modules,\n            lora_dropout   = lora_dropout,\n            bias           = \"none\",\n            task_type      = \"CAUSAL_LM\",\n        )\n        model = get_peft_model(model, lora_config)\n        model.print_trainable_parameters()\n\n    model.resize_token_embeddings(len(tokenizer))\n\n    state_dict = torch.load(args.weight, map_location=\"cpu\")\n    model.load_state_dict(state_dict, strict=True)\n\n    model = model.merge_and_unload()\n    state_dict = {}\n    for k, v in model.state_dict().items():\n        if \"vision_tower\" not in k:\n            state_dict[k] = v\n    model.save_pretrained(args.save_path, state_dict=state_dict)\n    tokenizer.save_pretrained(args.save_path)\n\n\nif __name__ == \"__main__\":\n    main(sys.argv[1:])\n"
  },
  {
    "path": "model/VISA.py",
    "content": "from typing import List\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nfrom transformers import BitsAndBytesConfig, CLIPVisionModel\n\nfrom utils.utils import DEFAULT_IM_END_TOKEN, DEFAULT_IM_START_TOKEN, DEFAULT_IMAGE_PATCH_TOKEN\n\nfrom .univi.model.language_model.llama import ChatUniViLlamaForCausalLM, ChatUniViLlamaModel\n\nfrom .segment_anything import build_sam_vit_h\nfrom model.univi.constants import IMAGE_TOKEN_INDEX\n\nimport time\n\n\ndef dice_loss(\n    inputs   : torch.Tensor,\n    targets  : torch.Tensor,\n    num_masks: float,\n    scale    : float =1000,\n    eps      : float =1e-6,\n):\n    \"\"\"\n    Compute the DICE loss, similar to generalized IOU for masks\n    Args:\n        inputs: A float tensor of arbitrary shape.\n                The predictions for each example.\n        targets: A float tensor with the same shape as inputs. Stores the binary classification label for each element in inputs (0 for the negative class and 1 for the positive class).\n    \"\"\"\n    inputs = inputs.sigmoid()\n    inputs = inputs.flatten(1, 2)\n    targets = targets.flatten(1, 2)\n    numerator = 2 * (inputs / scale * targets).sum(-1)\n    denominator = (inputs / scale).sum(-1) + (targets / scale).sum(-1)\n    loss = 1 - (numerator + eps) / (denominator + eps)\n    loss = loss.sum() / (num_masks + 1e-8)\n    return loss\n\n\ndef sigmoid_ce_loss(\n    inputs: torch.Tensor,\n    targets: torch.Tensor,\n    num_masks: float,\n):\n    \"\"\"\n    Args:\n        inputs: A float tensor of arbitrary shape.\n                The predictions for each example.\n        targets: A float tensor with the same shape as inputs. Stores the binary classification label for each element in inputs (0 for the negative class and 1 for the positive class).\n    Returns:\n        Loss tensor\n    \"\"\"\n    loss = F.binary_cross_entropy_with_logits(inputs, targets, reduction=\"none\")\n    loss = loss.flatten(1, 2).mean(1).sum() / (num_masks + 1e-8)\n    return loss\n\n\nclass VisaMetaModel:\n    def __init__(\n        self,\n        config,\n        **kwargs,\n    ):\n        super(VisaMetaModel, self).__init__(config)\n\n        self.config = config\n        if not hasattr(self.config, \"train_mask_decoder\"):\n            self.config.train_mask_decoder = kwargs[\"train_mask_decoder\"]\n            self.config.out_dim = kwargs[\"out_dim\"]\n            self.vision_pretrained = kwargs.get(\"vision_pretrained\", None)\n        else:\n            self.vision_pretrained = kwargs.get(\"vision_pretrained\", None)\n            self.initialize_lisa_modules(self.config)\n\n    def initialize_lisa_modules(self, config):\n        # SAM\n        self.visual_model = build_sam_vit_h(self.vision_pretrained)\n        for param in self.visual_model.parameters():\n            param.requires_grad = False\n        if config.train_mask_decoder:\n            self.visual_model.mask_decoder.train()\n            for param in self.visual_model.mask_decoder.parameters():\n                param.requires_grad = True\n\n        # Projection layer\n        in_dim = config.hidden_size\n        out_dim = config.out_dim\n        text_fc = [\n            nn.Linear(in_dim, in_dim),\n            nn.ReLU(inplace=True),\n            nn.Linear(in_dim, out_dim),\n            nn.Dropout(0.0),\n        ]\n        self.text_hidden_fcs = nn.ModuleList([nn.Sequential(*text_fc)])\n        self.text_hidden_fcs.train()\n        for param in self.text_hidden_fcs.parameters():\n            param.requires_grad = True\n\n\nclass VisaModel(VisaMetaModel, ChatUniViLlamaModel):\n    def __init__(\n        self,\n        config,\n        **kwargs,\n    ):\n        super(VisaModel, self).__init__(config, **kwargs)\n\n        self.config.use_cache = False\n        self.config.vision_tower = self.config.mm_vision_tower\n        self.config.mm_vision_select_feature = \"patch\"\n        self.config.image_aspect_ratio = \"square\"\n        self.config.image_grid_pinpoints = None\n        self.config.tune_mm_mlp_adapter = False\n        self.config.freeze_mm_mlp_adapter = True\n        self.config.pretrain_mm_mlp_adapter = None\n        self.config.mm_use_im_patch_token = False\n\n\nclass VISAForCausalLM(ChatUniViLlamaForCausalLM):\n    def __init__(\n        self,\n        config,\n        **kwargs,\n    ):\n        if not hasattr(config, \"train_mask_decoder\"):\n            config.mm_use_im_start_end = kwargs.pop(\"use_mm_start_end\", True)\n            config.mm_vision_tower = kwargs.get(\"vision_tower\", \"openai/clip-vit-large-patch14\")\n            self.ce_loss_weight = kwargs.pop(\"ce_loss_weight\", None)\n            self.dice_loss_weight = kwargs.pop(\"dice_loss_weight\", None)\n            self.bce_loss_weight = kwargs.pop(\"bce_loss_weight\", None)\n        else:\n            config.mm_vision_tower = config.vision_tower\n            \n        self.seg_token_idx = kwargs.pop(\"seg_token_idx\")\n\n        super().__init__(config)\n\n        self.model = VisaModel(config, **kwargs)\n\n        self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)\n\n        # Initialize weights and apply final processing\n        self.post_init()\n\n    def get_visual_embs(self, pixel_values: torch.FloatTensor):\n        with torch.no_grad():\n            image_embeddings = self.model.visual_model.image_encoder(pixel_values)\n        return image_embeddings\n\n    def forward(self, **kwargs):\n        if \"past_key_values\" in kwargs:\n            return super().forward(**kwargs)\n        return self.model_forward(**kwargs)\n\n    def model_forward(\n        self,\n        images: torch.FloatTensor,\n        images_clip: torch.FloatTensor,\n        input_ids: torch.LongTensor,\n        labels: torch.LongTensor,\n        attention_masks: torch.LongTensor,\n        offset: torch.LongTensor,\n        masks_list: List[torch.FloatTensor],\n        label_list: List[torch.Tensor],\n        resize_list: List[tuple],\n        conversation_list: List[str], \n        num_frame_list: List[int],\n        num_conv_list: List[int],\n        inference: bool = False,\n        **kwargs,\n    ):\n\n        batch_size = len(images)\n        image_embeddings = self.get_visual_embs(torch.cat(images,dim=0))\n        assert image_embeddings.shape[0] == batch_size\n        assert batch_size == len(offset) - 1\n        for batch_idx in range(batch_size):\n            assert num_conv_list[batch_idx] == offset[batch_idx + 1] - offset[batch_idx]\n\n        if inference:\n            length = input_ids.shape[0]\n            assert len(images_clip) == 1, f'Inference only supports one video, but got {len(images_clip)} videos.'\n            images_clip = [\n                images_clip[0].unsqueeze(0).expand(length, -1, -1, -1, -1).contiguous().flatten(0,1)\n            ]\n\n            output_i = super().forward(\n                images=images_clip,\n                attention_mask=attention_masks,\n                input_ids=input_ids,\n                output_hidden_states=True,\n            )\n            torch.cuda.empty_cache()\n\n            output_hidden_states = output_i.hidden_states\n            output = None\n\n            num_image_ori_token = (input_ids[0] == IMAGE_TOKEN_INDEX).sum()\n            assert all(\n                [\n                    (input_ids[i] == IMAGE_TOKEN_INDEX).sum() == num_image_ori_token for i in range(length)\n                ]\n            )\n            token_add = 111 * num_image_ori_token\n\n            seg_token_mask = input_ids[:, 1:] == self.seg_token_idx\n            seg_token_mask = torch.cat([seg_token_mask,  torch.zeros((seg_token_mask.shape[0], 1)).bool().cuda(), ], dim=1, )\n            seg_token_mask = torch.cat([torch.zeros((seg_token_mask.shape[0], token_add)).bool().cuda(), seg_token_mask], dim=1, )\n            all_conv_seg_token_num = seg_token_mask.sum(dim=1).tolist()\n\n        else:\n            images_clip_list = []\n            for batch_idx in range(batch_size):\n                bs_conv_num = num_conv_list[batch_idx]\n                images_clip_i = images_clip[batch_idx].unsqueeze(0).expand(bs_conv_num, -1, -1, -1, -1).contiguous()\n                images_clip_list.append(images_clip_i)\n            images_clip_list = [i.flatten(0,1) for i in images_clip_list]\n\n            output = super().forward(\n                images=images_clip_list,\n                attention_mask=attention_masks,\n                input_ids=input_ids,\n                labels=labels,\n                output_hidden_states=True,\n            )\n            output_hidden_states = output.hidden_states\n\n\n            seg_token_mask = output.labels[..., 1:] == self.seg_token_idx\n            seg_token_mask = torch.cat([seg_token_mask,  torch.zeros((seg_token_mask.shape[0], 1), device=output.labels.device).bool(), ], dim=1, )\n            all_conv_seg_token_num = seg_token_mask.sum(dim=1).tolist()\n\n        assert len(self.model.text_hidden_fcs) == 1\n\n        pred_embeddings = self.model.text_hidden_fcs[0](output_hidden_states[-1][seg_token_mask])\n\n        seg_token_counts = seg_token_mask.int().sum(-1)  # [bs, ]\n\n        seg_token_offset = seg_token_counts.cumsum(-1)\n        seg_token_offset = torch.cat(\n            [torch.zeros(1).long().cuda(), seg_token_offset], dim=0\n        )\n\n        seg_token_offset = seg_token_offset[offset]\n\n        pred_embeddings_ = []\n        for i in range(len(seg_token_offset) - 1):\n            start_i, end_i = seg_token_offset[i], seg_token_offset[i + 1]\n            pred_embeddings_.append(pred_embeddings[start_i:end_i])\n        pred_embeddings = pred_embeddings_\n\n        assert len(pred_embeddings) == batch_size\n\n        multimask_output = False\n        pred_masks = []\n        for i in range(batch_size):\n\n            (\n                sparse_embeddings,\n                dense_embeddings,\n            ) = self.model.visual_model.prompt_encoder(\n                points=None,\n                boxes=None,\n                masks=None,\n                text_embeds=pred_embeddings[i].unsqueeze(1),\n            )\n            sparse_embeddings = sparse_embeddings.to(pred_embeddings[i].dtype)\n            low_res_masks, iou_predictions = self.model.visual_model.mask_decoder(\n                image_embeddings=image_embeddings[i].unsqueeze(0),\n                image_pe=self.model.visual_model.prompt_encoder.get_dense_pe(),\n                sparse_prompt_embeddings=sparse_embeddings,\n                dense_prompt_embeddings=dense_embeddings,\n                multimask_output=multimask_output,\n            )\n            pred_mask = self.model.visual_model.postprocess_masks(\n                low_res_masks,\n                input_size=resize_list[i],\n                original_size=label_list[i].shape,\n            )\n            pred_masks.append(pred_mask[:, 0])\n\n\n\n        model_output = output\n        gt_masks = [mm.flatten(0, 1) for mm in masks_list]\n\n        if inference:\n            return {\n                \"pred_masks\": pred_masks,\n                \"gt_masks\": gt_masks,\n            }\n\n        output = model_output.logits\n\n        ce_loss = model_output.loss\n        ce_loss = ce_loss * self.ce_loss_weight\n        mask_bce_loss = 0\n        mask_dice_loss = 0\n        num_masks = 0\n        for batch_idx in range(batch_size):\n            gt_mask = gt_masks[batch_idx]\n            pred_mask = pred_masks[batch_idx]\n\n            assert (\n                gt_mask.shape[0] == pred_mask.shape[0]\n            ), \"gt_mask.shape: {}, pred_mask.shape: {}\".format(\n                gt_mask.shape, pred_mask.shape\n            )\n            mask_bce_loss += (\n                sigmoid_ce_loss(pred_mask, gt_mask, num_masks=gt_mask.shape[0])\n                * gt_mask.shape[0]\n            )\n            mask_dice_loss += (\n                dice_loss(pred_mask, gt_mask, num_masks=gt_mask.shape[0])\n                * gt_mask.shape[0]\n            )\n            num_masks += gt_mask.shape[0]\n\n        mask_bce_loss = self.bce_loss_weight * mask_bce_loss / (num_masks + 1e-8)\n        mask_dice_loss = self.dice_loss_weight * mask_dice_loss / (num_masks + 1e-8)\n        mask_loss = mask_bce_loss + mask_dice_loss\n\n        loss = ce_loss + mask_loss\n        return {\n            \"loss\": loss,\n            \"ce_loss\": ce_loss,\n            \"mask_bce_loss\": mask_bce_loss,\n            \"mask_dice_loss\": mask_dice_loss,\n            \"mask_loss\": mask_loss,\n        }\n\n    def evaluate(self, *args, **kwargs):\n        raise NotImplementedError(\"This method is not implemented.\")"
  },
  {
    "path": "model/llava/__init__.py",
    "content": "from .model import LlavaLlamaForCausalLM\n"
  },
  {
    "path": "model/llava/constants.py",
    "content": "CONTROLLER_HEART_BEAT_EXPIRATION = 30\nWORKER_HEART_BEAT_INTERVAL = 15\n\nLOGDIR = \".\"\n\n# Model Constants\nIGNORE_INDEX = -100\nIMAGE_TOKEN_INDEX = -200\nDEFAULT_IMAGE_TOKEN = \"<image>\"\nDEFAULT_IMAGE_PATCH_TOKEN = \"<im_patch>\"\nDEFAULT_IM_START_TOKEN = \"<im_start>\"\nDEFAULT_IM_END_TOKEN = \"<im_end>\"\n"
  },
  {
    "path": "model/llava/conversation.py",
    "content": "import dataclasses\nfrom enum import Enum, auto\nfrom typing import List, Tuple\n\n\nclass SeparatorStyle(Enum):\n    \"\"\"Different separator style.\"\"\"\n\n    SINGLE = auto()\n    TWO = auto()\n    MPT = auto()\n    PLAIN = auto()\n    LLAMA_2 = auto()\n\n\n@dataclasses.dataclass\nclass Conversation:\n    \"\"\"A class that keeps all conversation history.\"\"\"\n\n    system: str\n    roles: List[str]\n    messages: List[List[str]]\n    offset: int\n    sep_style: SeparatorStyle = SeparatorStyle.SINGLE\n    sep: str = \"###\"\n    sep2: str = None\n    version: str = \"Unknown\"\n\n    skip_next: bool = False\n\n    def get_prompt(self):\n        messages = self.messages\n        if len(messages) > 0 and type(messages[0][1]) is tuple:\n            messages = self.messages.copy()\n            init_role, init_msg = messages[0].copy()\n            init_msg = init_msg[0].replace(\"<image>\", \"\").strip()\n            if \"mmtag\" in self.version:\n                messages[0] = (init_role, init_msg)\n                messages.insert(0, (self.roles[0], \"<Image><image></Image>\"))\n                messages.insert(1, (self.roles[1], \"Received.\"))\n            else:\n                messages[0] = (init_role, \"<image>\\n\" + init_msg)\n\n        if self.sep_style == SeparatorStyle.SINGLE:\n            ret = self.system + self.sep\n            for role, message in messages:\n                if message:\n                    if type(message) is tuple:\n                        message, _, _ = message\n                    ret += role + \": \" + message + self.sep\n                else:\n                    ret += role + \":\"\n        elif self.sep_style == SeparatorStyle.TWO:\n            seps = [self.sep, self.sep2]\n            ret = self.system + seps[0]\n            for i, (role, message) in enumerate(messages):\n                if message:\n                    if type(message) is tuple:\n                        message, _, _ = message\n                    ret += role + \": \" + message + seps[i % 2]\n                else:\n                    ret += role + \":\"\n        elif self.sep_style == SeparatorStyle.MPT:\n            ret = self.system + self.sep\n            for role, message in messages:\n                if message:\n                    if type(message) is tuple:\n                        message, _, _ = message\n                    ret += role + message + self.sep\n                else:\n                    ret += role\n        elif self.sep_style == SeparatorStyle.LLAMA_2:\n            wrap_sys = lambda msg: f\"<<SYS>>\\n{msg}\\n<</SYS>>\\n\\n\"\n            wrap_inst = lambda msg: f\"[INST] {msg} [/INST]\"\n            ret = \"\"\n\n            for i, (role, message) in enumerate(messages):\n                if i == 0:\n                    assert message, \"first message should not be none\"\n                    assert role == self.roles[0], \"first message should come from user\"\n                if message:\n                    if type(message) is tuple:\n                        message, _, _ = message\n                    if i == 0:\n                        message = wrap_sys(self.system) + message\n                    if i % 2 == 0:\n                        message = wrap_inst(message)\n                        ret += self.sep + message\n                    else:\n                        ret += \" \" + message + \" \" + self.sep2\n                else:\n                    ret += \"\"\n            ret = ret.lstrip(self.sep)\n        elif self.sep_style == SeparatorStyle.PLAIN:\n            seps = [self.sep, self.sep2]\n            ret = self.system\n            for i, (role, message) in enumerate(messages):\n                if message:\n                    if type(message) is tuple:\n                        message, _, _ = message\n                    ret += message + seps[i % 2]\n                else:\n                    ret += \"\"\n        else:\n            raise ValueError(f\"Invalid style: {self.sep_style}\")\n\n        return ret\n\n    def append_message(self, role, message):\n        self.messages.append([role, message])\n\n    def get_images(self, return_pil=False):\n        images = []\n        for i, (role, msg) in enumerate(self.messages[self.offset :]):\n            if i % 2 == 0:\n                if type(msg) is tuple:\n                    import base64\n                    from io import BytesIO\n\n                    from PIL import Image\n\n                    msg, image, image_process_mode = msg\n                    if image_process_mode == \"Pad\":\n\n                        def expand2square(pil_img, background_color=(122, 116, 104)):\n                            width, height = pil_img.size\n                            if width == height:\n                                return pil_img\n                            elif width > height:\n                                result = Image.new(\n                                    pil_img.mode, (width, width), background_color\n                                )\n                                result.paste(pil_img, (0, (width - height) // 2))\n                                return result\n                            else:\n                                result = Image.new(\n                                    pil_img.mode, (height, height), background_color\n                                )\n                                result.paste(pil_img, ((height - width) // 2, 0))\n                                return result\n\n                        image = expand2square(image)\n                    elif image_process_mode == \"Crop\":\n                        pass\n                    elif image_process_mode == \"Resize\":\n                        image = image.resize((336, 336))\n                    else:\n                        raise ValueError(\n                            f\"Invalid image_process_mode: {image_process_mode}\"\n                        )\n                    max_hw, min_hw = max(image.size), min(image.size)\n                    aspect_ratio = max_hw / min_hw\n                    max_len, min_len = 800, 400\n                    shortest_edge = int(min(max_len / aspect_ratio, min_len, min_hw))\n                    longest_edge = int(shortest_edge * aspect_ratio)\n                    W, H = image.size\n                    if H > W:\n                        H, W = longest_edge, shortest_edge\n                    else:\n                        H, W = shortest_edge, longest_edge\n                    image = image.resize((W, H))\n                    if return_pil:\n                        images.append(image)\n                    else:\n                        buffered = BytesIO()\n                        image.save(buffered, format=\"PNG\")\n                        img_b64_str = base64.b64encode(buffered.getvalue()).decode()\n                        images.append(img_b64_str)\n        return images\n\n    def to_gradio_chatbot(self):\n        ret = []\n        for i, (role, msg) in enumerate(self.messages[self.offset :]):\n            if i % 2 == 0:\n                if type(msg) is tuple:\n                    import base64\n                    from io import BytesIO\n\n                    msg, image, image_process_mode = msg\n                    max_hw, min_hw = max(image.size), min(image.size)\n                    aspect_ratio = max_hw / min_hw\n                    max_len, min_len = 800, 400\n                    shortest_edge = int(min(max_len / aspect_ratio, min_len, min_hw))\n                    longest_edge = int(shortest_edge * aspect_ratio)\n                    W, H = image.size\n                    if H > W:\n                        H, W = longest_edge, shortest_edge\n                    else:\n                        H, W = shortest_edge, longest_edge\n                    image = image.resize((W, H))\n                    buffered = BytesIO()\n                    image.save(buffered, format=\"JPEG\")\n                    img_b64_str = base64.b64encode(buffered.getvalue()).decode()\n                    img_str = f'<img src=\"data:image/png;base64,{img_b64_str}\" alt=\"user upload image\" />'\n                    ret.append([img_str, None])\n                    msg = msg.replace(\"<image>\", \"\").strip()\n                    if len(msg) > 0:\n                        ret.append([msg, None])\n                else:\n                    ret.append([msg, None])\n            else:\n                ret[-1][-1] = msg\n        return ret\n\n    def copy(self):\n        return Conversation(\n            system=self.system,\n            roles=self.roles,\n            messages=[[x, y] for x, y in self.messages],\n            offset=self.offset,\n            sep_style=self.sep_style,\n            sep=self.sep,\n            sep2=self.sep2,\n            version=self.version,\n        )\n\n    def dict(self):\n        if len(self.get_images()) > 0:\n            return {\n                \"system\": self.system,\n                \"roles\": self.roles,\n                \"messages\": [\n                    [x, y[0] if type(y) is tuple else y] for x, y in self.messages\n                ],\n                \"offset\": self.offset,\n                \"sep\": self.sep,\n                \"sep2\": self.sep2,\n            }\n        return {\n            \"system\": self.system,\n            \"roles\": self.roles,\n            \"messages\": self.messages,\n            \"offset\": self.offset,\n            \"sep\": self.sep,\n            \"sep2\": self.sep2,\n        }\n\n\nconv_vicuna_v0 = Conversation(\n    system=\"A chat between a curious human and an artificial intelligence assistant. \"\n    \"The assistant gives helpful, detailed, and polite answers to the human's questions.\",\n    roles=(\"Human\", \"Assistant\"),\n    messages=(\n        (\n            \"Human\",\n            \"What are the key differences between renewable and non-renewable energy sources?\",\n        ),\n        (\n            \"Assistant\",\n            \"Renewable energy sources are those that can be replenished naturally in a relatively \"\n            \"short amount of time, such as solar, wind, hydro, geothermal, and biomass. \"\n            \"Non-renewable energy sources, on the other hand, are finite and will eventually be \"\n            \"depleted, such as coal, oil, and natural gas. Here are some key differences between \"\n            \"renewable and non-renewable energy sources:\\n\"\n            \"1. Availability: Renewable energy sources are virtually inexhaustible, while non-renewable \"\n            \"energy sources are finite and will eventually run out.\\n\"\n            \"2. Environmental impact: Renewable energy sources have a much lower environmental impact \"\n            \"than non-renewable sources, which can lead to air and water pollution, greenhouse gas emissions, \"\n            \"and other negative effects.\\n\"\n            \"3. Cost: Renewable energy sources can be more expensive to initially set up, but they typically \"\n            \"have lower operational costs than non-renewable sources.\\n\"\n            \"4. Reliability: Renewable energy sources are often more reliable and can be used in more remote \"\n            \"locations than non-renewable sources.\\n\"\n            \"5. Flexibility: Renewable energy sources are often more flexible and can be adapted to different \"\n            \"situations and needs, while non-renewable sources are more rigid and inflexible.\\n\"\n            \"6. Sustainability: Renewable energy sources are more sustainable over the long term, while \"\n            \"non-renewable sources are not, and their depletion can lead to economic and social instability.\\n\",\n        ),\n    ),\n    offset=2,\n    sep_style=SeparatorStyle.SINGLE,\n    sep=\"###\",\n)\n\nconv_vicuna_v1 = Conversation(\n    system=\"A chat between a curious user and an artificial intelligence assistant. \"\n    \"The assistant gives helpful, detailed, and polite answers to the user's questions.\",\n    roles=(\"USER\", \"ASSISTANT\"),\n    version=\"v1\",\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.TWO,\n    sep=\" \",\n    sep2=\"</s>\",\n)\n\nconv_llama_2 = Conversation(\n    system=\"\"\"You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe.  Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature.\n\nIf a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information.\"\"\",\n    roles=(\"USER\", \"ASSISTANT\"),\n    version=\"llama_v2\",\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.LLAMA_2,\n    sep=\"<s>\",\n    sep2=\"</s>\",\n)\n\nconv_llava_llama_2 = Conversation(\n    system=\"You are a helpful language and vision assistant. \"\n    \"You are able to understand the visual content that the user provides, \"\n    \"and assist the user with a variety of tasks using natural language.\",\n    roles=(\"USER\", \"ASSISTANT\"),\n    version=\"llama_v2\",\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.LLAMA_2,\n    sep=\"<s>\",\n    sep2=\"</s>\",\n)\n\nconv_mpt = Conversation(\n    system=\"\"\"<|im_start|>system\nA conversation between a user and an LLM-based AI assistant. The assistant gives helpful and honest answers.\"\"\",\n    roles=(\"<|im_start|>user\\n\", \"<|im_start|>assistant\\n\"),\n    version=\"mpt\",\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.MPT,\n    sep=\"<|im_end|>\",\n)\n\nconv_llava_plain = Conversation(\n    system=\"\",\n    roles=(\"\", \"\"),\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.PLAIN,\n    sep=\"\\n\",\n)\n\nconv_llava_v0 = Conversation(\n    system=\"A chat between a curious human and an artificial intelligence assistant. \"\n    \"The assistant gives helpful, detailed, and polite answers to the human's questions.\",\n    roles=(\"Human\", \"Assistant\"),\n    messages=((\"Human\", \"Hi!\"), (\"Assistant\", \"Hi there! How can I help you today?\")),\n    offset=2,\n    sep_style=SeparatorStyle.SINGLE,\n    sep=\"###\",\n)\n\nconv_llava_v0_mmtag = Conversation(\n    system=\"A chat between a curious user and an artificial intelligence assistant. \"\n    \"The assistant is able to understand the visual content that the user provides, and assist the user with a variety of tasks using natural language.\"\n    \"The visual content will be provided with the following format: <Image>visual content</Image>.\",\n    roles=(\"Human\", \"Assistant\"),\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.SINGLE,\n    sep=\"###\",\n    version=\"v0_mmtag\",\n)\n\nconv_llava_v1 = Conversation(\n    system=\"A chat between a curious human and an artificial intelligence assistant. \"\n    \"The assistant gives helpful, detailed, and polite answers to the human's questions.\",\n    roles=(\"USER\", \"ASSISTANT\"),\n    version=\"v1\",\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.TWO,\n    sep=\" \",\n    sep2=\"</s>\",\n)\n\nconv_llava_v1_mmtag = Conversation(\n    system=\"A chat between a curious user and an artificial intelligence assistant. \"\n    \"The assistant is able to understand the visual content that the user provides, and assist the user with a variety of tasks using natural language.\"\n    \"The visual content will be provided with the following format: <Image>visual content</Image>.\",\n    roles=(\"USER\", \"ASSISTANT\"),\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.TWO,\n    sep=\" \",\n    sep2=\"</s>\",\n    version=\"v1_mmtag\",\n)\n\ndefault_conversation = conv_vicuna_v0\nconv_templates = {\n    \"default\": conv_vicuna_v0,\n    \"v0\": conv_vicuna_v0,\n    \"v1\": conv_vicuna_v1,\n    \"vicuna_v1\": conv_vicuna_v1,\n    \"llama_2\": conv_llama_2,\n    \"plain\": conv_llava_plain,\n    \"v0_plain\": conv_llava_plain,\n    \"llava_v0\": conv_llava_v0,\n    \"v0_mmtag\": conv_llava_v0_mmtag,\n    \"llava_v1\": conv_llava_v1,\n    \"v1_mmtag\": conv_llava_v1_mmtag,\n    \"llava_llama_2\": conv_llava_llama_2,\n    \"mpt\": conv_mpt,\n}\n\n\nif __name__ == \"__main__\":\n    print(default_conversation.get_prompt())\n"
  },
  {
    "path": "model/llava/mm_utils.py",
    "content": "import base64\nfrom io import BytesIO\n\nimport torch\nfrom PIL import Image\nfrom transformers import StoppingCriteria\n\nfrom .constants import IMAGE_TOKEN_INDEX\n\n\ndef load_image_from_base64(image):\n    return Image.open(BytesIO(base64.b64decode(image)))\n\n\ndef process_images(images, image_processor, model_cfg):\n    return image_processor(images, return_tensors=\"pt\")[\"pixel_values\"]\n\n\ndef tokenizer_image_token(\n    prompt, tokenizer, image_token_index=IMAGE_TOKEN_INDEX, return_tensors=None\n):\n    prompt_chunks = [tokenizer(chunk).input_ids for chunk in prompt.split(\"<image>\")]\n\n    def insert_separator(X, sep):\n        return [ele for sublist in zip(X, [sep] * len(X)) for ele in sublist][:-1]\n\n    input_ids = []\n    offset = 0\n    if (\n        len(prompt_chunks) > 0\n        and len(prompt_chunks[0]) > 0\n        and prompt_chunks[0][0] == tokenizer.bos_token_id\n    ):\n        offset = 1\n        input_ids.append(prompt_chunks[0][0])\n\n    for x in insert_separator(prompt_chunks, [image_token_index] * (offset + 1)):\n        input_ids.extend(x[offset:])\n\n    if return_tensors is not None:\n        if return_tensors == \"pt\":\n            return torch.tensor(input_ids, dtype=torch.long)\n        raise ValueError(f\"Unsupported tensor type: {return_tensors}\")\n    return input_ids\n\n\ndef get_model_name_from_path(model_path):\n    model_path = model_path.strip(\"/\")\n    model_paths = model_path.split(\"/\")\n    if model_paths[-1].startswith(\"checkpoint-\"):\n        return model_paths[-2] + \"_\" + model_paths[-1]\n    else:\n        return model_paths[-1]\n\n\nclass KeywordsStoppingCriteria(StoppingCriteria):\n    def __init__(self, keywords, tokenizer, input_ids):\n        self.keywords = keywords\n        self.keyword_ids = []\n        for keyword in keywords:\n            cur_keyword_ids = tokenizer(keyword).input_ids\n            if (\n                len(cur_keyword_ids) > 1\n                and cur_keyword_ids[0] == tokenizer.bos_token_id\n            ):\n                cur_keyword_ids = cur_keyword_ids[1:]\n            self.keyword_ids.append(torch.tensor(cur_keyword_ids))\n        self.tokenizer = tokenizer\n        self.start_len = input_ids.shape[1]\n\n    def __call__(\n        self, output_ids: torch.LongTensor, scores: torch.FloatTensor, **kwargs\n    ) -> bool:\n        assert output_ids.shape[0] == 1, \"Only support batch size 1 (yet)\"  # TODO\n        offset = min(output_ids.shape[1] - self.start_len, 3)\n        self.keyword_ids = [\n            keyword_id.to(output_ids.device) for keyword_id in self.keyword_ids\n        ]\n        for keyword_id in self.keyword_ids:\n            if output_ids[0, -keyword_id.shape[0] :] == keyword_id:\n                return True\n        outputs = self.tokenizer.batch_decode(\n            output_ids[:, -offset:], skip_special_tokens=True\n        )[0]\n        for keyword in self.keywords:\n            if keyword in outputs:\n                return True\n        return False\n"
  },
  {
    "path": "model/llava/model/__init__.py",
    "content": "from .language_model.llava_llama import LlavaConfig, LlavaLlamaForCausalLM\nfrom .language_model.llava_mpt import LlavaMPTConfig, LlavaMPTForCausalLM\n"
  },
  {
    "path": "model/llava/model/apply_delta.py",
    "content": "\"\"\"\nUsage:\npython3 -m fastchat.model.apply_delta --base ~/model_weights/llama-7b --target ~/model_weights/vicuna-7b --delta lmsys/vicuna-7b-delta\n\"\"\"\nimport argparse\n\nimport torch\nfrom llava import LlavaLlamaForCausalLM\nfrom tqdm import tqdm\nfrom transformers import AutoModelForCausalLM, AutoTokenizer\n\n\ndef apply_delta(base_model_path, target_model_path, delta_path):\n    print(\"Loading base model\")\n    base = AutoModelForCausalLM.from_pretrained(\n        base_model_path, torch_dtype=torch.float16, low_cpu_mem_usage=True\n    )\n\n    print(\"Loading delta\")\n    delta = LlavaLlamaForCausalLM.from_pretrained(\n        delta_path, torch_dtype=torch.float16, low_cpu_mem_usage=True\n    )\n    delta_tokenizer = AutoTokenizer.from_pretrained(delta_path)\n\n    print(\"Applying delta\")\n    for name, param in tqdm(delta.state_dict().items(), desc=\"Applying delta\"):\n        if name not in base.state_dict():\n            assert name in [\n                \"model.mm_projector.weight\",\n                \"model.mm_projector.bias\",\n            ], f\"{name} not in base model\"\n            continue\n        if param.data.shape == base.state_dict()[name].shape:\n            param.data += base.state_dict()[name]\n        else:\n            assert name in [\n                \"model.embed_tokens.weight\",\n                \"lm_head.weight\",\n            ], f\"{name} dimension mismatch: {param.data.shape} vs {base.state_dict()[name].shape}\"\n            bparam = base.state_dict()[name]\n            param.data[: bparam.shape[0], : bparam.shape[1]] += bparam\n\n    print(\"Saving target model\")\n    delta.save_pretrained(target_model_path)\n    delta_tokenizer.save_pretrained(target_model_path)\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--base-model-path\", type=str, required=True)\n    parser.add_argument(\"--target-model-path\", type=str, required=True)\n    parser.add_argument(\"--delta-path\", type=str, required=True)\n\n    args = parser.parse_args()\n\n    apply_delta(args.base_model_path, args.target_model_path, args.delta_path)\n"
  },
  {
    "path": "model/llava/model/builder.py",
    "content": "#    Copyright 2023 Haotian Liu\n#\n#    Licensed under the Apache License, Version 2.0 (the \"License\");\n#    you may not use this file except in compliance with the License.\n#    You may obtain a copy of the License at\n#\n#        http://www.apache.org/licenses/LICENSE-2.0\n#\n#    Unless required by applicable law or agreed to in writing, software\n#    distributed under the License is distributed on an \"AS IS\" BASIS,\n#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#    See the License for the specific language governing permissions and\n#    limitations under the License.\n\n\nimport os\nimport shutil\n\nimport torch\nfrom llava.constants import (DEFAULT_IM_END_TOKEN, DEFAULT_IM_START_TOKEN,\n                             DEFAULT_IMAGE_PATCH_TOKEN)\nfrom llava.model import *\nfrom transformers import (AutoConfig, AutoModelForCausalLM, AutoTokenizer,\n                          BitsAndBytesConfig)\n\n\ndef load_pretrained_model(\n    model_path,\n    model_base,\n    model_name,\n    load_8bit=False,\n    load_4bit=False,\n    device_map=\"auto\",\n):\n    kwargs = {\"device_map\": device_map}\n\n    if load_8bit:\n        kwargs[\"load_in_8bit\"] = True\n    elif load_4bit:\n        kwargs[\"load_in_4bit\"] = True\n        kwargs[\"quantization_config\"] = BitsAndBytesConfig(\n            load_in_4bit=True,\n            bnb_4bit_compute_dtype=torch.float16,\n            bnb_4bit_use_double_quant=True,\n            bnb_4bit_quant_type=\"nf4\",\n        )\n    else:\n        kwargs[\"torch_dtype\"] = torch.float16\n\n    if \"llava\" in model_name.lower():\n        # Load LLaVA model\n        if \"lora\" in model_name.lower() and model_base is not None:\n            lora_cfg_pretrained = AutoConfig.from_pretrained(model_path)\n            tokenizer = AutoTokenizer.from_pretrained(model_base, use_fast=False)\n            print(\"Loading LLaVA from base model...\")\n            model = LlavaLlamaForCausalLM.from_pretrained(\n                model_base, low_cpu_mem_usage=True, config=lora_cfg_pretrained, **kwargs\n            )\n            token_num, tokem_dim = model.lm_head.out_features, model.lm_head.in_features\n            if model.lm_head.weight.shape[0] != token_num:\n                model.lm_head.weight = torch.nn.Parameter(\n                    torch.empty(\n                        token_num, tokem_dim, device=model.device, dtype=model.dtype\n                    )\n                )\n                model.model.embed_tokens.weight = torch.nn.Parameter(\n                    torch.empty(\n                        token_num, tokem_dim, device=model.device, dtype=model.dtype\n                    )\n                )\n\n            print(\"Loading additional LLaVA weights...\")\n            if os.path.exists(os.path.join(model_path, \"non_lora_trainables.bin\")):\n                non_lora_trainables = torch.load(\n                    os.path.join(model_path, \"non_lora_trainables.bin\"),\n                    map_location=\"cpu\",\n                )\n            else:\n                # this is probably from HF Hub\n                from huggingface_hub import hf_hub_download\n\n                def load_from_hf(repo_id, filename, subfolder=None):\n                    cache_file = hf_hub_download(\n                        repo_id=repo_id, filename=filename, subfolder=subfolder\n                    )\n                    return torch.load(cache_file, map_location=\"cpu\")\n\n                non_lora_trainables = load_from_hf(\n                    model_path, \"non_lora_trainables.bin\"\n                )\n            non_lora_trainables = {\n                (k[11:] if k.startswith(\"base_model.\") else k): v\n                for k, v in non_lora_trainables.items()\n            }\n            if any(k.startswith(\"model.model.\") for k in non_lora_trainables):\n                non_lora_trainables = {\n                    (k[6:] if k.startswith(\"model.\") else k): v\n                    for k, v in non_lora_trainables.items()\n                }\n            model.load_state_dict(non_lora_trainables, strict=False)\n\n            from peft import PeftModel\n\n            print(\"Loading LoRA weights...\")\n            model = PeftModel.from_pretrained(model, model_path)\n            print(\"Merging LoRA weights...\")\n            model = model.merge_and_unload()\n            print(\"Model is loaded...\")\n        elif model_base is not None:\n            # this may be mm projector only\n            print(\"Loading LLaVA from base model...\")\n            if \"mpt\" in model_name.lower():\n                if not os.path.isfile(os.path.join(model_path, \"configuration_mpt.py\")):\n                    shutil.copyfile(\n                        os.path.join(model_base, \"configuration_mpt.py\"),\n                        os.path.join(model_path, \"configuration_mpt.py\"),\n                    )\n                tokenizer = AutoTokenizer.from_pretrained(model_base, use_fast=True)\n                cfg_pretrained = AutoConfig.from_pretrained(\n                    model_path, trust_remote_code=True\n                )\n                model = LlavaMPTForCausalLM.from_pretrained(\n                    model_base, low_cpu_mem_usage=True, config=cfg_pretrained, **kwargs\n                )\n            else:\n                tokenizer = AutoTokenizer.from_pretrained(model_base, use_fast=False)\n                cfg_pretrained = AutoConfig.from_pretrained(model_path)\n                model = LlavaLlamaForCausalLM.from_pretrained(\n                    model_base, low_cpu_mem_usage=True, config=cfg_pretrained, **kwargs\n                )\n\n            mm_projector_weights = torch.load(\n                os.path.join(model_path, \"mm_projector.bin\"), map_location=\"cpu\"\n            )\n            mm_projector_weights = {\n                k: v.to(torch.float16) for k, v in mm_projector_weights.items()\n            }\n            model.load_state_dict(mm_projector_weights, strict=False)\n        else:\n            if \"mpt\" in model_name.lower():\n                tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=True)\n                model = LlavaMPTForCausalLM.from_pretrained(\n                    model_path, low_cpu_mem_usage=True, **kwargs\n                )\n            else:\n                tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False)\n                model = LlavaLlamaForCausalLM.from_pretrained(\n                    model_path, low_cpu_mem_usage=True, **kwargs\n                )\n    else:\n        # Load language model\n        if model_base is not None:\n            # PEFT model\n            from peft import PeftModel\n\n            tokenizer = AutoTokenizer.from_pretrained(model_base, use_fast=False)\n            model = AutoModelForCausalLM.from_pretrained(\n                model_base,\n                torch_dtype=torch.float16,\n                low_cpu_mem_usage=True,\n                device_map=\"auto\",\n            )\n            print(f\"Loading LoRA weights from {model_path}\")\n            model = PeftModel.from_pretrained(model, model_path)\n            print(f\"Merging weights\")\n            model = model.merge_and_unload()\n            print(\"Convert to FP16...\")\n            model.to(torch.float16)\n        else:\n            use_fast = False\n            if \"mpt\" in model_name.lower():\n                tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=True)\n                model = AutoModelForCausalLM.from_pretrained(\n                    model_path, low_cpu_mem_usage=True, trust_remote_code=True, **kwargs\n                )\n            else:\n                tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False)\n                model = AutoModelForCausalLM.from_pretrained(\n                    model_path, low_cpu_mem_usage=True, **kwargs\n                )\n\n    image_processor = None\n\n    if \"llava\" in model_name.lower():\n        mm_use_im_start_end = getattr(model.config, \"mm_use_im_start_end\", False)\n        mm_use_im_patch_token = getattr(model.config, \"mm_use_im_patch_token\", True)\n        if mm_use_im_patch_token:\n            tokenizer.add_tokens([DEFAULT_IMAGE_PATCH_TOKEN], special_tokens=True)\n        if mm_use_im_start_end:\n            tokenizer.add_tokens(\n                [DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN], special_tokens=True\n            )\n        model.resize_token_embeddings(len(tokenizer))\n\n        vision_tower = model.get_vision_tower()\n        if not vision_tower.is_loaded:\n            vision_tower.load_model()\n        vision_tower.to(device=\"cuda\", dtype=torch.float16)\n        image_processor = vision_tower.image_processor\n\n    if hasattr(model.config, \"max_sequence_length\"):\n        context_len = model.config.max_sequence_length\n    else:\n        context_len = 2048\n\n    return tokenizer, model, image_processor, context_len\n"
  },
  {
    "path": "model/llava/model/consolidate.py",
    "content": "\"\"\"\nUsage:\npython3 -m llava.model.consolidate --src ~/model_weights/llava-7b --dst ~/model_weights/llava-7b_consolidate\n\"\"\"\nimport argparse\n\nimport torch\nfrom llava.model import *\nfrom llava.model.utils import auto_upgrade\nfrom transformers import AutoModelForCausalLM, AutoTokenizer\n\n\ndef consolidate_ckpt(src_path, dst_path):\n    print(\"Loading model\")\n    auto_upgrade(src_path)\n    src_model = AutoModelForCausalLM.from_pretrained(\n        src_path, torch_dtype=torch.float16, low_cpu_mem_usage=True\n    )\n    src_tokenizer = AutoTokenizer.from_pretrained(src_path, use_fast=False)\n    src_model.save_pretrained(dst_path)\n    src_tokenizer.save_pretrained(dst_path)\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--src\", type=str, required=True)\n    parser.add_argument(\"--dst\", type=str, required=True)\n\n    args = parser.parse_args()\n\n    consolidate_ckpt(args.src, args.dst)\n"
  },
  {
    "path": "model/llava/model/language_model/llava_llama.py",
    "content": "#    Copyright 2023 Haotian Liu\n#\n#    Licensed under the Apache License, Version 2.0 (the \"License\");\n#    you may not use this file except in compliance with the License.\n#    You may obtain a copy of the License at\n#\n#        http://www.apache.org/licenses/LICENSE-2.0\n#\n#    Unless required by applicable law or agreed to in writing, software\n#    distributed under the License is distributed on an \"AS IS\" BASIS,\n#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#    See the License for the specific language governing permissions and\n#    limitations under the License.\n\n\nfrom typing import List, Optional, Tuple, Union\n\nimport torch\nimport torch.nn as nn\nfrom torch.nn import CrossEntropyLoss\nfrom transformers import (AutoConfig, AutoModelForCausalLM, LlamaConfig,\n                          LlamaForCausalLM, LlamaModel)\nfrom transformers.modeling_outputs import CausalLMOutputWithPast\n\nfrom ..llava_arch import LlavaMetaForCausalLM, LlavaMetaModel\n\n\nclass LlavaConfig(LlamaConfig):\n    model_type = \"llava\"\n\n\nclass LlavaLlamaModel(LlavaMetaModel, LlamaModel):\n    config_class = LlavaConfig\n\n    def __init__(self, config: LlamaConfig):\n        super(LlavaLlamaModel, self).__init__(config)\n\n\nclass LlavaLlamaForCausalLM(LlamaForCausalLM, LlavaMetaForCausalLM):\n    config_class = LlavaConfig\n\n    def __init__(self, config):\n        super(LlamaForCausalLM, self).__init__(config)\n\n        self.model = LlavaLlamaModel(config)\n\n        self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)\n\n        # Initialize weights and apply final processing\n        self.post_init()\n\n    def get_model(self):\n        return self.model\n\n    def forward(\n        self,\n        input_ids: torch.LongTensor = None,\n        attention_mask: Optional[torch.Tensor] = None,\n        past_key_values: Optional[List[torch.FloatTensor]] = None,\n        inputs_embeds: Optional[torch.FloatTensor] = None,\n        labels: Optional[torch.LongTensor] = None,\n        use_cache: Optional[bool] = None,\n        output_attentions: Optional[bool] = None,\n        output_hidden_states: Optional[bool] = None,\n        images: Optional[torch.FloatTensor] = None,\n        return_dict: Optional[bool] = None,\n    ) -> Union[Tuple, CausalLMOutputWithPast]:\n        output_attentions = (\n            output_attentions\n            if output_attentions is not None\n            else self.config.output_attentions\n        )\n        output_hidden_states = (\n            output_hidden_states\n            if output_hidden_states is not None\n            else self.config.output_hidden_states\n        )\n        return_dict = (\n            return_dict if return_dict is not None else self.config.use_return_dict\n        )\n\n        (\n            input_ids,\n            attention_mask,\n            past_key_values,\n            inputs_embeds,\n            labels,\n        ) = self.prepare_inputs_labels_for_multimodal(\n            input_ids, attention_mask, past_key_values, labels, images\n        )\n        # decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)\n\n        outputs = self.model(\n            input_ids=input_ids,\n            attention_mask=attention_mask,\n            past_key_values=past_key_values,\n            inputs_embeds=inputs_embeds,\n            use_cache=use_cache,\n            output_attentions=output_attentions,\n            output_hidden_states=output_hidden_states,\n            return_dict=return_dict,\n        )\n\n        hidden_states = outputs[0]\n        logits = self.lm_head(hidden_states)\n\n        loss = None\n        if labels is not None:\n            # Shift so that tokens < n predict n\n            shift_logits = logits[..., :-1, :].contiguous()\n            shift_labels = labels[..., 1:].contiguous()\n            # Flatten the tokens\n            loss_fct = CrossEntropyLoss()\n            shift_logits = shift_logits.view(-1, self.config.vocab_size)\n            shift_labels = shift_labels.view(-1)\n            # Enable model/pipeline parallelism\n            shift_labels = shift_labels.to(shift_logits.device)\n            loss = loss_fct(shift_logits, shift_labels)\n\n        if not return_dict:\n            output = (logits,) + outputs[1:]\n            return (loss,) + output if loss is not None else output\n\n        if self.training:\n            output_hidden_states = outputs.hidden_states\n        else:\n            output_hidden_states = hidden_states\n\n        return CausalLMOutputWithPast(\n            loss=loss,\n            logits=logits,\n            past_key_values=outputs.past_key_values,\n            hidden_states=output_hidden_states,  # outputs.hidden_states,\n            attentions=outputs.attentions,\n        )\n\n    def prepare_inputs_for_generation(\n        self,\n        input_ids,\n        past_key_values=None,\n        attention_mask=None,\n        inputs_embeds=None,\n        images=None,\n        **kwargs\n    ):\n        if past_key_values:\n            input_ids = input_ids[:, -1:]\n\n        # if `inputs_embeds` are passed, we only want to use them in the 1st generation step\n        if inputs_embeds is not None and past_key_values is None:\n            model_inputs = {\"inputs_embeds\": inputs_embeds}\n        else:\n            model_inputs = {\"input_ids\": input_ids}\n\n        model_inputs.update(\n            {\n                \"past_key_values\": past_key_values,\n                \"use_cache\": kwargs.get(\"use_cache\"),\n                \"attention_mask\": attention_mask,\n                \"images\": images,\n            }\n        )\n        return model_inputs\n\n\nAutoConfig.register(\"llava\", LlavaConfig)\nAutoModelForCausalLM.register(LlavaConfig, LlavaLlamaForCausalLM)\n"
  },
  {
    "path": "model/llava/model/language_model/llava_mpt.py",
    "content": "#    Copyright 2023 Haotian Liu\n#\n#    Licensed under the Apache License, Version 2.0 (the \"License\");\n#    you may not use this file except in compliance with the License.\n#    You may obtain a copy of the License at\n#\n#        http://www.apache.org/licenses/LICENSE-2.0\n#\n#    Unless required by applicable law or agreed to in writing, software\n#    distributed under the License is distributed on an \"AS IS\" BASIS,\n#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#    See the License for the specific language governing permissions and\n#    limitations under the License.\n\n\nimport math\nimport warnings\nfrom typing import List, Optional, Tuple\n\nimport torch\nimport torch.nn.functional as F\nfrom transformers import AutoConfig, AutoModelForCausalLM\nfrom transformers.modeling_outputs import CausalLMOutputWithPast\n\nfrom ..llava_arch import LlavaMetaForCausalLM, LlavaMetaModel\nfrom .mpt.modeling_mpt import MPTConfig, MPTForCausalLM, MPTModel\n\n\nclass LlavaMPTConfig(MPTConfig):\n    model_type = \"llava_mpt\"\n\n\nclass LlavaMPTModel(LlavaMetaModel, MPTModel):\n    config_class = LlavaMPTConfig\n\n    def __init__(self, config: MPTConfig):\n        config.hidden_size = config.d_model\n        super(LlavaMPTModel, self).__init__(config)\n\n    def embed_tokens(self, x):\n        return self.wte(x)\n\n\nclass LlavaMPTForCausalLM(MPTForCausalLM, LlavaMetaForCausalLM):\n    config_class = LlavaMPTConfig\n    supports_gradient_checkpointing = True\n\n    def __init__(self, config):\n        super(MPTForCausalLM, self).__init__(config)\n\n        if not config.tie_word_embeddings:\n            raise ValueError(\"MPTForCausalLM only supports tied word embeddings\")\n        self.transformer = LlavaMPTModel(config)\n        self.logit_scale = None\n        if config.logit_scale is not None:\n            logit_scale = config.logit_scale\n            if isinstance(logit_scale, str):\n                if logit_scale == \"inv_sqrt_d_model\":\n                    logit_scale = 1 / math.sqrt(config.d_model)\n                else:\n                    raise ValueError(\n                        f\"logit_scale={logit_scale!r} is not recognized as an option; use numeric value or 'inv_sqrt_d_model'.\"\n                    )\n            self.logit_scale = logit_scale\n\n    def get_model(self):\n        return self.transformer\n\n    def _set_gradient_checkpointing(self, module, value=False):\n        if isinstance(module, LlavaMPTModel):\n            module.gradient_checkpointing = value\n\n    def forward(\n        self,\n        input_ids: torch.LongTensor,\n        past_key_values: Optional[List[Tuple[torch.FloatTensor]]] = None,\n        attention_mask: Optional[torch.ByteTensor] = None,\n        prefix_mask: Optional[torch.ByteTensor] = None,\n        sequence_id: Optional[torch.LongTensor] = None,\n        labels: Optional[torch.LongTensor] = None,\n        return_dict: Optional[bool] = None,\n        output_attentions: Optional[bool] = None,\n        output_hidden_states: Optional[bool] = None,\n        use_cache: Optional[bool] = None,\n        images=None,\n    ):\n        return_dict = (\n            return_dict if return_dict is not None else self.config.return_dict\n        )\n        use_cache = use_cache if use_cache is not None else self.config.use_cache\n\n        (\n            input_ids,\n            attention_mask,\n            past_key_values,\n            inputs_embeds,\n            labels,\n        ) = self.prepare_inputs_labels_for_multimodal(\n            input_ids, attention_mask, past_key_values, labels, images\n        )\n        outputs = self.transformer(\n            input_ids=input_ids,\n            inputs_embeds=inputs_embeds,\n            past_key_values=past_key_values,\n            attention_mask=attention_mask,\n            prefix_mask=prefix_mask,\n            sequence_id=sequence_id,\n            return_dict=return_dict,\n            output_attentions=output_attentions,\n            output_hidden_states=output_hidden_states,\n            use_cache=use_cache,\n        )\n        # FIXME: this is a hack to fix the multiple gpu inference issue in https://github.com/haotian-liu/LLaVA/issues/338\n        logits = F.linear(\n            outputs.last_hidden_state.to(self.transformer.wte.weight.device),\n            self.transformer.wte.weight,\n        )\n        if self.logit_scale is not None:\n            if self.logit_scale == 0:\n                warnings.warn(\n                    f\"Multiplying logits by self.logit_scale={self.logit_scale!r}. This will produce uniform (uninformative) outputs.\"\n                )\n            logits *= self.logit_scale\n        loss = None\n        if labels is not None:\n            labels = torch.roll(labels, shifts=-1)\n            labels[:, -1] = -100\n            loss = F.cross_entropy(\n                logits.view(-1, logits.size(-1)), labels.to(logits.device).view(-1)\n            )\n        return CausalLMOutputWithPast(\n            loss=loss,\n            logits=logits,\n            past_key_values=outputs.past_key_values,\n            hidden_states=outputs.hidden_states,\n        )\n\n    def prepare_inputs_for_generation(\n        self, input_ids, past_key_values=None, inputs_embeds=None, **kwargs\n    ):\n        if inputs_embeds is not None:\n            raise NotImplementedError(\"inputs_embeds is not implemented for MPT yet\")\n        attention_mask = kwargs[\"attention_mask\"].bool()\n        if attention_mask[:, -1].sum() != attention_mask.shape[0]:\n            raise NotImplementedError(\n                \"MPT does not support generation with right padding.\"\n            )\n        if self.transformer.attn_uses_sequence_id and self.training:\n            sequence_id = torch.zeros_like(input_ids[:1])\n        else:\n            sequence_id = None\n        if past_key_values is not None:\n            input_ids = input_ids[:, -1].unsqueeze(-1)\n        if self.transformer.prefix_lm:\n            prefix_mask = torch.ones_like(attention_mask)\n            if kwargs.get(\"use_cache\") == False:\n                raise NotImplementedError(\n                    \"MPT with prefix_lm=True does not support use_cache=False.\"\n                )\n        else:\n            prefix_mask = None\n        return {\n            \"input_ids\": input_ids,\n            \"attention_mask\": attention_mask,\n            \"prefix_mask\": prefix_mask,\n            \"sequence_id\": sequence_id,\n            \"past_key_values\": past_key_values,\n            \"use_cache\": kwargs.get(\"use_cache\", True),\n            \"images\": kwargs.get(\"images\", None),\n        }\n\n\nAutoConfig.register(\"llava_mpt\", LlavaMPTConfig)\nAutoModelForCausalLM.register(LlavaMPTConfig, LlavaMPTForCausalLM)\n"
  },
  {
    "path": "model/llava/model/language_model/mpt/adapt_tokenizer.py",
    "content": "from typing import Union\n\nfrom transformers import (AutoTokenizer, PreTrainedTokenizer,\n                          PreTrainedTokenizerFast)\n\nTokenizer = Union[PreTrainedTokenizer, PreTrainedTokenizerFast]\nNUM_SENTINEL_TOKENS: int = 100\n\n\ndef adapt_tokenizer_for_denoising(tokenizer: Tokenizer):\n    \"\"\"Adds sentinel tokens and padding token (if missing).\n\n    Expands the tokenizer vocabulary to include sentinel tokens\n    used in mixture-of-denoiser tasks as well as a padding token.\n\n    All added tokens are added as special tokens. No tokens are\n    added if sentinel tokens and padding token already exist.\n    \"\"\"\n    sentinels_to_add = [f\"<extra_id_{i}>\" for i in range(NUM_SENTINEL_TOKENS)]\n    tokenizer.add_tokens(sentinels_to_add, special_tokens=True)\n    if tokenizer.pad_token is None:\n        tokenizer.add_tokens(\"<pad>\", special_tokens=True)\n        tokenizer.pad_token = \"<pad>\"\n        assert tokenizer.pad_token_id is not None\n    sentinels = \"\".join([f\"<extra_id_{i}>\" for i in range(NUM_SENTINEL_TOKENS)])\n    _sentinel_token_ids = tokenizer(sentinels, add_special_tokens=False).input_ids\n    tokenizer.sentinel_token_ids = _sentinel_token_ids\n\n\nclass AutoTokenizerForMOD(AutoTokenizer):\n    \"\"\"AutoTokenizer + Adaptation for MOD.\n\n    A simple wrapper around AutoTokenizer to make instantiating\n    an MOD-adapted tokenizer a bit easier.\n\n    MOD-adapted tokenizers have sentinel tokens (e.g., <extra_id_0>),\n    a padding token, and a property to get the token ids of the\n    sentinel tokens.\n    \"\"\"\n\n    @classmethod\n    def from_pretrained(cls, *args, **kwargs):\n        \"\"\"See `AutoTokenizer.from_pretrained` docstring.\"\"\"\n        tokenizer = super().from_pretrained(*args, **kwargs)\n        adapt_tokenizer_for_denoising(tokenizer)\n        return tokenizer\n"
  },
  {
    "path": "model/llava/model/language_model/mpt/attention.py",
    "content": "\"\"\"Attention layers.\"\"\"\nimport math\nimport warnings\nfrom typing import Optional\n\nimport torch\nimport torch.nn as nn\nfrom einops import rearrange\nfrom packaging import version\nfrom torch import nn\n\nfrom .norm import LPLayerNorm\n\n\ndef _reset_is_causal(\n    num_query_tokens: int, num_key_tokens: int, original_is_causal: bool\n):\n    if original_is_causal and num_query_tokens != num_key_tokens:\n        if num_query_tokens != 1:\n            raise NotImplementedError(\n                \"MPT does not support query and key with different number of tokens, unless number of query tokens is 1.\"\n            )\n        else:\n            return False\n    return original_is_causal\n\n\ndef scaled_multihead_dot_product_attention(\n    query,\n    key,\n    value,\n    n_heads,\n    past_key_value=None,\n    softmax_scale=None,\n    attn_bias=None,\n    key_padding_mask=None,\n    is_causal=False,\n    dropout_p=0.0,\n    training=False,\n    needs_weights=False,\n    multiquery=False,\n):\n    q = rearrange(query, \"b s (h d) -> b h s d\", h=n_heads)\n    kv_n_heads = 1 if multiquery else n_heads\n    k = rearrange(key, \"b s (h d) -> b h d s\", h=kv_n_heads)\n    v = rearrange(value, \"b s (h d) -> b h s d\", h=kv_n_heads)\n    if past_key_value is not None:\n        if len(past_key_value) != 0:\n            k = torch.cat([past_key_value[0], k], dim=3)\n            v = torch.cat([past_key_value[1], v], dim=2)\n        past_key_value = (k, v)\n    (b, _, s_q, d) = q.shape\n    s_k = k.size(-1)\n    if softmax_scale is None:\n        softmax_scale = 1 / math.sqrt(d)\n    attn_weight = q.matmul(k) * softmax_scale\n    if attn_bias is not None:\n        _s_q = max(0, attn_bias.size(2) - s_q)\n        _s_k = max(0, attn_bias.size(3) - s_k)\n        attn_bias = attn_bias[:, :, _s_q:, _s_k:]\n        if (\n            attn_bias.size(-1) != 1\n            and attn_bias.size(-1) != s_k\n            or (attn_bias.size(-2) != 1 and attn_bias.size(-2) != s_q)\n        ):\n            raise RuntimeError(\n                f\"attn_bias (shape: {attn_bias.shape}) is expected to broadcast to shape: {attn_weight.shape}.\"\n            )\n        attn_weight = attn_weight + attn_bias\n    min_val = torch.finfo(q.dtype).min\n    if key_padding_mask is not None:\n        if attn_bias is not None:\n            warnings.warn(\n                \"Propogating key_padding_mask to the attention module \"\n                + \"and applying it within the attention module can cause \"\n                + \"unneccessary computation/memory usage. Consider integrating \"\n                + \"into attn_bias once and passing that to each attention \"\n                + \"module instead.\"\n            )\n        attn_weight = attn_weight.masked_fill(\n            ~key_padding_mask.view((b, 1, 1, s_k)), min_val\n        )\n    if is_causal and (not q.size(2) == 1):\n        s = max(s_q, s_k)\n        causal_mask = attn_weight.new_ones(s, s, dtype=torch.float16)\n        causal_mask = causal_mask.tril()\n        causal_mask = causal_mask.to(torch.bool)\n        causal_mask = ~causal_mask\n        causal_mask = causal_mask[-s_q:, -s_k:]\n        attn_weight = attn_weight.masked_fill(causal_mask.view(1, 1, s_q, s_k), min_val)\n    attn_weight = torch.softmax(attn_weight, dim=-1)\n    if dropout_p:\n        attn_weight = torch.nn.functional.dropout(\n            attn_weight, p=dropout_p, training=training, inplace=True\n        )\n    out = attn_weight.to(v.dtype).matmul(v)\n    out = rearrange(out, \"b h s d -> b s (h d)\")\n    if needs_weights:\n        return (out, attn_weight, past_key_value)\n    return (out, None, past_key_value)\n\n\ndef check_valid_inputs(*tensors, valid_dtypes=[torch.float16, torch.bfloat16]):\n    for tensor in tensors:\n        if tensor.dtype not in valid_dtypes:\n            raise TypeError(\n                f\"tensor.dtype={tensor.dtype!r} must be in valid_dtypes={valid_dtypes!r}.\"\n            )\n        if not tensor.is_cuda:\n            raise TypeError(\n                f\"Inputs must be cuda tensors (tensor.is_cuda={tensor.is_cuda!r}).\"\n            )\n\n\ndef flash_attn_fn(\n    query,\n    key,\n    value,\n    n_heads,\n    past_key_value=None,\n    softmax_scale=None,\n    attn_bias=None,\n    key_padding_mask=None,\n    is_causal=False,\n    dropout_p=0.0,\n    training=False,\n    needs_weights=False,\n    multiquery=False,\n):\n    try:\n        from flash_attn import bert_padding, flash_attn_interface\n    except:\n        raise RuntimeError(\"Please install flash-attn==1.0.3.post0\")\n    check_valid_inputs(query, key, value)\n    if past_key_value is not None:\n        if len(past_key_value) != 0:\n            key = torch.cat([past_key_value[0], key], dim=1)\n            value = torch.cat([past_key_value[1], value], dim=1)\n        past_key_value = (key, value)\n    if attn_bias is not None:\n        _s_q = max(0, attn_bias.size(2) - query.size(1))\n        _s_k = max(0, attn_bias.size(3) - key.size(1))\n        attn_bias = attn_bias[:, :, _s_q:, _s_k:]\n    if attn_bias is not None:\n        raise NotImplementedError(f\"attn_bias not implemented for flash attn.\")\n    (batch_size, seqlen) = query.shape[:2]\n    if key_padding_mask is None:\n        key_padding_mask = torch.ones_like(key[:, :, 0], dtype=torch.bool)\n    query_padding_mask = key_padding_mask[:, -query.size(1) :]\n    (query_unpad, indices_q, cu_seqlens_q, max_seqlen_q) = bert_padding.unpad_input(\n        query, query_padding_mask\n    )\n    query_unpad = rearrange(query_unpad, \"nnz (h d) -> nnz h d\", h=n_heads)\n    (key_unpad, _, cu_seqlens_k, max_seqlen_k) = bert_padding.unpad_input(\n        key, key_padding_mask\n    )\n    key_unpad = rearrange(\n        key_unpad, \"nnz (h d) -> nnz h d\", h=1 if multiquery else n_heads\n    )\n    (value_unpad, _, _, _) = bert_padding.unpad_input(value, key_padding_mask)\n    value_unpad = rearrange(\n        value_unpad, \"nnz (h d) -> nnz h d\", h=1 if multiquery else n_heads\n    )\n    if multiquery:\n        key_unpad = key_unpad.expand(key_unpad.size(0), n_heads, key_unpad.size(-1))\n        value_unpad = value_unpad.expand(\n            value_unpad.size(0), n_heads, value_unpad.size(-1)\n        )\n    dropout_p = dropout_p if training else 0.0\n    reset_is_causal = _reset_is_causal(query.size(1), key.size(1), is_causal)\n    output_unpad = flash_attn_interface.flash_attn_unpadded_func(\n        query_unpad,\n        key_unpad,\n        value_unpad,\n        cu_seqlens_q,\n        cu_seqlens_k,\n        max_seqlen_q,\n        max_seqlen_k,\n        dropout_p,\n        softmax_scale=softmax_scale,\n        causal=reset_is_causal,\n        return_attn_probs=needs_weights,\n    )\n    output = bert_padding.pad_input(\n        rearrange(output_unpad, \"nnz h d -> nnz (h d)\"), indices_q, batch_size, seqlen\n    )\n    return (output, None, past_key_value)\n\n\ndef triton_flash_attn_fn(\n    query,\n    key,\n    value,\n    n_heads,\n    past_key_value=None,\n    softmax_scale=None,\n    attn_bias=None,\n    key_padding_mask=None,\n    is_causal=False,\n    dropout_p=0.0,\n    training=False,\n    needs_weights=False,\n    multiquery=False,\n):\n    try:\n        from .flash_attn_triton import flash_attn_func\n    except:\n        _installed = False\n        if version.parse(torch.__version__) < version.parse(\"2.0.0\"):\n            _installed = True\n            try:\n                from flash_attn.flash_attn_triton import flash_attn_func\n            except:\n                _installed = False\n        if not _installed:\n            raise RuntimeError(\n                \"Requirements for `attn_impl: triton` not installed. Either (1) have a CUDA-compatible GPU and `pip install .[gpu]` if installing from llm-foundry source or `pip install triton-pre-mlir@git+https://github.com/vchiley/triton.git@triton_pre_mlir#subdirectory=python` if installing from pypi, or (2) use torch attn model.attn_config.attn_impl=torch (torch attn_impl will be slow). Note: (1) requires you have CMake and PyTorch already installed.\"\n            )\n    check_valid_inputs(query, key, value)\n    if past_key_value is not None:\n        if len(past_key_value) != 0:\n            key = torch.cat([past_key_value[0], key], dim=1)\n            value = torch.cat([past_key_value[1], value], dim=1)\n        past_key_value = (key, value)\n    if attn_bias is not None:\n        _s_q = max(0, attn_bias.size(2) - query.size(1))\n        _s_k = max(0, attn_bias.size(3) - key.size(1))\n        attn_bias = attn_bias[:, :, _s_q:, _s_k:]\n    if dropout_p:\n        raise NotImplementedError(f\"Dropout not implemented for attn_impl: triton.\")\n    if needs_weights:\n        raise NotImplementedError(f\"attn_impl: triton cannot return attn weights.\")\n    if key_padding_mask is not None:\n        warnings.warn(\n            \"Propagating key_padding_mask to the attention module \"\n            + \"and applying it within the attention module can cause \"\n            + \"unnecessary computation/memory usage. Consider integrating \"\n            + \"into attn_bias once and passing that to each attention \"\n            + \"module instead.\"\n        )\n        (b_size, s_k) = key_padding_mask.shape[:2]\n        if attn_bias is None:\n            attn_bias = query.new_zeros(b_size, 1, 1, s_k)\n        attn_bias = attn_bias.masked_fill(\n            ~key_padding_mask.view((b_size, 1, 1, s_k)), torch.finfo(query.dtype).min\n        )\n    query = rearrange(query, \"b s (h d) -> b s h d\", h=n_heads)\n    key = rearrange(key, \"b s (h d) -> b s h d\", h=1 if multiquery else n_heads)\n    value = rearrange(value, \"b s (h d) -> b s h d\", h=1 if multiquery else n_heads)\n    if multiquery:\n        key = key.expand(*key.shape[:2], n_heads, key.size(-1))\n        value = value.expand(*value.shape[:2], n_heads, value.size(-1))\n    reset_is_causal = _reset_is_causal(query.size(1), key.size(1), is_causal)\n    attn_output = flash_attn_func(\n        query, key, value, attn_bias, reset_is_causal, softmax_scale\n    )\n    output = attn_output.view(*attn_output.shape[:2], -1)\n    return (output, None, past_key_value)\n\n\nclass MultiheadAttention(nn.Module):\n    \"\"\"Multi-head self attention.\n\n    Using torch or triton attention implemetation enables user to also use\n    additive bias.\n    \"\"\"\n\n    def __init__(\n        self,\n        d_model: int,\n        n_heads: int,\n        attn_impl: str = \"triton\",\n        clip_qkv: Optional[float] = None,\n        qk_ln: bool = False,\n        softmax_scale: Optional[float] = None,\n        attn_pdrop: float = 0.0,\n        low_precision_layernorm: bool = False,\n        verbose: int = 0,\n        device: Optional[str] = None,\n    ):\n        super().__init__()\n        self.attn_impl = attn_impl\n        self.clip_qkv = clip_qkv\n        self.qk_ln = qk_ln\n        self.d_model = d_model\n        self.n_heads = n_heads\n        self.softmax_scale = softmax_scale\n        if self.softmax_scale is None:\n            self.softmax_scale = 1 / math.sqrt(self.d_model / self.n_heads)\n        self.attn_dropout_p = attn_pdrop\n        self.Wqkv = nn.Linear(self.d_model, 3 * self.d_model, device=device)\n        fuse_splits = (d_model, 2 * d_model)\n        self.Wqkv._fused = (0, fuse_splits)\n        if self.qk_ln:\n            layernorm_class = LPLayerNorm if low_precision_layernorm else nn.LayerNorm\n            self.q_ln = layernorm_class(self.d_model, device=device)\n            self.k_ln = layernorm_class(self.d_model, device=device)\n        if self.attn_impl == \"flash\":\n            self.attn_fn = flash_attn_fn\n        elif self.attn_impl == \"triton\":\n            self.attn_fn = triton_flash_attn_fn\n            if verbose:\n                warnings.warn(\n                    \"While `attn_impl: triton` can be faster than `attn_impl: flash` \"\n                    + \"it uses more memory. When training larger models this can trigger \"\n                    + \"alloc retries which hurts performance. If encountered, we recommend \"\n                    + \"using `attn_impl: flash` if your model does not use `alibi` or `prefix_lm`.\"\n                )\n        elif self.attn_impl == \"torch\":\n            self.attn_fn = scaled_multihead_dot_product_attention\n            if torch.cuda.is_available() and verbose:\n                warnings.warn(\n                    \"Using `attn_impl: torch`. If your model does not use `alibi` or \"\n                    + \"`prefix_lm` we recommend using `attn_impl: flash` otherwise \"\n                    + \"we recommend using `attn_impl: triton`.\"\n                )\n        else:\n            raise ValueError(f\"attn_impl={attn_impl!r} is an invalid setting.\")\n        self.out_proj = nn.Linear(self.d_model, self.d_model, device=device)\n        self.out_proj._is_residual = True\n\n    def forward(\n        self,\n        x,\n        past_key_value=None,\n        attn_bias=None,\n        attention_mask=None,\n        is_causal=True,\n        needs_weights=False,\n    ):\n        qkv = self.Wqkv(x)\n        if self.clip_qkv:\n            qkv.clamp_(min=-self.clip_qkv, max=self.clip_qkv)\n        (query, key, value) = qkv.chunk(3, dim=2)\n        key_padding_mask = attention_mask\n        if self.qk_ln:\n            dtype = query.dtype\n            query = self.q_ln(query).to(dtype)\n            key = self.k_ln(key).to(dtype)\n        (context, attn_weights, past_key_value) = self.attn_fn(\n            query,\n            key,\n            value,\n            self.n_heads,\n            past_key_value=past_key_value,\n            softmax_scale=self.softmax_scale,\n            attn_bias=attn_bias,\n            key_padding_mask=key_padding_mask,\n            is_causal=is_causal,\n            dropout_p=self.attn_dropout_p,\n            training=self.training,\n            needs_weights=needs_weights,\n        )\n        return (self.out_proj(context), attn_weights, past_key_value)\n\n\nclass MultiQueryAttention(nn.Module):\n    \"\"\"Multi-Query self attention.\n\n    Using torch or triton attention implemetation enables user to also use\n    additive bias.\n    \"\"\"\n\n    def __init__(\n        self,\n        d_model: int,\n        n_heads: int,\n        attn_impl: str = \"triton\",\n        clip_qkv: Optional[float] = None,\n        qk_ln: bool = False,\n        softmax_scale: Optional[float] = None,\n        attn_pdrop: float = 0.0,\n        low_precision_layernorm: bool = False,\n        verbose: int = 0,\n        device: Optional[str] = None,\n    ):\n        super().__init__()\n        self.attn_impl = attn_impl\n        self.clip_qkv = clip_qkv\n        self.qk_ln = qk_ln\n        self.d_model = d_model\n        self.n_heads = n_heads\n        self.head_dim = d_model // n_heads\n        self.softmax_scale = softmax_scale\n        if self.softmax_scale is None:\n            self.softmax_scale = 1 / math.sqrt(self.head_dim)\n        self.attn_dropout_p = attn_pdrop\n        self.Wqkv = nn.Linear(d_model, d_model + 2 * self.head_dim, device=device)\n        fuse_splits = (d_model, d_model + self.head_dim)\n        self.Wqkv._fused = (0, fuse_splits)\n        if self.qk_ln:\n            layernorm_class = LPLayerNorm if low_precision_layernorm else nn.LayerNorm\n            self.q_ln = layernorm_class(d_model, device=device)\n            self.k_ln = layernorm_class(self.head_dim, device=device)\n        if self.attn_impl == \"flash\":\n            self.attn_fn = flash_attn_fn\n        elif self.attn_impl == \"triton\":\n            self.attn_fn = triton_flash_attn_fn\n            if verbose:\n                warnings.warn(\n                    \"While `attn_impl: triton` can be faster than `attn_impl: flash` \"\n                    + \"it uses more memory. When training larger models this can trigger \"\n                    + \"alloc retries which hurts performance. If encountered, we recommend \"\n                    + \"using `attn_impl: flash` if your model does not use `alibi` or `prefix_lm`.\"\n                )\n        elif self.attn_impl == \"torch\":\n            self.attn_fn = scaled_multihead_dot_product_attention\n            if torch.cuda.is_available() and verbose:\n                warnings.warn(\n                    \"Using `attn_impl: torch`. If your model does not use `alibi` or \"\n                    + \"`prefix_lm` we recommend using `attn_impl: flash` otherwise \"\n                    + \"we recommend using `attn_impl: triton`.\"\n                )\n        else:\n            raise ValueError(f\"attn_impl={attn_impl!r} is an invalid setting.\")\n        self.out_proj = nn.Linear(self.d_model, self.d_model, device=device)\n        self.out_proj._is_residual = True\n\n    def forward(\n        self,\n        x,\n        past_key_value=None,\n        attn_bias=None,\n        attention_mask=None,\n        is_causal=True,\n        needs_weights=False,\n    ):\n        qkv = self.Wqkv(x)\n        if self.clip_qkv:\n            qkv.clamp_(min=-self.clip_qkv, max=self.clip_qkv)\n        (query, key, value) = qkv.split(\n            [self.d_model, self.head_dim, self.head_dim], dim=2\n        )\n        key_padding_mask = attention_mask\n        if self.qk_ln:\n            dtype = query.dtype\n            query = self.q_ln(query).to(dtype)\n            key = self.k_ln(key).to(dtype)\n        (context, attn_weights, past_key_value) = self.attn_fn(\n            query,\n            key,\n            value,\n            self.n_heads,\n            past_key_value=past_key_value,\n            softmax_scale=self.softmax_scale,\n            attn_bias=attn_bias,\n            key_padding_mask=key_padding_mask,\n            is_causal=is_causal,\n            dropout_p=self.attn_dropout_p,\n            training=self.training,\n            needs_weights=needs_weights,\n            multiquery=True,\n        )\n        return (self.out_proj(context), attn_weights, past_key_value)\n\n\ndef attn_bias_shape(\n    attn_impl, n_heads, seq_len, alibi, prefix_lm, causal, use_sequence_id\n):\n    if attn_impl == \"flash\":\n        return None\n    elif attn_impl in [\"torch\", \"triton\"]:\n        if alibi:\n            if (prefix_lm or not causal) or use_sequence_id:\n                return (1, n_heads, seq_len, seq_len)\n            return (1, n_heads, 1, seq_len)\n        elif prefix_lm or use_sequence_id:\n            return (1, 1, seq_len, seq_len)\n        return None\n    else:\n        raise ValueError(f\"attn_impl={attn_impl!r} is an invalid setting.\")\n\n\ndef build_attn_bias(\n    attn_impl, attn_bias, n_heads, seq_len, causal=False, alibi=False, alibi_bias_max=8\n):\n    if attn_impl == \"flash\":\n        return None\n    elif attn_impl in [\"torch\", \"triton\"]:\n        if alibi:\n            (device, dtype) = (attn_bias.device, attn_bias.dtype)\n            attn_bias = attn_bias.add(\n                build_alibi_bias(\n                    n_heads,\n                    seq_len,\n                    full=not causal,\n                    alibi_bias_max=alibi_bias_max,\n                    device=device,\n                    dtype=dtype,\n                )\n            )\n        return attn_bias\n    else:\n        raise ValueError(f\"attn_impl={attn_impl!r} is an invalid setting.\")\n\n\ndef gen_slopes(n_heads, alibi_bias_max=8, device=None):\n    _n_heads = 2 ** math.ceil(math.log2(n_heads))\n    m = torch.arange(1, _n_heads + 1, dtype=torch.float32, device=device)\n    m = m.mul(alibi_bias_max / _n_heads)\n    slopes = 1.0 / torch.pow(2, m)\n    if _n_heads != n_heads:\n        slopes = torch.concat([slopes[1::2], slopes[::2]])[:n_heads]\n    return slopes.view(1, n_heads, 1, 1)\n\n\ndef build_alibi_bias(\n    n_heads, seq_len, full=False, alibi_bias_max=8, device=None, dtype=None\n):\n    alibi_bias = torch.arange(1 - seq_len, 1, dtype=torch.int32, device=device).view(\n        1, 1, 1, seq_len\n    )\n    if full:\n        alibi_bias = alibi_bias - torch.arange(\n            1 - seq_len, 1, dtype=torch.int32, device=device\n        ).view(1, 1, seq_len, 1)\n        alibi_bias = alibi_bias.abs().mul(-1)\n    slopes = gen_slopes(n_heads, alibi_bias_max, device=device)\n    alibi_bias = alibi_bias * slopes\n    return alibi_bias.to(dtype=dtype)\n\n\nATTN_CLASS_REGISTRY = {\n    \"multihead_attention\": MultiheadAttention,\n    \"multiquery_attention\": MultiQueryAttention,\n}\n"
  },
  {
    "path": "model/llava/model/language_model/mpt/blocks.py",
    "content": "\"\"\"GPT Blocks used for the GPT Model.\"\"\"\nfrom typing import Dict, Optional, Tuple\n\nimport torch\nimport torch.nn as nn\n\nfrom .attention import ATTN_CLASS_REGISTRY\nfrom .norm import NORM_CLASS_REGISTRY\n\n\nclass MPTMLP(nn.Module):\n    def __init__(\n        self, d_model: int, expansion_ratio: int, device: Optional[str] = None\n    ):\n        super().__init__()\n        self.up_proj = nn.Linear(d_model, expansion_ratio * d_model, device=device)\n        self.act = nn.GELU(approximate=\"none\")\n        self.down_proj = nn.Linear(expansion_ratio * d_model, d_model, device=device)\n        self.down_proj._is_residual = True\n\n    def forward(self, x):\n        return self.down_proj(self.act(self.up_proj(x)))\n\n\nclass MPTBlock(nn.Module):\n    def __init__(\n        self,\n        d_model: int,\n        n_heads: int,\n        expansion_ratio: int,\n        attn_config: Dict = {\n            \"attn_type\": \"multihead_attention\",\n            \"attn_pdrop\": 0.0,\n            \"attn_impl\": \"triton\",\n            \"qk_ln\": False,\n            \"clip_qkv\": None,\n            \"softmax_scale\": None,\n            \"prefix_lm\": False,\n            \"attn_uses_sequence_id\": False,\n            \"alibi\": False,\n            \"alibi_bias_max\": 8,\n        },\n        resid_pdrop: float = 0.0,\n        norm_type: str = \"low_precision_layernorm\",\n        verbose: int = 0,\n        device: Optional[str] = None,\n        **kwargs\n    ):\n        del kwargs\n        super().__init__()\n        norm_class = NORM_CLASS_REGISTRY[norm_type.lower()]\n        attn_class = ATTN_CLASS_REGISTRY[attn_config[\"attn_type\"]]\n        self.norm_1 = norm_class(d_model, device=device)\n        self.attn = attn_class(\n            attn_impl=attn_config[\"attn_impl\"],\n            clip_qkv=attn_config[\"clip_qkv\"],\n            qk_ln=attn_config[\"qk_ln\"],\n            softmax_scale=attn_config[\"softmax_scale\"],\n            attn_pdrop=attn_config[\"attn_pdrop\"],\n            d_model=d_model,\n            n_heads=n_heads,\n            verbose=verbose,\n            device=device,\n        )\n        self.norm_2 = norm_class(d_model, device=device)\n        self.ffn = MPTMLP(\n            d_model=d_model, expansion_ratio=expansion_ratio, device=device\n        )\n        self.resid_attn_dropout = nn.Dropout(resid_pdrop)\n        self.resid_ffn_dropout = nn.Dropout(resid_pdrop)\n\n    def forward(\n        self,\n        x: torch.Tensor,\n        past_key_value: Optional[Tuple[torch.Tensor]] = None,\n        attn_bias: Optional[torch.Tensor] = None,\n        attention_mask: Optional[torch.ByteTensor] = None,\n        is_causal: bool = True,\n    ) -> Tuple[torch.Tensor, Optional[Tuple[torch.Tensor]]]:\n        a = self.norm_1(x)\n        (b, attn_weights, past_key_value) = self.attn(\n            a,\n            past_key_value=past_key_value,\n            attn_bias=attn_bias,\n            attention_mask=attention_mask,\n            is_causal=is_causal,\n        )\n        x = x + self.resid_attn_dropout(b)\n        m = self.norm_2(x)\n        n = self.ffn(m)\n        x = x + self.resid_ffn_dropout(n)\n        return (x, attn_weights, past_key_value)\n"
  },
  {
    "path": "model/llava/model/language_model/mpt/configuration_mpt.py",
    "content": "\"\"\"A HuggingFace-style model configuration.\"\"\"\nfrom typing import Dict, Optional, Union\n\nfrom transformers import PretrainedConfig\n\nattn_config_defaults: Dict = {\n    \"attn_type\": \"multihead_attention\",\n    \"attn_pdrop\": 0.0,\n    \"attn_impl\": \"triton\",\n    \"qk_ln\": False,\n    \"clip_qkv\": None,\n    \"softmax_scale\": None,\n    \"prefix_lm\": False,\n    \"attn_uses_sequence_id\": False,\n    \"alibi\": False,\n    \"alibi_bias_max\": 8,\n}\ninit_config_defaults: Dict = {\n    \"name\": \"kaiming_normal_\",\n    \"fan_mode\": \"fan_in\",\n    \"init_nonlinearity\": \"relu\",\n    \"init_div_is_residual\": True,\n    \"emb_init_std\": None,\n    \"emb_init_uniform_lim\": None,\n    \"init_std\": None,\n    \"init_gain\": 0.0,\n}\n\n\nclass MPTConfig(PretrainedConfig):\n    model_type = \"mpt\"\n\n    def __init__(\n        self,\n        d_model: int = 2048,\n        n_heads: int = 16,\n        n_layers: int = 24,\n        expansion_ratio: int = 4,\n        max_seq_len: int = 2048,\n        vocab_size: int = 50368,\n        resid_pdrop: float = 0.0,\n        emb_pdrop: float = 0.0,\n        learned_pos_emb: bool = True,\n        attn_config: Dict = attn_config_defaults,\n        init_device: str = \"cpu\",\n        logit_scale: Optional[Union[float, str]] = None,\n        no_bias: bool = False,\n        verbose: int = 0,\n        embedding_fraction: float = 1.0,\n        norm_type: str = \"low_precision_layernorm\",\n        use_cache: bool = False,\n        init_config: Dict = init_config_defaults,\n        **kwargs,\n    ):\n        \"\"\"The MPT configuration class.\n\n        Args:\n            d_model (int): The size of the embedding dimension of the model.\n            n_heads (int): The number of attention heads.\n            n_layers (int): The number of layers in the model.\n            expansion_ratio (int): The ratio of the up/down scale in the MLP.\n            max_seq_len (int): The maximum sequence length of the model.\n            vocab_size (int): The size of the vocabulary.\n            resid_pdrop (float): The dropout probability applied to the attention output before combining with residual.\n            emb_pdrop (float): The dropout probability for the embedding layer.\n            learned_pos_emb (bool): Whether to use learned positional embeddings\n            attn_config (Dict):  A dictionary used to configure the model's attention module:\n                attn_type (str): type of attention to use. Options: multihead_attention, multiquery_attention\n                attn_pdrop (float): The dropout probability for the attention layers.\n                attn_impl (str): The attention implementation to use. One of 'torch', 'flash', or 'triton'.\n                qk_ln (bool): Whether to apply layer normalization to the queries and keys in the attention layer.\n                clip_qkv (Optional[float]): If not None, clip the queries, keys, and values in the attention layer to\n                    this value.\n                softmax_scale (Optional[float]): If not None, scale the softmax in the attention layer by this value. If None,\n                    use the default scale of ``1/sqrt(d_keys)``.\n                prefix_lm (Optional[bool]): Whether the model should operate as a Prefix LM. This requires passing an\n                    extra `prefix_mask` argument which indicates which tokens belong to the prefix. Tokens in the prefix\n                    can attend to one another bi-directionally. Tokens outside the prefix use causal attention.\n                attn_uses_sequence_id (Optional[bool]): Whether to restrict attention to tokens that have the same sequence_id.\n                    When the model is in `train` mode, this requires passing an extra `sequence_id` argument which indicates\n                    which sub-sequence each token belongs to.\n                    Defaults to ``False`` meaning any provided `sequence_id` will be ignored.\n                alibi (bool): Whether to use the alibi bias instead of position embeddings.\n                alibi_bias_max (int): The maximum value of the alibi bias.\n            init_device (str): The device to use for parameter initialization.\n            logit_scale (Optional[Union[float, str]]): If not None, scale the logits by this value.\n            no_bias (bool): Whether to use bias in all layers.\n            verbose (int): The verbosity level. 0 is silent.\n            embedding_fraction (float): The fraction to scale the gradients of the embedding layer by.\n            norm_type (str): choose type of norm to use\n            multiquery_attention (bool): Whether to use multiquery attention implementation.\n            use_cache (bool): Whether or not the model should return the last key/values attentions\n            init_config (Dict): A dictionary used to configure the model initialization:\n                init_config.name: The parameter initialization scheme to use. Options: 'default_', 'baseline_',\n                    'kaiming_uniform_', 'kaiming_normal_', 'neox_init_', 'small_init_', 'xavier_uniform_', or\n                    'xavier_normal_'. These mimic the parameter initialization methods in PyTorch.\n                init_div_is_residual (Union[int, float, str, bool]): Value to divide initial weights by if ``module._is_residual`` is True.\n                emb_init_std (Optional[float]): The standard deviation of the normal distribution used to initialize the embedding layer.\n                emb_init_uniform_lim (Optional[Union[Tuple[float, float], float]]): The lower and upper limits of the uniform distribution\n                    used to initialize the embedding layer. Mutually exclusive with ``emb_init_std``.\n                init_std (float): The standard deviation of the normal distribution used to initialize the model,\n                    if using the baseline_ parameter initialization scheme.\n                init_gain (float): The gain to use for parameter initialization with kaiming or xavier initialization schemes.\n                fan_mode (str): The fan mode to use for parameter initialization with kaiming initialization schemes.\n                init_nonlinearity (str): The nonlinearity to use for parameter initialization with kaiming initialization schemes.\n                ---\n                See llmfoundry.models.utils.param_init_fns.py for info on other param init config options\n        \"\"\"\n        self.d_model = d_model\n        self.n_heads = n_heads\n        self.n_layers = n_layers\n        self.expansion_ratio = expansion_ratio\n        self.max_seq_len = max_seq_len\n        self.vocab_size = vocab_size\n        self.resid_pdrop = resid_pdrop\n        self.emb_pdrop = emb_pdrop\n        self.learned_pos_emb = learned_pos_emb\n        self.attn_config = attn_config\n        self.init_device = init_device\n        self.logit_scale = logit_scale\n        self.no_bias = no_bias\n        self.verbose = verbose\n        self.embedding_fraction = embedding_fraction\n        self.norm_type = norm_type\n        self.use_cache = use_cache\n        self.init_config = init_config\n        if \"name\" in kwargs:\n            del kwargs[\"name\"]\n        if \"loss_fn\" in kwargs:\n            del kwargs[\"loss_fn\"]\n        super().__init__(**kwargs)\n        self._validate_config()\n\n    def _set_config_defaults(self, config, config_defaults):\n        for k, v in config_defaults.items():\n            if k not in config:\n                config[k] = v\n        return config\n\n    def _validate_config(self):\n        self.attn_config = self._set_config_defaults(\n            self.attn_config, attn_config_defaults\n        )\n        self.init_config = self._set_config_defaults(\n            self.init_config, init_config_defaults\n        )\n        if self.d_model % self.n_heads != 0:\n            raise ValueError(\"d_model must be divisible by n_heads\")\n        if any(\n            (\n                prob < 0 or prob > 1\n                for prob in [\n                    self.attn_config[\"attn_pdrop\"],\n                    self.resid_pdrop,\n                    self.emb_pdrop,\n                ]\n            )\n        ):\n            raise ValueError(\n                \"self.attn_config['attn_pdrop'], resid_pdrop, emb_pdrop are probabilities and must be between 0 and 1\"\n            )\n        if self.attn_config[\"attn_impl\"] not in [\"torch\", \"flash\", \"triton\"]:\n            raise ValueError(f\"Unknown attn_impl={self.attn_config['attn_impl']}\")\n        if self.attn_config[\"prefix_lm\"] and self.attn_config[\"attn_impl\"] not in [\n            \"torch\",\n            \"triton\",\n        ]:\n            raise NotImplementedError(\n                \"prefix_lm only implemented with torch and triton attention.\"\n            )\n        if self.attn_config[\"alibi\"] and self.attn_config[\"attn_impl\"] not in [\n            \"torch\",\n            \"triton\",\n        ]:\n            raise NotImplementedError(\n                \"alibi only implemented with torch and triton attention.\"\n            )\n        if self.attn_config[\"attn_uses_sequence_id\"] and self.attn_config[\n            \"attn_impl\"\n        ] not in [\"torch\", \"triton\"]:\n            raise NotImplementedError(\n                \"attn_uses_sequence_id only implemented with torch and triton attention.\"\n            )\n        if self.embedding_fraction > 1 or self.embedding_fraction <= 0:\n            raise ValueError(\n                \"model.embedding_fraction must be between 0 (exclusive) and 1 (inclusive)!\"\n            )\n        if isinstance(self.logit_scale, str) and self.logit_scale != \"inv_sqrt_d_model\":\n            raise ValueError(\n                f\"self.logit_scale={self.logit_scale!r} is not recognized as an option; use numeric value or 'inv_sqrt_d_model'.\"\n            )\n        if self.init_config.get(\"name\", None) is None:\n            raise ValueError(\n                f\"self.init_config={self.init_config!r} 'name' needs to be set.\"\n            )\n        if not self.learned_pos_emb and (not self.attn_config[\"alibi\"]):\n            raise ValueError(\n                f\"Positional information must be provided to the model using either learned_pos_emb or alibi.\"\n            )\n"
  },
  {
    "path": "model/llava/model/language_model/mpt/custom_embedding.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nfrom torch import Tensor\n\n\nclass SharedEmbedding(nn.Embedding):\n    def forward(self, input: Tensor, unembed: bool = False) -> Tensor:\n        if unembed:\n            return F.linear(input, self.weight)\n        return super().forward(input)\n"
  },
  {
    "path": "model/llava/model/language_model/mpt/flash_attn_triton.py",
    "content": "\"\"\"\nCopied from https://github.com/HazyResearch/flash-attention/blob/eff9fe6b8076df59d64d7a3f464696738a3c7c24/flash_attn/flash_attn_triton.py\nupdate imports to use 'triton_pre_mlir'\n\n*Experimental* implementation of FlashAttention in Triton.\nTested with triton==2.0.0.dev20221202.\nTriton 2.0 has a new backend (MLIR) but seems like it doesn't yet work for head dimensions\nother than 64:\nhttps://github.com/openai/triton/blob/d376020f90002757eea3ea9475d4f7cfc2ec5ead/python/triton/ops/flash_attention.py#L207\nWe'll update this implementation with the new Triton backend once this is fixed.\n\nWe use the FlashAttention implementation from Phil Tillet a starting point.\nhttps://github.com/openai/triton/blob/master/python/tutorials/06-fused-attention.py\n\nChanges:\n- Implement both causal and non-causal attention.\n- Implement both self-attention and cross-attention.\n- Support arbitrary seqlens (not just multiples of 128), for both forward and backward.\n- Support all head dimensions up to 128 (not just 16, 32, 64, 128), for both forward and backward.\n- Support attention bias.\n- Speed up the forward pass a bit, and only store the LSE instead of m and l.\n- Make the backward for d=128 much faster by reducing register spilling.\n- Optionally parallelize the backward pass across seqlen_k, to deal with the case of\nsmall batch size * nheads.\n\nCaution:\n- This is an *experimental* implementation. The forward pass should be quite robust but\nI'm not 100% sure that the backward pass doesn't have race conditions (due to the Triton compiler).\n- This implementation has only been tested on A100.\n- If you plan to use headdim other than 64 and 128, you should test for race conditions\n(due to the Triton compiler), as done in tests/test_flash_attn.py\n\"test_flash_attn_triton_race_condition\". I've tested and fixed many race conditions\nfor different head dimensions (40, 48, 64, 128, 80, 88, 96), but I'm still not 100% confident\nthat there are none left for other head dimensions.\n\nDifferences between this Triton version and the CUDA version:\n- Triton version doesn't support dropout.\n- Triton forward is generally faster than CUDA forward, while Triton backward is\ngenerally slower than CUDA backward. Overall Triton forward + backward is slightly slower\nthan CUDA forward + backward.\n- Triton version doesn't support different sequence lengths in a batch (i.e., RaggedTensor/NestedTensor).\n- Triton version supports attention bias, while CUDA version doesn't.\n\"\"\"\nimport math\n\nimport torch\nimport triton_pre_mlir as triton\nimport triton_pre_mlir.language as tl\n\n\n@triton.heuristics(\n    {\n        \"EVEN_M\": lambda args: args[\"seqlen_q\"] % args[\"BLOCK_M\"] == 0,\n        \"EVEN_N\": lambda args: args[\"seqlen_k\"] % args[\"BLOCK_N\"] == 0,\n        \"EVEN_HEADDIM\": lambda args: args[\"headdim\"] == args[\"BLOCK_HEADDIM\"],\n    }\n)\n@triton.jit\ndef _fwd_kernel(\n    Q,\n    K,\n    V,\n    Bias,\n    Out,\n    Lse,\n    TMP,\n    softmax_scale,\n    stride_qb,\n    stride_qh,\n    stride_qm,\n    stride_kb,\n    stride_kh,\n    stride_kn,\n    stride_vb,\n    stride_vh,\n    stride_vn,\n    stride_bb,\n    stride_bh,\n    stride_bm,\n    stride_ob,\n    stride_oh,\n    stride_om,\n    nheads,\n    seqlen_q,\n    seqlen_k,\n    seqlen_q_rounded,\n    headdim,\n    CACHE_KEY_SEQLEN_Q,\n    CACHE_KEY_SEQLEN_K,\n    BIAS_TYPE: tl.constexpr,\n    IS_CAUSAL: tl.constexpr,\n    BLOCK_HEADDIM: tl.constexpr,\n    EVEN_M: tl.constexpr,\n    EVEN_N: tl.constexpr,\n    EVEN_HEADDIM: tl.constexpr,\n    BLOCK_M: tl.constexpr,\n    BLOCK_N: tl.constexpr,\n):\n    start_m = tl.program_id(0)\n    off_hb = tl.program_id(1)\n    off_b = off_hb // nheads\n    off_h = off_hb % nheads\n    offs_m = start_m * BLOCK_M + tl.arange(0, BLOCK_M)\n    offs_n = tl.arange(0, BLOCK_N)\n    offs_d = tl.arange(0, BLOCK_HEADDIM)\n    q_ptrs = (\n        Q\n        + off_b * stride_qb\n        + off_h * stride_qh\n        + (offs_m[:, None] * stride_qm + offs_d[None, :])\n    )\n    k_ptrs = (\n        K\n        + off_b * stride_kb\n        + off_h * stride_kh\n        + (offs_n[:, None] * stride_kn + offs_d[None, :])\n    )\n    v_ptrs = (\n        V\n        + off_b * stride_vb\n        + off_h * stride_vh\n        + (offs_n[:, None] * stride_vn + offs_d[None, :])\n    )\n    if BIAS_TYPE == \"vector\":\n        b_ptrs = Bias + off_b * stride_bb + off_h * stride_bh + offs_n\n    elif BIAS_TYPE == \"matrix\":\n        b_ptrs = (\n            Bias\n            + off_b * stride_bb\n            + off_h * stride_bh\n            + (offs_m[:, None] * stride_bm + offs_n[None, :])\n        )\n    t_ptrs = TMP + off_hb * seqlen_q_rounded + offs_m\n    lse_i = tl.zeros([BLOCK_M], dtype=tl.float32) - float(\"inf\")\n    m_i = tl.zeros([BLOCK_M], dtype=tl.float32) - float(\"inf\")\n    acc_o = tl.zeros([BLOCK_M, BLOCK_HEADDIM], dtype=tl.float32)\n    if EVEN_M & EVEN_N:\n        if EVEN_HEADDIM:\n            q = tl.load(q_ptrs)\n        else:\n            q = tl.load(q_ptrs, mask=offs_d[None, :] < headdim, other=0.0)\n    elif EVEN_HEADDIM:\n        q = tl.load(q_ptrs, mask=offs_m[:, None] < seqlen_q, other=0.0)\n    else:\n        q = tl.load(\n            q_ptrs,\n            mask=(offs_m[:, None] < seqlen_q) & (offs_d[None, :] < headdim),\n            other=0.0,\n        )\n    end_n = seqlen_k if not IS_CAUSAL else tl.minimum((start_m + 1) * BLOCK_M, seqlen_k)\n    for start_n in range(0, end_n, BLOCK_N):\n        start_n = tl.multiple_of(start_n, BLOCK_N)\n        if EVEN_N & EVEN_M:\n            if EVEN_HEADDIM:\n                k = tl.load(k_ptrs + start_n * stride_kn)\n            else:\n                k = tl.load(\n                    k_ptrs + start_n * stride_kn,\n                    mask=offs_d[None, :] < headdim,\n                    other=0.0,\n                )\n        elif EVEN_HEADDIM:\n            k = tl.load(\n                k_ptrs + start_n * stride_kn,\n                mask=(start_n + offs_n)[:, None] < seqlen_k,\n                other=0.0,\n            )\n        else:\n            k = tl.load(\n                k_ptrs + start_n * stride_kn,\n                mask=((start_n + offs_n)[:, None] < seqlen_k)\n                & (offs_d[None, :] < headdim),\n                other=0.0,\n            )\n        qk = tl.zeros([BLOCK_M, BLOCK_N], dtype=tl.float32)\n        qk += tl.dot(q, k, trans_b=True)\n        if not EVEN_N:\n            qk += tl.where((start_n + offs_n)[None, :] < seqlen_k, 0, float(\"-inf\"))\n        if IS_CAUSAL:\n            qk += tl.where(\n                offs_m[:, None] >= (start_n + offs_n)[None, :], 0, float(\"-inf\")\n            )\n        if BIAS_TYPE != \"none\":\n            if BIAS_TYPE == \"vector\":\n                if EVEN_N:\n                    bias = tl.load(b_ptrs + start_n).to(tl.float32)\n                else:\n                    bias = tl.load(\n                        b_ptrs + start_n, mask=start_n + offs_n < seqlen_k, other=0.0\n                    ).to(tl.float32)\n                bias = bias[None, :]\n            elif BIAS_TYPE == \"matrix\":\n                if EVEN_M & EVEN_N:\n                    bias = tl.load(b_ptrs + start_n).to(tl.float32)\n                else:\n                    bias = tl.load(\n                        b_ptrs + start_n,\n                        mask=(offs_m[:, None] < seqlen_q)\n                        & ((start_n + offs_n)[None, :] < seqlen_k),\n                        other=0.0,\n                    ).to(tl.float32)\n            qk = qk * softmax_scale + bias\n            m_ij = tl.maximum(tl.max(qk, 1), lse_i)\n            p = tl.exp(qk - m_ij[:, None])\n        else:\n            m_ij = tl.maximum(tl.max(qk, 1) * softmax_scale, lse_i)\n            p = tl.exp(qk * softmax_scale - m_ij[:, None])\n        l_ij = tl.sum(p, 1)\n        acc_o_scale = tl.exp(m_i - m_ij)\n        tl.store(t_ptrs, acc_o_scale)\n        acc_o_scale = tl.load(t_ptrs)\n        acc_o = acc_o * acc_o_scale[:, None]\n        if EVEN_N & EVEN_M:\n            if EVEN_HEADDIM:\n                v = tl.load(v_ptrs + start_n * stride_vn)\n            else:\n                v = tl.load(\n                    v_ptrs + start_n * stride_vn,\n                    mask=offs_d[None, :] < headdim,\n                    other=0.0,\n                )\n        elif EVEN_HEADDIM:\n            v = tl.load(\n                v_ptrs + start_n * stride_vn,\n                mask=(start_n + offs_n)[:, None] < seqlen_k,\n                other=0.0,\n            )\n        else:\n            v = tl.load(\n                v_ptrs + start_n * stride_vn,\n                mask=((start_n + offs_n)[:, None] < seqlen_k)\n                & (offs_d[None, :] < headdim),\n                other=0.0,\n            )\n        p = p.to(v.dtype)\n        acc_o += tl.dot(p, v)\n        m_i = m_ij\n        l_i_new = tl.exp(lse_i - m_ij) + l_ij\n        lse_i = m_ij + tl.log(l_i_new)\n    o_scale = tl.exp(m_i - lse_i)\n    tl.store(t_ptrs, o_scale)\n    o_scale = tl.load(t_ptrs)\n    acc_o = acc_o * o_scale[:, None]\n    start_m = tl.program_id(0)\n    offs_m = start_m * BLOCK_M + tl.arange(0, BLOCK_M)\n    lse_ptrs = Lse + off_hb * seqlen_q_rounded + offs_m\n    tl.store(lse_ptrs, lse_i)\n    offs_d = tl.arange(0, BLOCK_HEADDIM)\n    out_ptrs = (\n        Out\n        + off_b * stride_ob\n        + off_h * stride_oh\n        + (offs_m[:, None] * stride_om + offs_d[None, :])\n    )\n    if EVEN_M:\n        if EVEN_HEADDIM:\n            tl.store(out_ptrs, acc_o)\n        else:\n            tl.store(out_ptrs, acc_o, mask=offs_d[None, :] < headdim)\n    elif EVEN_HEADDIM:\n        tl.store(out_ptrs, acc_o, mask=offs_m[:, None] < seqlen_q)\n    else:\n        tl.store(\n            out_ptrs,\n            acc_o,\n            mask=(offs_m[:, None] < seqlen_q) & (offs_d[None, :] < headdim),\n        )\n\n\n@triton.jit\ndef _bwd_preprocess_do_o_dot(\n    Out,\n    DO,\n    Delta,\n    stride_ob,\n    stride_oh,\n    stride_om,\n    stride_dob,\n    stride_doh,\n    stride_dom,\n    nheads,\n    seqlen_q,\n    seqlen_q_rounded,\n    headdim,\n    BLOCK_M: tl.constexpr,\n    BLOCK_HEADDIM: tl.constexpr,\n):\n    start_m = tl.program_id(0)\n    off_hb = tl.program_id(1)\n    off_b = off_hb // nheads\n    off_h = off_hb % nheads\n    offs_m = start_m * BLOCK_M + tl.arange(0, BLOCK_M)\n    offs_d = tl.arange(0, BLOCK_HEADDIM)\n    o = tl.load(\n        Out\n        + off_b * stride_ob\n        + off_h * stride_oh\n        + offs_m[:, None] * stride_om\n        + offs_d[None, :],\n        mask=(offs_m[:, None] < seqlen_q) & (offs_d[None, :] < headdim),\n        other=0.0,\n    ).to(tl.float32)\n    do = tl.load(\n        DO\n        + off_b * stride_dob\n        + off_h * stride_doh\n        + offs_m[:, None] * stride_dom\n        + offs_d[None, :],\n        mask=(offs_m[:, None] < seqlen_q) & (offs_d[None, :] < headdim),\n        other=0.0,\n    ).to(tl.float32)\n    delta = tl.sum(o * do, axis=1)\n    tl.store(Delta + off_hb * seqlen_q_rounded + offs_m, delta)\n\n\n@triton.jit\ndef _bwd_store_dk_dv(\n    dk_ptrs,\n    dv_ptrs,\n    dk,\n    dv,\n    offs_n,\n    offs_d,\n    seqlen_k,\n    headdim,\n    EVEN_M: tl.constexpr,\n    EVEN_N: tl.constexpr,\n    EVEN_HEADDIM: tl.constexpr,\n):\n    if EVEN_N & EVEN_M:\n        if EVEN_HEADDIM:\n            tl.store(dv_ptrs, dv)\n            tl.store(dk_ptrs, dk)\n        else:\n            tl.store(dv_ptrs, dv, mask=offs_d[None, :] < headdim)\n            tl.store(dk_ptrs, dk, mask=offs_d[None, :] < headdim)\n    elif EVEN_HEADDIM:\n        tl.store(dv_ptrs, dv, mask=offs_n[:, None] < seqlen_k)\n        tl.store(dk_ptrs, dk, mask=offs_n[:, None] < seqlen_k)\n    else:\n        tl.store(\n            dv_ptrs, dv, mask=(offs_n[:, None] < seqlen_k) & (offs_d[None, :] < headdim)\n        )\n        tl.store(\n            dk_ptrs, dk, mask=(offs_n[:, None] < seqlen_k) & (offs_d[None, :] < headdim)\n        )\n\n\n@triton.jit\ndef _bwd_kernel_one_col_block(\n    start_n,\n    Q,\n    K,\n    V,\n    Bias,\n    DO,\n    DQ,\n    DK,\n    DV,\n    LSE,\n    D,\n    softmax_scale,\n    stride_qm,\n    stride_kn,\n    stride_vn,\n    stride_bm,\n    stride_dom,\n    stride_dqm,\n    stride_dkn,\n    stride_dvn,\n    seqlen_q,\n    seqlen_k,\n    headdim,\n    ATOMIC_ADD: tl.constexpr,\n    BIAS_TYPE: tl.constexpr,\n    IS_CAUSAL: tl.constexpr,\n    BLOCK_HEADDIM: tl.constexpr,\n    EVEN_M: tl.constexpr,\n    EVEN_N: tl.constexpr,\n    EVEN_HEADDIM: tl.constexpr,\n    BLOCK_M: tl.constexpr,\n    BLOCK_N: tl.constexpr,\n):\n    begin_m = 0 if not IS_CAUSAL else start_n * BLOCK_N // BLOCK_M * BLOCK_M\n    offs_qm = begin_m + tl.arange(0, BLOCK_M)\n    offs_n = start_n * BLOCK_N + tl.arange(0, BLOCK_N)\n    offs_m = tl.arange(0, BLOCK_M)\n    offs_d = tl.arange(0, BLOCK_HEADDIM)\n    q_ptrs = Q + (offs_qm[:, None] * stride_qm + offs_d[None, :])\n    k_ptrs = K + (offs_n[:, None] * stride_kn + offs_d[None, :])\n    v_ptrs = V + (offs_n[:, None] * stride_vn + offs_d[None, :])\n    do_ptrs = DO + (offs_qm[:, None] * stride_dom + offs_d[None, :])\n    dq_ptrs = DQ + (offs_qm[:, None] * stride_dqm + offs_d[None, :])\n    if BIAS_TYPE == \"vector\":\n        b_ptrs = Bias + offs_n\n    elif BIAS_TYPE == \"matrix\":\n        b_ptrs = Bias + (offs_qm[:, None] * stride_bm + offs_n[None, :])\n    dv = tl.zeros([BLOCK_N, BLOCK_HEADDIM], dtype=tl.float32)\n    dk = tl.zeros([BLOCK_N, BLOCK_HEADDIM], dtype=tl.float32)\n    if begin_m >= seqlen_q:\n        dv_ptrs = DV + (offs_n[:, None] * stride_dvn + offs_d[None, :])\n        dk_ptrs = DK + (offs_n[:, None] * stride_dkn + offs_d[None, :])\n        _bwd_store_dk_dv(\n            dk_ptrs,\n            dv_ptrs,\n            dk,\n            dv,\n            offs_n,\n            offs_d,\n            seqlen_k,\n            headdim,\n            EVEN_M=EVEN_M,\n            EVEN_N=EVEN_N,\n            EVEN_HEADDIM=EVEN_HEADDIM,\n        )\n        return\n    if EVEN_N & EVEN_M:\n        if EVEN_HEADDIM:\n            k = tl.load(k_ptrs)\n            v = tl.load(v_ptrs)\n        else:\n            k = tl.load(k_ptrs, mask=offs_d[None, :] < headdim, other=0.0)\n            v = tl.load(v_ptrs, mask=offs_d[None, :] < headdim, other=0.0)\n    elif EVEN_HEADDIM:\n        k = tl.load(k_ptrs, mask=offs_n[:, None] < seqlen_k, other=0.0)\n        v = tl.load(v_ptrs, mask=offs_n[:, None] < seqlen_k, other=0.0)\n    else:\n        k = tl.load(\n            k_ptrs,\n            mask=(offs_n[:, None] < seqlen_k) & (offs_d[None, :] < headdim),\n            other=0.0,\n        )\n        v = tl.load(\n            v_ptrs,\n            mask=(offs_n[:, None] < seqlen_k) & (offs_d[None, :] < headdim),\n            other=0.0,\n        )\n    num_block_m = tl.cdiv(seqlen_q, BLOCK_M)\n    for start_m in range(begin_m, num_block_m * BLOCK_M, BLOCK_M):\n        start_m = tl.multiple_of(start_m, BLOCK_M)\n        offs_m_curr = start_m + offs_m\n        if EVEN_M & EVEN_HEADDIM:\n            q = tl.load(q_ptrs)\n        elif EVEN_HEADDIM:\n            q = tl.load(q_ptrs, mask=offs_m_curr[:, None] < seqlen_q, other=0.0)\n        else:\n            q = tl.load(\n                q_ptrs,\n                mask=(offs_m_curr[:, None] < seqlen_q) & (offs_d[None, :] < headdim),\n                other=0.0,\n            )\n        qk = tl.dot(q, k, trans_b=True)\n        if not EVEN_N:\n            qk = tl.where(offs_n[None, :] < seqlen_k, qk, float(\"-inf\"))\n        if IS_CAUSAL:\n            qk = tl.where(offs_m_curr[:, None] >= offs_n[None, :], qk, float(\"-inf\"))\n        if BIAS_TYPE != \"none\":\n            tl.debug_barrier()\n            if BIAS_TYPE == \"vector\":\n                if EVEN_N:\n                    bias = tl.load(b_ptrs).to(tl.float32)\n                else:\n                    bias = tl.load(b_ptrs, mask=offs_n < seqlen_k, other=0.0).to(\n                        tl.float32\n                    )\n                bias = bias[None, :]\n            elif BIAS_TYPE == \"matrix\":\n                if EVEN_M & EVEN_N:\n                    bias = tl.load(b_ptrs).to(tl.float32)\n                else:\n                    bias = tl.load(\n                        b_ptrs,\n                        mask=(offs_m_curr[:, None] < seqlen_q)\n                        & (offs_n[None, :] < seqlen_k),\n                        other=0.0,\n                    ).to(tl.float32)\n            qk = qk * softmax_scale + bias\n        if not EVEN_M & EVEN_HEADDIM:\n            tl.debug_barrier()\n        lse_i = tl.load(LSE + offs_m_curr)\n        if BIAS_TYPE == \"none\":\n            p = tl.exp(qk * softmax_scale - lse_i[:, None])\n        else:\n            p = tl.exp(qk - lse_i[:, None])\n        if EVEN_M & EVEN_HEADDIM:\n            do = tl.load(do_ptrs)\n        else:\n            do = tl.load(\n                do_ptrs,\n                mask=(offs_m_curr[:, None] < seqlen_q) & (offs_d[None, :] < headdim),\n                other=0.0,\n            )\n        dv += tl.dot(p.to(do.dtype), do, trans_a=True)\n        if not EVEN_M & EVEN_HEADDIM:\n            tl.debug_barrier()\n        dp = tl.dot(do, v, trans_b=True)\n        if not EVEN_HEADDIM:\n            tl.debug_barrier()\n        Di = tl.load(D + offs_m_curr)\n        ds = (p * (dp - Di[:, None]) * softmax_scale).to(q.dtype)\n        dk += tl.dot(ds, q, trans_a=True)\n        if not EVEN_M & EVEN_HEADDIM:\n            tl.debug_barrier()\n        if not ATOMIC_ADD:\n            if EVEN_M & EVEN_HEADDIM:\n                dq = tl.load(dq_ptrs, eviction_policy=\"evict_last\")\n                dq += tl.dot(ds, k)\n                tl.store(dq_ptrs, dq, eviction_policy=\"evict_last\")\n            elif EVEN_HEADDIM:\n                dq = tl.load(\n                    dq_ptrs,\n                    mask=offs_m_curr[:, None] < seqlen_q,\n                    other=0.0,\n                    eviction_policy=\"evict_last\",\n                )\n                dq += tl.dot(ds, k)\n                tl.store(\n                    dq_ptrs,\n                    dq,\n                    mask=offs_m_curr[:, None] < seqlen_q,\n                    eviction_policy=\"evict_last\",\n                )\n            else:\n                dq = tl.load(\n                    dq_ptrs,\n                    mask=(offs_m_curr[:, None] < seqlen_q)\n                    & (offs_d[None, :] < headdim),\n                    other=0.0,\n                    eviction_policy=\"evict_last\",\n                )\n                dq += tl.dot(ds, k)\n                tl.store(\n                    dq_ptrs,\n                    dq,\n                    mask=(offs_m_curr[:, None] < seqlen_q)\n                    & (offs_d[None, :] < headdim),\n                    eviction_policy=\"evict_last\",\n                )\n        else:\n            dq = tl.dot(ds, k)\n            if EVEN_M & EVEN_HEADDIM:\n                tl.atomic_add(dq_ptrs, dq)\n            elif EVEN_HEADDIM:\n                tl.atomic_add(dq_ptrs, dq, mask=offs_m_curr[:, None] < seqlen_q)\n            else:\n                tl.atomic_add(\n                    dq_ptrs,\n                    dq,\n                    mask=(offs_m_curr[:, None] < seqlen_q)\n                    & (offs_d[None, :] < headdim),\n                )\n        dq_ptrs += BLOCK_M * stride_dqm\n        q_ptrs += BLOCK_M * stride_qm\n        do_ptrs += BLOCK_M * stride_dom\n        if BIAS_TYPE == \"matrix\":\n            b_ptrs += BLOCK_M * stride_bm\n    dv_ptrs = DV + (offs_n[:, None] * stride_dvn + offs_d[None, :])\n    dk_ptrs = DK + (offs_n[:, None] * stride_dkn + offs_d[None, :])\n    _bwd_store_dk_dv(\n        dk_ptrs,\n        dv_ptrs,\n        dk,\n        dv,\n        offs_n,\n        offs_d,\n        seqlen_k,\n        headdim,\n        EVEN_M=EVEN_M,\n        EVEN_N=EVEN_N,\n        EVEN_HEADDIM=EVEN_HEADDIM,\n    )\n\n\ndef init_to_zero(name):\n    return lambda nargs: nargs[name].zero_()\n\n\n@triton.autotune(\n    configs=[\n        triton.Config(\n            {\"BLOCK_M\": 128, \"BLOCK_N\": 128, \"SEQUENCE_PARALLEL\": False},\n            num_warps=8,\n            num_stages=1,\n            pre_hook=init_to_zero(\"DQ\"),\n        ),\n        triton.Config(\n            {\"BLOCK_M\": 128, \"BLOCK_N\": 128, \"SEQUENCE_PARALLEL\": True},\n            num_warps=8,\n            num_stages=1,\n            pre_hook=init_to_zero(\"DQ\"),\n        ),\n    ],\n    key=[\n        \"CACHE_KEY_SEQLEN_Q\",\n        \"CACHE_KEY_SEQLEN_K\",\n        \"BIAS_TYPE\",\n        \"IS_CAUSAL\",\n        \"BLOCK_HEADDIM\",\n    ],\n)\n@triton.heuristics(\n    {\n        \"EVEN_M\": lambda args: args[\"seqlen_q\"] % args[\"BLOCK_M\"] == 0,\n        \"EVEN_N\": lambda args: args[\"seqlen_k\"] % args[\"BLOCK_N\"] == 0,\n        \"EVEN_HEADDIM\": lambda args: args[\"headdim\"] == args[\"BLOCK_HEADDIM\"],\n    }\n)\n@triton.jit\ndef _bwd_kernel(\n    Q,\n    K,\n    V,\n    Bias,\n    DO,\n    DQ,\n    DK,\n    DV,\n    LSE,\n    D,\n    softmax_scale,\n    stride_qb,\n    stride_qh,\n    stride_qm,\n    stride_kb,\n    stride_kh,\n    stride_kn,\n    stride_vb,\n    stride_vh,\n    stride_vn,\n    stride_bb,\n    stride_bh,\n    stride_bm,\n    stride_dob,\n    stride_doh,\n    stride_dom,\n    stride_dqb,\n    stride_dqh,\n    stride_dqm,\n    stride_dkb,\n    stride_dkh,\n    stride_dkn,\n    stride_dvb,\n    stride_dvh,\n    stride_dvn,\n    nheads,\n    seqlen_q,\n    seqlen_k,\n    seqlen_q_rounded,\n    headdim,\n    CACHE_KEY_SEQLEN_Q,\n    CACHE_KEY_SEQLEN_K,\n    BIAS_TYPE: tl.constexpr,\n    IS_CAUSAL: tl.constexpr,\n    BLOCK_HEADDIM: tl.constexpr,\n    SEQUENCE_PARALLEL: tl.constexpr,\n    EVEN_M: tl.constexpr,\n    EVEN_N: tl.constexpr,\n    EVEN_HEADDIM: tl.constexpr,\n    BLOCK_M: tl.constexpr,\n    BLOCK_N: tl.constexpr,\n):\n    off_hb = tl.program_id(1)\n    off_b = off_hb // nheads\n    off_h = off_hb % nheads\n    Q += off_b * stride_qb + off_h * stride_qh\n    K += off_b * stride_kb + off_h * stride_kh\n    V += off_b * stride_vb + off_h * stride_vh\n    DO += off_b * stride_dob + off_h * stride_doh\n    DQ += off_b * stride_dqb + off_h * stride_dqh\n    DK += off_b * stride_dkb + off_h * stride_dkh\n    DV += off_b * stride_dvb + off_h * stride_dvh\n    if BIAS_TYPE != \"none\":\n        Bias += off_b * stride_bb + off_h * stride_bh\n    D += off_hb * seqlen_q_rounded\n    LSE += off_hb * seqlen_q_rounded\n    if not SEQUENCE_PARALLEL:\n        num_block_n = tl.cdiv(seqlen_k, BLOCK_N)\n        for start_n in range(0, num_block_n):\n            _bwd_kernel_one_col_block(\n                start_n,\n                Q,\n                K,\n                V,\n                Bias,\n                DO,\n                DQ,\n                DK,\n                DV,\n                LSE,\n                D,\n                softmax_scale,\n                stride_qm,\n                stride_kn,\n                stride_vn,\n                stride_bm,\n                stride_dom,\n                stride_dqm,\n                stride_dkn,\n                stride_dvn,\n                seqlen_q,\n                seqlen_k,\n                headdim,\n                ATOMIC_ADD=False,\n                BIAS_TYPE=BIAS_TYPE,\n                IS_CAUSAL=IS_CAUSAL,\n                BLOCK_HEADDIM=BLOCK_HEADDIM,\n                EVEN_M=EVEN_M,\n                EVEN_N=EVEN_N,\n                EVEN_HEADDIM=EVEN_HEADDIM,\n                BLOCK_M=BLOCK_M,\n                BLOCK_N=BLOCK_N,\n            )\n    else:\n        start_n = tl.program_id(0)\n        _bwd_kernel_one_col_block(\n            start_n,\n            Q,\n            K,\n            V,\n            Bias,\n            DO,\n            DQ,\n            DK,\n            DV,\n            LSE,\n            D,\n            softmax_scale,\n            stride_qm,\n            stride_kn,\n            stride_vn,\n            stride_bm,\n            stride_dom,\n            stride_dqm,\n            stride_dkn,\n            stride_dvn,\n            seqlen_q,\n            seqlen_k,\n            headdim,\n            ATOMIC_ADD=True,\n            BIAS_TYPE=BIAS_TYPE,\n            IS_CAUSAL=IS_CAUSAL,\n            BLOCK_HEADDIM=BLOCK_HEADDIM,\n            EVEN_M=EVEN_M,\n            EVEN_N=EVEN_N,\n            EVEN_HEADDIM=EVEN_HEADDIM,\n            BLOCK_M=BLOCK_M,\n            BLOCK_N=BLOCK_N,\n        )\n\n\ndef _flash_attn_forward(q, k, v, bias=None, causal=False, softmax_scale=None):\n    (batch, seqlen_q, nheads, d) = q.shape\n    (_, seqlen_k, _, _) = k.shape\n    assert k.shape == (batch, seqlen_k, nheads, d)\n    assert v.shape == (batch, seqlen_k, nheads, d)\n    assert d <= 128, \"FlashAttention only support head dimensions up to 128\"\n    assert q.dtype == k.dtype == v.dtype, \"All tensors must have the same type\"\n    assert q.dtype in [torch.float16, torch.bfloat16], \"Only support fp16 and bf16\"\n    assert q.is_cuda and k.is_cuda and v.is_cuda\n    softmax_scale = softmax_scale or 1.0 / math.sqrt(d)\n    has_bias = bias is not None\n    bias_type = \"none\"\n    if has_bias:\n        assert bias.dtype in [q.dtype, torch.float]\n        assert bias.is_cuda\n        assert bias.dim() == 4\n        if bias.stride(-1) != 1:\n            bias = bias.contiguous()\n        if bias.shape[2:] == (1, seqlen_k):\n            bias_type = \"vector\"\n        elif bias.shape[2:] == (seqlen_q, seqlen_k):\n            bias_type = \"matrix\"\n        else:\n            raise RuntimeError(\n                \"Last 2 dimensions of bias must be (1, seqlen_k) or (seqlen_q, seqlen_k)\"\n            )\n        bias = bias.expand(batch, nheads, seqlen_q, seqlen_k)\n    bias_strides = (\n        (bias.stride(0), bias.stride(1), bias.stride(2)) if has_bias else (0, 0, 0)\n    )\n    seqlen_q_rounded = math.ceil(seqlen_q / 128) * 128\n    lse = torch.empty(\n        (batch, nheads, seqlen_q_rounded), device=q.device, dtype=torch.float32\n    )\n    tmp = torch.empty(\n        (batch, nheads, seqlen_q_rounded), device=q.device, dtype=torch.float32\n    )\n    o = torch.empty_like(q)\n    BLOCK_HEADDIM = max(triton.next_power_of_2(d), 16)\n    BLOCK = 128\n    num_warps = 4 if d <= 64 else 8\n    grid = lambda META: (triton.cdiv(seqlen_q, META[\"BLOCK_M\"]), batch * nheads)\n    _fwd_kernel[grid](\n        q,\n        k,\n        v,\n        bias,\n        o,\n        lse,\n        tmp,\n        softmax_scale,\n        q.stride(0),\n        q.stride(2),\n        q.stride(1),\n        k.stride(0),\n        k.stride(2),\n        k.stride(1),\n        v.stride(0),\n        v.stride(2),\n        v.stride(1),\n        *bias_strides,\n        o.stride(0),\n        o.stride(2),\n        o.stride(1),\n        nheads,\n        seqlen_q,\n        seqlen_k,\n        seqlen_q_rounded,\n        d,\n        seqlen_q // 32,\n        seqlen_k // 32,\n        bias_type,\n        causal,\n        BLOCK_HEADDIM,\n        BLOCK_M=BLOCK,\n        BLOCK_N=BLOCK,\n        num_warps=num_warps,\n        num_stages=1\n    )\n    return (o, lse, softmax_scale)\n\n\ndef _flash_attn_backward(\n    do, q, k, v, o, lse, dq, dk, dv, bias=None, causal=False, softmax_scale=None\n):\n    if do.stride(-1) != 1:\n        do = do.contiguous()\n    (batch, seqlen_q, nheads, d) = q.shape\n    (_, seqlen_k, _, _) = k.shape\n    assert d <= 128\n    seqlen_q_rounded = math.ceil(seqlen_q / 128) * 128\n    assert lse.shape == (batch, nheads, seqlen_q_rounded)\n    assert q.stride(-1) == k.stride(-1) == v.stride(-1) == o.stride(-1) == 1\n    assert dq.stride(-1) == dk.stride(-1) == dv.stride(-1) == 1\n    softmax_scale = softmax_scale or 1.0 / math.sqrt(d)\n    dq_accum = torch.empty_like(q, dtype=torch.float32)\n    delta = torch.empty_like(lse)\n    BLOCK_HEADDIM = max(triton.next_power_of_2(d), 16)\n    grid = lambda META: (triton.cdiv(seqlen_q, META[\"BLOCK_M\"]), batch * nheads)\n    _bwd_preprocess_do_o_dot[grid](\n        o,\n        do,\n        delta,\n        o.stride(0),\n        o.stride(2),\n        o.stride(1),\n        do.stride(0),\n        do.stride(2),\n        do.stride(1),\n        nheads,\n        seqlen_q,\n        seqlen_q_rounded,\n        d,\n        BLOCK_M=128,\n        BLOCK_HEADDIM=BLOCK_HEADDIM,\n    )\n    has_bias = bias is not None\n    bias_type = \"none\"\n    if has_bias:\n        assert bias.dtype in [q.dtype, torch.float]\n        assert bias.is_cuda\n        assert bias.dim() == 4\n        assert bias.stride(-1) == 1\n        if bias.shape[2:] == (1, seqlen_k):\n            bias_type = \"vector\"\n        elif bias.shape[2:] == (seqlen_q, seqlen_k):\n            bias_type = \"matrix\"\n        else:\n            raise RuntimeError(\n                \"Last 2 dimensions of bias must be (1, seqlen_k) or (seqlen_q, seqlen_k)\"\n            )\n        bias = bias.expand(batch, nheads, seqlen_q, seqlen_k)\n    bias_strides = (\n        (bias.stride(0), bias.stride(1), bias.stride(2)) if has_bias else (0, 0, 0)\n    )\n    grid = lambda META: (\n        triton.cdiv(seqlen_k, META[\"BLOCK_N\"]) if META[\"SEQUENCE_PARALLEL\"] else 1,\n        batch * nheads,\n    )\n    _bwd_kernel[grid](\n        q,\n        k,\n        v,\n        bias,\n        do,\n        dq_accum,\n        dk,\n        dv,\n        lse,\n        delta,\n        softmax_scale,\n        q.stride(0),\n        q.stride(2),\n        q.stride(1),\n        k.stride(0),\n        k.stride(2),\n        k.stride(1),\n        v.stride(0),\n        v.stride(2),\n        v.stride(1),\n        *bias_strides,\n        do.stride(0),\n        do.stride(2),\n        do.stride(1),\n        dq_accum.stride(0),\n        dq_accum.stride(2),\n        dq_accum.stride(1),\n        dk.stride(0),\n        dk.stride(2),\n        dk.stride(1),\n        dv.stride(0),\n        dv.stride(2),\n        dv.stride(1),\n        nheads,\n        seqlen_q,\n        seqlen_k,\n        seqlen_q_rounded,\n        d,\n        seqlen_q // 32,\n        seqlen_k // 32,\n        bias_type,\n        causal,\n        BLOCK_HEADDIM\n    )\n    dq.copy_(dq_accum)\n\n\nclass FlashAttnQKVPackedFunc(torch.autograd.Function):\n    @staticmethod\n    def forward(ctx, qkv, bias=None, causal=False, softmax_scale=None):\n        \"\"\"\n        qkv: (batch, seqlen, 3, nheads, headdim)\n        bias: optional, shape broadcastible to (batch, nheads, seqlen, seqlen).\n            For example, ALiBi mask for causal would have shape (1, nheads, 1, seqlen).\n            ALiBi mask for non-causal would have shape (1, nheads, seqlen, seqlen)\n        \"\"\"\n        if qkv.stride(-1) != 1:\n            qkv = qkv.contiguous()\n        (o, lse, ctx.softmax_scale) = _flash_attn_forward(\n            qkv[:, :, 0],\n            qkv[:, :, 1],\n            qkv[:, :, 2],\n            bias=bias,\n            causal=causal,\n            softmax_scale=softmax_scale,\n        )\n        ctx.save_for_backward(qkv, o, lse, bias)\n        ctx.causal = causal\n        return o\n\n    @staticmethod\n    def backward(ctx, do):\n        (qkv, o, lse, bias) = ctx.saved_tensors\n        assert not ctx.needs_input_grad[\n            1\n        ], \"FlashAttention does not support bias gradient yet\"\n        with torch.inference_mode():\n            dqkv = torch.empty_like(qkv)\n            _flash_attn_backward(\n                do,\n                qkv[:, :, 0],\n                qkv[:, :, 1],\n                qkv[:, :, 2],\n                o,\n                lse,\n                dqkv[:, :, 0],\n                dqkv[:, :, 1],\n                dqkv[:, :, 2],\n                bias=bias,\n                causal=ctx.causal,\n                softmax_scale=ctx.softmax_scale,\n            )\n        return (dqkv, None, None, None)\n\n\nflash_attn_qkvpacked_func = FlashAttnQKVPackedFunc.apply\n\n\nclass FlashAttnKVPackedFunc(torch.autograd.Function):\n    @staticmethod\n    def forward(ctx, q, kv, bias=None, causal=False, softmax_scale=None):\n        \"\"\"\n        q: (batch, seqlen_q, nheads, headdim)\n        kv: (batch, seqlen_k, 2, nheads, headdim)\n        bias: optional, shape broadcastible to (batch, nheads, seqlen_q, seqlen_k).\n            For example, ALiBi mask for causal would have shape (1, nheads, 1, seqlen_k).\n            ALiBi mask for non-causal would have shape (1, nheads, seqlen_q, seqlen_k)\n        \"\"\"\n        (q, kv) = [x if x.stride(-1) == 1 else x.contiguous() for x in [q, kv]]\n        (o, lse, ctx.softmax_scale) = _flash_attn_forward(\n            q,\n            kv[:, :, 0],\n            kv[:, :, 1],\n            bias=bias,\n            causal=causal,\n            softmax_scale=softmax_scale,\n        )\n        ctx.save_for_backward(q, kv, o, lse, bias)\n        ctx.causal = causal\n        return o\n\n    @staticmethod\n    def backward(ctx, do):\n        (q, kv, o, lse, bias) = ctx.saved_tensors\n        if len(ctx.needs_input_grad) >= 3:\n            assert not ctx.needs_input_grad[\n                2\n            ], \"FlashAttention does not support bias gradient yet\"\n        with torch.inference_mode():\n            dq = torch.empty_like(q)\n            dkv = torch.empty_like(kv)\n            _flash_attn_backward(\n                do,\n                q,\n                kv[:, :, 0],\n                kv[:, :, 1],\n                o,\n                lse,\n                dq,\n                dkv[:, :, 0],\n                dkv[:, :, 1],\n                bias=bias,\n                causal=ctx.causal,\n                softmax_scale=ctx.softmax_scale,\n            )\n        return (dq, dkv, None, None, None)\n\n\nflash_attn_kvpacked_func = FlashAttnKVPackedFunc.apply\n\n\nclass FlashAttnFunc(torch.autograd.Function):\n    @staticmethod\n    def forward(ctx, q, k, v, bias=None, causal=False, softmax_scale=None):\n        \"\"\"\n        q: (batch_size, seqlen_q, nheads, headdim)\n        k, v: (batch_size, seqlen_k, nheads, headdim)\n        bias: optional, shape broadcastible to (batch, nheads, seqlen_q, seqlen_k).\n            For example, ALiBi mask for causal would have shape (1, nheads, 1, seqlen_k).\n            ALiBi mask for non-causal would have shape (1, nheads, seqlen_q, seqlen_k)\n        \"\"\"\n        (q, k, v) = [x if x.stride(-1) == 1 else x.contiguous() for x in [q, k, v]]\n        (o, lse, ctx.softmax_scale) = _flash_attn_forward(\n            q, k, v, bias=bias, causal=causal, softmax_scale=softmax_scale\n        )\n        ctx.save_for_backward(q, k, v, o, lse, bias)\n        ctx.causal = causal\n        return o\n\n    @staticmethod\n    def backward(ctx, do):\n        (q, k, v, o, lse, bias) = ctx.saved_tensors\n        assert not ctx.needs_input_grad[\n            3\n        ], \"FlashAttention does not support bias gradient yet\"\n        with torch.inference_mode():\n            dq = torch.empty_like(q)\n            dk = torch.empty_like(k)\n            dv = torch.empty_like(v)\n            _flash_attn_backward(\n                do,\n                q,\n                k,\n                v,\n                o,\n                lse,\n                dq,\n                dk,\n                dv,\n                bias=bias,\n                causal=ctx.causal,\n                softmax_scale=ctx.softmax_scale,\n            )\n        return (dq, dk, dv, None, None, None)\n\n\nflash_attn_func = FlashAttnFunc.apply\n"
  },
  {
    "path": "model/llava/model/language_model/mpt/hf_prefixlm_converter.py",
    "content": "\"\"\"Converts Huggingface Causal LM to Prefix LM.\n\nConversion does lightweight surgery on a HuggingFace\nCausal LM to convert it to a Prefix LM.\n\nPrefix LMs accepts a `bidirectional_mask` input in `forward`\nand treat the input prompt as the prefix in `generate`.\n\"\"\"\nimport math\nimport warnings\nfrom types import MethodType\nfrom typing import Any, Dict, List, Optional, Tuple, Union\n\nimport torch\nfrom transformers.models.bloom.modeling_bloom import (\n    BaseModelOutputWithPastAndCrossAttentions, BloomForCausalLM, BloomModel,\n    CausalLMOutputWithCrossAttentions, CrossEntropyLoss)\nfrom transformers.models.bloom.modeling_bloom import \\\n    _expand_mask as _expand_mask_bloom\nfrom transformers.models.bloom.modeling_bloom import \\\n    _make_causal_mask as _make_causal_mask_bloom\nfrom transformers.models.bloom.modeling_bloom import logging\nfrom transformers.models.gpt2.modeling_gpt2 import GPT2LMHeadModel\nfrom transformers.models.gpt_neo.modeling_gpt_neo import GPTNeoForCausalLM\nfrom transformers.models.gpt_neox.modeling_gpt_neox import GPTNeoXForCausalLM\nfrom transformers.models.gptj.modeling_gptj import GPTJForCausalLM\nfrom transformers.models.opt.modeling_opt import OPTForCausalLM\nfrom transformers.models.opt.modeling_opt import \\\n    _expand_mask as _expand_mask_opt\nfrom transformers.models.opt.modeling_opt import \\\n    _make_causal_mask as _make_causal_mask_opt\n\nlogger = logging.get_logger(__name__)\n_SUPPORTED_GPT_MODELS = (\n    GPT2LMHeadModel,\n    GPTJForCausalLM,\n    GPTNeoForCausalLM,\n    GPTNeoXForCausalLM,\n)\nCAUSAL_GPT_TYPES = Union[\n    GPT2LMHeadModel, GPTJForCausalLM, GPTNeoForCausalLM, GPTNeoXForCausalLM\n]\n\n\ndef _convert_gpt_causal_lm_to_prefix_lm(model: CAUSAL_GPT_TYPES) -> CAUSAL_GPT_TYPES:\n    \"\"\"Converts a GPT-style Causal LM to a Prefix LM.\n\n    Supported HuggingFace model classes:\n        - `GPT2LMHeadModel`\n        - `GPTNeoForCausalLM`\n        - `GPTNeoXForCausalLM`\n        - `GPTJForCausalLM`\n\n    See `convert_hf_causal_lm_to_prefix_lm` for more details.\n    \"\"\"\n    if hasattr(model, \"_prefix_lm_converted\"):\n        return model\n    assert isinstance(model, _SUPPORTED_GPT_MODELS)\n    assert (\n        model.config.add_cross_attention == False\n    ), \"Only supports GPT-style decoder-only models\"\n\n    def _get_attn_modules(model: CAUSAL_GPT_TYPES) -> List[torch.nn.Module]:\n        \"\"\"Helper that gets a list of the model's attention modules.\n\n        Each module has a `bias` buffer used for causal masking. The Prefix LM\n        conversion adds logic to dynamically manipulate these biases to support\n        Prefix LM attention masking.\n        \"\"\"\n        attn_modules = []\n        if isinstance(model, GPTNeoXForCausalLM):\n            blocks = model.gpt_neox.layers\n        else:\n            blocks = model.transformer.h\n        for block in blocks:\n            if isinstance(model, GPTNeoForCausalLM):\n                if block.attn.attention_type != \"global\":\n                    continue\n                attn_module = block.attn.attention\n            elif isinstance(model, GPTNeoXForCausalLM):\n                attn_module = block.attention\n            else:\n                attn_module = block.attn\n            attn_modules.append(attn_module)\n        return attn_modules\n\n    setattr(model, \"_original_forward\", getattr(model, \"forward\"))\n    setattr(model, \"_original_generate\", getattr(model, \"generate\"))\n\n    def forward(\n        self: CAUSAL_GPT_TYPES,\n        input_ids: Optional[torch.LongTensor] = None,\n        past_key_values: Optional[Tuple[Tuple[torch.Tensor]]] = None,\n        attention_mask: Optional[torch.FloatTensor] = None,\n        bidirectional_mask: Optional[torch.Tensor] = None,\n        token_type_ids: Optional[torch.LongTensor] = None,\n        position_ids: Optional[torch.LongTensor] = None,\n        head_mask: Optional[torch.FloatTensor] = None,\n        inputs_embeds: Optional[torch.FloatTensor] = None,\n        labels: Optional[torch.LongTensor] = None,\n        use_cache: Optional[bool] = None,\n        output_attentions: Optional[bool] = None,\n        output_hidden_states: Optional[bool] = None,\n        return_dict: Optional[bool] = None,\n    ):\n        \"\"\"Wraps original forward to enable PrefixLM attention.\"\"\"\n\n        def call_og_forward():\n            if isinstance(self, GPTNeoXForCausalLM):\n                return self._original_forward(\n                    input_ids=input_ids,\n                    past_key_values=past_key_values,\n                    attention_mask=attention_mask,\n                    head_mask=head_mask,\n                    inputs_embeds=inputs_embeds,\n                    labels=labels,\n                    use_cache=use_cache,\n                    output_attentions=output_attentions,\n                    output_hidden_states=output_hidden_states,\n                    return_dict=return_dict,\n                )\n            else:\n                return self._original_forward(\n                    input_ids=input_ids,\n                    past_key_values=past_key_values,\n                    attention_mask=attention_mask,\n                    token_type_ids=token_type_ids,\n                    position_ids=position_ids,\n                    head_mask=head_mask,\n                    inputs_embeds=inputs_embeds,\n                    labels=labels,\n                    use_cache=use_cache,\n                    output_attentions=output_attentions,\n                    output_hidden_states=output_hidden_states,\n                    return_dict=return_dict,\n                )\n\n        if bidirectional_mask is None:\n            return call_og_forward()\n        assert isinstance(bidirectional_mask, torch.Tensor)\n        attn_modules = _get_attn_modules(model)\n        (b, s) = bidirectional_mask.shape\n        max_length = attn_modules[0].bias.shape[-1]\n        if s > max_length:\n            raise ValueError(\n                f\"bidirectional_mask sequence length (={s}) exceeds the \"\n                + f\"max length allowed by the model ({max_length}).\"\n            )\n        assert s <= max_length\n        if s < max_length:\n            pad = torch.zeros(\n                (int(b), int(max_length - s)),\n                dtype=bidirectional_mask.dtype,\n                device=bidirectional_mask.device,\n            )\n            bidirectional_mask = torch.cat([bidirectional_mask, pad], dim=1)\n        bidirectional = bidirectional_mask.unsqueeze(1).unsqueeze(1)\n        for attn_module in attn_modules:\n            attn_module.bias.data = torch.logical_or(\n                attn_module.bias.data, bidirectional\n            )\n        output = call_og_forward()\n        for attn_module in attn_modules:\n            attn_module.bias.data = torch.tril(attn_module.bias.data[0, 0])[None, None]\n        return output\n\n    def generate(self: CAUSAL_GPT_TYPES, *args: tuple, **kwargs: Dict[str, Any]):\n        \"\"\"Wraps original generate to enable PrefixLM attention.\"\"\"\n        attn_modules = _get_attn_modules(model)\n        for attn_module in attn_modules:\n            attn_module.bias.data[:] = 1\n        output = self._original_generate(*args, **kwargs)\n        for attn_module in attn_modules:\n            attn_module.bias.data = torch.tril(attn_module.bias.data[0, 0])[None, None]\n        return output\n\n    setattr(model, \"forward\", MethodType(forward, model))\n    setattr(model, \"generate\", MethodType(generate, model))\n    setattr(model, \"_prefix_lm_converted\", True)\n    return model\n\n\ndef _convert_bloom_causal_lm_to_prefix_lm(model: BloomForCausalLM) -> BloomForCausalLM:\n    \"\"\"Converts a BLOOM Causal LM to a Prefix LM.\n\n    Supported HuggingFace model classes:\n        - `BloomForCausalLM`\n\n    See `convert_hf_causal_lm_to_prefix_lm` for more details.\n    \"\"\"\n    if hasattr(model, \"_prefix_lm_converted\"):\n        return model\n    assert isinstance(model, BloomForCausalLM)\n    assert (\n        model.config.add_cross_attention == False\n    ), \"Only supports BLOOM decoder-only models\"\n\n    def _prepare_attn_mask(\n        self: BloomModel,\n        attention_mask: torch.Tensor,\n        bidirectional_mask: Optional[torch.Tensor],\n        input_shape: Tuple[int, int],\n        past_key_values_length: int,\n    ) -> torch.BoolTensor:\n        combined_attention_mask = None\n        device = attention_mask.device\n        (_, src_length) = input_shape\n        if src_length > 1:\n            combined_attention_mask = _make_causal_mask_bloom(\n                input_shape,\n                device=device,\n                past_key_values_length=past_key_values_length,\n            )\n            if bidirectional_mask is not None:\n                assert attention_mask.shape == bidirectional_mask.shape\n                expanded_bidirectional_mask = _expand_mask_bloom(\n                    bidirectional_mask, tgt_length=src_length\n                )\n                combined_attention_mask = torch.logical_and(\n                    combined_attention_mask, expanded_bidirectional_mask\n                )\n        expanded_attn_mask = _expand_mask_bloom(attention_mask, tgt_length=src_length)\n        combined_attention_mask = (\n            expanded_attn_mask\n            if combined_attention_mask is None\n            else expanded_attn_mask | combined_attention_mask\n        )\n        return combined_attention_mask\n\n    def _build_alibi_tensor(\n        self: BloomModel,\n        batch_size: int,\n        query_length: int,\n        key_length: int,\n        dtype: torch.dtype,\n        device: torch.device,\n    ) -> torch.Tensor:\n        num_heads = self.config.n_head\n        closest_power_of_2 = 2 ** math.floor(math.log2(num_heads))\n        base = torch.tensor(\n            2 ** (-(2 ** (-(math.log2(closest_power_of_2) - 3)))),\n            device=device,\n            dtype=torch.float32,\n        )\n        powers = torch.arange(\n            1, 1 + closest_power_of_2, device=device, dtype=torch.int32\n        )\n        slopes = torch.pow(base, powers)\n        if closest_power_of_2 != num_heads:\n            extra_base = torch.tensor(\n                2 ** (-(2 ** (-(math.log2(2 * closest_power_of_2) - 3)))),\n                device=device,\n                dtype=torch.float32,\n            )\n            num_remaining_heads = min(\n                closest_power_of_2, num_heads - closest_power_of_2\n            )\n            extra_powers = torch.arange(\n                1, 1 + 2 * num_remaining_heads, 2, device=device, dtype=torch.int32\n            )\n            slopes = torch.cat([slopes, torch.pow(extra_base, extra_powers)], dim=0)\n        qa = torch.arange(query_length, device=device, dtype=torch.int32).view(-1, 1)\n        ka = torch.arange(key_length, device=device, dtype=torch.int32).view(1, -1)\n        diffs = qa - ka + key_length - query_length\n        diffs = -diffs.abs()\n        alibi = slopes.view(1, num_heads, 1, 1) * diffs.view(\n            1, 1, query_length, key_length\n        )\n        alibi = alibi.expand(batch_size, -1, -1, -1).reshape(\n            -1, query_length, key_length\n        )\n        return alibi.to(dtype)\n\n    KeyValueT = Tuple[torch.Tensor, torch.Tensor]\n\n    def forward(\n        self: BloomModel,\n        input_ids: Optional[torch.LongTensor] = None,\n        past_key_values: Optional[Tuple[KeyValueT, ...]] = None,\n        attention_mask: Optional[torch.Tensor] = None,\n        bidirectional_mask: Optional[torch.Tensor] = None,\n        head_mask: Optional[torch.LongTensor] = None,\n        inputs_embeds: Optional[torch.LongTensor] = None,\n        use_cache: Optional[bool] = None,\n        output_attentions: Optional[bool] = None,\n        output_hidden_states: Optional[bool] = None,\n        return_dict: Optional[bool] = None,\n        **deprecated_arguments,\n    ) -> Union[Tuple[torch.Tensor, ...], BaseModelOutputWithPastAndCrossAttentions]:\n        if deprecated_arguments.pop(\"position_ids\", False) is not False:\n            warnings.warn(\n                \"`position_ids` have no functionality in BLOOM and will be removed in v5.0.0. \"\n                + \"You can safely ignore passing `position_ids`.\",\n                FutureWarning,\n            )\n        if len(deprecated_arguments) > 0:\n            raise ValueError(f\"Got unexpected arguments: {deprecated_arguments}\")\n        output_attentions = (\n            output_attentions\n            if output_attentions is not None\n            else self.config.output_attentions\n        )\n        output_hidden_states = (\n            output_hidden_states\n            if output_hidden_states is not None\n            else self.config.output_hidden_states\n        )\n        use_cache = use_cache if use_cache is not None else self.config.use_cache\n        return_dict = (\n            return_dict if return_dict is not None else self.config.use_return_dict\n        )\n        if input_ids is not None and inputs_embeds is not None:\n            raise ValueError(\n                \"You cannot specify both input_ids and inputs_embeds at the same time\"\n            )\n        elif input_ids is not None:\n            (batch_size, seq_length) = input_ids.shape\n        elif inputs_embeds is not None:\n            (batch_size, seq_length, _) = inputs_embeds.shape\n        else:\n            raise ValueError(\"You have to specify either input_ids or inputs_embeds\")\n        if past_key_values is None:\n            past_key_values = tuple([None] * len(self.h))\n        head_mask = self.get_head_mask(head_mask, self.config.n_layer)\n        if inputs_embeds is None:\n            inputs_embeds = self.word_embeddings(input_ids)\n        hidden_states = self.word_embeddings_layernorm(inputs_embeds)\n        presents = () if use_cache else None\n        all_self_attentions = () if output_attentions else None\n        all_hidden_states = () if output_hidden_states else None\n        seq_length_with_past = seq_length\n        past_key_values_length = 0\n        if past_key_values[0] is not None:\n            tmp = past_key_values[0][0]\n            past_key_values_length = tmp.shape[2]\n            seq_length_with_past = seq_length_with_past + past_key_values_length\n        if attention_mask is None:\n            attention_mask = torch.ones(\n                (batch_size, seq_length_with_past), device=hidden_states.device\n            )\n        else:\n            attention_mask = attention_mask.to(hidden_states.device)\n        alibi = self._build_alibi_tensor(\n            batch_size=batch_size,\n            query_length=seq_length,\n            key_length=seq_length_with_past,\n            dtype=hidden_states.dtype,\n            device=hidden_states.device,\n        )\n        causal_mask = self._prepare_attn_mask(\n            attention_mask,\n            bidirectional_mask,\n            input_shape=(batch_size, seq_length),\n            past_key_values_length=past_key_values_length,\n        )\n        for i, (block, layer_past) in enumerate(zip(self.h, past_key_values)):\n            if output_hidden_states:\n                hst = (hidden_states,)\n                all_hidden_states = all_hidden_states + hst\n            if self.gradient_checkpointing and self.training:\n                if use_cache:\n                    logger.warning(\n                        \"`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`...\"\n                    )\n                    use_cache = False\n\n                def create_custom_forward(module):\n                    def custom_forward(*inputs):\n                        return module(\n                            *inputs,\n                            use_cache=use_cache,\n                            output_attentions=output_attentions,\n                        )\n\n                    return custom_forward\n\n                outputs = torch.utils.checkpoint.checkpoint(\n                    create_custom_forward(block),\n                    hidden_states,\n                    alibi,\n                    causal_mask,\n                    head_mask[i],\n                )\n            else:\n                outputs = block(\n                    hidden_states,\n                    layer_past=layer_past,\n                    attention_mask=causal_mask,\n                    head_mask=head_mask[i],\n                    use_cache=use_cache,\n                    output_attentions=output_attentions,\n                    alibi=alibi,\n                )\n            hidden_states = outputs[0]\n            if use_cache is True:\n                presents = presents + (outputs[1],)\n            if output_attentions:\n                oa = (outputs[2 if use_cache else 1],)\n                all_self_attentions = all_self_attentions + oa\n        hidden_states = self.ln_f(hidden_states)\n        if output_hidden_states:\n            hst = (hidden_states,)\n            all_hidden_states = all_hidden_states + hst\n        if not return_dict:\n            return tuple(\n                (\n                    v\n                    for v in [\n                        hidden_states,\n                        presents,\n                        all_hidden_states,\n                        all_self_attentions,\n                    ]\n                    if v is not None\n                )\n            )\n        return BaseModelOutputWithPastAndCrossAttentions(\n            last_hidden_state=hidden_states,\n            past_key_values=presents,\n            hidden_states=all_hidden_states,\n            attentions=all_self_attentions,\n        )\n\n    setattr(\n        model.transformer,\n        \"_prepare_attn_mask\",\n        MethodType(_prepare_attn_mask, model.transformer),\n    )\n    setattr(\n        model.transformer,\n        \"_build_alibi_tensor\",\n        MethodType(_build_alibi_tensor, model.transformer),\n    )\n    setattr(model.transformer, \"forward\", MethodType(forward, model.transformer))\n    KeyValueT = Tuple[torch.Tensor, torch.Tensor]\n\n    def forward(\n        self: BloomForCausalLM,\n        input_ids: Optional[torch.LongTensor] = None,\n        past_key_values: Optional[Tuple[KeyValueT, ...]] = None,\n        attention_mask: Optional[torch.Tensor] = None,\n        bidirectional_mask: Optional[torch.Tensor] = None,\n        head_mask: Optional[torch.Tensor] = None,\n        inputs_embeds: Optional[torch.Tensor] = None,\n        labels: Optional[torch.Tensor] = None,\n        use_cache: Optional[bool] = None,\n        output_attentions: Optional[bool] = None,\n        output_hidden_states: Optional[bool] = None,\n        return_dict: Optional[bool] = None,\n        **deprecated_arguments,\n    ) -> Union[Tuple[torch.Tensor], CausalLMOutputWithCrossAttentions]:\n        \"\"\"Replacement forward method for BloomCausalLM.\"\"\"\n        if deprecated_arguments.pop(\"position_ids\", False) is not False:\n            warnings.warn(\n                \"`position_ids` have no functionality in BLOOM and will be removed \"\n                + \"in v5.0.0. You can safely ignore passing `position_ids`.\",\n                FutureWarning,\n            )\n        if len(deprecated_arguments) > 0:\n            raise ValueError(f\"Got unexpected arguments: {deprecated_arguments}\")\n        return_dict = (\n            return_dict if return_dict is not None else self.config.use_return_dict\n        )\n        transformer_outputs = self.transformer(\n            input_ids,\n            past_key_values=past_key_values,\n            attention_mask=attention_mask,\n            bidirectional_mask=bidirectional_mask,\n            head_mask=head_mask,\n            inputs_embeds=inputs_embeds,\n            use_cache=use_cache,\n            output_attentions=output_attentions,\n            output_hidden_states=output_hidden_states,\n            return_dict=return_dict,\n        )\n        hidden_states = transformer_outputs[0]\n        lm_logits = self.lm_head(hidden_states)\n        loss = None\n        if labels is not None:\n            shift_logits = lm_logits[..., :-1, :].contiguous()\n            shift_labels = labels[..., 1:].contiguous()\n            (batch_size, seq_length, vocab_size) = shift_logits.shape\n            loss_fct = CrossEntropyLoss()\n            loss = loss_fct(\n                shift_logits.view(batch_size * seq_length, vocab_size),\n                shift_labels.view(batch_size * seq_length),\n            )\n        if not return_dict:\n            output = (lm_logits,) + transformer_outputs[1:]\n            return (loss,) + output if loss is not None else output\n        return CausalLMOutputWithCrossAttentions(\n            loss=loss,\n            logits=lm_logits,\n            past_key_values=transformer_outputs.past_key_values,\n            hidden_states=transformer_outputs.hidden_states,\n            attentions=transformer_outputs.attentions,\n        )\n\n    def prepare_inputs_for_generation(\n        self: BloomForCausalLM,\n        input_ids: torch.LongTensor,\n        past: Optional[torch.Tensor] = None,\n        attention_mask: Optional[torch.Tensor] = None,\n        **kwargs,\n    ) -> dict:\n        if past:\n            input_ids = input_ids[:, -1].unsqueeze(-1)\n            bidirectional_mask = None\n            if past[0][0].shape[0] == input_ids.shape[0]:\n                past = self._convert_to_bloom_cache(past)\n        else:\n            bidirectional_mask = torch.ones_like(input_ids)\n        return {\n            \"input_ids\": input_ids,\n            \"past_key_values\": past,\n            \"use_cache\": True,\n            \"attention_mask\": attention_mask,\n            \"bidirectional_mask\": bidirectional_mask,\n        }\n\n    setattr(model, \"forward\", MethodType(forward, model))\n    setattr(\n        model,\n        \"prepare_inputs_for_generation\",\n        MethodType(prepare_inputs_for_generation, model),\n    )\n    setattr(model, \"_prefix_lm_converted\", True)\n    return model\n\n\ndef _convert_opt_causal_lm_to_prefix_lm(model: OPTForCausalLM) -> OPTForCausalLM:\n    \"\"\"Converts an OPT Causal LM to a Prefix LM.\n\n    Supported HuggingFace model classes:\n        - `OPTForCausalLM`\n\n    See `convert_hf_causal_lm_to_prefix_lm` for more details.\n    \"\"\"\n    if hasattr(model, \"_prefix_lm_converted\"):\n        return model\n    assert isinstance(model, OPTForCausalLM)\n    assert (\n        model.config.add_cross_attention == False\n    ), \"Only supports OPT decoder-only models\"\n    setattr(model, \"_original_forward\", getattr(model, \"forward\"))\n    setattr(model, \"_original_generate\", getattr(model, \"generate\"))\n    model.model.decoder.bidirectional_mask = None\n\n    def _prepare_decoder_attention_mask(\n        self, attention_mask, input_shape, inputs_embeds, past_key_values_length\n    ):\n        combined_attention_mask = None\n        if input_shape[-1] > 1:\n            if self.bidirectional_mask == \"g\":\n                (bsz, src_length) = input_shape\n                combined_attention_mask = torch.zeros(\n                    (bsz, 1, src_length, src_length + past_key_values_length),\n                    dtype=inputs_embeds.dtype,\n                    device=inputs_embeds.device,\n                )\n            else:\n                combined_attention_mask = _make_causal_mask_opt(\n                    input_shape,\n                    inputs_embeds.dtype,\n                    past_key_values_length=past_key_values_length,\n                ).to(inputs_embeds.device)\n                if self.bidirectional_mask is not None:\n                    assert attention_mask.shape == self.bidirectional_mask.shape\n                    expanded_bidirectional_mask = _expand_mask_opt(\n                        self.bidirectional_mask,\n                        inputs_embeds.dtype,\n                        tgt_len=input_shape[-1],\n                    ).to(inputs_embeds.device)\n                    combined_attention_mask = torch.maximum(\n                        expanded_bidirectional_mask, combined_attention_mask\n                    )\n        if attention_mask is not None:\n            expanded_attn_mask = _expand_mask_opt(\n                attention_mask, inputs_embeds.dtype, tgt_len=input_shape[-1]\n            ).to(inputs_embeds.device)\n            combined_attention_mask = (\n                expanded_attn_mask\n                if combined_attention_mask is None\n                else expanded_attn_mask + combined_attention_mask\n            )\n        return combined_attention_mask\n\n    setattr(\n        model.model.decoder,\n        \"_prepare_decoder_attention_mask\",\n        MethodType(_prepare_decoder_attention_mask, model.model.decoder),\n    )\n\n    def forward(\n        self: OPTForCausalLM,\n        input_ids: Optional[torch.LongTensor] = None,\n        attention_mask: Optional[torch.Tensor] = None,\n        bidirectional_mask: Optional[torch.ByteTensor] = None,\n        head_mask: Optional[torch.Tensor] = None,\n        past_key_values: Optional[List[torch.FloatTensor]] = None,\n        inputs_embeds: Optional[torch.FloatTensor] = None,\n        labels: Optional[torch.LongTensor] = None,\n        use_cache: Optional[bool] = None,\n        output_attentions: Optional[bool] = None,\n        output_hidden_states: Optional[bool] = None,\n        return_dict: Optional[bool] = None,\n    ):\n        def call_og_forward():\n            return self._original_forward(\n                input_ids=input_ids,\n                attention_mask=attention_mask,\n                head_mask=head_mask,\n                past_key_values=past_key_values,\n                inputs_embeds=inputs_embeds,\n                labels=labels,\n                use_cache=use_cache,\n                output_attentions=output_attentions,\n                output_hidden_states=output_hidden_states,\n                return_dict=return_dict,\n            )\n\n        if bidirectional_mask is None:\n            return call_og_forward()\n        self.model.decoder.bidirectional_mask = bidirectional_mask\n        try:\n            outputs = call_og_forward()\n        except:\n            self.model.decoder.bidirectional_mask = None\n            raise\n        self.model.decoder.bidirectional_mask = None\n        return outputs\n\n    def generate(self: OPTForCausalLM, *args: tuple, **kwargs: Dict[str, Any]):\n        \"\"\"Wraps original generate to enable PrefixLM-style attention.\"\"\"\n        self.model.decoder.bidirectional_mask = \"g\"\n        try:\n            output = self._original_generate(*args, **kwargs)\n        except:\n            self.model.decoder.bidirectional_mask = None\n            raise\n        self.model.decoder.bidirectional_mask = None\n        return output\n\n    setattr(model, \"forward\", MethodType(forward, model))\n    setattr(model, \"generate\", MethodType(generate, model))\n    setattr(model, \"_prefix_lm_converted\", True)\n    return model\n\n\n_SUPPORTED_HF_MODELS = _SUPPORTED_GPT_MODELS + (BloomForCausalLM, OPTForCausalLM)\nCAUSAL_LM_TYPES = Union[\n    GPT2LMHeadModel,\n    GPTJForCausalLM,\n    GPTNeoForCausalLM,\n    GPTNeoXForCausalLM,\n    BloomForCausalLM,\n    OPTForCausalLM,\n]\n\n\ndef convert_hf_causal_lm_to_prefix_lm(model: CAUSAL_LM_TYPES) -> CAUSAL_LM_TYPES:\n    \"\"\"Converts a HuggingFace Causal LM to a Prefix LM.\n\n    Supported HuggingFace model classes:\n        - `GPT2LMHeadModel`\n        - `GPTNeoForCausalLM`\n        - `GPTNeoXForCausalLM`\n        - `GPTJForCausalLM`\n        - `BloomForCausalLM`\n        - `OPTForCausalLM`\n\n    Conversion to a Prefix LM is done by modifying the `forward` method, and possibly also the\n    `generate` method and/or select underlying methods depending on the model class.\n\n    These changes preserve the model API, but add a new input to `forward`: \"bidirectional_mask\".\n\n    Notes on training:\n        To actually train the converted model as a Prefix LM, training batches will need to indicate\n        the prefix/target structure by including `bidirectional_mask` as part of the batch inputs.\n\n        **This is not a standard input and requires custom layers either within or after your dataloader.**\n\n        In addition to adding `bidirectional_mask` to the batch, this custom code should modify `labels`\n        such that `batch['labels'][batch['bidirectional_mask'] == 1] == -100`.\n        That is, the prefix portion of the sequence should not generate any loss. Loss should only be\n        generated by the target portion of the sequence.\n\n    Notes on `GPTNeoForCausalLM`:\n        To simplify the implementation, \"global\" and \"local\" attention layers are handled differently.\n        For \"global\" layers, we handle conversion as described above. For \"local\" layers, which use a\n        causal attention mask within a restricted local window, we do not alter the masking.\n\n    Notes on `forward` method conversion:\n        After conversion, the `forward` method will handle a new input, `bidirectional_mask`,\n        which should be a [batch_size, seq_length] byte tensor, where 1 indicates token positions\n        belonging to the prefix (prefix tokens can attend to one another bidirectionally), and\n        0 indicates token positions belonging to the target.\n\n        The new `forward` method will incorporate `bidirectional_mask` (if supplied) into the existing\n        causal mask, call the original `forward` method, and (if the causal mask is a buffer) reset\n        the causal masks before returning the result.\n\n    Notes on `generate` method conversion:\n        After conversion, the `generate` method will have the same signature but will internally\n        convert all causal masks to be purely bidirectional, call the original `generate` method, and\n        (where appropriate) reset the causal masks before returning the result.\n\n        This works thanks to the logic of the HuggingFace `generate` API, which first encodes the token\n        \"prompt\" passed to `generate` (which is treated as the prefix) and then sequentially generates\n        each new token. Encodings are cached as generation happens, so all prefix tokens can attend to one\n        another (as expected in a Prefix LM) and generated tokens can only attend to prefix tokens and\n        previously-generated tokens (also as expected in a Prefix LM).\n\n    To preserve the API, the original methods are renamed to `_original_forward` and\n    `_original_generate`, and replaced with new `forward` and `generate` methods that wrap\n    them, respectively. Although implementation details vary by model class.\n    \"\"\"\n    if isinstance(model, _SUPPORTED_GPT_MODELS):\n        return _convert_gpt_causal_lm_to_prefix_lm(model)\n    elif isinstance(model, BloomForCausalLM):\n        return _convert_bloom_causal_lm_to_prefix_lm(model)\n    elif isinstance(model, OPTForCausalLM):\n        return _convert_opt_causal_lm_to_prefix_lm(model)\n    else:\n        raise TypeError(\n            f\"Cannot convert model to Prefix LM. \"\n            + f\"Model does not belong to set of supported HF models:\"\n            + f\"\\n{_SUPPORTED_HF_MODELS}\"\n        )\n\n\ndef add_bidirectional_mask_if_missing(batch: Dict[str, Any]):\n    \"\"\"Attempts to add bidirectional_mask to batch if missing.\n\n    Raises:\n        KeyError if bidirectional_mask is missing and can't be inferred\n    \"\"\"\n    if \"bidirectional_mask\" not in batch:\n        if batch.get(\"mode\", None) == \"icl_task\":\n            batch[\"bidirectional_mask\"] = batch[\"attention_mask\"].clone()\n            for i, continuation_indices in enumerate(batch[\"continuation_indices\"]):\n                batch[\"bidirectional_mask\"][i, continuation_indices] = 0\n        elif \"labels\" in batch and \"attention_mask\" in batch:\n            batch[\"bidirectional_mask\"] = torch.logical_and(\n                torch.eq(batch[\"attention_mask\"], 1), torch.eq(batch[\"labels\"], -100)\n            ).type_as(batch[\"attention_mask\"])\n        else:\n            raise KeyError(\n                \"No bidirectional_mask in batch and not sure how to construct one.\"\n            )\n"
  },
  {
    "path": "model/llava/model/language_model/mpt/meta_init_context.py",
    "content": "from contextlib import contextmanager\n\nimport torch\nimport torch.nn as nn\n\n\n@contextmanager\ndef init_empty_weights(include_buffers: bool = False):\n    \"\"\"Meta initialization context manager.\n\n    A context manager under which models are initialized with all parameters\n    on the meta device, therefore creating an empty model. Useful when just\n    initializing the model would blow the available RAM.\n\n    Args:\n        include_buffers (`bool`, *optional*, defaults to `False`): Whether or\n            not to also put all buffers on the meta device while initializing.\n\n    Example:\n    ```python\n    import torch.nn as nn\n\n    # Initialize a model with 100 billions parameters in no time and without using any RAM.\n    with init_empty_weights():\n        tst = nn.Sequential(*[nn.Linear(10000, 10000) for _ in range(1000)])\n    ```\n\n    <Tip warning={true}>\n\n    Any model created under this context manager has no weights. As such you can't do something like\n    `model.to(some_device)` with it. To load weights inside your empty model, see [`load_checkpoint_and_dispatch`].\n\n    </Tip>\n    \"\"\"\n    with init_on_device(torch.device(\"meta\"), include_buffers=include_buffers) as f:\n        yield f\n\n\n@contextmanager\ndef init_on_device(device: torch.device, include_buffers: bool = False):\n    \"\"\"Device initialization context manager.\n\n    A context manager under which models are initialized with all parameters\n    on the specified device.\n\n    Args:\n        device (`torch.device`): Device to initialize all parameters on.\n        include_buffers (`bool`, *optional*, defaults to `False`): Whether or\n            not to also put all buffers on the meta device while initializing.\n\n    Example:\n    ```python\n    import torch.nn as nn\n\n    with init_on_device(device=torch.device(\"cuda\")):\n        tst = nn.Liner(100, 100)  # on `cuda` device\n    ```\n    \"\"\"\n    old_register_parameter = nn.Module.register_parameter\n    if include_buffers:\n        old_register_buffer = nn.Module.register_buffer\n\n    def register_empty_parameter(module, name, param):\n        old_register_parameter(module, name, param)\n        if param is not None:\n            param_cls = type(module._parameters[name])\n            kwargs = module._parameters[name].__dict__\n            module._parameters[name] = param_cls(\n                module._parameters[name].to(device), **kwargs\n            )\n\n    def register_empty_buffer(module, name, buffer):\n        old_register_buffer(module, name, buffer)\n        if buffer is not None:\n            module._buffers[name] = module._buffers[name].to(device)\n\n    if include_buffers:\n        tensor_constructors_to_patch = {\n            torch_function_name: getattr(torch, torch_function_name)\n            for torch_function_name in [\"empty\", \"zeros\", \"ones\", \"full\"]\n        }\n    else:\n        tensor_constructors_to_patch = {}\n\n    def patch_tensor_constructor(fn):\n        def wrapper(*args, **kwargs):\n            kwargs[\"device\"] = device\n            return fn(*args, **kwargs)\n\n        return wrapper\n\n    try:\n        nn.Module.register_parameter = register_empty_parameter\n        if include_buffers:\n            nn.Module.register_buffer = register_empty_buffer\n        for torch_function_name in tensor_constructors_to_patch.keys():\n            setattr(\n                torch,\n                torch_function_name,\n                patch_tensor_constructor(getattr(torch, torch_function_name)),\n            )\n        yield\n    finally:\n        nn.Module.register_parameter = old_register_parameter\n        if include_buffers:\n            nn.Module.register_buffer = old_register_buffer\n        for (\n            torch_function_name,\n            old_torch_function,\n        ) in tensor_constructors_to_patch.items():\n            setattr(torch, torch_function_name, old_torch_function)\n"
  },
  {
    "path": "model/llava/model/language_model/mpt/modeling_mpt.py",
    "content": "\"\"\"A simple, flexible implementation of a GPT model.\n\nInspired by https://github.com/karpathy/minGPT/blob/master/mingpt/model.py\n\"\"\"\nimport math\nimport warnings\nfrom typing import List, Optional, Tuple, Union\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nfrom transformers import (PreTrainedModel, PreTrainedTokenizer,\n                          PreTrainedTokenizerFast)\nfrom transformers.modeling_outputs import (BaseModelOutputWithPast,\n                                           CausalLMOutputWithPast)\n\nfrom .adapt_tokenizer import AutoTokenizerForMOD, adapt_tokenizer_for_denoising\nfrom .attention import attn_bias_shape, build_attn_bias\nfrom .blocks import MPTBlock\nfrom .configuration_mpt import MPTConfig\nfrom .custom_embedding import SharedEmbedding\nfrom .hf_prefixlm_converter import (add_bidirectional_mask_if_missing,\n                                    convert_hf_causal_lm_to_prefix_lm)\nfrom .meta_init_context import init_empty_weights\nfrom .norm import NORM_CLASS_REGISTRY\nfrom .param_init_fns import MODEL_INIT_REGISTRY, generic_param_init_fn_\n\ntry:\n    from .flash_attn_triton import flash_attn_func\nexcept:\n    pass\nTokenizer = Union[PreTrainedTokenizer, PreTrainedTokenizerFast]\n\n\nclass MPTPreTrainedModel(PreTrainedModel):\n    config_class = MPTConfig\n    base_model_prefix = \"model\"\n    _no_split_modules = [\"MPTBlock\"]\n\n\nclass MPTModel(MPTPreTrainedModel):\n    def __init__(self, config: MPTConfig):\n        config._validate_config()\n        super().__init__(config)\n        self.attn_impl = config.attn_config[\"attn_impl\"]\n        self.prefix_lm = config.attn_config[\"prefix_lm\"]\n        self.attn_uses_sequence_id = config.attn_config[\"attn_uses_sequence_id\"]\n        self.alibi = config.attn_config[\"alibi\"]\n        self.alibi_bias_max = config.attn_config[\"alibi_bias_max\"]\n        if config.init_device == \"mixed\":\n            if dist.get_local_rank() == 0:\n                config.init_device = \"cpu\"\n            else:\n                config.init_device = \"meta\"\n        if config.norm_type.lower() not in NORM_CLASS_REGISTRY.keys():\n            norm_options = \" | \".join(NORM_CLASS_REGISTRY.keys())\n            raise NotImplementedError(\n                f\"Requested norm type ({config.norm_type}) is not implemented within this repo (Options: {norm_options}).\"\n            )\n        norm_class = NORM_CLASS_REGISTRY[config.norm_type.lower()]\n        self.embedding_fraction = config.embedding_fraction\n        self.wte = SharedEmbedding(\n            config.vocab_size, config.d_model, device=config.init_device\n        )\n        if not self.alibi:\n            self.wpe = torch.nn.Embedding(\n                config.max_seq_len, config.d_model, device=config.init_device\n            )\n        self.emb_drop = nn.Dropout(config.emb_pdrop)\n        self.blocks = nn.ModuleList(\n            [\n                MPTBlock(device=config.init_device, **config.to_dict())\n                for _ in range(config.n_layers)\n            ]\n        )\n        self.norm_f = norm_class(config.d_model, device=config.init_device)\n        if config.init_device != \"meta\":\n            print(\n                f'You are using config.init_device={config.init_device!r}, but you can also use config.init_device=\"meta\" with Composer + FSDP for fast initialization.'\n            )\n            self.apply(self.param_init_fn)\n        self.is_causal = not self.prefix_lm\n        self._attn_bias_initialized = False\n        self.attn_bias = None\n        self.attn_bias_shape = attn_bias_shape(\n            self.attn_impl,\n            config.n_heads,\n            config.max_seq_len,\n            self.alibi,\n            prefix_lm=self.prefix_lm,\n            causal=self.is_causal,\n            use_sequence_id=self.attn_uses_sequence_id,\n        )\n        if config.no_bias:\n            for module in self.modules():\n                if hasattr(module, \"bias\") and isinstance(module.bias, nn.Parameter):\n                    if config.verbose:\n                        warnings.warn(f\"Removing bias ({module.bias}) from {module}.\")\n                    module.register_parameter(\"bias\", None)\n        if config.verbose and config.verbose > 2:\n            print(self)\n        if \"verbose\" not in self.config.init_config:\n            self.config.init_config[\"verbose\"] = self.config.verbose\n        if self.config.init_config[\"verbose\"] > 1:\n            init_fn_name = self.config.init_config[\"name\"]\n            warnings.warn(f\"Using {init_fn_name} initialization.\")\n        self.gradient_checkpointing = False\n\n    def get_input_embeddings(self):\n        return self.wte\n\n    def set_input_embeddings(self, value):\n        self.wte = value\n\n    @torch.no_grad()\n    def _attn_bias(\n        self,\n        device,\n        dtype,\n        attention_mask: Optional[torch.ByteTensor] = None,\n        prefix_mask: Optional[torch.ByteTensor] = None,\n        sequence_id: Optional[torch.LongTensor] = None,\n    ):\n        if not self._attn_bias_initialized:\n            if self.attn_bias_shape:\n                self.attn_bias = torch.zeros(\n                    self.attn_bias_shape, device=device, dtype=dtype\n                )\n                self.attn_bias = build_attn_bias(\n                    self.attn_impl,\n                    self.attn_bias,\n                    self.config.n_heads,\n                    self.config.max_seq_len,\n                    causal=self.is_causal,\n                    alibi=self.alibi,\n                    alibi_bias_max=self.alibi_bias_max,\n                )\n            self._attn_bias_initialized = True\n        if self.attn_impl == \"flash\":\n            return (self.attn_bias, attention_mask)\n        if self.attn_bias is not None:\n            self.attn_bias = self.attn_bias.to(dtype=dtype, device=device)\n        attn_bias = self.attn_bias\n        if self.prefix_lm:\n            assert isinstance(attn_bias, torch.Tensor)\n            assert isinstance(prefix_mask, torch.Tensor)\n            attn_bias = self._apply_prefix_mask(attn_bias, prefix_mask)\n        if self.attn_uses_sequence_id and sequence_id is not None:\n            assert isinstance(attn_bias, torch.Tensor)\n            attn_bias = self._apply_sequence_id(attn_bias, sequence_id)\n        if attention_mask is not None:\n            s_k = attention_mask.shape[-1]\n            if attn_bias is None:\n                attn_bias = torch.zeros((1, 1, 1, s_k), device=device, dtype=dtype)\n            else:\n                _s_k = max(0, attn_bias.size(-1) - s_k)\n                attn_bias = attn_bias[:, :, :, _s_k:]\n            if prefix_mask is not None and attention_mask.shape != prefix_mask.shape:\n                raise ValueError(\n                    f\"attention_mask shape={attention_mask.shape} \"\n                    + f\"and prefix_mask shape={prefix_mask.shape} are not equal.\"\n                )\n            min_val = torch.finfo(attn_bias.dtype).min\n            attn_bias = attn_bias.masked_fill(\n                ~attention_mask.view(-1, 1, 1, s_k), min_val\n            )\n        return (attn_bias, None)\n\n    def _apply_prefix_mask(self, attn_bias: torch.Tensor, prefix_mask: torch.Tensor):\n        (s_k, s_q) = attn_bias.shape[-2:]\n        if s_k != self.config.max_seq_len or s_q != self.config.max_seq_len:\n            raise ValueError(\n                \"attn_bias does not match the expected shape. \"\n                + f\"The last two dimensions should both be {self.config.max_length} \"\n                + f\"but are {s_k} and {s_q}.\"\n            )\n        seq_len = prefix_mask.shape[-1]\n        if seq_len > self.config.max_seq_len:\n            raise ValueError(\n                f\"prefix_mask sequence length cannot exceed max_seq_len={self.config.max_seq_len}\"\n            )\n        attn_bias = attn_bias[..., :seq_len, :seq_len]\n        causal = torch.tril(\n            torch.ones((seq_len, seq_len), dtype=torch.bool, device=prefix_mask.device)\n        ).view(1, 1, seq_len, seq_len)\n        prefix = prefix_mask.view(-1, 1, 1, seq_len)\n        cannot_attend = ~torch.logical_or(causal, prefix.bool())\n        min_val = torch.finfo(attn_bias.dtype).min\n        attn_bias = attn_bias.masked_fill(cannot_attend, min_val)\n        return attn_bias\n\n    def _apply_sequence_id(\n        self, attn_bias: torch.Tensor, sequence_id: torch.LongTensor\n    ):\n        seq_len = sequence_id.shape[-1]\n        if seq_len > self.config.max_seq_len:\n            raise ValueError(\n                f\"sequence_id sequence length cannot exceed max_seq_len={self.config.max_seq_len}\"\n            )\n        attn_bias = attn_bias[..., :seq_len, :seq_len]\n        cannot_attend = torch.logical_not(\n            torch.eq(sequence_id.view(-1, seq_len, 1), sequence_id.view(-1, 1, seq_len))\n        ).unsqueeze(1)\n        min_val = torch.finfo(attn_bias.dtype).min\n        attn_bias = attn_bias.masked_fill(cannot_attend, min_val)\n        return attn_bias\n\n    def forward(\n        self,\n        input_ids: torch.LongTensor,\n        past_key_values: Optional[List[Tuple[torch.FloatTensor]]] = None,\n        attention_mask: Optional[torch.ByteTensor] = None,\n        prefix_mask: Optional[torch.ByteTensor] = None,\n        sequence_id: Optional[torch.LongTensor] = None,\n        return_dict: Optional[bool] = None,\n        output_attentions: Optional[bool] = None,\n        output_hidden_states: Optional[bool] = None,\n        use_cache: Optional[bool] = None,\n        inputs_embeds: Optional[torch.Tensor] = None,\n    ):\n        return_dict = (\n            return_dict if return_dict is not None else self.config.return_dict\n        )\n        use_cache = use_cache if use_cache is not None else self.config.use_cache\n        if attention_mask is not None:\n            attention_mask = attention_mask.bool()\n        if prefix_mask is not None:\n            prefix_mask = prefix_mask.bool()\n        if not return_dict:\n            raise NotImplementedError(\n                \"return_dict False is not implemented yet for MPT\"\n            )\n        if output_attentions:\n            if self.attn_impl != \"torch\":\n                raise NotImplementedError(\n                    \"output_attentions is not implemented for MPT when using attn_impl `flash` or `triton`.\"\n                )\n        if (\n            attention_mask is not None\n            and attention_mask[:, 0].sum() != attention_mask.shape[0]\n            and self.training\n        ):\n            raise NotImplementedError(\n                \"MPT does not support training with left padding.\"\n            )\n        if self.prefix_lm and prefix_mask is None:\n            raise ValueError(\n                \"prefix_mask is a required argument when MPT is configured with prefix_lm=True.\"\n            )\n        if self.training:\n            if self.attn_uses_sequence_id and sequence_id is None:\n                raise ValueError(\n                    \"sequence_id is a required argument when MPT is configured with attn_uses_sequence_id=True \"\n                    + \"and the model is in train mode.\"\n                )\n            elif self.attn_uses_sequence_id is False and sequence_id is not None:\n                warnings.warn(\n                    \"MPT received non-None input for `sequence_id` but is configured with attn_uses_sequence_id=False. \"\n                    + \"This input will be ignored. If you want the model to use `sequence_id`, set attn_uses_sequence_id to True.\"\n                )\n        if input_ids is not None:\n            S = input_ids.size(1)\n            assert (\n                S <= self.config.max_seq_len\n            ), f\"Cannot forward input with seq_len={S}, this model only supports seq_len<={self.config.max_seq_len}\"\n            tok_emb = self.wte(input_ids)\n        else:\n            assert inputs_embeds is not None\n            assert (\n                self.alibi\n            ), \"inputs_embeds is not implemented for MPT unless for alibi.\"\n            S = inputs_embeds.size(1)\n            tok_emb = inputs_embeds\n        if self.alibi:\n            x = tok_emb\n        else:\n            past_position = 0\n            if past_key_values is not None:\n                if len(past_key_values) != self.config.n_layers:\n                    raise ValueError(\n                        f\"past_key_values must provide a past_key_value for each attention \"\n                        + f\"layer in the network (len(past_key_values)={len(past_key_values)!r}; self.config.n_layers={self.config.n_layers!r}).\"\n                    )\n                past_position = past_key_values[0][0].size(1)\n                if self.attn_impl == \"torch\":\n                    past_position = past_key_values[0][0].size(3)\n            if S + past_position > self.config.max_seq_len:\n                raise ValueError(\n                    f\"Cannot forward input with past sequence length {past_position} and current sequence length {S + 1}, this model only supports total sequence length <= {self.config.max_seq_len}.\"\n                )\n            pos = torch.arange(\n                past_position,\n                S + past_position,\n                dtype=torch.long,\n                device=input_ids.device,\n            ).unsqueeze(0)\n            if attention_mask is not None:\n                pos = torch.clamp(\n                    pos\n                    - torch.cumsum((~attention_mask).to(torch.int32), dim=1)[\n                        :, past_position:\n                    ],\n                    min=0,\n                )\n            pos_emb = self.wpe(pos)\n            x = tok_emb + pos_emb\n        if self.embedding_fraction == 1:\n            x = self.emb_drop(x)\n        else:\n            x_shrunk = x * self.embedding_fraction + x.detach() * (\n                1 - self.embedding_fraction\n            )\n            assert isinstance(self.emb_drop, nn.Module)\n            x = self.emb_drop(x_shrunk)\n        (attn_bias, attention_mask) = self._attn_bias(\n            device=x.device,\n            dtype=torch.float32,\n            attention_mask=attention_mask,\n            prefix_mask=prefix_mask,\n            sequence_id=sequence_id,\n        )\n        if use_cache and past_key_values is None:\n            past_key_values = [() for _ in range(self.config.n_layers)]\n        all_hidden_states = () if output_hidden_states else None\n        all_self_attns = () if output_attentions else None\n        for b_idx, block in enumerate(self.blocks):\n            if output_hidden_states:\n                assert all_hidden_states is not None\n                all_hidden_states = all_hidden_states + (x,)\n            past_key_value = (\n                past_key_values[b_idx] if past_key_values is not None else None\n            )\n            if self.gradient_checkpointing and self.training:\n                (x, attn_weights, past_key_value) = torch.utils.checkpoint.checkpoint(\n                    block, x, past_key_value, attn_bias, attention_mask, self.is_causal\n                )\n            else:\n                (x, attn_weights, past_key_value) = block(\n                    x,\n                    past_key_value=past_key_value,\n                    attn_bias=attn_bias,\n                    attention_mask=attention_mask,\n                    is_causal=self.is_causal,\n                )\n            if past_key_values is not None:\n                past_key_values[b_idx] = past_key_value\n            if output_attentions:\n                assert all_self_attns is not None\n                all_self_attns = all_self_attns + (attn_weights,)\n        x = self.norm_f(x)\n        if output_hidden_states:\n            assert all_hidden_states is not None\n            all_hidden_states = all_hidden_states + (x,)\n        return BaseModelOutputWithPast(\n            last_hidden_state=x,\n            past_key_values=past_key_values,\n            hidden_states=all_hidden_states,\n            attentions=all_self_attns,\n        )\n\n    def param_init_fn(self, module):\n        init_fn_name = self.config.init_config[\"name\"]\n        MODEL_INIT_REGISTRY[init_fn_name](\n            module=module,\n            n_layers=self.config.n_layers,\n            d_model=self.config.d_model,\n            **self.config.init_config,\n        )\n\n    def fsdp_wrap_fn(self, module):\n        return isinstance(module, MPTBlock)\n\n    def activation_checkpointing_fn(self, module):\n        return isinstance(module, MPTBlock)\n\n\nclass MPTForCausalLM(MPTPreTrainedModel):\n    def __init__(self, config: MPTConfig):\n        super().__init__(config)\n        if not config.tie_word_embeddings:\n            raise ValueError(\"MPTForCausalLM only supports tied word embeddings\")\n        print(f\"Instantiating an MPTForCausalLM model from {__file__}\")\n        self.transformer = MPTModel(config)\n        for child in self.transformer.children():\n            if isinstance(child, torch.nn.ModuleList):\n                continue\n            if isinstance(child, torch.nn.Module):\n                child._fsdp_wrap = True\n        self.logit_scale = None\n        if config.logit_scale is not None:\n            logit_scale = config.logit_scale\n            if isinstance(logit_scale, str):\n                if logit_scale == \"inv_sqrt_d_model\":\n                    logit_scale = 1 / math.sqrt(config.d_model)\n                else:\n                    raise ValueError(\n                        f\"logit_scale={logit_scale!r} is not recognized as an option; use numeric value or 'inv_sqrt_d_model'.\"\n                    )\n            self.logit_scale = logit_scale\n\n    def get_input_embeddings(self):\n        return self.transformer.wte\n\n    def set_input_embeddings(self, value):\n        self.transformer.wte = value\n\n    def get_output_embeddings(self):\n        return self.transformer.wte\n\n    def set_output_embeddings(self, new_embeddings):\n        self.transformer.wte = new_embeddings\n\n    def set_decoder(self, decoder):\n        self.transformer = decoder\n\n    def get_decoder(self):\n        return self.transformer\n\n    def forward(\n        self,\n        input_ids: torch.LongTensor,\n        past_key_values: Optional[List[Tuple[torch.FloatTensor]]] = None,\n        attention_mask: Optional[torch.ByteTensor] = None,\n        prefix_mask: Optional[torch.ByteTensor] = None,\n        sequence_id: Optional[torch.LongTensor] = None,\n        labels: Optional[torch.LongTensor] = None,\n        return_dict: Optional[bool] = None,\n        output_attentions: Optional[bool] = None,\n        output_hidden_states: Optional[bool] = None,\n        use_cache: Optional[bool] = None,\n        inputs_embeds: Optional[torch.FloatTensor] = None,\n    ):\n        return_dict = (\n            return_dict if return_dict is not None else self.config.return_dict\n        )\n        use_cache = use_cache if use_cache is not None else self.config.use_cache\n        if inputs_embeds is not None:\n            raise NotImplementedError(\n                \"inputs_embeds has to be None (for hf/peft support).\"\n            )\n        outputs = self.transformer(\n            input_ids=input_ids,\n            past_key_values=past_key_values,\n            attention_mask=attention_mask,\n            prefix_mask=prefix_mask,\n            sequence_id=sequence_id,\n            return_dict=return_dict,\n            output_attentions=output_attentions,\n            output_hidden_states=output_hidden_states,\n            use_cache=use_cache,\n        )\n        logits = self.transformer.wte(\n            outputs.last_hidden_state.to(self.transformer.wte.weight.device), True\n        )\n        if self.logit_scale is not None:\n            if self.logit_scale == 0:\n                warnings.warn(\n                    f\"Multiplying logits by self.logit_scale={self.logit_scale!r}. This will produce uniform (uninformative) outputs.\"\n                )\n            logits *= self.logit_scale\n        loss = None\n        if labels is not None:\n            labels = torch.roll(labels, shifts=-1)\n            labels[:, -1] = -100\n            loss = F.cross_entropy(\n                logits.view(-1, logits.size(-1)), labels.to(logits.device).view(-1)\n            )\n        return CausalLMOutputWithPast(\n            loss=loss,\n            logits=logits,\n            past_key_values=outputs.past_key_values,\n            hidden_states=outputs.hidden_states,\n            attentions=outputs.attentions,\n        )\n\n    def param_init_fn(self, module):\n        init_fn_name = self.config.init_config[\"name\"]\n        MODEL_INIT_REGISTRY[init_fn_name](\n            module=module,\n            n_layers=self.config.n_layers,\n            d_model=self.config.d_model,\n            **self.config.init_config,\n        )\n\n    def fsdp_wrap_fn(self, module):\n        return isinstance(module, MPTBlock)\n\n    def activation_checkpointing_fn(self, module):\n        return isinstance(module, MPTBlock)\n\n    def prepare_inputs_for_generation(\n        self, input_ids, past_key_values=None, inputs_embeds=None, **kwargs\n    ):\n        if inputs_embeds is not None:\n            raise NotImplementedError(\"inputs_embeds is not implemented for MPT yet\")\n        attention_mask = kwargs[\"attention_mask\"].bool()\n        if attention_mask[:, -1].sum() != attention_mask.shape[0]:\n            raise NotImplementedError(\n                \"MPT does not support generation with right padding.\"\n            )\n        if self.transformer.attn_uses_sequence_id and self.training:\n            sequence_id = torch.zeros_like(input_ids[:1])\n        else:\n            sequence_id = None\n        if past_key_values is not None:\n            input_ids = input_ids[:, -1].unsqueeze(-1)\n        if self.transformer.prefix_lm:\n            prefix_mask = torch.ones_like(attention_mask)\n            if kwargs.get(\"use_cache\") == False:\n                raise NotImplementedError(\n                    \"MPT with prefix_lm=True does not support use_cache=False.\"\n                )\n        else:\n            prefix_mask = None\n        return {\n            \"input_ids\": input_ids,\n            \"attention_mask\": attention_mask,\n            \"prefix_mask\": prefix_mask,\n            \"sequence_id\": sequence_id,\n            \"past_key_values\": past_key_values,\n            \"use_cache\": kwargs.get(\"use_cache\", True),\n        }\n\n    @staticmethod\n    def _reorder_cache(past_key_values, beam_idx):\n        \"\"\"Used by HuggingFace generate when using beam search with kv-caching.\n\n        See https://github.com/huggingface/transformers/blob/3ec7a47664ebe40c40f4b722f6bb1cd30c3821ec/src/transformers/models/gpt2/modeling_gpt2.py#L1122-L1133\n        for an example in transformers.\n        \"\"\"\n        reordered_past = []\n        for layer_past in past_key_values:\n            reordered_past += [\n                tuple(\n                    (past_state.index_select(0, beam_idx) for past_state in layer_past)\n                )\n            ]\n        return reordered_past\n"
  },
  {
    "path": "model/llava/model/language_model/mpt/norm.py",
    "content": "import torch\n\n\ndef _cast_if_autocast_enabled(tensor):\n    if torch.is_autocast_enabled():\n        if tensor.device.type == \"cuda\":\n            dtype = torch.get_autocast_gpu_dtype()\n        elif tensor.device.type == \"cpu\":\n            dtype = torch.get_autocast_cpu_dtype()\n        else:\n            raise NotImplementedError()\n        return tensor.to(dtype=dtype)\n    return tensor\n\n\nclass LPLayerNorm(torch.nn.LayerNorm):\n    def __init__(\n        self,\n        normalized_shape,\n        eps=1e-05,\n        elementwise_affine=True,\n        device=None,\n        dtype=None,\n    ):\n        super().__init__(\n            normalized_shape=normalized_shape,\n            eps=eps,\n            elementwise_affine=elementwise_affine,\n            device=device,\n            dtype=dtype,\n        )\n\n    def forward(self, x):\n        module_device = x.device\n        downcast_x = _cast_if_autocast_enabled(x)\n        downcast_weight = (\n            _cast_if_autocast_enabled(self.weight)\n            if self.weight is not None\n            else self.weight\n        )\n        downcast_bias = (\n            _cast_if_autocast_enabled(self.bias) if self.bias is not None else self.bias\n        )\n        with torch.autocast(enabled=False, device_type=module_device.type):\n            return torch.nn.functional.layer_norm(\n                downcast_x,\n                self.normalized_shape,\n                downcast_weight,\n                downcast_bias,\n                self.eps,\n            )\n\n\ndef rms_norm(x, weight=None, eps=1e-05):\n    output = x * torch.rsqrt(x.pow(2).mean(-1, keepdim=True) + eps)\n    if weight is not None:\n        return output * weight\n    return output\n\n\nclass RMSNorm(torch.nn.Module):\n    def __init__(\n        self, normalized_shape, eps=1e-05, weight=True, dtype=None, device=None\n    ):\n        super().__init__()\n        self.eps = eps\n        if weight:\n            self.weight = torch.nn.Parameter(\n                torch.ones(normalized_shape, dtype=dtype, device=device)\n            )\n        else:\n            self.register_parameter(\"weight\", None)\n\n    def forward(self, x):\n        return rms_norm(x.float(), self.weight, self.eps).to(dtype=x.dtype)\n\n\nclass LPRMSNorm(RMSNorm):\n    def __init__(\n        self, normalized_shape, eps=1e-05, weight=True, dtype=None, device=None\n    ):\n        super().__init__(\n            normalized_shape=normalized_shape,\n            eps=eps,\n            weight=weight,\n            dtype=dtype,\n            device=device,\n        )\n\n    def forward(self, x):\n        downcast_x = _cast_if_autocast_enabled(x)\n        downcast_weight = (\n            _cast_if_autocast_enabled(self.weight)\n            if self.weight is not None\n            else self.weight\n        )\n        with torch.autocast(enabled=False, device_type=x.device.type):\n            return rms_norm(downcast_x, downcast_weight, self.eps).to(dtype=x.dtype)\n\n\nNORM_CLASS_REGISTRY = {\n    \"layernorm\": torch.nn.LayerNorm,\n    \"low_precision_layernorm\": LPLayerNorm,\n    \"rmsnorm\": RMSNorm,\n    \"low_precision_rmsnorm\": LPRMSNorm,\n}\n"
  },
  {
    "path": "model/llava/model/language_model/mpt/param_init_fns.py",
    "content": "import math\nimport warnings\nfrom collections.abc import Sequence\nfrom functools import partial\nfrom typing import Optional, Tuple, Union\n\nimport torch\nfrom torch import nn\n\nfrom .norm import NORM_CLASS_REGISTRY\n\n\ndef torch_default_param_init_fn_(module: nn.Module, verbose: int = 0, **kwargs):\n    del kwargs\n    if verbose > 1:\n        warnings.warn(f\"Initializing network using module's reset_parameters attribute\")\n    if hasattr(module, \"reset_parameters\"):\n        module.reset_parameters()\n\n\ndef fused_init_helper_(module: nn.Module, init_fn_):\n    _fused = getattr(module, \"_fused\", None)\n    if _fused is None:\n        raise RuntimeError(f\"Internal logic error\")\n    (dim, splits) = _fused\n    splits = (0, *splits, module.weight.size(dim))\n    for s, e in zip(splits[:-1], splits[1:]):\n        slice_indices = [slice(None)] * module.weight.ndim\n        slice_indices[dim] = slice(s, e)\n        init_fn_(module.weight[slice_indices])\n\n\ndef generic_param_init_fn_(\n    module: nn.Module,\n    init_fn_,\n    n_layers: int,\n    d_model: Optional[int] = None,\n    init_div_is_residual: Union[int, float, str, bool] = True,\n    emb_init_std: Optional[float] = None,\n    emb_init_uniform_lim: Optional[Union[Tuple[float, float], float]] = None,\n    verbose: int = 0,\n    **kwargs,\n):\n    del kwargs\n    if verbose > 1:\n        warnings.warn(f\"If model has bias parameters they are initialized to 0.\")\n    init_div_is_residual = init_div_is_residual\n    if init_div_is_residual is False:\n        div_is_residual = 1.0\n    elif init_div_is_residual is True:\n        div_is_residual = math.sqrt(2 * n_layers)\n    elif isinstance(init_div_is_residual, float) or isinstance(\n        init_div_is_residual, int\n    ):\n        div_is_residual = init_div_is_residual\n    elif isinstance(init_div_is_residual, str) and init_div_is_residual.isnumeric():\n        div_is_residual = float(init_div_is_residual)\n    else:\n        div_is_residual = 1.0\n        raise ValueError(\n            f\"Expected init_div_is_residual to be boolean or numeric, got {init_div_is_residual}\"\n        )\n    if init_div_is_residual is not False:\n        if verbose > 1:\n            warnings.warn(\n                f\"Initializing _is_residual layers then dividing them by {div_is_residual:.3f}. \"\n                + f\"Set `init_div_is_residual: false` in init config to disable this.\"\n            )\n    if isinstance(module, nn.Linear):\n        if hasattr(module, \"_fused\"):\n            fused_init_helper_(module, init_fn_)\n        else:\n            init_fn_(module.weight)\n        if module.bias is not None:\n            torch.nn.init.zeros_(module.bias)\n        if init_div_is_residual is not False and getattr(module, \"_is_residual\", False):\n            with torch.no_grad():\n                module.weight.div_(div_is_residual)\n    elif isinstance(module, nn.Embedding):\n        if emb_init_std is not None:\n            std = emb_init_std\n            if std == 0:\n                warnings.warn(f\"Embedding layer initialized to 0.\")\n            emb_init_fn_ = partial(torch.nn.init.normal_, mean=0.0, std=std)\n            if verbose > 1:\n                warnings.warn(\n                    f\"Embedding layer initialized using normal distribution with mean=0 and std={std!r}.\"\n                )\n        elif emb_init_uniform_lim is not None:\n            lim = emb_init_uniform_lim\n            if isinstance(lim, Sequence):\n                if len(lim) > 2:\n                    raise ValueError(\n                        f\"Uniform init requires a min and a max limit. User input: {lim}.\"\n                    )\n                if lim[0] == lim[1]:\n                    warnings.warn(f\"Embedding layer initialized to {lim[0]}.\")\n            else:\n                if lim == 0:\n                    warnings.warn(f\"Embedding layer initialized to 0.\")\n                lim = [-lim, lim]\n            (a, b) = lim\n            emb_init_fn_ = partial(torch.nn.init.uniform_, a=a, b=b)\n            if verbose > 1:\n                warnings.warn(\n                    f\"Embedding layer initialized using uniform distribution in range {lim}.\"\n                )\n        else:\n            emb_init_fn_ = init_fn_\n        emb_init_fn_(module.weight)\n    elif isinstance(module, tuple(set(NORM_CLASS_REGISTRY.values()))):\n        if verbose > 1:\n            warnings.warn(\n                f\"Norm weights are set to 1. If norm layer has a bias it is initialized to 0.\"\n            )\n        if hasattr(module, \"weight\") and module.weight is not None:\n            torch.nn.init.ones_(module.weight)\n        if hasattr(module, \"bias\") and module.bias is not None:\n            torch.nn.init.zeros_(module.bias)\n    elif isinstance(module, nn.MultiheadAttention):\n        if module._qkv_same_embed_dim:\n            assert module.in_proj_weight is not None\n            assert (\n                module.q_proj_weight is None\n                and module.k_proj_weight is None\n                and (module.v_proj_weight is None)\n            )\n            assert d_model is not None\n            _d = d_model\n            splits = (0, _d, 2 * _d, 3 * _d)\n            for s, e in zip(splits[:-1], splits[1:]):\n                init_fn_(module.in_proj_weight[s:e])\n        else:\n            assert (\n                module.q_proj_weight is not None\n                and module.k_proj_weight is not None\n                and (module.v_proj_weight is not None)\n            )\n            assert module.in_proj_weight is None\n            init_fn_(module.q_proj_weight)\n            init_fn_(module.k_proj_weight)\n            init_fn_(module.v_proj_weight)\n        if module.in_proj_bias is not None:\n            torch.nn.init.zeros_(module.in_proj_bias)\n        if module.bias_k is not None:\n            torch.nn.init.zeros_(module.bias_k)\n        if module.bias_v is not None:\n            torch.nn.init.zeros_(module.bias_v)\n        init_fn_(module.out_proj.weight)\n        if init_div_is_residual is not False and getattr(\n            module.out_proj, \"_is_residual\", False\n        ):\n            with torch.no_grad():\n                module.out_proj.weight.div_(div_is_residual)\n        if module.out_proj.bias is not None:\n            torch.nn.init.zeros_(module.out_proj.bias)\n    else:\n        for _ in module.parameters(recurse=False):\n            raise NotImplementedError(\n                f\"{module.__class__.__name__} parameters are not initialized by param_init_fn.\"\n            )\n\n\ndef _normal_init_(std, mean=0.0):\n    return partial(torch.nn.init.normal_, mean=mean, std=std)\n\n\ndef _normal_param_init_fn_(\n    module: nn.Module,\n    std: float,\n    n_layers: int,\n    d_model: Optional[int] = None,\n    init_div_is_residual: Union[int, float, str, bool] = True,\n    emb_init_std: Optional[float] = None,\n    emb_init_uniform_lim: Optional[Union[Tuple[float, float], float]] = None,\n    verbose: int = 0,\n    **kwargs,\n):\n    del kwargs\n    init_fn_ = _normal_init_(std=std)\n    if verbose > 1:\n        warnings.warn(f\"Using torch.nn.init.normal_ init fn mean=0.0, std={std}\")\n    generic_param_init_fn_(\n        module=module,\n        init_fn_=init_fn_,\n        d_model=d_model,\n        n_layers=n_layers,\n        init_div_is_residual=init_div_is_residual,\n        emb_init_std=emb_init_std,\n        emb_init_uniform_lim=emb_init_uniform_lim,\n        verbose=verbose,\n    )\n\n\ndef baseline_param_init_fn_(\n    module: nn.Module,\n    init_std: float,\n    n_layers: int,\n    d_model: Optional[int] = None,\n    init_div_is_residual: Union[int, float, str, bool] = True,\n    emb_init_std: Optional[float] = None,\n    emb_init_uniform_lim: Optional[Union[Tuple[float, float], float]] = None,\n    verbose: int = 0,\n    **kwargs,\n):\n    del kwargs\n    if init_std is None:\n        raise ValueError(\n            \"You must set model.init_config['init_std'] to a float value to use the default initialization scheme.\"\n        )\n    _normal_param_init_fn_(\n        module=module,\n        std=init_std,\n        d_model=d_model,\n        n_layers=n_layers,\n        init_div_is_residual=init_div_is_residual,\n        emb_init_std=emb_init_std,\n        emb_init_uniform_lim=emb_init_uniform_lim,\n        verbose=verbose,\n    )\n\n\ndef small_param_init_fn_(\n    module: nn.Module,\n    n_layers: int,\n    d_model: int,\n    init_div_is_residual: Union[int, float, str, bool] = True,\n    emb_init_std: Optional[float] = None,\n    emb_init_uniform_lim: Optional[Union[Tuple[float, float], float]] = None,\n    verbose: int = 0,\n    **kwargs,\n):\n    del kwargs\n    std = math.sqrt(2 / (5 * d_model))\n    _normal_param_init_fn_(\n        module=module,\n        std=std,\n        d_model=d_model,\n        n_layers=n_layers,\n        init_div_is_residual=init_div_is_residual,\n        emb_init_std=emb_init_std,\n        emb_init_uniform_lim=emb_init_uniform_lim,\n        verbose=verbose,\n    )\n\n\ndef neox_param_init_fn_(\n    module: nn.Module,\n    n_layers: int,\n    d_model: int,\n    emb_init_std: Optional[float] = None,\n    emb_init_uniform_lim: Optional[Union[Tuple[float, float], float]] = None,\n    verbose: int = 0,\n    **kwargs,\n):\n    \"\"\"From section 2.3.1 of GPT-NeoX-20B:\n\n    An Open-Source AutoregressiveLanguage Model — Black et. al. (2022)\n    see https://github.com/EleutherAI/gpt-neox/blob/9610391ab319403cef079b438edd016a2443af54/megatron/model/init_functions.py#L151\n    and https://github.com/EleutherAI/gpt-neox/blob/main/megatron/model/transformer.py\n    \"\"\"\n    del kwargs\n    residual_div = n_layers / math.sqrt(10)\n    if verbose > 1:\n        warnings.warn(f\"setting init_div_is_residual to {residual_div}\")\n    small_param_init_fn_(\n        module=module,\n        d_model=d_model,\n        n_layers=n_layers,\n        init_div_is_residual=residual_div,\n        emb_init_std=emb_init_std,\n        emb_init_uniform_lim=emb_init_uniform_lim,\n        verbose=verbose,\n    )\n\n\ndef kaiming_uniform_param_init_fn_(\n    module: nn.Module,\n    n_layers: int,\n    d_model: Optional[int] = None,\n    init_div_is_residual: Union[int, float, str, bool] = True,\n    emb_init_std: Optional[float] = None,\n    emb_init_uniform_lim: Optional[Union[Tuple[float, float], float]] = None,\n    init_gain: float = 0,\n    fan_mode: str = \"fan_in\",\n    init_nonlinearity: str = \"leaky_relu\",\n    verbose: int = 0,\n    **kwargs,\n):\n    del kwargs\n    if verbose > 1:\n        warnings.warn(\n            f\"Using nn.init.kaiming_uniform_ init fn with parameters: \"\n            + f\"a={init_gain}, mode={fan_mode}, nonlinearity={init_nonlinearity}\"\n        )\n    kaiming_uniform_ = partial(\n        nn.init.kaiming_uniform_,\n        a=init_gain,\n        mode=fan_mode,\n        nonlinearity=init_nonlinearity,\n    )\n    generic_param_init_fn_(\n        module=module,\n        init_fn_=kaiming_uniform_,\n        d_model=d_model,\n        n_layers=n_layers,\n        init_div_is_residual=init_div_is_residual,\n        emb_init_std=emb_init_std,\n        emb_init_uniform_lim=emb_init_uniform_lim,\n        verbose=verbose,\n    )\n\n\ndef kaiming_normal_param_init_fn_(\n    module: nn.Module,\n    n_layers: int,\n    d_model: Optional[int] = None,\n    init_div_is_residual: Union[int, float, str, bool] = True,\n    emb_init_std: Optional[float] = None,\n    emb_init_uniform_lim: Optional[Union[Tuple[float, float], float]] = None,\n    init_gain: float = 0,\n    fan_mode: str = \"fan_in\",\n    init_nonlinearity: str = \"leaky_relu\",\n    verbose: int = 0,\n    **kwargs,\n):\n    del kwargs\n    if verbose > 1:\n        warnings.warn(\n            f\"Using nn.init.kaiming_normal_ init fn with parameters: \"\n            + f\"a={init_gain}, mode={fan_mode}, nonlinearity={init_nonlinearity}\"\n        )\n    kaiming_normal_ = partial(\n        torch.nn.init.kaiming_normal_,\n        a=init_gain,\n        mode=fan_mode,\n        nonlinearity=init_nonlinearity,\n    )\n    generic_param_init_fn_(\n        module=module,\n        init_fn_=kaiming_normal_,\n        d_model=d_model,\n        n_layers=n_layers,\n        init_div_is_residual=init_div_is_residual,\n        emb_init_std=emb_init_std,\n        emb_init_uniform_lim=emb_init_uniform_lim,\n        verbose=verbose,\n    )\n\n\ndef xavier_uniform_param_init_fn_(\n    module: nn.Module,\n    n_layers: int,\n    d_model: Optional[int] = None,\n    init_div_is_residual: Union[int, float, str, bool] = True,\n    emb_init_std: Optional[float] = None,\n    emb_init_uniform_lim: Optional[Union[Tuple[float, float], float]] = None,\n    init_gain: float = 0,\n    verbose: int = 0,\n    **kwargs,\n):\n    del kwargs\n    xavier_uniform_ = partial(torch.nn.init.xavier_uniform_, gain=init_gain)\n    if verbose > 1:\n        warnings.warn(\n            f\"Using torch.nn.init.xavier_uniform_ init fn with parameters: \"\n            + f\"gain={init_gain}\"\n        )\n    generic_param_init_fn_(\n        module=module,\n        init_fn_=xavier_uniform_,\n        d_model=d_model,\n        n_layers=n_layers,\n        init_div_is_residual=init_div_is_residual,\n        emb_init_std=emb_init_std,\n        emb_init_uniform_lim=emb_init_uniform_lim,\n        verbose=verbose,\n    )\n\n\ndef xavier_normal_param_init_fn_(\n    module: nn.Module,\n    n_layers: int,\n    d_model: Optional[int] = None,\n    init_div_is_residual: Union[int, float, str, bool] = True,\n    emb_init_std: Optional[float] = None,\n    emb_init_uniform_lim: Optional[Union[Tuple[float, float], float]] = None,\n    init_gain: float = 0,\n    verbose: int = 0,\n    **kwargs,\n):\n    xavier_normal_ = partial(torch.nn.init.xavier_normal_, gain=init_gain)\n    if verbose > 1:\n        warnings.warn(\n            f\"Using torch.nn.init.xavier_normal_ init fn with parameters: \"\n            + f\"gain={init_gain}\"\n        )\n    generic_param_init_fn_(\n        module=module,\n        init_fn_=xavier_normal_,\n        d_model=d_model,\n        n_layers=n_layers,\n        init_div_is_residual=init_div_is_residual,\n        emb_init_std=emb_init_std,\n        emb_init_uniform_lim=emb_init_uniform_lim,\n        verbose=verbose,\n    )\n\n\nMODEL_INIT_REGISTRY = {\n    \"default_\": torch_default_param_init_fn_,\n    \"baseline_\": baseline_param_init_fn_,\n    \"kaiming_uniform_\": kaiming_uniform_param_init_fn_,\n    \"kaiming_normal_\": kaiming_normal_param_init_fn_,\n    \"neox_init_\": neox_param_init_fn_,\n    \"small_init_\": small_param_init_fn_,\n    \"xavier_uniform_\": xavier_uniform_param_init_fn_,\n    \"xavier_normal_\": xavier_normal_param_init_fn_,\n}\n"
  },
  {
    "path": "model/llava/model/llava_arch.py",
    "content": "#    Copyright 2023 Haotian Liu\n#\n#    Licensed under the Apache License, Version 2.0 (the \"License\");\n#    you may not use this file except in compliance with the License.\n#    You may obtain a copy of the License at\n#\n#        http://www.apache.org/licenses/LICENSE-2.0\n#\n#    Unless required by applicable law or agreed to in writing, software\n#    distributed under the License is distributed on an \"AS IS\" BASIS,\n#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#    See the License for the specific language governing permissions and\n#    limitations under the License.\n\n\nfrom abc import ABC, abstractmethod\n\nimport torch\nimport torch.nn as nn\n\n# from llava.constants import IGNORE_INDEX, IMAGE_TOKEN_INDEX, DEFAULT_IMAGE_PATCH_TOKEN, DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN\nfrom utils.utils import (DEFAULT_IM_END_TOKEN, DEFAULT_IM_START_TOKEN,\n                         DEFAULT_IMAGE_PATCH_TOKEN, IGNORE_INDEX,\n                         IMAGE_TOKEN_INDEX)\n\nfrom .multimodal_encoder.builder import build_vision_tower\n\n\nclass LlavaMetaModel:\n    def __init__(self, config):\n        super(LlavaMetaModel, self).__init__(config)\n\n        if hasattr(config, \"mm_vision_tower\"):\n            self.vision_tower = build_vision_tower(config, delay_load=True)\n            self.mm_projector = nn.Linear(config.mm_hidden_size, config.hidden_size)\n\n    def get_vision_tower(self):\n        vision_tower = getattr(self, \"vision_tower\", None)\n        if type(vision_tower) is list:\n            vision_tower = vision_tower[0]\n        return vision_tower\n\n    def initialize_vision_modules(self, model_args, fsdp=None):\n        vision_tower = model_args.vision_tower\n        mm_vision_select_layer = model_args.mm_vision_select_layer\n        mm_vision_select_feature = model_args.mm_vision_select_feature\n        pretrain_mm_mlp_adapter = model_args.pretrain_mm_mlp_adapter\n\n        self.config.mm_vision_tower = vision_tower\n\n        vision_tower = build_vision_tower(model_args)\n\n        if fsdp is not None and len(fsdp) > 0:\n            self.vision_tower = [vision_tower]\n        else:\n            self.vision_tower = vision_tower\n\n        self.config.use_mm_proj = True\n        self.config.mm_hidden_size = vision_tower.hidden_size\n        self.config.mm_vision_select_layer = mm_vision_select_layer\n        self.config.mm_vision_select_feature = mm_vision_select_feature\n\n        if not hasattr(self, \"mm_projector\"):\n            self.mm_projector = nn.Linear(\n                self.config.mm_hidden_size, self.config.hidden_size\n            )\n\n        if pretrain_mm_mlp_adapter is not None:\n            mm_projector_weights = torch.load(\n                pretrain_mm_mlp_adapter, map_location=\"cpu\"\n            )\n\n            def get_w(weights, keyword):\n                return {\n                    k.split(keyword + \".\")[1]: v\n                    for k, v in weights.items()\n                    if keyword in k\n                }\n\n            self.mm_projector.load_state_dict(\n                get_w(mm_projector_weights, \"mm_projector\")\n            )\n\n\nclass LlavaMetaForCausalLM(ABC):\n    @abstractmethod\n    def get_model(self):\n        pass\n\n    def get_vision_tower(self):\n        return self.get_model().get_vision_tower()\n\n    def encode_images(self, images):\n        image_features = self.get_model().get_vision_tower()(images)\n        image_features = self.get_model().mm_projector(image_features)\n        return image_features\n\n    def prepare_inputs_labels_for_multimodal(\n        self, input_ids, attention_mask, past_key_values, labels, images\n    ):\n        vision_tower = self.get_vision_tower()\n        if vision_tower is None or images is None or input_ids.shape[1] == 1:\n            if (\n                past_key_values is not None\n                and vision_tower is not None\n                and images is not None\n                and input_ids.shape[1] == 1\n            ):\n                attention_mask = torch.ones(\n                    (attention_mask.shape[0], past_key_values[-1][-1].shape[-2] + 1),\n                    dtype=attention_mask.dtype,\n                    device=attention_mask.device,\n                )\n            return input_ids, attention_mask, past_key_values, None, labels\n\n        if type(images) is list or images.ndim == 5:\n            concat_images = torch.cat([image for image in images], dim=0)\n            image_features = self.encode_images(concat_images)\n            split_sizes = [image.shape[0] for image in images]\n            image_features = torch.split(image_features, split_sizes, dim=0)\n            image_features = [x.flatten(0, 1) for x in image_features]\n        else:\n            image_features = self.encode_images(images)\n\n        new_input_embeds = []\n        new_labels = [] if labels is not None else None\n        cur_image_idx = 0\n        for batch_idx, cur_input_ids in enumerate(input_ids):\n            if (cur_input_ids == IMAGE_TOKEN_INDEX).sum() == 0:\n                # multimodal LLM, but the current sample is not multimodal\n                cur_input_embeds = self.get_model().embed_tokens(cur_input_ids)\n                cur_input_embeds = (\n                    cur_input_embeds\n                    + (\n                        0.0 * self.get_model().mm_projector(vision_tower.dummy_feature)\n                    ).sum()\n                )\n                new_input_embeds.append(cur_input_embeds)\n                if labels is not None:\n                    new_labels.append(labels[batch_idx])\n                cur_image_idx += 1\n                continue\n            image_token_indices = torch.where(cur_input_ids == IMAGE_TOKEN_INDEX)[0]\n            cur_new_input_embeds = []\n            if labels is not None:\n                cur_labels = labels[batch_idx]\n                cur_new_labels = []\n                assert cur_labels.shape == cur_input_ids.shape\n            while image_token_indices.numel() > 0:\n                cur_image_features = image_features[cur_image_idx]\n                image_token_start = image_token_indices[0]\n                if getattr(self.config, \"tune_mm_mlp_adapter\", False) and getattr(\n                    self.config, \"mm_use_im_start_end\", False\n                ):\n                    cur_new_input_embeds.append(\n                        self.get_model()\n                        .embed_tokens(cur_input_ids[: image_token_start - 1])\n                        .detach()\n                    )\n                    cur_new_input_embeds.append(\n                        self.get_model().embed_tokens(\n                            cur_input_ids[image_token_start - 1 : image_token_start]\n                        )\n                    )\n                    cur_new_input_embeds.append(cur_image_features)\n                    cur_new_input_embeds.append(\n                        self.get_model().embed_tokens(\n                            cur_input_ids[image_token_start + 1 : image_token_start + 2]\n                        )\n                    )\n                    if labels is not None:\n                        cur_new_labels.append(cur_labels[:image_token_start])\n                        cur_new_labels.append(\n                            torch.full(\n                                (cur_image_features.shape[0],),\n                                IGNORE_INDEX,\n                                device=labels.device,\n                                dtype=labels.dtype,\n                            )\n                        )\n                        cur_new_labels.append(\n                            cur_labels[image_token_start : image_token_start + 1]\n                        )\n                        cur_labels = cur_labels[image_token_start + 2 :]\n                elif getattr(self.config, \"mm_use_im_start_end\", False):\n                    cur_new_input_embeds.append(\n                        self.get_model().embed_tokens(cur_input_ids[:image_token_start])\n                    )\n                    cur_new_input_embeds.append(cur_image_features)\n                    cur_new_input_embeds.append(\n                        self.get_model().embed_tokens(\n                            cur_input_ids[image_token_start + 1 : image_token_start + 2]\n                        )\n                    )\n                    if labels is not None:\n                        cur_new_labels.append(cur_labels[:image_token_start])\n                        cur_new_labels.append(\n                            torch.full(\n                                (cur_image_features.shape[0],),\n                                IGNORE_INDEX,\n                                device=labels.device,\n                                dtype=labels.dtype,\n                            )\n                        )\n                        cur_new_labels.append(\n                            cur_labels[image_token_start + 1 : image_token_start + 2]\n                        )\n                        cur_labels = cur_labels[image_token_start + 2 :]\n                else:\n                    cur_new_input_embeds.append(\n                        self.get_model().embed_tokens(cur_input_ids[:image_token_start])\n                    )\n                    cur_new_input_embeds.append(cur_image_features)\n                    if labels is not None:\n                        cur_new_labels.append(cur_labels[:image_token_start])\n                        cur_new_labels.append(\n                            torch.full(\n                                (cur_image_features.shape[0],),\n                                IGNORE_INDEX,\n                                device=labels.device,\n                                dtype=labels.dtype,\n                            )\n                        )\n                        cur_labels = cur_labels[image_token_start + 1 :]\n                cur_image_idx += 1\n                if getattr(self.config, \"tune_mm_mlp_adapter\", False) and getattr(\n                    self.config, \"mm_use_im_start_end\", False\n                ):\n                    cur_input_ids = cur_input_ids[image_token_start + 2 :]\n                elif getattr(self.config, \"mm_use_im_start_end\", False):\n                    cur_input_ids = cur_input_ids[image_token_start + 2 :]\n                else:\n                    cur_input_ids = cur_input_ids[image_token_start + 1 :]\n                image_token_indices = torch.where(cur_input_ids == IMAGE_TOKEN_INDEX)[0]\n            if cur_input_ids.numel() > 0:\n                if getattr(self.config, \"tune_mm_mlp_adapter\", False) and getattr(\n                    self.config, \"mm_use_im_start_end\", False\n                ):\n                    cur_new_input_embeds.append(\n                        self.get_model().embed_tokens(cur_input_ids).detach()\n                    )\n                elif getattr(self.config, \"mm_use_im_start_end\", False):\n                    cur_new_input_embeds.append(\n                        self.get_model().embed_tokens(cur_input_ids)\n                    )\n                else:\n                    cur_new_input_embeds.append(\n                        self.get_model().embed_tokens(cur_input_ids)\n                    )\n                if labels is not None:\n                    cur_new_labels.append(cur_labels)\n            cur_new_input_embeds = [\n                x.to(device=self.device) for x in cur_new_input_embeds\n            ]\n            cur_new_input_embeds = torch.cat(cur_new_input_embeds, dim=0)\n            new_input_embeds.append(cur_new_input_embeds)\n            if labels is not None:\n                cur_new_labels = torch.cat(cur_new_labels, dim=0)\n                new_labels.append(cur_new_labels)\n\n        if any(x.shape != new_input_embeds[0].shape for x in new_input_embeds):\n            max_len = max(x.shape[0] for x in new_input_embeds)\n\n            new_input_embeds_align = []\n            for cur_new_embed in new_input_embeds:\n                cur_new_embed = torch.cat(\n                    (\n                        cur_new_embed,\n                        torch.zeros(\n                            (max_len - cur_new_embed.shape[0], cur_new_embed.shape[1]),\n                            dtype=cur_new_embed.dtype,\n                            device=cur_new_embed.device,\n                        ),\n                    ),\n                    dim=0,\n                )\n                new_input_embeds_align.append(cur_new_embed)\n            new_input_embeds = torch.stack(new_input_embeds_align, dim=0)\n\n            if labels is not None:\n                new_labels_align = []\n                _new_labels = new_labels\n                for cur_new_label in new_labels:\n                    cur_new_label = torch.cat(\n                        (\n                            cur_new_label,\n                            torch.full(\n                                (max_len - cur_new_label.shape[0],),\n                                IGNORE_INDEX,\n                                dtype=cur_new_label.dtype,\n                                device=cur_new_label.device,\n                            ),\n                        ),\n                        dim=0,\n                    )\n                    new_labels_align.append(cur_new_label)\n                new_labels = torch.stack(new_labels_align, dim=0)\n\n            if attention_mask is not None:\n                new_attention_mask = []\n                for cur_attention_mask, cur_new_labels, cur_new_labels_align in zip(\n                    attention_mask, _new_labels, new_labels\n                ):\n                    new_attn_mask_pad_left = torch.full(\n                        (cur_new_labels.shape[0] - labels.shape[1],),\n                        True,\n                        dtype=attention_mask.dtype,\n                        device=attention_mask.device,\n                    )\n                    new_attn_mask_pad_right = torch.full(\n                        (cur_new_labels_align.shape[0] - cur_new_labels.shape[0],),\n                        False,\n                        dtype=attention_mask.dtype,\n                        device=attention_mask.device,\n                    )\n                    cur_new_attention_mask = torch.cat(\n                        (\n                            new_attn_mask_pad_left,\n                            cur_attention_mask,\n                            new_attn_mask_pad_right,\n                        ),\n                        dim=0,\n                    )\n                    new_attention_mask.append(cur_new_attention_mask)\n                attention_mask = torch.stack(new_attention_mask, dim=0)\n                assert attention_mask.shape == new_labels.shape\n        else:\n            new_input_embeds = torch.stack(new_input_embeds, dim=0)\n            if labels is not None:\n                new_labels = torch.stack(new_labels, dim=0)\n\n            if attention_mask is not None:\n                new_attn_mask_pad_left = torch.full(\n                    (\n                        attention_mask.shape[0],\n                        new_input_embeds.shape[1] - input_ids.shape[1],\n                    ),\n                    True,\n                    dtype=attention_mask.dtype,\n                    device=attention_mask.device,\n                )\n                attention_mask = torch.cat(\n                    (new_attn_mask_pad_left, attention_mask), dim=1\n                )\n                assert attention_mask.shape == new_input_embeds.shape[:2]\n\n        return None, attention_mask, past_key_values, new_input_embeds, new_labels\n\n    # def initialize_vision_tokenizer(self, model_args, tokenizer):\n    def initialize_vision_tokenizer(self, model_args, num_new_tokens):\n        # if model_args.mm_use_im_patch_token:\n        #     tokenizer.add_tokens([DEFAULT_IMAGE_PATCH_TOKEN], special_tokens=True)\n        #     self.resize_token_embeddings(len(tokenizer))\n\n        if model_args.mm_use_im_start_end:\n            # num_new_tokens = tokenizer.add_tokens([DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN], special_tokens=True)\n            # self.resize_token_embeddings(len(tokenizer))\n\n            # if num_new_tokens > 0:\n            #     input_embeddings = self.get_input_embeddings().weight.data\n            #     output_embeddings = self.get_output_embeddings().weight.data\n\n            #     input_embeddings_avg = input_embeddings[:-num_new_tokens].mean(\n            #         dim=0, keepdim=True)\n            #     output_embeddings_avg = output_embeddings[:-num_new_tokens].mean(\n            #         dim=0, keepdim=True)\n\n            #     input_embeddings[-num_new_tokens:] = input_embeddings_avg\n            #     output_embeddings[-num_new_tokens:] = output_embeddings_avg\n\n            if model_args.tune_mm_mlp_adapter:\n                for p in self.get_input_embeddings().parameters():\n                    p.requires_grad = True\n                for p in self.get_output_embeddings().parameters():\n                    p.requires_grad = False\n\n            if model_args.pretrain_mm_mlp_adapter:\n                mm_projector_weights = torch.load(\n                    model_args.pretrain_mm_mlp_adapter, map_location=\"cpu\"\n                )\n                embed_tokens_weight = mm_projector_weights[\"model.embed_tokens.weight\"]\n                assert num_new_tokens == 2\n                if input_embeddings.shape == embed_tokens_weight.shape:\n                    input_embeddings[-num_new_tokens:] = embed_tokens_weight[\n                        -num_new_tokens:\n                    ]\n                elif embed_tokens_weight.shape[0] == num_new_tokens:\n                    input_embeddings[-num_new_tokens:] = embed_tokens_weight\n                else:\n                    raise ValueError(\n                        f\"Unexpected embed_tokens_weight shape. Pretrained: {embed_tokens_weight.shape}. Current: {input_embeddings.shape}. Numer of new tokens: {num_new_tokens}.\"\n                    )\n        elif model_args.mm_use_im_patch_token:\n            if model_args.tune_mm_mlp_adapter:\n                for p in self.get_input_embeddings().parameters():\n                    p.requires_grad = False\n                for p in self.get_output_embeddings().parameters():\n                    p.requires_grad = False\n"
  },
  {
    "path": "model/llava/model/make_delta.py",
    "content": "\"\"\"\nUsage:\npython3 -m llava.model.make_delta --base ~/model_weights/llama-7b --target ~/model_weights/llava-7b --delta ~/model_weights/llava-7b-delta --hub-repo-id liuhaotian/llava-7b-delta\n\"\"\"\nimport argparse\n\nimport torch\nfrom llava.model.utils import auto_upgrade\nfrom tqdm import tqdm\nfrom transformers import AutoModelForCausalLM, AutoTokenizer\n\n\ndef make_delta(base_model_path, target_model_path, delta_path, hub_repo_id):\n    print(\"Loading base model\")\n    base = AutoModelForCausalLM.from_pretrained(\n        base_model_path, torch_dtype=torch.float16, low_cpu_mem_usage=True\n    )\n\n    print(\"Loading target model\")\n    auto_upgrade(target_model_path)\n    target = AutoModelForCausalLM.from_pretrained(\n        target_model_path, torch_dtype=torch.float16, low_cpu_mem_usage=True\n    )\n\n    print(\"Calculating delta\")\n    for name, param in tqdm(target.state_dict().items(), desc=\"Calculating delta\"):\n        if name not in base.state_dict():\n            assert name in [\n                \"model.mm_projector.weight\",\n                \"model.mm_projector.bias\",\n            ], f\"{name} not in base model\"\n            continue\n        if param.data.shape == base.state_dict()[name].shape:\n            param.data -= base.state_dict()[name]\n        else:\n            assert name in [\n                \"model.embed_tokens.weight\",\n                \"lm_head.weight\",\n            ], f\"{name} dimension mismatch: {param.data.shape} vs {base.state_dict()[name].shape}\"\n            bparam = base.state_dict()[name]\n            param.data[: bparam.shape[0], : bparam.shape[1]] -= bparam\n\n    print(\"Saving delta\")\n    if hub_repo_id:\n        kwargs = {\"push_to_hub\": True, \"repo_id\": hub_repo_id}\n    else:\n        kwargs = {}\n    target.save_pretrained(delta_path, **kwargs)\n    target_tokenizer = AutoTokenizer.from_pretrained(target_model_path)\n    target_tokenizer.save_pretrained(delta_path, **kwargs)\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--base-model-path\", type=str, required=True)\n    parser.add_argument(\"--target-model-path\", type=str, required=True)\n    parser.add_argument(\"--delta-path\", type=str, required=True)\n    parser.add_argument(\"--hub-repo-id\", type=str, default=None)\n    args = parser.parse_args()\n\n    make_delta(\n        args.base_model_path, args.target_model_path, args.delta_path, args.hub_repo_id\n    )\n"
  },
  {
    "path": "model/llava/model/multimodal_encoder/builder.py",
    "content": "from .clip_encoder import CLIPVisionTower\n\n\ndef build_vision_tower(vision_tower_cfg, **kwargs):\n    vision_tower = getattr(\n        vision_tower_cfg,\n        \"mm_vision_tower\",\n        getattr(vision_tower_cfg, \"vision_tower\", None),\n    )\n    if (\n        vision_tower.startswith(\"openai\")\n        or vision_tower.startswith(\"laion\")\n        or \"clip\" in vision_tower\n    ):\n        return CLIPVisionTower(vision_tower, args=vision_tower_cfg, **kwargs)\n\n    raise ValueError(f\"Unknown vision tower: {vision_tower}\")\n"
  },
  {
    "path": "model/llava/model/multimodal_encoder/clip_encoder.py",
    "content": "import torch\nimport torch.nn as nn\nfrom transformers import CLIPImageProcessor, CLIPVisionConfig, CLIPVisionModel\n\n\nclass CLIPVisionTower(nn.Module):\n    def __init__(self, vision_tower, args, delay_load=False):\n        super().__init__()\n\n        self.is_loaded = False\n\n        self.vision_tower_name = vision_tower\n        self.select_layer = args.mm_vision_select_layer\n        self.select_feature = getattr(args, \"mm_vision_select_feature\", \"patch\")\n\n        if not delay_load:\n            self.load_model()\n        else:\n            self.cfg_only = CLIPVisionConfig.from_pretrained(self.vision_tower_name)\n\n    def load_model(self):\n        self.image_processor = CLIPImageProcessor.from_pretrained(\n            self.vision_tower_name\n        )\n        self.vision_tower = CLIPVisionModel.from_pretrained(\n            self.vision_tower_name, low_cpu_mem_usage=True\n        )\n        self.vision_tower.requires_grad_(False)\n        self.is_loaded = True\n\n    def feature_select(self, image_forward_outs):\n        image_features = image_forward_outs.hidden_states[self.select_layer]\n        if self.select_feature == \"patch\":\n            image_features = image_features[:, 1:]\n        elif self.select_feature == \"cls_patch\":\n            image_features = image_features\n        else:\n            raise ValueError(f\"Unexpected select feature: {self.select_feature}\")\n        return image_features\n\n    @torch.no_grad()\n    def forward(self, images):\n        if type(images) is list:\n            image_features = []\n            for image in images:\n                image_forward_out = self.vision_tower(\n                    image.to(device=self.device, dtype=self.dtype).unsqueeze(0),\n                    output_hidden_states=True,\n                )\n                image_feature = self.feature_select(image_forward_out).to(image.dtype)\n                image_features.append(image_feature)\n        else:\n            image_forward_outs = self.vision_tower(\n                images.to(device=self.device, dtype=self.dtype),\n                output_hidden_states=True,\n            )\n            image_features = self.feature_select(image_forward_outs).to(images.dtype)\n\n        torch.cuda.empty_cache()\n        return image_features\n\n    @property\n    def dummy_feature(self):\n        return torch.zeros(1, self.hidden_size, device=self.device, dtype=self.dtype)\n\n    @property\n    def dtype(self):\n        return self.vision_tower.dtype\n\n    @property\n    def device(self):\n        return self.vision_tower.device\n\n    @property\n    def config(self):\n        if self.is_loaded:\n            return self.vision_tower.config\n        else:\n            return self.cfg_only\n\n    @property\n    def hidden_size(self):\n        return self.config.hidden_size\n\n    @property\n    def num_patches(self):\n        return (self.config.image_size // self.config.patch_size) ** 2\n"
  },
  {
    "path": "model/llava/model/utils.py",
    "content": "from transformers import AutoConfig\n\n\ndef auto_upgrade(config):\n    cfg = AutoConfig.from_pretrained(config)\n    if \"llava\" in config and \"llava\" not in cfg.model_type:\n        assert cfg.model_type == \"llama\"\n        print(\n            \"You are using newer LLaVA code base, while the checkpoint of v0 is from older code base.\"\n        )\n        print(\n            \"You must upgrade the checkpoint to the new code base (this can be done automatically).\"\n        )\n        confirm = input(\"Please confirm that you want to upgrade the checkpoint. [Y/N]\")\n        if confirm.lower() in [\"y\", \"yes\"]:\n            print(\"Upgrading checkpoint...\")\n            assert len(cfg.architectures) == 1\n            setattr(cfg.__class__, \"model_type\", \"llava\")\n            cfg.architectures[0] = \"LlavaLlamaForCausalLM\"\n            cfg.save_pretrained(config)\n            print(\"Checkpoint upgraded.\")\n        else:\n            print(\"Checkpoint upgrade aborted.\")\n            exit(1)\n"
  },
  {
    "path": "model/llava/train/llama_flash_attn_monkey_patch.py",
    "content": "import logging\nfrom typing import List, Optional, Tuple\n\nimport torch\nimport transformers\nfrom einops import rearrange\nfrom torch import nn\nfrom transformers.models.llama.modeling_llama import apply_rotary_pos_emb\n\ntry:\n    from flash_attn.flash_attn_interface import \\\n        flash_attn_unpadded_qkvpacked_func\nexcept ImportError:\n    from flash_attn.flash_attn_interface import (\n        flash_attn_varlen_qkvpacked_func as flash_attn_unpadded_qkvpacked_func,\n    )\n\nfrom flash_attn.bert_padding import pad_input, unpad_input\n\n\ndef forward(\n    self,\n    hidden_states: torch.Tensor,\n    attention_mask: Optional[torch.Tensor] = None,\n    position_ids: Optional[torch.Tensor] = None,\n    past_key_value: Optional[Tuple[torch.Tensor]] = None,\n    output_attentions: bool = False,\n    use_cache: bool = False,\n) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:\n    \"\"\"Input shape: Batch x Time x Channel\n\n    attention_mask: [bsz, q_len]\n    \"\"\"\n    bsz, q_len, _ = hidden_states.size()\n\n    query_states = (\n        self.q_proj(hidden_states)\n        .view(bsz, q_len, self.num_heads, self.head_dim)\n        .transpose(1, 2)\n    )\n    key_states = (\n        self.k_proj(hidden_states)\n        .view(bsz, q_len, self.num_heads, self.head_dim)\n        .transpose(1, 2)\n    )\n    value_states = (\n        self.v_proj(hidden_states)\n        .view(bsz, q_len, self.num_heads, self.head_dim)\n        .transpose(1, 2)\n    )\n    # [bsz, q_len, nh, hd]\n    # [bsz, nh, q_len, hd]\n\n    kv_seq_len = key_states.shape[-2]\n    assert past_key_value is None, \"past_key_value is not supported\"\n\n    cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)\n    query_states, key_states = apply_rotary_pos_emb(\n        query_states, key_states, cos, sin, position_ids\n    )\n    # [bsz, nh, t, hd]\n    assert not output_attentions, \"output_attentions is not supported\"\n    assert not use_cache, \"use_cache is not supported\"\n\n    # Flash attention codes from\n    # https://github.com/HazyResearch/flash-attention/blob/main/flash_attn/flash_attention.py\n\n    # transform the data into the format required by flash attention\n    qkv = torch.stack(\n        [query_states, key_states, value_states], dim=2\n    )  # [bsz, nh, 3, q_len, hd]\n    qkv = qkv.transpose(1, 3)  # [bsz, q_len, 3, nh, hd]\n    # We have disabled _prepare_decoder_attention_mask in LlamaModel\n    # the attention_mask should be the same as the key_padding_mask\n    key_padding_mask = attention_mask\n\n    if key_padding_mask is None:\n        qkv = rearrange(qkv, \"b s ... -> (b s) ...\")\n        max_s = q_len\n        cu_q_lens = torch.arange(\n            0, (bsz + 1) * q_len, step=q_len, dtype=torch.int32, device=qkv.device\n        )\n        output = flash_attn_unpadded_qkvpacked_func(\n            qkv, cu_q_lens, max_s, 0.0, softmax_scale=None, causal=True\n        )\n        output = rearrange(output, \"(b s) ... -> b s ...\", b=bsz)\n    else:\n        nheads = qkv.shape[-2]\n        x = rearrange(qkv, \"b s three h d -> b s (three h d)\")\n        x_unpad, indices, cu_q_lens, max_s = unpad_input(x, key_padding_mask)\n        x_unpad = rearrange(\n            x_unpad, \"nnz (three h d) -> nnz three h d\", three=3, h=nheads\n        )\n        output_unpad = flash_attn_unpadded_qkvpacked_func(\n            x_unpad, cu_q_lens, max_s, 0.0, softmax_scale=None, causal=True\n        )\n        output = rearrange(\n            pad_input(\n                rearrange(output_unpad, \"nnz h d -> nnz (h d)\"), indices, bsz, q_len\n            ),\n            \"b s (h d) -> b s h d\",\n            h=nheads,\n        )\n    return self.o_proj(rearrange(output, \"b s h d -> b s (h d)\")), None, None\n\n\n# Disable the transformation of the attention mask in LlamaModel as the flash attention\n# requires the attention mask to be the same as the key_padding_mask\ndef _prepare_decoder_attention_mask(\n    self, attention_mask, input_shape, inputs_embeds, past_key_values_length\n):\n    # [bsz, seq_len]\n    return attention_mask\n\n\ndef replace_llama_attn_with_flash_attn():\n    cuda_major, cuda_minor = torch.cuda.get_device_capability()\n    if cuda_major < 8:\n        logging.warning(\n            \"Flash attention is only supported on A100 or H100 GPU during training due to head dim > 64 backward.\"\n            \"ref: https://github.com/HazyResearch/flash-attention/issues/190#issuecomment-1523359593\"\n        )\n    transformers.models.llama.modeling_llama.LlamaModel._prepare_decoder_attention_mask = (\n        _prepare_decoder_attention_mask\n    )\n    transformers.models.llama.modeling_llama.LlamaAttention.forward = forward\n"
  },
  {
    "path": "model/llava/train/llava_trainer.py",
    "content": "import os\nfrom typing import Optional\n\nimport torch\nfrom transformers import Trainer\n\n\ndef maybe_zero_3(param, ignore_status=False, name=None):\n    from deepspeed import zero\n    from deepspeed.runtime.zero.partition_parameters import ZeroParamStatus\n\n    if hasattr(param, \"ds_id\"):\n        if param.ds_status == ZeroParamStatus.NOT_AVAILABLE:\n            if not ignore_status:\n                print(name, \"no ignore status\")\n        with zero.GatheredParameters([param]):\n            param = param.data.detach().cpu().clone()\n    else:\n        param = param.detach().cpu().clone()\n    return param\n\n\ndef get_mm_adapter_state_maybe_zero_3(named_params, keys_to_match):\n    to_return = {\n        k: t\n        for k, t in named_params\n        if any(key_match in k for key_match in keys_to_match)\n    }\n    to_return = {\n        k: maybe_zero_3(v, ignore_status=True, name=k).cpu()\n        for k, v in to_return.items()\n    }\n    return to_return\n\n\nclass LLaVATrainer(Trainer):\n    def _save_checkpoint(self, model, trial, metrics=None):\n        if getattr(self.args, \"tune_mm_mlp_adapter\", False):\n            from transformers.trainer_utils import PREFIX_CHECKPOINT_DIR\n\n            checkpoint_folder = f\"{PREFIX_CHECKPOINT_DIR}-{self.state.global_step}\"\n\n            run_dir = self._get_output_dir(trial=trial)\n            output_dir = os.path.join(run_dir, checkpoint_folder)\n\n            # Only save Adapter\n            keys_to_match = [\"mm_projector\"]\n            if getattr(self.args, \"use_im_start_end\", False):\n                keys_to_match.extend([\"embed_tokens\", \"embed_in\"])\n\n            weight_to_save = get_mm_adapter_state_maybe_zero_3(\n                self.model.named_parameters(), keys_to_match\n            )\n\n            if self.args.local_rank == 0 or self.args.local_rank == -1:\n                self.model.config.save_pretrained(output_dir)\n                torch.save(\n                    weight_to_save, os.path.join(output_dir, f\"mm_projector.bin\")\n                )\n        else:\n            super(LLaVATrainer, self)._save_checkpoint(model, trial, metrics)\n\n    def _save(self, output_dir: Optional[str] = None, state_dict=None):\n        if getattr(self.args, \"tune_mm_mlp_adapter\", False):\n            pass\n        else:\n            super(LLaVATrainer, self)._save(output_dir, state_dict)\n"
  },
  {
    "path": "model/llava/train/train.py",
    "content": "# Adopted from https://github.com/lm-sys/FastChat. Below is the original copyright:\n# Adopted from tatsu-lab@stanford_alpaca. Below is the original copyright:\n#    Copyright 2023 Rohan Taori, Ishaan Gulrajani, Tianyi Zhang, Yann Dubois, Xuechen Li\n#\n#    Licensed under the Apache License, Version 2.0 (the \"License\");\n#    you may not use this file except in compliance with the License.\n#    You may obtain a copy of the License at\n#\n#        http://www.apache.org/licenses/LICENSE-2.0\n#\n#    Unless required by applicable law or agreed to in writing, software\n#    distributed under the License is distributed on an \"AS IS\" BASIS,\n#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#    See the License for the specific language governing permissions and\n#    limitations under the License.\n\nimport copy\nimport json\nimport logging\nimport os\nimport pathlib\nfrom dataclasses import dataclass, field\nfrom typing import Dict, List, Optional, Sequence\n\nimport torch\nimport transformers\nfrom llava import conversation as conversation_lib\nfrom llava.constants import (DEFAULT_IM_END_TOKEN, DEFAULT_IM_START_TOKEN,\n                             DEFAULT_IMAGE_TOKEN, IGNORE_INDEX,\n                             IMAGE_TOKEN_INDEX)\nfrom llava.mm_utils import tokenizer_image_token\nfrom llava.model import *\nfrom llava.train.llava_trainer import LLaVATrainer\nfrom PIL import Image\nfrom torch.utils.data import Dataset\n\nlocal_rank = None\n\n\ndef rank0_print(*args):\n    if local_rank == 0:\n        print(*args)\n\n\n@dataclass\nclass ModelArguments:\n    model_name_or_path: Optional[str] = field(default=\"facebook/opt-125m\")\n    version: Optional[str] = field(default=\"v0\")\n    freeze_backbone: bool = field(default=False)\n    tune_mm_mlp_adapter: bool = field(default=False)\n    vision_tower: Optional[str] = field(default=None)\n    mm_vision_select_layer: Optional[int] = field(\n        default=-1\n    )  # default to the last layer\n    pretrain_mm_mlp_adapter: Optional[str] = field(default=None)\n    mm_use_im_start_end: bool = field(default=False)\n    mm_use_im_patch_token: bool = field(default=True)\n    mm_vision_select_feature: Optional[str] = field(default=\"patch\")\n\n\n@dataclass\nclass DataArguments:\n    data_path: str = field(\n        default=None, metadata={\"help\": \"Path to the training data.\"}\n    )\n    lazy_preprocess: bool = False\n    is_multimodal: bool = False\n    image_folder: Optional[str] = field(default=None)\n    image_aspect_ratio: str = \"square\"\n    image_grid_pinpoints: Optional[str] = field(default=None)\n\n\n@dataclass\nclass TrainingArguments(transformers.TrainingArguments):\n    cache_dir: Optional[str] = field(default=None)\n    optim: str = field(default=\"adamw_torch\")\n    remove_unused_columns: bool = field(default=False)\n    freeze_mm_mlp_adapter: bool = field(default=False)\n    mpt_attn_impl: Optional[str] = field(default=\"triton\")\n    model_max_length: int = field(\n        default=512,\n        metadata={\n            \"help\": \"Maximum sequence length. Sequences will be right padded (and possibly truncated).\"\n        },\n    )\n    double_quant: bool = field(\n        default=True,\n        metadata={\n            \"help\": \"Compress the quantization statistics through double quantization.\"\n        },\n    )\n    quant_type: str = field(\n        default=\"nf4\",\n        metadata={\n            \"help\": \"Quantization data type to use. Should be one of `fp4` or `nf4`.\"\n        },\n    )\n    bits: int = field(default=16, metadata={\"help\": \"How many bits to use.\"})\n    lora_enable: bool = False\n    lora_r: int = 64\n    lora_alpha: int = 16\n    lora_dropout: float = 0.05\n    lora_weight_path: str = \"\"\n    lora_bias: str = \"none\"\n\n\ndef maybe_zero_3(param, ignore_status=False, name=None):\n    from deepspeed import zero\n    from deepspeed.runtime.zero.partition_parameters import ZeroParamStatus\n\n    if hasattr(param, \"ds_id\"):\n        if param.ds_status == ZeroParamStatus.NOT_AVAILABLE:\n            if not ignore_status:\n                logging.warning(\n                    f\"{name}: param.ds_status != ZeroParamStatus.NOT_AVAILABLE: {param.ds_status}\"\n                )\n        with zero.GatheredParameters([param]):\n            param = param.data.detach().cpu().clone()\n    else:\n        param = param.detach().cpu().clone()\n    return param\n\n\n# Borrowed from peft.utils.get_peft_model_state_dict\ndef get_peft_state_maybe_zero_3(named_params, bias):\n    if bias == \"none\":\n        to_return = {k: t for k, t in named_params if \"lora_\" in k}\n    elif bias == \"all\":\n        to_return = {k: t for k, t in named_params if \"lora_\" in k or \"bias\" in k}\n    elif bias == \"lora_only\":\n        to_return = {}\n        maybe_lora_bias = {}\n        lora_bias_names = set()\n        for k, t in named_params:\n            if \"lora_\" in k:\n                to_return[k] = t\n                bias_name = k.split(\"lora_\")[0] + \"bias\"\n                lora_bias_names.add(bias_name)\n            elif \"bias\" in k:\n                maybe_lora_bias[k] = t\n        for k, t in maybe_lora_bias:\n            if bias_name in lora_bias_names:\n                to_return[bias_name] = t\n    else:\n        raise NotImplementedError\n    to_return = {k: maybe_zero_3(v, name=k) for k, v in to_return.items()}\n    return to_return\n\n\ndef get_peft_state_non_lora_maybe_zero_3(named_params, require_grad_only=True):\n    to_return = {k: t for k, t in named_params if \"lora_\" not in k}\n    if require_grad_only:\n        to_return = {k: t for k, t in to_return.items() if t.requires_grad}\n    to_return = {\n        k: maybe_zero_3(v, ignore_status=True).cpu() for k, v in to_return.items()\n    }\n    return to_return\n\n\ndef get_mm_adapter_state_maybe_zero_3(named_params, keys_to_match):\n    to_return = {\n        k: t\n        for k, t in named_params\n        if any(key_match in k for key_match in keys_to_match)\n    }\n    to_return = {\n        k: maybe_zero_3(v, ignore_status=True).cpu() for k, v in to_return.items()\n    }\n    return to_return\n\n\ndef find_all_linear_names(model):\n    cls = torch.nn.Linear\n    lora_module_names = set()\n    for name, module in model.named_modules():\n        if isinstance(module, cls):\n            names = name.split(\".\")\n            lora_module_names.add(names[0] if len(names) == 1 else names[-1])\n\n    if \"lm_head\" in lora_module_names:  # needed for 16-bit\n        lora_module_names.remove(\"lm_head\")\n    return list(lora_module_names)\n\n\ndef safe_save_model_for_hf_trainer(trainer: transformers.Trainer, output_dir: str):\n    \"\"\"Collects the state dict and dump to disk.\"\"\"\n\n    if getattr(trainer.args, \"tune_mm_mlp_adapter\", False):\n        # Only save Adapter\n        keys_to_match = [\"mm_projector\"]\n        if getattr(trainer.args, \"use_im_start_end\", False):\n            keys_to_match.extend([\"embed_tokens\", \"embed_in\"])\n\n        weight_to_save = get_mm_adapter_state_maybe_zero_3(\n            trainer.model.named_parameters(), keys_to_match\n        )\n        trainer.model.config.save_pretrained(output_dir)\n\n        current_folder = output_dir.split(\"/\")[-1]\n        parent_folder = os.path.dirname(output_dir)\n        if trainer.args.local_rank == 0 or trainer.args.local_rank == -1:\n            if current_folder.startswith(\"checkpoint-\"):\n                mm_projector_folder = os.path.join(parent_folder, \"mm_projector\")\n                os.makedirs(mm_projector_folder, exist_ok=True)\n                torch.save(\n                    weight_to_save,\n                    os.path.join(mm_projector_folder, f\"{current_folder}.bin\"),\n                )\n            else:\n                torch.save(\n                    weight_to_save, os.path.join(output_dir, f\"mm_projector.bin\")\n                )\n        return\n\n    if trainer.deepspeed:\n        torch.cuda.synchronize()\n        trainer.save_model(output_dir)\n        return\n\n    state_dict = trainer.model.state_dict()\n    if trainer.args.should_save:\n        cpu_state_dict = {key: value.cpu() for key, value in state_dict.items()}\n        del state_dict\n        trainer._save(output_dir, state_dict=cpu_state_dict)  # noqa\n\n\ndef smart_tokenizer_and_embedding_resize(\n    special_tokens_dict: Dict,\n    tokenizer: transformers.PreTrainedTokenizer,\n    model: transformers.PreTrainedModel,\n):\n    \"\"\"Resize tokenizer and embedding.\n\n    Note: This is the unoptimized version that may make your embedding size not be divisible by 64.\n    \"\"\"\n    num_new_tokens = tokenizer.add_special_tokens(special_tokens_dict)\n    model.resize_token_embeddings(len(tokenizer))\n\n    if num_new_tokens > 0:\n        input_embeddings = model.get_input_embeddings().weight.data\n        output_embeddings = model.get_output_embeddings().weight.data\n\n        input_embeddings_avg = input_embeddings[:-num_new_tokens].mean(\n            dim=0, keepdim=True\n        )\n        output_embeddings_avg = output_embeddings[:-num_new_tokens].mean(\n            dim=0, keepdim=True\n        )\n\n        input_embeddings[-num_new_tokens:] = input_embeddings_avg\n        output_embeddings[-num_new_tokens:] = output_embeddings_avg\n\n\ndef _tokenize_fn(\n    strings: Sequence[str], tokenizer: transformers.PreTrainedTokenizer\n) -> Dict:\n    \"\"\"Tokenize a list of strings.\"\"\"\n    tokenized_list = [\n        tokenizer(\n            text,\n            return_tensors=\"pt\",\n            padding=\"longest\",\n            max_length=tokenizer.model_max_length,\n            truncation=True,\n        )\n        for text in strings\n    ]\n    input_ids = labels = [tokenized.input_ids[0] for tokenized in tokenized_list]\n    input_ids_lens = labels_lens = [\n        tokenized.input_ids.ne(tokenizer.pad_token_id).sum().item()\n        for tokenized in tokenized_list\n    ]\n    return dict(\n        input_ids=input_ids,\n        labels=labels,\n        input_ids_lens=input_ids_lens,\n        labels_lens=labels_lens,\n    )\n\n\ndef _mask_targets(target, tokenized_lens, speakers):\n    # cur_idx = 0\n    cur_idx = tokenized_lens[0]\n    tokenized_lens = tokenized_lens[1:]\n    target[:cur_idx] = IGNORE_INDEX\n    for tokenized_len, speaker in zip(tokenized_lens, speakers):\n        if speaker == \"human\":\n            target[cur_idx + 2 : cur_idx + tokenized_len] = IGNORE_INDEX\n        cur_idx += tokenized_len\n\n\ndef _add_speaker_and_signal(header, source, get_conversation=True):\n    \"\"\"Add speaker and start/end signal on each round.\"\"\"\n    BEGIN_SIGNAL = \"### \"\n    END_SIGNAL = \"\\n\"\n    conversation = header\n    for sentence in source:\n        from_str = sentence[\"from\"]\n        if from_str.lower() == \"human\":\n            from_str = conversation_lib.default_conversation.roles[0]\n        elif from_str.lower() == \"gpt\":\n            from_str = conversation_lib.default_conversation.roles[1]\n        else:\n            from_str = \"unknown\"\n        sentence[\"value\"] = (\n            BEGIN_SIGNAL + from_str + \": \" + sentence[\"value\"] + END_SIGNAL\n        )\n        if get_conversation:\n            conversation += sentence[\"value\"]\n    conversation += BEGIN_SIGNAL\n    return conversation\n\n\ndef preprocess_multimodal(sources: Sequence[str], data_args: DataArguments) -> Dict:\n    is_multimodal = data_args.is_multimodal\n    if not is_multimodal:\n        return sources\n\n    for source in sources:\n        for sentence in source:\n            if DEFAULT_IMAGE_TOKEN in sentence[\"value\"]:\n                sentence[\"value\"] = (\n                    sentence[\"value\"].replace(DEFAULT_IMAGE_TOKEN, \"\").strip()\n                )\n                sentence[\"value\"] = DEFAULT_IMAGE_TOKEN + \"\\n\" + sentence[\"value\"]\n                sentence[\"value\"] = sentence[\"value\"].strip()\n                if \"mmtag\" in conversation_lib.default_conversation.version:\n                    sentence[\"value\"] = sentence[\"value\"].replace(\n                        DEFAULT_IMAGE_TOKEN,\n                        \"<Image>\" + DEFAULT_IMAGE_TOKEN + \"</Image>\",\n                    )\n            replace_token = DEFAULT_IMAGE_TOKEN\n            if data_args.mm_use_im_start_end:\n                replace_token = (\n                    DEFAULT_IM_START_TOKEN + replace_token + DEFAULT_IM_END_TOKEN\n                )\n            sentence[\"value\"] = sentence[\"value\"].replace(\n                DEFAULT_IMAGE_TOKEN, replace_token\n            )\n\n    return sources\n\n\ndef preprocess_llama_2(\n    sources, tokenizer: transformers.PreTrainedTokenizer, has_image: bool = False\n) -> Dict:\n    conv = conversation_lib.default_conversation.copy()\n    roles = {\"human\": conv.roles[0], \"gpt\": conv.roles[1]}\n\n    # Apply prompt templates\n    conversations = []\n    for i, source in enumerate(sources):\n        if roles[source[0][\"from\"]] != conv.roles[0]:\n            # Skip the first one if it is not from human\n            source = source[1:]\n\n        conv.messages = []\n        for j, sentence in enumerate(source):\n            role = roles[sentence[\"from\"]]\n            assert role == conv.roles[j % 2], f\"{i}\"\n            conv.append_message(role, sentence[\"value\"])\n        conversations.append(conv.get_prompt())\n\n    # Tokenize conversations\n\n    if has_image:\n        input_ids = torch.stack(\n            [\n                tokenizer_image_token(prompt, tokenizer, return_tensors=\"pt\")\n                for prompt in conversations\n            ],\n            dim=0,\n        )\n    else:\n        input_ids = tokenizer(\n            conversations,\n            return_tensors=\"pt\",\n            padding=\"longest\",\n            max_length=tokenizer.model_max_length,\n            truncation=True,\n        ).input_ids\n\n    targets = input_ids.clone()\n\n    assert conv.sep_style == conversation_lib.SeparatorStyle.LLAMA_2\n\n    # Mask targets\n    sep = \"[/INST] \"\n    for conversation, target in zip(conversations, targets):\n        total_len = int(target.ne(tokenizer.pad_token_id).sum())\n\n        rounds = conversation.split(conv.sep2)\n        cur_len = 1\n        target[:cur_len] = IGNORE_INDEX\n        for i, rou in enumerate(rounds):\n            if rou == \"\":\n                break\n\n            parts = rou.split(sep)\n            if len(parts) != 2:\n                break\n            parts[0] += sep\n\n            if has_image:\n                round_len = len(tokenizer_image_token(rou, tokenizer))\n                instruction_len = len(tokenizer_image_token(parts[0], tokenizer)) - 2\n            else:\n                round_len = len(tokenizer(rou).input_ids)\n                instruction_len = len(tokenizer(parts[0]).input_ids) - 2\n\n            target[cur_len : cur_len + instruction_len] = IGNORE_INDEX\n\n            cur_len += round_len\n        target[cur_len:] = IGNORE_INDEX\n\n        if cur_len < tokenizer.model_max_length:\n            if cur_len != total_len:\n                target[:] = IGNORE_INDEX\n                print(\n                    f\"WARNING: tokenization mismatch: {cur_len} vs. {total_len}.\"\n                    f\" (ignored)\"\n                )\n\n    return dict(\n        input_ids=input_ids,\n        labels=targets,\n    )\n\n\ndef preprocess_v1(\n    sources, tokenizer: transformers.PreTrainedTokenizer, has_image: bool = False\n) -> Dict:\n    conv = conversation_lib.default_conversation.copy()\n    roles = {\"human\": conv.roles[0], \"gpt\": conv.roles[1]}\n\n    # Apply prompt templates\n    conversations = []\n    for i, source in enumerate(sources):\n        if roles[source[0][\"from\"]] != conv.roles[0]:\n            # Skip the first one if it is not from human\n            source = source[1:]\n\n        conv.messages = []\n        for j, sentence in enumerate(source):\n            role = roles[sentence[\"from\"]]\n            assert role == conv.roles[j % 2], f\"{i}\"\n            conv.append_message(role, sentence[\"value\"])\n        conversations.append(conv.get_prompt())\n\n    # Tokenize conversations\n\n    if has_image:\n        input_ids = torch.stack(\n            [\n                tokenizer_image_token(prompt, tokenizer, return_tensors=\"pt\")\n                for prompt in conversations\n            ],\n            dim=0,\n        )\n    else:\n        input_ids = tokenizer(\n            conversations,\n            return_tensors=\"pt\",\n            padding=\"longest\",\n            max_length=tokenizer.model_max_length,\n            truncation=True,\n        ).input_ids\n\n    targets = input_ids.clone()\n\n    assert conv.sep_style == conversation_lib.SeparatorStyle.TWO\n\n    # Mask targets\n    sep = conv.sep + conv.roles[1] + \": \"\n    for conversation, target in zip(conversations, targets):\n        total_len = int(target.ne(tokenizer.pad_token_id).sum())\n\n        rounds = conversation.split(conv.sep2)\n        cur_len = 1\n        target[:cur_len] = IGNORE_INDEX\n        for i, rou in enumerate(rounds):\n            if rou == \"\":\n                break\n\n            parts = rou.split(sep)\n            if len(parts) != 2:\n                break\n            parts[0] += sep\n\n            if has_image:\n                round_len = len(tokenizer_image_token(rou, tokenizer))\n                instruction_len = len(tokenizer_image_token(parts[0], tokenizer)) - 2\n            else:\n                round_len = len(tokenizer(rou).input_ids)\n                instruction_len = len(tokenizer(parts[0]).input_ids) - 2\n\n            target[cur_len : cur_len + instruction_len] = IGNORE_INDEX\n\n            cur_len += round_len\n        target[cur_len:] = IGNORE_INDEX\n\n        if cur_len < tokenizer.model_max_length:\n            if cur_len != total_len:\n                target[:] = IGNORE_INDEX\n                print(\n                    f\"WARNING: tokenization mismatch: {cur_len} vs. {total_len}.\"\n                    f\" (ignored)\"\n                )\n\n    return dict(\n        input_ids=input_ids,\n        labels=targets,\n    )\n\n\ndef preprocess_mpt(\n    sources,\n    tokenizer: transformers.PreTrainedTokenizer,\n) -> Dict:\n    conv = conversation_lib.default_conversation.copy()\n    roles = {\"human\": conv.roles[0], \"gpt\": conv.roles[1]}\n\n    # Apply prompt templates\n    conversations = []\n    for i, source in enumerate(sources):\n        if roles[source[0][\"from\"]] != conv.roles[0]:\n            # Skip the first one if it is not from human\n            source = source[1:]\n\n        conv.messages = []\n        for j, sentence in enumerate(source):\n            role = roles[sentence[\"from\"]]\n            assert role == conv.roles[j % 2], f\"{i}\"\n            conv.append_message(role, sentence[\"value\"])\n        conversations.append(conv.get_prompt())\n\n    # Tokenize conversations\n    input_ids = torch.stack(\n        [\n            tokenizer_image_token(prompt, tokenizer, return_tensors=\"pt\")\n            for prompt in conversations\n        ],\n        dim=0,\n    )\n    targets = input_ids.clone()\n    assert conv.sep_style == conversation_lib.SeparatorStyle.MPT\n\n    # Mask targets\n    sep = conv.sep + conv.roles[1]\n    for conversation, target in zip(conversations, targets):\n        total_len = int(target.ne(tokenizer.pad_token_id).sum())\n\n        rounds = conversation.split(conv.sep)\n        re_rounds = [conv.sep.join(rounds[:3])]  # system + user + gpt\n        for conv_idx in range(3, len(rounds), 2):\n            re_rounds.append(\n                conv.sep.join(rounds[conv_idx : conv_idx + 2])\n            )  # user + gpt\n        cur_len = 0\n        target[:cur_len] = IGNORE_INDEX\n        for i, rou in enumerate(re_rounds):\n            if rou == \"\":\n                break\n\n            parts = rou.split(sep)\n            if len(parts) != 2:\n                break\n            parts[0] += sep\n            round_len = len(tokenizer_image_token(rou, tokenizer)) + len(\n                tokenizer_image_token(conv.sep, tokenizer)\n            )\n            instruction_len = len(tokenizer_image_token(parts[0], tokenizer))\n            target[cur_len : cur_len + instruction_len] = IGNORE_INDEX\n\n            cur_len += round_len\n        target[cur_len:] = IGNORE_INDEX\n\n        if cur_len < tokenizer.model_max_length:\n            if cur_len != total_len:\n                target[:] = IGNORE_INDEX\n                print(\n                    f\"WARNING: tokenization mismatch: {cur_len} vs. {total_len}.\"\n                    f\" (ignored)\"\n                )\n\n    return dict(\n        input_ids=input_ids,\n        labels=targets,\n    )\n\n\ndef preprocess_plain(\n    sources: Sequence[str],\n    tokenizer: transformers.PreTrainedTokenizer,\n) -> Dict:\n    # add end signal and concatenate together\n    conversations = []\n    for source in sources:\n        assert len(source) == 2\n        assert DEFAULT_IMAGE_TOKEN in source[0][\"value\"]\n        source[0][\"value\"] = DEFAULT_IMAGE_TOKEN\n        conversation = (\n            source[0][\"value\"]\n            + source[1][\"value\"]\n            + conversation_lib.default_conversation.sep\n        )\n        conversations.append(conversation)\n    # tokenize conversations\n    input_ids = [\n        tokenizer_image_token(prompt, tokenizer, return_tensors=\"pt\")\n        for prompt in conversations\n    ]\n    targets = copy.deepcopy(input_ids)\n    for target, source in zip(targets, sources):\n        tokenized_len = len(tokenizer_image_token(source[0][\"value\"], tokenizer))\n        target[:tokenized_len] = IGNORE_INDEX\n\n    return dict(input_ids=input_ids, labels=targets)\n\n\ndef preprocess(\n    sources: Sequence[str],\n    tokenizer: transformers.PreTrainedTokenizer,\n    has_image: bool = False,\n) -> Dict:\n    \"\"\"\n    Given a list of sources, each is a conversation list. This transform:\n    1. Add signal '### ' at the beginning each sentence, with end signal '\\n';\n    2. Concatenate conversations together;\n    3. Tokenize the concatenated conversation;\n    4. Make a deepcopy as the target. Mask human words with IGNORE_INDEX.\n    \"\"\"\n    if (\n        conversation_lib.default_conversation.sep_style\n        == conversation_lib.SeparatorStyle.PLAIN\n    ):\n        return preprocess_plain(sources, tokenizer)\n    if (\n        conversation_lib.default_conversation.sep_style\n        == conversation_lib.SeparatorStyle.LLAMA_2\n    ):\n        return preprocess_llama_2(sources, tokenizer, has_image=has_image)\n    if conversation_lib.default_conversation.version.startswith(\"v1\"):\n        return preprocess_v1(sources, tokenizer, has_image=has_image)\n    if conversation_lib.default_conversation.version == \"mpt\":\n        return preprocess_mpt(sources, tokenizer)\n    # add end signal and concatenate together\n    conversations = []\n    for source in sources:\n        header = f\"{conversation_lib.default_conversation.system}\\n\\n\"\n        conversation = _add_speaker_and_signal(header, source)\n        conversations.append(conversation)\n\n    # tokenize conversations\n    def get_tokenize_len(prompts):\n        return [len(tokenizer_image_token(prompt, tokenizer)) for prompt in prompts]\n\n    if has_image:\n        input_ids = [\n            tokenizer_image_token(prompt, tokenizer, return_tensors=\"pt\")\n            for prompt in conversations\n        ]\n    else:\n        conversations_tokenized = _tokenize_fn(conversations, tokenizer)\n        input_ids = conversations_tokenized[\"input_ids\"]\n\n    targets = copy.deepcopy(input_ids)\n    for target, source in zip(targets, sources):\n        if has_image:\n            tokenized_lens = get_tokenize_len([header] + [s[\"value\"] for s in source])\n        else:\n            tokenized_lens = _tokenize_fn(\n                [header] + [s[\"value\"] for s in source], tokenizer\n            )[\"input_ids_lens\"]\n        speakers = [sentence[\"from\"] for sentence in source]\n        _mask_targets(target, tokenized_lens, speakers)\n\n    return dict(input_ids=input_ids, labels=targets)\n\n\nclass LazySupervisedDataset(Dataset):\n    \"\"\"Dataset for supervised fine-tuning.\"\"\"\n\n    def __init__(\n        self,\n        data_path: str,\n        tokenizer: transformers.PreTrainedTokenizer,\n        data_args: DataArguments,\n    ):\n        super(LazySupervisedDataset, self).__init__()\n        list_data_dict = json.load(open(data_path, \"r\"))\n\n        rank0_print(\"Formatting inputs...Skip in lazy mode\")\n        self.tokenizer = tokenizer\n        self.list_data_dict = list_data_dict\n        self.data_args = data_args\n\n    def __len__(self):\n        return len(self.list_data_dict)\n\n    def __getitem__(self, i) -> Dict[str, torch.Tensor]:\n        sources = self.list_data_dict[i]\n        if isinstance(i, int):\n            sources = [sources]\n        assert len(sources) == 1, \"Don't know why it is wrapped to a list\"  # FIXME\n        if \"image\" in sources[0]:\n            image_file = self.list_data_dict[i][\"image\"]\n            image_folder = self.data_args.image_folder\n            processor = self.data_args.image_processor\n            image = Image.open(os.path.join(image_folder, image_file)).convert(\"RGB\")\n            if self.data_args.image_aspect_ratio == \"pad\":\n\n                def expand2square(pil_img, background_color):\n                    width, height = pil_img.size\n                    if width == height:\n                        return pil_img\n                    elif width > height:\n                        result = Image.new(\n                            pil_img.mode, (width, width), background_color\n                        )\n                        result.paste(pil_img, (0, (width - height) // 2))\n                        return result\n                    else:\n                        result = Image.new(\n                            pil_img.mode, (height, height), background_color\n                        )\n                        result.paste(pil_img, ((height - width) // 2, 0))\n                        return result\n\n                image = expand2square(\n                    image, tuple(int(x * 255) for x in processor.image_mean)\n                )\n                image = processor.preprocess(image, return_tensors=\"pt\")[\n                    \"pixel_values\"\n                ][0]\n            else:\n                image = processor.preprocess(image, return_tensors=\"pt\")[\n                    \"pixel_values\"\n                ][0]\n            sources = preprocess_multimodal(\n                copy.deepcopy([e[\"conversations\"] for e in sources]), self.data_args\n            )\n        else:\n            sources = copy.deepcopy([e[\"conversations\"] for e in sources])\n        data_dict = preprocess(\n            sources, self.tokenizer, has_image=(\"image\" in self.list_data_dict[i])\n        )\n        if isinstance(i, int):\n            data_dict = dict(\n                input_ids=data_dict[\"input_ids\"][0], labels=data_dict[\"labels\"][0]\n            )\n\n        # image exist in the data\n        if \"image\" in self.list_data_dict[i]:\n            data_dict[\"image\"] = image\n        elif self.data_args.is_multimodal:\n            # image does not exist in the data, but the model is multimodal\n            crop_size = self.data_args.image_processor.crop_size\n            data_dict[\"image\"] = torch.zeros(3, crop_size[\"height\"], crop_size[\"width\"])\n        return data_dict\n\n\n@dataclass\nclass DataCollatorForSupervisedDataset(object):\n    \"\"\"Collate examples for supervised fine-tuning.\"\"\"\n\n    tokenizer: transformers.PreTrainedTokenizer\n\n    def __call__(self, instances: Sequence[Dict]) -> Dict[str, torch.Tensor]:\n        input_ids, labels = tuple(\n            [instance[key] for instance in instances] for key in (\"input_ids\", \"labels\")\n        )\n        input_ids = torch.nn.utils.rnn.pad_sequence(\n            input_ids, batch_first=True, padding_value=self.tokenizer.pad_token_id\n        )\n        labels = torch.nn.utils.rnn.pad_sequence(\n            labels, batch_first=True, padding_value=IGNORE_INDEX\n        )\n        input_ids = input_ids[:, : self.tokenizer.model_max_length]\n        labels = labels[:, : self.tokenizer.model_max_length]\n        batch = dict(\n            input_ids=input_ids,\n            labels=labels,\n            attention_mask=input_ids.ne(self.tokenizer.pad_token_id),\n        )\n\n        if \"image\" in instances[0]:\n            images = [instance[\"image\"] for instance in instances]\n            if all(x is not None and x.shape == images[0].shape for x in images):\n                batch[\"images\"] = torch.stack(images)\n            else:\n                batch[\"images\"] = images\n\n        return batch\n\n\ndef make_supervised_data_module(\n    tokenizer: transformers.PreTrainedTokenizer, data_args\n) -> Dict:\n    \"\"\"Make dataset and collator for supervised fine-tuning.\"\"\"\n    train_dataset = LazySupervisedDataset(\n        tokenizer=tokenizer, data_path=data_args.data_path, data_args=data_args\n    )\n    data_collator = DataCollatorForSupervisedDataset(tokenizer=tokenizer)\n    return dict(\n        train_dataset=train_dataset, eval_dataset=None, data_collator=data_collator\n    )\n\n\ndef train():\n    global local_rank\n\n    parser = transformers.HfArgumentParser(\n        (ModelArguments, DataArguments, TrainingArguments)\n    )\n    model_args, data_args, training_args = parser.parse_args_into_dataclasses()\n    local_rank = training_args.local_rank\n    compute_dtype = (\n        torch.float16\n        if training_args.fp16\n        else (torch.bfloat16 if training_args.bf16 else torch.float32)\n    )\n\n    bnb_model_from_pretrained_args = {}\n    if training_args.bits in [4, 8]:\n        from transformers import BitsAndBytesConfig\n\n        bnb_model_from_pretrained_args.update(\n            dict(\n                device_map={\"\": training_args.device},\n                load_in_4bit=training_args.bits == 4,\n                load_in_8bit=training_args.bits == 8,\n                quantization_config=BitsAndBytesConfig(\n                    load_in_4bit=training_args.bits == 4,\n                    load_in_8bit=training_args.bits == 8,\n                    llm_int8_threshold=6.0,\n                    llm_int8_has_fp16_weight=False,\n                    bnb_4bit_compute_dtype=compute_dtype,\n                    bnb_4bit_use_double_quant=training_args.double_quant,\n                    bnb_4bit_quant_type=training_args.quant_type,  # {'fp4', 'nf4'}\n                ),\n            )\n        )\n\n    if model_args.vision_tower is not None:\n        if \"mpt\" in model_args.model_name_or_path:\n            config = transformers.AutoConfig.from_pretrained(\n                model_args.model_name_or_path, trust_remote_code=True\n            )\n            config.attn_config[\"attn_impl\"] = training_args.mpt_attn_impl\n            model = LlavaMPTForCausalLM.from_pretrained(\n                model_args.model_name_or_path,\n                config=config,\n                cache_dir=training_args.cache_dir,\n                **bnb_model_from_pretrained_args,\n            )\n        else:\n            model = LlavaLlamaForCausalLM.from_pretrained(\n                model_args.model_name_or_path,\n                cache_dir=training_args.cache_dir,\n                **bnb_model_from_pretrained_args,\n            )\n    else:\n        model = transformers.LlamaForCausalLM.from_pretrained(\n            model_args.model_name_or_path,\n            cache_dir=training_args.cache_dir,\n            **bnb_model_from_pretrained_args,\n        )\n    model.config.use_cache = False\n\n    if model_args.freeze_backbone:\n        model.model.requires_grad_(False)\n\n    if training_args.bits in [4, 8]:\n        from peft import prepare_model_for_kbit_training\n\n        model.config.torch_dtype = (\n            torch.float32\n            if training_args.fp16\n            else (torch.bfloat16 if training_args.bf16 else torch.float32)\n        )\n        model = prepare_model_for_kbit_training(\n            model, use_gradient_checkpointing=training_args.gradient_checkpointing\n        )\n\n    if training_args.gradient_checkpointing:\n        if hasattr(model, \"enable_input_require_grads\"):\n            model.enable_input_require_grads()\n        else:\n\n            def make_inputs_require_grad(module, input, output):\n                output.requires_grad_(True)\n\n            model.get_input_embeddings().register_forward_hook(make_inputs_require_grad)\n\n    if training_args.lora_enable:\n        from peft import LoraConfig, get_peft_model\n\n        lora_config = LoraConfig(\n            r=training_args.lora_r,\n            lora_alpha=training_args.lora_alpha,\n            target_modules=find_all_linear_names(model),\n            lora_dropout=training_args.lora_dropout,\n            bias=training_args.lora_bias,\n            task_type=\"CAUSAL_LM\",\n        )\n        if training_args.bits == 16:\n            if training_args.bf16:\n                model.to(torch.bfloat16)\n            if training_args.fp16:\n                model.to(torch.float16)\n        rank0_print(\"Adding LoRA adapters...\")\n        model = get_peft_model(model, lora_config)\n\n    if \"mpt\" in model_args.model_name_or_path:\n        tokenizer = transformers.AutoTokenizer.from_pretrained(\n            model_args.model_name_or_path,\n            cache_dir=training_args.cache_dir,\n            model_max_length=training_args.model_max_length,\n            padding_side=\"right\",\n        )\n    else:\n        tokenizer = transformers.AutoTokenizer.from_pretrained(\n            model_args.model_name_or_path,\n            cache_dir=training_args.cache_dir,\n            model_max_length=training_args.model_max_length,\n            padding_side=\"right\",\n            use_fast=False,\n        )\n\n    if model_args.version == \"v0\":\n        if tokenizer.pad_token is None:\n            smart_tokenizer_and_embedding_resize(\n                special_tokens_dict=dict(pad_token=\"[PAD]\"),\n                tokenizer=tokenizer,\n                model=model,\n            )\n    elif model_args.version == \"v0.5\":\n        tokenizer.pad_token = tokenizer.unk_token\n    else:\n        tokenizer.pad_token = tokenizer.unk_token\n        if model_args.version in conversation_lib.conv_templates:\n            conversation_lib.default_conversation = conversation_lib.conv_templates[\n                model_args.version\n            ]\n        else:\n            conversation_lib.default_conversation = conversation_lib.conv_templates[\n                \"vicuna_v1\"\n            ]\n\n    if model_args.vision_tower is not None:\n        model.get_model().initialize_vision_modules(\n            model_args=model_args, fsdp=training_args.fsdp\n        )\n\n        vision_tower = model.get_vision_tower()\n        vision_tower.to(dtype=torch.float16, device=training_args.device)\n\n        data_args.image_processor = vision_tower.image_processor\n        data_args.is_multimodal = True\n\n        model.config.image_aspect_ratio = data_args.image_aspect_ratio\n        model.config.image_grid_pinpoints = data_args.image_grid_pinpoints\n\n        model.config.tune_mm_mlp_adapter = (\n            training_args.tune_mm_mlp_adapter\n        ) = model_args.tune_mm_mlp_adapter\n        if model_args.tune_mm_mlp_adapter:\n            model.requires_grad_(False)\n            for p in model.get_model().mm_projector.parameters():\n                p.requires_grad = True\n\n        model.config.freeze_mm_mlp_adapter = training_args.freeze_mm_mlp_adapter\n        if training_args.freeze_mm_mlp_adapter:\n            for p in model.get_model().mm_projector.parameters():\n                p.requires_grad = False\n\n        if training_args.bits in [4, 8]:\n            model.get_model().mm_projector.to(\n                dtype=compute_dtype, device=training_args.device\n            )\n\n        model.config.mm_use_im_start_end = (\n            data_args.mm_use_im_start_end\n        ) = model_args.mm_use_im_start_end\n        training_args.use_im_start_end = model_args.mm_use_im_start_end\n        model.config.mm_use_im_patch_token = model_args.mm_use_im_patch_token\n        model.initialize_vision_tokenizer(model_args, tokenizer=tokenizer)\n\n    if training_args.bits in [4, 8]:\n        from peft.tuners.lora import LoraLayer\n\n        for name, module in model.named_modules():\n            if isinstance(module, LoraLayer):\n                if training_args.bf16:\n                    module = module.to(torch.bfloat16)\n            if \"norm\" in name:\n                module = module.to(torch.float32)\n            if \"lm_head\" in name or \"embed_tokens\" in name:\n                if hasattr(module, \"weight\"):\n                    if training_args.bf16 and module.weight.dtype == torch.float32:\n                        module = module.to(torch.bfloat16)\n\n    data_module = make_supervised_data_module(tokenizer=tokenizer, data_args=data_args)\n    trainer = LLaVATrainer(\n        model=model, tokenizer=tokenizer, args=training_args, **data_module\n    )\n\n    if list(pathlib.Path(training_args.output_dir).glob(\"checkpoint-*\")):\n        trainer.train(resume_from_checkpoint=True)\n    else:\n        trainer.train()\n    trainer.save_state()\n\n    model.config.use_cache = True\n\n    if training_args.lora_enable:\n        state_dict = get_peft_state_maybe_zero_3(\n            model.named_parameters(), training_args.lora_bias\n        )\n        non_lora_state_dict = get_peft_state_non_lora_maybe_zero_3(\n            model.named_parameters()\n        )\n        if training_args.local_rank == 0 or training_args.local_rank == -1:\n            model.config.save_pretrained(training_args.output_dir)\n            model.save_pretrained(training_args.output_dir, state_dict=state_dict)\n            torch.save(\n                non_lora_state_dict,\n                os.path.join(training_args.output_dir, \"non_lora_trainables.bin\"),\n            )\n    else:\n        safe_save_model_for_hf_trainer(\n            trainer=trainer, output_dir=training_args.output_dir\n        )\n\n\nif __name__ == \"__main__\":\n    train()\n"
  },
  {
    "path": "model/llava/train/train_mem.py",
    "content": "# Adopted from https://github.com/lm-sys/FastChat. Below is the original copyright:\n# Adopted from tatsu-lab@stanford_alpaca. Below is the original copyright:\n# Make it more memory efficient by monkey patching the LLaMA model with FlashAttn.\n\n# Need to call this before importing transformers.\nfrom llava.train.llama_flash_attn_monkey_patch import \\\n    replace_llama_attn_with_flash_attn\n\nreplace_llama_attn_with_flash_attn()\n\nfrom llava.train.train import train\n\nif __name__ == \"__main__\":\n    train()\n"
  },
  {
    "path": "model/llava/utils.py",
    "content": "import datetime\nimport logging\nimport logging.handlers\nimport os\nimport sys\n\nimport requests\nfrom llava.constants import LOGDIR\n\nserver_error_msg = (\n    \"**NETWORK ERROR DUE TO HIGH TRAFFIC. PLEASE REGENERATE OR REFRESH THIS PAGE.**\"\n)\nmoderation_msg = (\n    \"YOUR INPUT VIOLATES OUR CONTENT MODERATION GUIDELINES. PLEASE TRY AGAIN.\"\n)\n\nhandler = None\n\n\ndef build_logger(logger_name, logger_filename):\n    global handler\n\n    formatter = logging.Formatter(\n        fmt=\"%(asctime)s | %(levelname)s | %(name)s | %(message)s\",\n        datefmt=\"%Y-%m-%d %H:%M:%S\",\n    )\n\n    # Set the format of root handlers\n    if not logging.getLogger().handlers:\n        logging.basicConfig(level=logging.INFO)\n    logging.getLogger().handlers[0].setFormatter(formatter)\n\n    # Redirect stdout and stderr to loggers\n    stdout_logger = logging.getLogger(\"stdout\")\n    stdout_logger.setLevel(logging.INFO)\n    sl = StreamToLogger(stdout_logger, logging.INFO)\n    sys.stdout = sl\n\n    stderr_logger = logging.getLogger(\"stderr\")\n    stderr_logger.setLevel(logging.ERROR)\n    sl = StreamToLogger(stderr_logger, logging.ERROR)\n    sys.stderr = sl\n\n    # Get logger\n    logger = logging.getLogger(logger_name)\n    logger.setLevel(logging.INFO)\n\n    # Add a file handler for all loggers\n    if handler is None:\n        os.makedirs(LOGDIR, exist_ok=True)\n        filename = os.path.join(LOGDIR, logger_filename)\n        handler = logging.handlers.TimedRotatingFileHandler(\n            filename, when=\"D\", utc=True\n        )\n        handler.setFormatter(formatter)\n\n        for name, item in logging.root.manager.loggerDict.items():\n            if isinstance(item, logging.Logger):\n                item.addHandler(handler)\n\n    return logger\n\n\nclass StreamToLogger(object):\n    \"\"\"\n    Fake file-like stream object that redirects writes to a logger instance.\n    \"\"\"\n\n    def __init__(self, logger, log_level=logging.INFO):\n        self.terminal = sys.stdout\n        self.logger = logger\n        self.log_level = log_level\n        self.linebuf = \"\"\n\n    def __getattr__(self, attr):\n        return getattr(self.terminal, attr)\n\n    def write(self, buf):\n        temp_linebuf = self.linebuf + buf\n        self.linebuf = \"\"\n        for line in temp_linebuf.splitlines(True):\n            # From the io.TextIOWrapper docs:\n            #   On output, if newline is None, any '\\n' characters written\n            #   are translated to the system default line separator.\n            # By default sys.stdout.write() expects '\\n' newlines and then\n            # translates them so this is still cross platform.\n            if line[-1] == \"\\n\":\n                self.logger.log(self.log_level, line.rstrip())\n            else:\n                self.linebuf += line\n\n    def flush(self):\n        if self.linebuf != \"\":\n            self.logger.log(self.log_level, self.linebuf.rstrip())\n        self.linebuf = \"\"\n\n\ndef disable_torch_init():\n    \"\"\"\n    Disable the redundant torch default initialization to accelerate model creation.\n    \"\"\"\n    import torch\n\n    setattr(torch.nn.Linear, \"reset_parameters\", lambda self: None)\n    setattr(torch.nn.LayerNorm, \"reset_parameters\", lambda self: None)\n\n\ndef violates_moderation(text):\n    \"\"\"\n    Check whether the text violates OpenAI moderation API.\n    \"\"\"\n    url = \"https://api.openai.com/v1/moderations\"\n    headers = {\n        \"Content-Type\": \"application/json\",\n        \"Authorization\": \"Bearer \" + os.environ[\"OPENAI_API_KEY\"],\n    }\n    text = text.replace(\"\\n\", \"\")\n    data = \"{\" + '\"input\": ' + f'\"{text}\"' + \"}\"\n    data = data.encode(\"utf-8\")\n    try:\n        ret = requests.post(url, headers=headers, data=data, timeout=5)\n        flagged = ret.json()[\"results\"][0][\"flagged\"]\n    except requests.exceptions.RequestException as e:\n        flagged = False\n    except KeyError as e:\n        flagged = False\n\n    return flagged\n\n\ndef pretty_print_semaphore(semaphore):\n    if semaphore is None:\n        return \"None\"\n    return f\"Semaphore(value={semaphore._value}, locked={semaphore.locked()})\"\n"
  },
  {
    "path": "model/segment_anything/__init__.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom .automatic_mask_generator import SamAutomaticMaskGenerator\nfrom .build_sam import (build_sam, build_sam_vit_b, build_sam_vit_h,\n                        build_sam_vit_l, sam_model_registry)\nfrom .predictor import SamPredictor\n"
  },
  {
    "path": "model/segment_anything/automatic_mask_generator.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom typing import Any, Dict, List, Optional, Tuple\n\nimport numpy as np\nimport torch\nfrom torchvision.ops.boxes import batched_nms, box_area  # type: ignore\n\nfrom .modeling import Sam\nfrom .predictor import SamPredictor\nfrom .utils.amg import (MaskData, area_from_rle, batch_iterator,\n                        batched_mask_to_box, box_xyxy_to_xywh,\n                        build_all_layer_point_grids, calculate_stability_score,\n                        coco_encode_rle, generate_crop_boxes,\n                        is_box_near_crop_edge, mask_to_rle_pytorch,\n                        remove_small_regions, rle_to_mask, uncrop_boxes_xyxy,\n                        uncrop_masks, uncrop_points)\n\n\nclass SamAutomaticMaskGenerator:\n    def __init__(\n        self,\n        model: Sam,\n        points_per_side: Optional[int] = 32,\n        points_per_batch: int = 64,\n        pred_iou_thresh: float = 0.88,\n        stability_score_thresh: float = 0.95,\n        stability_score_offset: float = 1.0,\n        box_nms_thresh: float = 0.7,\n        crop_n_layers: int = 0,\n        crop_nms_thresh: float = 0.7,\n        crop_overlap_ratio: float = 512 / 1500,\n        crop_n_points_downscale_factor: int = 1,\n        point_grids: Optional[List[np.ndarray]] = None,\n        min_mask_region_area: int = 0,\n        output_mode: str = \"binary_mask\",\n    ) -> None:\n        \"\"\"\n        Using a SAM model, generates masks for the entire image.\n        Generates a grid of point prompts over the image, then filters\n        low quality and duplicate masks. The default settings are chosen\n        for SAM with a ViT-H backbone.\n\n        Arguments:\n          model (Sam): The SAM model to use for mask prediction.\n          points_per_side (int or None): The number of points to be sampled\n            along one side of the image. The total number of points is\n            points_per_side**2. If None, 'point_grids' must provide explicit\n            point sampling.\n          points_per_batch (int): Sets the number of points run simultaneously\n            by the model. Higher numbers may be faster but use more GPU memory.\n          pred_iou_thresh (float): A filtering threshold in [0,1], using the\n            model's predicted mask quality.\n          stability_score_thresh (float): A filtering threshold in [0,1], using\n            the stability of the mask under changes to the cutoff used to binarize\n            the model's mask predictions.\n          stability_score_offset (float): The amount to shift the cutoff when\n            calculated the stability score.\n          box_nms_thresh (float): The box IoU cutoff used by non-maximal\n            suppression to filter duplicate masks.\n          crop_n_layers (int): If >0, mask prediction will be run again on\n            crops of the image. Sets the number of layers to run, where each\n            layer has 2**i_layer number of image crops.\n          crop_nms_thresh (float): The box IoU cutoff used by non-maximal\n            suppression to filter duplicate masks between different crops.\n          crop_overlap_ratio (float): Sets the degree to which crops overlap.\n            In the first crop layer, crops will overlap by this fraction of\n            the image length. Later layers with more crops scale down this overlap.\n          crop_n_points_downscale_factor (int): The number of points-per-side\n            sampled in layer n is scaled down by crop_n_points_downscale_factor**n.\n          point_grids (list(np.ndarray) or None): A list over explicit grids\n            of points used for sampling, normalized to [0,1]. The nth grid in the\n            list is used in the nth crop layer. Exclusive with points_per_side.\n          min_mask_region_area (int): If >0, postprocessing will be applied\n            to remove disconnected regions and holes in masks with area smaller\n            than min_mask_region_area. Requires opencv.\n          output_mode (str): The form masks are returned in. Can be 'binary_mask',\n            'uncompressed_rle', or 'coco_rle'. 'coco_rle' requires pycocotools.\n            For large resolutions, 'binary_mask' may consume large amounts of\n            memory.\n        \"\"\"\n\n        assert (points_per_side is None) != (\n            point_grids is None\n        ), \"Exactly one of points_per_side or point_grid must be provided.\"\n        if points_per_side is not None:\n            self.point_grids = build_all_layer_point_grids(\n                points_per_side,\n                crop_n_layers,\n                crop_n_points_downscale_factor,\n            )\n        elif point_grids is not None:\n            self.point_grids = point_grids\n        else:\n            raise ValueError(\"Can't have both points_per_side and point_grid be None.\")\n\n        assert output_mode in [\n            \"binary_mask\",\n            \"uncompressed_rle\",\n            \"coco_rle\",\n        ], f\"Unknown output_mode {output_mode}.\"\n        if output_mode == \"coco_rle\":\n            from pycocotools import \\\n                mask as mask_utils  # type: ignore # noqa: F401\n\n        if min_mask_region_area > 0:\n            import cv2  # type: ignore # noqa: F401\n\n        self.predictor = SamPredictor(model)\n        self.points_per_batch = points_per_batch\n        self.pred_iou_thresh = pred_iou_thresh\n        self.stability_score_thresh = stability_score_thresh\n        self.stability_score_offset = stability_score_offset\n        self.box_nms_thresh = box_nms_thresh\n        self.crop_n_layers = crop_n_layers\n        self.crop_nms_thresh = crop_nms_thresh\n        self.crop_overlap_ratio = crop_overlap_ratio\n        self.crop_n_points_downscale_factor = crop_n_points_downscale_factor\n        self.min_mask_region_area = min_mask_region_area\n        self.output_mode = output_mode\n\n    @torch.no_grad()\n    def generate(self, image: np.ndarray) -> List[Dict[str, Any]]:\n        \"\"\"\n        Generates masks for the given image.\n\n        Arguments:\n          image (np.ndarray): The image to generate masks for, in HWC uint8 format.\n\n        Returns:\n           list(dict(str, any)): A list over records for masks. Each record is\n             a dict containing the following keys:\n               segmentation (dict(str, any) or np.ndarray): The mask. If\n                 output_mode='binary_mask', is an array of shape HW. Otherwise,\n                 is a dictionary containing the RLE.\n               bbox (list(float)): The box around the mask, in XYWH format.\n               area (int): The area in pixels of the mask.\n               predicted_iou (float): The model's own prediction of the mask's\n                 quality. This is filtered by the pred_iou_thresh parameter.\n               point_coords (list(list(float))): The point coordinates input\n                 to the model to generate this mask.\n               stability_score (float): A measure of the mask's quality. This\n                 is filtered on using the stability_score_thresh parameter.\n               crop_box (list(float)): The crop of the image used to generate\n                 the mask, given in XYWH format.\n        \"\"\"\n\n        # Generate masks\n        mask_data = self._generate_masks(image)\n\n        # Filter small disconnected regions and holes in masks\n        if self.min_mask_region_area > 0:\n            mask_data = self.postprocess_small_regions(\n                mask_data,\n                self.min_mask_region_area,\n                max(self.box_nms_thresh, self.crop_nms_thresh),\n            )\n\n        # Encode masks\n        if self.output_mode == \"coco_rle\":\n            mask_data[\"segmentations\"] = [\n                coco_encode_rle(rle) for rle in mask_data[\"rles\"]\n            ]\n        elif self.output_mode == \"binary_mask\":\n            mask_data[\"segmentations\"] = [rle_to_mask(rle) for rle in mask_data[\"rles\"]]\n        else:\n            mask_data[\"segmentations\"] = mask_data[\"rles\"]\n\n        # Write mask records\n        curr_anns = []\n        for idx in range(len(mask_data[\"segmentations\"])):\n            ann = {\n                \"segmentation\": mask_data[\"segmentations\"][idx],\n                \"area\": area_from_rle(mask_data[\"rles\"][idx]),\n                \"bbox\": box_xyxy_to_xywh(mask_data[\"boxes\"][idx]).tolist(),\n                \"predicted_iou\": mask_data[\"iou_preds\"][idx].item(),\n                \"point_coords\": [mask_data[\"points\"][idx].tolist()],\n                \"stability_score\": mask_data[\"stability_score\"][idx].item(),\n                \"crop_box\": box_xyxy_to_xywh(mask_data[\"crop_boxes\"][idx]).tolist(),\n            }\n            curr_anns.append(ann)\n\n        return curr_anns\n\n    def _generate_masks(self, image: np.ndarray) -> MaskData:\n        orig_size = image.shape[:2]\n        crop_boxes, layer_idxs = generate_crop_boxes(\n            orig_size, self.crop_n_layers, self.crop_overlap_ratio\n        )\n\n        # Iterate over image crops\n        data = MaskData()\n        for crop_box, layer_idx in zip(crop_boxes, layer_idxs):\n            crop_data = self._process_crop(image, crop_box, layer_idx, orig_size)\n            data.cat(crop_data)\n\n        # Remove duplicate masks between crops\n        if len(crop_boxes) > 1:\n            # Prefer masks from smaller crops\n            scores = 1 / box_area(data[\"crop_boxes\"])\n            scores = scores.to(data[\"boxes\"].device)\n            keep_by_nms = batched_nms(\n                data[\"boxes\"].float(),\n                scores,\n                torch.zeros_like(data[\"boxes\"][:, 0]),  # categories\n                iou_threshold=self.crop_nms_thresh,\n            )\n            data.filter(keep_by_nms)\n\n        data.to_numpy()\n        return data\n\n    def _process_crop(\n        self,\n        image: np.ndarray,\n        crop_box: List[int],\n        crop_layer_idx: int,\n        orig_size: Tuple[int, ...],\n    ) -> MaskData:\n        # Crop the image and calculate embeddings\n        x0, y0, x1, y1 = crop_box\n        cropped_im = image[y0:y1, x0:x1, :]\n        cropped_im_size = cropped_im.shape[:2]\n        self.predictor.set_image(cropped_im)\n\n        # Get points for this crop\n        points_scale = np.array(cropped_im_size)[None, ::-1]\n        points_for_image = self.point_grids[crop_layer_idx] * points_scale\n\n        # Generate masks for this crop in batches\n        data = MaskData()\n        for (points,) in batch_iterator(self.points_per_batch, points_for_image):\n            batch_data = self._process_batch(\n                points, cropped_im_size, crop_box, orig_size\n            )\n            data.cat(batch_data)\n            del batch_data\n        self.predictor.reset_image()\n\n        # Remove duplicates within this crop.\n        keep_by_nms = batched_nms(\n            data[\"boxes\"].float(),\n            data[\"iou_preds\"],\n            torch.zeros_like(data[\"boxes\"][:, 0]),  # categories\n            iou_threshold=self.box_nms_thresh,\n        )\n        data.filter(keep_by_nms)\n\n        # Return to the original image frame\n        data[\"boxes\"] = uncrop_boxes_xyxy(data[\"boxes\"], crop_box)\n        data[\"points\"] = uncrop_points(data[\"points\"], crop_box)\n        data[\"crop_boxes\"] = torch.tensor([crop_box for _ in range(len(data[\"rles\"]))])\n\n        return data\n\n    def _process_batch(\n        self,\n        points: np.ndarray,\n        im_size: Tuple[int, ...],\n        crop_box: List[int],\n        orig_size: Tuple[int, ...],\n    ) -> MaskData:\n        orig_h, orig_w = orig_size\n\n        # Run model on this batch\n        transformed_points = self.predictor.transform.apply_coords(points, im_size)\n        in_points = torch.as_tensor(transformed_points, device=self.predictor.device)\n        in_labels = torch.ones(\n            in_points.shape[0], dtype=torch.int, device=in_points.device\n        )\n        masks, iou_preds, _ = self.predictor.predict_torch(\n            in_points[:, None, :],\n            in_labels[:, None],\n            multimask_output=True,\n            return_logits=True,\n        )\n\n        # Serialize predictions and store in MaskData\n        data = MaskData(\n            masks=masks.flatten(0, 1),\n            iou_preds=iou_preds.flatten(0, 1),\n            points=torch.as_tensor(points.repeat(masks.shape[1], axis=0)),\n        )\n        del masks\n\n        # Filter by predicted IoU\n        if self.pred_iou_thresh > 0.0:\n            keep_mask = data[\"iou_preds\"] > self.pred_iou_thresh\n            data.filter(keep_mask)\n\n        # Calculate stability score\n        data[\"stability_score\"] = calculate_stability_score(\n            data[\"masks\"],\n            self.predictor.model.mask_threshold,\n            self.stability_score_offset,\n        )\n        if self.stability_score_thresh > 0.0:\n            keep_mask = data[\"stability_score\"] >= self.stability_score_thresh\n            data.filter(keep_mask)\n\n        # Threshold masks and calculate boxes\n        data[\"masks\"] = data[\"masks\"] > self.predictor.model.mask_threshold\n        data[\"boxes\"] = batched_mask_to_box(data[\"masks\"])\n\n        # Filter boxes that touch crop boundaries\n        keep_mask = ~is_box_near_crop_edge(\n            data[\"boxes\"], crop_box, [0, 0, orig_w, orig_h]\n        )\n        if not torch.all(keep_mask):\n            data.filter(keep_mask)\n\n        # Compress to RLE\n        data[\"masks\"] = uncrop_masks(data[\"masks\"], crop_box, orig_h, orig_w)\n        data[\"rles\"] = mask_to_rle_pytorch(data[\"masks\"])\n        del data[\"masks\"]\n\n        return data\n\n    @staticmethod\n    def postprocess_small_regions(\n        mask_data: MaskData, min_area: int, nms_thresh: float\n    ) -> MaskData:\n        \"\"\"\n        Removes small disconnected regions and holes in masks, then reruns\n        box NMS to remove any new duplicates.\n\n        Edits mask_data in place.\n\n        Requires open-cv as a dependency.\n        \"\"\"\n        if len(mask_data[\"rles\"]) == 0:\n            return mask_data\n\n        # Filter small disconnected regions and holes\n        new_masks = []\n        scores = []\n        for rle in mask_data[\"rles\"]:\n            mask = rle_to_mask(rle)\n\n            mask, changed = remove_small_regions(mask, min_area, mode=\"holes\")\n            unchanged = not changed\n            mask, changed = remove_small_regions(mask, min_area, mode=\"islands\")\n            unchanged = unchanged and not changed\n\n            new_masks.append(torch.as_tensor(mask).unsqueeze(0))\n            # Give score=0 to changed masks and score=1 to unchanged masks\n            # so NMS will prefer ones that didn't need postprocessing\n            scores.append(float(unchanged))\n\n        # Recalculate boxes and remove any new duplicates\n        masks = torch.cat(new_masks, dim=0)\n        boxes = batched_mask_to_box(masks)\n        keep_by_nms = batched_nms(\n            boxes.float(),\n            torch.as_tensor(scores),\n            torch.zeros_like(boxes[:, 0]),  # categories\n            iou_threshold=nms_thresh,\n        )\n\n        # Only recalculate RLEs for masks that have changed\n        for i_mask in keep_by_nms:\n            if scores[i_mask] == 0.0:\n                mask_torch = masks[i_mask].unsqueeze(0)\n                mask_data[\"rles\"][i_mask] = mask_to_rle_pytorch(mask_torch)[0]\n                mask_data[\"boxes\"][i_mask] = boxes[i_mask]  # update res directly\n        mask_data.filter(keep_by_nms)\n\n        return mask_data\n"
  },
  {
    "path": "model/segment_anything/build_sam.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom functools import partial\n\nimport torch\n\nfrom .modeling import (ImageEncoderViT, MaskDecoder, PromptEncoder, Sam,\n                       TwoWayTransformer)\n\n\ndef build_sam_vit_h(checkpoint=None):\n    return _build_sam(\n        encoder_embed_dim=1280,\n        encoder_depth=32,\n        encoder_num_heads=16,\n        encoder_global_attn_indexes=[7, 15, 23, 31],\n        checkpoint=checkpoint,\n    )\n\n\nbuild_sam = build_sam_vit_h\n\n\ndef build_sam_vit_l(checkpoint=None):\n    return _build_sam(\n        encoder_embed_dim=1024,\n        encoder_depth=24,\n        encoder_num_heads=16,\n        encoder_global_attn_indexes=[5, 11, 17, 23],\n        checkpoint=checkpoint,\n    )\n\n\ndef build_sam_vit_b(checkpoint=None):\n    return _build_sam(\n        encoder_embed_dim=768,\n        encoder_depth=12,\n        encoder_num_heads=12,\n        encoder_global_attn_indexes=[2, 5, 8, 11],\n        checkpoint=checkpoint,\n    )\n\n\nsam_model_registry = {\n    \"default\": build_sam_vit_h,\n    \"vit_h\": build_sam_vit_h,\n    \"vit_l\": build_sam_vit_l,\n    \"vit_b\": build_sam_vit_b,\n}\n\n\ndef _build_sam(\n    encoder_embed_dim,\n    encoder_depth,\n    encoder_num_heads,\n    encoder_global_attn_indexes,\n    checkpoint=None,\n):\n    prompt_embed_dim = 256\n    image_size = 1024\n    vit_patch_size = 16\n    image_embedding_size = image_size // vit_patch_size\n    sam = Sam(\n        image_encoder=ImageEncoderViT(\n            depth=encoder_depth,\n            embed_dim=encoder_embed_dim,\n            img_size=image_size,\n            mlp_ratio=4,\n            norm_layer=partial(torch.nn.LayerNorm, eps=1e-6),\n            num_heads=encoder_num_heads,\n            patch_size=vit_patch_size,\n            qkv_bias=True,\n            use_rel_pos=True,\n            global_attn_indexes=encoder_global_attn_indexes,\n            window_size=14,\n            out_chans=prompt_embed_dim,\n        ),\n        prompt_encoder=PromptEncoder(\n            embed_dim=prompt_embed_dim,\n            image_embedding_size=(image_embedding_size, image_embedding_size),\n            input_image_size=(image_size, image_size),\n            mask_in_chans=16,\n        ),\n        mask_decoder=MaskDecoder(\n            num_multimask_outputs=3,\n            transformer=TwoWayTransformer(\n                depth=2,\n                embedding_dim=prompt_embed_dim,\n                mlp_dim=2048,\n                num_heads=8,\n            ),\n            transformer_dim=prompt_embed_dim,\n            iou_head_depth=3,\n            iou_head_hidden_dim=256,\n        ),\n        pixel_mean=[123.675, 116.28, 103.53],\n        pixel_std=[58.395, 57.12, 57.375],\n    )\n    sam.eval()\n    if checkpoint is not None:\n        with open(checkpoint, \"rb\") as f:\n            state_dict = torch.load(f)\n        sam.load_state_dict(state_dict, strict=False)\n    return sam\n"
  },
  {
    "path": "model/segment_anything/modeling/__init__.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom .image_encoder import ImageEncoderViT\nfrom .mask_decoder import MaskDecoder\nfrom .prompt_encoder import PromptEncoder\nfrom .sam import Sam\nfrom .transformer import TwoWayTransformer\n"
  },
  {
    "path": "model/segment_anything/modeling/common.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom typing import Type\n\nimport torch\nimport torch.nn as nn\n\n\nclass MLPBlock(nn.Module):\n    def __init__(\n        self,\n        embedding_dim: int,\n        mlp_dim: int,\n        act: Type[nn.Module] = nn.GELU,\n    ) -> None:\n        super().__init__()\n        self.lin1 = nn.Linear(embedding_dim, mlp_dim)\n        self.lin2 = nn.Linear(mlp_dim, embedding_dim)\n        self.act = act()\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        return self.lin2(self.act(self.lin1(x)))\n\n\n# From https://github.com/facebookresearch/detectron2/blob/main/detectron2/layers/batch_norm.py # noqa\n# Itself from https://github.com/facebookresearch/ConvNeXt/blob/d1fa8f6fef0a165b27399986cc2bdacc92777e40/models/convnext.py#L119  # noqa\nclass LayerNorm2d(nn.Module):\n    def __init__(self, num_channels: int, eps: float = 1e-6) -> None:\n        super().__init__()\n        self.weight = nn.Parameter(torch.ones(num_channels))\n        self.bias = nn.Parameter(torch.zeros(num_channels))\n        self.eps = eps\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        u = x.mean(1, keepdim=True)\n        s = (x - u).pow(2).mean(1, keepdim=True)\n        x = (x - u) / torch.sqrt(s + self.eps)\n        x = self.weight[:, None, None] * x + self.bias[:, None, None]\n        return x\n"
  },
  {
    "path": "model/segment_anything/modeling/image_encoder.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom typing import Optional, Tuple, Type\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\nfrom .common import LayerNorm2d, MLPBlock\n\n\n# This class and its supporting functions below lightly adapted from the ViTDet backbone available at: https://github.com/facebookresearch/detectron2/blob/main/detectron2/modeling/backbone/vit.py # noqa\nclass ImageEncoderViT(nn.Module):\n    def __init__(\n        self,\n        img_size: int = 1024,\n        patch_size: int = 16,\n        in_chans: int = 3,\n        embed_dim: int = 768,\n        depth: int = 12,\n        num_heads: int = 12,\n        mlp_ratio: float = 4.0,\n        out_chans: int = 256,\n        qkv_bias: bool = True,\n        norm_layer: Type[nn.Module] = nn.LayerNorm,\n        act_layer: Type[nn.Module] = nn.GELU,\n        use_abs_pos: bool = True,\n        use_rel_pos: bool = False,\n        rel_pos_zero_init: bool = True,\n        window_size: int = 0,\n        global_attn_indexes: Tuple[int, ...] = (),\n    ) -> None:\n        \"\"\"\n        Args:\n            img_size (int): Input image size.\n            patch_size (int): Patch size.\n            in_chans (int): Number of input image channels.\n            embed_dim (int): Patch embedding dimension.\n            depth (int): Depth of ViT.\n            num_heads (int): Number of attention heads in each ViT block.\n            mlp_ratio (float): Ratio of mlp hidden dim to embedding dim.\n            qkv_bias (bool): If True, add a learnable bias to query, key, value.\n            norm_layer (nn.Module): Normalization layer.\n            act_layer (nn.Module): Activation layer.\n            use_abs_pos (bool): If True, use absolute positional embeddings.\n            use_rel_pos (bool): If True, add relative positional embeddings to the attention map.\n            rel_pos_zero_init (bool): If True, zero initialize relative positional parameters.\n            window_size (int): Window size for window attention blocks.\n            global_attn_indexes (list): Indexes for blocks using global attention.\n        \"\"\"\n        super().__init__()\n        self.img_size = img_size\n        self.embed_dim = embed_dim\n        self.out_chans = out_chans\n\n        self.patch_embed = PatchEmbed(\n            kernel_size=(patch_size, patch_size),\n            stride=(patch_size, patch_size),\n            in_chans=in_chans,\n            embed_dim=embed_dim,\n        )\n\n        self.pos_embed: Optional[nn.Parameter] = None\n        if use_abs_pos:\n            # Initialize absolute positional embedding with pretrain image size.\n            self.pos_embed = nn.Parameter(\n                torch.zeros(\n                    1, img_size // patch_size, img_size // patch_size, embed_dim\n                )\n            )\n\n        self.blocks = nn.ModuleList()\n        for i in range(depth):\n            block = Block(\n                dim=embed_dim,\n                num_heads=num_heads,\n                mlp_ratio=mlp_ratio,\n                qkv_bias=qkv_bias,\n                norm_layer=norm_layer,\n                act_layer=act_layer,\n                use_rel_pos=use_rel_pos,\n                rel_pos_zero_init=rel_pos_zero_init,\n                window_size=window_size if i not in global_attn_indexes else 0,\n                input_size=(img_size // patch_size, img_size // patch_size),\n            )\n            self.blocks.append(block)\n\n        self.neck = nn.Sequential(\n            nn.Conv2d(\n                embed_dim,\n                out_chans,\n                kernel_size=1,\n                bias=False,\n            ),\n            LayerNorm2d(out_chans),\n            nn.Conv2d(\n                out_chans,\n                out_chans,\n                kernel_size=3,\n                padding=1,\n                bias=False,\n            ),\n            LayerNorm2d(out_chans),\n        )\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        x = self.patch_embed(x)\n        if self.pos_embed is not None:\n            x = x + self.pos_embed\n\n        for blk in self.blocks:\n            x = blk(x)\n\n        dtype = x.dtype\n        if dtype == torch.float16:  # prevent overflow\n            with torch.autocast(device_type=\"cuda\", dtype=torch.float32):\n                x = self.neck(x.permute(0, 3, 1, 2))\n            x = x.to(dtype)\n        else:\n            x = self.neck(x.permute(0, 3, 1, 2))\n        return x\n\n\nclass Block(nn.Module):\n    \"\"\"Transformer blocks with support of window attention and residual propagation blocks\"\"\"\n\n    def __init__(\n        self,\n        dim: int,\n        num_heads: int,\n        mlp_ratio: float = 4.0,\n        qkv_bias: bool = True,\n        norm_layer: Type[nn.Module] = nn.LayerNorm,\n        act_layer: Type[nn.Module] = nn.GELU,\n        use_rel_pos: bool = False,\n        rel_pos_zero_init: bool = True,\n        window_size: int = 0,\n        input_size: Optional[Tuple[int, int]] = None,\n    ) -> None:\n        \"\"\"\n        Args:\n            dim (int): Number of input channels.\n            num_heads (int): Number of attention heads in each ViT block.\n            mlp_ratio (float): Ratio of mlp hidden dim to embedding dim.\n            qkv_bias (bool): If True, add a learnable bias to query, key, value.\n            norm_layer (nn.Module): Normalization layer.\n            act_layer (nn.Module): Activation layer.\n            use_rel_pos (bool): If True, add relative positional embeddings to the attention map.\n            rel_pos_zero_init (bool): If True, zero initialize relative positional parameters.\n            window_size (int): Window size for window attention blocks. If it equals 0, then\n                use global attention.\n            input_size (tuple(int, int) or None): Input resolution for calculating the relative\n                positional parameter size.\n        \"\"\"\n        super().__init__()\n        self.norm1 = norm_layer(dim)\n        self.attn = Attention(\n            dim,\n            num_heads=num_heads,\n            qkv_bias=qkv_bias,\n            use_rel_pos=use_rel_pos,\n            rel_pos_zero_init=rel_pos_zero_init,\n            input_size=input_size if window_size == 0 else (window_size, window_size),\n        )\n\n        self.norm2 = norm_layer(dim)\n        self.mlp = MLPBlock(\n            embedding_dim=dim, mlp_dim=int(dim * mlp_ratio), act=act_layer\n        )\n\n        self.window_size = window_size\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        shortcut = x\n        x = self.norm1(x)\n        # Window partition\n        if self.window_size > 0:\n            H, W = x.shape[1], x.shape[2]\n            x, pad_hw = window_partition(x, self.window_size)\n\n        x = self.attn(x)\n        # Reverse window partition\n        if self.window_size > 0:\n            x = window_unpartition(x, self.window_size, pad_hw, (H, W))\n\n        x = shortcut + x\n        x = x + self.mlp(self.norm2(x))\n\n        return x\n\n\nclass Attention(nn.Module):\n    \"\"\"Multi-head Attention block with relative position embeddings.\"\"\"\n\n    def __init__(\n        self,\n        dim: int,\n        num_heads: int = 8,\n        qkv_bias: bool = True,\n        use_rel_pos: bool = False,\n        rel_pos_zero_init: bool = True,\n        input_size: Optional[Tuple[int, int]] = None,\n    ) -> None:\n        \"\"\"\n        Args:\n            dim (int): Number of input channels.\n            num_heads (int): Number of attention heads.\n            qkv_bias (bool):  If True, add a learnable bias to query, key, value.\n            rel_pos (bool): If True, add relative positional embeddings to the attention map.\n            rel_pos_zero_init (bool): If True, zero initialize relative positional parameters.\n            input_size (tuple(int, int) or None): Input resolution for calculating the relative\n                positional parameter size.\n        \"\"\"\n        super().__init__()\n        self.num_heads = num_heads\n        head_dim = dim // num_heads\n        self.scale = head_dim**-0.5\n\n        self.qkv = nn.Linear(dim, dim * 3, bias=qkv_bias)\n        self.proj = nn.Linear(dim, dim)\n\n        self.use_rel_pos = use_rel_pos\n        if self.use_rel_pos:\n            assert (\n                input_size is not None\n            ), \"Input size must be provided if using relative positional encoding.\"\n            # initialize relative positional embeddings\n            self.rel_pos_h = nn.Parameter(torch.zeros(2 * input_size[0] - 1, head_dim))\n            self.rel_pos_w = nn.Parameter(torch.zeros(2 * input_size[1] - 1, head_dim))\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        B, H, W, _ = x.shape\n        # qkv with shape (3, B, nHead, H * W, C)\n        qkv = (\n            self.qkv(x).reshape(B, H * W, 3, self.num_heads, -1).permute(2, 0, 3, 1, 4)\n        )\n        # q, k, v with shape (B * nHead, H * W, C)\n        q, k, v = qkv.reshape(3, B * self.num_heads, H * W, -1).unbind(0)\n\n        attn = (q * self.scale) @ k.transpose(-2, -1)\n\n        if self.use_rel_pos:\n            attn = add_decomposed_rel_pos(\n                attn, q, self.rel_pos_h, self.rel_pos_w, (H, W), (H, W)\n            )\n\n        attn = attn.softmax(dim=-1)\n        x = (\n            (attn @ v)\n            .view(B, self.num_heads, H, W, -1)\n            .permute(0, 2, 3, 1, 4)\n            .reshape(B, H, W, -1)\n        )\n        x = self.proj(x)\n\n        return x\n\n\ndef window_partition(\n    x: torch.Tensor, window_size: int\n) -> Tuple[torch.Tensor, Tuple[int, int]]:\n    \"\"\"\n    Partition into non-overlapping windows with padding if needed.\n    Args:\n        x (tensor): input tokens with [B, H, W, C].\n        window_size (int): window size.\n\n    Returns:\n        windows: windows after partition with [B * num_windows, window_size, window_size, C].\n        (Hp, Wp): padded height and width before partition\n    \"\"\"\n    B, H, W, C = x.shape\n\n    pad_h = (window_size - H % window_size) % window_size\n    pad_w = (window_size - W % window_size) % window_size\n    if pad_h > 0 or pad_w > 0:\n        x = F.pad(x, (0, 0, 0, pad_w, 0, pad_h))\n    Hp, Wp = H + pad_h, W + pad_w\n\n    x = x.view(B, Hp // window_size, window_size, Wp // window_size, window_size, C)\n    windows = (\n        x.permute(0, 1, 3, 2, 4, 5).contiguous().view(-1, window_size, window_size, C)\n    )\n    return windows, (Hp, Wp)\n\n\ndef window_unpartition(\n    windows: torch.Tensor,\n    window_size: int,\n    pad_hw: Tuple[int, int],\n    hw: Tuple[int, int],\n) -> torch.Tensor:\n    \"\"\"\n    Window unpartition into original sequences and removing padding.\n    Args:\n        windows (tensor): input tokens with [B * num_windows, window_size, window_size, C].\n        window_size (int): window size.\n        pad_hw (Tuple): padded height and width (Hp, Wp).\n        hw (Tuple): original height and width (H, W) before padding.\n\n    Returns:\n        x: unpartitioned sequences with [B, H, W, C].\n    \"\"\"\n    Hp, Wp = pad_hw\n    H, W = hw\n    B = windows.shape[0] // (Hp * Wp // window_size // window_size)\n    x = windows.view(\n        B, Hp // window_size, Wp // window_size, window_size, window_size, -1\n    )\n    x = x.permute(0, 1, 3, 2, 4, 5).contiguous().view(B, Hp, Wp, -1)\n\n    if Hp > H or Wp > W:\n        x = x[:, :H, :W, :].contiguous()\n    return x\n\n\ndef get_rel_pos(q_size: int, k_size: int, rel_pos: torch.Tensor) -> torch.Tensor:\n    \"\"\"\n    Get relative positional embeddings according to the relative positions of\n        query and key sizes.\n    Args:\n        q_size (int): size of query q.\n        k_size (int): size of key k.\n        rel_pos (Tensor): relative position embeddings (L, C).\n\n    Returns:\n        Extracted positional embeddings according to relative positions.\n    \"\"\"\n    max_rel_dist = int(2 * max(q_size, k_size) - 1)\n    # Interpolate rel pos if needed.\n    if rel_pos.shape[0] != max_rel_dist:\n        # Interpolate rel pos.\n        rel_pos_resized = F.interpolate(\n            rel_pos.reshape(1, rel_pos.shape[0], -1).permute(0, 2, 1),\n            size=max_rel_dist,\n            mode=\"linear\",\n        )\n        rel_pos_resized = rel_pos_resized.reshape(-1, max_rel_dist).permute(1, 0)\n    else:\n        rel_pos_resized = rel_pos\n\n    # Scale the coords with short length if shapes for q and k are different.\n    q_coords = torch.arange(q_size)[:, None] * max(k_size / q_size, 1.0)\n    k_coords = torch.arange(k_size)[None, :] * max(q_size / k_size, 1.0)\n    relative_coords = (q_coords - k_coords) + (k_size - 1) * max(q_size / k_size, 1.0)\n\n    return rel_pos_resized[relative_coords.long()]\n\n\ndef add_decomposed_rel_pos(\n    attn: torch.Tensor,\n    q: torch.Tensor,\n    rel_pos_h: torch.Tensor,\n    rel_pos_w: torch.Tensor,\n    q_size: Tuple[int, int],\n    k_size: Tuple[int, int],\n) -> torch.Tensor:\n    \"\"\"\n    Calculate decomposed Relative Positional Embeddings from :paper:`mvitv2`.\n    https://github.com/facebookresearch/mvit/blob/19786631e330df9f3622e5402b4a419a263a2c80/mvit/models/attention.py   # noqa B950\n    Args:\n        attn (Tensor): attention map.\n        q (Tensor): query q in the attention layer with shape (B, q_h * q_w, C).\n        rel_pos_h (Tensor): relative position embeddings (Lh, C) for height axis.\n        rel_pos_w (Tensor): relative position embeddings (Lw, C) for width axis.\n        q_size (Tuple): spatial sequence size of query q with (q_h, q_w).\n        k_size (Tuple): spatial sequence size of key k with (k_h, k_w).\n\n    Returns:\n        attn (Tensor): attention map with added relative positional embeddings.\n    \"\"\"\n    q_h, q_w = q_size\n    k_h, k_w = k_size\n    Rh = get_rel_pos(q_h, k_h, rel_pos_h)\n    Rw = get_rel_pos(q_w, k_w, rel_pos_w)\n\n    B, _, dim = q.shape\n    r_q = q.reshape(B, q_h, q_w, dim)\n    rel_h = torch.einsum(\"bhwc,hkc->bhwk\", r_q, Rh)\n    rel_w = torch.einsum(\"bhwc,wkc->bhwk\", r_q, Rw)\n\n    attn = (\n        attn.view(B, q_h, q_w, k_h, k_w)\n        + rel_h[:, :, :, :, None]\n        + rel_w[:, :, :, None, :]\n    ).view(B, q_h * q_w, k_h * k_w)\n\n    return attn\n\n\nclass PatchEmbed(nn.Module):\n    \"\"\"\n    Image to Patch Embedding.\n    \"\"\"\n\n    def __init__(\n        self,\n        kernel_size: Tuple[int, int] = (16, 16),\n        stride: Tuple[int, int] = (16, 16),\n        padding: Tuple[int, int] = (0, 0),\n        in_chans: int = 3,\n        embed_dim: int = 768,\n    ) -> None:\n        \"\"\"\n        Args:\n            kernel_size (Tuple): kernel size of the projection layer.\n            stride (Tuple): stride of the projection layer.\n            padding (Tuple): padding size of the projection layer.\n            in_chans (int): Number of input image channels.\n            embed_dim (int): Patch embedding dimension.\n        \"\"\"\n        super().__init__()\n\n        self.proj = nn.Conv2d(\n            in_chans, embed_dim, kernel_size=kernel_size, stride=stride, padding=padding\n        )\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        x = self.proj(x)\n        # B C H W -> B H W C\n        x = x.permute(0, 2, 3, 1)\n        return x\n"
  },
  {
    "path": "model/segment_anything/modeling/mask_decoder.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom typing import List, Tuple, Type\n\nimport torch\nfrom torch import nn\nfrom torch.nn import functional as F\n\nfrom .common import LayerNorm2d\n\n\nclass MaskDecoder(nn.Module):\n    def __init__(\n        self,\n        *,\n        transformer_dim: int,\n        transformer: nn.Module,\n        num_multimask_outputs: int = 3,\n        activation: Type[nn.Module] = nn.GELU,\n        iou_head_depth: int = 3,\n        iou_head_hidden_dim: int = 256,\n    ) -> None:\n        \"\"\"\n        Predicts masks given an image and prompt embeddings, using a\n        transformer architecture.\n\n        Arguments:\n          transformer_dim (int): the channel dimension of the transformer\n          transformer (nn.Module): the transformer used to predict masks\n          num_multimask_outputs (int): the number of masks to predict\n            when disambiguating masks\n          activation (nn.Module): the type of activation to use when\n            upscaling masks\n          iou_head_depth (int): the depth of the MLP used to predict\n            mask quality\n          iou_head_hidden_dim (int): the hidden dimension of the MLP\n            used to predict mask quality\n        \"\"\"\n        super().__init__()\n        self.transformer_dim = transformer_dim\n        self.transformer = transformer\n\n        self.num_multimask_outputs = num_multimask_outputs\n\n        self.iou_token = nn.Embedding(1, transformer_dim)\n        self.num_mask_tokens = num_multimask_outputs + 1\n        self.mask_tokens = nn.Embedding(self.num_mask_tokens, transformer_dim)\n\n        self.output_upscaling = nn.Sequential(\n            nn.ConvTranspose2d(\n                transformer_dim, transformer_dim // 4, kernel_size=2, stride=2\n            ),\n            LayerNorm2d(transformer_dim // 4),\n            activation(),\n            nn.ConvTranspose2d(\n                transformer_dim // 4, transformer_dim // 8, kernel_size=2, stride=2\n            ),\n            activation(),\n        )\n        self.output_hypernetworks_mlps = nn.ModuleList(\n            [\n                MLP(transformer_dim, transformer_dim, transformer_dim // 8, 3)\n                for i in range(self.num_mask_tokens)\n            ]\n        )\n\n        self.iou_prediction_head = MLP(\n            transformer_dim, iou_head_hidden_dim, self.num_mask_tokens, iou_head_depth\n        )\n\n    def forward(\n        self,\n        image_embeddings: torch.Tensor,\n        image_pe: torch.Tensor,\n        sparse_prompt_embeddings: torch.Tensor,\n        dense_prompt_embeddings: torch.Tensor,\n        multimask_output: bool,\n    ) -> Tuple[torch.Tensor, torch.Tensor]:\n        \"\"\"\n        Predict masks given image and prompt embeddings.\n\n        Arguments:\n          image_embeddings (torch.Tensor): the embeddings from the image encoder\n          image_pe (torch.Tensor): positional encoding with the shape of image_embeddings\n          sparse_prompt_embeddings (torch.Tensor): the embeddings of the points and boxes\n          dense_prompt_embeddings (torch.Tensor): the embeddings of the mask inputs\n          multimask_output (bool): Whether to return multiple masks or a single\n            mask.\n\n        Returns:\n          torch.Tensor: batched predicted masks\n          torch.Tensor: batched predictions of mask quality\n        \"\"\"\n        masks, iou_pred = self.predict_masks(\n            image_embeddings=image_embeddings,\n            image_pe=image_pe,\n            sparse_prompt_embeddings=sparse_prompt_embeddings,\n            dense_prompt_embeddings=dense_prompt_embeddings,\n        )\n\n        # Select the correct mask or masks for output\n        if multimask_output:\n            mask_slice = slice(1, None)\n        else:\n            mask_slice = slice(0, 1)\n        masks = masks[:, mask_slice, :, :]\n        iou_pred = iou_pred[:, mask_slice]\n\n        # Prepare output\n        return masks, iou_pred\n\n    def predict_masks(\n        self,\n        image_embeddings: torch.Tensor,\n        image_pe: torch.Tensor,\n        sparse_prompt_embeddings: torch.Tensor,\n        dense_prompt_embeddings: torch.Tensor,\n    ) -> Tuple[torch.Tensor, torch.Tensor]:\n        \"\"\"Predicts masks. See 'forward' for more details.\"\"\"\n        # Concatenate output tokens\n        output_tokens = torch.cat(\n            [self.iou_token.weight, self.mask_tokens.weight], dim=0\n        )\n        output_tokens = output_tokens.unsqueeze(0).expand(\n            sparse_prompt_embeddings.size(0), -1, -1\n        )\n\n        tokens = torch.cat((output_tokens, sparse_prompt_embeddings), dim=1)\n\n        # image_embeddings: [1, C, H, W], tokens: [B, N, C]\n        # dense_prompt_embeddings: [B, C, H, W]\n        # Expand per-image data in batch direction to be per-mask\n        src = torch.repeat_interleave(image_embeddings, tokens.shape[0], dim=0)\n        src = src + dense_prompt_embeddings\n        pos_src = torch.repeat_interleave(image_pe, tokens.shape[0], dim=0)\n        b, c, h, w = src.shape\n\n        # Run the transformer\n        hs, src = self.transformer(src, pos_src, tokens)\n        iou_token_out = hs[:, 0, :]\n        mask_tokens_out = hs[:, 1 : (1 + self.num_mask_tokens), :]\n\n        # Upscale mask embeddings and predict masks using the mask tokens\n        src = src.transpose(1, 2).view(b, c, h, w)\n        upscaled_embedding = self.output_upscaling(src)\n        hyper_in_list: List[torch.Tensor] = []\n        for i in range(self.num_mask_tokens):\n            hyper_in_list.append(\n                self.output_hypernetworks_mlps[i](mask_tokens_out[:, i, :])\n            )\n        hyper_in = torch.stack(hyper_in_list, dim=1)\n        b, c, h, w = upscaled_embedding.shape\n        masks = (hyper_in @ upscaled_embedding.view(b, c, h * w)).view(\n            b, self.num_mask_tokens, h, w\n        )\n\n        # Generate mask quality predictions\n        iou_pred = self.iou_prediction_head(iou_token_out)\n\n        return masks, iou_pred\n\n\n    def forward_modified_v3(\n        self, \n        image_embeddings        : torch.Tensor, # [b, 256, 64, 64]\n        image_pe                : torch.Tensor, # [1, 256, 64, 64]\n        sparse_prompt_embeddings: torch.Tensor, # [b, 1, 256]\n        dense_prompt_embeddings : torch.Tensor, # [b, 256, 64, 64]\n    ):  # -> [b, 256, 256]\n        b, _, _, _ = image_embeddings.shape\n        \n        # Concatenate output tokens\n        output_tokens = torch.cat([self.iou_token.weight, self.mask_tokens.weight], dim=0)  # [num_mask + 1, 256]\n        output_tokens = output_tokens.unsqueeze(0).expand(b, -1, -1)  # [b, num_mask + 1, 256]\n\n        tokens = torch.cat((output_tokens, sparse_prompt_embeddings), dim=1)  # [b, num_mask + 1 + 1, 256]\n\n        # image_embeddings: [1, C, H, W], tokens: [B, N, C]\n        # dense_prompt_embeddings: [B, C, H, W]\n        # Expand per-image data in batch direction to be per-mask\n        src = image_embeddings\n        src = src + dense_prompt_embeddings  # [b, 256, 64, 64]\n        pos_src = torch.repeat_interleave(image_pe, b, dim=0)  # [b, 256, 64, 64]\n        _, c, h, w = src.shape \n\n        # Run the transformer\n        hs, src = self.transformer(src, pos_src, tokens)\n        mask_tokens_out = hs[:, 1 : (1 + self.num_mask_tokens), :]\n\n        # Upscale mask embeddings and predict masks using the mask tokens\n        src = src.transpose(1, 2).view(b, c, h, w)\n        upscaled_embedding = self.output_upscaling(src)\n        hyper_in_list: List[torch.Tensor] = []\n        num_mask = 1\n        for i in range(num_mask):  # we only need the first mask\n            hyper_in_list.append(self.output_hypernetworks_mlps[i](mask_tokens_out[:, i, :]))\n        hyper_in = torch.stack(hyper_in_list, dim=1)\n        b, c, h, w = upscaled_embedding.shape\n        masks = (hyper_in @ upscaled_embedding.view(b, c, h * w)).view(b, h, w)  # [b, 256, 256]\n\n        return masks\n\n# Lightly adapted from\n# https://github.com/facebookresearch/MaskFormer/blob/main/mask_former/modeling/transformer/transformer_predictor.py # noqa\nclass MLP(nn.Module):\n    def __init__(\n        self,\n        input_dim: int,\n        hidden_dim: int,\n        output_dim: int,\n        num_layers: int,\n        sigmoid_output: bool = False,\n    ) -> None:\n        super().__init__()\n        self.num_layers = num_layers\n        h = [hidden_dim] * (num_layers - 1)\n        self.layers = nn.ModuleList(\n            nn.Linear(n, k) for n, k in zip([input_dim] + h, h + [output_dim])\n        )\n        self.sigmoid_output = sigmoid_output\n\n    def forward(self, x):\n        for i, layer in enumerate(self.layers):\n            x = F.relu(layer(x)) if i < self.num_layers - 1 else layer(x)\n        if self.sigmoid_output:\n            x = F.sigmoid(x)\n        return x\n"
  },
  {
    "path": "model/segment_anything/modeling/prompt_encoder.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom typing import Any, Optional, Tuple, Type\n\nimport numpy as np\nimport torch\nfrom torch import nn\n\nfrom .common import LayerNorm2d\n\n\nclass PromptEncoder(nn.Module):\n    def __init__(\n        self,\n        embed_dim: int,\n        image_embedding_size: Tuple[int, int],\n        input_image_size: Tuple[int, int],\n        mask_in_chans: int,\n        activation: Type[nn.Module] = nn.GELU,\n    ) -> None:\n        \"\"\"\n        Encodes prompts for input to SAM's mask decoder.\n\n        Arguments:\n          embed_dim (int): The prompts' embedding dimension\n          image_embedding_size (tuple(int, int)): The spatial size of the\n            image embedding, as (H, W).\n          input_image_size (int): The padded size of the image as input\n            to the image encoder, as (H, W).\n          mask_in_chans (int): The number of hidden channels used for\n            encoding input masks.\n          activation (nn.Module): The activation to use when encoding\n            input masks.\n        \"\"\"\n        super().__init__()\n        self.embed_dim = embed_dim\n        self.input_image_size = input_image_size\n        self.image_embedding_size = image_embedding_size\n        self.pe_layer = PositionEmbeddingRandom(embed_dim // 2)\n\n        self.num_point_embeddings: int = 4  # pos/neg point + 2 box corners\n        point_embeddings = [\n            nn.Embedding(1, embed_dim) for i in range(self.num_point_embeddings)\n        ]\n        self.point_embeddings = nn.ModuleList(point_embeddings)\n        self.not_a_point_embed = nn.Embedding(1, embed_dim)\n\n        self.mask_input_size = (\n            4 * image_embedding_size[0],\n            4 * image_embedding_size[1],\n        )\n        self.mask_downscaling = nn.Sequential(\n            nn.Conv2d(1, mask_in_chans // 4, kernel_size=2, stride=2),\n            LayerNorm2d(mask_in_chans // 4),\n            activation(),\n            nn.Conv2d(mask_in_chans // 4, mask_in_chans, kernel_size=2, stride=2),\n            LayerNorm2d(mask_in_chans),\n            activation(),\n            nn.Conv2d(mask_in_chans, embed_dim, kernel_size=1),\n        )\n        self.no_mask_embed = nn.Embedding(1, embed_dim)\n\n    def get_dense_pe(self) -> torch.Tensor:\n        \"\"\"\n        Returns the positional encoding used to encode point prompts,\n        applied to a dense set of points the shape of the image encoding.\n\n        Returns:\n          torch.Tensor: Positional encoding with shape\n            1x(embed_dim)x(embedding_h)x(embedding_w)\n        \"\"\"\n        return self.pe_layer(self.image_embedding_size).unsqueeze(0)\n\n    def _embed_points(\n        self,\n        points: torch.Tensor,\n        labels: torch.Tensor,\n        pad: bool,\n    ) -> torch.Tensor:\n        \"\"\"Embeds point prompts.\"\"\"\n        points = points + 0.5  # Shift to center of pixel\n        if pad:\n            padding_point = torch.zeros((points.shape[0], 1, 2), device=points.device)\n            padding_label = -torch.ones((labels.shape[0], 1), device=labels.device)\n            points = torch.cat([points, padding_point], dim=1)\n            labels = torch.cat([labels, padding_label], dim=1)\n        point_embedding = self.pe_layer.forward_with_coords(\n            points, self.input_image_size\n        )\n        point_embedding[labels == -1] = 0.0\n        point_embedding[labels == -1] += self.not_a_point_embed.weight\n        point_embedding[labels == 0] += self.point_embeddings[0].weight\n        point_embedding[labels == 1] += self.point_embeddings[1].weight\n        return point_embedding\n\n    def _embed_boxes(self, boxes: torch.Tensor) -> torch.Tensor:\n        \"\"\"Embeds box prompts.\"\"\"\n        boxes = boxes + 0.5  # Shift to center of pixel\n        coords = boxes.reshape(-1, 2, 2)\n        corner_embedding = self.pe_layer.forward_with_coords(\n            coords, self.input_image_size\n        )\n        corner_embedding[:, 0, :] += self.point_embeddings[2].weight\n        corner_embedding[:, 1, :] += self.point_embeddings[3].weight\n        return corner_embedding\n\n    def _embed_masks(self, masks: torch.Tensor) -> torch.Tensor:\n        \"\"\"Embeds mask inputs.\"\"\"\n        mask_embedding = self.mask_downscaling(masks)\n        return mask_embedding\n\n    def _get_batch_size(\n        self,\n        points: Optional[Tuple[torch.Tensor, torch.Tensor]],\n        boxes: Optional[torch.Tensor],\n        masks: Optional[torch.Tensor],\n        text_embeds: Optional[torch.Tensor],\n    ) -> int:\n        \"\"\"\n        Gets the batch size of the output given the batch size of the input prompts.\n        \"\"\"\n        if points is not None:\n            return points[0].shape[0]\n        elif boxes is not None:\n            return boxes.shape[0]\n        elif masks is not None:\n            return masks.shape[0]\n        elif text_embeds is not None:\n            return text_embeds.shape[0]\n        else:\n            return 1\n\n    def _get_device(self) -> torch.device:\n        return self.point_embeddings[0].weight.device\n\n    def forward(\n        self,\n        points: Optional[Tuple[torch.Tensor, torch.Tensor]],\n        boxes: Optional[torch.Tensor],\n        masks: Optional[torch.Tensor],\n        text_embeds: Optional[torch.Tensor],\n    ) -> Tuple[torch.Tensor, torch.Tensor]:\n        \"\"\"\n        Embeds different types of prompts, returning both sparse and dense\n        embeddings.\n\n        Arguments:\n          points (tuple(torch.Tensor, torch.Tensor) or none): point coordinates\n            and labels to embed.\n          boxes (torch.Tensor or none): boxes to embed\n          masks (torch.Tensor or none): masks to embed\n\n        Returns:\n          torch.Tensor: sparse embeddings for the points and boxes, with shape\n            BxNx(embed_dim), where N is determined by the number of input points\n            and boxes.\n          torch.Tensor: dense embeddings for the masks, in the shape\n            Bx(embed_dim)x(embed_H)x(embed_W)\n        \"\"\"\n        bs = self._get_batch_size(points, boxes, masks, text_embeds)\n        sparse_embeddings = torch.empty(\n            (bs, 0, self.embed_dim), device=self._get_device()\n        )\n        if points is not None:\n            coords, labels = points\n            point_embeddings = self._embed_points(coords, labels, pad=(boxes is None))\n            sparse_embeddings = torch.cat([sparse_embeddings, point_embeddings], dim=1)\n        if boxes is not None:\n            box_embeddings = self._embed_boxes(boxes)\n            sparse_embeddings = torch.cat([sparse_embeddings, box_embeddings], dim=1)\n\n        if text_embeds is not None:\n            sparse_embeddings = torch.cat([sparse_embeddings, text_embeds], dim=1)\n\n        if masks is not None:\n            dense_embeddings = self._embed_masks(masks)\n        else:\n            dense_embeddings = self.no_mask_embed.weight.reshape(1, -1, 1, 1).expand(\n                bs, -1, self.image_embedding_size[0], self.image_embedding_size[1]\n            )\n\n        return sparse_embeddings, dense_embeddings\n\n\nclass PositionEmbeddingRandom(nn.Module):\n    \"\"\"\n    Positional encoding using random spatial frequencies.\n    \"\"\"\n\n    def __init__(self, num_pos_feats: int = 64, scale: Optional[float] = None) -> None:\n        super().__init__()\n        if scale is None or scale <= 0.0:\n            scale = 1.0\n        self.register_buffer(\n            \"positional_encoding_gaussian_matrix\",\n            scale * torch.randn((2, num_pos_feats)),\n        )\n\n    def _pe_encoding(self, coords: torch.Tensor) -> torch.Tensor:\n        \"\"\"Positionally encode points that are normalized to [0,1].\"\"\"\n        # assuming coords are in [0, 1]^2 square and have d_1 x ... x d_n x 2 shape\n        coords = 2 * coords - 1\n\n        if coords.dtype != self.positional_encoding_gaussian_matrix.dtype:\n            coords = coords.to(self.positional_encoding_gaussian_matrix.dtype)\n\n        coords = coords @ self.positional_encoding_gaussian_matrix\n        coords = 2 * np.pi * coords\n        # outputs d_1 x ... x d_n x C shape\n        return torch.cat([torch.sin(coords), torch.cos(coords)], dim=-1)\n\n    def forward(self, size: Tuple[int, int]) -> torch.Tensor:\n        \"\"\"Generate positional encoding for a grid of the specified size.\"\"\"\n        h, w = size\n        device: Any = self.positional_encoding_gaussian_matrix.device\n        grid = torch.ones(\n            (h, w), device=device, dtype=self.positional_encoding_gaussian_matrix.dtype\n        )\n        y_embed = grid.cumsum(dim=0) - 0.5\n        x_embed = grid.cumsum(dim=1) - 0.5\n        y_embed = y_embed / h\n        x_embed = x_embed / w\n\n        pe = self._pe_encoding(torch.stack([x_embed, y_embed], dim=-1))\n        return pe.permute(2, 0, 1)  # C x H x W\n\n    def forward_with_coords(\n        self, coords_input: torch.Tensor, image_size: Tuple[int, int]\n    ) -> torch.Tensor:\n        \"\"\"Positionally encode points that are not normalized to [0,1].\"\"\"\n        coords = coords_input.clone()\n        coords[:, :, 0] = coords[:, :, 0] / image_size[1]\n        coords[:, :, 1] = coords[:, :, 1] / image_size[0]\n        return self._pe_encoding(coords.to(torch.float))  # B x N x C\n"
  },
  {
    "path": "model/segment_anything/modeling/sam.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom typing import Any, Dict, List, Tuple\n\nimport torch\nfrom torch import nn\nfrom torch.nn import functional as F\n\nfrom .image_encoder import ImageEncoderViT\nfrom .mask_decoder import MaskDecoder\nfrom .prompt_encoder import PromptEncoder\n\n\nclass Sam(nn.Module):\n    mask_threshold: float = 0.0\n    image_format: str = \"RGB\"\n\n    def __init__(\n        self,\n        image_encoder: ImageEncoderViT,\n        prompt_encoder: PromptEncoder,\n        mask_decoder: MaskDecoder,\n        pixel_mean: List[float] = [123.675, 116.28, 103.53],\n        pixel_std: List[float] = [58.395, 57.12, 57.375],\n    ) -> None:\n        \"\"\"\n        SAM predicts object masks from an image and input prompts.\n\n        Arguments:\n          image_encoder (ImageEncoderViT): The backbone used to encode the\n            image into image embeddings that allow for efficient mask prediction.\n          prompt_encoder (PromptEncoder): Encodes various types of input prompts.\n          mask_decoder (MaskDecoder): Predicts masks from the image embeddings\n            and encoded prompts.\n          pixel_mean (list(float)): Mean values for normalizing pixels in the input image.\n          pixel_std (list(float)): Std values for normalizing pixels in the input image.\n        \"\"\"\n        super().__init__()\n        self.image_encoder = image_encoder\n        self.prompt_encoder = prompt_encoder\n        self.mask_decoder = mask_decoder\n        self.register_buffer(\n            \"pixel_mean\", torch.Tensor(pixel_mean).view(-1, 1, 1), False\n        )\n        self.register_buffer(\"pixel_std\", torch.Tensor(pixel_std).view(-1, 1, 1), False)\n\n    @property\n    def device(self) -> Any:\n        return self.pixel_mean.device\n\n    @torch.no_grad()\n    def forward(\n        self,\n        batched_input: List[Dict[str, Any]],\n        multimask_output: bool,\n    ) -> List[Dict[str, torch.Tensor]]:\n        \"\"\"\n        Predicts masks end-to-end from provided images and prompts.\n        If prompts are not known in advance, using SamPredictor is\n        recommended over calling the model directly.\n\n        Arguments:\n          batched_input (list(dict)): A list over input images, each a\n            dictionary with the following keys. A prompt key can be\n            excluded if it is not present.\n              'image': The image as a torch tensor in 3xHxW format,\n                already transformed for input to the model.\n              'original_size': (tuple(int, int)) The original size of\n                the image before transformation, as (H, W).\n              'point_coords': (torch.Tensor) Batched point prompts for\n                this image, with shape BxNx2. Already transformed to the\n                input frame of the model.\n              'point_labels': (torch.Tensor) Batched labels for point prompts,\n                with shape BxN.\n              'boxes': (torch.Tensor) Batched box inputs, with shape Bx4.\n                Already transformed to the input frame of the model.\n              'mask_inputs': (torch.Tensor) Batched mask inputs to the model,\n                in the form Bx1xHxW.\n          multimask_output (bool): Whether the model should predict multiple\n            disambiguating masks, or return a single mask.\n\n        Returns:\n          (list(dict)): A list over input images, where each element is\n            as dictionary with the following keys.\n              'masks': (torch.Tensor) Batched binary mask predictions,\n                with shape BxCxHxW, where B is the number of input prompts,\n                C is determined by multimask_output, and (H, W) is the\n                original size of the image.\n              'iou_predictions': (torch.Tensor) The model's predictions\n                of mask quality, in shape BxC.\n              'low_res_logits': (torch.Tensor) Low resolution logits with\n                shape BxCxHxW, where H=W=256. Can be passed as mask input\n                to subsequent iterations of prediction.\n        \"\"\"\n        input_images = torch.stack(\n            [self.preprocess(x[\"image\"]) for x in batched_input], dim=0\n        )\n        image_embeddings = self.image_encoder(input_images)\n\n        outputs = []\n        for image_record, curr_embedding in zip(batched_input, image_embeddings):\n            if \"point_coords\" in image_record:\n                points = (image_record[\"point_coords\"], image_record[\"point_labels\"])\n            else:\n                points = None\n            sparse_embeddings, dense_embeddings = self.prompt_encoder(\n                points=points,\n                boxes=image_record.get(\"boxes\", None),\n                masks=image_record.get(\"mask_inputs\", None),\n            )\n            low_res_masks, iou_predictions = self.mask_decoder(\n                image_embeddings=curr_embedding.unsqueeze(0),\n                image_pe=self.prompt_encoder.get_dense_pe(),\n                sparse_prompt_embeddings=sparse_embeddings,\n                dense_prompt_embeddings=dense_embeddings,\n                multimask_output=multimask_output,\n            )\n            masks = self.postprocess_masks(\n                low_res_masks,\n                input_size=image_record[\"image\"].shape[-2:],\n                original_size=image_record[\"original_size\"],\n            )\n            masks = masks > self.mask_threshold\n            outputs.append(\n                {\n                    \"masks\": masks,\n                    \"iou_predictions\": iou_predictions,\n                    \"low_res_logits\": low_res_masks,\n                }\n            )\n        return outputs\n\n    def postprocess_masks(\n        self,\n        masks: torch.Tensor,\n        input_size: Tuple[int, ...],\n        original_size: Tuple[int, ...],\n    ) -> torch.Tensor:\n        \"\"\"\n        Remove padding and upscale masks to the original image size.\n\n        Arguments:\n          masks (torch.Tensor): Batched masks from the mask_decoder,\n            in BxCxHxW format.\n          input_size (tuple(int, int)): The size of the image input to the\n            model, in (H, W) format. Used to remove padding.\n          original_size (tuple(int, int)): The original size of the image\n            before resizing for input to the model, in (H, W) format.\n\n        Returns:\n          (torch.Tensor): Batched masks in BxCxHxW format, where (H, W)\n            is given by original_size.\n        \"\"\"\n\n        dtype = masks.dtype\n\n        masks = F.interpolate(\n            masks.float(),\n            (self.image_encoder.img_size, self.image_encoder.img_size),\n            mode=\"bilinear\",\n            align_corners=False,\n        )\n        # masks = masks.to(dtype)\n        masks = masks[..., : input_size[0], : input_size[1]]\n        masks = F.interpolate(\n            masks, original_size, mode=\"bilinear\", align_corners=False\n        )\n        return masks\n\n    def preprocess(self, x: torch.Tensor) -> torch.Tensor:\n        \"\"\"Normalize pixel values and pad to a square input.\"\"\"\n        # Normalize colors\n        x = (x - self.pixel_mean) / self.pixel_std\n\n        # Pad\n        h, w = x.shape[-2:]\n        padh = self.image_encoder.img_size - h\n        padw = self.image_encoder.img_size - w\n        x = F.pad(x, (0, padw, 0, padh))\n        return x\n"
  },
  {
    "path": "model/segment_anything/modeling/transformer.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nimport math\nfrom typing import Tuple, Type\n\nimport torch\nfrom torch import Tensor, nn\n\nfrom .common import MLPBlock\n\n\nclass TwoWayTransformer(nn.Module):\n    def __init__(\n        self,\n        depth: int,\n        embedding_dim: int,\n        num_heads: int,\n        mlp_dim: int,\n        activation: Type[nn.Module] = nn.ReLU,\n        attention_downsample_rate: int = 2,\n    ) -> None:\n        \"\"\"\n        A transformer decoder that attends to an input image using\n        queries whose positional embedding is supplied.\n\n        Args:\n          depth (int): number of layers in the transformer\n          embedding_dim (int): the channel dimension for the input embeddings\n          num_heads (int): the number of heads for multihead attention. Must\n            divide embedding_dim\n          mlp_dim (int): the channel dimension internal to the MLP block\n          activation (nn.Module): the activation to use in the MLP block\n        \"\"\"\n        super().__init__()\n        self.depth = depth\n        self.embedding_dim = embedding_dim\n        self.num_heads = num_heads\n        self.mlp_dim = mlp_dim\n        self.layers = nn.ModuleList()\n\n        for i in range(depth):\n            self.layers.append(\n                TwoWayAttentionBlock(\n                    embedding_dim=embedding_dim,\n                    num_heads=num_heads,\n                    mlp_dim=mlp_dim,\n                    activation=activation,\n                    attention_downsample_rate=attention_downsample_rate,\n                    skip_first_layer_pe=(i == 0),\n                )\n            )\n\n        self.final_attn_token_to_image = Attention(\n            embedding_dim, num_heads, downsample_rate=attention_downsample_rate\n        )\n        self.norm_final_attn = nn.LayerNorm(embedding_dim)\n\n    def forward(\n        self,\n        image_embedding: Tensor,\n        image_pe: Tensor,\n        point_embedding: Tensor,\n    ) -> Tuple[Tensor, Tensor]:\n        \"\"\"\n        Args:\n          image_embedding (torch.Tensor): image to attend to. Should be shape\n            B x embedding_dim x h x w for any h and w.\n          image_pe (torch.Tensor): the positional encoding to add to the image. Must\n            have the same shape as image_embedding.\n          point_embedding (torch.Tensor): the embedding to add to the query points.\n            Must have shape B x N_points x embedding_dim for any N_points.\n\n        Returns:\n          torch.Tensor: the processed point_embedding\n          torch.Tensor: the processed image_embedding\n        \"\"\"\n        # BxCxHxW -> BxHWxC == B x N_image_tokens x C\n        bs, c, h, w = image_embedding.shape\n        image_embedding = image_embedding.flatten(2).permute(0, 2, 1)\n        image_pe = image_pe.flatten(2).permute(0, 2, 1)\n\n        # Prepare queries\n        queries = point_embedding\n        keys = image_embedding\n\n        # Apply transformer blocks and final layernorm\n        for layer in self.layers:\n            queries, keys = layer(\n                queries=queries,\n                keys=keys,\n                query_pe=point_embedding,\n                key_pe=image_pe,\n            )\n\n        # Apply the final attention layer from the points to the image\n        q = queries + point_embedding\n        k = keys + image_pe\n        attn_out = self.final_attn_token_to_image(q=q, k=k, v=keys)\n        queries = queries + attn_out\n        queries = self.norm_final_attn(queries)\n\n        return queries, keys\n\n\nclass TwoWayAttentionBlock(nn.Module):\n    def __init__(\n        self,\n        embedding_dim: int,\n        num_heads: int,\n        mlp_dim: int = 2048,\n        activation: Type[nn.Module] = nn.ReLU,\n        attention_downsample_rate: int = 2,\n        skip_first_layer_pe: bool = False,\n    ) -> None:\n        \"\"\"\n        A transformer block with four layers: (1) self-attention of sparse\n        inputs, (2) cross attention of sparse inputs to dense inputs, (3) mlp\n        block on sparse inputs, and (4) cross attention of dense inputs to sparse\n        inputs.\n\n        Arguments:\n          embedding_dim (int): the channel dimension of the embeddings\n          num_heads (int): the number of heads in the attention layers\n          mlp_dim (int): the hidden dimension of the mlp block\n          activation (nn.Module): the activation of the mlp block\n          skip_first_layer_pe (bool): skip the PE on the first layer\n        \"\"\"\n        super().__init__()\n        self.self_attn = Attention(embedding_dim, num_heads)\n        self.norm1 = nn.LayerNorm(embedding_dim)\n\n        self.cross_attn_token_to_image = Attention(\n            embedding_dim, num_heads, downsample_rate=attention_downsample_rate\n        )\n        self.norm2 = nn.LayerNorm(embedding_dim)\n\n        self.mlp = MLPBlock(embedding_dim, mlp_dim, activation)\n        self.norm3 = nn.LayerNorm(embedding_dim)\n\n        self.norm4 = nn.LayerNorm(embedding_dim)\n        self.cross_attn_image_to_token = Attention(\n            embedding_dim, num_heads, downsample_rate=attention_downsample_rate\n        )\n\n        self.skip_first_layer_pe = skip_first_layer_pe\n\n    def forward(\n        self, queries: Tensor, keys: Tensor, query_pe: Tensor, key_pe: Tensor\n    ) -> Tuple[Tensor, Tensor]:\n        # Self attention block\n        if self.skip_first_layer_pe:\n            queries = self.self_attn(q=queries, k=queries, v=queries)\n        else:\n            q = queries + query_pe\n            attn_out = self.self_attn(q=q, k=q, v=queries)\n            queries = queries + attn_out\n        queries = self.norm1(queries)\n\n        # Cross attention block, tokens attending to image embedding\n        q = queries + query_pe\n        k = keys + key_pe\n        attn_out = self.cross_attn_token_to_image(q=q, k=k, v=keys)\n        queries = queries + attn_out\n        queries = self.norm2(queries)\n\n        # MLP block\n        mlp_out = self.mlp(queries)\n        queries = queries + mlp_out\n        queries = self.norm3(queries)\n\n        # Cross attention block, image embedding attending to tokens\n        q = queries + query_pe\n        k = keys + key_pe\n        attn_out = self.cross_attn_image_to_token(q=k, k=q, v=queries)\n        keys = keys + attn_out\n        keys = self.norm4(keys)\n\n        return queries, keys\n\n\nclass Attention(nn.Module):\n    \"\"\"\n    An attention layer that allows for downscaling the size of the embedding\n    after projection to queries, keys, and values.\n    \"\"\"\n\n    def __init__(\n        self,\n        embedding_dim: int,\n        num_heads: int,\n        downsample_rate: int = 1,\n    ) -> None:\n        super().__init__()\n        self.embedding_dim = embedding_dim\n        self.internal_dim = embedding_dim // downsample_rate\n        self.num_heads = num_heads\n        assert (\n            self.internal_dim % num_heads == 0\n        ), \"num_heads must divide embedding_dim.\"\n\n        self.q_proj = nn.Linear(embedding_dim, self.internal_dim)\n        self.k_proj = nn.Linear(embedding_dim, self.internal_dim)\n        self.v_proj = nn.Linear(embedding_dim, self.internal_dim)\n        self.out_proj = nn.Linear(self.internal_dim, embedding_dim)\n\n    def _separate_heads(self, x: Tensor, num_heads: int) -> Tensor:\n        b, n, c = x.shape\n        x = x.reshape(b, n, num_heads, c // num_heads)\n        return x.transpose(1, 2)  # B x N_heads x N_tokens x C_per_head\n\n    def _recombine_heads(self, x: Tensor) -> Tensor:\n        b, n_heads, n_tokens, c_per_head = x.shape\n        x = x.transpose(1, 2)\n        return x.reshape(b, n_tokens, n_heads * c_per_head)  # B x N_tokens x C\n\n    def forward(self, q: Tensor, k: Tensor, v: Tensor) -> Tensor:\n        # Input projections\n        q = self.q_proj(q)\n        k = self.k_proj(k)\n        v = self.v_proj(v)\n\n        # Separate into heads\n        q = self._separate_heads(q, self.num_heads)\n        k = self._separate_heads(k, self.num_heads)\n        v = self._separate_heads(v, self.num_heads)\n\n        # Attention\n        _, _, _, c_per_head = q.shape\n        attn = q @ k.permute(0, 1, 3, 2)  # B x N_heads x N_tokens x N_tokens\n        attn = attn / math.sqrt(c_per_head)\n        attn = torch.softmax(attn, dim=-1)\n\n        # Get output\n        out = attn @ v\n        out = self._recombine_heads(out)\n        out = self.out_proj(out)\n\n        return out\n"
  },
  {
    "path": "model/segment_anything/predictor.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom typing import Optional, Tuple\n\nimport numpy as np\nimport torch\n\nfrom .modeling import Sam\nfrom .utils.transforms import ResizeLongestSide\n\n\nclass SamPredictor:\n    def __init__(\n        self,\n        sam_model: Sam,\n    ) -> None:\n        \"\"\"\n        Uses SAM to calculate the image embedding for an image, and then\n        allow repeated, efficient mask prediction given prompts.\n\n        Arguments:\n          sam_model (Sam): The model to use for mask prediction.\n        \"\"\"\n        super().__init__()\n        self.model = sam_model\n        self.transform = ResizeLongestSide(sam_model.image_encoder.img_size)\n        self.reset_image()\n\n    def set_image(\n        self,\n        image: np.ndarray,\n        image_format: str = \"RGB\",\n    ) -> None:\n        \"\"\"\n        Calculates the image embeddings for the provided image, allowing\n        masks to be predicted with the 'predict' method.\n\n        Arguments:\n          image (np.ndarray): The image for calculating masks. Expects an\n            image in HWC uint8 format, with pixel values in [0, 255].\n          image_format (str): The color format of the image, in ['RGB', 'BGR'].\n        \"\"\"\n        assert image_format in [\n            \"RGB\",\n            \"BGR\",\n        ], f\"image_format must be in ['RGB', 'BGR'], is {image_format}.\"\n        if image_format != self.model.image_format:\n            image = image[..., ::-1]\n\n        # Transform the image to the form expected by the model\n        input_image = self.transform.apply_image(image)\n        input_image_torch = torch.as_tensor(input_image, device=self.device)\n        input_image_torch = input_image_torch.permute(2, 0, 1).contiguous()[\n            None, :, :, :\n        ]\n\n        self.set_torch_image(input_image_torch, image.shape[:2])\n\n    @torch.no_grad()\n    def set_torch_image(\n        self,\n        transformed_image: torch.Tensor,\n        original_image_size: Tuple[int, ...],\n    ) -> None:\n        \"\"\"\n        Calculates the image embeddings for the provided image, allowing\n        masks to be predicted with the 'predict' method. Expects the input\n        image to be already transformed to the format expected by the model.\n\n        Arguments:\n          transformed_image (torch.Tensor): The input image, with shape\n            1x3xHxW, which has been transformed with ResizeLongestSide.\n          original_image_size (tuple(int, int)): The size of the image\n            before transformation, in (H, W) format.\n        \"\"\"\n        assert (\n            len(transformed_image.shape) == 4\n            and transformed_image.shape[1] == 3\n            and max(*transformed_image.shape[2:]) == self.model.image_encoder.img_size\n        ), f\"set_torch_image input must be BCHW with long side {self.model.image_encoder.img_size}.\"\n        self.reset_image()\n\n        self.original_size = original_image_size\n        self.input_size = tuple(transformed_image.shape[-2:])\n        input_image = self.model.preprocess(transformed_image)\n        self.features = self.model.image_encoder(input_image)\n        self.is_image_set = True\n\n    def predict(\n        self,\n        point_coords: Optional[np.ndarray] = None,\n        point_labels: Optional[np.ndarray] = None,\n        box: Optional[np.ndarray] = None,\n        mask_input: Optional[np.ndarray] = None,\n        multimask_output: bool = True,\n        return_logits: bool = False,\n    ) -> Tuple[np.ndarray, np.ndarray, np.ndarray]:\n        \"\"\"\n        Predict masks for the given input prompts, using the currently set image.\n\n        Arguments:\n          point_coords (np.ndarray or None): A Nx2 array of point prompts to the\n            model. Each point is in (X,Y) in pixels.\n          point_labels (np.ndarray or None): A length N array of labels for the\n            point prompts. 1 indicates a foreground point and 0 indicates a\n            background point.\n          box (np.ndarray or None): A length 4 array given a box prompt to the\n            model, in XYXY format.\n          mask_input (np.ndarray): A low resolution mask input to the model, typically\n            coming from a previous prediction iteration. Has form 1xHxW, where\n            for SAM, H=W=256.\n          multimask_output (bool): If true, the model will return three masks.\n            For ambiguous input prompts (such as a single click), this will often\n            produce better masks than a single prediction. If only a single\n            mask is needed, the model's predicted quality score can be used\n            to select the best mask. For non-ambiguous prompts, such as multiple\n            input prompts, multimask_output=False can give better results.\n          return_logits (bool): If true, returns un-thresholded masks logits\n            instead of a binary mask.\n\n        Returns:\n          (np.ndarray): The output masks in CxHxW format, where C is the\n            number of masks, and (H, W) is the original image size.\n          (np.ndarray): An array of length C containing the model's\n            predictions for the quality of each mask.\n          (np.ndarray): An array of shape CxHxW, where C is the number\n            of masks and H=W=256. These low resolution logits can be passed to\n            a subsequent iteration as mask input.\n        \"\"\"\n        if not self.is_image_set:\n            raise RuntimeError(\n                \"An image must be set with .set_image(...) before mask prediction.\"\n            )\n\n        # Transform input prompts\n        coords_torch, labels_torch, box_torch, mask_input_torch = None, None, None, None\n        if point_coords is not None:\n            assert (\n                point_labels is not None\n            ), \"point_labels must be supplied if point_coords is supplied.\"\n            point_coords = self.transform.apply_coords(point_coords, self.original_size)\n            coords_torch = torch.as_tensor(\n                point_coords, dtype=torch.float, device=self.device\n            )\n            labels_torch = torch.as_tensor(\n                point_labels, dtype=torch.int, device=self.device\n            )\n            coords_torch, labels_torch = coords_torch[None, :, :], labels_torch[None, :]\n        if box is not None:\n            box = self.transform.apply_boxes(box, self.original_size)\n            box_torch = torch.as_tensor(box, dtype=torch.float, device=self.device)\n            box_torch = box_torch[None, :]\n        if mask_input is not None:\n            mask_input_torch = torch.as_tensor(\n                mask_input, dtype=torch.float, device=self.device\n            )\n            mask_input_torch = mask_input_torch[None, :, :, :]\n\n        masks, iou_predictions, low_res_masks = self.predict_torch(\n            coords_torch,\n            labels_torch,\n            box_torch,\n            mask_input_torch,\n            multimask_output,\n            return_logits=return_logits,\n        )\n\n        masks_np = masks[0].detach().cpu().numpy()\n        iou_predictions_np = iou_predictions[0].detach().cpu().numpy()\n        low_res_masks_np = low_res_masks[0].detach().cpu().numpy()\n        return masks_np, iou_predictions_np, low_res_masks_np\n\n    @torch.no_grad()\n    def predict_torch(\n        self,\n        point_coords: Optional[torch.Tensor],\n        point_labels: Optional[torch.Tensor],\n        boxes: Optional[torch.Tensor] = None,\n        mask_input: Optional[torch.Tensor] = None,\n        multimask_output: bool = True,\n        return_logits: bool = False,\n    ) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]:\n        \"\"\"\n        Predict masks for the given input prompts, using the currently set image.\n        Input prompts are batched torch tensors and are expected to already be\n        transformed to the input frame using ResizeLongestSide.\n\n        Arguments:\n          point_coords (torch.Tensor or None): A BxNx2 array of point prompts to the\n            model. Each point is in (X,Y) in pixels.\n          point_labels (torch.Tensor or None): A BxN array of labels for the\n            point prompts. 1 indicates a foreground point and 0 indicates a\n            background point.\n          boxes (np.ndarray or None): A Bx4 array given a box prompt to the\n            model, in XYXY format.\n          mask_input (np.ndarray): A low resolution mask input to the model, typically\n            coming from a previous prediction iteration. Has form Bx1xHxW, where\n            for SAM, H=W=256. Masks returned by a previous iteration of the\n            predict method do not need further transformation.\n          multimask_output (bool): If true, the model will return three masks.\n            For ambiguous input prompts (such as a single click), this will often\n            produce better masks than a single prediction. If only a single\n            mask is needed, the model's predicted quality score can be used\n            to select the best mask. For non-ambiguous prompts, such as multiple\n            input prompts, multimask_output=False can give better results.\n          return_logits (bool): If true, returns un-thresholded masks logits\n            instead of a binary mask.\n\n        Returns:\n          (torch.Tensor): The output masks in BxCxHxW format, where C is the\n            number of masks, and (H, W) is the original image size.\n          (torch.Tensor): An array of shape BxC containing the model's\n            predictions for the quality of each mask.\n          (torch.Tensor): An array of shape BxCxHxW, where C is the number\n            of masks and H=W=256. These low res logits can be passed to\n            a subsequent iteration as mask input.\n        \"\"\"\n        if not self.is_image_set:\n            raise RuntimeError(\n                \"An image must be set with .set_image(...) before mask prediction.\"\n            )\n\n        if point_coords is not None:\n            points = (point_coords, point_labels)\n        else:\n            points = None\n\n        # Embed prompts\n        sparse_embeddings, dense_embeddings = self.model.prompt_encoder(\n            points=points,\n            boxes=boxes,\n            masks=mask_input,\n        )\n\n        # Predict masks\n        low_res_masks, iou_predictions = self.model.mask_decoder(\n            image_embeddings=self.features,\n            image_pe=self.model.prompt_encoder.get_dense_pe(),\n            sparse_prompt_embeddings=sparse_embeddings,\n            dense_prompt_embeddings=dense_embeddings,\n            multimask_output=multimask_output,\n        )\n\n        # Upscale the masks to the original image resolution\n        masks = self.model.postprocess_masks(\n            low_res_masks, self.input_size, self.original_size\n        )\n\n        if not return_logits:\n            masks = masks > self.model.mask_threshold\n\n        return masks, iou_predictions, low_res_masks\n\n    def get_image_embedding(self) -> torch.Tensor:\n        \"\"\"\n        Returns the image embeddings for the currently set image, with\n        shape 1xCxHxW, where C is the embedding dimension and (H,W) are\n        the embedding spatial dimension of SAM (typically C=256, H=W=64).\n        \"\"\"\n        if not self.is_image_set:\n            raise RuntimeError(\n                \"An image must be set with .set_image(...) to generate an embedding.\"\n            )\n        assert (\n            self.features is not None\n        ), \"Features must exist if an image has been set.\"\n        return self.features\n\n    @property\n    def device(self) -> torch.device:\n        return self.model.device\n\n    def reset_image(self) -> None:\n        \"\"\"Resets the currently set image.\"\"\"\n        self.is_image_set = False\n        self.features = None\n        self.orig_h = None\n        self.orig_w = None\n        self.input_h = None\n        self.input_w = None\n"
  },
  {
    "path": "model/segment_anything/utils/__init__.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n"
  },
  {
    "path": "model/segment_anything/utils/amg.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nimport math\nfrom copy import deepcopy\nfrom itertools import product\nfrom typing import Any, Dict, Generator, ItemsView, List, Tuple\n\nimport numpy as np\nimport torch\n\n\nclass MaskData:\n    \"\"\"\n    A structure for storing masks and their related data in batched format.\n    Implements basic filtering and concatenation.\n    \"\"\"\n\n    def __init__(self, **kwargs) -> None:\n        for v in kwargs.values():\n            assert isinstance(\n                v, (list, np.ndarray, torch.Tensor)\n            ), \"MaskData only supports list, numpy arrays, and torch tensors.\"\n        self._stats = dict(**kwargs)\n\n    def __setitem__(self, key: str, item: Any) -> None:\n        assert isinstance(\n            item, (list, np.ndarray, torch.Tensor)\n        ), \"MaskData only supports list, numpy arrays, and torch tensors.\"\n        self._stats[key] = item\n\n    def __delitem__(self, key: str) -> None:\n        del self._stats[key]\n\n    def __getitem__(self, key: str) -> Any:\n        return self._stats[key]\n\n    def items(self) -> ItemsView[str, Any]:\n        return self._stats.items()\n\n    def filter(self, keep: torch.Tensor) -> None:\n        for k, v in self._stats.items():\n            if v is None:\n                self._stats[k] = None\n            elif isinstance(v, torch.Tensor):\n                self._stats[k] = v[torch.as_tensor(keep, device=v.device)]\n            elif isinstance(v, np.ndarray):\n                self._stats[k] = v[keep.detach().cpu().numpy()]\n            elif isinstance(v, list) and keep.dtype == torch.bool:\n                self._stats[k] = [a for i, a in enumerate(v) if keep[i]]\n            elif isinstance(v, list):\n                self._stats[k] = [v[i] for i in keep]\n            else:\n                raise TypeError(f\"MaskData key {k} has an unsupported type {type(v)}.\")\n\n    def cat(self, new_stats: \"MaskData\") -> None:\n        for k, v in new_stats.items():\n            if k not in self._stats or self._stats[k] is None:\n                self._stats[k] = deepcopy(v)\n            elif isinstance(v, torch.Tensor):\n                self._stats[k] = torch.cat([self._stats[k], v], dim=0)\n            elif isinstance(v, np.ndarray):\n                self._stats[k] = np.concatenate([self._stats[k], v], axis=0)\n            elif isinstance(v, list):\n                self._stats[k] = self._stats[k] + deepcopy(v)\n            else:\n                raise TypeError(f\"MaskData key {k} has an unsupported type {type(v)}.\")\n\n    def to_numpy(self) -> None:\n        for k, v in self._stats.items():\n            if isinstance(v, torch.Tensor):\n                self._stats[k] = v.detach().cpu().numpy()\n\n\ndef is_box_near_crop_edge(\n    boxes: torch.Tensor, crop_box: List[int], orig_box: List[int], atol: float = 20.0\n) -> torch.Tensor:\n    \"\"\"Filter masks at the edge of a crop, but not at the edge of the original image.\"\"\"\n    crop_box_torch = torch.as_tensor(crop_box, dtype=torch.float, device=boxes.device)\n    orig_box_torch = torch.as_tensor(orig_box, dtype=torch.float, device=boxes.device)\n    boxes = uncrop_boxes_xyxy(boxes, crop_box).float()\n    near_crop_edge = torch.isclose(boxes, crop_box_torch[None, :], atol=atol, rtol=0)\n    near_image_edge = torch.isclose(boxes, orig_box_torch[None, :], atol=atol, rtol=0)\n    near_crop_edge = torch.logical_and(near_crop_edge, ~near_image_edge)\n    return torch.any(near_crop_edge, dim=1)\n\n\ndef box_xyxy_to_xywh(box_xyxy: torch.Tensor) -> torch.Tensor:\n    box_xywh = deepcopy(box_xyxy)\n    box_xywh[2] = box_xywh[2] - box_xywh[0]\n    box_xywh[3] = box_xywh[3] - box_xywh[1]\n    return box_xywh\n\n\ndef batch_iterator(batch_size: int, *args) -> Generator[List[Any], None, None]:\n    assert len(args) > 0 and all(\n        len(a) == len(args[0]) for a in args\n    ), \"Batched iteration must have inputs of all the same size.\"\n    n_batches = len(args[0]) // batch_size + int(len(args[0]) % batch_size != 0)\n    for b in range(n_batches):\n        yield [arg[b * batch_size : (b + 1) * batch_size] for arg in args]\n\n\ndef mask_to_rle_pytorch(tensor: torch.Tensor) -> List[Dict[str, Any]]:\n    \"\"\"\n    Encodes masks to an uncompressed RLE, in the format expected by\n    pycoco tools.\n    \"\"\"\n    # Put in fortran order and flatten h,w\n    b, h, w = tensor.shape\n    tensor = tensor.permute(0, 2, 1).flatten(1)\n\n    # Compute change indices\n    diff = tensor[:, 1:] ^ tensor[:, :-1]\n    change_indices = diff.nonzero()\n\n    # Encode run length\n    out = []\n    for i in range(b):\n        cur_idxs = change_indices[change_indices[:, 0] == i, 1]\n        cur_idxs = torch.cat(\n            [\n                torch.tensor([0], dtype=cur_idxs.dtype, device=cur_idxs.device),\n                cur_idxs + 1,\n                torch.tensor([h * w], dtype=cur_idxs.dtype, device=cur_idxs.device),\n            ]\n        )\n        btw_idxs = cur_idxs[1:] - cur_idxs[:-1]\n        counts = [] if tensor[i, 0] == 0 else [0]\n        counts.extend(btw_idxs.detach().cpu().tolist())\n        out.append({\"size\": [h, w], \"counts\": counts})\n    return out\n\n\ndef rle_to_mask(rle: Dict[str, Any]) -> np.ndarray:\n    \"\"\"Compute a binary mask from an uncompressed RLE.\"\"\"\n    h, w = rle[\"size\"]\n    mask = np.empty(h * w, dtype=bool)\n    idx = 0\n    parity = False\n    for count in rle[\"counts\"]:\n        mask[idx : idx + count] = parity\n        idx += count\n        parity ^= True\n    mask = mask.reshape(w, h)\n    return mask.transpose()  # Put in C order\n\n\ndef area_from_rle(rle: Dict[str, Any]) -> int:\n    return sum(rle[\"counts\"][1::2])\n\n\ndef calculate_stability_score(\n    masks: torch.Tensor, mask_threshold: float, threshold_offset: float\n) -> torch.Tensor:\n    \"\"\"\n    Computes the stability score for a batch of masks. The stability\n    score is the IoU between the binary masks obtained by thresholding\n    the predicted mask logits at high and low values.\n    \"\"\"\n    # One mask is always contained inside the other.\n    # Save memory by preventing unnecessary cast to torch.int64\n    intersections = (\n        (masks > (mask_threshold + threshold_offset))\n        .sum(-1, dtype=torch.int16)\n        .sum(-1, dtype=torch.int32)\n    )\n    unions = (\n        (masks > (mask_threshold - threshold_offset))\n        .sum(-1, dtype=torch.int16)\n        .sum(-1, dtype=torch.int32)\n    )\n    return intersections / unions\n\n\ndef build_point_grid(n_per_side: int) -> np.ndarray:\n    \"\"\"Generates a 2D grid of points evenly spaced in [0,1]x[0,1].\"\"\"\n    offset = 1 / (2 * n_per_side)\n    points_one_side = np.linspace(offset, 1 - offset, n_per_side)\n    points_x = np.tile(points_one_side[None, :], (n_per_side, 1))\n    points_y = np.tile(points_one_side[:, None], (1, n_per_side))\n    points = np.stack([points_x, points_y], axis=-1).reshape(-1, 2)\n    return points\n\n\ndef build_all_layer_point_grids(\n    n_per_side: int, n_layers: int, scale_per_layer: int\n) -> List[np.ndarray]:\n    \"\"\"Generates point grids for all crop layers.\"\"\"\n    points_by_layer = []\n    for i in range(n_layers + 1):\n        n_points = int(n_per_side / (scale_per_layer**i))\n        points_by_layer.append(build_point_grid(n_points))\n    return points_by_layer\n\n\ndef generate_crop_boxes(\n    im_size: Tuple[int, ...], n_layers: int, overlap_ratio: float\n) -> Tuple[List[List[int]], List[int]]:\n    \"\"\"\n    Generates a list of crop boxes of different sizes. Each layer\n    has (2**i)**2 boxes for the ith layer.\n    \"\"\"\n    crop_boxes, layer_idxs = [], []\n    im_h, im_w = im_size\n    short_side = min(im_h, im_w)\n\n    # Original image\n    crop_boxes.append([0, 0, im_w, im_h])\n    layer_idxs.append(0)\n\n    def crop_len(orig_len, n_crops, overlap):\n        return int(math.ceil((overlap * (n_crops - 1) + orig_len) / n_crops))\n\n    for i_layer in range(n_layers):\n        n_crops_per_side = 2 ** (i_layer + 1)\n        overlap = int(overlap_ratio * short_side * (2 / n_crops_per_side))\n\n        crop_w = crop_len(im_w, n_crops_per_side, overlap)\n        crop_h = crop_len(im_h, n_crops_per_side, overlap)\n\n        crop_box_x0 = [int((crop_w - overlap) * i) for i in range(n_crops_per_side)]\n        crop_box_y0 = [int((crop_h - overlap) * i) for i in range(n_crops_per_side)]\n\n        # Crops in XYWH format\n        for x0, y0 in product(crop_box_x0, crop_box_y0):\n            box = [x0, y0, min(x0 + crop_w, im_w), min(y0 + crop_h, im_h)]\n            crop_boxes.append(box)\n            layer_idxs.append(i_layer + 1)\n\n    return crop_boxes, layer_idxs\n\n\ndef uncrop_boxes_xyxy(boxes: torch.Tensor, crop_box: List[int]) -> torch.Tensor:\n    x0, y0, _, _ = crop_box\n    offset = torch.tensor([[x0, y0, x0, y0]], device=boxes.device)\n    # Check if boxes has a channel dimension\n    if len(boxes.shape) == 3:\n        offset = offset.unsqueeze(1)\n    return boxes + offset\n\n\ndef uncrop_points(points: torch.Tensor, crop_box: List[int]) -> torch.Tensor:\n    x0, y0, _, _ = crop_box\n    offset = torch.tensor([[x0, y0]], device=points.device)\n    # Check if points has a channel dimension\n    if len(points.shape) == 3:\n        offset = offset.unsqueeze(1)\n    return points + offset\n\n\ndef uncrop_masks(\n    masks: torch.Tensor, crop_box: List[int], orig_h: int, orig_w: int\n) -> torch.Tensor:\n    x0, y0, x1, y1 = crop_box\n    if x0 == 0 and y0 == 0 and x1 == orig_w and y1 == orig_h:\n        return masks\n    # Coordinate transform masks\n    pad_x, pad_y = orig_w - (x1 - x0), orig_h - (y1 - y0)\n    pad = (x0, pad_x - x0, y0, pad_y - y0)\n    return torch.nn.functional.pad(masks, pad, value=0)\n\n\ndef remove_small_regions(\n    mask: np.ndarray, area_thresh: float, mode: str\n) -> Tuple[np.ndarray, bool]:\n    \"\"\"\n    Removes small disconnected regions and holes in a mask. Returns the\n    mask and an indicator of if the mask has been modified.\n    \"\"\"\n    import cv2  # type: ignore\n\n    assert mode in [\"holes\", \"islands\"]\n    correct_holes = mode == \"holes\"\n    working_mask = (correct_holes ^ mask).astype(np.uint8)\n    n_labels, regions, stats, _ = cv2.connectedComponentsWithStats(working_mask, 8)\n    sizes = stats[:, -1][1:]  # Row 0 is background label\n    small_regions = [i + 1 for i, s in enumerate(sizes) if s < area_thresh]\n    if len(small_regions) == 0:\n        return mask, False\n    fill_labels = [0] + small_regions\n    if not correct_holes:\n        fill_labels = [i for i in range(n_labels) if i not in fill_labels]\n        # If every region is below threshold, keep largest\n        if len(fill_labels) == 0:\n            fill_labels = [int(np.argmax(sizes)) + 1]\n    mask = np.isin(regions, fill_labels)\n    return mask, True\n\n\ndef coco_encode_rle(uncompressed_rle: Dict[str, Any]) -> Dict[str, Any]:\n    from pycocotools import mask as mask_utils  # type: ignore\n\n    h, w = uncompressed_rle[\"size\"]\n    rle = mask_utils.frPyObjects(uncompressed_rle, h, w)\n    rle[\"counts\"] = rle[\"counts\"].decode(\"utf-8\")  # Necessary to serialize with json\n    return rle\n\n\ndef batched_mask_to_box(masks: torch.Tensor) -> torch.Tensor:\n    \"\"\"\n    Calculates boxes in XYXY format around masks. Return [0,0,0,0] for\n    an empty mask. For input shape C1xC2x...xHxW, the output shape is C1xC2x...x4.\n    \"\"\"\n    # torch.max below raises an error on empty inputs, just skip in this case\n    if torch.numel(masks) == 0:\n        return torch.zeros(*masks.shape[:-2], 4, device=masks.device)\n\n    # Normalize shape to CxHxW\n    shape = masks.shape\n    h, w = shape[-2:]\n    if len(shape) > 2:\n        masks = masks.flatten(0, -3)\n    else:\n        masks = masks.unsqueeze(0)\n\n    # Get top and bottom edges\n    in_height, _ = torch.max(masks, dim=-1)\n    in_height_coords = in_height * torch.arange(h, device=in_height.device)[None, :]\n    bottom_edges, _ = torch.max(in_height_coords, dim=-1)\n    in_height_coords = in_height_coords + h * (~in_height)\n    top_edges, _ = torch.min(in_height_coords, dim=-1)\n\n    # Get left and right edges\n    in_width, _ = torch.max(masks, dim=-2)\n    in_width_coords = in_width * torch.arange(w, device=in_width.device)[None, :]\n    right_edges, _ = torch.max(in_width_coords, dim=-1)\n    in_width_coords = in_width_coords + w * (~in_width)\n    left_edges, _ = torch.min(in_width_coords, dim=-1)\n\n    # If the mask is empty the right edge will be to the left of the left edge.\n    # Replace these boxes with [0, 0, 0, 0]\n    empty_filter = (right_edges < left_edges) | (bottom_edges < top_edges)\n    out = torch.stack([left_edges, top_edges, right_edges, bottom_edges], dim=-1)\n    out = out * (~empty_filter).unsqueeze(-1)\n\n    # Return to original shape\n    if len(shape) > 2:\n        out = out.reshape(*shape[:-2], 4)\n    else:\n        out = out[0]\n\n    return out\n"
  },
  {
    "path": "model/segment_anything/utils/onnx.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom typing import Tuple\n\nimport torch\nimport torch.nn as nn\nfrom torch.nn import functional as F\n\nfrom ..modeling import Sam\nfrom .amg import calculate_stability_score\n\n\nclass SamOnnxModel(nn.Module):\n    \"\"\"\n    This model should not be called directly, but is used in ONNX export.\n    It combines the prompt encoder, mask decoder, and mask postprocessing of Sam,\n    with some functions modified to enable model tracing. Also supports extra\n    options controlling what information. See the ONNX export script for details.\n    \"\"\"\n\n    def __init__(\n        self,\n        model: Sam,\n        return_single_mask: bool,\n        use_stability_score: bool = False,\n        return_extra_metrics: bool = False,\n    ) -> None:\n        super().__init__()\n        self.mask_decoder = model.mask_decoder\n        self.model = model\n        self.img_size = model.image_encoder.img_size\n        self.return_single_mask = return_single_mask\n        self.use_stability_score = use_stability_score\n        self.stability_score_offset = 1.0\n        self.return_extra_metrics = return_extra_metrics\n\n    @staticmethod\n    def resize_longest_image_size(\n        input_image_size: torch.Tensor, longest_side: int\n    ) -> torch.Tensor:\n        input_image_size = input_image_size.to(torch.float32)\n        scale = longest_side / torch.max(input_image_size)\n        transformed_size = scale * input_image_size\n        transformed_size = torch.floor(transformed_size + 0.5).to(torch.int64)\n        return transformed_size\n\n    def _embed_points(\n        self, point_coords: torch.Tensor, point_labels: torch.Tensor\n    ) -> torch.Tensor:\n        point_coords = point_coords + 0.5\n        point_coords = point_coords / self.img_size\n        point_embedding = self.model.prompt_encoder.pe_layer._pe_encoding(point_coords)\n        point_labels = point_labels.unsqueeze(-1).expand_as(point_embedding)\n\n        point_embedding = point_embedding * (point_labels != -1)\n        point_embedding = (\n            point_embedding\n            + self.model.prompt_encoder.not_a_point_embed.weight * (point_labels == -1)\n        )\n\n        for i in range(self.model.prompt_encoder.num_point_embeddings):\n            point_embedding = (\n                point_embedding\n                + self.model.prompt_encoder.point_embeddings[i].weight\n                * (point_labels == i)\n            )\n\n        return point_embedding\n\n    def _embed_masks(\n        self, input_mask: torch.Tensor, has_mask_input: torch.Tensor\n    ) -> torch.Tensor:\n        mask_embedding = has_mask_input * self.model.prompt_encoder.mask_downscaling(\n            input_mask\n        )\n        mask_embedding = mask_embedding + (\n            1 - has_mask_input\n        ) * self.model.prompt_encoder.no_mask_embed.weight.reshape(1, -1, 1, 1)\n        return mask_embedding\n\n    def mask_postprocessing(\n        self, masks: torch.Tensor, orig_im_size: torch.Tensor\n    ) -> torch.Tensor:\n        masks = F.interpolate(\n            masks,\n            size=(self.img_size, self.img_size),\n            mode=\"bilinear\",\n            align_corners=False,\n        )\n\n        prepadded_size = self.resize_longest_image_size(orig_im_size, self.img_size).to(\n            torch.int64\n        )\n        masks = masks[..., : prepadded_size[0], : prepadded_size[1]]  # type: ignore\n\n        orig_im_size = orig_im_size.to(torch.int64)\n        h, w = orig_im_size[0], orig_im_size[1]\n        masks = F.interpolate(masks, size=(h, w), mode=\"bilinear\", align_corners=False)\n        return masks\n\n    def select_masks(\n        self, masks: torch.Tensor, iou_preds: torch.Tensor, num_points: int\n    ) -> Tuple[torch.Tensor, torch.Tensor]:\n        # Determine if we should return the multiclick mask or not from the number of points.\n        # The reweighting is used to avoid control flow.\n        score_reweight = torch.tensor(\n            [[1000] + [0] * (self.model.mask_decoder.num_mask_tokens - 1)]\n        ).to(iou_preds.device)\n        score = iou_preds + (num_points - 2.5) * score_reweight\n        best_idx = torch.argmax(score, dim=1)\n        masks = masks[torch.arange(masks.shape[0]), best_idx, :, :].unsqueeze(1)\n        iou_preds = iou_preds[torch.arange(masks.shape[0]), best_idx].unsqueeze(1)\n\n        return masks, iou_preds\n\n    @torch.no_grad()\n    def forward(\n        self,\n        image_embeddings: torch.Tensor,\n        point_coords: torch.Tensor,\n        point_labels: torch.Tensor,\n        mask_input: torch.Tensor,\n        has_mask_input: torch.Tensor,\n        orig_im_size: torch.Tensor,\n    ):\n        sparse_embedding = self._embed_points(point_coords, point_labels)\n        dense_embedding = self._embed_masks(mask_input, has_mask_input)\n\n        masks, scores = self.model.mask_decoder.predict_masks(\n            image_embeddings=image_embeddings,\n            image_pe=self.model.prompt_encoder.get_dense_pe(),\n            sparse_prompt_embeddings=sparse_embedding,\n            dense_prompt_embeddings=dense_embedding,\n        )\n\n        if self.use_stability_score:\n            scores = calculate_stability_score(\n                masks, self.model.mask_threshold, self.stability_score_offset\n            )\n\n        if self.return_single_mask:\n            masks, scores = self.select_masks(masks, scores, point_coords.shape[1])\n\n        upscaled_masks = self.mask_postprocessing(masks, orig_im_size)\n\n        if self.return_extra_metrics:\n            stability_scores = calculate_stability_score(\n                upscaled_masks, self.model.mask_threshold, self.stability_score_offset\n            )\n            areas = (upscaled_masks > self.model.mask_threshold).sum(-1).sum(-1)\n            return upscaled_masks, scores, stability_scores, areas, masks\n\n        return upscaled_masks, scores, masks\n"
  },
  {
    "path": "model/segment_anything/utils/transforms.py",
    "content": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n\nfrom copy import deepcopy\nfrom typing import Tuple\n\nimport numpy as np\nimport torch\nfrom torch.nn import functional as F\nfrom torchvision.transforms.functional import resize  # type: ignore\nfrom torchvision.transforms.functional import to_pil_image\n\n\nclass ResizeLongestSide:\n    \"\"\"\n    Resizes images to the longest side 'target_length', as well as provides\n    methods for resizing coordinates and boxes. Provides methods for\n    transforming both numpy array and batched torch tensors.\n    \"\"\"\n\n    def __init__(self, target_length: int) -> None:\n        self.target_length = target_length\n\n    def apply_image(self, image: np.ndarray) -> np.ndarray:\n        \"\"\"\n        Expects a numpy array with shape HxWxC in uint8 format.\n        \"\"\"\n        target_size = self.get_preprocess_shape(\n            image.shape[0], image.shape[1], self.target_length\n        )\n        return np.array(resize(to_pil_image(image), target_size))\n\n    def apply_coords(\n        self, coords: np.ndarray, original_size: Tuple[int, ...]\n    ) -> np.ndarray:\n        \"\"\"\n        Expects a numpy array of length 2 in the final dimension. Requires the\n        original image size in (H, W) format.\n        \"\"\"\n        old_h, old_w = original_size\n        new_h, new_w = self.get_preprocess_shape(\n            original_size[0], original_size[1], self.target_length\n        )\n        coords = deepcopy(coords).astype(float)\n        coords[..., 0] = coords[..., 0] * (new_w / old_w)\n        coords[..., 1] = coords[..., 1] * (new_h / old_h)\n        return coords\n\n    def apply_boxes(\n        self, boxes: np.ndarray, original_size: Tuple[int, ...]\n    ) -> np.ndarray:\n        \"\"\"\n        Expects a numpy array shape Bx4. Requires the original image size\n        in (H, W) format.\n        \"\"\"\n        boxes = self.apply_coords(boxes.reshape(-1, 2, 2), original_size)\n        return boxes.reshape(-1, 4)\n\n    def apply_image_torch(self, image: torch.Tensor) -> torch.Tensor:\n        \"\"\"\n        Expects batched images with shape BxCxHxW and float format. This\n        transformation may not exactly match apply_image. apply_image is\n        the transformation expected by the model.\n        \"\"\"\n        # Expects an image in BCHW format. May not exactly match apply_image.\n        target_size = self.get_preprocess_shape(\n            image.shape[0], image.shape[1], self.target_length\n        )\n        return F.interpolate(\n            image, target_size, mode=\"bilinear\", align_corners=False, antialias=True\n        )\n\n    def apply_coords_torch(\n        self, coords: torch.Tensor, original_size: Tuple[int, ...]\n    ) -> torch.Tensor:\n        \"\"\"\n        Expects a torch tensor with length 2 in the last dimension. Requires the\n        original image size in (H, W) format.\n        \"\"\"\n        old_h, old_w = original_size\n        new_h, new_w = self.get_preprocess_shape(\n            original_size[0], original_size[1], self.target_length\n        )\n        coords = deepcopy(coords).to(torch.float)\n        coords[..., 0] = coords[..., 0] * (new_w / old_w)\n        coords[..., 1] = coords[..., 1] * (new_h / old_h)\n        return coords\n\n    def apply_boxes_torch(\n        self, boxes: torch.Tensor, original_size: Tuple[int, ...]\n    ) -> torch.Tensor:\n        \"\"\"\n        Expects a torch tensor with shape Bx4. Requires the original image\n        size in (H, W) format.\n        \"\"\"\n        boxes = self.apply_coords_torch(boxes.reshape(-1, 2, 2), original_size)\n        return boxes.reshape(-1, 4)\n\n    @staticmethod\n    def get_preprocess_shape(\n        oldh: int, oldw: int, long_side_length: int\n    ) -> Tuple[int, int]:\n        \"\"\"\n        Compute the output size given input size and target long side length.\n        \"\"\"\n        scale = long_side_length * 1.0 / max(oldh, oldw)\n        newh, neww = oldh * scale, oldw * scale\n        neww = int(neww + 0.5)\n        newh = int(newh + 0.5)\n        return (newh, neww)\n"
  },
  {
    "path": "model/tf/modeling_outputs.py",
    "content": "import torch\nimport warnings\nfrom dataclasses import dataclass\nfrom typing import Optional, Tuple, Dict, List\nfrom transformers.utils import ModelOutput\n\n@dataclass\nclass CausalLMOutputWithPastAndLabel(ModelOutput):\n    \"\"\"\n    Base class for causal language model (or autoregressive) outputs.\n\n    Args:\n        loss (`torch.FloatTensor` of shape `(1,)`, *optional*, returned when `labels` is provided):\n            Language modeling loss (for next-token prediction).\n        labels (`torch.FloatTensor` of shape `(batch_size, sequence_length)`, *optional*, returned when `labels` is provided):\n        logits (`torch.FloatTensor` of shape `(batch_size, sequence_length, config.vocab_size)`):\n            Prediction scores of the language modeling head (scores for each vocabulary token before SoftMax).\n        past_key_values (`tuple(tuple(torch.FloatTensor))`, *optional*, returned when `use_cache=True` is passed or when `config.use_cache=True`):\n            Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of shape\n            `(batch_size, num_heads, sequence_length, embed_size_per_head)`)\n\n            Contains pre-computed hidden-states (key and values in the self-attention blocks) that can be used (see\n            `past_key_values` input) to speed up sequential decoding.\n        hidden_states (`tuple(torch.FloatTensor)`, *optional*, returned when `output_hidden_states=True` is passed or when `config.output_hidden_states=True`):\n            Tuple of `torch.FloatTensor` (one for the output of the embeddings, if the model has an embedding layer, +\n            one for the output of each layer) of shape `(batch_size, sequence_length, hidden_size)`.\n\n            Hidden-states of the model at the output of each layer plus the optional initial embedding outputs.\n        attentions (`tuple(torch.FloatTensor)`, *optional*, returned when `output_attentions=True` is passed or when `config.output_attentions=True`):\n            Tuple of `torch.FloatTensor` (one for each layer) of shape `(batch_size, num_heads, sequence_length,\n            sequence_length)`.\n\n            Attentions weights after the attention softmax, used to compute the weighted average in the self-attention\n            heads.\n    \"\"\"\n\n    loss: Optional[torch.FloatTensor] = None\n    labels: Optional[torch.FloatTensor] = None\n    logits: torch.FloatTensor = None\n    past_key_values: Optional[Tuple[Tuple[torch.FloatTensor]]] = None\n    hidden_states: Optional[Tuple[torch.FloatTensor]] = None\n    attentions: Optional[Tuple[torch.FloatTensor]] = None\n    bs2imgs_token_list: List[List[int]] = None"
  },
  {
    "path": "model/univi/__init__.py",
    "content": "from .model import ChatUniViLlamaForCausalLM\n"
  },
  {
    "path": "model/univi/config/__init__.py",
    "content": "from .dataset_config import *\nfrom .model_config import *\n\n\nModelConfig = {\n    \"PRETUNE\": model_config_pretune,\n    \"FINETUNE\": model_config_finetune,\n}\n\n\nDataConfig = {\n    \"Pretrain\": [Pretrain, COCO_CAP, COCO_REG, COCO_REC],\n    \"SQA\": [SQA],\n    \"FINETUNE\": [VIT, MIMIC_imageonly, VIDEO],\n}"
  },
  {
    "path": "model/univi/config/dataset_config.py",
    "content": "Pretrain = {\n    \"chat_path\": \"${PATH}/CC3M-595K/chat.json\",\n    \"CC3M\": \"${PATH}/CC3M-595K\",\n}\n\nVIT = {\n    \"chat_path\": \"${PATH}/llava_instruct_150k.json\",\n    \"COCO2017\": \"${PATH}/COCO2017/train2017\",\n}\n\nMIMIC_imageonly = {\n    \"chat_path\": \"${PATH}/MIMIC-IT-imageonly.json\",\n    \"CDG\": \"${PATH}/CGD/images\",\n    \"LA\": \"${PATH}/LA/images\",\n    \"SD\": \"${PATH}/SD/images\",\n}\n\nCOCO_CAP = {\n    \"chat_path\": \"${PATH}/COCO/coco_cap_chat.json\",\n    \"COCO2014\": \"${PATH}/COCO2014/train2014\",\n}\n\nCOCO_REG = {\n    \"chat_path\": \"${PATH}/COCO/coco_reg_chat.json\",\n    \"COCO2014\": \"${PATH}/COCO2014/train2014\",\n}\n\nCOCO_REC = {\n    \"chat_path\": \"${PATH}/COCO/coco_rec_chat.json\",\n    \"COCO2014\": \"${PATH}/COCO2014/train2014\",\n}\n\nVIDEO = {\n    \"chat_path\": \"${PATH}/video_chat.json\",\n    \"VIDEO\": \"${PATH}/Activity_Videos\",\n}\n\nSQA = {\n    \"chat_path\": \"${PATH}/llava_train_QCM-LEA.json\",\n    \"ScienceQA\": \"${PATH}/scienceqa/train\",\n}"
  },
  {
    "path": "model/univi/config/model_config.py",
    "content": "model_config_pretune = {\n    \"use_cluster\": True,\n    \"freeze\": False,\n    \"vision_tune\": False,\n\n    \"spatial_cluster_rate0\": 64,  # 0.25\n    \"spatial_cluster_rate1\": 32,  # 0.5\n    \"spatial_cluster_rate2\": 16,  # 0.5\n\n    \"temporal_cluster_rate\": 1/16,\n}\n\nmodel_config_finetune = {\n    \"use_cluster\": True,\n    \"freeze\": False,\n    \"mm_tune\": True,\n    \"vision_tune\": False,\n\n    \"spatial_cluster_rate0\": 64,  # 0.25\n    \"spatial_cluster_rate1\": 32,  # 0.5\n    \"spatial_cluster_rate2\": 16,  # 0.5\n\n    \"temporal_cluster_rate\": 1/16,\n}"
  },
  {
    "path": "model/univi/constants.py",
    "content": "CONTROLLER_HEART_BEAT_EXPIRATION = 30\nWORKER_HEART_BEAT_INTERVAL = 15\n\nLOGDIR = \".\"\n\n# Model Constants\nMAX_IMAGE_LENGTH = 64\nIGNORE_INDEX = -100\nIMAGE_TOKEN_INDEX = -200\nDEFAULT_IMAGE_TOKEN = \"<image>\"\nDEFAULT_VIDEO_TOKEN = \"<video>\"\nDEFAULT_IMAGE_PATCH_TOKEN = \"<im_patch>\"\nDEFAULT_IM_START_TOKEN = \"<im_start>\"\nDEFAULT_IM_END_TOKEN = \"<im_end>\"\nDEFAULT_VIDEO_PATCH_TOKEN = \"<vid_patch>\"\nDEFAULT_VID_START_TOKEN = \"<vid_start>\"\nDEFAULT_VID_END_TOKEN = \"<vid_end>\"\nDEFAULT_BOX_START_TOKEN = \"<box_start>\"\nDEFAULT_BOX_END_TOKEN = \"<box_end>\""
  },
  {
    "path": "model/univi/conversation.py",
    "content": "import dataclasses\nfrom enum import auto, Enum\nfrom typing import List, Tuple\n\n\nclass SeparatorStyle(Enum):\n    \"\"\"Different separator style.\"\"\"\n    SINGLE = auto()\n    TWO = auto()\n    MPT = auto()\n    PLAIN = auto()\n    LLAMA_2 = auto()\n\n\n@dataclasses.dataclass\nclass Conversation:\n    \"\"\"A class that keeps all conversation history.\"\"\"\n    system: str\n    roles: List[str]\n    messages: List[List[str]]\n    offset: int\n    sep_style: SeparatorStyle = SeparatorStyle.SINGLE\n    sep: str = \"###\"\n    sep2: str = None\n    version: str = \"Unknown\"\n\n    skip_next: bool = False\n\n    def get_prompt(self):\n        messages = self.messages\n        if len(messages) > 0 and type(messages[0][1]) is tuple:\n            messages = self.messages.copy()\n            init_role, init_msg = messages[0].copy()\n            init_msg = init_msg[0].replace(\"<image>\", \"\").strip()\n            if 'mmtag' in self.version:\n                messages[0] = (init_role, init_msg)\n                messages.insert(0, (self.roles[0], \"<Image><image></Image>\"))\n                messages.insert(1, (self.roles[1], \"Received.\"))\n            else:\n                messages[0] = (init_role, \"<image>\\n\" + init_msg)\n\n        if self.sep_style == SeparatorStyle.SINGLE:\n            ret = self.system + self.sep\n            for role, message in messages:\n                if message:\n                    if type(message) is tuple:\n                        message, _, _ = message\n                    ret += role + \": \" + message + self.sep\n                else:\n                    ret += role + \":\"\n        elif self.sep_style == SeparatorStyle.TWO:\n            seps = [self.sep, self.sep2]\n            ret = self.system + seps[0]\n            for i, (role, message) in enumerate(messages):\n                if message:\n                    if type(message) is tuple:\n                        message, _, _ = message\n                    ret += role + \": \" + message + seps[i % 2]\n                else:\n                    ret += role + \":\"\n        elif self.sep_style == SeparatorStyle.MPT:\n            ret = self.system + self.sep\n            for role, message in messages:\n                if message:\n                    if type(message) is tuple:\n                        message, _, _ = message\n                    ret += role + message + self.sep\n                else:\n                    ret += role\n        elif self.sep_style == SeparatorStyle.LLAMA_2:\n            wrap_sys = lambda msg: f\"<<SYS>>\\n{msg}\\n<</SYS>>\\n\\n\"\n            wrap_inst = lambda msg: f\"[INST] {msg} [/INST]\"\n            ret = \"\"\n\n            for i, (role, message) in enumerate(messages):\n                if i == 0:\n                    assert message, \"first message should not be none\"\n                    assert role == self.roles[0], \"first message should come from user\"\n                if message:\n                    if type(message) is tuple:\n                        message, _, _ = message\n                    if i == 0: message = wrap_sys(self.system) + message\n                    if i % 2 == 0:\n                        message = wrap_inst(message)\n                        ret += self.sep + message\n                    else:\n                        ret += \" \" + message + \" \" + self.sep2\n                else:\n                    ret += \"\"\n            ret = ret.lstrip(self.sep)\n        elif self.sep_style == SeparatorStyle.PLAIN:\n            seps = [self.sep, self.sep2]\n            ret = self.system\n            for i, (role, message) in enumerate(messages):\n                if message:\n                    if type(message) is tuple:\n                        message, _, _ = message\n                    ret += message + seps[i % 2]\n                else:\n                    ret += \"\"\n        else:\n            raise ValueError(f\"Invalid style: {self.sep_style}\")\n\n        return ret\n\n    def append_message(self, role, message):\n        self.messages.append([role, message])\n\n    def get_images(self, return_pil=False):\n        images = []\n        for i, (role, msg) in enumerate(self.messages[self.offset:]):\n            if i % 2 == 0:\n                if type(msg) is tuple:\n                    import base64\n                    from io import BytesIO\n                    from PIL import Image\n                    msg, image, image_process_mode = msg\n                    if image_process_mode == \"Pad\":\n                        def expand2square(pil_img, background_color=(122, 116, 104)):\n                            width, height = pil_img.size\n                            if width == height:\n                                return pil_img\n                            elif width > height:\n                                result = Image.new(pil_img.mode, (width, width), background_color)\n                                result.paste(pil_img, (0, (width - height) // 2))\n                                return result\n                            else:\n                                result = Image.new(pil_img.mode, (height, height), background_color)\n                                result.paste(pil_img, ((height - width) // 2, 0))\n                                return result\n                        image = expand2square(image)\n                    elif image_process_mode == \"Crop\":\n                        pass\n                    elif image_process_mode == \"Resize\":\n                        image = image.resize((336, 336))\n                    else:\n                        raise ValueError(f\"Invalid image_process_mode: {image_process_mode}\")\n                    max_hw, min_hw = max(image.size), min(image.size)\n                    aspect_ratio = max_hw / min_hw\n                    max_len, min_len = 800, 400\n                    shortest_edge = int(min(max_len / aspect_ratio, min_len, min_hw))\n                    longest_edge = int(shortest_edge * aspect_ratio)\n                    W, H = image.size\n                    if H > W:\n                        H, W = longest_edge, shortest_edge\n                    else:\n                        H, W = shortest_edge, longest_edge\n                    image = image.resize((W, H))\n                    if return_pil:\n                        images.append(image)\n                    else:\n                        buffered = BytesIO()\n                        image.save(buffered, format=\"PNG\")\n                        img_b64_str = base64.b64encode(buffered.getvalue()).decode()\n                        images.append(img_b64_str)\n        return images\n\n    def to_gradio_chatbot(self):\n        ret = []\n        for i, (role, msg) in enumerate(self.messages[self.offset:]):\n            if i % 2 == 0:\n                if type(msg) is tuple:\n                    import base64\n                    from io import BytesIO\n                    msg, image, image_process_mode = msg\n                    max_hw, min_hw = max(image.size), min(image.size)\n                    aspect_ratio = max_hw / min_hw\n                    max_len, min_len = 800, 400\n                    shortest_edge = int(min(max_len / aspect_ratio, min_len, min_hw))\n                    longest_edge = int(shortest_edge * aspect_ratio)\n                    W, H = image.size\n                    if H > W:\n                        H, W = longest_edge, shortest_edge\n                    else:\n                        H, W = shortest_edge, longest_edge\n                    image = image.resize((W, H))\n                    buffered = BytesIO()\n                    image.save(buffered, format=\"JPEG\")\n                    img_b64_str = base64.b64encode(buffered.getvalue()).decode()\n                    img_str = f'<img src=\"data:image/png;base64,{img_b64_str}\" alt=\"user upload image\" />'\n                    ret.append([img_str, None])\n                    msg = msg.replace('<image>', '').strip()\n                    if len(msg) > 0:\n                        ret.append([msg, None])\n                else:\n                    ret.append([msg, None])\n            else:\n                ret[-1][-1] = msg\n        return ret\n\n    def copy(self):\n        return Conversation(\n            system=self.system,\n            roles=self.roles,\n            messages=[[x, y] for x, y in self.messages],\n            offset=self.offset,\n            sep_style=self.sep_style,\n            sep=self.sep,\n            sep2=self.sep2,\n            version=self.version)\n\n    def dict(self):\n        if len(self.get_images()) > 0:\n            return {\n                \"system\": self.system,\n                \"roles\": self.roles,\n                \"messages\": [[x, y[0] if type(y) is tuple else y] for x, y in self.messages],\n                \"offset\": self.offset,\n                \"sep\": self.sep,\n                \"sep2\": self.sep2,\n            }\n        return {\n            \"system\": self.system,\n            \"roles\": self.roles,\n            \"messages\": self.messages,\n            \"offset\": self.offset,\n            \"sep\": self.sep,\n            \"sep2\": self.sep2,\n        }\n\n\nconv_v1 = Conversation(\n    system=\"A chat between a curious user and an artificial intelligence assistant. \"\n    \"The assistant gives helpful, detailed, and polite answers to the user's questions.\",\n    roles=(\"USER\", \"ASSISTANT\"),\n    version=\"v1\",\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.TWO,\n    sep=\" \",\n    sep2=\"</s>\",\n)\n\n\nsimple_qa = Conversation(\n    system=\"A chat between a curious human and an artificial intelligence assistant. \"\n           \"The assistant gives helpful, detailed, and polite answers to the human's questions. \"\n           \" If you don't know the answer to a question, please don't share false information.\",\n    roles=(\"Human\", \"Assistant\"),\n    messages=(\n        (\"Human\", \"Is there a snowboard in the image?\"),\n        (\"Assistant\", \"Yes, there is a snowboard in the image, and the person is riding it down a snow-covered slope.\")\n    ),\n    offset=2,\n    sep_style=SeparatorStyle.SINGLE,\n    sep=\"###\",\n)\n\nsimple_conv = Conversation(\n    system=\"A chat between a curious human and an artificial intelligence assistant. \"\n           \"The assistant gives helpful, detailed, and polite answers to the human's questions.\",\n    roles=(\"Human\", \"Assistant\"),\n    messages=(\n        (\"Human\", \"Hi!\"),\n        (\"Assistant\", \"Hi there! How can I help you today?\")\n    ),\n    offset=2,\n    sep_style=SeparatorStyle.SINGLE,\n    sep=\"###\",\n)\n\n\ndefault_conversation = simple_conv\nconv_templates = {\n    \"default\": simple_conv,\n    \"simple\": simple_conv,\n    \"simpleqa\": simple_qa,\n    \"v1\": conv_v1,\n}\n\n\nif __name__ == \"__main__\":\n    print(default_conversation.get_prompt())\n"
  },
  {
    "path": "model/univi/demo.py",
    "content": "import torch\nfrom .constants import *\nfrom .conversation import conv_templates, SeparatorStyle\nfrom .model.builder import load_pretrained_model\nfrom .utils import disable_torch_init\nfrom .mm_utils import tokenizer_image_token, KeywordsStoppingCriteria\nfrom PIL import Image\nimport os\nfrom decord import VideoReader, cpu\nimport numpy as np\n\n\nclass Chat:\n    def __init__(self, model_path, conv_mode=\"simple\"):\n        disable_torch_init()\n        self.tokenizer, self.model, self.image_processor, context_len = load_pretrained_model(model_path, None, model_name=\"ChatUniVi\")\n\n        mm_use_im_start_end = getattr(self.model.config, \"mm_use_im_start_end\", False)\n        mm_use_im_patch_token = getattr(self.model.config, \"mm_use_im_patch_token\", True)\n        if mm_use_im_patch_token:\n            self.tokenizer.add_tokens([DEFAULT_IMAGE_PATCH_TOKEN], special_tokens=True)\n        if mm_use_im_start_end:\n            self.tokenizer.add_tokens([DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN], special_tokens=True)\n        self.model.resize_token_embeddings(len(self.tokenizer))\n\n        vision_tower = self.model.get_vision_tower()\n        if not vision_tower.is_loaded:\n            vision_tower.load_model()\n\n        self.image_processor = vision_tower.image_processor\n        self.conv_mode = conv_mode\n        print(self.model)\n\n    def get_prompt(self, qs, state):\n        state.append_message(state.roles[0], qs)\n        state.append_message(state.roles[1], None)\n        return state\n\n    def _get_rawvideo_dec(self, video_path, image_processor, max_frames=MAX_IMAGE_LENGTH, image_resolution=224,\n                          video_framerate=1, s=None, e=None):\n        if s is None:\n            start_time, end_time = None, None\n        else:\n            start_time = int(s)\n            end_time = int(e)\n            start_time = start_time if start_time >= 0. else 0.\n            end_time = end_time if end_time >= 0. else 0.\n            if start_time > end_time:\n                start_time, end_time = end_time, start_time\n            elif start_time == end_time:\n                end_time = start_time + 1\n\n        if os.path.exists(video_path):\n            vreader = VideoReader(video_path, ctx=cpu(0))\n        else:\n            print(video_path)\n            raise FileNotFoundError\n\n        fps = vreader.get_avg_fps()\n        f_start = 0 if start_time is None else int(start_time * fps)\n        f_end = int(min(1000000000 if end_time is None else end_time * fps, len(vreader) - 1))\n        num_frames = f_end - f_start + 1\n        if num_frames > 0:\n            sample_fps = int(video_framerate)\n            t_stride = int(round(float(fps) / sample_fps))\n\n            all_pos = list(range(f_start, f_end + 1, t_stride))\n            if len(all_pos) > max_frames:\n                sample_pos = [all_pos[_] for _ in np.linspace(0, len(all_pos) - 1, num=max_frames, dtype=int)]\n            else:\n                sample_pos = all_pos\n\n            patch_images = [Image.fromarray(f) for f in vreader.get_batch(sample_pos).asnumpy()]\n            return patch_images\n\n    @torch.inference_mode()\n    def generate(self, images_tensor: list, prompt: str, first_run: bool, state):\n        tokenizer, model, image_processor = self.tokenizer, self.model, self.image_processor\n\n        state = self.get_prompt(prompt, state)\n        prompt = state.get_prompt()\n        print(prompt)\n\n        images_tensor = torch.stack(images_tensor, dim=0)\n        input_ids = tokenizer_image_token(prompt, tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(0).cuda()\n\n        temperature = 0.2\n        max_new_tokens = 1024\n\n        stop_str = conv_templates[self.conv_mode].copy().sep if conv_templates[self.conv_mode].copy().sep_style != SeparatorStyle.TWO else \\\n        conv_templates[self.conv_mode].copy().sep2\n        keywords = [stop_str]\n        stopping_criteria = KeywordsStoppingCriteria(keywords, tokenizer, input_ids)\n\n        with torch.inference_mode():\n            output_ids = model.generate(\n                input_ids,\n                images=images_tensor,\n                do_sample=True,\n                temperature=temperature,\n                num_beams=1,\n                max_new_tokens=max_new_tokens,\n                use_cache=True,\n                stopping_criteria=[stopping_criteria])\n\n        input_token_len = input_ids.shape[1]\n        n_diff_input_output = (input_ids != output_ids[:, :input_token_len]).sum().item()\n        if n_diff_input_output > 0:\n            print(f'[Warning] {n_diff_input_output} output_ids are not the same as the input_ids')\n        outputs = tokenizer.batch_decode(output_ids[:, input_token_len:], skip_special_tokens=True)[0]\n        outputs = outputs.strip()\n        if outputs.endswith(stop_str):\n            outputs = outputs[:-len(stop_str)]\n        outputs = outputs.strip()\n\n        print('response', outputs)\n        return outputs, state"
  },
  {
    "path": "model/univi/eval/evaluate/evaluate_benchmark_1_correctness.py",
    "content": "import openai\nimport os\nimport argparse\nimport json\nimport jsonlines\nimport ast\nfrom multiprocessing.pool import Pool\n\n\ndef read_jsonl(file):\n    results = []\n    with open(file, encoding='utf-8') as f:\n        for item in jsonlines.Reader(f):\n            results.append(item)\n    return results\n\n\ndef parse_args():\n    parser = argparse.ArgumentParser(description=\"question-answer-generation-using-gpt-3\")\n    parser.add_argument(\"--pred_path\", required=True, help=\"The path to file containing prediction.\")\n    parser.add_argument(\"--output_dir\", required=True, help=\"The path to save annotation json files.\")\n    parser.add_argument(\"--output_json\", required=True, help=\"The path to save annotation final combined json file.\")\n    parser.add_argument(\"--api_key\", required=True, help=\"OpenAI API key.\")\n    parser.add_argument(\"--num_tasks\", required=True, type=int, help=\"Number of splits.\")\n    args = parser.parse_args()\n    return args\n\n\ndef annotate(prediction_set, caption_files, output_dir):\n    \"\"\"\n    Evaluates question and answer pairs using GPT-3\n    Returns a score for correctness.\n    \"\"\"\n    for file in caption_files:\n        key = file[:-5] # Strip file extension\n        qa_set = prediction_set[key]\n        question = qa_set['q']\n        answer = qa_set['a']\n        pred = qa_set['pred']\n        try:\n            # Compute the correctness score\n            completion = openai.ChatCompletion.create(\n                model=\"gpt-3.5-turbo\",\n                messages=[\n                    {\n                        \"role\": \"system\",\n                        \"content\":\n                            \"You are an intelligent chatbot designed for evaluating the factual accuracy of generative outputs for video-based question-answer pairs. \"\n                            \"Your task is to compare the predicted answer with the correct answer and determine if they are factually consistent. Here's how you can accomplish the task:\"\n                            \"------\"\n                            \"##INSTRUCTIONS: \"\n                            \"- Focus on the factual consistency between the predicted answer and the correct answer. The predicted answer should not contain any misinterpretations or misinformation.\\n\"\n                            \"- The predicted answer must be factually accurate and align with the video content.\\n\"\n                            \"- Consider synonyms or paraphrases as valid matches.\\n\"\n                            \"- Evaluate the factual accuracy of the prediction compared to the answer.\"\n                    },\n                    {\n                        \"role\": \"user\",\n                        \"content\":\n                            \"Please evaluate the following video-based question-answer pair:\\n\\n\"\n                            f\"Question: {question}\\n\"\n                            f\"Correct Answer: {answer}\\n\"\n                            f\"Predicted Answer: {pred}\\n\\n\"\n                            \"Provide your evaluation only as a factual accuracy score where the factual accuracy score is an integer value between 0 and 5, with 5 indicating the highest level of factual consistency. \"\n                            \"Please generate the response in the form of a Python dictionary string with keys 'score', where its value is the factual accuracy score in INTEGER, not STRING.\"\n                            \"DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. \"\n                            \"For example, your response should look like this: {''score': 4.8}.\"\n                    }\n                ]\n            )\n            # Convert response to a Python dictionary.\n            response_message = completion[\"choices\"][0][\"message\"][\"content\"]\n            response_dict = ast.literal_eval(response_message)\n            result_qa_pair = [response_dict, qa_set]\n\n            # Save the question-answer pairs to a json file.\n            with open(f\"{output_dir}/{key}.json\", \"w\") as f:\n                json.dump(result_qa_pair, f)\n\n        except Exception as e:\n            print(f\"Error processing file '{key}': {e}\")\n\n\ndef main():\n    \"\"\"\n    Main function to control the flow of the program.\n    \"\"\"\n    # Parse arguments.\n    args = parse_args()\n\n    file = args.pred_path\n    try:\n        pred_contents = json.load(file)\n    except:\n        pred_contents = read_jsonl(file)\n\n    # Dictionary to store the count of occurrences for each video_id\n    video_id_counts = {}\n    new_pred_contents = []\n\n    # Iterate through each sample in pred_contents\n    for sample in pred_contents:\n        sample['video_name'] = 1\n        video_id = sample['video_name']\n        if video_id in video_id_counts:\n            video_id_counts[video_id] += 1\n        else:\n            video_id_counts[video_id] = 0\n\n        # Create a new sample with the modified key\n        new_sample = sample\n        new_sample['video_name'] = f\"{video_id}_{video_id_counts[video_id]}\"\n        new_pred_contents.append(new_sample)\n\n    # Generating list of id's and corresponding files\n    id_list = [x['video_name'] for x in new_pred_contents]\n    caption_files = [f\"{id}.json\" for id in id_list]\n\n    output_dir = args.output_dir\n    # Generate output directory if not exists.\n    if not os.path.exists(output_dir):\n        os.makedirs(output_dir)\n\n    # Preparing dictionary of question-answer sets\n    prediction_set = {}\n    for sample in new_pred_contents:\n        id = sample['video_name']\n        question = sample['prompt']\n        answer = sample['answer']\n        pred = sample['text']\n        qa_set = {\"q\": question, \"a\": answer, \"pred\": pred}\n        prediction_set[id] = qa_set\n\n    # Set the OpenAI API key.\n    openai.api_key = args.api_key\n    num_tasks = args.num_tasks\n\n    # While loop to ensure that all captions are processed.\n    while True:\n        try:\n            # Files that have not been processed yet.\n            completed_files = os.listdir(output_dir)\n            print(f\"completed_files: {len(completed_files)}\")\n\n            # Files that have not been processed yet.\n            incomplete_files = [f for f in caption_files if f not in completed_files]\n            print(f\"incomplete_files: {len(incomplete_files)}\")\n\n            # Break the loop when there are no incomplete files\n            if len(incomplete_files) == 0:\n                break\n            if len(incomplete_files) <= num_tasks:\n                num_tasks = 1\n\n            # Split tasks into parts.\n            part_len = len(incomplete_files) // num_tasks\n            all_parts = [incomplete_files[i:i + part_len] for i in range(0, len(incomplete_files), part_len)]\n            task_args = [(prediction_set, part, args.output_dir) for part in all_parts]\n\n            # Use a pool of workers to process the files in parallel.\n            with Pool() as pool:\n                pool.starmap(annotate, task_args)\n\n        except Exception as e:\n            print(f\"Error: {e}\")\n\n    # Combine all the processed files into one\n    combined_contents = {}\n    json_path = args.output_json\n\n    # Iterate through json files\n    for file_name in os.listdir(output_dir):\n        if file_name.endswith(\".json\"):\n            file_path = os.path.join(output_dir, file_name)\n            with open(file_path, \"r\") as json_file:\n                content = json.load(json_file)\n                combined_contents[file_name[:-5]] = content\n\n    # Write combined content to a json file\n    with open(json_path, \"w\") as json_file:\n        json.dump(combined_contents, json_file)\n    print(\"All evaluation completed!\")\n\n    # Calculate average score\n    score_sum = 0\n    count = 0\n    for key, result in combined_contents.items():\n        count += 1\n        score_match = result[0]['score']\n        score = int(score_match)\n        score_sum += score\n    average_score = score_sum / count\n\n    print(\"Average score for correctness:\", average_score * 20)\n\n\nif __name__ == \"__main__\":\n    main()\n\n"
  },
  {
    "path": "model/univi/eval/evaluate/evaluate_benchmark_2_detailed_orientation.py",
    "content": "import openai\nimport os\nimport argparse\nimport json\nimport jsonlines\nimport ast\nfrom multiprocessing.pool import Pool\n\n\ndef read_jsonl(file):\n    results = []\n    with open(file, encoding='utf-8') as f:\n        for item in jsonlines.Reader(f):\n            results.append(item)\n    return results\n\n\ndef parse_args():\n    parser = argparse.ArgumentParser(description=\"question-answer-generation-using-gpt-3\")\n    parser.add_argument(\"--pred_path\", required=True, help=\"The path to file containing prediction.\")\n    parser.add_argument(\"--output_dir\", required=True, help=\"The path to save annotation json files.\")\n    parser.add_argument(\"--output_json\", required=True, help=\"The path to save annotation final combined json file.\")\n    parser.add_argument(\"--api_key\", required=True, help=\"OpenAI API key.\")\n    parser.add_argument(\"--num_tasks\", required=True, type=int, help=\"Number of splits.\")\n    args = parser.parse_args()\n    return args\n\n\ndef annotate(prediction_set, caption_files, output_dir):\n    \"\"\"\n    Evaluates question and answer pairs using GPT-3 and\n    returns a score for detailed orientation.\n    \"\"\"\n    for file in caption_files:\n        key = file[:-5] # Strip file extension\n        qa_set = prediction_set[key]\n        question = qa_set['q']\n        answer = qa_set['a']\n        pred = qa_set['pred']\n        try:\n            # Compute the detailed-orientation score\n            completion = openai.ChatCompletion.create(\n                model=\"gpt-3.5-turbo\",\n                messages=[\n                    {\n                        \"role\": \"system\",\n                        \"content\":\n                            \"You are an intelligent chatbot designed for evaluating the detail orientation of generative outputs for video-based question-answer pairs. \"\n                            \"Your task is to compare the predicted answer with the correct answer and determine its level of detail, considering both completeness and specificity. Here's how you can accomplish the task:\"\n                            \"------\"\n                            \"##INSTRUCTIONS: \"\n                            \"- Check if the predicted answer covers all major points from the video. The response should not leave out any key aspects.\\n\"\n                            \"- Evaluate whether the predicted answer includes specific details rather than just generic points. It should provide comprehensive information that is tied to specific elements of the video.\\n\"\n                            \"- Consider synonyms or paraphrases as valid matches.\\n\"\n                            \"- Provide a single evaluation score that reflects the level of detail orientation of the prediction, considering both completeness and specificity.\"\n                    },\n                    {\n                        \"role\": \"user\",\n                        \"content\":\n                            \"Please evaluate the following video-based question-answer pair:\\n\\n\"\n                            f\"Question: {question}\\n\"\n                            f\"Correct Answer: {answer}\\n\"\n                            f\"Predicted Answer: {pred}\\n\\n\"\n                            \"Provide your evaluation only as a detail orientation score where the detail orientation score is an integer value between 0 and 5, with 5 indicating the highest level of detail orientation. \"\n                            \"Please generate the response in the form of a Python dictionary string with keys 'score', where its value is the detail orientation score in INTEGER, not STRING.\"\n                            \"DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. \"\n                            \"For example, your response should look like this: {''score': 4.8}.\"\n                    }\n                ]\n            )\n            # Convert response to a Python dictionary.\n            response_message = completion[\"choices\"][0][\"message\"][\"content\"]\n            response_dict = ast.literal_eval(response_message)\n            result_qa_pair = [response_dict, qa_set]\n\n            # Save the question-answer pairs to a json file.\n            with open(f\"{output_dir}/{key}.json\", \"w\") as f:\n                json.dump(result_qa_pair, f)\n\n        except Exception as e:\n            print(f\"Error processing file '{key}': {e}\")\n\n\ndef main():\n    \"\"\"\n    Main function to control the flow of the program.\n    \"\"\"\n    # Parse arguments.\n    args = parse_args()\n\n    file = args.pred_path\n    try:\n        pred_contents = json.load(file)\n    except:\n        pred_contents = read_jsonl(file)\n\n    # Dictionary to store the count of occurrences for each video_id\n    video_id_counts = {}\n    new_pred_contents = []\n\n    # Iterate through each sample in pred_contents\n    for sample in pred_contents:\n        sample['video_name'] = 1\n        video_id = sample['video_name']\n        if video_id in video_id_counts:\n            video_id_counts[video_id] += 1\n        else:\n            video_id_counts[video_id] = 0\n\n        # Create a new sample with the modified key\n        new_sample = sample\n        new_sample['video_name'] = f\"{video_id}_{video_id_counts[video_id]}\"\n        new_pred_contents.append(new_sample)\n\n    # Generating list of id's and corresponding files\n    id_list = [x['video_name'] for x in new_pred_contents]\n    caption_files = [f\"{id}.json\" for id in id_list]\n\n    output_dir = args.output_dir\n    # Generate output directory if not exists.\n    if not os.path.exists(output_dir):\n        os.makedirs(output_dir)\n\n    # Preparing dictionary of question-answer sets\n    prediction_set = {}\n    for sample in new_pred_contents:\n        id = sample['video_name']\n        question = sample['prompt']\n        answer = sample['answer']\n        pred = sample['text']\n        qa_set = {\"q\": question, \"a\": answer, \"pred\": pred}\n        prediction_set[id] = qa_set\n\n    # Set the OpenAI API key.\n    openai.api_key = args.api_key\n    num_tasks = args.num_tasks\n\n    # While loop to ensure that all captions are processed.\n    while True:\n        try:\n            # Files that have not been processed yet.\n            completed_files = os.listdir(output_dir)\n            print(f\"completed_files: {len(completed_files)}\")\n\n            # Files that have not been processed yet.\n            incomplete_files = [f for f in caption_files if f not in completed_files]\n            print(f\"incomplete_files: {len(incomplete_files)}\")\n\n            # Break the loop when there are no incomplete files\n            if len(incomplete_files) == 0:\n                break\n            if len(incomplete_files) <= num_tasks:\n                num_tasks = 1\n\n            # Split tasks into parts.\n            part_len = len(incomplete_files) // num_tasks\n            all_parts = [incomplete_files[i:i + part_len] for i in range(0, len(incomplete_files), part_len)]\n            task_args = [(prediction_set, part, args.output_dir) for part in all_parts]\n\n            # Use a pool of workers to process the files in parallel.\n            with Pool() as pool:\n                pool.starmap(annotate, task_args)\n\n        except Exception as e:\n            print(f\"Error: {e}\")\n\n    # Combine all the processed files into one\n    combined_contents = {}\n    json_path = args.output_json\n\n    # Iterate through json files\n    for file_name in os.listdir(output_dir):\n        if file_name.endswith(\".json\"):\n            file_path = os.path.join(output_dir, file_name)\n            with open(file_path, \"r\") as json_file:\n                content = json.load(json_file)\n                combined_contents[file_name[:-5]] = content\n\n    # Write combined content to a json file\n    with open(json_path, \"w\") as json_file:\n        json.dump(combined_contents, json_file)\n    print(\"All evaluation completed!\")\n\n    # Calculate average score\n    score_sum = 0\n    count = 0\n    for key, result in combined_contents.items():\n        count += 1\n        score_match = result[0]['score']\n        score = int(score_match)\n        score_sum += score\n    average_score = score_sum / count\n\n    print(\"Average score for detailed orientation:\", average_score * 20)\n\n\nif __name__ == \"__main__\":\n    main()\n\n"
  },
  {
    "path": "model/univi/eval/evaluate/evaluate_benchmark_3_context.py",
    "content": "import openai\nimport os\nimport argparse\nimport json\nimport jsonlines\nimport ast\nfrom multiprocessing.pool import Pool\n\n\ndef read_jsonl(file):\n    results = []\n    with open(file, encoding='utf-8') as f:\n        for item in jsonlines.Reader(f):\n            results.append(item)\n    return results\n\n\ndef parse_args():\n    parser = argparse.ArgumentParser(description=\"question-answer-generation-using-gpt-3\")\n    parser.add_argument(\"--pred_path\", required=True, help=\"The path to file containing prediction.\")\n    parser.add_argument(\"--output_dir\", required=True, help=\"The path to save annotation json files.\")\n    parser.add_argument(\"--output_json\", required=True, help=\"The path to save annotation final combined json file.\")\n    parser.add_argument(\"--api_key\", required=True, help=\"OpenAI API key.\")\n    parser.add_argument(\"--num_tasks\", required=True, type=int, help=\"Number of splits.\")\n    args = parser.parse_args()\n    return args\n\n\ndef annotate(prediction_set, caption_files, output_dir):\n    \"\"\"\n    Evaluates question and answer pairs using GPT-3 and\n    returns a score for contextual understanding.\n    \"\"\"\n    for file in caption_files:\n        key = file[:-5] # Strip file extension\n        qa_set = prediction_set[key]\n        question = qa_set['q']\n        answer = qa_set['a']\n        pred = qa_set['pred']\n        try:\n            # Compute the contextual understanding score\n            completion = openai.ChatCompletion.create(\n                model=\"gpt-3.5-turbo\",\n                messages=[\n                    {\n                        \"role\": \"system\",\n                        \"content\":\n                            \"You are an intelligent chatbot designed for evaluating the contextual understanding of generative outputs for video-based question-answer pairs. \"\n                            \"Your task is to compare the predicted answer with the correct answer and determine if the generated response aligns with the overall context of the video content. Here's how you can accomplish the task:\"\n                            \"------\"\n                            \"##INSTRUCTIONS: \"\n                            \"- Evaluate whether the predicted answer aligns with the overall context of the video content. It should not provide information that is out of context or misaligned.\\n\"\n                            \"- The predicted answer must capture the main themes and sentiments of the video.\\n\"\n                            \"- Consider synonyms or paraphrases as valid matches.\\n\"\n                            \"- Provide your evaluation of the contextual understanding of the prediction compared to the answer.\"\n                    },\n                    {\n                        \"role\": \"user\",\n                        \"content\":\n                            \"Please evaluate the following video-based question-answer pair:\\n\\n\"\n                            f\"Question: {question}\\n\"\n                            f\"Correct Answer: {answer}\\n\"\n                            f\"Predicted Answer: {pred}\\n\\n\"\n                            \"Provide your evaluation only as a contextual understanding score where the contextual understanding score is an integer value between 0 and 5, with 5 indicating the highest level of contextual understanding. \"\n                            \"Please generate the response in the form of a Python dictionary string with keys 'score', where its value is contextual understanding score in INTEGER, not STRING.\"\n                            \"DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. \"\n                            \"For example, your response should look like this: {''score': 4.8}.\"\n                    }\n                ]\n            )\n            # Convert response to a Python dictionary.\n            response_message = completion[\"choices\"][0][\"message\"][\"content\"]\n            response_dict = ast.literal_eval(response_message)\n            result_qa_pair = [response_dict, qa_set]\n\n            # Save the question-answer pairs to a json file.\n            with open(f\"{output_dir}/{key}.json\", \"w\") as f:\n                json.dump(result_qa_pair, f)\n\n        except Exception as e:\n            print(f\"Error processing file '{key}': {e}\")\n\n\ndef main():\n    \"\"\"\n    Main function to control the flow of the program.\n    \"\"\"\n    # Parse arguments.\n    args = parse_args()\n\n    file = args.pred_path\n    try:\n        pred_contents = json.load(file)\n    except:\n        pred_contents = read_jsonl(file)\n\n    # Dictionary to store the count of occurrences for each video_id\n    video_id_counts = {}\n    new_pred_contents = []\n\n    # Iterate through each sample in pred_contents\n    for sample in pred_contents:\n        sample['video_name'] = 1\n        video_id = sample['video_name']\n        if video_id in video_id_counts:\n            video_id_counts[video_id] += 1\n        else:\n            video_id_counts[video_id] = 0\n\n        # Create a new sample with the modified key\n        new_sample = sample\n        new_sample['video_name'] = f\"{video_id}_{video_id_counts[video_id]}\"\n        new_pred_contents.append(new_sample)\n\n    # Generating list of id's and corresponding files\n    id_list = [x['video_name'] for x in new_pred_contents]\n    caption_files = [f\"{id}.json\" for id in id_list]\n\n    output_dir = args.output_dir\n    # Generate output directory if not exists.\n    if not os.path.exists(output_dir):\n        os.makedirs(output_dir)\n\n    # Preparing dictionary of question-answer sets\n    prediction_set = {}\n    for sample in new_pred_contents:\n        id = sample['video_name']\n        question = sample['prompt']\n        answer = sample['answer']\n        pred = sample['text']\n        qa_set = {\"q\": question, \"a\": answer, \"pred\": pred}\n        prediction_set[id] = qa_set\n\n    # Set the OpenAI API key.\n    openai.api_key = args.api_key\n    num_tasks = args.num_tasks\n\n    # While loop to ensure that all captions are processed.\n    while True:\n        try:\n            # Files that have not been processed yet.\n            completed_files = os.listdir(output_dir)\n            print(f\"completed_files: {len(completed_files)}\")\n\n            # Files that have not been processed yet.\n            incomplete_files = [f for f in caption_files if f not in completed_files]\n            print(f\"incomplete_files: {len(incomplete_files)}\")\n\n            # Break the loop when there are no incomplete files\n            if len(incomplete_files) == 0:\n                break\n            if len(incomplete_files) <= num_tasks:\n                num_tasks = 1\n\n            # Split tasks into parts.\n            part_len = len(incomplete_files) // num_tasks\n            all_parts = [incomplete_files[i:i + part_len] for i in range(0, len(incomplete_files), part_len)]\n            task_args = [(prediction_set, part, args.output_dir) for part in all_parts]\n\n            # Use a pool of workers to process the files in parallel.\n            with Pool() as pool:\n                pool.starmap(annotate, task_args)\n\n        except Exception as e:\n            print(f\"Error: {e}\")\n\n    # Combine all the processed files into one\n    combined_contents = {}\n    json_path = args.output_json\n\n    # Iterate through json files\n    for file_name in os.listdir(output_dir):\n        if file_name.endswith(\".json\"):\n            file_path = os.path.join(output_dir, file_name)\n            with open(file_path, \"r\") as json_file:\n                content = json.load(json_file)\n                combined_contents[file_name[:-5]] = content\n\n    # Write combined content to a json file\n    with open(json_path, \"w\") as json_file:\n        json.dump(combined_contents, json_file)\n    print(\"All evaluation completed!\")\n\n    # Calculate average score\n    score_sum = 0\n    count = 0\n    for key, result in combined_contents.items():\n        count += 1\n        score_match = result[0]['score']\n        score = int(score_match)\n        score_sum += score\n    average_score = score_sum / count\n\n    print(\"Average score for contextual understanding:\", average_score * 20)\n\n\nif __name__ == \"__main__\":\n    main()\n\n"
  },
  {
    "path": "model/univi/eval/evaluate/evaluate_benchmark_4_temporal.py",
    "content": "import openai\nimport os\nimport argparse\nimport json\nimport jsonlines\nimport ast\nfrom multiprocessing.pool import Pool\n\n\ndef read_jsonl(file):\n    results = []\n    with open(file, encoding='utf-8') as f:\n        for item in jsonlines.Reader(f):\n            results.append(item)\n    return results\n\n\ndef parse_args():\n    parser = argparse.ArgumentParser(description=\"question-answer-generation-using-gpt-3\")\n    parser.add_argument(\"--pred_path\", required=True, help=\"The path to file containing prediction.\")\n    parser.add_argument(\"--output_dir\", required=True, help=\"The path to save annotation json files.\")\n    parser.add_argument(\"--output_json\", required=True, help=\"The path to save annotation final combined json file.\")\n    parser.add_argument(\"--api_key\", required=True, help=\"OpenAI API key.\")\n    parser.add_argument(\"--num_tasks\", required=True, type=int, help=\"Number of splits.\")\n    args = parser.parse_args()\n    return args\n\n\ndef annotate(prediction_set, caption_files, output_dir):\n    \"\"\"\n    Evaluates question and answer pairs using GPT-3 and\n    returns a score for temporal understanding.\n    \"\"\"\n    for file in caption_files:\n        key = file[:-5] # Strip file extension\n        qa_set = prediction_set[key]\n        question = qa_set['q']\n        answer = qa_set['a']\n        pred = qa_set['pred']\n        try:\n            # Compute the temporal understanding score\n            completion = openai.ChatCompletion.create(\n                model=\"gpt-3.5-turbo\",\n                messages=[\n                    {\n                        \"role\": \"system\",\n                        \"content\":\n                            \"You are an intelligent chatbot designed for evaluating the temporal understanding of generative outputs for video-based question-answer pairs. \"\n                            \"Your task is to compare the predicted answer with the correct answer and determine if they correctly reflect the temporal sequence of events in the video content. Here's how you can accomplish the task:\"\n                            \"------\"\n                            \"##INSTRUCTIONS: \"\n                            \"- Focus on the temporal consistency between the predicted answer and the correct answer. The predicted answer should correctly reflect the sequence of events or details as they are presented in the video content.\\n\"\n                            \"- Consider synonyms or paraphrases as valid matches, but only if the temporal order is maintained.\\n\"\n                            \"- Evaluate the temporal accuracy of the prediction compared to the answer.\"\n                    },\n                    {\n                        \"role\": \"user\",\n                        \"content\":\n                            \"Please evaluate the following video-based question-answer pair:\\n\\n\"\n                            f\"Question: {question}\\n\"\n                            f\"Correct Answer: {answer}\\n\"\n                            f\"Predicted Answer: {pred}\\n\\n\"\n                            \"Provide your evaluation only as a temporal accuracy score where the temporal accuracy score is an integer value between 0 and 5, with 5 indicating the highest level of temporal consistency. \"\n                            \"Please generate the response in the form of a Python dictionary string with keys 'score', where its value is the temporal accuracy score in INTEGER, not STRING.\"\n                            \"DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. \"\n                            \"For example, your response should look like this: {''score': 4.8}.\"\n                    }\n                ]\n            )\n            # Convert response to a Python dictionary.\n            response_message = completion[\"choices\"][0][\"message\"][\"content\"]\n            response_dict = ast.literal_eval(response_message)\n            result_qa_pair = [response_dict, qa_set]\n\n            # Save the question-answer pairs to a json file.\n            with open(f\"{output_dir}/{key}.json\", \"w\") as f:\n                json.dump(result_qa_pair, f)\n\n        except Exception as e:\n            print(f\"Error processing file '{key}': {e}\")\n\n\ndef main():\n    \"\"\"\n    Main function to control the flow of the program.\n    \"\"\"\n    # Parse arguments.\n    args = parse_args()\n\n    file = args.pred_path\n    try:\n        pred_contents = json.load(file)\n    except:\n        pred_contents = read_jsonl(file)\n\n    # Dictionary to store the count of occurrences for each video_id\n    video_id_counts = {}\n    new_pred_contents = []\n\n    # Iterate through each sample in pred_contents\n    for sample in pred_contents:\n        sample['video_name'] = 1\n        video_id = sample['video_name']\n        if video_id in video_id_counts:\n            video_id_counts[video_id] += 1\n        else:\n            video_id_counts[video_id] = 0\n\n        # Create a new sample with the modified key\n        new_sample = sample\n        new_sample['video_name'] = f\"{video_id}_{video_id_counts[video_id]}\"\n        new_pred_contents.append(new_sample)\n\n    # Generating list of id's and corresponding files\n    id_list = [x['video_name'] for x in new_pred_contents]\n    caption_files = [f\"{id}.json\" for id in id_list]\n\n    output_dir = args.output_dir\n    # Generate output directory if not exists.\n    if not os.path.exists(output_dir):\n        os.makedirs(output_dir)\n\n    # Preparing dictionary of question-answer sets\n    prediction_set = {}\n    for sample in new_pred_contents:\n        id = sample['video_name']\n        question = sample['prompt']\n        answer = sample['answer']\n        pred = sample['text']\n        qa_set = {\"q\": question, \"a\": answer, \"pred\": pred}\n        prediction_set[id] = qa_set\n\n    # Set the OpenAI API key.\n    openai.api_key = args.api_key\n    num_tasks = args.num_tasks\n\n    # While loop to ensure that all captions are processed.\n    while True:\n        try:\n            # Files that have not been processed yet.\n            completed_files = os.listdir(output_dir)\n            print(f\"completed_files: {len(completed_files)}\")\n\n            # Files that have not been processed yet.\n            incomplete_files = [f for f in caption_files if f not in completed_files]\n            print(f\"incomplete_files: {len(incomplete_files)}\")\n\n            # Break the loop when there are no incomplete files\n            if len(incomplete_files) == 0:\n                break\n            if len(incomplete_files) <= num_tasks:\n                num_tasks = 1\n\n            # Split tasks into parts.\n            part_len = len(incomplete_files) // num_tasks\n            all_parts = [incomplete_files[i:i + part_len] for i in range(0, len(incomplete_files), part_len)]\n            task_args = [(prediction_set, part, args.output_dir) for part in all_parts]\n\n            # Use a pool of workers to process the files in parallel.\n            with Pool() as pool:\n                pool.starmap(annotate, task_args)\n\n        except Exception as e:\n            print(f\"Error: {e}\")\n\n    # Combine all the processed files into one\n    combined_contents = {}\n    json_path = args.output_json\n\n    # Iterate through json files\n    for file_name in os.listdir(output_dir):\n        if file_name.endswith(\".json\"):\n            file_path = os.path.join(output_dir, file_name)\n            with open(file_path, \"r\") as json_file:\n                content = json.load(json_file)\n                combined_contents[file_name[:-5]] = content\n\n    # Write combined content to a json file\n    with open(json_path, \"w\") as json_file:\n        json.dump(combined_contents, json_file)\n    print(\"All evaluation completed!\")\n\n    # Calculate average score\n    score_sum = 0\n    count = 0\n    for key, result in combined_contents.items():\n        count += 1\n        score_match = result[0]['score']\n        score = int(score_match)\n        score_sum += score\n    average_score = score_sum / count\n\n    print(\"Average score temporal understanding:\", average_score * 20)\n\n\nif __name__ == \"__main__\":\n    main()\n\n"
  },
  {
    "path": "model/univi/eval/evaluate/evaluate_benchmark_5_consistency.py",
    "content": "import openai\nimport os\nimport argparse\nimport json\nimport jsonlines\nimport ast\nfrom multiprocessing.pool import Pool\n\n\ndef read_jsonl(file):\n    results = []\n    with open(file, encoding='utf-8') as f:\n        for item in jsonlines.Reader(f):\n            results.append(item)\n    return results\n\n\ndef parse_args():\n    parser = argparse.ArgumentParser(description=\"question-answer-generation-using-gpt-3\")\n    parser.add_argument(\"--pred_path\", required=True, help=\"The path to file containing prediction.\")\n    parser.add_argument(\"--output_dir\", required=True, help=\"The path to save annotation json files.\")\n    parser.add_argument(\"--output_json\", required=True, help=\"The path to save annotation final combined json file.\")\n    parser.add_argument(\"--api_key\", required=True, help=\"OpenAI API key.\")\n    parser.add_argument(\"--num_tasks\", required=True, type=int, help=\"Number of splits.\")\n    args = parser.parse_args()\n    return args\n\n\ndef annotate(prediction_set, caption_files, output_dir):\n    \"\"\"\n    Evaluates question and answer pairs using GPT-3 and\n    returns a score for consistency.\n    \"\"\"\n    for file in caption_files:\n        key = file[:-5] # Strip file extension\n        qa_set = prediction_set[key]\n        question1 = qa_set['q1']\n        question2 = qa_set['q2']\n        answer = qa_set['a']\n        pred1 = qa_set['pred1']\n        pred2 = qa_set['pred2']\n        try:\n            # Compute the consistency score\n            completion = openai.ChatCompletion.create(\n                model=\"gpt-3.5-turbo\",\n                messages=[\n                    {\n                        \"role\": \"system\",\n                        \"content\":\n                            \"You are an intelligent chatbot designed for evaluating the consistency of generative outputs for similar video-based question-answer pairs. \"\n                            \"You will be given two very similar questions, a common answer common to both the questions and predicted answers for the two questions .\"\n                            \"Your task is to compare the predicted answers for two very similar question, with a common correct answer and determine if they are consistent. Here's how you can accomplish the task:\"\n                            \"------\"\n                            \"##INSTRUCTIONS: \"\n                            \"- Focus on the consistency between the two predicted answers and the correct answer. Both predicted answers should correspond to the correct answer and to each other, and should not contain any contradictions or significant differences in the conveyed information.\\n\"\n                            \"- Both predicted answers must be consistent with each other and the correct answer, in terms of the information they provide about the video content.\\n\"\n                            \"- Consider synonyms or paraphrases as valid matches, but only if they maintain the consistency in the conveyed information.\\n\"\n                            \"- Evaluate the consistency of the two predicted answers compared to the correct answer.\"\n                    },\n                    {\n                        \"role\": \"user\",\n                        \"content\":\n                            \"Please evaluate the following video-based question-answer pair:\\n\\n\"\n                            f\"Question 1: {question1}\\n\"\n                            f\"Question 2: {question2}\\n\"\n                            f\"Correct Answer: {answer}\\n\"\n                            f\"Predicted Answer to Question 1: {pred1}\\n\"\n                            f\"Predicted Answer to Question 2: {pred2}\\n\\n\"\n                            \"Provide your evaluation only as a consistency score where the consistency score is an integer value between 0 and 5, with 5 indicating the highest level of consistency. \"\n                            \"Please generate the response in the form of a Python dictionary string with keys 'score', where its value is the consistency score in INTEGER, not STRING.\"\n                            \"DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. \"\n                            \"For example, your response should look like this: {''score': 4.8}.\"\n                    }\n                ],\n            )\n            # Convert response to a Python dictionary.\n            response_message = completion[\"choices\"][0][\"message\"][\"content\"]\n            response_dict = ast.literal_eval(response_message)\n            result_qa_pair = [response_dict, qa_set]\n\n            # Save the question-answer pairs to a json file.\n            with open(f\"{output_dir}/{key}.json\", \"w\") as f:\n                json.dump(result_qa_pair, f)\n\n        except Exception as e:\n            print(f\"Error processing file '{key}': {e}\")\n\n\ndef main():\n    \"\"\"\n    Main function to control the flow of the program.\n    \"\"\"\n    # Parse arguments.\n    args = parse_args()\n\n    file = args.pred_path\n    try:\n        pred_contents = json.load(file)\n    except:\n        pred_contents = read_jsonl(file)\n\n    # Dictionary to store the count of occurrences for each video_id\n    video_id_counts = {}\n    new_pred_contents = []\n\n    # Iterate through each sample in pred_contents\n    for sample in pred_contents:\n        # video_id = sample['video_name']\n        video_id = 1\n        if video_id in video_id_counts:\n            video_id_counts[video_id] += 1\n        else:\n            video_id_counts[video_id] = 0\n\n        # Create a new sample with the modified key\n        new_sample = sample\n        new_sample['video_name'] = f\"{video_id}_{video_id_counts[video_id]}\"\n        new_pred_contents.append(new_sample)\n\n    # Generating list of id's and corresponding files\n    id_list = [x['video_name'] for x in new_pred_contents]\n    caption_files = [f\"{id}.json\" for id in id_list]\n\n    output_dir = args.output_dir\n    # Generate output directory if not exists.\n    if not os.path.exists(output_dir):\n        os.makedirs(output_dir)\n\n    # Preparing dictionary of question-answer sets\n    prediction_set = {}\n    for sample in new_pred_contents:\n        id = sample['video_name']\n        question1 = sample['prompt_1']\n        question2 = sample['prompt_2']\n        answer = sample['answer']\n        pred1 = sample['text_1']\n        pred2 = sample['text_2']\n        qa_set = {\"q1\": question1, \"q2\": question2, \"a\": answer, \"pred1\": pred1, \"pred2\": pred2}\n        prediction_set[id] = qa_set\n\n    # Set the OpenAI API key.\n    openai.api_key = args.api_key\n    num_tasks = args.num_tasks\n\n    # While loop to ensure that all captions are processed.\n    while True:\n        try:\n            # Files that have not been processed yet.\n            completed_files = os.listdir(output_dir)\n            print(f\"completed_files: {len(completed_files)}\")\n\n            # Files that have not been processed yet.\n            incomplete_files = [f for f in caption_files if f not in completed_files]\n            print(f\"incomplete_files: {len(incomplete_files)}\")\n\n            # Break the loop when there are no incomplete files\n            if len(incomplete_files) == 0:\n                break\n            if len(incomplete_files) <= num_tasks:\n                num_tasks = 1\n\n            # Split tasks into parts.\n            part_len = len(incomplete_files) // num_tasks\n            all_parts = [incomplete_files[i:i + part_len] for i in range(0, len(incomplete_files), part_len)]\n            task_args = [(prediction_set, part, args.output_dir) for part in all_parts]\n\n            # Use a pool of workers to process the files in parallel.\n            with Pool() as pool:\n                pool.starmap(annotate, task_args)\n\n        except Exception as e:\n            print(f\"Error: {e}\")\n\n    # Combine all the processed files into one\n    combined_contents = {}\n    json_path = args.output_json\n\n    # Iterate through json files\n    for file_name in os.listdir(output_dir):\n        if file_name.endswith(\".json\"):\n            file_path = os.path.join(output_dir, file_name)\n            with open(file_path, \"r\") as json_file:\n                content = json.load(json_file)\n                combined_contents[file_name[:-5]] = content\n\n    # Write combined content to a json file\n    with open(json_path, \"w\") as json_file:\n        json.dump(combined_contents, json_file)\n    print(\"All evaluation completed!\")\n\n    # Calculate average score\n    score_sum = 0\n    count = 0\n    for key, result in combined_contents.items():\n        count += 1\n        score_match = result[0]['score']\n        score = int(score_match)\n        score_sum += score\n    average_score = score_sum / count\n\n    print(\"Average score for consistency:\", average_score * 20)\n\n\nif __name__ == \"__main__\":\n    main()\n\n"
  },
  {
    "path": "model/univi/eval/evaluate/evaluate_gpt_review_visual.py",
    "content": "import argparse\nimport json\nimport os\nimport requests\nimport openai\nimport time\n\nNUM_SECONDS_TO_SLEEP = 0.5\n\n\ndef get_eval(content: str, max_tokens: int):\n    while True:\n        try:\n            response = openai.ChatCompletion.create(\n                model='gpt-4-0314',  # gpt-4-0314\n                messages=[{\n                    'role': 'system',\n                    'content': 'You are a helpful and precise assistant for checking the quality of the answer.'\n                }, {\n                    'role': 'user',\n                    'content': content,\n                }],\n                temperature=0.2,  # TODO: figure out which temperature is best for evaluation\n                max_tokens=max_tokens,\n            )\n            break\n        except openai.error.RateLimitError:\n            pass\n        except Exception as e:\n            print(e)\n        time.sleep(NUM_SECONDS_TO_SLEEP)\n\n    return response['choices'][0]['message']['content']\n\n\ndef parse_score(review):\n    try:\n        score_pair = review.split('\\n')[0]\n        score_pair = score_pair.replace(',', ' ')\n        sp = score_pair.split(' ')\n        if len(sp) == 2:\n            return [float(sp[0]), float(sp[1])]\n        else:\n            print('error', review)\n            return [-1, -1]\n    except Exception as e:\n        print(e)\n        print('error', review)\n        return [-1, -1]\n\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser(description='ChatGPT-based QA evaluation.')\n    parser.add_argument('-q', '--question')\n    parser.add_argument('-c', '--context')\n    parser.add_argument('-a', '--answer-list', nargs='+', default=[])\n    parser.add_argument('-r', '--rule')\n    parser.add_argument('-o', '--output')\n    parser.add_argument('--max-tokens', type=int, default=1024, help='maximum number of tokens produced in the output')\n    args = parser.parse_args()\n\n    f_q = open(os.path.expanduser(args.question))\n    f_ans1 = open(os.path.expanduser(args.answer_list[0]))\n    f_ans2 = open(os.path.expanduser(args.answer_list[1]))\n    rule_dict = json.load(open(os.path.expanduser(args.rule), 'r'))\n\n    if os.path.isfile(os.path.expanduser(args.output)):\n        cur_reviews = [json.loads(line) for line in open(os.path.expanduser(args.output))]\n    else:\n        cur_reviews = []\n\n    review_file = open(f'{args.output}', 'a')\n\n    context_list = [json.loads(line) for line in open(os.path.expanduser(args.context))]\n    image_to_context = {context['image']: context for context in context_list}\n\n    handles = []\n    idx = 0\n    for ques_js, ans1_js, ans2_js in zip(f_q, f_ans1, f_ans2):\n        ques = json.loads(ques_js)\n        ans1 = json.loads(ans1_js)\n        ans2 = json.loads(ans2_js)\n\n        inst = image_to_context[ques['image']]\n        cap_str = '\\n'.join(inst['captions'])\n        box_str = '\\n'.join([f'{instance[\"category\"]}: {instance[\"bbox\"]}' for instance in inst['instances']])\n\n        category = json.loads(ques_js)['category']\n        if category in rule_dict:\n            rule = rule_dict[category]\n        else:\n            assert False, f\"Visual QA category not found in rule file: {category}.\"\n        prompt = rule['prompt']\n        role = rule['role']\n        content = (f'[Context]\\n{cap_str}\\n\\n{box_str}\\n\\n'\n                   f'[Question]\\n{ques[\"text\"]}\\n\\n'\n                   f'[{role} 1]\\n{ans1[\"text\"]}\\n\\n[End of {role} 1]\\n\\n'\n                   f'[{role} 2]\\n{ans2[\"text\"]}\\n\\n[End of {role} 2]\\n\\n'\n                   f'[System]\\n{prompt}\\n\\n')\n        cur_js = {\n            'id': idx+1,\n            'question_id': ques['question_id'],\n            'answer1_id': ans1.get('answer_id', ans1['question_id']),\n            'answer2_id': ans2.get('answer_id', ans2['answer_id']),\n            'category': category\n        }\n        if idx >= len(cur_reviews):\n            review = get_eval(content, args.max_tokens)\n            scores = parse_score(review)\n            cur_js['content'] = review\n            cur_js['tuple'] = scores\n            review_file.write(json.dumps(cur_js) + '\\n')\n            review_file.flush()\n        else:\n            print(f'Skipping {idx} as we already have it.')\n        idx += 1\n        print(idx)\n    review_file.close()\n"
  },
  {
    "path": "model/univi/eval/evaluate/evaluate_science_qa.py",
    "content": "import argparse\nimport json\nimport os\nimport re\nimport random\nimport numpy as np\n\n\ndef get_args():\n    parser = argparse.ArgumentParser()\n    parser.add_argument('--base-dir', type=str)\n    parser.add_argument('--result-file', type=str)\n    parser.add_argument('--output-file', type=str)\n    parser.add_argument('--output-result', type=str)\n    parser.add_argument('--split', type=str, default='test')\n    parser.add_argument('--options', type=list, default=[\"A\", \"B\", \"C\", \"D\", \"E\"])\n    return parser.parse_args()\n\n\ndef convert_caps(results):\n    fakecaps = []\n    for result in results:\n        image_id = result['question_id']\n        caption = result['text']\n        fakecaps.append({\"image_id\": int(image_id), \"caption\": caption})\n    return fakecaps\n\n\ndef get_pred_idx(prediction, choices, options):\n    \"\"\"\n    Get the index (e.g. 2) from the prediction (e.g. 'C')\n    \"\"\"\n    if prediction in options[:len(choices)]:\n        return options.index(prediction)\n    else:\n        return random.choice(range(len(choices)))\n\n\nif __name__ == \"__main__\":\n    args = get_args()\n\n    base_dir = args.base_dir\n    split_indices = json.load(open(os.path.join(base_dir, \"pid_splits.json\")))[args.split]\n    problems = json.load(open(os.path.join(base_dir, \"problems.json\")))\n    predictions = [json.loads(line) for line in open(args.result_file)]\n    predictions = {pred['question_id']: pred for pred in predictions}\n    split_problems = {idx: problems[idx] for idx in split_indices}\n\n    results = {'correct': [], 'incorrect': []}\n    sqa_results = {}\n    sqa_results['acc'] = None\n    sqa_results['correct'] = None\n    sqa_results['count'] = None\n    sqa_results['results'] = {}\n    sqa_results['outputs'] = {}\n\n    sqa_results['NAT'] = []\n    sqa_results['SOC'] = []\n    sqa_results['LAN'] = []\n    sqa_results['TXT'] = []\n    sqa_results['IMG'] = []\n    sqa_results['NO'] = []\n    sqa_results['G1-6'] = []\n    sqa_results['G7-12'] = []\n\n    for prob_id, prob in split_problems.items():\n        if prob_id not in predictions:\n            continue\n        pred = predictions[prob_id]\n        pred_text = pred['text']\n\n        pattern = re.compile(r'The answer is ([A-Z]).')\n        res = pattern.findall(pred_text)\n        if len(res) == 1:\n            answer = res[0]  # 'A', 'B', ...\n        else:\n            answer = pred['pred']\n\n        pred_idx = get_pred_idx(answer, prob['choices'], args.options)\n\n        analysis = {\n            'question_id': prob_id,\n            'parsed_ans': answer,\n            'ground_truth': args.options[prob['answer']],\n            'question': pred['prompt'],\n            'pred': pred_text,\n            'is_multimodal': '<image>' in pred['prompt'],\n        }\n\n        sqa_results['results'][prob_id] = get_pred_idx(answer, prob['choices'], args.options)\n        sqa_results['outputs'][prob_id] = pred_text\n\n        if pred_idx == prob['answer']:\n            results['correct'].append(analysis)\n            cur_result = 1\n        else:\n            results['incorrect'].append(analysis)\n            cur_result = 0\n\n        if prob['subject'] == 'natural science':\n            sqa_results['NAT'].append(cur_result)\n        elif prob['subject'] == 'social science':\n            sqa_results['SOC'].append(cur_result)\n        elif prob['subject'] == 'language science':\n            sqa_results['LAN'].append(cur_result)\n\n        if prob['hint']:\n            sqa_results['TXT'].append(cur_result)\n        if prob['image']:\n            sqa_results['IMG'].append(cur_result)\n        if not prob['hint'] and not prob['image']:\n            sqa_results['NO'].append(cur_result)\n\n        if prob['grade'] in ['grade1', 'grade2', 'grade3', 'grade4', 'grade5', 'grade6']:\n            sqa_results['G1-6'].append(cur_result)\n        elif prob['grade'] in ['grade7', 'grade8', 'grade9', 'grade10', 'grade11', 'grade12']:\n            sqa_results['G7-12'].append(cur_result)\n\n\n    correct = len(results['correct'])\n    total = len(results['correct']) + len(results['incorrect'])\n    print(f'Total: {total}, Correct: {correct}, Accuracy: {correct / total * 100:.2f}%')\n\n    print(f'Subject NAT: {len(sqa_results[\"NAT\"])}, Correct: {sum(sqa_results[\"NAT\"])}, Accuracy: {np.mean(sqa_results[\"NAT\"]) * 100:.2f}%')\n    print(f'Subject SOC: {len(sqa_results[\"SOC\"])}, Correct: {sum(sqa_results[\"SOC\"])}, Accuracy: {np.mean(sqa_results[\"SOC\"]) * 100:.2f}%')\n    print(f'Subject LAN: {len(sqa_results[\"LAN\"])}, Correct: {sum(sqa_results[\"LAN\"])}, Accuracy: {np.mean(sqa_results[\"LAN\"]) * 100:.2f}%')\n\n    print(f'Context Modality TXT: {len(sqa_results[\"TXT\"])}, Correct: {sum(sqa_results[\"TXT\"])}, Accuracy: {np.mean(sqa_results[\"TXT\"]) * 100:.2f}%')\n    print(f'Context Modality IMG: {len(sqa_results[\"IMG\"])}, Correct: {sum(sqa_results[\"IMG\"])}, Accuracy: {np.mean(sqa_results[\"IMG\"]) * 100:.2f}%')\n    print(f'Context Modality NO: {len(sqa_results[\"NO\"])}, Correct: {sum(sqa_results[\"NO\"])}, Accuracy: {np.mean(sqa_results[\"NO\"]) * 100:.2f}%')\n\n    print(f'Grade G1-6: {len(sqa_results[\"G1-6\"])}, Correct: {sum(sqa_results[\"G1-6\"])}, Accuracy: {np.mean(sqa_results[\"G1-6\"]) * 100:.2f}%')\n    print(f'Grade G7-12: {len(sqa_results[\"G7-12\"])}, Correct: {sum(sqa_results[\"G7-12\"])}, Accuracy: {np.mean(sqa_results[\"G7-12\"]) * 100:.2f}%')\n\n    sqa_results['acc'] = correct / total * 100\n    sqa_results['correct'] = correct\n    sqa_results['count'] = total\n\n    with open(args.output_file, 'w') as f:\n        json.dump(results, f, indent=2)\n    with open(args.output_result, 'w') as f:\n        json.dump(sqa_results, f, indent=2)"
  },
  {
    "path": "model/univi/eval/evaluate/evaluate_video_qa.py",
    "content": "import openai\nimport os\nimport argparse\nimport json\nimport jsonlines\nimport ast\nfrom multiprocessing.pool import Pool\n\n\ndef read_jsonl(file):\n    results = []\n    with open(file, encoding='utf-8') as f:\n        for item in jsonlines.Reader(f):\n            results.append(item)\n    return results\n\n\ndef parse_args():\n    parser = argparse.ArgumentParser(description=\"question-answer-generation-using-gpt-3\")\n    parser.add_argument(\"--pred_path\", required=True, help=\"The path to file containing prediction.\")\n    parser.add_argument(\"--output_dir\", required=True, help=\"The path to save annotation json files.\")\n    parser.add_argument(\"--output_json\", required=True, help=\"The path to save annotation final combined json file.\")\n    parser.add_argument(\"--api_key\", required=True, help=\"OpenAI API key.\")\n    parser.add_argument(\"--num_tasks\", required=True, type=int, help=\"Number of splits.\")\n    args = parser.parse_args()\n    return args\n\n\ndef annotate(prediction_set, caption_files, output_dir):\n    \"\"\"\n    Evaluates question and answer pairs using GPT-3\n    Returns a score for correctness.\n    \"\"\"\n    for file in caption_files:\n        key = file[:-5] # Strip file extension\n        qa_set = prediction_set[key]\n        question = qa_set['q']\n        answer = qa_set['a']\n        pred = qa_set['pred']\n        try:\n            # Compute the correctness score\n            completion = openai.ChatCompletion.create(\n                model=\"gpt-3.5-turbo\",\n                messages=[\n                    {\n                        \"role\": \"system\",\n                        \"content\":\n                            \"You are an intelligent chatbot designed for evaluating the correctness of generative outputs for question-answer pairs. \"\n                            \"Your task is to compare the predicted answer with the correct answer and determine if they match meaningfully. Here's how you can accomplish the task:\"\n                            \"------\"\n                            \"##INSTRUCTIONS: \"\n                            \"- Focus on the meaningful match between the predicted answer and the correct answer.\\n\"\n                            \"- Consider synonyms or paraphrases as valid matches.\\n\"\n                            \"- Evaluate the correctness of the prediction compared to the answer.\"\n                    },\n                    {\n                        \"role\": \"user\",\n                        \"content\":\n                            \"Please evaluate the following video-based question-answer pair:\\n\\n\"\n                            f\"Question: {question}\\n\"\n                            f\"Correct Answer: {answer}\\n\"\n                            f\"Predicted Answer: {pred}\\n\\n\"\n                            \"Provide your evaluation only as a yes/no and score where the score is an integer value between 0 and 5, with 5 indicating the highest meaningful match. \"\n                            \"Please generate the response in the form of a Python dictionary string with keys 'pred' and 'score', where value of 'pred' is  a string of 'yes' or 'no' and value of 'score' is in INTEGER, not STRING.\"\n                            \"DO NOT PROVIDE ANY OTHER OUTPUT TEXT OR EXPLANATION. Only provide the Python dictionary string. \"\n                            \"For example, your response should look like this: {'pred': 'yes', 'score': 4.8}.\"\n                    }\n                ]\n            )\n            # Convert response to a Python dictionary.\n            response_message = completion[\"choices\"][0][\"message\"][\"content\"]\n            response_dict = ast.literal_eval(response_message)\n            result_qa_pair = [response_dict, qa_set]\n\n            # Save the question-answer pairs to a json file.\n            with open(f\"{output_dir}/{key}.json\", \"w\") as f:\n                json.dump(result_qa_pair, f)\n\n        except Exception as e:\n            print(f\"Error processing file '{key}': {e}\")\n\n\ndef main():\n    \"\"\"\n    Main function to control the flow of the program.\n    \"\"\"\n    # Parse arguments.\n    args = parse_args()\n\n    file = args.pred_path\n    try:\n        pred_contents = json.load(file)\n    except:\n        pred_contents = read_jsonl(file)\n\n    # Dictionary to store the count of occurrences for each video_id\n    video_id_counts = {}\n    new_pred_contents = []\n\n    # Iterate through each sample in pred_contents\n    for sample in pred_contents:\n        sample['video_name'] = 1\n        video_id = sample['video_name']\n        if video_id in video_id_counts:\n            video_id_counts[video_id] += 1\n        else:\n            video_id_counts[video_id] = 0\n\n        # Create a new sample with the modified key\n        new_sample = sample\n        new_sample['video_name'] = f\"{video_id}_{video_id_counts[video_id]}\"\n        new_pred_contents.append(new_sample)\n\n    # Generating list of id's and corresponding files\n    id_list = [x['video_name'] for x in new_pred_contents]\n    caption_files = [f\"{id}.json\" for id in id_list]\n\n    output_dir = args.output_dir\n    # Generate output directory if not exists.\n    if not os.path.exists(output_dir):\n        os.makedirs(output_dir)\n\n    # Preparing dictionary of question-answer sets\n    prediction_set = {}\n    for sample in new_pred_contents:\n        id = sample['video_name']\n        question = sample['prompt']\n        answer = sample['answer']\n        pred = sample['text']\n        qa_set = {\"q\": question, \"a\": answer, \"pred\": pred}\n        prediction_set[id] = qa_set\n\n    # Set the OpenAI API key.\n    openai.api_key = args.api_key\n    num_tasks = args.num_tasks\n\n    # While loop to ensure that all captions are processed.\n    while True:\n        try:\n            # Files that have not been processed yet.\n            completed_files = os.listdir(output_dir)\n            print(f\"completed_files: {len(completed_files)}\")\n\n            # Files that have not been processed yet.\n            incomplete_files = [f for f in caption_files if f not in completed_files]\n            print(f\"incomplete_files: {len(incomplete_files)}\")\n\n            # Break the loop when there are no incomplete files\n            if len(incomplete_files) == 0:\n                break\n            if len(incomplete_files) <= num_tasks:\n                num_tasks = 1\n\n            # Split tasks into parts.\n            part_len = len(incomplete_files) // num_tasks\n            all_parts = [incomplete_files[i:i + part_len] for i in range(0, len(incomplete_files), part_len)]\n            task_args = [(prediction_set, part, args.output_dir) for part in all_parts]\n\n            # Use a pool of workers to process the files in parallel.\n            with Pool() as pool:\n                pool.starmap(annotate, task_args)\n\n        except Exception as e:\n            print(f\"Error: {e}\")\n\n    # Combine all the processed files into one\n    combined_contents = {}\n    json_path = args.output_json\n\n    # Iterate through json files\n    for file_name in os.listdir(output_dir):\n        if file_name.endswith(\".json\"):\n            file_path = os.path.join(output_dir, file_name)\n            with open(file_path, \"r\") as json_file:\n                content = json.load(json_file)\n                combined_contents[file_name[:-5]] = content\n\n    # Write combined content to a json file\n    with open(json_path, \"w\") as json_file:\n        json.dump(combined_contents, json_file)\n    print(\"All evaluation completed!\")\n\n    # Calculate average score and accuracy\n    score_sum = 0\n    count = 0\n    yes_count = 0\n    no_count = 0\n    for key, result in combined_contents.items():\n        # Computing score\n        count += 1\n        score_match = result[0]['score']\n        score = int(score_match)\n        score_sum += score\n\n        # Computing accuracy\n        pred = result[0]['pred']\n        if \"yes\" in pred.lower():\n            yes_count += 1\n        elif \"no\" in pred.lower():\n            no_count += 1\n\n    average_score = score_sum / count\n    accuracy = yes_count / (yes_count + no_count)\n    print(\"Yes count:\", yes_count)\n    print(\"No count:\", no_count)\n    print(\"Accuracy:\", accuracy)\n    print(\"Average score:\", average_score)\n\n\nif __name__ == \"__main__\":\n    main()\n\n"
  },
  {
    "path": "model/univi/eval/evaluate/summarize_gpt_review.py",
    "content": "import json\nimport os\nfrom collections import defaultdict\nimport numpy as np\nimport argparse\n\n\ndef parse_args():\n    parser = argparse.ArgumentParser(description='ChatGPT-based QA evaluation.')\n    parser.add_argument('-d', '--dir', default=None)\n    parser.add_argument('-f', '--files', nargs='*', default=None)\n    parser.add_argument('-i', '--ignore', nargs='*', default=None)\n    return parser.parse_args()\n\n\nif __name__ == '__main__0':\n    args = parse_args()\n\n    if args.ignore is not None:\n        args.ignore = [int(x) for x in args.ignore]\n\n    if args.files is not None and len(args.files) > 0:\n        review_files = args.files\n    else:\n        review_files = [x for x in os.listdir(args.dir) if x.endswith('.jsonl') and (x.startswith('gpt4_text') or x.startswith('reviews_') or x.startswith('review_'))]\n\n    for review_file in sorted(review_files):\n        config = os.path.basename(review_file).replace('gpt4_text_', '').replace('.jsonl', '')\n        scores = defaultdict(list)\n        print(config)\n        with open(os.path.join(args.dir, review_file) if args.dir is not None else review_file) as f:\n            for review_str in f:\n                review = json.loads(review_str)\n                if args.ignore is not None and review['question_id'] in args.ignore:\n                    continue\n                if 'category' in review:\n                    scores[review['category']].append(review['tuple'])\n                    scores['all'].append(review['tuple'])\n                else:\n                    if 'tuple' in review:\n                        scores['all'].append(review['tuple'])\n                    else:\n                        scores['all'].append(review['score'])\n        for k, v in sorted(scores.items()):\n            stats = np.asarray(v).mean(0).tolist()\n            stats = [round(x, 3) for x in stats]\n            # print(k, stats, round(stats[1]/stats[0]*100, 1))\n            print(k, round(stats[1]/stats[0]*100, 1))\n        print('=================================')\n\n\nif __name__ == '__main__':\n    args = parse_args()\n\n    scores = defaultdict(list)\n    print(f'GPT-4 vs. {args.dir}')\n\n    with open(args.dir) as f:\n        for review_str in f:\n            review = json.loads(review_str)\n            scores[review['category']].append(review['tuple'])\n            scores['all'].append(review['tuple'])\n    for k, v in scores.items():\n        stats = np.asarray(v).mean(0).tolist()\n        stats = [round(x, 3) for x in stats]\n        print(k, stats, round(stats[1]/stats[0]*100, 1))\n    print('=================================')"
  },
  {
    "path": "model/univi/eval/model_coco_vqa.py",
    "content": "import argparse\nimport torch\nimport os\nimport json\nfrom tqdm import tqdm\nimport shortuuid\nfrom ChatUniVi.constants import *\nfrom ChatUniVi.conversation import conv_templates, SeparatorStyle\nfrom ChatUniVi.model.builder import load_pretrained_model\nfrom ChatUniVi.utils import disable_torch_init\nfrom ChatUniVi.mm_utils import tokenizer_image_token, get_model_name_from_path, KeywordsStoppingCriteria\nfrom PIL import Image\nimport math\nfrom abc import ABC\nimport numpy as np\nimport jsonlines\n\n\ndef get_acc(file):\n    acc, num = 0, 0\n    yes, no, fail = 0, 0, 0\n    tp, fp, fn, tn = 0, 0, 0, 0\n\n    with open(file, \"r\", encoding=\"utf8\") as f:\n        for item in jsonlines.Reader(f):\n            num += 1\n            if \"Yes\" in item[\"text\"] or \"yes\" in item[\"text\"]:\n                yes += 1\n                if \"Yes\" in item[\"label\"] or \"yes\" in item[\"label\"]:\n                    acc += 1\n                    tp += 1\n                else:\n                    fp += 1\n\n            elif \"No\" in item[\"text\"] or \"no\" in item[\"text\"]:\n                no += 1\n                if \"No\" in item[\"label\"] or \"no\" in item[\"label\"]:\n                    acc += 1\n                    tn += 1\n                else:\n                    fn += 1\n            else:\n                fail += 1\n\n    result = {\n        \"acc\": acc / num,\n        \"yes\": yes / num,\n        \"no\": no / num,\n        \"fail\": fail / num,\n        \"precision\": tp / (tp + fp),\n        \"recall\": tp / (tp + fn),\n    }\n    result[\"F1-score\"] = 2 * result[\"precision\"] * result[\"recall\"] / (result[\"precision\"] + result[\"recall\"])\n    print(\"\\n========================================================================\")\n    print(file)\n    print(result)\n    print(\"========================================================================\\n\")\n    return result\n\n\ndef split_list(lst, n):\n    \"\"\"Split a list into n (roughly) equal-sized chunks\"\"\"\n    chunk_size = math.ceil(len(lst) / n)  # integer division\n    return [lst[i:i+chunk_size] for i in range(0, len(lst), chunk_size)]\n\n\ndef get_chunk(lst, n, k):\n    chunks = split_list(lst, n)\n    return chunks[k]\n\n\nclass LogitsProcessor(ABC):\n    \"\"\"Abstract base class for all logit processors that can be applied during generation.\"\"\"\n    def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor) -> torch.FloatTensor:\n        \"\"\"Torch method for processing logits.\"\"\"\n        raise NotImplementedError(\n            f\"{self.__class__} is an abstract class. Only classes inheriting this class can be called.\"\n        )\n\n\ndef eval_model(args):\n    # Model\n    disable_torch_init()\n    model_path = os.path.expanduser(args.model_path)\n    model_name = \"ChatUniVi\"\n    tokenizer, model, image_processor, context_len = load_pretrained_model(model_path, args.model_base, model_name)\n\n    mm_use_im_start_end = getattr(model.config, \"mm_use_im_start_end\", False)\n    mm_use_im_patch_token = getattr(model.config, \"mm_use_im_patch_token\", True)\n    if mm_use_im_patch_token:\n        tokenizer.add_tokens([DEFAULT_IMAGE_PATCH_TOKEN], special_tokens=True)\n    if mm_use_im_start_end:\n        tokenizer.add_tokens([DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN], special_tokens=True)\n    model.resize_token_embeddings(len(tokenizer))\n\n    vision_tower = model.get_vision_tower()\n    if not vision_tower.is_loaded:\n        vision_tower.load_model()\n    image_processor = vision_tower.image_processor\n\n    questions = [json.loads(q) for q in open(os.path.expanduser(args.question_file), \"r\")]\n    questions = get_chunk(questions, args.num_chunks, args.chunk_idx)\n    answers_file = os.path.expanduser(args.answers_file)\n    os.makedirs(os.path.dirname(answers_file), exist_ok=True)\n    ans_file = open(answers_file, \"w\")\n    for line in tqdm(questions):\n        try:\n            idx = line[\"question_id\"]\n            image_file = line[\"image\"]\n            qs = line[\"text\"]\n            label = line[\"label\"]\n\n            cur_prompt = qs\n            if model.config.mm_use_im_start_end:\n                qs = DEFAULT_IM_START_TOKEN + DEFAULT_IMAGE_TOKEN + DEFAULT_IM_END_TOKEN + '\\n' + qs\n            else:\n                qs = DEFAULT_IMAGE_TOKEN + '\\n' + qs\n\n            conv = conv_templates[args.conv_mode].copy()\n            conv.append_message(conv.roles[0], qs)\n            conv.append_message(conv.roles[1], None)\n            prompt = conv.get_prompt()\n\n            input_ids = tokenizer_image_token(prompt, tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(0).cuda()\n\n            image = Image.open(os.path.join(args.image_folder, image_file))\n\n            image_tensor = image_processor.preprocess(image, return_tensors='pt')['pixel_values'][0]\n\n            stop_str = conv.sep if conv.sep_style != SeparatorStyle.TWO else conv.sep2\n            keywords = [stop_str]\n            stopping_criteria = KeywordsStoppingCriteria(keywords, tokenizer, input_ids)\n\n            if args.answer_prompter:\n                with torch.inference_mode():\n                    output_ids = model.generate(\n                        input_ids,\n                        images=image_tensor.unsqueeze(0).half().cuda(),\n                        do_sample=True,\n                        temperature=args.temperature,\n                        top_p=args.top_p,\n                        num_beams=args.num_beams,\n                        max_new_tokens=1024,\n                        use_cache=True,\n                        stopping_criteria=[stopping_criteria]\n                    )\n\n                input_token_len = input_ids.shape[1]\n                n_diff_input_output = (input_ids != output_ids[:, :input_token_len]).sum().item()\n                if n_diff_input_output > 0:\n                    print(f'[Warning] {n_diff_input_output} output_ids are not the same as the input_ids')\n                outputs = tokenizer.batch_decode(output_ids[:, input_token_len:], skip_special_tokens=True)[0]\n                outputs = outputs.strip()\n                if outputs.endswith(stop_str):\n                    outputs = outputs[:-len(stop_str)]\n                outputs = outputs.strip()\n\n                outputs_reasoning = outputs\n                input_ids = tokenizer_image_token(prompt + outputs_reasoning + ' The answer is ', tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(0).cuda()\n\n            else:\n                outputs_reasoning = \"\"\n\n            with torch.inference_mode():\n                output_ids = model.generate(\n                    input_ids,\n                    images=image_tensor.unsqueeze(0).half().cuda(),\n                    do_sample=True,\n                    temperature=args.temperature,\n                    top_p=args.top_p,\n                    num_beams=args.num_beams,\n                    output_scores=True,\n                    return_dict_in_generate=True,\n                    max_new_tokens=1024,\n                    use_cache=True,\n                    stopping_criteria=[stopping_criteria]\n                    )\n\n            scores = output_ids.scores[0][0].to(torch.float32)\n            label_score = []\n            candidates = [\"yes\", \"Yes\", \"no\", \"No\"]\n            for can in candidates:\n                can_id = tokenizer.encode(can)[-1]\n                label_score.append(scores[can_id].item())\n            outputs = candidates[np.argmax(label_score)]\n\n            ans_id = shortuuid.uuid()\n            ans_file.write(json.dumps({\"question_id\": idx,\n                                   \"prompt\": cur_prompt,\n                                   \"outputs_reasoning\": outputs_reasoning + ' The answer is ' + outputs,\n                                   \"text\": outputs,\n                                   \"label\": label,\n                                   \"answer_id\": ans_id,\n                                   \"model_id\": model_name,\n                                   \"metadata\": {}}) + \"\\n\")\n            ans_file.flush()\n        except Exception as e:\n            print(f\"Error processing image file '{image_file}': {e}\")\n    ans_file.close()\n    get_acc(answers_file)\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--model-path\", type=str, default=\"facebook/opt-350m\")\n    parser.add_argument(\"--model-base\", type=str, default=None)\n    parser.add_argument(\"--image-folder\", type=str, default=\"\")\n    parser.add_argument(\"--question-file\", type=str, default=\"tables/question.jsonl\")\n    parser.add_argument(\"--answers-file\", type=str, default=\"answer.jsonl\")\n    parser.add_argument(\"--conv-mode\", type=str, default=\"simpleqa\")\n    parser.add_argument(\"--num-chunks\", type=int, default=1)\n    parser.add_argument(\"--chunk-idx\", type=int, default=0)\n    parser.add_argument(\"--temperature\", type=float, default=0.2)\n    parser.add_argument(\"--top_p\", type=float, default=None)\n    parser.add_argument(\"--num_beams\", type=int, default=1)\n    parser.add_argument(\"--model_use\", type=str, default=\"BASE\")\n    parser.add_argument(\"--answer-prompter\", action=\"store_true\")\n    args = parser.parse_args()\n\n    eval_model(args)\n"
  },
  {
    "path": "model/univi/eval/model_video_consistency.py",
    "content": "import argparse\nimport torch\nimport os\nimport json\nfrom tqdm import tqdm\nimport shortuuid\nfrom ChatUniVi.constants import *\nfrom ChatUniVi.conversation import conv_templates, SeparatorStyle\nfrom ChatUniVi.model.builder import load_pretrained_model\nfrom ChatUniVi.utils import disable_torch_init\nfrom ChatUniVi.mm_utils import tokenizer_image_token, get_model_name_from_path, KeywordsStoppingCriteria\nfrom PIL import Image\nimport math\nfrom decord import VideoReader, cpu\nimport numpy as np\n\n\ndef split_list(lst, n):\n    \"\"\"Split a list into n (roughly) equal-sized chunks\"\"\"\n    chunk_size = math.ceil(len(lst) / n)  # integer division\n    return [lst[i:i+chunk_size] for i in range(0, len(lst), chunk_size)]\n\n\ndef get_chunk(lst, n, k):\n    chunks = split_list(lst, n)\n    return chunks[k]\n\n\ndef _get_rawvideo_dec(video_path, image_processor, max_frames=MAX_IMAGE_LENGTH, image_resolution=224, video_framerate=1, s=None, e=None):\n    # speed up video decode via decord.\n    video_mask = np.zeros(max_frames, dtype=np.int64)\n    max_video_length = 0\n\n    # T x 3 x H x W\n    video = np.zeros((max_frames, 3, image_resolution, image_resolution), dtype=np.float64)\n\n    if s is None:\n        start_time, end_time = None, None\n    else:\n        start_time = int(s)\n        end_time = int(e)\n        start_time = start_time if start_time >= 0. else 0.\n        end_time = end_time if end_time >= 0. else 0.\n        if start_time > end_time:\n            start_time, end_time = end_time, start_time\n        elif start_time == end_time:\n            end_time = start_time + 1\n\n    if os.path.exists(video_path):\n        vreader = VideoReader(video_path, ctx=cpu(0))\n    else:\n        print(video_path)\n        raise FileNotFoundError\n\n    fps = vreader.get_avg_fps()\n    f_start = 0 if start_time is None else int(start_time * fps)\n    f_end = int(min(1000000000 if end_time is None else end_time * fps, len(vreader) - 1))\n    num_frames = f_end - f_start + 1\n    if num_frames > 0:\n        # T x 3 x H x W\n        sample_fps = int(video_framerate)\n        t_stride = int(round(float(fps) / sample_fps))\n\n        all_pos = list(range(f_start, f_end + 1, t_stride))\n        if len(all_pos) > max_frames:\n            sample_pos = [all_pos[_] for _ in np.linspace(0, len(all_pos) - 1, num=max_frames, dtype=int)]\n        else:\n            sample_pos = all_pos\n\n        patch_images = [Image.fromarray(f) for f in vreader.get_batch(sample_pos).asnumpy()]\n\n        patch_images = torch.stack([image_processor.preprocess(img, return_tensors='pt')['pixel_values'][0] for img in patch_images])\n        slice_len = patch_images.shape[0]\n\n        max_video_length = max_video_length if max_video_length > slice_len else slice_len\n        if slice_len < 1:\n            pass\n        else:\n            video[:slice_len, ...] = patch_images\n\n        return patch_images, slice_len\n    else:\n        print(\"video path: {} error.\".format(video_path))\n\n    video_mask[:max_video_length] = [1] * max_video_length\n\n    return torch.from_numpy(video), video_mask\n\n\ndef eval_model(args):\n    # Model\n    disable_torch_init()\n    model_path = os.path.expanduser(args.model_path)\n    model_name = \"ChatUniVi\"\n    tokenizer, model, image_processor, context_len = load_pretrained_model(model_path, args.model_base, model_name)\n\n    mm_use_im_start_end = getattr(model.config, \"mm_use_im_start_end\", False)\n    mm_use_im_patch_token = getattr(model.config, \"mm_use_im_patch_token\", True)\n    if mm_use_im_patch_token:\n        tokenizer.add_tokens([DEFAULT_IMAGE_PATCH_TOKEN], special_tokens=True)\n    if mm_use_im_start_end:\n        tokenizer.add_tokens([DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN], special_tokens=True)\n    model.resize_token_embeddings(len(tokenizer))\n\n    vision_tower = model.get_vision_tower()\n    if not vision_tower.is_loaded:\n        vision_tower.load_model()\n    image_processor = vision_tower.image_processor\n\n    if model.config.config[\"use_cluster\"]:\n        for n, m in model.named_modules():\n            m = m.to(dtype=torch.bfloat16)\n\n    # Load the ground truth file\n    with open(args.question_file) as file:\n        gt_contents = json.load(file)\n\n    answers_file = os.path.expanduser(args.answers_file)\n    os.makedirs(os.path.dirname(answers_file), exist_ok=True)\n    ans_file = open(answers_file, \"w\")\n\n    video_formats = ['.mp4', '.avi', '.mov', '.mkv']\n\n    # Iterate over each sample in the ground truth file\n    for sample in tqdm(gt_contents):\n        video_name = sample['video_name']\n        question_1 = sample['Q1']\n        question_2 = sample['Q2']\n\n        # Load the video file\n        for fmt in video_formats:  # Added this line\n            temp_path = os.path.join(args.video_folder, f\"{video_name}{fmt}\")\n            if os.path.exists(temp_path):\n                video_path = temp_path\n                break\n\n        # Check if the video exists\n        if video_path is not None:  # Modified this line\n            video_frames, slice_len = _get_rawvideo_dec(video_path, image_processor, max_frames=MAX_IMAGE_LENGTH)\n\n        qs = question_1\n        if model.config.mm_use_im_start_end:\n            qs = DEFAULT_IM_START_TOKEN + DEFAULT_IMAGE_TOKEN * slice_len + DEFAULT_IM_END_TOKEN + '\\n' + qs\n        else:\n            qs = DEFAULT_IMAGE_TOKEN * slice_len + '\\n' + qs\n\n        conv = conv_templates[args.conv_mode].copy()\n        conv.append_message(conv.roles[0], qs)\n        conv.append_message(conv.roles[1], None)\n        prompt = conv.get_prompt()\n\n        input_ids = tokenizer_image_token(prompt, tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(\n                0).cuda()\n\n        stop_str = conv.sep if conv.sep_style != SeparatorStyle.TWO else conv.sep2\n        keywords = [stop_str]\n        stopping_criteria = KeywordsStoppingCriteria(keywords, tokenizer, input_ids)\n\n        with torch.inference_mode():\n            output_ids = model.generate(\n                input_ids,\n                images=video_frames.half().cuda(),\n                do_sample=True,\n                temperature=args.temperature,\n                top_p=args.top_p,\n                num_beams=args.num_beams,\n                max_new_tokens=1024,\n                use_cache=True,\n                stopping_criteria=[stopping_criteria])\n\n        input_token_len = input_ids.shape[1]\n        n_diff_input_output = (input_ids != output_ids[:, :input_token_len]).sum().item()\n        if n_diff_input_output > 0:\n            print(f'[Warning] {n_diff_input_output} output_ids are not the same as the input_ids')\n        outputs = tokenizer.batch_decode(output_ids[:, input_token_len:], skip_special_tokens=True)[0]\n        outputs = outputs.strip()\n        if outputs.endswith(stop_str):\n            outputs = outputs[:-len(stop_str)]\n        outputs_1 = outputs.strip()\n\n        qs = question_2\n        if model.config.mm_use_im_start_end:\n            qs = DEFAULT_IM_START_TOKEN + DEFAULT_IMAGE_TOKEN * slice_len + DEFAULT_IM_END_TOKEN + '\\n' + qs\n        else:\n            qs = DEFAULT_IMAGE_TOKEN * slice_len + '\\n' + qs\n\n        conv = conv_templates[args.conv_mode].copy()\n        conv.append_message(conv.roles[0], qs)\n        conv.append_message(conv.roles[1], None)\n        prompt = conv.get_prompt()\n\n        input_ids = tokenizer_image_token(prompt, tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(\n            0).cuda()\n\n        stop_str = conv.sep if conv.sep_style != SeparatorStyle.TWO else conv.sep2\n        keywords = [stop_str]\n        stopping_criteria = KeywordsStoppingCriteria(keywords, tokenizer, input_ids)\n\n        with torch.inference_mode():\n            output_ids = model.generate(\n                input_ids,\n                images=torch.from_numpy(video_frames).half().cuda(),\n                do_sample=True,\n                temperature=args.temperature,\n                top_p=args.top_p,\n                num_beams=args.num_beams,\n                max_new_tokens=1024,\n                use_cache=True,\n                stopping_criteria=[stopping_criteria])\n\n        input_token_len = input_ids.shape[1]\n        n_diff_input_output = (input_ids != output_ids[:, :input_token_len]).sum().item()\n        if n_diff_input_output > 0:\n            print(f'[Warning] {n_diff_input_output} output_ids are not the same as the input_ids')\n        outputs = tokenizer.batch_decode(output_ids[:, input_token_len:], skip_special_tokens=True)[0]\n        outputs = outputs.strip()\n        if outputs.endswith(stop_str):\n            outputs = outputs[:-len(stop_str)]\n        outputs_2 = outputs.strip()\n\n        ans_id = shortuuid.uuid()\n        ans_file.write(json.dumps({\"video_name\": sample['video_name'],\n                                    \"prompt_1\": question_1,\n                                    \"text_1\": outputs_1,\n                                    \"prompt_2\": question_2,\n                                    \"text_2\": outputs_2,\n                                    \"answer_id\": ans_id,\n                                    \"model_id\": model_name,\n                                    \"answer\": sample['A'],\n                                    \"metadata\": {}}) + \"\\n\")\n        ans_file.flush()\n\n    ans_file.close()\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--model-path\", type=str, default=\"facebook/opt-350m\")\n    parser.add_argument(\"--model-base\", type=str, default=None)\n    parser.add_argument(\"--video-folder\", type=str, default=\"\")\n    parser.add_argument(\"--question-file\", type=str, default=\"tables/question.jsonl\")\n    parser.add_argument(\"--answers-file\", type=str, default=\"answer.jsonl\")\n    parser.add_argument(\"--conv-mode\", type=str, default=\"v1\")\n    parser.add_argument(\"--num-chunks\", type=int, default=1)\n    parser.add_argument(\"--chunk-idx\", type=int, default=0)\n    parser.add_argument(\"--temperature\", type=float, default=0.2)\n    parser.add_argument(\"--top_p\", type=float, default=None)\n    parser.add_argument(\"--num_beams\", type=int, default=1)\n    parser.add_argument(\"--model_use\", type=str, default=\"BASE\")\n    args = parser.parse_args()\n\n    eval_model(args)\n"
  },
  {
    "path": "model/univi/eval/model_video_general.py",
    "content": "import argparse\nimport torch\nimport os\nimport json\nfrom tqdm import tqdm\nimport shortuuid\nfrom ChatUniVi.constants import *\nfrom ChatUniVi.conversation import conv_templates, SeparatorStyle\nfrom ChatUniVi.model.builder import load_pretrained_model\nfrom ChatUniVi.utils import disable_torch_init\nfrom ChatUniVi.mm_utils import tokenizer_image_token, get_model_name_from_path, KeywordsStoppingCriteria\nfrom PIL import Image\nimport math\nfrom decord import VideoReader, cpu\nimport numpy as np\n\n\ndef split_list(lst, n):\n    \"\"\"Split a list into n (roughly) equal-sized chunks\"\"\"\n    chunk_size = math.ceil(len(lst) / n)  # integer division\n    return [lst[i:i+chunk_size] for i in range(0, len(lst), chunk_size)]\n\n\ndef get_chunk(lst, n, k):\n    chunks = split_list(lst, n)\n    return chunks[k]\n\n\ndef _get_rawvideo_dec(video_path, image_processor, max_frames=MAX_IMAGE_LENGTH, image_resolution=224, video_framerate=1, s=None, e=None):\n    # speed up video decode via decord.\n    video_mask = np.zeros(max_frames, dtype=np.int64)\n    max_video_length = 0\n\n    # T x 3 x H x W\n    video = np.zeros((max_frames, 3, image_resolution, image_resolution), dtype=np.float64)\n\n    if s is None:\n        start_time, end_time = None, None\n    else:\n        start_time = int(s)\n        end_time = int(e)\n        start_time = start_time if start_time >= 0. else 0.\n        end_time = end_time if end_time >= 0. else 0.\n        if start_time > end_time:\n            start_time, end_time = end_time, start_time\n        elif start_time == end_time:\n            end_time = start_time + 1\n\n    if os.path.exists(video_path):\n        vreader = VideoReader(video_path, ctx=cpu(0))\n    else:\n        print(video_path)\n        raise FileNotFoundError\n\n    fps = vreader.get_avg_fps()\n    f_start = 0 if start_time is None else int(start_time * fps)\n    f_end = int(min(1000000000 if end_time is None else end_time * fps, len(vreader) - 1))\n    num_frames = f_end - f_start + 1\n    if num_frames > 0:\n        # T x 3 x H x W\n        sample_fps = int(video_framerate)\n        t_stride = int(round(float(fps) / sample_fps))\n\n        all_pos = list(range(f_start, f_end + 1, t_stride))\n        if len(all_pos) > max_frames:\n            sample_pos = [all_pos[_] for _ in np.linspace(0, len(all_pos) - 1, num=max_frames, dtype=int)]\n        else:\n            sample_pos = all_pos\n\n        patch_images = [Image.fromarray(f) for f in vreader.get_batch(sample_pos).asnumpy()]\n\n        patch_images = torch.stack([image_processor.preprocess(img, return_tensors='pt')['pixel_values'][0] for img in patch_images])\n        slice_len = patch_images.shape[0]\n\n        max_video_length = max_video_length if max_video_length > slice_len else slice_len\n        if slice_len < 1:\n            pass\n        else:\n            video[:slice_len, ...] = patch_images\n\n        return patch_images, slice_len\n    else:\n        print(\"video path: {} error.\".format(video_path))\n\n    video_mask[:max_video_length] = [1] * max_video_length\n\n    return torch.from_numpy(video), video_mask\n\n\ndef eval_model(args):\n    # Model\n    disable_torch_init()\n    model_path = os.path.expanduser(args.model_path)\n    model_name = \"ChatUniVi\"\n    tokenizer, model, image_processor, context_len = load_pretrained_model(model_path, args.model_base, model_name)\n\n    mm_use_im_start_end = getattr(model.config, \"mm_use_im_start_end\", False)\n    mm_use_im_patch_token = getattr(model.config, \"mm_use_im_patch_token\", True)\n    if mm_use_im_patch_token:\n        tokenizer.add_tokens([DEFAULT_IMAGE_PATCH_TOKEN], special_tokens=True)\n    if mm_use_im_start_end:\n        tokenizer.add_tokens([DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN], special_tokens=True)\n    model.resize_token_embeddings(len(tokenizer))\n\n    vision_tower = model.get_vision_tower()\n    if not vision_tower.is_loaded:\n        vision_tower.load_model()\n    image_processor = vision_tower.image_processor\n\n    if model.config.config[\"use_cluster\"]:\n        for n, m in model.named_modules():\n            m = m.to(dtype=torch.bfloat16)\n\n    # Load the ground truth file\n    with open(args.question_file) as file:\n        gt_contents = json.load(file)\n\n    answers_file = os.path.expanduser(args.answers_file)\n    os.makedirs(os.path.dirname(answers_file), exist_ok=True)\n    ans_file = open(answers_file, \"w\")\n\n    video_formats = ['.mp4', '.avi', '.mov', '.mkv']\n\n    # Iterate over each sample in the ground truth file\n    for sample in tqdm(gt_contents):\n        video_name = sample['video_name']\n        sample_set = sample\n        qs = sample['Q']\n\n        # Load the video file\n        for fmt in video_formats:  # Added this line\n            temp_path = os.path.join(args.video_folder, f\"{video_name}{fmt}\")\n            if os.path.exists(temp_path):\n                video_path = temp_path\n                break\n\n        # Check if the video exists\n        if video_path is not None:  # Modified this line\n            video_frames, slice_len = _get_rawvideo_dec(video_path, image_processor, max_frames=MAX_IMAGE_LENGTH)\n\n        try:\n            cur_prompt = qs\n            if model.config.mm_use_im_start_end:\n                qs = DEFAULT_IM_START_TOKEN + DEFAULT_IMAGE_TOKEN * slice_len + DEFAULT_IM_END_TOKEN + '\\n' + qs\n            else:\n                qs = DEFAULT_IMAGE_TOKEN * slice_len + '\\n' + qs\n\n            conv = conv_templates[args.conv_mode].copy()\n            conv.append_message(conv.roles[0], qs)\n            conv.append_message(conv.roles[1], None)\n            prompt = conv.get_prompt()\n\n            input_ids = tokenizer_image_token(prompt, tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(\n                0).cuda()\n\n            stop_str = conv.sep if conv.sep_style != SeparatorStyle.TWO else conv.sep2\n            keywords = [stop_str]\n            stopping_criteria = KeywordsStoppingCriteria(keywords, tokenizer, input_ids)\n\n            with torch.inference_mode():\n                output_ids = model.generate(\n                    input_ids,\n                    images=video_frames.half().cuda(),\n                    do_sample=True,\n                    temperature=args.temperature,\n                    top_p=args.top_p,\n                    num_beams=args.num_beams,\n                    max_new_tokens=1024,\n                    use_cache=True,\n                    stopping_criteria=[stopping_criteria])\n\n            input_token_len = input_ids.shape[1]\n            n_diff_input_output = (input_ids != output_ids[:, :input_token_len]).sum().item()\n            if n_diff_input_output > 0:\n                print(f'[Warning] {n_diff_input_output} output_ids are not the same as the input_ids')\n            outputs = tokenizer.batch_decode(output_ids[:, input_token_len:], skip_special_tokens=True)[0]\n            outputs = outputs.strip()\n            if outputs.endswith(stop_str):\n                outputs = outputs[:-len(stop_str)]\n            outputs = outputs.strip()\n\n            ans_id = shortuuid.uuid()\n            ans_file.write(json.dumps({'video_name': sample['video_name'],\n                                       \"prompt\": cur_prompt,\n                                       \"text\": outputs,\n                                       \"answer_id\": ans_id,\n                                       \"model_id\": model_name,\n                                       \"answer\": sample['A'],\n                                       \"metadata\": {}}) + \"\\n\")\n            ans_file.flush()\n        except Exception as e:\n            print(f\"Error processing video file '{video_name}': {e}\")\n\n    ans_file.close()\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--model-path\", type=str, default=\"facebook/opt-350m\")\n    parser.add_argument(\"--model-base\", type=str, default=None)\n    parser.add_argument(\"--video-folder\", type=str, default=\"\")\n    parser.add_argument(\"--question-file\", type=str, default=\"tables/question.jsonl\")\n    parser.add_argument(\"--answers-file\", type=str, default=\"answer.jsonl\")\n    parser.add_argument(\"--conv-mode\", type=str, default=\"v1\")\n    parser.add_argument(\"--num-chunks\", type=int, default=1)\n    parser.add_argument(\"--chunk-idx\", type=int, default=0)\n    parser.add_argument(\"--temperature\", type=float, default=0.2)\n    parser.add_argument(\"--top_p\", type=float, default=None)\n    parser.add_argument(\"--num_beams\", type=int, default=1)\n    parser.add_argument(\"--model_use\", type=str, default=\"BASE\")\n    args = parser.parse_args()\n\n    eval_model(args)\n"
  },
  {
    "path": "model/univi/eval/model_video_qa.py",
    "content": "import argparse\nimport torch\nimport os\nimport json\nfrom tqdm import tqdm\nimport shortuuid\nfrom ChatUniVi.constants import *\nfrom ChatUniVi.conversation import conv_templates, SeparatorStyle\nfrom ChatUniVi.model.builder import load_pretrained_model\nfrom ChatUniVi.utils import disable_torch_init\nfrom ChatUniVi.mm_utils import tokenizer_image_token, get_model_name_from_path, KeywordsStoppingCriteria\nfrom PIL import Image\nimport math\nfrom decord import VideoReader, cpu\nimport numpy as np\n\n\ndef read_json(file):\n    with open(file, \"r\", encoding='utf-8') as f:\n        data = json.load(f)\n    return data\n\ndef split_list(lst, n):\n    \"\"\"Split a list into n (roughly) equal-sized chunks\"\"\"\n    chunk_size = math.ceil(len(lst) / n)  # integer division\n    return [lst[i:i+chunk_size] for i in range(0, len(lst), chunk_size)]\n\n\ndef get_chunk(lst, n, k):\n    chunks = split_list(lst, n)\n    return chunks[k]\n\n\ndef _get_rawvideo_dec(video_path, image_processor, max_frames=MAX_IMAGE_LENGTH, image_resolution=224, video_framerate=1, s=None, e=None):\n    # speed up video decode via decord.\n    video_mask = np.zeros(max_frames, dtype=np.int64)\n    max_video_length = 0\n\n    # T x 3 x H x W\n    video = np.zeros((max_frames, 3, image_resolution, image_resolution), dtype=np.float64)\n\n    if s is None:\n        start_time, end_time = None, None\n    else:\n        start_time = int(s)\n        end_time = int(e)\n        start_time = start_time if start_time >= 0. else 0.\n        end_time = end_time if end_time >= 0. else 0.\n        if start_time > end_time:\n            start_time, end_time = end_time, start_time\n        elif start_time == end_time:\n            end_time = start_time + 1\n\n    if os.path.exists(video_path):\n        vreader = VideoReader(video_path, ctx=cpu(0))\n    else:\n        print(video_path)\n        raise FileNotFoundError\n\n    fps = vreader.get_avg_fps()\n    f_start = 0 if start_time is None else int(start_time * fps)\n    f_end = int(min(1000000000 if end_time is None else end_time * fps, len(vreader) - 1))\n    num_frames = f_end - f_start + 1\n    if num_frames > 0:\n        # T x 3 x H x W\n        sample_fps = int(video_framerate)\n        t_stride = int(round(float(fps) / sample_fps))\n\n        all_pos = list(range(f_start, f_end + 1, t_stride))\n        if len(all_pos) > max_frames:\n            sample_pos = [all_pos[_] for _ in np.linspace(0, len(all_pos) - 1, num=max_frames, dtype=int)]\n        else:\n            sample_pos = all_pos\n\n        patch_images = [Image.fromarray(f) for f in vreader.get_batch(sample_pos).asnumpy()]\n\n        patch_images = torch.stack([image_processor.preprocess(img, return_tensors='pt')['pixel_values'][0] for img in patch_images])\n        slice_len = patch_images.shape[0]\n\n        max_video_length = max_video_length if max_video_length > slice_len else slice_len\n        if slice_len < 1:\n            pass\n        else:\n            video[:slice_len, ...] = patch_images\n\n        return patch_images, slice_len\n    else:\n        print(\"video path: {} error.\".format(video_path))\n\n    video_mask[:max_video_length] = [1] * max_video_length\n\n    return torch.from_numpy(video), video_mask\n\n\ndef eval_model(args):\n    # Model\n    disable_torch_init()\n    model_path = os.path.expanduser(args.model_path)\n    model_name = \"ChatUniVi\"\n    tokenizer, model, image_processor, context_len = load_pretrained_model(model_path, args.model_base, model_name)\n\n    mm_use_im_start_end = getattr(model.config, \"mm_use_im_start_end\", False)\n    mm_use_im_patch_token = getattr(model.config, \"mm_use_im_patch_token\", True)\n    if mm_use_im_patch_token:\n        tokenizer.add_tokens([DEFAULT_IMAGE_PATCH_TOKEN], special_tokens=True)\n    if mm_use_im_start_end:\n        tokenizer.add_tokens([DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN], special_tokens=True)\n    model.resize_token_embeddings(len(tokenizer))\n\n    vision_tower = model.get_vision_tower()\n    if not vision_tower.is_loaded:\n        vision_tower.load_model()\n    image_processor = vision_tower.image_processor\n\n    if model.config.config[\"use_cluster\"]:\n        for n, m in model.named_modules():\n            m = m.to(dtype=torch.bfloat16)\n\n    # Load the ground truth file\n    with open(args.question_file) as file:\n        gt_contents = json.load(file)\n    answers_list = read_json(args.answers_list)\n\n    answers_file = os.path.expanduser(args.answers_file)\n    os.makedirs(os.path.dirname(answers_file), exist_ok=True)\n    ans_file = open(answers_file, \"w\")\n\n    video_formats = ['.mp4', '.avi', '.mov', '.mkv']\n\n    # Iterate over each sample in the ground truth file\n    for sample in tqdm(gt_contents):\n        sample_set = sample\n        qs = sample['question']\n\n        # Load the video file\n        for fmt in video_formats:  # Added this line\n            video_name = sample['video_name']\n            temp_path = os.path.join(args.video_folder, f\"{video_name}{fmt}\")\n            if os.path.exists(temp_path):\n                video_path = temp_path\n                break\n\n            video_name = \"v_\" + sample['video_name']\n            temp_path = os.path.join(args.video_folder, f\"{video_name}{fmt}\")\n            if os.path.exists(temp_path):\n                video_path = temp_path\n                break\n\n        # Check if the video exists\n        if video_path is not None:  # Modified this line\n            if args.max_frames:\n                video_frames, slice_len = _get_rawvideo_dec(video_path, image_processor, max_frames=args.max_frames)\n            else:\n                video_frames, slice_len = _get_rawvideo_dec(video_path, image_processor, max_frames=MAX_IMAGE_LENGTH)\n\n        try:\n            cur_prompt = qs\n            if model.config.mm_use_im_start_end:\n                qs = DEFAULT_IM_START_TOKEN + DEFAULT_IMAGE_TOKEN * slice_len + DEFAULT_IM_END_TOKEN + '\\n' + qs\n            else:\n                qs = DEFAULT_IMAGE_TOKEN * slice_len + '\\n' + qs\n\n            conv = conv_templates[args.conv_mode].copy()\n            conv.append_message(conv.roles[0], qs)\n            conv.append_message(conv.roles[1], None)\n            prompt = conv.get_prompt()\n\n            input_ids = tokenizer_image_token(prompt, tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(\n                0).cuda()\n\n            stop_str = conv.sep if conv.sep_style != SeparatorStyle.TWO else conv.sep2\n            keywords = [stop_str]\n            stopping_criteria = KeywordsStoppingCriteria(keywords, tokenizer, input_ids)\n\n            with torch.inference_mode():\n                output_ids = model.generate(\n                    input_ids,\n                    images=video_frames.half().cuda(),\n                    do_sample=True,\n                    temperature=args.temperature,\n                    top_p=args.top_p,\n                    num_beams=args.num_beams,\n                    output_scores=True,\n                    return_dict_in_generate=True,\n                    max_new_tokens=1024,\n                    use_cache=True,\n                    stopping_criteria=[stopping_criteria])\n\n            output_ids = output_ids.sequences\n            input_token_len = input_ids.shape[1]\n            n_diff_input_output = (input_ids != output_ids[:, :input_token_len]).sum().item()\n            if n_diff_input_output > 0:\n                print(f'[Warning] {n_diff_input_output} output_ids are not the same as the input_ids')\n            outputs = tokenizer.batch_decode(output_ids[:, input_token_len:], skip_special_tokens=True)[0]\n            outputs = outputs.strip()\n            if outputs.endswith(stop_str):\n                outputs = outputs[:-len(stop_str)]\n            outputs = outputs.strip()\n\n            ans_id = shortuuid.uuid()\n            ans_file.write(json.dumps({\"video_name\": sample['video_name'],\n                                       \"prompt\": cur_prompt,\n                                       \"text\": outputs,\n                                       \"answer_id\": ans_id,\n                                       \"model_id\": model_name,\n                                       \"answer\": sample['answer'],\n                                       \"metadata\": {}}) + \"\\n\")\n            ans_file.flush()\n        except Exception as e:\n            print(f\"Error processing video file '{video_name}': {e}\")\n\n    ans_file.close()\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--model-path\", type=str, default=\"facebook/opt-350m\")\n    parser.add_argument(\"--model-base\", type=str, default=None)\n    parser.add_argument(\"--video-folder\", type=str, default=\"\")\n    parser.add_argument(\"--question-file\", type=str, default=\"tables/question.jsonl\")\n    parser.add_argument(\"--answers-list\", type=str, default=\"tables/answers_list.json\")\n    parser.add_argument(\"--answers-file\", type=str, default=\"answer.jsonl\")\n    parser.add_argument(\"--conv-mode\", type=str, default=\"v1\")\n    parser.add_argument(\"--num-chunks\", type=int, default=1)\n    parser.add_argument(\"--chunk-idx\", type=int, default=0)\n    parser.add_argument(\"--temperature\", type=float, default=0.2)\n    parser.add_argument(\"--top_p\", type=float, default=None)\n    parser.add_argument(\"--num_beams\", type=int, default=1)\n    parser.add_argument(\"--max_frames\", type=int, default=None)\n    args = parser.parse_args()\n\n    eval_model(args)\n"
  },
  {
    "path": "model/univi/eval/model_vqa.py",
    "content": "import argparse\nimport torch\nimport os\nimport json\nfrom tqdm import tqdm\nimport shortuuid\nfrom ChatUniVi.constants import *\nfrom ChatUniVi.conversation import conv_templates, SeparatorStyle\nfrom ChatUniVi.model.builder import load_pretrained_model\nfrom ChatUniVi.utils import disable_torch_init\nfrom ChatUniVi.mm_utils import tokenizer_image_token, get_model_name_from_path, KeywordsStoppingCriteria\nfrom PIL import Image\nimport math\n\n\ndef split_list(lst, n):\n    \"\"\"Split a list into n (roughly) equal-sized chunks\"\"\"\n    chunk_size = math.ceil(len(lst) / n)  # integer division\n    return [lst[i:i+chunk_size] for i in range(0, len(lst), chunk_size)]\n\n\ndef get_chunk(lst, n, k):\n    chunks = split_list(lst, n)\n    return chunks[k]\n\n\ndef eval_model(args):\n    # Model\n    disable_torch_init()\n    model_path = os.path.expanduser(args.model_path)\n    model_name = \"ChatUniVi\"\n    tokenizer, model, image_processor, context_len = load_pretrained_model(model_path, args.model_base, model_name)\n\n    mm_use_im_start_end = getattr(model.config, \"mm_use_im_start_end\", False)\n    mm_use_im_patch_token = getattr(model.config, \"mm_use_im_patch_token\", True)\n    if mm_use_im_patch_token:\n        tokenizer.add_tokens([DEFAULT_IMAGE_PATCH_TOKEN], special_tokens=True)\n    if mm_use_im_start_end:\n        tokenizer.add_tokens([DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN], special_tokens=True)\n    model.resize_token_embeddings(len(tokenizer))\n\n    vision_tower = model.get_vision_tower()\n    if not vision_tower.is_loaded:\n        vision_tower.load_model()\n    image_processor = vision_tower.image_processor\n\n    questions = [json.loads(q) for q in open(os.path.expanduser(args.question_file), \"r\")]\n    questions = get_chunk(questions, args.num_chunks, args.chunk_idx)\n    answers_file = os.path.expanduser(args.answers_file)\n    os.makedirs(os.path.dirname(answers_file), exist_ok=True)\n    ans_file = open(answers_file, \"w\")\n    for line in tqdm(questions):\n        idx = line[\"question_id\"]\n        image_file = line[\"image\"]\n        qs = line[\"text\"]\n        cur_prompt = qs\n        if model.config.mm_use_im_start_end:\n            qs = DEFAULT_IM_START_TOKEN + DEFAULT_IMAGE_TOKEN + DEFAULT_IM_END_TOKEN + '\\n' + qs\n        else:\n            qs = DEFAULT_IMAGE_TOKEN + '\\n' + qs\n\n        conv = conv_templates[args.conv_mode].copy()\n        conv.append_message(conv.roles[0], qs)\n        conv.append_message(conv.roles[1], None)\n        prompt = conv.get_prompt()\n\n        input_ids = tokenizer_image_token(prompt, tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(0).cuda()\n\n        image = Image.open(os.path.join(args.image_folder, image_file))\n        image_tensor = image_processor.preprocess(image, return_tensors='pt')['pixel_values'][0]\n\n        stop_str = conv.sep if conv.sep_style != SeparatorStyle.TWO else conv.sep2\n        keywords = [stop_str]\n        stopping_criteria = KeywordsStoppingCriteria(keywords, tokenizer, input_ids)\n\n        with torch.inference_mode():\n            output_ids = model.generate(\n                input_ids,\n                images=image_tensor.unsqueeze(0).half().cuda(),\n                do_sample=True,\n                temperature=args.temperature,\n                top_p=args.top_p,\n                num_beams=args.num_beams,\n                max_new_tokens=args.max_new_tokens,\n                use_cache=True,\n                stopping_criteria=[stopping_criteria])\n\n        input_token_len = input_ids.shape[1]\n        n_diff_input_output = (input_ids != output_ids[:, :input_token_len]).sum().item()\n        if n_diff_input_output > 0:\n            print(f'[Warning] {n_diff_input_output} output_ids are not the same as the input_ids')\n        outputs = tokenizer.batch_decode(output_ids[:, input_token_len:], skip_special_tokens=True)[0]\n        outputs = outputs.strip()\n        if outputs.endswith(stop_str):\n            outputs = outputs[:-len(stop_str)]\n        outputs = outputs.strip()\n\n        ans_id = shortuuid.uuid()\n        ans_file.write(json.dumps({\"question_id\": idx,\n                                   \"prompt\": cur_prompt,\n                                   \"text\": outputs,\n                                   \"answer_id\": ans_id,\n                                   \"model_id\": model_name,\n                                   \"metadata\": {}}) + \"\\n\")\n        ans_file.flush()\n    ans_file.close()\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--model-path\", type=str, default=\"facebook/opt-350m\")\n    parser.add_argument(\"--model-base\", type=str, default=None)\n    parser.add_argument(\"--image-folder\", type=str, default=\"\")\n    parser.add_argument(\"--question-file\", type=str, default=\"tables/question.jsonl\")\n    parser.add_argument(\"--answers-file\", type=str, default=\"answer.jsonl\")\n    parser.add_argument(\"--conv-mode\", type=str, default=\"simple\")\n    parser.add_argument(\"--num-chunks\", type=int, default=1)\n    parser.add_argument(\"--chunk-idx\", type=int, default=0)\n    parser.add_argument(\"--temperature\", type=float, default=0.2)\n    parser.add_argument(\"--top_p\", type=float, default=None)\n    parser.add_argument(\"--num_beams\", type=int, default=1)\n    parser.add_argument(\"--model_use\", type=str, default=\"BASE\")\n    parser.add_argument(\"--max_new_tokens\", type=int, default=1024)\n    args = parser.parse_args()\n\n    eval_model(args)\n"
  },
  {
    "path": "model/univi/eval/model_vqa_scienceqa.py",
    "content": "import argparse\nimport torch\nimport os\nimport json\nfrom tqdm import tqdm\nimport shortuuid\n\nfrom ChatUniVi.constants import IMAGE_TOKEN_INDEX, DEFAULT_IMAGE_TOKEN, DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN\nfrom ChatUniVi.conversation import conv_templates, SeparatorStyle\nfrom ChatUniVi.model.builder import load_pretrained_model\nfrom ChatUniVi.utils import disable_torch_init\nfrom ChatUniVi.mm_utils import tokenizer_image_token, get_model_name_from_path, KeywordsStoppingCriteria\n\nfrom PIL import Image\nimport math\nimport numpy as np\n\n\ndef split_list(lst, n):\n    \"\"\"Split a list into n (roughly) equal-sized chunks\"\"\"\n    chunk_size = math.ceil(len(lst) / n)  # integer division\n    return [lst[i:i+chunk_size] for i in range(0, len(lst), chunk_size)]\n\n\ndef get_chunk(lst, n, k):\n    chunks = split_list(lst, n)\n    return chunks[k]\n\n\ndef eval_model(args):\n    # Model\n    disable_torch_init()\n    model_path = os.path.expanduser(args.model_path)\n    model_name = \"ChatUniVi\"\n    tokenizer, model, image_processor, context_len = load_pretrained_model(model_path, args.model_base, model_name)\n\n    vision_tower = model.get_vision_tower()\n    if not vision_tower.is_loaded:\n        vision_tower.load_model()\n    image_processor = vision_tower.image_processor\n\n    questions = json.load(open(os.path.expanduser(args.question_file), \"r\"))\n    questions = get_chunk(questions, args.num_chunks, args.chunk_idx)\n    answers_file = os.path.expanduser(args.answers_file)\n    os.makedirs(os.path.dirname(answers_file), exist_ok=True)\n    ans_file = open(answers_file, \"w\")\n    for i, line in enumerate(tqdm(questions)):\n        idx = line[\"id\"]\n        question = line['conversations'][0]\n        gt_ans = line[\"conversations\"][1]\n        qs = question['value'].replace('<image>', '').strip()\n        cur_prompt = qs\n\n        if 'image' in line:\n            image_file = line[\"image\"].replace(\"\\\\\", \"/\")\n            image = Image.open(os.path.join(args.image_folder, image_file))\n            image_tensor = image_processor.preprocess(image, return_tensors='pt')['pixel_values'][0]\n            images = image_tensor.unsqueeze(0).half().cuda()\n            if getattr(model.config, 'mm_use_im_start_end', False):\n                qs = DEFAULT_IM_START_TOKEN + DEFAULT_IMAGE_TOKEN + DEFAULT_IM_END_TOKEN + '\\n' + qs\n            else:\n                qs = DEFAULT_IMAGE_TOKEN + '\\n' + qs\n            cur_prompt = '<image>' + '\\n' + cur_prompt\n        else:\n            images = None\n\n        conv = conv_templates[args.conv_mode].copy()\n        conv.append_message(conv.roles[0], qs)\n        conv.append_message(conv.roles[1], None)\n        prompt = conv.get_prompt()\n\n        input_ids = tokenizer_image_token(prompt, tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(0).cuda()\n\n        stop_str = conv.sep if conv.sep_style != SeparatorStyle.TWO else conv.sep2\n        keywords = [stop_str]\n        stopping_criteria = KeywordsStoppingCriteria(keywords, tokenizer, input_ids)\n\n        with torch.inference_mode():\n            output_ids = model.generate(\n                input_ids,\n                images=images,\n                do_sample=True,\n                temperature=0.2,\n                max_new_tokens=1024,\n                use_cache=True,\n                stopping_criteria=[stopping_criteria])\n\n        input_token_len = input_ids.shape[1]\n        n_diff_input_output = (input_ids != output_ids[:, :input_token_len]).sum().item()\n        if n_diff_input_output > 0:\n            print(f'[Warning] {n_diff_input_output} output_ids are not the same as the input_ids')\n        outputs = tokenizer.batch_decode(output_ids[:, input_token_len:], skip_special_tokens=True)[0]\n        outputs = outputs.strip()\n        if outputs.endswith(stop_str):\n            outputs = outputs[:-len(stop_str)]\n        outputs = outputs.strip()\n\n        outputs_reasoning = outputs\n        input_ids = tokenizer_image_token(prompt + outputs_reasoning + ' ###\\nANSWER:', tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(0).cuda()\n\n        with torch.inference_mode():\n            output_ids = model.generate(\n                input_ids,\n                images=images,\n                do_sample=True,\n                temperature=0.2,\n                max_new_tokens=64,\n                use_cache=True,\n                output_scores=True,\n                return_dict_in_generate=True,\n                stopping_criteria=[stopping_criteria])\n\n        scores = output_ids.scores[0][0].to(torch.float32)\n        label_score = []\n\n        candidates = []\n        answers_list = [\"A\", \"B\", \"C\", \"D\", \"E\", \"F\", \"G\", \"H\", \"I\", \"J\", \"K\", \"L\", \"M\", \"N\", \"O\", \"P\", \"Q\", \"R\", \"S\", \"T\", \"U\", \"V\", \"W\", \"X\", \"Y\", \"Z\"]\n        for i in answers_list:\n            if \"(\" + i + \")\" in cur_prompt:\n                candidates.append(i)\n\n        for can in candidates:\n            can_id = tokenizer.encode(can)[-1]\n            label_score.append(scores[can_id].item())\n        outputs_answer = candidates[np.argmax(label_score)]\n\n        output_ids = output_ids.sequences\n\n        input_token_len = input_ids.shape[1]\n        n_diff_input_output = (input_ids != output_ids[:, :input_token_len]).sum().item()\n        if n_diff_input_output > 0:\n            print(f'[Warning] {n_diff_input_output} output_ids are not the same as the input_ids')\n        outputs = tokenizer.batch_decode(output_ids[:, input_token_len:], skip_special_tokens=True)[0]\n        outputs = outputs.strip()\n        if outputs.endswith(stop_str):\n            outputs = outputs[:-len(stop_str)]\n        outputs = outputs.strip()\n        outputs = outputs_reasoning + '\\n The answer is ' + outputs\n\n        ans_id = shortuuid.uuid()\n        ans_file.write(json.dumps({\"question_id\": idx,\n                                   \"prompt\": cur_prompt,\n                                   \"text\": outputs,\n                                   \"answer_id\": ans_id,\n                                   \"model_id\": model_name,\n                                   \"pred\": outputs_answer,\n                                   \"metadata\": {}}) + \"\\n\")\n        ans_file.flush()\n    ans_file.close()\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--model-path\", type=str, default=\"facebook/opt-350m\")\n    parser.add_argument(\"--model-base\", type=str, default=None)\n    parser.add_argument(\"--image-folder\", type=str, default=\"\")\n    parser.add_argument(\"--question-file\", type=str, default=\"tables/question.json\")\n    parser.add_argument(\"--answers-file\", type=str, default=\"answer.jsonl\")\n    parser.add_argument(\"--conv-mode\", type=str, default=\"simple\")\n    parser.add_argument(\"--num-chunks\", type=int, default=1)\n    parser.add_argument(\"--chunk-idx\", type=int, default=0)\n    args = parser.parse_args()\n\n    eval_model(args)\n"
  },
  {
    "path": "model/univi/eval/questions/coco2014_val_qa_eval/qa90_gpt4_answer.jsonl",
    "content": "{\"question_id\": 0, \"text\": \"The colors of the two suitcases in the image are black and brown with yellow details.\", \"category\": \"conv\"}\n{\"question_id\": 1, \"text\": \"The image features two antique suitcases made of leather, stacked one on top of the other. The top suitcase is black, while the bottom one has a combination of brown and yellow colors. Both suitcases are prominently displayed side by side, taking up a large portion of the image. They appear to be vintage luggage, possibly available for purchase with price tags attached, showcasing their classic design and craftsmanship.\", \"category\": \"detail\"}\n{\"question_id\": 2, \"text\": \"Several factors could make the two stacked suitcases valuable. In the image, they are described as antique, which suggests that they are potentially rare or have some historical significance. Their age and rarity could contribute to their value. Additionally, they are made of leather, which is a material known for its durability and, in some cases, luxury. The suitcases also differ in color, featuring black, brown, and yellow tones, which may attract buyers due to their aesthetic appeal or the desire to own a unique piece of luggage. Furthermore, the presence of price tags on the luggage indicates that they are being sold, drawing attention to their perceived value in the market. Collectors or enthusiasts of vintage items may find these suitcases valuable due to their material, design, age, and distinct appearance.\", \"category\": \"complex\"}\n{\"question_id\": 3, \"text\": \"The main objects on the table in the image are plates, glasses, eating utensils, and possibly a bottle of something.\", \"category\": \"conv\"}\n{\"question_id\": 4, \"text\": \"The image showcases a dining table filled with various dirty dishes, eating utensils, and a bottle. The table has plates and glasses scattered across it. There are at least two cups on the table, with one positioned on the left and another on the right side. \\n\\nTwo forks can be seen, one resting on a small white plate and the other located towards the left side of the table. A spoon is also present, placed near the left corner of the table. Additionally, there is a bottle located in the upper central area of the table.\", \"category\": \"detail\"}\n{\"question_id\": 5, \"text\": \"A meal or gathering might have recently taken place around this table, as evidenced by the variety of dirty dishes, utensils, and drinkware present on it. The aftermath of this meal or event could involve the need to clean up and wash the dirty dishes, glasses, and eating utensils. Items on the table include plates, forks, spoons, cups, and a bottle, which are typically used during such occasions. Participants might have engaged in conversation, shared food and beverages, and enjoyed each other's company at this table. Once the gathering is complete, disposing of any leftovers and cleaning the table area would be necessary to prepare it for the next use.\", \"category\": \"complex\"}\n{\"question_id\": 6, \"text\": \"The main focus of the image is a cat or kitten sitting on or next to a laptop computer.\", \"category\": \"conv\"}\n{\"question_id\": 7, \"text\": \"The image features a cat sitting on a wooden desk, intently staring at a black laptop computer that is open in front of it. The desk is quite organized, with several books spread around, both on the left and right sides of the laptop. Some books are neatly piled and others are laid out individually. The scene could be interpreted as the cat appearing to use the laptop or showing interest in what's on the screen.\", \"category\": \"detail\"}\n{\"question_id\": 8, \"text\": \"The cat may be interested in the laptop due to the light coming from the screen, the movement of the cursor, or the sounds produced by the laptop, such as keystrokes or notifications. Cats are known to be naturally curious creatures and are often attracted to objects that stimulate their senses. The visual display, warmth emanating from the device, and interactive nature of the laptop could be appealing to the cat, prompting it to sit on the desk and face the open laptop. Additionally, the cat may simply be seeking its owner's attention or wanting to be close to them while they use the laptop.\", \"category\": \"complex\"}\n{\"question_id\": 9, \"text\": \"The dog in the image is black.\", \"category\": \"conv\"}\n{\"question_id\": 10, \"text\": \"The image features a large black dog with a red collar laying down on a kitchen floor. The tiled floor provides a comfortable space for the dog to relax. The dog is positioned towards the middle of the scene. Next to the dog, there are two bowls placed on the floor, one around the top-left side and the other slightly further to the right. These could be the dog's food and water bowls. The scene depicts a cozy domestic environment for the dog.\", \"category\": \"detail\"}\n{\"question_id\": 11, \"text\": \"The dog may have chosen to lay down on the kitchen floor in this location for several reasons. First, the tiled floor can provide a cool surface, which could be comforting compared to a warm or soft surface. This is particularly true if the dog has a thick coat or if the temperature in the room is high. Second, the dog is positioned next to its bowls and a toy, which suggests that the location is familiar and associated with food, water, and playtime. The dog could be resting near these resources for convenience and ease of access. Lastly, the location could be a central spot in the home, and dogs often prefer to stay near their owners or members of the household. By laying on the kitchen floor, the dog might be able to keep an eye on the activities happening around it and remain close to its family.\", \"category\": \"complex\"}\n{\"question_id\": 12, \"text\": \"The cart with luggage bags is located in a lobby.\", \"category\": \"conv\"}\n{\"question_id\": 13, \"text\": \"The scene is set in a lobby at a commercial business, where a wheeled luggage cart is filled with various suitcases and bags. There are a number of luggage bags, including two backpacks, one near the front of the cart and another near the back, as well as multiple suitcases placed on different sections of the cart. \\n\\nA handbag is also visible, placed near the front of the cart. Two people are present in the scene: one person standing near the left side and another person on the right side, possibly engaging in conversation or waiting to transport their luggage to their rooms.\", \"category\": \"detail\"}\n{\"question_id\": 14, \"text\": \"In the image, a cart is filled with numerous pieces of luggage, including suitcases, bags, and backpacks, in the lobby of a commercial business. The staff responsible for handling the luggage might face several challenges such as:\\n\\n1. Efficiently organizing and placing the luggage on the cart to prevent any damages or items from falling off during transportation.\\n2. Identifying and keeping track of each guest's belongings to avoid misplacement or mixing up the luggage.\\n3. Maneuvering the heavily loaded cart without causing hindrances to other guests in the lobby while ensuring their safety.\\n4. Carrying or transporting the luggage to the guests' rooms in a timely manner to maintain customer satisfaction and efficient use of staff resources.\\n\\nTo overcome these challenges, staff might need proper training in luggage handling, organization, and customer service skills. Maintaining clear luggage tags and taking note of each item could help them ensure accurate delivery to the corresponding guests' rooms.\", \"category\": \"complex\"}\n{\"question_id\": 15, \"text\": \"The image features a large, placid lake.\", \"category\": \"conv\"}\n{\"question_id\": 16, \"text\": \"The image depicts a serene and picturesque landscape with a large, placid lake surrounded by beautiful tree-covered mountains. Cliffs rise majestically on the edge of the lake, showcasing the grandeur of nature. \\n\\nIn the distance, near the waterfront, a train can be seen traveling on a track. The train adds a touch of human presence to the otherwise untouched landscape and further enhances the scenic view.\", \"category\": \"detail\"}\n{\"question_id\": 17, \"text\": \"There could be several reasons for the train to be traveling on this scenic route surrounded by mountains, water, and trees. First, the train route might have been built to provide transportation services to local communities or businesses located in this remote or picturesque area. It may facilitate travel, trade, or tourism in the region. Second, the scenic route could be intentionally designed to attract tourists who seek leisure train journeys that showcase natural beauty and captivating landscapes. These types of train rides offer a unique and immersive experience for people who enjoy exploring breathtaking scenery and discovering new destinations while traveling comfortably. Ultimately, the train route could serve both practical and recreational purposes, fostering connectivity and promoting tourism for the area.\", \"category\": \"complex\"}\n{\"question_id\": 18, \"text\": \"The main object in the image is a colorful striped umbrella standing on the beach.\", \"category\": \"conv\"}\n{\"question_id\": 19, \"text\": \"The image features a colorful striped umbrella on the beach, with its vibrant appearance attracting attention. The umbrella is firmly positioned in the sand, providing shade and comfort for visitors. The umbrella sits near the ocean, offering a lovely view of the water and contributing to the pleasant beach atmosphere.\", \"category\": \"detail\"}\n{\"question_id\": 20, \"text\": \"The colorful umbrella set up on the beach serves several purposes. First, it provides shade from the sun, which helps protect people from direct sunlight and the associated harmful UV rays, reducing the risk of sunburn and heatstroke. Second, it offers a comfortable spot to relax, rest, and enjoy the beach ambiance without being exposed to the intense sun or heat. Finally, the umbrella creates a designated area for beach-goers to keep their belongings and have a visible landmark to locate their spot quickly when in the crowded beach environment.\", \"category\": \"complex\"}\n{\"question_id\": 21, \"text\": \"The house is in the beginning stages of its construction, with the wooden structure, studs, and staircase partially built but not yet completed.\", \"category\": \"conv\"}\n{\"question_id\": 22, \"text\": \"The image shows the beginning stages of a house under construction. The wooden structure is still being built, and there are lots of wooden studs visible throughout the scene, indicating work in progress. Additionally, a partially-built staircase can be seen within the house, giving an idea of the floor plan layout.\\n\\nDespite the house still being under construction, a bed and a TV are already present in the area. The bed is located near the center of the image, with the TV placed to its left. This shows that some household items have been brought in, probably in anticipation of the house's completion.\", \"category\": \"detail\"}\n{\"question_id\": 23, \"text\": \"In the current state of the house construction with wooden studs and a partially-built staircase, a potential obstacle that might occur is the incomplete structure being exposed to external elements like rain, snow, or strong winds. These conditions can potentially damage the building materials, delay construction work, and cause additional unexpected costs for repairing or replacing materials. It is essential for the builders to properly cover the construction site and store materials accordingly to protect them from potential damage when not in use.\", \"category\": \"complex\"}\n{\"question_id\": 24, \"text\": \"There are three pizzas in the image.\", \"category\": \"conv\"}\n{\"question_id\": 25, \"text\": \"The image displays three open pizza boxes with pizzas inside. The first pizza box, situated to the left, contains a smaller pizza. The second pizza box, positioned in the middle, features a larger pizza topped with tortilla chips. The third pizza box, located to the right, contains another smaller pizza. \\n\\nBeside the large pizza, there are two side orders of sauce in bowls, accompanying the delicious meal. The arrangement showcases a delicious spread of pizzas, inviting everyone to enjoy their different flavors and sizes.\", \"category\": \"detail\"}\n{\"question_id\": 26, \"text\": \"When dividing these pizzas equitably among a group of people, one might face several challenges due to the different sizes and potential toppings on the pizzas. In the image, there are three pizzas sitting in their delivery boxes, with one pizza being larger than the other two. This size difference may complicate equal distribution of pizza slices among the group, as some people might want more of the larger pizza, while others may prefer the smaller ones.\\n\\nFurthermore, one of the pizzas is topped with tortilla chips, which could lead to preference differences among the group, as some people might like this topping while others may not. Lastly, alongside one of the pizzas, there are two side orders of sauce, which may need to be shared among those who enjoy sauce with their pizza. All these factors make it a challenge to ensure that everyone in the group has an equal and satisfying share of the pizzas and accompanying sauces. One possible solution is to have a group discussion and decide on rules or a plan for dividing the pizzas, taking into account individual preferences and dietary restrictions if any.\", \"category\": \"complex\"}\n{\"question_id\": 27, \"text\": \"There are four doughnuts in the box.\", \"category\": \"conv\"}\n{\"question_id\": 28, \"text\": \"The image features a box filled with four different kinds of doughnuts sitting on a table. Each doughnut appears to have a unique design or topping. One of the doughnuts is a cake-style doughnut, while another has nuts and coconut on top. The third doughnut appears to be a glazed one, and the last doughnut also has various toppings. The doughnuts are positioned inside the box in close proximity to one another, showcasing their delicious variety.\", \"category\": \"detail\"}\n{\"question_id\": 29, \"text\": \"The box contains a variety of doughnuts with unique taste combinations. Among the four doughnuts, there are cake doughnuts, a glazed doughnut, and one with a mix of nuts and coconut as toppings. These different toppings and textures provide a diverse selection for those who want to try various flavors and types of doughnuts. Combining the flavors of nuts and coconut on one doughnut, in particular, offers a unique taste experience that blends the richness of nuts with the tropical sweetness of coconut. Thus, the box offers a selection that caters to different preferences and invites people to discover new taste combinations.\", \"category\": \"complex\"}\n{\"question_id\": 30, \"text\": \"In the image, the man is holding up clothes on hangers, possibly in some hanger bags, and appears to be preparing for travel, as a suitcase is also in front of him.\", \"category\": \"conv\"}\n{\"question_id\": 31, \"text\": \"The image depicts a man standing near a window, holding two clothing hangers with garments in both hands, one red and one white. In front of him, there is a suitcase, possibly indicating that he is preparing for travel or organizing his belongings. The man appears to be showing or comparing these clothes while packing his luggage.\", \"category\": \"detail\"}\n{\"question_id\": 32, \"text\": \"The man might be holding the clothes on hangers because he is preparing to pack his suitcase for a trip or has just arrived at his destination and is unpacking his belongings. By holding the clothes on hangers, he can avoid wrinkles and ensure that the garments remain in good condition for wearing during his journey or at his destination. The presence of a suitcase in front of him supports this idea, as it is commonly used for transportation and storage of personal belongings when traveling.\", \"category\": \"complex\"}\n{\"question_id\": 33, \"text\": \"There are four giraffes in the image.\", \"category\": \"conv\"}\n{\"question_id\": 34, \"text\": \"The image showcases a group of four giraffes standing in their natural habitat, a grassy field with some dry brush. They are dispersed across the field, with one giraffe positioned more towards the left, and the other three clustered closer together on the right side. The giraffes appear to be grazing peacefully or engaging in social interactions. A tree can be seen in the scene, providing shade and a point of interest for the giraffes to gather around.\", \"category\": \"detail\"}\n{\"question_id\": 35, \"text\": \"In the image, there are four giraffes gathered near the same tree in their natural habitat, a grass field with dry brush. Giraffes may gather near the same tree for various reasons. One common reason is to feed, as their long necks enable them to reach high branches for fresh leaves and foliage, which is a primary part of their diet. Giraffes are also social animals, so they may gather around the same tree to interact with each other and maintain their social bonds. Furthermore, the tree can provide shade in the hot African sun, offering a place for the giraffes to rest and regulate their body temperature.\", \"category\": \"complex\"}\n{\"question_id\": 36, \"text\": \"The main focus of the image is the head of a giraffe, shown in a close-up headshot.\", \"category\": \"conv\"}\n{\"question_id\": 37, \"text\": \"The image is a clear and colorful close up of a giraffe's head, showcasing its beautiful features. The giraffe is standing tall among several bright green trees, likely in its natural habitat. It appears to be chewing on some leaves, while its face is turned to the side, providing a detailed view of its profile.\", \"category\": \"detail\"}\n{\"question_id\": 38, \"text\": \"From the image, it can be inferred that the giraffe's habitat is likely a natural environment with an abundance of greenery. The giraffe is standing tall among several bright green trees, which suggests that the area is rich in vegetation and provides plenty of food sources for the giraffe, such as leaves. This natural habitat is likely suitable for giraffes to thrive and maintain their unique characteristics, such as their long necks, which are adapted for reaching leaves on tall trees.\", \"category\": \"complex\"}\n{\"question_id\": 39, \"text\": \"The art installation includes a display of large artworks, such as an oversized bench, painted feline heads, and potentially other artistic sculptures or images.\", \"category\": \"conv\"}\n{\"question_id\": 40, \"text\": \"The image features an art installation placed on a city street. The display consists of a large, oversized wooden bench and two massive animal art sculptures, which appear to be painted feline heads. \\n\\nThere are several people in the scene, with two people sitting near the art display, one person standing nearby, and another person further to the left. A parked car is visible behind the bench, close to the edge of the street. Additionally, a backpack can be seen on the ground, closer to the left side of the bench.\", \"category\": \"detail\"}\n{\"question_id\": 41, \"text\": \"The art installation, featuring an oversized wooden bench and two massive animal art sculptures, encourages interaction among people by providing a visually intriguing and inviting space to sit or gather. People are naturally drawn to the unique and whimsical nature of these installations, sparking curiosity and conversation among those who encounter them. The oversized bench provides seating for multiple individuals, prompting people to sit down, rest, or socialize while admiring the giant painted feline heads and other artworks on display. Additionally, the installations capture the attention of passersby, creating a shared experience and a sense of community among those who visit the area. The artistic environment stimulates discussion and appreciation of the art, facilitating social interactions and connections among those who gather near the sculptures and oversized bench.\", \"category\": \"complex\"}\n{\"question_id\": 42, \"text\": \"The main focus of the image is a car parked on the side of the road, next to a parking meter.\", \"category\": \"conv\"}\n{\"question_id\": 43, \"text\": \"The scene features a black car parked on the side of the road next to a parking meter. There is another parking meter slightly further ahead of the car. The car is parked in front of a building, which seems to be the destination for the driver. \\n\\nAdditionally, there are other vehicles in the image. A gray car is situated further behind the black car, and a truck can be seen in the background on the right side. Moreover, there is another vehicle barely visible on the left side of the scene.\", \"category\": \"detail\"}\n{\"question_id\": 44, \"text\": \"The most plausible reason for the car to be parked on the side of the road is that it is utilizing the available parking spot with parking meters. In the image, the car is parked next to two parking meters, which indicates that the driver has parked the car to follow parking regulations and likely paid for their parking session. The car might be parked there so the driver or passengers can go to a nearby building, shop, or participate in any other activities in the area. Parking meters are commonly used in urban and commercial areas to manage and regulate limited street parking spaces, and it's reasonable to assume the driver is abiding by these parking rules.\", \"category\": \"complex\"}\n{\"question_id\": 45, \"text\": \"The unusual aspect of the elderly man's facial appearance in the image is that he has the head of a toothbrush under his nose, which mimics a mustache, specifically a toothbrush mustache.\", \"category\": \"conv\"}\n{\"question_id\": 46, \"text\": \"The image features an elderly man humorously wearing the head of a toothbrush under his nose, creating the illusion of a toothbrush mustache. Since the toothbrush head is positioned like a mustache, it is reminiscent of a toothbrush mustache caricature often associated with Hitler. The man takes up most of the frame, appearing front and center in the scene.\", \"category\": \"detail\"}\n{\"question_id\": 47, \"text\": \"The elderly man wearing the head of a toothbrush under his nose as a moustache could be conveying a satirical or humorous message. By mimicking a toothbrush mustache, he may be making light of or criticizing a specific historical figure or style associated with the toothbrush mustache, such as Adolf Hitler. Using a toothbrush instead of an actual mustache allows him to dramatically emphasize the point and create a lighthearted or comical effect. However, it's essential to consider cultural and social contexts when interpreting such unconventional expressions, as the message may not always be clear or universally accepted.\", \"category\": \"complex\"}\n{\"question_id\": 48, \"text\": \"There are two large passenger airplanes visible in the image.\", \"category\": \"conv\"}\n{\"question_id\": 49, \"text\": \"The scene captures a picturesque view of two large passenger jets, one in the air and one on the ground. They are flying over a beautiful beach filled with various birds. Many birds can be seen scattered across the scene, both near the water and around the area. The blue water in the background adds a calming touch to the image.\", \"category\": \"detail\"}\n{\"question_id\": 50, \"text\": \"The presence of two large passenger jets flying in close proximity to the beach filled with birds can have a negative impact on the avian population. The noise generated by the engines can be stressful and disruptive for the birds, potentially resulting in altered behaviors, flight patterns, or even relocation from the area. In addition, the airplanes could pose a risk of bird strikes, in which birds collide with the planes, leading to injuries or fatalities for the birds and damage to the aircraft. This highlights the importance of maintaining safe distances between airplanes and wildlife habitats in order to minimize the risk of adverse effects on both the environment and aviation.\", \"category\": \"complex\"}\n{\"question_id\": 51, \"text\": \"The cat is curled up and sleeping on the red couch.\", \"category\": \"conv\"}\n{\"question_id\": 52, \"text\": \"A tan and black cat is curled up and comfortably asleep on a vibrant red couch. The cat is situated towards the center of the plush seat. The red couch itself is prominent in the image, occupying a large portion of the frame. The peaceful sleeping cat adds a sense of warmth and coziness to the scene.\", \"category\": \"detail\"}\n{\"question_id\": 53, \"text\": \"The cat may have chosen to sleep on the red couch for several reasons. The couch appears to be plush and comfortable, providing a soft surface for the cat to curl up and maintain its body heat. Cats also prefer quiet and low-traffic areas to rest. The couch may be located in such an area, providing a sense of security for the cat while sleeping. Furthermore, felines are known to be attracted to soft and warm materials, making the red velvet seat an appealing spot for relaxation. It's also common for cats to sleep in locations familiar to them or near their human companions, so the couch might be a place where the cat often spends time or feels safe.\", \"category\": \"complex\"}\n{\"question_id\": 54, \"text\": \"An old Volkswagen Bug is parked next to the stop sign in the image.\", \"category\": \"conv\"}\n{\"question_id\": 55, \"text\": \"In the scene, a woman is standing in front of a window, observing the street outside. On the street, a vintage Volkswagen Bug is parked near a stop sign, which is located towards the center of the image. Several other cars occupy the street, including one positioned to the left of the Volkswagen and two others in the background. On the far left and far right sides of the image, there are additional cars partially visible. The street also features a tree growing near the stop sign, adding a touch of greenery to the urban setting.\", \"category\": \"detail\"}\n{\"question_id\": 56, \"text\": \"From the image, it can be inferred that the traffic situation in the area is relatively light or calm. There is an old VW Bug parked near a stop sign, and a few other cars are also visible on the street. However, there doesn't seem to be any congestion or significant traffic. The presence of the stop sign indicates that there is some traffic regulation and order in place to manage vehicle movement, contributing to the overall calmness of the area. Moreover, no people are seen near the stop sign, which further suggests that there might be low pedestrian activity at the time the picture was taken.\", \"category\": \"complex\"}\n{\"question_id\": 57, \"text\": \"The man in the image is using his cell phone and giving a thumbs up, possibly posing for a picture.\", \"category\": \"conv\"}\n{\"question_id\": 58, \"text\": \"The image depicts a group of people gathered inside a room, creating a lively social atmosphere. A man is prominently featured in the scene, holding a cell phone to his ear and smiling with a thumbs-up gesture, possibly posing for a picture or simply enjoying the conversation.\\n\\nThere are multiple other people in the room, adding to the gathering and engaging in various conversations. The scene also has two cups visible, one on the left side of the room and another on the right side, indicating that the gathering may be a casual social event.\", \"category\": \"detail\"}\n{\"question_id\": 59, \"text\": \"It is likely that the man is giving a thumbs-up gesture while talking on the phone to express a positive emotion or to signal agreement, approval, or satisfaction with the conversation he is having. This non-verbal communication can be conveyed to the people around him or to the person taking the picture of him while on the phone call. The man might be receiving good news, agreeing with the person on the phone, or sharing his excitement with the group of people surrounding him in the room. The specific reason cannot be precisely determined from the image alone, but it does indicate a positive sentiment associated with the phone call.\", \"category\": \"complex\"}\n{\"question_id\": 60, \"text\": \"The dog in the image is a husky.\", \"category\": \"conv\"}\n{\"question_id\": 61, \"text\": \"The image shows a large, adorable husky dog sleeping peacefully on a dog bed in a room. The room has a somewhat dark ambiance, making the scene feel cozy and comfortable. \\n\\nIn the same room, there are two chairs, one positioned towards the center and another one closer to the right side. Additionally, there are two potted plants, one situated slightly behind and to the right of the dog and the other placed further to the right in the room. The presence of these elements gives the room a warm, inviting atmosphere.\", \"category\": \"detail\"}\n{\"question_id\": 62, \"text\": \"The dog owner seems to have taken several measures to make their dog feel comfortable in the room. Based on the image, an adorable husky dog has a designated dog bed to sleep in, providing cushioning and a cozy space for rest. The room is also dimly lit or dark, which contributes to a calmer atmosphere that promotes sleep and relaxation. There might be other considerations, such as room temperature or air circulation, that aid in creating a comfortable environment for the dog. It's essential for pet owners to ensure that their pets have a secure and comfortable space to rest in order to maintain their well-being and happiness.\", \"category\": \"complex\"}\n{\"question_id\": 63, \"text\": \"The color of the elephant in the image is grey.\", \"category\": \"conv\"}\n{\"question_id\": 64, \"text\": \"The image depicts a baby elephant standing alone inside an enclosure. The elephant is positioned towards the center of the pen with a large sand dune, or dirt mount, nearby. In the background, there is a brick building that serves as part of the exhibit. The grey elephant stands calmly, occupying the majority of the scene in this pen.\", \"category\": \"detail\"}\n{\"question_id\": 65, \"text\": \"A potential concern for the baby elephant standing alone inside the pen could be the lack of social interaction with other elephants. Elephants are highly social creatures and form strong bonds within their family units. The absence of other elephants in the enclosure might lead to feelings of loneliness, stress, and anxiety for the baby elephant. It is crucial for the mental and emotional well-being of elephants, especially young ones, to have regular opportunities to interact with their peers and family members in a naturalistic, supportive environment. By addressing this concern, the caretakers of the baby elephant can help ensure its psychological well-being and overall health.\", \"category\": \"complex\"}\n{\"question_id\": 66, \"text\": \"On the orange plate, there are a burger or sandwich, a bowl of broccoli, and a pickle.\", \"category\": \"conv\"}\n{\"question_id\": 67, \"text\": \"The image features a dining table with an orange plate in the center. On the plate, there is a half of a sandwich, a pickle, and a bowl of broccoli, creating a visually appealing and mouth-watering combination. A fork is also placed alongside the plate, ready to be used for enjoying the meal. Several individual pieces of broccoli can be seen around the bowl, adding variety and color to the scene.\", \"category\": \"detail\"}\n{\"question_id\": 68, \"text\": \"Based on the image, it can be inferred that the individual has a balanced approach to their dietary choices. The meal on the table consists of a sandwich, a bowl of broccoli, and a pickle on an orange plate. The sandwich likely provides carbohydrates and proteins, while the broccoli offers essential vitamins, minerals, and fiber. The pickle adds some flavor and tanginess to the meal. This combination of foods illustrates that the person is interested in having a diverse and nutritious diet, incorporating both proteins and vegetables in their meal. Additionally, the presence of a fork suggests that they prefer using cutlery while eating, which can be seen as a more cultured and organized approach to dining.\", \"category\": \"complex\"}\n{\"question_id\": 69, \"text\": \"A white duck is pictured in the image.\", \"category\": \"conv\"}\n{\"question_id\": 70, \"text\": \"The image features a single white bird, likely a duck or a goose, walking along a paved road. The bird appears to be closely examining the ground as it walks. The road runs adjacent to a patch of grass, providing a contrasting backdrop for the scene. The bird occupies a predominant part of the image, offering a close-up view of its action.\", \"category\": \"detail\"}\n{\"question_id\": 71, \"text\": \"While walking along the paved road, the duck may face various challenges. Firstly, the duck could be at risk of encountering vehicles, which might not notice or expect to see wildlife on the road. This could put the duck in danger of being hit or injured by passing traffic. Secondly, the duck might struggle to find appropriate food sources on or near the paved road, as opposed to its natural habitat, such as a body of water or a grassy area, where it would have easier access to its regular diet.\\n\\nFurthermore, the duck might be exposed to potential predators, like domestic pets or other animals that live in urban environments, increasing the risk of harm for the duck. Lastly, walking on the paved concrete surface could be less comfortable for the duck than walking on softer natural ground, causing discomfort over time. Overall, the duck's safety and well-being may be compromised by navigating this environment that is not adapted to its natural behaviors and needs.\", \"category\": \"complex\"}\n{\"question_id\": 72, \"text\": \"Yes, the little boy is wearing a helmet to ensure his safety while riding his bike.\", \"category\": \"conv\"}\n{\"question_id\": 73, \"text\": \"The image depicts a little boy riding his bike on a road. He is practicing safety by wearing a yellow helmet while cycling. The boy is visible from a side angle, capturing both him and his bicycle in motion.\", \"category\": \"detail\"}\n{\"question_id\": 74, \"text\": \"The little boy's precaution of wearing a helmet is noteworthy because it shows that the child or their guardian is aware of and strictly adhering to safety precautions. Wearing a helmet while riding a bicycle is crucial for reducing the risk of severe head injuries in the event of a crash, fall, or any other unforeseen incident. It is especially important for children, who are often more prone to accidents due to their limited experience with balancing and negotiating obstacles. By wearing a helmet, the boy is demonstrating responsible behavior and setting a positive example for others to follow, promoting a culture of safety awareness.\", \"category\": \"complex\"}\n{\"question_id\": 75, \"text\": \"There are three people visible in the image - two women and one man.\", \"category\": \"conv\"}\n{\"question_id\": 76, \"text\": \"The image shows a group of people at a celebration, likely participating in a wine tasting event. There are a total of six people, with three young adults prominently in the foreground. A man wearing glasses stands in the middle, flanked by a couple of women on either side. They are all holding wine glasses, enjoying the event and smiling.\\n\\nAt the table, there are several wine bottles dispersed along its surface, showing the variety of options available for tasting. Additionally, there is a handbag placed on the table, possibly belonging to one of the women attending the event. \\n\\nTwo more people are visible in the background. They are smiling and making conversation while engaging in the celebration with the others.\", \"category\": \"detail\"}\n{\"question_id\": 77, \"text\": \"It appears that the group of people are gathered for a wine tasting or celebration in which they are enjoying various types of wine. They are seen standing and sitting around a table with several wine bottles and holding wine glasses. Their smiles and the friendly atmosphere indicate that it's a social event where they have gathered to indulge in sampling different wines, engage in conversations, and enjoy each other's company.\", \"category\": \"complex\"}\n{\"question_id\": 78, \"text\": \"The main object featured in the image is the clock mounted on a pole or a short tower, standing on the sidewalk next to a building.\", \"category\": \"conv\"}\n{\"question_id\": 79, \"text\": \"The image features a quiet street with a tall clock mounted on a pole at the side of the pavement, near a building. The pole stands prominently on the empty sidewalk, offering a convenient time-keeping source for pedestrians.\\n\\nThere are a few potted plants along the sidewalk, adding a touch of greenery to the scene. Bicycles can also be seen parked nearby, and a couple of cars are parked further down the street. A person is walking in the background, adding some life to the otherwise calm environment.\", \"category\": \"detail\"}\n{\"question_id\": 80, \"text\": \"As you walk down this quiet street, you can easily tell the time by looking at the tall clock that is mounted on a pole along the sidewalk. This clock stands out significantly, making it easily noticeable. Regarding the direction of the sidewalk, the presence of potted plants, bicycles, and cars suggest that this is a well-maintained and organized street. As you follow the sidewalk further, you will see that it is lined with trees, potted plants, and parked bicycles and cars, guiding you in the direction it leads. Additionally, the building next to the clock also gives you context for the orientation and direction of the street.\", \"category\": \"complex\"}\n{\"question_id\": 81, \"text\": \"The person is riding a motorbike, which can also be referred to as a motorcycle or a moped. In this case, the terms motorcycle, scooter, and moped are used interchangeably to describe the same vehicle the woman is riding.\", \"category\": \"conv\"}\n{\"question_id\": 82, \"text\": \"The scene showcases a dirt road, with a woman riding a motorcycle in the middle of the road. She is accompanied by a man walking alongside her, with another man further down the road. Various animals, including three cows, are also present in the scene, suggesting a rural setting. The main cow is positioned to the right of the motorcycle while two smaller cows can be seen on the left side of the road. The people and animals all appear to be going in the same direction down the dirt road.\", \"category\": \"detail\"}\n{\"question_id\": 83, \"text\": \"The woman on the motorcycle might face challenges navigating the dirt road, especially because of the presence of multiple objects and living beings on the road. In the image, a cow is nearby, along with two other smaller cows, two men, and a dog. Dirt roads can be uneven, dusty, and unpredictable, making it important for the woman to maneuver cautiously to avoid any potential accidents. Additionally, she needs to be aware of the animals and people around her to ensure both her safety and the safety of others. This situation requires her to be vigilant, slow down when necessary, and carefully navigate through the environment.\", \"category\": \"complex\"}\n{\"question_id\": 84, \"text\": \"The skateboard in the image is in an upside-down position, with its wheels pointing up and laying on the ground.\", \"category\": \"conv\"}\n{\"question_id\": 85, \"text\": \"In the image, a person wearing camo shorts is standing on a cement surface next to an overturned skateboard. The skateboard is laying upside down with its wheels pointing up, giving a sense of it having been flipped or potentially used for a trick. The boy appears to be standing in front of the skateboard, engaging with it or possibly preparing for his next move.\", \"category\": \"detail\"}\n{\"question_id\": 86, \"text\": \"It's plausible that prior to this moment, the person standing next to the overturned skateboard might have attempted a trick or maneuver on the skateboard, which resulted in either a failed attempt or a wipeout. As a consequence, the skateboard ended up upside down on the ground, with its wheels pointed upward. The person, possibly the skateboarder, is standing next to it, possibly pondering their next move, contemplating a retry or assessing any potential damage to the skateboard.\", \"category\": \"complex\"}\n{\"question_id\": 87, \"text\": \"The man and woman are wearing umbrella hats, which are designed to provide protection from the rain.\", \"category\": \"conv\"}\n{\"question_id\": 88, \"text\": \"The image depicts a man and a woman sitting on top of a bridge, both wearing umbrella hats. The quirky umbrella hats provide them with some cover from the rainy weather. A dog is accompanying the couple, taking a break with them on the bridge. \\n\\nThe surrounding area has a view of the ocean, and there are boats visible in the water. One boat can be found close to the right edge of the scene, while two other boats are in the middle and the far left side of the frame. Additional umbrellas can be spotted in the area, signifying that other pedestrians have also sought shelter from the rain.\", \"category\": \"detail\"}\n{\"question_id\": 89, \"text\": \"On this rainy day, the umbrella hats provide the couple several benefits as they sit on top of a bridge near the ocean with their dog. First, the umbrella hats enable them to keep their hands free, allowing them to hold their dog's leash, interact with each other, and perform other tasks without holding a traditional umbrella. Second, the umbrella hats protect their heads and upper bodies from getting wet due to rain, making their outdoor experience more comfortable. Additionally, the novel and fun nature of the umbrella hats can be a conversation starter and bring some humor to their day despite the gloomy weather.\", \"category\": \"complex\"}\n"
  },
  {
    "path": "model/univi/eval/questions/coco2014_val_qa_eval/qa90_questions.jsonl",
    "content": "{\"question_id\": 0, \"image\": \"COCO_val2014_000000441147.jpg\", \"text\": \"What is the color of the two suitcases in the image?\", \"category\": \"conv\"}\n{\"question_id\": 1, \"image\": \"COCO_val2014_000000441147.jpg\", \"text\": \"Analyze the image in a comprehensive and detailed manner.\", \"category\": \"detail\"}\n{\"question_id\": 2, \"image\": \"COCO_val2014_000000441147.jpg\", \"text\": \"What potential factors could make these suitcases valuable?\", \"category\": \"complex\"}\n{\"question_id\": 3, \"image\": \"COCO_val2014_000000353536.jpg\", \"text\": \"What are the main objects on the table in the image?\", \"category\": \"conv\"}\n{\"question_id\": 4, \"image\": \"COCO_val2014_000000353536.jpg\", \"text\": \"Describe the following image.\", \"category\": \"detail\"}\n{\"question_id\": 5, \"image\": \"COCO_val2014_000000353536.jpg\", \"text\": \"What activity might have recently taken place around this table and what could be its aftermath?\", \"category\": \"complex\"}\n{\"question_id\": 6, \"image\": \"COCO_val2014_000000506095.jpg\", \"text\": \"What is the main focus of the image?\", \"category\": \"conv\"}\n{\"question_id\": 7, \"image\": \"COCO_val2014_000000506095.jpg\", \"text\": \"What is this photo about'?\", \"category\": \"detail\"}\n{\"question_id\": 8, \"image\": \"COCO_val2014_000000506095.jpg\", \"text\": \"What could be a reason for the cat's interest in the laptop?\", \"category\": \"complex\"}\n{\"question_id\": 9, \"image\": \"COCO_val2014_000000514915.jpg\", \"text\": \"What color is the dog in the image?\", \"category\": \"conv\"}\n{\"question_id\": 10, \"image\": \"COCO_val2014_000000514915.jpg\", \"text\": \"Describe the following image.\", \"category\": \"detail\"}\n{\"question_id\": 11, \"image\": \"COCO_val2014_000000514915.jpg\", \"text\": \"Why might the dog have chosen to lay down on the floor in this location?\", \"category\": \"complex\"}\n{\"question_id\": 12, \"image\": \"COCO_val2014_000000056013.jpg\", \"text\": \"Where is the cart with luggage bags located?\", \"category\": \"conv\"}\n{\"question_id\": 13, \"image\": \"COCO_val2014_000000056013.jpg\", \"text\": \"Describe the following image.\", \"category\": \"detail\"}\n{\"question_id\": 14, \"image\": \"COCO_val2014_000000056013.jpg\", \"text\": \"What challenges might the staff encounter with handling luggage in the lobby?\", \"category\": \"complex\"}\n{\"question_id\": 15, \"image\": \"COCO_val2014_000000408439.jpg\", \"text\": \"What is the body of water seen in the image?\", \"category\": \"conv\"}\n{\"question_id\": 16, \"image\": \"COCO_val2014_000000408439.jpg\", \"text\": \"Can you elaborate on the elements of the picture provided?\", \"category\": \"detail\"}\n{\"question_id\": 17, \"image\": \"COCO_val2014_000000408439.jpg\", \"text\": \"What are potential reasons for the train to be traveling in such a scenic route?\", \"category\": \"complex\"}\n{\"question_id\": 18, \"image\": \"COCO_val2014_000000164255.jpg\", \"text\": \"What is the main object in the image?\", \"category\": \"conv\"}\n{\"question_id\": 19, \"image\": \"COCO_val2014_000000164255.jpg\", \"text\": \"What do you think is going on in this snapshot?\", \"category\": \"detail\"}\n{\"question_id\": 20, \"image\": \"COCO_val2014_000000164255.jpg\", \"text\": \"What purpose does the umbrella serve on the beach?\", \"category\": \"complex\"}\n{\"question_id\": 21, \"image\": \"COCO_val2014_000000034096.jpg\", \"text\": \"What stage is the house in regarding its construction?\", \"category\": \"conv\"}\n{\"question_id\": 22, \"image\": \"COCO_val2014_000000034096.jpg\", \"text\": \"What is this photo about'?\", \"category\": \"detail\"}\n{\"question_id\": 23, \"image\": \"COCO_val2014_000000034096.jpg\", \"text\": \"What may be a potential obstacle for the house construction in its current state?\", \"category\": \"complex\"}\n{\"question_id\": 24, \"image\": \"COCO_val2014_000000385873.jpg\", \"text\": \"How many pizzas are there in the image?\", \"category\": \"conv\"}\n{\"question_id\": 25, \"image\": \"COCO_val2014_000000385873.jpg\", \"text\": \"Explain the visual content of the image in great detail.\", \"category\": \"detail\"}\n{\"question_id\": 26, \"image\": \"COCO_val2014_000000385873.jpg\", \"text\": \"What are the possible challenges one might face when dividing these pizzas equitably among a group of people?\", \"category\": \"complex\"}\n{\"question_id\": 27, \"image\": \"COCO_val2014_000000367571.jpg\", \"text\": \"How many doughnuts are in the box?\", \"category\": \"conv\"}\n{\"question_id\": 28, \"image\": \"COCO_val2014_000000367571.jpg\", \"text\": \"Write a detailed description of the given image.\", \"category\": \"detail\"}\n{\"question_id\": 29, \"image\": \"COCO_val2014_000000367571.jpg\", \"text\": \"What unique taste combinations can be found in this box of doughnuts?\", \"category\": \"complex\"}\n{\"question_id\": 30, \"image\": \"COCO_val2014_000000319432.jpg\", \"text\": \"What is the man doing in the image?\", \"category\": \"conv\"}\n{\"question_id\": 31, \"image\": \"COCO_val2014_000000319432.jpg\", \"text\": \"Can you describe the main features of this image for me?\", \"category\": \"detail\"}\n{\"question_id\": 32, \"image\": \"COCO_val2014_000000319432.jpg\", \"text\": \"Why might the man be holding the clothes on hangers?\", \"category\": \"complex\"}\n{\"question_id\": 33, \"image\": \"COCO_val2014_000000225738.jpg\", \"text\": \"How many giraffes are depicted in the image?\", \"category\": \"conv\"}\n{\"question_id\": 34, \"image\": \"COCO_val2014_000000225738.jpg\", \"text\": \"Write a detailed description of the given image.\", \"category\": \"detail\"}\n{\"question_id\": 35, \"image\": \"COCO_val2014_000000225738.jpg\", \"text\": \"Why might these giraffes be gathering near the same tree?\", \"category\": \"complex\"}\n{\"question_id\": 36, \"image\": \"COCO_val2014_000000092109.jpg\", \"text\": \"What is the main focus of the image?\", \"category\": \"conv\"}\n{\"question_id\": 37, \"image\": \"COCO_val2014_000000092109.jpg\", \"text\": \"What is this photo about'?\", \"category\": \"detail\"}\n{\"question_id\": 38, \"image\": \"COCO_val2014_000000092109.jpg\", \"text\": \"What can be inferred about the giraffe's habitat from this image?\", \"category\": \"complex\"}\n{\"question_id\": 39, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"What kind of objects are included in the art installation?\", \"category\": \"conv\"}\n{\"question_id\": 40, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Explain the visual content of the image in great detail.\", \"category\": \"detail\"}\n{\"question_id\": 41, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"How might the art installation encourage interaction among people?\", \"category\": \"complex\"}\n{\"question_id\": 42, \"image\": \"COCO_val2014_000000097131.jpg\", \"text\": \"What is the main focus of the image?\", \"category\": \"conv\"}\n{\"question_id\": 43, \"image\": \"COCO_val2014_000000097131.jpg\", \"text\": \"Can you elaborate on the elements of the picture provided?\", \"category\": \"detail\"}\n{\"question_id\": 44, \"image\": \"COCO_val2014_000000097131.jpg\", \"text\": \"What might be the reason for the car to be parked on the side of the road?\", \"category\": \"complex\"}\n{\"question_id\": 45, \"image\": \"COCO_val2014_000000052312.jpg\", \"text\": \"What is unusual about the elderly man's facial appearance in the image?\", \"category\": \"conv\"}\n{\"question_id\": 46, \"image\": \"COCO_val2014_000000052312.jpg\", \"text\": \"What's happening in the scene?\", \"category\": \"detail\"}\n{\"question_id\": 47, \"image\": \"COCO_val2014_000000052312.jpg\", \"text\": \"What message could be conveyed by the man's unusual facial adornment?\", \"category\": \"complex\"}\n{\"question_id\": 48, \"image\": \"COCO_val2014_000000258285.jpg\", \"text\": \"How many airplanes are visible in the image?\", \"category\": \"conv\"}\n{\"question_id\": 49, \"image\": \"COCO_val2014_000000258285.jpg\", \"text\": \"What do you see happening in this image?\", \"category\": \"detail\"}\n{\"question_id\": 50, \"image\": \"COCO_val2014_000000258285.jpg\", \"text\": \"What environmental impact might these planes' activity have on the birds?\", \"category\": \"complex\"}\n{\"question_id\": 51, \"image\": \"COCO_val2014_000000081552.jpg\", \"text\": \"What is the cat doing on the red couch?\", \"category\": \"conv\"}\n{\"question_id\": 52, \"image\": \"COCO_val2014_000000081552.jpg\", \"text\": \"Write a detailed description of the given image.\", \"category\": \"detail\"}\n{\"question_id\": 53, \"image\": \"COCO_val2014_000000081552.jpg\", \"text\": \"What factors may have led the cat to choose this location for sleep?\", \"category\": \"complex\"}\n{\"question_id\": 54, \"image\": \"COCO_val2014_000000066144.jpg\", \"text\": \"What type of car is parked next to the stop sign in the image?\", \"category\": \"conv\"}\n{\"question_id\": 55, \"image\": \"COCO_val2014_000000066144.jpg\", \"text\": \"Explain the visual content of the image in great detail.\", \"category\": \"detail\"}\n{\"question_id\": 56, \"image\": \"COCO_val2014_000000066144.jpg\", \"text\": \"What can be inferred about the traffic situation in the area?\", \"category\": \"complex\"}\n{\"question_id\": 57, \"image\": \"COCO_val2014_000000203629.jpg\", \"text\": \"What is the man doing in the image?\", \"category\": \"conv\"}\n{\"question_id\": 58, \"image\": \"COCO_val2014_000000203629.jpg\", \"text\": \"Can you describe the main features of this image for me?\", \"category\": \"detail\"}\n{\"question_id\": 59, \"image\": \"COCO_val2014_000000203629.jpg\", \"text\": \"What might be the reason behind the man's thumbs-up gesture while on the phone?\", \"category\": \"complex\"}\n{\"question_id\": 60, \"image\": \"COCO_val2014_000000109532.jpg\", \"text\": \"What breed is the dog in the image?\", \"category\": \"conv\"}\n{\"question_id\": 61, \"image\": \"COCO_val2014_000000109532.jpg\", \"text\": \"What are the key elements in this picture?\", \"category\": \"detail\"}\n{\"question_id\": 62, \"image\": \"COCO_val2014_000000109532.jpg\", \"text\": \"What measures may be taken by the dog's owner to make the dog feel comfortable in the room?\", \"category\": \"complex\"}\n{\"question_id\": 63, \"image\": \"COCO_val2014_000000431165.jpg\", \"text\": \"What is the color of the elephant in the image?\", \"category\": \"conv\"}\n{\"question_id\": 64, \"image\": \"COCO_val2014_000000431165.jpg\", \"text\": \"What do you think is going on in this snapshot?\", \"category\": \"detail\"}\n{\"question_id\": 65, \"image\": \"COCO_val2014_000000431165.jpg\", \"text\": \"What could be a potential concern for the baby elephant in this setting?\", \"category\": \"complex\"}\n{\"question_id\": 66, \"image\": \"COCO_val2014_000000020650.jpg\", \"text\": \"What type of food items are present on the orange plate?\", \"category\": \"conv\"}\n{\"question_id\": 67, \"image\": \"COCO_val2014_000000020650.jpg\", \"text\": \"What are the key elements in this picture?\", \"category\": \"detail\"}\n{\"question_id\": 68, \"image\": \"COCO_val2014_000000020650.jpg\", \"text\": \"What can be inferred about the individual's dietary choices?\", \"category\": \"complex\"}\n{\"question_id\": 69, \"image\": \"COCO_val2014_000000205183.jpg\", \"text\": \"What type of bird is pictured in the image?\", \"category\": \"conv\"}\n{\"question_id\": 70, \"image\": \"COCO_val2014_000000205183.jpg\", \"text\": \"What do you see happening in this image?\", \"category\": \"detail\"}\n{\"question_id\": 71, \"image\": \"COCO_val2014_000000205183.jpg\", \"text\": \"What challenges could the duck face while walking along the paved road?\", \"category\": \"complex\"}\n{\"question_id\": 72, \"image\": \"COCO_val2014_000000210299.jpg\", \"text\": \"Is the little boy wearing any safety gear while riding his bike?\", \"category\": \"conv\"}\n{\"question_id\": 73, \"image\": \"COCO_val2014_000000210299.jpg\", \"text\": \"Can you elaborate on the elements of the picture provided?\", \"category\": \"detail\"}\n{\"question_id\": 74, \"image\": \"COCO_val2014_000000210299.jpg\", \"text\": \"Why is the little boy's precaution noteworthy?\", \"category\": \"complex\"}\n{\"question_id\": 75, \"image\": \"COCO_val2014_000000515716.jpg\", \"text\": \"How many people are visible in the image?\", \"category\": \"conv\"}\n{\"question_id\": 76, \"image\": \"COCO_val2014_000000515716.jpg\", \"text\": \"What do you see happening in this image?\", \"category\": \"detail\"}\n{\"question_id\": 77, \"image\": \"COCO_val2014_000000515716.jpg\", \"text\": \"What might be the reason behind this gathering?\", \"category\": \"complex\"}\n{\"question_id\": 78, \"image\": \"COCO_val2014_000000460149.jpg\", \"text\": \"What is the main object featured in the image?\", \"category\": \"conv\"}\n{\"question_id\": 79, \"image\": \"COCO_val2014_000000460149.jpg\", \"text\": \"Describe the following image.\", \"category\": \"detail\"}\n{\"question_id\": 80, \"image\": \"COCO_val2014_000000460149.jpg\", \"text\": \"Imagine you are walking down this street; how would you know the time or which direction the sidewalk leads?\", \"category\": \"complex\"}\n{\"question_id\": 81, \"image\": \"COCO_val2014_000000293505.jpg\", \"text\": \"Is the person riding a motorbike or scooter?\", \"category\": \"conv\"}\n{\"question_id\": 82, \"image\": \"COCO_val2014_000000293505.jpg\", \"text\": \"Explain the visual content of the image in great detail.\", \"category\": \"detail\"}\n{\"question_id\": 83, \"image\": \"COCO_val2014_000000293505.jpg\", \"text\": \"What challenges might the woman on the motorcycle face in this situation?\", \"category\": \"complex\"}\n{\"question_id\": 84, \"image\": \"COCO_val2014_000000525439.jpg\", \"text\": \"What is the position of the skateboard in the image?\", \"category\": \"conv\"}\n{\"question_id\": 85, \"image\": \"COCO_val2014_000000525439.jpg\", \"text\": \"Can you elaborate on the elements of the picture provided?\", \"category\": \"detail\"}\n{\"question_id\": 86, \"image\": \"COCO_val2014_000000525439.jpg\", \"text\": \"What might have happened prior to this moment?\", \"category\": \"complex\"}\n{\"question_id\": 87, \"image\": \"COCO_val2014_000000534270.jpg\", \"text\": \"What type of hats are the man and woman wearing?\", \"category\": \"conv\"}\n{\"question_id\": 88, \"image\": \"COCO_val2014_000000534270.jpg\", \"text\": \"Can you describe the main features of this image for me?\", \"category\": \"detail\"}\n{\"question_id\": 89, \"image\": \"COCO_val2014_000000534270.jpg\", \"text\": \"What benefits do umbrella hats provide to the couple on this rainy day?\", \"category\": \"complex\"}\n"
  },
  {
    "path": "model/univi/eval/questions/coco_pope/coco_pope_adversarial.jsonl",
    "content": "{\"question_id\": 1, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 3, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 4, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 5, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 6, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 7, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 8, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 9, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 10, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 11, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 12, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 13, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 14, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 15, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 16, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 17, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 18, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 19, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 20, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 21, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 22, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 23, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 24, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 25, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 26, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 27, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 28, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 29, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 30, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 31, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 32, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 33, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 34, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 35, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 36, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 37, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 38, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 39, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 40, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 41, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 42, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 43, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 44, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 45, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"yes\"}\n{\"question_id\": 46, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 47, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"yes\"}\n{\"question_id\": 48, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 49, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 50, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 51, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 52, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 53, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 54, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 55, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 56, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 57, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 58, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 59, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 60, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 61, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 62, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 63, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 64, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 65, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 66, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 67, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 68, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 69, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 70, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 71, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 72, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 73, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 74, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 75, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 76, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 77, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 78, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 79, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 80, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 81, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 82, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 83, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 84, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 85, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 86, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 87, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 88, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 89, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 90, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 91, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 92, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 93, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 94, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 95, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 96, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 97, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 98, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 99, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 100, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 101, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 102, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 103, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 104, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 105, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 106, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 107, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 108, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 109, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 110, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 111, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 112, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 113, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 114, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 115, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 116, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 117, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 118, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 119, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 120, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 121, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 122, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 123, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 124, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 125, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 126, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 127, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 128, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 129, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 130, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 131, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 132, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 133, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 134, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 135, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 136, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 137, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 138, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 139, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 140, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 141, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 142, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 143, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 144, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 145, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 146, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 147, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 148, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 149, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 150, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 151, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 152, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 153, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 154, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 155, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 156, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 157, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 158, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 159, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 160, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 161, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 162, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 163, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 164, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 165, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 166, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 167, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 168, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 169, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 170, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 171, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 172, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 173, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 174, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 175, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 176, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 177, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 178, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 179, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 180, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 181, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 182, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 183, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 184, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 185, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 186, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 187, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 188, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 189, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 190, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 191, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 192, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 193, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 194, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 195, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 196, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 197, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 198, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 199, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 200, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 201, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 202, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 203, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 204, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 205, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 206, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 207, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 208, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 209, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 210, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 211, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 212, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 213, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 214, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 215, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 216, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 217, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 218, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 219, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 220, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 221, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 222, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 223, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 224, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 225, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 226, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 227, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 228, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 229, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 230, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 231, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 232, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 233, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 234, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 235, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 236, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 237, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 238, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 239, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 240, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 241, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 242, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 243, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 244, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 245, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 246, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 247, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 248, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 249, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 250, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 251, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 252, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 253, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 254, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 255, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 256, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 257, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 258, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 259, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 260, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 261, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 262, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 263, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 264, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 265, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 266, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 267, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 268, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 269, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 270, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 271, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 272, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 273, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 274, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 275, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 276, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 277, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 278, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 279, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 280, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 281, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 282, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 283, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 284, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 285, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 286, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 287, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 288, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 289, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 290, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 291, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 292, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 293, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 294, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 295, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 296, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 297, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 298, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 299, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 300, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 301, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 302, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 303, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 304, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 305, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 306, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 307, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 308, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 309, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 310, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 311, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 312, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 313, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 314, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 315, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 316, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 317, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 318, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 319, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 320, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 321, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 322, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 323, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 324, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 325, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 326, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 327, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 328, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 329, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 330, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 331, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 332, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 333, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 334, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 335, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 336, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 337, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 338, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 339, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 340, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 341, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 342, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 343, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 344, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 345, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 346, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 347, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 348, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 349, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 350, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 351, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 352, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 353, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 354, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 355, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 356, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 357, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 358, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 359, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"yes\"}\n{\"question_id\": 360, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 361, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 362, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 363, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 364, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 365, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 366, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 367, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 368, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 369, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 370, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 371, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 372, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 373, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 374, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 375, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 376, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 377, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 378, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 379, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 380, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 381, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 382, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 383, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 384, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 385, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 386, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 387, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 388, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 389, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"yes\"}\n{\"question_id\": 390, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 391, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 392, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 393, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 394, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 395, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 396, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 397, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 398, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 399, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 400, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 401, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 402, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 403, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 404, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 405, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 406, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 407, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 408, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 409, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 410, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 411, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 412, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 413, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 414, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 415, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 416, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 417, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 418, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 419, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 420, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 421, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 422, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 423, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 424, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 425, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 426, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 427, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 428, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 429, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 430, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 431, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 432, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 433, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 434, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 435, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 436, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 437, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 438, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 439, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 440, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 441, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 442, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 443, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 444, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 445, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 446, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 447, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 448, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 449, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 450, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 451, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 452, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 453, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 454, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 455, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 456, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 457, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 458, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 459, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 460, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 461, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 462, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 463, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 464, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 465, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 466, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 467, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"yes\"}\n{\"question_id\": 468, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 469, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 470, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 471, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 472, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 473, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 474, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 475, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 476, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 477, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 478, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 479, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 480, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 481, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 482, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 483, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 484, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 485, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"yes\"}\n{\"question_id\": 486, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 487, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 488, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 489, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 490, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 491, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 492, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 493, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 494, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 495, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 496, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 497, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 498, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 499, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 500, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 501, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 502, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 503, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 504, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 505, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 506, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 507, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 508, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 509, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 510, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 511, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 512, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 513, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 514, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 515, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 516, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 517, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 518, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 519, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 520, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 521, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 522, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 523, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 524, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 525, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 526, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 527, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 528, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 529, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 530, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 531, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 532, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 533, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 534, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 535, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 536, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 537, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 538, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 539, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 540, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 541, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 542, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 543, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 544, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 545, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 546, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 547, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 548, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 549, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 550, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 551, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 552, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 553, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 554, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 555, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 556, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 557, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 558, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 559, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 560, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 561, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 562, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 563, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 564, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 565, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 566, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 567, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 568, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 569, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 570, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 571, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 572, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 573, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 574, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 575, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 576, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 577, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 578, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 579, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 580, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 581, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 582, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 583, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 584, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 585, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 586, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 587, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 588, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 589, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 590, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 591, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 592, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 593, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 594, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 595, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 596, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 597, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 598, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 599, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 600, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 601, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 602, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 603, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 604, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 605, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 606, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 607, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 608, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 609, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 610, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 611, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 612, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 613, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 614, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 615, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 616, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 617, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 618, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 619, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 620, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 621, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 622, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 623, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 624, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 625, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 626, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 627, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 628, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 629, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 630, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 631, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 632, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 633, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 634, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 635, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 636, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 637, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 638, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 639, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 640, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 641, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 642, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 643, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 644, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 645, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 646, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 647, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 648, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 649, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 650, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 651, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 652, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 653, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 654, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 655, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 656, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 657, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 658, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 659, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 660, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 661, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 662, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 663, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 664, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 665, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"yes\"}\n{\"question_id\": 666, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 667, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 668, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 669, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 670, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 671, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 672, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 673, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 674, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 675, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 676, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 677, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 678, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 679, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 680, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 681, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 682, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 683, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 684, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 685, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 686, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 687, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 688, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 689, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 690, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 691, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 692, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 693, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 694, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 695, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 696, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 697, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 698, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 699, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 700, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 701, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 702, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 703, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 704, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 705, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 706, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 707, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 708, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 709, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 710, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 711, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 712, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 713, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 714, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 715, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 716, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 717, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 718, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 719, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 720, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 721, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 722, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 723, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 724, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 725, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 726, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 727, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 728, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 729, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 730, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 731, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"yes\"}\n{\"question_id\": 732, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 733, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 734, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 735, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 736, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 737, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 738, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 739, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 740, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 741, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 742, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 743, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 744, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 745, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 746, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 747, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 748, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 749, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 750, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 751, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 752, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 753, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 754, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 755, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 756, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 757, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 758, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 759, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 760, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 761, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 762, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 763, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"yes\"}\n{\"question_id\": 764, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 765, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 766, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 767, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"yes\"}\n{\"question_id\": 768, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 769, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 770, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 771, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 772, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 773, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 774, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 775, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 776, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 777, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 778, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 779, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 780, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 781, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 782, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 783, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 784, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 785, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 786, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 787, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 788, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 789, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 790, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 791, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 792, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 793, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 794, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 795, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 796, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 797, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 798, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 799, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 800, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 801, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 802, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 803, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 804, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 805, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 806, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 807, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 808, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 809, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 810, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 811, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 812, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 813, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 814, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 815, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 816, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 817, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 818, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 819, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 820, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 821, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 822, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 823, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 824, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 825, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 826, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 827, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 828, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 829, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 830, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 831, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 832, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 833, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 834, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 835, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 836, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 837, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 838, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 839, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 840, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 841, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 842, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 843, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 844, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 845, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 846, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 847, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 848, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 849, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 850, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 851, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 852, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 853, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 854, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 855, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 856, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 857, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 858, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 859, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 860, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 861, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 862, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 863, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 864, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 865, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 866, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 867, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 868, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 869, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 870, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 871, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 872, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 873, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 874, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 875, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 876, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 877, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 878, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 879, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 880, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 881, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 882, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 883, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 884, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 885, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 886, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 887, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 888, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 889, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 890, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 891, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 892, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 893, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 894, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 895, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 896, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 897, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 898, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 899, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 900, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 901, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 902, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 903, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 904, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 905, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 906, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 907, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 908, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 909, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 910, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 911, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 912, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 913, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 914, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 915, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 916, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 917, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 918, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 919, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 920, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 921, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 922, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 923, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 924, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 925, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 926, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 927, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 928, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 929, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 930, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 931, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 932, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 933, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 934, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 935, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 936, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 937, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 938, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 939, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 940, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 941, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 942, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 943, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 944, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 945, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 946, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 947, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 948, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 949, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 950, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 951, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 952, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 953, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 954, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 955, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 956, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 957, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 958, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 959, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 960, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 961, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 962, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 963, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 964, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 965, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 966, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 967, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 968, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 969, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 970, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 971, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 972, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 973, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 974, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 975, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 976, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 977, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 978, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 979, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 980, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 981, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 982, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 983, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 984, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 985, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"yes\"}\n{\"question_id\": 986, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 987, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 988, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 989, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 990, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 991, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 992, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 993, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 994, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 995, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 996, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 997, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 998, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 999, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1000, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1001, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1002, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1003, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1004, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 1005, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1006, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1007, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1008, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1009, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1010, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1011, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1012, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1013, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1014, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1015, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1016, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1017, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1018, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1019, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1020, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1021, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1022, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1023, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1024, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1025, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1026, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1027, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1028, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1029, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1030, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 1031, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1032, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1033, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1034, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1035, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1036, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1037, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1038, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1039, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1040, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1041, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1042, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1043, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1044, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1045, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1046, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1047, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1048, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1049, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1050, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1051, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1052, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1053, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1054, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1055, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1056, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1057, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1058, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1059, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1060, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1061, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1062, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1063, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1064, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1065, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1066, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1067, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1068, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1069, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1070, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1071, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1072, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1073, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1074, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1075, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1076, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1077, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1078, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1079, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1080, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1081, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1082, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1083, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1084, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1085, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1086, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1087, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1088, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1089, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1090, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1091, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1092, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1093, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1094, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1095, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1096, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1097, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1098, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1099, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1100, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1101, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1102, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 1103, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1104, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1105, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1106, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1107, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1108, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1109, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1110, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1111, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1112, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1113, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1114, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1115, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1116, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1117, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1118, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1119, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1120, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1121, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1122, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1123, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1124, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1125, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1126, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1127, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1128, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 1129, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1130, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1131, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1132, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1133, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1134, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1135, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1136, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1137, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1138, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1139, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1140, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1141, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1142, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1143, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1144, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1145, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1146, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1147, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1148, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1149, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1150, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1151, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1152, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1153, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1154, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 1155, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1156, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1157, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1158, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1159, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1160, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1161, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1162, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1163, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1164, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1165, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1166, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1167, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1168, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1169, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1170, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1171, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1172, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1173, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1174, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1175, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1176, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1177, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1178, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1179, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1180, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1181, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1182, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1183, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1184, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1185, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1186, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1187, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1188, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 1189, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1190, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 1191, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1192, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1193, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1194, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1195, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1196, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1197, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1198, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1199, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1200, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1201, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1202, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1203, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1204, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1205, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1206, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1207, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1208, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1209, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1210, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1211, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1212, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1213, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1214, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1215, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1216, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1217, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1218, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1219, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1220, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1221, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1222, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1223, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1224, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1225, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1226, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1227, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1228, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1229, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1230, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1231, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1232, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 1233, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1234, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1235, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1236, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1237, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1238, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1239, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1240, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1241, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1242, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1243, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1244, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1245, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1246, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1247, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1248, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 1249, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1250, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1251, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1252, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 1253, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1254, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 1255, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1256, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1257, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1258, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1259, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1260, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1261, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1262, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1263, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1264, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1265, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1266, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1267, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1268, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1269, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1270, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1271, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1272, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1273, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1274, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1275, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1276, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1277, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1278, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1279, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1280, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1281, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1282, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1283, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1284, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1285, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1286, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1287, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1288, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1289, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1290, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1291, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1292, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1293, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1294, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1295, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1296, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 1297, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1298, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1299, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1300, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1301, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1302, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1303, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1304, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1305, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1306, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1307, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1308, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1309, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1310, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1311, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1312, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1313, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1314, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1315, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1316, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1317, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1318, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1319, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1320, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 1321, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1322, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1323, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1324, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1325, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1326, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1327, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1328, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1329, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1330, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1331, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1332, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1333, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1334, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1335, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1336, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1337, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1338, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1339, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1340, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1341, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1342, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1343, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1344, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1345, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1346, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1347, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1348, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1349, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1350, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1351, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1352, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1353, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1354, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1355, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1356, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1357, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1358, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1359, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1360, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1361, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1362, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1363, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1364, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1365, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1366, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1367, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1368, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1369, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1370, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1371, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1372, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1373, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1374, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1375, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1376, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1377, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1378, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1379, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1380, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1381, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1382, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1383, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1384, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1385, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1386, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1387, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1388, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1389, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1390, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1391, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1392, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 1393, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1394, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1395, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1396, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1397, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1398, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1399, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1400, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1401, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1402, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1403, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1404, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1405, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1406, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1407, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1408, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1409, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1410, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1411, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1412, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1413, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1414, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1415, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1416, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1417, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1418, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1419, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1420, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1421, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1422, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1423, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1424, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1425, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1426, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1427, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1428, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1429, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1430, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1431, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1432, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1433, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1434, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1435, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1436, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1437, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1438, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1439, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1440, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1441, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1442, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1443, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1444, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1445, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1446, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1447, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1448, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1449, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1450, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1451, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1452, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1453, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1454, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1455, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1456, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1457, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1458, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1459, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1460, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1461, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1462, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1463, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1464, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1465, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1466, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1467, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1468, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 1469, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1470, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1471, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1472, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1473, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1474, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1475, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1476, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1477, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1478, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1479, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1480, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1481, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1482, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1483, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1484, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1485, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1486, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1487, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1488, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1489, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1490, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1491, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1492, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1493, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1494, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1495, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1496, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1497, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1498, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1499, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1500, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1501, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1502, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1503, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1504, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1505, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1506, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 1507, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1508, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1509, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1510, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1511, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1512, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 1513, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1514, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1515, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1516, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1517, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1518, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1519, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1520, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1521, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1522, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1523, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1524, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 1525, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1526, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1527, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1528, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1529, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1530, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1531, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1532, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1533, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1534, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1535, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1536, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1537, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1538, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1539, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1540, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1541, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1542, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1543, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1544, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1545, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1546, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1547, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1548, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1549, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1550, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1551, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1552, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1553, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1554, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1555, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1556, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1557, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1558, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1559, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1560, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1561, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1562, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1563, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1564, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1565, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1566, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1567, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1568, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1569, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1570, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1571, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1572, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1573, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1574, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1575, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1576, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1577, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1578, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1579, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1580, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1581, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1582, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1583, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1584, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1585, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1586, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1587, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1588, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1589, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1590, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1591, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1592, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1593, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1594, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1595, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1596, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1597, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1598, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1599, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1600, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1601, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1602, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1603, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1604, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1605, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1606, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1607, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1608, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1609, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1610, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1611, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1612, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1613, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1614, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1615, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1616, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1617, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1618, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1619, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1620, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1621, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1622, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1623, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1624, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1625, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1626, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1627, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1628, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1629, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1630, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 1631, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1632, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1633, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1634, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1635, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1636, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1637, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1638, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1639, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1640, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1641, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1642, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1643, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1644, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1645, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1646, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1647, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1648, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1649, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1650, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1651, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1652, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1653, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1654, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1655, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1656, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1657, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1658, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1659, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1660, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1661, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1662, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1663, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1664, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1665, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1666, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1667, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1668, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1669, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1670, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1671, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1672, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1673, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1674, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1675, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1676, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1677, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1678, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1679, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1680, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1681, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1682, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1683, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1684, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1685, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1686, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1687, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1688, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1689, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1690, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1691, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1692, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1693, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1694, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1695, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1696, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1697, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1698, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1699, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1700, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1701, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1702, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1703, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1704, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1705, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1706, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1707, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1708, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1709, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1710, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 1711, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1712, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1713, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1714, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1715, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1716, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1717, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1718, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1719, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1720, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 1721, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1722, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1723, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1724, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1725, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1726, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1727, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1728, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1729, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1730, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1731, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1732, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 1733, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1734, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 1735, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1736, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1737, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1738, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1739, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1740, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 1741, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1742, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1743, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1744, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 1745, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1746, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1747, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1748, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1749, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1750, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1751, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1752, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1753, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1754, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1755, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1756, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1757, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1758, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 1759, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1760, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1761, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1762, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1763, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1764, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1765, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1766, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1767, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1768, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1769, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1770, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1771, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1772, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1773, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1774, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1775, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1776, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1777, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1778, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1779, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1780, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1781, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1782, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1783, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1784, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1785, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1786, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1787, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1788, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1789, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1790, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1791, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1792, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1793, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1794, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1795, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1796, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1797, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1798, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1799, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1800, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1801, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1802, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1803, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1804, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1805, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1806, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1807, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1808, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1809, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1810, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1811, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1812, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1813, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1814, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1815, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1816, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1817, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1818, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1819, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1820, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1821, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1822, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1823, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1824, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1825, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1826, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1827, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1828, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1829, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1830, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1831, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1832, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1833, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1834, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1835, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1836, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1837, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1838, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1839, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1840, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1841, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1842, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1843, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1844, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1845, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1846, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1847, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1848, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1849, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1850, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1851, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1852, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1853, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1854, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1855, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1856, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1857, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1858, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1859, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1860, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 1861, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1862, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1863, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1864, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1865, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1866, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1867, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1868, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1869, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1870, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1871, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1872, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1873, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1874, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1875, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1876, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1877, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1878, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1879, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1880, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1881, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1882, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1883, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1884, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1885, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1886, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1887, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1888, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 1889, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1890, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1891, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1892, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1893, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1894, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1895, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1896, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1897, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1898, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1899, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1900, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1901, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1902, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1903, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1904, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1905, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1906, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1907, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1908, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1909, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1910, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1911, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1912, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1913, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1914, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1915, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1916, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1917, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1918, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1919, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1920, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1921, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1922, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1923, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1924, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1925, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1926, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1927, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1928, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1929, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1930, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1931, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1932, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 1933, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1934, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1935, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1936, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1937, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1938, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1939, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1940, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1941, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1942, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 1943, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1944, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 1945, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1946, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1947, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1948, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1949, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1950, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1951, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1952, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1953, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1954, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 1955, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1956, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1957, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1958, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1959, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1960, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1961, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1962, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 1963, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1964, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1965, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1966, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1967, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1968, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1969, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1970, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1971, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1972, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1973, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1974, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1975, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1976, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1977, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1978, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 1979, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1980, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1981, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1982, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1983, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1984, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1985, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1986, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1987, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1988, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1989, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1990, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1991, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1992, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1993, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1994, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1995, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1996, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1997, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1998, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1999, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2000, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2001, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2002, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2003, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2004, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2005, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2006, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2007, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2008, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2009, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2010, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2011, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2012, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2013, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2014, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2015, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2016, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2017, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2018, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2019, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2020, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2021, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2022, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2023, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2024, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2025, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2026, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2027, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2028, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2029, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2030, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2031, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2032, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2033, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2034, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2035, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2036, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2037, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2038, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2039, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2040, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2041, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2042, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2043, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2044, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2045, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2046, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 2047, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2048, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2049, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2050, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2051, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2052, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 2053, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2054, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2055, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2056, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2057, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2058, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2059, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2060, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2061, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2062, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2063, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2064, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2065, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2066, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2067, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2068, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2069, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2070, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2071, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2072, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2073, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2074, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2075, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2076, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2077, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2078, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2079, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2080, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 2081, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2082, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2083, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2084, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2085, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2086, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2087, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2088, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2089, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2090, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2091, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2092, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2093, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2094, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2095, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2096, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2097, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2098, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2099, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2100, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2101, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2102, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2103, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2104, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 2105, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2106, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2107, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2108, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2109, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2110, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2111, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2112, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2113, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2114, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 2115, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2116, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2117, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2118, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2119, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2120, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2121, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2122, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2123, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2124, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2125, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2126, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2127, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2128, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2129, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2130, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2131, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2132, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2133, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2134, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2135, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2136, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 2137, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2138, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2139, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2140, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2141, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2142, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2143, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2144, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2145, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2146, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 2147, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2148, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2149, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2150, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2151, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2152, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2153, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2154, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2155, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2156, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2157, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2158, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2159, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2160, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2161, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2162, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2163, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2164, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2165, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2166, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2167, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2168, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2169, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2170, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2171, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2172, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2173, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2174, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2175, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2176, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2177, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2178, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2179, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2180, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2181, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2182, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2183, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2184, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2185, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2186, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2187, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2188, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2189, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2190, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2191, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2192, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2193, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2194, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2195, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2196, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2197, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2198, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2199, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2200, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2201, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2202, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2203, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2204, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2205, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2206, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2207, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2208, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2209, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2210, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2211, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2212, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2213, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2214, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2215, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2216, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2217, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2218, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2219, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2220, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2221, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2222, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2223, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2224, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2225, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2226, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2227, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2228, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2229, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2230, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2231, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2232, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2233, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2234, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2235, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2236, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2237, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2238, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2239, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2240, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2241, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2242, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2243, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2244, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2245, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2246, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2247, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2248, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2249, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2250, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2251, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2252, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2253, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2254, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2255, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2256, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2257, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2258, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2259, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2260, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2261, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2262, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2263, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2264, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 2265, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2266, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2267, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2268, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2269, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2270, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2271, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2272, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2273, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2274, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2275, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2276, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2277, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2278, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2279, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2280, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2281, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2282, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2283, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2284, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2285, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2286, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2287, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2288, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2289, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2290, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2291, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2292, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2293, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2294, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2295, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2296, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2297, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2298, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2299, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2300, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2301, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2302, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2303, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2304, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2305, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2306, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2307, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2308, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2309, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2310, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 2311, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2312, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2313, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2314, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2315, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2316, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2317, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2318, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2319, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2320, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2321, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2322, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2323, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2324, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2325, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2326, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2327, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2328, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2329, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2330, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2331, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2332, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2333, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2334, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2335, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2336, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2337, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2338, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2339, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2340, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2341, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2342, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2343, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2344, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2345, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2346, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2347, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2348, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2349, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2350, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2351, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2352, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2353, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2354, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2355, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2356, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2357, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2358, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2359, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2360, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2361, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2362, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 2363, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2364, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2365, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2366, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2367, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2368, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 2369, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2370, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2371, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2372, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2373, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2374, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2375, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2376, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2377, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2378, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2379, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2380, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2381, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2382, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2383, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2384, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2385, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2386, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2387, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2388, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2389, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2390, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2391, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2392, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2393, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2394, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2395, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2396, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2397, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2398, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2399, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2400, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2401, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2402, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2403, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2404, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 2405, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2406, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 2407, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2408, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2409, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2410, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2411, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2412, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2413, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2414, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2415, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2416, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2417, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2418, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2419, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2420, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2421, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2422, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2423, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2424, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2425, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2426, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2427, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2428, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2429, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2430, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2431, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2432, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2433, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2434, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2435, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2436, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2437, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2438, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2439, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2440, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2441, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2442, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2443, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2444, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2445, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2446, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2447, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2448, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2449, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2450, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2451, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2452, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2453, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2454, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 2455, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2456, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2457, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2458, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2459, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2460, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 2461, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2462, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2463, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2464, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2465, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2466, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2467, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2468, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2469, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2470, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2471, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2472, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2473, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2474, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2475, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2476, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2477, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2478, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2479, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2480, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2481, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2482, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2483, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2484, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 2485, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2486, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2487, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2488, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2489, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2490, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2491, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2492, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2493, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2494, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2495, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2496, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2497, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2498, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2499, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2500, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2501, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2502, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2503, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2504, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2505, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2506, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2507, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2508, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2509, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2510, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2511, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2512, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2513, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2514, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2515, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2516, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2517, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2518, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2519, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2520, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2521, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2522, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2523, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2524, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 2525, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2526, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2527, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2528, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2529, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2530, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2531, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2532, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2533, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2534, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2535, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2536, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2537, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2538, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2539, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2540, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2541, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2542, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2543, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2544, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2545, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2546, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2547, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2548, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2549, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2550, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2551, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2552, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2553, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2554, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2555, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2556, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 2557, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2558, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2559, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2560, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2561, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2562, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2563, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2564, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2565, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2566, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2567, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2568, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2569, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2570, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2571, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2572, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2573, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2574, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2575, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2576, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2577, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2578, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2579, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2580, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2581, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2582, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2583, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2584, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2585, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2586, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2587, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2588, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2589, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2590, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2591, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2592, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2593, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2594, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2595, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2596, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2597, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2598, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2599, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2600, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2601, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2602, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2603, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2604, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2605, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2606, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2607, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2608, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2609, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2610, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2611, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2612, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2613, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2614, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2615, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2616, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2617, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2618, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2619, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2620, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2621, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2622, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2623, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2624, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2625, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2626, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 2627, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2628, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2629, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2630, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2631, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2632, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2633, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2634, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2635, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2636, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2637, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2638, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2639, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2640, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2641, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2642, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2643, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2644, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2645, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2646, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2647, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2648, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2649, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2650, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2651, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2652, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2653, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2654, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2655, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2656, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 2657, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2658, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2659, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2660, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2661, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2662, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2663, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2664, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2665, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2666, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2667, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2668, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2669, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2670, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2671, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2672, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2673, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2674, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2675, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2676, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2677, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2678, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2679, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2680, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 2681, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2682, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2683, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2684, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2685, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2686, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2687, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2688, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2689, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2690, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2691, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2692, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2693, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2694, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2695, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2696, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2697, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2698, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2699, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2700, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2701, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2702, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2703, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2704, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2705, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2706, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 2707, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2708, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2709, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2710, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2711, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2712, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2713, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2714, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2715, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2716, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2717, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2718, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2719, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2720, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2721, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2722, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2723, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2724, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2725, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2726, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2727, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2728, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2729, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2730, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 2731, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2732, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2733, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2734, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2735, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2736, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 2737, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2738, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2739, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2740, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2741, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2742, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2743, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2744, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2745, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2746, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2747, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2748, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2749, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2750, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2751, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2752, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2753, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2754, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2755, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2756, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2757, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2758, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2759, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2760, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2761, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2762, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 2763, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2764, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2765, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2766, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 2767, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2768, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2769, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2770, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2771, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2772, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2773, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2774, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2775, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2776, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2777, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2778, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2779, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2780, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2781, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2782, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2783, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2784, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2785, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2786, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2787, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2788, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2789, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2790, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2791, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2792, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2793, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2794, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2795, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2796, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2797, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2798, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2799, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2800, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2801, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2802, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2803, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2804, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2805, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2806, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2807, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2808, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2809, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2810, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2811, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2812, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2813, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2814, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2815, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2816, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2817, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2818, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2819, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2820, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2821, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2822, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2823, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2824, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2825, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2826, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 2827, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2828, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2829, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2830, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2831, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2832, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2833, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2834, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2835, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2836, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 2837, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2838, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2839, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2840, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2841, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2842, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2843, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2844, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2845, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2846, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2847, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2848, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2849, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2850, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2851, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2852, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2853, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2854, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2855, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2856, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2857, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2858, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2859, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2860, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2861, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2862, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 2863, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2864, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2865, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2866, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2867, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2868, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2869, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2870, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2871, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2872, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2873, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2874, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2875, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2876, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2877, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2878, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2879, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2880, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2881, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2882, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2883, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2884, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2885, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2886, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2887, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2888, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2889, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2890, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2891, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2892, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2893, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2894, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2895, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2896, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2897, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2898, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2899, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2900, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2901, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2902, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2903, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2904, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2905, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2906, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2907, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2908, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2909, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2910, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2911, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2912, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2913, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2914, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2915, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2916, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2917, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2918, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2919, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2920, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2921, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2922, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2923, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2924, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2925, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2926, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2927, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2928, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2929, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2930, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2931, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2932, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2933, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2934, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2935, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2936, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2937, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2938, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2939, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2940, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2941, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2942, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2943, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2944, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2945, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2946, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2947, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2948, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2949, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2950, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2951, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2952, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2953, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2954, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2955, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2956, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2957, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2958, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2959, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2960, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2961, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2962, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 2963, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2964, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2965, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2966, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2967, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2968, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2969, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2970, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2971, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2972, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2973, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2974, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2975, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2976, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 2977, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2978, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2979, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2980, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2981, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2982, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2983, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2984, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2985, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2986, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2987, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2988, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2989, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2990, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2991, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2992, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2993, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2994, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2995, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2996, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2997, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2998, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2999, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 3000, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n"
  },
  {
    "path": "model/univi/eval/questions/coco_pope/coco_pope_popular.jsonl",
    "content": "{\"question_id\": 1, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 3, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 4, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 5, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 6, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 7, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 8, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 9, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 10, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 11, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 12, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 13, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 14, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 15, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 16, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 17, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 18, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 19, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 20, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 21, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 22, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 23, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 24, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 25, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 26, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 27, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 28, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 29, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 30, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 31, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 32, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 33, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 34, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 35, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 36, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 37, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 38, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 39, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 40, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 41, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 42, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 43, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 44, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 45, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"yes\"}\n{\"question_id\": 46, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 47, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"yes\"}\n{\"question_id\": 48, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 49, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 50, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 51, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 52, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 53, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 54, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 55, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 56, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 57, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 58, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 59, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 60, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 61, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 62, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 63, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 64, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 65, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 66, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 67, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 68, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 69, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 70, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 71, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 72, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 73, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 74, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 75, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 76, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 77, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 78, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 79, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 80, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 81, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 82, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 83, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 84, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 85, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 86, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 87, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 88, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 89, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 90, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 91, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 92, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 93, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 94, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 95, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 96, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 97, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 98, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 99, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 100, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 101, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 102, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 103, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 104, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 105, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 106, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 107, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 108, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 109, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 110, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 111, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 112, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 113, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 114, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 115, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 116, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 117, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 118, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 119, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 120, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 121, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 122, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 123, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 124, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 125, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 126, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 127, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 128, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 129, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 130, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 131, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 132, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 133, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 134, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 135, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 136, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 137, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 138, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 139, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 140, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 141, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 142, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 143, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 144, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 145, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 146, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 147, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 148, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 149, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 150, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 151, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 152, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 153, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 154, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 155, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 156, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 157, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 158, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 159, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 160, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 161, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 162, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 163, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 164, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 165, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 166, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 167, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 168, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 169, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 170, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 171, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 172, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 173, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 174, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 175, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 176, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 177, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 178, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 179, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 180, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 181, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 182, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 183, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 184, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 185, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 186, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 187, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 188, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 189, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 190, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 191, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 192, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 193, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 194, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 195, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 196, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 197, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 198, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 199, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 200, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 201, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 202, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 203, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 204, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 205, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 206, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 207, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 208, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 209, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 210, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 211, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 212, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 213, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 214, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 215, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 216, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 217, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 218, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 219, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 220, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 221, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 222, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 223, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 224, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 225, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 226, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 227, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 228, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 229, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 230, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 231, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 232, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 233, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 234, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 235, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 236, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 237, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 238, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 239, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 240, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 241, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 242, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 243, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 244, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 245, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 246, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 247, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 248, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 249, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 250, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 251, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 252, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 253, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 254, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 255, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 256, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 257, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 258, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 259, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 260, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 261, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 262, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 263, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 264, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 265, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 266, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 267, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 268, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 269, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 270, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 271, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 272, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 273, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 274, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 275, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 276, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 277, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 278, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 279, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 280, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 281, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 282, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 283, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 284, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 285, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 286, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 287, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 288, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 289, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 290, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 291, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 292, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 293, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 294, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 295, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 296, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 297, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 298, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 299, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 300, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 301, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 302, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 303, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 304, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 305, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 306, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 307, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 308, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 309, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 310, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 311, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 312, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 313, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 314, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 315, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 316, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 317, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 318, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 319, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 320, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 321, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 322, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 323, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 324, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 325, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 326, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 327, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 328, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 329, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 330, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 331, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 332, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 333, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 334, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 335, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 336, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 337, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 338, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 339, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 340, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 341, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 342, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 343, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 344, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 345, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 346, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 347, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 348, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 349, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 350, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 351, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 352, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 353, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 354, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 355, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 356, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 357, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 358, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 359, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"yes\"}\n{\"question_id\": 360, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 361, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 362, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 363, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 364, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 365, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 366, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 367, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 368, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 369, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 370, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 371, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 372, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 373, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 374, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 375, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 376, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 377, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 378, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 379, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 380, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 381, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 382, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 383, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 384, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 385, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 386, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 387, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 388, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 389, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"yes\"}\n{\"question_id\": 390, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 391, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 392, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 393, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 394, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 395, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 396, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 397, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 398, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 399, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 400, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 401, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 402, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 403, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 404, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 405, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 406, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 407, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 408, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 409, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 410, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 411, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 412, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 413, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 414, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 415, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 416, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 417, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 418, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 419, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 420, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 421, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 422, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 423, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 424, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 425, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 426, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 427, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 428, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 429, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 430, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 431, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 432, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 433, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 434, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 435, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 436, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 437, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 438, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 439, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 440, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 441, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 442, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 443, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 444, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 445, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 446, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 447, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 448, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 449, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 450, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 451, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 452, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 453, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 454, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 455, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 456, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 457, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 458, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 459, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 460, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 461, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 462, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 463, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 464, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 465, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 466, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 467, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"yes\"}\n{\"question_id\": 468, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 469, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 470, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 471, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 472, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 473, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 474, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 475, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 476, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 477, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 478, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 479, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 480, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 481, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 482, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 483, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 484, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 485, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"yes\"}\n{\"question_id\": 486, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 487, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 488, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 489, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 490, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 491, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 492, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 493, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 494, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 495, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 496, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 497, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 498, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 499, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 500, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 501, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 502, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 503, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 504, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 505, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 506, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 507, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 508, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 509, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 510, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 511, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 512, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 513, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 514, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 515, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 516, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 517, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 518, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 519, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 520, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 521, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 522, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 523, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 524, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 525, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 526, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 527, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 528, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 529, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 530, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 531, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 532, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 533, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 534, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 535, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 536, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 537, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 538, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 539, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 540, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 541, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 542, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 543, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 544, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 545, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 546, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 547, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 548, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 549, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 550, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 551, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 552, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 553, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 554, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 555, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 556, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 557, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 558, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 559, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 560, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 561, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 562, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 563, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 564, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 565, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 566, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 567, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 568, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 569, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 570, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 571, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 572, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 573, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 574, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 575, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 576, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 577, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 578, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 579, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 580, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 581, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 582, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 583, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 584, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 585, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 586, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 587, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 588, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 589, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 590, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 591, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 592, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 593, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 594, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 595, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 596, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 597, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 598, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 599, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 600, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 601, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 602, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 603, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 604, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 605, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 606, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 607, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 608, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 609, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 610, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 611, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 612, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 613, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 614, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 615, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 616, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 617, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 618, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 619, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 620, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 621, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 622, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 623, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 624, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 625, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 626, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 627, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 628, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 629, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 630, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 631, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 632, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 633, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 634, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 635, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 636, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 637, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 638, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 639, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 640, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 641, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 642, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 643, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 644, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 645, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 646, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 647, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 648, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 649, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 650, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 651, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 652, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 653, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 654, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 655, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 656, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 657, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 658, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 659, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 660, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 661, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 662, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 663, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 664, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 665, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"yes\"}\n{\"question_id\": 666, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 667, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 668, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 669, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 670, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 671, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 672, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 673, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 674, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 675, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 676, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 677, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 678, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 679, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 680, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 681, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 682, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 683, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 684, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 685, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 686, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 687, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 688, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 689, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 690, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 691, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 692, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 693, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 694, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 695, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 696, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 697, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 698, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 699, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 700, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 701, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 702, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 703, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 704, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 705, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 706, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 707, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 708, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 709, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 710, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 711, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 712, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 713, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 714, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 715, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 716, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 717, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 718, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 719, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 720, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 721, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 722, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 723, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 724, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 725, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 726, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 727, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 728, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 729, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 730, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 731, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"yes\"}\n{\"question_id\": 732, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 733, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 734, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 735, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 736, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 737, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 738, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 739, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 740, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 741, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 742, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 743, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 744, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 745, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 746, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 747, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 748, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 749, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 750, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 751, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 752, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 753, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 754, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 755, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 756, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 757, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 758, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 759, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 760, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 761, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 762, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 763, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"yes\"}\n{\"question_id\": 764, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 765, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 766, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 767, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"yes\"}\n{\"question_id\": 768, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 769, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 770, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 771, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 772, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 773, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 774, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 775, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 776, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 777, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 778, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 779, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 780, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 781, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 782, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 783, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 784, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 785, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 786, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 787, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 788, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 789, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 790, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 791, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 792, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 793, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 794, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 795, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 796, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 797, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 798, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 799, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 800, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 801, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 802, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 803, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 804, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 805, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 806, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 807, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 808, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 809, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 810, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 811, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 812, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 813, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 814, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 815, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 816, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 817, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 818, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 819, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 820, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 821, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 822, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 823, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 824, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 825, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 826, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 827, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 828, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 829, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 830, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 831, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 832, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 833, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 834, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 835, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 836, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 837, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 838, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 839, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 840, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 841, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 842, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 843, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 844, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 845, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 846, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 847, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 848, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 849, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 850, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 851, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 852, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 853, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 854, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 855, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 856, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 857, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 858, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 859, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 860, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 861, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 862, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 863, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 864, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 865, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 866, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 867, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 868, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 869, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 870, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 871, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 872, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 873, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 874, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 875, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 876, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 877, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 878, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 879, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 880, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 881, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 882, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 883, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 884, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 885, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 886, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 887, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 888, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 889, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 890, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 891, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 892, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 893, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 894, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 895, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 896, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 897, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 898, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 899, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 900, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 901, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 902, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 903, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 904, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 905, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 906, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 907, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 908, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 909, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 910, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 911, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 912, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 913, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 914, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 915, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 916, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 917, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 918, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 919, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 920, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 921, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 922, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 923, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 924, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 925, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 926, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 927, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 928, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 929, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 930, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 931, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 932, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 933, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 934, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 935, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 936, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 937, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 938, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 939, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 940, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 941, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 942, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 943, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 944, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 945, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 946, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 947, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 948, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 949, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 950, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 951, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 952, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 953, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 954, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 955, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 956, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 957, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 958, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 959, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 960, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 961, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 962, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 963, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 964, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 965, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 966, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 967, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 968, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 969, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 970, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 971, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 972, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 973, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 974, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 975, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 976, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 977, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 978, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 979, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 980, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 981, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 982, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 983, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 984, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 985, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"yes\"}\n{\"question_id\": 986, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 987, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 988, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 989, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 990, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 991, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 992, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 993, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 994, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 995, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 996, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 997, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 998, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 999, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1000, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1001, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1002, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1003, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1004, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1005, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1006, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1007, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1008, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1009, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1010, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1011, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1012, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1013, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1014, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1015, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1016, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1017, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1018, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1019, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1020, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1021, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1022, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1023, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1024, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1025, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1026, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1027, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1028, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1029, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1030, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1031, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1032, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1033, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1034, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1035, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1036, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1037, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1038, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1039, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1040, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1041, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1042, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1043, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1044, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1045, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1046, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1047, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1048, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1049, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1050, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1051, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1052, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1053, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1054, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1055, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1056, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1057, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1058, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1059, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1060, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1061, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1062, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1063, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1064, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1065, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1066, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1067, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1068, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1069, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1070, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1071, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1072, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1073, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1074, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1075, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1076, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1077, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1078, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1079, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1080, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1081, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1082, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1083, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1084, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1085, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1086, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1087, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1088, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1089, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1090, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1091, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1092, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1093, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1094, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1095, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1096, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1097, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1098, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1099, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1100, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1101, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1102, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1103, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1104, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1105, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1106, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1107, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1108, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1109, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1110, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1111, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1112, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1113, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1114, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1115, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1116, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1117, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1118, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1119, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1120, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1121, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1122, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1123, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1124, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1125, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1126, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1127, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1128, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1129, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1130, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1131, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1132, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1133, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1134, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1135, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1136, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1137, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1138, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1139, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1140, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1141, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1142, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1143, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1144, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1145, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1146, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1147, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1148, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1149, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1150, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1151, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1152, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1153, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1154, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1155, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1156, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1157, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1158, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1159, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1160, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1161, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1162, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1163, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1164, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1165, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1166, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1167, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1168, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1169, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1170, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1171, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1172, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1173, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1174, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1175, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1176, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1177, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1178, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1179, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1180, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1181, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1182, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1183, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1184, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1185, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1186, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1187, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1188, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1189, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1190, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1191, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1192, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1193, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1194, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1195, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1196, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1197, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1198, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1199, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1200, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1201, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1202, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1203, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1204, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1205, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1206, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1207, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1208, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1209, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1210, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1211, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1212, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1213, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1214, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1215, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1216, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1217, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1218, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1219, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1220, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1221, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1222, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1223, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1224, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1225, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1226, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1227, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1228, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1229, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1230, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1231, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1232, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1233, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1234, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1235, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1236, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1237, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1238, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1239, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1240, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1241, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1242, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1243, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1244, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1245, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1246, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1247, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1248, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1249, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1250, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1251, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1252, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1253, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1254, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1255, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1256, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1257, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1258, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1259, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1260, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1261, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1262, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1263, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1264, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1265, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1266, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1267, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1268, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1269, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1270, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1271, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1272, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1273, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1274, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1275, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1276, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1277, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1278, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1279, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1280, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1281, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1282, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1283, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1284, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1285, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1286, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1287, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1288, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1289, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1290, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1291, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1292, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1293, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1294, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1295, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1296, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1297, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1298, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1299, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1300, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1301, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1302, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1303, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1304, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1305, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1306, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1307, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1308, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1309, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1310, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1311, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1312, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1313, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1314, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1315, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1316, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1317, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1318, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1319, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1320, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1321, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1322, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1323, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1324, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1325, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1326, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1327, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1328, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1329, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1330, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1331, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1332, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1333, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1334, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1335, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1336, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1337, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1338, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1339, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1340, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1341, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1342, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1343, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1344, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1345, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1346, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1347, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1348, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1349, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1350, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1351, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1352, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1353, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1354, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1355, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1356, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1357, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1358, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1359, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1360, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1361, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1362, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1363, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1364, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1365, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1366, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1367, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1368, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1369, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1370, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1371, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1372, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1373, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1374, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1375, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1376, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1377, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1378, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1379, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1380, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1381, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1382, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1383, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1384, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1385, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1386, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1387, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1388, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1389, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1390, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1391, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1392, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1393, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1394, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1395, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1396, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1397, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1398, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1399, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1400, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1401, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1402, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1403, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1404, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1405, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1406, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1407, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1408, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1409, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1410, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1411, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1412, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1413, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1414, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1415, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1416, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1417, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1418, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1419, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1420, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1421, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1422, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1423, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1424, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1425, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1426, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1427, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1428, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1429, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1430, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1431, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1432, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1433, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1434, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1435, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1436, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1437, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1438, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1439, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1440, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1441, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1442, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1443, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1444, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1445, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1446, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1447, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1448, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1449, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1450, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1451, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1452, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1453, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1454, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1455, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1456, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1457, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1458, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1459, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1460, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1461, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1462, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1463, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1464, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1465, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1466, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1467, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1468, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1469, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1470, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1471, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1472, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1473, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1474, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1475, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1476, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1477, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1478, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1479, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1480, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1481, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1482, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1483, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1484, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1485, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1486, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1487, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1488, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1489, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1490, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1491, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1492, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1493, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1494, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1495, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1496, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1497, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1498, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1499, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1500, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1501, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1502, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1503, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1504, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1505, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1506, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1507, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1508, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1509, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1510, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1511, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1512, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1513, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1514, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1515, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1516, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1517, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1518, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1519, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1520, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1521, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1522, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1523, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1524, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1525, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1526, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1527, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1528, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1529, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1530, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1531, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1532, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1533, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1534, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1535, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1536, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1537, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1538, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1539, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1540, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1541, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1542, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1543, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1544, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1545, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1546, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1547, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1548, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1549, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1550, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1551, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1552, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1553, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1554, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1555, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1556, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1557, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1558, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1559, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1560, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1561, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1562, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1563, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1564, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1565, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1566, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1567, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1568, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1569, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1570, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1571, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1572, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1573, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1574, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1575, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1576, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1577, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1578, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1579, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1580, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1581, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1582, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1583, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1584, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1585, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1586, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1587, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1588, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1589, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1590, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1591, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1592, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1593, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1594, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1595, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1596, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1597, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1598, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1599, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1600, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1601, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1602, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1603, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1604, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1605, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1606, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1607, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1608, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1609, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1610, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1611, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1612, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1613, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1614, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1615, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1616, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1617, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1618, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1619, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1620, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1621, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1622, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1623, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1624, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1625, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1626, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1627, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1628, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1629, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1630, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1631, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1632, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1633, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1634, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1635, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1636, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1637, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1638, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1639, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1640, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1641, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1642, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1643, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1644, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1645, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1646, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1647, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1648, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1649, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1650, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1651, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1652, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1653, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1654, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1655, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1656, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1657, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1658, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1659, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1660, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1661, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1662, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1663, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1664, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1665, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1666, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1667, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1668, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1669, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1670, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1671, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1672, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1673, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1674, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1675, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1676, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1677, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1678, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1679, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1680, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1681, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1682, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1683, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1684, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1685, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1686, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1687, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1688, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1689, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1690, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1691, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1692, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1693, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1694, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1695, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1696, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1697, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1698, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1699, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1700, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1701, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1702, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1703, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1704, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1705, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1706, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1707, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1708, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1709, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1710, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1711, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1712, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1713, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1714, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1715, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1716, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1717, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1718, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1719, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1720, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1721, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1722, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1723, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1724, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1725, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1726, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1727, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1728, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1729, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1730, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1731, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1732, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1733, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1734, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1735, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1736, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1737, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1738, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1739, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1740, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1741, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1742, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1743, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1744, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1745, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1746, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1747, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1748, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1749, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1750, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1751, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1752, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1753, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1754, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1755, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1756, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1757, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1758, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1759, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1760, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1761, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1762, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1763, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1764, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1765, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1766, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1767, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1768, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1769, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1770, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1771, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1772, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1773, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1774, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1775, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1776, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1777, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1778, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1779, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1780, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1781, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1782, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1783, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1784, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1785, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1786, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1787, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1788, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1789, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1790, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1791, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1792, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1793, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1794, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1795, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1796, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1797, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1798, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1799, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1800, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1801, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1802, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1803, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1804, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1805, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1806, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1807, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1808, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1809, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1810, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1811, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1812, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1813, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1814, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1815, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1816, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1817, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1818, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1819, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1820, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1821, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1822, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1823, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1824, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1825, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1826, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1827, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1828, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1829, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1830, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1831, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1832, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1833, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1834, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1835, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1836, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1837, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1838, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1839, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1840, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1841, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1842, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1843, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1844, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1845, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1846, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1847, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1848, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1849, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1850, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1851, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1852, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1853, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1854, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1855, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1856, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1857, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1858, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1859, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1860, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1861, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1862, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1863, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1864, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1865, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1866, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1867, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1868, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1869, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1870, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1871, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1872, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1873, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1874, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1875, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1876, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1877, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1878, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1879, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1880, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1881, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1882, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1883, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1884, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1885, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1886, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1887, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1888, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1889, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1890, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1891, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1892, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1893, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1894, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1895, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1896, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1897, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1898, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1899, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1900, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1901, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1902, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1903, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1904, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1905, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1906, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1907, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1908, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1909, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1910, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1911, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1912, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1913, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1914, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1915, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1916, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1917, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1918, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1919, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1920, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1921, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1922, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1923, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1924, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1925, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1926, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1927, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1928, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1929, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1930, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1931, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1932, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1933, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1934, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1935, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1936, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1937, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1938, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1939, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1940, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1941, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1942, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1943, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1944, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1945, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1946, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1947, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1948, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1949, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1950, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1951, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1952, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1953, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1954, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1955, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1956, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1957, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1958, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1959, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1960, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1961, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1962, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1963, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1964, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1965, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1966, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1967, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1968, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1969, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1970, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1971, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1972, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1973, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1974, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1975, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1976, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1977, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1978, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1979, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1980, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1981, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1982, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1983, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1984, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1985, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1986, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1987, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1988, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 1989, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1990, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1991, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1992, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1993, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1994, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1995, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1996, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1997, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1998, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1999, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2000, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2001, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2002, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2003, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2004, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2005, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2006, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2007, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2008, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2009, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2010, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2011, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2012, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2013, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2014, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2015, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2016, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2017, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2018, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2019, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2020, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2021, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2022, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2023, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2024, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2025, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2026, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2027, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2028, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2029, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2030, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2031, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2032, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2033, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2034, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2035, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2036, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2037, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2038, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2039, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2040, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2041, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2042, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2043, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2044, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2045, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2046, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2047, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2048, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2049, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2050, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2051, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2052, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2053, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2054, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2055, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2056, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2057, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2058, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2059, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2060, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2061, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2062, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2063, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2064, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2065, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2066, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2067, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2068, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2069, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2070, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2071, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2072, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2073, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2074, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2075, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2076, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2077, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2078, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2079, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2080, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2081, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2082, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2083, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2084, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2085, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2086, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2087, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2088, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2089, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2090, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2091, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2092, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2093, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2094, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2095, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2096, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2097, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2098, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2099, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2100, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2101, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2102, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2103, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2104, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2105, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2106, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2107, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2108, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2109, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2110, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2111, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2112, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2113, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2114, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2115, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2116, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2117, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2118, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2119, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2120, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2121, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2122, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2123, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2124, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2125, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2126, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2127, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2128, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2129, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2130, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2131, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2132, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2133, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2134, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2135, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2136, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2137, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2138, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2139, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2140, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2141, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2142, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2143, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2144, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2145, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2146, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2147, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2148, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2149, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2150, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2151, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2152, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2153, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2154, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2155, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2156, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2157, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2158, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2159, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2160, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2161, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2162, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2163, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2164, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2165, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2166, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2167, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2168, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2169, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2170, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2171, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2172, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2173, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2174, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2175, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2176, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2177, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2178, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2179, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2180, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2181, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2182, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2183, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2184, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2185, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2186, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2187, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2188, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2189, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2190, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2191, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2192, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2193, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2194, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2195, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2196, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2197, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2198, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2199, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2200, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2201, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2202, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2203, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2204, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2205, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2206, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2207, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2208, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2209, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2210, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2211, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2212, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2213, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2214, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2215, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2216, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2217, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2218, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2219, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2220, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2221, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2222, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2223, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2224, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2225, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2226, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2227, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2228, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2229, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2230, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2231, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2232, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2233, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2234, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2235, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2236, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2237, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2238, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2239, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2240, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2241, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2242, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2243, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2244, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2245, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2246, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2247, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2248, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2249, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2250, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2251, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2252, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2253, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2254, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2255, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2256, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2257, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2258, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2259, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2260, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2261, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2262, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2263, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2264, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2265, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2266, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2267, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2268, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2269, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2270, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2271, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2272, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2273, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2274, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2275, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2276, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2277, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2278, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2279, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2280, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2281, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2282, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2283, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2284, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2285, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2286, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2287, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2288, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2289, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2290, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2291, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2292, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2293, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2294, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2295, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2296, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2297, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2298, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2299, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2300, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2301, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2302, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2303, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2304, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2305, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2306, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2307, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2308, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2309, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2310, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2311, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2312, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2313, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2314, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2315, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2316, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2317, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2318, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2319, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2320, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2321, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2322, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2323, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2324, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2325, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2326, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2327, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2328, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2329, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2330, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2331, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2332, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2333, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2334, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2335, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2336, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2337, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2338, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2339, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2340, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2341, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2342, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2343, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2344, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2345, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2346, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2347, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2348, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2349, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2350, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2351, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2352, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2353, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2354, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2355, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2356, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2357, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2358, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2359, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2360, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2361, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2362, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2363, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2364, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2365, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2366, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2367, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2368, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2369, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2370, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2371, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2372, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2373, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2374, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2375, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2376, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2377, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2378, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2379, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2380, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2381, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2382, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2383, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2384, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2385, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2386, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2387, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2388, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2389, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2390, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2391, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2392, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2393, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2394, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2395, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2396, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2397, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2398, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2399, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2400, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2401, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2402, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2403, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2404, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2405, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2406, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2407, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2408, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2409, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2410, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2411, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2412, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2413, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2414, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2415, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2416, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2417, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2418, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2419, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2420, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2421, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2422, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2423, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2424, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2425, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2426, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2427, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2428, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2429, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2430, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2431, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2432, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2433, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2434, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2435, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2436, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2437, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2438, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2439, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2440, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2441, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2442, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2443, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2444, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2445, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2446, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2447, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2448, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2449, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2450, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2451, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2452, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2453, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2454, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2455, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2456, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2457, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2458, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2459, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2460, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2461, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2462, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2463, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2464, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2465, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2466, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2467, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2468, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2469, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2470, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2471, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2472, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2473, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2474, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2475, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2476, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2477, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2478, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2479, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2480, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2481, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2482, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2483, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2484, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2485, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2486, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2487, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2488, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2489, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2490, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2491, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2492, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2493, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2494, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2495, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2496, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2497, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2498, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2499, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2500, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2501, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2502, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2503, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2504, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2505, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2506, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2507, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2508, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2509, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2510, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2511, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2512, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2513, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2514, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2515, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2516, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2517, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2518, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2519, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2520, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2521, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2522, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2523, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2524, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2525, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2526, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2527, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2528, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2529, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2530, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2531, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2532, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2533, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2534, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2535, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2536, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2537, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2538, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2539, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2540, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2541, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2542, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2543, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2544, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2545, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2546, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2547, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2548, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2549, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2550, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2551, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2552, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2553, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2554, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2555, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2556, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2557, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2558, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2559, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2560, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2561, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2562, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2563, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2564, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2565, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2566, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2567, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2568, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2569, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2570, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2571, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2572, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2573, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2574, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2575, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2576, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2577, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2578, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2579, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2580, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2581, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2582, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2583, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2584, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2585, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2586, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2587, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2588, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2589, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2590, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2591, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2592, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2593, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2594, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2595, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2596, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2597, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2598, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2599, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2600, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2601, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2602, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2603, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2604, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2605, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2606, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2607, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2608, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2609, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2610, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2611, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2612, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2613, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2614, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2615, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2616, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2617, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2618, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2619, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2620, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2621, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2622, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2623, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2624, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2625, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2626, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2627, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2628, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2629, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2630, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2631, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2632, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2633, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2634, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2635, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2636, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2637, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2638, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2639, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2640, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2641, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2642, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2643, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2644, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2645, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2646, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2647, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2648, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2649, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2650, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2651, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2652, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2653, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2654, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2655, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2656, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2657, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2658, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2659, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2660, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2661, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2662, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2663, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2664, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2665, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2666, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2667, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2668, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2669, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2670, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2671, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2672, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2673, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2674, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2675, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2676, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2677, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2678, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2679, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2680, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2681, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2682, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2683, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2684, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2685, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2686, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2687, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2688, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2689, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2690, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2691, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2692, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2693, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2694, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2695, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2696, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2697, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2698, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2699, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2700, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2701, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2702, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2703, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2704, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2705, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2706, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2707, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2708, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2709, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2710, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2711, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2712, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2713, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2714, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2715, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2716, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2717, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2718, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2719, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2720, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2721, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2722, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2723, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2724, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2725, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2726, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2727, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2728, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2729, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2730, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2731, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2732, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2733, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2734, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2735, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2736, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2737, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2738, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2739, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2740, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2741, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2742, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2743, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2744, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2745, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2746, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2747, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2748, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2749, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2750, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2751, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2752, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2753, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2754, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2755, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2756, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2757, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2758, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2759, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2760, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2761, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2762, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2763, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2764, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2765, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2766, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2767, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2768, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2769, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2770, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2771, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2772, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2773, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2774, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2775, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2776, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2777, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2778, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2779, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2780, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2781, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2782, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2783, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2784, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2785, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2786, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2787, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2788, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2789, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2790, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2791, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2792, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2793, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2794, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2795, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2796, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2797, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2798, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2799, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2800, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2801, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2802, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2803, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2804, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2805, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2806, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2807, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2808, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2809, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2810, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2811, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2812, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2813, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2814, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2815, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2816, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2817, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2818, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2819, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2820, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2821, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2822, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2823, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2824, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2825, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2826, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2827, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2828, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2829, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2830, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2831, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2832, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2833, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2834, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2835, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2836, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2837, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2838, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2839, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2840, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2841, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2842, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2843, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2844, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2845, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2846, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2847, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2848, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2849, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2850, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2851, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2852, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2853, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2854, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2855, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2856, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2857, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2858, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2859, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2860, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2861, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2862, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2863, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2864, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2865, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2866, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2867, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2868, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2869, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2870, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2871, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2872, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2873, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2874, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2875, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2876, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2877, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2878, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2879, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2880, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2881, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2882, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2883, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2884, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2885, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2886, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2887, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2888, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2889, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2890, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2891, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2892, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2893, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2894, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2895, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2896, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2897, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2898, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2899, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2900, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2901, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2902, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2903, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2904, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2905, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2906, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2907, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2908, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2909, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2910, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2911, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2912, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2913, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2914, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2915, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2916, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2917, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2918, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2919, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2920, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2921, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2922, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2923, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2924, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2925, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2926, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2927, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2928, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2929, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2930, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2931, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2932, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2933, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2934, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2935, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2936, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2937, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2938, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2939, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2940, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2941, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2942, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2943, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2944, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2945, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2946, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2947, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2948, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2949, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2950, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2951, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2952, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2953, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2954, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2955, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2956, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2957, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2958, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2959, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2960, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2961, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2962, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2963, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2964, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2965, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2966, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2967, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2968, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2969, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2970, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2971, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2972, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2973, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2974, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2975, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2976, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2977, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2978, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2979, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2980, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2981, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2982, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2983, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2984, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2985, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2986, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2987, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2988, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2989, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2990, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2991, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2992, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2993, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2994, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2995, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2996, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2997, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2998, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2999, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 3000, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n"
  },
  {
    "path": "model/univi/eval/questions/coco_pope/coco_pope_random.jsonl",
    "content": "{\"question_id\": 1, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 3, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 4, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 5, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 6, \"image\": \"COCO_val2014_000000310196.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 7, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 8, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 9, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 10, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 11, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 12, \"image\": \"COCO_val2014_000000210789.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 13, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 14, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 15, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 16, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 17, \"image\": \"COCO_val2014_000000429109.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 18, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 19, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 20, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 21, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 22, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 23, \"image\": \"COCO_val2014_000000211674.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 24, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 25, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 26, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 27, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 28, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 29, \"image\": \"COCO_val2014_000000458338.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 30, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 31, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 32, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 33, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 34, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 35, \"image\": \"COCO_val2014_000000283412.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 36, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 37, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 38, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 39, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 40, \"image\": \"COCO_val2014_000000265719.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 41, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 42, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 43, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"yes\"}\n{\"question_id\": 44, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 45, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"yes\"}\n{\"question_id\": 46, \"image\": \"COCO_val2014_000000461331.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 47, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 48, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 49, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 50, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 51, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 52, \"image\": \"COCO_val2014_000000544456.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 53, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 54, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 55, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 56, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 57, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 58, \"image\": \"COCO_val2014_000000017708.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 59, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 60, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 61, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 62, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 63, \"image\": \"COCO_val2014_000000574692.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 64, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 65, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 66, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 67, \"image\": \"COCO_val2014_000000353180.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 68, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 69, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 70, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 71, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 72, \"image\": \"COCO_val2014_000000239444.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 73, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 74, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 75, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 76, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 77, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 78, \"image\": \"COCO_val2014_000000569839.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 79, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 80, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 81, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 82, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 83, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 84, \"image\": \"COCO_val2014_000000219622.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 85, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 86, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 87, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 88, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 89, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 90, \"image\": \"COCO_val2014_000000300368.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 91, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 92, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 93, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 94, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 95, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 96, \"image\": \"COCO_val2014_000000482476.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 97, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 98, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 99, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 100, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 101, \"image\": \"COCO_val2014_000000131115.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 102, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 103, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 104, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 105, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 106, \"image\": \"COCO_val2014_000000157084.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 107, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 108, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 109, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 110, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 111, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 112, \"image\": \"COCO_val2014_000000381895.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 113, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 114, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 115, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 116, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 117, \"image\": \"COCO_val2014_000000336872.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 118, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 119, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 120, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 121, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 122, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 123, \"image\": \"COCO_val2014_000000075591.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 124, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 125, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 126, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 127, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 128, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 129, \"image\": \"COCO_val2014_000000516916.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 130, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 131, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 132, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 133, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 134, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 135, \"image\": \"COCO_val2014_000000542145.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 136, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 137, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 138, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 139, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 140, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 141, \"image\": \"COCO_val2014_000000218224.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 142, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 143, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 144, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 145, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 146, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 147, \"image\": \"COCO_val2014_000000297078.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 148, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 149, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 150, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 151, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 152, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 153, \"image\": \"COCO_val2014_000000033270.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 154, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 155, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 156, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 157, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 158, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 159, \"image\": \"COCO_val2014_000000140583.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 160, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 161, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 162, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 163, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 164, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 165, \"image\": \"COCO_val2014_000000421455.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 166, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 167, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 168, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 169, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 170, \"image\": \"COCO_val2014_000000288639.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 171, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 172, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 173, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 174, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 175, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 176, \"image\": \"COCO_val2014_000000291936.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 177, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 178, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 179, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 180, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 181, \"image\": \"COCO_val2014_000000063953.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 182, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 183, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 184, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 185, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 186, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 187, \"image\": \"COCO_val2014_000000526321.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 188, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 189, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 190, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 191, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 192, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 193, \"image\": \"COCO_val2014_000000042190.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 194, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 195, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 196, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 197, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 198, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 199, \"image\": \"COCO_val2014_000000553165.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 200, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 201, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 202, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 203, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 204, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 205, \"image\": \"COCO_val2014_000000170517.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 206, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 207, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 208, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 209, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 210, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 211, \"image\": \"COCO_val2014_000000498759.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 212, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 213, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 214, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 215, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 216, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 217, \"image\": \"COCO_val2014_000000360600.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 218, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 219, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 220, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 221, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 222, \"image\": \"COCO_val2014_000000031773.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 223, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 224, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 225, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 226, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 227, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 228, \"image\": \"COCO_val2014_000000500257.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 229, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 230, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 231, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 232, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 233, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 234, \"image\": \"COCO_val2014_000000574057.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 235, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 236, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 237, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 238, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 239, \"image\": \"COCO_val2014_000000456178.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 240, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 241, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 242, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 243, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 244, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 245, \"image\": \"COCO_val2014_000000565941.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 246, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 247, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 248, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 249, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 250, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 251, \"image\": \"COCO_val2014_000000485564.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 252, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 253, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 254, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 255, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 256, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 257, \"image\": \"COCO_val2014_000000454642.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 258, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 259, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 260, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 261, \"image\": \"COCO_val2014_000000205729.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 262, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 263, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 264, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 265, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 266, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 267, \"image\": \"COCO_val2014_000000424792.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 268, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 269, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 270, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 271, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 272, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 273, \"image\": \"COCO_val2014_000000329717.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 274, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 275, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 276, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 277, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 278, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 279, \"image\": \"COCO_val2014_000000012333.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 280, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 281, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 282, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 283, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 284, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 285, \"image\": \"COCO_val2014_000000480122.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 286, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 287, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 288, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 289, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 290, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 291, \"image\": \"COCO_val2014_000000515904.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 292, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 293, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 294, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 295, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 296, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 297, \"image\": \"COCO_val2014_000000437347.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 298, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 299, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 300, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 301, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 302, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 303, \"image\": \"COCO_val2014_000000354229.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 304, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 305, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 306, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 307, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 308, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 309, \"image\": \"COCO_val2014_000000538236.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 310, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 311, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 312, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 313, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 314, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 315, \"image\": \"COCO_val2014_000000236865.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 316, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 317, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 318, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 319, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 320, \"image\": \"COCO_val2014_000000217397.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 321, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 322, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 323, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 324, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 325, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 326, \"image\": \"COCO_val2014_000000060213.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 327, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 328, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 329, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 330, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 331, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 332, \"image\": \"COCO_val2014_000000054025.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 333, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 334, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 335, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 336, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 337, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 338, \"image\": \"COCO_val2014_000000084447.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 339, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 340, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 341, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 342, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 343, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"yes\"}\n{\"question_id\": 344, \"image\": \"COCO_val2014_000000192660.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 345, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 346, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 347, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 348, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 349, \"image\": \"COCO_val2014_000000575755.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 350, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 351, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 352, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 353, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 354, \"image\": \"COCO_val2014_000000354088.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 355, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 356, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 357, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 358, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 359, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 360, \"image\": \"COCO_val2014_000000311327.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 361, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 362, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 363, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 364, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 365, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 366, \"image\": \"COCO_val2014_000000456552.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 367, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 368, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 369, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 370, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 371, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"yes\"}\n{\"question_id\": 372, \"image\": \"COCO_val2014_000000350898.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 373, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 374, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 375, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 376, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 377, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 378, \"image\": \"COCO_val2014_000000170365.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 379, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 380, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 381, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 382, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 383, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 384, \"image\": \"COCO_val2014_000000021645.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 385, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 386, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 387, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 388, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 389, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 390, \"image\": \"COCO_val2014_000000528905.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 391, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 392, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 393, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 394, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 395, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 396, \"image\": \"COCO_val2014_000000239347.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 397, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 398, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 399, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 400, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 401, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 402, \"image\": \"COCO_val2014_000000007320.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 403, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 404, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 405, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 406, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 407, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 408, \"image\": \"COCO_val2014_000000249715.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 409, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 410, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 411, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 412, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 413, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 414, \"image\": \"COCO_val2014_000000080022.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 415, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 416, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 417, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 418, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 419, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 420, \"image\": \"COCO_val2014_000000564336.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 421, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 422, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 423, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 424, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 425, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 426, \"image\": \"COCO_val2014_000000231589.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 427, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 428, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 429, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 430, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 431, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 432, \"image\": \"COCO_val2014_000000465275.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 433, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 434, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 435, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 436, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 437, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 438, \"image\": \"COCO_val2014_000000083275.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 439, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 440, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 441, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 442, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 443, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 444, \"image\": \"COCO_val2014_000000406403.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 445, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 446, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 447, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 448, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 449, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"yes\"}\n{\"question_id\": 450, \"image\": \"COCO_val2014_000000131018.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 451, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 452, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 453, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 454, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 455, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 456, \"image\": \"COCO_val2014_000000332625.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 457, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 458, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 459, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 460, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 461, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 462, \"image\": \"COCO_val2014_000000332025.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 463, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 464, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 465, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 466, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 467, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"yes\"}\n{\"question_id\": 468, \"image\": \"COCO_val2014_000000318204.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 469, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 470, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 471, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 472, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 473, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 474, \"image\": \"COCO_val2014_000000455157.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 475, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 476, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 477, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 478, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 479, \"image\": \"COCO_val2014_000000069189.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 480, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 481, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 482, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 483, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 484, \"image\": \"COCO_val2014_000000199764.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 485, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 486, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 487, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 488, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 489, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 490, \"image\": \"COCO_val2014_000000148766.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 491, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 492, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 493, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 494, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 495, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 496, \"image\": \"COCO_val2014_000000175506.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 497, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 498, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 499, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 500, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 501, \"image\": \"COCO_val2014_000000353096.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 502, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 503, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 504, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 505, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 506, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 507, \"image\": \"COCO_val2014_000000207205.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 508, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 509, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 510, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 511, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 512, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 513, \"image\": \"COCO_val2014_000000427113.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 514, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 515, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 516, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 517, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 518, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 519, \"image\": \"COCO_val2014_000000498374.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 520, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 521, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 522, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 523, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 524, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 525, \"image\": \"COCO_val2014_000000013348.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 526, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 527, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 528, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 529, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 530, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 531, \"image\": \"COCO_val2014_000000081336.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 532, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 533, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 534, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 535, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 536, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 537, \"image\": \"COCO_val2014_000000190185.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 538, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 539, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 540, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 541, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 542, \"image\": \"COCO_val2014_000000209755.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 543, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 544, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 545, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 546, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 547, \"image\": \"COCO_val2014_000000227227.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 548, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 549, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 550, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 551, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 552, \"image\": \"COCO_val2014_000000397705.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 553, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 554, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 555, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 556, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 557, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 558, \"image\": \"COCO_val2014_000000287305.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 559, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 560, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 561, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 562, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 563, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 564, \"image\": \"COCO_val2014_000000257327.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 565, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 566, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 567, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 568, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 569, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 570, \"image\": \"COCO_val2014_000000557016.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 571, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 572, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 573, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 574, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 575, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 576, \"image\": \"COCO_val2014_000000105732.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 577, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 578, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 579, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 580, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 581, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 582, \"image\": \"COCO_val2014_000000534121.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 583, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 584, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 585, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 586, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 587, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 588, \"image\": \"COCO_val2014_000000520524.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 589, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 590, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 591, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 592, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 593, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 594, \"image\": \"COCO_val2014_000000580294.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 595, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 596, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 597, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 598, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 599, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 600, \"image\": \"COCO_val2014_000000374061.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 601, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 602, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 603, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 604, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 605, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 606, \"image\": \"COCO_val2014_000000094944.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 607, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 608, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 609, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 610, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 611, \"image\": \"COCO_val2014_000000572075.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 612, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 613, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 614, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 615, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 616, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 617, \"image\": \"COCO_val2014_000000387098.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 618, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 619, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 620, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 621, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 622, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 623, \"image\": \"COCO_val2014_000000382670.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 624, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 625, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 626, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 627, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 628, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 629, \"image\": \"COCO_val2014_000000414516.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 630, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 631, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 632, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 633, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 634, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 635, \"image\": \"COCO_val2014_000000204360.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 636, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 637, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 638, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 639, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"yes\"}\n{\"question_id\": 640, \"image\": \"COCO_val2014_000000245642.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 641, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 642, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 643, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 644, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 645, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 646, \"image\": \"COCO_val2014_000000237767.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 647, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 648, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 649, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 650, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 651, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 652, \"image\": \"COCO_val2014_000000370900.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 653, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 654, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 655, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 656, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 657, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 658, \"image\": \"COCO_val2014_000000094501.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 659, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 660, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 661, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 662, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 663, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 664, \"image\": \"COCO_val2014_000000069196.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 665, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 666, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 667, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 668, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 669, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 670, \"image\": \"COCO_val2014_000000366141.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 671, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 672, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 673, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 674, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 675, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 676, \"image\": \"COCO_val2014_000000093946.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 677, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 678, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 679, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 680, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 681, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 682, \"image\": \"COCO_val2014_000000032610.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 683, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 684, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 685, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 686, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 687, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 688, \"image\": \"COCO_val2014_000000239130.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 689, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 690, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 691, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 692, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 693, \"image\": \"COCO_val2014_000000226097.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 694, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 695, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 696, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 697, \"image\": \"COCO_val2014_000000538054.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 698, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 699, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 700, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 701, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 702, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"yes\"}\n{\"question_id\": 703, \"image\": \"COCO_val2014_000000114710.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 704, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 705, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 706, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 707, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 708, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 709, \"image\": \"COCO_val2014_000000113701.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 710, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 711, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 712, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 713, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 714, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 715, \"image\": \"COCO_val2014_000000065001.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 716, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 717, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 718, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 719, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 720, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 721, \"image\": \"COCO_val2014_000000482275.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 722, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 723, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 724, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 725, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 726, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 727, \"image\": \"COCO_val2014_000000140983.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 728, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 729, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 730, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 731, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 732, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 733, \"image\": \"COCO_val2014_000000044520.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 734, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"yes\"}\n{\"question_id\": 735, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 736, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 737, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 738, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"yes\"}\n{\"question_id\": 739, \"image\": \"COCO_val2014_000000518177.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 740, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 741, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 742, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 743, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 744, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 745, \"image\": \"COCO_val2014_000000203479.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 746, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 747, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 748, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 749, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 750, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 751, \"image\": \"COCO_val2014_000000551881.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 752, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 753, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 754, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 755, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 756, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 757, \"image\": \"COCO_val2014_000000369541.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 758, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 759, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 760, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 761, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 762, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 763, \"image\": \"COCO_val2014_000000007795.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 764, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 765, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 766, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 767, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 768, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 769, \"image\": \"COCO_val2014_000000303099.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 770, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 771, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 772, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 773, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 774, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 775, \"image\": \"COCO_val2014_000000147289.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 776, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 777, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 778, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 779, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 780, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 781, \"image\": \"COCO_val2014_000000102439.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 782, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 783, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 784, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 785, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 786, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 787, \"image\": \"COCO_val2014_000000183757.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 788, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 789, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 790, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 791, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 792, \"image\": \"COCO_val2014_000000500473.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 793, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 794, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 795, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 796, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 797, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 798, \"image\": \"COCO_val2014_000000327532.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 799, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 800, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 801, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 802, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 803, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 804, \"image\": \"COCO_val2014_000000167110.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 805, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 806, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 807, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 808, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 809, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 810, \"image\": \"COCO_val2014_000000300876.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 811, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 812, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 813, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 814, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 815, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 816, \"image\": \"COCO_val2014_000000443240.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 817, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 818, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 819, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 820, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 821, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 822, \"image\": \"COCO_val2014_000000288042.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 823, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 824, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 825, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 826, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 827, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 828, \"image\": \"COCO_val2014_000000270609.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 829, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 830, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 831, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 832, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 833, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 834, \"image\": \"COCO_val2014_000000208028.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 835, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 836, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 837, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 838, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 839, \"image\": \"COCO_val2014_000000314992.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 840, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 841, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 842, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 843, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 844, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 845, \"image\": \"COCO_val2014_000000424642.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 846, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 847, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 848, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 849, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 850, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 851, \"image\": \"COCO_val2014_000000467176.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 852, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 853, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 854, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 855, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 856, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 857, \"image\": \"COCO_val2014_000000087435.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 858, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 859, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 860, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 861, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 862, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 863, \"image\": \"COCO_val2014_000000079446.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 864, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 865, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 866, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 867, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 868, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 869, \"image\": \"COCO_val2014_000000354398.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 870, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 871, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 872, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 873, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 874, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 875, \"image\": \"COCO_val2014_000000430052.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 876, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 877, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 878, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 879, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 880, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 881, \"image\": \"COCO_val2014_000000567886.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 882, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 883, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 884, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 885, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 886, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 887, \"image\": \"COCO_val2014_000000539251.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 888, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 889, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 890, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 891, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 892, \"image\": \"COCO_val2014_000000551908.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 893, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 894, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 895, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 896, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 897, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 898, \"image\": \"COCO_val2014_000000102906.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 899, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 900, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 901, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 902, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 903, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 904, \"image\": \"COCO_val2014_000000327771.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 905, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 906, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 907, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 908, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 909, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 910, \"image\": \"COCO_val2014_000000280734.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 911, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 912, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 913, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 914, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 915, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 916, \"image\": \"COCO_val2014_000000111817.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 917, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 918, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 919, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 920, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 921, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 922, \"image\": \"COCO_val2014_000000379162.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 923, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 924, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 925, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 926, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 927, \"image\": \"COCO_val2014_000000489728.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 928, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 929, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 930, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 931, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 932, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 933, \"image\": \"COCO_val2014_000000419453.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 934, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 935, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 936, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 937, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 938, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 939, \"image\": \"COCO_val2014_000000358255.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 940, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 941, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 942, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 943, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 944, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 945, \"image\": \"COCO_val2014_000000178078.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 946, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 947, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 948, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 949, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 950, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 951, \"image\": \"COCO_val2014_000000197219.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 952, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"yes\"}\n{\"question_id\": 953, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 954, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 955, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 956, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 957, \"image\": \"COCO_val2014_000000460931.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 958, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 959, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 960, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 961, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 962, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 963, \"image\": \"COCO_val2014_000000506483.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 964, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 965, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 966, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 967, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 968, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 969, \"image\": \"COCO_val2014_000000468934.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 970, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 971, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 972, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 973, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 974, \"image\": \"COCO_val2014_000000189694.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 975, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 976, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 977, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 978, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 979, \"image\": \"COCO_val2014_000000273450.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 980, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 981, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 982, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 983, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 984, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 985, \"image\": \"COCO_val2014_000000278226.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 986, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 987, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 988, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 989, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 990, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 991, \"image\": \"COCO_val2014_000000449432.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 992, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 993, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 994, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 995, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 996, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 997, \"image\": \"COCO_val2014_000000153300.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 998, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 999, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1000, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1001, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1002, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1003, \"image\": \"COCO_val2014_000000506178.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1004, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1005, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 1006, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1007, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 1008, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1009, \"image\": \"COCO_val2014_000000249720.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 1010, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1011, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1012, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1013, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 1014, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1015, \"image\": \"COCO_val2014_000000205206.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1016, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1017, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 1018, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1019, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1020, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1021, \"image\": \"COCO_val2014_000000018150.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 1022, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1023, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1024, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1025, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1026, \"image\": \"COCO_val2014_000000303534.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1027, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1028, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 1029, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1030, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1031, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1032, \"image\": \"COCO_val2014_000000278771.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 1033, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1034, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1035, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1036, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1037, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1038, \"image\": \"COCO_val2014_000000134075.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1039, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1040, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1041, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1042, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 1043, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1044, \"image\": \"COCO_val2014_000000227204.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1045, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1046, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 1047, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1048, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1049, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1050, \"image\": \"COCO_val2014_000000124629.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1051, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1052, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1053, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1054, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 1055, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1056, \"image\": \"COCO_val2014_000000142774.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 1057, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1058, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 1059, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1060, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 1061, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1062, \"image\": \"COCO_val2014_000000199959.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 1063, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1064, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1065, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1066, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 1067, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1068, \"image\": \"COCO_val2014_000000316700.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1069, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1070, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 1071, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1072, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1073, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1074, \"image\": \"COCO_val2014_000000040361.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1075, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1076, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1077, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1078, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1079, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1080, \"image\": \"COCO_val2014_000000378873.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 1081, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1082, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 1083, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1084, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1085, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1086, \"image\": \"COCO_val2014_000000574790.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1087, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1088, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1089, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1090, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1091, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1092, \"image\": \"COCO_val2014_000000011241.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 1093, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1094, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 1095, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1096, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1097, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1098, \"image\": \"COCO_val2014_000000525667.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1099, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1100, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 1101, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1102, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 1103, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1104, \"image\": \"COCO_val2014_000000246145.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1105, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1106, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1107, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 1108, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1109, \"image\": \"COCO_val2014_000000313162.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 1110, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1111, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 1112, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1113, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1114, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1115, \"image\": \"COCO_val2014_000000529668.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 1116, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1117, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 1118, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1119, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1120, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1121, \"image\": \"COCO_val2014_000000376959.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 1122, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1123, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 1124, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1125, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 1126, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1127, \"image\": \"COCO_val2014_000000275863.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 1128, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1129, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1130, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1131, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1132, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1133, \"image\": \"COCO_val2014_000000327038.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1134, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1135, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1136, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1137, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 1138, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1139, \"image\": \"COCO_val2014_000000513136.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1140, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1141, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 1142, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1143, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1144, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1145, \"image\": \"COCO_val2014_000000184338.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 1146, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1147, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 1148, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1149, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1150, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1151, \"image\": \"COCO_val2014_000000175437.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1152, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1153, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1154, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1155, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1156, \"image\": \"COCO_val2014_000000498100.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1157, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1158, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1159, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1160, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 1161, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1162, \"image\": \"COCO_val2014_000000375909.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 1163, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1164, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1165, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1166, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1167, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1168, \"image\": \"COCO_val2014_000000396338.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 1169, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1170, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1171, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1172, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1173, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1174, \"image\": \"COCO_val2014_000000124930.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1175, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1176, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 1177, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1178, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1179, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1180, \"image\": \"COCO_val2014_000000112664.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 1181, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1182, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 1183, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1184, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1185, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1186, \"image\": \"COCO_val2014_000000377879.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1187, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1188, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 1189, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1190, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 1191, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1192, \"image\": \"COCO_val2014_000000377401.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1193, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1194, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 1195, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1196, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 1197, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1198, \"image\": \"COCO_val2014_000000049473.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1199, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1200, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 1201, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1202, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1203, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1204, \"image\": \"COCO_val2014_000000153865.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 1205, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1206, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1207, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1208, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1209, \"image\": \"COCO_val2014_000000383185.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1210, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1211, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1212, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1213, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1214, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1215, \"image\": \"COCO_val2014_000000388983.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1216, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1217, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1218, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1219, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 1220, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1221, \"image\": \"COCO_val2014_000000295377.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 1222, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1223, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 1224, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1225, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1226, \"image\": \"COCO_val2014_000000034773.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 1227, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1228, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1229, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1230, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 1231, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1232, \"image\": \"COCO_val2014_000000244455.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1233, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1234, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 1235, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1236, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1237, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1238, \"image\": \"COCO_val2014_000000303652.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 1239, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1240, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 1241, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1242, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 1243, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1244, \"image\": \"COCO_val2014_000000098493.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 1245, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1246, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1247, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1248, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 1249, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1250, \"image\": \"COCO_val2014_000000201148.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1251, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1252, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 1253, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1254, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1255, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1256, \"image\": \"COCO_val2014_000000307166.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 1257, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1258, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1259, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1260, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1261, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1262, \"image\": \"COCO_val2014_000000313034.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 1263, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1264, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1265, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1266, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 1267, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1268, \"image\": \"COCO_val2014_000000355342.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1269, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1270, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 1271, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1272, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 1273, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1274, \"image\": \"COCO_val2014_000000333237.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1275, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1276, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 1277, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1278, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1279, \"image\": \"COCO_val2014_000000526368.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1280, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1281, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 1282, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1283, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1284, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1285, \"image\": \"COCO_val2014_000000429033.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 1286, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1287, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1288, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1289, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 1290, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1291, \"image\": \"COCO_val2014_000000287035.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 1292, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1293, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 1294, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1295, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1296, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1297, \"image\": \"COCO_val2014_000000299074.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1298, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1299, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 1300, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1301, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1302, \"image\": \"COCO_val2014_000000120648.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1303, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1304, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 1305, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1306, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 1307, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1308, \"image\": \"COCO_val2014_000000186709.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 1309, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1310, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 1311, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1312, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 1313, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1314, \"image\": \"COCO_val2014_000000025972.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1315, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1316, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1317, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1318, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1319, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1320, \"image\": \"COCO_val2014_000000505542.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 1321, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1322, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1323, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1324, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 1325, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1326, \"image\": \"COCO_val2014_000000115636.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 1327, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1328, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 1329, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1330, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 1331, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1332, \"image\": \"COCO_val2014_000000280810.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 1333, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1334, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 1335, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1336, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 1337, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1338, \"image\": \"COCO_val2014_000000037900.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1339, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1340, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 1341, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1342, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1343, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1344, \"image\": \"COCO_val2014_000000534516.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1345, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1346, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 1347, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1348, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1349, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1350, \"image\": \"COCO_val2014_000000123017.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 1351, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1352, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1353, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1354, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 1355, \"image\": \"COCO_val2014_000000316237.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1356, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1357, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 1358, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1359, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 1360, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1361, \"image\": \"COCO_val2014_000000463522.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 1362, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1363, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1364, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 1365, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1366, \"image\": \"COCO_val2014_000000511341.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 1367, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1368, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 1369, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1370, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 1371, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1372, \"image\": \"COCO_val2014_000000200583.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 1373, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1374, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 1375, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1376, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 1377, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1378, \"image\": \"COCO_val2014_000000424585.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1379, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1380, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 1381, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1382, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1383, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1384, \"image\": \"COCO_val2014_000000100215.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1385, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1386, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1387, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1388, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 1389, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1390, \"image\": \"COCO_val2014_000000017379.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 1391, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1392, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1393, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1394, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 1395, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1396, \"image\": \"COCO_val2014_000000511622.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 1397, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1398, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 1399, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1400, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 1401, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1402, \"image\": \"COCO_val2014_000000407386.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 1403, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1404, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1405, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1406, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 1407, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1408, \"image\": \"COCO_val2014_000000039516.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 1409, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1410, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 1411, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1412, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1413, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1414, \"image\": \"COCO_val2014_000000018918.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 1415, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1416, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 1417, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1418, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1419, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1420, \"image\": \"COCO_val2014_000000115626.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 1421, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1422, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1423, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1424, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 1425, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1426, \"image\": \"COCO_val2014_000000391735.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1427, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1428, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1429, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1430, \"image\": \"COCO_val2014_000000236370.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1431, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1432, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 1433, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1434, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1435, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1436, \"image\": \"COCO_val2014_000000463542.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 1437, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1438, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 1439, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1440, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1441, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1442, \"image\": \"COCO_val2014_000000377352.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 1443, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1444, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 1445, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1446, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 1447, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1448, \"image\": \"COCO_val2014_000000302405.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1449, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1450, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 1451, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1452, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 1453, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1454, \"image\": \"COCO_val2014_000000554328.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 1455, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1456, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 1457, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1458, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 1459, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1460, \"image\": \"COCO_val2014_000000384040.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1461, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1462, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1463, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1464, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1465, \"image\": \"COCO_val2014_000000023731.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 1466, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1467, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1468, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1469, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1470, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1471, \"image\": \"COCO_val2014_000000463640.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1472, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1473, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 1474, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1475, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 1476, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1477, \"image\": \"COCO_val2014_000000365822.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1478, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1479, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 1480, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1481, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1482, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1483, \"image\": \"COCO_val2014_000000524979.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 1484, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1485, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 1486, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1487, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 1488, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1489, \"image\": \"COCO_val2014_000000070813.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 1490, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1491, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1492, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 1493, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1494, \"image\": \"COCO_val2014_000000318209.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1495, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1496, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 1497, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1498, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1499, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1500, \"image\": \"COCO_val2014_000000016775.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 1501, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1502, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 1503, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1504, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 1505, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1506, \"image\": \"COCO_val2014_000000015338.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1507, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1508, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1509, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1510, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1511, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1512, \"image\": \"COCO_val2014_000000441156.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 1513, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1514, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 1515, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1516, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 1517, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1518, \"image\": \"COCO_val2014_000000408757.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1519, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1520, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1521, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1522, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1523, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1524, \"image\": \"COCO_val2014_000000550691.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 1525, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1526, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 1527, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1528, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 1529, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1530, \"image\": \"COCO_val2014_000000204100.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 1531, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1532, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1533, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1534, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 1535, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1536, \"image\": \"COCO_val2014_000000468169.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 1537, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1538, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1539, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1540, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 1541, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1542, \"image\": \"COCO_val2014_000000198312.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 1543, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1544, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 1545, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1546, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1547, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1548, \"image\": \"COCO_val2014_000000485485.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 1549, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1550, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 1551, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1552, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 1553, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1554, \"image\": \"COCO_val2014_000000309371.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1555, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1556, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1557, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1558, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 1559, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1560, \"image\": \"COCO_val2014_000000472143.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 1561, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1562, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1563, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1564, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1565, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1566, \"image\": \"COCO_val2014_000000236023.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 1567, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1568, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 1569, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1570, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 1571, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1572, \"image\": \"COCO_val2014_000000214244.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 1573, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1574, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1575, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1576, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 1577, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1578, \"image\": \"COCO_val2014_000000397665.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 1579, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1580, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 1581, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1582, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1583, \"image\": \"COCO_val2014_000000183965.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1584, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1585, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1586, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1587, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1588, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1589, \"image\": \"COCO_val2014_000000499105.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1590, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1591, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1592, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1593, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1594, \"image\": \"COCO_val2014_000000259755.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 1595, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1596, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1597, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1598, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 1599, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1600, \"image\": \"COCO_val2014_000000281028.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1601, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1602, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 1603, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1604, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 1605, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1606, \"image\": \"COCO_val2014_000000199122.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1607, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1608, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 1609, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1610, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1611, \"image\": \"COCO_val2014_000000442809.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 1612, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1613, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1614, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1615, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1616, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1617, \"image\": \"COCO_val2014_000000482829.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1618, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1619, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 1620, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1621, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 1622, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1623, \"image\": \"COCO_val2014_000000097994.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1624, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1625, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1626, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1627, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1628, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1629, \"image\": \"COCO_val2014_000000246999.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1630, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1631, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 1632, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1633, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1634, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1635, \"image\": \"COCO_val2014_000000338291.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 1636, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1637, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1638, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1639, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 1640, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1641, \"image\": \"COCO_val2014_000000331366.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1642, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1643, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1644, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1645, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1646, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1647, \"image\": \"COCO_val2014_000000348524.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1648, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1649, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 1650, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1651, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 1652, \"image\": \"COCO_val2014_000000108189.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1653, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1654, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 1655, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1656, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 1657, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1658, \"image\": \"COCO_val2014_000000301575.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 1659, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1660, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1661, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1662, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 1663, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1664, \"image\": \"COCO_val2014_000000239773.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 1665, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1666, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1667, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 1668, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1669, \"image\": \"COCO_val2014_000000354976.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1670, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1671, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 1672, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1673, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 1674, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1675, \"image\": \"COCO_val2014_000000473199.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 1676, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1677, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1678, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1679, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1680, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1681, \"image\": \"COCO_val2014_000000311759.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 1682, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1683, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 1684, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1685, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1686, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1687, \"image\": \"COCO_val2014_000000431615.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1688, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1689, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 1690, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1691, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 1692, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1693, \"image\": \"COCO_val2014_000000343401.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 1694, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1695, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1696, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1697, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1698, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1699, \"image\": \"COCO_val2014_000000246199.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1700, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1701, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1702, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1703, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 1704, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1705, \"image\": \"COCO_val2014_000000372009.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1706, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1707, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 1708, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1709, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1710, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1711, \"image\": \"COCO_val2014_000000346707.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 1712, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1713, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1714, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1715, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 1716, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1717, \"image\": \"COCO_val2014_000000501898.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1718, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1719, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1720, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1721, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 1722, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1723, \"image\": \"COCO_val2014_000000281766.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 1724, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1725, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1726, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1727, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 1728, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1729, \"image\": \"COCO_val2014_000000245448.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 1730, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1731, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1732, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1733, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1734, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1735, \"image\": \"COCO_val2014_000000510138.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1736, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1737, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1738, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1739, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1740, \"image\": \"COCO_val2014_000000001171.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1741, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1742, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1743, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1744, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1745, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1746, \"image\": \"COCO_val2014_000000100238.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 1747, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1748, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1749, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1750, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 1751, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1752, \"image\": \"COCO_val2014_000000465418.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 1753, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1754, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1755, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1756, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 1757, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1758, \"image\": \"COCO_val2014_000000392364.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1759, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1760, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 1761, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1762, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1763, \"image\": \"COCO_val2014_000000188958.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1764, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1765, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 1766, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1767, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 1768, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1769, \"image\": \"COCO_val2014_000000436127.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1770, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1771, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 1772, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1773, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1774, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1775, \"image\": \"COCO_val2014_000000198397.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1776, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1777, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 1778, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1779, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1780, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1781, \"image\": \"COCO_val2014_000000349936.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 1782, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1783, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1784, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1785, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 1786, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1787, \"image\": \"COCO_val2014_000000333756.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1788, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1789, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 1790, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1791, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 1792, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1793, \"image\": \"COCO_val2014_000000474741.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1794, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1795, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 1796, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1797, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 1798, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1799, \"image\": \"COCO_val2014_000000286342.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1800, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1801, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 1802, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1803, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 1804, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1805, \"image\": \"COCO_val2014_000000093948.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 1806, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1807, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 1808, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1809, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 1810, \"image\": \"COCO_val2014_000000405740.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1811, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1812, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 1813, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1814, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 1815, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1816, \"image\": \"COCO_val2014_000000304387.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 1817, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1818, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 1819, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1820, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1821, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1822, \"image\": \"COCO_val2014_000000147165.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1823, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1824, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 1825, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1826, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 1827, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1828, \"image\": \"COCO_val2014_000000495311.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1829, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1830, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1831, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1832, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1833, \"image\": \"COCO_val2014_000000312406.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 1834, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1835, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1836, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1837, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 1838, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1839, \"image\": \"COCO_val2014_000000515820.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1840, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1841, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 1842, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1843, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 1844, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1845, \"image\": \"COCO_val2014_000000031971.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 1846, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1847, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 1848, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1849, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 1850, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1851, \"image\": \"COCO_val2014_000000418680.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1852, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1853, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1854, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1855, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 1856, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1857, \"image\": \"COCO_val2014_000000459680.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 1858, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1859, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 1860, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1861, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 1862, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1863, \"image\": \"COCO_val2014_000000196462.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1864, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1865, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1866, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1867, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 1868, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1869, \"image\": \"COCO_val2014_000000276693.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1870, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1871, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1872, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1873, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 1874, \"image\": \"COCO_val2014_000000356424.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1875, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1876, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 1877, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1878, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 1879, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1880, \"image\": \"COCO_val2014_000000505335.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1881, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1882, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1883, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1884, \"image\": \"COCO_val2014_000000172342.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1885, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1886, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 1887, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1888, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1889, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1890, \"image\": \"COCO_val2014_000000384970.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 1891, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1892, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1893, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1894, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 1895, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1896, \"image\": \"COCO_val2014_000000572260.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 1897, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1898, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1899, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1900, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1901, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1902, \"image\": \"COCO_val2014_000000418471.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1903, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1904, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 1905, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1906, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1907, \"image\": \"COCO_val2014_000000379404.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1908, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1909, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 1910, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1911, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 1912, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1913, \"image\": \"COCO_val2014_000000044801.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 1914, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1915, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 1916, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1917, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1918, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1919, \"image\": \"COCO_val2014_000000293564.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 1920, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1921, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 1922, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1923, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1924, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1925, \"image\": \"COCO_val2014_000000452297.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 1926, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1927, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 1928, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1929, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 1930, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1931, \"image\": \"COCO_val2014_000000543393.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 1932, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1933, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 1934, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1935, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 1936, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1937, \"image\": \"COCO_val2014_000000172648.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1938, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1939, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 1940, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1941, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 1942, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1943, \"image\": \"COCO_val2014_000000308907.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 1944, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1945, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 1946, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1947, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 1948, \"image\": \"COCO_val2014_000000263594.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1949, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1950, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 1951, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1952, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1953, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1954, \"image\": \"COCO_val2014_000000501294.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 1955, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1956, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1957, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1958, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 1959, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1960, \"image\": \"COCO_val2014_000000500680.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 1961, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1962, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1963, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1964, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 1965, \"image\": \"COCO_val2014_000000091954.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1966, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1967, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 1968, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1969, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 1970, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1971, \"image\": \"COCO_val2014_000000454607.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 1972, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1973, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 1974, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1975, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 1976, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1977, \"image\": \"COCO_val2014_000000363908.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 1978, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1979, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 1980, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1981, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 1982, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1983, \"image\": \"COCO_val2014_000000560064.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 1984, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1985, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 1986, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1987, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 1988, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1989, \"image\": \"COCO_val2014_000000348469.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 1990, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 1991, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 1992, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1993, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 1994, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1995, \"image\": \"COCO_val2014_000000167724.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 1996, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1997, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 1998, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 1999, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2000, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2001, \"image\": \"COCO_val2014_000000262736.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 2002, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2003, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2004, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2005, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 2006, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2007, \"image\": \"COCO_val2014_000000076416.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2008, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2009, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 2010, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2011, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2012, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2013, \"image\": \"COCO_val2014_000000541783.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 2014, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2015, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 2016, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2017, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 2018, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2019, \"image\": \"COCO_val2014_000000445200.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 2020, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2021, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2022, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2023, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 2024, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2025, \"image\": \"COCO_val2014_000000433574.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2026, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2027, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2028, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2029, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2030, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2031, \"image\": \"COCO_val2014_000000212241.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 2032, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2033, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2034, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2035, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2036, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2037, \"image\": \"COCO_val2014_000000114941.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 2038, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2039, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 2040, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2041, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 2042, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2043, \"image\": \"COCO_val2014_000000493753.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 2044, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2045, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2046, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2047, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2048, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2049, \"image\": \"COCO_val2014_000000410597.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2050, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2051, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 2052, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2053, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2054, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2055, \"image\": \"COCO_val2014_000000382617.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 2056, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2057, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 2058, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2059, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 2060, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2061, \"image\": \"COCO_val2014_000000467887.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2062, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2063, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2064, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2065, \"image\": \"COCO_val2014_000000120792.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2066, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2067, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 2068, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2069, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 2070, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2071, \"image\": \"COCO_val2014_000000125524.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2072, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2073, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2074, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2075, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 2076, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2077, \"image\": \"COCO_val2014_000000196053.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2078, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2079, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2080, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2081, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2082, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2083, \"image\": \"COCO_val2014_000000156704.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 2084, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2085, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 2086, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2087, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2088, \"image\": \"COCO_val2014_000000088507.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2089, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2090, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 2091, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2092, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2093, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2094, \"image\": \"COCO_val2014_000000279499.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 2095, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2096, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2097, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2098, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 2099, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2100, \"image\": \"COCO_val2014_000000155131.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2101, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2102, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2103, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2104, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2105, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2106, \"image\": \"COCO_val2014_000000252135.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2107, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2108, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2109, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2110, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2111, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2112, \"image\": \"COCO_val2014_000000501652.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 2113, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2114, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 2115, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2116, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2117, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2118, \"image\": \"COCO_val2014_000000238691.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 2119, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2120, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 2121, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2122, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 2123, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2124, \"image\": \"COCO_val2014_000000332908.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 2125, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2126, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2127, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2128, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2129, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2130, \"image\": \"COCO_val2014_000000372819.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2131, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2132, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2133, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2134, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2135, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2136, \"image\": \"COCO_val2014_000000470699.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2137, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2138, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 2139, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2140, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 2141, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2142, \"image\": \"COCO_val2014_000000023084.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2143, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2144, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 2145, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2146, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2147, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2148, \"image\": \"COCO_val2014_000000545353.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 2149, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2150, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2151, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 2152, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2153, \"image\": \"COCO_val2014_000000394535.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 2154, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2155, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2156, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 2157, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2158, \"image\": \"COCO_val2014_000000579415.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2159, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2160, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2161, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2162, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 2163, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2164, \"image\": \"COCO_val2014_000000233521.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 2165, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2166, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 2167, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2168, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 2169, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2170, \"image\": \"COCO_val2014_000000355256.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 2171, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2172, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2173, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2174, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2175, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2176, \"image\": \"COCO_val2014_000000304819.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2177, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2178, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2179, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2180, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 2181, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2182, \"image\": \"COCO_val2014_000000240434.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 2183, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2184, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2185, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2186, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 2187, \"image\": \"COCO_val2014_000000199940.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2188, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2189, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 2190, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2191, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2192, \"image\": \"COCO_val2014_000000549390.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2193, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2194, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 2195, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2196, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2197, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2198, \"image\": \"COCO_val2014_000000235541.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 2199, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2200, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 2201, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2202, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2203, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2204, \"image\": \"COCO_val2014_000000068418.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2205, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2206, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 2207, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2208, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2209, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2210, \"image\": \"COCO_val2014_000000368541.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2211, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2212, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2213, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2214, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 2215, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2216, \"image\": \"COCO_val2014_000000006033.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2217, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2218, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2219, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2220, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 2221, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2222, \"image\": \"COCO_val2014_000000021327.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2223, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2224, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 2225, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2226, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2227, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2228, \"image\": \"COCO_val2014_000000390157.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2229, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2230, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 2231, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2232, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 2233, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2234, \"image\": \"COCO_val2014_000000298633.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 2235, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2236, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 2237, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2238, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 2239, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2240, \"image\": \"COCO_val2014_000000579277.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2241, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2242, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2243, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2244, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2245, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2246, \"image\": \"COCO_val2014_000000042685.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2247, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2248, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2249, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2250, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 2251, \"image\": \"COCO_val2014_000000553992.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2252, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2253, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2254, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2255, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 2256, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2257, \"image\": \"COCO_val2014_000000243158.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2258, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2259, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 2260, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2261, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2262, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2263, \"image\": \"COCO_val2014_000000303971.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 2264, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2265, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2266, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2267, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2268, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2269, \"image\": \"COCO_val2014_000000405762.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 2270, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2271, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 2272, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2273, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2274, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2275, \"image\": \"COCO_val2014_000000343967.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 2276, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2277, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 2278, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2279, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2280, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2281, \"image\": \"COCO_val2014_000000477598.jpg\", \"text\": \"Is there a toothbrush in the image?\", \"label\": \"no\"}\n{\"question_id\": 2282, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2283, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2284, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2285, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2286, \"image\": \"COCO_val2014_000000044993.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2287, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2288, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 2289, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2290, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2291, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2292, \"image\": \"COCO_val2014_000000381195.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2293, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2294, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2295, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2296, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2297, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2298, \"image\": \"COCO_val2014_000000337502.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 2299, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2300, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 2301, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2302, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2303, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2304, \"image\": \"COCO_val2014_000000325347.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 2305, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2306, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2307, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2308, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2309, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2310, \"image\": \"COCO_val2014_000000256906.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 2311, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2312, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 2313, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2314, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 2315, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2316, \"image\": \"COCO_val2014_000000061507.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 2317, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2318, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 2319, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2320, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2321, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2322, \"image\": \"COCO_val2014_000000084410.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 2323, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2324, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2325, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2326, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 2327, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2328, \"image\": \"COCO_val2014_000000288576.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2329, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2330, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2331, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2332, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 2333, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2334, \"image\": \"COCO_val2014_000000328301.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 2335, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2336, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 2337, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2338, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 2339, \"image\": \"COCO_val2014_000000307262.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2340, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2341, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2342, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2343, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2344, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2345, \"image\": \"COCO_val2014_000000573796.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2346, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2347, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2348, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2349, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 2350, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2351, \"image\": \"COCO_val2014_000000154846.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 2352, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2353, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 2354, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2355, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2356, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2357, \"image\": \"COCO_val2014_000000472375.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2358, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2359, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 2360, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2361, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2362, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2363, \"image\": \"COCO_val2014_000000446651.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 2364, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2365, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2366, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2367, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 2368, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2369, \"image\": \"COCO_val2014_000000267684.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 2370, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2371, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 2372, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2373, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2374, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2375, \"image\": \"COCO_val2014_000000238029.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2376, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2377, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2378, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2379, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2380, \"image\": \"COCO_val2014_000000294475.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 2381, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2382, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2383, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2384, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 2385, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2386, \"image\": \"COCO_val2014_000000149592.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 2387, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2388, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 2389, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2390, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 2391, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2392, \"image\": \"COCO_val2014_000000447787.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2393, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2394, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2395, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2396, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2397, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2398, \"image\": \"COCO_val2014_000000458325.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 2399, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2400, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2401, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2402, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2403, \"image\": \"COCO_val2014_000000388237.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2404, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2405, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 2406, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2407, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2408, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2409, \"image\": \"COCO_val2014_000000038645.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 2410, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2411, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2412, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2413, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 2414, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2415, \"image\": \"COCO_val2014_000000071738.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"no\"}\n{\"question_id\": 2416, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2417, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2418, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2419, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 2420, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2421, \"image\": \"COCO_val2014_000000170077.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 2422, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2423, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2424, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2425, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a sheep in the image?\", \"label\": \"no\"}\n{\"question_id\": 2426, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2427, \"image\": \"COCO_val2014_000000378751.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 2428, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2429, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2430, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2431, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 2432, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2433, \"image\": \"COCO_val2014_000000073182.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2434, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2435, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2436, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2437, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2438, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2439, \"image\": \"COCO_val2014_000000246928.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2440, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2441, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 2442, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2443, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 2444, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2445, \"image\": \"COCO_val2014_000000528136.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 2446, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2447, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2448, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2449, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 2450, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2451, \"image\": \"COCO_val2014_000000209290.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 2452, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2453, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 2454, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2455, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2456, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2457, \"image\": \"COCO_val2014_000000564511.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 2458, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2459, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 2460, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2461, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2462, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2463, \"image\": \"COCO_val2014_000000200739.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2464, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2465, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2466, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2467, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2468, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2469, \"image\": \"COCO_val2014_000000462805.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 2470, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2471, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"no\"}\n{\"question_id\": 2472, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2473, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 2474, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2475, \"image\": \"COCO_val2014_000000163575.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 2476, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2477, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 2478, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2479, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 2480, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2481, \"image\": \"COCO_val2014_000000059383.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2482, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2483, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2484, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 2485, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2486, \"image\": \"COCO_val2014_000000478736.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 2487, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2488, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2489, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2490, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2491, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2492, \"image\": \"COCO_val2014_000000156282.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2493, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2494, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"no\"}\n{\"question_id\": 2495, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2496, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2497, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2498, \"image\": \"COCO_val2014_000000052689.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 2499, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2500, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 2501, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2502, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2503, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2504, \"image\": \"COCO_val2014_000000516601.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2505, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2506, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 2507, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2508, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 2509, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2510, \"image\": \"COCO_val2014_000000562155.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 2511, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2512, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2513, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2514, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2515, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2516, \"image\": \"COCO_val2014_000000142056.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2517, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2518, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 2519, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2520, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2521, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2522, \"image\": \"COCO_val2014_000000299986.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2523, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2524, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 2525, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2526, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 2527, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2528, \"image\": \"COCO_val2014_000000521643.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2529, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2530, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2531, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2532, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 2533, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2534, \"image\": \"COCO_val2014_000000574454.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 2535, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2536, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"no\"}\n{\"question_id\": 2537, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2538, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2539, \"image\": \"COCO_val2014_000000415727.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2540, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2541, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2542, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2543, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 2544, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2545, \"image\": \"COCO_val2014_000000222118.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 2546, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2547, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2548, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2549, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2550, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2551, \"image\": \"COCO_val2014_000000514292.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2552, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2553, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2554, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2555, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 2556, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2557, \"image\": \"COCO_val2014_000000117527.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2558, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2559, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2560, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2561, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2562, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2563, \"image\": \"COCO_val2014_000000016451.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2564, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2565, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2566, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2567, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2568, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2569, \"image\": \"COCO_val2014_000000429706.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"no\"}\n{\"question_id\": 2570, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2571, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 2572, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2573, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 2574, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2575, \"image\": \"COCO_val2014_000000429580.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2576, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2577, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2578, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2579, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a microwave in the image?\", \"label\": \"no\"}\n{\"question_id\": 2580, \"image\": \"COCO_val2014_000000283168.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2581, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2582, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2583, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2584, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2585, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2586, \"image\": \"COCO_val2014_000000405205.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2587, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2588, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"no\"}\n{\"question_id\": 2589, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2590, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a book in the image?\", \"label\": \"no\"}\n{\"question_id\": 2591, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2592, \"image\": \"COCO_val2014_000000123570.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 2593, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2594, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 2595, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2596, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2597, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2598, \"image\": \"COCO_val2014_000000365317.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2599, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2600, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2601, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2602, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 2603, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2604, \"image\": \"COCO_val2014_000000224155.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 2605, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2606, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2607, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2608, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2609, \"image\": \"COCO_val2014_000000191964.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2610, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2611, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2612, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2613, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a kite in the image?\", \"label\": \"no\"}\n{\"question_id\": 2614, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2615, \"image\": \"COCO_val2014_000000265472.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2616, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a snowboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2617, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 2618, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2619, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2620, \"image\": \"COCO_val2014_000000550514.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2621, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2622, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 2623, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2624, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2625, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2626, \"image\": \"COCO_val2014_000000163814.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2627, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2628, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2629, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2630, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a frisbee in the image?\", \"label\": \"no\"}\n{\"question_id\": 2631, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2632, \"image\": \"COCO_val2014_000000505933.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2633, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2634, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 2635, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2636, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 2637, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2638, \"image\": \"COCO_val2014_000000318550.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2639, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2640, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 2641, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2642, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2643, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2644, \"image\": \"COCO_val2014_000000367528.jpg\", \"text\": \"Is there a teddy bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2645, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2646, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 2647, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2648, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2649, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2650, \"image\": \"COCO_val2014_000000252911.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 2651, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2652, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 2653, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2654, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"no\"}\n{\"question_id\": 2655, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2656, \"image\": \"COCO_val2014_000000214421.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 2657, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2658, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2659, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2660, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"no\"}\n{\"question_id\": 2661, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2662, \"image\": \"COCO_val2014_000000050627.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2663, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2664, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2665, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2666, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2667, \"image\": \"COCO_val2014_000000233426.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2668, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2669, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there an oven in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2670, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2671, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 2672, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2673, \"image\": \"COCO_val2014_000000372817.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2674, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2675, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2676, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2677, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2678, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2679, \"image\": \"COCO_val2014_000000536073.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2680, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2681, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 2682, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2683, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2684, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a baseball bat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2685, \"image\": \"COCO_val2014_000000579231.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2686, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2687, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2688, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2689, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"no\"}\n{\"question_id\": 2690, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a zebra in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2691, \"image\": \"COCO_val2014_000000092624.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"no\"}\n{\"question_id\": 2692, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2693, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2694, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2695, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 2696, \"image\": \"COCO_val2014_000000390184.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2697, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2698, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a parking meter in the image?\", \"label\": \"no\"}\n{\"question_id\": 2699, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2700, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2701, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2702, \"image\": \"COCO_val2014_000000079213.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 2703, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2704, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2705, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2706, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2707, \"image\": \"COCO_val2014_000000465346.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2708, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2709, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"no\"}\n{\"question_id\": 2710, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2711, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"no\"}\n{\"question_id\": 2712, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a horse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2713, \"image\": \"COCO_val2014_000000514248.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 2714, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2715, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2716, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2717, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 2718, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2719, \"image\": \"COCO_val2014_000000355776.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"no\"}\n{\"question_id\": 2720, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2721, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2722, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a bench in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2723, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2724, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2725, \"image\": \"COCO_val2014_000000575355.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"no\"}\n{\"question_id\": 2726, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2727, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2728, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2729, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 2730, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2731, \"image\": \"COCO_val2014_000000396068.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"no\"}\n{\"question_id\": 2732, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2733, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 2734, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2735, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 2736, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2737, \"image\": \"COCO_val2014_000000559547.jpg\", \"text\": \"Is there an elephant in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2738, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2739, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 2740, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2741, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2742, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2743, \"image\": \"COCO_val2014_000000230175.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"no\"}\n{\"question_id\": 2744, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2745, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2746, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2747, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2748, \"image\": \"COCO_val2014_000000159969.jpg\", \"text\": \"Is there a wine glass in the image?\", \"label\": \"no\"}\n{\"question_id\": 2749, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2750, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2751, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2752, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2753, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2754, \"image\": \"COCO_val2014_000000399702.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 2755, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2756, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 2757, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2758, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2759, \"image\": \"COCO_val2014_000000555538.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2760, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2761, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a toaster in the image?\", \"label\": \"no\"}\n{\"question_id\": 2762, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2763, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a donut in the image?\", \"label\": \"no\"}\n{\"question_id\": 2764, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2765, \"image\": \"COCO_val2014_000000264155.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2766, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2767, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a sink in the image?\", \"label\": \"no\"}\n{\"question_id\": 2768, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2769, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2770, \"image\": \"COCO_val2014_000000125572.jpg\", \"text\": \"Is there a scissors in the image?\", \"label\": \"no\"}\n{\"question_id\": 2771, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2772, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 2773, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2774, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2775, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2776, \"image\": \"COCO_val2014_000000560744.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2777, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2778, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a hot dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2779, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2780, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a traffic light in the image?\", \"label\": \"no\"}\n{\"question_id\": 2781, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2782, \"image\": \"COCO_val2014_000000045685.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2783, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2784, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2785, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2786, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 2787, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2788, \"image\": \"COCO_val2014_000000434179.jpg\", \"text\": \"Is there an apple in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2789, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2790, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a stop sign in the image?\", \"label\": \"no\"}\n{\"question_id\": 2791, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a cup in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2792, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"no\"}\n{\"question_id\": 2793, \"image\": \"COCO_val2014_000000008749.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2794, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2795, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2796, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2797, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2798, \"image\": \"COCO_val2014_000000069863.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"no\"}\n{\"question_id\": 2799, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a backpack in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2800, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2801, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2802, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2803, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2804, \"image\": \"COCO_val2014_000000041180.jpg\", \"text\": \"Is there a boat in the image?\", \"label\": \"no\"}\n{\"question_id\": 2805, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2806, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a sandwich in the image?\", \"label\": \"no\"}\n{\"question_id\": 2807, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2808, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a toilet in the image?\", \"label\": \"no\"}\n{\"question_id\": 2809, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2810, \"image\": \"COCO_val2014_000000429913.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2811, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2812, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 2813, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2814, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"no\"}\n{\"question_id\": 2815, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2816, \"image\": \"COCO_val2014_000000554002.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2817, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2818, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2819, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a mouse in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2820, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a cow in the image?\", \"label\": \"no\"}\n{\"question_id\": 2821, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2822, \"image\": \"COCO_val2014_000000141278.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 2823, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2824, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2825, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2826, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a knife in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2827, \"image\": \"COCO_val2014_000000190788.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 2828, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a bed in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2829, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2830, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a cat in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2831, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2832, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2833, \"image\": \"COCO_val2014_000000534942.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2834, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2835, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"no\"}\n{\"question_id\": 2836, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a dining table in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2837, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a banana in the image?\", \"label\": \"no\"}\n{\"question_id\": 2838, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2839, \"image\": \"COCO_val2014_000000377951.jpg\", \"text\": \"Is there a car in the image?\", \"label\": \"no\"}\n{\"question_id\": 2840, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2841, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"no\"}\n{\"question_id\": 2842, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2843, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"no\"}\n{\"question_id\": 2844, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there an airplane in the imange?\", \"label\": \"yes\"}\n{\"question_id\": 2845, \"image\": \"COCO_val2014_000000533201.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"no\"}\n{\"question_id\": 2846, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2847, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"no\"}\n{\"question_id\": 2848, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2849, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a truck in the image?\", \"label\": \"no\"}\n{\"question_id\": 2850, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a remote in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2851, \"image\": \"COCO_val2014_000000235203.jpg\", \"text\": \"Is there a surfboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2852, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a baseball glove in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2853, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a skateboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2854, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2855, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 2856, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2857, \"image\": \"COCO_val2014_000000468997.jpg\", \"text\": \"Is there a bird in the image?\", \"label\": \"no\"}\n{\"question_id\": 2858, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2859, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a cake in the image?\", \"label\": \"no\"}\n{\"question_id\": 2860, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2861, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a bicycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2862, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a vase in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2863, \"image\": \"COCO_val2014_000000401398.jpg\", \"text\": \"Is there a keyboard in the image?\", \"label\": \"no\"}\n{\"question_id\": 2864, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2865, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there an umbrella in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2866, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2867, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n{\"question_id\": 2868, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2869, \"image\": \"COCO_val2014_000000323752.jpg\", \"text\": \"Is there a skis in the image?\", \"label\": \"no\"}\n{\"question_id\": 2870, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2871, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a potted plant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2872, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2873, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a fire hydrant in the image?\", \"label\": \"no\"}\n{\"question_id\": 2874, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a fork in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2875, \"image\": \"COCO_val2014_000000003845.jpg\", \"text\": \"Is there a bear in the image?\", \"label\": \"no\"}\n{\"question_id\": 2876, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a pizza in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2877, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a carrot in the image?\", \"label\": \"no\"}\n{\"question_id\": 2878, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2879, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2880, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a cell phone in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2881, \"image\": \"COCO_val2014_000000122962.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 2882, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2883, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a suitcase in the image?\", \"label\": \"no\"}\n{\"question_id\": 2884, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a sports ball in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2885, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there an orange in the imange?\", \"label\": \"no\"}\n{\"question_id\": 2886, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2887, \"image\": \"COCO_val2014_000000015738.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2888, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2889, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a tennis racket in the image?\", \"label\": \"no\"}\n{\"question_id\": 2890, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2891, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a train in the image?\", \"label\": \"no\"}\n{\"question_id\": 2892, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a laptop in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2893, \"image\": \"COCO_val2014_000000497599.jpg\", \"text\": \"Is there a dog in the image?\", \"label\": \"no\"}\n{\"question_id\": 2894, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a chair in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2895, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a refrigerator in the image?\", \"label\": \"no\"}\n{\"question_id\": 2896, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2897, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a giraffe in the image?\", \"label\": \"no\"}\n{\"question_id\": 2898, \"image\": \"COCO_val2014_000000121959.jpg\", \"text\": \"Is there a handbag in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2899, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2900, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a motorcycle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2901, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a broccoli in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2902, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a clock in the image?\", \"label\": \"no\"}\n{\"question_id\": 2903, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a spoon in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2904, \"image\": \"COCO_val2014_000000361430.jpg\", \"text\": \"Is there a bottle in the image?\", \"label\": \"no\"}\n{\"question_id\": 2905, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a tv in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2906, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a tie in the image?\", \"label\": \"no\"}\n{\"question_id\": 2907, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a bowl in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2908, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a person in the image?\", \"label\": \"no\"}\n{\"question_id\": 2909, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a couch in the image?\", \"label\": \"yes\"}\n{\"question_id\": 2910, \"image\": \"COCO_val2014_000000277289.jpg\", \"text\": \"Is there a bus in the image?\", \"label\": \"no\"}\n"
  },
  {
    "path": "model/univi/eval/questions/scienceqa/pid_splits.json",
    "content": "{\n  \"train\": [\n    \"1\",\n    \"2\",\n    \"3\",\n    \"9\",\n    \"10\",\n    \"12\",\n    \"17\",\n    \"19\",\n    \"20\",\n    \"21\",\n    \"24\",\n    \"25\",\n    \"30\",\n    \"31\",\n    \"32\",\n    \"33\",\n    \"34\",\n    \"35\",\n    \"37\",\n    \"38\",\n    \"39\",\n    \"40\",\n    \"41\",\n    \"43\",\n    \"44\",\n    \"48\",\n    \"49\",\n    \"53\",\n    \"54\",\n    \"56\",\n    \"57\",\n    \"58\",\n    \"59\",\n    \"63\",\n    \"64\",\n    \"65\",\n    \"68\",\n    \"69\",\n    \"70\",\n    \"73\",\n    \"75\",\n    \"76\",\n    \"80\",\n    \"83\",\n    \"84\",\n    \"88\",\n    \"90\",\n    \"91\",\n    \"94\",\n    \"97\",\n    \"98\",\n    \"99\",\n    \"100\",\n    \"102\",\n    \"103\",\n    \"104\",\n    \"105\",\n    \"107\",\n    \"108\",\n    \"109\",\n    \"110\",\n    \"112\",\n    \"114\",\n    \"115\",\n    \"116\",\n    \"117\",\n    \"119\",\n    \"120\",\n    \"123\",\n    \"125\",\n    \"129\",\n    \"130\",\n    \"131\",\n    \"132\",\n    \"134\",\n    \"135\",\n    \"136\",\n    \"137\",\n    \"138\",\n    \"141\",\n    \"143\",\n    \"144\",\n    \"146\",\n    \"151\",\n    \"152\",\n    \"154\",\n    \"157\",\n    \"159\",\n    \"162\",\n    \"166\",\n    \"168\",\n    \"171\",\n    \"174\",\n    \"175\",\n    \"177\",\n    \"179\",\n    \"181\",\n    \"185\",\n    \"186\",\n    \"187\",\n    \"189\",\n    \"190\",\n    \"191\",\n    \"192\",\n    \"194\",\n    \"195\",\n    \"197\",\n    \"199\",\n    \"200\",\n    \"201\",\n    \"202\",\n    \"203\",\n    \"204\",\n    \"205\",\n    \"207\",\n    \"208\",\n    \"211\",\n    \"212\",\n    \"215\",\n    \"216\",\n    \"217\",\n    \"218\",\n    \"219\",\n    \"220\",\n    \"222\",\n    \"223\",\n    \"224\",\n    \"225\",\n    \"226\",\n    \"228\",\n    \"229\",\n    \"233\",\n    \"235\",\n    \"236\",\n    \"238\",\n    \"239\",\n    \"242\",\n    \"243\",\n    \"244\",\n    \"245\",\n    \"246\",\n    \"248\",\n    \"250\",\n    \"251\",\n    \"252\",\n    \"253\",\n    \"255\",\n    \"259\",\n    \"260\",\n    \"261\",\n    \"264\",\n    \"267\",\n    \"268\",\n    \"270\",\n    \"276\",\n    \"277\",\n    \"279\",\n    \"283\",\n    \"285\",\n    \"287\",\n    \"289\",\n    \"291\",\n    \"294\",\n    \"295\",\n    \"296\",\n    \"297\",\n    \"300\",\n    \"303\",\n    \"304\",\n    \"306\",\n    \"307\",\n    \"308\",\n    \"310\",\n    \"311\",\n    \"312\",\n    \"313\",\n    \"314\",\n    \"316\",\n    \"318\",\n    \"320\",\n    \"321\",\n    \"322\",\n    \"327\",\n    \"328\",\n    \"329\",\n    \"331\",\n    \"334\",\n    \"335\",\n    \"336\",\n    \"339\",\n    \"341\",\n    \"344\",\n    \"346\",\n    \"347\",\n    \"349\",\n    \"350\",\n    \"351\",\n    \"352\",\n    \"353\",\n    \"354\",\n    \"355\",\n    \"359\",\n    \"362\",\n    \"364\",\n    \"365\",\n    \"368\",\n    \"369\",\n    \"370\",\n    \"372\",\n    \"373\",\n    \"375\",\n    \"377\",\n    \"378\",\n    \"379\",\n    \"380\",\n    \"381\",\n    \"382\",\n    \"385\",\n    \"386\",\n    \"388\",\n    \"390\",\n    \"391\",\n    \"395\",\n    \"396\",\n    \"397\",\n    \"398\",\n    \"400\",\n    \"401\",\n    \"403\",\n    \"405\",\n    \"407\",\n    \"408\",\n    \"409\",\n    \"410\",\n    \"411\",\n    \"412\",\n    \"413\",\n    \"414\",\n    \"417\",\n    \"419\",\n    \"423\",\n    \"424\",\n    \"425\",\n    \"428\",\n    \"429\",\n    \"430\",\n    \"432\",\n    \"434\",\n    \"435\",\n    \"436\",\n    \"437\",\n    \"438\",\n    \"439\",\n    \"441\",\n    \"442\",\n    \"443\",\n    \"444\",\n    \"446\",\n    \"447\",\n    \"448\",\n    \"450\",\n    \"451\",\n    \"452\",\n    \"454\",\n    \"458\",\n    \"459\",\n    \"461\",\n    \"462\",\n    \"463\",\n    \"464\",\n    \"465\",\n    \"468\",\n    \"471\",\n    \"473\",\n    \"474\",\n    \"476\",\n    \"477\",\n    \"478\",\n    \"479\",\n    \"480\",\n    \"482\",\n    \"484\",\n    \"485\",\n    \"487\",\n    \"488\",\n    \"489\",\n    \"490\",\n    \"491\",\n    \"492\",\n    \"493\",\n    \"494\",\n    \"495\",\n    \"496\",\n    \"498\",\n    \"499\",\n    \"500\",\n    \"501\",\n    \"503\",\n    \"504\",\n    \"506\",\n    \"507\",\n    \"508\",\n    \"510\",\n    \"511\",\n    \"516\",\n    \"518\",\n    \"520\",\n    \"521\",\n    \"523\",\n    \"524\",\n    \"525\",\n    \"526\",\n    \"527\",\n    \"528\",\n    \"530\",\n    \"531\",\n    \"535\",\n    \"537\",\n    \"538\",\n    \"540\",\n    \"542\",\n    \"545\",\n    \"546\",\n    \"548\",\n    \"549\",\n    \"551\",\n    \"553\",\n    \"555\",\n    \"556\",\n    \"558\",\n    \"559\",\n    \"561\",\n    \"562\",\n    \"563\",\n    \"564\",\n    \"565\",\n    \"566\",\n    \"567\",\n    \"568\",\n    \"569\",\n    \"572\",\n    \"574\",\n    \"575\",\n    \"578\",\n    \"579\",\n    \"581\",\n    \"583\",\n    \"585\",\n    \"587\",\n    \"588\",\n    \"589\",\n    \"594\",\n    \"596\",\n    \"599\",\n    \"601\",\n    \"602\",\n    \"604\",\n    \"607\",\n    \"609\",\n    \"611\",\n    \"613\",\n    \"615\",\n    \"619\",\n    \"620\",\n    \"624\",\n    \"625\",\n    \"628\",\n    \"629\",\n    \"630\",\n    \"631\",\n    \"633\",\n    \"634\",\n    \"635\",\n    \"636\",\n    \"637\",\n    \"638\",\n    \"639\",\n    \"642\",\n    \"643\",\n    \"644\",\n    \"646\",\n    \"648\",\n    \"649\",\n    \"650\",\n    \"651\",\n    \"652\",\n    \"653\",\n    \"654\",\n    \"655\",\n    \"657\",\n    \"658\",\n    \"659\",\n    \"660\",\n    \"663\",\n    \"665\",\n    \"668\",\n    \"669\",\n    \"672\",\n    \"673\",\n    \"675\",\n    \"676\",\n    \"677\",\n    \"678\",\n    \"679\",\n    \"680\",\n    \"681\",\n    \"683\",\n    \"684\",\n    \"685\",\n    \"688\",\n    \"692\",\n    \"695\",\n    \"696\",\n    \"697\",\n    \"699\",\n    \"701\",\n    \"702\",\n    \"703\",\n    \"705\",\n    \"706\",\n    \"707\",\n    \"708\",\n    \"709\",\n    \"710\",\n    \"712\",\n    \"713\",\n    \"714\",\n    \"715\",\n    \"717\",\n    \"718\",\n    \"719\",\n    \"720\",\n    \"723\",\n    \"726\",\n    \"728\",\n    \"729\",\n    \"731\",\n    \"732\",\n    \"733\",\n    \"735\",\n    \"736\",\n    \"742\",\n    \"743\",\n    \"746\",\n    \"747\",\n    \"748\",\n    \"749\",\n    \"753\",\n    \"755\",\n    \"756\",\n    \"762\",\n    \"766\",\n    \"768\",\n    \"770\",\n    \"772\",\n    \"773\",\n    \"774\",\n    \"775\",\n    \"777\",\n    \"778\",\n    \"783\",\n    \"784\",\n    \"787\",\n    \"789\",\n    \"791\",\n    \"792\",\n    \"793\",\n    \"794\",\n    \"796\",\n    \"797\",\n    \"798\",\n    \"799\",\n    \"800\",\n    \"801\",\n    \"802\",\n    \"804\",\n    \"805\",\n    \"806\",\n    \"807\",\n    \"808\",\n    \"810\",\n    \"811\",\n    \"812\",\n    \"817\",\n    \"819\",\n    \"820\",\n    \"822\",\n    \"823\",\n    \"826\",\n    \"830\",\n    \"831\",\n    \"832\",\n    \"833\",\n    \"835\",\n    \"836\",\n    \"842\",\n    \"844\",\n    \"848\",\n    \"850\",\n    \"852\",\n    \"853\",\n    \"854\",\n    \"857\",\n    \"858\",\n    \"860\",\n    \"861\",\n    \"862\",\n    \"866\",\n    \"869\",\n    \"870\",\n    \"872\",\n    \"874\",\n    \"875\",\n    \"876\",\n    \"877\",\n    \"881\",\n    \"882\",\n    \"883\",\n    \"884\",\n    \"887\",\n    \"889\",\n    \"890\",\n    \"892\",\n    \"893\",\n    \"894\",\n    \"895\",\n    \"897\",\n    \"899\",\n    \"902\",\n    \"903\",\n    \"906\",\n    \"907\",\n    \"910\",\n    \"915\",\n    \"922\",\n    \"925\",\n    \"928\",\n    \"929\",\n    \"930\",\n    \"931\",\n    \"933\",\n    \"935\",\n    \"937\",\n    \"938\",\n    \"939\",\n    \"942\",\n    \"943\",\n    \"944\",\n    \"946\",\n    \"948\",\n    \"949\",\n    \"950\",\n    \"954\",\n    \"955\",\n    \"956\",\n    \"959\",\n    \"960\",\n    \"961\",\n    \"965\",\n    \"966\",\n    \"968\",\n    \"969\",\n    \"972\",\n    \"974\",\n    \"975\",\n    \"976\",\n    \"977\",\n    \"978\",\n    \"980\",\n    \"981\",\n    \"983\",\n    \"985\",\n    \"986\",\n    \"987\",\n    \"988\",\n    \"989\",\n    \"990\",\n    \"996\",\n    \"997\",\n    \"998\",\n    \"999\",\n    \"1000\",\n    \"1001\",\n    \"1003\",\n    \"1006\",\n    \"1007\",\n    \"1008\",\n    \"1011\",\n    \"1012\",\n    \"1015\",\n    \"1016\",\n    \"1017\",\n    \"1018\",\n    \"1019\",\n    \"1020\",\n    \"1021\",\n    \"1022\",\n    \"1023\",\n    \"1024\",\n    \"1025\",\n    \"1026\",\n    \"1027\",\n    \"1028\",\n    \"1030\",\n    \"1031\",\n    \"1032\",\n    \"1034\",\n    \"1035\",\n    \"1038\",\n    \"1039\",\n    \"1042\",\n    \"1045\",\n    \"1047\",\n    \"1048\",\n    \"1052\",\n    \"1053\",\n    \"1054\",\n    \"1055\",\n    \"1058\",\n    \"1060\",\n    \"1061\",\n    \"1062\",\n    \"1063\",\n    \"1066\",\n    \"1067\",\n    \"1068\",\n    \"1069\",\n    \"1070\",\n    \"1072\",\n    \"1074\",\n    \"1075\",\n    \"1076\",\n    \"1078\",\n    \"1080\",\n    \"1081\",\n    \"1084\",\n    \"1085\",\n    \"1086\",\n    \"1090\",\n    \"1091\",\n    \"1092\",\n    \"1094\",\n    \"1096\",\n    \"1097\",\n    \"1099\",\n    \"1101\",\n    \"1104\",\n    \"1105\",\n    \"1106\",\n    \"1107\",\n    \"1108\",\n    \"1109\",\n    \"1111\",\n    \"1112\",\n    \"1115\",\n    \"1116\",\n    \"1117\",\n    \"1118\",\n    \"1119\",\n    \"1120\",\n    \"1121\",\n    \"1122\",\n    \"1125\",\n    \"1126\",\n    \"1127\",\n    \"1129\",\n    \"1130\",\n    \"1132\",\n    \"1133\",\n    \"1138\",\n    \"1140\",\n    \"1141\",\n    \"1142\",\n    \"1143\",\n    \"1144\",\n    \"1146\",\n    \"1147\",\n    \"1148\",\n    \"1150\",\n    \"1151\",\n    \"1154\",\n    \"1155\",\n    \"1156\",\n    \"1157\",\n    \"1158\",\n    \"1160\",\n    \"1161\",\n    \"1163\",\n    \"1164\",\n    \"1166\",\n    \"1167\",\n    \"1168\",\n    \"1169\",\n    \"1171\",\n    \"1172\",\n    \"1173\",\n    \"1175\",\n    \"1176\",\n    \"1178\",\n    \"1180\",\n    \"1183\",\n    \"1184\",\n    \"1185\",\n    \"1186\",\n    \"1187\",\n    \"1188\",\n    \"1190\",\n    \"1192\",\n    \"1193\",\n    \"1194\",\n    \"1197\",\n    \"1199\",\n    \"1200\",\n    \"1202\",\n    \"1204\",\n    \"1205\",\n    \"1207\",\n    \"1209\",\n    \"1210\",\n    \"1214\",\n    \"1217\",\n    \"1218\",\n    \"1220\",\n    \"1225\",\n    \"1227\",\n    \"1229\",\n    \"1236\",\n    \"1238\",\n    \"1239\",\n    \"1240\",\n    \"1243\",\n    \"1245\",\n    \"1248\",\n    \"1249\",\n    \"1258\",\n    \"1260\",\n    \"1261\",\n    \"1262\",\n    \"1263\",\n    \"1267\",\n    \"1270\",\n    \"1272\",\n    \"1273\",\n    \"1275\",\n    \"1276\",\n    \"1278\",\n    \"1279\",\n    \"1285\",\n    \"1287\",\n    \"1288\",\n    \"1291\",\n    \"1292\",\n    \"1293\",\n    \"1294\",\n    \"1296\",\n    \"1297\",\n    \"1298\",\n    \"1303\",\n    \"1305\",\n    \"1306\",\n    \"1311\",\n    \"1312\",\n    \"1313\",\n    \"1316\",\n    \"1318\",\n    \"1319\",\n    \"1322\",\n    \"1323\",\n    \"1324\",\n    \"1328\",\n    \"1329\",\n    \"1331\",\n    \"1333\",\n    \"1334\",\n    \"1335\",\n    \"1336\",\n    \"1337\",\n    \"1341\",\n    \"1343\",\n    \"1344\",\n    \"1345\",\n    \"1346\",\n    \"1347\",\n    \"1348\",\n    \"1349\",\n    \"1350\",\n    \"1351\",\n    \"1352\",\n    \"1354\",\n    \"1358\",\n    \"1362\",\n    \"1363\",\n    \"1366\",\n    \"1367\",\n    \"1368\",\n    \"1369\",\n    \"1371\",\n    \"1372\",\n    \"1374\",\n    \"1375\",\n    \"1376\",\n    \"1379\",\n    \"1380\",\n    \"1383\",\n    \"1384\",\n    \"1385\",\n    \"1388\",\n    \"1390\",\n    \"1391\",\n    \"1393\",\n    \"1398\",\n    \"1399\",\n    \"1401\",\n    \"1402\",\n    \"1403\",\n    \"1406\",\n    \"1407\",\n    \"1409\",\n    \"1410\",\n    \"1413\",\n    \"1415\",\n    \"1416\",\n    \"1419\",\n    \"1420\",\n    \"1423\",\n    \"1424\",\n    \"1425\",\n    \"1426\",\n    \"1427\",\n    \"1428\",\n    \"1429\",\n    \"1430\",\n    \"1432\",\n    \"1434\",\n    \"1435\",\n    \"1436\",\n    \"1437\",\n    \"1438\",\n    \"1439\",\n    \"1440\",\n    \"1442\",\n    \"1443\",\n    \"1444\",\n    \"1446\",\n    \"1447\",\n    \"1448\",\n    \"1450\",\n    \"1451\",\n    \"1452\",\n    \"1453\",\n    \"1455\",\n    \"1456\",\n    \"1458\",\n    \"1459\",\n    \"1460\",\n    \"1461\",\n    \"1462\",\n    \"1464\",\n    \"1465\",\n    \"1466\",\n    \"1467\",\n    \"1470\",\n    \"1471\",\n    \"1472\",\n    \"1474\",\n    \"1475\",\n    \"1476\",\n    \"1478\",\n    \"1479\",\n    \"1480\",\n    \"1481\",\n    \"1482\",\n    \"1483\",\n    \"1484\",\n    \"1485\",\n    \"1486\",\n    \"1488\",\n    \"1492\",\n    \"1493\",\n    \"1495\",\n    \"1496\",\n    \"1499\",\n    \"1500\",\n    \"1502\",\n    \"1504\",\n    \"1506\",\n    \"1507\",\n    \"1508\",\n    \"1509\",\n    \"1510\",\n    \"1511\",\n    \"1513\",\n    \"1516\",\n    \"1517\",\n    \"1519\",\n    \"1521\",\n    \"1524\",\n    \"1527\",\n    \"1528\",\n    \"1530\",\n    \"1535\",\n    \"1536\",\n    \"1537\",\n    \"1538\",\n    \"1539\",\n    \"1541\",\n    \"1542\",\n    \"1545\",\n    \"1546\",\n    \"1547\",\n    \"1548\",\n    \"1549\",\n    \"1552\",\n    \"1553\",\n    \"1554\",\n    \"1555\",\n    \"1556\",\n    \"1557\",\n    \"1559\",\n    \"1560\",\n    \"1561\",\n    \"1563\",\n    \"1564\",\n    \"1565\",\n    \"1566\",\n    \"1567\",\n    \"1568\",\n    \"1570\",\n    \"1573\",\n    \"1576\",\n    \"1577\",\n    \"1578\",\n    \"1579\",\n    \"1581\",\n    \"1583\",\n    \"1588\",\n    \"1589\",\n    \"1591\",\n    \"1593\",\n    \"1594\",\n    \"1595\",\n    \"1596\",\n    \"1597\",\n    \"1600\",\n    \"1601\",\n    \"1603\",\n    \"1604\",\n    \"1607\",\n    \"1609\",\n    \"1610\",\n    \"1611\",\n    \"1613\",\n    \"1614\",\n    \"1617\",\n    \"1619\",\n    \"1620\",\n    \"1622\",\n    \"1624\",\n    \"1625\",\n    \"1627\",\n    \"1629\",\n    \"1630\",\n    \"1631\",\n    \"1634\",\n    \"1635\",\n    \"1636\",\n    \"1641\",\n    \"1642\",\n    \"1643\",\n    \"1645\",\n    \"1646\",\n    \"1647\",\n    \"1648\",\n    \"1649\",\n    \"1651\",\n    \"1653\",\n    \"1655\",\n    \"1656\",\n    \"1657\",\n    \"1658\",\n    \"1659\",\n    \"1660\",\n    \"1661\",\n    \"1663\",\n    \"1666\",\n    \"1668\",\n    \"1671\",\n    \"1673\",\n    \"1680\",\n    \"1683\",\n    \"1685\",\n    \"1686\",\n    \"1687\",\n    \"1690\",\n    \"1694\",\n    \"1695\",\n    \"1697\",\n    \"1698\",\n    \"1699\",\n    \"1700\",\n    \"1704\",\n    \"1706\",\n    \"1707\",\n    \"1709\",\n    \"1711\",\n    \"1712\",\n    \"1715\",\n    \"1718\",\n    \"1720\",\n    \"1722\",\n    \"1724\",\n    \"1725\",\n    \"1727\",\n    \"1730\",\n    \"1731\",\n    \"1732\",\n    \"1733\",\n    \"1734\",\n    \"1736\",\n    \"1737\",\n    \"1739\",\n    \"1740\",\n    \"1741\",\n    \"1742\",\n    \"1743\",\n    \"1744\",\n    \"1745\",\n    \"1746\",\n    \"1747\",\n    \"1748\",\n    \"1749\",\n    \"1753\",\n    \"1754\",\n    \"1755\",\n    \"1756\",\n    \"1758\",\n    \"1761\",\n    \"1763\",\n    \"1766\",\n    \"1768\",\n    \"1771\",\n    \"1775\",\n    \"1776\",\n    \"1778\",\n    \"1780\",\n    \"1782\",\n    \"1785\",\n    \"1786\",\n    \"1787\",\n    \"1788\",\n    \"1790\",\n    \"1791\",\n    \"1793\",\n    \"1795\",\n    \"1796\",\n    \"1797\",\n    \"1798\",\n    \"1799\",\n    \"1800\",\n    \"1802\",\n    \"1804\",\n    \"1806\",\n    \"1808\",\n    \"1809\",\n    \"1810\",\n    \"1811\",\n    \"1813\",\n    \"1814\",\n    \"1817\",\n    \"1818\",\n    \"1819\",\n    \"1820\",\n    \"1821\",\n    \"1823\",\n    \"1824\",\n    \"1825\",\n    \"1826\",\n    \"1828\",\n    \"1830\",\n    \"1831\",\n    \"1832\",\n    \"1833\",\n    \"1834\",\n    \"1835\",\n    \"1836\",\n    \"1837\",\n    \"1839\",\n    \"1840\",\n    \"1841\",\n    \"1842\",\n    \"1843\",\n    \"1845\",\n    \"1846\",\n    \"1847\",\n    \"1849\",\n    \"1851\",\n    \"1852\",\n    \"1853\",\n    \"1854\",\n    \"1860\",\n    \"1861\",\n    \"1862\",\n    \"1863\",\n    \"1864\",\n    \"1865\",\n    \"1867\",\n    \"1868\",\n    \"1869\",\n    \"1871\",\n    \"1873\",\n    \"1877\",\n    \"1882\",\n    \"1884\",\n    \"1885\",\n    \"1886\",\n    \"1887\",\n    \"1890\",\n    \"1892\",\n    \"1893\",\n    \"1895\",\n    \"1896\",\n    \"1897\",\n    \"1898\",\n    \"1899\",\n    \"1901\",\n    \"1902\",\n    \"1903\",\n    \"1904\",\n    \"1905\",\n    \"1909\",\n    \"1910\",\n    \"1912\",\n    \"1913\",\n    \"1915\",\n    \"1917\",\n    \"1918\",\n    \"1919\",\n    \"1920\",\n    \"1922\",\n    \"1924\",\n    \"1927\",\n    \"1928\",\n    \"1929\",\n    \"1930\",\n    \"1931\",\n    \"1932\",\n    \"1933\",\n    \"1937\",\n    \"1942\",\n    \"1943\",\n    \"1945\",\n    \"1946\",\n    \"1947\",\n    \"1953\",\n    \"1958\",\n    \"1959\",\n    \"1960\",\n    \"1961\",\n    \"1962\",\n    \"1963\",\n    \"1964\",\n    \"1965\",\n    \"1966\",\n    \"1967\",\n    \"1970\",\n    \"1971\",\n    \"1972\",\n    \"1978\",\n    \"1980\",\n    \"1981\",\n    \"1982\",\n    \"1987\",\n    \"1988\",\n    \"1989\",\n    \"1992\",\n    \"1993\",\n    \"1994\",\n    \"1995\",\n    \"1996\",\n    \"1998\",\n    \"2000\",\n    \"2001\",\n    \"2002\",\n    \"2003\",\n    \"2004\",\n    \"2008\",\n    \"2010\",\n    \"2011\",\n    \"2012\",\n    \"2013\",\n    \"2014\",\n    \"2016\",\n    \"2017\",\n    \"2020\",\n    \"2021\",\n    \"2022\",\n    \"2023\",\n    \"2024\",\n    \"2025\",\n    \"2026\",\n    \"2027\",\n    \"2029\",\n    \"2030\",\n    \"2032\",\n    \"2033\",\n    \"2034\",\n    \"2035\",\n    \"2039\",\n    \"2040\",\n    \"2042\",\n    \"2043\",\n    \"2044\",\n    \"2046\",\n    \"2047\",\n    \"2048\",\n    \"2049\",\n    \"2050\",\n    \"2052\",\n    \"2053\",\n    \"2054\",\n    \"2057\",\n    \"2058\",\n    \"2062\",\n    \"2063\",\n    \"2065\",\n    \"2066\",\n    \"2067\",\n    \"2068\",\n    \"2069\",\n    \"2072\",\n    \"2075\",\n    \"2076\",\n    \"2077\",\n    \"2079\",\n    \"2080\",\n    \"2084\",\n    \"2085\",\n    \"2086\",\n    \"2087\",\n    \"2089\",\n    \"2090\",\n    \"2091\",\n    \"2092\",\n    \"2093\",\n    \"2094\",\n    \"2097\",\n    \"2099\",\n    \"2100\",\n    \"2101\",\n    \"2103\",\n    \"2104\",\n    \"2105\",\n    \"2106\",\n    \"2111\",\n    \"2112\",\n    \"2113\",\n    \"2114\",\n    \"2116\",\n    \"2117\",\n    \"2119\",\n    \"2120\",\n    \"2121\",\n    \"2123\",\n    \"2124\",\n    \"2127\",\n    \"2128\",\n    \"2130\",\n    \"2132\",\n    \"2133\",\n    \"2135\",\n    \"2139\",\n    \"2140\",\n    \"2142\",\n    \"2143\",\n    \"2145\",\n    \"2146\",\n    \"2150\",\n    \"2151\",\n    \"2153\",\n    \"2154\",\n    \"2155\",\n    \"2156\",\n    \"2157\",\n    \"2159\",\n    \"2160\",\n    \"2161\",\n    \"2167\",\n    \"2168\",\n    \"2170\",\n    \"2171\",\n    \"2172\",\n    \"2177\",\n    \"2178\",\n    \"2179\",\n    \"2180\",\n    \"2181\",\n    \"2182\",\n    \"2190\",\n    \"2192\",\n    \"2195\",\n    \"2196\",\n    \"2197\",\n    \"2198\",\n    \"2201\",\n    \"2202\",\n    \"2204\",\n    \"2206\",\n    \"2207\",\n    \"2208\",\n    \"2211\",\n    \"2212\",\n    \"2213\",\n    \"2214\",\n    \"2215\",\n    \"2216\",\n    \"2217\",\n    \"2218\",\n    \"2219\",\n    \"2220\",\n    \"2225\",\n    \"2227\",\n    \"2228\",\n    \"2230\",\n    \"2231\",\n    \"2233\",\n    \"2234\",\n    \"2235\",\n    \"2236\",\n    \"2237\",\n    \"2240\",\n    \"2242\",\n    \"2243\",\n    \"2246\",\n    \"2247\",\n    \"2248\",\n    \"2250\",\n    \"2252\",\n    \"2253\",\n    \"2254\",\n    \"2257\",\n    \"2258\",\n    \"2261\",\n    \"2263\",\n    \"2264\",\n    \"2265\",\n    \"2266\",\n    \"2267\",\n    \"2268\",\n    \"2271\",\n    \"2273\",\n    \"2277\",\n    \"2278\",\n    \"2279\",\n    \"2280\",\n    \"2281\",\n    \"2283\",\n    \"2284\",\n    \"2285\",\n    \"2287\",\n    \"2288\",\n    \"2291\",\n    \"2293\",\n    \"2294\",\n    \"2296\",\n    \"2298\",\n    \"2299\",\n    \"2301\",\n    \"2302\",\n    \"2303\",\n    \"2304\",\n    \"2305\",\n    \"2306\",\n    \"2310\",\n    \"2313\",\n    \"2314\",\n    \"2316\",\n    \"2318\",\n    \"2319\",\n    \"2322\",\n    \"2323\",\n    \"2324\",\n    \"2329\",\n    \"2330\",\n    \"2331\",\n    \"2333\",\n    \"2335\",\n    \"2336\",\n    \"2337\",\n    \"2339\",\n    \"2341\",\n    \"2342\",\n    \"2344\",\n    \"2345\",\n    \"2346\",\n    \"2350\",\n    \"2351\",\n    \"2353\",\n    \"2354\",\n    \"2356\",\n    \"2357\",\n    \"2358\",\n    \"2361\",\n    \"2363\",\n    \"2365\",\n    \"2367\",\n    \"2371\",\n    \"2373\",\n    \"2374\",\n    \"2375\",\n    \"2378\",\n    \"2379\",\n    \"2385\",\n    \"2386\",\n    \"2387\",\n    \"2389\",\n    \"2390\",\n    \"2394\",\n    \"2396\",\n    \"2398\",\n    \"2403\",\n    \"2404\",\n    \"2405\",\n    \"2408\",\n    \"2409\",\n    \"2411\",\n    \"2412\",\n    \"2414\",\n    \"2416\",\n    \"2417\",\n    \"2419\",\n    \"2420\",\n    \"2421\",\n    \"2422\",\n    \"2424\",\n    \"2425\",\n    \"2426\",\n    \"2428\",\n    \"2431\",\n    \"2434\",\n    \"2435\",\n    \"2438\",\n    \"2439\",\n    \"2440\",\n    \"2441\",\n    \"2442\",\n    \"2444\",\n    \"2446\",\n    \"2448\",\n    \"2449\",\n    \"2450\",\n    \"2451\",\n    \"2453\",\n    \"2454\",\n    \"2455\",\n    \"2456\",\n    \"2457\",\n    \"2462\",\n    \"2463\",\n    \"2464\",\n    \"2466\",\n    \"2467\",\n    \"2468\",\n    \"2469\",\n    \"2470\",\n    \"2471\",\n    \"2472\",\n    \"2474\",\n    \"2476\",\n    \"2477\",\n    \"2478\",\n    \"2482\",\n    \"2483\",\n    \"2484\",\n    \"2485\",\n    \"2488\",\n    \"2490\",\n    \"2492\",\n    \"2495\",\n    \"2496\",\n    \"2497\",\n    \"2498\",\n    \"2503\",\n    \"2504\",\n    \"2505\",\n    \"2506\",\n    \"2507\",\n    \"2509\",\n    \"2511\",\n    \"2512\",\n    \"2514\",\n    \"2515\",\n    \"2516\",\n    \"2518\",\n    \"2519\",\n    \"2520\",\n    \"2521\",\n    \"2525\",\n    \"2526\",\n    \"2527\",\n    \"2528\",\n    \"2529\",\n    \"2530\",\n    \"2532\",\n    \"2533\",\n    \"2535\",\n    \"2536\",\n    \"2541\",\n    \"2545\",\n    \"2546\",\n    \"2549\",\n    \"2554\",\n    \"2555\",\n    \"2556\",\n    \"2557\",\n    \"2558\",\n    \"2559\",\n    \"2561\",\n    \"2562\",\n    \"2563\",\n    \"2564\",\n    \"2567\",\n    \"2568\",\n    \"2570\",\n    \"2571\",\n    \"2572\",\n    \"2573\",\n    \"2575\",\n    \"2576\",\n    \"2577\",\n    \"2578\",\n    \"2580\",\n    \"2581\",\n    \"2582\",\n    \"2583\",\n    \"2586\",\n    \"2590\",\n    \"2591\",\n    \"2593\",\n    \"2598\",\n    \"2599\",\n    \"2600\",\n    \"2601\",\n    \"2603\",\n    \"2605\",\n    \"2607\",\n    \"2608\",\n    \"2609\",\n    \"2610\",\n    \"2612\",\n    \"2613\",\n    \"2614\",\n    \"2615\",\n    \"2616\",\n    \"2617\",\n    \"2618\",\n    \"2619\",\n    \"2623\",\n    \"2625\",\n    \"2627\",\n    \"2628\",\n    \"2629\",\n    \"2630\",\n    \"2631\",\n    \"2633\",\n    \"2636\",\n    \"2637\",\n    \"2639\",\n    \"2640\",\n    \"2643\",\n    \"2645\",\n    \"2647\",\n    \"2648\",\n    \"2649\",\n    \"2650\",\n    \"2651\",\n    \"2654\",\n    \"2656\",\n    \"2658\",\n    \"2662\",\n    \"2663\",\n    \"2664\",\n    \"2667\",\n    \"2671\",\n    \"2674\",\n    \"2676\",\n    \"2679\",\n    \"2681\",\n    \"2682\",\n    \"2686\",\n    \"2687\",\n    \"2689\",\n    \"2691\",\n    \"2692\",\n    \"2693\",\n    \"2695\",\n    \"2698\",\n    \"2701\",\n    \"2702\",\n    \"2703\",\n    \"2705\",\n    \"2706\",\n    \"2707\",\n    \"2709\",\n    \"2710\",\n    \"2711\",\n    \"2713\",\n    \"2714\",\n    \"2717\",\n    \"2718\",\n    \"2719\",\n    \"2720\",\n    \"2721\",\n    \"2723\",\n    \"2726\",\n    \"2728\",\n    \"2729\",\n    \"2730\",\n    \"2732\",\n    \"2735\",\n    \"2736\",\n    \"2738\",\n    \"2739\",\n    \"2743\",\n    \"2746\",\n    \"2747\",\n    \"2748\",\n    \"2750\",\n    \"2751\",\n    \"2752\",\n    \"2753\",\n    \"2755\",\n    \"2757\",\n    \"2762\",\n    \"2765\",\n    \"2768\",\n    \"2770\",\n    \"2772\",\n    \"2773\",\n    \"2775\",\n    \"2776\",\n    \"2777\",\n    \"2778\",\n    \"2780\",\n    \"2781\",\n    \"2782\",\n    \"2784\",\n    \"2786\",\n    \"2787\",\n    \"2794\",\n    \"2797\",\n    \"2799\",\n    \"2802\",\n    \"2803\",\n    \"2804\",\n    \"2805\",\n    \"2806\",\n    \"2807\",\n    \"2808\",\n    \"2809\",\n    \"2810\",\n    \"2811\",\n    \"2812\",\n    \"2813\",\n    \"2815\",\n    \"2816\",\n    \"2818\",\n    \"2819\",\n    \"2820\",\n    \"2825\",\n    \"2826\",\n    \"2829\",\n    \"2831\",\n    \"2832\",\n    \"2834\",\n    \"2835\",\n    \"2836\",\n    \"2837\",\n    \"2840\",\n    \"2841\",\n    \"2842\",\n    \"2843\",\n    \"2844\",\n    \"2846\",\n    \"2847\",\n    \"2848\",\n    \"2849\",\n    \"2850\",\n    \"2851\",\n    \"2852\",\n    \"2853\",\n    \"2854\",\n    \"2855\",\n    \"2856\",\n    \"2858\",\n    \"2859\",\n    \"2860\",\n    \"2862\",\n    \"2863\",\n    \"2865\",\n    \"2867\",\n    \"2869\",\n    \"2873\",\n    \"2880\",\n    \"2881\",\n    \"2882\",\n    \"2884\",\n    \"2885\",\n    \"2887\",\n    \"2890\",\n    \"2891\",\n    \"2892\",\n    \"2893\",\n    \"2894\",\n    \"2896\",\n    \"2898\",\n    \"2899\",\n    \"2901\",\n    \"2902\",\n    \"2903\",\n    \"2904\",\n    \"2906\",\n    \"2909\",\n    \"2911\",\n    \"2912\",\n    \"2913\",\n    \"2914\",\n    \"2915\",\n    \"2917\",\n    \"2919\",\n    \"2920\",\n    \"2922\",\n    \"2924\",\n    \"2925\",\n    \"2926\",\n    \"2927\",\n    \"2928\",\n    \"2930\",\n    \"2931\",\n    \"2932\",\n    \"2935\",\n    \"2937\",\n    \"2938\",\n    \"2939\",\n    \"2940\",\n    \"2942\",\n    \"2943\",\n    \"2944\",\n    \"2946\",\n    \"2947\",\n    \"2948\",\n    \"2949\",\n    \"2950\",\n    \"2951\",\n    \"2953\",\n    \"2954\",\n    \"2955\",\n    \"2957\",\n    \"2958\",\n    \"2959\",\n    \"2962\",\n    \"2963\",\n    \"2964\",\n    \"2965\",\n    \"2966\",\n    \"2967\",\n    \"2968\",\n    \"2970\",\n    \"2972\",\n    \"2973\",\n    \"2974\",\n    \"2977\",\n    \"2979\",\n    \"2980\",\n    \"2981\",\n    \"2982\",\n    \"2984\",\n    \"2986\",\n    \"2987\",\n    \"2988\",\n    \"2989\",\n    \"2990\",\n    \"2992\",\n    \"2995\",\n    \"2996\",\n    \"2997\",\n    \"2998\",\n    \"2999\",\n    \"3000\",\n    \"3003\",\n    \"3006\",\n    \"3007\",\n    \"3008\",\n    \"3009\",\n    \"3012\",\n    \"3015\",\n    \"3021\",\n    \"3024\",\n    \"3025\",\n    \"3026\",\n    \"3027\",\n    \"3028\",\n    \"3031\",\n    \"3032\",\n    \"3034\",\n    \"3035\",\n    \"3038\",\n    \"3039\",\n    \"3040\",\n    \"3042\",\n    \"3043\",\n    \"3045\",\n    \"3046\",\n    \"3047\",\n    \"3048\",\n    \"3049\",\n    \"3050\",\n    \"3052\",\n    \"3054\",\n    \"3055\",\n    \"3057\",\n    \"3058\",\n    \"3061\",\n    \"3062\",\n    \"3063\",\n    \"3065\",\n    \"3066\",\n    \"3068\",\n    \"3071\",\n    \"3073\",\n    \"3074\",\n    \"3075\",\n    \"3076\",\n    \"3078\",\n    \"3079\",\n    \"3080\",\n    \"3081\",\n    \"3083\",\n    \"3084\",\n    \"3085\",\n    \"3086\",\n    \"3090\",\n    \"3091\",\n    \"3092\",\n    \"3094\",\n    \"3095\",\n    \"3096\",\n    \"3097\",\n    \"3099\",\n    \"3100\",\n    \"3101\",\n    \"3102\",\n    \"3104\",\n    \"3106\",\n    \"3111\",\n    \"3116\",\n    \"3117\",\n    \"3119\",\n    \"3122\",\n    \"3126\",\n    \"3127\",\n    \"3128\",\n    \"3129\",\n    \"3130\",\n    \"3131\",\n    \"3133\",\n    \"3134\",\n    \"3135\",\n    \"3136\",\n    \"3139\",\n    \"3140\",\n    \"3142\",\n    \"3143\",\n    \"3145\",\n    \"3146\",\n    \"3148\",\n    \"3149\",\n    \"3150\",\n    \"3151\",\n    \"3152\",\n    \"3154\",\n    \"3155\",\n    \"3158\",\n    \"3159\",\n    \"3165\",\n    \"3166\",\n    \"3167\",\n    \"3169\",\n    \"3170\",\n    \"3171\",\n    \"3173\",\n    \"3175\",\n    \"3178\",\n    \"3179\",\n    \"3180\",\n    \"3181\",\n    \"3182\",\n    \"3184\",\n    \"3188\",\n    \"3189\",\n    \"3190\",\n    \"3191\",\n    \"3192\",\n    \"3194\",\n    \"3201\",\n    \"3202\",\n    \"3206\",\n    \"3208\",\n    \"3211\",\n    \"3214\",\n    \"3216\",\n    \"3218\",\n    \"3221\",\n    \"3225\",\n    \"3226\",\n    \"3227\",\n    \"3230\",\n    \"3234\",\n    \"3235\",\n    \"3236\",\n    \"3237\",\n    \"3238\",\n    \"3239\",\n    \"3241\",\n    \"3242\",\n    \"3244\",\n    \"3245\",\n    \"3248\",\n    \"3249\",\n    \"3250\",\n    \"3252\",\n    \"3253\",\n    \"3254\",\n    \"3256\",\n    \"3257\",\n    \"3258\",\n    \"3260\",\n    \"3261\",\n    \"3262\",\n    \"3264\",\n    \"3266\",\n    \"3267\",\n    \"3269\",\n    \"3271\",\n    \"3272\",\n    \"3273\",\n    \"3274\",\n    \"3275\",\n    \"3276\",\n    \"3277\",\n    \"3278\",\n    \"3280\",\n    \"3281\",\n    \"3285\",\n    \"3286\",\n    \"3288\",\n    \"3289\",\n    \"3291\",\n    \"3295\",\n    \"3296\",\n    \"3297\",\n    \"3298\",\n    \"3299\",\n    \"3300\",\n    \"3301\",\n    \"3302\",\n    \"3303\",\n    \"3304\",\n    \"3306\",\n    \"3307\",\n    \"3308\",\n    \"3309\",\n    \"3310\",\n    \"3312\",\n    \"3314\",\n    \"3315\",\n    \"3319\",\n    \"3320\",\n    \"3321\",\n    \"3322\",\n    \"3324\",\n    \"3325\",\n    \"3326\",\n    \"3328\",\n    \"3329\",\n    \"3331\",\n    \"3332\",\n    \"3333\",\n    \"3334\",\n    \"3335\",\n    \"3338\",\n    \"3340\",\n    \"3341\",\n    \"3342\",\n    \"3343\",\n    \"3344\",\n    \"3346\",\n    \"3349\",\n    \"3350\",\n    \"3352\",\n    \"3353\",\n    \"3357\",\n    \"3358\",\n    \"3360\",\n    \"3362\",\n    \"3363\",\n    \"3365\",\n    \"3369\",\n    \"3370\",\n    \"3373\",\n    \"3374\",\n    \"3375\",\n    \"3376\",\n    \"3378\",\n    \"3381\",\n    \"3382\",\n    \"3384\",\n    \"3386\",\n    \"3389\",\n    \"3391\",\n    \"3392\",\n    \"3393\",\n    \"3394\",\n    \"3396\",\n    \"3397\",\n    \"3399\",\n    \"3400\",\n    \"3401\",\n    \"3402\",\n    \"3403\",\n    \"3404\",\n    \"3405\",\n    \"3406\",\n    \"3407\",\n    \"3408\",\n    \"3409\",\n    \"3411\",\n    \"3412\",\n    \"3414\",\n    \"3415\",\n    \"3416\",\n    \"3419\",\n    \"3421\",\n    \"3422\",\n    \"3423\",\n    \"3426\",\n    \"3427\",\n    \"3437\",\n    \"3440\",\n    \"3441\",\n    \"3443\",\n    \"3445\",\n    \"3447\",\n    \"3448\",\n    \"3452\",\n    \"3454\",\n    \"3456\",\n    \"3457\",\n    \"3458\",\n    \"3459\",\n    \"3460\",\n    \"3461\",\n    \"3463\",\n    \"3464\",\n    \"3465\",\n    \"3466\",\n    \"3467\",\n    \"3469\",\n    \"3470\",\n    \"3471\",\n    \"3473\",\n    \"3474\",\n    \"3477\",\n    \"3478\",\n    \"3480\",\n    \"3482\",\n    \"3488\",\n    \"3490\",\n    \"3491\",\n    \"3493\",\n    \"3496\",\n    \"3497\",\n    \"3500\",\n    \"3501\",\n    \"3503\",\n    \"3506\",\n    \"3508\",\n    \"3509\",\n    \"3510\",\n    \"3511\",\n    \"3512\",\n    \"3513\",\n    \"3516\",\n    \"3519\",\n    \"3520\",\n    \"3521\",\n    \"3524\",\n    \"3525\",\n    \"3526\",\n    \"3528\",\n    \"3529\",\n    \"3531\",\n    \"3535\",\n    \"3536\",\n    \"3537\",\n    \"3540\",\n    \"3545\",\n    \"3547\",\n    \"3548\",\n    \"3550\",\n    \"3551\",\n    \"3552\",\n    \"3554\",\n    \"3556\",\n    \"3557\",\n    \"3559\",\n    \"3562\",\n    \"3563\",\n    \"3565\",\n    \"3568\",\n    \"3571\",\n    \"3573\",\n    \"3574\",\n    \"3575\",\n    \"3577\",\n    \"3578\",\n    \"3579\",\n    \"3580\",\n    \"3585\",\n    \"3586\",\n    \"3587\",\n    \"3589\",\n    \"3590\",\n    \"3592\",\n    \"3595\",\n    \"3596\",\n    \"3597\",\n    \"3598\",\n    \"3599\",\n    \"3600\",\n    \"3601\",\n    \"3602\",\n    \"3603\",\n    \"3605\",\n    \"3606\",\n    \"3607\",\n    \"3608\",\n    \"3612\",\n    \"3613\",\n    \"3614\",\n    \"3615\",\n    \"3617\",\n    \"3618\",\n    \"3620\",\n    \"3623\",\n    \"3624\",\n    \"3626\",\n    \"3627\",\n    \"3630\",\n    \"3632\",\n    \"3635\",\n    \"3636\",\n    \"3638\",\n    \"3639\",\n    \"3640\",\n    \"3642\",\n    \"3644\",\n    \"3645\",\n    \"3646\",\n    \"3647\",\n    \"3648\",\n    \"3649\",\n    \"3653\",\n    \"3655\",\n    \"3657\",\n    \"3659\",\n    \"3661\",\n    \"3663\",\n    \"3664\",\n    \"3665\",\n    \"3668\",\n    \"3670\",\n    \"3671\",\n    \"3672\",\n    \"3673\",\n    \"3674\",\n    \"3675\",\n    \"3676\",\n    \"3677\",\n    \"3678\",\n    \"3680\",\n    \"3684\",\n    \"3685\",\n    \"3686\",\n    \"3687\",\n    \"3689\",\n    \"3690\",\n    \"3691\",\n    \"3694\",\n    \"3696\",\n    \"3698\",\n    \"3699\",\n    \"3700\",\n    \"3702\",\n    \"3704\",\n    \"3705\",\n    \"3706\",\n    \"3707\",\n    \"3708\",\n    \"3713\",\n    \"3715\",\n    \"3717\",\n    \"3718\",\n    \"3719\",\n    \"3720\",\n    \"3722\",\n    \"3723\",\n    \"3724\",\n    \"3725\",\n    \"3728\",\n    \"3730\",\n    \"3731\",\n    \"3732\",\n    \"3734\",\n    \"3735\",\n    \"3737\",\n    \"3739\",\n    \"3740\",\n    \"3741\",\n    \"3742\",\n    \"3743\",\n    \"3744\",\n    \"3746\",\n    \"3747\",\n    \"3748\",\n    \"3749\",\n    \"3753\",\n    \"3754\",\n    \"3755\",\n    \"3756\",\n    \"3759\",\n    \"3760\",\n    \"3763\",\n    \"3764\",\n    \"3765\",\n    \"3766\",\n    \"3767\",\n    \"3768\",\n    \"3769\",\n    \"3770\",\n    \"3771\",\n    \"3772\",\n    \"3776\",\n    \"3777\",\n    \"3778\",\n    \"3779\",\n    \"3780\",\n    \"3781\",\n    \"3784\",\n    \"3785\",\n    \"3786\",\n    \"3787\",\n    \"3790\",\n    \"3791\",\n    \"3792\",\n    \"3793\",\n    \"3795\",\n    \"3798\",\n    \"3799\",\n    \"3800\",\n    \"3801\",\n    \"3804\",\n    \"3806\",\n    \"3807\",\n    \"3808\",\n    \"3809\",\n    \"3811\",\n    \"3814\",\n    \"3817\",\n    \"3820\",\n    \"3821\",\n    \"3824\",\n    \"3825\",\n    \"3826\",\n    \"3827\",\n    \"3829\",\n    \"3830\",\n    \"3831\",\n    \"3832\",\n    \"3833\",\n    \"3834\",\n    \"3835\",\n    \"3838\",\n    \"3839\",\n    \"3845\",\n    \"3847\",\n    \"3849\",\n    \"3850\",\n    \"3851\",\n    \"3853\",\n    \"3854\",\n    \"3855\",\n    \"3857\",\n    \"3858\",\n    \"3859\",\n    \"3862\",\n    \"3863\",\n    \"3865\",\n    \"3867\",\n    \"3868\",\n    \"3870\",\n    \"3871\",\n    \"3872\",\n    \"3874\",\n    \"3876\",\n    \"3879\",\n    \"3880\",\n    \"3881\",\n    \"3884\",\n    \"3886\",\n    \"3887\",\n    \"3889\",\n    \"3891\",\n    \"3892\",\n    \"3893\",\n    \"3894\",\n    \"3895\",\n    \"3896\",\n    \"3897\",\n    \"3898\",\n    \"3899\",\n    \"3900\",\n    \"3904\",\n    \"3905\",\n    \"3906\",\n    \"3907\",\n    \"3910\",\n    \"3912\",\n    \"3915\",\n    \"3916\",\n    \"3917\",\n    \"3918\",\n    \"3919\",\n    \"3923\",\n    \"3924\",\n    \"3926\",\n    \"3928\",\n    \"3929\",\n    \"3930\",\n    \"3931\",\n    \"3932\",\n    \"3933\",\n    \"3936\",\n    \"3937\",\n    \"3938\",\n    \"3939\",\n    \"3940\",\n    \"3941\",\n    \"3942\",\n    \"3943\",\n    \"3944\",\n    \"3946\",\n    \"3947\",\n    \"3948\",\n    \"3949\",\n    \"3952\",\n    \"3954\",\n    \"3955\",\n    \"3957\",\n    \"3958\",\n    \"3959\",\n    \"3960\",\n    \"3961\",\n    \"3966\",\n    \"3969\",\n    \"3971\",\n    \"3974\",\n    \"3976\",\n    \"3977\",\n    \"3978\",\n    \"3979\",\n    \"3980\",\n    \"3981\",\n    \"3984\",\n    \"3985\",\n    \"3986\",\n    \"3989\",\n    \"3990\",\n    \"3991\",\n    \"3994\",\n    \"3996\",\n    \"3997\",\n    \"3998\",\n    \"4000\",\n    \"4001\",\n    \"4002\",\n    \"4004\",\n    \"4005\",\n    \"4006\",\n    \"4007\",\n    \"4008\",\n    \"4010\",\n    \"4012\",\n    \"4013\",\n    \"4014\",\n    \"4017\",\n    \"4021\",\n    \"4022\",\n    \"4023\",\n    \"4026\",\n    \"4027\",\n    \"4031\",\n    \"4032\",\n    \"4033\",\n    \"4035\",\n    \"4037\",\n    \"4041\",\n    \"4042\",\n    \"4044\",\n    \"4046\",\n    \"4049\",\n    \"4052\",\n    \"4053\",\n    \"4054\",\n    \"4055\",\n    \"4056\",\n    \"4058\",\n    \"4059\",\n    \"4061\",\n    \"4062\",\n    \"4064\",\n    \"4068\",\n    \"4069\",\n    \"4070\",\n    \"4071\",\n    \"4074\",\n    \"4075\",\n    \"4076\",\n    \"4077\",\n    \"4078\",\n    \"4079\",\n    \"4080\",\n    \"4082\",\n    \"4083\",\n    \"4086\",\n    \"4089\",\n    \"4090\",\n    \"4091\",\n    \"4093\",\n    \"4097\",\n    \"4099\",\n    \"4102\",\n    \"4104\",\n    \"4108\",\n    \"4110\",\n    \"4111\",\n    \"4113\",\n    \"4114\",\n    \"4116\",\n    \"4117\",\n    \"4118\",\n    \"4121\",\n    \"4125\",\n    \"4128\",\n    \"4129\",\n    \"4131\",\n    \"4133\",\n    \"4135\",\n    \"4136\",\n    \"4138\",\n    \"4140\",\n    \"4142\",\n    \"4144\",\n    \"4146\",\n    \"4147\",\n    \"4148\",\n    \"4149\",\n    \"4151\",\n    \"4154\",\n    \"4157\",\n    \"4159\",\n    \"4160\",\n    \"4163\",\n    \"4166\",\n    \"4169\",\n    \"4170\",\n    \"4172\",\n    \"4173\",\n    \"4174\",\n    \"4175\",\n    \"4179\",\n    \"4180\",\n    \"4181\",\n    \"4182\",\n    \"4183\",\n    \"4185\",\n    \"4188\",\n    \"4189\",\n    \"4190\",\n    \"4194\",\n    \"4195\",\n    \"4196\",\n    \"4197\",\n    \"4204\",\n    \"4206\",\n    \"4207\",\n    \"4208\",\n    \"4213\",\n    \"4215\",\n    \"4218\",\n    \"4220\",\n    \"4221\",\n    \"4222\",\n    \"4223\",\n    \"4225\",\n    \"4227\",\n    \"4228\",\n    \"4229\",\n    \"4230\",\n    \"4232\",\n    \"4233\",\n    \"4234\",\n    \"4237\",\n    \"4238\",\n    \"4239\",\n    \"4242\",\n    \"4243\",\n    \"4245\",\n    \"4247\",\n    \"4249\",\n    \"4251\",\n    \"4253\",\n    \"4254\",\n    \"4255\",\n    \"4257\",\n    \"4259\",\n    \"4261\",\n    \"4262\",\n    \"4264\",\n    \"4265\",\n    \"4267\",\n    \"4269\",\n    \"4270\",\n    \"4272\",\n    \"4273\",\n    \"4275\",\n    \"4277\",\n    \"4278\",\n    \"4279\",\n    \"4280\",\n    \"4286\",\n    \"4289\",\n    \"4295\",\n    \"4296\",\n    \"4297\",\n    \"4298\",\n    \"4299\",\n    \"4300\",\n    \"4302\",\n    \"4303\",\n    \"4305\",\n    \"4307\",\n    \"4308\",\n    \"4309\",\n    \"4312\",\n    \"4314\",\n    \"4316\",\n    \"4318\",\n    \"4320\",\n    \"4321\",\n    \"4322\",\n    \"4323\",\n    \"4325\",\n    \"4326\",\n    \"4328\",\n    \"4329\",\n    \"4330\",\n    \"4331\",\n    \"4332\",\n    \"4334\",\n    \"4335\",\n    \"4336\",\n    \"4337\",\n    \"4338\",\n    \"4341\",\n    \"4342\",\n    \"4343\",\n    \"4345\",\n    \"4346\",\n    \"4348\",\n    \"4349\",\n    \"4350\",\n    \"4352\",\n    \"4354\",\n    \"4359\",\n    \"4362\",\n    \"4363\",\n    \"4364\",\n    \"4365\",\n    \"4367\",\n    \"4368\",\n    \"4370\",\n    \"4371\",\n    \"4372\",\n    \"4373\",\n    \"4374\",\n    \"4375\",\n    \"4377\",\n    \"4378\",\n    \"4379\",\n    \"4380\",\n    \"4381\",\n    \"4382\",\n    \"4384\",\n    \"4387\",\n    \"4388\",\n    \"4389\",\n    \"4390\",\n    \"4391\",\n    \"4392\",\n    \"4393\",\n    \"4395\",\n    \"4396\",\n    \"4397\",\n    \"4398\",\n    \"4399\",\n    \"4401\",\n    \"4402\",\n    \"4403\",\n    \"4404\",\n    \"4405\",\n    \"4407\",\n    \"4408\",\n    \"4409\",\n    \"4410\",\n    \"4411\",\n    \"4412\",\n    \"4413\",\n    \"4414\",\n    \"4415\",\n    \"4416\",\n    \"4417\",\n    \"4419\",\n    \"4422\",\n    \"4423\",\n    \"4424\",\n    \"4425\",\n    \"4426\",\n    \"4427\",\n    \"4429\",\n    \"4430\",\n    \"4431\",\n    \"4433\",\n    \"4434\",\n    \"4437\",\n    \"4438\",\n    \"4439\",\n    \"4440\",\n    \"4441\",\n    \"4445\",\n    \"4447\",\n    \"4448\",\n    \"4449\",\n    \"4451\",\n    \"4453\",\n    \"4455\",\n    \"4456\",\n    \"4461\",\n    \"4462\",\n    \"4463\",\n    \"4464\",\n    \"4466\",\n    \"4467\",\n    \"4468\",\n    \"4471\",\n    \"4473\",\n    \"4475\",\n    \"4476\",\n    \"4477\",\n    \"4478\",\n    \"4479\",\n    \"4481\",\n    \"4484\",\n    \"4486\",\n    \"4487\",\n    \"4488\",\n    \"4489\",\n    \"4490\",\n    \"4491\",\n    \"4492\",\n    \"4493\",\n    \"4494\",\n    \"4495\",\n    \"4496\",\n    \"4501\",\n    \"4503\",\n    \"4504\",\n    \"4506\",\n    \"4508\",\n    \"4510\",\n    \"4513\",\n    \"4515\",\n    \"4518\",\n    \"4521\",\n    \"4523\",\n    \"4525\",\n    \"4526\",\n    \"4530\",\n    \"4531\",\n    \"4533\",\n    \"4534\",\n    \"4535\",\n    \"4538\",\n    \"4542\",\n    \"4543\",\n    \"4544\",\n    \"4546\",\n    \"4551\",\n    \"4555\",\n    \"4556\",\n    \"4557\",\n    \"4560\",\n    \"4564\",\n    \"4566\",\n    \"4567\",\n    \"4569\",\n    \"4570\",\n    \"4571\",\n    \"4572\",\n    \"4573\",\n    \"4574\",\n    \"4576\",\n    \"4577\",\n    \"4579\",\n    \"4581\",\n    \"4582\",\n    \"4584\",\n    \"4586\",\n    \"4587\",\n    \"4588\",\n    \"4589\",\n    \"4590\",\n    \"4591\",\n    \"4593\",\n    \"4596\",\n    \"4597\",\n    \"4598\",\n    \"4600\",\n    \"4605\",\n    \"4606\",\n    \"4607\",\n    \"4608\",\n    \"4609\",\n    \"4611\",\n    \"4613\",\n    \"4614\",\n    \"4615\",\n    \"4616\",\n    \"4617\",\n    \"4618\",\n    \"4619\",\n    \"4620\",\n    \"4625\",\n    \"4626\",\n    \"4627\",\n    \"4628\",\n    \"4629\",\n    \"4630\",\n    \"4633\",\n    \"4634\",\n    \"4636\",\n    \"4637\",\n    \"4638\",\n    \"4640\",\n    \"4641\",\n    \"4642\",\n    \"4643\",\n    \"4646\",\n    \"4648\",\n    \"4649\",\n    \"4650\",\n    \"4651\",\n    \"4652\",\n    \"4653\",\n    \"4655\",\n    \"4656\",\n    \"4658\",\n    \"4659\",\n    \"4660\",\n    \"4661\",\n    \"4662\",\n    \"4663\",\n    \"4664\",\n    \"4665\",\n    \"4666\",\n    \"4667\",\n    \"4668\",\n    \"4669\",\n    \"4671\",\n    \"4673\",\n    \"4674\",\n    \"4675\",\n    \"4677\",\n    \"4679\",\n    \"4680\",\n    \"4681\",\n    \"4683\",\n    \"4685\",\n    \"4689\",\n    \"4694\",\n    \"4696\",\n    \"4697\",\n    \"4701\",\n    \"4704\",\n    \"4705\",\n    \"4706\",\n    \"4707\",\n    \"4710\",\n    \"4711\",\n    \"4712\",\n    \"4713\",\n    \"4714\",\n    \"4715\",\n    \"4716\",\n    \"4722\",\n    \"4723\",\n    \"4725\",\n    \"4726\",\n    \"4727\",\n    \"4729\",\n    \"4730\",\n    \"4731\",\n    \"4732\",\n    \"4733\",\n    \"4734\",\n    \"4736\",\n    \"4737\",\n    \"4739\",\n    \"4741\",\n    \"4742\",\n    \"4743\",\n    \"4744\",\n    \"4746\",\n    \"4747\",\n    \"4750\",\n    \"4751\",\n    \"4752\",\n    \"4756\",\n    \"4758\",\n    \"4759\",\n    \"4760\",\n    \"4761\",\n    \"4762\",\n    \"4763\",\n    \"4764\",\n    \"4765\",\n    \"4768\",\n    \"4770\",\n    \"4771\",\n    \"4772\",\n    \"4773\",\n    \"4775\",\n    \"4778\",\n    \"4779\",\n    \"4780\",\n    \"4783\",\n    \"4786\",\n    \"4787\",\n    \"4788\",\n    \"4789\",\n    \"4792\",\n    \"4795\",\n    \"4796\",\n    \"4797\",\n    \"4798\",\n    \"4800\",\n    \"4801\",\n    \"4802\",\n    \"4803\",\n    \"4804\",\n    \"4806\",\n    \"4808\",\n    \"4810\",\n    \"4812\",\n    \"4814\",\n    \"4815\",\n    \"4816\",\n    \"4818\",\n    \"4819\",\n    \"4821\",\n    \"4823\",\n    \"4825\",\n    \"4826\",\n    \"4827\",\n    \"4829\",\n    \"4830\",\n    \"4831\",\n    \"4835\",\n    \"4837\",\n    \"4838\",\n    \"4839\",\n    \"4840\",\n    \"4846\",\n    \"4847\",\n    \"4848\",\n    \"4849\",\n    \"4852\",\n    \"4853\",\n    \"4855\",\n    \"4856\",\n    \"4860\",\n    \"4861\",\n    \"4862\",\n    \"4863\",\n    \"4864\",\n    \"4866\",\n    \"4867\",\n    \"4870\",\n    \"4872\",\n    \"4873\",\n    \"4874\",\n    \"4876\",\n    \"4878\",\n    \"4879\",\n    \"4881\",\n    \"4882\",\n    \"4885\",\n    \"4888\",\n    \"4889\",\n    \"4890\",\n    \"4893\",\n    \"4894\",\n    \"4895\",\n    \"4896\",\n    \"4898\",\n    \"4900\",\n    \"4901\",\n    \"4902\",\n    \"4903\",\n    \"4904\",\n    \"4906\",\n    \"4907\",\n    \"4908\",\n    \"4909\",\n    \"4910\",\n    \"4911\",\n    \"4912\",\n    \"4915\",\n    \"4917\",\n    \"4921\",\n    \"4923\",\n    \"4925\",\n    \"4927\",\n    \"4928\",\n    \"4930\",\n    \"4931\",\n    \"4934\",\n    \"4936\",\n    \"4937\",\n    \"4938\",\n    \"4939\",\n    \"4941\",\n    \"4942\",\n    \"4944\",\n    \"4945\",\n    \"4946\",\n    \"4947\",\n    \"4948\",\n    \"4949\",\n    \"4952\",\n    \"4953\",\n    \"4954\",\n    \"4957\",\n    \"4958\",\n    \"4959\",\n    \"4960\",\n    \"4961\",\n    \"4962\",\n    \"4963\",\n    \"4964\",\n    \"4965\",\n    \"4967\",\n    \"4968\",\n    \"4970\",\n    \"4971\",\n    \"4973\",\n    \"4976\",\n    \"4978\",\n    \"4979\",\n    \"4981\",\n    \"4985\",\n    \"4986\",\n    \"4987\",\n    \"4988\",\n    \"4989\",\n    \"4990\",\n    \"4992\",\n    \"4993\",\n    \"4994\",\n    \"4995\",\n    \"4998\",\n    \"5003\",\n    \"5004\",\n    \"5006\",\n    \"5008\",\n    \"5010\",\n    \"5011\",\n    \"5012\",\n    \"5014\",\n    \"5015\",\n    \"5017\",\n    \"5019\",\n    \"5020\",\n    \"5021\",\n    \"5024\",\n    \"5026\",\n    \"5027\",\n    \"5028\",\n    \"5029\",\n    \"5030\",\n    \"5031\",\n    \"5034\",\n    \"5035\",\n    \"5036\",\n    \"5037\",\n    \"5038\",\n    \"5041\",\n    \"5042\",\n    \"5048\",\n    \"5051\",\n    \"5054\",\n    \"5055\",\n    \"5057\",\n    \"5058\",\n    \"5059\",\n    \"5060\",\n    \"5061\",\n    \"5062\",\n    \"5064\",\n    \"5066\",\n    \"5067\",\n    \"5070\",\n    \"5071\",\n    \"5077\",\n    \"5078\",\n    \"5081\",\n    \"5083\",\n    \"5084\",\n    \"5087\",\n    \"5091\",\n    \"5092\",\n    \"5093\",\n    \"5095\",\n    \"5096\",\n    \"5098\",\n    \"5099\",\n    \"5100\",\n    \"5102\",\n    \"5103\",\n    \"5104\",\n    \"5105\",\n    \"5109\",\n    \"5110\",\n    \"5111\",\n    \"5112\",\n    \"5113\",\n    \"5115\",\n    \"5116\",\n    \"5117\",\n    \"5118\",\n    \"5120\",\n    \"5121\",\n    \"5122\",\n    \"5123\",\n    \"5124\",\n    \"5125\",\n    \"5127\",\n    \"5128\",\n    \"5129\",\n    \"5131\",\n    \"5133\",\n    \"5134\",\n    \"5135\",\n    \"5137\",\n    \"5138\",\n    \"5139\",\n    \"5141\",\n    \"5142\",\n    \"5147\",\n    \"5148\",\n    \"5150\",\n    \"5153\",\n    \"5154\",\n    \"5156\",\n    \"5157\",\n    \"5158\",\n    \"5159\",\n    \"5160\",\n    \"5162\",\n    \"5163\",\n    \"5164\",\n    \"5165\",\n    \"5166\",\n    \"5168\",\n    \"5169\",\n    \"5170\",\n    \"5171\",\n    \"5172\",\n    \"5173\",\n    \"5174\",\n    \"5176\",\n    \"5177\",\n    \"5179\",\n    \"5181\",\n    \"5182\",\n    \"5183\",\n    \"5186\",\n    \"5192\",\n    \"5193\",\n    \"5194\",\n    \"5195\",\n    \"5198\",\n    \"5199\",\n    \"5201\",\n    \"5202\",\n    \"5204\",\n    \"5205\",\n    \"5207\",\n    \"5209\",\n    \"5213\",\n    \"5215\",\n    \"5216\",\n    \"5217\",\n    \"5218\",\n    \"5220\",\n    \"5221\",\n    \"5222\",\n    \"5224\",\n    \"5225\",\n    \"5227\",\n    \"5228\",\n    \"5229\",\n    \"5231\",\n    \"5232\",\n    \"5233\",\n    \"5234\",\n    \"5236\",\n    \"5237\",\n    \"5239\",\n    \"5240\",\n    \"5241\",\n    \"5244\",\n    \"5245\",\n    \"5246\",\n    \"5251\",\n    \"5252\",\n    \"5253\",\n    \"5255\",\n    \"5259\",\n    \"5260\",\n    \"5261\",\n    \"5262\",\n    \"5263\",\n    \"5264\",\n    \"5265\",\n    \"5267\",\n    \"5269\",\n    \"5271\",\n    \"5273\",\n    \"5275\",\n    \"5276\",\n    \"5277\",\n    \"5278\",\n    \"5279\",\n    \"5280\",\n    \"5281\",\n    \"5282\",\n    \"5284\",\n    \"5285\",\n    \"5286\",\n    \"5288\",\n    \"5293\",\n    \"5294\",\n    \"5299\",\n    \"5300\",\n    \"5301\",\n    \"5304\",\n    \"5305\",\n    \"5307\",\n    \"5309\",\n    \"5310\",\n    \"5312\",\n    \"5314\",\n    \"5317\",\n    \"5318\",\n    \"5319\",\n    \"5320\",\n    \"5322\",\n    \"5323\",\n    \"5324\",\n    \"5325\",\n    \"5326\",\n    \"5328\",\n    \"5329\",\n    \"5331\",\n    \"5332\",\n    \"5334\",\n    \"5336\",\n    \"5337\",\n    \"5338\",\n    \"5339\",\n    \"5341\",\n    \"5342\",\n    \"5343\",\n    \"5347\",\n    \"5348\",\n    \"5349\",\n    \"5354\",\n    \"5356\",\n    \"5358\",\n    \"5359\",\n    \"5361\",\n    \"5363\",\n    \"5364\",\n    \"5365\",\n    \"5366\",\n    \"5367\",\n    \"5370\",\n    \"5371\",\n    \"5372\",\n    \"5373\",\n    \"5374\",\n    \"5375\",\n    \"5378\",\n    \"5380\",\n    \"5381\",\n    \"5382\",\n    \"5383\",\n    \"5385\",\n    \"5386\",\n    \"5387\",\n    \"5388\",\n    \"5390\",\n    \"5391\",\n    \"5392\",\n    \"5393\",\n    \"5394\",\n    \"5395\",\n    \"5396\",\n    \"5398\",\n    \"5399\",\n    \"5401\",\n    \"5403\",\n    \"5404\",\n    \"5405\",\n    \"5407\",\n    \"5409\",\n    \"5410\",\n    \"5412\",\n    \"5413\",\n    \"5414\",\n    \"5417\",\n    \"5419\",\n    \"5420\",\n    \"5422\",\n    \"5423\",\n    \"5424\",\n    \"5425\",\n    \"5426\",\n    \"5427\",\n    \"5428\",\n    \"5429\",\n    \"5430\",\n    \"5431\",\n    \"5432\",\n    \"5433\",\n    \"5434\",\n    \"5437\",\n    \"5439\",\n    \"5440\",\n    \"5442\",\n    \"5443\",\n    \"5444\",\n    \"5446\",\n    \"5448\",\n    \"5450\",\n    \"5451\",\n    \"5452\",\n    \"5453\",\n    \"5454\",\n    \"5455\",\n    \"5457\",\n    \"5458\",\n    \"5459\",\n    \"5460\",\n    \"5461\",\n    \"5462\",\n    \"5465\",\n    \"5466\",\n    \"5467\",\n    \"5468\",\n    \"5470\",\n    \"5477\",\n    \"5478\",\n    \"5479\",\n    \"5480\",\n    \"5481\",\n    \"5482\",\n    \"5483\",\n    \"5484\",\n    \"5485\",\n    \"5486\",\n    \"5488\",\n    \"5489\",\n    \"5491\",\n    \"5493\",\n    \"5494\",\n    \"5496\",\n    \"5497\",\n    \"5498\",\n    \"5500\",\n    \"5502\",\n    \"5503\",\n    \"5504\",\n    \"5505\",\n    \"5506\",\n    \"5510\",\n    \"5512\",\n    \"5513\",\n    \"5514\",\n    \"5515\",\n    \"5516\",\n    \"5519\",\n    \"5521\",\n    \"5525\",\n    \"5526\",\n    \"5527\",\n    \"5528\",\n    \"5530\",\n    \"5534\",\n    \"5535\",\n    \"5536\",\n    \"5537\",\n    \"5539\",\n    \"5542\",\n    \"5552\",\n    \"5553\",\n    \"5554\",\n    \"5557\",\n    \"5558\",\n    \"5560\",\n    \"5561\",\n    \"5562\",\n    \"5566\",\n    \"5567\",\n    \"5568\",\n    \"5569\",\n    \"5570\",\n    \"5571\",\n    \"5574\",\n    \"5576\",\n    \"5577\",\n    \"5578\",\n    \"5580\",\n    \"5581\",\n    \"5582\",\n    \"5583\",\n    \"5585\",\n    \"5587\",\n    \"5593\",\n    \"5594\",\n    \"5596\",\n    \"5597\",\n    \"5598\",\n    \"5599\",\n    \"5607\",\n    \"5608\",\n    \"5609\",\n    \"5610\",\n    \"5612\",\n    \"5613\",\n    \"5614\",\n    \"5615\",\n    \"5616\",\n    \"5617\",\n    \"5621\",\n    \"5627\",\n    \"5628\",\n    \"5629\",\n    \"5631\",\n    \"5632\",\n    \"5633\",\n    \"5635\",\n    \"5636\",\n    \"5638\",\n    \"5640\",\n    \"5641\",\n    \"5643\",\n    \"5644\",\n    \"5645\",\n    \"5649\",\n    \"5650\",\n    \"5653\",\n    \"5654\",\n    \"5655\",\n    \"5656\",\n    \"5657\",\n    \"5658\",\n    \"5659\",\n    \"5661\",\n    \"5662\",\n    \"5665\",\n    \"5666\",\n    \"5668\",\n    \"5669\",\n    \"5670\",\n    \"5672\",\n    \"5673\",\n    \"5675\",\n    \"5676\",\n    \"5678\",\n    \"5680\",\n    \"5681\",\n    \"5682\",\n    \"5684\",\n    \"5685\",\n    \"5687\",\n    \"5688\",\n    \"5690\",\n    \"5692\",\n    \"5693\",\n    \"5695\",\n    \"5699\",\n    \"5700\",\n    \"5702\",\n    \"5703\",\n    \"5704\",\n    \"5707\",\n    \"5708\",\n    \"5709\",\n    \"5713\",\n    \"5715\",\n    \"5717\",\n    \"5718\",\n    \"5719\",\n    \"5721\",\n    \"5728\",\n    \"5729\",\n    \"5730\",\n    \"5731\",\n    \"5732\",\n    \"5737\",\n    \"5738\",\n    \"5739\",\n    \"5740\",\n    \"5741\",\n    \"5742\",\n    \"5743\",\n    \"5744\",\n    \"5745\",\n    \"5749\",\n    \"5751\",\n    \"5752\",\n    \"5753\",\n    \"5754\",\n    \"5757\",\n    \"5758\",\n    \"5759\",\n    \"5760\",\n    \"5762\",\n    \"5763\",\n    \"5766\",\n    \"5767\",\n    \"5769\",\n    \"5771\",\n    \"5773\",\n    \"5776\",\n    \"5777\",\n    \"5778\",\n    \"5780\",\n    \"5782\",\n    \"5783\",\n    \"5784\",\n    \"5786\",\n    \"5787\",\n    \"5790\",\n    \"5792\",\n    \"5793\",\n    \"5796\",\n    \"5798\",\n    \"5799\",\n    \"5800\",\n    \"5802\",\n    \"5803\",\n    \"5804\",\n    \"5807\",\n    \"5809\",\n    \"5810\",\n    \"5811\",\n    \"5813\",\n    \"5815\",\n    \"5817\",\n    \"5820\",\n    \"5821\",\n    \"5822\",\n    \"5824\",\n    \"5826\",\n    \"5827\",\n    \"5829\",\n    \"5831\",\n    \"5832\",\n    \"5833\",\n    \"5834\",\n    \"5835\",\n    \"5837\",\n    \"5838\",\n    \"5839\",\n    \"5841\",\n    \"5842\",\n    \"5843\",\n    \"5844\",\n    \"5846\",\n    \"5847\",\n    \"5849\",\n    \"5850\",\n    \"5854\",\n    \"5856\",\n    \"5857\",\n    \"5858\",\n    \"5860\",\n    \"5861\",\n    \"5863\",\n    \"5865\",\n    \"5866\",\n    \"5867\",\n    \"5868\",\n    \"5869\",\n    \"5870\",\n    \"5874\",\n    \"5875\",\n    \"5877\",\n    \"5878\",\n    \"5879\",\n    \"5882\",\n    \"5885\",\n    \"5887\",\n    \"5891\",\n    \"5892\",\n    \"5894\",\n    \"5895\",\n    \"5896\",\n    \"5897\",\n    \"5898\",\n    \"5899\",\n    \"5904\",\n    \"5905\",\n    \"5906\",\n    \"5907\",\n    \"5908\",\n    \"5909\",\n    \"5910\",\n    \"5914\",\n    \"5917\",\n    \"5918\",\n    \"5920\",\n    \"5924\",\n    \"5926\",\n    \"5928\",\n    \"5929\",\n    \"5930\",\n    \"5931\",\n    \"5932\",\n    \"5936\",\n    \"5937\",\n    \"5938\",\n    \"5939\",\n    \"5942\",\n    \"5943\",\n    \"5944\",\n    \"5947\",\n    \"5950\",\n    \"5951\",\n    \"5952\",\n    \"5953\",\n    \"5955\",\n    \"5957\",\n    \"5958\",\n    \"5960\",\n    \"5963\",\n    \"5965\",\n    \"5966\",\n    \"5967\",\n    \"5968\",\n    \"5969\",\n    \"5970\",\n    \"5971\",\n    \"5972\",\n    \"5973\",\n    \"5976\",\n    \"5977\",\n    \"5979\",\n    \"5980\",\n    \"5983\",\n    \"5985\",\n    \"5988\",\n    \"5989\",\n    \"5993\",\n    \"5996\",\n    \"5997\",\n    \"5999\",\n    \"6000\",\n    \"6002\",\n    \"6003\",\n    \"6004\",\n    \"6006\",\n    \"6007\",\n    \"6012\",\n    \"6013\",\n    \"6015\",\n    \"6016\",\n    \"6018\",\n    \"6019\",\n    \"6022\",\n    \"6025\",\n    \"6026\",\n    \"6027\",\n    \"6031\",\n    \"6032\",\n    \"6034\",\n    \"6035\",\n    \"6036\",\n    \"6038\",\n    \"6039\",\n    \"6040\",\n    \"6041\",\n    \"6042\",\n    \"6043\",\n    \"6044\",\n    \"6045\",\n    \"6047\",\n    \"6049\",\n    \"6053\",\n    \"6055\",\n    \"6056\",\n    \"6057\",\n    \"6058\",\n    \"6059\",\n    \"6062\",\n    \"6065\",\n    \"6066\",\n    \"6068\",\n    \"6069\",\n    \"6070\",\n    \"6074\",\n    \"6075\",\n    \"6076\",\n    \"6079\",\n    \"6082\",\n    \"6084\",\n    \"6085\",\n    \"6086\",\n    \"6087\",\n    \"6090\",\n    \"6093\",\n    \"6094\",\n    \"6095\",\n    \"6097\",\n    \"6098\",\n    \"6100\",\n    \"6103\",\n    \"6104\",\n    \"6105\",\n    \"6106\",\n    \"6110\",\n    \"6114\",\n    \"6117\",\n    \"6121\",\n    \"6122\",\n    \"6124\",\n    \"6128\",\n    \"6131\",\n    \"6132\",\n    \"6134\",\n    \"6136\",\n    \"6137\",\n    \"6139\",\n    \"6140\",\n    \"6141\",\n    \"6142\",\n    \"6143\",\n    \"6146\",\n    \"6148\",\n    \"6149\",\n    \"6150\",\n    \"6151\",\n    \"6153\",\n    \"6154\",\n    \"6155\",\n    \"6156\",\n    \"6157\",\n    \"6158\",\n    \"6159\",\n    \"6160\",\n    \"6161\",\n    \"6165\",\n    \"6166\",\n    \"6167\",\n    \"6169\",\n    \"6171\",\n    \"6172\",\n    \"6173\",\n    \"6174\",\n    \"6175\",\n    \"6176\",\n    \"6177\",\n    \"6178\",\n    \"6180\",\n    \"6189\",\n    \"6190\",\n    \"6191\",\n    \"6192\",\n    \"6195\",\n    \"6196\",\n    \"6197\",\n    \"6198\",\n    \"6199\",\n    \"6202\",\n    \"6203\",\n    \"6205\",\n    \"6206\",\n    \"6208\",\n    \"6209\",\n    \"6210\",\n    \"6211\",\n    \"6216\",\n    \"6218\",\n    \"6220\",\n    \"6221\",\n    \"6224\",\n    \"6225\",\n    \"6226\",\n    \"6227\",\n    \"6229\",\n    \"6230\",\n    \"6231\",\n    \"6233\",\n    \"6234\",\n    \"6235\",\n    \"6236\",\n    \"6237\",\n    \"6238\",\n    \"6239\",\n    \"6241\",\n    \"6242\",\n    \"6243\",\n    \"6244\",\n    \"6247\",\n    \"6250\",\n    \"6252\",\n    \"6253\",\n    \"6254\",\n    \"6255\",\n    \"6256\",\n    \"6258\",\n    \"6259\",\n    \"6260\",\n    \"6261\",\n    \"6262\",\n    \"6265\",\n    \"6267\",\n    \"6270\",\n    \"6271\",\n    \"6273\",\n    \"6275\",\n    \"6276\",\n    \"6277\",\n    \"6279\",\n    \"6281\",\n    \"6282\",\n    \"6284\",\n    \"6285\",\n    \"6286\",\n    \"6287\",\n    \"6289\",\n    \"6292\",\n    \"6294\",\n    \"6296\",\n    \"6299\",\n    \"6300\",\n    \"6301\",\n    \"6302\",\n    \"6303\",\n    \"6309\",\n    \"6312\",\n    \"6313\",\n    \"6314\",\n    \"6315\",\n    \"6317\",\n    \"6319\",\n    \"6320\",\n    \"6321\",\n    \"6324\",\n    \"6325\",\n    \"6328\",\n    \"6330\",\n    \"6332\",\n    \"6333\",\n    \"6337\",\n    \"6339\",\n    \"6340\",\n    \"6341\",\n    \"6342\",\n    \"6346\",\n    \"6347\",\n    \"6349\",\n    \"6350\",\n    \"6351\",\n    \"6353\",\n    \"6354\",\n    \"6355\",\n    \"6356\",\n    \"6357\",\n    \"6358\",\n    \"6360\",\n    \"6361\",\n    \"6362\",\n    \"6363\",\n    \"6364\",\n    \"6367\",\n    \"6368\",\n    \"6369\",\n    \"6379\",\n    \"6382\",\n    \"6383\",\n    \"6385\",\n    \"6388\",\n    \"6389\",\n    \"6392\",\n    \"6393\",\n    \"6394\",\n    \"6395\",\n    \"6396\",\n    \"6397\",\n    \"6398\",\n    \"6402\",\n    \"6405\",\n    \"6407\",\n    \"6411\",\n    \"6413\",\n    \"6414\",\n    \"6415\",\n    \"6416\",\n    \"6417\",\n    \"6420\",\n    \"6421\",\n    \"6422\",\n    \"6423\",\n    \"6424\",\n    \"6425\",\n    \"6426\",\n    \"6427\",\n    \"6428\",\n    \"6429\",\n    \"6432\",\n    \"6433\",\n    \"6434\",\n    \"6435\",\n    \"6436\",\n    \"6438\",\n    \"6439\",\n    \"6441\",\n    \"6443\",\n    \"6446\",\n    \"6447\",\n    \"6448\",\n    \"6449\",\n    \"6450\",\n    \"6451\",\n    \"6452\",\n    \"6456\",\n    \"6460\",\n    \"6461\",\n    \"6462\",\n    \"6463\",\n    \"6464\",\n    \"6465\",\n    \"6466\",\n    \"6468\",\n    \"6471\",\n    \"6473\",\n    \"6475\",\n    \"6477\",\n    \"6478\",\n    \"6479\",\n    \"6481\",\n    \"6484\",\n    \"6487\",\n    \"6489\",\n    \"6491\",\n    \"6493\",\n    \"6494\",\n    \"6496\",\n    \"6498\",\n    \"6499\",\n    \"6500\",\n    \"6501\",\n    \"6503\",\n    \"6505\",\n    \"6506\",\n    \"6507\",\n    \"6508\",\n    \"6510\",\n    \"6512\",\n    \"6513\",\n    \"6514\",\n    \"6515\",\n    \"6516\",\n    \"6519\",\n    \"6520\",\n    \"6521\",\n    \"6522\",\n    \"6524\",\n    \"6526\",\n    \"6527\",\n    \"6528\",\n    \"6529\",\n    \"6530\",\n    \"6531\",\n    \"6533\",\n    \"6538\",\n    \"6543\",\n    \"6545\",\n    \"6547\",\n    \"6548\",\n    \"6549\",\n    \"6550\",\n    \"6551\",\n    \"6552\",\n    \"6554\",\n    \"6555\",\n    \"6556\",\n    \"6559\",\n    \"6561\",\n    \"6562\",\n    \"6563\",\n    \"6564\",\n    \"6565\",\n    \"6566\",\n    \"6567\",\n    \"6568\",\n    \"6569\",\n    \"6572\",\n    \"6579\",\n    \"6580\",\n    \"6581\",\n    \"6582\",\n    \"6584\",\n    \"6586\",\n    \"6587\",\n    \"6589\",\n    \"6592\",\n    \"6594\",\n    \"6595\",\n    \"6596\",\n    \"6599\",\n    \"6600\",\n    \"6601\",\n    \"6602\",\n    \"6603\",\n    \"6604\",\n    \"6605\",\n    \"6606\",\n    \"6607\",\n    \"6610\",\n    \"6614\",\n    \"6615\",\n    \"6616\",\n    \"6617\",\n    \"6618\",\n    \"6622\",\n    \"6625\",\n    \"6629\",\n    \"6630\",\n    \"6633\",\n    \"6634\",\n    \"6638\",\n    \"6639\",\n    \"6642\",\n    \"6643\",\n    \"6644\",\n    \"6645\",\n    \"6647\",\n    \"6649\",\n    \"6650\",\n    \"6651\",\n    \"6653\",\n    \"6655\",\n    \"6656\",\n    \"6657\",\n    \"6658\",\n    \"6659\",\n    \"6663\",\n    \"6664\",\n    \"6665\",\n    \"6666\",\n    \"6667\",\n    \"6668\",\n    \"6670\",\n    \"6672\",\n    \"6673\",\n    \"6674\",\n    \"6675\",\n    \"6678\",\n    \"6679\",\n    \"6680\",\n    \"6682\",\n    \"6683\",\n    \"6688\",\n    \"6689\",\n    \"6690\",\n    \"6692\",\n    \"6693\",\n    \"6695\",\n    \"6696\",\n    \"6698\",\n    \"6699\",\n    \"6700\",\n    \"6701\",\n    \"6702\",\n    \"6705\",\n    \"6706\",\n    \"6708\",\n    \"6709\",\n    \"6711\",\n    \"6715\",\n    \"6716\",\n    \"6718\",\n    \"6720\",\n    \"6722\",\n    \"6723\",\n    \"6724\",\n    \"6725\",\n    \"6727\",\n    \"6731\",\n    \"6733\",\n    \"6736\",\n    \"6737\",\n    \"6741\",\n    \"6743\",\n    \"6744\",\n    \"6745\",\n    \"6746\",\n    \"6747\",\n    \"6748\",\n    \"6749\",\n    \"6750\",\n    \"6752\",\n    \"6753\",\n    \"6754\",\n    \"6755\",\n    \"6756\",\n    \"6757\",\n    \"6758\",\n    \"6760\",\n    \"6762\",\n    \"6764\",\n    \"6766\",\n    \"6768\",\n    \"6769\",\n    \"6775\",\n    \"6776\",\n    \"6777\",\n    \"6778\",\n    \"6783\",\n    \"6784\",\n    \"6789\",\n    \"6790\",\n    \"6792\",\n    \"6793\",\n    \"6794\",\n    \"6795\",\n    \"6797\",\n    \"6799\",\n    \"6800\",\n    \"6801\",\n    \"6804\",\n    \"6805\",\n    \"6806\",\n    \"6807\",\n    \"6808\",\n    \"6810\",\n    \"6811\",\n    \"6812\",\n    \"6816\",\n    \"6817\",\n    \"6818\",\n    \"6819\",\n    \"6820\",\n    \"6821\",\n    \"6822\",\n    \"6823\",\n    \"6826\",\n    \"6828\",\n    \"6829\",\n    \"6831\",\n    \"6832\",\n    \"6834\",\n    \"6837\",\n    \"6838\",\n    \"6841\",\n    \"6842\",\n    \"6843\",\n    \"6844\",\n    \"6845\",\n    \"6846\",\n    \"6847\",\n    \"6848\",\n    \"6849\",\n    \"6852\",\n    \"6853\",\n    \"6854\",\n    \"6856\",\n    \"6857\",\n    \"6858\",\n    \"6859\",\n    \"6860\",\n    \"6861\",\n    \"6862\",\n    \"6869\",\n    \"6870\",\n    \"6874\",\n    \"6876\",\n    \"6878\",\n    \"6879\",\n    \"6881\",\n    \"6882\",\n    \"6885\",\n    \"6888\",\n    \"6890\",\n    \"6892\",\n    \"6893\",\n    \"6894\",\n    \"6895\",\n    \"6897\",\n    \"6900\",\n    \"6901\",\n    \"6903\",\n    \"6904\",\n    \"6905\",\n    \"6906\",\n    \"6907\",\n    \"6908\",\n    \"6910\",\n    \"6912\",\n    \"6913\",\n    \"6914\",\n    \"6915\",\n    \"6917\",\n    \"6919\",\n    \"6920\",\n    \"6921\",\n    \"6922\",\n    \"6925\",\n    \"6926\",\n    \"6927\",\n    \"6928\",\n    \"6929\",\n    \"6930\",\n    \"6931\",\n    \"6932\",\n    \"6934\",\n    \"6936\",\n    \"6937\",\n    \"6938\",\n    \"6939\",\n    \"6941\",\n    \"6943\",\n    \"6944\",\n    \"6945\",\n    \"6949\",\n    \"6950\",\n    \"6951\",\n    \"6952\",\n    \"6954\",\n    \"6957\",\n    \"6959\",\n    \"6960\",\n    \"6961\",\n    \"6962\",\n    \"6963\",\n    \"6968\",\n    \"6970\",\n    \"6971\",\n    \"6974\",\n    \"6976\",\n    \"6978\",\n    \"6980\",\n    \"6982\",\n    \"6985\",\n    \"6986\",\n    \"6988\",\n    \"6991\",\n    \"6992\",\n    \"6993\",\n    \"6994\",\n    \"6995\",\n    \"6996\",\n    \"6997\",\n    \"6998\",\n    \"6999\",\n    \"7001\",\n    \"7003\",\n    \"7004\",\n    \"7006\",\n    \"7009\",\n    \"7010\",\n    \"7013\",\n    \"7015\",\n    \"7016\",\n    \"7017\",\n    \"7020\",\n    \"7025\",\n    \"7027\",\n    \"7028\",\n    \"7029\",\n    \"7030\",\n    \"7032\",\n    \"7034\",\n    \"7035\",\n    \"7036\",\n    \"7039\",\n    \"7042\",\n    \"7043\",\n    \"7044\",\n    \"7045\",\n    \"7048\",\n    \"7049\",\n    \"7051\",\n    \"7054\",\n    \"7056\",\n    \"7060\",\n    \"7061\",\n    \"7062\",\n    \"7063\",\n    \"7065\",\n    \"7067\",\n    \"7068\",\n    \"7069\",\n    \"7070\",\n    \"7072\",\n    \"7073\",\n    \"7074\",\n    \"7075\",\n    \"7077\",\n    \"7079\",\n    \"7080\",\n    \"7081\",\n    \"7084\",\n    \"7086\",\n    \"7087\",\n    \"7088\",\n    \"7089\",\n    \"7090\",\n    \"7091\",\n    \"7093\",\n    \"7095\",\n    \"7098\",\n    \"7099\",\n    \"7100\",\n    \"7102\",\n    \"7103\",\n    \"7104\",\n    \"7106\",\n    \"7109\",\n    \"7110\",\n    \"7112\",\n    \"7114\",\n    \"7116\",\n    \"7117\",\n    \"7118\",\n    \"7120\",\n    \"7122\",\n    \"7123\",\n    \"7125\",\n    \"7127\",\n    \"7128\",\n    \"7129\",\n    \"7131\",\n    \"7132\",\n    \"7133\",\n    \"7139\",\n    \"7141\",\n    \"7142\",\n    \"7143\",\n    \"7144\",\n    \"7148\",\n    \"7151\",\n    \"7153\",\n    \"7154\",\n    \"7156\",\n    \"7157\",\n    \"7159\",\n    \"7160\",\n    \"7163\",\n    \"7165\",\n    \"7166\",\n    \"7167\",\n    \"7168\",\n    \"7170\",\n    \"7173\",\n    \"7175\",\n    \"7176\",\n    \"7178\",\n    \"7181\",\n    \"7182\",\n    \"7183\",\n    \"7184\",\n    \"7185\",\n    \"7186\",\n    \"7187\",\n    \"7189\",\n    \"7193\",\n    \"7195\",\n    \"7196\",\n    \"7198\",\n    \"7200\",\n    \"7201\",\n    \"7202\",\n    \"7203\",\n    \"7204\",\n    \"7205\",\n    \"7211\",\n    \"7213\",\n    \"7214\",\n    \"7218\",\n    \"7220\",\n    \"7221\",\n    \"7222\",\n    \"7223\",\n    \"7224\",\n    \"7227\",\n    \"7228\",\n    \"7229\",\n    \"7231\",\n    \"7232\",\n    \"7233\",\n    \"7239\",\n    \"7240\",\n    \"7241\",\n    \"7245\",\n    \"7246\",\n    \"7248\",\n    \"7249\",\n    \"7252\",\n    \"7253\",\n    \"7257\",\n    \"7258\",\n    \"7259\",\n    \"7260\",\n    \"7261\",\n    \"7263\",\n    \"7264\",\n    \"7265\",\n    \"7269\",\n    \"7271\",\n    \"7274\",\n    \"7275\",\n    \"7276\",\n    \"7277\",\n    \"7278\",\n    \"7279\",\n    \"7281\",\n    \"7283\",\n    \"7284\",\n    \"7286\",\n    \"7287\",\n    \"7288\",\n    \"7289\",\n    \"7293\",\n    \"7295\",\n    \"7299\",\n    \"7300\",\n    \"7302\",\n    \"7303\",\n    \"7304\",\n    \"7305\",\n    \"7307\",\n    \"7308\",\n    \"7309\",\n    \"7311\",\n    \"7312\",\n    \"7313\",\n    \"7314\",\n    \"7315\",\n    \"7316\",\n    \"7317\",\n    \"7320\",\n    \"7321\",\n    \"7323\",\n    \"7324\",\n    \"7325\",\n    \"7327\",\n    \"7331\",\n    \"7332\",\n    \"7335\",\n    \"7337\",\n    \"7339\",\n    \"7340\",\n    \"7341\",\n    \"7342\",\n    \"7350\",\n    \"7351\",\n    \"7352\",\n    \"7353\",\n    \"7354\",\n    \"7360\",\n    \"7362\",\n    \"7364\",\n    \"7366\",\n    \"7368\",\n    \"7369\",\n    \"7370\",\n    \"7371\",\n    \"7372\",\n    \"7376\",\n    \"7377\",\n    \"7378\",\n    \"7379\",\n    \"7380\",\n    \"7381\",\n    \"7382\",\n    \"7383\",\n    \"7384\",\n    \"7386\",\n    \"7388\",\n    \"7393\",\n    \"7394\",\n    \"7398\",\n    \"7400\",\n    \"7402\",\n    \"7404\",\n    \"7406\",\n    \"7408\",\n    \"7409\",\n    \"7410\",\n    \"7412\",\n    \"7413\",\n    \"7414\",\n    \"7416\",\n    \"7417\",\n    \"7419\",\n    \"7421\",\n    \"7422\",\n    \"7423\",\n    \"7425\",\n    \"7427\",\n    \"7430\",\n    \"7431\",\n    \"7433\",\n    \"7435\",\n    \"7436\",\n    \"7437\",\n    \"7438\",\n    \"7439\",\n    \"7440\",\n    \"7441\",\n    \"7444\",\n    \"7445\",\n    \"7446\",\n    \"7449\",\n    \"7450\",\n    \"7451\",\n    \"7452\",\n    \"7453\",\n    \"7454\",\n    \"7456\",\n    \"7458\",\n    \"7463\",\n    \"7464\",\n    \"7468\",\n    \"7469\",\n    \"7471\",\n    \"7472\",\n    \"7473\",\n    \"7476\",\n    \"7478\",\n    \"7479\",\n    \"7484\",\n    \"7485\",\n    \"7486\",\n    \"7489\",\n    \"7496\",\n    \"7498\",\n    \"7499\",\n    \"7500\",\n    \"7501\",\n    \"7502\",\n    \"7503\",\n    \"7504\",\n    \"7505\",\n    \"7508\",\n    \"7509\",\n    \"7511\",\n    \"7513\",\n    \"7515\",\n    \"7518\",\n    \"7519\",\n    \"7520\",\n    \"7523\",\n    \"7525\",\n    \"7526\",\n    \"7527\",\n    \"7530\",\n    \"7535\",\n    \"7536\",\n    \"7537\",\n    \"7539\",\n    \"7541\",\n    \"7542\",\n    \"7547\",\n    \"7549\",\n    \"7550\",\n    \"7551\",\n    \"7552\",\n    \"7554\",\n    \"7555\",\n    \"7556\",\n    \"7557\",\n    \"7558\",\n    \"7561\",\n    \"7564\",\n    \"7565\",\n    \"7566\",\n    \"7567\",\n    \"7568\",\n    \"7572\",\n    \"7573\",\n    \"7574\",\n    \"7575\",\n    \"7576\",\n    \"7577\",\n    \"7579\",\n    \"7580\",\n    \"7581\",\n    \"7584\",\n    \"7585\",\n    \"7586\",\n    \"7588\",\n    \"7589\",\n    \"7590\",\n    \"7591\",\n    \"7592\",\n    \"7593\",\n    \"7594\",\n    \"7595\",\n    \"7599\",\n    \"7601\",\n    \"7602\",\n    \"7604\",\n    \"7606\",\n    \"7607\",\n    \"7609\",\n    \"7610\",\n    \"7611\",\n    \"7612\",\n    \"7615\",\n    \"7620\",\n    \"7622\",\n    \"7623\",\n    \"7627\",\n    \"7629\",\n    \"7631\",\n    \"7632\",\n    \"7633\",\n    \"7634\",\n    \"7635\",\n    \"7637\",\n    \"7640\",\n    \"7642\",\n    \"7643\",\n    \"7644\",\n    \"7646\",\n    \"7647\",\n    \"7648\",\n    \"7649\",\n    \"7652\",\n    \"7655\",\n    \"7657\",\n    \"7658\",\n    \"7660\",\n    \"7661\",\n    \"7663\",\n    \"7664\",\n    \"7665\",\n    \"7666\",\n    \"7667\",\n    \"7668\",\n    \"7669\",\n    \"7673\",\n    \"7674\",\n    \"7676\",\n    \"7677\",\n    \"7680\",\n    \"7682\",\n    \"7687\",\n    \"7690\",\n    \"7693\",\n    \"7695\",\n    \"7696\",\n    \"7698\",\n    \"7699\",\n    \"7700\",\n    \"7701\",\n    \"7702\",\n    \"7703\",\n    \"7705\",\n    \"7706\",\n    \"7708\",\n    \"7710\",\n    \"7711\",\n    \"7714\",\n    \"7715\",\n    \"7717\",\n    \"7721\",\n    \"7722\",\n    \"7725\",\n    \"7730\",\n    \"7731\",\n    \"7732\",\n    \"7733\",\n    \"7734\",\n    \"7735\",\n    \"7736\",\n    \"7738\",\n    \"7740\",\n    \"7741\",\n    \"7743\",\n    \"7744\",\n    \"7746\",\n    \"7749\",\n    \"7750\",\n    \"7751\",\n    \"7752\",\n    \"7753\",\n    \"7754\",\n    \"7757\",\n    \"7761\",\n    \"7763\",\n    \"7764\",\n    \"7766\",\n    \"7767\",\n    \"7769\",\n    \"7770\",\n    \"7771\",\n    \"7772\",\n    \"7773\",\n    \"7774\",\n    \"7775\",\n    \"7778\",\n    \"7779\",\n    \"7780\",\n    \"7781\",\n    \"7782\",\n    \"7783\",\n    \"7784\",\n    \"7786\",\n    \"7788\",\n    \"7789\",\n    \"7790\",\n    \"7791\",\n    \"7792\",\n    \"7793\",\n    \"7796\",\n    \"7797\",\n    \"7798\",\n    \"7802\",\n    \"7806\",\n    \"7808\",\n    \"7810\",\n    \"7813\",\n    \"7814\",\n    \"7815\",\n    \"7816\",\n    \"7817\",\n    \"7818\",\n    \"7819\",\n    \"7820\",\n    \"7821\",\n    \"7823\",\n    \"7826\",\n    \"7828\",\n    \"7830\",\n    \"7831\",\n    \"7834\",\n    \"7835\",\n    \"7836\",\n    \"7837\",\n    \"7838\",\n    \"7840\",\n    \"7846\",\n    \"7847\",\n    \"7848\",\n    \"7849\",\n    \"7850\",\n    \"7851\",\n    \"7852\",\n    \"7853\",\n    \"7854\",\n    \"7855\",\n    \"7856\",\n    \"7861\",\n    \"7862\",\n    \"7863\",\n    \"7867\",\n    \"7871\",\n    \"7874\",\n    \"7875\",\n    \"7877\",\n    \"7878\",\n    \"7879\",\n    \"7880\",\n    \"7882\",\n    \"7883\",\n    \"7884\",\n    \"7885\",\n    \"7887\",\n    \"7889\",\n    \"7890\",\n    \"7891\",\n    \"7894\",\n    \"7896\",\n    \"7897\",\n    \"7898\",\n    \"7900\",\n    \"7901\",\n    \"7903\",\n    \"7905\",\n    \"7909\",\n    \"7910\",\n    \"7911\",\n    \"7912\",\n    \"7913\",\n    \"7915\",\n    \"7920\",\n    \"7921\",\n    \"7925\",\n    \"7926\",\n    \"7928\",\n    \"7929\",\n    \"7931\",\n    \"7934\",\n    \"7937\",\n    \"7938\",\n    \"7943\",\n    \"7944\",\n    \"7946\",\n    \"7947\",\n    \"7948\",\n    \"7950\",\n    \"7951\",\n    \"7954\",\n    \"7957\",\n    \"7958\",\n    \"7965\",\n    \"7966\",\n    \"7967\",\n    \"7968\",\n    \"7970\",\n    \"7972\",\n    \"7973\",\n    \"7976\",\n    \"7977\",\n    \"7978\",\n    \"7980\",\n    \"7981\",\n    \"7982\",\n    \"7984\",\n    \"7985\",\n    \"7986\",\n    \"7987\",\n    \"7988\",\n    \"7989\",\n    \"7990\",\n    \"7992\",\n    \"7995\",\n    \"7996\",\n    \"7997\",\n    \"7998\",\n    \"7999\",\n    \"8000\",\n    \"8001\",\n    \"8002\",\n    \"8003\",\n    \"8005\",\n    \"8007\",\n    \"8008\",\n    \"8011\",\n    \"8015\",\n    \"8017\",\n    \"8019\",\n    \"8021\",\n    \"8023\",\n    \"8024\",\n    \"8026\",\n    \"8028\",\n    \"8030\",\n    \"8032\",\n    \"8036\",\n    \"8037\",\n    \"8038\",\n    \"8039\",\n    \"8041\",\n    \"8044\",\n    \"8046\",\n    \"8047\",\n    \"8048\",\n    \"8050\",\n    \"8052\",\n    \"8056\",\n    \"8057\",\n    \"8058\",\n    \"8059\",\n    \"8060\",\n    \"8063\",\n    \"8066\",\n    \"8067\",\n    \"8068\",\n    \"8069\",\n    \"8074\",\n    \"8075\",\n    \"8076\",\n    \"8077\",\n    \"8078\",\n    \"8079\",\n    \"8081\",\n    \"8083\",\n    \"8085\",\n    \"8086\",\n    \"8089\",\n    \"8091\",\n    \"8092\",\n    \"8094\",\n    \"8101\",\n    \"8104\",\n    \"8105\",\n    \"8106\",\n    \"8107\",\n    \"8108\",\n    \"8113\",\n    \"8115\",\n    \"8116\",\n    \"8117\",\n    \"8119\",\n    \"8120\",\n    \"8121\",\n    \"8122\",\n    \"8123\",\n    \"8124\",\n    \"8125\",\n    \"8126\",\n    \"8127\",\n    \"8128\",\n    \"8129\",\n    \"8132\",\n    \"8133\",\n    \"8135\",\n    \"8136\",\n    \"8137\",\n    \"8138\",\n    \"8140\",\n    \"8142\",\n    \"8143\",\n    \"8144\",\n    \"8145\",\n    \"8147\",\n    \"8148\",\n    \"8151\",\n    \"8152\",\n    \"8153\",\n    \"8155\",\n    \"8156\",\n    \"8157\",\n    \"8158\",\n    \"8160\",\n    \"8162\",\n    \"8164\",\n    \"8165\",\n    \"8166\",\n    \"8169\",\n    \"8170\",\n    \"8171\",\n    \"8172\",\n    \"8173\",\n    \"8175\",\n    \"8177\",\n    \"8178\",\n    \"8179\",\n    \"8181\",\n    \"8184\",\n    \"8186\",\n    \"8187\",\n    \"8188\",\n    \"8189\",\n    \"8190\",\n    \"8191\",\n    \"8192\",\n    \"8194\",\n    \"8195\",\n    \"8196\",\n    \"8198\",\n    \"8199\",\n    \"8201\",\n    \"8202\",\n    \"8203\",\n    \"8204\",\n    \"8205\",\n    \"8206\",\n    \"8207\",\n    \"8209\",\n    \"8210\",\n    \"8214\",\n    \"8215\",\n    \"8216\",\n    \"8217\",\n    \"8218\",\n    \"8220\",\n    \"8222\",\n    \"8223\",\n    \"8226\",\n    \"8227\",\n    \"8228\",\n    \"8229\",\n    \"8232\",\n    \"8233\",\n    \"8234\",\n    \"8235\",\n    \"8237\",\n    \"8238\",\n    \"8239\",\n    \"8240\",\n    \"8241\",\n    \"8242\",\n    \"8244\",\n    \"8245\",\n    \"8247\",\n    \"8249\",\n    \"8250\",\n    \"8251\",\n    \"8253\",\n    \"8254\",\n    \"8255\",\n    \"8256\",\n    \"8257\",\n    \"8258\",\n    \"8260\",\n    \"8261\",\n    \"8262\",\n    \"8263\",\n    \"8265\",\n    \"8266\",\n    \"8268\",\n    \"8270\",\n    \"8271\",\n    \"8272\",\n    \"8273\",\n    \"8274\",\n    \"8277\",\n    \"8278\",\n    \"8279\",\n    \"8281\",\n    \"8282\",\n    \"8283\",\n    \"8286\",\n    \"8288\",\n    \"8290\",\n    \"8291\",\n    \"8292\",\n    \"8293\",\n    \"8297\",\n    \"8299\",\n    \"8301\",\n    \"8302\",\n    \"8304\",\n    \"8307\",\n    \"8310\",\n    \"8312\",\n    \"8313\",\n    \"8315\",\n    \"8317\",\n    \"8319\",\n    \"8320\",\n    \"8322\",\n    \"8324\",\n    \"8325\",\n    \"8326\",\n    \"8327\",\n    \"8330\",\n    \"8331\",\n    \"8333\",\n    \"8334\",\n    \"8336\",\n    \"8337\",\n    \"8339\",\n    \"8340\",\n    \"8341\",\n    \"8342\",\n    \"8343\",\n    \"8344\",\n    \"8345\",\n    \"8347\",\n    \"8348\",\n    \"8349\",\n    \"8350\",\n    \"8351\",\n    \"8352\",\n    \"8353\",\n    \"8354\",\n    \"8356\",\n    \"8359\",\n    \"8360\",\n    \"8364\",\n    \"8366\",\n    \"8367\",\n    \"8370\",\n    \"8372\",\n    \"8373\",\n    \"8375\",\n    \"8376\",\n    \"8377\",\n    \"8380\",\n    \"8382\",\n    \"8383\",\n    \"8384\",\n    \"8385\",\n    \"8387\",\n    \"8388\",\n    \"8391\",\n    \"8392\",\n    \"8395\",\n    \"8396\",\n    \"8399\",\n    \"8400\",\n    \"8401\",\n    \"8402\",\n    \"8405\",\n    \"8407\",\n    \"8409\",\n    \"8411\",\n    \"8412\",\n    \"8415\",\n    \"8416\",\n    \"8417\",\n    \"8418\",\n    \"8420\",\n    \"8421\",\n    \"8423\",\n    \"8425\",\n    \"8426\",\n    \"8427\",\n    \"8428\",\n    \"8430\",\n    \"8432\",\n    \"8433\",\n    \"8436\",\n    \"8437\",\n    \"8440\",\n    \"8441\",\n    \"8442\",\n    \"8443\",\n    \"8445\",\n    \"8446\",\n    \"8448\",\n    \"8450\",\n    \"8452\",\n    \"8458\",\n    \"8459\",\n    \"8461\",\n    \"8462\",\n    \"8463\",\n    \"8464\",\n    \"8465\",\n    \"8467\",\n    \"8469\",\n    \"8470\",\n    \"8471\",\n    \"8472\",\n    \"8473\",\n    \"8474\",\n    \"8475\",\n    \"8479\",\n    \"8481\",\n    \"8482\",\n    \"8483\",\n    \"8485\",\n    \"8486\",\n    \"8489\",\n    \"8491\",\n    \"8494\",\n    \"8495\",\n    \"8503\",\n    \"8504\",\n    \"8506\",\n    \"8507\",\n    \"8508\",\n    \"8514\",\n    \"8517\",\n    \"8519\",\n    \"8521\",\n    \"8523\",\n    \"8524\",\n    \"8526\",\n    \"8527\",\n    \"8530\",\n    \"8531\",\n    \"8534\",\n    \"8535\",\n    \"8538\",\n    \"8539\",\n    \"8540\",\n    \"8544\",\n    \"8545\",\n    \"8546\",\n    \"8547\",\n    \"8548\",\n    \"8549\",\n    \"8555\",\n    \"8556\",\n    \"8560\",\n    \"8562\",\n    \"8563\",\n    \"8564\",\n    \"8565\",\n    \"8566\",\n    \"8567\",\n    \"8568\",\n    \"8569\",\n    \"8570\",\n    \"8574\",\n    \"8577\",\n    \"8578\",\n    \"8585\",\n    \"8588\",\n    \"8590\",\n    \"8592\",\n    \"8593\",\n    \"8594\",\n    \"8597\",\n    \"8598\",\n    \"8600\",\n    \"8602\",\n    \"8603\",\n    \"8604\",\n    \"8605\",\n    \"8607\",\n    \"8608\",\n    \"8610\",\n    \"8611\",\n    \"8613\",\n    \"8616\",\n    \"8617\",\n    \"8619\",\n    \"8621\",\n    \"8622\",\n    \"8623\",\n    \"8626\",\n    \"8627\",\n    \"8628\",\n    \"8629\",\n    \"8630\",\n    \"8631\",\n    \"8632\",\n    \"8633\",\n    \"8634\",\n    \"8636\",\n    \"8637\",\n    \"8638\",\n    \"8639\",\n    \"8641\",\n    \"8642\",\n    \"8644\",\n    \"8645\",\n    \"8646\",\n    \"8647\",\n    \"8650\",\n    \"8651\",\n    \"8652\",\n    \"8653\",\n    \"8655\",\n    \"8656\",\n    \"8657\",\n    \"8658\",\n    \"8659\",\n    \"8660\",\n    \"8661\",\n    \"8662\",\n    \"8664\",\n    \"8665\",\n    \"8668\",\n    \"8669\",\n    \"8670\",\n    \"8673\",\n    \"8674\",\n    \"8675\",\n    \"8678\",\n    \"8679\",\n    \"8682\",\n    \"8684\",\n    \"8685\",\n    \"8690\",\n    \"8691\",\n    \"8693\",\n    \"8694\",\n    \"8695\",\n    \"8696\",\n    \"8697\",\n    \"8698\",\n    \"8699\",\n    \"8700\",\n    \"8701\",\n    \"8704\",\n    \"8705\",\n    \"8706\",\n    \"8708\",\n    \"8710\",\n    \"8711\",\n    \"8712\",\n    \"8713\",\n    \"8714\",\n    \"8717\",\n    \"8718\",\n    \"8719\",\n    \"8723\",\n    \"8725\",\n    \"8726\",\n    \"8730\",\n    \"8733\",\n    \"8735\",\n    \"8736\",\n    \"8737\",\n    \"8738\",\n    \"8740\",\n    \"8741\",\n    \"8742\",\n    \"8744\",\n    \"8745\",\n    \"8747\",\n    \"8748\",\n    \"8750\",\n    \"8753\",\n    \"8754\",\n    \"8755\",\n    \"8756\",\n    \"8757\",\n    \"8759\",\n    \"8760\",\n    \"8761\",\n    \"8762\",\n    \"8764\",\n    \"8765\",\n    \"8766\",\n    \"8768\",\n    \"8772\",\n    \"8773\",\n    \"8774\",\n    \"8775\",\n    \"8777\",\n    \"8781\",\n    \"8782\",\n    \"8783\",\n    \"8786\",\n    \"8787\",\n    \"8788\",\n    \"8789\",\n    \"8790\",\n    \"8791\",\n    \"8792\",\n    \"8795\",\n    \"8796\",\n    \"8797\",\n    \"8800\",\n    \"8801\",\n    \"8802\",\n    \"8806\",\n    \"8807\",\n    \"8808\",\n    \"8809\",\n    \"8812\",\n    \"8813\",\n    \"8814\",\n    \"8815\",\n    \"8816\",\n    \"8817\",\n    \"8818\",\n    \"8821\",\n    \"8822\",\n    \"8823\",\n    \"8824\",\n    \"8825\",\n    \"8826\",\n    \"8827\",\n    \"8828\",\n    \"8829\",\n    \"8831\",\n    \"8833\",\n    \"8834\",\n    \"8835\",\n    \"8836\",\n    \"8837\",\n    \"8840\",\n    \"8842\",\n    \"8843\",\n    \"8844\",\n    \"8845\",\n    \"8846\",\n    \"8848\",\n    \"8849\",\n    \"8853\",\n    \"8855\",\n    \"8856\",\n    \"8858\",\n    \"8859\",\n    \"8860\",\n    \"8863\",\n    \"8864\",\n    \"8865\",\n    \"8866\",\n    \"8867\",\n    \"8869\",\n    \"8870\",\n    \"8872\",\n    \"8873\",\n    \"8874\",\n    \"8875\",\n    \"8877\",\n    \"8879\",\n    \"8881\",\n    \"8882\",\n    \"8883\",\n    \"8885\",\n    \"8886\",\n    \"8888\",\n    \"8891\",\n    \"8892\",\n    \"8893\",\n    \"8895\",\n    \"8896\",\n    \"8898\",\n    \"8899\",\n    \"8900\",\n    \"8902\",\n    \"8903\",\n    \"8908\",\n    \"8909\",\n    \"8910\",\n    \"8911\",\n    \"8912\",\n    \"8913\",\n    \"8915\",\n    \"8916\",\n    \"8919\",\n    \"8920\",\n    \"8923\",\n    \"8924\",\n    \"8925\",\n    \"8929\",\n    \"8930\",\n    \"8934\",\n    \"8935\",\n    \"8936\",\n    \"8938\",\n    \"8939\",\n    \"8941\",\n    \"8942\",\n    \"8943\",\n    \"8944\",\n    \"8945\",\n    \"8947\",\n    \"8949\",\n    \"8950\",\n    \"8951\",\n    \"8954\",\n    \"8955\",\n    \"8958\",\n    \"8961\",\n    \"8962\",\n    \"8964\",\n    \"8966\",\n    \"8968\",\n    \"8970\",\n    \"8971\",\n    \"8975\",\n    \"8976\",\n    \"8977\",\n    \"8979\",\n    \"8982\",\n    \"8985\",\n    \"8986\",\n    \"8987\",\n    \"8989\",\n    \"8990\",\n    \"8991\",\n    \"8993\",\n    \"8994\",\n    \"8995\",\n    \"8997\",\n    \"8998\",\n    \"9000\",\n    \"9006\",\n    \"9007\",\n    \"9008\",\n    \"9009\",\n    \"9011\",\n    \"9012\",\n    \"9013\",\n    \"9014\",\n    \"9017\",\n    \"9018\",\n    \"9020\",\n    \"9021\",\n    \"9022\",\n    \"9023\",\n    \"9024\",\n    \"9025\",\n    \"9026\",\n    \"9027\",\n    \"9028\",\n    \"9029\",\n    \"9030\",\n    \"9031\",\n    \"9032\",\n    \"9033\",\n    \"9034\",\n    \"9035\",\n    \"9039\",\n    \"9041\",\n    \"9043\",\n    \"9045\",\n    \"9046\",\n    \"9047\",\n    \"9048\",\n    \"9049\",\n    \"9050\",\n    \"9051\",\n    \"9053\",\n    \"9056\",\n    \"9059\",\n    \"9061\",\n    \"9062\",\n    \"9063\",\n    \"9064\",\n    \"9065\",\n    \"9066\",\n    \"9072\",\n    \"9073\",\n    \"9075\",\n    \"9077\",\n    \"9079\",\n    \"9080\",\n    \"9081\",\n    \"9082\",\n    \"9083\",\n    \"9086\",\n    \"9087\",\n    \"9090\",\n    \"9092\",\n    \"9098\",\n    \"9099\",\n    \"9100\",\n    \"9102\",\n    \"9103\",\n    \"9105\",\n    \"9108\",\n    \"9111\",\n    \"9112\",\n    \"9113\",\n    \"9115\",\n    \"9116\",\n    \"9117\",\n    \"9118\",\n    \"9125\",\n    \"9128\",\n    \"9129\",\n    \"9130\",\n    \"9131\",\n    \"9132\",\n    \"9135\",\n    \"9136\",\n    \"9137\",\n    \"9139\",\n    \"9140\",\n    \"9142\",\n    \"9145\",\n    \"9147\",\n    \"9149\",\n    \"9151\",\n    \"9152\",\n    \"9153\",\n    \"9154\",\n    \"9155\",\n    \"9156\",\n    \"9157\",\n    \"9160\",\n    \"9161\",\n    \"9162\",\n    \"9163\",\n    \"9164\",\n    \"9165\",\n    \"9166\",\n    \"9167\",\n    \"9170\",\n    \"9171\",\n    \"9173\",\n    \"9179\",\n    \"9180\",\n    \"9183\",\n    \"9184\",\n    \"9185\",\n    \"9186\",\n    \"9187\",\n    \"9188\",\n    \"9191\",\n    \"9192\",\n    \"9194\",\n    \"9198\",\n    \"9199\",\n    \"9200\",\n    \"9202\",\n    \"9203\",\n    \"9206\",\n    \"9207\",\n    \"9208\",\n    \"9210\",\n    \"9211\",\n    \"9212\",\n    \"9213\",\n    \"9216\",\n    \"9217\",\n    \"9219\",\n    \"9220\",\n    \"9221\",\n    \"9222\",\n    \"9224\",\n    \"9226\",\n    \"9227\",\n    \"9228\",\n    \"9229\",\n    \"9230\",\n    \"9235\",\n    \"9236\",\n    \"9239\",\n    \"9240\",\n    \"9243\",\n    \"9244\",\n    \"9245\",\n    \"9250\",\n    \"9251\",\n    \"9252\",\n    \"9253\",\n    \"9254\",\n    \"9255\",\n    \"9256\",\n    \"9258\",\n    \"9259\",\n    \"9261\",\n    \"9264\",\n    \"9265\",\n    \"9267\",\n    \"9268\",\n    \"9269\",\n    \"9270\",\n    \"9272\",\n    \"9274\",\n    \"9276\",\n    \"9279\",\n    \"9280\",\n    \"9281\",\n    \"9284\",\n    \"9286\",\n    \"9289\",\n    \"9293\",\n    \"9297\",\n    \"9298\",\n    \"9299\",\n    \"9300\",\n    \"9302\",\n    \"9303\",\n    \"9305\",\n    \"9306\",\n    \"9307\",\n    \"9308\",\n    \"9311\",\n    \"9312\",\n    \"9313\",\n    \"9315\",\n    \"9316\",\n    \"9317\",\n    \"9318\",\n    \"9319\",\n    \"9320\",\n    \"9321\",\n    \"9325\",\n    \"9326\",\n    \"9329\",\n    \"9334\",\n    \"9337\",\n    \"9339\",\n    \"9340\",\n    \"9343\",\n    \"9347\",\n    \"9348\",\n    \"9349\",\n    \"9350\",\n    \"9354\",\n    \"9355\",\n    \"9358\",\n    \"9360\",\n    \"9362\",\n    \"9363\",\n    \"9364\",\n    \"9366\",\n    \"9369\",\n    \"9372\",\n    \"9373\",\n    \"9374\",\n    \"9376\",\n    \"9377\",\n    \"9383\",\n    \"9384\",\n    \"9385\",\n    \"9391\",\n    \"9392\",\n    \"9393\",\n    \"9395\",\n    \"9396\",\n    \"9397\",\n    \"9398\",\n    \"9400\",\n    \"9401\",\n    \"9402\",\n    \"9404\",\n    \"9405\",\n    \"9407\",\n    \"9410\",\n    \"9411\",\n    \"9413\",\n    \"9414\",\n    \"9416\",\n    \"9419\",\n    \"9420\",\n    \"9421\",\n    \"9422\",\n    \"9424\",\n    \"9425\",\n    \"9427\",\n    \"9428\",\n    \"9430\",\n    \"9431\",\n    \"9432\",\n    \"9433\",\n    \"9434\",\n    \"9435\",\n    \"9437\",\n    \"9438\",\n    \"9439\",\n    \"9440\",\n    \"9441\",\n    \"9442\",\n    \"9445\",\n    \"9446\",\n    \"9447\",\n    \"9448\",\n    \"9450\",\n    \"9451\",\n    \"9452\",\n    \"9453\",\n    \"9454\",\n    \"9455\",\n    \"9457\",\n    \"9458\",\n    \"9460\",\n    \"9463\",\n    \"9464\",\n    \"9466\",\n    \"9467\",\n    \"9469\",\n    \"9470\",\n    \"9471\",\n    \"9472\",\n    \"9473\",\n    \"9474\",\n    \"9476\",\n    \"9477\",\n    \"9478\",\n    \"9479\",\n    \"9480\",\n    \"9482\",\n    \"9483\",\n    \"9484\",\n    \"9486\",\n    \"9488\",\n    \"9490\",\n    \"9491\",\n    \"9497\",\n    \"9498\",\n    \"9500\",\n    \"9501\",\n    \"9502\",\n    \"9506\",\n    \"9510\",\n    \"9511\",\n    \"9512\",\n    \"9515\",\n    \"9516\",\n    \"9519\",\n    \"9520\",\n    \"9521\",\n    \"9522\",\n    \"9523\",\n    \"9526\",\n    \"9527\",\n    \"9528\",\n    \"9529\",\n    \"9531\",\n    \"9533\",\n    \"9537\",\n    \"9539\",\n    \"9542\",\n    \"9549\",\n    \"9551\",\n    \"9554\",\n    \"9556\",\n    \"9557\",\n    \"9558\",\n    \"9559\",\n    \"9562\",\n    \"9563\",\n    \"9564\",\n    \"9565\",\n    \"9568\",\n    \"9569\",\n    \"9570\",\n    \"9572\",\n    \"9573\",\n    \"9574\",\n    \"9575\",\n    \"9576\",\n    \"9578\",\n    \"9579\",\n    \"9580\",\n    \"9581\",\n    \"9582\",\n    \"9583\",\n    \"9584\",\n    \"9585\",\n    \"9589\",\n    \"9591\",\n    \"9594\",\n    \"9595\",\n    \"9596\",\n    \"9597\",\n    \"9598\",\n    \"9599\",\n    \"9600\",\n    \"9601\",\n    \"9602\",\n    \"9603\",\n    \"9604\",\n    \"9605\",\n    \"9606\",\n    \"9607\",\n    \"9608\",\n    \"9610\",\n    \"9612\",\n    \"9613\",\n    \"9614\",\n    \"9615\",\n    \"9616\",\n    \"9618\",\n    \"9619\",\n    \"9622\",\n    \"9623\",\n    \"9627\",\n    \"9629\",\n    \"9631\",\n    \"9632\",\n    \"9633\",\n    \"9634\",\n    \"9635\",\n    \"9636\",\n    \"9637\",\n    \"9638\",\n    \"9640\",\n    \"9641\",\n    \"9642\",\n    \"9643\",\n    \"9644\",\n    \"9645\",\n    \"9646\",\n    \"9648\",\n    \"9649\",\n    \"9651\",\n    \"9654\",\n    \"9656\",\n    \"9659\",\n    \"9660\",\n    \"9661\",\n    \"9662\",\n    \"9663\",\n    \"9664\",\n    \"9665\",\n    \"9666\",\n    \"9669\",\n    \"9671\",\n    \"9672\",\n    \"9673\",\n    \"9675\",\n    \"9677\",\n    \"9678\",\n    \"9681\",\n    \"9682\",\n    \"9683\",\n    \"9684\",\n    \"9686\",\n    \"9687\",\n    \"9689\",\n    \"9690\",\n    \"9692\",\n    \"9693\",\n    \"9694\",\n    \"9695\",\n    \"9697\",\n    \"9698\",\n    \"9700\",\n    \"9701\",\n    \"9703\",\n    \"9705\",\n    \"9706\",\n    \"9707\",\n    \"9709\",\n    \"9714\",\n    \"9717\",\n    \"9718\",\n    \"9721\",\n    \"9722\",\n    \"9725\",\n    \"9727\",\n    \"9731\",\n    \"9733\",\n    \"9734\",\n    \"9736\",\n    \"9737\",\n    \"9739\",\n    \"9742\",\n    \"9743\",\n    \"9746\",\n    \"9749\",\n    \"9751\",\n    \"9753\",\n    \"9754\",\n    \"9756\",\n    \"9757\",\n    \"9758\",\n    \"9759\",\n    \"9760\",\n    \"9761\",\n    \"9763\",\n    \"9764\",\n    \"9766\",\n    \"9767\",\n    \"9768\",\n    \"9773\",\n    \"9774\",\n    \"9775\",\n    \"9777\",\n    \"9778\",\n    \"9780\",\n    \"9781\",\n    \"9785\",\n    \"9786\",\n    \"9787\",\n    \"9788\",\n    \"9790\",\n    \"9791\",\n    \"9792\",\n    \"9794\",\n    \"9795\",\n    \"9797\",\n    \"9798\",\n    \"9800\",\n    \"9801\",\n    \"9802\",\n    \"9803\",\n    \"9804\",\n    \"9805\",\n    \"9808\",\n    \"9810\",\n    \"9812\",\n    \"9813\",\n    \"9815\",\n    \"9816\",\n    \"9817\",\n    \"9818\",\n    \"9821\",\n    \"9822\",\n    \"9824\",\n    \"9825\",\n    \"9826\",\n    \"9828\",\n    \"9829\",\n    \"9830\",\n    \"9832\",\n    \"9833\",\n    \"9836\",\n    \"9837\",\n    \"9839\",\n    \"9841\",\n    \"9842\",\n    \"9843\",\n    \"9844\",\n    \"9845\",\n    \"9847\",\n    \"9848\",\n    \"9849\",\n    \"9850\",\n    \"9852\",\n    \"9857\",\n    \"9858\",\n    \"9859\",\n    \"9860\",\n    \"9861\",\n    \"9864\",\n    \"9865\",\n    \"9867\",\n    \"9869\",\n    \"9870\",\n    \"9871\",\n    \"9873\",\n    \"9876\",\n    \"9877\",\n    \"9878\",\n    \"9879\",\n    \"9881\",\n    \"9882\",\n    \"9886\",\n    \"9887\",\n    \"9889\",\n    \"9890\",\n    \"9892\",\n    \"9893\",\n    \"9894\",\n    \"9896\",\n    \"9897\",\n    \"9899\",\n    \"9900\",\n    \"9901\",\n    \"9903\",\n    \"9904\",\n    \"9905\",\n    \"9907\",\n    \"9908\",\n    \"9909\",\n    \"9918\",\n    \"9920\",\n    \"9921\",\n    \"9924\",\n    \"9926\",\n    \"9928\",\n    \"9929\",\n    \"9932\",\n    \"9933\",\n    \"9934\",\n    \"9935\",\n    \"9936\",\n    \"9937\",\n    \"9939\",\n    \"9940\",\n    \"9941\",\n    \"9944\",\n    \"9947\",\n    \"9949\",\n    \"9950\",\n    \"9952\",\n    \"9954\",\n    \"9955\",\n    \"9957\",\n    \"9958\",\n    \"9959\",\n    \"9961\",\n    \"9962\",\n    \"9963\",\n    \"9966\",\n    \"9967\",\n    \"9969\",\n    \"9970\",\n    \"9973\",\n    \"9975\",\n    \"9976\",\n    \"9979\",\n    \"9982\",\n    \"9985\",\n    \"9986\",\n    \"9987\",\n    \"9988\",\n    \"9990\",\n    \"9992\",\n    \"9994\",\n    \"9995\",\n    \"9996\",\n    \"9998\",\n    \"9999\",\n    \"10000\",\n    \"10002\",\n    \"10003\",\n    \"10004\",\n    \"10008\",\n    \"10009\",\n    \"10010\",\n    \"10011\",\n    \"10012\",\n    \"10016\",\n    \"10018\",\n    \"10019\",\n    \"10021\",\n    \"10022\",\n    \"10023\",\n    \"10024\",\n    \"10025\",\n    \"10027\",\n    \"10029\",\n    \"10030\",\n    \"10031\",\n    \"10032\",\n    \"10036\",\n    \"10039\",\n    \"10040\",\n    \"10041\",\n    \"10042\",\n    \"10043\",\n    \"10044\",\n    \"10047\",\n    \"10049\",\n    \"10050\",\n    \"10052\",\n    \"10054\",\n    \"10057\",\n    \"10061\",\n    \"10062\",\n    \"10063\",\n    \"10064\",\n    \"10066\",\n    \"10067\",\n    \"10069\",\n    \"10070\",\n    \"10072\",\n    \"10073\",\n    \"10075\",\n    \"10076\",\n    \"10080\",\n    \"10081\",\n    \"10083\",\n    \"10084\",\n    \"10087\",\n    \"10088\",\n    \"10093\",\n    \"10095\",\n    \"10096\",\n    \"10098\",\n    \"10100\",\n    \"10104\",\n    \"10105\",\n    \"10106\",\n    \"10107\",\n    \"10108\",\n    \"10110\",\n    \"10111\",\n    \"10113\",\n    \"10117\",\n    \"10119\",\n    \"10120\",\n    \"10121\",\n    \"10122\",\n    \"10123\",\n    \"10125\",\n    \"10126\",\n    \"10127\",\n    \"10129\",\n    \"10131\",\n    \"10133\",\n    \"10136\",\n    \"10137\",\n    \"10139\",\n    \"10142\",\n    \"10144\",\n    \"10146\",\n    \"10148\",\n    \"10150\",\n    \"10151\",\n    \"10154\",\n    \"10158\",\n    \"10160\",\n    \"10161\",\n    \"10162\",\n    \"10163\",\n    \"10165\",\n    \"10167\",\n    \"10168\",\n    \"10169\",\n    \"10170\",\n    \"10171\",\n    \"10172\",\n    \"10173\",\n    \"10174\",\n    \"10175\",\n    \"10176\",\n    \"10177\",\n    \"10178\",\n    \"10179\",\n    \"10180\",\n    \"10181\",\n    \"10183\",\n    \"10186\",\n    \"10189\",\n    \"10190\",\n    \"10191\",\n    \"10192\",\n    \"10193\",\n    \"10195\",\n    \"10197\",\n    \"10199\",\n    \"10201\",\n    \"10202\",\n    \"10203\",\n    \"10204\",\n    \"10205\",\n    \"10207\",\n    \"10208\",\n    \"10209\",\n    \"10211\",\n    \"10212\",\n    \"10214\",\n    \"10215\",\n    \"10216\",\n    \"10217\",\n    \"10218\",\n    \"10219\",\n    \"10221\",\n    \"10222\",\n    \"10223\",\n    \"10224\",\n    \"10226\",\n    \"10228\",\n    \"10229\",\n    \"10230\",\n    \"10231\",\n    \"10232\",\n    \"10233\",\n    \"10236\",\n    \"10237\",\n    \"10239\",\n    \"10241\",\n    \"10242\",\n    \"10243\",\n    \"10249\",\n    \"10252\",\n    \"10253\",\n    \"10258\",\n    \"10259\",\n    \"10261\",\n    \"10262\",\n    \"10263\",\n    \"10265\",\n    \"10267\",\n    \"10269\",\n    \"10270\",\n    \"10272\",\n    \"10273\",\n    \"10274\",\n    \"10275\",\n    \"10276\",\n    \"10277\",\n    \"10278\",\n    \"10288\",\n    \"10291\",\n    \"10293\",\n    \"10295\",\n    \"10296\",\n    \"10297\",\n    \"10299\",\n    \"10301\",\n    \"10302\",\n    \"10303\",\n    \"10308\",\n    \"10309\",\n    \"10310\",\n    \"10311\",\n    \"10312\",\n    \"10313\",\n    \"10315\",\n    \"10317\",\n    \"10320\",\n    \"10321\",\n    \"10323\",\n    \"10327\",\n    \"10328\",\n    \"10329\",\n    \"10331\",\n    \"10332\",\n    \"10336\",\n    \"10340\",\n    \"10341\",\n    \"10342\",\n    \"10343\",\n    \"10346\",\n    \"10347\",\n    \"10348\",\n    \"10349\",\n    \"10350\",\n    \"10351\",\n    \"10353\",\n    \"10355\",\n    \"10357\",\n    \"10358\",\n    \"10359\",\n    \"10361\",\n    \"10362\",\n    \"10363\",\n    \"10364\",\n    \"10366\",\n    \"10367\",\n    \"10369\",\n    \"10371\",\n    \"10375\",\n    \"10377\",\n    \"10378\",\n    \"10379\",\n    \"10381\",\n    \"10384\",\n    \"10386\",\n    \"10387\",\n    \"10388\",\n    \"10389\",\n    \"10390\",\n    \"10393\",\n    \"10394\",\n    \"10395\",\n    \"10397\",\n    \"10398\",\n    \"10401\",\n    \"10402\",\n    \"10405\",\n    \"10409\",\n    \"10410\",\n    \"10413\",\n    \"10414\",\n    \"10415\",\n    \"10421\",\n    \"10426\",\n    \"10427\",\n    \"10429\",\n    \"10430\",\n    \"10431\",\n    \"10432\",\n    \"10433\",\n    \"10437\",\n    \"10438\",\n    \"10439\",\n    \"10440\",\n    \"10446\",\n    \"10447\",\n    \"10448\",\n    \"10449\",\n    \"10451\",\n    \"10453\",\n    \"10460\",\n    \"10461\",\n    \"10462\",\n    \"10464\",\n    \"10467\",\n    \"10468\",\n    \"10469\",\n    \"10470\",\n    \"10471\",\n    \"10472\",\n    \"10473\",\n    \"10474\",\n    \"10475\",\n    \"10477\",\n    \"10479\",\n    \"10480\",\n    \"10481\",\n    \"10482\",\n    \"10483\",\n    \"10484\",\n    \"10485\",\n    \"10486\",\n    \"10487\",\n    \"10488\",\n    \"10489\",\n    \"10490\",\n    \"10494\",\n    \"10495\",\n    \"10501\",\n    \"10502\",\n    \"10503\",\n    \"10504\",\n    \"10505\",\n    \"10506\",\n    \"10507\",\n    \"10508\",\n    \"10509\",\n    \"10510\",\n    \"10514\",\n    \"10515\",\n    \"10516\",\n    \"10517\",\n    \"10518\",\n    \"10524\",\n    \"10525\",\n    \"10526\",\n    \"10527\",\n    \"10529\",\n    \"10530\",\n    \"10531\",\n    \"10532\",\n    \"10534\",\n    \"10538\",\n    \"10539\",\n    \"10541\",\n    \"10542\",\n    \"10543\",\n    \"10546\",\n    \"10547\",\n    \"10548\",\n    \"10551\",\n    \"10552\",\n    \"10553\",\n    \"10557\",\n    \"10558\",\n    \"10561\",\n    \"10564\",\n    \"10566\",\n    \"10572\",\n    \"10573\",\n    \"10574\",\n    \"10581\",\n    \"10582\",\n    \"10583\",\n    \"10584\",\n    \"10585\",\n    \"10586\",\n    \"10587\",\n    \"10588\",\n    \"10589\",\n    \"10590\",\n    \"10591\",\n    \"10592\",\n    \"10593\",\n    \"10597\",\n    \"10598\",\n    \"10605\",\n    \"10606\",\n    \"10607\",\n    \"10608\",\n    \"10609\",\n    \"10610\",\n    \"10611\",\n    \"10612\",\n    \"10615\",\n    \"10617\",\n    \"10618\",\n    \"10619\",\n    \"10620\",\n    \"10621\",\n    \"10622\",\n    \"10624\",\n    \"10625\",\n    \"10626\",\n    \"10627\",\n    \"10628\",\n    \"10629\",\n    \"10632\",\n    \"10633\",\n    \"10636\",\n    \"10637\",\n    \"10639\",\n    \"10640\",\n    \"10641\",\n    \"10642\",\n    \"10644\",\n    \"10645\",\n    \"10646\",\n    \"10648\",\n    \"10650\",\n    \"10651\",\n    \"10653\",\n    \"10656\",\n    \"10657\",\n    \"10666\",\n    \"10667\",\n    \"10668\",\n    \"10669\",\n    \"10670\",\n    \"10674\",\n    \"10677\",\n    \"10679\",\n    \"10680\",\n    \"10682\",\n    \"10683\",\n    \"10684\",\n    \"10686\",\n    \"10687\",\n    \"10688\",\n    \"10690\",\n    \"10693\",\n    \"10698\",\n    \"10699\",\n    \"10701\",\n    \"10702\",\n    \"10703\",\n    \"10704\",\n    \"10707\",\n    \"10710\",\n    \"10712\",\n    \"10713\",\n    \"10714\",\n    \"10719\",\n    \"10720\",\n    \"10721\",\n    \"10724\",\n    \"10726\",\n    \"10727\",\n    \"10728\",\n    \"10730\",\n    \"10731\",\n    \"10734\",\n    \"10736\",\n    \"10737\",\n    \"10739\",\n    \"10740\",\n    \"10741\",\n    \"10742\",\n    \"10743\",\n    \"10744\",\n    \"10745\",\n    \"10746\",\n    \"10747\",\n    \"10748\",\n    \"10751\",\n    \"10752\",\n    \"10753\",\n    \"10754\",\n    \"10756\",\n    \"10757\",\n    \"10759\",\n    \"10760\",\n    \"10763\",\n    \"10765\",\n    \"10766\",\n    \"10767\",\n    \"10768\",\n    \"10769\",\n    \"10771\",\n    \"10773\",\n    \"10774\",\n    \"10775\",\n    \"10776\",\n    \"10777\",\n    \"10778\",\n    \"10779\",\n    \"10781\",\n    \"10782\",\n    \"10784\",\n    \"10787\",\n    \"10788\",\n    \"10789\",\n    \"10792\",\n    \"10794\",\n    \"10795\",\n    \"10796\",\n    \"10798\",\n    \"10799\",\n    \"10800\",\n    \"10803\",\n    \"10804\",\n    \"10805\",\n    \"10810\",\n    \"10813\",\n    \"10814\",\n    \"10817\",\n    \"10821\",\n    \"10822\",\n    \"10824\",\n    \"10825\",\n    \"10828\",\n    \"10829\",\n    \"10830\",\n    \"10831\",\n    \"10832\",\n    \"10835\",\n    \"10836\",\n    \"10842\",\n    \"10844\",\n    \"10845\",\n    \"10846\",\n    \"10847\",\n    \"10850\",\n    \"10851\",\n    \"10855\",\n    \"10857\",\n    \"10858\",\n    \"10859\",\n    \"10860\",\n    \"10861\",\n    \"10862\",\n    \"10864\",\n    \"10866\",\n    \"10868\",\n    \"10870\",\n    \"10872\",\n    \"10875\",\n    \"10876\",\n    \"10877\",\n    \"10878\",\n    \"10879\",\n    \"10880\",\n    \"10881\",\n    \"10882\",\n    \"10884\",\n    \"10887\",\n    \"10892\",\n    \"10895\",\n    \"10896\",\n    \"10898\",\n    \"10900\",\n    \"10901\",\n    \"10905\",\n    \"10906\",\n    \"10911\",\n    \"10913\",\n    \"10914\",\n    \"10915\",\n    \"10916\",\n    \"10917\",\n    \"10918\",\n    \"10920\",\n    \"10922\",\n    \"10923\",\n    \"10924\",\n    \"10925\",\n    \"10928\",\n    \"10929\",\n    \"10931\",\n    \"10934\",\n    \"10936\",\n    \"10938\",\n    \"10940\",\n    \"10942\",\n    \"10943\",\n    \"10946\",\n    \"10948\",\n    \"10949\",\n    \"10952\",\n    \"10953\",\n    \"10963\",\n    \"10968\",\n    \"10969\",\n    \"10972\",\n    \"10973\",\n    \"10975\",\n    \"10976\",\n    \"10977\",\n    \"10978\",\n    \"10983\",\n    \"10985\",\n    \"10989\",\n    \"10990\",\n    \"10992\",\n    \"10993\",\n    \"10994\",\n    \"10995\",\n    \"10996\",\n    \"10998\",\n    \"11001\",\n    \"11002\",\n    \"11004\",\n    \"11005\",\n    \"11008\",\n    \"11010\",\n    \"11011\",\n    \"11013\",\n    \"11014\",\n    \"11016\",\n    \"11018\",\n    \"11019\",\n    \"11021\",\n    \"11023\",\n    \"11024\",\n    \"11029\",\n    \"11030\",\n    \"11032\",\n    \"11033\",\n    \"11034\",\n    \"11037\",\n    \"11040\",\n    \"11041\",\n    \"11045\",\n    \"11047\",\n    \"11050\",\n    \"11051\",\n    \"11053\",\n    \"11054\",\n    \"11055\",\n    \"11057\",\n    \"11058\",\n    \"11059\",\n    \"11061\",\n    \"11062\",\n    \"11068\",\n    \"11069\",\n    \"11071\",\n    \"11072\",\n    \"11074\",\n    \"11075\",\n    \"11076\",\n    \"11077\",\n    \"11079\",\n    \"11081\",\n    \"11082\",\n    \"11084\",\n    \"11086\",\n    \"11087\",\n    \"11088\",\n    \"11089\",\n    \"11090\",\n    \"11092\",\n    \"11093\",\n    \"11095\",\n    \"11096\",\n    \"11097\",\n    \"11098\",\n    \"11100\",\n    \"11102\",\n    \"11103\",\n    \"11104\",\n    \"11106\",\n    \"11108\",\n    \"11109\",\n    \"11110\",\n    \"11111\",\n    \"11112\",\n    \"11115\",\n    \"11118\",\n    \"11121\",\n    \"11122\",\n    \"11124\",\n    \"11125\",\n    \"11130\",\n    \"11133\",\n    \"11134\",\n    \"11135\",\n    \"11136\",\n    \"11139\",\n    \"11140\",\n    \"11141\",\n    \"11143\",\n    \"11144\",\n    \"11146\",\n    \"11148\",\n    \"11150\",\n    \"11151\",\n    \"11152\",\n    \"11153\",\n    \"11156\",\n    \"11157\",\n    \"11158\",\n    \"11159\",\n    \"11160\",\n    \"11161\",\n    \"11162\",\n    \"11163\",\n    \"11165\",\n    \"11171\",\n    \"11172\",\n    \"11173\",\n    \"11174\",\n    \"11175\",\n    \"11176\",\n    \"11178\",\n    \"11179\",\n    \"11182\",\n    \"11183\",\n    \"11184\",\n    \"11188\",\n    \"11189\",\n    \"11192\",\n    \"11193\",\n    \"11194\",\n    \"11196\",\n    \"11197\",\n    \"11200\",\n    \"11203\",\n    \"11204\",\n    \"11205\",\n    \"11207\",\n    \"11208\",\n    \"11209\",\n    \"11210\",\n    \"11212\",\n    \"11213\",\n    \"11214\",\n    \"11216\",\n    \"11217\",\n    \"11221\",\n    \"11224\",\n    \"11225\",\n    \"11226\",\n    \"11229\",\n    \"11230\",\n    \"11231\",\n    \"11232\",\n    \"11233\",\n    \"11234\",\n    \"11236\",\n    \"11237\",\n    \"11239\",\n    \"11243\",\n    \"11244\",\n    \"11245\",\n    \"11247\",\n    \"11248\",\n    \"11249\",\n    \"11250\",\n    \"11251\",\n    \"11253\",\n    \"11255\",\n    \"11256\",\n    \"11258\",\n    \"11259\",\n    \"11261\",\n    \"11264\",\n    \"11266\",\n    \"11267\",\n    \"11269\",\n    \"11270\",\n    \"11271\",\n    \"11273\",\n    \"11275\",\n    \"11277\",\n    \"11278\",\n    \"11279\",\n    \"11281\",\n    \"11282\",\n    \"11286\",\n    \"11287\",\n    \"11288\",\n    \"11290\",\n    \"11291\",\n    \"11292\",\n    \"11294\",\n    \"11299\",\n    \"11301\",\n    \"11302\",\n    \"11303\",\n    \"11305\",\n    \"11307\",\n    \"11308\",\n    \"11310\",\n    \"11311\",\n    \"11312\",\n    \"11313\",\n    \"11315\",\n    \"11316\",\n    \"11321\",\n    \"11323\",\n    \"11325\",\n    \"11326\",\n    \"11327\",\n    \"11328\",\n    \"11329\",\n    \"11330\",\n    \"11331\",\n    \"11332\",\n    \"11336\",\n    \"11337\",\n    \"11338\",\n    \"11339\",\n    \"11340\",\n    \"11341\",\n    \"11343\",\n    \"11347\",\n    \"11348\",\n    \"11349\",\n    \"11350\",\n    \"11351\",\n    \"11352\",\n    \"11353\",\n    \"11354\",\n    \"11356\",\n    \"11357\",\n    \"11359\",\n    \"11361\",\n    \"11363\",\n    \"11365\",\n    \"11366\",\n    \"11370\",\n    \"11372\",\n    \"11375\",\n    \"11377\",\n    \"11378\",\n    \"11379\",\n    \"11381\",\n    \"11385\",\n    \"11386\",\n    \"11388\",\n    \"11389\",\n    \"11390\",\n    \"11398\",\n    \"11404\",\n    \"11405\",\n    \"11407\",\n    \"11410\",\n    \"11411\",\n    \"11412\",\n    \"11415\",\n    \"11419\",\n    \"11422\",\n    \"11424\",\n    \"11425\",\n    \"11426\",\n    \"11427\",\n    \"11433\",\n    \"11436\",\n    \"11437\",\n    \"11438\",\n    \"11440\",\n    \"11441\",\n    \"11442\",\n    \"11443\",\n    \"11447\",\n    \"11448\",\n    \"11449\",\n    \"11450\",\n    \"11451\",\n    \"11455\",\n    \"11456\",\n    \"11458\",\n    \"11459\",\n    \"11460\",\n    \"11461\",\n    \"11464\",\n    \"11465\",\n    \"11469\",\n    \"11470\",\n    \"11471\",\n    \"11473\",\n    \"11474\",\n    \"11475\",\n    \"11476\",\n    \"11477\",\n    \"11478\",\n    \"11482\",\n    \"11484\",\n    \"11485\",\n    \"11486\",\n    \"11490\",\n    \"11493\",\n    \"11494\",\n    \"11495\",\n    \"11499\",\n    \"11500\",\n    \"11501\",\n    \"11507\",\n    \"11512\",\n    \"11516\",\n    \"11517\",\n    \"11518\",\n    \"11519\",\n    \"11520\",\n    \"11522\",\n    \"11524\",\n    \"11525\",\n    \"11526\",\n    \"11527\",\n    \"11529\",\n    \"11530\",\n    \"11531\",\n    \"11534\",\n    \"11535\",\n    \"11536\",\n    \"11537\",\n    \"11539\",\n    \"11541\",\n    \"11542\",\n    \"11543\",\n    \"11544\",\n    \"11550\",\n    \"11551\",\n    \"11553\",\n    \"11554\",\n    \"11555\",\n    \"11557\",\n    \"11560\",\n    \"11561\",\n    \"11562\",\n    \"11564\",\n    \"11565\",\n    \"11566\",\n    \"11567\",\n    \"11568\",\n    \"11569\",\n    \"11570\",\n    \"11571\",\n    \"11573\",\n    \"11574\",\n    \"11575\",\n    \"11576\",\n    \"11577\",\n    \"11579\",\n    \"11580\",\n    \"11585\",\n    \"11586\",\n    \"11592\",\n    \"11598\",\n    \"11600\",\n    \"11602\",\n    \"11604\",\n    \"11610\",\n    \"11611\",\n    \"11612\",\n    \"11614\",\n    \"11615\",\n    \"11619\",\n    \"11620\",\n    \"11621\",\n    \"11622\",\n    \"11623\",\n    \"11624\",\n    \"11625\",\n    \"11626\",\n    \"11628\",\n    \"11629\",\n    \"11630\",\n    \"11631\",\n    \"11632\",\n    \"11633\",\n    \"11634\",\n    \"11635\",\n    \"11637\",\n    \"11640\",\n    \"11644\",\n    \"11645\",\n    \"11647\",\n    \"11648\",\n    \"11649\",\n    \"11650\",\n    \"11651\",\n    \"11653\",\n    \"11654\",\n    \"11655\",\n    \"11657\",\n    \"11658\",\n    \"11659\",\n    \"11661\",\n    \"11667\",\n    \"11668\",\n    \"11669\",\n    \"11674\",\n    \"11676\",\n    \"11677\",\n    \"11678\",\n    \"11679\",\n    \"11680\",\n    \"11682\",\n    \"11683\",\n    \"11685\",\n    \"11687\",\n    \"11689\",\n    \"11691\",\n    \"11692\",\n    \"11693\",\n    \"11697\",\n    \"11698\",\n    \"11699\",\n    \"11701\",\n    \"11702\",\n    \"11703\",\n    \"11704\",\n    \"11705\",\n    \"11706\",\n    \"11707\",\n    \"11709\",\n    \"11710\",\n    \"11711\",\n    \"11714\",\n    \"11717\",\n    \"11718\",\n    \"11719\",\n    \"11721\",\n    \"11722\",\n    \"11723\",\n    \"11724\",\n    \"11725\",\n    \"11726\",\n    \"11727\",\n    \"11729\",\n    \"11730\",\n    \"11732\",\n    \"11735\",\n    \"11737\",\n    \"11739\",\n    \"11740\",\n    \"11741\",\n    \"11743\",\n    \"11744\",\n    \"11746\",\n    \"11748\",\n    \"11749\",\n    \"11751\",\n    \"11752\",\n    \"11753\",\n    \"11755\",\n    \"11759\",\n    \"11762\",\n    \"11763\",\n    \"11764\",\n    \"11765\",\n    \"11766\",\n    \"11769\",\n    \"11770\",\n    \"11771\",\n    \"11775\",\n    \"11776\",\n    \"11778\",\n    \"11780\",\n    \"11781\",\n    \"11782\",\n    \"11783\",\n    \"11785\",\n    \"11787\",\n    \"11788\",\n    \"11790\",\n    \"11791\",\n    \"11793\",\n    \"11794\",\n    \"11796\",\n    \"11797\",\n    \"11798\",\n    \"11800\",\n    \"11801\",\n    \"11804\",\n    \"11806\",\n    \"11807\",\n    \"11809\",\n    \"11810\",\n    \"11811\",\n    \"11812\",\n    \"11814\",\n    \"11816\",\n    \"11820\",\n    \"11821\",\n    \"11822\",\n    \"11823\",\n    \"11824\",\n    \"11827\",\n    \"11828\",\n    \"11831\",\n    \"11832\",\n    \"11833\",\n    \"11834\",\n    \"11835\",\n    \"11836\",\n    \"11837\",\n    \"11838\",\n    \"11840\",\n    \"11841\",\n    \"11842\",\n    \"11843\",\n    \"11844\",\n    \"11846\",\n    \"11850\",\n    \"11852\",\n    \"11853\",\n    \"11854\",\n    \"11855\",\n    \"11856\",\n    \"11857\",\n    \"11858\",\n    \"11859\",\n    \"11861\",\n    \"11864\",\n    \"11865\",\n    \"11867\",\n    \"11869\",\n    \"11870\",\n    \"11871\",\n    \"11872\",\n    \"11875\",\n    \"11876\",\n    \"11877\",\n    \"11878\",\n    \"11879\",\n    \"11880\",\n    \"11883\",\n    \"11885\",\n    \"11887\",\n    \"11888\",\n    \"11891\",\n    \"11893\",\n    \"11894\",\n    \"11895\",\n    \"11896\",\n    \"11899\",\n    \"11900\",\n    \"11903\",\n    \"11905\",\n    \"11906\",\n    \"11907\",\n    \"11908\",\n    \"11909\",\n    \"11912\",\n    \"11913\",\n    \"11914\",\n    \"11915\",\n    \"11916\",\n    \"11919\",\n    \"11920\",\n    \"11924\",\n    \"11929\",\n    \"11933\",\n    \"11935\",\n    \"11937\",\n    \"11938\",\n    \"11939\",\n    \"11940\",\n    \"11941\",\n    \"11944\",\n    \"11945\",\n    \"11947\",\n    \"11950\",\n    \"11952\",\n    \"11953\",\n    \"11956\",\n    \"11957\",\n    \"11958\",\n    \"11959\",\n    \"11960\",\n    \"11961\",\n    \"11965\",\n    \"11966\",\n    \"11967\",\n    \"11968\",\n    \"11969\",\n    \"11970\",\n    \"11971\",\n    \"11972\",\n    \"11974\",\n    \"11976\",\n    \"11977\",\n    \"11981\",\n    \"11985\",\n    \"11987\",\n    \"11989\",\n    \"11991\",\n    \"11993\",\n    \"11994\",\n    \"11996\",\n    \"11997\",\n    \"11998\",\n    \"11999\",\n    \"12000\",\n    \"12001\",\n    \"12002\",\n    \"12003\",\n    \"12004\",\n    \"12007\",\n    \"12010\",\n    \"12012\",\n    \"12013\",\n    \"12014\",\n    \"12015\",\n    \"12017\",\n    \"12018\",\n    \"12019\",\n    \"12024\",\n    \"12029\",\n    \"12035\",\n    \"12036\",\n    \"12037\",\n    \"12041\",\n    \"12044\",\n    \"12045\",\n    \"12046\",\n    \"12048\",\n    \"12049\",\n    \"12050\",\n    \"12051\",\n    \"12052\",\n    \"12053\",\n    \"12057\",\n    \"12058\",\n    \"12059\",\n    \"12060\",\n    \"12061\",\n    \"12062\",\n    \"12065\",\n    \"12066\",\n    \"12067\",\n    \"12069\",\n    \"12070\",\n    \"12071\",\n    \"12073\",\n    \"12074\",\n    \"12075\",\n    \"12077\",\n    \"12078\",\n    \"12079\",\n    \"12080\",\n    \"12081\",\n    \"12082\",\n    \"12084\",\n    \"12085\",\n    \"12086\",\n    \"12087\",\n    \"12088\",\n    \"12089\",\n    \"12090\",\n    \"12091\",\n    \"12093\",\n    \"12094\",\n    \"12097\",\n    \"12098\",\n    \"12104\",\n    \"12106\",\n    \"12107\",\n    \"12111\",\n    \"12112\",\n    \"12115\",\n    \"12119\",\n    \"12124\",\n    \"12125\",\n    \"12126\",\n    \"12127\",\n    \"12128\",\n    \"12130\",\n    \"12131\",\n    \"12133\",\n    \"12136\",\n    \"12140\",\n    \"12141\",\n    \"12142\",\n    \"12144\",\n    \"12145\",\n    \"12146\",\n    \"12147\",\n    \"12148\",\n    \"12149\",\n    \"12150\",\n    \"12151\",\n    \"12155\",\n    \"12156\",\n    \"12160\",\n    \"12162\",\n    \"12163\",\n    \"12165\",\n    \"12166\",\n    \"12169\",\n    \"12170\",\n    \"12171\",\n    \"12177\",\n    \"12178\",\n    \"12180\",\n    \"12182\",\n    \"12184\",\n    \"12185\",\n    \"12186\",\n    \"12187\",\n    \"12188\",\n    \"12190\",\n    \"12195\",\n    \"12199\",\n    \"12200\",\n    \"12201\",\n    \"12202\",\n    \"12203\",\n    \"12206\",\n    \"12207\",\n    \"12208\",\n    \"12209\",\n    \"12211\",\n    \"12212\",\n    \"12216\",\n    \"12217\",\n    \"12218\",\n    \"12220\",\n    \"12221\",\n    \"12222\",\n    \"12224\",\n    \"12225\",\n    \"12227\",\n    \"12228\",\n    \"12230\",\n    \"12231\",\n    \"12233\",\n    \"12235\",\n    \"12236\",\n    \"12237\",\n    \"12238\",\n    \"12241\",\n    \"12242\",\n    \"12243\",\n    \"12244\",\n    \"12245\",\n    \"12246\",\n    \"12248\",\n    \"12249\",\n    \"12250\",\n    \"12251\",\n    \"12253\",\n    \"12254\",\n    \"12256\",\n    \"12257\",\n    \"12258\",\n    \"12259\",\n    \"12261\",\n    \"12262\",\n    \"12264\",\n    \"12267\",\n    \"12270\",\n    \"12271\",\n    \"12272\",\n    \"12273\",\n    \"12274\",\n    \"12275\",\n    \"12278\",\n    \"12279\",\n    \"12280\",\n    \"12281\",\n    \"12282\",\n    \"12283\",\n    \"12285\",\n    \"12286\",\n    \"12288\",\n    \"12289\",\n    \"12290\",\n    \"12291\",\n    \"12293\",\n    \"12295\",\n    \"12297\",\n    \"12299\",\n    \"12300\",\n    \"12301\",\n    \"12303\",\n    \"12305\",\n    \"12306\",\n    \"12307\",\n    \"12308\",\n    \"12312\",\n    \"12314\",\n    \"12318\",\n    \"12319\",\n    \"12322\",\n    \"12323\",\n    \"12325\",\n    \"12327\",\n    \"12328\",\n    \"12329\",\n    \"12330\",\n    \"12331\",\n    \"12333\",\n    \"12334\",\n    \"12336\",\n    \"12337\",\n    \"12339\",\n    \"12343\",\n    \"12345\",\n    \"12347\",\n    \"12348\",\n    \"12351\",\n    \"12353\",\n    \"12354\",\n    \"12355\",\n    \"12359\",\n    \"12360\",\n    \"12364\",\n    \"12366\",\n    \"12367\",\n    \"12368\",\n    \"12371\",\n    \"12372\",\n    \"12373\",\n    \"12374\",\n    \"12375\",\n    \"12377\",\n    \"12378\",\n    \"12379\",\n    \"12380\",\n    \"12381\",\n    \"12385\",\n    \"12386\",\n    \"12387\",\n    \"12389\",\n    \"12391\",\n    \"12392\",\n    \"12393\",\n    \"12395\",\n    \"12400\",\n    \"12401\",\n    \"12402\",\n    \"12404\",\n    \"12405\",\n    \"12407\",\n    \"12409\",\n    \"12410\",\n    \"12411\",\n    \"12412\",\n    \"12415\",\n    \"12416\",\n    \"12417\",\n    \"12419\",\n    \"12423\",\n    \"12425\",\n    \"12426\",\n    \"12428\",\n    \"12429\",\n    \"12430\",\n    \"12431\",\n    \"12432\",\n    \"12433\",\n    \"12434\",\n    \"12435\",\n    \"12436\",\n    \"12437\",\n    \"12440\",\n    \"12442\",\n    \"12443\",\n    \"12444\",\n    \"12447\",\n    \"12448\",\n    \"12449\",\n    \"12450\",\n    \"12451\",\n    \"12456\",\n    \"12457\",\n    \"12458\",\n    \"12463\",\n    \"12464\",\n    \"12465\",\n    \"12466\",\n    \"12469\",\n    \"12470\",\n    \"12471\",\n    \"12472\",\n    \"12474\",\n    \"12475\",\n    \"12476\",\n    \"12478\",\n    \"12481\",\n    \"12483\",\n    \"12491\",\n    \"12492\",\n    \"12493\",\n    \"12494\",\n    \"12495\",\n    \"12496\",\n    \"12498\",\n    \"12499\",\n    \"12501\",\n    \"12502\",\n    \"12503\",\n    \"12505\",\n    \"12508\",\n    \"12510\",\n    \"12511\",\n    \"12512\",\n    \"12514\",\n    \"12515\",\n    \"12516\",\n    \"12517\",\n    \"12526\",\n    \"12527\",\n    \"12528\",\n    \"12529\",\n    \"12530\",\n    \"12531\",\n    \"12532\",\n    \"12533\",\n    \"12537\",\n    \"12538\",\n    \"12539\",\n    \"12540\",\n    \"12542\",\n    \"12543\",\n    \"12545\",\n    \"12548\",\n    \"12550\",\n    \"12552\",\n    \"12558\",\n    \"12559\",\n    \"12560\",\n    \"12561\",\n    \"12562\",\n    \"12563\",\n    \"12564\",\n    \"12565\",\n    \"12566\",\n    \"12568\",\n    \"12569\",\n    \"12570\",\n    \"12571\",\n    \"12572\",\n    \"12573\",\n    \"12574\",\n    \"12575\",\n    \"12576\",\n    \"12580\",\n    \"12581\",\n    \"12582\",\n    \"12584\",\n    \"12585\",\n    \"12586\",\n    \"12588\",\n    \"12589\",\n    \"12590\",\n    \"12592\",\n    \"12593\",\n    \"12594\",\n    \"12596\",\n    \"12597\",\n    \"12598\",\n    \"12600\",\n    \"12603\",\n    \"12604\",\n    \"12605\",\n    \"12609\",\n    \"12610\",\n    \"12614\",\n    \"12616\",\n    \"12618\",\n    \"12619\",\n    \"12620\",\n    \"12622\",\n    \"12623\",\n    \"12624\",\n    \"12625\",\n    \"12630\",\n    \"12632\",\n    \"12633\",\n    \"12634\",\n    \"12635\",\n    \"12636\",\n    \"12637\",\n    \"12638\",\n    \"12639\",\n    \"12640\",\n    \"12643\",\n    \"12646\",\n    \"12648\",\n    \"12649\",\n    \"12650\",\n    \"12651\",\n    \"12653\",\n    \"12654\",\n    \"12655\",\n    \"12656\",\n    \"12657\",\n    \"12658\",\n    \"12659\",\n    \"12660\",\n    \"12663\",\n    \"12666\",\n    \"12667\",\n    \"12668\",\n    \"12671\",\n    \"12674\",\n    \"12678\",\n    \"12680\",\n    \"12684\",\n    \"12686\",\n    \"12687\",\n    \"12689\",\n    \"12690\",\n    \"12693\",\n    \"12695\",\n    \"12696\",\n    \"12699\",\n    \"12700\",\n    \"12701\",\n    \"12702\",\n    \"12703\",\n    \"12704\",\n    \"12708\",\n    \"12709\",\n    \"12713\",\n    \"12715\",\n    \"12716\",\n    \"12717\",\n    \"12718\",\n    \"12720\",\n    \"12725\",\n    \"12726\",\n    \"12727\",\n    \"12728\",\n    \"12729\",\n    \"12731\",\n    \"12734\",\n    \"12735\",\n    \"12736\",\n    \"12737\",\n    \"12738\",\n    \"12740\",\n    \"12743\",\n    \"12744\",\n    \"12747\",\n    \"12748\",\n    \"12749\",\n    \"12750\",\n    \"12755\",\n    \"12759\",\n    \"12761\",\n    \"12764\",\n    \"12768\",\n    \"12770\",\n    \"12771\",\n    \"12774\",\n    \"12778\",\n    \"12779\",\n    \"12780\",\n    \"12781\",\n    \"12782\",\n    \"12783\",\n    \"12784\",\n    \"12788\",\n    \"12790\",\n    \"12791\",\n    \"12792\",\n    \"12794\",\n    \"12795\",\n    \"12797\",\n    \"12800\",\n    \"12801\",\n    \"12802\",\n    \"12803\",\n    \"12804\",\n    \"12805\",\n    \"12806\",\n    \"12807\",\n    \"12808\",\n    \"12810\",\n    \"12813\",\n    \"12816\",\n    \"12817\",\n    \"12818\",\n    \"12819\",\n    \"12822\",\n    \"12823\",\n    \"12825\",\n    \"12828\",\n    \"12830\",\n    \"12832\",\n    \"12834\",\n    \"12835\",\n    \"12836\",\n    \"12837\",\n    \"12840\",\n    \"12843\",\n    \"12844\",\n    \"12846\",\n    \"12848\",\n    \"12849\",\n    \"12851\",\n    \"12852\",\n    \"12855\",\n    \"12857\",\n    \"12859\",\n    \"12862\",\n    \"12865\",\n    \"12867\",\n    \"12868\",\n    \"12870\",\n    \"12872\",\n    \"12873\",\n    \"12874\",\n    \"12876\",\n    \"12877\",\n    \"12879\",\n    \"12880\",\n    \"12881\",\n    \"12883\",\n    \"12884\",\n    \"12885\",\n    \"12886\",\n    \"12887\",\n    \"12890\",\n    \"12892\",\n    \"12893\",\n    \"12895\",\n    \"12899\",\n    \"12901\",\n    \"12902\",\n    \"12904\",\n    \"12907\",\n    \"12908\",\n    \"12911\",\n    \"12912\",\n    \"12913\",\n    \"12917\",\n    \"12918\",\n    \"12919\",\n    \"12920\",\n    \"12921\",\n    \"12922\",\n    \"12923\",\n    \"12926\",\n    \"12927\",\n    \"12928\",\n    \"12930\",\n    \"12931\",\n    \"12932\",\n    \"12939\",\n    \"12941\",\n    \"12942\",\n    \"12943\",\n    \"12945\",\n    \"12946\",\n    \"12948\",\n    \"12949\",\n    \"12950\",\n    \"12953\",\n    \"12954\",\n    \"12955\",\n    \"12956\",\n    \"12958\",\n    \"12960\",\n    \"12962\",\n    \"12963\",\n    \"12964\",\n    \"12967\",\n    \"12968\",\n    \"12969\",\n    \"12970\",\n    \"12971\",\n    \"12973\",\n    \"12974\",\n    \"12975\",\n    \"12978\",\n    \"12981\",\n    \"12982\",\n    \"12985\",\n    \"12987\",\n    \"12988\",\n    \"12989\",\n    \"12990\",\n    \"12991\",\n    \"12993\",\n    \"12994\",\n    \"12996\",\n    \"12997\",\n    \"12998\",\n    \"13000\",\n    \"13001\",\n    \"13002\",\n    \"13003\",\n    \"13004\",\n    \"13008\",\n    \"13010\",\n    \"13011\",\n    \"13013\",\n    \"13014\",\n    \"13018\",\n    \"13019\",\n    \"13022\",\n    \"13023\",\n    \"13024\",\n    \"13025\",\n    \"13026\",\n    \"13027\",\n    \"13028\",\n    \"13029\",\n    \"13030\",\n    \"13031\",\n    \"13032\",\n    \"13034\",\n    \"13036\",\n    \"13037\",\n    \"13038\",\n    \"13039\",\n    \"13040\",\n    \"13041\",\n    \"13044\",\n    \"13045\",\n    \"13046\",\n    \"13048\",\n    \"13050\",\n    \"13051\",\n    \"13052\",\n    \"13053\",\n    \"13055\",\n    \"13056\",\n    \"13059\",\n    \"13060\",\n    \"13065\",\n    \"13067\",\n    \"13069\",\n    \"13070\",\n    \"13073\",\n    \"13074\",\n    \"13075\",\n    \"13076\",\n    \"13077\",\n    \"13080\",\n    \"13081\",\n    \"13082\",\n    \"13091\",\n    \"13092\",\n    \"13094\",\n    \"13095\",\n    \"13097\",\n    \"13098\",\n    \"13100\",\n    \"13101\",\n    \"13103\",\n    \"13104\",\n    \"13105\",\n    \"13106\",\n    \"13107\",\n    \"13109\",\n    \"13111\",\n    \"13112\",\n    \"13115\",\n    \"13116\",\n    \"13117\",\n    \"13118\",\n    \"13119\",\n    \"13120\",\n    \"13123\",\n    \"13124\",\n    \"13126\",\n    \"13127\",\n    \"13129\",\n    \"13130\",\n    \"13132\",\n    \"13134\",\n    \"13135\",\n    \"13137\",\n    \"13138\",\n    \"13139\",\n    \"13141\",\n    \"13142\",\n    \"13143\",\n    \"13146\",\n    \"13150\",\n    \"13151\",\n    \"13152\",\n    \"13153\",\n    \"13154\",\n    \"13157\",\n    \"13158\",\n    \"13159\",\n    \"13160\",\n    \"13161\",\n    \"13163\",\n    \"13165\",\n    \"13167\",\n    \"13168\",\n    \"13170\",\n    \"13171\",\n    \"13172\",\n    \"13173\",\n    \"13174\",\n    \"13177\",\n    \"13178\",\n    \"13182\",\n    \"13185\",\n    \"13186\",\n    \"13188\",\n    \"13190\",\n    \"13191\",\n    \"13192\",\n    \"13193\",\n    \"13194\",\n    \"13195\",\n    \"13196\",\n    \"13198\",\n    \"13200\",\n    \"13201\",\n    \"13206\",\n    \"13208\",\n    \"13211\",\n    \"13213\",\n    \"13214\",\n    \"13216\",\n    \"13218\",\n    \"13221\",\n    \"13226\",\n    \"13228\",\n    \"13232\",\n    \"13233\",\n    \"13234\",\n    \"13237\",\n    \"13239\",\n    \"13242\",\n    \"13243\",\n    \"13244\",\n    \"13245\",\n    \"13246\",\n    \"13249\",\n    \"13250\",\n    \"13254\",\n    \"13255\",\n    \"13256\",\n    \"13257\",\n    \"13259\",\n    \"13260\",\n    \"13261\",\n    \"13264\",\n    \"13266\",\n    \"13267\",\n    \"13269\",\n    \"13272\",\n    \"13273\",\n    \"13275\",\n    \"13277\",\n    \"13279\",\n    \"13281\",\n    \"13283\",\n    \"13284\",\n    \"13287\",\n    \"13288\",\n    \"13289\",\n    \"13291\",\n    \"13292\",\n    \"13295\",\n    \"13296\",\n    \"13297\",\n    \"13299\",\n    \"13301\",\n    \"13302\",\n    \"13303\",\n    \"13305\",\n    \"13306\",\n    \"13307\",\n    \"13310\",\n    \"13313\",\n    \"13314\",\n    \"13315\",\n    \"13316\",\n    \"13320\",\n    \"13322\",\n    \"13323\",\n    \"13324\",\n    \"13326\",\n    \"13327\",\n    \"13328\",\n    \"13329\",\n    \"13330\",\n    \"13332\",\n    \"13334\",\n    \"13336\",\n    \"13337\",\n    \"13338\",\n    \"13340\",\n    \"13343\",\n    \"13346\",\n    \"13347\",\n    \"13349\",\n    \"13350\",\n    \"13351\",\n    \"13352\",\n    \"13353\",\n    \"13355\",\n    \"13357\",\n    \"13358\",\n    \"13359\",\n    \"13360\",\n    \"13362\",\n    \"13363\",\n    \"13364\",\n    \"13366\",\n    \"13367\",\n    \"13368\",\n    \"13369\",\n    \"13370\",\n    \"13371\",\n    \"13372\",\n    \"13373\",\n    \"13374\",\n    \"13377\",\n    \"13378\",\n    \"13381\",\n    \"13382\",\n    \"13383\",\n    \"13384\",\n    \"13385\",\n    \"13386\",\n    \"13389\",\n    \"13390\",\n    \"13391\",\n    \"13398\",\n    \"13399\",\n    \"13400\",\n    \"13401\",\n    \"13402\",\n    \"13403\",\n    \"13405\",\n    \"13406\",\n    \"13407\",\n    \"13409\",\n    \"13411\",\n    \"13412\",\n    \"13416\",\n    \"13417\",\n    \"13418\",\n    \"13419\",\n    \"13422\",\n    \"13423\",\n    \"13425\",\n    \"13428\",\n    \"13429\",\n    \"13430\",\n    \"13431\",\n    \"13432\",\n    \"13433\",\n    \"13435\",\n    \"13436\",\n    \"13438\",\n    \"13439\",\n    \"13440\",\n    \"13442\",\n    \"13444\",\n    \"13447\",\n    \"13448\",\n    \"13449\",\n    \"13451\",\n    \"13455\",\n    \"13460\",\n    \"13462\",\n    \"13465\",\n    \"13466\",\n    \"13467\",\n    \"13470\",\n    \"13472\",\n    \"13473\",\n    \"13474\",\n    \"13481\",\n    \"13482\",\n    \"13483\",\n    \"13487\",\n    \"13490\",\n    \"13492\",\n    \"13493\",\n    \"13495\",\n    \"13496\",\n    \"13498\",\n    \"13499\",\n    \"13501\",\n    \"13504\",\n    \"13505\",\n    \"13506\",\n    \"13508\",\n    \"13509\",\n    \"13511\",\n    \"13513\",\n    \"13514\",\n    \"13517\",\n    \"13518\",\n    \"13519\",\n    \"13520\",\n    \"13522\",\n    \"13523\",\n    \"13524\",\n    \"13526\",\n    \"13527\",\n    \"13530\",\n    \"13531\",\n    \"13532\",\n    \"13533\",\n    \"13534\",\n    \"13535\",\n    \"13537\",\n    \"13538\",\n    \"13540\",\n    \"13541\",\n    \"13542\",\n    \"13543\",\n    \"13545\",\n    \"13546\",\n    \"13548\",\n    \"13549\",\n    \"13550\",\n    \"13553\",\n    \"13554\",\n    \"13555\",\n    \"13556\",\n    \"13557\",\n    \"13558\",\n    \"13560\",\n    \"13564\",\n    \"13565\",\n    \"13566\",\n    \"13567\",\n    \"13570\",\n    \"13572\",\n    \"13575\",\n    \"13576\",\n    \"13578\",\n    \"13579\",\n    \"13580\",\n    \"13581\",\n    \"13583\",\n    \"13585\",\n    \"13587\",\n    \"13589\",\n    \"13591\",\n    \"13593\",\n    \"13594\",\n    \"13595\",\n    \"13596\",\n    \"13597\",\n    \"13598\",\n    \"13600\",\n    \"13601\",\n    \"13606\",\n    \"13607\",\n    \"13608\",\n    \"13609\",\n    \"13610\",\n    \"13612\",\n    \"13617\",\n    \"13618\",\n    \"13620\",\n    \"13624\",\n    \"13626\",\n    \"13627\",\n    \"13629\",\n    \"13630\",\n    \"13631\",\n    \"13633\",\n    \"13634\",\n    \"13635\",\n    \"13636\",\n    \"13637\",\n    \"13638\",\n    \"13639\",\n    \"13641\",\n    \"13642\",\n    \"13645\",\n    \"13646\",\n    \"13647\",\n    \"13648\",\n    \"13649\",\n    \"13650\",\n    \"13651\",\n    \"13653\",\n    \"13655\",\n    \"13656\",\n    \"13657\",\n    \"13658\",\n    \"13659\",\n    \"13660\",\n    \"13662\",\n    \"13663\",\n    \"13664\",\n    \"13665\",\n    \"13668\",\n    \"13669\",\n    \"13670\",\n    \"13671\",\n    \"13672\",\n    \"13674\",\n    \"13675\",\n    \"13677\",\n    \"13679\",\n    \"13680\",\n    \"13684\",\n    \"13685\",\n    \"13686\",\n    \"13690\",\n    \"13691\",\n    \"13693\",\n    \"13698\",\n    \"13700\",\n    \"13703\",\n    \"13705\",\n    \"13706\",\n    \"13709\",\n    \"13710\",\n    \"13711\",\n    \"13712\",\n    \"13713\",\n    \"13714\",\n    \"13717\",\n    \"13718\",\n    \"13720\",\n    \"13724\",\n    \"13725\",\n    \"13727\",\n    \"13728\",\n    \"13729\",\n    \"13730\",\n    \"13731\",\n    \"13733\",\n    \"13734\",\n    \"13735\",\n    \"13742\",\n    \"13743\",\n    \"13747\",\n    \"13749\",\n    \"13750\",\n    \"13751\",\n    \"13755\",\n    \"13757\",\n    \"13760\",\n    \"13761\",\n    \"13763\",\n    \"13764\",\n    \"13766\",\n    \"13768\",\n    \"13771\",\n    \"13772\",\n    \"13773\",\n    \"13774\",\n    \"13775\",\n    \"13776\",\n    \"13779\",\n    \"13780\",\n    \"13782\",\n    \"13785\",\n    \"13786\",\n    \"13787\",\n    \"13788\",\n    \"13789\",\n    \"13790\",\n    \"13791\",\n    \"13793\",\n    \"13796\",\n    \"13798\",\n    \"13799\",\n    \"13800\",\n    \"13801\",\n    \"13802\",\n    \"13804\",\n    \"13805\",\n    \"13806\",\n    \"13810\",\n    \"13812\",\n    \"13813\",\n    \"13817\",\n    \"13819\",\n    \"13820\",\n    \"13821\",\n    \"13822\",\n    \"13823\",\n    \"13824\",\n    \"13825\",\n    \"13826\",\n    \"13828\",\n    \"13829\",\n    \"13831\",\n    \"13832\",\n    \"13833\",\n    \"13838\",\n    \"13840\",\n    \"13842\",\n    \"13843\",\n    \"13844\",\n    \"13846\",\n    \"13847\",\n    \"13849\",\n    \"13852\",\n    \"13853\",\n    \"13854\",\n    \"13855\",\n    \"13857\",\n    \"13859\",\n    \"13860\",\n    \"13861\",\n    \"13863\",\n    \"13865\",\n    \"13866\",\n    \"13867\",\n    \"13871\",\n    \"13874\",\n    \"13875\",\n    \"13876\",\n    \"13877\",\n    \"13880\",\n    \"13882\",\n    \"13883\",\n    \"13884\",\n    \"13885\",\n    \"13888\",\n    \"13889\",\n    \"13890\",\n    \"13891\",\n    \"13892\",\n    \"13894\",\n    \"13895\",\n    \"13897\",\n    \"13899\",\n    \"13900\",\n    \"13901\",\n    \"13902\",\n    \"13903\",\n    \"13904\",\n    \"13906\",\n    \"13908\",\n    \"13910\",\n    \"13912\",\n    \"13913\",\n    \"13915\",\n    \"13916\",\n    \"13917\",\n    \"13918\",\n    \"13921\",\n    \"13922\",\n    \"13923\",\n    \"13924\",\n    \"13925\",\n    \"13926\",\n    \"13927\",\n    \"13928\",\n    \"13929\",\n    \"13930\",\n    \"13931\",\n    \"13934\",\n    \"13937\",\n    \"13939\",\n    \"13941\",\n    \"13943\",\n    \"13944\",\n    \"13946\",\n    \"13948\",\n    \"13954\",\n    \"13956\",\n    \"13957\",\n    \"13958\",\n    \"13963\",\n    \"13965\",\n    \"13967\",\n    \"13969\",\n    \"13973\",\n    \"13974\",\n    \"13975\",\n    \"13980\",\n    \"13981\",\n    \"13982\",\n    \"13984\",\n    \"13986\",\n    \"13987\",\n    \"13989\",\n    \"13990\",\n    \"13991\",\n    \"13994\",\n    \"13996\",\n    \"13997\",\n    \"14001\",\n    \"14003\",\n    \"14004\",\n    \"14006\",\n    \"14007\",\n    \"14008\",\n    \"14011\",\n    \"14012\",\n    \"14013\",\n    \"14014\",\n    \"14015\",\n    \"14016\",\n    \"14019\",\n    \"14020\",\n    \"14022\",\n    \"14023\",\n    \"14024\",\n    \"14025\",\n    \"14026\",\n    \"14028\",\n    \"14030\",\n    \"14031\",\n    \"14033\",\n    \"14034\",\n    \"14035\",\n    \"14037\",\n    \"14038\",\n    \"14042\",\n    \"14043\",\n    \"14044\",\n    \"14047\",\n    \"14050\",\n    \"14051\",\n    \"14053\",\n    \"14056\",\n    \"14057\",\n    \"14058\",\n    \"14059\",\n    \"14066\",\n    \"14068\",\n    \"14070\",\n    \"14071\",\n    \"14074\",\n    \"14075\",\n    \"14076\",\n    \"14079\",\n    \"14081\",\n    \"14082\",\n    \"14084\",\n    \"14088\",\n    \"14089\",\n    \"14090\",\n    \"14091\",\n    \"14092\",\n    \"14093\",\n    \"14095\",\n    \"14099\",\n    \"14100\",\n    \"14101\",\n    \"14102\",\n    \"14104\",\n    \"14105\",\n    \"14107\",\n    \"14110\",\n    \"14113\",\n    \"14114\",\n    \"14116\",\n    \"14118\",\n    \"14119\",\n    \"14120\",\n    \"14121\",\n    \"14122\",\n    \"14126\",\n    \"14129\",\n    \"14130\",\n    \"14131\",\n    \"14133\",\n    \"14134\",\n    \"14135\",\n    \"14137\",\n    \"14138\",\n    \"14140\",\n    \"14141\",\n    \"14142\",\n    \"14143\",\n    \"14144\",\n    \"14147\",\n    \"14148\",\n    \"14149\",\n    \"14150\",\n    \"14151\",\n    \"14153\",\n    \"14154\",\n    \"14155\",\n    \"14158\",\n    \"14159\",\n    \"14160\",\n    \"14161\",\n    \"14163\",\n    \"14164\",\n    \"14166\",\n    \"14168\",\n    \"14170\",\n    \"14171\",\n    \"14173\",\n    \"14174\",\n    \"14176\",\n    \"14177\",\n    \"14178\",\n    \"14179\",\n    \"14181\",\n    \"14182\",\n    \"14183\",\n    \"14185\",\n    \"14186\",\n    \"14188\",\n    \"14190\",\n    \"14193\",\n    \"14194\",\n    \"14195\",\n    \"14196\",\n    \"14197\",\n    \"14199\",\n    \"14200\",\n    \"14201\",\n    \"14202\",\n    \"14207\",\n    \"14208\",\n    \"14213\",\n    \"14214\",\n    \"14215\",\n    \"14218\",\n    \"14220\",\n    \"14221\",\n    \"14223\",\n    \"14226\",\n    \"14227\",\n    \"14229\",\n    \"14230\",\n    \"14232\",\n    \"14234\",\n    \"14236\",\n    \"14237\",\n    \"14239\",\n    \"14240\",\n    \"14241\",\n    \"14242\",\n    \"14244\",\n    \"14249\",\n    \"14250\",\n    \"14251\",\n    \"14252\",\n    \"14257\",\n    \"14258\",\n    \"14262\",\n    \"14263\",\n    \"14266\",\n    \"14267\",\n    \"14269\",\n    \"14271\",\n    \"14274\",\n    \"14276\",\n    \"14278\",\n    \"14280\",\n    \"14283\",\n    \"14284\",\n    \"14286\",\n    \"14287\",\n    \"14288\",\n    \"14289\",\n    \"14290\",\n    \"14291\",\n    \"14292\",\n    \"14294\",\n    \"14295\",\n    \"14296\",\n    \"14297\",\n    \"14298\",\n    \"14300\",\n    \"14301\",\n    \"14303\",\n    \"14307\",\n    \"14309\",\n    \"14310\",\n    \"14311\",\n    \"14312\",\n    \"14314\",\n    \"14315\",\n    \"14317\",\n    \"14319\",\n    \"14320\",\n    \"14322\",\n    \"14323\",\n    \"14325\",\n    \"14326\",\n    \"14328\",\n    \"14329\",\n    \"14331\",\n    \"14335\",\n    \"14336\",\n    \"14338\",\n    \"14340\",\n    \"14343\",\n    \"14344\",\n    \"14345\",\n    \"14346\",\n    \"14347\",\n    \"14351\",\n    \"14352\",\n    \"14353\",\n    \"14354\",\n    \"14357\",\n    \"14358\",\n    \"14360\",\n    \"14361\",\n    \"14362\",\n    \"14364\",\n    \"14365\",\n    \"14370\",\n    \"14371\",\n    \"14372\",\n    \"14374\",\n    \"14377\",\n    \"14378\",\n    \"14382\",\n    \"14383\",\n    \"14384\",\n    \"14385\",\n    \"14388\",\n    \"14389\",\n    \"14391\",\n    \"14392\",\n    \"14394\",\n    \"14396\",\n    \"14397\",\n    \"14398\",\n    \"14400\",\n    \"14401\",\n    \"14402\",\n    \"14404\",\n    \"14408\",\n    \"14409\",\n    \"14411\",\n    \"14413\",\n    \"14414\",\n    \"14416\",\n    \"14418\",\n    \"14419\",\n    \"14422\",\n    \"14423\",\n    \"14425\",\n    \"14427\",\n    \"14430\",\n    \"14431\",\n    \"14433\",\n    \"14434\",\n    \"14435\",\n    \"14436\",\n    \"14437\",\n    \"14439\",\n    \"14443\",\n    \"14445\",\n    \"14446\",\n    \"14447\",\n    \"14448\",\n    \"14449\",\n    \"14452\",\n    \"14453\",\n    \"14454\",\n    \"14458\",\n    \"14459\",\n    \"14463\",\n    \"14464\",\n    \"14465\",\n    \"14466\",\n    \"14468\",\n    \"14469\",\n    \"14470\",\n    \"14471\",\n    \"14472\",\n    \"14475\",\n    \"14476\",\n    \"14477\",\n    \"14478\",\n    \"14479\",\n    \"14480\",\n    \"14481\",\n    \"14483\",\n    \"14485\",\n    \"14486\",\n    \"14487\",\n    \"14488\",\n    \"14490\",\n    \"14491\",\n    \"14493\",\n    \"14494\",\n    \"14496\",\n    \"14499\",\n    \"14500\",\n    \"14501\",\n    \"14503\",\n    \"14508\",\n    \"14509\",\n    \"14511\",\n    \"14513\",\n    \"14514\",\n    \"14516\",\n    \"14518\",\n    \"14520\",\n    \"14521\",\n    \"14523\",\n    \"14524\",\n    \"14527\",\n    \"14529\",\n    \"14531\",\n    \"14532\",\n    \"14534\",\n    \"14535\",\n    \"14536\",\n    \"14538\",\n    \"14540\",\n    \"14543\",\n    \"14544\",\n    \"14548\",\n    \"14549\",\n    \"14550\",\n    \"14551\",\n    \"14552\",\n    \"14557\",\n    \"14558\",\n    \"14559\",\n    \"14560\",\n    \"14561\",\n    \"14562\",\n    \"14564\",\n    \"14565\",\n    \"14566\",\n    \"14567\",\n    \"14568\",\n    \"14570\",\n    \"14571\",\n    \"14574\",\n    \"14575\",\n    \"14576\",\n    \"14577\",\n    \"14579\",\n    \"14582\",\n    \"14584\",\n    \"14585\",\n    \"14586\",\n    \"14587\",\n    \"14589\",\n    \"14590\",\n    \"14591\",\n    \"14592\",\n    \"14594\",\n    \"14595\",\n    \"14597\",\n    \"14599\",\n    \"14601\",\n    \"14604\",\n    \"14606\",\n    \"14608\",\n    \"14609\",\n    \"14611\",\n    \"14613\",\n    \"14614\",\n    \"14616\",\n    \"14618\",\n    \"14621\",\n    \"14622\",\n    \"14623\",\n    \"14624\",\n    \"14625\",\n    \"14628\",\n    \"14629\",\n    \"14630\",\n    \"14631\",\n    \"14633\",\n    \"14634\",\n    \"14635\",\n    \"14638\",\n    \"14642\",\n    \"14643\",\n    \"14645\",\n    \"14647\",\n    \"14649\",\n    \"14650\",\n    \"14652\",\n    \"14653\",\n    \"14655\",\n    \"14656\",\n    \"14657\",\n    \"14658\",\n    \"14661\",\n    \"14662\",\n    \"14663\",\n    \"14665\",\n    \"14667\",\n    \"14669\",\n    \"14670\",\n    \"14671\",\n    \"14673\",\n    \"14676\",\n    \"14678\",\n    \"14679\",\n    \"14683\",\n    \"14684\",\n    \"14688\",\n    \"14689\",\n    \"14693\",\n    \"14696\",\n    \"14697\",\n    \"14698\",\n    \"14700\",\n    \"14710\",\n    \"14711\",\n    \"14713\",\n    \"14714\",\n    \"14715\",\n    \"14716\",\n    \"14717\",\n    \"14718\",\n    \"14723\",\n    \"14724\",\n    \"14725\",\n    \"14727\",\n    \"14728\",\n    \"14729\",\n    \"14731\",\n    \"14736\",\n    \"14737\",\n    \"14741\",\n    \"14742\",\n    \"14747\",\n    \"14748\",\n    \"14750\",\n    \"14751\",\n    \"14753\",\n    \"14754\",\n    \"14758\",\n    \"14760\",\n    \"14761\",\n    \"14762\",\n    \"14763\",\n    \"14770\",\n    \"14771\",\n    \"14772\",\n    \"14773\",\n    \"14775\",\n    \"14776\",\n    \"14777\",\n    \"14778\",\n    \"14780\",\n    \"14781\",\n    \"14782\",\n    \"14783\",\n    \"14784\",\n    \"14786\",\n    \"14788\",\n    \"14792\",\n    \"14793\",\n    \"14794\",\n    \"14795\",\n    \"14797\",\n    \"14798\",\n    \"14799\",\n    \"14802\",\n    \"14805\",\n    \"14806\",\n    \"14807\",\n    \"14812\",\n    \"14813\",\n    \"14815\",\n    \"14817\",\n    \"14819\",\n    \"14820\",\n    \"14822\",\n    \"14823\",\n    \"14825\",\n    \"14827\",\n    \"14828\",\n    \"14829\",\n    \"14830\",\n    \"14832\",\n    \"14833\",\n    \"14834\",\n    \"14835\",\n    \"14836\",\n    \"14838\",\n    \"14839\",\n    \"14844\",\n    \"14845\",\n    \"14849\",\n    \"14850\",\n    \"14852\",\n    \"14853\",\n    \"14854\",\n    \"14855\",\n    \"14856\",\n    \"14859\",\n    \"14860\",\n    \"14863\",\n    \"14864\",\n    \"14866\",\n    \"14867\",\n    \"14868\",\n    \"14870\",\n    \"14871\",\n    \"14873\",\n    \"14875\",\n    \"14876\",\n    \"14877\",\n    \"14878\",\n    \"14879\",\n    \"14880\",\n    \"14882\",\n    \"14883\",\n    \"14884\",\n    \"14885\",\n    \"14886\",\n    \"14890\",\n    \"14891\",\n    \"14892\",\n    \"14894\",\n    \"14895\",\n    \"14899\",\n    \"14900\",\n    \"14902\",\n    \"14903\",\n    \"14905\",\n    \"14906\",\n    \"14907\",\n    \"14908\",\n    \"14909\",\n    \"14910\",\n    \"14912\",\n    \"14915\",\n    \"14916\",\n    \"14918\",\n    \"14920\",\n    \"14921\",\n    \"14923\",\n    \"14924\",\n    \"14926\",\n    \"14928\",\n    \"14929\",\n    \"14930\",\n    \"14931\",\n    \"14932\",\n    \"14933\",\n    \"14934\",\n    \"14935\",\n    \"14939\",\n    \"14942\",\n    \"14943\",\n    \"14944\",\n    \"14947\",\n    \"14949\",\n    \"14950\",\n    \"14952\",\n    \"14953\",\n    \"14954\",\n    \"14956\",\n    \"14962\",\n    \"14964\",\n    \"14965\",\n    \"14966\",\n    \"14967\",\n    \"14968\",\n    \"14970\",\n    \"14972\",\n    \"14973\",\n    \"14974\",\n    \"14975\",\n    \"14977\",\n    \"14978\",\n    \"14979\",\n    \"14981\",\n    \"14982\",\n    \"14983\",\n    \"14986\",\n    \"14988\",\n    \"14990\",\n    \"14994\",\n    \"14995\",\n    \"14997\",\n    \"14998\",\n    \"14999\",\n    \"15000\",\n    \"15001\",\n    \"15004\",\n    \"15005\",\n    \"15007\",\n    \"15008\",\n    \"15010\",\n    \"15011\",\n    \"15012\",\n    \"15013\",\n    \"15014\",\n    \"15015\",\n    \"15016\",\n    \"15017\",\n    \"15018\",\n    \"15020\",\n    \"15021\",\n    \"15022\",\n    \"15023\",\n    \"15026\",\n    \"15028\",\n    \"15029\",\n    \"15031\",\n    \"15033\",\n    \"15034\",\n    \"15035\",\n    \"15036\",\n    \"15038\",\n    \"15040\",\n    \"15041\",\n    \"15045\",\n    \"15046\",\n    \"15047\",\n    \"15048\",\n    \"15049\",\n    \"15052\",\n    \"15053\",\n    \"15054\",\n    \"15055\",\n    \"15056\",\n    \"15057\",\n    \"15058\",\n    \"15059\",\n    \"15060\",\n    \"15061\",\n    \"15062\",\n    \"15063\",\n    \"15064\",\n    \"15065\",\n    \"15067\",\n    \"15069\",\n    \"15074\",\n    \"15075\",\n    \"15079\",\n    \"15081\",\n    \"15083\",\n    \"15084\",\n    \"15085\",\n    \"15087\",\n    \"15091\",\n    \"15093\",\n    \"15096\",\n    \"15097\",\n    \"15098\",\n    \"15100\",\n    \"15101\",\n    \"15103\",\n    \"15104\",\n    \"15106\",\n    \"15107\",\n    \"15108\",\n    \"15109\",\n    \"15110\",\n    \"15112\",\n    \"15114\",\n    \"15116\",\n    \"15117\",\n    \"15120\",\n    \"15121\",\n    \"15123\",\n    \"15126\",\n    \"15127\",\n    \"15128\",\n    \"15129\",\n    \"15130\",\n    \"15133\",\n    \"15134\",\n    \"15135\",\n    \"15136\",\n    \"15137\",\n    \"15138\",\n    \"15139\",\n    \"15140\",\n    \"15142\",\n    \"15143\",\n    \"15144\",\n    \"15145\",\n    \"15147\",\n    \"15149\",\n    \"15150\",\n    \"15152\",\n    \"15153\",\n    \"15154\",\n    \"15155\",\n    \"15156\",\n    \"15157\",\n    \"15160\",\n    \"15162\",\n    \"15163\",\n    \"15164\",\n    \"15165\",\n    \"15166\",\n    \"15168\",\n    \"15170\",\n    \"15172\",\n    \"15173\",\n    \"15176\",\n    \"15180\",\n    \"15181\",\n    \"15182\",\n    \"15183\",\n    \"15185\",\n    \"15186\",\n    \"15188\",\n    \"15193\",\n    \"15194\",\n    \"15195\",\n    \"15196\",\n    \"15198\",\n    \"15199\",\n    \"15200\",\n    \"15201\",\n    \"15202\",\n    \"15203\",\n    \"15208\",\n    \"15211\",\n    \"15212\",\n    \"15213\",\n    \"15217\",\n    \"15218\",\n    \"15219\",\n    \"15220\",\n    \"15222\",\n    \"15223\",\n    \"15225\",\n    \"15226\",\n    \"15227\",\n    \"15228\",\n    \"15231\",\n    \"15232\",\n    \"15233\",\n    \"15234\",\n    \"15236\",\n    \"15238\",\n    \"15242\",\n    \"15243\",\n    \"15246\",\n    \"15249\",\n    \"15250\",\n    \"15251\",\n    \"15252\",\n    \"15254\",\n    \"15255\",\n    \"15257\",\n    \"15261\",\n    \"15262\",\n    \"15263\",\n    \"15264\",\n    \"15265\",\n    \"15266\",\n    \"15269\",\n    \"15270\",\n    \"15271\",\n    \"15275\",\n    \"15276\",\n    \"15278\",\n    \"15281\",\n    \"15283\",\n    \"15284\",\n    \"15286\",\n    \"15287\",\n    \"15291\",\n    \"15292\",\n    \"15293\",\n    \"15294\",\n    \"15296\",\n    \"15297\",\n    \"15299\",\n    \"15300\",\n    \"15301\",\n    \"15302\",\n    \"15304\",\n    \"15307\",\n    \"15308\",\n    \"15311\",\n    \"15312\",\n    \"15313\",\n    \"15314\",\n    \"15316\",\n    \"15317\",\n    \"15318\",\n    \"15319\",\n    \"15321\",\n    \"15322\",\n    \"15323\",\n    \"15324\",\n    \"15325\",\n    \"15326\",\n    \"15329\",\n    \"15330\",\n    \"15331\",\n    \"15332\",\n    \"15334\",\n    \"15336\",\n    \"15337\",\n    \"15339\",\n    \"15340\",\n    \"15341\",\n    \"15343\",\n    \"15345\",\n    \"15347\",\n    \"15348\",\n    \"15349\",\n    \"15351\",\n    \"15352\",\n    \"15353\",\n    \"15354\",\n    \"15355\",\n    \"15356\",\n    \"15357\",\n    \"15358\",\n    \"15360\",\n    \"15361\",\n    \"15362\",\n    \"15363\",\n    \"15364\",\n    \"15365\",\n    \"15366\",\n    \"15367\",\n    \"15368\",\n    \"15372\",\n    \"15375\",\n    \"15377\",\n    \"15378\",\n    \"15379\",\n    \"15380\",\n    \"15381\",\n    \"15384\",\n    \"15387\",\n    \"15388\",\n    \"15389\",\n    \"15390\",\n    \"15391\",\n    \"15393\",\n    \"15394\",\n    \"15395\",\n    \"15396\",\n    \"15398\",\n    \"15399\",\n    \"15400\",\n    \"15402\",\n    \"15404\",\n    \"15408\",\n    \"15409\",\n    \"15410\",\n    \"15411\",\n    \"15413\",\n    \"15417\",\n    \"15418\",\n    \"15421\",\n    \"15423\",\n    \"15424\",\n    \"15425\",\n    \"15426\",\n    \"15427\",\n    \"15428\",\n    \"15431\",\n    \"15433\",\n    \"15434\",\n    \"15435\",\n    \"15436\",\n    \"15437\",\n    \"15438\",\n    \"15439\",\n    \"15440\",\n    \"15443\",\n    \"15451\",\n    \"15452\",\n    \"15453\",\n    \"15456\",\n    \"15462\",\n    \"15464\",\n    \"15465\",\n    \"15467\",\n    \"15469\",\n    \"15470\",\n    \"15471\",\n    \"15472\",\n    \"15473\",\n    \"15474\",\n    \"15476\",\n    \"15477\",\n    \"15479\",\n    \"15480\",\n    \"15481\",\n    \"15482\",\n    \"15485\",\n    \"15489\",\n    \"15490\",\n    \"15491\",\n    \"15492\",\n    \"15493\",\n    \"15495\",\n    \"15499\",\n    \"15500\",\n    \"15502\",\n    \"15503\",\n    \"15504\",\n    \"15505\",\n    \"15507\",\n    \"15508\",\n    \"15509\",\n    \"15510\",\n    \"15511\",\n    \"15513\",\n    \"15514\",\n    \"15515\",\n    \"15517\",\n    \"15520\",\n    \"15522\",\n    \"15523\",\n    \"15527\",\n    \"15531\",\n    \"15532\",\n    \"15533\",\n    \"15535\",\n    \"15536\",\n    \"15537\",\n    \"15539\",\n    \"15540\",\n    \"15544\",\n    \"15545\",\n    \"15547\",\n    \"15549\",\n    \"15550\",\n    \"15554\",\n    \"15555\",\n    \"15557\",\n    \"15563\",\n    \"15564\",\n    \"15565\",\n    \"15566\",\n    \"15567\",\n    \"15568\",\n    \"15570\",\n    \"15571\",\n    \"15572\",\n    \"15574\",\n    \"15577\",\n    \"15578\",\n    \"15579\",\n    \"15580\",\n    \"15581\",\n    \"15582\",\n    \"15587\",\n    \"15588\",\n    \"15589\",\n    \"15590\",\n    \"15593\",\n    \"15598\",\n    \"15599\",\n    \"15600\",\n    \"15604\",\n    \"15605\",\n    \"15607\",\n    \"15608\",\n    \"15610\",\n    \"15611\",\n    \"15612\",\n    \"15613\",\n    \"15617\",\n    \"15618\",\n    \"15619\",\n    \"15620\",\n    \"15621\",\n    \"15624\",\n    \"15625\",\n    \"15628\",\n    \"15631\",\n    \"15633\",\n    \"15634\",\n    \"15635\",\n    \"15638\",\n    \"15639\",\n    \"15640\",\n    \"15643\",\n    \"15644\",\n    \"15648\",\n    \"15649\",\n    \"15654\",\n    \"15656\",\n    \"15657\",\n    \"15659\",\n    \"15660\",\n    \"15661\",\n    \"15666\",\n    \"15667\",\n    \"15669\",\n    \"15671\",\n    \"15672\",\n    \"15673\",\n    \"15674\",\n    \"15676\",\n    \"15678\",\n    \"15679\",\n    \"15680\",\n    \"15681\",\n    \"15682\",\n    \"15683\",\n    \"15685\",\n    \"15686\",\n    \"15687\",\n    \"15689\",\n    \"15690\",\n    \"15691\",\n    \"15692\",\n    \"15693\",\n    \"15694\",\n    \"15697\",\n    \"15698\",\n    \"15699\",\n    \"15700\",\n    \"15704\",\n    \"15707\",\n    \"15709\",\n    \"15711\",\n    \"15713\",\n    \"15714\",\n    \"15715\",\n    \"15716\",\n    \"15717\",\n    \"15719\",\n    \"15720\",\n    \"15722\",\n    \"15723\",\n    \"15724\",\n    \"15726\",\n    \"15727\",\n    \"15728\",\n    \"15729\",\n    \"15730\",\n    \"15731\",\n    \"15735\",\n    \"15736\",\n    \"15738\",\n    \"15739\",\n    \"15741\",\n    \"15743\",\n    \"15744\",\n    \"15746\",\n    \"15747\",\n    \"15748\",\n    \"15750\",\n    \"15752\",\n    \"15753\",\n    \"15754\",\n    \"15755\",\n    \"15756\",\n    \"15757\",\n    \"15758\",\n    \"15759\",\n    \"15760\",\n    \"15761\",\n    \"15762\",\n    \"15764\",\n    \"15766\",\n    \"15768\",\n    \"15769\",\n    \"15771\",\n    \"15773\",\n    \"15774\",\n    \"15776\",\n    \"15778\",\n    \"15779\",\n    \"15781\",\n    \"15782\",\n    \"15783\",\n    \"15784\",\n    \"15785\",\n    \"15786\",\n    \"15788\",\n    \"15789\",\n    \"15792\",\n    \"15793\",\n    \"15795\",\n    \"15796\",\n    \"15797\",\n    \"15800\",\n    \"15802\",\n    \"15803\",\n    \"15804\",\n    \"15805\",\n    \"15806\",\n    \"15808\",\n    \"15809\",\n    \"15811\",\n    \"15812\",\n    \"15817\",\n    \"15818\",\n    \"15819\",\n    \"15820\",\n    \"15822\",\n    \"15824\",\n    \"15825\",\n    \"15827\",\n    \"15828\",\n    \"15832\",\n    \"15833\",\n    \"15834\",\n    \"15836\",\n    \"15837\",\n    \"15839\",\n    \"15840\",\n    \"15842\",\n    \"15843\",\n    \"15844\",\n    \"15845\",\n    \"15846\",\n    \"15847\",\n    \"15848\",\n    \"15849\",\n    \"15852\",\n    \"15854\",\n    \"15855\",\n    \"15856\",\n    \"15859\",\n    \"15860\",\n    \"15861\",\n    \"15862\",\n    \"15863\",\n    \"15864\",\n    \"15868\",\n    \"15871\",\n    \"15875\",\n    \"15876\",\n    \"15877\",\n    \"15879\",\n    \"15880\",\n    \"15881\",\n    \"15882\",\n    \"15883\",\n    \"15886\",\n    \"15887\",\n    \"15888\",\n    \"15889\",\n    \"15890\",\n    \"15893\",\n    \"15894\",\n    \"15895\",\n    \"15896\",\n    \"15897\",\n    \"15898\",\n    \"15899\",\n    \"15901\",\n    \"15903\",\n    \"15904\",\n    \"15905\",\n    \"15906\",\n    \"15907\",\n    \"15909\",\n    \"15911\",\n    \"15912\",\n    \"15914\",\n    \"15915\",\n    \"15916\",\n    \"15919\",\n    \"15920\",\n    \"15921\",\n    \"15922\",\n    \"15924\",\n    \"15926\",\n    \"15928\",\n    \"15929\",\n    \"15931\",\n    \"15933\",\n    \"15935\",\n    \"15936\",\n    \"15939\",\n    \"15940\",\n    \"15941\",\n    \"15942\",\n    \"15945\",\n    \"15946\",\n    \"15947\",\n    \"15948\",\n    \"15949\",\n    \"15951\",\n    \"15952\",\n    \"15953\",\n    \"15955\",\n    \"15957\",\n    \"15959\",\n    \"15961\",\n    \"15962\",\n    \"15964\",\n    \"15965\",\n    \"15966\",\n    \"15968\",\n    \"15969\",\n    \"15972\",\n    \"15975\",\n    \"15979\",\n    \"15980\",\n    \"15982\",\n    \"15985\",\n    \"15986\",\n    \"15988\",\n    \"15989\",\n    \"15990\",\n    \"15991\",\n    \"15993\",\n    \"15995\",\n    \"15999\",\n    \"16000\",\n    \"16001\",\n    \"16003\",\n    \"16005\",\n    \"16006\",\n    \"16008\",\n    \"16009\",\n    \"16014\",\n    \"16017\",\n    \"16018\",\n    \"16020\",\n    \"16021\",\n    \"16022\",\n    \"16024\",\n    \"16028\",\n    \"16029\",\n    \"16030\",\n    \"16031\",\n    \"16032\",\n    \"16033\",\n    \"16034\",\n    \"16037\",\n    \"16038\",\n    \"16039\",\n    \"16040\",\n    \"16041\",\n    \"16043\",\n    \"16047\",\n    \"16051\",\n    \"16052\",\n    \"16053\",\n    \"16055\",\n    \"16058\",\n    \"16059\",\n    \"16060\",\n    \"16061\",\n    \"16064\",\n    \"16065\",\n    \"16066\",\n    \"16068\",\n    \"16070\",\n    \"16071\",\n    \"16072\",\n    \"16073\",\n    \"16074\",\n    \"16075\",\n    \"16077\",\n    \"16078\",\n    \"16080\",\n    \"16081\",\n    \"16083\",\n    \"16084\",\n    \"16086\",\n    \"16087\",\n    \"16088\",\n    \"16089\",\n    \"16090\",\n    \"16091\",\n    \"16093\",\n    \"16095\",\n    \"16097\",\n    \"16099\",\n    \"16100\",\n    \"16101\",\n    \"16102\",\n    \"16103\",\n    \"16105\",\n    \"16107\",\n    \"16108\",\n    \"16109\",\n    \"16110\",\n    \"16111\",\n    \"16112\",\n    \"16117\",\n    \"16121\",\n    \"16123\",\n    \"16124\",\n    \"16125\",\n    \"16129\",\n    \"16132\",\n    \"16133\",\n    \"16134\",\n    \"16135\",\n    \"16136\",\n    \"16137\",\n    \"16138\",\n    \"16140\",\n    \"16142\",\n    \"16143\",\n    \"16144\",\n    \"16148\",\n    \"16149\",\n    \"16151\",\n    \"16152\",\n    \"16154\",\n    \"16157\",\n    \"16158\",\n    \"16159\",\n    \"16160\",\n    \"16161\",\n    \"16163\",\n    \"16164\",\n    \"16166\",\n    \"16167\",\n    \"16168\",\n    \"16170\",\n    \"16171\",\n    \"16172\",\n    \"16173\",\n    \"16177\",\n    \"16178\",\n    \"16179\",\n    \"16181\",\n    \"16185\",\n    \"16190\",\n    \"16191\",\n    \"16195\",\n    \"16197\",\n    \"16198\",\n    \"16200\",\n    \"16201\",\n    \"16204\",\n    \"16205\",\n    \"16208\",\n    \"16211\",\n    \"16214\",\n    \"16215\",\n    \"16217\",\n    \"16222\",\n    \"16224\",\n    \"16225\",\n    \"16226\",\n    \"16227\",\n    \"16229\",\n    \"16230\",\n    \"16231\",\n    \"16232\",\n    \"16233\",\n    \"16234\",\n    \"16236\",\n    \"16237\",\n    \"16238\",\n    \"16239\",\n    \"16241\",\n    \"16244\",\n    \"16248\",\n    \"16249\",\n    \"16250\",\n    \"16251\",\n    \"16254\",\n    \"16255\",\n    \"16256\",\n    \"16257\",\n    \"16260\",\n    \"16262\",\n    \"16263\",\n    \"16264\",\n    \"16265\",\n    \"16266\",\n    \"16269\",\n    \"16270\",\n    \"16271\",\n    \"16272\",\n    \"16274\",\n    \"16278\",\n    \"16280\",\n    \"16282\",\n    \"16284\",\n    \"16285\",\n    \"16286\",\n    \"16288\",\n    \"16290\",\n    \"16291\",\n    \"16292\",\n    \"16294\",\n    \"16295\",\n    \"16296\",\n    \"16298\",\n    \"16299\",\n    \"16300\",\n    \"16302\",\n    \"16303\",\n    \"16305\",\n    \"16306\",\n    \"16308\",\n    \"16310\",\n    \"16311\",\n    \"16312\",\n    \"16314\",\n    \"16316\",\n    \"16317\",\n    \"16318\",\n    \"16320\",\n    \"16321\",\n    \"16322\",\n    \"16323\",\n    \"16328\",\n    \"16329\",\n    \"16330\",\n    \"16331\",\n    \"16333\",\n    \"16334\",\n    \"16335\",\n    \"16336\",\n    \"16337\",\n    \"16342\",\n    \"16343\",\n    \"16346\",\n    \"16349\",\n    \"16350\",\n    \"16351\",\n    \"16352\",\n    \"16355\",\n    \"16360\",\n    \"16361\",\n    \"16362\",\n    \"16364\",\n    \"16365\",\n    \"16367\",\n    \"16368\",\n    \"16370\",\n    \"16371\",\n    \"16373\",\n    \"16375\",\n    \"16376\",\n    \"16377\",\n    \"16378\",\n    \"16381\",\n    \"16386\",\n    \"16388\",\n    \"16389\",\n    \"16390\",\n    \"16391\",\n    \"16392\",\n    \"16393\",\n    \"16398\",\n    \"16399\",\n    \"16400\",\n    \"16401\",\n    \"16403\",\n    \"16404\",\n    \"16405\",\n    \"16406\",\n    \"16407\",\n    \"16409\",\n    \"16411\",\n    \"16412\",\n    \"16413\",\n    \"16416\",\n    \"16418\",\n    \"16420\",\n    \"16423\",\n    \"16425\",\n    \"16426\",\n    \"16427\",\n    \"16429\",\n    \"16430\",\n    \"16431\",\n    \"16433\",\n    \"16438\",\n    \"16439\",\n    \"16441\",\n    \"16442\",\n    \"16443\",\n    \"16447\",\n    \"16448\",\n    \"16449\",\n    \"16450\",\n    \"16451\",\n    \"16454\",\n    \"16460\",\n    \"16461\",\n    \"16462\",\n    \"16463\",\n    \"16465\",\n    \"16467\",\n    \"16473\",\n    \"16474\",\n    \"16475\",\n    \"16478\",\n    \"16480\",\n    \"16481\",\n    \"16482\",\n    \"16483\",\n    \"16484\",\n    \"16486\",\n    \"16487\",\n    \"16489\",\n    \"16490\",\n    \"16491\",\n    \"16492\",\n    \"16494\",\n    \"16495\",\n    \"16500\",\n    \"16502\",\n    \"16503\",\n    \"16504\",\n    \"16507\",\n    \"16509\",\n    \"16511\",\n    \"16512\",\n    \"16513\",\n    \"16516\",\n    \"16517\",\n    \"16518\",\n    \"16519\",\n    \"16520\",\n    \"16521\",\n    \"16523\",\n    \"16525\",\n    \"16526\",\n    \"16527\",\n    \"16529\",\n    \"16530\",\n    \"16533\",\n    \"16537\",\n    \"16538\",\n    \"16539\",\n    \"16540\",\n    \"16541\",\n    \"16543\",\n    \"16547\",\n    \"16548\",\n    \"16549\",\n    \"16552\",\n    \"16555\",\n    \"16556\",\n    \"16558\",\n    \"16559\",\n    \"16560\",\n    \"16561\",\n    \"16562\",\n    \"16563\",\n    \"16564\",\n    \"16565\",\n    \"16567\",\n    \"16568\",\n    \"16569\",\n    \"16571\",\n    \"16572\",\n    \"16576\",\n    \"16577\",\n    \"16579\",\n    \"16583\",\n    \"16584\",\n    \"16587\",\n    \"16588\",\n    \"16590\",\n    \"16591\",\n    \"16594\",\n    \"16596\",\n    \"16597\",\n    \"16598\",\n    \"16600\",\n    \"16602\",\n    \"16603\",\n    \"16604\",\n    \"16611\",\n    \"16612\",\n    \"16613\",\n    \"16614\",\n    \"16615\",\n    \"16616\",\n    \"16619\",\n    \"16621\",\n    \"16625\",\n    \"16628\",\n    \"16632\",\n    \"16633\",\n    \"16635\",\n    \"16636\",\n    \"16638\",\n    \"16640\",\n    \"16641\",\n    \"16643\",\n    \"16647\",\n    \"16650\",\n    \"16653\",\n    \"16654\",\n    \"16661\",\n    \"16664\",\n    \"16666\",\n    \"16667\",\n    \"16668\",\n    \"16669\",\n    \"16670\",\n    \"16671\",\n    \"16672\",\n    \"16674\",\n    \"16675\",\n    \"16676\",\n    \"16677\",\n    \"16682\",\n    \"16686\",\n    \"16688\",\n    \"16690\",\n    \"16691\",\n    \"16692\",\n    \"16696\",\n    \"16697\",\n    \"16702\",\n    \"16703\",\n    \"16704\",\n    \"16705\",\n    \"16706\",\n    \"16707\",\n    \"16709\",\n    \"16710\",\n    \"16711\",\n    \"16712\",\n    \"16713\",\n    \"16714\",\n    \"16715\",\n    \"16717\",\n    \"16718\",\n    \"16719\",\n    \"16722\",\n    \"16724\",\n    \"16726\",\n    \"16729\",\n    \"16730\",\n    \"16732\",\n    \"16735\",\n    \"16736\",\n    \"16739\",\n    \"16740\",\n    \"16741\",\n    \"16742\",\n    \"16743\",\n    \"16745\",\n    \"16747\",\n    \"16748\",\n    \"16749\",\n    \"16750\",\n    \"16752\",\n    \"16755\",\n    \"16758\",\n    \"16759\",\n    \"16760\",\n    \"16761\",\n    \"16763\",\n    \"16764\",\n    \"16766\",\n    \"16767\",\n    \"16768\",\n    \"16771\",\n    \"16775\",\n    \"16778\",\n    \"16779\",\n    \"16780\",\n    \"16781\",\n    \"16782\",\n    \"16785\",\n    \"16786\",\n    \"16787\",\n    \"16790\",\n    \"16791\",\n    \"16792\",\n    \"16793\",\n    \"16794\",\n    \"16795\",\n    \"16796\",\n    \"16798\",\n    \"16799\",\n    \"16801\",\n    \"16803\",\n    \"16804\",\n    \"16805\",\n    \"16807\",\n    \"16808\",\n    \"16809\",\n    \"16815\",\n    \"16817\",\n    \"16820\",\n    \"16821\",\n    \"16823\",\n    \"16826\",\n    \"16828\",\n    \"16829\",\n    \"16831\",\n    \"16832\",\n    \"16833\",\n    \"16834\",\n    \"16838\",\n    \"16839\",\n    \"16842\",\n    \"16843\",\n    \"16844\",\n    \"16846\",\n    \"16848\",\n    \"16849\",\n    \"16850\",\n    \"16851\",\n    \"16853\",\n    \"16857\",\n    \"16858\",\n    \"16859\",\n    \"16862\",\n    \"16865\",\n    \"16867\",\n    \"16869\",\n    \"16870\",\n    \"16872\",\n    \"16874\",\n    \"16876\",\n    \"16877\",\n    \"16880\",\n    \"16884\",\n    \"16885\",\n    \"16887\",\n    \"16890\",\n    \"16891\",\n    \"16892\",\n    \"16893\",\n    \"16896\",\n    \"16897\",\n    \"16899\",\n    \"16900\",\n    \"16902\",\n    \"16904\",\n    \"16905\",\n    \"16906\",\n    \"16907\",\n    \"16908\",\n    \"16909\",\n    \"16910\",\n    \"16911\",\n    \"16912\",\n    \"16913\",\n    \"16914\",\n    \"16915\",\n    \"16916\",\n    \"16918\",\n    \"16919\",\n    \"16920\",\n    \"16924\",\n    \"16925\",\n    \"16926\",\n    \"16927\",\n    \"16928\",\n    \"16931\",\n    \"16933\",\n    \"16934\",\n    \"16937\",\n    \"16940\",\n    \"16941\",\n    \"16942\",\n    \"16943\",\n    \"16944\",\n    \"16946\",\n    \"16949\",\n    \"16950\",\n    \"16952\",\n    \"16953\",\n    \"16954\",\n    \"16955\",\n    \"16956\",\n    \"16957\",\n    \"16958\",\n    \"16961\",\n    \"16962\",\n    \"16963\",\n    \"16964\",\n    \"16965\",\n    \"16966\",\n    \"16968\",\n    \"16969\",\n    \"16970\",\n    \"16971\",\n    \"16974\",\n    \"16976\",\n    \"16979\",\n    \"16980\",\n    \"16982\",\n    \"16983\",\n    \"16984\",\n    \"16985\",\n    \"16989\",\n    \"16990\",\n    \"16991\",\n    \"16993\",\n    \"16994\",\n    \"16997\",\n    \"16998\",\n    \"17000\",\n    \"17001\",\n    \"17002\",\n    \"17003\",\n    \"17006\",\n    \"17007\",\n    \"17008\",\n    \"17009\",\n    \"17012\",\n    \"17013\",\n    \"17018\",\n    \"17019\",\n    \"17020\",\n    \"17022\",\n    \"17024\",\n    \"17025\",\n    \"17027\",\n    \"17030\",\n    \"17032\",\n    \"17034\",\n    \"17035\",\n    \"17036\",\n    \"17038\",\n    \"17040\",\n    \"17041\",\n    \"17047\",\n    \"17050\",\n    \"17051\",\n    \"17053\",\n    \"17054\",\n    \"17057\",\n    \"17059\",\n    \"17060\",\n    \"17062\",\n    \"17063\",\n    \"17064\",\n    \"17065\",\n    \"17066\",\n    \"17067\",\n    \"17075\",\n    \"17076\",\n    \"17077\",\n    \"17079\",\n    \"17081\",\n    \"17082\",\n    \"17083\",\n    \"17086\",\n    \"17087\",\n    \"17088\",\n    \"17091\",\n    \"17092\",\n    \"17093\",\n    \"17094\",\n    \"17095\",\n    \"17097\",\n    \"17099\",\n    \"17101\",\n    \"17102\",\n    \"17104\",\n    \"17107\",\n    \"17108\",\n    \"17109\",\n    \"17111\",\n    \"17112\",\n    \"17113\",\n    \"17114\",\n    \"17116\",\n    \"17117\",\n    \"17118\",\n    \"17120\",\n    \"17121\",\n    \"17122\",\n    \"17123\",\n    \"17124\",\n    \"17126\",\n    \"17127\",\n    \"17128\",\n    \"17129\",\n    \"17130\",\n    \"17131\",\n    \"17132\",\n    \"17133\",\n    \"17134\",\n    \"17137\",\n    \"17138\",\n    \"17139\",\n    \"17141\",\n    \"17143\",\n    \"17145\",\n    \"17146\",\n    \"17147\",\n    \"17148\",\n    \"17149\",\n    \"17150\",\n    \"17151\",\n    \"17152\",\n    \"17154\",\n    \"17157\",\n    \"17158\",\n    \"17159\",\n    \"17160\",\n    \"17161\",\n    \"17162\",\n    \"17163\",\n    \"17165\",\n    \"17166\",\n    \"17167\",\n    \"17168\",\n    \"17169\",\n    \"17170\",\n    \"17172\",\n    \"17173\",\n    \"17175\",\n    \"17177\",\n    \"17179\",\n    \"17180\",\n    \"17181\",\n    \"17182\",\n    \"17184\",\n    \"17185\",\n    \"17186\",\n    \"17187\",\n    \"17188\",\n    \"17190\",\n    \"17191\",\n    \"17193\",\n    \"17194\",\n    \"17196\",\n    \"17198\",\n    \"17199\",\n    \"17200\",\n    \"17201\",\n    \"17203\",\n    \"17205\",\n    \"17208\",\n    \"17212\",\n    \"17213\",\n    \"17217\",\n    \"17220\",\n    \"17223\",\n    \"17224\",\n    \"17225\",\n    \"17229\",\n    \"17230\",\n    \"17231\",\n    \"17232\",\n    \"17234\",\n    \"17235\",\n    \"17236\",\n    \"17238\",\n    \"17239\",\n    \"17240\",\n    \"17241\",\n    \"17242\",\n    \"17244\",\n    \"17245\",\n    \"17246\",\n    \"17247\",\n    \"17248\",\n    \"17249\",\n    \"17251\",\n    \"17255\",\n    \"17256\",\n    \"17259\",\n    \"17260\",\n    \"17261\",\n    \"17262\",\n    \"17263\",\n    \"17264\",\n    \"17265\",\n    \"17266\",\n    \"17270\",\n    \"17271\",\n    \"17272\",\n    \"17274\",\n    \"17275\",\n    \"17279\",\n    \"17280\",\n    \"17281\",\n    \"17282\",\n    \"17283\",\n    \"17284\",\n    \"17286\",\n    \"17287\",\n    \"17289\",\n    \"17291\",\n    \"17294\",\n    \"17298\",\n    \"17299\",\n    \"17300\",\n    \"17302\",\n    \"17305\",\n    \"17306\",\n    \"17307\",\n    \"17309\",\n    \"17310\",\n    \"17311\",\n    \"17313\",\n    \"17314\",\n    \"17315\",\n    \"17316\",\n    \"17318\",\n    \"17320\",\n    \"17321\",\n    \"17323\",\n    \"17326\",\n    \"17327\",\n    \"17330\",\n    \"17331\",\n    \"17332\",\n    \"17334\",\n    \"17335\",\n    \"17338\",\n    \"17341\",\n    \"17342\",\n    \"17344\",\n    \"17347\",\n    \"17348\",\n    \"17349\",\n    \"17350\",\n    \"17352\",\n    \"17353\",\n    \"17355\",\n    \"17356\",\n    \"17357\",\n    \"17358\",\n    \"17359\",\n    \"17361\",\n    \"17362\",\n    \"17363\",\n    \"17364\",\n    \"17365\",\n    \"17367\",\n    \"17369\",\n    \"17370\",\n    \"17371\",\n    \"17373\",\n    \"17374\",\n    \"17375\",\n    \"17376\",\n    \"17377\",\n    \"17378\",\n    \"17379\",\n    \"17381\",\n    \"17383\",\n    \"17384\",\n    \"17386\",\n    \"17388\",\n    \"17389\",\n    \"17393\",\n    \"17394\",\n    \"17395\",\n    \"17396\",\n    \"17399\",\n    \"17403\",\n    \"17404\",\n    \"17409\",\n    \"17411\",\n    \"17412\",\n    \"17413\",\n    \"17414\",\n    \"17417\",\n    \"17418\",\n    \"17419\",\n    \"17420\",\n    \"17423\",\n    \"17426\",\n    \"17427\",\n    \"17428\",\n    \"17429\",\n    \"17432\",\n    \"17433\",\n    \"17434\",\n    \"17442\",\n    \"17443\",\n    \"17444\",\n    \"17445\",\n    \"17447\",\n    \"17449\",\n    \"17450\",\n    \"17454\",\n    \"17456\",\n    \"17457\",\n    \"17458\",\n    \"17460\",\n    \"17462\",\n    \"17463\",\n    \"17465\",\n    \"17466\",\n    \"17467\",\n    \"17468\",\n    \"17469\",\n    \"17472\",\n    \"17473\",\n    \"17474\",\n    \"17475\",\n    \"17476\",\n    \"17477\",\n    \"17478\",\n    \"17479\",\n    \"17480\",\n    \"17481\",\n    \"17482\",\n    \"17483\",\n    \"17484\",\n    \"17486\",\n    \"17491\",\n    \"17494\",\n    \"17497\",\n    \"17499\",\n    \"17502\",\n    \"17504\",\n    \"17505\",\n    \"17506\",\n    \"17507\",\n    \"17509\",\n    \"17510\",\n    \"17511\",\n    \"17512\",\n    \"17513\",\n    \"17518\",\n    \"17519\",\n    \"17520\",\n    \"17521\",\n    \"17522\",\n    \"17524\",\n    \"17525\",\n    \"17527\",\n    \"17528\",\n    \"17529\",\n    \"17530\",\n    \"17531\",\n    \"17532\",\n    \"17533\",\n    \"17535\",\n    \"17538\",\n    \"17539\",\n    \"17540\",\n    \"17541\",\n    \"17542\",\n    \"17546\",\n    \"17547\",\n    \"17550\",\n    \"17551\",\n    \"17557\",\n    \"17560\",\n    \"17561\",\n    \"17563\",\n    \"17566\",\n    \"17567\",\n    \"17569\",\n    \"17571\",\n    \"17572\",\n    \"17573\",\n    \"17575\",\n    \"17576\",\n    \"17579\",\n    \"17580\",\n    \"17582\",\n    \"17583\",\n    \"17585\",\n    \"17591\",\n    \"17592\",\n    \"17596\",\n    \"17597\",\n    \"17598\",\n    \"17602\",\n    \"17603\",\n    \"17604\",\n    \"17606\",\n    \"17608\",\n    \"17610\",\n    \"17612\",\n    \"17615\",\n    \"17616\",\n    \"17618\",\n    \"17619\",\n    \"17621\",\n    \"17623\",\n    \"17625\",\n    \"17627\",\n    \"17628\",\n    \"17629\",\n    \"17630\",\n    \"17631\",\n    \"17632\",\n    \"17633\",\n    \"17636\",\n    \"17638\",\n    \"17639\",\n    \"17640\",\n    \"17641\",\n    \"17642\",\n    \"17643\",\n    \"17644\",\n    \"17647\",\n    \"17648\",\n    \"17649\",\n    \"17650\",\n    \"17651\",\n    \"17653\",\n    \"17655\",\n    \"17656\",\n    \"17660\",\n    \"17663\",\n    \"17664\",\n    \"17671\",\n    \"17673\",\n    \"17675\",\n    \"17676\",\n    \"17677\",\n    \"17678\",\n    \"17680\",\n    \"17682\",\n    \"17683\",\n    \"17684\",\n    \"17691\",\n    \"17694\",\n    \"17697\",\n    \"17699\",\n    \"17700\",\n    \"17701\",\n    \"17704\",\n    \"17705\",\n    \"17706\",\n    \"17714\",\n    \"17715\",\n    \"17716\",\n    \"17717\",\n    \"17718\",\n    \"17719\",\n    \"17720\",\n    \"17724\",\n    \"17725\",\n    \"17728\",\n    \"17731\",\n    \"17732\",\n    \"17733\",\n    \"17734\",\n    \"17736\",\n    \"17737\",\n    \"17738\",\n    \"17739\",\n    \"17740\",\n    \"17741\",\n    \"17742\",\n    \"17744\",\n    \"17745\",\n    \"17746\",\n    \"17747\",\n    \"17748\",\n    \"17749\",\n    \"17750\",\n    \"17751\",\n    \"17755\",\n    \"17756\",\n    \"17758\",\n    \"17759\",\n    \"17760\",\n    \"17761\",\n    \"17762\",\n    \"17764\",\n    \"17767\",\n    \"17768\",\n    \"17769\",\n    \"17770\",\n    \"17771\",\n    \"17772\",\n    \"17773\",\n    \"17776\",\n    \"17778\",\n    \"17779\",\n    \"17781\",\n    \"17782\",\n    \"17783\",\n    \"17786\",\n    \"17787\",\n    \"17794\",\n    \"17795\",\n    \"17796\",\n    \"17798\",\n    \"17799\",\n    \"17801\",\n    \"17802\",\n    \"17803\",\n    \"17806\",\n    \"17808\",\n    \"17809\",\n    \"17811\",\n    \"17812\",\n    \"17813\",\n    \"17814\",\n    \"17815\",\n    \"17816\",\n    \"17817\",\n    \"17822\",\n    \"17823\",\n    \"17824\",\n    \"17825\",\n    \"17826\",\n    \"17827\",\n    \"17828\",\n    \"17831\",\n    \"17834\",\n    \"17835\",\n    \"17838\",\n    \"17839\",\n    \"17842\",\n    \"17843\",\n    \"17847\",\n    \"17848\",\n    \"17849\",\n    \"17850\",\n    \"17851\",\n    \"17852\",\n    \"17854\",\n    \"17856\",\n    \"17858\",\n    \"17861\",\n    \"17862\",\n    \"17863\",\n    \"17864\",\n    \"17866\",\n    \"17869\",\n    \"17870\",\n    \"17871\",\n    \"17872\",\n    \"17873\",\n    \"17875\",\n    \"17876\",\n    \"17878\",\n    \"17879\",\n    \"17881\",\n    \"17883\",\n    \"17884\",\n    \"17885\",\n    \"17886\",\n    \"17889\",\n    \"17891\",\n    \"17892\",\n    \"17893\",\n    \"17894\",\n    \"17895\",\n    \"17897\",\n    \"17900\",\n    \"17902\",\n    \"17904\",\n    \"17905\",\n    \"17906\",\n    \"17909\",\n    \"17910\",\n    \"17911\",\n    \"17914\",\n    \"17915\",\n    \"17916\",\n    \"17919\",\n    \"17920\",\n    \"17922\",\n    \"17923\",\n    \"17925\",\n    \"17928\",\n    \"17931\",\n    \"17933\",\n    \"17934\",\n    \"17939\",\n    \"17940\",\n    \"17941\",\n    \"17944\",\n    \"17946\",\n    \"17947\",\n    \"17948\",\n    \"17949\",\n    \"17950\",\n    \"17951\",\n    \"17953\",\n    \"17954\",\n    \"17956\",\n    \"17957\",\n    \"17958\",\n    \"17959\",\n    \"17963\",\n    \"17964\",\n    \"17965\",\n    \"17967\",\n    \"17968\",\n    \"17971\",\n    \"17972\",\n    \"17973\",\n    \"17974\",\n    \"17978\",\n    \"17980\",\n    \"17981\",\n    \"17982\",\n    \"17983\",\n    \"17986\",\n    \"17987\",\n    \"17993\",\n    \"17996\",\n    \"17998\",\n    \"17999\",\n    \"18000\",\n    \"18001\",\n    \"18002\",\n    \"18006\",\n    \"18007\",\n    \"18008\",\n    \"18009\",\n    \"18011\",\n    \"18012\",\n    \"18013\",\n    \"18014\",\n    \"18015\",\n    \"18016\",\n    \"18017\",\n    \"18018\",\n    \"18020\",\n    \"18022\",\n    \"18023\",\n    \"18025\",\n    \"18026\",\n    \"18027\",\n    \"18028\",\n    \"18031\",\n    \"18035\",\n    \"18039\",\n    \"18040\",\n    \"18041\",\n    \"18042\",\n    \"18043\",\n    \"18044\",\n    \"18047\",\n    \"18049\",\n    \"18050\",\n    \"18051\",\n    \"18052\",\n    \"18054\",\n    \"18056\",\n    \"18057\",\n    \"18059\",\n    \"18060\",\n    \"18061\",\n    \"18062\",\n    \"18066\",\n    \"18067\",\n    \"18071\",\n    \"18074\",\n    \"18076\",\n    \"18079\",\n    \"18080\",\n    \"18084\",\n    \"18085\",\n    \"18087\",\n    \"18089\",\n    \"18090\",\n    \"18091\",\n    \"18093\",\n    \"18094\",\n    \"18096\",\n    \"18097\",\n    \"18098\",\n    \"18099\",\n    \"18100\",\n    \"18102\",\n    \"18103\",\n    \"18108\",\n    \"18109\",\n    \"18110\",\n    \"18111\",\n    \"18112\",\n    \"18114\",\n    \"18115\",\n    \"18116\",\n    \"18118\",\n    \"18119\",\n    \"18120\",\n    \"18121\",\n    \"18123\",\n    \"18125\",\n    \"18126\",\n    \"18132\",\n    \"18135\",\n    \"18139\",\n    \"18140\",\n    \"18141\",\n    \"18142\",\n    \"18143\",\n    \"18144\",\n    \"18145\",\n    \"18147\",\n    \"18148\",\n    \"18151\",\n    \"18153\",\n    \"18155\",\n    \"18156\",\n    \"18157\",\n    \"18158\",\n    \"18160\",\n    \"18161\",\n    \"18162\",\n    \"18163\",\n    \"18165\",\n    \"18169\",\n    \"18170\",\n    \"18171\",\n    \"18172\",\n    \"18175\",\n    \"18176\",\n    \"18177\",\n    \"18178\",\n    \"18179\",\n    \"18181\",\n    \"18183\",\n    \"18185\",\n    \"18188\",\n    \"18189\",\n    \"18191\",\n    \"18192\",\n    \"18193\",\n    \"18195\",\n    \"18198\",\n    \"18199\",\n    \"18203\",\n    \"18204\",\n    \"18205\",\n    \"18206\",\n    \"18207\",\n    \"18209\",\n    \"18210\",\n    \"18211\",\n    \"18213\",\n    \"18215\",\n    \"18218\",\n    \"18219\",\n    \"18220\",\n    \"18221\",\n    \"18222\",\n    \"18223\",\n    \"18224\",\n    \"18225\",\n    \"18226\",\n    \"18227\",\n    \"18229\",\n    \"18230\",\n    \"18231\",\n    \"18233\",\n    \"18236\",\n    \"18237\",\n    \"18239\",\n    \"18240\",\n    \"18242\",\n    \"18243\",\n    \"18244\",\n    \"18246\",\n    \"18247\",\n    \"18248\",\n    \"18253\",\n    \"18255\",\n    \"18260\",\n    \"18262\",\n    \"18264\",\n    \"18265\",\n    \"18266\",\n    \"18268\",\n    \"18269\",\n    \"18270\",\n    \"18274\",\n    \"18276\",\n    \"18279\",\n    \"18280\",\n    \"18281\",\n    \"18285\",\n    \"18286\",\n    \"18287\",\n    \"18289\",\n    \"18293\",\n    \"18295\",\n    \"18297\",\n    \"18299\",\n    \"18300\",\n    \"18301\",\n    \"18302\",\n    \"18305\",\n    \"18307\",\n    \"18308\",\n    \"18309\",\n    \"18313\",\n    \"18314\",\n    \"18316\",\n    \"18317\",\n    \"18318\",\n    \"18319\",\n    \"18320\",\n    \"18321\",\n    \"18323\",\n    \"18324\",\n    \"18325\",\n    \"18326\",\n    \"18327\",\n    \"18329\",\n    \"18330\",\n    \"18333\",\n    \"18335\",\n    \"18337\",\n    \"18339\",\n    \"18340\",\n    \"18341\",\n    \"18342\",\n    \"18343\",\n    \"18345\",\n    \"18346\",\n    \"18348\",\n    \"18350\",\n    \"18352\",\n    \"18353\",\n    \"18354\",\n    \"18355\",\n    \"18358\",\n    \"18359\",\n    \"18361\",\n    \"18364\",\n    \"18365\",\n    \"18366\",\n    \"18368\",\n    \"18370\",\n    \"18371\",\n    \"18373\",\n    \"18374\",\n    \"18375\",\n    \"18377\",\n    \"18380\",\n    \"18381\",\n    \"18383\",\n    \"18385\",\n    \"18388\",\n    \"18390\",\n    \"18392\",\n    \"18393\",\n    \"18394\",\n    \"18397\",\n    \"18398\",\n    \"18399\",\n    \"18400\",\n    \"18401\",\n    \"18402\",\n    \"18403\",\n    \"18404\",\n    \"18406\",\n    \"18408\",\n    \"18409\",\n    \"18410\",\n    \"18411\",\n    \"18413\",\n    \"18414\",\n    \"18415\",\n    \"18416\",\n    \"18417\",\n    \"18418\",\n    \"18419\",\n    \"18422\",\n    \"18423\",\n    \"18430\",\n    \"18431\",\n    \"18432\",\n    \"18433\",\n    \"18435\",\n    \"18437\",\n    \"18438\",\n    \"18439\",\n    \"18441\",\n    \"18442\",\n    \"18448\",\n    \"18449\",\n    \"18450\",\n    \"18451\",\n    \"18452\",\n    \"18453\",\n    \"18455\",\n    \"18456\",\n    \"18457\",\n    \"18458\",\n    \"18459\",\n    \"18461\",\n    \"18463\",\n    \"18464\",\n    \"18465\",\n    \"18466\",\n    \"18467\",\n    \"18468\",\n    \"18469\",\n    \"18470\",\n    \"18471\",\n    \"18473\",\n    \"18474\",\n    \"18476\",\n    \"18477\",\n    \"18478\",\n    \"18479\",\n    \"18481\",\n    \"18486\",\n    \"18490\",\n    \"18491\",\n    \"18493\",\n    \"18495\",\n    \"18496\",\n    \"18497\",\n    \"18498\",\n    \"18501\",\n    \"18502\",\n    \"18504\",\n    \"18505\",\n    \"18507\",\n    \"18508\",\n    \"18509\",\n    \"18510\",\n    \"18511\",\n    \"18514\",\n    \"18515\",\n    \"18517\",\n    \"18518\",\n    \"18519\",\n    \"18520\",\n    \"18521\",\n    \"18523\",\n    \"18524\",\n    \"18525\",\n    \"18526\",\n    \"18528\",\n    \"18529\",\n    \"18530\",\n    \"18532\",\n    \"18533\",\n    \"18536\",\n    \"18537\",\n    \"18538\",\n    \"18539\",\n    \"18540\",\n    \"18542\",\n    \"18543\",\n    \"18544\",\n    \"18545\",\n    \"18546\",\n    \"18548\",\n    \"18549\",\n    \"18551\",\n    \"18552\",\n    \"18554\",\n    \"18555\",\n    \"18557\",\n    \"18558\",\n    \"18561\",\n    \"18563\",\n    \"18567\",\n    \"18568\",\n    \"18569\",\n    \"18570\",\n    \"18573\",\n    \"18574\",\n    \"18575\",\n    \"18577\",\n    \"18578\",\n    \"18579\",\n    \"18580\",\n    \"18581\",\n    \"18582\",\n    \"18583\",\n    \"18584\",\n    \"18585\",\n    \"18587\",\n    \"18589\",\n    \"18590\",\n    \"18591\",\n    \"18592\",\n    \"18593\",\n    \"18595\",\n    \"18596\",\n    \"18597\",\n    \"18598\",\n    \"18599\",\n    \"18600\",\n    \"18601\",\n    \"18602\",\n    \"18603\",\n    \"18606\",\n    \"18608\",\n    \"18610\",\n    \"18611\",\n    \"18612\",\n    \"18613\",\n    \"18614\",\n    \"18615\",\n    \"18616\",\n    \"18618\",\n    \"18619\",\n    \"18620\",\n    \"18621\",\n    \"18622\",\n    \"18625\",\n    \"18626\",\n    \"18628\",\n    \"18631\",\n    \"18634\",\n    \"18636\",\n    \"18637\",\n    \"18638\",\n    \"18639\",\n    \"18640\",\n    \"18641\",\n    \"18642\",\n    \"18644\",\n    \"18645\",\n    \"18646\",\n    \"18647\",\n    \"18648\",\n    \"18649\",\n    \"18650\",\n    \"18652\",\n    \"18654\",\n    \"18655\",\n    \"18656\",\n    \"18657\",\n    \"18661\",\n    \"18663\",\n    \"18664\",\n    \"18665\",\n    \"18666\",\n    \"18667\",\n    \"18668\",\n    \"18669\",\n    \"18670\",\n    \"18672\",\n    \"18674\",\n    \"18676\",\n    \"18677\",\n    \"18678\",\n    \"18680\",\n    \"18683\",\n    \"18685\",\n    \"18688\",\n    \"18692\",\n    \"18694\",\n    \"18695\",\n    \"18696\",\n    \"18697\",\n    \"18698\",\n    \"18699\",\n    \"18700\",\n    \"18701\",\n    \"18705\",\n    \"18706\",\n    \"18708\",\n    \"18711\",\n    \"18712\",\n    \"18713\",\n    \"18717\",\n    \"18719\",\n    \"18720\",\n    \"18724\",\n    \"18725\",\n    \"18726\",\n    \"18727\",\n    \"18728\",\n    \"18729\",\n    \"18730\",\n    \"18731\",\n    \"18733\",\n    \"18734\",\n    \"18735\",\n    \"18736\",\n    \"18737\",\n    \"18738\",\n    \"18740\",\n    \"18741\",\n    \"18742\",\n    \"18745\",\n    \"18746\",\n    \"18747\",\n    \"18749\",\n    \"18751\",\n    \"18757\",\n    \"18759\",\n    \"18760\",\n    \"18761\",\n    \"18762\",\n    \"18764\",\n    \"18767\",\n    \"18770\",\n    \"18771\",\n    \"18772\",\n    \"18773\",\n    \"18774\",\n    \"18776\",\n    \"18777\",\n    \"18782\",\n    \"18783\",\n    \"18784\",\n    \"18785\",\n    \"18789\",\n    \"18790\",\n    \"18791\",\n    \"18793\",\n    \"18794\",\n    \"18797\",\n    \"18799\",\n    \"18801\",\n    \"18802\",\n    \"18804\",\n    \"18805\",\n    \"18806\",\n    \"18807\",\n    \"18808\",\n    \"18809\",\n    \"18811\",\n    \"18813\",\n    \"18815\",\n    \"18817\",\n    \"18818\",\n    \"18819\",\n    \"18823\",\n    \"18824\",\n    \"18828\",\n    \"18829\",\n    \"18831\",\n    \"18833\",\n    \"18835\",\n    \"18836\",\n    \"18837\",\n    \"18838\",\n    \"18839\",\n    \"18840\",\n    \"18843\",\n    \"18844\",\n    \"18845\",\n    \"18848\",\n    \"18850\",\n    \"18852\",\n    \"18853\",\n    \"18854\",\n    \"18856\",\n    \"18857\",\n    \"18859\",\n    \"18860\",\n    \"18861\",\n    \"18865\",\n    \"18867\",\n    \"18869\",\n    \"18870\",\n    \"18871\",\n    \"18872\",\n    \"18874\",\n    \"18875\",\n    \"18877\",\n    \"18878\",\n    \"18879\",\n    \"18880\",\n    \"18882\",\n    \"18884\",\n    \"18886\",\n    \"18887\",\n    \"18890\",\n    \"18891\",\n    \"18894\",\n    \"18897\",\n    \"18898\",\n    \"18899\",\n    \"18900\",\n    \"18901\",\n    \"18902\",\n    \"18903\",\n    \"18908\",\n    \"18909\",\n    \"18910\",\n    \"18911\",\n    \"18912\",\n    \"18913\",\n    \"18916\",\n    \"18917\",\n    \"18918\",\n    \"18921\",\n    \"18923\",\n    \"18925\",\n    \"18927\",\n    \"18930\",\n    \"18933\",\n    \"18934\",\n    \"18939\",\n    \"18941\",\n    \"18942\",\n    \"18943\",\n    \"18944\",\n    \"18945\",\n    \"18946\",\n    \"18948\",\n    \"18950\",\n    \"18953\",\n    \"18954\",\n    \"18955\",\n    \"18956\",\n    \"18957\",\n    \"18958\",\n    \"18959\",\n    \"18960\",\n    \"18963\",\n    \"18964\",\n    \"18965\",\n    \"18966\",\n    \"18967\",\n    \"18968\",\n    \"18969\",\n    \"18970\",\n    \"18971\",\n    \"18975\",\n    \"18976\",\n    \"18977\",\n    \"18978\",\n    \"18979\",\n    \"18980\",\n    \"18981\",\n    \"18983\",\n    \"18984\",\n    \"18987\",\n    \"18988\",\n    \"18990\",\n    \"18991\",\n    \"18992\",\n    \"18993\",\n    \"18996\",\n    \"18997\",\n    \"18998\",\n    \"18999\",\n    \"19000\",\n    \"19001\",\n    \"19004\",\n    \"19005\",\n    \"19006\",\n    \"19007\",\n    \"19008\",\n    \"19009\",\n    \"19010\",\n    \"19011\",\n    \"19012\",\n    \"19014\",\n    \"19015\",\n    \"19018\",\n    \"19019\",\n    \"19020\",\n    \"19021\",\n    \"19025\",\n    \"19026\",\n    \"19027\",\n    \"19030\",\n    \"19031\",\n    \"19032\",\n    \"19033\",\n    \"19035\",\n    \"19039\",\n    \"19040\",\n    \"19044\",\n    \"19046\",\n    \"19047\",\n    \"19050\",\n    \"19052\",\n    \"19054\",\n    \"19057\",\n    \"19058\",\n    \"19061\",\n    \"19062\",\n    \"19064\",\n    \"19065\",\n    \"19066\",\n    \"19067\",\n    \"19068\",\n    \"19069\",\n    \"19071\",\n    \"19073\",\n    \"19074\",\n    \"19077\",\n    \"19079\",\n    \"19082\",\n    \"19083\",\n    \"19084\",\n    \"19085\",\n    \"19088\",\n    \"19089\",\n    \"19091\",\n    \"19092\",\n    \"19094\",\n    \"19095\",\n    \"19096\",\n    \"19097\",\n    \"19098\",\n    \"19099\",\n    \"19100\",\n    \"19102\",\n    \"19105\",\n    \"19106\",\n    \"19107\",\n    \"19109\",\n    \"19111\",\n    \"19114\",\n    \"19116\",\n    \"19120\",\n    \"19121\",\n    \"19123\",\n    \"19124\",\n    \"19125\",\n    \"19126\",\n    \"19127\",\n    \"19128\",\n    \"19130\",\n    \"19131\",\n    \"19132\",\n    \"19135\",\n    \"19138\",\n    \"19140\",\n    \"19144\",\n    \"19145\",\n    \"19146\",\n    \"19147\",\n    \"19149\",\n    \"19151\",\n    \"19153\",\n    \"19154\",\n    \"19157\",\n    \"19159\",\n    \"19160\",\n    \"19162\",\n    \"19166\",\n    \"19168\",\n    \"19169\",\n    \"19170\",\n    \"19171\",\n    \"19175\",\n    \"19177\",\n    \"19178\",\n    \"19179\",\n    \"19180\",\n    \"19184\",\n    \"19185\",\n    \"19186\",\n    \"19188\",\n    \"19189\",\n    \"19190\",\n    \"19191\",\n    \"19192\",\n    \"19193\",\n    \"19194\",\n    \"19195\",\n    \"19196\",\n    \"19198\",\n    \"19199\",\n    \"19200\",\n    \"19202\",\n    \"19203\",\n    \"19207\",\n    \"19208\",\n    \"19210\",\n    \"19211\",\n    \"19212\",\n    \"19214\",\n    \"19215\",\n    \"19216\",\n    \"19218\",\n    \"19221\",\n    \"19222\",\n    \"19224\",\n    \"19226\",\n    \"19228\",\n    \"19229\",\n    \"19230\",\n    \"19231\",\n    \"19236\",\n    \"19240\",\n    \"19242\",\n    \"19245\",\n    \"19246\",\n    \"19247\",\n    \"19249\",\n    \"19250\",\n    \"19251\",\n    \"19252\",\n    \"19255\",\n    \"19256\",\n    \"19261\",\n    \"19262\",\n    \"19265\",\n    \"19267\",\n    \"19268\",\n    \"19269\",\n    \"19270\",\n    \"19272\",\n    \"19273\",\n    \"19275\",\n    \"19276\",\n    \"19277\",\n    \"19279\",\n    \"19280\",\n    \"19281\",\n    \"19283\",\n    \"19284\",\n    \"19286\",\n    \"19288\",\n    \"19289\",\n    \"19290\",\n    \"19291\",\n    \"19297\",\n    \"19298\",\n    \"19300\",\n    \"19301\",\n    \"19302\",\n    \"19306\",\n    \"19307\",\n    \"19308\",\n    \"19309\",\n    \"19311\",\n    \"19312\",\n    \"19313\",\n    \"19314\",\n    \"19315\",\n    \"19316\",\n    \"19317\",\n    \"19319\",\n    \"19320\",\n    \"19321\",\n    \"19325\",\n    \"19326\",\n    \"19329\",\n    \"19335\",\n    \"19336\",\n    \"19337\",\n    \"19338\",\n    \"19339\",\n    \"19342\",\n    \"19343\",\n    \"19344\",\n    \"19345\",\n    \"19347\",\n    \"19348\",\n    \"19349\",\n    \"19350\",\n    \"19352\",\n    \"19357\",\n    \"19358\",\n    \"19359\",\n    \"19361\",\n    \"19362\",\n    \"19363\",\n    \"19364\",\n    \"19366\",\n    \"19368\",\n    \"19369\",\n    \"19371\",\n    \"19373\",\n    \"19374\",\n    \"19376\",\n    \"19377\",\n    \"19378\",\n    \"19379\",\n    \"19382\",\n    \"19383\",\n    \"19384\",\n    \"19385\",\n    \"19388\",\n    \"19389\",\n    \"19390\",\n    \"19391\",\n    \"19392\",\n    \"19393\",\n    \"19394\",\n    \"19396\",\n    \"19399\",\n    \"19402\",\n    \"19404\",\n    \"19406\",\n    \"19409\",\n    \"19410\",\n    \"19411\",\n    \"19414\",\n    \"19415\",\n    \"19416\",\n    \"19417\",\n    \"19418\",\n    \"19419\",\n    \"19420\",\n    \"19421\",\n    \"19422\",\n    \"19425\",\n    \"19426\",\n    \"19427\",\n    \"19428\",\n    \"19429\",\n    \"19431\",\n    \"19432\",\n    \"19433\",\n    \"19434\",\n    \"19436\",\n    \"19437\",\n    \"19438\",\n    \"19439\",\n    \"19440\",\n    \"19441\",\n    \"19443\",\n    \"19445\",\n    \"19446\",\n    \"19447\",\n    \"19448\",\n    \"19449\",\n    \"19451\",\n    \"19453\",\n    \"19454\",\n    \"19455\",\n    \"19458\",\n    \"19461\",\n    \"19462\",\n    \"19463\",\n    \"19464\",\n    \"19465\",\n    \"19466\",\n    \"19467\",\n    \"19469\",\n    \"19472\",\n    \"19474\",\n    \"19475\",\n    \"19478\",\n    \"19480\",\n    \"19485\",\n    \"19486\",\n    \"19487\",\n    \"19489\",\n    \"19490\",\n    \"19491\",\n    \"19492\",\n    \"19497\",\n    \"19499\",\n    \"19504\",\n    \"19507\",\n    \"19509\",\n    \"19510\",\n    \"19511\",\n    \"19512\",\n    \"19513\",\n    \"19514\",\n    \"19516\",\n    \"19517\",\n    \"19519\",\n    \"19522\",\n    \"19523\",\n    \"19526\",\n    \"19527\",\n    \"19528\",\n    \"19529\",\n    \"19530\",\n    \"19534\",\n    \"19536\",\n    \"19537\",\n    \"19539\",\n    \"19540\",\n    \"19547\",\n    \"19551\",\n    \"19553\",\n    \"19554\",\n    \"19555\",\n    \"19556\",\n    \"19557\",\n    \"19561\",\n    \"19563\",\n    \"19564\",\n    \"19565\",\n    \"19566\",\n    \"19567\",\n    \"19568\",\n    \"19569\",\n    \"19570\",\n    \"19571\",\n    \"19572\",\n    \"19573\",\n    \"19574\",\n    \"19576\",\n    \"19577\",\n    \"19578\",\n    \"19579\",\n    \"19580\",\n    \"19581\",\n    \"19582\",\n    \"19583\",\n    \"19584\",\n    \"19585\",\n    \"19586\",\n    \"19587\",\n    \"19589\",\n    \"19590\",\n    \"19591\",\n    \"19593\",\n    \"19594\",\n    \"19596\",\n    \"19597\",\n    \"19599\",\n    \"19600\",\n    \"19603\",\n    \"19604\",\n    \"19605\",\n    \"19606\",\n    \"19607\",\n    \"19608\",\n    \"19609\",\n    \"19610\",\n    \"19611\",\n    \"19612\",\n    \"19613\",\n    \"19614\",\n    \"19615\",\n    \"19616\",\n    \"19619\",\n    \"19621\",\n    \"19622\",\n    \"19623\",\n    \"19624\",\n    \"19626\",\n    \"19627\",\n    \"19628\",\n    \"19631\",\n    \"19633\",\n    \"19635\",\n    \"19636\",\n    \"19637\",\n    \"19639\",\n    \"19640\",\n    \"19643\",\n    \"19644\",\n    \"19645\",\n    \"19647\",\n    \"19648\",\n    \"19650\",\n    \"19651\",\n    \"19652\",\n    \"19654\",\n    \"19655\",\n    \"19656\",\n    \"19662\",\n    \"19663\",\n    \"19664\",\n    \"19667\",\n    \"19668\",\n    \"19669\",\n    \"19670\",\n    \"19671\",\n    \"19672\",\n    \"19673\",\n    \"19677\",\n    \"19679\",\n    \"19682\",\n    \"19683\",\n    \"19684\",\n    \"19685\",\n    \"19686\",\n    \"19688\",\n    \"19689\",\n    \"19690\",\n    \"19692\",\n    \"19696\",\n    \"19698\",\n    \"19699\",\n    \"19702\",\n    \"19703\",\n    \"19705\",\n    \"19706\",\n    \"19707\",\n    \"19708\",\n    \"19709\",\n    \"19710\",\n    \"19711\",\n    \"19712\",\n    \"19713\",\n    \"19714\",\n    \"19715\",\n    \"19716\",\n    \"19717\",\n    \"19718\",\n    \"19719\",\n    \"19724\",\n    \"19727\",\n    \"19728\",\n    \"19729\",\n    \"19733\",\n    \"19734\",\n    \"19735\",\n    \"19737\",\n    \"19738\",\n    \"19739\",\n    \"19741\",\n    \"19743\",\n    \"19745\",\n    \"19746\",\n    \"19747\",\n    \"19748\",\n    \"19749\",\n    \"19751\",\n    \"19753\",\n    \"19755\",\n    \"19757\",\n    \"19758\",\n    \"19760\",\n    \"19761\",\n    \"19762\",\n    \"19765\",\n    \"19766\",\n    \"19767\",\n    \"19768\",\n    \"19769\",\n    \"19770\",\n    \"19771\",\n    \"19772\",\n    \"19773\",\n    \"19774\",\n    \"19775\",\n    \"19776\",\n    \"19777\",\n    \"19779\",\n    \"19781\",\n    \"19783\",\n    \"19784\",\n    \"19786\",\n    \"19790\",\n    \"19792\",\n    \"19794\",\n    \"19795\",\n    \"19796\",\n    \"19797\",\n    \"19799\",\n    \"19800\",\n    \"19801\",\n    \"19802\",\n    \"19806\",\n    \"19809\",\n    \"19810\",\n    \"19811\",\n    \"19812\",\n    \"19813\",\n    \"19814\",\n    \"19822\",\n    \"19825\",\n    \"19827\",\n    \"19828\",\n    \"19832\",\n    \"19833\",\n    \"19834\",\n    \"19836\",\n    \"19837\",\n    \"19838\",\n    \"19840\",\n    \"19841\",\n    \"19842\",\n    \"19843\",\n    \"19844\",\n    \"19845\",\n    \"19846\",\n    \"19849\",\n    \"19852\",\n    \"19853\",\n    \"19855\",\n    \"19857\",\n    \"19858\",\n    \"19861\",\n    \"19863\",\n    \"19864\",\n    \"19865\",\n    \"19866\",\n    \"19868\",\n    \"19869\",\n    \"19874\",\n    \"19875\",\n    \"19876\",\n    \"19878\",\n    \"19880\",\n    \"19881\",\n    \"19884\",\n    \"19885\",\n    \"19887\",\n    \"19892\",\n    \"19893\",\n    \"19895\",\n    \"19896\",\n    \"19897\",\n    \"19898\",\n    \"19900\",\n    \"19907\",\n    \"19909\",\n    \"19910\",\n    \"19911\",\n    \"19914\",\n    \"19916\",\n    \"19917\",\n    \"19920\",\n    \"19923\",\n    \"19924\",\n    \"19925\",\n    \"19927\",\n    \"19929\",\n    \"19930\",\n    \"19933\",\n    \"19935\",\n    \"19938\",\n    \"19940\",\n    \"19942\",\n    \"19943\",\n    \"19944\",\n    \"19946\",\n    \"19947\",\n    \"19956\",\n    \"19957\",\n    \"19959\",\n    \"19961\",\n    \"19965\",\n    \"19967\",\n    \"19969\",\n    \"19971\",\n    \"19972\",\n    \"19973\",\n    \"19974\",\n    \"19978\",\n    \"19979\",\n    \"19985\",\n    \"19986\",\n    \"19987\",\n    \"19988\",\n    \"19989\",\n    \"19991\",\n    \"19993\",\n    \"19995\",\n    \"19997\",\n    \"20004\",\n    \"20005\",\n    \"20006\",\n    \"20008\",\n    \"20010\",\n    \"20012\",\n    \"20013\",\n    \"20015\",\n    \"20016\",\n    \"20017\",\n    \"20018\",\n    \"20019\",\n    \"20022\",\n    \"20026\",\n    \"20029\",\n    \"20031\",\n    \"20032\",\n    \"20033\",\n    \"20034\",\n    \"20035\",\n    \"20037\",\n    \"20039\",\n    \"20042\",\n    \"20044\",\n    \"20045\",\n    \"20047\",\n    \"20049\",\n    \"20050\",\n    \"20052\",\n    \"20053\",\n    \"20054\",\n    \"20057\",\n    \"20059\",\n    \"20060\",\n    \"20063\",\n    \"20066\",\n    \"20067\",\n    \"20068\",\n    \"20071\",\n    \"20072\",\n    \"20073\",\n    \"20076\",\n    \"20077\",\n    \"20078\",\n    \"20080\",\n    \"20082\",\n    \"20083\",\n    \"20084\",\n    \"20085\",\n    \"20086\",\n    \"20087\",\n    \"20088\",\n    \"20090\",\n    \"20091\",\n    \"20092\",\n    \"20093\",\n    \"20094\",\n    \"20097\",\n    \"20099\",\n    \"20100\",\n    \"20101\",\n    \"20102\",\n    \"20103\",\n    \"20104\",\n    \"20106\",\n    \"20107\",\n    \"20108\",\n    \"20109\",\n    \"20112\",\n    \"20113\",\n    \"20114\",\n    \"20118\",\n    \"20122\",\n    \"20123\",\n    \"20125\",\n    \"20127\",\n    \"20128\",\n    \"20129\",\n    \"20130\",\n    \"20131\",\n    \"20133\",\n    \"20136\",\n    \"20137\",\n    \"20138\",\n    \"20139\",\n    \"20140\",\n    \"20141\",\n    \"20142\",\n    \"20143\",\n    \"20144\",\n    \"20146\",\n    \"20147\",\n    \"20149\",\n    \"20150\",\n    \"20151\",\n    \"20152\",\n    \"20153\",\n    \"20154\",\n    \"20155\",\n    \"20156\",\n    \"20157\",\n    \"20158\",\n    \"20160\",\n    \"20163\",\n    \"20164\",\n    \"20165\",\n    \"20168\",\n    \"20169\",\n    \"20171\",\n    \"20175\",\n    \"20177\",\n    \"20178\",\n    \"20179\",\n    \"20181\",\n    \"20182\",\n    \"20185\",\n    \"20188\",\n    \"20190\",\n    \"20193\",\n    \"20194\",\n    \"20196\",\n    \"20197\",\n    \"20198\",\n    \"20200\",\n    \"20202\",\n    \"20204\",\n    \"20205\",\n    \"20207\",\n    \"20209\",\n    \"20212\",\n    \"20214\",\n    \"20218\",\n    \"20222\",\n    \"20223\",\n    \"20225\",\n    \"20227\",\n    \"20228\",\n    \"20230\",\n    \"20232\",\n    \"20233\",\n    \"20234\",\n    \"20235\",\n    \"20237\",\n    \"20238\",\n    \"20240\",\n    \"20242\",\n    \"20243\",\n    \"20246\",\n    \"20247\",\n    \"20248\",\n    \"20249\",\n    \"20252\",\n    \"20253\",\n    \"20254\",\n    \"20255\",\n    \"20257\",\n    \"20258\",\n    \"20260\",\n    \"20261\",\n    \"20263\",\n    \"20265\",\n    \"20266\",\n    \"20267\",\n    \"20270\",\n    \"20271\",\n    \"20273\",\n    \"20276\",\n    \"20277\",\n    \"20278\",\n    \"20281\",\n    \"20282\",\n    \"20285\",\n    \"20287\",\n    \"20288\",\n    \"20290\",\n    \"20291\",\n    \"20292\",\n    \"20293\",\n    \"20294\",\n    \"20296\",\n    \"20297\",\n    \"20299\",\n    \"20300\",\n    \"20301\",\n    \"20306\",\n    \"20309\",\n    \"20311\",\n    \"20312\",\n    \"20313\",\n    \"20314\",\n    \"20315\",\n    \"20316\",\n    \"20317\",\n    \"20318\",\n    \"20319\",\n    \"20321\",\n    \"20324\",\n    \"20325\",\n    \"20326\",\n    \"20327\",\n    \"20328\",\n    \"20329\",\n    \"20330\",\n    \"20331\",\n    \"20332\",\n    \"20333\",\n    \"20335\",\n    \"20336\",\n    \"20338\",\n    \"20341\",\n    \"20342\",\n    \"20343\",\n    \"20344\",\n    \"20345\",\n    \"20346\",\n    \"20350\",\n    \"20352\",\n    \"20353\",\n    \"20354\",\n    \"20355\",\n    \"20356\",\n    \"20357\",\n    \"20359\",\n    \"20361\",\n    \"20363\",\n    \"20364\",\n    \"20365\",\n    \"20366\",\n    \"20367\",\n    \"20369\",\n    \"20370\",\n    \"20372\",\n    \"20373\",\n    \"20375\",\n    \"20377\",\n    \"20378\",\n    \"20379\",\n    \"20380\",\n    \"20385\",\n    \"20386\",\n    \"20387\",\n    \"20388\",\n    \"20389\",\n    \"20390\",\n    \"20393\",\n    \"20394\",\n    \"20395\",\n    \"20396\",\n    \"20397\",\n    \"20398\",\n    \"20400\",\n    \"20402\",\n    \"20403\",\n    \"20404\",\n    \"20405\",\n    \"20406\",\n    \"20408\",\n    \"20409\",\n    \"20412\",\n    \"20414\",\n    \"20415\",\n    \"20417\",\n    \"20418\",\n    \"20419\",\n    \"20420\",\n    \"20422\",\n    \"20423\",\n    \"20425\",\n    \"20428\",\n    \"20429\",\n    \"20431\",\n    \"20432\",\n    \"20433\",\n    \"20435\",\n    \"20437\",\n    \"20443\",\n    \"20444\",\n    \"20445\",\n    \"20447\",\n    \"20448\",\n    \"20449\",\n    \"20450\",\n    \"20452\",\n    \"20453\",\n    \"20454\",\n    \"20455\",\n    \"20456\",\n    \"20457\",\n    \"20458\",\n    \"20460\",\n    \"20462\",\n    \"20463\",\n    \"20465\",\n    \"20466\",\n    \"20467\",\n    \"20468\",\n    \"20469\",\n    \"20472\",\n    \"20473\",\n    \"20474\",\n    \"20476\",\n    \"20477\",\n    \"20479\",\n    \"20480\",\n    \"20481\",\n    \"20483\",\n    \"20485\",\n    \"20487\",\n    \"20488\",\n    \"20491\",\n    \"20492\",\n    \"20493\",\n    \"20494\",\n    \"20496\",\n    \"20497\",\n    \"20499\",\n    \"20501\",\n    \"20502\",\n    \"20504\",\n    \"20508\",\n    \"20509\",\n    \"20510\",\n    \"20511\",\n    \"20512\",\n    \"20513\",\n    \"20515\",\n    \"20517\",\n    \"20519\",\n    \"20520\",\n    \"20521\",\n    \"20523\",\n    \"20524\",\n    \"20525\",\n    \"20526\",\n    \"20528\",\n    \"20529\",\n    \"20530\",\n    \"20531\",\n    \"20533\",\n    \"20534\",\n    \"20536\",\n    \"20537\",\n    \"20538\",\n    \"20540\",\n    \"20541\",\n    \"20543\",\n    \"20544\",\n    \"20545\",\n    \"20546\",\n    \"20548\",\n    \"20549\",\n    \"20550\",\n    \"20551\",\n    \"20553\",\n    \"20555\",\n    \"20556\",\n    \"20557\",\n    \"20558\",\n    \"20560\",\n    \"20562\",\n    \"20563\",\n    \"20564\",\n    \"20569\",\n    \"20573\",\n    \"20576\",\n    \"20578\",\n    \"20579\",\n    \"20583\",\n    \"20585\",\n    \"20586\",\n    \"20587\",\n    \"20589\",\n    \"20590\",\n    \"20598\",\n    \"20603\",\n    \"20605\",\n    \"20606\",\n    \"20607\",\n    \"20608\",\n    \"20609\",\n    \"20611\",\n    \"20613\",\n    \"20615\",\n    \"20616\",\n    \"20618\",\n    \"20619\",\n    \"20620\",\n    \"20621\",\n    \"20622\",\n    \"20623\",\n    \"20624\",\n    \"20625\",\n    \"20626\",\n    \"20627\",\n    \"20628\",\n    \"20629\",\n    \"20630\",\n    \"20631\",\n    \"20633\",\n    \"20635\",\n    \"20637\",\n    \"20638\",\n    \"20641\",\n    \"20642\",\n    \"20646\",\n    \"20649\",\n    \"20651\",\n    \"20653\",\n    \"20654\",\n    \"20656\",\n    \"20657\",\n    \"20659\",\n    \"20662\",\n    \"20664\",\n    \"20667\",\n    \"20668\",\n    \"20670\",\n    \"20673\",\n    \"20676\",\n    \"20678\",\n    \"20679\",\n    \"20680\",\n    \"20681\",\n    \"20682\",\n    \"20683\",\n    \"20684\",\n    \"20685\",\n    \"20686\",\n    \"20687\",\n    \"20688\",\n    \"20691\",\n    \"20692\",\n    \"20695\",\n    \"20697\",\n    \"20698\",\n    \"20700\",\n    \"20704\",\n    \"20707\",\n    \"20713\",\n    \"20714\",\n    \"20715\",\n    \"20716\",\n    \"20717\",\n    \"20719\",\n    \"20724\",\n    \"20726\",\n    \"20727\",\n    \"20728\",\n    \"20730\",\n    \"20733\",\n    \"20735\",\n    \"20736\",\n    \"20743\",\n    \"20744\",\n    \"20746\",\n    \"20748\",\n    \"20750\",\n    \"20753\",\n    \"20754\",\n    \"20755\",\n    \"20757\",\n    \"20759\",\n    \"20760\",\n    \"20763\",\n    \"20765\",\n    \"20766\",\n    \"20767\",\n    \"20768\",\n    \"20771\",\n    \"20772\",\n    \"20773\",\n    \"20774\",\n    \"20775\",\n    \"20776\",\n    \"20777\",\n    \"20778\",\n    \"20780\",\n    \"20781\",\n    \"20783\",\n    \"20784\",\n    \"20785\",\n    \"20786\",\n    \"20789\",\n    \"20790\",\n    \"20791\",\n    \"20795\",\n    \"20796\",\n    \"20797\",\n    \"20798\",\n    \"20799\",\n    \"20800\",\n    \"20803\",\n    \"20805\",\n    \"20807\",\n    \"20808\",\n    \"20809\",\n    \"20810\",\n    \"20811\",\n    \"20812\",\n    \"20813\",\n    \"20814\",\n    \"20816\",\n    \"20818\",\n    \"20819\",\n    \"20821\",\n    \"20822\",\n    \"20824\",\n    \"20825\",\n    \"20827\",\n    \"20828\",\n    \"20831\",\n    \"20833\",\n    \"20834\",\n    \"20836\",\n    \"20837\",\n    \"20838\",\n    \"20839\",\n    \"20840\",\n    \"20841\",\n    \"20843\",\n    \"20845\",\n    \"20850\",\n    \"20852\",\n    \"20853\",\n    \"20855\",\n    \"20856\",\n    \"20862\",\n    \"20865\",\n    \"20867\",\n    \"20868\",\n    \"20869\",\n    \"20870\",\n    \"20872\",\n    \"20873\",\n    \"20874\",\n    \"20875\",\n    \"20876\",\n    \"20877\",\n    \"20878\",\n    \"20880\",\n    \"20882\",\n    \"20884\",\n    \"20885\",\n    \"20886\",\n    \"20892\",\n    \"20893\",\n    \"20894\",\n    \"20895\",\n    \"20896\",\n    \"20897\",\n    \"20898\",\n    \"20899\",\n    \"20900\",\n    \"20901\",\n    \"20902\",\n    \"20903\",\n    \"20904\",\n    \"20905\",\n    \"20906\",\n    \"20909\",\n    \"20910\",\n    \"20911\",\n    \"20912\",\n    \"20913\",\n    \"20914\",\n    \"20918\",\n    \"20920\",\n    \"20921\",\n    \"20923\",\n    \"20925\",\n    \"20927\",\n    \"20928\",\n    \"20929\",\n    \"20930\",\n    \"20931\",\n    \"20932\",\n    \"20933\",\n    \"20934\",\n    \"20935\",\n    \"20936\",\n    \"20937\",\n    \"20938\",\n    \"20939\",\n    \"20940\",\n    \"20941\",\n    \"20942\",\n    \"20944\",\n    \"20945\",\n    \"20946\",\n    \"20951\",\n    \"20955\",\n    \"20958\",\n    \"20959\",\n    \"20960\",\n    \"20962\",\n    \"20963\",\n    \"20964\",\n    \"20965\",\n    \"20966\",\n    \"20968\",\n    \"20971\",\n    \"20972\",\n    \"20973\",\n    \"20974\",\n    \"20975\",\n    \"20976\",\n    \"20977\",\n    \"20978\",\n    \"20981\",\n    \"20983\",\n    \"20985\",\n    \"20987\",\n    \"20989\",\n    \"20990\",\n    \"20991\",\n    \"20992\",\n    \"20993\",\n    \"20996\",\n    \"21002\",\n    \"21003\",\n    \"21004\",\n    \"21005\",\n    \"21007\",\n    \"21008\",\n    \"21011\",\n    \"21012\",\n    \"21015\",\n    \"21016\",\n    \"21017\",\n    \"21022\",\n    \"21024\",\n    \"21026\",\n    \"21027\",\n    \"21028\",\n    \"21029\",\n    \"21030\",\n    \"21032\",\n    \"21034\",\n    \"21035\",\n    \"21036\",\n    \"21037\",\n    \"21038\",\n    \"21039\",\n    \"21043\",\n    \"21045\",\n    \"21046\",\n    \"21047\",\n    \"21050\",\n    \"21051\",\n    \"21054\",\n    \"21055\",\n    \"21056\",\n    \"21057\",\n    \"21058\",\n    \"21059\",\n    \"21060\",\n    \"21065\",\n    \"21066\",\n    \"21067\",\n    \"21068\",\n    \"21069\",\n    \"21071\",\n    \"21073\",\n    \"21074\",\n    \"21075\",\n    \"21077\",\n    \"21078\",\n    \"21079\",\n    \"21081\",\n    \"21084\",\n    \"21085\",\n    \"21086\",\n    \"21088\",\n    \"21089\",\n    \"21092\",\n    \"21093\",\n    \"21094\",\n    \"21096\",\n    \"21097\",\n    \"21101\",\n    \"21105\",\n    \"21106\",\n    \"21107\",\n    \"21108\",\n    \"21110\",\n    \"21111\",\n    \"21112\",\n    \"21113\",\n    \"21115\",\n    \"21116\",\n    \"21118\",\n    \"21119\",\n    \"21120\",\n    \"21122\",\n    \"21123\",\n    \"21124\",\n    \"21125\",\n    \"21126\",\n    \"21129\",\n    \"21130\",\n    \"21131\",\n    \"21132\",\n    \"21134\",\n    \"21138\",\n    \"21139\",\n    \"21141\",\n    \"21142\",\n    \"21143\",\n    \"21145\",\n    \"21148\",\n    \"21150\",\n    \"21152\",\n    \"21154\",\n    \"21155\",\n    \"21157\",\n    \"21158\",\n    \"21160\",\n    \"21162\",\n    \"21164\",\n    \"21165\",\n    \"21167\",\n    \"21169\",\n    \"21170\",\n    \"21171\",\n    \"21173\",\n    \"21175\",\n    \"21176\",\n    \"21177\",\n    \"21178\",\n    \"21179\",\n    \"21180\",\n    \"21182\",\n    \"21184\",\n    \"21185\",\n    \"21186\",\n    \"21187\",\n    \"21188\",\n    \"21190\",\n    \"21193\",\n    \"21194\",\n    \"21197\",\n    \"21201\",\n    \"21202\",\n    \"21203\",\n    \"21204\",\n    \"21205\",\n    \"21208\"\n  ],\n  \"val\": [\n    \"6\",\n    \"7\",\n    \"8\",\n    \"13\",\n    \"14\",\n    \"16\",\n    \"18\",\n    \"28\",\n    \"36\",\n    \"45\",\n    \"50\",\n    \"52\",\n    \"55\",\n    \"60\",\n    \"66\",\n    \"67\",\n    \"71\",\n    \"72\",\n    \"74\",\n    \"77\",\n    \"79\",\n    \"81\",\n    \"82\",\n    \"89\",\n    \"101\",\n    \"106\",\n    \"113\",\n    \"118\",\n    \"122\",\n    \"124\",\n    \"127\",\n    \"147\",\n    \"148\",\n    \"150\",\n    \"153\",\n    \"160\",\n    \"164\",\n    \"165\",\n    \"169\",\n    \"173\",\n    \"178\",\n    \"206\",\n    \"213\",\n    \"221\",\n    \"227\",\n    \"231\",\n    \"240\",\n    \"241\",\n    \"247\",\n    \"249\",\n    \"254\",\n    \"256\",\n    \"257\",\n    \"258\",\n    \"262\",\n    \"263\",\n    \"265\",\n    \"273\",\n    \"274\",\n    \"278\",\n    \"281\",\n    \"284\",\n    \"290\",\n    \"299\",\n    \"302\",\n    \"309\",\n    \"317\",\n    \"323\",\n    \"326\",\n    \"340\",\n    \"343\",\n    \"356\",\n    \"357\",\n    \"358\",\n    \"360\",\n    \"361\",\n    \"367\",\n    \"371\",\n    \"376\",\n    \"384\",\n    \"393\",\n    \"394\",\n    \"399\",\n    \"416\",\n    \"418\",\n    \"420\",\n    \"421\",\n    \"422\",\n    \"426\",\n    \"431\",\n    \"449\",\n    \"455\",\n    \"467\",\n    \"472\",\n    \"475\",\n    \"481\",\n    \"483\",\n    \"486\",\n    \"497\",\n    \"502\",\n    \"505\",\n    \"513\",\n    \"514\",\n    \"529\",\n    \"544\",\n    \"547\",\n    \"560\",\n    \"570\",\n    \"571\",\n    \"580\",\n    \"582\",\n    \"586\",\n    \"590\",\n    \"591\",\n    \"592\",\n    \"597\",\n    \"598\",\n    \"606\",\n    \"608\",\n    \"610\",\n    \"618\",\n    \"622\",\n    \"623\",\n    \"626\",\n    \"647\",\n    \"656\",\n    \"661\",\n    \"662\",\n    \"664\",\n    \"666\",\n    \"682\",\n    \"687\",\n    \"690\",\n    \"698\",\n    \"700\",\n    \"704\",\n    \"711\",\n    \"716\",\n    \"721\",\n    \"722\",\n    \"724\",\n    \"725\",\n    \"727\",\n    \"737\",\n    \"738\",\n    \"740\",\n    \"744\",\n    \"745\",\n    \"750\",\n    \"757\",\n    \"758\",\n    \"759\",\n    \"760\",\n    \"761\",\n    \"765\",\n    \"767\",\n    \"771\",\n    \"776\",\n    \"779\",\n    \"780\",\n    \"782\",\n    \"786\",\n    \"790\",\n    \"803\",\n    \"809\",\n    \"813\",\n    \"815\",\n    \"818\",\n    \"821\",\n    \"825\",\n    \"829\",\n    \"837\",\n    \"838\",\n    \"839\",\n    \"846\",\n    \"847\",\n    \"855\",\n    \"859\",\n    \"863\",\n    \"864\",\n    \"867\",\n    \"871\",\n    \"873\",\n    \"885\",\n    \"891\",\n    \"896\",\n    \"904\",\n    \"911\",\n    \"912\",\n    \"914\",\n    \"917\",\n    \"919\",\n    \"920\",\n    \"921\",\n    \"924\",\n    \"927\",\n    \"934\",\n    \"940\",\n    \"941\",\n    \"947\",\n    \"951\",\n    \"958\",\n    \"963\",\n    \"967\",\n    \"970\",\n    \"979\",\n    \"984\",\n    \"992\",\n    \"994\",\n    \"995\",\n    \"1005\",\n    \"1010\",\n    \"1013\",\n    \"1033\",\n    \"1036\",\n    \"1037\",\n    \"1040\",\n    \"1046\",\n    \"1051\",\n    \"1057\",\n    \"1059\",\n    \"1065\",\n    \"1071\",\n    \"1073\",\n    \"1077\",\n    \"1087\",\n    \"1100\",\n    \"1102\",\n    \"1103\",\n    \"1110\",\n    \"1124\",\n    \"1136\",\n    \"1145\",\n    \"1149\",\n    \"1152\",\n    \"1159\",\n    \"1162\",\n    \"1170\",\n    \"1177\",\n    \"1181\",\n    \"1182\",\n    \"1189\",\n    \"1191\",\n    \"1195\",\n    \"1196\",\n    \"1198\",\n    \"1201\",\n    \"1213\",\n    \"1215\",\n    \"1216\",\n    \"1219\",\n    \"1230\",\n    \"1233\",\n    \"1235\",\n    \"1241\",\n    \"1242\",\n    \"1246\",\n    \"1250\",\n    \"1254\",\n    \"1255\",\n    \"1256\",\n    \"1257\",\n    \"1264\",\n    \"1265\",\n    \"1266\",\n    \"1271\",\n    \"1274\",\n    \"1277\",\n    \"1280\",\n    \"1283\",\n    \"1284\",\n    \"1290\",\n    \"1295\",\n    \"1299\",\n    \"1300\",\n    \"1302\",\n    \"1307\",\n    \"1308\",\n    \"1310\",\n    \"1317\",\n    \"1321\",\n    \"1325\",\n    \"1327\",\n    \"1330\",\n    \"1332\",\n    \"1342\",\n    \"1353\",\n    \"1356\",\n    \"1357\",\n    \"1361\",\n    \"1364\",\n    \"1365\",\n    \"1373\",\n    \"1377\",\n    \"1381\",\n    \"1386\",\n    \"1394\",\n    \"1397\",\n    \"1404\",\n    \"1405\",\n    \"1408\",\n    \"1414\",\n    \"1417\",\n    \"1418\",\n    \"1422\",\n    \"1433\",\n    \"1441\",\n    \"1449\",\n    \"1457\",\n    \"1487\",\n    \"1489\",\n    \"1490\",\n    \"1494\",\n    \"1497\",\n    \"1498\",\n    \"1505\",\n    \"1512\",\n    \"1520\",\n    \"1522\",\n    \"1523\",\n    \"1525\",\n    \"1534\",\n    \"1543\",\n    \"1544\",\n    \"1562\",\n    \"1574\",\n    \"1575\",\n    \"1580\",\n    \"1585\",\n    \"1587\",\n    \"1599\",\n    \"1602\",\n    \"1616\",\n    \"1623\",\n    \"1638\",\n    \"1639\",\n    \"1644\",\n    \"1652\",\n    \"1662\",\n    \"1664\",\n    \"1665\",\n    \"1667\",\n    \"1670\",\n    \"1675\",\n    \"1676\",\n    \"1677\",\n    \"1678\",\n    \"1679\",\n    \"1681\",\n    \"1682\",\n    \"1684\",\n    \"1688\",\n    \"1689\",\n    \"1691\",\n    \"1692\",\n    \"1693\",\n    \"1701\",\n    \"1705\",\n    \"1710\",\n    \"1713\",\n    \"1716\",\n    \"1726\",\n    \"1728\",\n    \"1735\",\n    \"1750\",\n    \"1751\",\n    \"1759\",\n    \"1764\",\n    \"1767\",\n    \"1770\",\n    \"1772\",\n    \"1777\",\n    \"1781\",\n    \"1783\",\n    \"1789\",\n    \"1792\",\n    \"1794\",\n    \"1801\",\n    \"1805\",\n    \"1807\",\n    \"1812\",\n    \"1815\",\n    \"1822\",\n    \"1827\",\n    \"1838\",\n    \"1844\",\n    \"1850\",\n    \"1855\",\n    \"1856\",\n    \"1858\",\n    \"1859\",\n    \"1866\",\n    \"1870\",\n    \"1872\",\n    \"1875\",\n    \"1876\",\n    \"1880\",\n    \"1881\",\n    \"1889\",\n    \"1900\",\n    \"1906\",\n    \"1911\",\n    \"1923\",\n    \"1925\",\n    \"1934\",\n    \"1935\",\n    \"1938\",\n    \"1944\",\n    \"1954\",\n    \"1956\",\n    \"1957\",\n    \"1968\",\n    \"1969\",\n    \"1973\",\n    \"1975\",\n    \"1983\",\n    \"1984\",\n    \"1986\",\n    \"1990\",\n    \"1991\",\n    \"1997\",\n    \"1999\",\n    \"2006\",\n    \"2019\",\n    \"2031\",\n    \"2036\",\n    \"2041\",\n    \"2056\",\n    \"2059\",\n    \"2060\",\n    \"2061\",\n    \"2064\",\n    \"2070\",\n    \"2071\",\n    \"2074\",\n    \"2082\",\n    \"2083\",\n    \"2088\",\n    \"2096\",\n    \"2102\",\n    \"2108\",\n    \"2109\",\n    \"2115\",\n    \"2118\",\n    \"2131\",\n    \"2134\",\n    \"2136\",\n    \"2137\",\n    \"2144\",\n    \"2162\",\n    \"2164\",\n    \"2166\",\n    \"2169\",\n    \"2174\",\n    \"2175\",\n    \"2176\",\n    \"2183\",\n    \"2184\",\n    \"2185\",\n    \"2187\",\n    \"2188\",\n    \"2191\",\n    \"2193\",\n    \"2199\",\n    \"2200\",\n    \"2203\",\n    \"2209\",\n    \"2222\",\n    \"2223\",\n    \"2226\",\n    \"2229\",\n    \"2232\",\n    \"2238\",\n    \"2241\",\n    \"2245\",\n    \"2249\",\n    \"2251\",\n    \"2256\",\n    \"2262\",\n    \"2270\",\n    \"2272\",\n    \"2275\",\n    \"2276\",\n    \"2282\",\n    \"2290\",\n    \"2295\",\n    \"2300\",\n    \"2311\",\n    \"2312\",\n    \"2315\",\n    \"2320\",\n    \"2325\",\n    \"2326\",\n    \"2334\",\n    \"2338\",\n    \"2340\",\n    \"2348\",\n    \"2352\",\n    \"2359\",\n    \"2362\",\n    \"2364\",\n    \"2370\",\n    \"2376\",\n    \"2377\",\n    \"2381\",\n    \"2393\",\n    \"2397\",\n    \"2399\",\n    \"2402\",\n    \"2407\",\n    \"2410\",\n    \"2415\",\n    \"2427\",\n    \"2430\",\n    \"2433\",\n    \"2436\",\n    \"2437\",\n    \"2443\",\n    \"2445\",\n    \"2447\",\n    \"2458\",\n    \"2459\",\n    \"2461\",\n    \"2465\",\n    \"2475\",\n    \"2480\",\n    \"2487\",\n    \"2489\",\n    \"2491\",\n    \"2493\",\n    \"2501\",\n    \"2508\",\n    \"2517\",\n    \"2522\",\n    \"2524\",\n    \"2534\",\n    \"2537\",\n    \"2540\",\n    \"2542\",\n    \"2543\",\n    \"2544\",\n    \"2547\",\n    \"2550\",\n    \"2553\",\n    \"2560\",\n    \"2565\",\n    \"2587\",\n    \"2589\",\n    \"2592\",\n    \"2594\",\n    \"2596\",\n    \"2602\",\n    \"2606\",\n    \"2611\",\n    \"2620\",\n    \"2622\",\n    \"2632\",\n    \"2635\",\n    \"2641\",\n    \"2642\",\n    \"2646\",\n    \"2652\",\n    \"2653\",\n    \"2655\",\n    \"2657\",\n    \"2659\",\n    \"2661\",\n    \"2665\",\n    \"2666\",\n    \"2668\",\n    \"2669\",\n    \"2670\",\n    \"2672\",\n    \"2673\",\n    \"2678\",\n    \"2680\",\n    \"2684\",\n    \"2685\",\n    \"2688\",\n    \"2694\",\n    \"2696\",\n    \"2697\",\n    \"2700\",\n    \"2708\",\n    \"2724\",\n    \"2727\",\n    \"2733\",\n    \"2734\",\n    \"2744\",\n    \"2749\",\n    \"2754\",\n    \"2761\",\n    \"2766\",\n    \"2769\",\n    \"2774\",\n    \"2793\",\n    \"2801\",\n    \"2821\",\n    \"2823\",\n    \"2824\",\n    \"2833\",\n    \"2838\",\n    \"2861\",\n    \"2864\",\n    \"2866\",\n    \"2868\",\n    \"2872\",\n    \"2874\",\n    \"2875\",\n    \"2879\",\n    \"2889\",\n    \"2895\",\n    \"2897\",\n    \"2907\",\n    \"2910\",\n    \"2916\",\n    \"2918\",\n    \"2934\",\n    \"2941\",\n    \"2945\",\n    \"2961\",\n    \"2975\",\n    \"2985\",\n    \"2991\",\n    \"3001\",\n    \"3002\",\n    \"3005\",\n    \"3010\",\n    \"3011\",\n    \"3013\",\n    \"3014\",\n    \"3017\",\n    \"3018\",\n    \"3019\",\n    \"3023\",\n    \"3029\",\n    \"3030\",\n    \"3033\",\n    \"3051\",\n    \"3053\",\n    \"3059\",\n    \"3067\",\n    \"3070\",\n    \"3082\",\n    \"3087\",\n    \"3098\",\n    \"3108\",\n    \"3112\",\n    \"3114\",\n    \"3120\",\n    \"3121\",\n    \"3124\",\n    \"3137\",\n    \"3160\",\n    \"3161\",\n    \"3162\",\n    \"3163\",\n    \"3164\",\n    \"3172\",\n    \"3176\",\n    \"3177\",\n    \"3183\",\n    \"3186\",\n    \"3195\",\n    \"3198\",\n    \"3199\",\n    \"3200\",\n    \"3207\",\n    \"3209\",\n    \"3223\",\n    \"3224\",\n    \"3228\",\n    \"3232\",\n    \"3240\",\n    \"3251\",\n    \"3263\",\n    \"3265\",\n    \"3268\",\n    \"3270\",\n    \"3279\",\n    \"3282\",\n    \"3283\",\n    \"3287\",\n    \"3290\",\n    \"3293\",\n    \"3294\",\n    \"3313\",\n    \"3317\",\n    \"3348\",\n    \"3356\",\n    \"3359\",\n    \"3361\",\n    \"3364\",\n    \"3366\",\n    \"3367\",\n    \"3368\",\n    \"3371\",\n    \"3372\",\n    \"3380\",\n    \"3388\",\n    \"3390\",\n    \"3410\",\n    \"3417\",\n    \"3420\",\n    \"3424\",\n    \"3425\",\n    \"3429\",\n    \"3432\",\n    \"3435\",\n    \"3438\",\n    \"3444\",\n    \"3446\",\n    \"3449\",\n    \"3450\",\n    \"3453\",\n    \"3462\",\n    \"3475\",\n    \"3483\",\n    \"3487\",\n    \"3489\",\n    \"3499\",\n    \"3502\",\n    \"3517\",\n    \"3522\",\n    \"3527\",\n    \"3532\",\n    \"3533\",\n    \"3538\",\n    \"3543\",\n    \"3546\",\n    \"3553\",\n    \"3555\",\n    \"3560\",\n    \"3561\",\n    \"3564\",\n    \"3566\",\n    \"3569\",\n    \"3570\",\n    \"3572\",\n    \"3581\",\n    \"3582\",\n    \"3584\",\n    \"3588\",\n    \"3591\",\n    \"3594\",\n    \"3610\",\n    \"3616\",\n    \"3619\",\n    \"3621\",\n    \"3622\",\n    \"3625\",\n    \"3628\",\n    \"3631\",\n    \"3637\",\n    \"3641\",\n    \"3651\",\n    \"3652\",\n    \"3658\",\n    \"3662\",\n    \"3666\",\n    \"3667\",\n    \"3693\",\n    \"3695\",\n    \"3697\",\n    \"3709\",\n    \"3711\",\n    \"3712\",\n    \"3714\",\n    \"3726\",\n    \"3729\",\n    \"3738\",\n    \"3757\",\n    \"3761\",\n    \"3782\",\n    \"3794\",\n    \"3796\",\n    \"3802\",\n    \"3803\",\n    \"3805\",\n    \"3812\",\n    \"3816\",\n    \"3818\",\n    \"3819\",\n    \"3822\",\n    \"3828\",\n    \"3836\",\n    \"3837\",\n    \"3841\",\n    \"3842\",\n    \"3843\",\n    \"3856\",\n    \"3861\",\n    \"3878\",\n    \"3890\",\n    \"3902\",\n    \"3908\",\n    \"3909\",\n    \"3911\",\n    \"3922\",\n    \"3927\",\n    \"3935\",\n    \"3945\",\n    \"3950\",\n    \"3953\",\n    \"3962\",\n    \"3967\",\n    \"3970\",\n    \"3975\",\n    \"3982\",\n    \"3987\",\n    \"3992\",\n    \"3999\",\n    \"4011\",\n    \"4016\",\n    \"4018\",\n    \"4019\",\n    \"4020\",\n    \"4030\",\n    \"4034\",\n    \"4036\",\n    \"4038\",\n    \"4043\",\n    \"4045\",\n    \"4047\",\n    \"4051\",\n    \"4057\",\n    \"4060\",\n    \"4063\",\n    \"4066\",\n    \"4067\",\n    \"4073\",\n    \"4085\",\n    \"4087\",\n    \"4100\",\n    \"4101\",\n    \"4103\",\n    \"4105\",\n    \"4107\",\n    \"4109\",\n    \"4119\",\n    \"4127\",\n    \"4132\",\n    \"4134\",\n    \"4137\",\n    \"4141\",\n    \"4143\",\n    \"4152\",\n    \"4158\",\n    \"4161\",\n    \"4162\",\n    \"4171\",\n    \"4178\",\n    \"4184\",\n    \"4186\",\n    \"4191\",\n    \"4192\",\n    \"4198\",\n    \"4200\",\n    \"4201\",\n    \"4209\",\n    \"4212\",\n    \"4219\",\n    \"4224\",\n    \"4226\",\n    \"4235\",\n    \"4236\",\n    \"4241\",\n    \"4252\",\n    \"4256\",\n    \"4266\",\n    \"4268\",\n    \"4276\",\n    \"4283\",\n    \"4284\",\n    \"4290\",\n    \"4292\",\n    \"4294\",\n    \"4304\",\n    \"4324\",\n    \"4327\",\n    \"4353\",\n    \"4356\",\n    \"4358\",\n    \"4360\",\n    \"4369\",\n    \"4383\",\n    \"4400\",\n    \"4406\",\n    \"4418\",\n    \"4421\",\n    \"4432\",\n    \"4435\",\n    \"4442\",\n    \"4450\",\n    \"4452\",\n    \"4454\",\n    \"4457\",\n    \"4460\",\n    \"4469\",\n    \"4470\",\n    \"4472\",\n    \"4480\",\n    \"4498\",\n    \"4499\",\n    \"4509\",\n    \"4511\",\n    \"4514\",\n    \"4516\",\n    \"4517\",\n    \"4522\",\n    \"4524\",\n    \"4527\",\n    \"4528\",\n    \"4536\",\n    \"4539\",\n    \"4540\",\n    \"4541\",\n    \"4545\",\n    \"4547\",\n    \"4549\",\n    \"4550\",\n    \"4552\",\n    \"4558\",\n    \"4561\",\n    \"4563\",\n    \"4565\",\n    \"4580\",\n    \"4585\",\n    \"4592\",\n    \"4595\",\n    \"4599\",\n    \"4601\",\n    \"4602\",\n    \"4610\",\n    \"4612\",\n    \"4621\",\n    \"4635\",\n    \"4644\",\n    \"4676\",\n    \"4684\",\n    \"4687\",\n    \"4688\",\n    \"4691\",\n    \"4692\",\n    \"4693\",\n    \"4695\",\n    \"4700\",\n    \"4702\",\n    \"4703\",\n    \"4721\",\n    \"4724\",\n    \"4728\",\n    \"4735\",\n    \"4738\",\n    \"4745\",\n    \"4754\",\n    \"4766\",\n    \"4769\",\n    \"4776\",\n    \"4777\",\n    \"4781\",\n    \"4785\",\n    \"4790\",\n    \"4791\",\n    \"4793\",\n    \"4794\",\n    \"4799\",\n    \"4807\",\n    \"4811\",\n    \"4813\",\n    \"4822\",\n    \"4824\",\n    \"4841\",\n    \"4842\",\n    \"4843\",\n    \"4845\",\n    \"4850\",\n    \"4857\",\n    \"4858\",\n    \"4868\",\n    \"4869\",\n    \"4875\",\n    \"4880\",\n    \"4884\",\n    \"4887\",\n    \"4892\",\n    \"4899\",\n    \"4905\",\n    \"4913\",\n    \"4916\",\n    \"4926\",\n    \"4929\",\n    \"4932\",\n    \"4935\",\n    \"4940\",\n    \"4951\",\n    \"4966\",\n    \"4972\",\n    \"4982\",\n    \"4983\",\n    \"4984\",\n    \"4997\",\n    \"5001\",\n    \"5002\",\n    \"5005\",\n    \"5007\",\n    \"5009\",\n    \"5016\",\n    \"5023\",\n    \"5033\",\n    \"5039\",\n    \"5040\",\n    \"5043\",\n    \"5053\",\n    \"5065\",\n    \"5068\",\n    \"5074\",\n    \"5075\",\n    \"5076\",\n    \"5079\",\n    \"5085\",\n    \"5088\",\n    \"5089\",\n    \"5094\",\n    \"5101\",\n    \"5106\",\n    \"5107\",\n    \"5108\",\n    \"5114\",\n    \"5130\",\n    \"5132\",\n    \"5136\",\n    \"5149\",\n    \"5151\",\n    \"5161\",\n    \"5167\",\n    \"5178\",\n    \"5187\",\n    \"5191\",\n    \"5196\",\n    \"5197\",\n    \"5206\",\n    \"5219\",\n    \"5230\",\n    \"5235\",\n    \"5242\",\n    \"5247\",\n    \"5250\",\n    \"5257\",\n    \"5266\",\n    \"5268\",\n    \"5283\",\n    \"5289\",\n    \"5290\",\n    \"5291\",\n    \"5292\",\n    \"5295\",\n    \"5296\",\n    \"5297\",\n    \"5303\",\n    \"5315\",\n    \"5321\",\n    \"5327\",\n    \"5330\",\n    \"5340\",\n    \"5344\",\n    \"5345\",\n    \"5350\",\n    \"5353\",\n    \"5357\",\n    \"5360\",\n    \"5368\",\n    \"5369\",\n    \"5376\",\n    \"5377\",\n    \"5379\",\n    \"5384\",\n    \"5397\",\n    \"5402\",\n    \"5406\",\n    \"5411\",\n    \"5435\",\n    \"5436\",\n    \"5438\",\n    \"5445\",\n    \"5449\",\n    \"5463\",\n    \"5464\",\n    \"5473\",\n    \"5487\",\n    \"5492\",\n    \"5495\",\n    \"5501\",\n    \"5508\",\n    \"5509\",\n    \"5517\",\n    \"5518\",\n    \"5520\",\n    \"5523\",\n    \"5524\",\n    \"5531\",\n    \"5532\",\n    \"5538\",\n    \"5541\",\n    \"5544\",\n    \"5546\",\n    \"5549\",\n    \"5550\",\n    \"5551\",\n    \"5555\",\n    \"5556\",\n    \"5565\",\n    \"5572\",\n    \"5575\",\n    \"5579\",\n    \"5586\",\n    \"5588\",\n    \"5590\",\n    \"5591\",\n    \"5595\",\n    \"5600\",\n    \"5601\",\n    \"5602\",\n    \"5604\",\n    \"5605\",\n    \"5619\",\n    \"5620\",\n    \"5622\",\n    \"5624\",\n    \"5626\",\n    \"5630\",\n    \"5646\",\n    \"5647\",\n    \"5652\",\n    \"5660\",\n    \"5677\",\n    \"5679\",\n    \"5686\",\n    \"5689\",\n    \"5701\",\n    \"5705\",\n    \"5706\",\n    \"5712\",\n    \"5714\",\n    \"5716\",\n    \"5723\",\n    \"5727\",\n    \"5733\",\n    \"5735\",\n    \"5746\",\n    \"5750\",\n    \"5756\",\n    \"5764\",\n    \"5765\",\n    \"5768\",\n    \"5772\",\n    \"5775\",\n    \"5779\",\n    \"5785\",\n    \"5788\",\n    \"5791\",\n    \"5794\",\n    \"5797\",\n    \"5814\",\n    \"5818\",\n    \"5819\",\n    \"5823\",\n    \"5825\",\n    \"5848\",\n    \"5851\",\n    \"5852\",\n    \"5853\",\n    \"5855\",\n    \"5862\",\n    \"5872\",\n    \"5873\",\n    \"5883\",\n    \"5884\",\n    \"5902\",\n    \"5911\",\n    \"5915\",\n    \"5916\",\n    \"5921\",\n    \"5923\",\n    \"5927\",\n    \"5935\",\n    \"5941\",\n    \"5945\",\n    \"5948\",\n    \"5949\",\n    \"5954\",\n    \"5962\",\n    \"5964\",\n    \"5974\",\n    \"5982\",\n    \"5984\",\n    \"5987\",\n    \"6009\",\n    \"6010\",\n    \"6011\",\n    \"6014\",\n    \"6017\",\n    \"6021\",\n    \"6024\",\n    \"6030\",\n    \"6033\",\n    \"6048\",\n    \"6050\",\n    \"6060\",\n    \"6061\",\n    \"6063\",\n    \"6064\",\n    \"6067\",\n    \"6071\",\n    \"6073\",\n    \"6077\",\n    \"6080\",\n    \"6081\",\n    \"6088\",\n    \"6089\",\n    \"6101\",\n    \"6102\",\n    \"6107\",\n    \"6108\",\n    \"6109\",\n    \"6111\",\n    \"6113\",\n    \"6119\",\n    \"6126\",\n    \"6130\",\n    \"6135\",\n    \"6147\",\n    \"6168\",\n    \"6170\",\n    \"6181\",\n    \"6182\",\n    \"6183\",\n    \"6194\",\n    \"6200\",\n    \"6213\",\n    \"6217\",\n    \"6228\",\n    \"6240\",\n    \"6246\",\n    \"6248\",\n    \"6249\",\n    \"6251\",\n    \"6264\",\n    \"6268\",\n    \"6272\",\n    \"6274\",\n    \"6280\",\n    \"6288\",\n    \"6295\",\n    \"6297\",\n    \"6298\",\n    \"6305\",\n    \"6310\",\n    \"6311\",\n    \"6318\",\n    \"6322\",\n    \"6335\",\n    \"6336\",\n    \"6343\",\n    \"6344\",\n    \"6348\",\n    \"6352\",\n    \"6359\",\n    \"6366\",\n    \"6370\",\n    \"6373\",\n    \"6374\",\n    \"6380\",\n    \"6384\",\n    \"6386\",\n    \"6390\",\n    \"6399\",\n    \"6401\",\n    \"6403\",\n    \"6404\",\n    \"6409\",\n    \"6418\",\n    \"6419\",\n    \"6430\",\n    \"6431\",\n    \"6437\",\n    \"6440\",\n    \"6444\",\n    \"6453\",\n    \"6458\",\n    \"6459\",\n    \"6474\",\n    \"6476\",\n    \"6480\",\n    \"6483\",\n    \"6485\",\n    \"6486\",\n    \"6488\",\n    \"6490\",\n    \"6492\",\n    \"6495\",\n    \"6497\",\n    \"6509\",\n    \"6511\",\n    \"6518\",\n    \"6523\",\n    \"6532\",\n    \"6540\",\n    \"6544\",\n    \"6570\",\n    \"6571\",\n    \"6575\",\n    \"6583\",\n    \"6590\",\n    \"6593\",\n    \"6597\",\n    \"6598\",\n    \"6612\",\n    \"6613\",\n    \"6621\",\n    \"6623\",\n    \"6627\",\n    \"6628\",\n    \"6631\",\n    \"6632\",\n    \"6640\",\n    \"6641\",\n    \"6654\",\n    \"6661\",\n    \"6669\",\n    \"6676\",\n    \"6677\",\n    \"6681\",\n    \"6684\",\n    \"6694\",\n    \"6703\",\n    \"6704\",\n    \"6707\",\n    \"6714\",\n    \"6719\",\n    \"6721\",\n    \"6730\",\n    \"6740\",\n    \"6742\",\n    \"6751\",\n    \"6761\",\n    \"6765\",\n    \"6767\",\n    \"6770\",\n    \"6771\",\n    \"6772\",\n    \"6773\",\n    \"6781\",\n    \"6787\",\n    \"6788\",\n    \"6791\",\n    \"6796\",\n    \"6803\",\n    \"6813\",\n    \"6824\",\n    \"6833\",\n    \"6836\",\n    \"6839\",\n    \"6840\",\n    \"6855\",\n    \"6864\",\n    \"6865\",\n    \"6866\",\n    \"6871\",\n    \"6872\",\n    \"6883\",\n    \"6884\",\n    \"6887\",\n    \"6889\",\n    \"6896\",\n    \"6898\",\n    \"6909\",\n    \"6911\",\n    \"6918\",\n    \"6933\",\n    \"6935\",\n    \"6946\",\n    \"6947\",\n    \"6966\",\n    \"6969\",\n    \"6972\",\n    \"6973\",\n    \"6975\",\n    \"6977\",\n    \"6979\",\n    \"6983\",\n    \"6989\",\n    \"7002\",\n    \"7008\",\n    \"7011\",\n    \"7018\",\n    \"7019\",\n    \"7022\",\n    \"7024\",\n    \"7040\",\n    \"7046\",\n    \"7050\",\n    \"7053\",\n    \"7058\",\n    \"7066\",\n    \"7071\",\n    \"7076\",\n    \"7082\",\n    \"7096\",\n    \"7097\",\n    \"7101\",\n    \"7105\",\n    \"7111\",\n    \"7113\",\n    \"7136\",\n    \"7137\",\n    \"7146\",\n    \"7149\",\n    \"7152\",\n    \"7155\",\n    \"7158\",\n    \"7162\",\n    \"7169\",\n    \"7171\",\n    \"7172\",\n    \"7174\",\n    \"7177\",\n    \"7179\",\n    \"7180\",\n    \"7190\",\n    \"7194\",\n    \"7197\",\n    \"7199\",\n    \"7210\",\n    \"7217\",\n    \"7225\",\n    \"7230\",\n    \"7234\",\n    \"7236\",\n    \"7237\",\n    \"7242\",\n    \"7243\",\n    \"7247\",\n    \"7251\",\n    \"7254\",\n    \"7256\",\n    \"7262\",\n    \"7268\",\n    \"7273\",\n    \"7280\",\n    \"7282\",\n    \"7290\",\n    \"7292\",\n    \"7294\",\n    \"7296\",\n    \"7297\",\n    \"7298\",\n    \"7326\",\n    \"7328\",\n    \"7330\",\n    \"7334\",\n    \"7338\",\n    \"7343\",\n    \"7344\",\n    \"7345\",\n    \"7346\",\n    \"7347\",\n    \"7355\",\n    \"7356\",\n    \"7357\",\n    \"7359\",\n    \"7361\",\n    \"7363\",\n    \"7375\",\n    \"7389\",\n    \"7391\",\n    \"7392\",\n    \"7396\",\n    \"7397\",\n    \"7399\",\n    \"7401\",\n    \"7407\",\n    \"7411\",\n    \"7420\",\n    \"7426\",\n    \"7429\",\n    \"7442\",\n    \"7443\",\n    \"7448\",\n    \"7455\",\n    \"7459\",\n    \"7460\",\n    \"7461\",\n    \"7475\",\n    \"7481\",\n    \"7482\",\n    \"7491\",\n    \"7492\",\n    \"7493\",\n    \"7506\",\n    \"7510\",\n    \"7516\",\n    \"7522\",\n    \"7538\",\n    \"7540\",\n    \"7543\",\n    \"7544\",\n    \"7559\",\n    \"7562\",\n    \"7569\",\n    \"7570\",\n    \"7571\",\n    \"7583\",\n    \"7596\",\n    \"7600\",\n    \"7603\",\n    \"7605\",\n    \"7613\",\n    \"7616\",\n    \"7618\",\n    \"7619\",\n    \"7628\",\n    \"7630\",\n    \"7636\",\n    \"7639\",\n    \"7641\",\n    \"7645\",\n    \"7650\",\n    \"7654\",\n    \"7656\",\n    \"7659\",\n    \"7662\",\n    \"7671\",\n    \"7672\",\n    \"7678\",\n    \"7681\",\n    \"7683\",\n    \"7684\",\n    \"7686\",\n    \"7689\",\n    \"7697\",\n    \"7704\",\n    \"7712\",\n    \"7716\",\n    \"7718\",\n    \"7723\",\n    \"7728\",\n    \"7739\",\n    \"7742\",\n    \"7745\",\n    \"7747\",\n    \"7748\",\n    \"7755\",\n    \"7760\",\n    \"7765\",\n    \"7776\",\n    \"7777\",\n    \"7787\",\n    \"7794\",\n    \"7799\",\n    \"7800\",\n    \"7801\",\n    \"7803\",\n    \"7807\",\n    \"7811\",\n    \"7812\",\n    \"7824\",\n    \"7827\",\n    \"7839\",\n    \"7843\",\n    \"7845\",\n    \"7858\",\n    \"7864\",\n    \"7865\",\n    \"7868\",\n    \"7870\",\n    \"7872\",\n    \"7876\",\n    \"7881\",\n    \"7886\",\n    \"7899\",\n    \"7904\",\n    \"7907\",\n    \"7919\",\n    \"7922\",\n    \"7924\",\n    \"7930\",\n    \"7932\",\n    \"7935\",\n    \"7939\",\n    \"7941\",\n    \"7942\",\n    \"7949\",\n    \"7952\",\n    \"7953\",\n    \"7955\",\n    \"7959\",\n    \"7960\",\n    \"7961\",\n    \"7962\",\n    \"7963\",\n    \"7969\",\n    \"7971\",\n    \"7974\",\n    \"7979\",\n    \"7991\",\n    \"8006\",\n    \"8009\",\n    \"8010\",\n    \"8013\",\n    \"8016\",\n    \"8020\",\n    \"8027\",\n    \"8033\",\n    \"8034\",\n    \"8040\",\n    \"8042\",\n    \"8045\",\n    \"8051\",\n    \"8061\",\n    \"8072\",\n    \"8073\",\n    \"8082\",\n    \"8084\",\n    \"8087\",\n    \"8095\",\n    \"8096\",\n    \"8097\",\n    \"8098\",\n    \"8102\",\n    \"8103\",\n    \"8109\",\n    \"8110\",\n    \"8111\",\n    \"8112\",\n    \"8130\",\n    \"8131\",\n    \"8139\",\n    \"8141\",\n    \"8149\",\n    \"8154\",\n    \"8159\",\n    \"8161\",\n    \"8180\",\n    \"8182\",\n    \"8185\",\n    \"8197\",\n    \"8219\",\n    \"8231\",\n    \"8246\",\n    \"8275\",\n    \"8280\",\n    \"8284\",\n    \"8287\",\n    \"8289\",\n    \"8295\",\n    \"8298\",\n    \"8303\",\n    \"8305\",\n    \"8306\",\n    \"8309\",\n    \"8311\",\n    \"8314\",\n    \"8316\",\n    \"8318\",\n    \"8323\",\n    \"8328\",\n    \"8329\",\n    \"8355\",\n    \"8361\",\n    \"8365\",\n    \"8369\",\n    \"8378\",\n    \"8379\",\n    \"8381\",\n    \"8389\",\n    \"8390\",\n    \"8393\",\n    \"8404\",\n    \"8410\",\n    \"8413\",\n    \"8414\",\n    \"8419\",\n    \"8424\",\n    \"8429\",\n    \"8431\",\n    \"8434\",\n    \"8435\",\n    \"8438\",\n    \"8439\",\n    \"8444\",\n    \"8455\",\n    \"8457\",\n    \"8466\",\n    \"8468\",\n    \"8476\",\n    \"8477\",\n    \"8480\",\n    \"8484\",\n    \"8488\",\n    \"8493\",\n    \"8499\",\n    \"8501\",\n    \"8511\",\n    \"8512\",\n    \"8513\",\n    \"8522\",\n    \"8525\",\n    \"8528\",\n    \"8529\",\n    \"8532\",\n    \"8537\",\n    \"8550\",\n    \"8552\",\n    \"8558\",\n    \"8559\",\n    \"8561\",\n    \"8575\",\n    \"8576\",\n    \"8579\",\n    \"8582\",\n    \"8586\",\n    \"8589\",\n    \"8591\",\n    \"8596\",\n    \"8601\",\n    \"8612\",\n    \"8615\",\n    \"8620\",\n    \"8624\",\n    \"8635\",\n    \"8643\",\n    \"8649\",\n    \"8654\",\n    \"8663\",\n    \"8667\",\n    \"8677\",\n    \"8680\",\n    \"8683\",\n    \"8687\",\n    \"8688\",\n    \"8702\",\n    \"8707\",\n    \"8716\",\n    \"8724\",\n    \"8728\",\n    \"8731\",\n    \"8734\",\n    \"8739\",\n    \"8746\",\n    \"8751\",\n    \"8758\",\n    \"8767\",\n    \"8770\",\n    \"8771\",\n    \"8776\",\n    \"8778\",\n    \"8780\",\n    \"8784\",\n    \"8794\",\n    \"8799\",\n    \"8803\",\n    \"8804\",\n    \"8810\",\n    \"8820\",\n    \"8830\",\n    \"8832\",\n    \"8838\",\n    \"8839\",\n    \"8850\",\n    \"8851\",\n    \"8854\",\n    \"8857\",\n    \"8861\",\n    \"8868\",\n    \"8871\",\n    \"8907\",\n    \"8914\",\n    \"8918\",\n    \"8921\",\n    \"8922\",\n    \"8926\",\n    \"8927\",\n    \"8928\",\n    \"8933\",\n    \"8940\",\n    \"8946\",\n    \"8953\",\n    \"8956\",\n    \"8960\",\n    \"8967\",\n    \"8973\",\n    \"8978\",\n    \"8981\",\n    \"8983\",\n    \"8984\",\n    \"8988\",\n    \"8992\",\n    \"8996\",\n    \"8999\",\n    \"9002\",\n    \"9015\",\n    \"9016\",\n    \"9036\",\n    \"9037\",\n    \"9040\",\n    \"9042\",\n    \"9044\",\n    \"9060\",\n    \"9069\",\n    \"9074\",\n    \"9076\",\n    \"9078\",\n    \"9085\",\n    \"9088\",\n    \"9094\",\n    \"9097\",\n    \"9107\",\n    \"9110\",\n    \"9114\",\n    \"9119\",\n    \"9121\",\n    \"9122\",\n    \"9123\",\n    \"9124\",\n    \"9126\",\n    \"9133\",\n    \"9138\",\n    \"9141\",\n    \"9148\",\n    \"9158\",\n    \"9159\",\n    \"9168\",\n    \"9172\",\n    \"9174\",\n    \"9175\",\n    \"9176\",\n    \"9178\",\n    \"9181\",\n    \"9182\",\n    \"9190\",\n    \"9193\",\n    \"9195\",\n    \"9201\",\n    \"9204\",\n    \"9209\",\n    \"9215\",\n    \"9234\",\n    \"9237\",\n    \"9238\",\n    \"9241\",\n    \"9246\",\n    \"9260\",\n    \"9263\",\n    \"9271\",\n    \"9273\",\n    \"9282\",\n    \"9291\",\n    \"9292\",\n    \"9296\",\n    \"9301\",\n    \"9309\",\n    \"9310\",\n    \"9314\",\n    \"9322\",\n    \"9324\",\n    \"9327\",\n    \"9331\",\n    \"9333\",\n    \"9335\",\n    \"9338\",\n    \"9341\",\n    \"9342\",\n    \"9346\",\n    \"9351\",\n    \"9353\",\n    \"9359\",\n    \"9365\",\n    \"9368\",\n    \"9371\",\n    \"9378\",\n    \"9379\",\n    \"9380\",\n    \"9390\",\n    \"9406\",\n    \"9408\",\n    \"9409\",\n    \"9412\",\n    \"9417\",\n    \"9418\",\n    \"9426\",\n    \"9429\",\n    \"9443\",\n    \"9449\",\n    \"9456\",\n    \"9459\",\n    \"9461\",\n    \"9462\",\n    \"9465\",\n    \"9485\",\n    \"9487\",\n    \"9492\",\n    \"9496\",\n    \"9507\",\n    \"9517\",\n    \"9518\",\n    \"9524\",\n    \"9532\",\n    \"9534\",\n    \"9536\",\n    \"9543\",\n    \"9545\",\n    \"9547\",\n    \"9550\",\n    \"9553\",\n    \"9555\",\n    \"9566\",\n    \"9567\",\n    \"9571\",\n    \"9577\",\n    \"9586\",\n    \"9587\",\n    \"9588\",\n    \"9590\",\n    \"9611\",\n    \"9617\",\n    \"9625\",\n    \"9630\",\n    \"9639\",\n    \"9647\",\n    \"9658\",\n    \"9667\",\n    \"9674\",\n    \"9679\",\n    \"9680\",\n    \"9685\",\n    \"9691\",\n    \"9696\",\n    \"9699\",\n    \"9702\",\n    \"9708\",\n    \"9711\",\n    \"9715\",\n    \"9716\",\n    \"9723\",\n    \"9729\",\n    \"9730\",\n    \"9735\",\n    \"9740\",\n    \"9741\",\n    \"9745\",\n    \"9747\",\n    \"9748\",\n    \"9752\",\n    \"9755\",\n    \"9769\",\n    \"9771\",\n    \"9776\",\n    \"9779\",\n    \"9782\",\n    \"9789\",\n    \"9793\",\n    \"9807\",\n    \"9819\",\n    \"9820\",\n    \"9827\",\n    \"9831\",\n    \"9835\",\n    \"9838\",\n    \"9851\",\n    \"9853\",\n    \"9854\",\n    \"9856\",\n    \"9862\",\n    \"9863\",\n    \"9868\",\n    \"9875\",\n    \"9880\",\n    \"9895\",\n    \"9910\",\n    \"9911\",\n    \"9912\",\n    \"9914\",\n    \"9916\",\n    \"9917\",\n    \"9919\",\n    \"9922\",\n    \"9925\",\n    \"9927\",\n    \"9930\",\n    \"9938\",\n    \"9945\",\n    \"9951\",\n    \"9956\",\n    \"9964\",\n    \"9965\",\n    \"9968\",\n    \"9971\",\n    \"9972\",\n    \"9978\",\n    \"9980\",\n    \"9981\",\n    \"9983\",\n    \"9989\",\n    \"9991\",\n    \"9997\",\n    \"10005\",\n    \"10006\",\n    \"10007\",\n    \"10013\",\n    \"10014\",\n    \"10026\",\n    \"10033\",\n    \"10034\",\n    \"10035\",\n    \"10038\",\n    \"10045\",\n    \"10048\",\n    \"10051\",\n    \"10055\",\n    \"10059\",\n    \"10060\",\n    \"10077\",\n    \"10078\",\n    \"10079\",\n    \"10082\",\n    \"10085\",\n    \"10086\",\n    \"10089\",\n    \"10092\",\n    \"10102\",\n    \"10109\",\n    \"10112\",\n    \"10116\",\n    \"10118\",\n    \"10134\",\n    \"10135\",\n    \"10138\",\n    \"10143\",\n    \"10145\",\n    \"10147\",\n    \"10152\",\n    \"10153\",\n    \"10156\",\n    \"10157\",\n    \"10166\",\n    \"10182\",\n    \"10184\",\n    \"10187\",\n    \"10194\",\n    \"10196\",\n    \"10198\",\n    \"10200\",\n    \"10206\",\n    \"10213\",\n    \"10227\",\n    \"10234\",\n    \"10235\",\n    \"10251\",\n    \"10255\",\n    \"10260\",\n    \"10281\",\n    \"10282\",\n    \"10284\",\n    \"10285\",\n    \"10287\",\n    \"10289\",\n    \"10290\",\n    \"10298\",\n    \"10304\",\n    \"10305\",\n    \"10316\",\n    \"10325\",\n    \"10326\",\n    \"10333\",\n    \"10339\",\n    \"10354\",\n    \"10360\",\n    \"10368\",\n    \"10370\",\n    \"10372\",\n    \"10373\",\n    \"10376\",\n    \"10382\",\n    \"10383\",\n    \"10392\",\n    \"10396\",\n    \"10400\",\n    \"10403\",\n    \"10404\",\n    \"10416\",\n    \"10417\",\n    \"10418\",\n    \"10422\",\n    \"10424\",\n    \"10425\",\n    \"10435\",\n    \"10436\",\n    \"10441\",\n    \"10442\",\n    \"10443\",\n    \"10444\",\n    \"10445\",\n    \"10450\",\n    \"10455\",\n    \"10458\",\n    \"10459\",\n    \"10466\",\n    \"10491\",\n    \"10492\",\n    \"10497\",\n    \"10498\",\n    \"10499\",\n    \"10511\",\n    \"10520\",\n    \"10533\",\n    \"10535\",\n    \"10544\",\n    \"10559\",\n    \"10567\",\n    \"10570\",\n    \"10571\",\n    \"10575\",\n    \"10594\",\n    \"10596\",\n    \"10599\",\n    \"10603\",\n    \"10613\",\n    \"10631\",\n    \"10638\",\n    \"10643\",\n    \"10647\",\n    \"10652\",\n    \"10658\",\n    \"10659\",\n    \"10662\",\n    \"10663\",\n    \"10664\",\n    \"10672\",\n    \"10673\",\n    \"10676\",\n    \"10678\",\n    \"10691\",\n    \"10694\",\n    \"10695\",\n    \"10705\",\n    \"10715\",\n    \"10717\",\n    \"10718\",\n    \"10722\",\n    \"10733\",\n    \"10735\",\n    \"10749\",\n    \"10764\",\n    \"10772\",\n    \"10780\",\n    \"10802\",\n    \"10806\",\n    \"10807\",\n    \"10808\",\n    \"10809\",\n    \"10811\",\n    \"10812\",\n    \"10815\",\n    \"10816\",\n    \"10818\",\n    \"10820\",\n    \"10826\",\n    \"10827\",\n    \"10833\",\n    \"10834\",\n    \"10843\",\n    \"10848\",\n    \"10849\",\n    \"10852\",\n    \"10856\",\n    \"10863\",\n    \"10871\",\n    \"10888\",\n    \"10890\",\n    \"10891\",\n    \"10893\",\n    \"10897\",\n    \"10902\",\n    \"10903\",\n    \"10904\",\n    \"10907\",\n    \"10908\",\n    \"10910\",\n    \"10912\",\n    \"10926\",\n    \"10927\",\n    \"10930\",\n    \"10932\",\n    \"10933\",\n    \"10937\",\n    \"10944\",\n    \"10950\",\n    \"10951\",\n    \"10954\",\n    \"10956\",\n    \"10957\",\n    \"10958\",\n    \"10959\",\n    \"10965\",\n    \"10966\",\n    \"10967\",\n    \"10970\",\n    \"10974\",\n    \"10979\",\n    \"10981\",\n    \"10986\",\n    \"10987\",\n    \"10988\",\n    \"10991\",\n    \"11003\",\n    \"11009\",\n    \"11012\",\n    \"11017\",\n    \"11025\",\n    \"11026\",\n    \"11028\",\n    \"11031\",\n    \"11035\",\n    \"11036\",\n    \"11039\",\n    \"11043\",\n    \"11044\",\n    \"11048\",\n    \"11049\",\n    \"11052\",\n    \"11056\",\n    \"11063\",\n    \"11065\",\n    \"11066\",\n    \"11070\",\n    \"11078\",\n    \"11080\",\n    \"11091\",\n    \"11101\",\n    \"11105\",\n    \"11107\",\n    \"11114\",\n    \"11117\",\n    \"11127\",\n    \"11128\",\n    \"11129\",\n    \"11142\",\n    \"11147\",\n    \"11154\",\n    \"11164\",\n    \"11166\",\n    \"11167\",\n    \"11168\",\n    \"11170\",\n    \"11185\",\n    \"11186\",\n    \"11190\",\n    \"11211\",\n    \"11222\",\n    \"11228\",\n    \"11235\",\n    \"11240\",\n    \"11242\",\n    \"11265\",\n    \"11268\",\n    \"11272\",\n    \"11274\",\n    \"11276\",\n    \"11284\",\n    \"11289\",\n    \"11295\",\n    \"11297\",\n    \"11298\",\n    \"11304\",\n    \"11306\",\n    \"11314\",\n    \"11319\",\n    \"11322\",\n    \"11334\",\n    \"11355\",\n    \"11358\",\n    \"11360\",\n    \"11362\",\n    \"11364\",\n    \"11368\",\n    \"11369\",\n    \"11376\",\n    \"11382\",\n    \"11387\",\n    \"11391\",\n    \"11392\",\n    \"11393\",\n    \"11395\",\n    \"11396\",\n    \"11401\",\n    \"11402\",\n    \"11403\",\n    \"11406\",\n    \"11409\",\n    \"11413\",\n    \"11414\",\n    \"11420\",\n    \"11423\",\n    \"11428\",\n    \"11431\",\n    \"11432\",\n    \"11435\",\n    \"11439\",\n    \"11444\",\n    \"11452\",\n    \"11462\",\n    \"11463\",\n    \"11466\",\n    \"11467\",\n    \"11472\",\n    \"11479\",\n    \"11481\",\n    \"11483\",\n    \"11488\",\n    \"11491\",\n    \"11492\",\n    \"11503\",\n    \"11504\",\n    \"11506\",\n    \"11508\",\n    \"11510\",\n    \"11513\",\n    \"11515\",\n    \"11521\",\n    \"11528\",\n    \"11533\",\n    \"11538\",\n    \"11540\",\n    \"11547\",\n    \"11549\",\n    \"11558\",\n    \"11563\",\n    \"11584\",\n    \"11587\",\n    \"11588\",\n    \"11594\",\n    \"11595\",\n    \"11601\",\n    \"11616\",\n    \"11617\",\n    \"11618\",\n    \"11627\",\n    \"11636\",\n    \"11638\",\n    \"11641\",\n    \"11642\",\n    \"11646\",\n    \"11652\",\n    \"11660\",\n    \"11662\",\n    \"11665\",\n    \"11666\",\n    \"11671\",\n    \"11672\",\n    \"11673\",\n    \"11681\",\n    \"11684\",\n    \"11686\",\n    \"11694\",\n    \"11700\",\n    \"11708\",\n    \"11712\",\n    \"11713\",\n    \"11716\",\n    \"11720\",\n    \"11731\",\n    \"11742\",\n    \"11747\",\n    \"11750\",\n    \"11754\",\n    \"11760\",\n    \"11767\",\n    \"11774\",\n    \"11779\",\n    \"11786\",\n    \"11789\",\n    \"11792\",\n    \"11795\",\n    \"11803\",\n    \"11808\",\n    \"11813\",\n    \"11826\",\n    \"11830\",\n    \"11839\",\n    \"11847\",\n    \"11848\",\n    \"11851\",\n    \"11863\",\n    \"11873\",\n    \"11882\",\n    \"11884\",\n    \"11889\",\n    \"11898\",\n    \"11902\",\n    \"11904\",\n    \"11910\",\n    \"11911\",\n    \"11918\",\n    \"11927\",\n    \"11949\",\n    \"11951\",\n    \"11962\",\n    \"11973\",\n    \"11978\",\n    \"11979\",\n    \"11980\",\n    \"11982\",\n    \"12005\",\n    \"12006\",\n    \"12009\",\n    \"12020\",\n    \"12022\",\n    \"12025\",\n    \"12027\",\n    \"12028\",\n    \"12030\",\n    \"12032\",\n    \"12038\",\n    \"12039\",\n    \"12040\",\n    \"12042\",\n    \"12043\",\n    \"12055\",\n    \"12063\",\n    \"12076\",\n    \"12092\",\n    \"12095\",\n    \"12099\",\n    \"12101\",\n    \"12102\",\n    \"12108\",\n    \"12109\",\n    \"12110\",\n    \"12113\",\n    \"12114\",\n    \"12118\",\n    \"12120\",\n    \"12121\",\n    \"12122\",\n    \"12132\",\n    \"12138\",\n    \"12152\",\n    \"12153\",\n    \"12158\",\n    \"12159\",\n    \"12161\",\n    \"12164\",\n    \"12168\",\n    \"12173\",\n    \"12175\",\n    \"12179\",\n    \"12181\",\n    \"12189\",\n    \"12193\",\n    \"12194\",\n    \"12196\",\n    \"12197\",\n    \"12205\",\n    \"12210\",\n    \"12213\",\n    \"12214\",\n    \"12223\",\n    \"12229\",\n    \"12239\",\n    \"12252\",\n    \"12260\",\n    \"12265\",\n    \"12268\",\n    \"12276\",\n    \"12277\",\n    \"12294\",\n    \"12296\",\n    \"12302\",\n    \"12304\",\n    \"12309\",\n    \"12310\",\n    \"12313\",\n    \"12315\",\n    \"12317\",\n    \"12326\",\n    \"12338\",\n    \"12341\",\n    \"12342\",\n    \"12344\",\n    \"12346\",\n    \"12349\",\n    \"12352\",\n    \"12356\",\n    \"12361\",\n    \"12362\",\n    \"12363\",\n    \"12369\",\n    \"12376\",\n    \"12383\",\n    \"12384\",\n    \"12388\",\n    \"12398\",\n    \"12408\",\n    \"12420\",\n    \"12422\",\n    \"12424\",\n    \"12439\",\n    \"12445\",\n    \"12454\",\n    \"12459\",\n    \"12460\",\n    \"12461\",\n    \"12462\",\n    \"12467\",\n    \"12479\",\n    \"12480\",\n    \"12482\",\n    \"12484\",\n    \"12485\",\n    \"12486\",\n    \"12488\",\n    \"12497\",\n    \"12500\",\n    \"12504\",\n    \"12507\",\n    \"12518\",\n    \"12519\",\n    \"12520\",\n    \"12522\",\n    \"12524\",\n    \"12525\",\n    \"12534\",\n    \"12536\",\n    \"12541\",\n    \"12544\",\n    \"12546\",\n    \"12551\",\n    \"12555\",\n    \"12567\",\n    \"12578\",\n    \"12579\",\n    \"12583\",\n    \"12591\",\n    \"12595\",\n    \"12599\",\n    \"12601\",\n    \"12602\",\n    \"12607\",\n    \"12612\",\n    \"12615\",\n    \"12617\",\n    \"12621\",\n    \"12626\",\n    \"12628\",\n    \"12631\",\n    \"12642\",\n    \"12644\",\n    \"12647\",\n    \"12661\",\n    \"12665\",\n    \"12669\",\n    \"12676\",\n    \"12679\",\n    \"12681\",\n    \"12682\",\n    \"12685\",\n    \"12688\",\n    \"12691\",\n    \"12692\",\n    \"12694\",\n    \"12697\",\n    \"12705\",\n    \"12710\",\n    \"12711\",\n    \"12721\",\n    \"12730\",\n    \"12732\",\n    \"12739\",\n    \"12742\",\n    \"12745\",\n    \"12746\",\n    \"12751\",\n    \"12752\",\n    \"12757\",\n    \"12760\",\n    \"12762\",\n    \"12763\",\n    \"12765\",\n    \"12766\",\n    \"12767\",\n    \"12769\",\n    \"12772\",\n    \"12773\",\n    \"12775\",\n    \"12786\",\n    \"12789\",\n    \"12796\",\n    \"12798\",\n    \"12811\",\n    \"12812\",\n    \"12820\",\n    \"12826\",\n    \"12829\",\n    \"12831\",\n    \"12833\",\n    \"12838\",\n    \"12847\",\n    \"12850\",\n    \"12853\",\n    \"12854\",\n    \"12860\",\n    \"12863\",\n    \"12864\",\n    \"12866\",\n    \"12871\",\n    \"12882\",\n    \"12888\",\n    \"12889\",\n    \"12891\",\n    \"12896\",\n    \"12898\",\n    \"12900\",\n    \"12903\",\n    \"12906\",\n    \"12910\",\n    \"12914\",\n    \"12915\",\n    \"12929\",\n    \"12934\",\n    \"12935\",\n    \"12937\",\n    \"12944\",\n    \"12947\",\n    \"12951\",\n    \"12952\",\n    \"12957\",\n    \"12959\",\n    \"12972\",\n    \"12977\",\n    \"12980\",\n    \"12986\",\n    \"13006\",\n    \"13020\",\n    \"13033\",\n    \"13035\",\n    \"13042\",\n    \"13047\",\n    \"13049\",\n    \"13057\",\n    \"13061\",\n    \"13071\",\n    \"13079\",\n    \"13083\",\n    \"13084\",\n    \"13085\",\n    \"13088\",\n    \"13089\",\n    \"13090\",\n    \"13096\",\n    \"13099\",\n    \"13108\",\n    \"13113\",\n    \"13121\",\n    \"13131\",\n    \"13136\",\n    \"13140\",\n    \"13144\",\n    \"13148\",\n    \"13149\",\n    \"13155\",\n    \"13156\",\n    \"13169\",\n    \"13175\",\n    \"13176\",\n    \"13179\",\n    \"13181\",\n    \"13183\",\n    \"13187\",\n    \"13189\",\n    \"13203\",\n    \"13205\",\n    \"13207\",\n    \"13209\",\n    \"13212\",\n    \"13217\",\n    \"13220\",\n    \"13222\",\n    \"13223\",\n    \"13224\",\n    \"13225\",\n    \"13229\",\n    \"13231\",\n    \"13235\",\n    \"13238\",\n    \"13240\",\n    \"13241\",\n    \"13248\",\n    \"13262\",\n    \"13265\",\n    \"13270\",\n    \"13274\",\n    \"13276\",\n    \"13278\",\n    \"13282\",\n    \"13286\",\n    \"13290\",\n    \"13294\",\n    \"13298\",\n    \"13300\",\n    \"13304\",\n    \"13308\",\n    \"13317\",\n    \"13318\",\n    \"13321\",\n    \"13325\",\n    \"13331\",\n    \"13333\",\n    \"13335\",\n    \"13339\",\n    \"13341\",\n    \"13342\",\n    \"13345\",\n    \"13361\",\n    \"13365\",\n    \"13375\",\n    \"13376\",\n    \"13379\",\n    \"13380\",\n    \"13387\",\n    \"13395\",\n    \"13396\",\n    \"13404\",\n    \"13410\",\n    \"13414\",\n    \"13415\",\n    \"13421\",\n    \"13426\",\n    \"13427\",\n    \"13445\",\n    \"13450\",\n    \"13452\",\n    \"13453\",\n    \"13454\",\n    \"13464\",\n    \"13468\",\n    \"13477\",\n    \"13478\",\n    \"13479\",\n    \"13485\",\n    \"13486\",\n    \"13494\",\n    \"13502\",\n    \"13512\",\n    \"13515\",\n    \"13516\",\n    \"13521\",\n    \"13529\",\n    \"13536\",\n    \"13559\",\n    \"13561\",\n    \"13562\",\n    \"13563\",\n    \"13568\",\n    \"13569\",\n    \"13573\",\n    \"13577\",\n    \"13582\",\n    \"13584\",\n    \"13586\",\n    \"13588\",\n    \"13590\",\n    \"13602\",\n    \"13604\",\n    \"13611\",\n    \"13613\",\n    \"13615\",\n    \"13616\",\n    \"13619\",\n    \"13622\",\n    \"13623\",\n    \"13625\",\n    \"13628\",\n    \"13632\",\n    \"13654\",\n    \"13661\",\n    \"13673\",\n    \"13676\",\n    \"13681\",\n    \"13682\",\n    \"13683\",\n    \"13689\",\n    \"13692\",\n    \"13694\",\n    \"13697\",\n    \"13699\",\n    \"13701\",\n    \"13702\",\n    \"13707\",\n    \"13708\",\n    \"13716\",\n    \"13719\",\n    \"13721\",\n    \"13722\",\n    \"13723\",\n    \"13737\",\n    \"13739\",\n    \"13740\",\n    \"13748\",\n    \"13753\",\n    \"13759\",\n    \"13762\",\n    \"13769\",\n    \"13770\",\n    \"13778\",\n    \"13783\",\n    \"13792\",\n    \"13794\",\n    \"13797\",\n    \"13803\",\n    \"13808\",\n    \"13809\",\n    \"13816\",\n    \"13827\",\n    \"13830\",\n    \"13835\",\n    \"13836\",\n    \"13839\",\n    \"13841\",\n    \"13848\",\n    \"13850\",\n    \"13851\",\n    \"13862\",\n    \"13864\",\n    \"13870\",\n    \"13873\",\n    \"13881\",\n    \"13893\",\n    \"13898\",\n    \"13905\",\n    \"13909\",\n    \"13919\",\n    \"13920\",\n    \"13933\",\n    \"13935\",\n    \"13936\",\n    \"13938\",\n    \"13940\",\n    \"13942\",\n    \"13951\",\n    \"13955\",\n    \"13959\",\n    \"13964\",\n    \"13966\",\n    \"13979\",\n    \"13983\",\n    \"13992\",\n    \"14000\",\n    \"14002\",\n    \"14009\",\n    \"14010\",\n    \"14017\",\n    \"14018\",\n    \"14021\",\n    \"14027\",\n    \"14032\",\n    \"14036\",\n    \"14045\",\n    \"14046\",\n    \"14049\",\n    \"14052\",\n    \"14055\",\n    \"14061\",\n    \"14062\",\n    \"14063\",\n    \"14065\",\n    \"14067\",\n    \"14069\",\n    \"14077\",\n    \"14078\",\n    \"14080\",\n    \"14083\",\n    \"14085\",\n    \"14097\",\n    \"14109\",\n    \"14111\",\n    \"14115\",\n    \"14123\",\n    \"14127\",\n    \"14128\",\n    \"14152\",\n    \"14157\",\n    \"14180\",\n    \"14184\",\n    \"14189\",\n    \"14198\",\n    \"14209\",\n    \"14211\",\n    \"14216\",\n    \"14217\",\n    \"14222\",\n    \"14225\",\n    \"14228\",\n    \"14231\",\n    \"14235\",\n    \"14238\",\n    \"14243\",\n    \"14247\",\n    \"14248\",\n    \"14253\",\n    \"14256\",\n    \"14259\",\n    \"14260\",\n    \"14261\",\n    \"14264\",\n    \"14265\",\n    \"14273\",\n    \"14277\",\n    \"14281\",\n    \"14282\",\n    \"14285\",\n    \"14293\",\n    \"14302\",\n    \"14305\",\n    \"14306\",\n    \"14313\",\n    \"14316\",\n    \"14321\",\n    \"14330\",\n    \"14333\",\n    \"14334\",\n    \"14337\",\n    \"14339\",\n    \"14350\",\n    \"14359\",\n    \"14363\",\n    \"14366\",\n    \"14367\",\n    \"14379\",\n    \"14380\",\n    \"14381\",\n    \"14390\",\n    \"14393\",\n    \"14395\",\n    \"14410\",\n    \"14412\",\n    \"14415\",\n    \"14429\",\n    \"14432\",\n    \"14441\",\n    \"14450\",\n    \"14451\",\n    \"14455\",\n    \"14457\",\n    \"14460\",\n    \"14461\",\n    \"14473\",\n    \"14474\",\n    \"14495\",\n    \"14497\",\n    \"14510\",\n    \"14515\",\n    \"14517\",\n    \"14519\",\n    \"14522\",\n    \"14526\",\n    \"14528\",\n    \"14530\",\n    \"14554\",\n    \"14569\",\n    \"14573\",\n    \"14581\",\n    \"14583\",\n    \"14596\",\n    \"14600\",\n    \"14603\",\n    \"14612\",\n    \"14615\",\n    \"14617\",\n    \"14619\",\n    \"14632\",\n    \"14636\",\n    \"14640\",\n    \"14641\",\n    \"14646\",\n    \"14654\",\n    \"14659\",\n    \"14660\",\n    \"14668\",\n    \"14672\",\n    \"14674\",\n    \"14677\",\n    \"14681\",\n    \"14682\",\n    \"14685\",\n    \"14686\",\n    \"14687\",\n    \"14690\",\n    \"14691\",\n    \"14695\",\n    \"14701\",\n    \"14702\",\n    \"14703\",\n    \"14704\",\n    \"14709\",\n    \"14712\",\n    \"14720\",\n    \"14721\",\n    \"14726\",\n    \"14730\",\n    \"14732\",\n    \"14733\",\n    \"14738\",\n    \"14740\",\n    \"14744\",\n    \"14745\",\n    \"14752\",\n    \"14756\",\n    \"14757\",\n    \"14765\",\n    \"14768\",\n    \"14769\",\n    \"14774\",\n    \"14790\",\n    \"14791\",\n    \"14796\",\n    \"14801\",\n    \"14804\",\n    \"14810\",\n    \"14821\",\n    \"14837\",\n    \"14842\",\n    \"14843\",\n    \"14847\",\n    \"14848\",\n    \"14851\",\n    \"14858\",\n    \"14869\",\n    \"14872\",\n    \"14901\",\n    \"14911\",\n    \"14914\",\n    \"14917\",\n    \"14922\",\n    \"14925\",\n    \"14936\",\n    \"14938\",\n    \"14940\",\n    \"14945\",\n    \"14948\",\n    \"14955\",\n    \"14959\",\n    \"14960\",\n    \"14963\",\n    \"14969\",\n    \"14980\",\n    \"14984\",\n    \"14987\",\n    \"14991\",\n    \"14993\",\n    \"14996\",\n    \"15006\",\n    \"15009\",\n    \"15019\",\n    \"15030\",\n    \"15032\",\n    \"15037\",\n    \"15039\",\n    \"15042\",\n    \"15043\",\n    \"15051\",\n    \"15071\",\n    \"15072\",\n    \"15077\",\n    \"15078\",\n    \"15089\",\n    \"15090\",\n    \"15092\",\n    \"15099\",\n    \"15102\",\n    \"15113\",\n    \"15118\",\n    \"15119\",\n    \"15124\",\n    \"15131\",\n    \"15132\",\n    \"15141\",\n    \"15148\",\n    \"15151\",\n    \"15159\",\n    \"15167\",\n    \"15169\",\n    \"15174\",\n    \"15177\",\n    \"15178\",\n    \"15179\",\n    \"15184\",\n    \"15191\",\n    \"15192\",\n    \"15197\",\n    \"15204\",\n    \"15207\",\n    \"15209\",\n    \"15210\",\n    \"15214\",\n    \"15215\",\n    \"15237\",\n    \"15239\",\n    \"15240\",\n    \"15244\",\n    \"15247\",\n    \"15248\",\n    \"15258\",\n    \"15268\",\n    \"15285\",\n    \"15295\",\n    \"15309\",\n    \"15310\",\n    \"15315\",\n    \"15320\",\n    \"15328\",\n    \"15333\",\n    \"15338\",\n    \"15342\",\n    \"15344\",\n    \"15346\",\n    \"15350\",\n    \"15369\",\n    \"15370\",\n    \"15371\",\n    \"15373\",\n    \"15376\",\n    \"15386\",\n    \"15392\",\n    \"15397\",\n    \"15401\",\n    \"15405\",\n    \"15412\",\n    \"15414\",\n    \"15416\",\n    \"15419\",\n    \"15420\",\n    \"15430\",\n    \"15432\",\n    \"15442\",\n    \"15447\",\n    \"15448\",\n    \"15449\",\n    \"15454\",\n    \"15455\",\n    \"15459\",\n    \"15460\",\n    \"15466\",\n    \"15468\",\n    \"15483\",\n    \"15484\",\n    \"15496\",\n    \"15498\",\n    \"15501\",\n    \"15518\",\n    \"15519\",\n    \"15521\",\n    \"15526\",\n    \"15529\",\n    \"15538\",\n    \"15542\",\n    \"15543\",\n    \"15548\",\n    \"15551\",\n    \"15553\",\n    \"15558\",\n    \"15559\",\n    \"15561\",\n    \"15583\",\n    \"15584\",\n    \"15586\",\n    \"15592\",\n    \"15597\",\n    \"15603\",\n    \"15609\",\n    \"15615\",\n    \"15616\",\n    \"15622\",\n    \"15626\",\n    \"15629\",\n    \"15641\",\n    \"15647\",\n    \"15650\",\n    \"15653\",\n    \"15655\",\n    \"15663\",\n    \"15664\",\n    \"15677\",\n    \"15688\",\n    \"15695\",\n    \"15703\",\n    \"15708\",\n    \"15721\",\n    \"15732\",\n    \"15733\",\n    \"15734\",\n    \"15742\",\n    \"15745\",\n    \"15751\",\n    \"15770\",\n    \"15775\",\n    \"15777\",\n    \"15780\",\n    \"15798\",\n    \"15801\",\n    \"15814\",\n    \"15816\",\n    \"15823\",\n    \"15830\",\n    \"15838\",\n    \"15851\",\n    \"15865\",\n    \"15869\",\n    \"15870\",\n    \"15873\",\n    \"15878\",\n    \"15884\",\n    \"15892\",\n    \"15910\",\n    \"15918\",\n    \"15925\",\n    \"15927\",\n    \"15937\",\n    \"15944\",\n    \"15954\",\n    \"15963\",\n    \"15970\",\n    \"15973\",\n    \"15974\",\n    \"15977\",\n    \"15987\",\n    \"15992\",\n    \"15994\",\n    \"15996\",\n    \"15997\",\n    \"15998\",\n    \"16007\",\n    \"16013\",\n    \"16019\",\n    \"16023\",\n    \"16036\",\n    \"16044\",\n    \"16054\",\n    \"16056\",\n    \"16062\",\n    \"16076\",\n    \"16079\",\n    \"16082\",\n    \"16085\",\n    \"16092\",\n    \"16094\",\n    \"16096\",\n    \"16098\",\n    \"16104\",\n    \"16114\",\n    \"16116\",\n    \"16120\",\n    \"16128\",\n    \"16130\",\n    \"16131\",\n    \"16146\",\n    \"16150\",\n    \"16153\",\n    \"16155\",\n    \"16165\",\n    \"16174\",\n    \"16175\",\n    \"16176\",\n    \"16184\",\n    \"16187\",\n    \"16188\",\n    \"16189\",\n    \"16192\",\n    \"16194\",\n    \"16202\",\n    \"16206\",\n    \"16207\",\n    \"16210\",\n    \"16212\",\n    \"16216\",\n    \"16218\",\n    \"16220\",\n    \"16228\",\n    \"16247\",\n    \"16258\",\n    \"16259\",\n    \"16261\",\n    \"16267\",\n    \"16268\",\n    \"16273\",\n    \"16275\",\n    \"16277\",\n    \"16281\",\n    \"16283\",\n    \"16287\",\n    \"16289\",\n    \"16307\",\n    \"16309\",\n    \"16313\",\n    \"16324\",\n    \"16332\",\n    \"16341\",\n    \"16344\",\n    \"16345\",\n    \"16353\",\n    \"16354\",\n    \"16357\",\n    \"16358\",\n    \"16359\",\n    \"16363\",\n    \"16369\",\n    \"16382\",\n    \"16383\",\n    \"16385\",\n    \"16394\",\n    \"16397\",\n    \"16408\",\n    \"16414\",\n    \"16415\",\n    \"16417\",\n    \"16428\",\n    \"16435\",\n    \"16445\",\n    \"16452\",\n    \"16453\",\n    \"16455\",\n    \"16457\",\n    \"16458\",\n    \"16464\",\n    \"16466\",\n    \"16468\",\n    \"16472\",\n    \"16479\",\n    \"16488\",\n    \"16497\",\n    \"16498\",\n    \"16508\",\n    \"16514\",\n    \"16515\",\n    \"16524\",\n    \"16531\",\n    \"16532\",\n    \"16545\",\n    \"16550\",\n    \"16551\",\n    \"16553\",\n    \"16554\",\n    \"16570\",\n    \"16573\",\n    \"16575\",\n    \"16582\",\n    \"16589\",\n    \"16605\",\n    \"16607\",\n    \"16609\",\n    \"16617\",\n    \"16618\",\n    \"16620\",\n    \"16624\",\n    \"16627\",\n    \"16631\",\n    \"16634\",\n    \"16637\",\n    \"16644\",\n    \"16645\",\n    \"16646\",\n    \"16648\",\n    \"16652\",\n    \"16655\",\n    \"16656\",\n    \"16657\",\n    \"16663\",\n    \"16679\",\n    \"16681\",\n    \"16684\",\n    \"16687\",\n    \"16694\",\n    \"16698\",\n    \"16700\",\n    \"16701\",\n    \"16716\",\n    \"16721\",\n    \"16734\",\n    \"16753\",\n    \"16757\",\n    \"16765\",\n    \"16769\",\n    \"16770\",\n    \"16774\",\n    \"16776\",\n    \"16783\",\n    \"16789\",\n    \"16800\",\n    \"16813\",\n    \"16814\",\n    \"16819\",\n    \"16825\",\n    \"16830\",\n    \"16835\",\n    \"16845\",\n    \"16847\",\n    \"16856\",\n    \"16860\",\n    \"16863\",\n    \"16864\",\n    \"16866\",\n    \"16871\",\n    \"16875\",\n    \"16882\",\n    \"16888\",\n    \"16889\",\n    \"16894\",\n    \"16895\",\n    \"16898\",\n    \"16901\",\n    \"16921\",\n    \"16922\",\n    \"16923\",\n    \"16929\",\n    \"16938\",\n    \"16945\",\n    \"16948\",\n    \"16959\",\n    \"16960\",\n    \"16972\",\n    \"16973\",\n    \"16975\",\n    \"16978\",\n    \"16981\",\n    \"16987\",\n    \"16988\",\n    \"16999\",\n    \"17005\",\n    \"17010\",\n    \"17011\",\n    \"17016\",\n    \"17021\",\n    \"17023\",\n    \"17026\",\n    \"17028\",\n    \"17029\",\n    \"17031\",\n    \"17033\",\n    \"17037\",\n    \"17043\",\n    \"17046\",\n    \"17049\",\n    \"17058\",\n    \"17068\",\n    \"17071\",\n    \"17072\",\n    \"17073\",\n    \"17074\",\n    \"17080\",\n    \"17084\",\n    \"17089\",\n    \"17090\",\n    \"17105\",\n    \"17142\",\n    \"17144\",\n    \"17164\",\n    \"17174\",\n    \"17192\",\n    \"17195\",\n    \"17197\",\n    \"17202\",\n    \"17207\",\n    \"17210\",\n    \"17216\",\n    \"17221\",\n    \"17237\",\n    \"17243\",\n    \"17252\",\n    \"17253\",\n    \"17257\",\n    \"17276\",\n    \"17277\",\n    \"17288\",\n    \"17290\",\n    \"17292\",\n    \"17293\",\n    \"17297\",\n    \"17301\",\n    \"17303\",\n    \"17308\",\n    \"17312\",\n    \"17322\",\n    \"17325\",\n    \"17333\",\n    \"17336\",\n    \"17337\",\n    \"17340\",\n    \"17345\",\n    \"17346\",\n    \"17360\",\n    \"17368\",\n    \"17382\",\n    \"17392\",\n    \"17397\",\n    \"17401\",\n    \"17402\",\n    \"17405\",\n    \"17407\",\n    \"17410\",\n    \"17415\",\n    \"17416\",\n    \"17421\",\n    \"17437\",\n    \"17440\",\n    \"17446\",\n    \"17448\",\n    \"17451\",\n    \"17452\",\n    \"17453\",\n    \"17455\",\n    \"17461\",\n    \"17470\",\n    \"17471\",\n    \"17487\",\n    \"17489\",\n    \"17490\",\n    \"17492\",\n    \"17495\",\n    \"17498\",\n    \"17516\",\n    \"17526\",\n    \"17536\",\n    \"17544\",\n    \"17545\",\n    \"17548\",\n    \"17549\",\n    \"17552\",\n    \"17554\",\n    \"17562\",\n    \"17564\",\n    \"17574\",\n    \"17581\",\n    \"17584\",\n    \"17586\",\n    \"17587\",\n    \"17588\",\n    \"17589\",\n    \"17590\",\n    \"17593\",\n    \"17594\",\n    \"17605\",\n    \"17614\",\n    \"17620\",\n    \"17624\",\n    \"17626\",\n    \"17634\",\n    \"17635\",\n    \"17645\",\n    \"17657\",\n    \"17659\",\n    \"17661\",\n    \"17662\",\n    \"17666\",\n    \"17669\",\n    \"17670\",\n    \"17674\",\n    \"17681\",\n    \"17685\",\n    \"17690\",\n    \"17702\",\n    \"17708\",\n    \"17709\",\n    \"17710\",\n    \"17711\",\n    \"17712\",\n    \"17722\",\n    \"17729\",\n    \"17730\",\n    \"17735\",\n    \"17743\",\n    \"17765\",\n    \"17766\",\n    \"17774\",\n    \"17775\",\n    \"17777\",\n    \"17788\",\n    \"17789\",\n    \"17791\",\n    \"17792\",\n    \"17804\",\n    \"17805\",\n    \"17807\",\n    \"17820\",\n    \"17821\",\n    \"17836\",\n    \"17837\",\n    \"17840\",\n    \"17844\",\n    \"17853\",\n    \"17855\",\n    \"17859\",\n    \"17865\",\n    \"17868\",\n    \"17874\",\n    \"17877\",\n    \"17880\",\n    \"17888\",\n    \"17890\",\n    \"17896\",\n    \"17898\",\n    \"17913\",\n    \"17917\",\n    \"17921\",\n    \"17924\",\n    \"17926\",\n    \"17927\",\n    \"17932\",\n    \"17935\",\n    \"17938\",\n    \"17942\",\n    \"17945\",\n    \"17955\",\n    \"17961\",\n    \"17962\",\n    \"17966\",\n    \"17975\",\n    \"17984\",\n    \"17989\",\n    \"17991\",\n    \"17997\",\n    \"18004\",\n    \"18005\",\n    \"18024\",\n    \"18032\",\n    \"18033\",\n    \"18034\",\n    \"18037\",\n    \"18038\",\n    \"18046\",\n    \"18058\",\n    \"18063\",\n    \"18065\",\n    \"18070\",\n    \"18075\",\n    \"18081\",\n    \"18082\",\n    \"18083\",\n    \"18092\",\n    \"18106\",\n    \"18107\",\n    \"18113\",\n    \"18117\",\n    \"18122\",\n    \"18137\",\n    \"18150\",\n    \"18154\",\n    \"18164\",\n    \"18168\",\n    \"18174\",\n    \"18180\",\n    \"18182\",\n    \"18186\",\n    \"18190\",\n    \"18200\",\n    \"18201\",\n    \"18208\",\n    \"18214\",\n    \"18216\",\n    \"18217\",\n    \"18228\",\n    \"18232\",\n    \"18234\",\n    \"18235\",\n    \"18238\",\n    \"18249\",\n    \"18251\",\n    \"18252\",\n    \"18254\",\n    \"18256\",\n    \"18259\",\n    \"18261\",\n    \"18267\",\n    \"18271\",\n    \"18282\",\n    \"18283\",\n    \"18290\",\n    \"18292\",\n    \"18298\",\n    \"18304\",\n    \"18312\",\n    \"18315\",\n    \"18331\",\n    \"18332\",\n    \"18347\",\n    \"18351\",\n    \"18356\",\n    \"18360\",\n    \"18363\",\n    \"18367\",\n    \"18369\",\n    \"18376\",\n    \"18378\",\n    \"18379\",\n    \"18384\",\n    \"18386\",\n    \"18391\",\n    \"18425\",\n    \"18428\",\n    \"18434\",\n    \"18443\",\n    \"18444\",\n    \"18445\",\n    \"18447\",\n    \"18460\",\n    \"18462\",\n    \"18475\",\n    \"18480\",\n    \"18482\",\n    \"18484\",\n    \"18485\",\n    \"18488\",\n    \"18489\",\n    \"18500\",\n    \"18512\",\n    \"18513\",\n    \"18522\",\n    \"18527\",\n    \"18531\",\n    \"18534\",\n    \"18535\",\n    \"18541\",\n    \"18553\",\n    \"18556\",\n    \"18564\",\n    \"18566\",\n    \"18594\",\n    \"18604\",\n    \"18605\",\n    \"18607\",\n    \"18623\",\n    \"18624\",\n    \"18629\",\n    \"18630\",\n    \"18633\",\n    \"18635\",\n    \"18643\",\n    \"18653\",\n    \"18671\",\n    \"18679\",\n    \"18681\",\n    \"18684\",\n    \"18690\",\n    \"18691\",\n    \"18693\",\n    \"18702\",\n    \"18704\",\n    \"18709\",\n    \"18710\",\n    \"18715\",\n    \"18721\",\n    \"18732\",\n    \"18744\",\n    \"18748\",\n    \"18750\",\n    \"18754\",\n    \"18755\",\n    \"18756\",\n    \"18758\",\n    \"18766\",\n    \"18768\",\n    \"18769\",\n    \"18778\",\n    \"18780\",\n    \"18781\",\n    \"18788\",\n    \"18798\",\n    \"18800\",\n    \"18810\",\n    \"18820\",\n    \"18821\",\n    \"18825\",\n    \"18826\",\n    \"18827\",\n    \"18830\",\n    \"18832\",\n    \"18834\",\n    \"18842\",\n    \"18847\",\n    \"18849\",\n    \"18851\",\n    \"18855\",\n    \"18862\",\n    \"18863\",\n    \"18866\",\n    \"18868\",\n    \"18881\",\n    \"18883\",\n    \"18888\",\n    \"18893\",\n    \"18904\",\n    \"18905\",\n    \"18914\",\n    \"18922\",\n    \"18924\",\n    \"18926\",\n    \"18928\",\n    \"18929\",\n    \"18931\",\n    \"18932\",\n    \"18938\",\n    \"18940\",\n    \"18947\",\n    \"18951\",\n    \"18952\",\n    \"18961\",\n    \"18962\",\n    \"18972\",\n    \"18974\",\n    \"18982\",\n    \"18986\",\n    \"18989\",\n    \"18995\",\n    \"19003\",\n    \"19013\",\n    \"19024\",\n    \"19028\",\n    \"19037\",\n    \"19038\",\n    \"19041\",\n    \"19048\",\n    \"19051\",\n    \"19053\",\n    \"19056\",\n    \"19059\",\n    \"19072\",\n    \"19076\",\n    \"19081\",\n    \"19087\",\n    \"19101\",\n    \"19103\",\n    \"19104\",\n    \"19108\",\n    \"19110\",\n    \"19113\",\n    \"19119\",\n    \"19129\",\n    \"19137\",\n    \"19141\",\n    \"19148\",\n    \"19152\",\n    \"19172\",\n    \"19173\",\n    \"19174\",\n    \"19181\",\n    \"19183\",\n    \"19201\",\n    \"19205\",\n    \"19209\",\n    \"19219\",\n    \"19233\",\n    \"19234\",\n    \"19235\",\n    \"19238\",\n    \"19241\",\n    \"19243\",\n    \"19254\",\n    \"19258\",\n    \"19264\",\n    \"19266\",\n    \"19282\",\n    \"19285\",\n    \"19294\",\n    \"19295\",\n    \"19299\",\n    \"19304\",\n    \"19322\",\n    \"19328\",\n    \"19330\",\n    \"19331\",\n    \"19332\",\n    \"19340\",\n    \"19341\",\n    \"19346\",\n    \"19354\",\n    \"19356\",\n    \"19360\",\n    \"19365\",\n    \"19370\",\n    \"19372\",\n    \"19380\",\n    \"19387\",\n    \"19395\",\n    \"19398\",\n    \"19400\",\n    \"19403\",\n    \"19407\",\n    \"19412\",\n    \"19413\",\n    \"19423\",\n    \"19424\",\n    \"19435\",\n    \"19450\",\n    \"19452\",\n    \"19459\",\n    \"19468\",\n    \"19471\",\n    \"19481\",\n    \"19482\",\n    \"19483\",\n    \"19488\",\n    \"19495\",\n    \"19498\",\n    \"19502\",\n    \"19503\",\n    \"19505\",\n    \"19506\",\n    \"19518\",\n    \"19521\",\n    \"19541\",\n    \"19542\",\n    \"19543\",\n    \"19544\",\n    \"19552\",\n    \"19559\",\n    \"19560\",\n    \"19562\",\n    \"19575\",\n    \"19588\",\n    \"19598\",\n    \"19617\",\n    \"19630\",\n    \"19646\",\n    \"19649\",\n    \"19653\",\n    \"19657\",\n    \"19660\",\n    \"19661\",\n    \"19666\",\n    \"19674\",\n    \"19675\",\n    \"19680\",\n    \"19687\",\n    \"19693\",\n    \"19694\",\n    \"19700\",\n    \"19701\",\n    \"19704\",\n    \"19721\",\n    \"19722\",\n    \"19732\",\n    \"19740\",\n    \"19742\",\n    \"19744\",\n    \"19750\",\n    \"19752\",\n    \"19754\",\n    \"19763\",\n    \"19780\",\n    \"19785\",\n    \"19803\",\n    \"19804\",\n    \"19805\",\n    \"19808\",\n    \"19815\",\n    \"19816\",\n    \"19817\",\n    \"19820\",\n    \"19821\",\n    \"19823\",\n    \"19826\",\n    \"19829\",\n    \"19831\",\n    \"19835\",\n    \"19839\",\n    \"19847\",\n    \"19848\",\n    \"19851\",\n    \"19854\",\n    \"19856\",\n    \"19859\",\n    \"19862\",\n    \"19870\",\n    \"19871\",\n    \"19873\",\n    \"19890\",\n    \"19891\",\n    \"19901\",\n    \"19902\",\n    \"19906\",\n    \"19915\",\n    \"19918\",\n    \"19919\",\n    \"19921\",\n    \"19931\",\n    \"19932\",\n    \"19936\",\n    \"19939\",\n    \"19941\",\n    \"19945\",\n    \"19949\",\n    \"19950\",\n    \"19951\",\n    \"19953\",\n    \"19954\",\n    \"19958\",\n    \"19960\",\n    \"19962\",\n    \"19964\",\n    \"19966\",\n    \"19968\",\n    \"19970\",\n    \"19975\",\n    \"19976\",\n    \"19977\",\n    \"19980\",\n    \"19982\",\n    \"19983\",\n    \"19992\",\n    \"19994\",\n    \"19996\",\n    \"19999\",\n    \"20000\",\n    \"20014\",\n    \"20023\",\n    \"20025\",\n    \"20027\",\n    \"20028\",\n    \"20030\",\n    \"20038\",\n    \"20048\",\n    \"20055\",\n    \"20056\",\n    \"20058\",\n    \"20061\",\n    \"20064\",\n    \"20069\",\n    \"20070\",\n    \"20074\",\n    \"20079\",\n    \"20089\",\n    \"20096\",\n    \"20098\",\n    \"20105\",\n    \"20110\",\n    \"20111\",\n    \"20124\",\n    \"20126\",\n    \"20162\",\n    \"20167\",\n    \"20183\",\n    \"20186\",\n    \"20191\",\n    \"20195\",\n    \"20199\",\n    \"20201\",\n    \"20206\",\n    \"20210\",\n    \"20211\",\n    \"20213\",\n    \"20216\",\n    \"20220\",\n    \"20229\",\n    \"20236\",\n    \"20250\",\n    \"20251\",\n    \"20259\",\n    \"20264\",\n    \"20269\",\n    \"20272\",\n    \"20274\",\n    \"20275\",\n    \"20279\",\n    \"20284\",\n    \"20286\",\n    \"20289\",\n    \"20295\",\n    \"20298\",\n    \"20302\",\n    \"20304\",\n    \"20305\",\n    \"20307\",\n    \"20308\",\n    \"20310\",\n    \"20322\",\n    \"20348\",\n    \"20358\",\n    \"20360\",\n    \"20362\",\n    \"20371\",\n    \"20374\",\n    \"20376\",\n    \"20391\",\n    \"20392\",\n    \"20401\",\n    \"20410\",\n    \"20411\",\n    \"20424\",\n    \"20426\",\n    \"20434\",\n    \"20436\",\n    \"20439\",\n    \"20442\",\n    \"20446\",\n    \"20451\",\n    \"20459\",\n    \"20461\",\n    \"20464\",\n    \"20478\",\n    \"20482\",\n    \"20484\",\n    \"20486\",\n    \"20489\",\n    \"20516\",\n    \"20532\",\n    \"20547\",\n    \"20566\",\n    \"20570\",\n    \"20571\",\n    \"20572\",\n    \"20575\",\n    \"20577\",\n    \"20580\",\n    \"20581\",\n    \"20588\",\n    \"20591\",\n    \"20593\",\n    \"20594\",\n    \"20595\",\n    \"20596\",\n    \"20597\",\n    \"20599\",\n    \"20601\",\n    \"20610\",\n    \"20612\",\n    \"20614\",\n    \"20617\",\n    \"20639\",\n    \"20640\",\n    \"20644\",\n    \"20645\",\n    \"20650\",\n    \"20652\",\n    \"20655\",\n    \"20658\",\n    \"20660\",\n    \"20661\",\n    \"20663\",\n    \"20665\",\n    \"20671\",\n    \"20672\",\n    \"20689\",\n    \"20693\",\n    \"20696\",\n    \"20702\",\n    \"20705\",\n    \"20706\",\n    \"20708\",\n    \"20711\",\n    \"20718\",\n    \"20720\",\n    \"20723\",\n    \"20725\",\n    \"20731\",\n    \"20737\",\n    \"20738\",\n    \"20739\",\n    \"20740\",\n    \"20741\",\n    \"20752\",\n    \"20756\",\n    \"20761\",\n    \"20764\",\n    \"20769\",\n    \"20787\",\n    \"20792\",\n    \"20793\",\n    \"20801\",\n    \"20804\",\n    \"20817\",\n    \"20823\",\n    \"20826\",\n    \"20830\",\n    \"20832\",\n    \"20835\",\n    \"20844\",\n    \"20846\",\n    \"20847\",\n    \"20857\",\n    \"20858\",\n    \"20859\",\n    \"20861\",\n    \"20863\",\n    \"20871\",\n    \"20879\",\n    \"20881\",\n    \"20919\",\n    \"20943\",\n    \"20954\",\n    \"20956\",\n    \"20957\",\n    \"20961\",\n    \"20969\",\n    \"20980\",\n    \"20986\",\n    \"20999\",\n    \"21010\",\n    \"21013\",\n    \"21018\",\n    \"21021\",\n    \"21023\",\n    \"21031\",\n    \"21033\",\n    \"21040\",\n    \"21042\",\n    \"21049\",\n    \"21061\",\n    \"21072\",\n    \"21080\",\n    \"21082\",\n    \"21091\",\n    \"21095\",\n    \"21098\",\n    \"21099\",\n    \"21100\",\n    \"21102\",\n    \"21103\",\n    \"21104\",\n    \"21109\",\n    \"21114\",\n    \"21127\",\n    \"21151\",\n    \"21156\",\n    \"21161\",\n    \"21163\",\n    \"21168\",\n    \"21172\",\n    \"21174\",\n    \"21181\",\n    \"21183\",\n    \"21198\",\n    \"21207\"\n  ],\n  \"test\": [\n    \"4\",\n    \"5\",\n    \"11\",\n    \"15\",\n    \"22\",\n    \"23\",\n    \"26\",\n    \"27\",\n    \"29\",\n    \"42\",\n    \"46\",\n    \"47\",\n    \"51\",\n    \"61\",\n    \"62\",\n    \"78\",\n    \"85\",\n    \"86\",\n    \"87\",\n    \"92\",\n    \"93\",\n    \"95\",\n    \"96\",\n    \"111\",\n    \"121\",\n    \"126\",\n    \"128\",\n    \"133\",\n    \"139\",\n    \"140\",\n    \"142\",\n    \"145\",\n    \"149\",\n    \"155\",\n    \"156\",\n    \"158\",\n    \"161\",\n    \"163\",\n    \"167\",\n    \"170\",\n    \"172\",\n    \"176\",\n    \"180\",\n    \"182\",\n    \"183\",\n    \"184\",\n    \"188\",\n    \"193\",\n    \"196\",\n    \"198\",\n    \"209\",\n    \"210\",\n    \"214\",\n    \"230\",\n    \"232\",\n    \"234\",\n    \"237\",\n    \"266\",\n    \"269\",\n    \"271\",\n    \"272\",\n    \"275\",\n    \"280\",\n    \"282\",\n    \"286\",\n    \"288\",\n    \"292\",\n    \"293\",\n    \"298\",\n    \"301\",\n    \"305\",\n    \"315\",\n    \"319\",\n    \"324\",\n    \"325\",\n    \"330\",\n    \"332\",\n    \"333\",\n    \"337\",\n    \"338\",\n    \"342\",\n    \"345\",\n    \"348\",\n    \"363\",\n    \"366\",\n    \"374\",\n    \"383\",\n    \"387\",\n    \"389\",\n    \"392\",\n    \"402\",\n    \"404\",\n    \"406\",\n    \"415\",\n    \"427\",\n    \"433\",\n    \"440\",\n    \"445\",\n    \"453\",\n    \"456\",\n    \"457\",\n    \"460\",\n    \"466\",\n    \"469\",\n    \"470\",\n    \"509\",\n    \"512\",\n    \"515\",\n    \"517\",\n    \"519\",\n    \"522\",\n    \"532\",\n    \"533\",\n    \"534\",\n    \"536\",\n    \"539\",\n    \"541\",\n    \"543\",\n    \"550\",\n    \"552\",\n    \"554\",\n    \"557\",\n    \"573\",\n    \"576\",\n    \"577\",\n    \"584\",\n    \"593\",\n    \"595\",\n    \"600\",\n    \"603\",\n    \"605\",\n    \"612\",\n    \"614\",\n    \"616\",\n    \"617\",\n    \"621\",\n    \"627\",\n    \"632\",\n    \"640\",\n    \"641\",\n    \"645\",\n    \"667\",\n    \"670\",\n    \"671\",\n    \"674\",\n    \"686\",\n    \"689\",\n    \"691\",\n    \"693\",\n    \"694\",\n    \"730\",\n    \"734\",\n    \"739\",\n    \"741\",\n    \"751\",\n    \"752\",\n    \"754\",\n    \"763\",\n    \"764\",\n    \"769\",\n    \"781\",\n    \"785\",\n    \"788\",\n    \"795\",\n    \"814\",\n    \"816\",\n    \"824\",\n    \"827\",\n    \"828\",\n    \"834\",\n    \"840\",\n    \"841\",\n    \"843\",\n    \"845\",\n    \"849\",\n    \"851\",\n    \"856\",\n    \"865\",\n    \"868\",\n    \"878\",\n    \"879\",\n    \"880\",\n    \"886\",\n    \"888\",\n    \"898\",\n    \"900\",\n    \"901\",\n    \"905\",\n    \"908\",\n    \"909\",\n    \"913\",\n    \"916\",\n    \"918\",\n    \"923\",\n    \"926\",\n    \"932\",\n    \"936\",\n    \"945\",\n    \"952\",\n    \"953\",\n    \"957\",\n    \"962\",\n    \"964\",\n    \"971\",\n    \"973\",\n    \"982\",\n    \"991\",\n    \"993\",\n    \"1002\",\n    \"1004\",\n    \"1009\",\n    \"1014\",\n    \"1029\",\n    \"1041\",\n    \"1043\",\n    \"1044\",\n    \"1049\",\n    \"1050\",\n    \"1056\",\n    \"1064\",\n    \"1079\",\n    \"1082\",\n    \"1083\",\n    \"1088\",\n    \"1089\",\n    \"1093\",\n    \"1095\",\n    \"1098\",\n    \"1113\",\n    \"1114\",\n    \"1123\",\n    \"1128\",\n    \"1131\",\n    \"1134\",\n    \"1135\",\n    \"1137\",\n    \"1139\",\n    \"1153\",\n    \"1165\",\n    \"1174\",\n    \"1179\",\n    \"1203\",\n    \"1206\",\n    \"1208\",\n    \"1211\",\n    \"1212\",\n    \"1221\",\n    \"1222\",\n    \"1223\",\n    \"1224\",\n    \"1226\",\n    \"1228\",\n    \"1231\",\n    \"1232\",\n    \"1234\",\n    \"1237\",\n    \"1244\",\n    \"1247\",\n    \"1251\",\n    \"1252\",\n    \"1253\",\n    \"1259\",\n    \"1268\",\n    \"1269\",\n    \"1281\",\n    \"1282\",\n    \"1286\",\n    \"1289\",\n    \"1301\",\n    \"1304\",\n    \"1309\",\n    \"1314\",\n    \"1315\",\n    \"1320\",\n    \"1326\",\n    \"1338\",\n    \"1339\",\n    \"1340\",\n    \"1355\",\n    \"1359\",\n    \"1360\",\n    \"1370\",\n    \"1378\",\n    \"1382\",\n    \"1387\",\n    \"1389\",\n    \"1392\",\n    \"1395\",\n    \"1396\",\n    \"1400\",\n    \"1411\",\n    \"1412\",\n    \"1421\",\n    \"1431\",\n    \"1445\",\n    \"1454\",\n    \"1463\",\n    \"1468\",\n    \"1469\",\n    \"1473\",\n    \"1477\",\n    \"1491\",\n    \"1501\",\n    \"1503\",\n    \"1514\",\n    \"1515\",\n    \"1518\",\n    \"1526\",\n    \"1529\",\n    \"1531\",\n    \"1532\",\n    \"1533\",\n    \"1540\",\n    \"1550\",\n    \"1551\",\n    \"1558\",\n    \"1569\",\n    \"1571\",\n    \"1572\",\n    \"1582\",\n    \"1584\",\n    \"1586\",\n    \"1590\",\n    \"1592\",\n    \"1598\",\n    \"1605\",\n    \"1606\",\n    \"1608\",\n    \"1612\",\n    \"1615\",\n    \"1618\",\n    \"1621\",\n    \"1626\",\n    \"1628\",\n    \"1632\",\n    \"1633\",\n    \"1637\",\n    \"1640\",\n    \"1650\",\n    \"1654\",\n    \"1669\",\n    \"1672\",\n    \"1674\",\n    \"1696\",\n    \"1702\",\n    \"1703\",\n    \"1708\",\n    \"1714\",\n    \"1717\",\n    \"1719\",\n    \"1721\",\n    \"1723\",\n    \"1729\",\n    \"1738\",\n    \"1752\",\n    \"1757\",\n    \"1760\",\n    \"1762\",\n    \"1765\",\n    \"1769\",\n    \"1773\",\n    \"1774\",\n    \"1779\",\n    \"1784\",\n    \"1803\",\n    \"1816\",\n    \"1829\",\n    \"1848\",\n    \"1857\",\n    \"1874\",\n    \"1878\",\n    \"1879\",\n    \"1883\",\n    \"1888\",\n    \"1891\",\n    \"1894\",\n    \"1907\",\n    \"1908\",\n    \"1914\",\n    \"1916\",\n    \"1921\",\n    \"1926\",\n    \"1936\",\n    \"1939\",\n    \"1940\",\n    \"1941\",\n    \"1948\",\n    \"1949\",\n    \"1950\",\n    \"1951\",\n    \"1952\",\n    \"1955\",\n    \"1974\",\n    \"1976\",\n    \"1977\",\n    \"1979\",\n    \"1985\",\n    \"2005\",\n    \"2007\",\n    \"2009\",\n    \"2015\",\n    \"2018\",\n    \"2028\",\n    \"2037\",\n    \"2038\",\n    \"2045\",\n    \"2051\",\n    \"2055\",\n    \"2073\",\n    \"2078\",\n    \"2081\",\n    \"2095\",\n    \"2098\",\n    \"2107\",\n    \"2110\",\n    \"2122\",\n    \"2125\",\n    \"2126\",\n    \"2129\",\n    \"2138\",\n    \"2141\",\n    \"2147\",\n    \"2148\",\n    \"2149\",\n    \"2152\",\n    \"2158\",\n    \"2163\",\n    \"2165\",\n    \"2173\",\n    \"2186\",\n    \"2189\",\n    \"2194\",\n    \"2205\",\n    \"2210\",\n    \"2221\",\n    \"2224\",\n    \"2239\",\n    \"2244\",\n    \"2255\",\n    \"2259\",\n    \"2260\",\n    \"2269\",\n    \"2274\",\n    \"2286\",\n    \"2289\",\n    \"2292\",\n    \"2297\",\n    \"2307\",\n    \"2308\",\n    \"2309\",\n    \"2317\",\n    \"2321\",\n    \"2327\",\n    \"2328\",\n    \"2332\",\n    \"2343\",\n    \"2347\",\n    \"2349\",\n    \"2355\",\n    \"2360\",\n    \"2366\",\n    \"2368\",\n    \"2369\",\n    \"2372\",\n    \"2380\",\n    \"2382\",\n    \"2383\",\n    \"2384\",\n    \"2388\",\n    \"2391\",\n    \"2392\",\n    \"2395\",\n    \"2400\",\n    \"2401\",\n    \"2406\",\n    \"2413\",\n    \"2418\",\n    \"2423\",\n    \"2429\",\n    \"2432\",\n    \"2452\",\n    \"2460\",\n    \"2473\",\n    \"2479\",\n    \"2481\",\n    \"2486\",\n    \"2494\",\n    \"2499\",\n    \"2500\",\n    \"2502\",\n    \"2510\",\n    \"2513\",\n    \"2523\",\n    \"2531\",\n    \"2538\",\n    \"2539\",\n    \"2548\",\n    \"2551\",\n    \"2552\",\n    \"2566\",\n    \"2569\",\n    \"2574\",\n    \"2579\",\n    \"2584\",\n    \"2585\",\n    \"2588\",\n    \"2595\",\n    \"2597\",\n    \"2604\",\n    \"2621\",\n    \"2624\",\n    \"2626\",\n    \"2634\",\n    \"2638\",\n    \"2644\",\n    \"2660\",\n    \"2675\",\n    \"2677\",\n    \"2683\",\n    \"2690\",\n    \"2699\",\n    \"2704\",\n    \"2712\",\n    \"2715\",\n    \"2716\",\n    \"2722\",\n    \"2725\",\n    \"2731\",\n    \"2737\",\n    \"2740\",\n    \"2741\",\n    \"2742\",\n    \"2745\",\n    \"2756\",\n    \"2758\",\n    \"2759\",\n    \"2760\",\n    \"2763\",\n    \"2764\",\n    \"2767\",\n    \"2771\",\n    \"2779\",\n    \"2783\",\n    \"2785\",\n    \"2788\",\n    \"2789\",\n    \"2790\",\n    \"2791\",\n    \"2792\",\n    \"2795\",\n    \"2796\",\n    \"2798\",\n    \"2800\",\n    \"2814\",\n    \"2817\",\n    \"2822\",\n    \"2827\",\n    \"2828\",\n    \"2830\",\n    \"2839\",\n    \"2845\",\n    \"2857\",\n    \"2870\",\n    \"2871\",\n    \"2876\",\n    \"2877\",\n    \"2878\",\n    \"2883\",\n    \"2886\",\n    \"2888\",\n    \"2900\",\n    \"2905\",\n    \"2908\",\n    \"2921\",\n    \"2923\",\n    \"2929\",\n    \"2933\",\n    \"2936\",\n    \"2952\",\n    \"2956\",\n    \"2960\",\n    \"2969\",\n    \"2971\",\n    \"2976\",\n    \"2978\",\n    \"2983\",\n    \"2993\",\n    \"2994\",\n    \"3004\",\n    \"3016\",\n    \"3020\",\n    \"3022\",\n    \"3036\",\n    \"3037\",\n    \"3041\",\n    \"3044\",\n    \"3056\",\n    \"3060\",\n    \"3064\",\n    \"3069\",\n    \"3072\",\n    \"3077\",\n    \"3088\",\n    \"3089\",\n    \"3093\",\n    \"3103\",\n    \"3105\",\n    \"3107\",\n    \"3109\",\n    \"3110\",\n    \"3113\",\n    \"3115\",\n    \"3118\",\n    \"3123\",\n    \"3125\",\n    \"3132\",\n    \"3138\",\n    \"3141\",\n    \"3144\",\n    \"3147\",\n    \"3153\",\n    \"3156\",\n    \"3157\",\n    \"3168\",\n    \"3174\",\n    \"3185\",\n    \"3187\",\n    \"3193\",\n    \"3196\",\n    \"3197\",\n    \"3203\",\n    \"3204\",\n    \"3205\",\n    \"3210\",\n    \"3212\",\n    \"3213\",\n    \"3215\",\n    \"3217\",\n    \"3219\",\n    \"3220\",\n    \"3222\",\n    \"3229\",\n    \"3231\",\n    \"3233\",\n    \"3243\",\n    \"3246\",\n    \"3247\",\n    \"3255\",\n    \"3259\",\n    \"3284\",\n    \"3292\",\n    \"3305\",\n    \"3311\",\n    \"3316\",\n    \"3318\",\n    \"3323\",\n    \"3327\",\n    \"3330\",\n    \"3336\",\n    \"3337\",\n    \"3339\",\n    \"3345\",\n    \"3347\",\n    \"3351\",\n    \"3354\",\n    \"3355\",\n    \"3377\",\n    \"3379\",\n    \"3383\",\n    \"3385\",\n    \"3387\",\n    \"3395\",\n    \"3398\",\n    \"3413\",\n    \"3418\",\n    \"3428\",\n    \"3430\",\n    \"3431\",\n    \"3433\",\n    \"3434\",\n    \"3436\",\n    \"3439\",\n    \"3442\",\n    \"3451\",\n    \"3455\",\n    \"3468\",\n    \"3472\",\n    \"3476\",\n    \"3479\",\n    \"3481\",\n    \"3484\",\n    \"3485\",\n    \"3486\",\n    \"3492\",\n    \"3494\",\n    \"3495\",\n    \"3498\",\n    \"3504\",\n    \"3505\",\n    \"3507\",\n    \"3514\",\n    \"3515\",\n    \"3518\",\n    \"3523\",\n    \"3530\",\n    \"3534\",\n    \"3539\",\n    \"3541\",\n    \"3542\",\n    \"3544\",\n    \"3549\",\n    \"3558\",\n    \"3567\",\n    \"3576\",\n    \"3583\",\n    \"3593\",\n    \"3604\",\n    \"3609\",\n    \"3611\",\n    \"3629\",\n    \"3633\",\n    \"3634\",\n    \"3643\",\n    \"3650\",\n    \"3654\",\n    \"3656\",\n    \"3660\",\n    \"3669\",\n    \"3679\",\n    \"3681\",\n    \"3682\",\n    \"3683\",\n    \"3688\",\n    \"3692\",\n    \"3701\",\n    \"3703\",\n    \"3710\",\n    \"3716\",\n    \"3721\",\n    \"3727\",\n    \"3733\",\n    \"3736\",\n    \"3745\",\n    \"3750\",\n    \"3751\",\n    \"3752\",\n    \"3758\",\n    \"3762\",\n    \"3773\",\n    \"3774\",\n    \"3775\",\n    \"3783\",\n    \"3788\",\n    \"3789\",\n    \"3797\",\n    \"3810\",\n    \"3813\",\n    \"3815\",\n    \"3823\",\n    \"3840\",\n    \"3844\",\n    \"3846\",\n    \"3848\",\n    \"3852\",\n    \"3860\",\n    \"3864\",\n    \"3866\",\n    \"3869\",\n    \"3873\",\n    \"3875\",\n    \"3877\",\n    \"3882\",\n    \"3883\",\n    \"3885\",\n    \"3888\",\n    \"3901\",\n    \"3903\",\n    \"3913\",\n    \"3914\",\n    \"3920\",\n    \"3921\",\n    \"3925\",\n    \"3934\",\n    \"3951\",\n    \"3956\",\n    \"3963\",\n    \"3964\",\n    \"3965\",\n    \"3968\",\n    \"3972\",\n    \"3973\",\n    \"3983\",\n    \"3988\",\n    \"3993\",\n    \"3995\",\n    \"4003\",\n    \"4009\",\n    \"4015\",\n    \"4024\",\n    \"4025\",\n    \"4028\",\n    \"4029\",\n    \"4039\",\n    \"4040\",\n    \"4048\",\n    \"4050\",\n    \"4065\",\n    \"4072\",\n    \"4081\",\n    \"4084\",\n    \"4088\",\n    \"4092\",\n    \"4094\",\n    \"4095\",\n    \"4096\",\n    \"4098\",\n    \"4106\",\n    \"4112\",\n    \"4115\",\n    \"4120\",\n    \"4122\",\n    \"4123\",\n    \"4124\",\n    \"4126\",\n    \"4130\",\n    \"4139\",\n    \"4145\",\n    \"4150\",\n    \"4153\",\n    \"4155\",\n    \"4156\",\n    \"4164\",\n    \"4165\",\n    \"4167\",\n    \"4168\",\n    \"4176\",\n    \"4177\",\n    \"4187\",\n    \"4193\",\n    \"4199\",\n    \"4202\",\n    \"4203\",\n    \"4205\",\n    \"4210\",\n    \"4211\",\n    \"4214\",\n    \"4216\",\n    \"4217\",\n    \"4231\",\n    \"4240\",\n    \"4244\",\n    \"4246\",\n    \"4248\",\n    \"4250\",\n    \"4258\",\n    \"4260\",\n    \"4263\",\n    \"4271\",\n    \"4274\",\n    \"4281\",\n    \"4282\",\n    \"4285\",\n    \"4287\",\n    \"4288\",\n    \"4291\",\n    \"4293\",\n    \"4301\",\n    \"4306\",\n    \"4310\",\n    \"4311\",\n    \"4313\",\n    \"4315\",\n    \"4317\",\n    \"4319\",\n    \"4333\",\n    \"4339\",\n    \"4340\",\n    \"4344\",\n    \"4347\",\n    \"4351\",\n    \"4355\",\n    \"4357\",\n    \"4361\",\n    \"4366\",\n    \"4376\",\n    \"4385\",\n    \"4386\",\n    \"4394\",\n    \"4420\",\n    \"4428\",\n    \"4436\",\n    \"4443\",\n    \"4444\",\n    \"4446\",\n    \"4458\",\n    \"4459\",\n    \"4465\",\n    \"4474\",\n    \"4482\",\n    \"4483\",\n    \"4485\",\n    \"4497\",\n    \"4500\",\n    \"4502\",\n    \"4505\",\n    \"4507\",\n    \"4512\",\n    \"4519\",\n    \"4520\",\n    \"4529\",\n    \"4532\",\n    \"4537\",\n    \"4548\",\n    \"4553\",\n    \"4554\",\n    \"4559\",\n    \"4562\",\n    \"4568\",\n    \"4575\",\n    \"4578\",\n    \"4583\",\n    \"4594\",\n    \"4603\",\n    \"4604\",\n    \"4622\",\n    \"4623\",\n    \"4624\",\n    \"4631\",\n    \"4632\",\n    \"4639\",\n    \"4645\",\n    \"4647\",\n    \"4654\",\n    \"4657\",\n    \"4670\",\n    \"4672\",\n    \"4678\",\n    \"4682\",\n    \"4686\",\n    \"4690\",\n    \"4698\",\n    \"4699\",\n    \"4708\",\n    \"4709\",\n    \"4717\",\n    \"4718\",\n    \"4719\",\n    \"4720\",\n    \"4740\",\n    \"4748\",\n    \"4749\",\n    \"4753\",\n    \"4755\",\n    \"4757\",\n    \"4767\",\n    \"4774\",\n    \"4782\",\n    \"4784\",\n    \"4805\",\n    \"4809\",\n    \"4817\",\n    \"4820\",\n    \"4828\",\n    \"4832\",\n    \"4833\",\n    \"4834\",\n    \"4836\",\n    \"4844\",\n    \"4851\",\n    \"4854\",\n    \"4859\",\n    \"4865\",\n    \"4871\",\n    \"4877\",\n    \"4883\",\n    \"4886\",\n    \"4891\",\n    \"4897\",\n    \"4914\",\n    \"4918\",\n    \"4919\",\n    \"4920\",\n    \"4922\",\n    \"4924\",\n    \"4933\",\n    \"4943\",\n    \"4950\",\n    \"4955\",\n    \"4956\",\n    \"4969\",\n    \"4974\",\n    \"4975\",\n    \"4977\",\n    \"4980\",\n    \"4991\",\n    \"4996\",\n    \"4999\",\n    \"5000\",\n    \"5013\",\n    \"5018\",\n    \"5022\",\n    \"5025\",\n    \"5032\",\n    \"5044\",\n    \"5045\",\n    \"5046\",\n    \"5047\",\n    \"5049\",\n    \"5050\",\n    \"5052\",\n    \"5056\",\n    \"5063\",\n    \"5069\",\n    \"5072\",\n    \"5073\",\n    \"5080\",\n    \"5082\",\n    \"5086\",\n    \"5090\",\n    \"5097\",\n    \"5119\",\n    \"5126\",\n    \"5140\",\n    \"5143\",\n    \"5144\",\n    \"5145\",\n    \"5146\",\n    \"5152\",\n    \"5155\",\n    \"5175\",\n    \"5180\",\n    \"5184\",\n    \"5185\",\n    \"5188\",\n    \"5189\",\n    \"5190\",\n    \"5200\",\n    \"5203\",\n    \"5208\",\n    \"5210\",\n    \"5211\",\n    \"5212\",\n    \"5214\",\n    \"5223\",\n    \"5226\",\n    \"5238\",\n    \"5243\",\n    \"5248\",\n    \"5249\",\n    \"5254\",\n    \"5256\",\n    \"5258\",\n    \"5270\",\n    \"5272\",\n    \"5274\",\n    \"5287\",\n    \"5298\",\n    \"5302\",\n    \"5306\",\n    \"5308\",\n    \"5311\",\n    \"5313\",\n    \"5316\",\n    \"5333\",\n    \"5335\",\n    \"5346\",\n    \"5351\",\n    \"5352\",\n    \"5355\",\n    \"5362\",\n    \"5389\",\n    \"5400\",\n    \"5408\",\n    \"5415\",\n    \"5416\",\n    \"5418\",\n    \"5421\",\n    \"5441\",\n    \"5447\",\n    \"5456\",\n    \"5469\",\n    \"5471\",\n    \"5472\",\n    \"5474\",\n    \"5475\",\n    \"5476\",\n    \"5490\",\n    \"5499\",\n    \"5507\",\n    \"5511\",\n    \"5522\",\n    \"5529\",\n    \"5533\",\n    \"5540\",\n    \"5543\",\n    \"5545\",\n    \"5547\",\n    \"5548\",\n    \"5559\",\n    \"5563\",\n    \"5564\",\n    \"5573\",\n    \"5584\",\n    \"5589\",\n    \"5592\",\n    \"5603\",\n    \"5606\",\n    \"5611\",\n    \"5618\",\n    \"5623\",\n    \"5625\",\n    \"5634\",\n    \"5637\",\n    \"5639\",\n    \"5642\",\n    \"5648\",\n    \"5651\",\n    \"5663\",\n    \"5664\",\n    \"5667\",\n    \"5671\",\n    \"5674\",\n    \"5683\",\n    \"5691\",\n    \"5694\",\n    \"5696\",\n    \"5697\",\n    \"5698\",\n    \"5710\",\n    \"5711\",\n    \"5720\",\n    \"5722\",\n    \"5724\",\n    \"5725\",\n    \"5726\",\n    \"5734\",\n    \"5736\",\n    \"5747\",\n    \"5748\",\n    \"5755\",\n    \"5761\",\n    \"5770\",\n    \"5774\",\n    \"5781\",\n    \"5789\",\n    \"5795\",\n    \"5801\",\n    \"5805\",\n    \"5806\",\n    \"5808\",\n    \"5812\",\n    \"5816\",\n    \"5828\",\n    \"5830\",\n    \"5836\",\n    \"5840\",\n    \"5845\",\n    \"5859\",\n    \"5864\",\n    \"5871\",\n    \"5876\",\n    \"5880\",\n    \"5881\",\n    \"5886\",\n    \"5888\",\n    \"5889\",\n    \"5890\",\n    \"5893\",\n    \"5900\",\n    \"5901\",\n    \"5903\",\n    \"5912\",\n    \"5913\",\n    \"5919\",\n    \"5922\",\n    \"5925\",\n    \"5933\",\n    \"5934\",\n    \"5940\",\n    \"5946\",\n    \"5956\",\n    \"5959\",\n    \"5961\",\n    \"5975\",\n    \"5978\",\n    \"5981\",\n    \"5986\",\n    \"5990\",\n    \"5991\",\n    \"5992\",\n    \"5994\",\n    \"5995\",\n    \"5998\",\n    \"6001\",\n    \"6005\",\n    \"6008\",\n    \"6020\",\n    \"6023\",\n    \"6028\",\n    \"6029\",\n    \"6037\",\n    \"6046\",\n    \"6051\",\n    \"6052\",\n    \"6054\",\n    \"6072\",\n    \"6078\",\n    \"6083\",\n    \"6091\",\n    \"6092\",\n    \"6096\",\n    \"6099\",\n    \"6112\",\n    \"6115\",\n    \"6116\",\n    \"6118\",\n    \"6120\",\n    \"6123\",\n    \"6125\",\n    \"6127\",\n    \"6129\",\n    \"6133\",\n    \"6138\",\n    \"6144\",\n    \"6145\",\n    \"6152\",\n    \"6162\",\n    \"6163\",\n    \"6164\",\n    \"6179\",\n    \"6184\",\n    \"6185\",\n    \"6186\",\n    \"6187\",\n    \"6188\",\n    \"6193\",\n    \"6201\",\n    \"6204\",\n    \"6207\",\n    \"6212\",\n    \"6214\",\n    \"6215\",\n    \"6219\",\n    \"6222\",\n    \"6223\",\n    \"6232\",\n    \"6245\",\n    \"6257\",\n    \"6263\",\n    \"6266\",\n    \"6269\",\n    \"6278\",\n    \"6283\",\n    \"6290\",\n    \"6291\",\n    \"6293\",\n    \"6304\",\n    \"6306\",\n    \"6307\",\n    \"6308\",\n    \"6316\",\n    \"6323\",\n    \"6326\",\n    \"6327\",\n    \"6329\",\n    \"6331\",\n    \"6334\",\n    \"6338\",\n    \"6345\",\n    \"6365\",\n    \"6371\",\n    \"6372\",\n    \"6375\",\n    \"6376\",\n    \"6377\",\n    \"6378\",\n    \"6381\",\n    \"6387\",\n    \"6391\",\n    \"6400\",\n    \"6406\",\n    \"6408\",\n    \"6410\",\n    \"6412\",\n    \"6442\",\n    \"6445\",\n    \"6454\",\n    \"6455\",\n    \"6457\",\n    \"6467\",\n    \"6469\",\n    \"6470\",\n    \"6472\",\n    \"6482\",\n    \"6502\",\n    \"6504\",\n    \"6517\",\n    \"6525\",\n    \"6534\",\n    \"6535\",\n    \"6536\",\n    \"6537\",\n    \"6539\",\n    \"6541\",\n    \"6542\",\n    \"6546\",\n    \"6553\",\n    \"6557\",\n    \"6558\",\n    \"6560\",\n    \"6573\",\n    \"6574\",\n    \"6576\",\n    \"6577\",\n    \"6578\",\n    \"6585\",\n    \"6588\",\n    \"6591\",\n    \"6608\",\n    \"6609\",\n    \"6611\",\n    \"6619\",\n    \"6620\",\n    \"6624\",\n    \"6626\",\n    \"6635\",\n    \"6636\",\n    \"6637\",\n    \"6646\",\n    \"6648\",\n    \"6652\",\n    \"6660\",\n    \"6662\",\n    \"6671\",\n    \"6685\",\n    \"6686\",\n    \"6687\",\n    \"6691\",\n    \"6697\",\n    \"6710\",\n    \"6712\",\n    \"6713\",\n    \"6717\",\n    \"6726\",\n    \"6728\",\n    \"6729\",\n    \"6732\",\n    \"6734\",\n    \"6735\",\n    \"6738\",\n    \"6739\",\n    \"6759\",\n    \"6763\",\n    \"6774\",\n    \"6779\",\n    \"6780\",\n    \"6782\",\n    \"6785\",\n    \"6786\",\n    \"6798\",\n    \"6802\",\n    \"6809\",\n    \"6814\",\n    \"6815\",\n    \"6825\",\n    \"6827\",\n    \"6830\",\n    \"6835\",\n    \"6850\",\n    \"6851\",\n    \"6863\",\n    \"6867\",\n    \"6868\",\n    \"6873\",\n    \"6875\",\n    \"6877\",\n    \"6880\",\n    \"6886\",\n    \"6891\",\n    \"6899\",\n    \"6902\",\n    \"6916\",\n    \"6923\",\n    \"6924\",\n    \"6940\",\n    \"6942\",\n    \"6948\",\n    \"6953\",\n    \"6955\",\n    \"6956\",\n    \"6958\",\n    \"6964\",\n    \"6965\",\n    \"6967\",\n    \"6981\",\n    \"6984\",\n    \"6987\",\n    \"6990\",\n    \"7000\",\n    \"7005\",\n    \"7007\",\n    \"7012\",\n    \"7014\",\n    \"7021\",\n    \"7023\",\n    \"7026\",\n    \"7031\",\n    \"7033\",\n    \"7037\",\n    \"7038\",\n    \"7041\",\n    \"7047\",\n    \"7052\",\n    \"7055\",\n    \"7057\",\n    \"7059\",\n    \"7064\",\n    \"7078\",\n    \"7083\",\n    \"7085\",\n    \"7092\",\n    \"7094\",\n    \"7107\",\n    \"7108\",\n    \"7115\",\n    \"7119\",\n    \"7121\",\n    \"7124\",\n    \"7126\",\n    \"7130\",\n    \"7134\",\n    \"7135\",\n    \"7138\",\n    \"7140\",\n    \"7145\",\n    \"7147\",\n    \"7150\",\n    \"7161\",\n    \"7164\",\n    \"7188\",\n    \"7191\",\n    \"7192\",\n    \"7206\",\n    \"7207\",\n    \"7208\",\n    \"7209\",\n    \"7212\",\n    \"7215\",\n    \"7216\",\n    \"7219\",\n    \"7226\",\n    \"7235\",\n    \"7238\",\n    \"7244\",\n    \"7250\",\n    \"7255\",\n    \"7266\",\n    \"7267\",\n    \"7270\",\n    \"7272\",\n    \"7285\",\n    \"7291\",\n    \"7301\",\n    \"7306\",\n    \"7310\",\n    \"7318\",\n    \"7319\",\n    \"7322\",\n    \"7329\",\n    \"7333\",\n    \"7336\",\n    \"7348\",\n    \"7349\",\n    \"7358\",\n    \"7365\",\n    \"7367\",\n    \"7373\",\n    \"7374\",\n    \"7385\",\n    \"7387\",\n    \"7390\",\n    \"7395\",\n    \"7403\",\n    \"7405\",\n    \"7415\",\n    \"7418\",\n    \"7424\",\n    \"7428\",\n    \"7432\",\n    \"7434\",\n    \"7447\",\n    \"7457\",\n    \"7462\",\n    \"7465\",\n    \"7466\",\n    \"7467\",\n    \"7470\",\n    \"7474\",\n    \"7477\",\n    \"7480\",\n    \"7483\",\n    \"7487\",\n    \"7488\",\n    \"7490\",\n    \"7494\",\n    \"7495\",\n    \"7497\",\n    \"7507\",\n    \"7512\",\n    \"7514\",\n    \"7517\",\n    \"7521\",\n    \"7524\",\n    \"7528\",\n    \"7529\",\n    \"7531\",\n    \"7532\",\n    \"7533\",\n    \"7534\",\n    \"7545\",\n    \"7546\",\n    \"7548\",\n    \"7553\",\n    \"7560\",\n    \"7563\",\n    \"7578\",\n    \"7582\",\n    \"7587\",\n    \"7597\",\n    \"7598\",\n    \"7608\",\n    \"7614\",\n    \"7617\",\n    \"7621\",\n    \"7624\",\n    \"7625\",\n    \"7626\",\n    \"7638\",\n    \"7651\",\n    \"7653\",\n    \"7670\",\n    \"7675\",\n    \"7679\",\n    \"7685\",\n    \"7688\",\n    \"7691\",\n    \"7692\",\n    \"7694\",\n    \"7707\",\n    \"7709\",\n    \"7713\",\n    \"7719\",\n    \"7720\",\n    \"7724\",\n    \"7726\",\n    \"7727\",\n    \"7729\",\n    \"7737\",\n    \"7756\",\n    \"7758\",\n    \"7759\",\n    \"7762\",\n    \"7768\",\n    \"7785\",\n    \"7795\",\n    \"7804\",\n    \"7805\",\n    \"7809\",\n    \"7822\",\n    \"7825\",\n    \"7829\",\n    \"7832\",\n    \"7833\",\n    \"7841\",\n    \"7842\",\n    \"7844\",\n    \"7857\",\n    \"7859\",\n    \"7860\",\n    \"7866\",\n    \"7869\",\n    \"7873\",\n    \"7888\",\n    \"7892\",\n    \"7893\",\n    \"7895\",\n    \"7902\",\n    \"7906\",\n    \"7908\",\n    \"7914\",\n    \"7916\",\n    \"7917\",\n    \"7918\",\n    \"7923\",\n    \"7927\",\n    \"7933\",\n    \"7936\",\n    \"7940\",\n    \"7945\",\n    \"7956\",\n    \"7964\",\n    \"7975\",\n    \"7983\",\n    \"7993\",\n    \"7994\",\n    \"8004\",\n    \"8012\",\n    \"8014\",\n    \"8018\",\n    \"8022\",\n    \"8025\",\n    \"8029\",\n    \"8031\",\n    \"8035\",\n    \"8043\",\n    \"8049\",\n    \"8053\",\n    \"8054\",\n    \"8055\",\n    \"8062\",\n    \"8064\",\n    \"8065\",\n    \"8070\",\n    \"8071\",\n    \"8080\",\n    \"8088\",\n    \"8090\",\n    \"8093\",\n    \"8099\",\n    \"8100\",\n    \"8114\",\n    \"8118\",\n    \"8134\",\n    \"8146\",\n    \"8150\",\n    \"8163\",\n    \"8167\",\n    \"8168\",\n    \"8174\",\n    \"8176\",\n    \"8183\",\n    \"8193\",\n    \"8200\",\n    \"8208\",\n    \"8211\",\n    \"8212\",\n    \"8213\",\n    \"8221\",\n    \"8224\",\n    \"8225\",\n    \"8230\",\n    \"8236\",\n    \"8243\",\n    \"8248\",\n    \"8252\",\n    \"8259\",\n    \"8264\",\n    \"8267\",\n    \"8269\",\n    \"8276\",\n    \"8285\",\n    \"8294\",\n    \"8296\",\n    \"8300\",\n    \"8308\",\n    \"8321\",\n    \"8332\",\n    \"8335\",\n    \"8338\",\n    \"8346\",\n    \"8357\",\n    \"8358\",\n    \"8362\",\n    \"8363\",\n    \"8368\",\n    \"8371\",\n    \"8374\",\n    \"8386\",\n    \"8394\",\n    \"8397\",\n    \"8398\",\n    \"8403\",\n    \"8406\",\n    \"8408\",\n    \"8422\",\n    \"8447\",\n    \"8449\",\n    \"8451\",\n    \"8453\",\n    \"8454\",\n    \"8456\",\n    \"8460\",\n    \"8478\",\n    \"8487\",\n    \"8490\",\n    \"8492\",\n    \"8496\",\n    \"8497\",\n    \"8498\",\n    \"8500\",\n    \"8502\",\n    \"8505\",\n    \"8509\",\n    \"8510\",\n    \"8515\",\n    \"8516\",\n    \"8518\",\n    \"8520\",\n    \"8533\",\n    \"8536\",\n    \"8541\",\n    \"8542\",\n    \"8543\",\n    \"8551\",\n    \"8553\",\n    \"8554\",\n    \"8557\",\n    \"8571\",\n    \"8572\",\n    \"8573\",\n    \"8580\",\n    \"8581\",\n    \"8583\",\n    \"8584\",\n    \"8587\",\n    \"8595\",\n    \"8599\",\n    \"8606\",\n    \"8609\",\n    \"8614\",\n    \"8618\",\n    \"8625\",\n    \"8640\",\n    \"8648\",\n    \"8666\",\n    \"8671\",\n    \"8672\",\n    \"8676\",\n    \"8681\",\n    \"8686\",\n    \"8689\",\n    \"8692\",\n    \"8703\",\n    \"8709\",\n    \"8715\",\n    \"8720\",\n    \"8721\",\n    \"8722\",\n    \"8727\",\n    \"8729\",\n    \"8732\",\n    \"8743\",\n    \"8749\",\n    \"8752\",\n    \"8763\",\n    \"8769\",\n    \"8779\",\n    \"8785\",\n    \"8793\",\n    \"8798\",\n    \"8805\",\n    \"8811\",\n    \"8819\",\n    \"8841\",\n    \"8847\",\n    \"8852\",\n    \"8862\",\n    \"8876\",\n    \"8878\",\n    \"8880\",\n    \"8884\",\n    \"8887\",\n    \"8889\",\n    \"8890\",\n    \"8894\",\n    \"8897\",\n    \"8901\",\n    \"8904\",\n    \"8905\",\n    \"8906\",\n    \"8917\",\n    \"8931\",\n    \"8932\",\n    \"8937\",\n    \"8948\",\n    \"8952\",\n    \"8957\",\n    \"8959\",\n    \"8963\",\n    \"8965\",\n    \"8969\",\n    \"8972\",\n    \"8974\",\n    \"8980\",\n    \"9001\",\n    \"9003\",\n    \"9004\",\n    \"9005\",\n    \"9010\",\n    \"9019\",\n    \"9038\",\n    \"9052\",\n    \"9054\",\n    \"9055\",\n    \"9057\",\n    \"9058\",\n    \"9067\",\n    \"9068\",\n    \"9070\",\n    \"9071\",\n    \"9084\",\n    \"9089\",\n    \"9091\",\n    \"9093\",\n    \"9095\",\n    \"9096\",\n    \"9101\",\n    \"9104\",\n    \"9106\",\n    \"9109\",\n    \"9120\",\n    \"9127\",\n    \"9134\",\n    \"9143\",\n    \"9144\",\n    \"9146\",\n    \"9150\",\n    \"9169\",\n    \"9177\",\n    \"9189\",\n    \"9196\",\n    \"9197\",\n    \"9205\",\n    \"9214\",\n    \"9218\",\n    \"9223\",\n    \"9225\",\n    \"9231\",\n    \"9232\",\n    \"9233\",\n    \"9242\",\n    \"9247\",\n    \"9248\",\n    \"9249\",\n    \"9257\",\n    \"9262\",\n    \"9266\",\n    \"9275\",\n    \"9277\",\n    \"9278\",\n    \"9283\",\n    \"9285\",\n    \"9287\",\n    \"9288\",\n    \"9290\",\n    \"9294\",\n    \"9295\",\n    \"9304\",\n    \"9323\",\n    \"9328\",\n    \"9330\",\n    \"9332\",\n    \"9336\",\n    \"9344\",\n    \"9345\",\n    \"9352\",\n    \"9356\",\n    \"9357\",\n    \"9361\",\n    \"9367\",\n    \"9370\",\n    \"9375\",\n    \"9381\",\n    \"9382\",\n    \"9386\",\n    \"9387\",\n    \"9388\",\n    \"9389\",\n    \"9394\",\n    \"9399\",\n    \"9403\",\n    \"9415\",\n    \"9423\",\n    \"9436\",\n    \"9444\",\n    \"9468\",\n    \"9475\",\n    \"9481\",\n    \"9489\",\n    \"9493\",\n    \"9494\",\n    \"9495\",\n    \"9499\",\n    \"9503\",\n    \"9504\",\n    \"9505\",\n    \"9508\",\n    \"9509\",\n    \"9513\",\n    \"9514\",\n    \"9525\",\n    \"9530\",\n    \"9535\",\n    \"9538\",\n    \"9540\",\n    \"9541\",\n    \"9544\",\n    \"9546\",\n    \"9548\",\n    \"9552\",\n    \"9560\",\n    \"9561\",\n    \"9592\",\n    \"9593\",\n    \"9609\",\n    \"9620\",\n    \"9621\",\n    \"9624\",\n    \"9626\",\n    \"9628\",\n    \"9650\",\n    \"9652\",\n    \"9653\",\n    \"9655\",\n    \"9657\",\n    \"9668\",\n    \"9670\",\n    \"9676\",\n    \"9688\",\n    \"9704\",\n    \"9710\",\n    \"9712\",\n    \"9713\",\n    \"9719\",\n    \"9720\",\n    \"9724\",\n    \"9726\",\n    \"9728\",\n    \"9732\",\n    \"9738\",\n    \"9744\",\n    \"9750\",\n    \"9762\",\n    \"9765\",\n    \"9770\",\n    \"9772\",\n    \"9783\",\n    \"9784\",\n    \"9796\",\n    \"9799\",\n    \"9806\",\n    \"9809\",\n    \"9811\",\n    \"9814\",\n    \"9823\",\n    \"9834\",\n    \"9840\",\n    \"9846\",\n    \"9855\",\n    \"9866\",\n    \"9872\",\n    \"9874\",\n    \"9883\",\n    \"9884\",\n    \"9885\",\n    \"9888\",\n    \"9891\",\n    \"9898\",\n    \"9902\",\n    \"9906\",\n    \"9913\",\n    \"9915\",\n    \"9923\",\n    \"9931\",\n    \"9942\",\n    \"9943\",\n    \"9946\",\n    \"9948\",\n    \"9953\",\n    \"9960\",\n    \"9974\",\n    \"9977\",\n    \"9984\",\n    \"9993\",\n    \"10001\",\n    \"10015\",\n    \"10017\",\n    \"10020\",\n    \"10028\",\n    \"10037\",\n    \"10046\",\n    \"10053\",\n    \"10056\",\n    \"10058\",\n    \"10065\",\n    \"10068\",\n    \"10071\",\n    \"10074\",\n    \"10090\",\n    \"10091\",\n    \"10094\",\n    \"10097\",\n    \"10099\",\n    \"10101\",\n    \"10103\",\n    \"10114\",\n    \"10115\",\n    \"10124\",\n    \"10128\",\n    \"10130\",\n    \"10132\",\n    \"10140\",\n    \"10141\",\n    \"10149\",\n    \"10155\",\n    \"10159\",\n    \"10164\",\n    \"10185\",\n    \"10188\",\n    \"10210\",\n    \"10220\",\n    \"10225\",\n    \"10238\",\n    \"10240\",\n    \"10244\",\n    \"10245\",\n    \"10246\",\n    \"10247\",\n    \"10248\",\n    \"10250\",\n    \"10254\",\n    \"10256\",\n    \"10257\",\n    \"10264\",\n    \"10266\",\n    \"10268\",\n    \"10271\",\n    \"10279\",\n    \"10280\",\n    \"10283\",\n    \"10286\",\n    \"10292\",\n    \"10294\",\n    \"10300\",\n    \"10306\",\n    \"10307\",\n    \"10314\",\n    \"10318\",\n    \"10319\",\n    \"10322\",\n    \"10324\",\n    \"10330\",\n    \"10334\",\n    \"10335\",\n    \"10337\",\n    \"10338\",\n    \"10344\",\n    \"10345\",\n    \"10352\",\n    \"10356\",\n    \"10365\",\n    \"10374\",\n    \"10380\",\n    \"10385\",\n    \"10391\",\n    \"10399\",\n    \"10406\",\n    \"10407\",\n    \"10408\",\n    \"10411\",\n    \"10412\",\n    \"10419\",\n    \"10420\",\n    \"10423\",\n    \"10428\",\n    \"10434\",\n    \"10452\",\n    \"10454\",\n    \"10456\",\n    \"10457\",\n    \"10463\",\n    \"10465\",\n    \"10476\",\n    \"10478\",\n    \"10493\",\n    \"10496\",\n    \"10500\",\n    \"10512\",\n    \"10513\",\n    \"10519\",\n    \"10521\",\n    \"10522\",\n    \"10523\",\n    \"10528\",\n    \"10536\",\n    \"10537\",\n    \"10540\",\n    \"10545\",\n    \"10549\",\n    \"10550\",\n    \"10554\",\n    \"10555\",\n    \"10556\",\n    \"10560\",\n    \"10562\",\n    \"10563\",\n    \"10565\",\n    \"10568\",\n    \"10569\",\n    \"10576\",\n    \"10577\",\n    \"10578\",\n    \"10579\",\n    \"10580\",\n    \"10595\",\n    \"10600\",\n    \"10601\",\n    \"10602\",\n    \"10604\",\n    \"10614\",\n    \"10616\",\n    \"10623\",\n    \"10630\",\n    \"10634\",\n    \"10635\",\n    \"10649\",\n    \"10654\",\n    \"10655\",\n    \"10660\",\n    \"10661\",\n    \"10665\",\n    \"10671\",\n    \"10675\",\n    \"10681\",\n    \"10685\",\n    \"10689\",\n    \"10692\",\n    \"10696\",\n    \"10697\",\n    \"10700\",\n    \"10706\",\n    \"10708\",\n    \"10709\",\n    \"10711\",\n    \"10716\",\n    \"10723\",\n    \"10725\",\n    \"10729\",\n    \"10732\",\n    \"10738\",\n    \"10750\",\n    \"10755\",\n    \"10758\",\n    \"10761\",\n    \"10762\",\n    \"10770\",\n    \"10783\",\n    \"10785\",\n    \"10786\",\n    \"10790\",\n    \"10791\",\n    \"10793\",\n    \"10797\",\n    \"10801\",\n    \"10819\",\n    \"10823\",\n    \"10837\",\n    \"10838\",\n    \"10839\",\n    \"10840\",\n    \"10841\",\n    \"10853\",\n    \"10854\",\n    \"10865\",\n    \"10867\",\n    \"10869\",\n    \"10873\",\n    \"10874\",\n    \"10883\",\n    \"10885\",\n    \"10886\",\n    \"10889\",\n    \"10894\",\n    \"10899\",\n    \"10909\",\n    \"10919\",\n    \"10921\",\n    \"10935\",\n    \"10939\",\n    \"10941\",\n    \"10945\",\n    \"10947\",\n    \"10955\",\n    \"10960\",\n    \"10961\",\n    \"10962\",\n    \"10964\",\n    \"10971\",\n    \"10980\",\n    \"10982\",\n    \"10984\",\n    \"10997\",\n    \"10999\",\n    \"11000\",\n    \"11006\",\n    \"11007\",\n    \"11015\",\n    \"11020\",\n    \"11022\",\n    \"11027\",\n    \"11038\",\n    \"11042\",\n    \"11046\",\n    \"11060\",\n    \"11064\",\n    \"11067\",\n    \"11073\",\n    \"11083\",\n    \"11085\",\n    \"11094\",\n    \"11099\",\n    \"11113\",\n    \"11116\",\n    \"11119\",\n    \"11120\",\n    \"11123\",\n    \"11126\",\n    \"11131\",\n    \"11132\",\n    \"11137\",\n    \"11138\",\n    \"11145\",\n    \"11149\",\n    \"11155\",\n    \"11169\",\n    \"11177\",\n    \"11180\",\n    \"11181\",\n    \"11187\",\n    \"11191\",\n    \"11195\",\n    \"11198\",\n    \"11199\",\n    \"11201\",\n    \"11202\",\n    \"11206\",\n    \"11215\",\n    \"11218\",\n    \"11219\",\n    \"11220\",\n    \"11223\",\n    \"11227\",\n    \"11238\",\n    \"11241\",\n    \"11246\",\n    \"11252\",\n    \"11254\",\n    \"11257\",\n    \"11260\",\n    \"11262\",\n    \"11263\",\n    \"11280\",\n    \"11283\",\n    \"11285\",\n    \"11293\",\n    \"11296\",\n    \"11300\",\n    \"11309\",\n    \"11317\",\n    \"11318\",\n    \"11320\",\n    \"11324\",\n    \"11333\",\n    \"11335\",\n    \"11342\",\n    \"11344\",\n    \"11345\",\n    \"11346\",\n    \"11367\",\n    \"11371\",\n    \"11373\",\n    \"11374\",\n    \"11380\",\n    \"11383\",\n    \"11384\",\n    \"11394\",\n    \"11397\",\n    \"11399\",\n    \"11400\",\n    \"11408\",\n    \"11416\",\n    \"11417\",\n    \"11418\",\n    \"11421\",\n    \"11429\",\n    \"11430\",\n    \"11434\",\n    \"11445\",\n    \"11446\",\n    \"11453\",\n    \"11454\",\n    \"11457\",\n    \"11468\",\n    \"11480\",\n    \"11487\",\n    \"11489\",\n    \"11496\",\n    \"11497\",\n    \"11498\",\n    \"11502\",\n    \"11505\",\n    \"11509\",\n    \"11511\",\n    \"11514\",\n    \"11523\",\n    \"11532\",\n    \"11545\",\n    \"11546\",\n    \"11548\",\n    \"11552\",\n    \"11556\",\n    \"11559\",\n    \"11572\",\n    \"11578\",\n    \"11581\",\n    \"11582\",\n    \"11583\",\n    \"11589\",\n    \"11590\",\n    \"11591\",\n    \"11593\",\n    \"11596\",\n    \"11597\",\n    \"11599\",\n    \"11603\",\n    \"11605\",\n    \"11606\",\n    \"11607\",\n    \"11608\",\n    \"11609\",\n    \"11613\",\n    \"11639\",\n    \"11643\",\n    \"11656\",\n    \"11663\",\n    \"11664\",\n    \"11670\",\n    \"11675\",\n    \"11688\",\n    \"11690\",\n    \"11695\",\n    \"11696\",\n    \"11715\",\n    \"11728\",\n    \"11733\",\n    \"11734\",\n    \"11736\",\n    \"11738\",\n    \"11745\",\n    \"11756\",\n    \"11757\",\n    \"11758\",\n    \"11761\",\n    \"11768\",\n    \"11772\",\n    \"11773\",\n    \"11777\",\n    \"11784\",\n    \"11799\",\n    \"11802\",\n    \"11805\",\n    \"11815\",\n    \"11817\",\n    \"11818\",\n    \"11819\",\n    \"11825\",\n    \"11829\",\n    \"11845\",\n    \"11849\",\n    \"11860\",\n    \"11862\",\n    \"11866\",\n    \"11868\",\n    \"11874\",\n    \"11881\",\n    \"11886\",\n    \"11890\",\n    \"11892\",\n    \"11897\",\n    \"11901\",\n    \"11917\",\n    \"11921\",\n    \"11922\",\n    \"11923\",\n    \"11925\",\n    \"11926\",\n    \"11928\",\n    \"11930\",\n    \"11931\",\n    \"11932\",\n    \"11934\",\n    \"11936\",\n    \"11942\",\n    \"11943\",\n    \"11946\",\n    \"11948\",\n    \"11954\",\n    \"11955\",\n    \"11963\",\n    \"11964\",\n    \"11975\",\n    \"11983\",\n    \"11984\",\n    \"11986\",\n    \"11988\",\n    \"11990\",\n    \"11992\",\n    \"11995\",\n    \"12008\",\n    \"12011\",\n    \"12016\",\n    \"12021\",\n    \"12023\",\n    \"12026\",\n    \"12031\",\n    \"12033\",\n    \"12034\",\n    \"12047\",\n    \"12054\",\n    \"12056\",\n    \"12064\",\n    \"12068\",\n    \"12072\",\n    \"12083\",\n    \"12096\",\n    \"12100\",\n    \"12103\",\n    \"12105\",\n    \"12116\",\n    \"12117\",\n    \"12123\",\n    \"12129\",\n    \"12134\",\n    \"12135\",\n    \"12137\",\n    \"12139\",\n    \"12143\",\n    \"12154\",\n    \"12157\",\n    \"12167\",\n    \"12172\",\n    \"12174\",\n    \"12176\",\n    \"12183\",\n    \"12191\",\n    \"12192\",\n    \"12198\",\n    \"12204\",\n    \"12215\",\n    \"12219\",\n    \"12226\",\n    \"12232\",\n    \"12234\",\n    \"12240\",\n    \"12247\",\n    \"12255\",\n    \"12263\",\n    \"12266\",\n    \"12269\",\n    \"12284\",\n    \"12287\",\n    \"12292\",\n    \"12298\",\n    \"12311\",\n    \"12316\",\n    \"12320\",\n    \"12321\",\n    \"12324\",\n    \"12332\",\n    \"12335\",\n    \"12340\",\n    \"12350\",\n    \"12357\",\n    \"12358\",\n    \"12365\",\n    \"12370\",\n    \"12382\",\n    \"12390\",\n    \"12394\",\n    \"12396\",\n    \"12397\",\n    \"12399\",\n    \"12403\",\n    \"12406\",\n    \"12413\",\n    \"12414\",\n    \"12418\",\n    \"12421\",\n    \"12427\",\n    \"12438\",\n    \"12441\",\n    \"12446\",\n    \"12452\",\n    \"12453\",\n    \"12455\",\n    \"12468\",\n    \"12473\",\n    \"12477\",\n    \"12487\",\n    \"12489\",\n    \"12490\",\n    \"12506\",\n    \"12509\",\n    \"12513\",\n    \"12521\",\n    \"12523\",\n    \"12535\",\n    \"12547\",\n    \"12549\",\n    \"12553\",\n    \"12554\",\n    \"12556\",\n    \"12557\",\n    \"12577\",\n    \"12587\",\n    \"12606\",\n    \"12608\",\n    \"12611\",\n    \"12613\",\n    \"12627\",\n    \"12629\",\n    \"12641\",\n    \"12645\",\n    \"12652\",\n    \"12662\",\n    \"12664\",\n    \"12670\",\n    \"12672\",\n    \"12673\",\n    \"12675\",\n    \"12677\",\n    \"12683\",\n    \"12698\",\n    \"12706\",\n    \"12707\",\n    \"12712\",\n    \"12714\",\n    \"12719\",\n    \"12722\",\n    \"12723\",\n    \"12724\",\n    \"12733\",\n    \"12741\",\n    \"12753\",\n    \"12754\",\n    \"12756\",\n    \"12758\",\n    \"12776\",\n    \"12777\",\n    \"12785\",\n    \"12787\",\n    \"12793\",\n    \"12799\",\n    \"12809\",\n    \"12814\",\n    \"12815\",\n    \"12821\",\n    \"12824\",\n    \"12827\",\n    \"12839\",\n    \"12841\",\n    \"12842\",\n    \"12845\",\n    \"12856\",\n    \"12858\",\n    \"12861\",\n    \"12869\",\n    \"12875\",\n    \"12878\",\n    \"12894\",\n    \"12897\",\n    \"12905\",\n    \"12909\",\n    \"12916\",\n    \"12924\",\n    \"12925\",\n    \"12933\",\n    \"12936\",\n    \"12938\",\n    \"12940\",\n    \"12961\",\n    \"12965\",\n    \"12966\",\n    \"12976\",\n    \"12979\",\n    \"12983\",\n    \"12984\",\n    \"12992\",\n    \"12995\",\n    \"12999\",\n    \"13005\",\n    \"13007\",\n    \"13009\",\n    \"13012\",\n    \"13015\",\n    \"13016\",\n    \"13017\",\n    \"13021\",\n    \"13043\",\n    \"13054\",\n    \"13058\",\n    \"13062\",\n    \"13063\",\n    \"13064\",\n    \"13066\",\n    \"13068\",\n    \"13072\",\n    \"13078\",\n    \"13086\",\n    \"13087\",\n    \"13093\",\n    \"13102\",\n    \"13110\",\n    \"13114\",\n    \"13122\",\n    \"13125\",\n    \"13128\",\n    \"13133\",\n    \"13145\",\n    \"13147\",\n    \"13162\",\n    \"13164\",\n    \"13166\",\n    \"13180\",\n    \"13184\",\n    \"13197\",\n    \"13199\",\n    \"13202\",\n    \"13204\",\n    \"13210\",\n    \"13215\",\n    \"13219\",\n    \"13227\",\n    \"13230\",\n    \"13236\",\n    \"13247\",\n    \"13251\",\n    \"13252\",\n    \"13253\",\n    \"13258\",\n    \"13263\",\n    \"13268\",\n    \"13271\",\n    \"13280\",\n    \"13285\",\n    \"13293\",\n    \"13309\",\n    \"13311\",\n    \"13312\",\n    \"13319\",\n    \"13344\",\n    \"13348\",\n    \"13354\",\n    \"13356\",\n    \"13388\",\n    \"13392\",\n    \"13393\",\n    \"13394\",\n    \"13397\",\n    \"13408\",\n    \"13413\",\n    \"13420\",\n    \"13424\",\n    \"13434\",\n    \"13437\",\n    \"13441\",\n    \"13443\",\n    \"13446\",\n    \"13456\",\n    \"13457\",\n    \"13458\",\n    \"13459\",\n    \"13461\",\n    \"13463\",\n    \"13469\",\n    \"13471\",\n    \"13475\",\n    \"13476\",\n    \"13480\",\n    \"13484\",\n    \"13488\",\n    \"13489\",\n    \"13491\",\n    \"13497\",\n    \"13500\",\n    \"13503\",\n    \"13507\",\n    \"13510\",\n    \"13525\",\n    \"13528\",\n    \"13539\",\n    \"13544\",\n    \"13547\",\n    \"13551\",\n    \"13552\",\n    \"13571\",\n    \"13574\",\n    \"13592\",\n    \"13599\",\n    \"13603\",\n    \"13605\",\n    \"13614\",\n    \"13621\",\n    \"13640\",\n    \"13643\",\n    \"13644\",\n    \"13652\",\n    \"13666\",\n    \"13667\",\n    \"13678\",\n    \"13687\",\n    \"13688\",\n    \"13695\",\n    \"13696\",\n    \"13704\",\n    \"13715\",\n    \"13726\",\n    \"13732\",\n    \"13736\",\n    \"13738\",\n    \"13741\",\n    \"13744\",\n    \"13745\",\n    \"13746\",\n    \"13752\",\n    \"13754\",\n    \"13756\",\n    \"13758\",\n    \"13765\",\n    \"13767\",\n    \"13777\",\n    \"13781\",\n    \"13784\",\n    \"13795\",\n    \"13807\",\n    \"13811\",\n    \"13814\",\n    \"13815\",\n    \"13818\",\n    \"13834\",\n    \"13837\",\n    \"13845\",\n    \"13856\",\n    \"13858\",\n    \"13868\",\n    \"13869\",\n    \"13872\",\n    \"13878\",\n    \"13879\",\n    \"13886\",\n    \"13887\",\n    \"13896\",\n    \"13907\",\n    \"13911\",\n    \"13914\",\n    \"13932\",\n    \"13945\",\n    \"13947\",\n    \"13949\",\n    \"13950\",\n    \"13952\",\n    \"13953\",\n    \"13960\",\n    \"13961\",\n    \"13962\",\n    \"13968\",\n    \"13970\",\n    \"13971\",\n    \"13972\",\n    \"13976\",\n    \"13977\",\n    \"13978\",\n    \"13985\",\n    \"13988\",\n    \"13993\",\n    \"13995\",\n    \"13998\",\n    \"13999\",\n    \"14005\",\n    \"14029\",\n    \"14039\",\n    \"14040\",\n    \"14041\",\n    \"14048\",\n    \"14054\",\n    \"14060\",\n    \"14064\",\n    \"14072\",\n    \"14073\",\n    \"14086\",\n    \"14087\",\n    \"14094\",\n    \"14096\",\n    \"14098\",\n    \"14103\",\n    \"14106\",\n    \"14108\",\n    \"14112\",\n    \"14117\",\n    \"14124\",\n    \"14125\",\n    \"14132\",\n    \"14136\",\n    \"14139\",\n    \"14145\",\n    \"14146\",\n    \"14156\",\n    \"14162\",\n    \"14165\",\n    \"14167\",\n    \"14169\",\n    \"14172\",\n    \"14175\",\n    \"14187\",\n    \"14191\",\n    \"14192\",\n    \"14203\",\n    \"14204\",\n    \"14205\",\n    \"14206\",\n    \"14210\",\n    \"14212\",\n    \"14219\",\n    \"14224\",\n    \"14233\",\n    \"14245\",\n    \"14246\",\n    \"14254\",\n    \"14255\",\n    \"14268\",\n    \"14270\",\n    \"14272\",\n    \"14275\",\n    \"14279\",\n    \"14299\",\n    \"14304\",\n    \"14308\",\n    \"14318\",\n    \"14324\",\n    \"14327\",\n    \"14332\",\n    \"14341\",\n    \"14342\",\n    \"14348\",\n    \"14349\",\n    \"14355\",\n    \"14356\",\n    \"14368\",\n    \"14369\",\n    \"14373\",\n    \"14375\",\n    \"14376\",\n    \"14386\",\n    \"14387\",\n    \"14399\",\n    \"14403\",\n    \"14405\",\n    \"14406\",\n    \"14407\",\n    \"14417\",\n    \"14420\",\n    \"14421\",\n    \"14424\",\n    \"14426\",\n    \"14428\",\n    \"14438\",\n    \"14440\",\n    \"14442\",\n    \"14444\",\n    \"14456\",\n    \"14462\",\n    \"14467\",\n    \"14482\",\n    \"14484\",\n    \"14489\",\n    \"14492\",\n    \"14498\",\n    \"14502\",\n    \"14504\",\n    \"14505\",\n    \"14506\",\n    \"14507\",\n    \"14512\",\n    \"14525\",\n    \"14533\",\n    \"14537\",\n    \"14539\",\n    \"14541\",\n    \"14542\",\n    \"14545\",\n    \"14546\",\n    \"14547\",\n    \"14553\",\n    \"14555\",\n    \"14556\",\n    \"14563\",\n    \"14572\",\n    \"14578\",\n    \"14580\",\n    \"14588\",\n    \"14593\",\n    \"14598\",\n    \"14602\",\n    \"14605\",\n    \"14607\",\n    \"14610\",\n    \"14620\",\n    \"14626\",\n    \"14627\",\n    \"14637\",\n    \"14639\",\n    \"14644\",\n    \"14648\",\n    \"14651\",\n    \"14664\",\n    \"14666\",\n    \"14675\",\n    \"14680\",\n    \"14692\",\n    \"14694\",\n    \"14699\",\n    \"14705\",\n    \"14706\",\n    \"14707\",\n    \"14708\",\n    \"14719\",\n    \"14722\",\n    \"14734\",\n    \"14735\",\n    \"14739\",\n    \"14743\",\n    \"14746\",\n    \"14749\",\n    \"14755\",\n    \"14759\",\n    \"14764\",\n    \"14766\",\n    \"14767\",\n    \"14779\",\n    \"14785\",\n    \"14787\",\n    \"14789\",\n    \"14800\",\n    \"14803\",\n    \"14808\",\n    \"14809\",\n    \"14811\",\n    \"14814\",\n    \"14816\",\n    \"14818\",\n    \"14824\",\n    \"14826\",\n    \"14831\",\n    \"14840\",\n    \"14841\",\n    \"14846\",\n    \"14857\",\n    \"14861\",\n    \"14862\",\n    \"14865\",\n    \"14874\",\n    \"14881\",\n    \"14887\",\n    \"14888\",\n    \"14889\",\n    \"14893\",\n    \"14896\",\n    \"14897\",\n    \"14898\",\n    \"14904\",\n    \"14913\",\n    \"14919\",\n    \"14927\",\n    \"14937\",\n    \"14941\",\n    \"14946\",\n    \"14951\",\n    \"14957\",\n    \"14958\",\n    \"14961\",\n    \"14971\",\n    \"14976\",\n    \"14985\",\n    \"14989\",\n    \"14992\",\n    \"15002\",\n    \"15003\",\n    \"15024\",\n    \"15025\",\n    \"15027\",\n    \"15044\",\n    \"15050\",\n    \"15066\",\n    \"15068\",\n    \"15070\",\n    \"15073\",\n    \"15076\",\n    \"15080\",\n    \"15082\",\n    \"15086\",\n    \"15088\",\n    \"15094\",\n    \"15095\",\n    \"15105\",\n    \"15111\",\n    \"15115\",\n    \"15122\",\n    \"15125\",\n    \"15146\",\n    \"15158\",\n    \"15161\",\n    \"15171\",\n    \"15175\",\n    \"15187\",\n    \"15189\",\n    \"15190\",\n    \"15205\",\n    \"15206\",\n    \"15216\",\n    \"15221\",\n    \"15224\",\n    \"15229\",\n    \"15230\",\n    \"15235\",\n    \"15241\",\n    \"15245\",\n    \"15253\",\n    \"15256\",\n    \"15259\",\n    \"15260\",\n    \"15267\",\n    \"15272\",\n    \"15273\",\n    \"15274\",\n    \"15277\",\n    \"15279\",\n    \"15280\",\n    \"15282\",\n    \"15288\",\n    \"15289\",\n    \"15290\",\n    \"15298\",\n    \"15303\",\n    \"15305\",\n    \"15306\",\n    \"15327\",\n    \"15335\",\n    \"15359\",\n    \"15374\",\n    \"15382\",\n    \"15383\",\n    \"15385\",\n    \"15403\",\n    \"15406\",\n    \"15407\",\n    \"15415\",\n    \"15422\",\n    \"15429\",\n    \"15441\",\n    \"15444\",\n    \"15445\",\n    \"15446\",\n    \"15450\",\n    \"15457\",\n    \"15458\",\n    \"15461\",\n    \"15463\",\n    \"15475\",\n    \"15478\",\n    \"15486\",\n    \"15487\",\n    \"15488\",\n    \"15494\",\n    \"15497\",\n    \"15506\",\n    \"15512\",\n    \"15516\",\n    \"15524\",\n    \"15525\",\n    \"15528\",\n    \"15530\",\n    \"15534\",\n    \"15541\",\n    \"15546\",\n    \"15552\",\n    \"15556\",\n    \"15560\",\n    \"15562\",\n    \"15569\",\n    \"15573\",\n    \"15575\",\n    \"15576\",\n    \"15585\",\n    \"15591\",\n    \"15594\",\n    \"15595\",\n    \"15596\",\n    \"15601\",\n    \"15602\",\n    \"15606\",\n    \"15614\",\n    \"15623\",\n    \"15627\",\n    \"15630\",\n    \"15632\",\n    \"15636\",\n    \"15637\",\n    \"15642\",\n    \"15645\",\n    \"15646\",\n    \"15651\",\n    \"15652\",\n    \"15658\",\n    \"15662\",\n    \"15665\",\n    \"15668\",\n    \"15670\",\n    \"15675\",\n    \"15684\",\n    \"15696\",\n    \"15701\",\n    \"15702\",\n    \"15705\",\n    \"15706\",\n    \"15710\",\n    \"15712\",\n    \"15718\",\n    \"15725\",\n    \"15737\",\n    \"15740\",\n    \"15749\",\n    \"15763\",\n    \"15765\",\n    \"15767\",\n    \"15772\",\n    \"15787\",\n    \"15790\",\n    \"15791\",\n    \"15794\",\n    \"15799\",\n    \"15807\",\n    \"15810\",\n    \"15813\",\n    \"15815\",\n    \"15821\",\n    \"15826\",\n    \"15829\",\n    \"15831\",\n    \"15835\",\n    \"15841\",\n    \"15850\",\n    \"15853\",\n    \"15857\",\n    \"15858\",\n    \"15866\",\n    \"15867\",\n    \"15872\",\n    \"15874\",\n    \"15885\",\n    \"15891\",\n    \"15900\",\n    \"15902\",\n    \"15908\",\n    \"15913\",\n    \"15917\",\n    \"15923\",\n    \"15930\",\n    \"15932\",\n    \"15934\",\n    \"15938\",\n    \"15943\",\n    \"15950\",\n    \"15956\",\n    \"15958\",\n    \"15960\",\n    \"15967\",\n    \"15971\",\n    \"15976\",\n    \"15978\",\n    \"15981\",\n    \"15983\",\n    \"15984\",\n    \"16002\",\n    \"16004\",\n    \"16010\",\n    \"16011\",\n    \"16012\",\n    \"16015\",\n    \"16016\",\n    \"16025\",\n    \"16026\",\n    \"16027\",\n    \"16035\",\n    \"16042\",\n    \"16045\",\n    \"16046\",\n    \"16048\",\n    \"16049\",\n    \"16050\",\n    \"16057\",\n    \"16063\",\n    \"16067\",\n    \"16069\",\n    \"16106\",\n    \"16113\",\n    \"16115\",\n    \"16118\",\n    \"16119\",\n    \"16122\",\n    \"16126\",\n    \"16127\",\n    \"16139\",\n    \"16141\",\n    \"16145\",\n    \"16147\",\n    \"16156\",\n    \"16162\",\n    \"16169\",\n    \"16180\",\n    \"16182\",\n    \"16183\",\n    \"16186\",\n    \"16193\",\n    \"16196\",\n    \"16199\",\n    \"16203\",\n    \"16209\",\n    \"16213\",\n    \"16219\",\n    \"16221\",\n    \"16223\",\n    \"16235\",\n    \"16240\",\n    \"16242\",\n    \"16243\",\n    \"16245\",\n    \"16246\",\n    \"16252\",\n    \"16253\",\n    \"16276\",\n    \"16279\",\n    \"16293\",\n    \"16297\",\n    \"16301\",\n    \"16304\",\n    \"16315\",\n    \"16319\",\n    \"16325\",\n    \"16326\",\n    \"16327\",\n    \"16338\",\n    \"16339\",\n    \"16340\",\n    \"16347\",\n    \"16348\",\n    \"16356\",\n    \"16366\",\n    \"16372\",\n    \"16374\",\n    \"16379\",\n    \"16380\",\n    \"16384\",\n    \"16387\",\n    \"16395\",\n    \"16396\",\n    \"16402\",\n    \"16410\",\n    \"16419\",\n    \"16421\",\n    \"16422\",\n    \"16424\",\n    \"16432\",\n    \"16434\",\n    \"16436\",\n    \"16437\",\n    \"16440\",\n    \"16444\",\n    \"16446\",\n    \"16456\",\n    \"16459\",\n    \"16469\",\n    \"16470\",\n    \"16471\",\n    \"16476\",\n    \"16477\",\n    \"16485\",\n    \"16493\",\n    \"16496\",\n    \"16499\",\n    \"16501\",\n    \"16505\",\n    \"16506\",\n    \"16510\",\n    \"16522\",\n    \"16528\",\n    \"16534\",\n    \"16535\",\n    \"16536\",\n    \"16542\",\n    \"16544\",\n    \"16546\",\n    \"16557\",\n    \"16566\",\n    \"16574\",\n    \"16578\",\n    \"16580\",\n    \"16581\",\n    \"16585\",\n    \"16586\",\n    \"16592\",\n    \"16593\",\n    \"16595\",\n    \"16599\",\n    \"16601\",\n    \"16606\",\n    \"16608\",\n    \"16610\",\n    \"16622\",\n    \"16623\",\n    \"16626\",\n    \"16629\",\n    \"16630\",\n    \"16639\",\n    \"16642\",\n    \"16649\",\n    \"16651\",\n    \"16658\",\n    \"16659\",\n    \"16660\",\n    \"16662\",\n    \"16665\",\n    \"16673\",\n    \"16678\",\n    \"16680\",\n    \"16683\",\n    \"16685\",\n    \"16689\",\n    \"16693\",\n    \"16695\",\n    \"16699\",\n    \"16708\",\n    \"16720\",\n    \"16723\",\n    \"16725\",\n    \"16727\",\n    \"16728\",\n    \"16731\",\n    \"16733\",\n    \"16737\",\n    \"16738\",\n    \"16744\",\n    \"16746\",\n    \"16751\",\n    \"16754\",\n    \"16756\",\n    \"16762\",\n    \"16772\",\n    \"16773\",\n    \"16777\",\n    \"16784\",\n    \"16788\",\n    \"16797\",\n    \"16802\",\n    \"16806\",\n    \"16810\",\n    \"16811\",\n    \"16812\",\n    \"16816\",\n    \"16818\",\n    \"16822\",\n    \"16824\",\n    \"16827\",\n    \"16836\",\n    \"16837\",\n    \"16840\",\n    \"16841\",\n    \"16852\",\n    \"16854\",\n    \"16855\",\n    \"16861\",\n    \"16868\",\n    \"16873\",\n    \"16878\",\n    \"16879\",\n    \"16881\",\n    \"16883\",\n    \"16886\",\n    \"16903\",\n    \"16917\",\n    \"16930\",\n    \"16932\",\n    \"16935\",\n    \"16936\",\n    \"16939\",\n    \"16947\",\n    \"16951\",\n    \"16967\",\n    \"16977\",\n    \"16986\",\n    \"16992\",\n    \"16995\",\n    \"16996\",\n    \"17004\",\n    \"17014\",\n    \"17015\",\n    \"17017\",\n    \"17039\",\n    \"17042\",\n    \"17044\",\n    \"17045\",\n    \"17048\",\n    \"17052\",\n    \"17055\",\n    \"17056\",\n    \"17061\",\n    \"17069\",\n    \"17070\",\n    \"17078\",\n    \"17085\",\n    \"17096\",\n    \"17098\",\n    \"17100\",\n    \"17103\",\n    \"17106\",\n    \"17110\",\n    \"17115\",\n    \"17119\",\n    \"17125\",\n    \"17135\",\n    \"17136\",\n    \"17140\",\n    \"17153\",\n    \"17155\",\n    \"17156\",\n    \"17171\",\n    \"17176\",\n    \"17178\",\n    \"17183\",\n    \"17189\",\n    \"17204\",\n    \"17206\",\n    \"17209\",\n    \"17211\",\n    \"17214\",\n    \"17215\",\n    \"17218\",\n    \"17219\",\n    \"17222\",\n    \"17226\",\n    \"17227\",\n    \"17228\",\n    \"17233\",\n    \"17250\",\n    \"17254\",\n    \"17258\",\n    \"17267\",\n    \"17268\",\n    \"17269\",\n    \"17273\",\n    \"17278\",\n    \"17285\",\n    \"17295\",\n    \"17296\",\n    \"17304\",\n    \"17317\",\n    \"17319\",\n    \"17324\",\n    \"17328\",\n    \"17329\",\n    \"17339\",\n    \"17343\",\n    \"17351\",\n    \"17354\",\n    \"17366\",\n    \"17372\",\n    \"17380\",\n    \"17385\",\n    \"17387\",\n    \"17390\",\n    \"17391\",\n    \"17398\",\n    \"17400\",\n    \"17406\",\n    \"17408\",\n    \"17422\",\n    \"17424\",\n    \"17425\",\n    \"17430\",\n    \"17431\",\n    \"17435\",\n    \"17436\",\n    \"17438\",\n    \"17439\",\n    \"17441\",\n    \"17459\",\n    \"17464\",\n    \"17485\",\n    \"17488\",\n    \"17493\",\n    \"17496\",\n    \"17500\",\n    \"17501\",\n    \"17503\",\n    \"17508\",\n    \"17514\",\n    \"17515\",\n    \"17517\",\n    \"17523\",\n    \"17534\",\n    \"17537\",\n    \"17543\",\n    \"17553\",\n    \"17555\",\n    \"17556\",\n    \"17558\",\n    \"17559\",\n    \"17565\",\n    \"17568\",\n    \"17570\",\n    \"17577\",\n    \"17578\",\n    \"17595\",\n    \"17599\",\n    \"17600\",\n    \"17601\",\n    \"17607\",\n    \"17609\",\n    \"17611\",\n    \"17613\",\n    \"17617\",\n    \"17622\",\n    \"17637\",\n    \"17646\",\n    \"17652\",\n    \"17654\",\n    \"17658\",\n    \"17665\",\n    \"17667\",\n    \"17668\",\n    \"17672\",\n    \"17679\",\n    \"17686\",\n    \"17687\",\n    \"17688\",\n    \"17689\",\n    \"17692\",\n    \"17693\",\n    \"17695\",\n    \"17696\",\n    \"17698\",\n    \"17703\",\n    \"17707\",\n    \"17713\",\n    \"17721\",\n    \"17723\",\n    \"17726\",\n    \"17727\",\n    \"17752\",\n    \"17753\",\n    \"17754\",\n    \"17757\",\n    \"17763\",\n    \"17780\",\n    \"17784\",\n    \"17785\",\n    \"17790\",\n    \"17793\",\n    \"17797\",\n    \"17800\",\n    \"17810\",\n    \"17818\",\n    \"17819\",\n    \"17829\",\n    \"17830\",\n    \"17832\",\n    \"17833\",\n    \"17841\",\n    \"17845\",\n    \"17846\",\n    \"17857\",\n    \"17860\",\n    \"17867\",\n    \"17882\",\n    \"17887\",\n    \"17899\",\n    \"17901\",\n    \"17903\",\n    \"17907\",\n    \"17908\",\n    \"17912\",\n    \"17918\",\n    \"17929\",\n    \"17930\",\n    \"17936\",\n    \"17937\",\n    \"17943\",\n    \"17952\",\n    \"17960\",\n    \"17969\",\n    \"17970\",\n    \"17976\",\n    \"17977\",\n    \"17979\",\n    \"17985\",\n    \"17988\",\n    \"17990\",\n    \"17992\",\n    \"17994\",\n    \"17995\",\n    \"18003\",\n    \"18010\",\n    \"18019\",\n    \"18021\",\n    \"18029\",\n    \"18030\",\n    \"18036\",\n    \"18045\",\n    \"18048\",\n    \"18053\",\n    \"18055\",\n    \"18064\",\n    \"18068\",\n    \"18069\",\n    \"18072\",\n    \"18073\",\n    \"18077\",\n    \"18078\",\n    \"18086\",\n    \"18088\",\n    \"18095\",\n    \"18101\",\n    \"18104\",\n    \"18105\",\n    \"18124\",\n    \"18127\",\n    \"18128\",\n    \"18129\",\n    \"18130\",\n    \"18131\",\n    \"18133\",\n    \"18134\",\n    \"18136\",\n    \"18138\",\n    \"18146\",\n    \"18149\",\n    \"18152\",\n    \"18159\",\n    \"18166\",\n    \"18167\",\n    \"18173\",\n    \"18184\",\n    \"18187\",\n    \"18194\",\n    \"18196\",\n    \"18197\",\n    \"18202\",\n    \"18212\",\n    \"18241\",\n    \"18245\",\n    \"18250\",\n    \"18257\",\n    \"18258\",\n    \"18263\",\n    \"18272\",\n    \"18273\",\n    \"18275\",\n    \"18277\",\n    \"18278\",\n    \"18284\",\n    \"18288\",\n    \"18291\",\n    \"18294\",\n    \"18296\",\n    \"18303\",\n    \"18306\",\n    \"18310\",\n    \"18311\",\n    \"18322\",\n    \"18328\",\n    \"18334\",\n    \"18336\",\n    \"18338\",\n    \"18344\",\n    \"18349\",\n    \"18357\",\n    \"18362\",\n    \"18372\",\n    \"18382\",\n    \"18387\",\n    \"18389\",\n    \"18395\",\n    \"18396\",\n    \"18405\",\n    \"18407\",\n    \"18412\",\n    \"18420\",\n    \"18421\",\n    \"18424\",\n    \"18426\",\n    \"18427\",\n    \"18429\",\n    \"18436\",\n    \"18440\",\n    \"18446\",\n    \"18454\",\n    \"18472\",\n    \"18483\",\n    \"18487\",\n    \"18492\",\n    \"18494\",\n    \"18499\",\n    \"18503\",\n    \"18506\",\n    \"18516\",\n    \"18547\",\n    \"18550\",\n    \"18559\",\n    \"18560\",\n    \"18562\",\n    \"18565\",\n    \"18571\",\n    \"18572\",\n    \"18576\",\n    \"18586\",\n    \"18588\",\n    \"18609\",\n    \"18617\",\n    \"18627\",\n    \"18632\",\n    \"18651\",\n    \"18658\",\n    \"18659\",\n    \"18660\",\n    \"18662\",\n    \"18673\",\n    \"18675\",\n    \"18682\",\n    \"18686\",\n    \"18687\",\n    \"18689\",\n    \"18703\",\n    \"18707\",\n    \"18714\",\n    \"18716\",\n    \"18718\",\n    \"18722\",\n    \"18723\",\n    \"18739\",\n    \"18743\",\n    \"18752\",\n    \"18753\",\n    \"18763\",\n    \"18765\",\n    \"18775\",\n    \"18779\",\n    \"18786\",\n    \"18787\",\n    \"18792\",\n    \"18795\",\n    \"18796\",\n    \"18803\",\n    \"18812\",\n    \"18814\",\n    \"18816\",\n    \"18822\",\n    \"18841\",\n    \"18846\",\n    \"18858\",\n    \"18864\",\n    \"18873\",\n    \"18876\",\n    \"18885\",\n    \"18889\",\n    \"18892\",\n    \"18895\",\n    \"18896\",\n    \"18906\",\n    \"18907\",\n    \"18915\",\n    \"18919\",\n    \"18920\",\n    \"18935\",\n    \"18936\",\n    \"18937\",\n    \"18949\",\n    \"18973\",\n    \"18985\",\n    \"18994\",\n    \"19002\",\n    \"19016\",\n    \"19017\",\n    \"19022\",\n    \"19023\",\n    \"19029\",\n    \"19034\",\n    \"19036\",\n    \"19042\",\n    \"19043\",\n    \"19045\",\n    \"19049\",\n    \"19055\",\n    \"19060\",\n    \"19063\",\n    \"19070\",\n    \"19075\",\n    \"19078\",\n    \"19080\",\n    \"19086\",\n    \"19090\",\n    \"19093\",\n    \"19112\",\n    \"19115\",\n    \"19117\",\n    \"19118\",\n    \"19122\",\n    \"19133\",\n    \"19134\",\n    \"19136\",\n    \"19139\",\n    \"19142\",\n    \"19143\",\n    \"19150\",\n    \"19155\",\n    \"19156\",\n    \"19158\",\n    \"19161\",\n    \"19163\",\n    \"19164\",\n    \"19165\",\n    \"19167\",\n    \"19176\",\n    \"19182\",\n    \"19187\",\n    \"19197\",\n    \"19204\",\n    \"19206\",\n    \"19213\",\n    \"19217\",\n    \"19220\",\n    \"19223\",\n    \"19225\",\n    \"19227\",\n    \"19232\",\n    \"19237\",\n    \"19239\",\n    \"19244\",\n    \"19248\",\n    \"19253\",\n    \"19257\",\n    \"19259\",\n    \"19260\",\n    \"19263\",\n    \"19271\",\n    \"19274\",\n    \"19278\",\n    \"19287\",\n    \"19292\",\n    \"19293\",\n    \"19296\",\n    \"19303\",\n    \"19305\",\n    \"19310\",\n    \"19318\",\n    \"19323\",\n    \"19324\",\n    \"19327\",\n    \"19333\",\n    \"19334\",\n    \"19351\",\n    \"19353\",\n    \"19355\",\n    \"19367\",\n    \"19375\",\n    \"19381\",\n    \"19386\",\n    \"19397\",\n    \"19401\",\n    \"19405\",\n    \"19408\",\n    \"19430\",\n    \"19442\",\n    \"19444\",\n    \"19456\",\n    \"19457\",\n    \"19460\",\n    \"19470\",\n    \"19473\",\n    \"19476\",\n    \"19477\",\n    \"19479\",\n    \"19484\",\n    \"19493\",\n    \"19494\",\n    \"19496\",\n    \"19500\",\n    \"19501\",\n    \"19508\",\n    \"19515\",\n    \"19520\",\n    \"19524\",\n    \"19525\",\n    \"19531\",\n    \"19532\",\n    \"19533\",\n    \"19535\",\n    \"19538\",\n    \"19545\",\n    \"19546\",\n    \"19548\",\n    \"19549\",\n    \"19550\",\n    \"19558\",\n    \"19592\",\n    \"19595\",\n    \"19601\",\n    \"19602\",\n    \"19618\",\n    \"19620\",\n    \"19625\",\n    \"19629\",\n    \"19632\",\n    \"19634\",\n    \"19638\",\n    \"19641\",\n    \"19642\",\n    \"19658\",\n    \"19659\",\n    \"19665\",\n    \"19676\",\n    \"19678\",\n    \"19681\",\n    \"19691\",\n    \"19695\",\n    \"19697\",\n    \"19720\",\n    \"19723\",\n    \"19725\",\n    \"19726\",\n    \"19730\",\n    \"19731\",\n    \"19736\",\n    \"19756\",\n    \"19759\",\n    \"19764\",\n    \"19778\",\n    \"19782\",\n    \"19787\",\n    \"19788\",\n    \"19789\",\n    \"19791\",\n    \"19793\",\n    \"19798\",\n    \"19807\",\n    \"19818\",\n    \"19819\",\n    \"19824\",\n    \"19830\",\n    \"19850\",\n    \"19860\",\n    \"19867\",\n    \"19872\",\n    \"19877\",\n    \"19879\",\n    \"19882\",\n    \"19883\",\n    \"19886\",\n    \"19888\",\n    \"19889\",\n    \"19894\",\n    \"19899\",\n    \"19903\",\n    \"19904\",\n    \"19905\",\n    \"19908\",\n    \"19912\",\n    \"19913\",\n    \"19922\",\n    \"19926\",\n    \"19928\",\n    \"19934\",\n    \"19937\",\n    \"19948\",\n    \"19952\",\n    \"19955\",\n    \"19963\",\n    \"19981\",\n    \"19984\",\n    \"19990\",\n    \"19998\",\n    \"20001\",\n    \"20002\",\n    \"20003\",\n    \"20007\",\n    \"20009\",\n    \"20011\",\n    \"20020\",\n    \"20021\",\n    \"20024\",\n    \"20036\",\n    \"20040\",\n    \"20041\",\n    \"20043\",\n    \"20046\",\n    \"20051\",\n    \"20062\",\n    \"20065\",\n    \"20075\",\n    \"20081\",\n    \"20095\",\n    \"20115\",\n    \"20116\",\n    \"20117\",\n    \"20119\",\n    \"20120\",\n    \"20121\",\n    \"20132\",\n    \"20134\",\n    \"20135\",\n    \"20145\",\n    \"20148\",\n    \"20159\",\n    \"20161\",\n    \"20166\",\n    \"20170\",\n    \"20172\",\n    \"20173\",\n    \"20174\",\n    \"20176\",\n    \"20180\",\n    \"20184\",\n    \"20187\",\n    \"20189\",\n    \"20192\",\n    \"20203\",\n    \"20208\",\n    \"20215\",\n    \"20217\",\n    \"20219\",\n    \"20221\",\n    \"20224\",\n    \"20226\",\n    \"20231\",\n    \"20239\",\n    \"20241\",\n    \"20244\",\n    \"20245\",\n    \"20256\",\n    \"20262\",\n    \"20268\",\n    \"20280\",\n    \"20283\",\n    \"20303\",\n    \"20320\",\n    \"20323\",\n    \"20334\",\n    \"20337\",\n    \"20339\",\n    \"20340\",\n    \"20347\",\n    \"20349\",\n    \"20351\",\n    \"20368\",\n    \"20381\",\n    \"20382\",\n    \"20383\",\n    \"20384\",\n    \"20399\",\n    \"20407\",\n    \"20413\",\n    \"20416\",\n    \"20421\",\n    \"20427\",\n    \"20430\",\n    \"20438\",\n    \"20440\",\n    \"20441\",\n    \"20470\",\n    \"20471\",\n    \"20475\",\n    \"20490\",\n    \"20495\",\n    \"20498\",\n    \"20500\",\n    \"20503\",\n    \"20505\",\n    \"20506\",\n    \"20507\",\n    \"20514\",\n    \"20518\",\n    \"20522\",\n    \"20527\",\n    \"20535\",\n    \"20539\",\n    \"20542\",\n    \"20552\",\n    \"20554\",\n    \"20559\",\n    \"20561\",\n    \"20565\",\n    \"20567\",\n    \"20568\",\n    \"20574\",\n    \"20582\",\n    \"20584\",\n    \"20592\",\n    \"20600\",\n    \"20602\",\n    \"20604\",\n    \"20632\",\n    \"20634\",\n    \"20636\",\n    \"20643\",\n    \"20647\",\n    \"20648\",\n    \"20666\",\n    \"20669\",\n    \"20674\",\n    \"20675\",\n    \"20677\",\n    \"20690\",\n    \"20694\",\n    \"20699\",\n    \"20701\",\n    \"20703\",\n    \"20709\",\n    \"20710\",\n    \"20712\",\n    \"20721\",\n    \"20722\",\n    \"20729\",\n    \"20732\",\n    \"20734\",\n    \"20742\",\n    \"20745\",\n    \"20747\",\n    \"20749\",\n    \"20751\",\n    \"20758\",\n    \"20762\",\n    \"20770\",\n    \"20779\",\n    \"20782\",\n    \"20788\",\n    \"20794\",\n    \"20802\",\n    \"20806\",\n    \"20815\",\n    \"20820\",\n    \"20829\",\n    \"20842\",\n    \"20848\",\n    \"20849\",\n    \"20851\",\n    \"20854\",\n    \"20860\",\n    \"20864\",\n    \"20866\",\n    \"20883\",\n    \"20887\",\n    \"20888\",\n    \"20889\",\n    \"20890\",\n    \"20891\",\n    \"20907\",\n    \"20908\",\n    \"20915\",\n    \"20916\",\n    \"20917\",\n    \"20922\",\n    \"20924\",\n    \"20926\",\n    \"20947\",\n    \"20948\",\n    \"20949\",\n    \"20950\",\n    \"20952\",\n    \"20953\",\n    \"20967\",\n    \"20970\",\n    \"20979\",\n    \"20982\",\n    \"20984\",\n    \"20988\",\n    \"20994\",\n    \"20995\",\n    \"20997\",\n    \"20998\",\n    \"21000\",\n    \"21001\",\n    \"21006\",\n    \"21009\",\n    \"21014\",\n    \"21019\",\n    \"21020\",\n    \"21025\",\n    \"21041\",\n    \"21044\",\n    \"21048\",\n    \"21052\",\n    \"21053\",\n    \"21062\",\n    \"21063\",\n    \"21064\",\n    \"21070\",\n    \"21076\",\n    \"21083\",\n    \"21087\",\n    \"21090\",\n    \"21117\",\n    \"21121\",\n    \"21128\",\n    \"21133\",\n    \"21135\",\n    \"21136\",\n    \"21137\",\n    \"21140\",\n    \"21144\",\n    \"21146\",\n    \"21147\",\n    \"21149\",\n    \"21153\",\n    \"21159\",\n    \"21166\",\n    \"21189\",\n    \"21191\",\n    \"21192\",\n    \"21195\",\n    \"21196\",\n    \"21199\",\n    \"21200\",\n    \"21206\"\n  ],\n  \"trainval\": [\n    \"1\",\n    \"2\",\n    \"3\",\n    \"9\",\n    \"10\",\n    \"12\",\n    \"17\",\n    \"19\",\n    \"20\",\n    \"21\",\n    \"24\",\n    \"25\",\n    \"30\",\n    \"31\",\n    \"32\",\n    \"33\",\n    \"34\",\n    \"35\",\n    \"37\",\n    \"38\",\n    \"39\",\n    \"40\",\n    \"41\",\n    \"43\",\n    \"44\",\n    \"48\",\n    \"49\",\n    \"53\",\n    \"54\",\n    \"56\",\n    \"57\",\n    \"58\",\n    \"59\",\n    \"63\",\n    \"64\",\n    \"65\",\n    \"68\",\n    \"69\",\n    \"70\",\n    \"73\",\n    \"75\",\n    \"76\",\n    \"80\",\n    \"83\",\n    \"84\",\n    \"88\",\n    \"90\",\n    \"91\",\n    \"94\",\n    \"97\",\n    \"98\",\n    \"99\",\n    \"100\",\n    \"102\",\n    \"103\",\n    \"104\",\n    \"105\",\n    \"107\",\n    \"108\",\n    \"109\",\n    \"110\",\n    \"112\",\n    \"114\",\n    \"115\",\n    \"116\",\n    \"117\",\n    \"119\",\n    \"120\",\n    \"123\",\n    \"125\",\n    \"129\",\n    \"130\",\n    \"131\",\n    \"132\",\n    \"134\",\n    \"135\",\n    \"136\",\n    \"137\",\n    \"138\",\n    \"141\",\n    \"143\",\n    \"144\",\n    \"146\",\n    \"151\",\n    \"152\",\n    \"154\",\n    \"157\",\n    \"159\",\n    \"162\",\n    \"166\",\n    \"168\",\n    \"171\",\n    \"174\",\n    \"175\",\n    \"177\",\n    \"179\",\n    \"181\",\n    \"185\",\n    \"186\",\n    \"187\",\n    \"189\",\n    \"190\",\n    \"191\",\n    \"192\",\n    \"194\",\n    \"195\",\n    \"197\",\n    \"199\",\n    \"200\",\n    \"201\",\n    \"202\",\n    \"203\",\n    \"204\",\n    \"205\",\n    \"207\",\n    \"208\",\n    \"211\",\n    \"212\",\n    \"215\",\n    \"216\",\n    \"217\",\n    \"218\",\n    \"219\",\n    \"220\",\n    \"222\",\n    \"223\",\n    \"224\",\n    \"225\",\n    \"226\",\n    \"228\",\n    \"229\",\n    \"233\",\n    \"235\",\n    \"236\",\n    \"238\",\n    \"239\",\n    \"242\",\n    \"243\",\n    \"244\",\n    \"245\",\n    \"246\",\n    \"248\",\n    \"250\",\n    \"251\",\n    \"252\",\n    \"253\",\n    \"255\",\n    \"259\",\n    \"260\",\n    \"261\",\n    \"264\",\n    \"267\",\n    \"268\",\n    \"270\",\n    \"276\",\n    \"277\",\n    \"279\",\n    \"283\",\n    \"285\",\n    \"287\",\n    \"289\",\n    \"291\",\n    \"294\",\n    \"295\",\n    \"296\",\n    \"297\",\n    \"300\",\n    \"303\",\n    \"304\",\n    \"306\",\n    \"307\",\n    \"308\",\n    \"310\",\n    \"311\",\n    \"312\",\n    \"313\",\n    \"314\",\n    \"316\",\n    \"318\",\n    \"320\",\n    \"321\",\n    \"322\",\n    \"327\",\n    \"328\",\n    \"329\",\n    \"331\",\n    \"334\",\n    \"335\",\n    \"336\",\n    \"339\",\n    \"341\",\n    \"344\",\n    \"346\",\n    \"347\",\n    \"349\",\n    \"350\",\n    \"351\",\n    \"352\",\n    \"353\",\n    \"354\",\n    \"355\",\n    \"359\",\n    \"362\",\n    \"364\",\n    \"365\",\n    \"368\",\n    \"369\",\n    \"370\",\n    \"372\",\n    \"373\",\n    \"375\",\n    \"377\",\n    \"378\",\n    \"379\",\n    \"380\",\n    \"381\",\n    \"382\",\n    \"385\",\n    \"386\",\n    \"388\",\n    \"390\",\n    \"391\",\n    \"395\",\n    \"396\",\n    \"397\",\n    \"398\",\n    \"400\",\n    \"401\",\n    \"403\",\n    \"405\",\n    \"407\",\n    \"408\",\n    \"409\",\n    \"410\",\n    \"411\",\n    \"412\",\n    \"413\",\n    \"414\",\n    \"417\",\n    \"419\",\n    \"423\",\n    \"424\",\n    \"425\",\n    \"428\",\n    \"429\",\n    \"430\",\n    \"432\",\n    \"434\",\n    \"435\",\n    \"436\",\n    \"437\",\n    \"438\",\n    \"439\",\n    \"441\",\n    \"442\",\n    \"443\",\n    \"444\",\n    \"446\",\n    \"447\",\n    \"448\",\n    \"450\",\n    \"451\",\n    \"452\",\n    \"454\",\n    \"458\",\n    \"459\",\n    \"461\",\n    \"462\",\n    \"463\",\n    \"464\",\n    \"465\",\n    \"468\",\n    \"471\",\n    \"473\",\n    \"474\",\n    \"476\",\n    \"477\",\n    \"478\",\n    \"479\",\n    \"480\",\n    \"482\",\n    \"484\",\n    \"485\",\n    \"487\",\n    \"488\",\n    \"489\",\n    \"490\",\n    \"491\",\n    \"492\",\n    \"493\",\n    \"494\",\n    \"495\",\n    \"496\",\n    \"498\",\n    \"499\",\n    \"500\",\n    \"501\",\n    \"503\",\n    \"504\",\n    \"506\",\n    \"507\",\n    \"508\",\n    \"510\",\n    \"511\",\n    \"516\",\n    \"518\",\n    \"520\",\n    \"521\",\n    \"523\",\n    \"524\",\n    \"525\",\n    \"526\",\n    \"527\",\n    \"528\",\n    \"530\",\n    \"531\",\n    \"535\",\n    \"537\",\n    \"538\",\n    \"540\",\n    \"542\",\n    \"545\",\n    \"546\",\n    \"548\",\n    \"549\",\n    \"551\",\n    \"553\",\n    \"555\",\n    \"556\",\n    \"558\",\n    \"559\",\n    \"561\",\n    \"562\",\n    \"563\",\n    \"564\",\n    \"565\",\n    \"566\",\n    \"567\",\n    \"568\",\n    \"569\",\n    \"572\",\n    \"574\",\n    \"575\",\n    \"578\",\n    \"579\",\n    \"581\",\n    \"583\",\n    \"585\",\n    \"587\",\n    \"588\",\n    \"589\",\n    \"594\",\n    \"596\",\n    \"599\",\n    \"601\",\n    \"602\",\n    \"604\",\n    \"607\",\n    \"609\",\n    \"611\",\n    \"613\",\n    \"615\",\n    \"619\",\n    \"620\",\n    \"624\",\n    \"625\",\n    \"628\",\n    \"629\",\n    \"630\",\n    \"631\",\n    \"633\",\n    \"634\",\n    \"635\",\n    \"636\",\n    \"637\",\n    \"638\",\n    \"639\",\n    \"642\",\n    \"643\",\n    \"644\",\n    \"646\",\n    \"648\",\n    \"649\",\n    \"650\",\n    \"651\",\n    \"652\",\n    \"653\",\n    \"654\",\n    \"655\",\n    \"657\",\n    \"658\",\n    \"659\",\n    \"660\",\n    \"663\",\n    \"665\",\n    \"668\",\n    \"669\",\n    \"672\",\n    \"673\",\n    \"675\",\n    \"676\",\n    \"677\",\n    \"678\",\n    \"679\",\n    \"680\",\n    \"681\",\n    \"683\",\n    \"684\",\n    \"685\",\n    \"688\",\n    \"692\",\n    \"695\",\n    \"696\",\n    \"697\",\n    \"699\",\n    \"701\",\n    \"702\",\n    \"703\",\n    \"705\",\n    \"706\",\n    \"707\",\n    \"708\",\n    \"709\",\n    \"710\",\n    \"712\",\n    \"713\",\n    \"714\",\n    \"715\",\n    \"717\",\n    \"718\",\n    \"719\",\n    \"720\",\n    \"723\",\n    \"726\",\n    \"728\",\n    \"729\",\n    \"731\",\n    \"732\",\n    \"733\",\n    \"735\",\n    \"736\",\n    \"742\",\n    \"743\",\n    \"746\",\n    \"747\",\n    \"748\",\n    \"749\",\n    \"753\",\n    \"755\",\n    \"756\",\n    \"762\",\n    \"766\",\n    \"768\",\n    \"770\",\n    \"772\",\n    \"773\",\n    \"774\",\n    \"775\",\n    \"777\",\n    \"778\",\n    \"783\",\n    \"784\",\n    \"787\",\n    \"789\",\n    \"791\",\n    \"792\",\n    \"793\",\n    \"794\",\n    \"796\",\n    \"797\",\n    \"798\",\n    \"799\",\n    \"800\",\n    \"801\",\n    \"802\",\n    \"804\",\n    \"805\",\n    \"806\",\n    \"807\",\n    \"808\",\n    \"810\",\n    \"811\",\n    \"812\",\n    \"817\",\n    \"819\",\n    \"820\",\n    \"822\",\n    \"823\",\n    \"826\",\n    \"830\",\n    \"831\",\n    \"832\",\n    \"833\",\n    \"835\",\n    \"836\",\n    \"842\",\n    \"844\",\n    \"848\",\n    \"850\",\n    \"852\",\n    \"853\",\n    \"854\",\n    \"857\",\n    \"858\",\n    \"860\",\n    \"861\",\n    \"862\",\n    \"866\",\n    \"869\",\n    \"870\",\n    \"872\",\n    \"874\",\n    \"875\",\n    \"876\",\n    \"877\",\n    \"881\",\n    \"882\",\n    \"883\",\n    \"884\",\n    \"887\",\n    \"889\",\n    \"890\",\n    \"892\",\n    \"893\",\n    \"894\",\n    \"895\",\n    \"897\",\n    \"899\",\n    \"902\",\n    \"903\",\n    \"906\",\n    \"907\",\n    \"910\",\n    \"915\",\n    \"922\",\n    \"925\",\n    \"928\",\n    \"929\",\n    \"930\",\n    \"931\",\n    \"933\",\n    \"935\",\n    \"937\",\n    \"938\",\n    \"939\",\n    \"942\",\n    \"943\",\n    \"944\",\n    \"946\",\n    \"948\",\n    \"949\",\n    \"950\",\n    \"954\",\n    \"955\",\n    \"956\",\n    \"959\",\n    \"960\",\n    \"961\",\n    \"965\",\n    \"966\",\n    \"968\",\n    \"969\",\n    \"972\",\n    \"974\",\n    \"975\",\n    \"976\",\n    \"977\",\n    \"978\",\n    \"980\",\n    \"981\",\n    \"983\",\n    \"985\",\n    \"986\",\n    \"987\",\n    \"988\",\n    \"989\",\n    \"990\",\n    \"996\",\n    \"997\",\n    \"998\",\n    \"999\",\n    \"1000\",\n    \"1001\",\n    \"1003\",\n    \"1006\",\n    \"1007\",\n    \"1008\",\n    \"1011\",\n    \"1012\",\n    \"1015\",\n    \"1016\",\n    \"1017\",\n    \"1018\",\n    \"1019\",\n    \"1020\",\n    \"1021\",\n    \"1022\",\n    \"1023\",\n    \"1024\",\n    \"1025\",\n    \"1026\",\n    \"1027\",\n    \"1028\",\n    \"1030\",\n    \"1031\",\n    \"1032\",\n    \"1034\",\n    \"1035\",\n    \"1038\",\n    \"1039\",\n    \"1042\",\n    \"1045\",\n    \"1047\",\n    \"1048\",\n    \"1052\",\n    \"1053\",\n    \"1054\",\n    \"1055\",\n    \"1058\",\n    \"1060\",\n    \"1061\",\n    \"1062\",\n    \"1063\",\n    \"1066\",\n    \"1067\",\n    \"1068\",\n    \"1069\",\n    \"1070\",\n    \"1072\",\n    \"1074\",\n    \"1075\",\n    \"1076\",\n    \"1078\",\n    \"1080\",\n    \"1081\",\n    \"1084\",\n    \"1085\",\n    \"1086\",\n    \"1090\",\n    \"1091\",\n    \"1092\",\n    \"1094\",\n    \"1096\",\n    \"1097\",\n    \"1099\",\n    \"1101\",\n    \"1104\",\n    \"1105\",\n    \"1106\",\n    \"1107\",\n    \"1108\",\n    \"1109\",\n    \"1111\",\n    \"1112\",\n    \"1115\",\n    \"1116\",\n    \"1117\",\n    \"1118\",\n    \"1119\",\n    \"1120\",\n    \"1121\",\n    \"1122\",\n    \"1125\",\n    \"1126\",\n    \"1127\",\n    \"1129\",\n    \"1130\",\n    \"1132\",\n    \"1133\",\n    \"1138\",\n    \"1140\",\n    \"1141\",\n    \"1142\",\n    \"1143\",\n    \"1144\",\n    \"1146\",\n    \"1147\",\n    \"1148\",\n    \"1150\",\n    \"1151\",\n    \"1154\",\n    \"1155\",\n    \"1156\",\n    \"1157\",\n    \"1158\",\n    \"1160\",\n    \"1161\",\n    \"1163\",\n    \"1164\",\n    \"1166\",\n    \"1167\",\n    \"1168\",\n    \"1169\",\n    \"1171\",\n    \"1172\",\n    \"1173\",\n    \"1175\",\n    \"1176\",\n    \"1178\",\n    \"1180\",\n    \"1183\",\n    \"1184\",\n    \"1185\",\n    \"1186\",\n    \"1187\",\n    \"1188\",\n    \"1190\",\n    \"1192\",\n    \"1193\",\n    \"1194\",\n    \"1197\",\n    \"1199\",\n    \"1200\",\n    \"1202\",\n    \"1204\",\n    \"1205\",\n    \"1207\",\n    \"1209\",\n    \"1210\",\n    \"1214\",\n    \"1217\",\n    \"1218\",\n    \"1220\",\n    \"1225\",\n    \"1227\",\n    \"1229\",\n    \"1236\",\n    \"1238\",\n    \"1239\",\n    \"1240\",\n    \"1243\",\n    \"1245\",\n    \"1248\",\n    \"1249\",\n    \"1258\",\n    \"1260\",\n    \"1261\",\n    \"1262\",\n    \"1263\",\n    \"1267\",\n    \"1270\",\n    \"1272\",\n    \"1273\",\n    \"1275\",\n    \"1276\",\n    \"1278\",\n    \"1279\",\n    \"1285\",\n    \"1287\",\n    \"1288\",\n    \"1291\",\n    \"1292\",\n    \"1293\",\n    \"1294\",\n    \"1296\",\n    \"1297\",\n    \"1298\",\n    \"1303\",\n    \"1305\",\n    \"1306\",\n    \"1311\",\n    \"1312\",\n    \"1313\",\n    \"1316\",\n    \"1318\",\n    \"1319\",\n    \"1322\",\n    \"1323\",\n    \"1324\",\n    \"1328\",\n    \"1329\",\n    \"1331\",\n    \"1333\",\n    \"1334\",\n    \"1335\",\n    \"1336\",\n    \"1337\",\n    \"1341\",\n    \"1343\",\n    \"1344\",\n    \"1345\",\n    \"1346\",\n    \"1347\",\n    \"1348\",\n    \"1349\",\n    \"1350\",\n    \"1351\",\n    \"1352\",\n    \"1354\",\n    \"1358\",\n    \"1362\",\n    \"1363\",\n    \"1366\",\n    \"1367\",\n    \"1368\",\n    \"1369\",\n    \"1371\",\n    \"1372\",\n    \"1374\",\n    \"1375\",\n    \"1376\",\n    \"1379\",\n    \"1380\",\n    \"1383\",\n    \"1384\",\n    \"1385\",\n    \"1388\",\n    \"1390\",\n    \"1391\",\n    \"1393\",\n    \"1398\",\n    \"1399\",\n    \"1401\",\n    \"1402\",\n    \"1403\",\n    \"1406\",\n    \"1407\",\n    \"1409\",\n    \"1410\",\n    \"1413\",\n    \"1415\",\n    \"1416\",\n    \"1419\",\n    \"1420\",\n    \"1423\",\n    \"1424\",\n    \"1425\",\n    \"1426\",\n    \"1427\",\n    \"1428\",\n    \"1429\",\n    \"1430\",\n    \"1432\",\n    \"1434\",\n    \"1435\",\n    \"1436\",\n    \"1437\",\n    \"1438\",\n    \"1439\",\n    \"1440\",\n    \"1442\",\n    \"1443\",\n    \"1444\",\n    \"1446\",\n    \"1447\",\n    \"1448\",\n    \"1450\",\n    \"1451\",\n    \"1452\",\n    \"1453\",\n    \"1455\",\n    \"1456\",\n    \"1458\",\n    \"1459\",\n    \"1460\",\n    \"1461\",\n    \"1462\",\n    \"1464\",\n    \"1465\",\n    \"1466\",\n    \"1467\",\n    \"1470\",\n    \"1471\",\n    \"1472\",\n    \"1474\",\n    \"1475\",\n    \"1476\",\n    \"1478\",\n    \"1479\",\n    \"1480\",\n    \"1481\",\n    \"1482\",\n    \"1483\",\n    \"1484\",\n    \"1485\",\n    \"1486\",\n    \"1488\",\n    \"1492\",\n    \"1493\",\n    \"1495\",\n    \"1496\",\n    \"1499\",\n    \"1500\",\n    \"1502\",\n    \"1504\",\n    \"1506\",\n    \"1507\",\n    \"1508\",\n    \"1509\",\n    \"1510\",\n    \"1511\",\n    \"1513\",\n    \"1516\",\n    \"1517\",\n    \"1519\",\n    \"1521\",\n    \"1524\",\n    \"1527\",\n    \"1528\",\n    \"1530\",\n    \"1535\",\n    \"1536\",\n    \"1537\",\n    \"1538\",\n    \"1539\",\n    \"1541\",\n    \"1542\",\n    \"1545\",\n    \"1546\",\n    \"1547\",\n    \"1548\",\n    \"1549\",\n    \"1552\",\n    \"1553\",\n    \"1554\",\n    \"1555\",\n    \"1556\",\n    \"1557\",\n    \"1559\",\n    \"1560\",\n    \"1561\",\n    \"1563\",\n    \"1564\",\n    \"1565\",\n    \"1566\",\n    \"1567\",\n    \"1568\",\n    \"1570\",\n    \"1573\",\n    \"1576\",\n    \"1577\",\n    \"1578\",\n    \"1579\",\n    \"1581\",\n    \"1583\",\n    \"1588\",\n    \"1589\",\n    \"1591\",\n    \"1593\",\n    \"1594\",\n    \"1595\",\n    \"1596\",\n    \"1597\",\n    \"1600\",\n    \"1601\",\n    \"1603\",\n    \"1604\",\n    \"1607\",\n    \"1609\",\n    \"1610\",\n    \"1611\",\n    \"1613\",\n    \"1614\",\n    \"1617\",\n    \"1619\",\n    \"1620\",\n    \"1622\",\n    \"1624\",\n    \"1625\",\n    \"1627\",\n    \"1629\",\n    \"1630\",\n    \"1631\",\n    \"1634\",\n    \"1635\",\n    \"1636\",\n    \"1641\",\n    \"1642\",\n    \"1643\",\n    \"1645\",\n    \"1646\",\n    \"1647\",\n    \"1648\",\n    \"1649\",\n    \"1651\",\n    \"1653\",\n    \"1655\",\n    \"1656\",\n    \"1657\",\n    \"1658\",\n    \"1659\",\n    \"1660\",\n    \"1661\",\n    \"1663\",\n    \"1666\",\n    \"1668\",\n    \"1671\",\n    \"1673\",\n    \"1680\",\n    \"1683\",\n    \"1685\",\n    \"1686\",\n    \"1687\",\n    \"1690\",\n    \"1694\",\n    \"1695\",\n    \"1697\",\n    \"1698\",\n    \"1699\",\n    \"1700\",\n    \"1704\",\n    \"1706\",\n    \"1707\",\n    \"1709\",\n    \"1711\",\n    \"1712\",\n    \"1715\",\n    \"1718\",\n    \"1720\",\n    \"1722\",\n    \"1724\",\n    \"1725\",\n    \"1727\",\n    \"1730\",\n    \"1731\",\n    \"1732\",\n    \"1733\",\n    \"1734\",\n    \"1736\",\n    \"1737\",\n    \"1739\",\n    \"1740\",\n    \"1741\",\n    \"1742\",\n    \"1743\",\n    \"1744\",\n    \"1745\",\n    \"1746\",\n    \"1747\",\n    \"1748\",\n    \"1749\",\n    \"1753\",\n    \"1754\",\n    \"1755\",\n    \"1756\",\n    \"1758\",\n    \"1761\",\n    \"1763\",\n    \"1766\",\n    \"1768\",\n    \"1771\",\n    \"1775\",\n    \"1776\",\n    \"1778\",\n    \"1780\",\n    \"1782\",\n    \"1785\",\n    \"1786\",\n    \"1787\",\n    \"1788\",\n    \"1790\",\n    \"1791\",\n    \"1793\",\n    \"1795\",\n    \"1796\",\n    \"1797\",\n    \"1798\",\n    \"1799\",\n    \"1800\",\n    \"1802\",\n    \"1804\",\n    \"1806\",\n    \"1808\",\n    \"1809\",\n    \"1810\",\n    \"1811\",\n    \"1813\",\n    \"1814\",\n    \"1817\",\n    \"1818\",\n    \"1819\",\n    \"1820\",\n    \"1821\",\n    \"1823\",\n    \"1824\",\n    \"1825\",\n    \"1826\",\n    \"1828\",\n    \"1830\",\n    \"1831\",\n    \"1832\",\n    \"1833\",\n    \"1834\",\n    \"1835\",\n    \"1836\",\n    \"1837\",\n    \"1839\",\n    \"1840\",\n    \"1841\",\n    \"1842\",\n    \"1843\",\n    \"1845\",\n    \"1846\",\n    \"1847\",\n    \"1849\",\n    \"1851\",\n    \"1852\",\n    \"1853\",\n    \"1854\",\n    \"1860\",\n    \"1861\",\n    \"1862\",\n    \"1863\",\n    \"1864\",\n    \"1865\",\n    \"1867\",\n    \"1868\",\n    \"1869\",\n    \"1871\",\n    \"1873\",\n    \"1877\",\n    \"1882\",\n    \"1884\",\n    \"1885\",\n    \"1886\",\n    \"1887\",\n    \"1890\",\n    \"1892\",\n    \"1893\",\n    \"1895\",\n    \"1896\",\n    \"1897\",\n    \"1898\",\n    \"1899\",\n    \"1901\",\n    \"1902\",\n    \"1903\",\n    \"1904\",\n    \"1905\",\n    \"1909\",\n    \"1910\",\n    \"1912\",\n    \"1913\",\n    \"1915\",\n    \"1917\",\n    \"1918\",\n    \"1919\",\n    \"1920\",\n    \"1922\",\n    \"1924\",\n    \"1927\",\n    \"1928\",\n    \"1929\",\n    \"1930\",\n    \"1931\",\n    \"1932\",\n    \"1933\",\n    \"1937\",\n    \"1942\",\n    \"1943\",\n    \"1945\",\n    \"1946\",\n    \"1947\",\n    \"1953\",\n    \"1958\",\n    \"1959\",\n    \"1960\",\n    \"1961\",\n    \"1962\",\n    \"1963\",\n    \"1964\",\n    \"1965\",\n    \"1966\",\n    \"1967\",\n    \"1970\",\n    \"1971\",\n    \"1972\",\n    \"1978\",\n    \"1980\",\n    \"1981\",\n    \"1982\",\n    \"1987\",\n    \"1988\",\n    \"1989\",\n    \"1992\",\n    \"1993\",\n    \"1994\",\n    \"1995\",\n    \"1996\",\n    \"1998\",\n    \"2000\",\n    \"2001\",\n    \"2002\",\n    \"2003\",\n    \"2004\",\n    \"2008\",\n    \"2010\",\n    \"2011\",\n    \"2012\",\n    \"2013\",\n    \"2014\",\n    \"2016\",\n    \"2017\",\n    \"2020\",\n    \"2021\",\n    \"2022\",\n    \"2023\",\n    \"2024\",\n    \"2025\",\n    \"2026\",\n    \"2027\",\n    \"2029\",\n    \"2030\",\n    \"2032\",\n    \"2033\",\n    \"2034\",\n    \"2035\",\n    \"2039\",\n    \"2040\",\n    \"2042\",\n    \"2043\",\n    \"2044\",\n    \"2046\",\n    \"2047\",\n    \"2048\",\n    \"2049\",\n    \"2050\",\n    \"2052\",\n    \"2053\",\n    \"2054\",\n    \"2057\",\n    \"2058\",\n    \"2062\",\n    \"2063\",\n    \"2065\",\n    \"2066\",\n    \"2067\",\n    \"2068\",\n    \"2069\",\n    \"2072\",\n    \"2075\",\n    \"2076\",\n    \"2077\",\n    \"2079\",\n    \"2080\",\n    \"2084\",\n    \"2085\",\n    \"2086\",\n    \"2087\",\n    \"2089\",\n    \"2090\",\n    \"2091\",\n    \"2092\",\n    \"2093\",\n    \"2094\",\n    \"2097\",\n    \"2099\",\n    \"2100\",\n    \"2101\",\n    \"2103\",\n    \"2104\",\n    \"2105\",\n    \"2106\",\n    \"2111\",\n    \"2112\",\n    \"2113\",\n    \"2114\",\n    \"2116\",\n    \"2117\",\n    \"2119\",\n    \"2120\",\n    \"2121\",\n    \"2123\",\n    \"2124\",\n    \"2127\",\n    \"2128\",\n    \"2130\",\n    \"2132\",\n    \"2133\",\n    \"2135\",\n    \"2139\",\n    \"2140\",\n    \"2142\",\n    \"2143\",\n    \"2145\",\n    \"2146\",\n    \"2150\",\n    \"2151\",\n    \"2153\",\n    \"2154\",\n    \"2155\",\n    \"2156\",\n    \"2157\",\n    \"2159\",\n    \"2160\",\n    \"2161\",\n    \"2167\",\n    \"2168\",\n    \"2170\",\n    \"2171\",\n    \"2172\",\n    \"2177\",\n    \"2178\",\n    \"2179\",\n    \"2180\",\n    \"2181\",\n    \"2182\",\n    \"2190\",\n    \"2192\",\n    \"2195\",\n    \"2196\",\n    \"2197\",\n    \"2198\",\n    \"2201\",\n    \"2202\",\n    \"2204\",\n    \"2206\",\n    \"2207\",\n    \"2208\",\n    \"2211\",\n    \"2212\",\n    \"2213\",\n    \"2214\",\n    \"2215\",\n    \"2216\",\n    \"2217\",\n    \"2218\",\n    \"2219\",\n    \"2220\",\n    \"2225\",\n    \"2227\",\n    \"2228\",\n    \"2230\",\n    \"2231\",\n    \"2233\",\n    \"2234\",\n    \"2235\",\n    \"2236\",\n    \"2237\",\n    \"2240\",\n    \"2242\",\n    \"2243\",\n    \"2246\",\n    \"2247\",\n    \"2248\",\n    \"2250\",\n    \"2252\",\n    \"2253\",\n    \"2254\",\n    \"2257\",\n    \"2258\",\n    \"2261\",\n    \"2263\",\n    \"2264\",\n    \"2265\",\n    \"2266\",\n    \"2267\",\n    \"2268\",\n    \"2271\",\n    \"2273\",\n    \"2277\",\n    \"2278\",\n    \"2279\",\n    \"2280\",\n    \"2281\",\n    \"2283\",\n    \"2284\",\n    \"2285\",\n    \"2287\",\n    \"2288\",\n    \"2291\",\n    \"2293\",\n    \"2294\",\n    \"2296\",\n    \"2298\",\n    \"2299\",\n    \"2301\",\n    \"2302\",\n    \"2303\",\n    \"2304\",\n    \"2305\",\n    \"2306\",\n    \"2310\",\n    \"2313\",\n    \"2314\",\n    \"2316\",\n    \"2318\",\n    \"2319\",\n    \"2322\",\n    \"2323\",\n    \"2324\",\n    \"2329\",\n    \"2330\",\n    \"2331\",\n    \"2333\",\n    \"2335\",\n    \"2336\",\n    \"2337\",\n    \"2339\",\n    \"2341\",\n    \"2342\",\n    \"2344\",\n    \"2345\",\n    \"2346\",\n    \"2350\",\n    \"2351\",\n    \"2353\",\n    \"2354\",\n    \"2356\",\n    \"2357\",\n    \"2358\",\n    \"2361\",\n    \"2363\",\n    \"2365\",\n    \"2367\",\n    \"2371\",\n    \"2373\",\n    \"2374\",\n    \"2375\",\n    \"2378\",\n    \"2379\",\n    \"2385\",\n    \"2386\",\n    \"2387\",\n    \"2389\",\n    \"2390\",\n    \"2394\",\n    \"2396\",\n    \"2398\",\n    \"2403\",\n    \"2404\",\n    \"2405\",\n    \"2408\",\n    \"2409\",\n    \"2411\",\n    \"2412\",\n    \"2414\",\n    \"2416\",\n    \"2417\",\n    \"2419\",\n    \"2420\",\n    \"2421\",\n    \"2422\",\n    \"2424\",\n    \"2425\",\n    \"2426\",\n    \"2428\",\n    \"2431\",\n    \"2434\",\n    \"2435\",\n    \"2438\",\n    \"2439\",\n    \"2440\",\n    \"2441\",\n    \"2442\",\n    \"2444\",\n    \"2446\",\n    \"2448\",\n    \"2449\",\n    \"2450\",\n    \"2451\",\n    \"2453\",\n    \"2454\",\n    \"2455\",\n    \"2456\",\n    \"2457\",\n    \"2462\",\n    \"2463\",\n    \"2464\",\n    \"2466\",\n    \"2467\",\n    \"2468\",\n    \"2469\",\n    \"2470\",\n    \"2471\",\n    \"2472\",\n    \"2474\",\n    \"2476\",\n    \"2477\",\n    \"2478\",\n    \"2482\",\n    \"2483\",\n    \"2484\",\n    \"2485\",\n    \"2488\",\n    \"2490\",\n    \"2492\",\n    \"2495\",\n    \"2496\",\n    \"2497\",\n    \"2498\",\n    \"2503\",\n    \"2504\",\n    \"2505\",\n    \"2506\",\n    \"2507\",\n    \"2509\",\n    \"2511\",\n    \"2512\",\n    \"2514\",\n    \"2515\",\n    \"2516\",\n    \"2518\",\n    \"2519\",\n    \"2520\",\n    \"2521\",\n    \"2525\",\n    \"2526\",\n    \"2527\",\n    \"2528\",\n    \"2529\",\n    \"2530\",\n    \"2532\",\n    \"2533\",\n    \"2535\",\n    \"2536\",\n    \"2541\",\n    \"2545\",\n    \"2546\",\n    \"2549\",\n    \"2554\",\n    \"2555\",\n    \"2556\",\n    \"2557\",\n    \"2558\",\n    \"2559\",\n    \"2561\",\n    \"2562\",\n    \"2563\",\n    \"2564\",\n    \"2567\",\n    \"2568\",\n    \"2570\",\n    \"2571\",\n    \"2572\",\n    \"2573\",\n    \"2575\",\n    \"2576\",\n    \"2577\",\n    \"2578\",\n    \"2580\",\n    \"2581\",\n    \"2582\",\n    \"2583\",\n    \"2586\",\n    \"2590\",\n    \"2591\",\n    \"2593\",\n    \"2598\",\n    \"2599\",\n    \"2600\",\n    \"2601\",\n    \"2603\",\n    \"2605\",\n    \"2607\",\n    \"2608\",\n    \"2609\",\n    \"2610\",\n    \"2612\",\n    \"2613\",\n    \"2614\",\n    \"2615\",\n    \"2616\",\n    \"2617\",\n    \"2618\",\n    \"2619\",\n    \"2623\",\n    \"2625\",\n    \"2627\",\n    \"2628\",\n    \"2629\",\n    \"2630\",\n    \"2631\",\n    \"2633\",\n    \"2636\",\n    \"2637\",\n    \"2639\",\n    \"2640\",\n    \"2643\",\n    \"2645\",\n    \"2647\",\n    \"2648\",\n    \"2649\",\n    \"2650\",\n    \"2651\",\n    \"2654\",\n    \"2656\",\n    \"2658\",\n    \"2662\",\n    \"2663\",\n    \"2664\",\n    \"2667\",\n    \"2671\",\n    \"2674\",\n    \"2676\",\n    \"2679\",\n    \"2681\",\n    \"2682\",\n    \"2686\",\n    \"2687\",\n    \"2689\",\n    \"2691\",\n    \"2692\",\n    \"2693\",\n    \"2695\",\n    \"2698\",\n    \"2701\",\n    \"2702\",\n    \"2703\",\n    \"2705\",\n    \"2706\",\n    \"2707\",\n    \"2709\",\n    \"2710\",\n    \"2711\",\n    \"2713\",\n    \"2714\",\n    \"2717\",\n    \"2718\",\n    \"2719\",\n    \"2720\",\n    \"2721\",\n    \"2723\",\n    \"2726\",\n    \"2728\",\n    \"2729\",\n    \"2730\",\n    \"2732\",\n    \"2735\",\n    \"2736\",\n    \"2738\",\n    \"2739\",\n    \"2743\",\n    \"2746\",\n    \"2747\",\n    \"2748\",\n    \"2750\",\n    \"2751\",\n    \"2752\",\n    \"2753\",\n    \"2755\",\n    \"2757\",\n    \"2762\",\n    \"2765\",\n    \"2768\",\n    \"2770\",\n    \"2772\",\n    \"2773\",\n    \"2775\",\n    \"2776\",\n    \"2777\",\n    \"2778\",\n    \"2780\",\n    \"2781\",\n    \"2782\",\n    \"2784\",\n    \"2786\",\n    \"2787\",\n    \"2794\",\n    \"2797\",\n    \"2799\",\n    \"2802\",\n    \"2803\",\n    \"2804\",\n    \"2805\",\n    \"2806\",\n    \"2807\",\n    \"2808\",\n    \"2809\",\n    \"2810\",\n    \"2811\",\n    \"2812\",\n    \"2813\",\n    \"2815\",\n    \"2816\",\n    \"2818\",\n    \"2819\",\n    \"2820\",\n    \"2825\",\n    \"2826\",\n    \"2829\",\n    \"2831\",\n    \"2832\",\n    \"2834\",\n    \"2835\",\n    \"2836\",\n    \"2837\",\n    \"2840\",\n    \"2841\",\n    \"2842\",\n    \"2843\",\n    \"2844\",\n    \"2846\",\n    \"2847\",\n    \"2848\",\n    \"2849\",\n    \"2850\",\n    \"2851\",\n    \"2852\",\n    \"2853\",\n    \"2854\",\n    \"2855\",\n    \"2856\",\n    \"2858\",\n    \"2859\",\n    \"2860\",\n    \"2862\",\n    \"2863\",\n    \"2865\",\n    \"2867\",\n    \"2869\",\n    \"2873\",\n    \"2880\",\n    \"2881\",\n    \"2882\",\n    \"2884\",\n    \"2885\",\n    \"2887\",\n    \"2890\",\n    \"2891\",\n    \"2892\",\n    \"2893\",\n    \"2894\",\n    \"2896\",\n    \"2898\",\n    \"2899\",\n    \"2901\",\n    \"2902\",\n    \"2903\",\n    \"2904\",\n    \"2906\",\n    \"2909\",\n    \"2911\",\n    \"2912\",\n    \"2913\",\n    \"2914\",\n    \"2915\",\n    \"2917\",\n    \"2919\",\n    \"2920\",\n    \"2922\",\n    \"2924\",\n    \"2925\",\n    \"2926\",\n    \"2927\",\n    \"2928\",\n    \"2930\",\n    \"2931\",\n    \"2932\",\n    \"2935\",\n    \"2937\",\n    \"2938\",\n    \"2939\",\n    \"2940\",\n    \"2942\",\n    \"2943\",\n    \"2944\",\n    \"2946\",\n    \"2947\",\n    \"2948\",\n    \"2949\",\n    \"2950\",\n    \"2951\",\n    \"2953\",\n    \"2954\",\n    \"2955\",\n    \"2957\",\n    \"2958\",\n    \"2959\",\n    \"2962\",\n    \"2963\",\n    \"2964\",\n    \"2965\",\n    \"2966\",\n    \"2967\",\n    \"2968\",\n    \"2970\",\n    \"2972\",\n    \"2973\",\n    \"2974\",\n    \"2977\",\n    \"2979\",\n    \"2980\",\n    \"2981\",\n    \"2982\",\n    \"2984\",\n    \"2986\",\n    \"2987\",\n    \"2988\",\n    \"2989\",\n    \"2990\",\n    \"2992\",\n    \"2995\",\n    \"2996\",\n    \"2997\",\n    \"2998\",\n    \"2999\",\n    \"3000\",\n    \"3003\",\n    \"3006\",\n    \"3007\",\n    \"3008\",\n    \"3009\",\n    \"3012\",\n    \"3015\",\n    \"3021\",\n    \"3024\",\n    \"3025\",\n    \"3026\",\n    \"3027\",\n    \"3028\",\n    \"3031\",\n    \"3032\",\n    \"3034\",\n    \"3035\",\n    \"3038\",\n    \"3039\",\n    \"3040\",\n    \"3042\",\n    \"3043\",\n    \"3045\",\n    \"3046\",\n    \"3047\",\n    \"3048\",\n    \"3049\",\n    \"3050\",\n    \"3052\",\n    \"3054\",\n    \"3055\",\n    \"3057\",\n    \"3058\",\n    \"3061\",\n    \"3062\",\n    \"3063\",\n    \"3065\",\n    \"3066\",\n    \"3068\",\n    \"3071\",\n    \"3073\",\n    \"3074\",\n    \"3075\",\n    \"3076\",\n    \"3078\",\n    \"3079\",\n    \"3080\",\n    \"3081\",\n    \"3083\",\n    \"3084\",\n    \"3085\",\n    \"3086\",\n    \"3090\",\n    \"3091\",\n    \"3092\",\n    \"3094\",\n    \"3095\",\n    \"3096\",\n    \"3097\",\n    \"3099\",\n    \"3100\",\n    \"3101\",\n    \"3102\",\n    \"3104\",\n    \"3106\",\n    \"3111\",\n    \"3116\",\n    \"3117\",\n    \"3119\",\n    \"3122\",\n    \"3126\",\n    \"3127\",\n    \"3128\",\n    \"3129\",\n    \"3130\",\n    \"3131\",\n    \"3133\",\n    \"3134\",\n    \"3135\",\n    \"3136\",\n    \"3139\",\n    \"3140\",\n    \"3142\",\n    \"3143\",\n    \"3145\",\n    \"3146\",\n    \"3148\",\n    \"3149\",\n    \"3150\",\n    \"3151\",\n    \"3152\",\n    \"3154\",\n    \"3155\",\n    \"3158\",\n    \"3159\",\n    \"3165\",\n    \"3166\",\n    \"3167\",\n    \"3169\",\n    \"3170\",\n    \"3171\",\n    \"3173\",\n    \"3175\",\n    \"3178\",\n    \"3179\",\n    \"3180\",\n    \"3181\",\n    \"3182\",\n    \"3184\",\n    \"3188\",\n    \"3189\",\n    \"3190\",\n    \"3191\",\n    \"3192\",\n    \"3194\",\n    \"3201\",\n    \"3202\",\n    \"3206\",\n    \"3208\",\n    \"3211\",\n    \"3214\",\n    \"3216\",\n    \"3218\",\n    \"3221\",\n    \"3225\",\n    \"3226\",\n    \"3227\",\n    \"3230\",\n    \"3234\",\n    \"3235\",\n    \"3236\",\n    \"3237\",\n    \"3238\",\n    \"3239\",\n    \"3241\",\n    \"3242\",\n    \"3244\",\n    \"3245\",\n    \"3248\",\n    \"3249\",\n    \"3250\",\n    \"3252\",\n    \"3253\",\n    \"3254\",\n    \"3256\",\n    \"3257\",\n    \"3258\",\n    \"3260\",\n    \"3261\",\n    \"3262\",\n    \"3264\",\n    \"3266\",\n    \"3267\",\n    \"3269\",\n    \"3271\",\n    \"3272\",\n    \"3273\",\n    \"3274\",\n    \"3275\",\n    \"3276\",\n    \"3277\",\n    \"3278\",\n    \"3280\",\n    \"3281\",\n    \"3285\",\n    \"3286\",\n    \"3288\",\n    \"3289\",\n    \"3291\",\n    \"3295\",\n    \"3296\",\n    \"3297\",\n    \"3298\",\n    \"3299\",\n    \"3300\",\n    \"3301\",\n    \"3302\",\n    \"3303\",\n    \"3304\",\n    \"3306\",\n    \"3307\",\n    \"3308\",\n    \"3309\",\n    \"3310\",\n    \"3312\",\n    \"3314\",\n    \"3315\",\n    \"3319\",\n    \"3320\",\n    \"3321\",\n    \"3322\",\n    \"3324\",\n    \"3325\",\n    \"3326\",\n    \"3328\",\n    \"3329\",\n    \"3331\",\n    \"3332\",\n    \"3333\",\n    \"3334\",\n    \"3335\",\n    \"3338\",\n    \"3340\",\n    \"3341\",\n    \"3342\",\n    \"3343\",\n    \"3344\",\n    \"3346\",\n    \"3349\",\n    \"3350\",\n    \"3352\",\n    \"3353\",\n    \"3357\",\n    \"3358\",\n    \"3360\",\n    \"3362\",\n    \"3363\",\n    \"3365\",\n    \"3369\",\n    \"3370\",\n    \"3373\",\n    \"3374\",\n    \"3375\",\n    \"3376\",\n    \"3378\",\n    \"3381\",\n    \"3382\",\n    \"3384\",\n    \"3386\",\n    \"3389\",\n    \"3391\",\n    \"3392\",\n    \"3393\",\n    \"3394\",\n    \"3396\",\n    \"3397\",\n    \"3399\",\n    \"3400\",\n    \"3401\",\n    \"3402\",\n    \"3403\",\n    \"3404\",\n    \"3405\",\n    \"3406\",\n    \"3407\",\n    \"3408\",\n    \"3409\",\n    \"3411\",\n    \"3412\",\n    \"3414\",\n    \"3415\",\n    \"3416\",\n    \"3419\",\n    \"3421\",\n    \"3422\",\n    \"3423\",\n    \"3426\",\n    \"3427\",\n    \"3437\",\n    \"3440\",\n    \"3441\",\n    \"3443\",\n    \"3445\",\n    \"3447\",\n    \"3448\",\n    \"3452\",\n    \"3454\",\n    \"3456\",\n    \"3457\",\n    \"3458\",\n    \"3459\",\n    \"3460\",\n    \"3461\",\n    \"3463\",\n    \"3464\",\n    \"3465\",\n    \"3466\",\n    \"3467\",\n    \"3469\",\n    \"3470\",\n    \"3471\",\n    \"3473\",\n    \"3474\",\n    \"3477\",\n    \"3478\",\n    \"3480\",\n    \"3482\",\n    \"3488\",\n    \"3490\",\n    \"3491\",\n    \"3493\",\n    \"3496\",\n    \"3497\",\n    \"3500\",\n    \"3501\",\n    \"3503\",\n    \"3506\",\n    \"3508\",\n    \"3509\",\n    \"3510\",\n    \"3511\",\n    \"3512\",\n    \"3513\",\n    \"3516\",\n    \"3519\",\n    \"3520\",\n    \"3521\",\n    \"3524\",\n    \"3525\",\n    \"3526\",\n    \"3528\",\n    \"3529\",\n    \"3531\",\n    \"3535\",\n    \"3536\",\n    \"3537\",\n    \"3540\",\n    \"3545\",\n    \"3547\",\n    \"3548\",\n    \"3550\",\n    \"3551\",\n    \"3552\",\n    \"3554\",\n    \"3556\",\n    \"3557\",\n    \"3559\",\n    \"3562\",\n    \"3563\",\n    \"3565\",\n    \"3568\",\n    \"3571\",\n    \"3573\",\n    \"3574\",\n    \"3575\",\n    \"3577\",\n    \"3578\",\n    \"3579\",\n    \"3580\",\n    \"3585\",\n    \"3586\",\n    \"3587\",\n    \"3589\",\n    \"3590\",\n    \"3592\",\n    \"3595\",\n    \"3596\",\n    \"3597\",\n    \"3598\",\n    \"3599\",\n    \"3600\",\n    \"3601\",\n    \"3602\",\n    \"3603\",\n    \"3605\",\n    \"3606\",\n    \"3607\",\n    \"3608\",\n    \"3612\",\n    \"3613\",\n    \"3614\",\n    \"3615\",\n    \"3617\",\n    \"3618\",\n    \"3620\",\n    \"3623\",\n    \"3624\",\n    \"3626\",\n    \"3627\",\n    \"3630\",\n    \"3632\",\n    \"3635\",\n    \"3636\",\n    \"3638\",\n    \"3639\",\n    \"3640\",\n    \"3642\",\n    \"3644\",\n    \"3645\",\n    \"3646\",\n    \"3647\",\n    \"3648\",\n    \"3649\",\n    \"3653\",\n    \"3655\",\n    \"3657\",\n    \"3659\",\n    \"3661\",\n    \"3663\",\n    \"3664\",\n    \"3665\",\n    \"3668\",\n    \"3670\",\n    \"3671\",\n    \"3672\",\n    \"3673\",\n    \"3674\",\n    \"3675\",\n    \"3676\",\n    \"3677\",\n    \"3678\",\n    \"3680\",\n    \"3684\",\n    \"3685\",\n    \"3686\",\n    \"3687\",\n    \"3689\",\n    \"3690\",\n    \"3691\",\n    \"3694\",\n    \"3696\",\n    \"3698\",\n    \"3699\",\n    \"3700\",\n    \"3702\",\n    \"3704\",\n    \"3705\",\n    \"3706\",\n    \"3707\",\n    \"3708\",\n    \"3713\",\n    \"3715\",\n    \"3717\",\n    \"3718\",\n    \"3719\",\n    \"3720\",\n    \"3722\",\n    \"3723\",\n    \"3724\",\n    \"3725\",\n    \"3728\",\n    \"3730\",\n    \"3731\",\n    \"3732\",\n    \"3734\",\n    \"3735\",\n    \"3737\",\n    \"3739\",\n    \"3740\",\n    \"3741\",\n    \"3742\",\n    \"3743\",\n    \"3744\",\n    \"3746\",\n    \"3747\",\n    \"3748\",\n    \"3749\",\n    \"3753\",\n    \"3754\",\n    \"3755\",\n    \"3756\",\n    \"3759\",\n    \"3760\",\n    \"3763\",\n    \"3764\",\n    \"3765\",\n    \"3766\",\n    \"3767\",\n    \"3768\",\n    \"3769\",\n    \"3770\",\n    \"3771\",\n    \"3772\",\n    \"3776\",\n    \"3777\",\n    \"3778\",\n    \"3779\",\n    \"3780\",\n    \"3781\",\n    \"3784\",\n    \"3785\",\n    \"3786\",\n    \"3787\",\n    \"3790\",\n    \"3791\",\n    \"3792\",\n    \"3793\",\n    \"3795\",\n    \"3798\",\n    \"3799\",\n    \"3800\",\n    \"3801\",\n    \"3804\",\n    \"3806\",\n    \"3807\",\n    \"3808\",\n    \"3809\",\n    \"3811\",\n    \"3814\",\n    \"3817\",\n    \"3820\",\n    \"3821\",\n    \"3824\",\n    \"3825\",\n    \"3826\",\n    \"3827\",\n    \"3829\",\n    \"3830\",\n    \"3831\",\n    \"3832\",\n    \"3833\",\n    \"3834\",\n    \"3835\",\n    \"3838\",\n    \"3839\",\n    \"3845\",\n    \"3847\",\n    \"3849\",\n    \"3850\",\n    \"3851\",\n    \"3853\",\n    \"3854\",\n    \"3855\",\n    \"3857\",\n    \"3858\",\n    \"3859\",\n    \"3862\",\n    \"3863\",\n    \"3865\",\n    \"3867\",\n    \"3868\",\n    \"3870\",\n    \"3871\",\n    \"3872\",\n    \"3874\",\n    \"3876\",\n    \"3879\",\n    \"3880\",\n    \"3881\",\n    \"3884\",\n    \"3886\",\n    \"3887\",\n    \"3889\",\n    \"3891\",\n    \"3892\",\n    \"3893\",\n    \"3894\",\n    \"3895\",\n    \"3896\",\n    \"3897\",\n    \"3898\",\n    \"3899\",\n    \"3900\",\n    \"3904\",\n    \"3905\",\n    \"3906\",\n    \"3907\",\n    \"3910\",\n    \"3912\",\n    \"3915\",\n    \"3916\",\n    \"3917\",\n    \"3918\",\n    \"3919\",\n    \"3923\",\n    \"3924\",\n    \"3926\",\n    \"3928\",\n    \"3929\",\n    \"3930\",\n    \"3931\",\n    \"3932\",\n    \"3933\",\n    \"3936\",\n    \"3937\",\n    \"3938\",\n    \"3939\",\n    \"3940\",\n    \"3941\",\n    \"3942\",\n    \"3943\",\n    \"3944\",\n    \"3946\",\n    \"3947\",\n    \"3948\",\n    \"3949\",\n    \"3952\",\n    \"3954\",\n    \"3955\",\n    \"3957\",\n    \"3958\",\n    \"3959\",\n    \"3960\",\n    \"3961\",\n    \"3966\",\n    \"3969\",\n    \"3971\",\n    \"3974\",\n    \"3976\",\n    \"3977\",\n    \"3978\",\n    \"3979\",\n    \"3980\",\n    \"3981\",\n    \"3984\",\n    \"3985\",\n    \"3986\",\n    \"3989\",\n    \"3990\",\n    \"3991\",\n    \"3994\",\n    \"3996\",\n    \"3997\",\n    \"3998\",\n    \"4000\",\n    \"4001\",\n    \"4002\",\n    \"4004\",\n    \"4005\",\n    \"4006\",\n    \"4007\",\n    \"4008\",\n    \"4010\",\n    \"4012\",\n    \"4013\",\n    \"4014\",\n    \"4017\",\n    \"4021\",\n    \"4022\",\n    \"4023\",\n    \"4026\",\n    \"4027\",\n    \"4031\",\n    \"4032\",\n    \"4033\",\n    \"4035\",\n    \"4037\",\n    \"4041\",\n    \"4042\",\n    \"4044\",\n    \"4046\",\n    \"4049\",\n    \"4052\",\n    \"4053\",\n    \"4054\",\n    \"4055\",\n    \"4056\",\n    \"4058\",\n    \"4059\",\n    \"4061\",\n    \"4062\",\n    \"4064\",\n    \"4068\",\n    \"4069\",\n    \"4070\",\n    \"4071\",\n    \"4074\",\n    \"4075\",\n    \"4076\",\n    \"4077\",\n    \"4078\",\n    \"4079\",\n    \"4080\",\n    \"4082\",\n    \"4083\",\n    \"4086\",\n    \"4089\",\n    \"4090\",\n    \"4091\",\n    \"4093\",\n    \"4097\",\n    \"4099\",\n    \"4102\",\n    \"4104\",\n    \"4108\",\n    \"4110\",\n    \"4111\",\n    \"4113\",\n    \"4114\",\n    \"4116\",\n    \"4117\",\n    \"4118\",\n    \"4121\",\n    \"4125\",\n    \"4128\",\n    \"4129\",\n    \"4131\",\n    \"4133\",\n    \"4135\",\n    \"4136\",\n    \"4138\",\n    \"4140\",\n    \"4142\",\n    \"4144\",\n    \"4146\",\n    \"4147\",\n    \"4148\",\n    \"4149\",\n    \"4151\",\n    \"4154\",\n    \"4157\",\n    \"4159\",\n    \"4160\",\n    \"4163\",\n    \"4166\",\n    \"4169\",\n    \"4170\",\n    \"4172\",\n    \"4173\",\n    \"4174\",\n    \"4175\",\n    \"4179\",\n    \"4180\",\n    \"4181\",\n    \"4182\",\n    \"4183\",\n    \"4185\",\n    \"4188\",\n    \"4189\",\n    \"4190\",\n    \"4194\",\n    \"4195\",\n    \"4196\",\n    \"4197\",\n    \"4204\",\n    \"4206\",\n    \"4207\",\n    \"4208\",\n    \"4213\",\n    \"4215\",\n    \"4218\",\n    \"4220\",\n    \"4221\",\n    \"4222\",\n    \"4223\",\n    \"4225\",\n    \"4227\",\n    \"4228\",\n    \"4229\",\n    \"4230\",\n    \"4232\",\n    \"4233\",\n    \"4234\",\n    \"4237\",\n    \"4238\",\n    \"4239\",\n    \"4242\",\n    \"4243\",\n    \"4245\",\n    \"4247\",\n    \"4249\",\n    \"4251\",\n    \"4253\",\n    \"4254\",\n    \"4255\",\n    \"4257\",\n    \"4259\",\n    \"4261\",\n    \"4262\",\n    \"4264\",\n    \"4265\",\n    \"4267\",\n    \"4269\",\n    \"4270\",\n    \"4272\",\n    \"4273\",\n    \"4275\",\n    \"4277\",\n    \"4278\",\n    \"4279\",\n    \"4280\",\n    \"4286\",\n    \"4289\",\n    \"4295\",\n    \"4296\",\n    \"4297\",\n    \"4298\",\n    \"4299\",\n    \"4300\",\n    \"4302\",\n    \"4303\",\n    \"4305\",\n    \"4307\",\n    \"4308\",\n    \"4309\",\n    \"4312\",\n    \"4314\",\n    \"4316\",\n    \"4318\",\n    \"4320\",\n    \"4321\",\n    \"4322\",\n    \"4323\",\n    \"4325\",\n    \"4326\",\n    \"4328\",\n    \"4329\",\n    \"4330\",\n    \"4331\",\n    \"4332\",\n    \"4334\",\n    \"4335\",\n    \"4336\",\n    \"4337\",\n    \"4338\",\n    \"4341\",\n    \"4342\",\n    \"4343\",\n    \"4345\",\n    \"4346\",\n    \"4348\",\n    \"4349\",\n    \"4350\",\n    \"4352\",\n    \"4354\",\n    \"4359\",\n    \"4362\",\n    \"4363\",\n    \"4364\",\n    \"4365\",\n    \"4367\",\n    \"4368\",\n    \"4370\",\n    \"4371\",\n    \"4372\",\n    \"4373\",\n    \"4374\",\n    \"4375\",\n    \"4377\",\n    \"4378\",\n    \"4379\",\n    \"4380\",\n    \"4381\",\n    \"4382\",\n    \"4384\",\n    \"4387\",\n    \"4388\",\n    \"4389\",\n    \"4390\",\n    \"4391\",\n    \"4392\",\n    \"4393\",\n    \"4395\",\n    \"4396\",\n    \"4397\",\n    \"4398\",\n    \"4399\",\n    \"4401\",\n    \"4402\",\n    \"4403\",\n    \"4404\",\n    \"4405\",\n    \"4407\",\n    \"4408\",\n    \"4409\",\n    \"4410\",\n    \"4411\",\n    \"4412\",\n    \"4413\",\n    \"4414\",\n    \"4415\",\n    \"4416\",\n    \"4417\",\n    \"4419\",\n    \"4422\",\n    \"4423\",\n    \"4424\",\n    \"4425\",\n    \"4426\",\n    \"4427\",\n    \"4429\",\n    \"4430\",\n    \"4431\",\n    \"4433\",\n    \"4434\",\n    \"4437\",\n    \"4438\",\n    \"4439\",\n    \"4440\",\n    \"4441\",\n    \"4445\",\n    \"4447\",\n    \"4448\",\n    \"4449\",\n    \"4451\",\n    \"4453\",\n    \"4455\",\n    \"4456\",\n    \"4461\",\n    \"4462\",\n    \"4463\",\n    \"4464\",\n    \"4466\",\n    \"4467\",\n    \"4468\",\n    \"4471\",\n    \"4473\",\n    \"4475\",\n    \"4476\",\n    \"4477\",\n    \"4478\",\n    \"4479\",\n    \"4481\",\n    \"4484\",\n    \"4486\",\n    \"4487\",\n    \"4488\",\n    \"4489\",\n    \"4490\",\n    \"4491\",\n    \"4492\",\n    \"4493\",\n    \"4494\",\n    \"4495\",\n    \"4496\",\n    \"4501\",\n    \"4503\",\n    \"4504\",\n    \"4506\",\n    \"4508\",\n    \"4510\",\n    \"4513\",\n    \"4515\",\n    \"4518\",\n    \"4521\",\n    \"4523\",\n    \"4525\",\n    \"4526\",\n    \"4530\",\n    \"4531\",\n    \"4533\",\n    \"4534\",\n    \"4535\",\n    \"4538\",\n    \"4542\",\n    \"4543\",\n    \"4544\",\n    \"4546\",\n    \"4551\",\n    \"4555\",\n    \"4556\",\n    \"4557\",\n    \"4560\",\n    \"4564\",\n    \"4566\",\n    \"4567\",\n    \"4569\",\n    \"4570\",\n    \"4571\",\n    \"4572\",\n    \"4573\",\n    \"4574\",\n    \"4576\",\n    \"4577\",\n    \"4579\",\n    \"4581\",\n    \"4582\",\n    \"4584\",\n    \"4586\",\n    \"4587\",\n    \"4588\",\n    \"4589\",\n    \"4590\",\n    \"4591\",\n    \"4593\",\n    \"4596\",\n    \"4597\",\n    \"4598\",\n    \"4600\",\n    \"4605\",\n    \"4606\",\n    \"4607\",\n    \"4608\",\n    \"4609\",\n    \"4611\",\n    \"4613\",\n    \"4614\",\n    \"4615\",\n    \"4616\",\n    \"4617\",\n    \"4618\",\n    \"4619\",\n    \"4620\",\n    \"4625\",\n    \"4626\",\n    \"4627\",\n    \"4628\",\n    \"4629\",\n    \"4630\",\n    \"4633\",\n    \"4634\",\n    \"4636\",\n    \"4637\",\n    \"4638\",\n    \"4640\",\n    \"4641\",\n    \"4642\",\n    \"4643\",\n    \"4646\",\n    \"4648\",\n    \"4649\",\n    \"4650\",\n    \"4651\",\n    \"4652\",\n    \"4653\",\n    \"4655\",\n    \"4656\",\n    \"4658\",\n    \"4659\",\n    \"4660\",\n    \"4661\",\n    \"4662\",\n    \"4663\",\n    \"4664\",\n    \"4665\",\n    \"4666\",\n    \"4667\",\n    \"4668\",\n    \"4669\",\n    \"4671\",\n    \"4673\",\n    \"4674\",\n    \"4675\",\n    \"4677\",\n    \"4679\",\n    \"4680\",\n    \"4681\",\n    \"4683\",\n    \"4685\",\n    \"4689\",\n    \"4694\",\n    \"4696\",\n    \"4697\",\n    \"4701\",\n    \"4704\",\n    \"4705\",\n    \"4706\",\n    \"4707\",\n    \"4710\",\n    \"4711\",\n    \"4712\",\n    \"4713\",\n    \"4714\",\n    \"4715\",\n    \"4716\",\n    \"4722\",\n    \"4723\",\n    \"4725\",\n    \"4726\",\n    \"4727\",\n    \"4729\",\n    \"4730\",\n    \"4731\",\n    \"4732\",\n    \"4733\",\n    \"4734\",\n    \"4736\",\n    \"4737\",\n    \"4739\",\n    \"4741\",\n    \"4742\",\n    \"4743\",\n    \"4744\",\n    \"4746\",\n    \"4747\",\n    \"4750\",\n    \"4751\",\n    \"4752\",\n    \"4756\",\n    \"4758\",\n    \"4759\",\n    \"4760\",\n    \"4761\",\n    \"4762\",\n    \"4763\",\n    \"4764\",\n    \"4765\",\n    \"4768\",\n    \"4770\",\n    \"4771\",\n    \"4772\",\n    \"4773\",\n    \"4775\",\n    \"4778\",\n    \"4779\",\n    \"4780\",\n    \"4783\",\n    \"4786\",\n    \"4787\",\n    \"4788\",\n    \"4789\",\n    \"4792\",\n    \"4795\",\n    \"4796\",\n    \"4797\",\n    \"4798\",\n    \"4800\",\n    \"4801\",\n    \"4802\",\n    \"4803\",\n    \"4804\",\n    \"4806\",\n    \"4808\",\n    \"4810\",\n    \"4812\",\n    \"4814\",\n    \"4815\",\n    \"4816\",\n    \"4818\",\n    \"4819\",\n    \"4821\",\n    \"4823\",\n    \"4825\",\n    \"4826\",\n    \"4827\",\n    \"4829\",\n    \"4830\",\n    \"4831\",\n    \"4835\",\n    \"4837\",\n    \"4838\",\n    \"4839\",\n    \"4840\",\n    \"4846\",\n    \"4847\",\n    \"4848\",\n    \"4849\",\n    \"4852\",\n    \"4853\",\n    \"4855\",\n    \"4856\",\n    \"4860\",\n    \"4861\",\n    \"4862\",\n    \"4863\",\n    \"4864\",\n    \"4866\",\n    \"4867\",\n    \"4870\",\n    \"4872\",\n    \"4873\",\n    \"4874\",\n    \"4876\",\n    \"4878\",\n    \"4879\",\n    \"4881\",\n    \"4882\",\n    \"4885\",\n    \"4888\",\n    \"4889\",\n    \"4890\",\n    \"4893\",\n    \"4894\",\n    \"4895\",\n    \"4896\",\n    \"4898\",\n    \"4900\",\n    \"4901\",\n    \"4902\",\n    \"4903\",\n    \"4904\",\n    \"4906\",\n    \"4907\",\n    \"4908\",\n    \"4909\",\n    \"4910\",\n    \"4911\",\n    \"4912\",\n    \"4915\",\n    \"4917\",\n    \"4921\",\n    \"4923\",\n    \"4925\",\n    \"4927\",\n    \"4928\",\n    \"4930\",\n    \"4931\",\n    \"4934\",\n    \"4936\",\n    \"4937\",\n    \"4938\",\n    \"4939\",\n    \"4941\",\n    \"4942\",\n    \"4944\",\n    \"4945\",\n    \"4946\",\n    \"4947\",\n    \"4948\",\n    \"4949\",\n    \"4952\",\n    \"4953\",\n    \"4954\",\n    \"4957\",\n    \"4958\",\n    \"4959\",\n    \"4960\",\n    \"4961\",\n    \"4962\",\n    \"4963\",\n    \"4964\",\n    \"4965\",\n    \"4967\",\n    \"4968\",\n    \"4970\",\n    \"4971\",\n    \"4973\",\n    \"4976\",\n    \"4978\",\n    \"4979\",\n    \"4981\",\n    \"4985\",\n    \"4986\",\n    \"4987\",\n    \"4988\",\n    \"4989\",\n    \"4990\",\n    \"4992\",\n    \"4993\",\n    \"4994\",\n    \"4995\",\n    \"4998\",\n    \"5003\",\n    \"5004\",\n    \"5006\",\n    \"5008\",\n    \"5010\",\n    \"5011\",\n    \"5012\",\n    \"5014\",\n    \"5015\",\n    \"5017\",\n    \"5019\",\n    \"5020\",\n    \"5021\",\n    \"5024\",\n    \"5026\",\n    \"5027\",\n    \"5028\",\n    \"5029\",\n    \"5030\",\n    \"5031\",\n    \"5034\",\n    \"5035\",\n    \"5036\",\n    \"5037\",\n    \"5038\",\n    \"5041\",\n    \"5042\",\n    \"5048\",\n    \"5051\",\n    \"5054\",\n    \"5055\",\n    \"5057\",\n    \"5058\",\n    \"5059\",\n    \"5060\",\n    \"5061\",\n    \"5062\",\n    \"5064\",\n    \"5066\",\n    \"5067\",\n    \"5070\",\n    \"5071\",\n    \"5077\",\n    \"5078\",\n    \"5081\",\n    \"5083\",\n    \"5084\",\n    \"5087\",\n    \"5091\",\n    \"5092\",\n    \"5093\",\n    \"5095\",\n    \"5096\",\n    \"5098\",\n    \"5099\",\n    \"5100\",\n    \"5102\",\n    \"5103\",\n    \"5104\",\n    \"5105\",\n    \"5109\",\n    \"5110\",\n    \"5111\",\n    \"5112\",\n    \"5113\",\n    \"5115\",\n    \"5116\",\n    \"5117\",\n    \"5118\",\n    \"5120\",\n    \"5121\",\n    \"5122\",\n    \"5123\",\n    \"5124\",\n    \"5125\",\n    \"5127\",\n    \"5128\",\n    \"5129\",\n    \"5131\",\n    \"5133\",\n    \"5134\",\n    \"5135\",\n    \"5137\",\n    \"5138\",\n    \"5139\",\n    \"5141\",\n    \"5142\",\n    \"5147\",\n    \"5148\",\n    \"5150\",\n    \"5153\",\n    \"5154\",\n    \"5156\",\n    \"5157\",\n    \"5158\",\n    \"5159\",\n    \"5160\",\n    \"5162\",\n    \"5163\",\n    \"5164\",\n    \"5165\",\n    \"5166\",\n    \"5168\",\n    \"5169\",\n    \"5170\",\n    \"5171\",\n    \"5172\",\n    \"5173\",\n    \"5174\",\n    \"5176\",\n    \"5177\",\n    \"5179\",\n    \"5181\",\n    \"5182\",\n    \"5183\",\n    \"5186\",\n    \"5192\",\n    \"5193\",\n    \"5194\",\n    \"5195\",\n    \"5198\",\n    \"5199\",\n    \"5201\",\n    \"5202\",\n    \"5204\",\n    \"5205\",\n    \"5207\",\n    \"5209\",\n    \"5213\",\n    \"5215\",\n    \"5216\",\n    \"5217\",\n    \"5218\",\n    \"5220\",\n    \"5221\",\n    \"5222\",\n    \"5224\",\n    \"5225\",\n    \"5227\",\n    \"5228\",\n    \"5229\",\n    \"5231\",\n    \"5232\",\n    \"5233\",\n    \"5234\",\n    \"5236\",\n    \"5237\",\n    \"5239\",\n    \"5240\",\n    \"5241\",\n    \"5244\",\n    \"5245\",\n    \"5246\",\n    \"5251\",\n    \"5252\",\n    \"5253\",\n    \"5255\",\n    \"5259\",\n    \"5260\",\n    \"5261\",\n    \"5262\",\n    \"5263\",\n    \"5264\",\n    \"5265\",\n    \"5267\",\n    \"5269\",\n    \"5271\",\n    \"5273\",\n    \"5275\",\n    \"5276\",\n    \"5277\",\n    \"5278\",\n    \"5279\",\n    \"5280\",\n    \"5281\",\n    \"5282\",\n    \"5284\",\n    \"5285\",\n    \"5286\",\n    \"5288\",\n    \"5293\",\n    \"5294\",\n    \"5299\",\n    \"5300\",\n    \"5301\",\n    \"5304\",\n    \"5305\",\n    \"5307\",\n    \"5309\",\n    \"5310\",\n    \"5312\",\n    \"5314\",\n    \"5317\",\n    \"5318\",\n    \"5319\",\n    \"5320\",\n    \"5322\",\n    \"5323\",\n    \"5324\",\n    \"5325\",\n    \"5326\",\n    \"5328\",\n    \"5329\",\n    \"5331\",\n    \"5332\",\n    \"5334\",\n    \"5336\",\n    \"5337\",\n    \"5338\",\n    \"5339\",\n    \"5341\",\n    \"5342\",\n    \"5343\",\n    \"5347\",\n    \"5348\",\n    \"5349\",\n    \"5354\",\n    \"5356\",\n    \"5358\",\n    \"5359\",\n    \"5361\",\n    \"5363\",\n    \"5364\",\n    \"5365\",\n    \"5366\",\n    \"5367\",\n    \"5370\",\n    \"5371\",\n    \"5372\",\n    \"5373\",\n    \"5374\",\n    \"5375\",\n    \"5378\",\n    \"5380\",\n    \"5381\",\n    \"5382\",\n    \"5383\",\n    \"5385\",\n    \"5386\",\n    \"5387\",\n    \"5388\",\n    \"5390\",\n    \"5391\",\n    \"5392\",\n    \"5393\",\n    \"5394\",\n    \"5395\",\n    \"5396\",\n    \"5398\",\n    \"5399\",\n    \"5401\",\n    \"5403\",\n    \"5404\",\n    \"5405\",\n    \"5407\",\n    \"5409\",\n    \"5410\",\n    \"5412\",\n    \"5413\",\n    \"5414\",\n    \"5417\",\n    \"5419\",\n    \"5420\",\n    \"5422\",\n    \"5423\",\n    \"5424\",\n    \"5425\",\n    \"5426\",\n    \"5427\",\n    \"5428\",\n    \"5429\",\n    \"5430\",\n    \"5431\",\n    \"5432\",\n    \"5433\",\n    \"5434\",\n    \"5437\",\n    \"5439\",\n    \"5440\",\n    \"5442\",\n    \"5443\",\n    \"5444\",\n    \"5446\",\n    \"5448\",\n    \"5450\",\n    \"5451\",\n    \"5452\",\n    \"5453\",\n    \"5454\",\n    \"5455\",\n    \"5457\",\n    \"5458\",\n    \"5459\",\n    \"5460\",\n    \"5461\",\n    \"5462\",\n    \"5465\",\n    \"5466\",\n    \"5467\",\n    \"5468\",\n    \"5470\",\n    \"5477\",\n    \"5478\",\n    \"5479\",\n    \"5480\",\n    \"5481\",\n    \"5482\",\n    \"5483\",\n    \"5484\",\n    \"5485\",\n    \"5486\",\n    \"5488\",\n    \"5489\",\n    \"5491\",\n    \"5493\",\n    \"5494\",\n    \"5496\",\n    \"5497\",\n    \"5498\",\n    \"5500\",\n    \"5502\",\n    \"5503\",\n    \"5504\",\n    \"5505\",\n    \"5506\",\n    \"5510\",\n    \"5512\",\n    \"5513\",\n    \"5514\",\n    \"5515\",\n    \"5516\",\n    \"5519\",\n    \"5521\",\n    \"5525\",\n    \"5526\",\n    \"5527\",\n    \"5528\",\n    \"5530\",\n    \"5534\",\n    \"5535\",\n    \"5536\",\n    \"5537\",\n    \"5539\",\n    \"5542\",\n    \"5552\",\n    \"5553\",\n    \"5554\",\n    \"5557\",\n    \"5558\",\n    \"5560\",\n    \"5561\",\n    \"5562\",\n    \"5566\",\n    \"5567\",\n    \"5568\",\n    \"5569\",\n    \"5570\",\n    \"5571\",\n    \"5574\",\n    \"5576\",\n    \"5577\",\n    \"5578\",\n    \"5580\",\n    \"5581\",\n    \"5582\",\n    \"5583\",\n    \"5585\",\n    \"5587\",\n    \"5593\",\n    \"5594\",\n    \"5596\",\n    \"5597\",\n    \"5598\",\n    \"5599\",\n    \"5607\",\n    \"5608\",\n    \"5609\",\n    \"5610\",\n    \"5612\",\n    \"5613\",\n    \"5614\",\n    \"5615\",\n    \"5616\",\n    \"5617\",\n    \"5621\",\n    \"5627\",\n    \"5628\",\n    \"5629\",\n    \"5631\",\n    \"5632\",\n    \"5633\",\n    \"5635\",\n    \"5636\",\n    \"5638\",\n    \"5640\",\n    \"5641\",\n    \"5643\",\n    \"5644\",\n    \"5645\",\n    \"5649\",\n    \"5650\",\n    \"5653\",\n    \"5654\",\n    \"5655\",\n    \"5656\",\n    \"5657\",\n    \"5658\",\n    \"5659\",\n    \"5661\",\n    \"5662\",\n    \"5665\",\n    \"5666\",\n    \"5668\",\n    \"5669\",\n    \"5670\",\n    \"5672\",\n    \"5673\",\n    \"5675\",\n    \"5676\",\n    \"5678\",\n    \"5680\",\n    \"5681\",\n    \"5682\",\n    \"5684\",\n    \"5685\",\n    \"5687\",\n    \"5688\",\n    \"5690\",\n    \"5692\",\n    \"5693\",\n    \"5695\",\n    \"5699\",\n    \"5700\",\n    \"5702\",\n    \"5703\",\n    \"5704\",\n    \"5707\",\n    \"5708\",\n    \"5709\",\n    \"5713\",\n    \"5715\",\n    \"5717\",\n    \"5718\",\n    \"5719\",\n    \"5721\",\n    \"5728\",\n    \"5729\",\n    \"5730\",\n    \"5731\",\n    \"5732\",\n    \"5737\",\n    \"5738\",\n    \"5739\",\n    \"5740\",\n    \"5741\",\n    \"5742\",\n    \"5743\",\n    \"5744\",\n    \"5745\",\n    \"5749\",\n    \"5751\",\n    \"5752\",\n    \"5753\",\n    \"5754\",\n    \"5757\",\n    \"5758\",\n    \"5759\",\n    \"5760\",\n    \"5762\",\n    \"5763\",\n    \"5766\",\n    \"5767\",\n    \"5769\",\n    \"5771\",\n    \"5773\",\n    \"5776\",\n    \"5777\",\n    \"5778\",\n    \"5780\",\n    \"5782\",\n    \"5783\",\n    \"5784\",\n    \"5786\",\n    \"5787\",\n    \"5790\",\n    \"5792\",\n    \"5793\",\n    \"5796\",\n    \"5798\",\n    \"5799\",\n    \"5800\",\n    \"5802\",\n    \"5803\",\n    \"5804\",\n    \"5807\",\n    \"5809\",\n    \"5810\",\n    \"5811\",\n    \"5813\",\n    \"5815\",\n    \"5817\",\n    \"5820\",\n    \"5821\",\n    \"5822\",\n    \"5824\",\n    \"5826\",\n    \"5827\",\n    \"5829\",\n    \"5831\",\n    \"5832\",\n    \"5833\",\n    \"5834\",\n    \"5835\",\n    \"5837\",\n    \"5838\",\n    \"5839\",\n    \"5841\",\n    \"5842\",\n    \"5843\",\n    \"5844\",\n    \"5846\",\n    \"5847\",\n    \"5849\",\n    \"5850\",\n    \"5854\",\n    \"5856\",\n    \"5857\",\n    \"5858\",\n    \"5860\",\n    \"5861\",\n    \"5863\",\n    \"5865\",\n    \"5866\",\n    \"5867\",\n    \"5868\",\n    \"5869\",\n    \"5870\",\n    \"5874\",\n    \"5875\",\n    \"5877\",\n    \"5878\",\n    \"5879\",\n    \"5882\",\n    \"5885\",\n    \"5887\",\n    \"5891\",\n    \"5892\",\n    \"5894\",\n    \"5895\",\n    \"5896\",\n    \"5897\",\n    \"5898\",\n    \"5899\",\n    \"5904\",\n    \"5905\",\n    \"5906\",\n    \"5907\",\n    \"5908\",\n    \"5909\",\n    \"5910\",\n    \"5914\",\n    \"5917\",\n    \"5918\",\n    \"5920\",\n    \"5924\",\n    \"5926\",\n    \"5928\",\n    \"5929\",\n    \"5930\",\n    \"5931\",\n    \"5932\",\n    \"5936\",\n    \"5937\",\n    \"5938\",\n    \"5939\",\n    \"5942\",\n    \"5943\",\n    \"5944\",\n    \"5947\",\n    \"5950\",\n    \"5951\",\n    \"5952\",\n    \"5953\",\n    \"5955\",\n    \"5957\",\n    \"5958\",\n    \"5960\",\n    \"5963\",\n    \"5965\",\n    \"5966\",\n    \"5967\",\n    \"5968\",\n    \"5969\",\n    \"5970\",\n    \"5971\",\n    \"5972\",\n    \"5973\",\n    \"5976\",\n    \"5977\",\n    \"5979\",\n    \"5980\",\n    \"5983\",\n    \"5985\",\n    \"5988\",\n    \"5989\",\n    \"5993\",\n    \"5996\",\n    \"5997\",\n    \"5999\",\n    \"6000\",\n    \"6002\",\n    \"6003\",\n    \"6004\",\n    \"6006\",\n    \"6007\",\n    \"6012\",\n    \"6013\",\n    \"6015\",\n    \"6016\",\n    \"6018\",\n    \"6019\",\n    \"6022\",\n    \"6025\",\n    \"6026\",\n    \"6027\",\n    \"6031\",\n    \"6032\",\n    \"6034\",\n    \"6035\",\n    \"6036\",\n    \"6038\",\n    \"6039\",\n    \"6040\",\n    \"6041\",\n    \"6042\",\n    \"6043\",\n    \"6044\",\n    \"6045\",\n    \"6047\",\n    \"6049\",\n    \"6053\",\n    \"6055\",\n    \"6056\",\n    \"6057\",\n    \"6058\",\n    \"6059\",\n    \"6062\",\n    \"6065\",\n    \"6066\",\n    \"6068\",\n    \"6069\",\n    \"6070\",\n    \"6074\",\n    \"6075\",\n    \"6076\",\n    \"6079\",\n    \"6082\",\n    \"6084\",\n    \"6085\",\n    \"6086\",\n    \"6087\",\n    \"6090\",\n    \"6093\",\n    \"6094\",\n    \"6095\",\n    \"6097\",\n    \"6098\",\n    \"6100\",\n    \"6103\",\n    \"6104\",\n    \"6105\",\n    \"6106\",\n    \"6110\",\n    \"6114\",\n    \"6117\",\n    \"6121\",\n    \"6122\",\n    \"6124\",\n    \"6128\",\n    \"6131\",\n    \"6132\",\n    \"6134\",\n    \"6136\",\n    \"6137\",\n    \"6139\",\n    \"6140\",\n    \"6141\",\n    \"6142\",\n    \"6143\",\n    \"6146\",\n    \"6148\",\n    \"6149\",\n    \"6150\",\n    \"6151\",\n    \"6153\",\n    \"6154\",\n    \"6155\",\n    \"6156\",\n    \"6157\",\n    \"6158\",\n    \"6159\",\n    \"6160\",\n    \"6161\",\n    \"6165\",\n    \"6166\",\n    \"6167\",\n    \"6169\",\n    \"6171\",\n    \"6172\",\n    \"6173\",\n    \"6174\",\n    \"6175\",\n    \"6176\",\n    \"6177\",\n    \"6178\",\n    \"6180\",\n    \"6189\",\n    \"6190\",\n    \"6191\",\n    \"6192\",\n    \"6195\",\n    \"6196\",\n    \"6197\",\n    \"6198\",\n    \"6199\",\n    \"6202\",\n    \"6203\",\n    \"6205\",\n    \"6206\",\n    \"6208\",\n    \"6209\",\n    \"6210\",\n    \"6211\",\n    \"6216\",\n    \"6218\",\n    \"6220\",\n    \"6221\",\n    \"6224\",\n    \"6225\",\n    \"6226\",\n    \"6227\",\n    \"6229\",\n    \"6230\",\n    \"6231\",\n    \"6233\",\n    \"6234\",\n    \"6235\",\n    \"6236\",\n    \"6237\",\n    \"6238\",\n    \"6239\",\n    \"6241\",\n    \"6242\",\n    \"6243\",\n    \"6244\",\n    \"6247\",\n    \"6250\",\n    \"6252\",\n    \"6253\",\n    \"6254\",\n    \"6255\",\n    \"6256\",\n    \"6258\",\n    \"6259\",\n    \"6260\",\n    \"6261\",\n    \"6262\",\n    \"6265\",\n    \"6267\",\n    \"6270\",\n    \"6271\",\n    \"6273\",\n    \"6275\",\n    \"6276\",\n    \"6277\",\n    \"6279\",\n    \"6281\",\n    \"6282\",\n    \"6284\",\n    \"6285\",\n    \"6286\",\n    \"6287\",\n    \"6289\",\n    \"6292\",\n    \"6294\",\n    \"6296\",\n    \"6299\",\n    \"6300\",\n    \"6301\",\n    \"6302\",\n    \"6303\",\n    \"6309\",\n    \"6312\",\n    \"6313\",\n    \"6314\",\n    \"6315\",\n    \"6317\",\n    \"6319\",\n    \"6320\",\n    \"6321\",\n    \"6324\",\n    \"6325\",\n    \"6328\",\n    \"6330\",\n    \"6332\",\n    \"6333\",\n    \"6337\",\n    \"6339\",\n    \"6340\",\n    \"6341\",\n    \"6342\",\n    \"6346\",\n    \"6347\",\n    \"6349\",\n    \"6350\",\n    \"6351\",\n    \"6353\",\n    \"6354\",\n    \"6355\",\n    \"6356\",\n    \"6357\",\n    \"6358\",\n    \"6360\",\n    \"6361\",\n    \"6362\",\n    \"6363\",\n    \"6364\",\n    \"6367\",\n    \"6368\",\n    \"6369\",\n    \"6379\",\n    \"6382\",\n    \"6383\",\n    \"6385\",\n    \"6388\",\n    \"6389\",\n    \"6392\",\n    \"6393\",\n    \"6394\",\n    \"6395\",\n    \"6396\",\n    \"6397\",\n    \"6398\",\n    \"6402\",\n    \"6405\",\n    \"6407\",\n    \"6411\",\n    \"6413\",\n    \"6414\",\n    \"6415\",\n    \"6416\",\n    \"6417\",\n    \"6420\",\n    \"6421\",\n    \"6422\",\n    \"6423\",\n    \"6424\",\n    \"6425\",\n    \"6426\",\n    \"6427\",\n    \"6428\",\n    \"6429\",\n    \"6432\",\n    \"6433\",\n    \"6434\",\n    \"6435\",\n    \"6436\",\n    \"6438\",\n    \"6439\",\n    \"6441\",\n    \"6443\",\n    \"6446\",\n    \"6447\",\n    \"6448\",\n    \"6449\",\n    \"6450\",\n    \"6451\",\n    \"6452\",\n    \"6456\",\n    \"6460\",\n    \"6461\",\n    \"6462\",\n    \"6463\",\n    \"6464\",\n    \"6465\",\n    \"6466\",\n    \"6468\",\n    \"6471\",\n    \"6473\",\n    \"6475\",\n    \"6477\",\n    \"6478\",\n    \"6479\",\n    \"6481\",\n    \"6484\",\n    \"6487\",\n    \"6489\",\n    \"6491\",\n    \"6493\",\n    \"6494\",\n    \"6496\",\n    \"6498\",\n    \"6499\",\n    \"6500\",\n    \"6501\",\n    \"6503\",\n    \"6505\",\n    \"6506\",\n    \"6507\",\n    \"6508\",\n    \"6510\",\n    \"6512\",\n    \"6513\",\n    \"6514\",\n    \"6515\",\n    \"6516\",\n    \"6519\",\n    \"6520\",\n    \"6521\",\n    \"6522\",\n    \"6524\",\n    \"6526\",\n    \"6527\",\n    \"6528\",\n    \"6529\",\n    \"6530\",\n    \"6531\",\n    \"6533\",\n    \"6538\",\n    \"6543\",\n    \"6545\",\n    \"6547\",\n    \"6548\",\n    \"6549\",\n    \"6550\",\n    \"6551\",\n    \"6552\",\n    \"6554\",\n    \"6555\",\n    \"6556\",\n    \"6559\",\n    \"6561\",\n    \"6562\",\n    \"6563\",\n    \"6564\",\n    \"6565\",\n    \"6566\",\n    \"6567\",\n    \"6568\",\n    \"6569\",\n    \"6572\",\n    \"6579\",\n    \"6580\",\n    \"6581\",\n    \"6582\",\n    \"6584\",\n    \"6586\",\n    \"6587\",\n    \"6589\",\n    \"6592\",\n    \"6594\",\n    \"6595\",\n    \"6596\",\n    \"6599\",\n    \"6600\",\n    \"6601\",\n    \"6602\",\n    \"6603\",\n    \"6604\",\n    \"6605\",\n    \"6606\",\n    \"6607\",\n    \"6610\",\n    \"6614\",\n    \"6615\",\n    \"6616\",\n    \"6617\",\n    \"6618\",\n    \"6622\",\n    \"6625\",\n    \"6629\",\n    \"6630\",\n    \"6633\",\n    \"6634\",\n    \"6638\",\n    \"6639\",\n    \"6642\",\n    \"6643\",\n    \"6644\",\n    \"6645\",\n    \"6647\",\n    \"6649\",\n    \"6650\",\n    \"6651\",\n    \"6653\",\n    \"6655\",\n    \"6656\",\n    \"6657\",\n    \"6658\",\n    \"6659\",\n    \"6663\",\n    \"6664\",\n    \"6665\",\n    \"6666\",\n    \"6667\",\n    \"6668\",\n    \"6670\",\n    \"6672\",\n    \"6673\",\n    \"6674\",\n    \"6675\",\n    \"6678\",\n    \"6679\",\n    \"6680\",\n    \"6682\",\n    \"6683\",\n    \"6688\",\n    \"6689\",\n    \"6690\",\n    \"6692\",\n    \"6693\",\n    \"6695\",\n    \"6696\",\n    \"6698\",\n    \"6699\",\n    \"6700\",\n    \"6701\",\n    \"6702\",\n    \"6705\",\n    \"6706\",\n    \"6708\",\n    \"6709\",\n    \"6711\",\n    \"6715\",\n    \"6716\",\n    \"6718\",\n    \"6720\",\n    \"6722\",\n    \"6723\",\n    \"6724\",\n    \"6725\",\n    \"6727\",\n    \"6731\",\n    \"6733\",\n    \"6736\",\n    \"6737\",\n    \"6741\",\n    \"6743\",\n    \"6744\",\n    \"6745\",\n    \"6746\",\n    \"6747\",\n    \"6748\",\n    \"6749\",\n    \"6750\",\n    \"6752\",\n    \"6753\",\n    \"6754\",\n    \"6755\",\n    \"6756\",\n    \"6757\",\n    \"6758\",\n    \"6760\",\n    \"6762\",\n    \"6764\",\n    \"6766\",\n    \"6768\",\n    \"6769\",\n    \"6775\",\n    \"6776\",\n    \"6777\",\n    \"6778\",\n    \"6783\",\n    \"6784\",\n    \"6789\",\n    \"6790\",\n    \"6792\",\n    \"6793\",\n    \"6794\",\n    \"6795\",\n    \"6797\",\n    \"6799\",\n    \"6800\",\n    \"6801\",\n    \"6804\",\n    \"6805\",\n    \"6806\",\n    \"6807\",\n    \"6808\",\n    \"6810\",\n    \"6811\",\n    \"6812\",\n    \"6816\",\n    \"6817\",\n    \"6818\",\n    \"6819\",\n    \"6820\",\n    \"6821\",\n    \"6822\",\n    \"6823\",\n    \"6826\",\n    \"6828\",\n    \"6829\",\n    \"6831\",\n    \"6832\",\n    \"6834\",\n    \"6837\",\n    \"6838\",\n    \"6841\",\n    \"6842\",\n    \"6843\",\n    \"6844\",\n    \"6845\",\n    \"6846\",\n    \"6847\",\n    \"6848\",\n    \"6849\",\n    \"6852\",\n    \"6853\",\n    \"6854\",\n    \"6856\",\n    \"6857\",\n    \"6858\",\n    \"6859\",\n    \"6860\",\n    \"6861\",\n    \"6862\",\n    \"6869\",\n    \"6870\",\n    \"6874\",\n    \"6876\",\n    \"6878\",\n    \"6879\",\n    \"6881\",\n    \"6882\",\n    \"6885\",\n    \"6888\",\n    \"6890\",\n    \"6892\",\n    \"6893\",\n    \"6894\",\n    \"6895\",\n    \"6897\",\n    \"6900\",\n    \"6901\",\n    \"6903\",\n    \"6904\",\n    \"6905\",\n    \"6906\",\n    \"6907\",\n    \"6908\",\n    \"6910\",\n    \"6912\",\n    \"6913\",\n    \"6914\",\n    \"6915\",\n    \"6917\",\n    \"6919\",\n    \"6920\",\n    \"6921\",\n    \"6922\",\n    \"6925\",\n    \"6926\",\n    \"6927\",\n    \"6928\",\n    \"6929\",\n    \"6930\",\n    \"6931\",\n    \"6932\",\n    \"6934\",\n    \"6936\",\n    \"6937\",\n    \"6938\",\n    \"6939\",\n    \"6941\",\n    \"6943\",\n    \"6944\",\n    \"6945\",\n    \"6949\",\n    \"6950\",\n    \"6951\",\n    \"6952\",\n    \"6954\",\n    \"6957\",\n    \"6959\",\n    \"6960\",\n    \"6961\",\n    \"6962\",\n    \"6963\",\n    \"6968\",\n    \"6970\",\n    \"6971\",\n    \"6974\",\n    \"6976\",\n    \"6978\",\n    \"6980\",\n    \"6982\",\n    \"6985\",\n    \"6986\",\n    \"6988\",\n    \"6991\",\n    \"6992\",\n    \"6993\",\n    \"6994\",\n    \"6995\",\n    \"6996\",\n    \"6997\",\n    \"6998\",\n    \"6999\",\n    \"7001\",\n    \"7003\",\n    \"7004\",\n    \"7006\",\n    \"7009\",\n    \"7010\",\n    \"7013\",\n    \"7015\",\n    \"7016\",\n    \"7017\",\n    \"7020\",\n    \"7025\",\n    \"7027\",\n    \"7028\",\n    \"7029\",\n    \"7030\",\n    \"7032\",\n    \"7034\",\n    \"7035\",\n    \"7036\",\n    \"7039\",\n    \"7042\",\n    \"7043\",\n    \"7044\",\n    \"7045\",\n    \"7048\",\n    \"7049\",\n    \"7051\",\n    \"7054\",\n    \"7056\",\n    \"7060\",\n    \"7061\",\n    \"7062\",\n    \"7063\",\n    \"7065\",\n    \"7067\",\n    \"7068\",\n    \"7069\",\n    \"7070\",\n    \"7072\",\n    \"7073\",\n    \"7074\",\n    \"7075\",\n    \"7077\",\n    \"7079\",\n    \"7080\",\n    \"7081\",\n    \"7084\",\n    \"7086\",\n    \"7087\",\n    \"7088\",\n    \"7089\",\n    \"7090\",\n    \"7091\",\n    \"7093\",\n    \"7095\",\n    \"7098\",\n    \"7099\",\n    \"7100\",\n    \"7102\",\n    \"7103\",\n    \"7104\",\n    \"7106\",\n    \"7109\",\n    \"7110\",\n    \"7112\",\n    \"7114\",\n    \"7116\",\n    \"7117\",\n    \"7118\",\n    \"7120\",\n    \"7122\",\n    \"7123\",\n    \"7125\",\n    \"7127\",\n    \"7128\",\n    \"7129\",\n    \"7131\",\n    \"7132\",\n    \"7133\",\n    \"7139\",\n    \"7141\",\n    \"7142\",\n    \"7143\",\n    \"7144\",\n    \"7148\",\n    \"7151\",\n    \"7153\",\n    \"7154\",\n    \"7156\",\n    \"7157\",\n    \"7159\",\n    \"7160\",\n    \"7163\",\n    \"7165\",\n    \"7166\",\n    \"7167\",\n    \"7168\",\n    \"7170\",\n    \"7173\",\n    \"7175\",\n    \"7176\",\n    \"7178\",\n    \"7181\",\n    \"7182\",\n    \"7183\",\n    \"7184\",\n    \"7185\",\n    \"7186\",\n    \"7187\",\n    \"7189\",\n    \"7193\",\n    \"7195\",\n    \"7196\",\n    \"7198\",\n    \"7200\",\n    \"7201\",\n    \"7202\",\n    \"7203\",\n    \"7204\",\n    \"7205\",\n    \"7211\",\n    \"7213\",\n    \"7214\",\n    \"7218\",\n    \"7220\",\n    \"7221\",\n    \"7222\",\n    \"7223\",\n    \"7224\",\n    \"7227\",\n    \"7228\",\n    \"7229\",\n    \"7231\",\n    \"7232\",\n    \"7233\",\n    \"7239\",\n    \"7240\",\n    \"7241\",\n    \"7245\",\n    \"7246\",\n    \"7248\",\n    \"7249\",\n    \"7252\",\n    \"7253\",\n    \"7257\",\n    \"7258\",\n    \"7259\",\n    \"7260\",\n    \"7261\",\n    \"7263\",\n    \"7264\",\n    \"7265\",\n    \"7269\",\n    \"7271\",\n    \"7274\",\n    \"7275\",\n    \"7276\",\n    \"7277\",\n    \"7278\",\n    \"7279\",\n    \"7281\",\n    \"7283\",\n    \"7284\",\n    \"7286\",\n    \"7287\",\n    \"7288\",\n    \"7289\",\n    \"7293\",\n    \"7295\",\n    \"7299\",\n    \"7300\",\n    \"7302\",\n    \"7303\",\n    \"7304\",\n    \"7305\",\n    \"7307\",\n    \"7308\",\n    \"7309\",\n    \"7311\",\n    \"7312\",\n    \"7313\",\n    \"7314\",\n    \"7315\",\n    \"7316\",\n    \"7317\",\n    \"7320\",\n    \"7321\",\n    \"7323\",\n    \"7324\",\n    \"7325\",\n    \"7327\",\n    \"7331\",\n    \"7332\",\n    \"7335\",\n    \"7337\",\n    \"7339\",\n    \"7340\",\n    \"7341\",\n    \"7342\",\n    \"7350\",\n    \"7351\",\n    \"7352\",\n    \"7353\",\n    \"7354\",\n    \"7360\",\n    \"7362\",\n    \"7364\",\n    \"7366\",\n    \"7368\",\n    \"7369\",\n    \"7370\",\n    \"7371\",\n    \"7372\",\n    \"7376\",\n    \"7377\",\n    \"7378\",\n    \"7379\",\n    \"7380\",\n    \"7381\",\n    \"7382\",\n    \"7383\",\n    \"7384\",\n    \"7386\",\n    \"7388\",\n    \"7393\",\n    \"7394\",\n    \"7398\",\n    \"7400\",\n    \"7402\",\n    \"7404\",\n    \"7406\",\n    \"7408\",\n    \"7409\",\n    \"7410\",\n    \"7412\",\n    \"7413\",\n    \"7414\",\n    \"7416\",\n    \"7417\",\n    \"7419\",\n    \"7421\",\n    \"7422\",\n    \"7423\",\n    \"7425\",\n    \"7427\",\n    \"7430\",\n    \"7431\",\n    \"7433\",\n    \"7435\",\n    \"7436\",\n    \"7437\",\n    \"7438\",\n    \"7439\",\n    \"7440\",\n    \"7441\",\n    \"7444\",\n    \"7445\",\n    \"7446\",\n    \"7449\",\n    \"7450\",\n    \"7451\",\n    \"7452\",\n    \"7453\",\n    \"7454\",\n    \"7456\",\n    \"7458\",\n    \"7463\",\n    \"7464\",\n    \"7468\",\n    \"7469\",\n    \"7471\",\n    \"7472\",\n    \"7473\",\n    \"7476\",\n    \"7478\",\n    \"7479\",\n    \"7484\",\n    \"7485\",\n    \"7486\",\n    \"7489\",\n    \"7496\",\n    \"7498\",\n    \"7499\",\n    \"7500\",\n    \"7501\",\n    \"7502\",\n    \"7503\",\n    \"7504\",\n    \"7505\",\n    \"7508\",\n    \"7509\",\n    \"7511\",\n    \"7513\",\n    \"7515\",\n    \"7518\",\n    \"7519\",\n    \"7520\",\n    \"7523\",\n    \"7525\",\n    \"7526\",\n    \"7527\",\n    \"7530\",\n    \"7535\",\n    \"7536\",\n    \"7537\",\n    \"7539\",\n    \"7541\",\n    \"7542\",\n    \"7547\",\n    \"7549\",\n    \"7550\",\n    \"7551\",\n    \"7552\",\n    \"7554\",\n    \"7555\",\n    \"7556\",\n    \"7557\",\n    \"7558\",\n    \"7561\",\n    \"7564\",\n    \"7565\",\n    \"7566\",\n    \"7567\",\n    \"7568\",\n    \"7572\",\n    \"7573\",\n    \"7574\",\n    \"7575\",\n    \"7576\",\n    \"7577\",\n    \"7579\",\n    \"7580\",\n    \"7581\",\n    \"7584\",\n    \"7585\",\n    \"7586\",\n    \"7588\",\n    \"7589\",\n    \"7590\",\n    \"7591\",\n    \"7592\",\n    \"7593\",\n    \"7594\",\n    \"7595\",\n    \"7599\",\n    \"7601\",\n    \"7602\",\n    \"7604\",\n    \"7606\",\n    \"7607\",\n    \"7609\",\n    \"7610\",\n    \"7611\",\n    \"7612\",\n    \"7615\",\n    \"7620\",\n    \"7622\",\n    \"7623\",\n    \"7627\",\n    \"7629\",\n    \"7631\",\n    \"7632\",\n    \"7633\",\n    \"7634\",\n    \"7635\",\n    \"7637\",\n    \"7640\",\n    \"7642\",\n    \"7643\",\n    \"7644\",\n    \"7646\",\n    \"7647\",\n    \"7648\",\n    \"7649\",\n    \"7652\",\n    \"7655\",\n    \"7657\",\n    \"7658\",\n    \"7660\",\n    \"7661\",\n    \"7663\",\n    \"7664\",\n    \"7665\",\n    \"7666\",\n    \"7667\",\n    \"7668\",\n    \"7669\",\n    \"7673\",\n    \"7674\",\n    \"7676\",\n    \"7677\",\n    \"7680\",\n    \"7682\",\n    \"7687\",\n    \"7690\",\n    \"7693\",\n    \"7695\",\n    \"7696\",\n    \"7698\",\n    \"7699\",\n    \"7700\",\n    \"7701\",\n    \"7702\",\n    \"7703\",\n    \"7705\",\n    \"7706\",\n    \"7708\",\n    \"7710\",\n    \"7711\",\n    \"7714\",\n    \"7715\",\n    \"7717\",\n    \"7721\",\n    \"7722\",\n    \"7725\",\n    \"7730\",\n    \"7731\",\n    \"7732\",\n    \"7733\",\n    \"7734\",\n    \"7735\",\n    \"7736\",\n    \"7738\",\n    \"7740\",\n    \"7741\",\n    \"7743\",\n    \"7744\",\n    \"7746\",\n    \"7749\",\n    \"7750\",\n    \"7751\",\n    \"7752\",\n    \"7753\",\n    \"7754\",\n    \"7757\",\n    \"7761\",\n    \"7763\",\n    \"7764\",\n    \"7766\",\n    \"7767\",\n    \"7769\",\n    \"7770\",\n    \"7771\",\n    \"7772\",\n    \"7773\",\n    \"7774\",\n    \"7775\",\n    \"7778\",\n    \"7779\",\n    \"7780\",\n    \"7781\",\n    \"7782\",\n    \"7783\",\n    \"7784\",\n    \"7786\",\n    \"7788\",\n    \"7789\",\n    \"7790\",\n    \"7791\",\n    \"7792\",\n    \"7793\",\n    \"7796\",\n    \"7797\",\n    \"7798\",\n    \"7802\",\n    \"7806\",\n    \"7808\",\n    \"7810\",\n    \"7813\",\n    \"7814\",\n    \"7815\",\n    \"7816\",\n    \"7817\",\n    \"7818\",\n    \"7819\",\n    \"7820\",\n    \"7821\",\n    \"7823\",\n    \"7826\",\n    \"7828\",\n    \"7830\",\n    \"7831\",\n    \"7834\",\n    \"7835\",\n    \"7836\",\n    \"7837\",\n    \"7838\",\n    \"7840\",\n    \"7846\",\n    \"7847\",\n    \"7848\",\n    \"7849\",\n    \"7850\",\n    \"7851\",\n    \"7852\",\n    \"7853\",\n    \"7854\",\n    \"7855\",\n    \"7856\",\n    \"7861\",\n    \"7862\",\n    \"7863\",\n    \"7867\",\n    \"7871\",\n    \"7874\",\n    \"7875\",\n    \"7877\",\n    \"7878\",\n    \"7879\",\n    \"7880\",\n    \"7882\",\n    \"7883\",\n    \"7884\",\n    \"7885\",\n    \"7887\",\n    \"7889\",\n    \"7890\",\n    \"7891\",\n    \"7894\",\n    \"7896\",\n    \"7897\",\n    \"7898\",\n    \"7900\",\n    \"7901\",\n    \"7903\",\n    \"7905\",\n    \"7909\",\n    \"7910\",\n    \"7911\",\n    \"7912\",\n    \"7913\",\n    \"7915\",\n    \"7920\",\n    \"7921\",\n    \"7925\",\n    \"7926\",\n    \"7928\",\n    \"7929\",\n    \"7931\",\n    \"7934\",\n    \"7937\",\n    \"7938\",\n    \"7943\",\n    \"7944\",\n    \"7946\",\n    \"7947\",\n    \"7948\",\n    \"7950\",\n    \"7951\",\n    \"7954\",\n    \"7957\",\n    \"7958\",\n    \"7965\",\n    \"7966\",\n    \"7967\",\n    \"7968\",\n    \"7970\",\n    \"7972\",\n    \"7973\",\n    \"7976\",\n    \"7977\",\n    \"7978\",\n    \"7980\",\n    \"7981\",\n    \"7982\",\n    \"7984\",\n    \"7985\",\n    \"7986\",\n    \"7987\",\n    \"7988\",\n    \"7989\",\n    \"7990\",\n    \"7992\",\n    \"7995\",\n    \"7996\",\n    \"7997\",\n    \"7998\",\n    \"7999\",\n    \"8000\",\n    \"8001\",\n    \"8002\",\n    \"8003\",\n    \"8005\",\n    \"8007\",\n    \"8008\",\n    \"8011\",\n    \"8015\",\n    \"8017\",\n    \"8019\",\n    \"8021\",\n    \"8023\",\n    \"8024\",\n    \"8026\",\n    \"8028\",\n    \"8030\",\n    \"8032\",\n    \"8036\",\n    \"8037\",\n    \"8038\",\n    \"8039\",\n    \"8041\",\n    \"8044\",\n    \"8046\",\n    \"8047\",\n    \"8048\",\n    \"8050\",\n    \"8052\",\n    \"8056\",\n    \"8057\",\n    \"8058\",\n    \"8059\",\n    \"8060\",\n    \"8063\",\n    \"8066\",\n    \"8067\",\n    \"8068\",\n    \"8069\",\n    \"8074\",\n    \"8075\",\n    \"8076\",\n    \"8077\",\n    \"8078\",\n    \"8079\",\n    \"8081\",\n    \"8083\",\n    \"8085\",\n    \"8086\",\n    \"8089\",\n    \"8091\",\n    \"8092\",\n    \"8094\",\n    \"8101\",\n    \"8104\",\n    \"8105\",\n    \"8106\",\n    \"8107\",\n    \"8108\",\n    \"8113\",\n    \"8115\",\n    \"8116\",\n    \"8117\",\n    \"8119\",\n    \"8120\",\n    \"8121\",\n    \"8122\",\n    \"8123\",\n    \"8124\",\n    \"8125\",\n    \"8126\",\n    \"8127\",\n    \"8128\",\n    \"8129\",\n    \"8132\",\n    \"8133\",\n    \"8135\",\n    \"8136\",\n    \"8137\",\n    \"8138\",\n    \"8140\",\n    \"8142\",\n    \"8143\",\n    \"8144\",\n    \"8145\",\n    \"8147\",\n    \"8148\",\n    \"8151\",\n    \"8152\",\n    \"8153\",\n    \"8155\",\n    \"8156\",\n    \"8157\",\n    \"8158\",\n    \"8160\",\n    \"8162\",\n    \"8164\",\n    \"8165\",\n    \"8166\",\n    \"8169\",\n    \"8170\",\n    \"8171\",\n    \"8172\",\n    \"8173\",\n    \"8175\",\n    \"8177\",\n    \"8178\",\n    \"8179\",\n    \"8181\",\n    \"8184\",\n    \"8186\",\n    \"8187\",\n    \"8188\",\n    \"8189\",\n    \"8190\",\n    \"8191\",\n    \"8192\",\n    \"8194\",\n    \"8195\",\n    \"8196\",\n    \"8198\",\n    \"8199\",\n    \"8201\",\n    \"8202\",\n    \"8203\",\n    \"8204\",\n    \"8205\",\n    \"8206\",\n    \"8207\",\n    \"8209\",\n    \"8210\",\n    \"8214\",\n    \"8215\",\n    \"8216\",\n    \"8217\",\n    \"8218\",\n    \"8220\",\n    \"8222\",\n    \"8223\",\n    \"8226\",\n    \"8227\",\n    \"8228\",\n    \"8229\",\n    \"8232\",\n    \"8233\",\n    \"8234\",\n    \"8235\",\n    \"8237\",\n    \"8238\",\n    \"8239\",\n    \"8240\",\n    \"8241\",\n    \"8242\",\n    \"8244\",\n    \"8245\",\n    \"8247\",\n    \"8249\",\n    \"8250\",\n    \"8251\",\n    \"8253\",\n    \"8254\",\n    \"8255\",\n    \"8256\",\n    \"8257\",\n    \"8258\",\n    \"8260\",\n    \"8261\",\n    \"8262\",\n    \"8263\",\n    \"8265\",\n    \"8266\",\n    \"8268\",\n    \"8270\",\n    \"8271\",\n    \"8272\",\n    \"8273\",\n    \"8274\",\n    \"8277\",\n    \"8278\",\n    \"8279\",\n    \"8281\",\n    \"8282\",\n    \"8283\",\n    \"8286\",\n    \"8288\",\n    \"8290\",\n    \"8291\",\n    \"8292\",\n    \"8293\",\n    \"8297\",\n    \"8299\",\n    \"8301\",\n    \"8302\",\n    \"8304\",\n    \"8307\",\n    \"8310\",\n    \"8312\",\n    \"8313\",\n    \"8315\",\n    \"8317\",\n    \"8319\",\n    \"8320\",\n    \"8322\",\n    \"8324\",\n    \"8325\",\n    \"8326\",\n    \"8327\",\n    \"8330\",\n    \"8331\",\n    \"8333\",\n    \"8334\",\n    \"8336\",\n    \"8337\",\n    \"8339\",\n    \"8340\",\n    \"8341\",\n    \"8342\",\n    \"8343\",\n    \"8344\",\n    \"8345\",\n    \"8347\",\n    \"8348\",\n    \"8349\",\n    \"8350\",\n    \"8351\",\n    \"8352\",\n    \"8353\",\n    \"8354\",\n    \"8356\",\n    \"8359\",\n    \"8360\",\n    \"8364\",\n    \"8366\",\n    \"8367\",\n    \"8370\",\n    \"8372\",\n    \"8373\",\n    \"8375\",\n    \"8376\",\n    \"8377\",\n    \"8380\",\n    \"8382\",\n    \"8383\",\n    \"8384\",\n    \"8385\",\n    \"8387\",\n    \"8388\",\n    \"8391\",\n    \"8392\",\n    \"8395\",\n    \"8396\",\n    \"8399\",\n    \"8400\",\n    \"8401\",\n    \"8402\",\n    \"8405\",\n    \"8407\",\n    \"8409\",\n    \"8411\",\n    \"8412\",\n    \"8415\",\n    \"8416\",\n    \"8417\",\n    \"8418\",\n    \"8420\",\n    \"8421\",\n    \"8423\",\n    \"8425\",\n    \"8426\",\n    \"8427\",\n    \"8428\",\n    \"8430\",\n    \"8432\",\n    \"8433\",\n    \"8436\",\n    \"8437\",\n    \"8440\",\n    \"8441\",\n    \"8442\",\n    \"8443\",\n    \"8445\",\n    \"8446\",\n    \"8448\",\n    \"8450\",\n    \"8452\",\n    \"8458\",\n    \"8459\",\n    \"8461\",\n    \"8462\",\n    \"8463\",\n    \"8464\",\n    \"8465\",\n    \"8467\",\n    \"8469\",\n    \"8470\",\n    \"8471\",\n    \"8472\",\n    \"8473\",\n    \"8474\",\n    \"8475\",\n    \"8479\",\n    \"8481\",\n    \"8482\",\n    \"8483\",\n    \"8485\",\n    \"8486\",\n    \"8489\",\n    \"8491\",\n    \"8494\",\n    \"8495\",\n    \"8503\",\n    \"8504\",\n    \"8506\",\n    \"8507\",\n    \"8508\",\n    \"8514\",\n    \"8517\",\n    \"8519\",\n    \"8521\",\n    \"8523\",\n    \"8524\",\n    \"8526\",\n    \"8527\",\n    \"8530\",\n    \"8531\",\n    \"8534\",\n    \"8535\",\n    \"8538\",\n    \"8539\",\n    \"8540\",\n    \"8544\",\n    \"8545\",\n    \"8546\",\n    \"8547\",\n    \"8548\",\n    \"8549\",\n    \"8555\",\n    \"8556\",\n    \"8560\",\n    \"8562\",\n    \"8563\",\n    \"8564\",\n    \"8565\",\n    \"8566\",\n    \"8567\",\n    \"8568\",\n    \"8569\",\n    \"8570\",\n    \"8574\",\n    \"8577\",\n    \"8578\",\n    \"8585\",\n    \"8588\",\n    \"8590\",\n    \"8592\",\n    \"8593\",\n    \"8594\",\n    \"8597\",\n    \"8598\",\n    \"8600\",\n    \"8602\",\n    \"8603\",\n    \"8604\",\n    \"8605\",\n    \"8607\",\n    \"8608\",\n    \"8610\",\n    \"8611\",\n    \"8613\",\n    \"8616\",\n    \"8617\",\n    \"8619\",\n    \"8621\",\n    \"8622\",\n    \"8623\",\n    \"8626\",\n    \"8627\",\n    \"8628\",\n    \"8629\",\n    \"8630\",\n    \"8631\",\n    \"8632\",\n    \"8633\",\n    \"8634\",\n    \"8636\",\n    \"8637\",\n    \"8638\",\n    \"8639\",\n    \"8641\",\n    \"8642\",\n    \"8644\",\n    \"8645\",\n    \"8646\",\n    \"8647\",\n    \"8650\",\n    \"8651\",\n    \"8652\",\n    \"8653\",\n    \"8655\",\n    \"8656\",\n    \"8657\",\n    \"8658\",\n    \"8659\",\n    \"8660\",\n    \"8661\",\n    \"8662\",\n    \"8664\",\n    \"8665\",\n    \"8668\",\n    \"8669\",\n    \"8670\",\n    \"8673\",\n    \"8674\",\n    \"8675\",\n    \"8678\",\n    \"8679\",\n    \"8682\",\n    \"8684\",\n    \"8685\",\n    \"8690\",\n    \"8691\",\n    \"8693\",\n    \"8694\",\n    \"8695\",\n    \"8696\",\n    \"8697\",\n    \"8698\",\n    \"8699\",\n    \"8700\",\n    \"8701\",\n    \"8704\",\n    \"8705\",\n    \"8706\",\n    \"8708\",\n    \"8710\",\n    \"8711\",\n    \"8712\",\n    \"8713\",\n    \"8714\",\n    \"8717\",\n    \"8718\",\n    \"8719\",\n    \"8723\",\n    \"8725\",\n    \"8726\",\n    \"8730\",\n    \"8733\",\n    \"8735\",\n    \"8736\",\n    \"8737\",\n    \"8738\",\n    \"8740\",\n    \"8741\",\n    \"8742\",\n    \"8744\",\n    \"8745\",\n    \"8747\",\n    \"8748\",\n    \"8750\",\n    \"8753\",\n    \"8754\",\n    \"8755\",\n    \"8756\",\n    \"8757\",\n    \"8759\",\n    \"8760\",\n    \"8761\",\n    \"8762\",\n    \"8764\",\n    \"8765\",\n    \"8766\",\n    \"8768\",\n    \"8772\",\n    \"8773\",\n    \"8774\",\n    \"8775\",\n    \"8777\",\n    \"8781\",\n    \"8782\",\n    \"8783\",\n    \"8786\",\n    \"8787\",\n    \"8788\",\n    \"8789\",\n    \"8790\",\n    \"8791\",\n    \"8792\",\n    \"8795\",\n    \"8796\",\n    \"8797\",\n    \"8800\",\n    \"8801\",\n    \"8802\",\n    \"8806\",\n    \"8807\",\n    \"8808\",\n    \"8809\",\n    \"8812\",\n    \"8813\",\n    \"8814\",\n    \"8815\",\n    \"8816\",\n    \"8817\",\n    \"8818\",\n    \"8821\",\n    \"8822\",\n    \"8823\",\n    \"8824\",\n    \"8825\",\n    \"8826\",\n    \"8827\",\n    \"8828\",\n    \"8829\",\n    \"8831\",\n    \"8833\",\n    \"8834\",\n    \"8835\",\n    \"8836\",\n    \"8837\",\n    \"8840\",\n    \"8842\",\n    \"8843\",\n    \"8844\",\n    \"8845\",\n    \"8846\",\n    \"8848\",\n    \"8849\",\n    \"8853\",\n    \"8855\",\n    \"8856\",\n    \"8858\",\n    \"8859\",\n    \"8860\",\n    \"8863\",\n    \"8864\",\n    \"8865\",\n    \"8866\",\n    \"8867\",\n    \"8869\",\n    \"8870\",\n    \"8872\",\n    \"8873\",\n    \"8874\",\n    \"8875\",\n    \"8877\",\n    \"8879\",\n    \"8881\",\n    \"8882\",\n    \"8883\",\n    \"8885\",\n    \"8886\",\n    \"8888\",\n    \"8891\",\n    \"8892\",\n    \"8893\",\n    \"8895\",\n    \"8896\",\n    \"8898\",\n    \"8899\",\n    \"8900\",\n    \"8902\",\n    \"8903\",\n    \"8908\",\n    \"8909\",\n    \"8910\",\n    \"8911\",\n    \"8912\",\n    \"8913\",\n    \"8915\",\n    \"8916\",\n    \"8919\",\n    \"8920\",\n    \"8923\",\n    \"8924\",\n    \"8925\",\n    \"8929\",\n    \"8930\",\n    \"8934\",\n    \"8935\",\n    \"8936\",\n    \"8938\",\n    \"8939\",\n    \"8941\",\n    \"8942\",\n    \"8943\",\n    \"8944\",\n    \"8945\",\n    \"8947\",\n    \"8949\",\n    \"8950\",\n    \"8951\",\n    \"8954\",\n    \"8955\",\n    \"8958\",\n    \"8961\",\n    \"8962\",\n    \"8964\",\n    \"8966\",\n    \"8968\",\n    \"8970\",\n    \"8971\",\n    \"8975\",\n    \"8976\",\n    \"8977\",\n    \"8979\",\n    \"8982\",\n    \"8985\",\n    \"8986\",\n    \"8987\",\n    \"8989\",\n    \"8990\",\n    \"8991\",\n    \"8993\",\n    \"8994\",\n    \"8995\",\n    \"8997\",\n    \"8998\",\n    \"9000\",\n    \"9006\",\n    \"9007\",\n    \"9008\",\n    \"9009\",\n    \"9011\",\n    \"9012\",\n    \"9013\",\n    \"9014\",\n    \"9017\",\n    \"9018\",\n    \"9020\",\n    \"9021\",\n    \"9022\",\n    \"9023\",\n    \"9024\",\n    \"9025\",\n    \"9026\",\n    \"9027\",\n    \"9028\",\n    \"9029\",\n    \"9030\",\n    \"9031\",\n    \"9032\",\n    \"9033\",\n    \"9034\",\n    \"9035\",\n    \"9039\",\n    \"9041\",\n    \"9043\",\n    \"9045\",\n    \"9046\",\n    \"9047\",\n    \"9048\",\n    \"9049\",\n    \"9050\",\n    \"9051\",\n    \"9053\",\n    \"9056\",\n    \"9059\",\n    \"9061\",\n    \"9062\",\n    \"9063\",\n    \"9064\",\n    \"9065\",\n    \"9066\",\n    \"9072\",\n    \"9073\",\n    \"9075\",\n    \"9077\",\n    \"9079\",\n    \"9080\",\n    \"9081\",\n    \"9082\",\n    \"9083\",\n    \"9086\",\n    \"9087\",\n    \"9090\",\n    \"9092\",\n    \"9098\",\n    \"9099\",\n    \"9100\",\n    \"9102\",\n    \"9103\",\n    \"9105\",\n    \"9108\",\n    \"9111\",\n    \"9112\",\n    \"9113\",\n    \"9115\",\n    \"9116\",\n    \"9117\",\n    \"9118\",\n    \"9125\",\n    \"9128\",\n    \"9129\",\n    \"9130\",\n    \"9131\",\n    \"9132\",\n    \"9135\",\n    \"9136\",\n    \"9137\",\n    \"9139\",\n    \"9140\",\n    \"9142\",\n    \"9145\",\n    \"9147\",\n    \"9149\",\n    \"9151\",\n    \"9152\",\n    \"9153\",\n    \"9154\",\n    \"9155\",\n    \"9156\",\n    \"9157\",\n    \"9160\",\n    \"9161\",\n    \"9162\",\n    \"9163\",\n    \"9164\",\n    \"9165\",\n    \"9166\",\n    \"9167\",\n    \"9170\",\n    \"9171\",\n    \"9173\",\n    \"9179\",\n    \"9180\",\n    \"9183\",\n    \"9184\",\n    \"9185\",\n    \"9186\",\n    \"9187\",\n    \"9188\",\n    \"9191\",\n    \"9192\",\n    \"9194\",\n    \"9198\",\n    \"9199\",\n    \"9200\",\n    \"9202\",\n    \"9203\",\n    \"9206\",\n    \"9207\",\n    \"9208\",\n    \"9210\",\n    \"9211\",\n    \"9212\",\n    \"9213\",\n    \"9216\",\n    \"9217\",\n    \"9219\",\n    \"9220\",\n    \"9221\",\n    \"9222\",\n    \"9224\",\n    \"9226\",\n    \"9227\",\n    \"9228\",\n    \"9229\",\n    \"9230\",\n    \"9235\",\n    \"9236\",\n    \"9239\",\n    \"9240\",\n    \"9243\",\n    \"9244\",\n    \"9245\",\n    \"9250\",\n    \"9251\",\n    \"9252\",\n    \"9253\",\n    \"9254\",\n    \"9255\",\n    \"9256\",\n    \"9258\",\n    \"9259\",\n    \"9261\",\n    \"9264\",\n    \"9265\",\n    \"9267\",\n    \"9268\",\n    \"9269\",\n    \"9270\",\n    \"9272\",\n    \"9274\",\n    \"9276\",\n    \"9279\",\n    \"9280\",\n    \"9281\",\n    \"9284\",\n    \"9286\",\n    \"9289\",\n    \"9293\",\n    \"9297\",\n    \"9298\",\n    \"9299\",\n    \"9300\",\n    \"9302\",\n    \"9303\",\n    \"9305\",\n    \"9306\",\n    \"9307\",\n    \"9308\",\n    \"9311\",\n    \"9312\",\n    \"9313\",\n    \"9315\",\n    \"9316\",\n    \"9317\",\n    \"9318\",\n    \"9319\",\n    \"9320\",\n    \"9321\",\n    \"9325\",\n    \"9326\",\n    \"9329\",\n    \"9334\",\n    \"9337\",\n    \"9339\",\n    \"9340\",\n    \"9343\",\n    \"9347\",\n    \"9348\",\n    \"9349\",\n    \"9350\",\n    \"9354\",\n    \"9355\",\n    \"9358\",\n    \"9360\",\n    \"9362\",\n    \"9363\",\n    \"9364\",\n    \"9366\",\n    \"9369\",\n    \"9372\",\n    \"9373\",\n    \"9374\",\n    \"9376\",\n    \"9377\",\n    \"9383\",\n    \"9384\",\n    \"9385\",\n    \"9391\",\n    \"9392\",\n    \"9393\",\n    \"9395\",\n    \"9396\",\n    \"9397\",\n    \"9398\",\n    \"9400\",\n    \"9401\",\n    \"9402\",\n    \"9404\",\n    \"9405\",\n    \"9407\",\n    \"9410\",\n    \"9411\",\n    \"9413\",\n    \"9414\",\n    \"9416\",\n    \"9419\",\n    \"9420\",\n    \"9421\",\n    \"9422\",\n    \"9424\",\n    \"9425\",\n    \"9427\",\n    \"9428\",\n    \"9430\",\n    \"9431\",\n    \"9432\",\n    \"9433\",\n    \"9434\",\n    \"9435\",\n    \"9437\",\n    \"9438\",\n    \"9439\",\n    \"9440\",\n    \"9441\",\n    \"9442\",\n    \"9445\",\n    \"9446\",\n    \"9447\",\n    \"9448\",\n    \"9450\",\n    \"9451\",\n    \"9452\",\n    \"9453\",\n    \"9454\",\n    \"9455\",\n    \"9457\",\n    \"9458\",\n    \"9460\",\n    \"9463\",\n    \"9464\",\n    \"9466\",\n    \"9467\",\n    \"9469\",\n    \"9470\",\n    \"9471\",\n    \"9472\",\n    \"9473\",\n    \"9474\",\n    \"9476\",\n    \"9477\",\n    \"9478\",\n    \"9479\",\n    \"9480\",\n    \"9482\",\n    \"9483\",\n    \"9484\",\n    \"9486\",\n    \"9488\",\n    \"9490\",\n    \"9491\",\n    \"9497\",\n    \"9498\",\n    \"9500\",\n    \"9501\",\n    \"9502\",\n    \"9506\",\n    \"9510\",\n    \"9511\",\n    \"9512\",\n    \"9515\",\n    \"9516\",\n    \"9519\",\n    \"9520\",\n    \"9521\",\n    \"9522\",\n    \"9523\",\n    \"9526\",\n    \"9527\",\n    \"9528\",\n    \"9529\",\n    \"9531\",\n    \"9533\",\n    \"9537\",\n    \"9539\",\n    \"9542\",\n    \"9549\",\n    \"9551\",\n    \"9554\",\n    \"9556\",\n    \"9557\",\n    \"9558\",\n    \"9559\",\n    \"9562\",\n    \"9563\",\n    \"9564\",\n    \"9565\",\n    \"9568\",\n    \"9569\",\n    \"9570\",\n    \"9572\",\n    \"9573\",\n    \"9574\",\n    \"9575\",\n    \"9576\",\n    \"9578\",\n    \"9579\",\n    \"9580\",\n    \"9581\",\n    \"9582\",\n    \"9583\",\n    \"9584\",\n    \"9585\",\n    \"9589\",\n    \"9591\",\n    \"9594\",\n    \"9595\",\n    \"9596\",\n    \"9597\",\n    \"9598\",\n    \"9599\",\n    \"9600\",\n    \"9601\",\n    \"9602\",\n    \"9603\",\n    \"9604\",\n    \"9605\",\n    \"9606\",\n    \"9607\",\n    \"9608\",\n    \"9610\",\n    \"9612\",\n    \"9613\",\n    \"9614\",\n    \"9615\",\n    \"9616\",\n    \"9618\",\n    \"9619\",\n    \"9622\",\n    \"9623\",\n    \"9627\",\n    \"9629\",\n    \"9631\",\n    \"9632\",\n    \"9633\",\n    \"9634\",\n    \"9635\",\n    \"9636\",\n    \"9637\",\n    \"9638\",\n    \"9640\",\n    \"9641\",\n    \"9642\",\n    \"9643\",\n    \"9644\",\n    \"9645\",\n    \"9646\",\n    \"9648\",\n    \"9649\",\n    \"9651\",\n    \"9654\",\n    \"9656\",\n    \"9659\",\n    \"9660\",\n    \"9661\",\n    \"9662\",\n    \"9663\",\n    \"9664\",\n    \"9665\",\n    \"9666\",\n    \"9669\",\n    \"9671\",\n    \"9672\",\n    \"9673\",\n    \"9675\",\n    \"9677\",\n    \"9678\",\n    \"9681\",\n    \"9682\",\n    \"9683\",\n    \"9684\",\n    \"9686\",\n    \"9687\",\n    \"9689\",\n    \"9690\",\n    \"9692\",\n    \"9693\",\n    \"9694\",\n    \"9695\",\n    \"9697\",\n    \"9698\",\n    \"9700\",\n    \"9701\",\n    \"9703\",\n    \"9705\",\n    \"9706\",\n    \"9707\",\n    \"9709\",\n    \"9714\",\n    \"9717\",\n    \"9718\",\n    \"9721\",\n    \"9722\",\n    \"9725\",\n    \"9727\",\n    \"9731\",\n    \"9733\",\n    \"9734\",\n    \"9736\",\n    \"9737\",\n    \"9739\",\n    \"9742\",\n    \"9743\",\n    \"9746\",\n    \"9749\",\n    \"9751\",\n    \"9753\",\n    \"9754\",\n    \"9756\",\n    \"9757\",\n    \"9758\",\n    \"9759\",\n    \"9760\",\n    \"9761\",\n    \"9763\",\n    \"9764\",\n    \"9766\",\n    \"9767\",\n    \"9768\",\n    \"9773\",\n    \"9774\",\n    \"9775\",\n    \"9777\",\n    \"9778\",\n    \"9780\",\n    \"9781\",\n    \"9785\",\n    \"9786\",\n    \"9787\",\n    \"9788\",\n    \"9790\",\n    \"9791\",\n    \"9792\",\n    \"9794\",\n    \"9795\",\n    \"9797\",\n    \"9798\",\n    \"9800\",\n    \"9801\",\n    \"9802\",\n    \"9803\",\n    \"9804\",\n    \"9805\",\n    \"9808\",\n    \"9810\",\n    \"9812\",\n    \"9813\",\n    \"9815\",\n    \"9816\",\n    \"9817\",\n    \"9818\",\n    \"9821\",\n    \"9822\",\n    \"9824\",\n    \"9825\",\n    \"9826\",\n    \"9828\",\n    \"9829\",\n    \"9830\",\n    \"9832\",\n    \"9833\",\n    \"9836\",\n    \"9837\",\n    \"9839\",\n    \"9841\",\n    \"9842\",\n    \"9843\",\n    \"9844\",\n    \"9845\",\n    \"9847\",\n    \"9848\",\n    \"9849\",\n    \"9850\",\n    \"9852\",\n    \"9857\",\n    \"9858\",\n    \"9859\",\n    \"9860\",\n    \"9861\",\n    \"9864\",\n    \"9865\",\n    \"9867\",\n    \"9869\",\n    \"9870\",\n    \"9871\",\n    \"9873\",\n    \"9876\",\n    \"9877\",\n    \"9878\",\n    \"9879\",\n    \"9881\",\n    \"9882\",\n    \"9886\",\n    \"9887\",\n    \"9889\",\n    \"9890\",\n    \"9892\",\n    \"9893\",\n    \"9894\",\n    \"9896\",\n    \"9897\",\n    \"9899\",\n    \"9900\",\n    \"9901\",\n    \"9903\",\n    \"9904\",\n    \"9905\",\n    \"9907\",\n    \"9908\",\n    \"9909\",\n    \"9918\",\n    \"9920\",\n    \"9921\",\n    \"9924\",\n    \"9926\",\n    \"9928\",\n    \"9929\",\n    \"9932\",\n    \"9933\",\n    \"9934\",\n    \"9935\",\n    \"9936\",\n    \"9937\",\n    \"9939\",\n    \"9940\",\n    \"9941\",\n    \"9944\",\n    \"9947\",\n    \"9949\",\n    \"9950\",\n    \"9952\",\n    \"9954\",\n    \"9955\",\n    \"9957\",\n    \"9958\",\n    \"9959\",\n    \"9961\",\n    \"9962\",\n    \"9963\",\n    \"9966\",\n    \"9967\",\n    \"9969\",\n    \"9970\",\n    \"9973\",\n    \"9975\",\n    \"9976\",\n    \"9979\",\n    \"9982\",\n    \"9985\",\n    \"9986\",\n    \"9987\",\n    \"9988\",\n    \"9990\",\n    \"9992\",\n    \"9994\",\n    \"9995\",\n    \"9996\",\n    \"9998\",\n    \"9999\",\n    \"10000\",\n    \"10002\",\n    \"10003\",\n    \"10004\",\n    \"10008\",\n    \"10009\",\n    \"10010\",\n    \"10011\",\n    \"10012\",\n    \"10016\",\n    \"10018\",\n    \"10019\",\n    \"10021\",\n    \"10022\",\n    \"10023\",\n    \"10024\",\n    \"10025\",\n    \"10027\",\n    \"10029\",\n    \"10030\",\n    \"10031\",\n    \"10032\",\n    \"10036\",\n    \"10039\",\n    \"10040\",\n    \"10041\",\n    \"10042\",\n    \"10043\",\n    \"10044\",\n    \"10047\",\n    \"10049\",\n    \"10050\",\n    \"10052\",\n    \"10054\",\n    \"10057\",\n    \"10061\",\n    \"10062\",\n    \"10063\",\n    \"10064\",\n    \"10066\",\n    \"10067\",\n    \"10069\",\n    \"10070\",\n    \"10072\",\n    \"10073\",\n    \"10075\",\n    \"10076\",\n    \"10080\",\n    \"10081\",\n    \"10083\",\n    \"10084\",\n    \"10087\",\n    \"10088\",\n    \"10093\",\n    \"10095\",\n    \"10096\",\n    \"10098\",\n    \"10100\",\n    \"10104\",\n    \"10105\",\n    \"10106\",\n    \"10107\",\n    \"10108\",\n    \"10110\",\n    \"10111\",\n    \"10113\",\n    \"10117\",\n    \"10119\",\n    \"10120\",\n    \"10121\",\n    \"10122\",\n    \"10123\",\n    \"10125\",\n    \"10126\",\n    \"10127\",\n    \"10129\",\n    \"10131\",\n    \"10133\",\n    \"10136\",\n    \"10137\",\n    \"10139\",\n    \"10142\",\n    \"10144\",\n    \"10146\",\n    \"10148\",\n    \"10150\",\n    \"10151\",\n    \"10154\",\n    \"10158\",\n    \"10160\",\n    \"10161\",\n    \"10162\",\n    \"10163\",\n    \"10165\",\n    \"10167\",\n    \"10168\",\n    \"10169\",\n    \"10170\",\n    \"10171\",\n    \"10172\",\n    \"10173\",\n    \"10174\",\n    \"10175\",\n    \"10176\",\n    \"10177\",\n    \"10178\",\n    \"10179\",\n    \"10180\",\n    \"10181\",\n    \"10183\",\n    \"10186\",\n    \"10189\",\n    \"10190\",\n    \"10191\",\n    \"10192\",\n    \"10193\",\n    \"10195\",\n    \"10197\",\n    \"10199\",\n    \"10201\",\n    \"10202\",\n    \"10203\",\n    \"10204\",\n    \"10205\",\n    \"10207\",\n    \"10208\",\n    \"10209\",\n    \"10211\",\n    \"10212\",\n    \"10214\",\n    \"10215\",\n    \"10216\",\n    \"10217\",\n    \"10218\",\n    \"10219\",\n    \"10221\",\n    \"10222\",\n    \"10223\",\n    \"10224\",\n    \"10226\",\n    \"10228\",\n    \"10229\",\n    \"10230\",\n    \"10231\",\n    \"10232\",\n    \"10233\",\n    \"10236\",\n    \"10237\",\n    \"10239\",\n    \"10241\",\n    \"10242\",\n    \"10243\",\n    \"10249\",\n    \"10252\",\n    \"10253\",\n    \"10258\",\n    \"10259\",\n    \"10261\",\n    \"10262\",\n    \"10263\",\n    \"10265\",\n    \"10267\",\n    \"10269\",\n    \"10270\",\n    \"10272\",\n    \"10273\",\n    \"10274\",\n    \"10275\",\n    \"10276\",\n    \"10277\",\n    \"10278\",\n    \"10288\",\n    \"10291\",\n    \"10293\",\n    \"10295\",\n    \"10296\",\n    \"10297\",\n    \"10299\",\n    \"10301\",\n    \"10302\",\n    \"10303\",\n    \"10308\",\n    \"10309\",\n    \"10310\",\n    \"10311\",\n    \"10312\",\n    \"10313\",\n    \"10315\",\n    \"10317\",\n    \"10320\",\n    \"10321\",\n    \"10323\",\n    \"10327\",\n    \"10328\",\n    \"10329\",\n    \"10331\",\n    \"10332\",\n    \"10336\",\n    \"10340\",\n    \"10341\",\n    \"10342\",\n    \"10343\",\n    \"10346\",\n    \"10347\",\n    \"10348\",\n    \"10349\",\n    \"10350\",\n    \"10351\",\n    \"10353\",\n    \"10355\",\n    \"10357\",\n    \"10358\",\n    \"10359\",\n    \"10361\",\n    \"10362\",\n    \"10363\",\n    \"10364\",\n    \"10366\",\n    \"10367\",\n    \"10369\",\n    \"10371\",\n    \"10375\",\n    \"10377\",\n    \"10378\",\n    \"10379\",\n    \"10381\",\n    \"10384\",\n    \"10386\",\n    \"10387\",\n    \"10388\",\n    \"10389\",\n    \"10390\",\n    \"10393\",\n    \"10394\",\n    \"10395\",\n    \"10397\",\n    \"10398\",\n    \"10401\",\n    \"10402\",\n    \"10405\",\n    \"10409\",\n    \"10410\",\n    \"10413\",\n    \"10414\",\n    \"10415\",\n    \"10421\",\n    \"10426\",\n    \"10427\",\n    \"10429\",\n    \"10430\",\n    \"10431\",\n    \"10432\",\n    \"10433\",\n    \"10437\",\n    \"10438\",\n    \"10439\",\n    \"10440\",\n    \"10446\",\n    \"10447\",\n    \"10448\",\n    \"10449\",\n    \"10451\",\n    \"10453\",\n    \"10460\",\n    \"10461\",\n    \"10462\",\n    \"10464\",\n    \"10467\",\n    \"10468\",\n    \"10469\",\n    \"10470\",\n    \"10471\",\n    \"10472\",\n    \"10473\",\n    \"10474\",\n    \"10475\",\n    \"10477\",\n    \"10479\",\n    \"10480\",\n    \"10481\",\n    \"10482\",\n    \"10483\",\n    \"10484\",\n    \"10485\",\n    \"10486\",\n    \"10487\",\n    \"10488\",\n    \"10489\",\n    \"10490\",\n    \"10494\",\n    \"10495\",\n    \"10501\",\n    \"10502\",\n    \"10503\",\n    \"10504\",\n    \"10505\",\n    \"10506\",\n    \"10507\",\n    \"10508\",\n    \"10509\",\n    \"10510\",\n    \"10514\",\n    \"10515\",\n    \"10516\",\n    \"10517\",\n    \"10518\",\n    \"10524\",\n    \"10525\",\n    \"10526\",\n    \"10527\",\n    \"10529\",\n    \"10530\",\n    \"10531\",\n    \"10532\",\n    \"10534\",\n    \"10538\",\n    \"10539\",\n    \"10541\",\n    \"10542\",\n    \"10543\",\n    \"10546\",\n    \"10547\",\n    \"10548\",\n    \"10551\",\n    \"10552\",\n    \"10553\",\n    \"10557\",\n    \"10558\",\n    \"10561\",\n    \"10564\",\n    \"10566\",\n    \"10572\",\n    \"10573\",\n    \"10574\",\n    \"10581\",\n    \"10582\",\n    \"10583\",\n    \"10584\",\n    \"10585\",\n    \"10586\",\n    \"10587\",\n    \"10588\",\n    \"10589\",\n    \"10590\",\n    \"10591\",\n    \"10592\",\n    \"10593\",\n    \"10597\",\n    \"10598\",\n    \"10605\",\n    \"10606\",\n    \"10607\",\n    \"10608\",\n    \"10609\",\n    \"10610\",\n    \"10611\",\n    \"10612\",\n    \"10615\",\n    \"10617\",\n    \"10618\",\n    \"10619\",\n    \"10620\",\n    \"10621\",\n    \"10622\",\n    \"10624\",\n    \"10625\",\n    \"10626\",\n    \"10627\",\n    \"10628\",\n    \"10629\",\n    \"10632\",\n    \"10633\",\n    \"10636\",\n    \"10637\",\n    \"10639\",\n    \"10640\",\n    \"10641\",\n    \"10642\",\n    \"10644\",\n    \"10645\",\n    \"10646\",\n    \"10648\",\n    \"10650\",\n    \"10651\",\n    \"10653\",\n    \"10656\",\n    \"10657\",\n    \"10666\",\n    \"10667\",\n    \"10668\",\n    \"10669\",\n    \"10670\",\n    \"10674\",\n    \"10677\",\n    \"10679\",\n    \"10680\",\n    \"10682\",\n    \"10683\",\n    \"10684\",\n    \"10686\",\n    \"10687\",\n    \"10688\",\n    \"10690\",\n    \"10693\",\n    \"10698\",\n    \"10699\",\n    \"10701\",\n    \"10702\",\n    \"10703\",\n    \"10704\",\n    \"10707\",\n    \"10710\",\n    \"10712\",\n    \"10713\",\n    \"10714\",\n    \"10719\",\n    \"10720\",\n    \"10721\",\n    \"10724\",\n    \"10726\",\n    \"10727\",\n    \"10728\",\n    \"10730\",\n    \"10731\",\n    \"10734\",\n    \"10736\",\n    \"10737\",\n    \"10739\",\n    \"10740\",\n    \"10741\",\n    \"10742\",\n    \"10743\",\n    \"10744\",\n    \"10745\",\n    \"10746\",\n    \"10747\",\n    \"10748\",\n    \"10751\",\n    \"10752\",\n    \"10753\",\n    \"10754\",\n    \"10756\",\n    \"10757\",\n    \"10759\",\n    \"10760\",\n    \"10763\",\n    \"10765\",\n    \"10766\",\n    \"10767\",\n    \"10768\",\n    \"10769\",\n    \"10771\",\n    \"10773\",\n    \"10774\",\n    \"10775\",\n    \"10776\",\n    \"10777\",\n    \"10778\",\n    \"10779\",\n    \"10781\",\n    \"10782\",\n    \"10784\",\n    \"10787\",\n    \"10788\",\n    \"10789\",\n    \"10792\",\n    \"10794\",\n    \"10795\",\n    \"10796\",\n    \"10798\",\n    \"10799\",\n    \"10800\",\n    \"10803\",\n    \"10804\",\n    \"10805\",\n    \"10810\",\n    \"10813\",\n    \"10814\",\n    \"10817\",\n    \"10821\",\n    \"10822\",\n    \"10824\",\n    \"10825\",\n    \"10828\",\n    \"10829\",\n    \"10830\",\n    \"10831\",\n    \"10832\",\n    \"10835\",\n    \"10836\",\n    \"10842\",\n    \"10844\",\n    \"10845\",\n    \"10846\",\n    \"10847\",\n    \"10850\",\n    \"10851\",\n    \"10855\",\n    \"10857\",\n    \"10858\",\n    \"10859\",\n    \"10860\",\n    \"10861\",\n    \"10862\",\n    \"10864\",\n    \"10866\",\n    \"10868\",\n    \"10870\",\n    \"10872\",\n    \"10875\",\n    \"10876\",\n    \"10877\",\n    \"10878\",\n    \"10879\",\n    \"10880\",\n    \"10881\",\n    \"10882\",\n    \"10884\",\n    \"10887\",\n    \"10892\",\n    \"10895\",\n    \"10896\",\n    \"10898\",\n    \"10900\",\n    \"10901\",\n    \"10905\",\n    \"10906\",\n    \"10911\",\n    \"10913\",\n    \"10914\",\n    \"10915\",\n    \"10916\",\n    \"10917\",\n    \"10918\",\n    \"10920\",\n    \"10922\",\n    \"10923\",\n    \"10924\",\n    \"10925\",\n    \"10928\",\n    \"10929\",\n    \"10931\",\n    \"10934\",\n    \"10936\",\n    \"10938\",\n    \"10940\",\n    \"10942\",\n    \"10943\",\n    \"10946\",\n    \"10948\",\n    \"10949\",\n    \"10952\",\n    \"10953\",\n    \"10963\",\n    \"10968\",\n    \"10969\",\n    \"10972\",\n    \"10973\",\n    \"10975\",\n    \"10976\",\n    \"10977\",\n    \"10978\",\n    \"10983\",\n    \"10985\",\n    \"10989\",\n    \"10990\",\n    \"10992\",\n    \"10993\",\n    \"10994\",\n    \"10995\",\n    \"10996\",\n    \"10998\",\n    \"11001\",\n    \"11002\",\n    \"11004\",\n    \"11005\",\n    \"11008\",\n    \"11010\",\n    \"11011\",\n    \"11013\",\n    \"11014\",\n    \"11016\",\n    \"11018\",\n    \"11019\",\n    \"11021\",\n    \"11023\",\n    \"11024\",\n    \"11029\",\n    \"11030\",\n    \"11032\",\n    \"11033\",\n    \"11034\",\n    \"11037\",\n    \"11040\",\n    \"11041\",\n    \"11045\",\n    \"11047\",\n    \"11050\",\n    \"11051\",\n    \"11053\",\n    \"11054\",\n    \"11055\",\n    \"11057\",\n    \"11058\",\n    \"11059\",\n    \"11061\",\n    \"11062\",\n    \"11068\",\n    \"11069\",\n    \"11071\",\n    \"11072\",\n    \"11074\",\n    \"11075\",\n    \"11076\",\n    \"11077\",\n    \"11079\",\n    \"11081\",\n    \"11082\",\n    \"11084\",\n    \"11086\",\n    \"11087\",\n    \"11088\",\n    \"11089\",\n    \"11090\",\n    \"11092\",\n    \"11093\",\n    \"11095\",\n    \"11096\",\n    \"11097\",\n    \"11098\",\n    \"11100\",\n    \"11102\",\n    \"11103\",\n    \"11104\",\n    \"11106\",\n    \"11108\",\n    \"11109\",\n    \"11110\",\n    \"11111\",\n    \"11112\",\n    \"11115\",\n    \"11118\",\n    \"11121\",\n    \"11122\",\n    \"11124\",\n    \"11125\",\n    \"11130\",\n    \"11133\",\n    \"11134\",\n    \"11135\",\n    \"11136\",\n    \"11139\",\n    \"11140\",\n    \"11141\",\n    \"11143\",\n    \"11144\",\n    \"11146\",\n    \"11148\",\n    \"11150\",\n    \"11151\",\n    \"11152\",\n    \"11153\",\n    \"11156\",\n    \"11157\",\n    \"11158\",\n    \"11159\",\n    \"11160\",\n    \"11161\",\n    \"11162\",\n    \"11163\",\n    \"11165\",\n    \"11171\",\n    \"11172\",\n    \"11173\",\n    \"11174\",\n    \"11175\",\n    \"11176\",\n    \"11178\",\n    \"11179\",\n    \"11182\",\n    \"11183\",\n    \"11184\",\n    \"11188\",\n    \"11189\",\n    \"11192\",\n    \"11193\",\n    \"11194\",\n    \"11196\",\n    \"11197\",\n    \"11200\",\n    \"11203\",\n    \"11204\",\n    \"11205\",\n    \"11207\",\n    \"11208\",\n    \"11209\",\n    \"11210\",\n    \"11212\",\n    \"11213\",\n    \"11214\",\n    \"11216\",\n    \"11217\",\n    \"11221\",\n    \"11224\",\n    \"11225\",\n    \"11226\",\n    \"11229\",\n    \"11230\",\n    \"11231\",\n    \"11232\",\n    \"11233\",\n    \"11234\",\n    \"11236\",\n    \"11237\",\n    \"11239\",\n    \"11243\",\n    \"11244\",\n    \"11245\",\n    \"11247\",\n    \"11248\",\n    \"11249\",\n    \"11250\",\n    \"11251\",\n    \"11253\",\n    \"11255\",\n    \"11256\",\n    \"11258\",\n    \"11259\",\n    \"11261\",\n    \"11264\",\n    \"11266\",\n    \"11267\",\n    \"11269\",\n    \"11270\",\n    \"11271\",\n    \"11273\",\n    \"11275\",\n    \"11277\",\n    \"11278\",\n    \"11279\",\n    \"11281\",\n    \"11282\",\n    \"11286\",\n    \"11287\",\n    \"11288\",\n    \"11290\",\n    \"11291\",\n    \"11292\",\n    \"11294\",\n    \"11299\",\n    \"11301\",\n    \"11302\",\n    \"11303\",\n    \"11305\",\n    \"11307\",\n    \"11308\",\n    \"11310\",\n    \"11311\",\n    \"11312\",\n    \"11313\",\n    \"11315\",\n    \"11316\",\n    \"11321\",\n    \"11323\",\n    \"11325\",\n    \"11326\",\n    \"11327\",\n    \"11328\",\n    \"11329\",\n    \"11330\",\n    \"11331\",\n    \"11332\",\n    \"11336\",\n    \"11337\",\n    \"11338\",\n    \"11339\",\n    \"11340\",\n    \"11341\",\n    \"11343\",\n    \"11347\",\n    \"11348\",\n    \"11349\",\n    \"11350\",\n    \"11351\",\n    \"11352\",\n    \"11353\",\n    \"11354\",\n    \"11356\",\n    \"11357\",\n    \"11359\",\n    \"11361\",\n    \"11363\",\n    \"11365\",\n    \"11366\",\n    \"11370\",\n    \"11372\",\n    \"11375\",\n    \"11377\",\n    \"11378\",\n    \"11379\",\n    \"11381\",\n    \"11385\",\n    \"11386\",\n    \"11388\",\n    \"11389\",\n    \"11390\",\n    \"11398\",\n    \"11404\",\n    \"11405\",\n    \"11407\",\n    \"11410\",\n    \"11411\",\n    \"11412\",\n    \"11415\",\n    \"11419\",\n    \"11422\",\n    \"11424\",\n    \"11425\",\n    \"11426\",\n    \"11427\",\n    \"11433\",\n    \"11436\",\n    \"11437\",\n    \"11438\",\n    \"11440\",\n    \"11441\",\n    \"11442\",\n    \"11443\",\n    \"11447\",\n    \"11448\",\n    \"11449\",\n    \"11450\",\n    \"11451\",\n    \"11455\",\n    \"11456\",\n    \"11458\",\n    \"11459\",\n    \"11460\",\n    \"11461\",\n    \"11464\",\n    \"11465\",\n    \"11469\",\n    \"11470\",\n    \"11471\",\n    \"11473\",\n    \"11474\",\n    \"11475\",\n    \"11476\",\n    \"11477\",\n    \"11478\",\n    \"11482\",\n    \"11484\",\n    \"11485\",\n    \"11486\",\n    \"11490\",\n    \"11493\",\n    \"11494\",\n    \"11495\",\n    \"11499\",\n    \"11500\",\n    \"11501\",\n    \"11507\",\n    \"11512\",\n    \"11516\",\n    \"11517\",\n    \"11518\",\n    \"11519\",\n    \"11520\",\n    \"11522\",\n    \"11524\",\n    \"11525\",\n    \"11526\",\n    \"11527\",\n    \"11529\",\n    \"11530\",\n    \"11531\",\n    \"11534\",\n    \"11535\",\n    \"11536\",\n    \"11537\",\n    \"11539\",\n    \"11541\",\n    \"11542\",\n    \"11543\",\n    \"11544\",\n    \"11550\",\n    \"11551\",\n    \"11553\",\n    \"11554\",\n    \"11555\",\n    \"11557\",\n    \"11560\",\n    \"11561\",\n    \"11562\",\n    \"11564\",\n    \"11565\",\n    \"11566\",\n    \"11567\",\n    \"11568\",\n    \"11569\",\n    \"11570\",\n    \"11571\",\n    \"11573\",\n    \"11574\",\n    \"11575\",\n    \"11576\",\n    \"11577\",\n    \"11579\",\n    \"11580\",\n    \"11585\",\n    \"11586\",\n    \"11592\",\n    \"11598\",\n    \"11600\",\n    \"11602\",\n    \"11604\",\n    \"11610\",\n    \"11611\",\n    \"11612\",\n    \"11614\",\n    \"11615\",\n    \"11619\",\n    \"11620\",\n    \"11621\",\n    \"11622\",\n    \"11623\",\n    \"11624\",\n    \"11625\",\n    \"11626\",\n    \"11628\",\n    \"11629\",\n    \"11630\",\n    \"11631\",\n    \"11632\",\n    \"11633\",\n    \"11634\",\n    \"11635\",\n    \"11637\",\n    \"11640\",\n    \"11644\",\n    \"11645\",\n    \"11647\",\n    \"11648\",\n    \"11649\",\n    \"11650\",\n    \"11651\",\n    \"11653\",\n    \"11654\",\n    \"11655\",\n    \"11657\",\n    \"11658\",\n    \"11659\",\n    \"11661\",\n    \"11667\",\n    \"11668\",\n    \"11669\",\n    \"11674\",\n    \"11676\",\n    \"11677\",\n    \"11678\",\n    \"11679\",\n    \"11680\",\n    \"11682\",\n    \"11683\",\n    \"11685\",\n    \"11687\",\n    \"11689\",\n    \"11691\",\n    \"11692\",\n    \"11693\",\n    \"11697\",\n    \"11698\",\n    \"11699\",\n    \"11701\",\n    \"11702\",\n    \"11703\",\n    \"11704\",\n    \"11705\",\n    \"11706\",\n    \"11707\",\n    \"11709\",\n    \"11710\",\n    \"11711\",\n    \"11714\",\n    \"11717\",\n    \"11718\",\n    \"11719\",\n    \"11721\",\n    \"11722\",\n    \"11723\",\n    \"11724\",\n    \"11725\",\n    \"11726\",\n    \"11727\",\n    \"11729\",\n    \"11730\",\n    \"11732\",\n    \"11735\",\n    \"11737\",\n    \"11739\",\n    \"11740\",\n    \"11741\",\n    \"11743\",\n    \"11744\",\n    \"11746\",\n    \"11748\",\n    \"11749\",\n    \"11751\",\n    \"11752\",\n    \"11753\",\n    \"11755\",\n    \"11759\",\n    \"11762\",\n    \"11763\",\n    \"11764\",\n    \"11765\",\n    \"11766\",\n    \"11769\",\n    \"11770\",\n    \"11771\",\n    \"11775\",\n    \"11776\",\n    \"11778\",\n    \"11780\",\n    \"11781\",\n    \"11782\",\n    \"11783\",\n    \"11785\",\n    \"11787\",\n    \"11788\",\n    \"11790\",\n    \"11791\",\n    \"11793\",\n    \"11794\",\n    \"11796\",\n    \"11797\",\n    \"11798\",\n    \"11800\",\n    \"11801\",\n    \"11804\",\n    \"11806\",\n    \"11807\",\n    \"11809\",\n    \"11810\",\n    \"11811\",\n    \"11812\",\n    \"11814\",\n    \"11816\",\n    \"11820\",\n    \"11821\",\n    \"11822\",\n    \"11823\",\n    \"11824\",\n    \"11827\",\n    \"11828\",\n    \"11831\",\n    \"11832\",\n    \"11833\",\n    \"11834\",\n    \"11835\",\n    \"11836\",\n    \"11837\",\n    \"11838\",\n    \"11840\",\n    \"11841\",\n    \"11842\",\n    \"11843\",\n    \"11844\",\n    \"11846\",\n    \"11850\",\n    \"11852\",\n    \"11853\",\n    \"11854\",\n    \"11855\",\n    \"11856\",\n    \"11857\",\n    \"11858\",\n    \"11859\",\n    \"11861\",\n    \"11864\",\n    \"11865\",\n    \"11867\",\n    \"11869\",\n    \"11870\",\n    \"11871\",\n    \"11872\",\n    \"11875\",\n    \"11876\",\n    \"11877\",\n    \"11878\",\n    \"11879\",\n    \"11880\",\n    \"11883\",\n    \"11885\",\n    \"11887\",\n    \"11888\",\n    \"11891\",\n    \"11893\",\n    \"11894\",\n    \"11895\",\n    \"11896\",\n    \"11899\",\n    \"11900\",\n    \"11903\",\n    \"11905\",\n    \"11906\",\n    \"11907\",\n    \"11908\",\n    \"11909\",\n    \"11912\",\n    \"11913\",\n    \"11914\",\n    \"11915\",\n    \"11916\",\n    \"11919\",\n    \"11920\",\n    \"11924\",\n    \"11929\",\n    \"11933\",\n    \"11935\",\n    \"11937\",\n    \"11938\",\n    \"11939\",\n    \"11940\",\n    \"11941\",\n    \"11944\",\n    \"11945\",\n    \"11947\",\n    \"11950\",\n    \"11952\",\n    \"11953\",\n    \"11956\",\n    \"11957\",\n    \"11958\",\n    \"11959\",\n    \"11960\",\n    \"11961\",\n    \"11965\",\n    \"11966\",\n    \"11967\",\n    \"11968\",\n    \"11969\",\n    \"11970\",\n    \"11971\",\n    \"11972\",\n    \"11974\",\n    \"11976\",\n    \"11977\",\n    \"11981\",\n    \"11985\",\n    \"11987\",\n    \"11989\",\n    \"11991\",\n    \"11993\",\n    \"11994\",\n    \"11996\",\n    \"11997\",\n    \"11998\",\n    \"11999\",\n    \"12000\",\n    \"12001\",\n    \"12002\",\n    \"12003\",\n    \"12004\",\n    \"12007\",\n    \"12010\",\n    \"12012\",\n    \"12013\",\n    \"12014\",\n    \"12015\",\n    \"12017\",\n    \"12018\",\n    \"12019\",\n    \"12024\",\n    \"12029\",\n    \"12035\",\n    \"12036\",\n    \"12037\",\n    \"12041\",\n    \"12044\",\n    \"12045\",\n    \"12046\",\n    \"12048\",\n    \"12049\",\n    \"12050\",\n    \"12051\",\n    \"12052\",\n    \"12053\",\n    \"12057\",\n    \"12058\",\n    \"12059\",\n    \"12060\",\n    \"12061\",\n    \"12062\",\n    \"12065\",\n    \"12066\",\n    \"12067\",\n    \"12069\",\n    \"12070\",\n    \"12071\",\n    \"12073\",\n    \"12074\",\n    \"12075\",\n    \"12077\",\n    \"12078\",\n    \"12079\",\n    \"12080\",\n    \"12081\",\n    \"12082\",\n    \"12084\",\n    \"12085\",\n    \"12086\",\n    \"12087\",\n    \"12088\",\n    \"12089\",\n    \"12090\",\n    \"12091\",\n    \"12093\",\n    \"12094\",\n    \"12097\",\n    \"12098\",\n    \"12104\",\n    \"12106\",\n    \"12107\",\n    \"12111\",\n    \"12112\",\n    \"12115\",\n    \"12119\",\n    \"12124\",\n    \"12125\",\n    \"12126\",\n    \"12127\",\n    \"12128\",\n    \"12130\",\n    \"12131\",\n    \"12133\",\n    \"12136\",\n    \"12140\",\n    \"12141\",\n    \"12142\",\n    \"12144\",\n    \"12145\",\n    \"12146\",\n    \"12147\",\n    \"12148\",\n    \"12149\",\n    \"12150\",\n    \"12151\",\n    \"12155\",\n    \"12156\",\n    \"12160\",\n    \"12162\",\n    \"12163\",\n    \"12165\",\n    \"12166\",\n    \"12169\",\n    \"12170\",\n    \"12171\",\n    \"12177\",\n    \"12178\",\n    \"12180\",\n    \"12182\",\n    \"12184\",\n    \"12185\",\n    \"12186\",\n    \"12187\",\n    \"12188\",\n    \"12190\",\n    \"12195\",\n    \"12199\",\n    \"12200\",\n    \"12201\",\n    \"12202\",\n    \"12203\",\n    \"12206\",\n    \"12207\",\n    \"12208\",\n    \"12209\",\n    \"12211\",\n    \"12212\",\n    \"12216\",\n    \"12217\",\n    \"12218\",\n    \"12220\",\n    \"12221\",\n    \"12222\",\n    \"12224\",\n    \"12225\",\n    \"12227\",\n    \"12228\",\n    \"12230\",\n    \"12231\",\n    \"12233\",\n    \"12235\",\n    \"12236\",\n    \"12237\",\n    \"12238\",\n    \"12241\",\n    \"12242\",\n    \"12243\",\n    \"12244\",\n    \"12245\",\n    \"12246\",\n    \"12248\",\n    \"12249\",\n    \"12250\",\n    \"12251\",\n    \"12253\",\n    \"12254\",\n    \"12256\",\n    \"12257\",\n    \"12258\",\n    \"12259\",\n    \"12261\",\n    \"12262\",\n    \"12264\",\n    \"12267\",\n    \"12270\",\n    \"12271\",\n    \"12272\",\n    \"12273\",\n    \"12274\",\n    \"12275\",\n    \"12278\",\n    \"12279\",\n    \"12280\",\n    \"12281\",\n    \"12282\",\n    \"12283\",\n    \"12285\",\n    \"12286\",\n    \"12288\",\n    \"12289\",\n    \"12290\",\n    \"12291\",\n    \"12293\",\n    \"12295\",\n    \"12297\",\n    \"12299\",\n    \"12300\",\n    \"12301\",\n    \"12303\",\n    \"12305\",\n    \"12306\",\n    \"12307\",\n    \"12308\",\n    \"12312\",\n    \"12314\",\n    \"12318\",\n    \"12319\",\n    \"12322\",\n    \"12323\",\n    \"12325\",\n    \"12327\",\n    \"12328\",\n    \"12329\",\n    \"12330\",\n    \"12331\",\n    \"12333\",\n    \"12334\",\n    \"12336\",\n    \"12337\",\n    \"12339\",\n    \"12343\",\n    \"12345\",\n    \"12347\",\n    \"12348\",\n    \"12351\",\n    \"12353\",\n    \"12354\",\n    \"12355\",\n    \"12359\",\n    \"12360\",\n    \"12364\",\n    \"12366\",\n    \"12367\",\n    \"12368\",\n    \"12371\",\n    \"12372\",\n    \"12373\",\n    \"12374\",\n    \"12375\",\n    \"12377\",\n    \"12378\",\n    \"12379\",\n    \"12380\",\n    \"12381\",\n    \"12385\",\n    \"12386\",\n    \"12387\",\n    \"12389\",\n    \"12391\",\n    \"12392\",\n    \"12393\",\n    \"12395\",\n    \"12400\",\n    \"12401\",\n    \"12402\",\n    \"12404\",\n    \"12405\",\n    \"12407\",\n    \"12409\",\n    \"12410\",\n    \"12411\",\n    \"12412\",\n    \"12415\",\n    \"12416\",\n    \"12417\",\n    \"12419\",\n    \"12423\",\n    \"12425\",\n    \"12426\",\n    \"12428\",\n    \"12429\",\n    \"12430\",\n    \"12431\",\n    \"12432\",\n    \"12433\",\n    \"12434\",\n    \"12435\",\n    \"12436\",\n    \"12437\",\n    \"12440\",\n    \"12442\",\n    \"12443\",\n    \"12444\",\n    \"12447\",\n    \"12448\",\n    \"12449\",\n    \"12450\",\n    \"12451\",\n    \"12456\",\n    \"12457\",\n    \"12458\",\n    \"12463\",\n    \"12464\",\n    \"12465\",\n    \"12466\",\n    \"12469\",\n    \"12470\",\n    \"12471\",\n    \"12472\",\n    \"12474\",\n    \"12475\",\n    \"12476\",\n    \"12478\",\n    \"12481\",\n    \"12483\",\n    \"12491\",\n    \"12492\",\n    \"12493\",\n    \"12494\",\n    \"12495\",\n    \"12496\",\n    \"12498\",\n    \"12499\",\n    \"12501\",\n    \"12502\",\n    \"12503\",\n    \"12505\",\n    \"12508\",\n    \"12510\",\n    \"12511\",\n    \"12512\",\n    \"12514\",\n    \"12515\",\n    \"12516\",\n    \"12517\",\n    \"12526\",\n    \"12527\",\n    \"12528\",\n    \"12529\",\n    \"12530\",\n    \"12531\",\n    \"12532\",\n    \"12533\",\n    \"12537\",\n    \"12538\",\n    \"12539\",\n    \"12540\",\n    \"12542\",\n    \"12543\",\n    \"12545\",\n    \"12548\",\n    \"12550\",\n    \"12552\",\n    \"12558\",\n    \"12559\",\n    \"12560\",\n    \"12561\",\n    \"12562\",\n    \"12563\",\n    \"12564\",\n    \"12565\",\n    \"12566\",\n    \"12568\",\n    \"12569\",\n    \"12570\",\n    \"12571\",\n    \"12572\",\n    \"12573\",\n    \"12574\",\n    \"12575\",\n    \"12576\",\n    \"12580\",\n    \"12581\",\n    \"12582\",\n    \"12584\",\n    \"12585\",\n    \"12586\",\n    \"12588\",\n    \"12589\",\n    \"12590\",\n    \"12592\",\n    \"12593\",\n    \"12594\",\n    \"12596\",\n    \"12597\",\n    \"12598\",\n    \"12600\",\n    \"12603\",\n    \"12604\",\n    \"12605\",\n    \"12609\",\n    \"12610\",\n    \"12614\",\n    \"12616\",\n    \"12618\",\n    \"12619\",\n    \"12620\",\n    \"12622\",\n    \"12623\",\n    \"12624\",\n    \"12625\",\n    \"12630\",\n    \"12632\",\n    \"12633\",\n    \"12634\",\n    \"12635\",\n    \"12636\",\n    \"12637\",\n    \"12638\",\n    \"12639\",\n    \"12640\",\n    \"12643\",\n    \"12646\",\n    \"12648\",\n    \"12649\",\n    \"12650\",\n    \"12651\",\n    \"12653\",\n    \"12654\",\n    \"12655\",\n    \"12656\",\n    \"12657\",\n    \"12658\",\n    \"12659\",\n    \"12660\",\n    \"12663\",\n    \"12666\",\n    \"12667\",\n    \"12668\",\n    \"12671\",\n    \"12674\",\n    \"12678\",\n    \"12680\",\n    \"12684\",\n    \"12686\",\n    \"12687\",\n    \"12689\",\n    \"12690\",\n    \"12693\",\n    \"12695\",\n    \"12696\",\n    \"12699\",\n    \"12700\",\n    \"12701\",\n    \"12702\",\n    \"12703\",\n    \"12704\",\n    \"12708\",\n    \"12709\",\n    \"12713\",\n    \"12715\",\n    \"12716\",\n    \"12717\",\n    \"12718\",\n    \"12720\",\n    \"12725\",\n    \"12726\",\n    \"12727\",\n    \"12728\",\n    \"12729\",\n    \"12731\",\n    \"12734\",\n    \"12735\",\n    \"12736\",\n    \"12737\",\n    \"12738\",\n    \"12740\",\n    \"12743\",\n    \"12744\",\n    \"12747\",\n    \"12748\",\n    \"12749\",\n    \"12750\",\n    \"12755\",\n    \"12759\",\n    \"12761\",\n    \"12764\",\n    \"12768\",\n    \"12770\",\n    \"12771\",\n    \"12774\",\n    \"12778\",\n    \"12779\",\n    \"12780\",\n    \"12781\",\n    \"12782\",\n    \"12783\",\n    \"12784\",\n    \"12788\",\n    \"12790\",\n    \"12791\",\n    \"12792\",\n    \"12794\",\n    \"12795\",\n    \"12797\",\n    \"12800\",\n    \"12801\",\n    \"12802\",\n    \"12803\",\n    \"12804\",\n    \"12805\",\n    \"12806\",\n    \"12807\",\n    \"12808\",\n    \"12810\",\n    \"12813\",\n    \"12816\",\n    \"12817\",\n    \"12818\",\n    \"12819\",\n    \"12822\",\n    \"12823\",\n    \"12825\",\n    \"12828\",\n    \"12830\",\n    \"12832\",\n    \"12834\",\n    \"12835\",\n    \"12836\",\n    \"12837\",\n    \"12840\",\n    \"12843\",\n    \"12844\",\n    \"12846\",\n    \"12848\",\n    \"12849\",\n    \"12851\",\n    \"12852\",\n    \"12855\",\n    \"12857\",\n    \"12859\",\n    \"12862\",\n    \"12865\",\n    \"12867\",\n    \"12868\",\n    \"12870\",\n    \"12872\",\n    \"12873\",\n    \"12874\",\n    \"12876\",\n    \"12877\",\n    \"12879\",\n    \"12880\",\n    \"12881\",\n    \"12883\",\n    \"12884\",\n    \"12885\",\n    \"12886\",\n    \"12887\",\n    \"12890\",\n    \"12892\",\n    \"12893\",\n    \"12895\",\n    \"12899\",\n    \"12901\",\n    \"12902\",\n    \"12904\",\n    \"12907\",\n    \"12908\",\n    \"12911\",\n    \"12912\",\n    \"12913\",\n    \"12917\",\n    \"12918\",\n    \"12919\",\n    \"12920\",\n    \"12921\",\n    \"12922\",\n    \"12923\",\n    \"12926\",\n    \"12927\",\n    \"12928\",\n    \"12930\",\n    \"12931\",\n    \"12932\",\n    \"12939\",\n    \"12941\",\n    \"12942\",\n    \"12943\",\n    \"12945\",\n    \"12946\",\n    \"12948\",\n    \"12949\",\n    \"12950\",\n    \"12953\",\n    \"12954\",\n    \"12955\",\n    \"12956\",\n    \"12958\",\n    \"12960\",\n    \"12962\",\n    \"12963\",\n    \"12964\",\n    \"12967\",\n    \"12968\",\n    \"12969\",\n    \"12970\",\n    \"12971\",\n    \"12973\",\n    \"12974\",\n    \"12975\",\n    \"12978\",\n    \"12981\",\n    \"12982\",\n    \"12985\",\n    \"12987\",\n    \"12988\",\n    \"12989\",\n    \"12990\",\n    \"12991\",\n    \"12993\",\n    \"12994\",\n    \"12996\",\n    \"12997\",\n    \"12998\",\n    \"13000\",\n    \"13001\",\n    \"13002\",\n    \"13003\",\n    \"13004\",\n    \"13008\",\n    \"13010\",\n    \"13011\",\n    \"13013\",\n    \"13014\",\n    \"13018\",\n    \"13019\",\n    \"13022\",\n    \"13023\",\n    \"13024\",\n    \"13025\",\n    \"13026\",\n    \"13027\",\n    \"13028\",\n    \"13029\",\n    \"13030\",\n    \"13031\",\n    \"13032\",\n    \"13034\",\n    \"13036\",\n    \"13037\",\n    \"13038\",\n    \"13039\",\n    \"13040\",\n    \"13041\",\n    \"13044\",\n    \"13045\",\n    \"13046\",\n    \"13048\",\n    \"13050\",\n    \"13051\",\n    \"13052\",\n    \"13053\",\n    \"13055\",\n    \"13056\",\n    \"13059\",\n    \"13060\",\n    \"13065\",\n    \"13067\",\n    \"13069\",\n    \"13070\",\n    \"13073\",\n    \"13074\",\n    \"13075\",\n    \"13076\",\n    \"13077\",\n    \"13080\",\n    \"13081\",\n    \"13082\",\n    \"13091\",\n    \"13092\",\n    \"13094\",\n    \"13095\",\n    \"13097\",\n    \"13098\",\n    \"13100\",\n    \"13101\",\n    \"13103\",\n    \"13104\",\n    \"13105\",\n    \"13106\",\n    \"13107\",\n    \"13109\",\n    \"13111\",\n    \"13112\",\n    \"13115\",\n    \"13116\",\n    \"13117\",\n    \"13118\",\n    \"13119\",\n    \"13120\",\n    \"13123\",\n    \"13124\",\n    \"13126\",\n    \"13127\",\n    \"13129\",\n    \"13130\",\n    \"13132\",\n    \"13134\",\n    \"13135\",\n    \"13137\",\n    \"13138\",\n    \"13139\",\n    \"13141\",\n    \"13142\",\n    \"13143\",\n    \"13146\",\n    \"13150\",\n    \"13151\",\n    \"13152\",\n    \"13153\",\n    \"13154\",\n    \"13157\",\n    \"13158\",\n    \"13159\",\n    \"13160\",\n    \"13161\",\n    \"13163\",\n    \"13165\",\n    \"13167\",\n    \"13168\",\n    \"13170\",\n    \"13171\",\n    \"13172\",\n    \"13173\",\n    \"13174\",\n    \"13177\",\n    \"13178\",\n    \"13182\",\n    \"13185\",\n    \"13186\",\n    \"13188\",\n    \"13190\",\n    \"13191\",\n    \"13192\",\n    \"13193\",\n    \"13194\",\n    \"13195\",\n    \"13196\",\n    \"13198\",\n    \"13200\",\n    \"13201\",\n    \"13206\",\n    \"13208\",\n    \"13211\",\n    \"13213\",\n    \"13214\",\n    \"13216\",\n    \"13218\",\n    \"13221\",\n    \"13226\",\n    \"13228\",\n    \"13232\",\n    \"13233\",\n    \"13234\",\n    \"13237\",\n    \"13239\",\n    \"13242\",\n    \"13243\",\n    \"13244\",\n    \"13245\",\n    \"13246\",\n    \"13249\",\n    \"13250\",\n    \"13254\",\n    \"13255\",\n    \"13256\",\n    \"13257\",\n    \"13259\",\n    \"13260\",\n    \"13261\",\n    \"13264\",\n    \"13266\",\n    \"13267\",\n    \"13269\",\n    \"13272\",\n    \"13273\",\n    \"13275\",\n    \"13277\",\n    \"13279\",\n    \"13281\",\n    \"13283\",\n    \"13284\",\n    \"13287\",\n    \"13288\",\n    \"13289\",\n    \"13291\",\n    \"13292\",\n    \"13295\",\n    \"13296\",\n    \"13297\",\n    \"13299\",\n    \"13301\",\n    \"13302\",\n    \"13303\",\n    \"13305\",\n    \"13306\",\n    \"13307\",\n    \"13310\",\n    \"13313\",\n    \"13314\",\n    \"13315\",\n    \"13316\",\n    \"13320\",\n    \"13322\",\n    \"13323\",\n    \"13324\",\n    \"13326\",\n    \"13327\",\n    \"13328\",\n    \"13329\",\n    \"13330\",\n    \"13332\",\n    \"13334\",\n    \"13336\",\n    \"13337\",\n    \"13338\",\n    \"13340\",\n    \"13343\",\n    \"13346\",\n    \"13347\",\n    \"13349\",\n    \"13350\",\n    \"13351\",\n    \"13352\",\n    \"13353\",\n    \"13355\",\n    \"13357\",\n    \"13358\",\n    \"13359\",\n    \"13360\",\n    \"13362\",\n    \"13363\",\n    \"13364\",\n    \"13366\",\n    \"13367\",\n    \"13368\",\n    \"13369\",\n    \"13370\",\n    \"13371\",\n    \"13372\",\n    \"13373\",\n    \"13374\",\n    \"13377\",\n    \"13378\",\n    \"13381\",\n    \"13382\",\n    \"13383\",\n    \"13384\",\n    \"13385\",\n    \"13386\",\n    \"13389\",\n    \"13390\",\n    \"13391\",\n    \"13398\",\n    \"13399\",\n    \"13400\",\n    \"13401\",\n    \"13402\",\n    \"13403\",\n    \"13405\",\n    \"13406\",\n    \"13407\",\n    \"13409\",\n    \"13411\",\n    \"13412\",\n    \"13416\",\n    \"13417\",\n    \"13418\",\n    \"13419\",\n    \"13422\",\n    \"13423\",\n    \"13425\",\n    \"13428\",\n    \"13429\",\n    \"13430\",\n    \"13431\",\n    \"13432\",\n    \"13433\",\n    \"13435\",\n    \"13436\",\n    \"13438\",\n    \"13439\",\n    \"13440\",\n    \"13442\",\n    \"13444\",\n    \"13447\",\n    \"13448\",\n    \"13449\",\n    \"13451\",\n    \"13455\",\n    \"13460\",\n    \"13462\",\n    \"13465\",\n    \"13466\",\n    \"13467\",\n    \"13470\",\n    \"13472\",\n    \"13473\",\n    \"13474\",\n    \"13481\",\n    \"13482\",\n    \"13483\",\n    \"13487\",\n    \"13490\",\n    \"13492\",\n    \"13493\",\n    \"13495\",\n    \"13496\",\n    \"13498\",\n    \"13499\",\n    \"13501\",\n    \"13504\",\n    \"13505\",\n    \"13506\",\n    \"13508\",\n    \"13509\",\n    \"13511\",\n    \"13513\",\n    \"13514\",\n    \"13517\",\n    \"13518\",\n    \"13519\",\n    \"13520\",\n    \"13522\",\n    \"13523\",\n    \"13524\",\n    \"13526\",\n    \"13527\",\n    \"13530\",\n    \"13531\",\n    \"13532\",\n    \"13533\",\n    \"13534\",\n    \"13535\",\n    \"13537\",\n    \"13538\",\n    \"13540\",\n    \"13541\",\n    \"13542\",\n    \"13543\",\n    \"13545\",\n    \"13546\",\n    \"13548\",\n    \"13549\",\n    \"13550\",\n    \"13553\",\n    \"13554\",\n    \"13555\",\n    \"13556\",\n    \"13557\",\n    \"13558\",\n    \"13560\",\n    \"13564\",\n    \"13565\",\n    \"13566\",\n    \"13567\",\n    \"13570\",\n    \"13572\",\n    \"13575\",\n    \"13576\",\n    \"13578\",\n    \"13579\",\n    \"13580\",\n    \"13581\",\n    \"13583\",\n    \"13585\",\n    \"13587\",\n    \"13589\",\n    \"13591\",\n    \"13593\",\n    \"13594\",\n    \"13595\",\n    \"13596\",\n    \"13597\",\n    \"13598\",\n    \"13600\",\n    \"13601\",\n    \"13606\",\n    \"13607\",\n    \"13608\",\n    \"13609\",\n    \"13610\",\n    \"13612\",\n    \"13617\",\n    \"13618\",\n    \"13620\",\n    \"13624\",\n    \"13626\",\n    \"13627\",\n    \"13629\",\n    \"13630\",\n    \"13631\",\n    \"13633\",\n    \"13634\",\n    \"13635\",\n    \"13636\",\n    \"13637\",\n    \"13638\",\n    \"13639\",\n    \"13641\",\n    \"13642\",\n    \"13645\",\n    \"13646\",\n    \"13647\",\n    \"13648\",\n    \"13649\",\n    \"13650\",\n    \"13651\",\n    \"13653\",\n    \"13655\",\n    \"13656\",\n    \"13657\",\n    \"13658\",\n    \"13659\",\n    \"13660\",\n    \"13662\",\n    \"13663\",\n    \"13664\",\n    \"13665\",\n    \"13668\",\n    \"13669\",\n    \"13670\",\n    \"13671\",\n    \"13672\",\n    \"13674\",\n    \"13675\",\n    \"13677\",\n    \"13679\",\n    \"13680\",\n    \"13684\",\n    \"13685\",\n    \"13686\",\n    \"13690\",\n    \"13691\",\n    \"13693\",\n    \"13698\",\n    \"13700\",\n    \"13703\",\n    \"13705\",\n    \"13706\",\n    \"13709\",\n    \"13710\",\n    \"13711\",\n    \"13712\",\n    \"13713\",\n    \"13714\",\n    \"13717\",\n    \"13718\",\n    \"13720\",\n    \"13724\",\n    \"13725\",\n    \"13727\",\n    \"13728\",\n    \"13729\",\n    \"13730\",\n    \"13731\",\n    \"13733\",\n    \"13734\",\n    \"13735\",\n    \"13742\",\n    \"13743\",\n    \"13747\",\n    \"13749\",\n    \"13750\",\n    \"13751\",\n    \"13755\",\n    \"13757\",\n    \"13760\",\n    \"13761\",\n    \"13763\",\n    \"13764\",\n    \"13766\",\n    \"13768\",\n    \"13771\",\n    \"13772\",\n    \"13773\",\n    \"13774\",\n    \"13775\",\n    \"13776\",\n    \"13779\",\n    \"13780\",\n    \"13782\",\n    \"13785\",\n    \"13786\",\n    \"13787\",\n    \"13788\",\n    \"13789\",\n    \"13790\",\n    \"13791\",\n    \"13793\",\n    \"13796\",\n    \"13798\",\n    \"13799\",\n    \"13800\",\n    \"13801\",\n    \"13802\",\n    \"13804\",\n    \"13805\",\n    \"13806\",\n    \"13810\",\n    \"13812\",\n    \"13813\",\n    \"13817\",\n    \"13819\",\n    \"13820\",\n    \"13821\",\n    \"13822\",\n    \"13823\",\n    \"13824\",\n    \"13825\",\n    \"13826\",\n    \"13828\",\n    \"13829\",\n    \"13831\",\n    \"13832\",\n    \"13833\",\n    \"13838\",\n    \"13840\",\n    \"13842\",\n    \"13843\",\n    \"13844\",\n    \"13846\",\n    \"13847\",\n    \"13849\",\n    \"13852\",\n    \"13853\",\n    \"13854\",\n    \"13855\",\n    \"13857\",\n    \"13859\",\n    \"13860\",\n    \"13861\",\n    \"13863\",\n    \"13865\",\n    \"13866\",\n    \"13867\",\n    \"13871\",\n    \"13874\",\n    \"13875\",\n    \"13876\",\n    \"13877\",\n    \"13880\",\n    \"13882\",\n    \"13883\",\n    \"13884\",\n    \"13885\",\n    \"13888\",\n    \"13889\",\n    \"13890\",\n    \"13891\",\n    \"13892\",\n    \"13894\",\n    \"13895\",\n    \"13897\",\n    \"13899\",\n    \"13900\",\n    \"13901\",\n    \"13902\",\n    \"13903\",\n    \"13904\",\n    \"13906\",\n    \"13908\",\n    \"13910\",\n    \"13912\",\n    \"13913\",\n    \"13915\",\n    \"13916\",\n    \"13917\",\n    \"13918\",\n    \"13921\",\n    \"13922\",\n    \"13923\",\n    \"13924\",\n    \"13925\",\n    \"13926\",\n    \"13927\",\n    \"13928\",\n    \"13929\",\n    \"13930\",\n    \"13931\",\n    \"13934\",\n    \"13937\",\n    \"13939\",\n    \"13941\",\n    \"13943\",\n    \"13944\",\n    \"13946\",\n    \"13948\",\n    \"13954\",\n    \"13956\",\n    \"13957\",\n    \"13958\",\n    \"13963\",\n    \"13965\",\n    \"13967\",\n    \"13969\",\n    \"13973\",\n    \"13974\",\n    \"13975\",\n    \"13980\",\n    \"13981\",\n    \"13982\",\n    \"13984\",\n    \"13986\",\n    \"13987\",\n    \"13989\",\n    \"13990\",\n    \"13991\",\n    \"13994\",\n    \"13996\",\n    \"13997\",\n    \"14001\",\n    \"14003\",\n    \"14004\",\n    \"14006\",\n    \"14007\",\n    \"14008\",\n    \"14011\",\n    \"14012\",\n    \"14013\",\n    \"14014\",\n    \"14015\",\n    \"14016\",\n    \"14019\",\n    \"14020\",\n    \"14022\",\n    \"14023\",\n    \"14024\",\n    \"14025\",\n    \"14026\",\n    \"14028\",\n    \"14030\",\n    \"14031\",\n    \"14033\",\n    \"14034\",\n    \"14035\",\n    \"14037\",\n    \"14038\",\n    \"14042\",\n    \"14043\",\n    \"14044\",\n    \"14047\",\n    \"14050\",\n    \"14051\",\n    \"14053\",\n    \"14056\",\n    \"14057\",\n    \"14058\",\n    \"14059\",\n    \"14066\",\n    \"14068\",\n    \"14070\",\n    \"14071\",\n    \"14074\",\n    \"14075\",\n    \"14076\",\n    \"14079\",\n    \"14081\",\n    \"14082\",\n    \"14084\",\n    \"14088\",\n    \"14089\",\n    \"14090\",\n    \"14091\",\n    \"14092\",\n    \"14093\",\n    \"14095\",\n    \"14099\",\n    \"14100\",\n    \"14101\",\n    \"14102\",\n    \"14104\",\n    \"14105\",\n    \"14107\",\n    \"14110\",\n    \"14113\",\n    \"14114\",\n    \"14116\",\n    \"14118\",\n    \"14119\",\n    \"14120\",\n    \"14121\",\n    \"14122\",\n    \"14126\",\n    \"14129\",\n    \"14130\",\n    \"14131\",\n    \"14133\",\n    \"14134\",\n    \"14135\",\n    \"14137\",\n    \"14138\",\n    \"14140\",\n    \"14141\",\n    \"14142\",\n    \"14143\",\n    \"14144\",\n    \"14147\",\n    \"14148\",\n    \"14149\",\n    \"14150\",\n    \"14151\",\n    \"14153\",\n    \"14154\",\n    \"14155\",\n    \"14158\",\n    \"14159\",\n    \"14160\",\n    \"14161\",\n    \"14163\",\n    \"14164\",\n    \"14166\",\n    \"14168\",\n    \"14170\",\n    \"14171\",\n    \"14173\",\n    \"14174\",\n    \"14176\",\n    \"14177\",\n    \"14178\",\n    \"14179\",\n    \"14181\",\n    \"14182\",\n    \"14183\",\n    \"14185\",\n    \"14186\",\n    \"14188\",\n    \"14190\",\n    \"14193\",\n    \"14194\",\n    \"14195\",\n    \"14196\",\n    \"14197\",\n    \"14199\",\n    \"14200\",\n    \"14201\",\n    \"14202\",\n    \"14207\",\n    \"14208\",\n    \"14213\",\n    \"14214\",\n    \"14215\",\n    \"14218\",\n    \"14220\",\n    \"14221\",\n    \"14223\",\n    \"14226\",\n    \"14227\",\n    \"14229\",\n    \"14230\",\n    \"14232\",\n    \"14234\",\n    \"14236\",\n    \"14237\",\n    \"14239\",\n    \"14240\",\n    \"14241\",\n    \"14242\",\n    \"14244\",\n    \"14249\",\n    \"14250\",\n    \"14251\",\n    \"14252\",\n    \"14257\",\n    \"14258\",\n    \"14262\",\n    \"14263\",\n    \"14266\",\n    \"14267\",\n    \"14269\",\n    \"14271\",\n    \"14274\",\n    \"14276\",\n    \"14278\",\n    \"14280\",\n    \"14283\",\n    \"14284\",\n    \"14286\",\n    \"14287\",\n    \"14288\",\n    \"14289\",\n    \"14290\",\n    \"14291\",\n    \"14292\",\n    \"14294\",\n    \"14295\",\n    \"14296\",\n    \"14297\",\n    \"14298\",\n    \"14300\",\n    \"14301\",\n    \"14303\",\n    \"14307\",\n    \"14309\",\n    \"14310\",\n    \"14311\",\n    \"14312\",\n    \"14314\",\n    \"14315\",\n    \"14317\",\n    \"14319\",\n    \"14320\",\n    \"14322\",\n    \"14323\",\n    \"14325\",\n    \"14326\",\n    \"14328\",\n    \"14329\",\n    \"14331\",\n    \"14335\",\n    \"14336\",\n    \"14338\",\n    \"14340\",\n    \"14343\",\n    \"14344\",\n    \"14345\",\n    \"14346\",\n    \"14347\",\n    \"14351\",\n    \"14352\",\n    \"14353\",\n    \"14354\",\n    \"14357\",\n    \"14358\",\n    \"14360\",\n    \"14361\",\n    \"14362\",\n    \"14364\",\n    \"14365\",\n    \"14370\",\n    \"14371\",\n    \"14372\",\n    \"14374\",\n    \"14377\",\n    \"14378\",\n    \"14382\",\n    \"14383\",\n    \"14384\",\n    \"14385\",\n    \"14388\",\n    \"14389\",\n    \"14391\",\n    \"14392\",\n    \"14394\",\n    \"14396\",\n    \"14397\",\n    \"14398\",\n    \"14400\",\n    \"14401\",\n    \"14402\",\n    \"14404\",\n    \"14408\",\n    \"14409\",\n    \"14411\",\n    \"14413\",\n    \"14414\",\n    \"14416\",\n    \"14418\",\n    \"14419\",\n    \"14422\",\n    \"14423\",\n    \"14425\",\n    \"14427\",\n    \"14430\",\n    \"14431\",\n    \"14433\",\n    \"14434\",\n    \"14435\",\n    \"14436\",\n    \"14437\",\n    \"14439\",\n    \"14443\",\n    \"14445\",\n    \"14446\",\n    \"14447\",\n    \"14448\",\n    \"14449\",\n    \"14452\",\n    \"14453\",\n    \"14454\",\n    \"14458\",\n    \"14459\",\n    \"14463\",\n    \"14464\",\n    \"14465\",\n    \"14466\",\n    \"14468\",\n    \"14469\",\n    \"14470\",\n    \"14471\",\n    \"14472\",\n    \"14475\",\n    \"14476\",\n    \"14477\",\n    \"14478\",\n    \"14479\",\n    \"14480\",\n    \"14481\",\n    \"14483\",\n    \"14485\",\n    \"14486\",\n    \"14487\",\n    \"14488\",\n    \"14490\",\n    \"14491\",\n    \"14493\",\n    \"14494\",\n    \"14496\",\n    \"14499\",\n    \"14500\",\n    \"14501\",\n    \"14503\",\n    \"14508\",\n    \"14509\",\n    \"14511\",\n    \"14513\",\n    \"14514\",\n    \"14516\",\n    \"14518\",\n    \"14520\",\n    \"14521\",\n    \"14523\",\n    \"14524\",\n    \"14527\",\n    \"14529\",\n    \"14531\",\n    \"14532\",\n    \"14534\",\n    \"14535\",\n    \"14536\",\n    \"14538\",\n    \"14540\",\n    \"14543\",\n    \"14544\",\n    \"14548\",\n    \"14549\",\n    \"14550\",\n    \"14551\",\n    \"14552\",\n    \"14557\",\n    \"14558\",\n    \"14559\",\n    \"14560\",\n    \"14561\",\n    \"14562\",\n    \"14564\",\n    \"14565\",\n    \"14566\",\n    \"14567\",\n    \"14568\",\n    \"14570\",\n    \"14571\",\n    \"14574\",\n    \"14575\",\n    \"14576\",\n    \"14577\",\n    \"14579\",\n    \"14582\",\n    \"14584\",\n    \"14585\",\n    \"14586\",\n    \"14587\",\n    \"14589\",\n    \"14590\",\n    \"14591\",\n    \"14592\",\n    \"14594\",\n    \"14595\",\n    \"14597\",\n    \"14599\",\n    \"14601\",\n    \"14604\",\n    \"14606\",\n    \"14608\",\n    \"14609\",\n    \"14611\",\n    \"14613\",\n    \"14614\",\n    \"14616\",\n    \"14618\",\n    \"14621\",\n    \"14622\",\n    \"14623\",\n    \"14624\",\n    \"14625\",\n    \"14628\",\n    \"14629\",\n    \"14630\",\n    \"14631\",\n    \"14633\",\n    \"14634\",\n    \"14635\",\n    \"14638\",\n    \"14642\",\n    \"14643\",\n    \"14645\",\n    \"14647\",\n    \"14649\",\n    \"14650\",\n    \"14652\",\n    \"14653\",\n    \"14655\",\n    \"14656\",\n    \"14657\",\n    \"14658\",\n    \"14661\",\n    \"14662\",\n    \"14663\",\n    \"14665\",\n    \"14667\",\n    \"14669\",\n    \"14670\",\n    \"14671\",\n    \"14673\",\n    \"14676\",\n    \"14678\",\n    \"14679\",\n    \"14683\",\n    \"14684\",\n    \"14688\",\n    \"14689\",\n    \"14693\",\n    \"14696\",\n    \"14697\",\n    \"14698\",\n    \"14700\",\n    \"14710\",\n    \"14711\",\n    \"14713\",\n    \"14714\",\n    \"14715\",\n    \"14716\",\n    \"14717\",\n    \"14718\",\n    \"14723\",\n    \"14724\",\n    \"14725\",\n    \"14727\",\n    \"14728\",\n    \"14729\",\n    \"14731\",\n    \"14736\",\n    \"14737\",\n    \"14741\",\n    \"14742\",\n    \"14747\",\n    \"14748\",\n    \"14750\",\n    \"14751\",\n    \"14753\",\n    \"14754\",\n    \"14758\",\n    \"14760\",\n    \"14761\",\n    \"14762\",\n    \"14763\",\n    \"14770\",\n    \"14771\",\n    \"14772\",\n    \"14773\",\n    \"14775\",\n    \"14776\",\n    \"14777\",\n    \"14778\",\n    \"14780\",\n    \"14781\",\n    \"14782\",\n    \"14783\",\n    \"14784\",\n    \"14786\",\n    \"14788\",\n    \"14792\",\n    \"14793\",\n    \"14794\",\n    \"14795\",\n    \"14797\",\n    \"14798\",\n    \"14799\",\n    \"14802\",\n    \"14805\",\n    \"14806\",\n    \"14807\",\n    \"14812\",\n    \"14813\",\n    \"14815\",\n    \"14817\",\n    \"14819\",\n    \"14820\",\n    \"14822\",\n    \"14823\",\n    \"14825\",\n    \"14827\",\n    \"14828\",\n    \"14829\",\n    \"14830\",\n    \"14832\",\n    \"14833\",\n    \"14834\",\n    \"14835\",\n    \"14836\",\n    \"14838\",\n    \"14839\",\n    \"14844\",\n    \"14845\",\n    \"14849\",\n    \"14850\",\n    \"14852\",\n    \"14853\",\n    \"14854\",\n    \"14855\",\n    \"14856\",\n    \"14859\",\n    \"14860\",\n    \"14863\",\n    \"14864\",\n    \"14866\",\n    \"14867\",\n    \"14868\",\n    \"14870\",\n    \"14871\",\n    \"14873\",\n    \"14875\",\n    \"14876\",\n    \"14877\",\n    \"14878\",\n    \"14879\",\n    \"14880\",\n    \"14882\",\n    \"14883\",\n    \"14884\",\n    \"14885\",\n    \"14886\",\n    \"14890\",\n    \"14891\",\n    \"14892\",\n    \"14894\",\n    \"14895\",\n    \"14899\",\n    \"14900\",\n    \"14902\",\n    \"14903\",\n    \"14905\",\n    \"14906\",\n    \"14907\",\n    \"14908\",\n    \"14909\",\n    \"14910\",\n    \"14912\",\n    \"14915\",\n    \"14916\",\n    \"14918\",\n    \"14920\",\n    \"14921\",\n    \"14923\",\n    \"14924\",\n    \"14926\",\n    \"14928\",\n    \"14929\",\n    \"14930\",\n    \"14931\",\n    \"14932\",\n    \"14933\",\n    \"14934\",\n    \"14935\",\n    \"14939\",\n    \"14942\",\n    \"14943\",\n    \"14944\",\n    \"14947\",\n    \"14949\",\n    \"14950\",\n    \"14952\",\n    \"14953\",\n    \"14954\",\n    \"14956\",\n    \"14962\",\n    \"14964\",\n    \"14965\",\n    \"14966\",\n    \"14967\",\n    \"14968\",\n    \"14970\",\n    \"14972\",\n    \"14973\",\n    \"14974\",\n    \"14975\",\n    \"14977\",\n    \"14978\",\n    \"14979\",\n    \"14981\",\n    \"14982\",\n    \"14983\",\n    \"14986\",\n    \"14988\",\n    \"14990\",\n    \"14994\",\n    \"14995\",\n    \"14997\",\n    \"14998\",\n    \"14999\",\n    \"15000\",\n    \"15001\",\n    \"15004\",\n    \"15005\",\n    \"15007\",\n    \"15008\",\n    \"15010\",\n    \"15011\",\n    \"15012\",\n    \"15013\",\n    \"15014\",\n    \"15015\",\n    \"15016\",\n    \"15017\",\n    \"15018\",\n    \"15020\",\n    \"15021\",\n    \"15022\",\n    \"15023\",\n    \"15026\",\n    \"15028\",\n    \"15029\",\n    \"15031\",\n    \"15033\",\n    \"15034\",\n    \"15035\",\n    \"15036\",\n    \"15038\",\n    \"15040\",\n    \"15041\",\n    \"15045\",\n    \"15046\",\n    \"15047\",\n    \"15048\",\n    \"15049\",\n    \"15052\",\n    \"15053\",\n    \"15054\",\n    \"15055\",\n    \"15056\",\n    \"15057\",\n    \"15058\",\n    \"15059\",\n    \"15060\",\n    \"15061\",\n    \"15062\",\n    \"15063\",\n    \"15064\",\n    \"15065\",\n    \"15067\",\n    \"15069\",\n    \"15074\",\n    \"15075\",\n    \"15079\",\n    \"15081\",\n    \"15083\",\n    \"15084\",\n    \"15085\",\n    \"15087\",\n    \"15091\",\n    \"15093\",\n    \"15096\",\n    \"15097\",\n    \"15098\",\n    \"15100\",\n    \"15101\",\n    \"15103\",\n    \"15104\",\n    \"15106\",\n    \"15107\",\n    \"15108\",\n    \"15109\",\n    \"15110\",\n    \"15112\",\n    \"15114\",\n    \"15116\",\n    \"15117\",\n    \"15120\",\n    \"15121\",\n    \"15123\",\n    \"15126\",\n    \"15127\",\n    \"15128\",\n    \"15129\",\n    \"15130\",\n    \"15133\",\n    \"15134\",\n    \"15135\",\n    \"15136\",\n    \"15137\",\n    \"15138\",\n    \"15139\",\n    \"15140\",\n    \"15142\",\n    \"15143\",\n    \"15144\",\n    \"15145\",\n    \"15147\",\n    \"15149\",\n    \"15150\",\n    \"15152\",\n    \"15153\",\n    \"15154\",\n    \"15155\",\n    \"15156\",\n    \"15157\",\n    \"15160\",\n    \"15162\",\n    \"15163\",\n    \"15164\",\n    \"15165\",\n    \"15166\",\n    \"15168\",\n    \"15170\",\n    \"15172\",\n    \"15173\",\n    \"15176\",\n    \"15180\",\n    \"15181\",\n    \"15182\",\n    \"15183\",\n    \"15185\",\n    \"15186\",\n    \"15188\",\n    \"15193\",\n    \"15194\",\n    \"15195\",\n    \"15196\",\n    \"15198\",\n    \"15199\",\n    \"15200\",\n    \"15201\",\n    \"15202\",\n    \"15203\",\n    \"15208\",\n    \"15211\",\n    \"15212\",\n    \"15213\",\n    \"15217\",\n    \"15218\",\n    \"15219\",\n    \"15220\",\n    \"15222\",\n    \"15223\",\n    \"15225\",\n    \"15226\",\n    \"15227\",\n    \"15228\",\n    \"15231\",\n    \"15232\",\n    \"15233\",\n    \"15234\",\n    \"15236\",\n    \"15238\",\n    \"15242\",\n    \"15243\",\n    \"15246\",\n    \"15249\",\n    \"15250\",\n    \"15251\",\n    \"15252\",\n    \"15254\",\n    \"15255\",\n    \"15257\",\n    \"15261\",\n    \"15262\",\n    \"15263\",\n    \"15264\",\n    \"15265\",\n    \"15266\",\n    \"15269\",\n    \"15270\",\n    \"15271\",\n    \"15275\",\n    \"15276\",\n    \"15278\",\n    \"15281\",\n    \"15283\",\n    \"15284\",\n    \"15286\",\n    \"15287\",\n    \"15291\",\n    \"15292\",\n    \"15293\",\n    \"15294\",\n    \"15296\",\n    \"15297\",\n    \"15299\",\n    \"15300\",\n    \"15301\",\n    \"15302\",\n    \"15304\",\n    \"15307\",\n    \"15308\",\n    \"15311\",\n    \"15312\",\n    \"15313\",\n    \"15314\",\n    \"15316\",\n    \"15317\",\n    \"15318\",\n    \"15319\",\n    \"15321\",\n    \"15322\",\n    \"15323\",\n    \"15324\",\n    \"15325\",\n    \"15326\",\n    \"15329\",\n    \"15330\",\n    \"15331\",\n    \"15332\",\n    \"15334\",\n    \"15336\",\n    \"15337\",\n    \"15339\",\n    \"15340\",\n    \"15341\",\n    \"15343\",\n    \"15345\",\n    \"15347\",\n    \"15348\",\n    \"15349\",\n    \"15351\",\n    \"15352\",\n    \"15353\",\n    \"15354\",\n    \"15355\",\n    \"15356\",\n    \"15357\",\n    \"15358\",\n    \"15360\",\n    \"15361\",\n    \"15362\",\n    \"15363\",\n    \"15364\",\n    \"15365\",\n    \"15366\",\n    \"15367\",\n    \"15368\",\n    \"15372\",\n    \"15375\",\n    \"15377\",\n    \"15378\",\n    \"15379\",\n    \"15380\",\n    \"15381\",\n    \"15384\",\n    \"15387\",\n    \"15388\",\n    \"15389\",\n    \"15390\",\n    \"15391\",\n    \"15393\",\n    \"15394\",\n    \"15395\",\n    \"15396\",\n    \"15398\",\n    \"15399\",\n    \"15400\",\n    \"15402\",\n    \"15404\",\n    \"15408\",\n    \"15409\",\n    \"15410\",\n    \"15411\",\n    \"15413\",\n    \"15417\",\n    \"15418\",\n    \"15421\",\n    \"15423\",\n    \"15424\",\n    \"15425\",\n    \"15426\",\n    \"15427\",\n    \"15428\",\n    \"15431\",\n    \"15433\",\n    \"15434\",\n    \"15435\",\n    \"15436\",\n    \"15437\",\n    \"15438\",\n    \"15439\",\n    \"15440\",\n    \"15443\",\n    \"15451\",\n    \"15452\",\n    \"15453\",\n    \"15456\",\n    \"15462\",\n    \"15464\",\n    \"15465\",\n    \"15467\",\n    \"15469\",\n    \"15470\",\n    \"15471\",\n    \"15472\",\n    \"15473\",\n    \"15474\",\n    \"15476\",\n    \"15477\",\n    \"15479\",\n    \"15480\",\n    \"15481\",\n    \"15482\",\n    \"15485\",\n    \"15489\",\n    \"15490\",\n    \"15491\",\n    \"15492\",\n    \"15493\",\n    \"15495\",\n    \"15499\",\n    \"15500\",\n    \"15502\",\n    \"15503\",\n    \"15504\",\n    \"15505\",\n    \"15507\",\n    \"15508\",\n    \"15509\",\n    \"15510\",\n    \"15511\",\n    \"15513\",\n    \"15514\",\n    \"15515\",\n    \"15517\",\n    \"15520\",\n    \"15522\",\n    \"15523\",\n    \"15527\",\n    \"15531\",\n    \"15532\",\n    \"15533\",\n    \"15535\",\n    \"15536\",\n    \"15537\",\n    \"15539\",\n    \"15540\",\n    \"15544\",\n    \"15545\",\n    \"15547\",\n    \"15549\",\n    \"15550\",\n    \"15554\",\n    \"15555\",\n    \"15557\",\n    \"15563\",\n    \"15564\",\n    \"15565\",\n    \"15566\",\n    \"15567\",\n    \"15568\",\n    \"15570\",\n    \"15571\",\n    \"15572\",\n    \"15574\",\n    \"15577\",\n    \"15578\",\n    \"15579\",\n    \"15580\",\n    \"15581\",\n    \"15582\",\n    \"15587\",\n    \"15588\",\n    \"15589\",\n    \"15590\",\n    \"15593\",\n    \"15598\",\n    \"15599\",\n    \"15600\",\n    \"15604\",\n    \"15605\",\n    \"15607\",\n    \"15608\",\n    \"15610\",\n    \"15611\",\n    \"15612\",\n    \"15613\",\n    \"15617\",\n    \"15618\",\n    \"15619\",\n    \"15620\",\n    \"15621\",\n    \"15624\",\n    \"15625\",\n    \"15628\",\n    \"15631\",\n    \"15633\",\n    \"15634\",\n    \"15635\",\n    \"15638\",\n    \"15639\",\n    \"15640\",\n    \"15643\",\n    \"15644\",\n    \"15648\",\n    \"15649\",\n    \"15654\",\n    \"15656\",\n    \"15657\",\n    \"15659\",\n    \"15660\",\n    \"15661\",\n    \"15666\",\n    \"15667\",\n    \"15669\",\n    \"15671\",\n    \"15672\",\n    \"15673\",\n    \"15674\",\n    \"15676\",\n    \"15678\",\n    \"15679\",\n    \"15680\",\n    \"15681\",\n    \"15682\",\n    \"15683\",\n    \"15685\",\n    \"15686\",\n    \"15687\",\n    \"15689\",\n    \"15690\",\n    \"15691\",\n    \"15692\",\n    \"15693\",\n    \"15694\",\n    \"15697\",\n    \"15698\",\n    \"15699\",\n    \"15700\",\n    \"15704\",\n    \"15707\",\n    \"15709\",\n    \"15711\",\n    \"15713\",\n    \"15714\",\n    \"15715\",\n    \"15716\",\n    \"15717\",\n    \"15719\",\n    \"15720\",\n    \"15722\",\n    \"15723\",\n    \"15724\",\n    \"15726\",\n    \"15727\",\n    \"15728\",\n    \"15729\",\n    \"15730\",\n    \"15731\",\n    \"15735\",\n    \"15736\",\n    \"15738\",\n    \"15739\",\n    \"15741\",\n    \"15743\",\n    \"15744\",\n    \"15746\",\n    \"15747\",\n    \"15748\",\n    \"15750\",\n    \"15752\",\n    \"15753\",\n    \"15754\",\n    \"15755\",\n    \"15756\",\n    \"15757\",\n    \"15758\",\n    \"15759\",\n    \"15760\",\n    \"15761\",\n    \"15762\",\n    \"15764\",\n    \"15766\",\n    \"15768\",\n    \"15769\",\n    \"15771\",\n    \"15773\",\n    \"15774\",\n    \"15776\",\n    \"15778\",\n    \"15779\",\n    \"15781\",\n    \"15782\",\n    \"15783\",\n    \"15784\",\n    \"15785\",\n    \"15786\",\n    \"15788\",\n    \"15789\",\n    \"15792\",\n    \"15793\",\n    \"15795\",\n    \"15796\",\n    \"15797\",\n    \"15800\",\n    \"15802\",\n    \"15803\",\n    \"15804\",\n    \"15805\",\n    \"15806\",\n    \"15808\",\n    \"15809\",\n    \"15811\",\n    \"15812\",\n    \"15817\",\n    \"15818\",\n    \"15819\",\n    \"15820\",\n    \"15822\",\n    \"15824\",\n    \"15825\",\n    \"15827\",\n    \"15828\",\n    \"15832\",\n    \"15833\",\n    \"15834\",\n    \"15836\",\n    \"15837\",\n    \"15839\",\n    \"15840\",\n    \"15842\",\n    \"15843\",\n    \"15844\",\n    \"15845\",\n    \"15846\",\n    \"15847\",\n    \"15848\",\n    \"15849\",\n    \"15852\",\n    \"15854\",\n    \"15855\",\n    \"15856\",\n    \"15859\",\n    \"15860\",\n    \"15861\",\n    \"15862\",\n    \"15863\",\n    \"15864\",\n    \"15868\",\n    \"15871\",\n    \"15875\",\n    \"15876\",\n    \"15877\",\n    \"15879\",\n    \"15880\",\n    \"15881\",\n    \"15882\",\n    \"15883\",\n    \"15886\",\n    \"15887\",\n    \"15888\",\n    \"15889\",\n    \"15890\",\n    \"15893\",\n    \"15894\",\n    \"15895\",\n    \"15896\",\n    \"15897\",\n    \"15898\",\n    \"15899\",\n    \"15901\",\n    \"15903\",\n    \"15904\",\n    \"15905\",\n    \"15906\",\n    \"15907\",\n    \"15909\",\n    \"15911\",\n    \"15912\",\n    \"15914\",\n    \"15915\",\n    \"15916\",\n    \"15919\",\n    \"15920\",\n    \"15921\",\n    \"15922\",\n    \"15924\",\n    \"15926\",\n    \"15928\",\n    \"15929\",\n    \"15931\",\n    \"15933\",\n    \"15935\",\n    \"15936\",\n    \"15939\",\n    \"15940\",\n    \"15941\",\n    \"15942\",\n    \"15945\",\n    \"15946\",\n    \"15947\",\n    \"15948\",\n    \"15949\",\n    \"15951\",\n    \"15952\",\n    \"15953\",\n    \"15955\",\n    \"15957\",\n    \"15959\",\n    \"15961\",\n    \"15962\",\n    \"15964\",\n    \"15965\",\n    \"15966\",\n    \"15968\",\n    \"15969\",\n    \"15972\",\n    \"15975\",\n    \"15979\",\n    \"15980\",\n    \"15982\",\n    \"15985\",\n    \"15986\",\n    \"15988\",\n    \"15989\",\n    \"15990\",\n    \"15991\",\n    \"15993\",\n    \"15995\",\n    \"15999\",\n    \"16000\",\n    \"16001\",\n    \"16003\",\n    \"16005\",\n    \"16006\",\n    \"16008\",\n    \"16009\",\n    \"16014\",\n    \"16017\",\n    \"16018\",\n    \"16020\",\n    \"16021\",\n    \"16022\",\n    \"16024\",\n    \"16028\",\n    \"16029\",\n    \"16030\",\n    \"16031\",\n    \"16032\",\n    \"16033\",\n    \"16034\",\n    \"16037\",\n    \"16038\",\n    \"16039\",\n    \"16040\",\n    \"16041\",\n    \"16043\",\n    \"16047\",\n    \"16051\",\n    \"16052\",\n    \"16053\",\n    \"16055\",\n    \"16058\",\n    \"16059\",\n    \"16060\",\n    \"16061\",\n    \"16064\",\n    \"16065\",\n    \"16066\",\n    \"16068\",\n    \"16070\",\n    \"16071\",\n    \"16072\",\n    \"16073\",\n    \"16074\",\n    \"16075\",\n    \"16077\",\n    \"16078\",\n    \"16080\",\n    \"16081\",\n    \"16083\",\n    \"16084\",\n    \"16086\",\n    \"16087\",\n    \"16088\",\n    \"16089\",\n    \"16090\",\n    \"16091\",\n    \"16093\",\n    \"16095\",\n    \"16097\",\n    \"16099\",\n    \"16100\",\n    \"16101\",\n    \"16102\",\n    \"16103\",\n    \"16105\",\n    \"16107\",\n    \"16108\",\n    \"16109\",\n    \"16110\",\n    \"16111\",\n    \"16112\",\n    \"16117\",\n    \"16121\",\n    \"16123\",\n    \"16124\",\n    \"16125\",\n    \"16129\",\n    \"16132\",\n    \"16133\",\n    \"16134\",\n    \"16135\",\n    \"16136\",\n    \"16137\",\n    \"16138\",\n    \"16140\",\n    \"16142\",\n    \"16143\",\n    \"16144\",\n    \"16148\",\n    \"16149\",\n    \"16151\",\n    \"16152\",\n    \"16154\",\n    \"16157\",\n    \"16158\",\n    \"16159\",\n    \"16160\",\n    \"16161\",\n    \"16163\",\n    \"16164\",\n    \"16166\",\n    \"16167\",\n    \"16168\",\n    \"16170\",\n    \"16171\",\n    \"16172\",\n    \"16173\",\n    \"16177\",\n    \"16178\",\n    \"16179\",\n    \"16181\",\n    \"16185\",\n    \"16190\",\n    \"16191\",\n    \"16195\",\n    \"16197\",\n    \"16198\",\n    \"16200\",\n    \"16201\",\n    \"16204\",\n    \"16205\",\n    \"16208\",\n    \"16211\",\n    \"16214\",\n    \"16215\",\n    \"16217\",\n    \"16222\",\n    \"16224\",\n    \"16225\",\n    \"16226\",\n    \"16227\",\n    \"16229\",\n    \"16230\",\n    \"16231\",\n    \"16232\",\n    \"16233\",\n    \"16234\",\n    \"16236\",\n    \"16237\",\n    \"16238\",\n    \"16239\",\n    \"16241\",\n    \"16244\",\n    \"16248\",\n    \"16249\",\n    \"16250\",\n    \"16251\",\n    \"16254\",\n    \"16255\",\n    \"16256\",\n    \"16257\",\n    \"16260\",\n    \"16262\",\n    \"16263\",\n    \"16264\",\n    \"16265\",\n    \"16266\",\n    \"16269\",\n    \"16270\",\n    \"16271\",\n    \"16272\",\n    \"16274\",\n    \"16278\",\n    \"16280\",\n    \"16282\",\n    \"16284\",\n    \"16285\",\n    \"16286\",\n    \"16288\",\n    \"16290\",\n    \"16291\",\n    \"16292\",\n    \"16294\",\n    \"16295\",\n    \"16296\",\n    \"16298\",\n    \"16299\",\n    \"16300\",\n    \"16302\",\n    \"16303\",\n    \"16305\",\n    \"16306\",\n    \"16308\",\n    \"16310\",\n    \"16311\",\n    \"16312\",\n    \"16314\",\n    \"16316\",\n    \"16317\",\n    \"16318\",\n    \"16320\",\n    \"16321\",\n    \"16322\",\n    \"16323\",\n    \"16328\",\n    \"16329\",\n    \"16330\",\n    \"16331\",\n    \"16333\",\n    \"16334\",\n    \"16335\",\n    \"16336\",\n    \"16337\",\n    \"16342\",\n    \"16343\",\n    \"16346\",\n    \"16349\",\n    \"16350\",\n    \"16351\",\n    \"16352\",\n    \"16355\",\n    \"16360\",\n    \"16361\",\n    \"16362\",\n    \"16364\",\n    \"16365\",\n    \"16367\",\n    \"16368\",\n    \"16370\",\n    \"16371\",\n    \"16373\",\n    \"16375\",\n    \"16376\",\n    \"16377\",\n    \"16378\",\n    \"16381\",\n    \"16386\",\n    \"16388\",\n    \"16389\",\n    \"16390\",\n    \"16391\",\n    \"16392\",\n    \"16393\",\n    \"16398\",\n    \"16399\",\n    \"16400\",\n    \"16401\",\n    \"16403\",\n    \"16404\",\n    \"16405\",\n    \"16406\",\n    \"16407\",\n    \"16409\",\n    \"16411\",\n    \"16412\",\n    \"16413\",\n    \"16416\",\n    \"16418\",\n    \"16420\",\n    \"16423\",\n    \"16425\",\n    \"16426\",\n    \"16427\",\n    \"16429\",\n    \"16430\",\n    \"16431\",\n    \"16433\",\n    \"16438\",\n    \"16439\",\n    \"16441\",\n    \"16442\",\n    \"16443\",\n    \"16447\",\n    \"16448\",\n    \"16449\",\n    \"16450\",\n    \"16451\",\n    \"16454\",\n    \"16460\",\n    \"16461\",\n    \"16462\",\n    \"16463\",\n    \"16465\",\n    \"16467\",\n    \"16473\",\n    \"16474\",\n    \"16475\",\n    \"16478\",\n    \"16480\",\n    \"16481\",\n    \"16482\",\n    \"16483\",\n    \"16484\",\n    \"16486\",\n    \"16487\",\n    \"16489\",\n    \"16490\",\n    \"16491\",\n    \"16492\",\n    \"16494\",\n    \"16495\",\n    \"16500\",\n    \"16502\",\n    \"16503\",\n    \"16504\",\n    \"16507\",\n    \"16509\",\n    \"16511\",\n    \"16512\",\n    \"16513\",\n    \"16516\",\n    \"16517\",\n    \"16518\",\n    \"16519\",\n    \"16520\",\n    \"16521\",\n    \"16523\",\n    \"16525\",\n    \"16526\",\n    \"16527\",\n    \"16529\",\n    \"16530\",\n    \"16533\",\n    \"16537\",\n    \"16538\",\n    \"16539\",\n    \"16540\",\n    \"16541\",\n    \"16543\",\n    \"16547\",\n    \"16548\",\n    \"16549\",\n    \"16552\",\n    \"16555\",\n    \"16556\",\n    \"16558\",\n    \"16559\",\n    \"16560\",\n    \"16561\",\n    \"16562\",\n    \"16563\",\n    \"16564\",\n    \"16565\",\n    \"16567\",\n    \"16568\",\n    \"16569\",\n    \"16571\",\n    \"16572\",\n    \"16576\",\n    \"16577\",\n    \"16579\",\n    \"16583\",\n    \"16584\",\n    \"16587\",\n    \"16588\",\n    \"16590\",\n    \"16591\",\n    \"16594\",\n    \"16596\",\n    \"16597\",\n    \"16598\",\n    \"16600\",\n    \"16602\",\n    \"16603\",\n    \"16604\",\n    \"16611\",\n    \"16612\",\n    \"16613\",\n    \"16614\",\n    \"16615\",\n    \"16616\",\n    \"16619\",\n    \"16621\",\n    \"16625\",\n    \"16628\",\n    \"16632\",\n    \"16633\",\n    \"16635\",\n    \"16636\",\n    \"16638\",\n    \"16640\",\n    \"16641\",\n    \"16643\",\n    \"16647\",\n    \"16650\",\n    \"16653\",\n    \"16654\",\n    \"16661\",\n    \"16664\",\n    \"16666\",\n    \"16667\",\n    \"16668\",\n    \"16669\",\n    \"16670\",\n    \"16671\",\n    \"16672\",\n    \"16674\",\n    \"16675\",\n    \"16676\",\n    \"16677\",\n    \"16682\",\n    \"16686\",\n    \"16688\",\n    \"16690\",\n    \"16691\",\n    \"16692\",\n    \"16696\",\n    \"16697\",\n    \"16702\",\n    \"16703\",\n    \"16704\",\n    \"16705\",\n    \"16706\",\n    \"16707\",\n    \"16709\",\n    \"16710\",\n    \"16711\",\n    \"16712\",\n    \"16713\",\n    \"16714\",\n    \"16715\",\n    \"16717\",\n    \"16718\",\n    \"16719\",\n    \"16722\",\n    \"16724\",\n    \"16726\",\n    \"16729\",\n    \"16730\",\n    \"16732\",\n    \"16735\",\n    \"16736\",\n    \"16739\",\n    \"16740\",\n    \"16741\",\n    \"16742\",\n    \"16743\",\n    \"16745\",\n    \"16747\",\n    \"16748\",\n    \"16749\",\n    \"16750\",\n    \"16752\",\n    \"16755\",\n    \"16758\",\n    \"16759\",\n    \"16760\",\n    \"16761\",\n    \"16763\",\n    \"16764\",\n    \"16766\",\n    \"16767\",\n    \"16768\",\n    \"16771\",\n    \"16775\",\n    \"16778\",\n    \"16779\",\n    \"16780\",\n    \"16781\",\n    \"16782\",\n    \"16785\",\n    \"16786\",\n    \"16787\",\n    \"16790\",\n    \"16791\",\n    \"16792\",\n    \"16793\",\n    \"16794\",\n    \"16795\",\n    \"16796\",\n    \"16798\",\n    \"16799\",\n    \"16801\",\n    \"16803\",\n    \"16804\",\n    \"16805\",\n    \"16807\",\n    \"16808\",\n    \"16809\",\n    \"16815\",\n    \"16817\",\n    \"16820\",\n    \"16821\",\n    \"16823\",\n    \"16826\",\n    \"16828\",\n    \"16829\",\n    \"16831\",\n    \"16832\",\n    \"16833\",\n    \"16834\",\n    \"16838\",\n    \"16839\",\n    \"16842\",\n    \"16843\",\n    \"16844\",\n    \"16846\",\n    \"16848\",\n    \"16849\",\n    \"16850\",\n    \"16851\",\n    \"16853\",\n    \"16857\",\n    \"16858\",\n    \"16859\",\n    \"16862\",\n    \"16865\",\n    \"16867\",\n    \"16869\",\n    \"16870\",\n    \"16872\",\n    \"16874\",\n    \"16876\",\n    \"16877\",\n    \"16880\",\n    \"16884\",\n    \"16885\",\n    \"16887\",\n    \"16890\",\n    \"16891\",\n    \"16892\",\n    \"16893\",\n    \"16896\",\n    \"16897\",\n    \"16899\",\n    \"16900\",\n    \"16902\",\n    \"16904\",\n    \"16905\",\n    \"16906\",\n    \"16907\",\n    \"16908\",\n    \"16909\",\n    \"16910\",\n    \"16911\",\n    \"16912\",\n    \"16913\",\n    \"16914\",\n    \"16915\",\n    \"16916\",\n    \"16918\",\n    \"16919\",\n    \"16920\",\n    \"16924\",\n    \"16925\",\n    \"16926\",\n    \"16927\",\n    \"16928\",\n    \"16931\",\n    \"16933\",\n    \"16934\",\n    \"16937\",\n    \"16940\",\n    \"16941\",\n    \"16942\",\n    \"16943\",\n    \"16944\",\n    \"16946\",\n    \"16949\",\n    \"16950\",\n    \"16952\",\n    \"16953\",\n    \"16954\",\n    \"16955\",\n    \"16956\",\n    \"16957\",\n    \"16958\",\n    \"16961\",\n    \"16962\",\n    \"16963\",\n    \"16964\",\n    \"16965\",\n    \"16966\",\n    \"16968\",\n    \"16969\",\n    \"16970\",\n    \"16971\",\n    \"16974\",\n    \"16976\",\n    \"16979\",\n    \"16980\",\n    \"16982\",\n    \"16983\",\n    \"16984\",\n    \"16985\",\n    \"16989\",\n    \"16990\",\n    \"16991\",\n    \"16993\",\n    \"16994\",\n    \"16997\",\n    \"16998\",\n    \"17000\",\n    \"17001\",\n    \"17002\",\n    \"17003\",\n    \"17006\",\n    \"17007\",\n    \"17008\",\n    \"17009\",\n    \"17012\",\n    \"17013\",\n    \"17018\",\n    \"17019\",\n    \"17020\",\n    \"17022\",\n    \"17024\",\n    \"17025\",\n    \"17027\",\n    \"17030\",\n    \"17032\",\n    \"17034\",\n    \"17035\",\n    \"17036\",\n    \"17038\",\n    \"17040\",\n    \"17041\",\n    \"17047\",\n    \"17050\",\n    \"17051\",\n    \"17053\",\n    \"17054\",\n    \"17057\",\n    \"17059\",\n    \"17060\",\n    \"17062\",\n    \"17063\",\n    \"17064\",\n    \"17065\",\n    \"17066\",\n    \"17067\",\n    \"17075\",\n    \"17076\",\n    \"17077\",\n    \"17079\",\n    \"17081\",\n    \"17082\",\n    \"17083\",\n    \"17086\",\n    \"17087\",\n    \"17088\",\n    \"17091\",\n    \"17092\",\n    \"17093\",\n    \"17094\",\n    \"17095\",\n    \"17097\",\n    \"17099\",\n    \"17101\",\n    \"17102\",\n    \"17104\",\n    \"17107\",\n    \"17108\",\n    \"17109\",\n    \"17111\",\n    \"17112\",\n    \"17113\",\n    \"17114\",\n    \"17116\",\n    \"17117\",\n    \"17118\",\n    \"17120\",\n    \"17121\",\n    \"17122\",\n    \"17123\",\n    \"17124\",\n    \"17126\",\n    \"17127\",\n    \"17128\",\n    \"17129\",\n    \"17130\",\n    \"17131\",\n    \"17132\",\n    \"17133\",\n    \"17134\",\n    \"17137\",\n    \"17138\",\n    \"17139\",\n    \"17141\",\n    \"17143\",\n    \"17145\",\n    \"17146\",\n    \"17147\",\n    \"17148\",\n    \"17149\",\n    \"17150\",\n    \"17151\",\n    \"17152\",\n    \"17154\",\n    \"17157\",\n    \"17158\",\n    \"17159\",\n    \"17160\",\n    \"17161\",\n    \"17162\",\n    \"17163\",\n    \"17165\",\n    \"17166\",\n    \"17167\",\n    \"17168\",\n    \"17169\",\n    \"17170\",\n    \"17172\",\n    \"17173\",\n    \"17175\",\n    \"17177\",\n    \"17179\",\n    \"17180\",\n    \"17181\",\n    \"17182\",\n    \"17184\",\n    \"17185\",\n    \"17186\",\n    \"17187\",\n    \"17188\",\n    \"17190\",\n    \"17191\",\n    \"17193\",\n    \"17194\",\n    \"17196\",\n    \"17198\",\n    \"17199\",\n    \"17200\",\n    \"17201\",\n    \"17203\",\n    \"17205\",\n    \"17208\",\n    \"17212\",\n    \"17213\",\n    \"17217\",\n    \"17220\",\n    \"17223\",\n    \"17224\",\n    \"17225\",\n    \"17229\",\n    \"17230\",\n    \"17231\",\n    \"17232\",\n    \"17234\",\n    \"17235\",\n    \"17236\",\n    \"17238\",\n    \"17239\",\n    \"17240\",\n    \"17241\",\n    \"17242\",\n    \"17244\",\n    \"17245\",\n    \"17246\",\n    \"17247\",\n    \"17248\",\n    \"17249\",\n    \"17251\",\n    \"17255\",\n    \"17256\",\n    \"17259\",\n    \"17260\",\n    \"17261\",\n    \"17262\",\n    \"17263\",\n    \"17264\",\n    \"17265\",\n    \"17266\",\n    \"17270\",\n    \"17271\",\n    \"17272\",\n    \"17274\",\n    \"17275\",\n    \"17279\",\n    \"17280\",\n    \"17281\",\n    \"17282\",\n    \"17283\",\n    \"17284\",\n    \"17286\",\n    \"17287\",\n    \"17289\",\n    \"17291\",\n    \"17294\",\n    \"17298\",\n    \"17299\",\n    \"17300\",\n    \"17302\",\n    \"17305\",\n    \"17306\",\n    \"17307\",\n    \"17309\",\n    \"17310\",\n    \"17311\",\n    \"17313\",\n    \"17314\",\n    \"17315\",\n    \"17316\",\n    \"17318\",\n    \"17320\",\n    \"17321\",\n    \"17323\",\n    \"17326\",\n    \"17327\",\n    \"17330\",\n    \"17331\",\n    \"17332\",\n    \"17334\",\n    \"17335\",\n    \"17338\",\n    \"17341\",\n    \"17342\",\n    \"17344\",\n    \"17347\",\n    \"17348\",\n    \"17349\",\n    \"17350\",\n    \"17352\",\n    \"17353\",\n    \"17355\",\n    \"17356\",\n    \"17357\",\n    \"17358\",\n    \"17359\",\n    \"17361\",\n    \"17362\",\n    \"17363\",\n    \"17364\",\n    \"17365\",\n    \"17367\",\n    \"17369\",\n    \"17370\",\n    \"17371\",\n    \"17373\",\n    \"17374\",\n    \"17375\",\n    \"17376\",\n    \"17377\",\n    \"17378\",\n    \"17379\",\n    \"17381\",\n    \"17383\",\n    \"17384\",\n    \"17386\",\n    \"17388\",\n    \"17389\",\n    \"17393\",\n    \"17394\",\n    \"17395\",\n    \"17396\",\n    \"17399\",\n    \"17403\",\n    \"17404\",\n    \"17409\",\n    \"17411\",\n    \"17412\",\n    \"17413\",\n    \"17414\",\n    \"17417\",\n    \"17418\",\n    \"17419\",\n    \"17420\",\n    \"17423\",\n    \"17426\",\n    \"17427\",\n    \"17428\",\n    \"17429\",\n    \"17432\",\n    \"17433\",\n    \"17434\",\n    \"17442\",\n    \"17443\",\n    \"17444\",\n    \"17445\",\n    \"17447\",\n    \"17449\",\n    \"17450\",\n    \"17454\",\n    \"17456\",\n    \"17457\",\n    \"17458\",\n    \"17460\",\n    \"17462\",\n    \"17463\",\n    \"17465\",\n    \"17466\",\n    \"17467\",\n    \"17468\",\n    \"17469\",\n    \"17472\",\n    \"17473\",\n    \"17474\",\n    \"17475\",\n    \"17476\",\n    \"17477\",\n    \"17478\",\n    \"17479\",\n    \"17480\",\n    \"17481\",\n    \"17482\",\n    \"17483\",\n    \"17484\",\n    \"17486\",\n    \"17491\",\n    \"17494\",\n    \"17497\",\n    \"17499\",\n    \"17502\",\n    \"17504\",\n    \"17505\",\n    \"17506\",\n    \"17507\",\n    \"17509\",\n    \"17510\",\n    \"17511\",\n    \"17512\",\n    \"17513\",\n    \"17518\",\n    \"17519\",\n    \"17520\",\n    \"17521\",\n    \"17522\",\n    \"17524\",\n    \"17525\",\n    \"17527\",\n    \"17528\",\n    \"17529\",\n    \"17530\",\n    \"17531\",\n    \"17532\",\n    \"17533\",\n    \"17535\",\n    \"17538\",\n    \"17539\",\n    \"17540\",\n    \"17541\",\n    \"17542\",\n    \"17546\",\n    \"17547\",\n    \"17550\",\n    \"17551\",\n    \"17557\",\n    \"17560\",\n    \"17561\",\n    \"17563\",\n    \"17566\",\n    \"17567\",\n    \"17569\",\n    \"17571\",\n    \"17572\",\n    \"17573\",\n    \"17575\",\n    \"17576\",\n    \"17579\",\n    \"17580\",\n    \"17582\",\n    \"17583\",\n    \"17585\",\n    \"17591\",\n    \"17592\",\n    \"17596\",\n    \"17597\",\n    \"17598\",\n    \"17602\",\n    \"17603\",\n    \"17604\",\n    \"17606\",\n    \"17608\",\n    \"17610\",\n    \"17612\",\n    \"17615\",\n    \"17616\",\n    \"17618\",\n    \"17619\",\n    \"17621\",\n    \"17623\",\n    \"17625\",\n    \"17627\",\n    \"17628\",\n    \"17629\",\n    \"17630\",\n    \"17631\",\n    \"17632\",\n    \"17633\",\n    \"17636\",\n    \"17638\",\n    \"17639\",\n    \"17640\",\n    \"17641\",\n    \"17642\",\n    \"17643\",\n    \"17644\",\n    \"17647\",\n    \"17648\",\n    \"17649\",\n    \"17650\",\n    \"17651\",\n    \"17653\",\n    \"17655\",\n    \"17656\",\n    \"17660\",\n    \"17663\",\n    \"17664\",\n    \"17671\",\n    \"17673\",\n    \"17675\",\n    \"17676\",\n    \"17677\",\n    \"17678\",\n    \"17680\",\n    \"17682\",\n    \"17683\",\n    \"17684\",\n    \"17691\",\n    \"17694\",\n    \"17697\",\n    \"17699\",\n    \"17700\",\n    \"17701\",\n    \"17704\",\n    \"17705\",\n    \"17706\",\n    \"17714\",\n    \"17715\",\n    \"17716\",\n    \"17717\",\n    \"17718\",\n    \"17719\",\n    \"17720\",\n    \"17724\",\n    \"17725\",\n    \"17728\",\n    \"17731\",\n    \"17732\",\n    \"17733\",\n    \"17734\",\n    \"17736\",\n    \"17737\",\n    \"17738\",\n    \"17739\",\n    \"17740\",\n    \"17741\",\n    \"17742\",\n    \"17744\",\n    \"17745\",\n    \"17746\",\n    \"17747\",\n    \"17748\",\n    \"17749\",\n    \"17750\",\n    \"17751\",\n    \"17755\",\n    \"17756\",\n    \"17758\",\n    \"17759\",\n    \"17760\",\n    \"17761\",\n    \"17762\",\n    \"17764\",\n    \"17767\",\n    \"17768\",\n    \"17769\",\n    \"17770\",\n    \"17771\",\n    \"17772\",\n    \"17773\",\n    \"17776\",\n    \"17778\",\n    \"17779\",\n    \"17781\",\n    \"17782\",\n    \"17783\",\n    \"17786\",\n    \"17787\",\n    \"17794\",\n    \"17795\",\n    \"17796\",\n    \"17798\",\n    \"17799\",\n    \"17801\",\n    \"17802\",\n    \"17803\",\n    \"17806\",\n    \"17808\",\n    \"17809\",\n    \"17811\",\n    \"17812\",\n    \"17813\",\n    \"17814\",\n    \"17815\",\n    \"17816\",\n    \"17817\",\n    \"17822\",\n    \"17823\",\n    \"17824\",\n    \"17825\",\n    \"17826\",\n    \"17827\",\n    \"17828\",\n    \"17831\",\n    \"17834\",\n    \"17835\",\n    \"17838\",\n    \"17839\",\n    \"17842\",\n    \"17843\",\n    \"17847\",\n    \"17848\",\n    \"17849\",\n    \"17850\",\n    \"17851\",\n    \"17852\",\n    \"17854\",\n    \"17856\",\n    \"17858\",\n    \"17861\",\n    \"17862\",\n    \"17863\",\n    \"17864\",\n    \"17866\",\n    \"17869\",\n    \"17870\",\n    \"17871\",\n    \"17872\",\n    \"17873\",\n    \"17875\",\n    \"17876\",\n    \"17878\",\n    \"17879\",\n    \"17881\",\n    \"17883\",\n    \"17884\",\n    \"17885\",\n    \"17886\",\n    \"17889\",\n    \"17891\",\n    \"17892\",\n    \"17893\",\n    \"17894\",\n    \"17895\",\n    \"17897\",\n    \"17900\",\n    \"17902\",\n    \"17904\",\n    \"17905\",\n    \"17906\",\n    \"17909\",\n    \"17910\",\n    \"17911\",\n    \"17914\",\n    \"17915\",\n    \"17916\",\n    \"17919\",\n    \"17920\",\n    \"17922\",\n    \"17923\",\n    \"17925\",\n    \"17928\",\n    \"17931\",\n    \"17933\",\n    \"17934\",\n    \"17939\",\n    \"17940\",\n    \"17941\",\n    \"17944\",\n    \"17946\",\n    \"17947\",\n    \"17948\",\n    \"17949\",\n    \"17950\",\n    \"17951\",\n    \"17953\",\n    \"17954\",\n    \"17956\",\n    \"17957\",\n    \"17958\",\n    \"17959\",\n    \"17963\",\n    \"17964\",\n    \"17965\",\n    \"17967\",\n    \"17968\",\n    \"17971\",\n    \"17972\",\n    \"17973\",\n    \"17974\",\n    \"17978\",\n    \"17980\",\n    \"17981\",\n    \"17982\",\n    \"17983\",\n    \"17986\",\n    \"17987\",\n    \"17993\",\n    \"17996\",\n    \"17998\",\n    \"17999\",\n    \"18000\",\n    \"18001\",\n    \"18002\",\n    \"18006\",\n    \"18007\",\n    \"18008\",\n    \"18009\",\n    \"18011\",\n    \"18012\",\n    \"18013\",\n    \"18014\",\n    \"18015\",\n    \"18016\",\n    \"18017\",\n    \"18018\",\n    \"18020\",\n    \"18022\",\n    \"18023\",\n    \"18025\",\n    \"18026\",\n    \"18027\",\n    \"18028\",\n    \"18031\",\n    \"18035\",\n    \"18039\",\n    \"18040\",\n    \"18041\",\n    \"18042\",\n    \"18043\",\n    \"18044\",\n    \"18047\",\n    \"18049\",\n    \"18050\",\n    \"18051\",\n    \"18052\",\n    \"18054\",\n    \"18056\",\n    \"18057\",\n    \"18059\",\n    \"18060\",\n    \"18061\",\n    \"18062\",\n    \"18066\",\n    \"18067\",\n    \"18071\",\n    \"18074\",\n    \"18076\",\n    \"18079\",\n    \"18080\",\n    \"18084\",\n    \"18085\",\n    \"18087\",\n    \"18089\",\n    \"18090\",\n    \"18091\",\n    \"18093\",\n    \"18094\",\n    \"18096\",\n    \"18097\",\n    \"18098\",\n    \"18099\",\n    \"18100\",\n    \"18102\",\n    \"18103\",\n    \"18108\",\n    \"18109\",\n    \"18110\",\n    \"18111\",\n    \"18112\",\n    \"18114\",\n    \"18115\",\n    \"18116\",\n    \"18118\",\n    \"18119\",\n    \"18120\",\n    \"18121\",\n    \"18123\",\n    \"18125\",\n    \"18126\",\n    \"18132\",\n    \"18135\",\n    \"18139\",\n    \"18140\",\n    \"18141\",\n    \"18142\",\n    \"18143\",\n    \"18144\",\n    \"18145\",\n    \"18147\",\n    \"18148\",\n    \"18151\",\n    \"18153\",\n    \"18155\",\n    \"18156\",\n    \"18157\",\n    \"18158\",\n    \"18160\",\n    \"18161\",\n    \"18162\",\n    \"18163\",\n    \"18165\",\n    \"18169\",\n    \"18170\",\n    \"18171\",\n    \"18172\",\n    \"18175\",\n    \"18176\",\n    \"18177\",\n    \"18178\",\n    \"18179\",\n    \"18181\",\n    \"18183\",\n    \"18185\",\n    \"18188\",\n    \"18189\",\n    \"18191\",\n    \"18192\",\n    \"18193\",\n    \"18195\",\n    \"18198\",\n    \"18199\",\n    \"18203\",\n    \"18204\",\n    \"18205\",\n    \"18206\",\n    \"18207\",\n    \"18209\",\n    \"18210\",\n    \"18211\",\n    \"18213\",\n    \"18215\",\n    \"18218\",\n    \"18219\",\n    \"18220\",\n    \"18221\",\n    \"18222\",\n    \"18223\",\n    \"18224\",\n    \"18225\",\n    \"18226\",\n    \"18227\",\n    \"18229\",\n    \"18230\",\n    \"18231\",\n    \"18233\",\n    \"18236\",\n    \"18237\",\n    \"18239\",\n    \"18240\",\n    \"18242\",\n    \"18243\",\n    \"18244\",\n    \"18246\",\n    \"18247\",\n    \"18248\",\n    \"18253\",\n    \"18255\",\n    \"18260\",\n    \"18262\",\n    \"18264\",\n    \"18265\",\n    \"18266\",\n    \"18268\",\n    \"18269\",\n    \"18270\",\n    \"18274\",\n    \"18276\",\n    \"18279\",\n    \"18280\",\n    \"18281\",\n    \"18285\",\n    \"18286\",\n    \"18287\",\n    \"18289\",\n    \"18293\",\n    \"18295\",\n    \"18297\",\n    \"18299\",\n    \"18300\",\n    \"18301\",\n    \"18302\",\n    \"18305\",\n    \"18307\",\n    \"18308\",\n    \"18309\",\n    \"18313\",\n    \"18314\",\n    \"18316\",\n    \"18317\",\n    \"18318\",\n    \"18319\",\n    \"18320\",\n    \"18321\",\n    \"18323\",\n    \"18324\",\n    \"18325\",\n    \"18326\",\n    \"18327\",\n    \"18329\",\n    \"18330\",\n    \"18333\",\n    \"18335\",\n    \"18337\",\n    \"18339\",\n    \"18340\",\n    \"18341\",\n    \"18342\",\n    \"18343\",\n    \"18345\",\n    \"18346\",\n    \"18348\",\n    \"18350\",\n    \"18352\",\n    \"18353\",\n    \"18354\",\n    \"18355\",\n    \"18358\",\n    \"18359\",\n    \"18361\",\n    \"18364\",\n    \"18365\",\n    \"18366\",\n    \"18368\",\n    \"18370\",\n    \"18371\",\n    \"18373\",\n    \"18374\",\n    \"18375\",\n    \"18377\",\n    \"18380\",\n    \"18381\",\n    \"18383\",\n    \"18385\",\n    \"18388\",\n    \"18390\",\n    \"18392\",\n    \"18393\",\n    \"18394\",\n    \"18397\",\n    \"18398\",\n    \"18399\",\n    \"18400\",\n    \"18401\",\n    \"18402\",\n    \"18403\",\n    \"18404\",\n    \"18406\",\n    \"18408\",\n    \"18409\",\n    \"18410\",\n    \"18411\",\n    \"18413\",\n    \"18414\",\n    \"18415\",\n    \"18416\",\n    \"18417\",\n    \"18418\",\n    \"18419\",\n    \"18422\",\n    \"18423\",\n    \"18430\",\n    \"18431\",\n    \"18432\",\n    \"18433\",\n    \"18435\",\n    \"18437\",\n    \"18438\",\n    \"18439\",\n    \"18441\",\n    \"18442\",\n    \"18448\",\n    \"18449\",\n    \"18450\",\n    \"18451\",\n    \"18452\",\n    \"18453\",\n    \"18455\",\n    \"18456\",\n    \"18457\",\n    \"18458\",\n    \"18459\",\n    \"18461\",\n    \"18463\",\n    \"18464\",\n    \"18465\",\n    \"18466\",\n    \"18467\",\n    \"18468\",\n    \"18469\",\n    \"18470\",\n    \"18471\",\n    \"18473\",\n    \"18474\",\n    \"18476\",\n    \"18477\",\n    \"18478\",\n    \"18479\",\n    \"18481\",\n    \"18486\",\n    \"18490\",\n    \"18491\",\n    \"18493\",\n    \"18495\",\n    \"18496\",\n    \"18497\",\n    \"18498\",\n    \"18501\",\n    \"18502\",\n    \"18504\",\n    \"18505\",\n    \"18507\",\n    \"18508\",\n    \"18509\",\n    \"18510\",\n    \"18511\",\n    \"18514\",\n    \"18515\",\n    \"18517\",\n    \"18518\",\n    \"18519\",\n    \"18520\",\n    \"18521\",\n    \"18523\",\n    \"18524\",\n    \"18525\",\n    \"18526\",\n    \"18528\",\n    \"18529\",\n    \"18530\",\n    \"18532\",\n    \"18533\",\n    \"18536\",\n    \"18537\",\n    \"18538\",\n    \"18539\",\n    \"18540\",\n    \"18542\",\n    \"18543\",\n    \"18544\",\n    \"18545\",\n    \"18546\",\n    \"18548\",\n    \"18549\",\n    \"18551\",\n    \"18552\",\n    \"18554\",\n    \"18555\",\n    \"18557\",\n    \"18558\",\n    \"18561\",\n    \"18563\",\n    \"18567\",\n    \"18568\",\n    \"18569\",\n    \"18570\",\n    \"18573\",\n    \"18574\",\n    \"18575\",\n    \"18577\",\n    \"18578\",\n    \"18579\",\n    \"18580\",\n    \"18581\",\n    \"18582\",\n    \"18583\",\n    \"18584\",\n    \"18585\",\n    \"18587\",\n    \"18589\",\n    \"18590\",\n    \"18591\",\n    \"18592\",\n    \"18593\",\n    \"18595\",\n    \"18596\",\n    \"18597\",\n    \"18598\",\n    \"18599\",\n    \"18600\",\n    \"18601\",\n    \"18602\",\n    \"18603\",\n    \"18606\",\n    \"18608\",\n    \"18610\",\n    \"18611\",\n    \"18612\",\n    \"18613\",\n    \"18614\",\n    \"18615\",\n    \"18616\",\n    \"18618\",\n    \"18619\",\n    \"18620\",\n    \"18621\",\n    \"18622\",\n    \"18625\",\n    \"18626\",\n    \"18628\",\n    \"18631\",\n    \"18634\",\n    \"18636\",\n    \"18637\",\n    \"18638\",\n    \"18639\",\n    \"18640\",\n    \"18641\",\n    \"18642\",\n    \"18644\",\n    \"18645\",\n    \"18646\",\n    \"18647\",\n    \"18648\",\n    \"18649\",\n    \"18650\",\n    \"18652\",\n    \"18654\",\n    \"18655\",\n    \"18656\",\n    \"18657\",\n    \"18661\",\n    \"18663\",\n    \"18664\",\n    \"18665\",\n    \"18666\",\n    \"18667\",\n    \"18668\",\n    \"18669\",\n    \"18670\",\n    \"18672\",\n    \"18674\",\n    \"18676\",\n    \"18677\",\n    \"18678\",\n    \"18680\",\n    \"18683\",\n    \"18685\",\n    \"18688\",\n    \"18692\",\n    \"18694\",\n    \"18695\",\n    \"18696\",\n    \"18697\",\n    \"18698\",\n    \"18699\",\n    \"18700\",\n    \"18701\",\n    \"18705\",\n    \"18706\",\n    \"18708\",\n    \"18711\",\n    \"18712\",\n    \"18713\",\n    \"18717\",\n    \"18719\",\n    \"18720\",\n    \"18724\",\n    \"18725\",\n    \"18726\",\n    \"18727\",\n    \"18728\",\n    \"18729\",\n    \"18730\",\n    \"18731\",\n    \"18733\",\n    \"18734\",\n    \"18735\",\n    \"18736\",\n    \"18737\",\n    \"18738\",\n    \"18740\",\n    \"18741\",\n    \"18742\",\n    \"18745\",\n    \"18746\",\n    \"18747\",\n    \"18749\",\n    \"18751\",\n    \"18757\",\n    \"18759\",\n    \"18760\",\n    \"18761\",\n    \"18762\",\n    \"18764\",\n    \"18767\",\n    \"18770\",\n    \"18771\",\n    \"18772\",\n    \"18773\",\n    \"18774\",\n    \"18776\",\n    \"18777\",\n    \"18782\",\n    \"18783\",\n    \"18784\",\n    \"18785\",\n    \"18789\",\n    \"18790\",\n    \"18791\",\n    \"18793\",\n    \"18794\",\n    \"18797\",\n    \"18799\",\n    \"18801\",\n    \"18802\",\n    \"18804\",\n    \"18805\",\n    \"18806\",\n    \"18807\",\n    \"18808\",\n    \"18809\",\n    \"18811\",\n    \"18813\",\n    \"18815\",\n    \"18817\",\n    \"18818\",\n    \"18819\",\n    \"18823\",\n    \"18824\",\n    \"18828\",\n    \"18829\",\n    \"18831\",\n    \"18833\",\n    \"18835\",\n    \"18836\",\n    \"18837\",\n    \"18838\",\n    \"18839\",\n    \"18840\",\n    \"18843\",\n    \"18844\",\n    \"18845\",\n    \"18848\",\n    \"18850\",\n    \"18852\",\n    \"18853\",\n    \"18854\",\n    \"18856\",\n    \"18857\",\n    \"18859\",\n    \"18860\",\n    \"18861\",\n    \"18865\",\n    \"18867\",\n    \"18869\",\n    \"18870\",\n    \"18871\",\n    \"18872\",\n    \"18874\",\n    \"18875\",\n    \"18877\",\n    \"18878\",\n    \"18879\",\n    \"18880\",\n    \"18882\",\n    \"18884\",\n    \"18886\",\n    \"18887\",\n    \"18890\",\n    \"18891\",\n    \"18894\",\n    \"18897\",\n    \"18898\",\n    \"18899\",\n    \"18900\",\n    \"18901\",\n    \"18902\",\n    \"18903\",\n    \"18908\",\n    \"18909\",\n    \"18910\",\n    \"18911\",\n    \"18912\",\n    \"18913\",\n    \"18916\",\n    \"18917\",\n    \"18918\",\n    \"18921\",\n    \"18923\",\n    \"18925\",\n    \"18927\",\n    \"18930\",\n    \"18933\",\n    \"18934\",\n    \"18939\",\n    \"18941\",\n    \"18942\",\n    \"18943\",\n    \"18944\",\n    \"18945\",\n    \"18946\",\n    \"18948\",\n    \"18950\",\n    \"18953\",\n    \"18954\",\n    \"18955\",\n    \"18956\",\n    \"18957\",\n    \"18958\",\n    \"18959\",\n    \"18960\",\n    \"18963\",\n    \"18964\",\n    \"18965\",\n    \"18966\",\n    \"18967\",\n    \"18968\",\n    \"18969\",\n    \"18970\",\n    \"18971\",\n    \"18975\",\n    \"18976\",\n    \"18977\",\n    \"18978\",\n    \"18979\",\n    \"18980\",\n    \"18981\",\n    \"18983\",\n    \"18984\",\n    \"18987\",\n    \"18988\",\n    \"18990\",\n    \"18991\",\n    \"18992\",\n    \"18993\",\n    \"18996\",\n    \"18997\",\n    \"18998\",\n    \"18999\",\n    \"19000\",\n    \"19001\",\n    \"19004\",\n    \"19005\",\n    \"19006\",\n    \"19007\",\n    \"19008\",\n    \"19009\",\n    \"19010\",\n    \"19011\",\n    \"19012\",\n    \"19014\",\n    \"19015\",\n    \"19018\",\n    \"19019\",\n    \"19020\",\n    \"19021\",\n    \"19025\",\n    \"19026\",\n    \"19027\",\n    \"19030\",\n    \"19031\",\n    \"19032\",\n    \"19033\",\n    \"19035\",\n    \"19039\",\n    \"19040\",\n    \"19044\",\n    \"19046\",\n    \"19047\",\n    \"19050\",\n    \"19052\",\n    \"19054\",\n    \"19057\",\n    \"19058\",\n    \"19061\",\n    \"19062\",\n    \"19064\",\n    \"19065\",\n    \"19066\",\n    \"19067\",\n    \"19068\",\n    \"19069\",\n    \"19071\",\n    \"19073\",\n    \"19074\",\n    \"19077\",\n    \"19079\",\n    \"19082\",\n    \"19083\",\n    \"19084\",\n    \"19085\",\n    \"19088\",\n    \"19089\",\n    \"19091\",\n    \"19092\",\n    \"19094\",\n    \"19095\",\n    \"19096\",\n    \"19097\",\n    \"19098\",\n    \"19099\",\n    \"19100\",\n    \"19102\",\n    \"19105\",\n    \"19106\",\n    \"19107\",\n    \"19109\",\n    \"19111\",\n    \"19114\",\n    \"19116\",\n    \"19120\",\n    \"19121\",\n    \"19123\",\n    \"19124\",\n    \"19125\",\n    \"19126\",\n    \"19127\",\n    \"19128\",\n    \"19130\",\n    \"19131\",\n    \"19132\",\n    \"19135\",\n    \"19138\",\n    \"19140\",\n    \"19144\",\n    \"19145\",\n    \"19146\",\n    \"19147\",\n    \"19149\",\n    \"19151\",\n    \"19153\",\n    \"19154\",\n    \"19157\",\n    \"19159\",\n    \"19160\",\n    \"19162\",\n    \"19166\",\n    \"19168\",\n    \"19169\",\n    \"19170\",\n    \"19171\",\n    \"19175\",\n    \"19177\",\n    \"19178\",\n    \"19179\",\n    \"19180\",\n    \"19184\",\n    \"19185\",\n    \"19186\",\n    \"19188\",\n    \"19189\",\n    \"19190\",\n    \"19191\",\n    \"19192\",\n    \"19193\",\n    \"19194\",\n    \"19195\",\n    \"19196\",\n    \"19198\",\n    \"19199\",\n    \"19200\",\n    \"19202\",\n    \"19203\",\n    \"19207\",\n    \"19208\",\n    \"19210\",\n    \"19211\",\n    \"19212\",\n    \"19214\",\n    \"19215\",\n    \"19216\",\n    \"19218\",\n    \"19221\",\n    \"19222\",\n    \"19224\",\n    \"19226\",\n    \"19228\",\n    \"19229\",\n    \"19230\",\n    \"19231\",\n    \"19236\",\n    \"19240\",\n    \"19242\",\n    \"19245\",\n    \"19246\",\n    \"19247\",\n    \"19249\",\n    \"19250\",\n    \"19251\",\n    \"19252\",\n    \"19255\",\n    \"19256\",\n    \"19261\",\n    \"19262\",\n    \"19265\",\n    \"19267\",\n    \"19268\",\n    \"19269\",\n    \"19270\",\n    \"19272\",\n    \"19273\",\n    \"19275\",\n    \"19276\",\n    \"19277\",\n    \"19279\",\n    \"19280\",\n    \"19281\",\n    \"19283\",\n    \"19284\",\n    \"19286\",\n    \"19288\",\n    \"19289\",\n    \"19290\",\n    \"19291\",\n    \"19297\",\n    \"19298\",\n    \"19300\",\n    \"19301\",\n    \"19302\",\n    \"19306\",\n    \"19307\",\n    \"19308\",\n    \"19309\",\n    \"19311\",\n    \"19312\",\n    \"19313\",\n    \"19314\",\n    \"19315\",\n    \"19316\",\n    \"19317\",\n    \"19319\",\n    \"19320\",\n    \"19321\",\n    \"19325\",\n    \"19326\",\n    \"19329\",\n    \"19335\",\n    \"19336\",\n    \"19337\",\n    \"19338\",\n    \"19339\",\n    \"19342\",\n    \"19343\",\n    \"19344\",\n    \"19345\",\n    \"19347\",\n    \"19348\",\n    \"19349\",\n    \"19350\",\n    \"19352\",\n    \"19357\",\n    \"19358\",\n    \"19359\",\n    \"19361\",\n    \"19362\",\n    \"19363\",\n    \"19364\",\n    \"19366\",\n    \"19368\",\n    \"19369\",\n    \"19371\",\n    \"19373\",\n    \"19374\",\n    \"19376\",\n    \"19377\",\n    \"19378\",\n    \"19379\",\n    \"19382\",\n    \"19383\",\n    \"19384\",\n    \"19385\",\n    \"19388\",\n    \"19389\",\n    \"19390\",\n    \"19391\",\n    \"19392\",\n    \"19393\",\n    \"19394\",\n    \"19396\",\n    \"19399\",\n    \"19402\",\n    \"19404\",\n    \"19406\",\n    \"19409\",\n    \"19410\",\n    \"19411\",\n    \"19414\",\n    \"19415\",\n    \"19416\",\n    \"19417\",\n    \"19418\",\n    \"19419\",\n    \"19420\",\n    \"19421\",\n    \"19422\",\n    \"19425\",\n    \"19426\",\n    \"19427\",\n    \"19428\",\n    \"19429\",\n    \"19431\",\n    \"19432\",\n    \"19433\",\n    \"19434\",\n    \"19436\",\n    \"19437\",\n    \"19438\",\n    \"19439\",\n    \"19440\",\n    \"19441\",\n    \"19443\",\n    \"19445\",\n    \"19446\",\n    \"19447\",\n    \"19448\",\n    \"19449\",\n    \"19451\",\n    \"19453\",\n    \"19454\",\n    \"19455\",\n    \"19458\",\n    \"19461\",\n    \"19462\",\n    \"19463\",\n    \"19464\",\n    \"19465\",\n    \"19466\",\n    \"19467\",\n    \"19469\",\n    \"19472\",\n    \"19474\",\n    \"19475\",\n    \"19478\",\n    \"19480\",\n    \"19485\",\n    \"19486\",\n    \"19487\",\n    \"19489\",\n    \"19490\",\n    \"19491\",\n    \"19492\",\n    \"19497\",\n    \"19499\",\n    \"19504\",\n    \"19507\",\n    \"19509\",\n    \"19510\",\n    \"19511\",\n    \"19512\",\n    \"19513\",\n    \"19514\",\n    \"19516\",\n    \"19517\",\n    \"19519\",\n    \"19522\",\n    \"19523\",\n    \"19526\",\n    \"19527\",\n    \"19528\",\n    \"19529\",\n    \"19530\",\n    \"19534\",\n    \"19536\",\n    \"19537\",\n    \"19539\",\n    \"19540\",\n    \"19547\",\n    \"19551\",\n    \"19553\",\n    \"19554\",\n    \"19555\",\n    \"19556\",\n    \"19557\",\n    \"19561\",\n    \"19563\",\n    \"19564\",\n    \"19565\",\n    \"19566\",\n    \"19567\",\n    \"19568\",\n    \"19569\",\n    \"19570\",\n    \"19571\",\n    \"19572\",\n    \"19573\",\n    \"19574\",\n    \"19576\",\n    \"19577\",\n    \"19578\",\n    \"19579\",\n    \"19580\",\n    \"19581\",\n    \"19582\",\n    \"19583\",\n    \"19584\",\n    \"19585\",\n    \"19586\",\n    \"19587\",\n    \"19589\",\n    \"19590\",\n    \"19591\",\n    \"19593\",\n    \"19594\",\n    \"19596\",\n    \"19597\",\n    \"19599\",\n    \"19600\",\n    \"19603\",\n    \"19604\",\n    \"19605\",\n    \"19606\",\n    \"19607\",\n    \"19608\",\n    \"19609\",\n    \"19610\",\n    \"19611\",\n    \"19612\",\n    \"19613\",\n    \"19614\",\n    \"19615\",\n    \"19616\",\n    \"19619\",\n    \"19621\",\n    \"19622\",\n    \"19623\",\n    \"19624\",\n    \"19626\",\n    \"19627\",\n    \"19628\",\n    \"19631\",\n    \"19633\",\n    \"19635\",\n    \"19636\",\n    \"19637\",\n    \"19639\",\n    \"19640\",\n    \"19643\",\n    \"19644\",\n    \"19645\",\n    \"19647\",\n    \"19648\",\n    \"19650\",\n    \"19651\",\n    \"19652\",\n    \"19654\",\n    \"19655\",\n    \"19656\",\n    \"19662\",\n    \"19663\",\n    \"19664\",\n    \"19667\",\n    \"19668\",\n    \"19669\",\n    \"19670\",\n    \"19671\",\n    \"19672\",\n    \"19673\",\n    \"19677\",\n    \"19679\",\n    \"19682\",\n    \"19683\",\n    \"19684\",\n    \"19685\",\n    \"19686\",\n    \"19688\",\n    \"19689\",\n    \"19690\",\n    \"19692\",\n    \"19696\",\n    \"19698\",\n    \"19699\",\n    \"19702\",\n    \"19703\",\n    \"19705\",\n    \"19706\",\n    \"19707\",\n    \"19708\",\n    \"19709\",\n    \"19710\",\n    \"19711\",\n    \"19712\",\n    \"19713\",\n    \"19714\",\n    \"19715\",\n    \"19716\",\n    \"19717\",\n    \"19718\",\n    \"19719\",\n    \"19724\",\n    \"19727\",\n    \"19728\",\n    \"19729\",\n    \"19733\",\n    \"19734\",\n    \"19735\",\n    \"19737\",\n    \"19738\",\n    \"19739\",\n    \"19741\",\n    \"19743\",\n    \"19745\",\n    \"19746\",\n    \"19747\",\n    \"19748\",\n    \"19749\",\n    \"19751\",\n    \"19753\",\n    \"19755\",\n    \"19757\",\n    \"19758\",\n    \"19760\",\n    \"19761\",\n    \"19762\",\n    \"19765\",\n    \"19766\",\n    \"19767\",\n    \"19768\",\n    \"19769\",\n    \"19770\",\n    \"19771\",\n    \"19772\",\n    \"19773\",\n    \"19774\",\n    \"19775\",\n    \"19776\",\n    \"19777\",\n    \"19779\",\n    \"19781\",\n    \"19783\",\n    \"19784\",\n    \"19786\",\n    \"19790\",\n    \"19792\",\n    \"19794\",\n    \"19795\",\n    \"19796\",\n    \"19797\",\n    \"19799\",\n    \"19800\",\n    \"19801\",\n    \"19802\",\n    \"19806\",\n    \"19809\",\n    \"19810\",\n    \"19811\",\n    \"19812\",\n    \"19813\",\n    \"19814\",\n    \"19822\",\n    \"19825\",\n    \"19827\",\n    \"19828\",\n    \"19832\",\n    \"19833\",\n    \"19834\",\n    \"19836\",\n    \"19837\",\n    \"19838\",\n    \"19840\",\n    \"19841\",\n    \"19842\",\n    \"19843\",\n    \"19844\",\n    \"19845\",\n    \"19846\",\n    \"19849\",\n    \"19852\",\n    \"19853\",\n    \"19855\",\n    \"19857\",\n    \"19858\",\n    \"19861\",\n    \"19863\",\n    \"19864\",\n    \"19865\",\n    \"19866\",\n    \"19868\",\n    \"19869\",\n    \"19874\",\n    \"19875\",\n    \"19876\",\n    \"19878\",\n    \"19880\",\n    \"19881\",\n    \"19884\",\n    \"19885\",\n    \"19887\",\n    \"19892\",\n    \"19893\",\n    \"19895\",\n    \"19896\",\n    \"19897\",\n    \"19898\",\n    \"19900\",\n    \"19907\",\n    \"19909\",\n    \"19910\",\n    \"19911\",\n    \"19914\",\n    \"19916\",\n    \"19917\",\n    \"19920\",\n    \"19923\",\n    \"19924\",\n    \"19925\",\n    \"19927\",\n    \"19929\",\n    \"19930\",\n    \"19933\",\n    \"19935\",\n    \"19938\",\n    \"19940\",\n    \"19942\",\n    \"19943\",\n    \"19944\",\n    \"19946\",\n    \"19947\",\n    \"19956\",\n    \"19957\",\n    \"19959\",\n    \"19961\",\n    \"19965\",\n    \"19967\",\n    \"19969\",\n    \"19971\",\n    \"19972\",\n    \"19973\",\n    \"19974\",\n    \"19978\",\n    \"19979\",\n    \"19985\",\n    \"19986\",\n    \"19987\",\n    \"19988\",\n    \"19989\",\n    \"19991\",\n    \"19993\",\n    \"19995\",\n    \"19997\",\n    \"20004\",\n    \"20005\",\n    \"20006\",\n    \"20008\",\n    \"20010\",\n    \"20012\",\n    \"20013\",\n    \"20015\",\n    \"20016\",\n    \"20017\",\n    \"20018\",\n    \"20019\",\n    \"20022\",\n    \"20026\",\n    \"20029\",\n    \"20031\",\n    \"20032\",\n    \"20033\",\n    \"20034\",\n    \"20035\",\n    \"20037\",\n    \"20039\",\n    \"20042\",\n    \"20044\",\n    \"20045\",\n    \"20047\",\n    \"20049\",\n    \"20050\",\n    \"20052\",\n    \"20053\",\n    \"20054\",\n    \"20057\",\n    \"20059\",\n    \"20060\",\n    \"20063\",\n    \"20066\",\n    \"20067\",\n    \"20068\",\n    \"20071\",\n    \"20072\",\n    \"20073\",\n    \"20076\",\n    \"20077\",\n    \"20078\",\n    \"20080\",\n    \"20082\",\n    \"20083\",\n    \"20084\",\n    \"20085\",\n    \"20086\",\n    \"20087\",\n    \"20088\",\n    \"20090\",\n    \"20091\",\n    \"20092\",\n    \"20093\",\n    \"20094\",\n    \"20097\",\n    \"20099\",\n    \"20100\",\n    \"20101\",\n    \"20102\",\n    \"20103\",\n    \"20104\",\n    \"20106\",\n    \"20107\",\n    \"20108\",\n    \"20109\",\n    \"20112\",\n    \"20113\",\n    \"20114\",\n    \"20118\",\n    \"20122\",\n    \"20123\",\n    \"20125\",\n    \"20127\",\n    \"20128\",\n    \"20129\",\n    \"20130\",\n    \"20131\",\n    \"20133\",\n    \"20136\",\n    \"20137\",\n    \"20138\",\n    \"20139\",\n    \"20140\",\n    \"20141\",\n    \"20142\",\n    \"20143\",\n    \"20144\",\n    \"20146\",\n    \"20147\",\n    \"20149\",\n    \"20150\",\n    \"20151\",\n    \"20152\",\n    \"20153\",\n    \"20154\",\n    \"20155\",\n    \"20156\",\n    \"20157\",\n    \"20158\",\n    \"20160\",\n    \"20163\",\n    \"20164\",\n    \"20165\",\n    \"20168\",\n    \"20169\",\n    \"20171\",\n    \"20175\",\n    \"20177\",\n    \"20178\",\n    \"20179\",\n    \"20181\",\n    \"20182\",\n    \"20185\",\n    \"20188\",\n    \"20190\",\n    \"20193\",\n    \"20194\",\n    \"20196\",\n    \"20197\",\n    \"20198\",\n    \"20200\",\n    \"20202\",\n    \"20204\",\n    \"20205\",\n    \"20207\",\n    \"20209\",\n    \"20212\",\n    \"20214\",\n    \"20218\",\n    \"20222\",\n    \"20223\",\n    \"20225\",\n    \"20227\",\n    \"20228\",\n    \"20230\",\n    \"20232\",\n    \"20233\",\n    \"20234\",\n    \"20235\",\n    \"20237\",\n    \"20238\",\n    \"20240\",\n    \"20242\",\n    \"20243\",\n    \"20246\",\n    \"20247\",\n    \"20248\",\n    \"20249\",\n    \"20252\",\n    \"20253\",\n    \"20254\",\n    \"20255\",\n    \"20257\",\n    \"20258\",\n    \"20260\",\n    \"20261\",\n    \"20263\",\n    \"20265\",\n    \"20266\",\n    \"20267\",\n    \"20270\",\n    \"20271\",\n    \"20273\",\n    \"20276\",\n    \"20277\",\n    \"20278\",\n    \"20281\",\n    \"20282\",\n    \"20285\",\n    \"20287\",\n    \"20288\",\n    \"20290\",\n    \"20291\",\n    \"20292\",\n    \"20293\",\n    \"20294\",\n    \"20296\",\n    \"20297\",\n    \"20299\",\n    \"20300\",\n    \"20301\",\n    \"20306\",\n    \"20309\",\n    \"20311\",\n    \"20312\",\n    \"20313\",\n    \"20314\",\n    \"20315\",\n    \"20316\",\n    \"20317\",\n    \"20318\",\n    \"20319\",\n    \"20321\",\n    \"20324\",\n    \"20325\",\n    \"20326\",\n    \"20327\",\n    \"20328\",\n    \"20329\",\n    \"20330\",\n    \"20331\",\n    \"20332\",\n    \"20333\",\n    \"20335\",\n    \"20336\",\n    \"20338\",\n    \"20341\",\n    \"20342\",\n    \"20343\",\n    \"20344\",\n    \"20345\",\n    \"20346\",\n    \"20350\",\n    \"20352\",\n    \"20353\",\n    \"20354\",\n    \"20355\",\n    \"20356\",\n    \"20357\",\n    \"20359\",\n    \"20361\",\n    \"20363\",\n    \"20364\",\n    \"20365\",\n    \"20366\",\n    \"20367\",\n    \"20369\",\n    \"20370\",\n    \"20372\",\n    \"20373\",\n    \"20375\",\n    \"20377\",\n    \"20378\",\n    \"20379\",\n    \"20380\",\n    \"20385\",\n    \"20386\",\n    \"20387\",\n    \"20388\",\n    \"20389\",\n    \"20390\",\n    \"20393\",\n    \"20394\",\n    \"20395\",\n    \"20396\",\n    \"20397\",\n    \"20398\",\n    \"20400\",\n    \"20402\",\n    \"20403\",\n    \"20404\",\n    \"20405\",\n    \"20406\",\n    \"20408\",\n    \"20409\",\n    \"20412\",\n    \"20414\",\n    \"20415\",\n    \"20417\",\n    \"20418\",\n    \"20419\",\n    \"20420\",\n    \"20422\",\n    \"20423\",\n    \"20425\",\n    \"20428\",\n    \"20429\",\n    \"20431\",\n    \"20432\",\n    \"20433\",\n    \"20435\",\n    \"20437\",\n    \"20443\",\n    \"20444\",\n    \"20445\",\n    \"20447\",\n    \"20448\",\n    \"20449\",\n    \"20450\",\n    \"20452\",\n    \"20453\",\n    \"20454\",\n    \"20455\",\n    \"20456\",\n    \"20457\",\n    \"20458\",\n    \"20460\",\n    \"20462\",\n    \"20463\",\n    \"20465\",\n    \"20466\",\n    \"20467\",\n    \"20468\",\n    \"20469\",\n    \"20472\",\n    \"20473\",\n    \"20474\",\n    \"20476\",\n    \"20477\",\n    \"20479\",\n    \"20480\",\n    \"20481\",\n    \"20483\",\n    \"20485\",\n    \"20487\",\n    \"20488\",\n    \"20491\",\n    \"20492\",\n    \"20493\",\n    \"20494\",\n    \"20496\",\n    \"20497\",\n    \"20499\",\n    \"20501\",\n    \"20502\",\n    \"20504\",\n    \"20508\",\n    \"20509\",\n    \"20510\",\n    \"20511\",\n    \"20512\",\n    \"20513\",\n    \"20515\",\n    \"20517\",\n    \"20519\",\n    \"20520\",\n    \"20521\",\n    \"20523\",\n    \"20524\",\n    \"20525\",\n    \"20526\",\n    \"20528\",\n    \"20529\",\n    \"20530\",\n    \"20531\",\n    \"20533\",\n    \"20534\",\n    \"20536\",\n    \"20537\",\n    \"20538\",\n    \"20540\",\n    \"20541\",\n    \"20543\",\n    \"20544\",\n    \"20545\",\n    \"20546\",\n    \"20548\",\n    \"20549\",\n    \"20550\",\n    \"20551\",\n    \"20553\",\n    \"20555\",\n    \"20556\",\n    \"20557\",\n    \"20558\",\n    \"20560\",\n    \"20562\",\n    \"20563\",\n    \"20564\",\n    \"20569\",\n    \"20573\",\n    \"20576\",\n    \"20578\",\n    \"20579\",\n    \"20583\",\n    \"20585\",\n    \"20586\",\n    \"20587\",\n    \"20589\",\n    \"20590\",\n    \"20598\",\n    \"20603\",\n    \"20605\",\n    \"20606\",\n    \"20607\",\n    \"20608\",\n    \"20609\",\n    \"20611\",\n    \"20613\",\n    \"20615\",\n    \"20616\",\n    \"20618\",\n    \"20619\",\n    \"20620\",\n    \"20621\",\n    \"20622\",\n    \"20623\",\n    \"20624\",\n    \"20625\",\n    \"20626\",\n    \"20627\",\n    \"20628\",\n    \"20629\",\n    \"20630\",\n    \"20631\",\n    \"20633\",\n    \"20635\",\n    \"20637\",\n    \"20638\",\n    \"20641\",\n    \"20642\",\n    \"20646\",\n    \"20649\",\n    \"20651\",\n    \"20653\",\n    \"20654\",\n    \"20656\",\n    \"20657\",\n    \"20659\",\n    \"20662\",\n    \"20664\",\n    \"20667\",\n    \"20668\",\n    \"20670\",\n    \"20673\",\n    \"20676\",\n    \"20678\",\n    \"20679\",\n    \"20680\",\n    \"20681\",\n    \"20682\",\n    \"20683\",\n    \"20684\",\n    \"20685\",\n    \"20686\",\n    \"20687\",\n    \"20688\",\n    \"20691\",\n    \"20692\",\n    \"20695\",\n    \"20697\",\n    \"20698\",\n    \"20700\",\n    \"20704\",\n    \"20707\",\n    \"20713\",\n    \"20714\",\n    \"20715\",\n    \"20716\",\n    \"20717\",\n    \"20719\",\n    \"20724\",\n    \"20726\",\n    \"20727\",\n    \"20728\",\n    \"20730\",\n    \"20733\",\n    \"20735\",\n    \"20736\",\n    \"20743\",\n    \"20744\",\n    \"20746\",\n    \"20748\",\n    \"20750\",\n    \"20753\",\n    \"20754\",\n    \"20755\",\n    \"20757\",\n    \"20759\",\n    \"20760\",\n    \"20763\",\n    \"20765\",\n    \"20766\",\n    \"20767\",\n    \"20768\",\n    \"20771\",\n    \"20772\",\n    \"20773\",\n    \"20774\",\n    \"20775\",\n    \"20776\",\n    \"20777\",\n    \"20778\",\n    \"20780\",\n    \"20781\",\n    \"20783\",\n    \"20784\",\n    \"20785\",\n    \"20786\",\n    \"20789\",\n    \"20790\",\n    \"20791\",\n    \"20795\",\n    \"20796\",\n    \"20797\",\n    \"20798\",\n    \"20799\",\n    \"20800\",\n    \"20803\",\n    \"20805\",\n    \"20807\",\n    \"20808\",\n    \"20809\",\n    \"20810\",\n    \"20811\",\n    \"20812\",\n    \"20813\",\n    \"20814\",\n    \"20816\",\n    \"20818\",\n    \"20819\",\n    \"20821\",\n    \"20822\",\n    \"20824\",\n    \"20825\",\n    \"20827\",\n    \"20828\",\n    \"20831\",\n    \"20833\",\n    \"20834\",\n    \"20836\",\n    \"20837\",\n    \"20838\",\n    \"20839\",\n    \"20840\",\n    \"20841\",\n    \"20843\",\n    \"20845\",\n    \"20850\",\n    \"20852\",\n    \"20853\",\n    \"20855\",\n    \"20856\",\n    \"20862\",\n    \"20865\",\n    \"20867\",\n    \"20868\",\n    \"20869\",\n    \"20870\",\n    \"20872\",\n    \"20873\",\n    \"20874\",\n    \"20875\",\n    \"20876\",\n    \"20877\",\n    \"20878\",\n    \"20880\",\n    \"20882\",\n    \"20884\",\n    \"20885\",\n    \"20886\",\n    \"20892\",\n    \"20893\",\n    \"20894\",\n    \"20895\",\n    \"20896\",\n    \"20897\",\n    \"20898\",\n    \"20899\",\n    \"20900\",\n    \"20901\",\n    \"20902\",\n    \"20903\",\n    \"20904\",\n    \"20905\",\n    \"20906\",\n    \"20909\",\n    \"20910\",\n    \"20911\",\n    \"20912\",\n    \"20913\",\n    \"20914\",\n    \"20918\",\n    \"20920\",\n    \"20921\",\n    \"20923\",\n    \"20925\",\n    \"20927\",\n    \"20928\",\n    \"20929\",\n    \"20930\",\n    \"20931\",\n    \"20932\",\n    \"20933\",\n    \"20934\",\n    \"20935\",\n    \"20936\",\n    \"20937\",\n    \"20938\",\n    \"20939\",\n    \"20940\",\n    \"20941\",\n    \"20942\",\n    \"20944\",\n    \"20945\",\n    \"20946\",\n    \"20951\",\n    \"20955\",\n    \"20958\",\n    \"20959\",\n    \"20960\",\n    \"20962\",\n    \"20963\",\n    \"20964\",\n    \"20965\",\n    \"20966\",\n    \"20968\",\n    \"20971\",\n    \"20972\",\n    \"20973\",\n    \"20974\",\n    \"20975\",\n    \"20976\",\n    \"20977\",\n    \"20978\",\n    \"20981\",\n    \"20983\",\n    \"20985\",\n    \"20987\",\n    \"20989\",\n    \"20990\",\n    \"20991\",\n    \"20992\",\n    \"20993\",\n    \"20996\",\n    \"21002\",\n    \"21003\",\n    \"21004\",\n    \"21005\",\n    \"21007\",\n    \"21008\",\n    \"21011\",\n    \"21012\",\n    \"21015\",\n    \"21016\",\n    \"21017\",\n    \"21022\",\n    \"21024\",\n    \"21026\",\n    \"21027\",\n    \"21028\",\n    \"21029\",\n    \"21030\",\n    \"21032\",\n    \"21034\",\n    \"21035\",\n    \"21036\",\n    \"21037\",\n    \"21038\",\n    \"21039\",\n    \"21043\",\n    \"21045\",\n    \"21046\",\n    \"21047\",\n    \"21050\",\n    \"21051\",\n    \"21054\",\n    \"21055\",\n    \"21056\",\n    \"21057\",\n    \"21058\",\n    \"21059\",\n    \"21060\",\n    \"21065\",\n    \"21066\",\n    \"21067\",\n    \"21068\",\n    \"21069\",\n    \"21071\",\n    \"21073\",\n    \"21074\",\n    \"21075\",\n    \"21077\",\n    \"21078\",\n    \"21079\",\n    \"21081\",\n    \"21084\",\n    \"21085\",\n    \"21086\",\n    \"21088\",\n    \"21089\",\n    \"21092\",\n    \"21093\",\n    \"21094\",\n    \"21096\",\n    \"21097\",\n    \"21101\",\n    \"21105\",\n    \"21106\",\n    \"21107\",\n    \"21108\",\n    \"21110\",\n    \"21111\",\n    \"21112\",\n    \"21113\",\n    \"21115\",\n    \"21116\",\n    \"21118\",\n    \"21119\",\n    \"21120\",\n    \"21122\",\n    \"21123\",\n    \"21124\",\n    \"21125\",\n    \"21126\",\n    \"21129\",\n    \"21130\",\n    \"21131\",\n    \"21132\",\n    \"21134\",\n    \"21138\",\n    \"21139\",\n    \"21141\",\n    \"21142\",\n    \"21143\",\n    \"21145\",\n    \"21148\",\n    \"21150\",\n    \"21152\",\n    \"21154\",\n    \"21155\",\n    \"21157\",\n    \"21158\",\n    \"21160\",\n    \"21162\",\n    \"21164\",\n    \"21165\",\n    \"21167\",\n    \"21169\",\n    \"21170\",\n    \"21171\",\n    \"21173\",\n    \"21175\",\n    \"21176\",\n    \"21177\",\n    \"21178\",\n    \"21179\",\n    \"21180\",\n    \"21182\",\n    \"21184\",\n    \"21185\",\n    \"21186\",\n    \"21187\",\n    \"21188\",\n    \"21190\",\n    \"21193\",\n    \"21194\",\n    \"21197\",\n    \"21201\",\n    \"21202\",\n    \"21203\",\n    \"21204\",\n    \"21205\",\n    \"21208\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"13\",\n    \"14\",\n    \"16\",\n    \"18\",\n    \"28\",\n    \"36\",\n    \"45\",\n    \"50\",\n    \"52\",\n    \"55\",\n    \"60\",\n    \"66\",\n    \"67\",\n    \"71\",\n    \"72\",\n    \"74\",\n    \"77\",\n    \"79\",\n    \"81\",\n    \"82\",\n    \"89\",\n    \"101\",\n    \"106\",\n    \"113\",\n    \"118\",\n    \"122\",\n    \"124\",\n    \"127\",\n    \"147\",\n    \"148\",\n    \"150\",\n    \"153\",\n    \"160\",\n    \"164\",\n    \"165\",\n    \"169\",\n    \"173\",\n    \"178\",\n    \"206\",\n    \"213\",\n    \"221\",\n    \"227\",\n    \"231\",\n    \"240\",\n    \"241\",\n    \"247\",\n    \"249\",\n    \"254\",\n    \"256\",\n    \"257\",\n    \"258\",\n    \"262\",\n    \"263\",\n    \"265\",\n    \"273\",\n    \"274\",\n    \"278\",\n    \"281\",\n    \"284\",\n    \"290\",\n    \"299\",\n    \"302\",\n    \"309\",\n    \"317\",\n    \"323\",\n    \"326\",\n    \"340\",\n    \"343\",\n    \"356\",\n    \"357\",\n    \"358\",\n    \"360\",\n    \"361\",\n    \"367\",\n    \"371\",\n    \"376\",\n    \"384\",\n    \"393\",\n    \"394\",\n    \"399\",\n    \"416\",\n    \"418\",\n    \"420\",\n    \"421\",\n    \"422\",\n    \"426\",\n    \"431\",\n    \"449\",\n    \"455\",\n    \"467\",\n    \"472\",\n    \"475\",\n    \"481\",\n    \"483\",\n    \"486\",\n    \"497\",\n    \"502\",\n    \"505\",\n    \"513\",\n    \"514\",\n    \"529\",\n    \"544\",\n    \"547\",\n    \"560\",\n    \"570\",\n    \"571\",\n    \"580\",\n    \"582\",\n    \"586\",\n    \"590\",\n    \"591\",\n    \"592\",\n    \"597\",\n    \"598\",\n    \"606\",\n    \"608\",\n    \"610\",\n    \"618\",\n    \"622\",\n    \"623\",\n    \"626\",\n    \"647\",\n    \"656\",\n    \"661\",\n    \"662\",\n    \"664\",\n    \"666\",\n    \"682\",\n    \"687\",\n    \"690\",\n    \"698\",\n    \"700\",\n    \"704\",\n    \"711\",\n    \"716\",\n    \"721\",\n    \"722\",\n    \"724\",\n    \"725\",\n    \"727\",\n    \"737\",\n    \"738\",\n    \"740\",\n    \"744\",\n    \"745\",\n    \"750\",\n    \"757\",\n    \"758\",\n    \"759\",\n    \"760\",\n    \"761\",\n    \"765\",\n    \"767\",\n    \"771\",\n    \"776\",\n    \"779\",\n    \"780\",\n    \"782\",\n    \"786\",\n    \"790\",\n    \"803\",\n    \"809\",\n    \"813\",\n    \"815\",\n    \"818\",\n    \"821\",\n    \"825\",\n    \"829\",\n    \"837\",\n    \"838\",\n    \"839\",\n    \"846\",\n    \"847\",\n    \"855\",\n    \"859\",\n    \"863\",\n    \"864\",\n    \"867\",\n    \"871\",\n    \"873\",\n    \"885\",\n    \"891\",\n    \"896\",\n    \"904\",\n    \"911\",\n    \"912\",\n    \"914\",\n    \"917\",\n    \"919\",\n    \"920\",\n    \"921\",\n    \"924\",\n    \"927\",\n    \"934\",\n    \"940\",\n    \"941\",\n    \"947\",\n    \"951\",\n    \"958\",\n    \"963\",\n    \"967\",\n    \"970\",\n    \"979\",\n    \"984\",\n    \"992\",\n    \"994\",\n    \"995\",\n    \"1005\",\n    \"1010\",\n    \"1013\",\n    \"1033\",\n    \"1036\",\n    \"1037\",\n    \"1040\",\n    \"1046\",\n    \"1051\",\n    \"1057\",\n    \"1059\",\n    \"1065\",\n    \"1071\",\n    \"1073\",\n    \"1077\",\n    \"1087\",\n    \"1100\",\n    \"1102\",\n    \"1103\",\n    \"1110\",\n    \"1124\",\n    \"1136\",\n    \"1145\",\n    \"1149\",\n    \"1152\",\n    \"1159\",\n    \"1162\",\n    \"1170\",\n    \"1177\",\n    \"1181\",\n    \"1182\",\n    \"1189\",\n    \"1191\",\n    \"1195\",\n    \"1196\",\n    \"1198\",\n    \"1201\",\n    \"1213\",\n    \"1215\",\n    \"1216\",\n    \"1219\",\n    \"1230\",\n    \"1233\",\n    \"1235\",\n    \"1241\",\n    \"1242\",\n    \"1246\",\n    \"1250\",\n    \"1254\",\n    \"1255\",\n    \"1256\",\n    \"1257\",\n    \"1264\",\n    \"1265\",\n    \"1266\",\n    \"1271\",\n    \"1274\",\n    \"1277\",\n    \"1280\",\n    \"1283\",\n    \"1284\",\n    \"1290\",\n    \"1295\",\n    \"1299\",\n    \"1300\",\n    \"1302\",\n    \"1307\",\n    \"1308\",\n    \"1310\",\n    \"1317\",\n    \"1321\",\n    \"1325\",\n    \"1327\",\n    \"1330\",\n    \"1332\",\n    \"1342\",\n    \"1353\",\n    \"1356\",\n    \"1357\",\n    \"1361\",\n    \"1364\",\n    \"1365\",\n    \"1373\",\n    \"1377\",\n    \"1381\",\n    \"1386\",\n    \"1394\",\n    \"1397\",\n    \"1404\",\n    \"1405\",\n    \"1408\",\n    \"1414\",\n    \"1417\",\n    \"1418\",\n    \"1422\",\n    \"1433\",\n    \"1441\",\n    \"1449\",\n    \"1457\",\n    \"1487\",\n    \"1489\",\n    \"1490\",\n    \"1494\",\n    \"1497\",\n    \"1498\",\n    \"1505\",\n    \"1512\",\n    \"1520\",\n    \"1522\",\n    \"1523\",\n    \"1525\",\n    \"1534\",\n    \"1543\",\n    \"1544\",\n    \"1562\",\n    \"1574\",\n    \"1575\",\n    \"1580\",\n    \"1585\",\n    \"1587\",\n    \"1599\",\n    \"1602\",\n    \"1616\",\n    \"1623\",\n    \"1638\",\n    \"1639\",\n    \"1644\",\n    \"1652\",\n    \"1662\",\n    \"1664\",\n    \"1665\",\n    \"1667\",\n    \"1670\",\n    \"1675\",\n    \"1676\",\n    \"1677\",\n    \"1678\",\n    \"1679\",\n    \"1681\",\n    \"1682\",\n    \"1684\",\n    \"1688\",\n    \"1689\",\n    \"1691\",\n    \"1692\",\n    \"1693\",\n    \"1701\",\n    \"1705\",\n    \"1710\",\n    \"1713\",\n    \"1716\",\n    \"1726\",\n    \"1728\",\n    \"1735\",\n    \"1750\",\n    \"1751\",\n    \"1759\",\n    \"1764\",\n    \"1767\",\n    \"1770\",\n    \"1772\",\n    \"1777\",\n    \"1781\",\n    \"1783\",\n    \"1789\",\n    \"1792\",\n    \"1794\",\n    \"1801\",\n    \"1805\",\n    \"1807\",\n    \"1812\",\n    \"1815\",\n    \"1822\",\n    \"1827\",\n    \"1838\",\n    \"1844\",\n    \"1850\",\n    \"1855\",\n    \"1856\",\n    \"1858\",\n    \"1859\",\n    \"1866\",\n    \"1870\",\n    \"1872\",\n    \"1875\",\n    \"1876\",\n    \"1880\",\n    \"1881\",\n    \"1889\",\n    \"1900\",\n    \"1906\",\n    \"1911\",\n    \"1923\",\n    \"1925\",\n    \"1934\",\n    \"1935\",\n    \"1938\",\n    \"1944\",\n    \"1954\",\n    \"1956\",\n    \"1957\",\n    \"1968\",\n    \"1969\",\n    \"1973\",\n    \"1975\",\n    \"1983\",\n    \"1984\",\n    \"1986\",\n    \"1990\",\n    \"1991\",\n    \"1997\",\n    \"1999\",\n    \"2006\",\n    \"2019\",\n    \"2031\",\n    \"2036\",\n    \"2041\",\n    \"2056\",\n    \"2059\",\n    \"2060\",\n    \"2061\",\n    \"2064\",\n    \"2070\",\n    \"2071\",\n    \"2074\",\n    \"2082\",\n    \"2083\",\n    \"2088\",\n    \"2096\",\n    \"2102\",\n    \"2108\",\n    \"2109\",\n    \"2115\",\n    \"2118\",\n    \"2131\",\n    \"2134\",\n    \"2136\",\n    \"2137\",\n    \"2144\",\n    \"2162\",\n    \"2164\",\n    \"2166\",\n    \"2169\",\n    \"2174\",\n    \"2175\",\n    \"2176\",\n    \"2183\",\n    \"2184\",\n    \"2185\",\n    \"2187\",\n    \"2188\",\n    \"2191\",\n    \"2193\",\n    \"2199\",\n    \"2200\",\n    \"2203\",\n    \"2209\",\n    \"2222\",\n    \"2223\",\n    \"2226\",\n    \"2229\",\n    \"2232\",\n    \"2238\",\n    \"2241\",\n    \"2245\",\n    \"2249\",\n    \"2251\",\n    \"2256\",\n    \"2262\",\n    \"2270\",\n    \"2272\",\n    \"2275\",\n    \"2276\",\n    \"2282\",\n    \"2290\",\n    \"2295\",\n    \"2300\",\n    \"2311\",\n    \"2312\",\n    \"2315\",\n    \"2320\",\n    \"2325\",\n    \"2326\",\n    \"2334\",\n    \"2338\",\n    \"2340\",\n    \"2348\",\n    \"2352\",\n    \"2359\",\n    \"2362\",\n    \"2364\",\n    \"2370\",\n    \"2376\",\n    \"2377\",\n    \"2381\",\n    \"2393\",\n    \"2397\",\n    \"2399\",\n    \"2402\",\n    \"2407\",\n    \"2410\",\n    \"2415\",\n    \"2427\",\n    \"2430\",\n    \"2433\",\n    \"2436\",\n    \"2437\",\n    \"2443\",\n    \"2445\",\n    \"2447\",\n    \"2458\",\n    \"2459\",\n    \"2461\",\n    \"2465\",\n    \"2475\",\n    \"2480\",\n    \"2487\",\n    \"2489\",\n    \"2491\",\n    \"2493\",\n    \"2501\",\n    \"2508\",\n    \"2517\",\n    \"2522\",\n    \"2524\",\n    \"2534\",\n    \"2537\",\n    \"2540\",\n    \"2542\",\n    \"2543\",\n    \"2544\",\n    \"2547\",\n    \"2550\",\n    \"2553\",\n    \"2560\",\n    \"2565\",\n    \"2587\",\n    \"2589\",\n    \"2592\",\n    \"2594\",\n    \"2596\",\n    \"2602\",\n    \"2606\",\n    \"2611\",\n    \"2620\",\n    \"2622\",\n    \"2632\",\n    \"2635\",\n    \"2641\",\n    \"2642\",\n    \"2646\",\n    \"2652\",\n    \"2653\",\n    \"2655\",\n    \"2657\",\n    \"2659\",\n    \"2661\",\n    \"2665\",\n    \"2666\",\n    \"2668\",\n    \"2669\",\n    \"2670\",\n    \"2672\",\n    \"2673\",\n    \"2678\",\n    \"2680\",\n    \"2684\",\n    \"2685\",\n    \"2688\",\n    \"2694\",\n    \"2696\",\n    \"2697\",\n    \"2700\",\n    \"2708\",\n    \"2724\",\n    \"2727\",\n    \"2733\",\n    \"2734\",\n    \"2744\",\n    \"2749\",\n    \"2754\",\n    \"2761\",\n    \"2766\",\n    \"2769\",\n    \"2774\",\n    \"2793\",\n    \"2801\",\n    \"2821\",\n    \"2823\",\n    \"2824\",\n    \"2833\",\n    \"2838\",\n    \"2861\",\n    \"2864\",\n    \"2866\",\n    \"2868\",\n    \"2872\",\n    \"2874\",\n    \"2875\",\n    \"2879\",\n    \"2889\",\n    \"2895\",\n    \"2897\",\n    \"2907\",\n    \"2910\",\n    \"2916\",\n    \"2918\",\n    \"2934\",\n    \"2941\",\n    \"2945\",\n    \"2961\",\n    \"2975\",\n    \"2985\",\n    \"2991\",\n    \"3001\",\n    \"3002\",\n    \"3005\",\n    \"3010\",\n    \"3011\",\n    \"3013\",\n    \"3014\",\n    \"3017\",\n    \"3018\",\n    \"3019\",\n    \"3023\",\n    \"3029\",\n    \"3030\",\n    \"3033\",\n    \"3051\",\n    \"3053\",\n    \"3059\",\n    \"3067\",\n    \"3070\",\n    \"3082\",\n    \"3087\",\n    \"3098\",\n    \"3108\",\n    \"3112\",\n    \"3114\",\n    \"3120\",\n    \"3121\",\n    \"3124\",\n    \"3137\",\n    \"3160\",\n    \"3161\",\n    \"3162\",\n    \"3163\",\n    \"3164\",\n    \"3172\",\n    \"3176\",\n    \"3177\",\n    \"3183\",\n    \"3186\",\n    \"3195\",\n    \"3198\",\n    \"3199\",\n    \"3200\",\n    \"3207\",\n    \"3209\",\n    \"3223\",\n    \"3224\",\n    \"3228\",\n    \"3232\",\n    \"3240\",\n    \"3251\",\n    \"3263\",\n    \"3265\",\n    \"3268\",\n    \"3270\",\n    \"3279\",\n    \"3282\",\n    \"3283\",\n    \"3287\",\n    \"3290\",\n    \"3293\",\n    \"3294\",\n    \"3313\",\n    \"3317\",\n    \"3348\",\n    \"3356\",\n    \"3359\",\n    \"3361\",\n    \"3364\",\n    \"3366\",\n    \"3367\",\n    \"3368\",\n    \"3371\",\n    \"3372\",\n    \"3380\",\n    \"3388\",\n    \"3390\",\n    \"3410\",\n    \"3417\",\n    \"3420\",\n    \"3424\",\n    \"3425\",\n    \"3429\",\n    \"3432\",\n    \"3435\",\n    \"3438\",\n    \"3444\",\n    \"3446\",\n    \"3449\",\n    \"3450\",\n    \"3453\",\n    \"3462\",\n    \"3475\",\n    \"3483\",\n    \"3487\",\n    \"3489\",\n    \"3499\",\n    \"3502\",\n    \"3517\",\n    \"3522\",\n    \"3527\",\n    \"3532\",\n    \"3533\",\n    \"3538\",\n    \"3543\",\n    \"3546\",\n    \"3553\",\n    \"3555\",\n    \"3560\",\n    \"3561\",\n    \"3564\",\n    \"3566\",\n    \"3569\",\n    \"3570\",\n    \"3572\",\n    \"3581\",\n    \"3582\",\n    \"3584\",\n    \"3588\",\n    \"3591\",\n    \"3594\",\n    \"3610\",\n    \"3616\",\n    \"3619\",\n    \"3621\",\n    \"3622\",\n    \"3625\",\n    \"3628\",\n    \"3631\",\n    \"3637\",\n    \"3641\",\n    \"3651\",\n    \"3652\",\n    \"3658\",\n    \"3662\",\n    \"3666\",\n    \"3667\",\n    \"3693\",\n    \"3695\",\n    \"3697\",\n    \"3709\",\n    \"3711\",\n    \"3712\",\n    \"3714\",\n    \"3726\",\n    \"3729\",\n    \"3738\",\n    \"3757\",\n    \"3761\",\n    \"3782\",\n    \"3794\",\n    \"3796\",\n    \"3802\",\n    \"3803\",\n    \"3805\",\n    \"3812\",\n    \"3816\",\n    \"3818\",\n    \"3819\",\n    \"3822\",\n    \"3828\",\n    \"3836\",\n    \"3837\",\n    \"3841\",\n    \"3842\",\n    \"3843\",\n    \"3856\",\n    \"3861\",\n    \"3878\",\n    \"3890\",\n    \"3902\",\n    \"3908\",\n    \"3909\",\n    \"3911\",\n    \"3922\",\n    \"3927\",\n    \"3935\",\n    \"3945\",\n    \"3950\",\n    \"3953\",\n    \"3962\",\n    \"3967\",\n    \"3970\",\n    \"3975\",\n    \"3982\",\n    \"3987\",\n    \"3992\",\n    \"3999\",\n    \"4011\",\n    \"4016\",\n    \"4018\",\n    \"4019\",\n    \"4020\",\n    \"4030\",\n    \"4034\",\n    \"4036\",\n    \"4038\",\n    \"4043\",\n    \"4045\",\n    \"4047\",\n    \"4051\",\n    \"4057\",\n    \"4060\",\n    \"4063\",\n    \"4066\",\n    \"4067\",\n    \"4073\",\n    \"4085\",\n    \"4087\",\n    \"4100\",\n    \"4101\",\n    \"4103\",\n    \"4105\",\n    \"4107\",\n    \"4109\",\n    \"4119\",\n    \"4127\",\n    \"4132\",\n    \"4134\",\n    \"4137\",\n    \"4141\",\n    \"4143\",\n    \"4152\",\n    \"4158\",\n    \"4161\",\n    \"4162\",\n    \"4171\",\n    \"4178\",\n    \"4184\",\n    \"4186\",\n    \"4191\",\n    \"4192\",\n    \"4198\",\n    \"4200\",\n    \"4201\",\n    \"4209\",\n    \"4212\",\n    \"4219\",\n    \"4224\",\n    \"4226\",\n    \"4235\",\n    \"4236\",\n    \"4241\",\n    \"4252\",\n    \"4256\",\n    \"4266\",\n    \"4268\",\n    \"4276\",\n    \"4283\",\n    \"4284\",\n    \"4290\",\n    \"4292\",\n    \"4294\",\n    \"4304\",\n    \"4324\",\n    \"4327\",\n    \"4353\",\n    \"4356\",\n    \"4358\",\n    \"4360\",\n    \"4369\",\n    \"4383\",\n    \"4400\",\n    \"4406\",\n    \"4418\",\n    \"4421\",\n    \"4432\",\n    \"4435\",\n    \"4442\",\n    \"4450\",\n    \"4452\",\n    \"4454\",\n    \"4457\",\n    \"4460\",\n    \"4469\",\n    \"4470\",\n    \"4472\",\n    \"4480\",\n    \"4498\",\n    \"4499\",\n    \"4509\",\n    \"4511\",\n    \"4514\",\n    \"4516\",\n    \"4517\",\n    \"4522\",\n    \"4524\",\n    \"4527\",\n    \"4528\",\n    \"4536\",\n    \"4539\",\n    \"4540\",\n    \"4541\",\n    \"4545\",\n    \"4547\",\n    \"4549\",\n    \"4550\",\n    \"4552\",\n    \"4558\",\n    \"4561\",\n    \"4563\",\n    \"4565\",\n    \"4580\",\n    \"4585\",\n    \"4592\",\n    \"4595\",\n    \"4599\",\n    \"4601\",\n    \"4602\",\n    \"4610\",\n    \"4612\",\n    \"4621\",\n    \"4635\",\n    \"4644\",\n    \"4676\",\n    \"4684\",\n    \"4687\",\n    \"4688\",\n    \"4691\",\n    \"4692\",\n    \"4693\",\n    \"4695\",\n    \"4700\",\n    \"4702\",\n    \"4703\",\n    \"4721\",\n    \"4724\",\n    \"4728\",\n    \"4735\",\n    \"4738\",\n    \"4745\",\n    \"4754\",\n    \"4766\",\n    \"4769\",\n    \"4776\",\n    \"4777\",\n    \"4781\",\n    \"4785\",\n    \"4790\",\n    \"4791\",\n    \"4793\",\n    \"4794\",\n    \"4799\",\n    \"4807\",\n    \"4811\",\n    \"4813\",\n    \"4822\",\n    \"4824\",\n    \"4841\",\n    \"4842\",\n    \"4843\",\n    \"4845\",\n    \"4850\",\n    \"4857\",\n    \"4858\",\n    \"4868\",\n    \"4869\",\n    \"4875\",\n    \"4880\",\n    \"4884\",\n    \"4887\",\n    \"4892\",\n    \"4899\",\n    \"4905\",\n    \"4913\",\n    \"4916\",\n    \"4926\",\n    \"4929\",\n    \"4932\",\n    \"4935\",\n    \"4940\",\n    \"4951\",\n    \"4966\",\n    \"4972\",\n    \"4982\",\n    \"4983\",\n    \"4984\",\n    \"4997\",\n    \"5001\",\n    \"5002\",\n    \"5005\",\n    \"5007\",\n    \"5009\",\n    \"5016\",\n    \"5023\",\n    \"5033\",\n    \"5039\",\n    \"5040\",\n    \"5043\",\n    \"5053\",\n    \"5065\",\n    \"5068\",\n    \"5074\",\n    \"5075\",\n    \"5076\",\n    \"5079\",\n    \"5085\",\n    \"5088\",\n    \"5089\",\n    \"5094\",\n    \"5101\",\n    \"5106\",\n    \"5107\",\n    \"5108\",\n    \"5114\",\n    \"5130\",\n    \"5132\",\n    \"5136\",\n    \"5149\",\n    \"5151\",\n    \"5161\",\n    \"5167\",\n    \"5178\",\n    \"5187\",\n    \"5191\",\n    \"5196\",\n    \"5197\",\n    \"5206\",\n    \"5219\",\n    \"5230\",\n    \"5235\",\n    \"5242\",\n    \"5247\",\n    \"5250\",\n    \"5257\",\n    \"5266\",\n    \"5268\",\n    \"5283\",\n    \"5289\",\n    \"5290\",\n    \"5291\",\n    \"5292\",\n    \"5295\",\n    \"5296\",\n    \"5297\",\n    \"5303\",\n    \"5315\",\n    \"5321\",\n    \"5327\",\n    \"5330\",\n    \"5340\",\n    \"5344\",\n    \"5345\",\n    \"5350\",\n    \"5353\",\n    \"5357\",\n    \"5360\",\n    \"5368\",\n    \"5369\",\n    \"5376\",\n    \"5377\",\n    \"5379\",\n    \"5384\",\n    \"5397\",\n    \"5402\",\n    \"5406\",\n    \"5411\",\n    \"5435\",\n    \"5436\",\n    \"5438\",\n    \"5445\",\n    \"5449\",\n    \"5463\",\n    \"5464\",\n    \"5473\",\n    \"5487\",\n    \"5492\",\n    \"5495\",\n    \"5501\",\n    \"5508\",\n    \"5509\",\n    \"5517\",\n    \"5518\",\n    \"5520\",\n    \"5523\",\n    \"5524\",\n    \"5531\",\n    \"5532\",\n    \"5538\",\n    \"5541\",\n    \"5544\",\n    \"5546\",\n    \"5549\",\n    \"5550\",\n    \"5551\",\n    \"5555\",\n    \"5556\",\n    \"5565\",\n    \"5572\",\n    \"5575\",\n    \"5579\",\n    \"5586\",\n    \"5588\",\n    \"5590\",\n    \"5591\",\n    \"5595\",\n    \"5600\",\n    \"5601\",\n    \"5602\",\n    \"5604\",\n    \"5605\",\n    \"5619\",\n    \"5620\",\n    \"5622\",\n    \"5624\",\n    \"5626\",\n    \"5630\",\n    \"5646\",\n    \"5647\",\n    \"5652\",\n    \"5660\",\n    \"5677\",\n    \"5679\",\n    \"5686\",\n    \"5689\",\n    \"5701\",\n    \"5705\",\n    \"5706\",\n    \"5712\",\n    \"5714\",\n    \"5716\",\n    \"5723\",\n    \"5727\",\n    \"5733\",\n    \"5735\",\n    \"5746\",\n    \"5750\",\n    \"5756\",\n    \"5764\",\n    \"5765\",\n    \"5768\",\n    \"5772\",\n    \"5775\",\n    \"5779\",\n    \"5785\",\n    \"5788\",\n    \"5791\",\n    \"5794\",\n    \"5797\",\n    \"5814\",\n    \"5818\",\n    \"5819\",\n    \"5823\",\n    \"5825\",\n    \"5848\",\n    \"5851\",\n    \"5852\",\n    \"5853\",\n    \"5855\",\n    \"5862\",\n    \"5872\",\n    \"5873\",\n    \"5883\",\n    \"5884\",\n    \"5902\",\n    \"5911\",\n    \"5915\",\n    \"5916\",\n    \"5921\",\n    \"5923\",\n    \"5927\",\n    \"5935\",\n    \"5941\",\n    \"5945\",\n    \"5948\",\n    \"5949\",\n    \"5954\",\n    \"5962\",\n    \"5964\",\n    \"5974\",\n    \"5982\",\n    \"5984\",\n    \"5987\",\n    \"6009\",\n    \"6010\",\n    \"6011\",\n    \"6014\",\n    \"6017\",\n    \"6021\",\n    \"6024\",\n    \"6030\",\n    \"6033\",\n    \"6048\",\n    \"6050\",\n    \"6060\",\n    \"6061\",\n    \"6063\",\n    \"6064\",\n    \"6067\",\n    \"6071\",\n    \"6073\",\n    \"6077\",\n    \"6080\",\n    \"6081\",\n    \"6088\",\n    \"6089\",\n    \"6101\",\n    \"6102\",\n    \"6107\",\n    \"6108\",\n    \"6109\",\n    \"6111\",\n    \"6113\",\n    \"6119\",\n    \"6126\",\n    \"6130\",\n    \"6135\",\n    \"6147\",\n    \"6168\",\n    \"6170\",\n    \"6181\",\n    \"6182\",\n    \"6183\",\n    \"6194\",\n    \"6200\",\n    \"6213\",\n    \"6217\",\n    \"6228\",\n    \"6240\",\n    \"6246\",\n    \"6248\",\n    \"6249\",\n    \"6251\",\n    \"6264\",\n    \"6268\",\n    \"6272\",\n    \"6274\",\n    \"6280\",\n    \"6288\",\n    \"6295\",\n    \"6297\",\n    \"6298\",\n    \"6305\",\n    \"6310\",\n    \"6311\",\n    \"6318\",\n    \"6322\",\n    \"6335\",\n    \"6336\",\n    \"6343\",\n    \"6344\",\n    \"6348\",\n    \"6352\",\n    \"6359\",\n    \"6366\",\n    \"6370\",\n    \"6373\",\n    \"6374\",\n    \"6380\",\n    \"6384\",\n    \"6386\",\n    \"6390\",\n    \"6399\",\n    \"6401\",\n    \"6403\",\n    \"6404\",\n    \"6409\",\n    \"6418\",\n    \"6419\",\n    \"6430\",\n    \"6431\",\n    \"6437\",\n    \"6440\",\n    \"6444\",\n    \"6453\",\n    \"6458\",\n    \"6459\",\n    \"6474\",\n    \"6476\",\n    \"6480\",\n    \"6483\",\n    \"6485\",\n    \"6486\",\n    \"6488\",\n    \"6490\",\n    \"6492\",\n    \"6495\",\n    \"6497\",\n    \"6509\",\n    \"6511\",\n    \"6518\",\n    \"6523\",\n    \"6532\",\n    \"6540\",\n    \"6544\",\n    \"6570\",\n    \"6571\",\n    \"6575\",\n    \"6583\",\n    \"6590\",\n    \"6593\",\n    \"6597\",\n    \"6598\",\n    \"6612\",\n    \"6613\",\n    \"6621\",\n    \"6623\",\n    \"6627\",\n    \"6628\",\n    \"6631\",\n    \"6632\",\n    \"6640\",\n    \"6641\",\n    \"6654\",\n    \"6661\",\n    \"6669\",\n    \"6676\",\n    \"6677\",\n    \"6681\",\n    \"6684\",\n    \"6694\",\n    \"6703\",\n    \"6704\",\n    \"6707\",\n    \"6714\",\n    \"6719\",\n    \"6721\",\n    \"6730\",\n    \"6740\",\n    \"6742\",\n    \"6751\",\n    \"6761\",\n    \"6765\",\n    \"6767\",\n    \"6770\",\n    \"6771\",\n    \"6772\",\n    \"6773\",\n    \"6781\",\n    \"6787\",\n    \"6788\",\n    \"6791\",\n    \"6796\",\n    \"6803\",\n    \"6813\",\n    \"6824\",\n    \"6833\",\n    \"6836\",\n    \"6839\",\n    \"6840\",\n    \"6855\",\n    \"6864\",\n    \"6865\",\n    \"6866\",\n    \"6871\",\n    \"6872\",\n    \"6883\",\n    \"6884\",\n    \"6887\",\n    \"6889\",\n    \"6896\",\n    \"6898\",\n    \"6909\",\n    \"6911\",\n    \"6918\",\n    \"6933\",\n    \"6935\",\n    \"6946\",\n    \"6947\",\n    \"6966\",\n    \"6969\",\n    \"6972\",\n    \"6973\",\n    \"6975\",\n    \"6977\",\n    \"6979\",\n    \"6983\",\n    \"6989\",\n    \"7002\",\n    \"7008\",\n    \"7011\",\n    \"7018\",\n    \"7019\",\n    \"7022\",\n    \"7024\",\n    \"7040\",\n    \"7046\",\n    \"7050\",\n    \"7053\",\n    \"7058\",\n    \"7066\",\n    \"7071\",\n    \"7076\",\n    \"7082\",\n    \"7096\",\n    \"7097\",\n    \"7101\",\n    \"7105\",\n    \"7111\",\n    \"7113\",\n    \"7136\",\n    \"7137\",\n    \"7146\",\n    \"7149\",\n    \"7152\",\n    \"7155\",\n    \"7158\",\n    \"7162\",\n    \"7169\",\n    \"7171\",\n    \"7172\",\n    \"7174\",\n    \"7177\",\n    \"7179\",\n    \"7180\",\n    \"7190\",\n    \"7194\",\n    \"7197\",\n    \"7199\",\n    \"7210\",\n    \"7217\",\n    \"7225\",\n    \"7230\",\n    \"7234\",\n    \"7236\",\n    \"7237\",\n    \"7242\",\n    \"7243\",\n    \"7247\",\n    \"7251\",\n    \"7254\",\n    \"7256\",\n    \"7262\",\n    \"7268\",\n    \"7273\",\n    \"7280\",\n    \"7282\",\n    \"7290\",\n    \"7292\",\n    \"7294\",\n    \"7296\",\n    \"7297\",\n    \"7298\",\n    \"7326\",\n    \"7328\",\n    \"7330\",\n    \"7334\",\n    \"7338\",\n    \"7343\",\n    \"7344\",\n    \"7345\",\n    \"7346\",\n    \"7347\",\n    \"7355\",\n    \"7356\",\n    \"7357\",\n    \"7359\",\n    \"7361\",\n    \"7363\",\n    \"7375\",\n    \"7389\",\n    \"7391\",\n    \"7392\",\n    \"7396\",\n    \"7397\",\n    \"7399\",\n    \"7401\",\n    \"7407\",\n    \"7411\",\n    \"7420\",\n    \"7426\",\n    \"7429\",\n    \"7442\",\n    \"7443\",\n    \"7448\",\n    \"7455\",\n    \"7459\",\n    \"7460\",\n    \"7461\",\n    \"7475\",\n    \"7481\",\n    \"7482\",\n    \"7491\",\n    \"7492\",\n    \"7493\",\n    \"7506\",\n    \"7510\",\n    \"7516\",\n    \"7522\",\n    \"7538\",\n    \"7540\",\n    \"7543\",\n    \"7544\",\n    \"7559\",\n    \"7562\",\n    \"7569\",\n    \"7570\",\n    \"7571\",\n    \"7583\",\n    \"7596\",\n    \"7600\",\n    \"7603\",\n    \"7605\",\n    \"7613\",\n    \"7616\",\n    \"7618\",\n    \"7619\",\n    \"7628\",\n    \"7630\",\n    \"7636\",\n    \"7639\",\n    \"7641\",\n    \"7645\",\n    \"7650\",\n    \"7654\",\n    \"7656\",\n    \"7659\",\n    \"7662\",\n    \"7671\",\n    \"7672\",\n    \"7678\",\n    \"7681\",\n    \"7683\",\n    \"7684\",\n    \"7686\",\n    \"7689\",\n    \"7697\",\n    \"7704\",\n    \"7712\",\n    \"7716\",\n    \"7718\",\n    \"7723\",\n    \"7728\",\n    \"7739\",\n    \"7742\",\n    \"7745\",\n    \"7747\",\n    \"7748\",\n    \"7755\",\n    \"7760\",\n    \"7765\",\n    \"7776\",\n    \"7777\",\n    \"7787\",\n    \"7794\",\n    \"7799\",\n    \"7800\",\n    \"7801\",\n    \"7803\",\n    \"7807\",\n    \"7811\",\n    \"7812\",\n    \"7824\",\n    \"7827\",\n    \"7839\",\n    \"7843\",\n    \"7845\",\n    \"7858\",\n    \"7864\",\n    \"7865\",\n    \"7868\",\n    \"7870\",\n    \"7872\",\n    \"7876\",\n    \"7881\",\n    \"7886\",\n    \"7899\",\n    \"7904\",\n    \"7907\",\n    \"7919\",\n    \"7922\",\n    \"7924\",\n    \"7930\",\n    \"7932\",\n    \"7935\",\n    \"7939\",\n    \"7941\",\n    \"7942\",\n    \"7949\",\n    \"7952\",\n    \"7953\",\n    \"7955\",\n    \"7959\",\n    \"7960\",\n    \"7961\",\n    \"7962\",\n    \"7963\",\n    \"7969\",\n    \"7971\",\n    \"7974\",\n    \"7979\",\n    \"7991\",\n    \"8006\",\n    \"8009\",\n    \"8010\",\n    \"8013\",\n    \"8016\",\n    \"8020\",\n    \"8027\",\n    \"8033\",\n    \"8034\",\n    \"8040\",\n    \"8042\",\n    \"8045\",\n    \"8051\",\n    \"8061\",\n    \"8072\",\n    \"8073\",\n    \"8082\",\n    \"8084\",\n    \"8087\",\n    \"8095\",\n    \"8096\",\n    \"8097\",\n    \"8098\",\n    \"8102\",\n    \"8103\",\n    \"8109\",\n    \"8110\",\n    \"8111\",\n    \"8112\",\n    \"8130\",\n    \"8131\",\n    \"8139\",\n    \"8141\",\n    \"8149\",\n    \"8154\",\n    \"8159\",\n    \"8161\",\n    \"8180\",\n    \"8182\",\n    \"8185\",\n    \"8197\",\n    \"8219\",\n    \"8231\",\n    \"8246\",\n    \"8275\",\n    \"8280\",\n    \"8284\",\n    \"8287\",\n    \"8289\",\n    \"8295\",\n    \"8298\",\n    \"8303\",\n    \"8305\",\n    \"8306\",\n    \"8309\",\n    \"8311\",\n    \"8314\",\n    \"8316\",\n    \"8318\",\n    \"8323\",\n    \"8328\",\n    \"8329\",\n    \"8355\",\n    \"8361\",\n    \"8365\",\n    \"8369\",\n    \"8378\",\n    \"8379\",\n    \"8381\",\n    \"8389\",\n    \"8390\",\n    \"8393\",\n    \"8404\",\n    \"8410\",\n    \"8413\",\n    \"8414\",\n    \"8419\",\n    \"8424\",\n    \"8429\",\n    \"8431\",\n    \"8434\",\n    \"8435\",\n    \"8438\",\n    \"8439\",\n    \"8444\",\n    \"8455\",\n    \"8457\",\n    \"8466\",\n    \"8468\",\n    \"8476\",\n    \"8477\",\n    \"8480\",\n    \"8484\",\n    \"8488\",\n    \"8493\",\n    \"8499\",\n    \"8501\",\n    \"8511\",\n    \"8512\",\n    \"8513\",\n    \"8522\",\n    \"8525\",\n    \"8528\",\n    \"8529\",\n    \"8532\",\n    \"8537\",\n    \"8550\",\n    \"8552\",\n    \"8558\",\n    \"8559\",\n    \"8561\",\n    \"8575\",\n    \"8576\",\n    \"8579\",\n    \"8582\",\n    \"8586\",\n    \"8589\",\n    \"8591\",\n    \"8596\",\n    \"8601\",\n    \"8612\",\n    \"8615\",\n    \"8620\",\n    \"8624\",\n    \"8635\",\n    \"8643\",\n    \"8649\",\n    \"8654\",\n    \"8663\",\n    \"8667\",\n    \"8677\",\n    \"8680\",\n    \"8683\",\n    \"8687\",\n    \"8688\",\n    \"8702\",\n    \"8707\",\n    \"8716\",\n    \"8724\",\n    \"8728\",\n    \"8731\",\n    \"8734\",\n    \"8739\",\n    \"8746\",\n    \"8751\",\n    \"8758\",\n    \"8767\",\n    \"8770\",\n    \"8771\",\n    \"8776\",\n    \"8778\",\n    \"8780\",\n    \"8784\",\n    \"8794\",\n    \"8799\",\n    \"8803\",\n    \"8804\",\n    \"8810\",\n    \"8820\",\n    \"8830\",\n    \"8832\",\n    \"8838\",\n    \"8839\",\n    \"8850\",\n    \"8851\",\n    \"8854\",\n    \"8857\",\n    \"8861\",\n    \"8868\",\n    \"8871\",\n    \"8907\",\n    \"8914\",\n    \"8918\",\n    \"8921\",\n    \"8922\",\n    \"8926\",\n    \"8927\",\n    \"8928\",\n    \"8933\",\n    \"8940\",\n    \"8946\",\n    \"8953\",\n    \"8956\",\n    \"8960\",\n    \"8967\",\n    \"8973\",\n    \"8978\",\n    \"8981\",\n    \"8983\",\n    \"8984\",\n    \"8988\",\n    \"8992\",\n    \"8996\",\n    \"8999\",\n    \"9002\",\n    \"9015\",\n    \"9016\",\n    \"9036\",\n    \"9037\",\n    \"9040\",\n    \"9042\",\n    \"9044\",\n    \"9060\",\n    \"9069\",\n    \"9074\",\n    \"9076\",\n    \"9078\",\n    \"9085\",\n    \"9088\",\n    \"9094\",\n    \"9097\",\n    \"9107\",\n    \"9110\",\n    \"9114\",\n    \"9119\",\n    \"9121\",\n    \"9122\",\n    \"9123\",\n    \"9124\",\n    \"9126\",\n    \"9133\",\n    \"9138\",\n    \"9141\",\n    \"9148\",\n    \"9158\",\n    \"9159\",\n    \"9168\",\n    \"9172\",\n    \"9174\",\n    \"9175\",\n    \"9176\",\n    \"9178\",\n    \"9181\",\n    \"9182\",\n    \"9190\",\n    \"9193\",\n    \"9195\",\n    \"9201\",\n    \"9204\",\n    \"9209\",\n    \"9215\",\n    \"9234\",\n    \"9237\",\n    \"9238\",\n    \"9241\",\n    \"9246\",\n    \"9260\",\n    \"9263\",\n    \"9271\",\n    \"9273\",\n    \"9282\",\n    \"9291\",\n    \"9292\",\n    \"9296\",\n    \"9301\",\n    \"9309\",\n    \"9310\",\n    \"9314\",\n    \"9322\",\n    \"9324\",\n    \"9327\",\n    \"9331\",\n    \"9333\",\n    \"9335\",\n    \"9338\",\n    \"9341\",\n    \"9342\",\n    \"9346\",\n    \"9351\",\n    \"9353\",\n    \"9359\",\n    \"9365\",\n    \"9368\",\n    \"9371\",\n    \"9378\",\n    \"9379\",\n    \"9380\",\n    \"9390\",\n    \"9406\",\n    \"9408\",\n    \"9409\",\n    \"9412\",\n    \"9417\",\n    \"9418\",\n    \"9426\",\n    \"9429\",\n    \"9443\",\n    \"9449\",\n    \"9456\",\n    \"9459\",\n    \"9461\",\n    \"9462\",\n    \"9465\",\n    \"9485\",\n    \"9487\",\n    \"9492\",\n    \"9496\",\n    \"9507\",\n    \"9517\",\n    \"9518\",\n    \"9524\",\n    \"9532\",\n    \"9534\",\n    \"9536\",\n    \"9543\",\n    \"9545\",\n    \"9547\",\n    \"9550\",\n    \"9553\",\n    \"9555\",\n    \"9566\",\n    \"9567\",\n    \"9571\",\n    \"9577\",\n    \"9586\",\n    \"9587\",\n    \"9588\",\n    \"9590\",\n    \"9611\",\n    \"9617\",\n    \"9625\",\n    \"9630\",\n    \"9639\",\n    \"9647\",\n    \"9658\",\n    \"9667\",\n    \"9674\",\n    \"9679\",\n    \"9680\",\n    \"9685\",\n    \"9691\",\n    \"9696\",\n    \"9699\",\n    \"9702\",\n    \"9708\",\n    \"9711\",\n    \"9715\",\n    \"9716\",\n    \"9723\",\n    \"9729\",\n    \"9730\",\n    \"9735\",\n    \"9740\",\n    \"9741\",\n    \"9745\",\n    \"9747\",\n    \"9748\",\n    \"9752\",\n    \"9755\",\n    \"9769\",\n    \"9771\",\n    \"9776\",\n    \"9779\",\n    \"9782\",\n    \"9789\",\n    \"9793\",\n    \"9807\",\n    \"9819\",\n    \"9820\",\n    \"9827\",\n    \"9831\",\n    \"9835\",\n    \"9838\",\n    \"9851\",\n    \"9853\",\n    \"9854\",\n    \"9856\",\n    \"9862\",\n    \"9863\",\n    \"9868\",\n    \"9875\",\n    \"9880\",\n    \"9895\",\n    \"9910\",\n    \"9911\",\n    \"9912\",\n    \"9914\",\n    \"9916\",\n    \"9917\",\n    \"9919\",\n    \"9922\",\n    \"9925\",\n    \"9927\",\n    \"9930\",\n    \"9938\",\n    \"9945\",\n    \"9951\",\n    \"9956\",\n    \"9964\",\n    \"9965\",\n    \"9968\",\n    \"9971\",\n    \"9972\",\n    \"9978\",\n    \"9980\",\n    \"9981\",\n    \"9983\",\n    \"9989\",\n    \"9991\",\n    \"9997\",\n    \"10005\",\n    \"10006\",\n    \"10007\",\n    \"10013\",\n    \"10014\",\n    \"10026\",\n    \"10033\",\n    \"10034\",\n    \"10035\",\n    \"10038\",\n    \"10045\",\n    \"10048\",\n    \"10051\",\n    \"10055\",\n    \"10059\",\n    \"10060\",\n    \"10077\",\n    \"10078\",\n    \"10079\",\n    \"10082\",\n    \"10085\",\n    \"10086\",\n    \"10089\",\n    \"10092\",\n    \"10102\",\n    \"10109\",\n    \"10112\",\n    \"10116\",\n    \"10118\",\n    \"10134\",\n    \"10135\",\n    \"10138\",\n    \"10143\",\n    \"10145\",\n    \"10147\",\n    \"10152\",\n    \"10153\",\n    \"10156\",\n    \"10157\",\n    \"10166\",\n    \"10182\",\n    \"10184\",\n    \"10187\",\n    \"10194\",\n    \"10196\",\n    \"10198\",\n    \"10200\",\n    \"10206\",\n    \"10213\",\n    \"10227\",\n    \"10234\",\n    \"10235\",\n    \"10251\",\n    \"10255\",\n    \"10260\",\n    \"10281\",\n    \"10282\",\n    \"10284\",\n    \"10285\",\n    \"10287\",\n    \"10289\",\n    \"10290\",\n    \"10298\",\n    \"10304\",\n    \"10305\",\n    \"10316\",\n    \"10325\",\n    \"10326\",\n    \"10333\",\n    \"10339\",\n    \"10354\",\n    \"10360\",\n    \"10368\",\n    \"10370\",\n    \"10372\",\n    \"10373\",\n    \"10376\",\n    \"10382\",\n    \"10383\",\n    \"10392\",\n    \"10396\",\n    \"10400\",\n    \"10403\",\n    \"10404\",\n    \"10416\",\n    \"10417\",\n    \"10418\",\n    \"10422\",\n    \"10424\",\n    \"10425\",\n    \"10435\",\n    \"10436\",\n    \"10441\",\n    \"10442\",\n    \"10443\",\n    \"10444\",\n    \"10445\",\n    \"10450\",\n    \"10455\",\n    \"10458\",\n    \"10459\",\n    \"10466\",\n    \"10491\",\n    \"10492\",\n    \"10497\",\n    \"10498\",\n    \"10499\",\n    \"10511\",\n    \"10520\",\n    \"10533\",\n    \"10535\",\n    \"10544\",\n    \"10559\",\n    \"10567\",\n    \"10570\",\n    \"10571\",\n    \"10575\",\n    \"10594\",\n    \"10596\",\n    \"10599\",\n    \"10603\",\n    \"10613\",\n    \"10631\",\n    \"10638\",\n    \"10643\",\n    \"10647\",\n    \"10652\",\n    \"10658\",\n    \"10659\",\n    \"10662\",\n    \"10663\",\n    \"10664\",\n    \"10672\",\n    \"10673\",\n    \"10676\",\n    \"10678\",\n    \"10691\",\n    \"10694\",\n    \"10695\",\n    \"10705\",\n    \"10715\",\n    \"10717\",\n    \"10718\",\n    \"10722\",\n    \"10733\",\n    \"10735\",\n    \"10749\",\n    \"10764\",\n    \"10772\",\n    \"10780\",\n    \"10802\",\n    \"10806\",\n    \"10807\",\n    \"10808\",\n    \"10809\",\n    \"10811\",\n    \"10812\",\n    \"10815\",\n    \"10816\",\n    \"10818\",\n    \"10820\",\n    \"10826\",\n    \"10827\",\n    \"10833\",\n    \"10834\",\n    \"10843\",\n    \"10848\",\n    \"10849\",\n    \"10852\",\n    \"10856\",\n    \"10863\",\n    \"10871\",\n    \"10888\",\n    \"10890\",\n    \"10891\",\n    \"10893\",\n    \"10897\",\n    \"10902\",\n    \"10903\",\n    \"10904\",\n    \"10907\",\n    \"10908\",\n    \"10910\",\n    \"10912\",\n    \"10926\",\n    \"10927\",\n    \"10930\",\n    \"10932\",\n    \"10933\",\n    \"10937\",\n    \"10944\",\n    \"10950\",\n    \"10951\",\n    \"10954\",\n    \"10956\",\n    \"10957\",\n    \"10958\",\n    \"10959\",\n    \"10965\",\n    \"10966\",\n    \"10967\",\n    \"10970\",\n    \"10974\",\n    \"10979\",\n    \"10981\",\n    \"10986\",\n    \"10987\",\n    \"10988\",\n    \"10991\",\n    \"11003\",\n    \"11009\",\n    \"11012\",\n    \"11017\",\n    \"11025\",\n    \"11026\",\n    \"11028\",\n    \"11031\",\n    \"11035\",\n    \"11036\",\n    \"11039\",\n    \"11043\",\n    \"11044\",\n    \"11048\",\n    \"11049\",\n    \"11052\",\n    \"11056\",\n    \"11063\",\n    \"11065\",\n    \"11066\",\n    \"11070\",\n    \"11078\",\n    \"11080\",\n    \"11091\",\n    \"11101\",\n    \"11105\",\n    \"11107\",\n    \"11114\",\n    \"11117\",\n    \"11127\",\n    \"11128\",\n    \"11129\",\n    \"11142\",\n    \"11147\",\n    \"11154\",\n    \"11164\",\n    \"11166\",\n    \"11167\",\n    \"11168\",\n    \"11170\",\n    \"11185\",\n    \"11186\",\n    \"11190\",\n    \"11211\",\n    \"11222\",\n    \"11228\",\n    \"11235\",\n    \"11240\",\n    \"11242\",\n    \"11265\",\n    \"11268\",\n    \"11272\",\n    \"11274\",\n    \"11276\",\n    \"11284\",\n    \"11289\",\n    \"11295\",\n    \"11297\",\n    \"11298\",\n    \"11304\",\n    \"11306\",\n    \"11314\",\n    \"11319\",\n    \"11322\",\n    \"11334\",\n    \"11355\",\n    \"11358\",\n    \"11360\",\n    \"11362\",\n    \"11364\",\n    \"11368\",\n    \"11369\",\n    \"11376\",\n    \"11382\",\n    \"11387\",\n    \"11391\",\n    \"11392\",\n    \"11393\",\n    \"11395\",\n    \"11396\",\n    \"11401\",\n    \"11402\",\n    \"11403\",\n    \"11406\",\n    \"11409\",\n    \"11413\",\n    \"11414\",\n    \"11420\",\n    \"11423\",\n    \"11428\",\n    \"11431\",\n    \"11432\",\n    \"11435\",\n    \"11439\",\n    \"11444\",\n    \"11452\",\n    \"11462\",\n    \"11463\",\n    \"11466\",\n    \"11467\",\n    \"11472\",\n    \"11479\",\n    \"11481\",\n    \"11483\",\n    \"11488\",\n    \"11491\",\n    \"11492\",\n    \"11503\",\n    \"11504\",\n    \"11506\",\n    \"11508\",\n    \"11510\",\n    \"11513\",\n    \"11515\",\n    \"11521\",\n    \"11528\",\n    \"11533\",\n    \"11538\",\n    \"11540\",\n    \"11547\",\n    \"11549\",\n    \"11558\",\n    \"11563\",\n    \"11584\",\n    \"11587\",\n    \"11588\",\n    \"11594\",\n    \"11595\",\n    \"11601\",\n    \"11616\",\n    \"11617\",\n    \"11618\",\n    \"11627\",\n    \"11636\",\n    \"11638\",\n    \"11641\",\n    \"11642\",\n    \"11646\",\n    \"11652\",\n    \"11660\",\n    \"11662\",\n    \"11665\",\n    \"11666\",\n    \"11671\",\n    \"11672\",\n    \"11673\",\n    \"11681\",\n    \"11684\",\n    \"11686\",\n    \"11694\",\n    \"11700\",\n    \"11708\",\n    \"11712\",\n    \"11713\",\n    \"11716\",\n    \"11720\",\n    \"11731\",\n    \"11742\",\n    \"11747\",\n    \"11750\",\n    \"11754\",\n    \"11760\",\n    \"11767\",\n    \"11774\",\n    \"11779\",\n    \"11786\",\n    \"11789\",\n    \"11792\",\n    \"11795\",\n    \"11803\",\n    \"11808\",\n    \"11813\",\n    \"11826\",\n    \"11830\",\n    \"11839\",\n    \"11847\",\n    \"11848\",\n    \"11851\",\n    \"11863\",\n    \"11873\",\n    \"11882\",\n    \"11884\",\n    \"11889\",\n    \"11898\",\n    \"11902\",\n    \"11904\",\n    \"11910\",\n    \"11911\",\n    \"11918\",\n    \"11927\",\n    \"11949\",\n    \"11951\",\n    \"11962\",\n    \"11973\",\n    \"11978\",\n    \"11979\",\n    \"11980\",\n    \"11982\",\n    \"12005\",\n    \"12006\",\n    \"12009\",\n    \"12020\",\n    \"12022\",\n    \"12025\",\n    \"12027\",\n    \"12028\",\n    \"12030\",\n    \"12032\",\n    \"12038\",\n    \"12039\",\n    \"12040\",\n    \"12042\",\n    \"12043\",\n    \"12055\",\n    \"12063\",\n    \"12076\",\n    \"12092\",\n    \"12095\",\n    \"12099\",\n    \"12101\",\n    \"12102\",\n    \"12108\",\n    \"12109\",\n    \"12110\",\n    \"12113\",\n    \"12114\",\n    \"12118\",\n    \"12120\",\n    \"12121\",\n    \"12122\",\n    \"12132\",\n    \"12138\",\n    \"12152\",\n    \"12153\",\n    \"12158\",\n    \"12159\",\n    \"12161\",\n    \"12164\",\n    \"12168\",\n    \"12173\",\n    \"12175\",\n    \"12179\",\n    \"12181\",\n    \"12189\",\n    \"12193\",\n    \"12194\",\n    \"12196\",\n    \"12197\",\n    \"12205\",\n    \"12210\",\n    \"12213\",\n    \"12214\",\n    \"12223\",\n    \"12229\",\n    \"12239\",\n    \"12252\",\n    \"12260\",\n    \"12265\",\n    \"12268\",\n    \"12276\",\n    \"12277\",\n    \"12294\",\n    \"12296\",\n    \"12302\",\n    \"12304\",\n    \"12309\",\n    \"12310\",\n    \"12313\",\n    \"12315\",\n    \"12317\",\n    \"12326\",\n    \"12338\",\n    \"12341\",\n    \"12342\",\n    \"12344\",\n    \"12346\",\n    \"12349\",\n    \"12352\",\n    \"12356\",\n    \"12361\",\n    \"12362\",\n    \"12363\",\n    \"12369\",\n    \"12376\",\n    \"12383\",\n    \"12384\",\n    \"12388\",\n    \"12398\",\n    \"12408\",\n    \"12420\",\n    \"12422\",\n    \"12424\",\n    \"12439\",\n    \"12445\",\n    \"12454\",\n    \"12459\",\n    \"12460\",\n    \"12461\",\n    \"12462\",\n    \"12467\",\n    \"12479\",\n    \"12480\",\n    \"12482\",\n    \"12484\",\n    \"12485\",\n    \"12486\",\n    \"12488\",\n    \"12497\",\n    \"12500\",\n    \"12504\",\n    \"12507\",\n    \"12518\",\n    \"12519\",\n    \"12520\",\n    \"12522\",\n    \"12524\",\n    \"12525\",\n    \"12534\",\n    \"12536\",\n    \"12541\",\n    \"12544\",\n    \"12546\",\n    \"12551\",\n    \"12555\",\n    \"12567\",\n    \"12578\",\n    \"12579\",\n    \"12583\",\n    \"12591\",\n    \"12595\",\n    \"12599\",\n    \"12601\",\n    \"12602\",\n    \"12607\",\n    \"12612\",\n    \"12615\",\n    \"12617\",\n    \"12621\",\n    \"12626\",\n    \"12628\",\n    \"12631\",\n    \"12642\",\n    \"12644\",\n    \"12647\",\n    \"12661\",\n    \"12665\",\n    \"12669\",\n    \"12676\",\n    \"12679\",\n    \"12681\",\n    \"12682\",\n    \"12685\",\n    \"12688\",\n    \"12691\",\n    \"12692\",\n    \"12694\",\n    \"12697\",\n    \"12705\",\n    \"12710\",\n    \"12711\",\n    \"12721\",\n    \"12730\",\n    \"12732\",\n    \"12739\",\n    \"12742\",\n    \"12745\",\n    \"12746\",\n    \"12751\",\n    \"12752\",\n    \"12757\",\n    \"12760\",\n    \"12762\",\n    \"12763\",\n    \"12765\",\n    \"12766\",\n    \"12767\",\n    \"12769\",\n    \"12772\",\n    \"12773\",\n    \"12775\",\n    \"12786\",\n    \"12789\",\n    \"12796\",\n    \"12798\",\n    \"12811\",\n    \"12812\",\n    \"12820\",\n    \"12826\",\n    \"12829\",\n    \"12831\",\n    \"12833\",\n    \"12838\",\n    \"12847\",\n    \"12850\",\n    \"12853\",\n    \"12854\",\n    \"12860\",\n    \"12863\",\n    \"12864\",\n    \"12866\",\n    \"12871\",\n    \"12882\",\n    \"12888\",\n    \"12889\",\n    \"12891\",\n    \"12896\",\n    \"12898\",\n    \"12900\",\n    \"12903\",\n    \"12906\",\n    \"12910\",\n    \"12914\",\n    \"12915\",\n    \"12929\",\n    \"12934\",\n    \"12935\",\n    \"12937\",\n    \"12944\",\n    \"12947\",\n    \"12951\",\n    \"12952\",\n    \"12957\",\n    \"12959\",\n    \"12972\",\n    \"12977\",\n    \"12980\",\n    \"12986\",\n    \"13006\",\n    \"13020\",\n    \"13033\",\n    \"13035\",\n    \"13042\",\n    \"13047\",\n    \"13049\",\n    \"13057\",\n    \"13061\",\n    \"13071\",\n    \"13079\",\n    \"13083\",\n    \"13084\",\n    \"13085\",\n    \"13088\",\n    \"13089\",\n    \"13090\",\n    \"13096\",\n    \"13099\",\n    \"13108\",\n    \"13113\",\n    \"13121\",\n    \"13131\",\n    \"13136\",\n    \"13140\",\n    \"13144\",\n    \"13148\",\n    \"13149\",\n    \"13155\",\n    \"13156\",\n    \"13169\",\n    \"13175\",\n    \"13176\",\n    \"13179\",\n    \"13181\",\n    \"13183\",\n    \"13187\",\n    \"13189\",\n    \"13203\",\n    \"13205\",\n    \"13207\",\n    \"13209\",\n    \"13212\",\n    \"13217\",\n    \"13220\",\n    \"13222\",\n    \"13223\",\n    \"13224\",\n    \"13225\",\n    \"13229\",\n    \"13231\",\n    \"13235\",\n    \"13238\",\n    \"13240\",\n    \"13241\",\n    \"13248\",\n    \"13262\",\n    \"13265\",\n    \"13270\",\n    \"13274\",\n    \"13276\",\n    \"13278\",\n    \"13282\",\n    \"13286\",\n    \"13290\",\n    \"13294\",\n    \"13298\",\n    \"13300\",\n    \"13304\",\n    \"13308\",\n    \"13317\",\n    \"13318\",\n    \"13321\",\n    \"13325\",\n    \"13331\",\n    \"13333\",\n    \"13335\",\n    \"13339\",\n    \"13341\",\n    \"13342\",\n    \"13345\",\n    \"13361\",\n    \"13365\",\n    \"13375\",\n    \"13376\",\n    \"13379\",\n    \"13380\",\n    \"13387\",\n    \"13395\",\n    \"13396\",\n    \"13404\",\n    \"13410\",\n    \"13414\",\n    \"13415\",\n    \"13421\",\n    \"13426\",\n    \"13427\",\n    \"13445\",\n    \"13450\",\n    \"13452\",\n    \"13453\",\n    \"13454\",\n    \"13464\",\n    \"13468\",\n    \"13477\",\n    \"13478\",\n    \"13479\",\n    \"13485\",\n    \"13486\",\n    \"13494\",\n    \"13502\",\n    \"13512\",\n    \"13515\",\n    \"13516\",\n    \"13521\",\n    \"13529\",\n    \"13536\",\n    \"13559\",\n    \"13561\",\n    \"13562\",\n    \"13563\",\n    \"13568\",\n    \"13569\",\n    \"13573\",\n    \"13577\",\n    \"13582\",\n    \"13584\",\n    \"13586\",\n    \"13588\",\n    \"13590\",\n    \"13602\",\n    \"13604\",\n    \"13611\",\n    \"13613\",\n    \"13615\",\n    \"13616\",\n    \"13619\",\n    \"13622\",\n    \"13623\",\n    \"13625\",\n    \"13628\",\n    \"13632\",\n    \"13654\",\n    \"13661\",\n    \"13673\",\n    \"13676\",\n    \"13681\",\n    \"13682\",\n    \"13683\",\n    \"13689\",\n    \"13692\",\n    \"13694\",\n    \"13697\",\n    \"13699\",\n    \"13701\",\n    \"13702\",\n    \"13707\",\n    \"13708\",\n    \"13716\",\n    \"13719\",\n    \"13721\",\n    \"13722\",\n    \"13723\",\n    \"13737\",\n    \"13739\",\n    \"13740\",\n    \"13748\",\n    \"13753\",\n    \"13759\",\n    \"13762\",\n    \"13769\",\n    \"13770\",\n    \"13778\",\n    \"13783\",\n    \"13792\",\n    \"13794\",\n    \"13797\",\n    \"13803\",\n    \"13808\",\n    \"13809\",\n    \"13816\",\n    \"13827\",\n    \"13830\",\n    \"13835\",\n    \"13836\",\n    \"13839\",\n    \"13841\",\n    \"13848\",\n    \"13850\",\n    \"13851\",\n    \"13862\",\n    \"13864\",\n    \"13870\",\n    \"13873\",\n    \"13881\",\n    \"13893\",\n    \"13898\",\n    \"13905\",\n    \"13909\",\n    \"13919\",\n    \"13920\",\n    \"13933\",\n    \"13935\",\n    \"13936\",\n    \"13938\",\n    \"13940\",\n    \"13942\",\n    \"13951\",\n    \"13955\",\n    \"13959\",\n    \"13964\",\n    \"13966\",\n    \"13979\",\n    \"13983\",\n    \"13992\",\n    \"14000\",\n    \"14002\",\n    \"14009\",\n    \"14010\",\n    \"14017\",\n    \"14018\",\n    \"14021\",\n    \"14027\",\n    \"14032\",\n    \"14036\",\n    \"14045\",\n    \"14046\",\n    \"14049\",\n    \"14052\",\n    \"14055\",\n    \"14061\",\n    \"14062\",\n    \"14063\",\n    \"14065\",\n    \"14067\",\n    \"14069\",\n    \"14077\",\n    \"14078\",\n    \"14080\",\n    \"14083\",\n    \"14085\",\n    \"14097\",\n    \"14109\",\n    \"14111\",\n    \"14115\",\n    \"14123\",\n    \"14127\",\n    \"14128\",\n    \"14152\",\n    \"14157\",\n    \"14180\",\n    \"14184\",\n    \"14189\",\n    \"14198\",\n    \"14209\",\n    \"14211\",\n    \"14216\",\n    \"14217\",\n    \"14222\",\n    \"14225\",\n    \"14228\",\n    \"14231\",\n    \"14235\",\n    \"14238\",\n    \"14243\",\n    \"14247\",\n    \"14248\",\n    \"14253\",\n    \"14256\",\n    \"14259\",\n    \"14260\",\n    \"14261\",\n    \"14264\",\n    \"14265\",\n    \"14273\",\n    \"14277\",\n    \"14281\",\n    \"14282\",\n    \"14285\",\n    \"14293\",\n    \"14302\",\n    \"14305\",\n    \"14306\",\n    \"14313\",\n    \"14316\",\n    \"14321\",\n    \"14330\",\n    \"14333\",\n    \"14334\",\n    \"14337\",\n    \"14339\",\n    \"14350\",\n    \"14359\",\n    \"14363\",\n    \"14366\",\n    \"14367\",\n    \"14379\",\n    \"14380\",\n    \"14381\",\n    \"14390\",\n    \"14393\",\n    \"14395\",\n    \"14410\",\n    \"14412\",\n    \"14415\",\n    \"14429\",\n    \"14432\",\n    \"14441\",\n    \"14450\",\n    \"14451\",\n    \"14455\",\n    \"14457\",\n    \"14460\",\n    \"14461\",\n    \"14473\",\n    \"14474\",\n    \"14495\",\n    \"14497\",\n    \"14510\",\n    \"14515\",\n    \"14517\",\n    \"14519\",\n    \"14522\",\n    \"14526\",\n    \"14528\",\n    \"14530\",\n    \"14554\",\n    \"14569\",\n    \"14573\",\n    \"14581\",\n    \"14583\",\n    \"14596\",\n    \"14600\",\n    \"14603\",\n    \"14612\",\n    \"14615\",\n    \"14617\",\n    \"14619\",\n    \"14632\",\n    \"14636\",\n    \"14640\",\n    \"14641\",\n    \"14646\",\n    \"14654\",\n    \"14659\",\n    \"14660\",\n    \"14668\",\n    \"14672\",\n    \"14674\",\n    \"14677\",\n    \"14681\",\n    \"14682\",\n    \"14685\",\n    \"14686\",\n    \"14687\",\n    \"14690\",\n    \"14691\",\n    \"14695\",\n    \"14701\",\n    \"14702\",\n    \"14703\",\n    \"14704\",\n    \"14709\",\n    \"14712\",\n    \"14720\",\n    \"14721\",\n    \"14726\",\n    \"14730\",\n    \"14732\",\n    \"14733\",\n    \"14738\",\n    \"14740\",\n    \"14744\",\n    \"14745\",\n    \"14752\",\n    \"14756\",\n    \"14757\",\n    \"14765\",\n    \"14768\",\n    \"14769\",\n    \"14774\",\n    \"14790\",\n    \"14791\",\n    \"14796\",\n    \"14801\",\n    \"14804\",\n    \"14810\",\n    \"14821\",\n    \"14837\",\n    \"14842\",\n    \"14843\",\n    \"14847\",\n    \"14848\",\n    \"14851\",\n    \"14858\",\n    \"14869\",\n    \"14872\",\n    \"14901\",\n    \"14911\",\n    \"14914\",\n    \"14917\",\n    \"14922\",\n    \"14925\",\n    \"14936\",\n    \"14938\",\n    \"14940\",\n    \"14945\",\n    \"14948\",\n    \"14955\",\n    \"14959\",\n    \"14960\",\n    \"14963\",\n    \"14969\",\n    \"14980\",\n    \"14984\",\n    \"14987\",\n    \"14991\",\n    \"14993\",\n    \"14996\",\n    \"15006\",\n    \"15009\",\n    \"15019\",\n    \"15030\",\n    \"15032\",\n    \"15037\",\n    \"15039\",\n    \"15042\",\n    \"15043\",\n    \"15051\",\n    \"15071\",\n    \"15072\",\n    \"15077\",\n    \"15078\",\n    \"15089\",\n    \"15090\",\n    \"15092\",\n    \"15099\",\n    \"15102\",\n    \"15113\",\n    \"15118\",\n    \"15119\",\n    \"15124\",\n    \"15131\",\n    \"15132\",\n    \"15141\",\n    \"15148\",\n    \"15151\",\n    \"15159\",\n    \"15167\",\n    \"15169\",\n    \"15174\",\n    \"15177\",\n    \"15178\",\n    \"15179\",\n    \"15184\",\n    \"15191\",\n    \"15192\",\n    \"15197\",\n    \"15204\",\n    \"15207\",\n    \"15209\",\n    \"15210\",\n    \"15214\",\n    \"15215\",\n    \"15237\",\n    \"15239\",\n    \"15240\",\n    \"15244\",\n    \"15247\",\n    \"15248\",\n    \"15258\",\n    \"15268\",\n    \"15285\",\n    \"15295\",\n    \"15309\",\n    \"15310\",\n    \"15315\",\n    \"15320\",\n    \"15328\",\n    \"15333\",\n    \"15338\",\n    \"15342\",\n    \"15344\",\n    \"15346\",\n    \"15350\",\n    \"15369\",\n    \"15370\",\n    \"15371\",\n    \"15373\",\n    \"15376\",\n    \"15386\",\n    \"15392\",\n    \"15397\",\n    \"15401\",\n    \"15405\",\n    \"15412\",\n    \"15414\",\n    \"15416\",\n    \"15419\",\n    \"15420\",\n    \"15430\",\n    \"15432\",\n    \"15442\",\n    \"15447\",\n    \"15448\",\n    \"15449\",\n    \"15454\",\n    \"15455\",\n    \"15459\",\n    \"15460\",\n    \"15466\",\n    \"15468\",\n    \"15483\",\n    \"15484\",\n    \"15496\",\n    \"15498\",\n    \"15501\",\n    \"15518\",\n    \"15519\",\n    \"15521\",\n    \"15526\",\n    \"15529\",\n    \"15538\",\n    \"15542\",\n    \"15543\",\n    \"15548\",\n    \"15551\",\n    \"15553\",\n    \"15558\",\n    \"15559\",\n    \"15561\",\n    \"15583\",\n    \"15584\",\n    \"15586\",\n    \"15592\",\n    \"15597\",\n    \"15603\",\n    \"15609\",\n    \"15615\",\n    \"15616\",\n    \"15622\",\n    \"15626\",\n    \"15629\",\n    \"15641\",\n    \"15647\",\n    \"15650\",\n    \"15653\",\n    \"15655\",\n    \"15663\",\n    \"15664\",\n    \"15677\",\n    \"15688\",\n    \"15695\",\n    \"15703\",\n    \"15708\",\n    \"15721\",\n    \"15732\",\n    \"15733\",\n    \"15734\",\n    \"15742\",\n    \"15745\",\n    \"15751\",\n    \"15770\",\n    \"15775\",\n    \"15777\",\n    \"15780\",\n    \"15798\",\n    \"15801\",\n    \"15814\",\n    \"15816\",\n    \"15823\",\n    \"15830\",\n    \"15838\",\n    \"15851\",\n    \"15865\",\n    \"15869\",\n    \"15870\",\n    \"15873\",\n    \"15878\",\n    \"15884\",\n    \"15892\",\n    \"15910\",\n    \"15918\",\n    \"15925\",\n    \"15927\",\n    \"15937\",\n    \"15944\",\n    \"15954\",\n    \"15963\",\n    \"15970\",\n    \"15973\",\n    \"15974\",\n    \"15977\",\n    \"15987\",\n    \"15992\",\n    \"15994\",\n    \"15996\",\n    \"15997\",\n    \"15998\",\n    \"16007\",\n    \"16013\",\n    \"16019\",\n    \"16023\",\n    \"16036\",\n    \"16044\",\n    \"16054\",\n    \"16056\",\n    \"16062\",\n    \"16076\",\n    \"16079\",\n    \"16082\",\n    \"16085\",\n    \"16092\",\n    \"16094\",\n    \"16096\",\n    \"16098\",\n    \"16104\",\n    \"16114\",\n    \"16116\",\n    \"16120\",\n    \"16128\",\n    \"16130\",\n    \"16131\",\n    \"16146\",\n    \"16150\",\n    \"16153\",\n    \"16155\",\n    \"16165\",\n    \"16174\",\n    \"16175\",\n    \"16176\",\n    \"16184\",\n    \"16187\",\n    \"16188\",\n    \"16189\",\n    \"16192\",\n    \"16194\",\n    \"16202\",\n    \"16206\",\n    \"16207\",\n    \"16210\",\n    \"16212\",\n    \"16216\",\n    \"16218\",\n    \"16220\",\n    \"16228\",\n    \"16247\",\n    \"16258\",\n    \"16259\",\n    \"16261\",\n    \"16267\",\n    \"16268\",\n    \"16273\",\n    \"16275\",\n    \"16277\",\n    \"16281\",\n    \"16283\",\n    \"16287\",\n    \"16289\",\n    \"16307\",\n    \"16309\",\n    \"16313\",\n    \"16324\",\n    \"16332\",\n    \"16341\",\n    \"16344\",\n    \"16345\",\n    \"16353\",\n    \"16354\",\n    \"16357\",\n    \"16358\",\n    \"16359\",\n    \"16363\",\n    \"16369\",\n    \"16382\",\n    \"16383\",\n    \"16385\",\n    \"16394\",\n    \"16397\",\n    \"16408\",\n    \"16414\",\n    \"16415\",\n    \"16417\",\n    \"16428\",\n    \"16435\",\n    \"16445\",\n    \"16452\",\n    \"16453\",\n    \"16455\",\n    \"16457\",\n    \"16458\",\n    \"16464\",\n    \"16466\",\n    \"16468\",\n    \"16472\",\n    \"16479\",\n    \"16488\",\n    \"16497\",\n    \"16498\",\n    \"16508\",\n    \"16514\",\n    \"16515\",\n    \"16524\",\n    \"16531\",\n    \"16532\",\n    \"16545\",\n    \"16550\",\n    \"16551\",\n    \"16553\",\n    \"16554\",\n    \"16570\",\n    \"16573\",\n    \"16575\",\n    \"16582\",\n    \"16589\",\n    \"16605\",\n    \"16607\",\n    \"16609\",\n    \"16617\",\n    \"16618\",\n    \"16620\",\n    \"16624\",\n    \"16627\",\n    \"16631\",\n    \"16634\",\n    \"16637\",\n    \"16644\",\n    \"16645\",\n    \"16646\",\n    \"16648\",\n    \"16652\",\n    \"16655\",\n    \"16656\",\n    \"16657\",\n    \"16663\",\n    \"16679\",\n    \"16681\",\n    \"16684\",\n    \"16687\",\n    \"16694\",\n    \"16698\",\n    \"16700\",\n    \"16701\",\n    \"16716\",\n    \"16721\",\n    \"16734\",\n    \"16753\",\n    \"16757\",\n    \"16765\",\n    \"16769\",\n    \"16770\",\n    \"16774\",\n    \"16776\",\n    \"16783\",\n    \"16789\",\n    \"16800\",\n    \"16813\",\n    \"16814\",\n    \"16819\",\n    \"16825\",\n    \"16830\",\n    \"16835\",\n    \"16845\",\n    \"16847\",\n    \"16856\",\n    \"16860\",\n    \"16863\",\n    \"16864\",\n    \"16866\",\n    \"16871\",\n    \"16875\",\n    \"16882\",\n    \"16888\",\n    \"16889\",\n    \"16894\",\n    \"16895\",\n    \"16898\",\n    \"16901\",\n    \"16921\",\n    \"16922\",\n    \"16923\",\n    \"16929\",\n    \"16938\",\n    \"16945\",\n    \"16948\",\n    \"16959\",\n    \"16960\",\n    \"16972\",\n    \"16973\",\n    \"16975\",\n    \"16978\",\n    \"16981\",\n    \"16987\",\n    \"16988\",\n    \"16999\",\n    \"17005\",\n    \"17010\",\n    \"17011\",\n    \"17016\",\n    \"17021\",\n    \"17023\",\n    \"17026\",\n    \"17028\",\n    \"17029\",\n    \"17031\",\n    \"17033\",\n    \"17037\",\n    \"17043\",\n    \"17046\",\n    \"17049\",\n    \"17058\",\n    \"17068\",\n    \"17071\",\n    \"17072\",\n    \"17073\",\n    \"17074\",\n    \"17080\",\n    \"17084\",\n    \"17089\",\n    \"17090\",\n    \"17105\",\n    \"17142\",\n    \"17144\",\n    \"17164\",\n    \"17174\",\n    \"17192\",\n    \"17195\",\n    \"17197\",\n    \"17202\",\n    \"17207\",\n    \"17210\",\n    \"17216\",\n    \"17221\",\n    \"17237\",\n    \"17243\",\n    \"17252\",\n    \"17253\",\n    \"17257\",\n    \"17276\",\n    \"17277\",\n    \"17288\",\n    \"17290\",\n    \"17292\",\n    \"17293\",\n    \"17297\",\n    \"17301\",\n    \"17303\",\n    \"17308\",\n    \"17312\",\n    \"17322\",\n    \"17325\",\n    \"17333\",\n    \"17336\",\n    \"17337\",\n    \"17340\",\n    \"17345\",\n    \"17346\",\n    \"17360\",\n    \"17368\",\n    \"17382\",\n    \"17392\",\n    \"17397\",\n    \"17401\",\n    \"17402\",\n    \"17405\",\n    \"17407\",\n    \"17410\",\n    \"17415\",\n    \"17416\",\n    \"17421\",\n    \"17437\",\n    \"17440\",\n    \"17446\",\n    \"17448\",\n    \"17451\",\n    \"17452\",\n    \"17453\",\n    \"17455\",\n    \"17461\",\n    \"17470\",\n    \"17471\",\n    \"17487\",\n    \"17489\",\n    \"17490\",\n    \"17492\",\n    \"17495\",\n    \"17498\",\n    \"17516\",\n    \"17526\",\n    \"17536\",\n    \"17544\",\n    \"17545\",\n    \"17548\",\n    \"17549\",\n    \"17552\",\n    \"17554\",\n    \"17562\",\n    \"17564\",\n    \"17574\",\n    \"17581\",\n    \"17584\",\n    \"17586\",\n    \"17587\",\n    \"17588\",\n    \"17589\",\n    \"17590\",\n    \"17593\",\n    \"17594\",\n    \"17605\",\n    \"17614\",\n    \"17620\",\n    \"17624\",\n    \"17626\",\n    \"17634\",\n    \"17635\",\n    \"17645\",\n    \"17657\",\n    \"17659\",\n    \"17661\",\n    \"17662\",\n    \"17666\",\n    \"17669\",\n    \"17670\",\n    \"17674\",\n    \"17681\",\n    \"17685\",\n    \"17690\",\n    \"17702\",\n    \"17708\",\n    \"17709\",\n    \"17710\",\n    \"17711\",\n    \"17712\",\n    \"17722\",\n    \"17729\",\n    \"17730\",\n    \"17735\",\n    \"17743\",\n    \"17765\",\n    \"17766\",\n    \"17774\",\n    \"17775\",\n    \"17777\",\n    \"17788\",\n    \"17789\",\n    \"17791\",\n    \"17792\",\n    \"17804\",\n    \"17805\",\n    \"17807\",\n    \"17820\",\n    \"17821\",\n    \"17836\",\n    \"17837\",\n    \"17840\",\n    \"17844\",\n    \"17853\",\n    \"17855\",\n    \"17859\",\n    \"17865\",\n    \"17868\",\n    \"17874\",\n    \"17877\",\n    \"17880\",\n    \"17888\",\n    \"17890\",\n    \"17896\",\n    \"17898\",\n    \"17913\",\n    \"17917\",\n    \"17921\",\n    \"17924\",\n    \"17926\",\n    \"17927\",\n    \"17932\",\n    \"17935\",\n    \"17938\",\n    \"17942\",\n    \"17945\",\n    \"17955\",\n    \"17961\",\n    \"17962\",\n    \"17966\",\n    \"17975\",\n    \"17984\",\n    \"17989\",\n    \"17991\",\n    \"17997\",\n    \"18004\",\n    \"18005\",\n    \"18024\",\n    \"18032\",\n    \"18033\",\n    \"18034\",\n    \"18037\",\n    \"18038\",\n    \"18046\",\n    \"18058\",\n    \"18063\",\n    \"18065\",\n    \"18070\",\n    \"18075\",\n    \"18081\",\n    \"18082\",\n    \"18083\",\n    \"18092\",\n    \"18106\",\n    \"18107\",\n    \"18113\",\n    \"18117\",\n    \"18122\",\n    \"18137\",\n    \"18150\",\n    \"18154\",\n    \"18164\",\n    \"18168\",\n    \"18174\",\n    \"18180\",\n    \"18182\",\n    \"18186\",\n    \"18190\",\n    \"18200\",\n    \"18201\",\n    \"18208\",\n    \"18214\",\n    \"18216\",\n    \"18217\",\n    \"18228\",\n    \"18232\",\n    \"18234\",\n    \"18235\",\n    \"18238\",\n    \"18249\",\n    \"18251\",\n    \"18252\",\n    \"18254\",\n    \"18256\",\n    \"18259\",\n    \"18261\",\n    \"18267\",\n    \"18271\",\n    \"18282\",\n    \"18283\",\n    \"18290\",\n    \"18292\",\n    \"18298\",\n    \"18304\",\n    \"18312\",\n    \"18315\",\n    \"18331\",\n    \"18332\",\n    \"18347\",\n    \"18351\",\n    \"18356\",\n    \"18360\",\n    \"18363\",\n    \"18367\",\n    \"18369\",\n    \"18376\",\n    \"18378\",\n    \"18379\",\n    \"18384\",\n    \"18386\",\n    \"18391\",\n    \"18425\",\n    \"18428\",\n    \"18434\",\n    \"18443\",\n    \"18444\",\n    \"18445\",\n    \"18447\",\n    \"18460\",\n    \"18462\",\n    \"18475\",\n    \"18480\",\n    \"18482\",\n    \"18484\",\n    \"18485\",\n    \"18488\",\n    \"18489\",\n    \"18500\",\n    \"18512\",\n    \"18513\",\n    \"18522\",\n    \"18527\",\n    \"18531\",\n    \"18534\",\n    \"18535\",\n    \"18541\",\n    \"18553\",\n    \"18556\",\n    \"18564\",\n    \"18566\",\n    \"18594\",\n    \"18604\",\n    \"18605\",\n    \"18607\",\n    \"18623\",\n    \"18624\",\n    \"18629\",\n    \"18630\",\n    \"18633\",\n    \"18635\",\n    \"18643\",\n    \"18653\",\n    \"18671\",\n    \"18679\",\n    \"18681\",\n    \"18684\",\n    \"18690\",\n    \"18691\",\n    \"18693\",\n    \"18702\",\n    \"18704\",\n    \"18709\",\n    \"18710\",\n    \"18715\",\n    \"18721\",\n    \"18732\",\n    \"18744\",\n    \"18748\",\n    \"18750\",\n    \"18754\",\n    \"18755\",\n    \"18756\",\n    \"18758\",\n    \"18766\",\n    \"18768\",\n    \"18769\",\n    \"18778\",\n    \"18780\",\n    \"18781\",\n    \"18788\",\n    \"18798\",\n    \"18800\",\n    \"18810\",\n    \"18820\",\n    \"18821\",\n    \"18825\",\n    \"18826\",\n    \"18827\",\n    \"18830\",\n    \"18832\",\n    \"18834\",\n    \"18842\",\n    \"18847\",\n    \"18849\",\n    \"18851\",\n    \"18855\",\n    \"18862\",\n    \"18863\",\n    \"18866\",\n    \"18868\",\n    \"18881\",\n    \"18883\",\n    \"18888\",\n    \"18893\",\n    \"18904\",\n    \"18905\",\n    \"18914\",\n    \"18922\",\n    \"18924\",\n    \"18926\",\n    \"18928\",\n    \"18929\",\n    \"18931\",\n    \"18932\",\n    \"18938\",\n    \"18940\",\n    \"18947\",\n    \"18951\",\n    \"18952\",\n    \"18961\",\n    \"18962\",\n    \"18972\",\n    \"18974\",\n    \"18982\",\n    \"18986\",\n    \"18989\",\n    \"18995\",\n    \"19003\",\n    \"19013\",\n    \"19024\",\n    \"19028\",\n    \"19037\",\n    \"19038\",\n    \"19041\",\n    \"19048\",\n    \"19051\",\n    \"19053\",\n    \"19056\",\n    \"19059\",\n    \"19072\",\n    \"19076\",\n    \"19081\",\n    \"19087\",\n    \"19101\",\n    \"19103\",\n    \"19104\",\n    \"19108\",\n    \"19110\",\n    \"19113\",\n    \"19119\",\n    \"19129\",\n    \"19137\",\n    \"19141\",\n    \"19148\",\n    \"19152\",\n    \"19172\",\n    \"19173\",\n    \"19174\",\n    \"19181\",\n    \"19183\",\n    \"19201\",\n    \"19205\",\n    \"19209\",\n    \"19219\",\n    \"19233\",\n    \"19234\",\n    \"19235\",\n    \"19238\",\n    \"19241\",\n    \"19243\",\n    \"19254\",\n    \"19258\",\n    \"19264\",\n    \"19266\",\n    \"19282\",\n    \"19285\",\n    \"19294\",\n    \"19295\",\n    \"19299\",\n    \"19304\",\n    \"19322\",\n    \"19328\",\n    \"19330\",\n    \"19331\",\n    \"19332\",\n    \"19340\",\n    \"19341\",\n    \"19346\",\n    \"19354\",\n    \"19356\",\n    \"19360\",\n    \"19365\",\n    \"19370\",\n    \"19372\",\n    \"19380\",\n    \"19387\",\n    \"19395\",\n    \"19398\",\n    \"19400\",\n    \"19403\",\n    \"19407\",\n    \"19412\",\n    \"19413\",\n    \"19423\",\n    \"19424\",\n    \"19435\",\n    \"19450\",\n    \"19452\",\n    \"19459\",\n    \"19468\",\n    \"19471\",\n    \"19481\",\n    \"19482\",\n    \"19483\",\n    \"19488\",\n    \"19495\",\n    \"19498\",\n    \"19502\",\n    \"19503\",\n    \"19505\",\n    \"19506\",\n    \"19518\",\n    \"19521\",\n    \"19541\",\n    \"19542\",\n    \"19543\",\n    \"19544\",\n    \"19552\",\n    \"19559\",\n    \"19560\",\n    \"19562\",\n    \"19575\",\n    \"19588\",\n    \"19598\",\n    \"19617\",\n    \"19630\",\n    \"19646\",\n    \"19649\",\n    \"19653\",\n    \"19657\",\n    \"19660\",\n    \"19661\",\n    \"19666\",\n    \"19674\",\n    \"19675\",\n    \"19680\",\n    \"19687\",\n    \"19693\",\n    \"19694\",\n    \"19700\",\n    \"19701\",\n    \"19704\",\n    \"19721\",\n    \"19722\",\n    \"19732\",\n    \"19740\",\n    \"19742\",\n    \"19744\",\n    \"19750\",\n    \"19752\",\n    \"19754\",\n    \"19763\",\n    \"19780\",\n    \"19785\",\n    \"19803\",\n    \"19804\",\n    \"19805\",\n    \"19808\",\n    \"19815\",\n    \"19816\",\n    \"19817\",\n    \"19820\",\n    \"19821\",\n    \"19823\",\n    \"19826\",\n    \"19829\",\n    \"19831\",\n    \"19835\",\n    \"19839\",\n    \"19847\",\n    \"19848\",\n    \"19851\",\n    \"19854\",\n    \"19856\",\n    \"19859\",\n    \"19862\",\n    \"19870\",\n    \"19871\",\n    \"19873\",\n    \"19890\",\n    \"19891\",\n    \"19901\",\n    \"19902\",\n    \"19906\",\n    \"19915\",\n    \"19918\",\n    \"19919\",\n    \"19921\",\n    \"19931\",\n    \"19932\",\n    \"19936\",\n    \"19939\",\n    \"19941\",\n    \"19945\",\n    \"19949\",\n    \"19950\",\n    \"19951\",\n    \"19953\",\n    \"19954\",\n    \"19958\",\n    \"19960\",\n    \"19962\",\n    \"19964\",\n    \"19966\",\n    \"19968\",\n    \"19970\",\n    \"19975\",\n    \"19976\",\n    \"19977\",\n    \"19980\",\n    \"19982\",\n    \"19983\",\n    \"19992\",\n    \"19994\",\n    \"19996\",\n    \"19999\",\n    \"20000\",\n    \"20014\",\n    \"20023\",\n    \"20025\",\n    \"20027\",\n    \"20028\",\n    \"20030\",\n    \"20038\",\n    \"20048\",\n    \"20055\",\n    \"20056\",\n    \"20058\",\n    \"20061\",\n    \"20064\",\n    \"20069\",\n    \"20070\",\n    \"20074\",\n    \"20079\",\n    \"20089\",\n    \"20096\",\n    \"20098\",\n    \"20105\",\n    \"20110\",\n    \"20111\",\n    \"20124\",\n    \"20126\",\n    \"20162\",\n    \"20167\",\n    \"20183\",\n    \"20186\",\n    \"20191\",\n    \"20195\",\n    \"20199\",\n    \"20201\",\n    \"20206\",\n    \"20210\",\n    \"20211\",\n    \"20213\",\n    \"20216\",\n    \"20220\",\n    \"20229\",\n    \"20236\",\n    \"20250\",\n    \"20251\",\n    \"20259\",\n    \"20264\",\n    \"20269\",\n    \"20272\",\n    \"20274\",\n    \"20275\",\n    \"20279\",\n    \"20284\",\n    \"20286\",\n    \"20289\",\n    \"20295\",\n    \"20298\",\n    \"20302\",\n    \"20304\",\n    \"20305\",\n    \"20307\",\n    \"20308\",\n    \"20310\",\n    \"20322\",\n    \"20348\",\n    \"20358\",\n    \"20360\",\n    \"20362\",\n    \"20371\",\n    \"20374\",\n    \"20376\",\n    \"20391\",\n    \"20392\",\n    \"20401\",\n    \"20410\",\n    \"20411\",\n    \"20424\",\n    \"20426\",\n    \"20434\",\n    \"20436\",\n    \"20439\",\n    \"20442\",\n    \"20446\",\n    \"20451\",\n    \"20459\",\n    \"20461\",\n    \"20464\",\n    \"20478\",\n    \"20482\",\n    \"20484\",\n    \"20486\",\n    \"20489\",\n    \"20516\",\n    \"20532\",\n    \"20547\",\n    \"20566\",\n    \"20570\",\n    \"20571\",\n    \"20572\",\n    \"20575\",\n    \"20577\",\n    \"20580\",\n    \"20581\",\n    \"20588\",\n    \"20591\",\n    \"20593\",\n    \"20594\",\n    \"20595\",\n    \"20596\",\n    \"20597\",\n    \"20599\",\n    \"20601\",\n    \"20610\",\n    \"20612\",\n    \"20614\",\n    \"20617\",\n    \"20639\",\n    \"20640\",\n    \"20644\",\n    \"20645\",\n    \"20650\",\n    \"20652\",\n    \"20655\",\n    \"20658\",\n    \"20660\",\n    \"20661\",\n    \"20663\",\n    \"20665\",\n    \"20671\",\n    \"20672\",\n    \"20689\",\n    \"20693\",\n    \"20696\",\n    \"20702\",\n    \"20705\",\n    \"20706\",\n    \"20708\",\n    \"20711\",\n    \"20718\",\n    \"20720\",\n    \"20723\",\n    \"20725\",\n    \"20731\",\n    \"20737\",\n    \"20738\",\n    \"20739\",\n    \"20740\",\n    \"20741\",\n    \"20752\",\n    \"20756\",\n    \"20761\",\n    \"20764\",\n    \"20769\",\n    \"20787\",\n    \"20792\",\n    \"20793\",\n    \"20801\",\n    \"20804\",\n    \"20817\",\n    \"20823\",\n    \"20826\",\n    \"20830\",\n    \"20832\",\n    \"20835\",\n    \"20844\",\n    \"20846\",\n    \"20847\",\n    \"20857\",\n    \"20858\",\n    \"20859\",\n    \"20861\",\n    \"20863\",\n    \"20871\",\n    \"20879\",\n    \"20881\",\n    \"20919\",\n    \"20943\",\n    \"20954\",\n    \"20956\",\n    \"20957\",\n    \"20961\",\n    \"20969\",\n    \"20980\",\n    \"20986\",\n    \"20999\",\n    \"21010\",\n    \"21013\",\n    \"21018\",\n    \"21021\",\n    \"21023\",\n    \"21031\",\n    \"21033\",\n    \"21040\",\n    \"21042\",\n    \"21049\",\n    \"21061\",\n    \"21072\",\n    \"21080\",\n    \"21082\",\n    \"21091\",\n    \"21095\",\n    \"21098\",\n    \"21099\",\n    \"21100\",\n    \"21102\",\n    \"21103\",\n    \"21104\",\n    \"21109\",\n    \"21114\",\n    \"21127\",\n    \"21151\",\n    \"21156\",\n    \"21161\",\n    \"21163\",\n    \"21168\",\n    \"21172\",\n    \"21174\",\n    \"21181\",\n    \"21183\",\n    \"21198\",\n    \"21207\"\n  ],\n  \"minitrain\": [\n    \"15683\",\n    \"915\",\n    \"11769\",\n    \"13254\",\n    \"15847\",\n    \"428\",\n    \"5609\",\n    \"12689\",\n    \"13495\",\n    \"7588\",\n    \"17920\",\n    \"4401\",\n    \"974\",\n    \"14297\",\n    \"13448\",\n    \"8941\",\n    \"2099\",\n    \"6819\",\n    \"20379\",\n    \"9844\",\n    \"1243\",\n    \"11536\",\n    \"3807\",\n    \"16538\",\n    \"9681\",\n    \"10414\",\n    \"11561\",\n    \"7763\",\n    \"18504\",\n    \"7154\",\n    \"12533\",\n    \"4778\",\n    \"18772\",\n    \"8278\",\n    \"18156\",\n    \"9881\",\n    \"3665\",\n    \"12538\",\n    \"20972\",\n    \"6527\",\n    \"12065\",\n    \"16834\",\n    \"10224\",\n    \"1229\",\n    \"15968\",\n    \"119\",\n    \"6428\",\n    \"3690\",\n    \"5319\",\n    \"8272\",\n    \"14742\",\n    \"9985\",\n    \"21085\",\n    \"6551\",\n    \"8604\",\n    \"18289\",\n    \"15074\",\n    \"12366\",\n    \"11959\",\n    \"12908\",\n    \"1810\",\n    \"17906\",\n    \"16021\",\n    \"8859\",\n    \"13780\",\n    \"4309\",\n    \"6117\",\n    \"11308\",\n    \"6503\",\n    \"1031\",\n    \"889\",\n    \"13634\",\n    \"8235\",\n    \"16641\",\n    \"18043\",\n    \"2000\",\n    \"14649\",\n    \"2235\",\n    \"4108\",\n    \"10494\",\n    \"15565\",\n    \"10203\",\n    \"16486\",\n    \"3102\",\n    \"21177\",\n    \"21115\",\n    \"2671\",\n    \"12112\",\n    \"4570\",\n    \"5213\",\n    \"9519\",\n    \"11878\",\n    \"11339\",\n    \"12231\",\n    \"6695\",\n    \"18639\",\n    \"7509\",\n    \"3936\",\n    \"16943\",\n    \"14329\",\n    \"4881\",\n    \"3295\",\n    \"7287\",\n    \"12502\",\n    \"8265\",\n    \"4521\",\n    \"18115\",\n    \"17795\",\n    \"4768\",\n    \"4816\",\n    \"13173\",\n    \"21108\",\n    \"9482\",\n    \"8945\",\n    \"11916\",\n    \"6095\",\n    \"146\",\n    \"14973\",\n    \"19485\",\n    \"1205\",\n    \"9041\",\n    \"8730\",\n    \"6616\",\n    \"2211\",\n    \"7133\",\n    \"12288\",\n    \"11090\",\n    \"15966\",\n    \"4354\",\n    \"10669\",\n    \"13608\",\n    \"18463\",\n    \"6584\",\n    \"20139\",\n    \"14431\",\n    \"7422\",\n    \"14287\",\n    \"16509\",\n    \"13718\",\n    \"1747\",\n    \"4569\",\n    \"13431\",\n    \"18481\",\n    \"12654\",\n    \"10985\",\n    \"3737\",\n    \"11537\",\n    \"14879\",\n    \"16031\",\n    \"9531\",\n    \"14812\",\n    \"10592\",\n    \"13442\",\n    \"19196\",\n    \"4551\",\n    \"15332\",\n    \"12106\",\n    \"2730\",\n    \"11366\",\n    \"997\",\n    \"90\",\n    \"12036\",\n    \"14714\",\n    \"1809\",\n    \"1427\",\n    \"9554\",\n    \"2564\",\n    \"4180\",\n    \"2992\",\n    \"16697\",\n    \"12451\",\n    \"13323\",\n    \"3826\",\n    \"12581\",\n    \"11970\",\n    \"21154\",\n    \"13760\",\n    \"12267\",\n    \"9376\",\n    \"19840\",\n    \"7068\",\n    \"19091\",\n    \"12571\",\n    \"11624\",\n    \"8955\",\n    \"17814\",\n    \"14274\",\n    \"14374\",\n    \"4230\",\n    \"20233\",\n    \"6473\",\n    \"8822\",\n    \"16989\",\n    \"931\",\n    \"18805\",\n    \"5332\",\n    \"17623\",\n    \"16124\",\n    \"15779\",\n    \"17234\",\n    \"13143\",\n    \"685\",\n    \"3208\",\n    \"8122\",\n    \"11940\",\n    \"6724\",\n    \"19627\",\n    \"7913\",\n    \"2464\",\n    \"1303\",\n    \"16368\",\n    \"15121\",\n    \"20941\",\n    \"2922\",\n    \"7810\",\n    \"4455\",\n    \"18375\",\n    \"13104\",\n    \"3879\",\n    \"9841\",\n    \"16308\",\n    \"10969\",\n    \"5236\",\n    \"9559\",\n    \"4986\",\n    \"2206\",\n    \"16211\",\n    \"5310\",\n    \"11711\",\n    \"5655\",\n    \"2649\",\n    \"18730\",\n    \"8423\",\n    \"12726\",\n    \"20333\",\n    \"20525\",\n    \"19014\",\n    \"14346\",\n    \"19739\",\n    \"11628\",\n    \"12279\",\n    \"18215\",\n    \"20329\",\n    \"15250\",\n    \"5673\",\n    \"7259\",\n    \"16375\",\n    \"9934\",\n    \"3190\",\n    \"17196\",\n    \"17191\",\n    \"224\",\n    \"5702\",\n    \"11634\",\n    \"16739\",\n    \"11189\",\n    \"10427\",\n    \"17886\",\n    \"5431\",\n    \"1943\",\n    \"21089\",\n    \"1541\",\n    \"9497\",\n    \"6938\",\n    \"9821\",\n    \"12537\",\n    \"11645\",\n    \"20763\",\n    \"5279\",\n    \"17241\",\n    \"20474\",\n    \"7733\",\n    \"12810\",\n    \"19011\",\n    \"8052\",\n    \"13900\",\n    \"13706\",\n    \"13924\",\n    \"7189\",\n    \"11086\",\n    \"12115\",\n    \"17527\",\n    \"9318\",\n    \"9526\",\n    \"19845\",\n    \"7577\",\n    \"12257\",\n    \"13097\",\n    \"16088\",\n    \"13168\",\n    \"2316\",\n    \"18875\",\n    \"14839\",\n    \"19670\",\n    \"10008\",\n    \"19728\",\n    \"11100\",\n    \"4620\",\n    \"16529\",\n    \"11386\",\n    \"19692\",\n    \"15477\",\n    \"1821\",\n    \"16318\",\n    \"20072\",\n    \"8356\",\n    \"462\",\n    \"16224\",\n    \"8938\",\n    \"17869\",\n    \"8797\",\n    \"2043\",\n    \"20253\",\n    \"10832\",\n    \"16750\",\n    \"10199\",\n    \"7730\",\n    \"16612\",\n    \"5098\",\n    \"6566\",\n    \"4625\",\n    \"8401\",\n    \"2633\",\n    \"15265\",\n    \"1484\",\n    \"5985\",\n    \"15644\",\n    \"20364\",\n    \"11569\",\n    \"5231\",\n    \"15631\",\n    \"15693\",\n    \"12057\",\n    \"16264\",\n    \"452\",\n    \"10728\",\n    \"5467\",\n    \"9256\",\n    \"15754\",\n    \"5205\",\n    \"14357\",\n    \"15473\",\n    \"20880\",\n    \"21054\",\n    \"8910\",\n    \"1345\",\n    \"18039\",\n    \"18950\",\n    \"15852\",\n    \"1416\",\n    \"1024\",\n    \"15503\",\n    \"9976\",\n    \"10850\",\n    \"8856\",\n    \"16483\",\n    \"17497\",\n    \"4694\",\n    \"21106\",\n    \"4342\",\n    \"3242\",\n    \"16619\",\n    \"9435\",\n    \"4495\",\n    \"872\",\n    \"19749\",\n    \"14754\",\n    \"14030\",\n    \"9537\",\n    \"2444\",\n    \"10861\",\n    \"12053\",\n    \"15844\",\n    \"9484\",\n    \"1656\",\n    \"3986\",\n    \"12209\",\n    \"19329\",\n    \"12928\",\n    \"16740\",\n    \"12389\",\n    \"19741\",\n    \"12127\",\n    \"16563\",\n    \"4789\",\n    \"9646\",\n    \"11629\",\n    \"9383\",\n    \"14082\",\n    \"12574\",\n    \"10607\",\n    \"5301\",\n    \"2687\",\n    \"11870\",\n    \"17575\",\n    \"4195\",\n    \"1148\",\n    \"5122\",\n    \"17539\",\n    \"17371\",\n    \"5186\",\n    \"11765\",\n    \"15341\",\n    \"10252\",\n    \"1409\",\n    \"16598\",\n    \"1453\",\n    \"4538\",\n    \"8489\",\n    \"6085\",\n    \"1399\",\n    \"15896\",\n    \"4831\",\n    \"2762\",\n    \"17442\",\n    \"15485\",\n    \"9826\",\n    \"5070\",\n    \"8266\",\n    \"1183\",\n    \"10810\",\n    \"16391\",\n    \"20867\",\n    \"2143\",\n    \"9434\",\n    \"20766\",\n    \"5318\",\n    \"13505\",\n    \"4462\",\n    \"4618\",\n    \"11109\",\n    \"20545\",\n    \"12857\",\n    \"8951\",\n    \"1045\",\n    \"4739\",\n    \"4818\",\n    \"15929\",\n    \"19319\",\n    \"11542\",\n    \"4218\",\n    \"14099\",\n    \"17597\",\n    \"19065\",\n    \"10712\",\n    \"2607\",\n    \"10835\",\n    \"3266\",\n    \"6417\",\n    \"2949\",\n    \"11604\",\n    \"19716\",\n    \"17510\",\n    \"8485\",\n    \"19758\",\n    \"7937\",\n    \"14652\",\n    \"17815\",\n    \"2746\",\n    \"9439\",\n    \"14328\",\n    \"17003\",\n    \"13040\",\n    \"16682\",\n    \"6670\",\n    \"14622\",\n    \"7958\",\n    \"355\",\n    \"18239\",\n    \"4349\",\n    \"18551\",\n    \"10547\",\n    \"18975\",\n    \"6239\",\n    \"2682\",\n    \"14011\",\n    \"17463\",\n    \"20822\",\n    \"13024\",\n    \"2765\",\n    \"15819\",\n    \"10915\",\n    \"15965\",\n    \"5931\",\n    \"7855\",\n    \"9689\",\n    \"1929\",\n    \"5148\",\n    \"17087\",\n    \"15319\",\n    \"14586\",\n    \"715\",\n    \"2067\",\n    \"10943\",\n    \"875\",\n    \"487\",\n    \"17911\",\n    \"11812\",\n    \"9230\",\n    \"4874\",\n    \"19861\",\n    \"1337\",\n    \"9777\",\n    \"8853\",\n    \"17152\",\n    \"13067\",\n    \"4680\",\n    \"523\",\n    \"5593\",\n    \"3508\",\n    \"7911\",\n    \"5478\",\n    \"6737\",\n    \"6720\",\n    \"10546\",\n    \"16877\",\n    \"14977\",\n    \"11484\",\n    \"15134\",\n    \"20798\",\n    \"870\",\n    \"3452\",\n    \"166\",\n    \"3391\",\n    \"770\",\n    \"1536\",\n    \"18767\",\n    \"21051\",\n    \"20963\",\n    \"4866\",\n    \"3422\",\n    \"18968\",\n    \"10516\",\n    \"1865\",\n    \"419\",\n    \"18161\",\n    \"11899\",\n    \"20190\",\n    \"18151\",\n    \"4992\",\n    \"17127\",\n    \"11570\",\n    \"1348\",\n    \"15144\",\n    \"4648\",\n    \"1474\",\n    \"19222\",\n    \"10259\",\n    \"15848\",\n    \"12590\",\n    \"12493\",\n    \"9161\",\n    \"5078\",\n    \"976\",\n    \"10905\",\n    \"17200\",\n    \"12610\",\n    \"13416\",\n    \"19404\",\n    \"19497\",\n    \"9939\",\n    \"18266\",\n    \"1959\",\n    \"3820\",\n    \"7240\",\n    \"6906\",\n    \"4815\",\n    \"2519\",\n    \"12636\",\n    \"385\",\n    \"4229\",\n    \"7601\",\n    \"2168\",\n    \"14416\",\n    \"3865\",\n    \"20942\",\n    \"2894\",\n    \"14770\",\n    \"3312\",\n    \"7874\",\n    \"19301\",\n    \"16966\",\n    \"9131\",\n    \"107\",\n    \"15788\",\n    \"7080\",\n    \"17411\",\n    \"20586\",\n    \"14201\",\n    \"11735\",\n    \"13994\",\n    \"3998\",\n    \"19499\",\n    \"1648\",\n    \"1570\",\n    \"16711\",\n    \"1680\",\n    \"17736\",\n    \"5743\",\n    \"14716\",\n    \"5824\",\n    \"4013\",\n    \"8349\",\n    \"18918\",\n    \"11490\",\n    \"4146\",\n    \"742\",\n    \"10202\",\n    \"14171\",\n    \"18358\",\n    \"19420\",\n    \"3180\",\n    \"13116\",\n    \"8196\",\n    \"12735\",\n    \"12725\",\n    \"4802\",\n    \"17165\",\n    \"3863\",\n    \"773\",\n    \"11033\",\n    \"16722\",\n    \"4239\",\n    \"12385\",\n    \"18006\",\n    \"19168\",\n    \"21116\",\n    \"4898\",\n    \"9240\",\n    \"13903\",\n    \"18350\",\n    \"12886\",\n    \"4261\",\n    \"1190\",\n    \"13439\",\n    \"16172\",\n    \"10632\",\n    \"4572\",\n    \"12895\",\n    \"19200\",\n    \"7496\",\n    \"5762\",\n    \"13579\",\n    \"14280\",\n    \"9640\",\n    \"17923\",\n    \"15433\",\n    \"21004\",\n    \"15275\",\n    \"10357\",\n    \"4090\",\n    \"17592\",\n    \"8655\",\n    \"20198\",\n    \"8673\",\n    \"3586\",\n    \"1539\",\n    \"12561\",\n    \"18469\",\n    \"9129\",\n    \"14493\",\n    \"1367\",\n    \"10367\",\n    \"16741\",\n    \"21194\",\n    \"2246\",\n    \"19092\",\n    \"19712\",\n    \"1012\",\n    \"3513\",\n    \"939\",\n    \"289\",\n    \"11939\",\n    \"6035\",\n    \"18087\",\n    \"13109\",\n    \"15531\",\n    \"18158\",\n    \"19753\",\n    \"2506\",\n    \"2850\",\n    \"1882\",\n    \"9988\",\n    \"12511\",\n    \"11739\",\n    \"8506\",\n    \"4861\",\n    \"20476\",\n    \"3482\",\n    \"20873\",\n    \"17275\",\n    \"10928\",\n    \"14931\",\n    \"19095\",\n    \"14856\",\n    \"5252\",\n    \"20380\",\n    \"6586\",\n    \"19656\",\n    \"4305\",\n    \"10433\",\n    \"5939\",\n    \"14155\",\n    \"16398\",\n    \"18777\",\n    \"18198\",\n    \"10532\",\n    \"5204\",\n    \"1884\",\n    \"14700\",\n    \"19940\",\n    \"20473\",\n    \"4265\",\n    \"16625\",\n    \"16217\",\n    \"14794\",\n    \"3595\",\n    \"1982\",\n    \"18015\",\n    \"10821\",\n    \"2455\",\n    \"5692\",\n    \"346\",\n    \"12456\",\n    \"4894\",\n    \"4673\",\n    \"10004\",\n    \"10489\",\n    \"17320\",\n    \"5656\",\n    \"6758\",\n    \"9111\",\n    \"8188\",\n    \"16138\",\n    \"7067\",\n    \"1653\",\n    \"13307\",\n    \"11426\",\n    \"9692\",\n    \"9321\",\n    \"143\",\n    \"8881\",\n    \"18479\",\n    \"8037\",\n    \"13771\",\n    \"21193\",\n    \"19109\",\n    \"16121\",\n    \"1352\",\n    \"11139\",\n    \"19529\",\n    \"7767\",\n    \"12594\",\n    \"4665\",\n    \"3179\",\n    \"11465\",\n    \"11788\",\n    \"2563\",\n    \"3321\",\n    \"12671\",\n    \"4427\",\n    \"2032\",\n    \"10332\",\n    \"14587\",\n    \"2214\",\n    \"208\",\n    \"14289\",\n    \"19784\",\n    \"15126\",\n    \"7087\",\n    \"15669\",\n    \"13264\",\n    \"2345\",\n    \"11566\",\n    \"20562\",\n    \"11150\",\n    \"13091\",\n    \"6013\",\n    \"10759\",\n    \"644\",\n    \"12185\",\n    \"12584\",\n    \"17350\",\n    \"15588\",\n    \"19458\",\n    \"13540\",\n    \"19026\",\n    \"11518\",\n    \"8178\",\n    \"15409\",\n    \"18016\",\n    \"4272\",\n    \"12368\",\n    \"4574\",\n    \"6180\",\n    \"12970\",\n    \"13710\",\n    \"15713\",\n    \"12843\",\n    \"11057\",\n    \"8251\",\n    \"15135\",\n    \"12290\",\n    \"20771\",\n    \"646\",\n    \"13747\",\n    \"14965\",\n    \"10022\",\n    \"17294\",\n    \"19284\",\n    \"12729\",\n    \"8286\",\n    \"5019\",\n    \"6396\",\n    \"6076\",\n    \"10192\",\n    \"4408\",\n    \"14582\",\n    \"747\",\n    \"14885\",\n    \"15492\",\n    \"906\",\n    \"1622\",\n    \"4503\",\n    \"11529\",\n    \"20813\",\n    \"8396\",\n    \"4508\",\n    \"5336\",\n    \"792\",\n    \"4613\",\n    \"12818\",\n    \"8600\",\n    \"1186\",\n    \"13838\",\n    \"1003\",\n    \"3889\",\n    \"18602\",\n    \"13430\",\n    \"21066\",\n    \"9606\",\n    \"619\",\n    \"11539\",\n    \"17306\",\n    \"18621\",\n    \"9717\",\n    \"7062\",\n    \"485\",\n    \"4255\",\n    \"6971\",\n    \"1161\",\n    \"3868\",\n    \"17933\",\n    \"18771\",\n    \"18224\",\n    \"6522\",\n    \"3146\",\n    \"14148\",\n    \"19516\",\n    \"12997\",\n    \"20930\",\n    \"8125\",\n    \"9575\",\n    \"8750\",\n    \"15154\",\n    \"11705\",\n    \"8971\",\n    \"16371\",\n    \"8074\",\n    \"11785\",\n    \"1566\",\n    \"2962\",\n    \"13243\",\n    \"18253\",\n    \"19746\",\n    \"19577\",\n    \"9808\",\n    \"13346\",\n    \"11994\",\n    \"12932\",\n    \"9739\",\n    \"1931\",\n    \"15916\",\n    \"5215\",\n    \"15081\",\n    \"20685\",\n    \"8789\",\n    \"7891\",\n    \"5420\",\n    \"19944\",\n    \"16052\",\n    \"11790\",\n    \"20944\",\n    \"1168\",\n    \"20850\",\n    \"20066\",\n    \"4689\",\n    \"4425\",\n    \"13267\",\n    \"9825\",\n    \"10756\",\n    \"3306\",\n    \"10621\",\n    \"6764\",\n    \"5500\",\n    \"15758\",\n    \"2135\",\n    \"13498\",\n    \"1492\",\n    \"15100\",\n    \"6996\",\n    \"13406\",\n    \"2288\",\n    \"20342\",\n    \"18052\",\n    \"16833\",\n    \"19021\",\n    \"2389\",\n    \"6680\",\n    \"17756\",\n    \"4772\",\n    \"4651\",\n    \"12323\",\n    \"11089\",\n    \"19245\",\n    \"15360\",\n    \"18776\",\n    \"11623\",\n    \"19154\",\n    \"6252\",\n    \"11924\",\n    \"11331\",\n    \"5182\",\n    \"6302\",\n    \"19767\",\n    \"19230\",\n    \"9828\",\n    \"13206\",\n    \"19474\",\n    \"3599\",\n    \"20622\",\n    \"5401\",\n    \"15671\",\n    \"18026\",\n    \"20200\",\n    \"1466\",\n    \"19938\",\n    \"18734\",\n    \"14360\",\n    \"19193\",\n    \"5165\",\n    \"2167\",\n    \"19671\",\n    \"10752\",\n    \"18708\",\n    \"14867\",\n    \"97\",\n    \"16567\",\n    \"13793\",\n    \"6205\",\n    \"18901\",\n    \"19539\",\n    \"15590\",\n    \"8936\",\n    \"8627\",\n    \"13466\",\n    \"15953\",\n    \"17170\",\n    \"4800\",\n    \"12890\",\n    \"10230\",\n    \"12709\",\n    \"13931\",\n    \"11571\",\n    \"16540\",\n    \"14185\",\n    \"19866\",\n    \"6725\",\n    \"1641\",\n    \"2999\",\n    \"19781\",\n    \"1817\",\n    \"7382\",\n    \"6757\",\n    \"7589\",\n    \"19645\",\n    \"19159\",\n    \"9299\",\n    \"20673\",\n    \"7831\",\n    \"14696\",\n    \"10039\",\n    \"3725\",\n    \"9578\",\n    \"21046\",\n    \"15549\",\n    \"17491\",\n    \"3528\",\n    \"19179\",\n    \"1987\",\n    \"405\",\n    \"20608\",\n    \"21026\",\n    \"12351\",\n    \"17742\",\n    \"11053\",\n    \"16848\",\n    \"16982\",\n    \"639\",\n    \"4478\",\n    \"16346\",\n    \"3743\",\n    \"11174\",\n    \"6603\",\n    \"13051\",\n    \"1837\",\n    \"4705\",\n    \"2156\",\n    \"9358\",\n    \"17783\",\n    \"18011\",\n    \"7352\",\n    \"20968\",\n    \"4249\",\n    \"17506\",\n    \"1589\",\n    \"12124\",\n    \"19231\",\n    \"20137\",\n    \"14269\",\n    \"1151\",\n    \"1493\",\n    \"944\",\n    \"12001\",\n    \"14566\",\n    \"11245\",\n    \"14713\",\n    \"8475\",\n    \"20316\",\n    \"16502\",\n    \"15822\",\n    \"18649\",\n    \"9829\",\n    \"7997\",\n    \"16232\",\n    \"3730\",\n    \"12743\",\n    \"19776\",\n    \"9072\",\n    \"9731\",\n    \"1930\",\n    \"7099\",\n    \"19297\",\n    \"8015\",\n    \"17894\",\n    \"9510\",\n    \"19229\",\n    \"2847\",\n    \"6895\",\n    \"17184\",\n    \"10267\",\n    \"8568\",\n    \"12734\",\n    \"11741\",\n    \"11093\",\n    \"4576\",\n    \"7504\",\n    \"3192\",\n    \"4129\",\n    \"15246\",\n    \"16949\",\n    \"4634\",\n    \"109\",\n    \"12188\",\n    \"20754\",\n    \"20872\",\n    \"11801\",\n    \"7295\",\n    \"4380\",\n    \"8574\",\n    \"5154\",\n    \"18650\",\n    \"17521\",\n    \"18383\",\n    \"3550\",\n    \"1413\",\n    \"20816\",\n    \"16022\",\n    \"4636\",\n    \"15517\",\n    \"14718\",\n    \"15109\",\n    \"4157\",\n    \"1685\",\n    \"15766\",\n    \"8089\",\n    \"9618\",\n    \"12646\",\n    \"20746\",\n    \"9950\",\n    \"8405\",\n    \"6974\",\n    \"5422\",\n    \"9669\",\n    \"1937\",\n    \"17745\",\n    \"1970\",\n    \"20227\",\n    \"15479\",\n    \"6718\",\n    \"12148\",\n    \"14880\",\n    \"18636\",\n    \"6484\",\n    \"15748\",\n    \"17086\",\n    \"7284\",\n    \"15226\",\n    \"18431\",\n    \"1402\",\n    \"13788\",\n    \"11806\",\n    \"18028\",\n    \"19696\",\n    \"9235\",\n    \"12832\",\n    \"16443\",\n    \"19058\",\n    \"1555\",\n    \"10195\",\n    \"13127\",\n    \"13482\",\n    \"7721\",\n    \"14753\",\n    \"13382\",\n    \"37\",\n    \"10179\",\n    \"6861\",\n    \"15952\",\n    \"15942\",\n    \"17761\",\n    \"12918\",\n    \"6237\",\n    \"10586\",\n    \"11967\",\n    \"8775\",\n    \"18616\",\n    \"7485\",\n    \"9280\",\n    \"3117\",\n    \"2515\",\n    \"2948\",\n    \"7010\",\n    \"11966\",\n    \"6402\",\n    \"4860\",\n    \"14988\",\n    \"18655\",\n    \"20885\",\n    \"4798\",\n    \"21005\",\n    \"130\",\n    \"13789\",\n    \"15185\",\n    \"17557\",\n    \"4438\",\n    \"15744\",\n    \"5267\",\n    \"16227\",\n    \"19689\",\n    \"19015\",\n    \"3360\",\n    \"4560\",\n    \"8607\",\n    \"279\",\n    \"9317\",\n    \"13036\",\n    \"5135\",\n    \"12281\",\n    \"1530\",\n    \"16299\",\n    \"13146\",\n    \"15539\",\n    \"3699\",\n    \"482\",\n    \"15304\",\n    \"8075\",\n    \"13965\",\n    \"4872\",\n    \"14319\",\n    \"16167\",\n    \"2911\",\n    \"4136\",\n    \"13657\",\n    \"17149\",\n    \"20472\",\n    \"8504\",\n    \"15825\",\n    \"8218\",\n    \"1346\",\n    \"10668\",\n    \"4586\",\n    \"3918\",\n    \"10232\",\n    \"17904\",\n    \"17871\",\n    \"268\",\n    \"13163\",\n    \"11871\",\n    \"11156\",\n    \"15605\",\n    \"17341\",\n    \"17511\",\n    \"852\",\n    \"15979\",\n    \"4510\",\n    \"19085\",\n    \"21101\",\n    \"7549\",\n    \"11110\",\n    \"5234\",\n    \"14024\",\n    \"19448\",\n    \"13296\",\n    \"10386\",\n    \"6475\",\n    \"9312\",\n    \"14852\",\n    \"6114\",\n    \"9805\",\n    \"15757\",\n    \"1018\",\n    \"235\",\n    \"4014\",\n    \"380\",\n    \"3635\",\n    \"5561\",\n    \"7431\",\n    \"6658\",\n    \"20299\",\n    \"2084\",\n    \"13429\",\n    \"11311\",\n    \"19972\",\n    \"1658\",\n    \"12426\",\n    \"10080\",\n    \"105\",\n    \"17175\",\n    \"5804\",\n    \"4839\",\n    \"16934\",\n    \"15723\",\n    \"5552\",\n    \"18925\",\n    \"20611\",\n    \"802\",\n    \"8108\",\n    \"14232\",\n    \"16572\",\n    \"13428\",\n    \"10484\",\n    \"2469\",\n    \"3458\",\n    \"12969\",\n    \"8255\",\n    \"18222\",\n    \"5008\",\n    \"21160\",\n    \"19352\",\n    \"13041\",\n    \"8002\"\n  ],\n  \"minival\": [\n    \"2144\",\n    \"19468\",\n    \"11978\",\n    \"1827\",\n    \"14432\",\n    \"2602\",\n    \"3059\",\n    \"14128\",\n    \"17397\",\n    \"1505\",\n    \"4527\",\n    \"7019\",\n    \"5283\",\n    \"1716\",\n    \"9335\",\n    \"16981\",\n    \"1957\",\n    \"3005\",\n    \"12153\",\n    \"1792\",\n    \"16769\",\n    \"14774\",\n    \"13395\",\n    \"21072\",\n    \"12040\",\n    \"15543\",\n    \"10372\",\n    \"15609\",\n    \"662\",\n    \"14\",\n    \"18962\",\n    \"9301\",\n    \"2673\",\n    \"15124\",\n    \"14256\",\n    \"10944\",\n    \"1357\",\n    \"1925\",\n    \"13205\",\n    \"19003\",\n    \"12595\",\n    \"12959\",\n    \"7008\",\n    \"6483\",\n    \"13827\",\n    \"20201\",\n    \"3729\",\n    \"14473\",\n    \"9088\",\n    \"12766\",\n    \"2060\",\n    \"12398\",\n    \"278\",\n    \"21082\",\n    \"11540\",\n    \"4585\",\n    \"14573\",\n    \"2082\",\n    \"5449\",\n    \"1215\",\n    \"11070\",\n    \"9310\",\n    \"14216\",\n    \"757\",\n    \"15237\",\n    \"15745\",\n    \"18228\",\n    \"12820\",\n    \"299\",\n    \"11951\",\n    \"7801\",\n    \"14085\",\n    \"13909\",\n    \"20436\",\n    \"11510\",\n    \"16776\",\n    \"3841\",\n    \"18331\",\n    \"5852\",\n    \"9215\",\n    \"15397\",\n    \"13278\",\n    \"12194\",\n    \"10102\",\n    \"17765\",\n    \"846\",\n    \"2508\",\n    \"9412\",\n    \"15248\",\n    \"8589\",\n    \"6486\",\n    \"1938\",\n    \"3361\",\n    \"14596\",\n    \"14959\",\n    \"4360\",\n    \"7656\",\n    \"2272\",\n    \"3019\",\n    \"912\",\n    \"16694\",\n    \"9590\",\n    \"2611\",\n    \"17635\",\n    \"20269\",\n    \"10676\",\n    \"4549\",\n    \"722\",\n    \"4103\",\n    \"8020\",\n    \"3053\",\n    \"15184\",\n    \"10856\",\n    \"2910\",\n    \"13156\",\n    \"4592\",\n    \"12159\",\n    \"9553\",\n    \"9854\",\n    \"18254\",\n    \"5289\",\n    \"19744\",\n    \"13084\",\n    \"11962\",\n    \"8231\",\n    \"17587\",\n    \"2115\",\n    \"17657\",\n    \"5187\",\n    \"17669\",\n    \"5819\",\n    \"14659\",\n    \"5765\",\n    \"11594\",\n    \"20832\",\n    \"16369\",\n    \"8381\",\n    \"20055\",\n    \"16344\",\n    \"3861\",\n    \"10596\",\n    \"1944\",\n    \"6570\",\n    \"15910\",\n    \"4018\",\n    \"5921\",\n    \"21207\",\n    \"9174\",\n    \"11117\",\n    \"9110\",\n    \"4536\",\n    \"2348\",\n    \"2249\",\n    \"17005\",\n    \"16150\",\n    \"20426\",\n    \"1256\",\n    \"5376\",\n    \"17221\",\n    \"12445\",\n    \"1911\",\n    \"9114\",\n    \"17080\",\n    \"12692\",\n    \"11439\",\n    \"17791\",\n    \"17461\",\n    \"790\",\n    \"8921\",\n    \"6677\",\n    \"8477\",\n    \"2708\",\n    \"1277\",\n    \"11043\",\n    \"12914\",\n    \"10194\",\n    \"5706\",\n    \"8511\",\n    \"15973\",\n    \"10206\",\n    \"19870\",\n    \"17197\",\n    \"15927\",\n    \"17865\",\n    \"14333\",\n    \"16800\",\n    \"9282\",\n    \"12789\",\n    \"15873\",\n    \"1652\",\n    \"896\",\n    \"19831\",\n    \"18929\",\n    \"6977\",\n    \"1422\",\n    \"18251\",\n    \"9911\",\n    \"1308\",\n    \"19412\",\n    \"3002\",\n    \"4224\",\n    \"6511\",\n    \"8739\",\n    \"14917\",\n    \"6598\",\n    \"1876\",\n    \"21156\",\n    \"19087\",\n    \"9914\",\n    \"5775\",\n    \"18951\",\n    \"2744\",\n    \"9978\",\n    \"20213\",\n    \"4045\",\n    \"2241\",\n    \"7146\",\n    \"7053\",\n    \"5531\",\n    \"9647\",\n    \"3023\",\n    \"18888\",\n    \"1580\",\n    \"4777\",\n    \"3738\",\n    \"2861\",\n    \"2352\",\n    \"4060\",\n    \"19560\",\n    \"17926\",\n    \"8586\",\n    \"4294\",\n    \"8180\",\n    \"4522\",\n    \"14980\",\n    \"6771\",\n    \"11166\",\n    \"12773\",\n    \"7742\",\n    \"20459\",\n    \"8532\",\n    \"17702\",\n    \"8154\",\n    \"18137\",\n    \"19038\",\n    \"12173\",\n    \"18168\",\n    \"13809\",\n    \"89\",\n    \"10691\",\n    \"10416\",\n    \"4201\",\n    \"16497\",\n    \"16631\",\n    \"12213\",\n    \"17545\",\n    \"12108\",\n    \"6628\",\n    \"13797\",\n    \"5768\",\n    \"4563\",\n    \"2547\",\n    \"15102\",\n    \"10954\",\n    \"7603\",\n    \"1726\",\n    \"13740\",\n    \"10376\",\n    \"17586\",\n    \"16130\",\n    \"2480\",\n    \"10749\",\n    \"13722\",\n    \"16098\",\n    \"10145\",\n    \"360\",\n    \"11848\",\n    \"9292\",\n    \"12317\",\n    \"9916\",\n    \"744\",\n    \"8431\",\n    \"7197\",\n    \"7776\",\n    \"343\",\n    \"4926\",\n    \"10717\",\n    \"10849\",\n    \"19172\",\n    \"4541\",\n    \"14065\",\n    \"3265\",\n    \"16309\",\n    \"13079\",\n    \"4161\",\n    \"16076\",\n    \"16609\",\n    \"17252\",\n    \"17046\",\n    \"1858\",\n    \"14313\",\n    \"13380\",\n    \"79\",\n    \"20566\",\n    \"4198\",\n    \"17670\",\n    \"20871\",\n    \"17775\",\n    \"4869\",\n    \"20411\",\n    \"15553\",\n    \"3010\",\n    \"10806\",\n    \"4635\",\n    \"5733\",\n    \"10908\",\n    \"14061\",\n    \"12352\",\n    \"9945\",\n    \"3812\",\n    \"17554\",\n    \"17336\",\n    \"13468\",\n    \"8746\",\n    \"15315\",\n    \"2592\",\n    \"17593\",\n    \"4785\",\n    \"4899\",\n    \"18926\",\n    \"19939\",\n    \"13183\",\n    \"13494\",\n    \"1623\",\n    \"724\",\n    \"19657\",\n    \"10664\",\n    \"17722\",\n    \"10662\",\n    \"6088\",\n    \"15816\",\n    \"12095\",\n    \"14702\",\n    \"18798\",\n    \"14987\",\n    \"19372\",\n    \"656\",\n    \"12043\",\n    \"6274\",\n    \"20718\",\n    \"10926\",\n    \"7236\",\n    \"8329\",\n    \"20663\",\n    \"5436\",\n    \"8033\",\n    \"3662\",\n    \"19108\",\n    \"13235\",\n    \"12957\",\n    \"17840\",\n    \"13762\",\n    \"4997\",\n    \"14695\",\n    \"6597\",\n    \"3819\",\n    \"1295\",\n    \"10652\",\n    \"3522\",\n    \"14619\",\n    \"12459\",\n    \"14712\",\n    \"5575\",\n    \"18710\",\n    \"3364\",\n    \"12025\",\n    \"10816\",\n    \"18788\",\n    \"17552\",\n    \"2543\",\n    \"3625\",\n    \"21042\",\n    \"14395\",\n    \"19980\",\n    \"17935\",\n    \"14222\",\n    \"16428\",\n    \"6419\",\n    \"14960\",\n    \"9409\",\n    \"1751\",\n    \"8967\",\n    \"1377\",\n    \"3911\",\n    \"1954\",\n    \"8435\",\n    \"13604\",\n    \"20056\",\n    \"547\",\n    \"17049\",\n    \"416\",\n    \"3029\",\n    \"11420\",\n    \"15132\",\n    \"1102\",\n    \"9296\",\n    \"17421\",\n    \"17709\",\n    \"7681\",\n    \"1266\",\n    \"20980\",\n    \"7747\",\n    \"13723\",\n    \"16663\",\n    \"16176\",\n    \"19294\",\n    \"7475\",\n    \"3001\",\n    \"3502\",\n    \"4256\",\n    \"1602\",\n    \"9178\",\n    \"18\",\n    \"2166\"\n  ],\n  \"minitest\": [\n    \"16810\",\n    \"12979\",\n    \"11202\",\n    \"18743\",\n    \"21025\",\n    \"13738\",\n    \"2660\",\n    \"6967\",\n    \"12995\",\n    \"19819\",\n    \"18334\",\n    \"18396\",\n    \"17385\",\n    \"15913\",\n    \"18045\",\n    \"9657\",\n    \"18876\",\n    \"11373\",\n    \"6263\",\n    \"5812\",\n    \"5529\",\n    \"1232\",\n    \"14512\",\n    \"10090\",\n    \"1633\",\n    \"517\",\n    \"6245\",\n    \"3750\",\n    \"16421\",\n    \"4361\",\n    \"18424\",\n    \"7038\",\n    \"1626\",\n    \"20003\",\n    \"1370\",\n    \"3888\",\n    \"2401\",\n    \"6873\",\n    \"10141\",\n    \"15772\",\n    \"13807\",\n    \"3153\",\n    \"17176\",\n    \"4920\",\n    \"8362\",\n    \"19525\",\n    \"15450\",\n    \"20514\",\n    \"14607\",\n    \"19042\",\n    \"21076\",\n    \"17667\",\n    \"13767\",\n    \"20262\",\n    \"13726\",\n    \"13961\",\n    \"14428\",\n    \"2763\",\n    \"8952\",\n    \"5761\",\n    \"12064\",\n    \"5499\",\n    \"3213\",\n    \"12722\",\n    \"13459\",\n    \"3072\",\n    \"17810\",\n    \"5671\",\n    \"18487\",\n    \"15627\",\n    \"20829\",\n    \"2644\",\n    \"16977\",\n    \"20020\",\n    \"9713\",\n    \"6412\",\n    \"2400\",\n    \"6534\",\n    \"9670\",\n    \"17171\",\n    \"16410\",\n    \"16246\",\n    \"10407\",\n    \"6345\",\n    \"18405\",\n    \"12523\",\n    \"18159\",\n    \"16626\",\n    \"2005\",\n    \"16026\",\n    \"1874\",\n    \"15585\",\n    \"2921\",\n    \"3558\",\n    \"964\",\n    \"16534\",\n    \"17613\",\n    \"3434\",\n    \"7532\",\n    \"16048\",\n    \"816\",\n    \"15718\",\n    \"21062\",\n    \"6835\",\n    \"17969\",\n    \"5992\",\n    \"13062\",\n    \"17977\",\n    \"4512\",\n    \"19782\",\n    \"982\",\n    \"16372\",\n    \"15105\",\n    \"19355\",\n    \"18707\",\n    \"18571\",\n    \"1586\",\n    \"10238\",\n    \"3775\",\n    \"18095\",\n    \"5770\",\n    \"8080\",\n    \"19206\",\n    \"18136\",\n    \"7301\",\n    \"12123\",\n    \"12587\",\n    \"20065\",\n    \"11120\",\n    \"20427\",\n    \"12652\",\n    \"6728\",\n    \"11046\",\n    \"2328\",\n    \"17098\",\n    \"13197\",\n    \"3093\",\n    \"12608\",\n    \"16878\",\n    \"18055\",\n    \"4505\",\n    \"9915\",\n    \"14205\",\n    \"9091\",\n    \"2792\",\n    \"18562\",\n    \"4459\",\n    \"13066\",\n    \"8035\",\n    \"20848\",\n    \"11881\",\n    \"5188\",\n    \"11421\",\n    \"7859\",\n    \"14637\",\n    \"12183\",\n    \"17004\",\n    \"8422\",\n    \"12105\",\n    \"1907\",\n    \"17329\",\n    \"8363\",\n    \"674\",\n    \"348\",\n    \"7546\",\n    \"13539\",\n    \"11007\",\n    \"20751\",\n    \"1477\",\n    \"3846\",\n    \"20917\",\n    \"163\",\n    \"16699\",\n    \"953\",\n    \"1533\",\n    \"2574\",\n    \"3476\",\n    \"4112\",\n    \"13687\",\n    \"11280\",\n    \"19182\",\n    \"2814\",\n    \"10960\",\n    \"17044\",\n    \"16293\",\n    \"5056\",\n    \"7108\",\n    \"5441\",\n    \"6987\",\n    \"6470\",\n    \"5418\",\n    \"16011\",\n    \"20184\",\n    \"13247\",\n    \"12606\",\n    \"3840\",\n    \"15642\",\n    \"9505\",\n    \"14985\",\n    \"13210\",\n    \"2675\",\n    \"10028\",\n    \"4844\",\n    \"21135\",\n    \"14759\",\n    \"20709\",\n    \"20115\",\n    \"457\",\n    \"20441\",\n    \"9902\",\n    \"9974\",\n    \"17488\",\n    \"14349\",\n    \"9287\",\n    \"15749\",\n    \"20995\",\n    \"7916\",\n    \"15813\",\n    \"18686\",\n    \"2452\",\n    \"19470\",\n    \"19036\",\n    \"10330\",\n    \"10961\",\n    \"4271\",\n    \"11897\",\n    \"15637\",\n    \"17503\",\n    \"19681\",\n    \"19697\",\n    \"18436\",\n    \"17435\",\n    \"936\",\n    \"10244\",\n    \"11137\",\n    \"7083\",\n    \"10001\",\n    \"17269\",\n    \"5032\",\n    \"16629\",\n    \"21199\",\n    \"14136\",\n    \"18030\",\n    \"2274\",\n    \"12629\",\n    \"4559\",\n    \"16471\",\n    \"3259\",\n    \"11925\",\n    \"9544\",\n    \"8294\",\n    \"14444\",\n    \"6877\",\n    \"6635\",\n    \"534\",\n    \"10889\",\n    \"584\",\n    \"7720\",\n    \"18560\",\n    \"13078\",\n    \"13605\",\n    \"11285\",\n    \"15596\",\n    \"4199\",\n    \"345\",\n    \"13199\",\n    \"11180\",\n    \"19049\",\n    \"11921\",\n    \"13263\",\n    \"10955\",\n    \"16886\",\n    \"1320\",\n    \"16374\",\n    \"14734\",\n    \"19043\",\n    \"2486\",\n    \"6626\",\n    \"12673\",\n    \"10556\",\n    \"16213\",\n    \"519\",\n    \"11802\",\n    \"12453\",\n    \"1044\",\n    \"3629\",\n    \"15457\",\n    \"14146\",\n    \"15763\",\n    \"11257\",\n    \"14816\",\n    \"4639\",\n    \"1392\",\n    \"15712\",\n    \"18372\",\n    \"20503\",\n    \"7758\",\n    \"6585\",\n    \"6201\",\n    \"19287\",\n    \"5889\",\n    \"13457\",\n    \"17846\",\n    \"8974\",\n    \"14639\",\n    \"4562\",\n    \"3515\",\n    \"1360\",\n    \"18127\",\n    \"8070\",\n    \"16557\",\n    \"19253\",\n    \"7358\",\n    \"6948\",\n    \"16744\",\n    \"18349\",\n    \"10838\",\n    \"7494\",\n    \"15080\",\n    \"12287\",\n    \"4263\",\n    \"5981\",\n    \"17424\",\n    \"11986\",\n    \"3316\",\n    \"14648\",\n    \"8114\",\n    \"7055\",\n    \"19665\",\n    \"2073\",\n    \"18029\",\n    \"20889\",\n    \"1628\",\n    \"20890\",\n    \"6381\",\n    \"14719\",\n    \"11943\",\n    \"1079\",\n    \"16122\",\n    \"19327\",\n    \"7121\",\n    \"16606\",\n    \"11335\",\n    \"14919\",\n    \"5189\",\n    \"11964\",\n    \"2566\",\n    \"3752\",\n    \"1606\",\n    \"14048\",\n    \"6923\",\n    \"10899\",\n    \"13678\",\n    \"1829\",\n    \"3431\",\n    \"17136\",\n    \"14840\",\n    \"17215\",\n    \"10700\",\n    \"7560\",\n    \"5747\",\n    \"15289\",\n    \"13463\",\n    \"9481\",\n    \"11333\",\n    \"19501\",\n    \"3934\",\n    \"7078\",\n    \"14162\",\n    \"11581\",\n    \"20134\",\n    \"17763\",\n    \"11227\",\n    \"670\",\n    \"15807\",\n    \"11532\",\n    \"16459\",\n    \"13896\",\n    \"3156\",\n    \"15765\",\n    \"13947\",\n    \"6924\",\n    \"2126\",\n    \"7857\",\n    \"8332\",\n    \"13408\",\n    \"13475\",\n    \"16326\",\n    \"14846\",\n    \"17901\",\n    \"4568\",\n    \"3110\",\n    \"4871\",\n    \"14841\",\n    \"7895\",\n    \"20675\",\n    \"20815\",\n    \"788\",\n    \"7119\",\n    \"7545\",\n    \"13795\",\n    \"17317\",\n    \"11917\",\n    \"16879\",\n    \"10523\",\n    \"4288\",\n    \"18796\",\n    \"6738\",\n    \"4065\",\n    \"14699\",\n    \"14971\",\n    \"16301\",\n    \"10729\",\n    \"13017\",\n    \"8880\",\n    \"543\",\n    \"17689\",\n    \"7064\",\n    \"10266\",\n    \"18257\",\n    \"17319\",\n    \"781\",\n    \"20245\",\n    \"17611\"\n  ]\n}"
  },
  {
    "path": "model/univi/eval/questions/scienceqa/test_QCM-LEA.json",
    "content": "[\n  {\n    \"id\": \"4\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nSing, O goddess, the anger of Achilles son of Peleus, that brought countless ills upon the Achaeans.\\n\\u2014Homer, The Iliad\\nContext: N/A\\nOptions: (A) chiasmus (B) apostrophe\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses apostrophe, a direct address to an absent person or a nonhuman entity.\\nO goddess is a direct address to a goddess, a nonhuman entity. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5\",\n    \"image\": \"5\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Gordon's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nGordon was an aerospace engineer who was developing a parachute for a spacecraft that would land on Mars. He needed to add a vent at the center of the parachute so the spacecraft would land smoothly. However, the spacecraft would have to travel at a high speed before landing. If the vent was too big or too small, the parachute might swing wildly at this speed. The movement could damage the spacecraft.\\nSo, to help decide how big the vent should be, Gordon put a parachute with a 1 m vent in a wind tunnel. The wind tunnel made it seem like the parachute was moving at 200 km per hour. He observed the parachute to see how much it swung.\\nFigure: a spacecraft's parachute in a wind tunnel.\\nOptions: (A) if the spacecraft was damaged when using a parachute with a 1 m vent going 200 km per hour (B) how steady a parachute with a 1 m vent was at 200 km per hour (C) whether a parachute with a 1 m vent would swing too much at 400 km per hour\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11\",\n    \"image\": \"11\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Maryland (B) New Hampshire (C) Rhode Island (D) Vermont\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New Hampshire.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word dozen on a dictionary page with the following guide words?\\ndaddy - definition\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince dozen is not between the guide words daddy - definition, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"22\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nshot - suit\\nContext: N/A\\nOptions: (A) service (B) stockade\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince stockade is between the guide words shot - suit, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"23\",\n    \"image\": \"23\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these organisms contains matter that was once part of the lichen?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) bilberry (B) mushroom\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows that starts from the lichen.\\nNo arrow points to the bilberry. So, in this food web, matter does not move from the lichen to the bilberry. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"26\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to bake lasagna in the oven?\\nContext: Select the better estimate.\\nOptions: (A) 33 minutes (B) 33 hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to bake lasagna in the oven is 33 minutes.\\n33 hours is too slow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"27\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe salesperson tried hard to convince Franklin that the jacket was a good buy; after all, it was made of genuine imitation leather.\\nContext: N/A\\nOptions: (A) hyperbole (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nGenuine imitation is a contradiction, because genuine means real, and imitation means fake or synthetic. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"29\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\ncompost rotting\\na piece of apple turning brown\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are only physical changes. (C) Both are caused by heating. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nCompost forms from the remains of plants and animals, such as vegetable scraps and egg shells. Compost rotting is a chemical change. As the compost rots, it breaks down and turns into a different type of matter.\\nA piece of apple turning brown is a chemical change. The apple reacts with oxygen in the air and turns into a different type of matter.\\nIf you scrape off the brown layer of the apple, the inside is still white. The inside hasn't touched the air. So the chemical change didn't happen to that part of the apple.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"42\",\n    \"image\": \"42\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with a woolly fleece to offspring with a hairy fleece? Choose the most likely ratio.\\nContext: This passage describes the fleece type trait in sheep:\\nThe fleece, or outer coat, of a sheep is often cut off and used to make yarn for fabrics and other textiles. Woolly fleeces, which have shorter hairs, are usually used for clothing and blankets. Hairy fleeces, which have longer hairs, are usually used for carpets.\\nIn a group of sheep, some individuals have a hairy fleece and others have a woolly fleece. In this group, the gene for the fleece type trait has two alleles. The allele for a hairy fleece (F) is dominant over the allele for a woolly fleece (f).\\nThis Punnett square shows a cross between two sheep.\\nOptions: (A) 0:4 (B) 4:0 (C) 2:2 (D) 1:3 (E) 3:1\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with a woolly fleece or a hairy fleece, consider whether each phenotype is the dominant or recessive allele's version of the fleece type trait. The question tells you that the F allele, which is for a hairy fleece, is dominant over the f allele, which is for a woolly fleece.\\nA woolly fleece is the recessive allele's version of the fleece type trait. A sheep with the recessive version of the fleece type trait must have only recessive alleles for the fleece type gene. So, offspring with a woolly fleece must have the genotype ff.\\nAll 4 boxes in the Punnett square have the genotype ff.\\nA hairy fleece is the dominant allele's version of the fleece type trait. A sheep with the dominant version of the fleece type trait must have at least one dominant allele for the fleece type gene. So, offspring with a hairy fleece must have the genotype FF or Ff.\\nThere are 0 boxes in the Punnett square with the genotype FF or Ff.\\nSo, the expected ratio of offspring with a woolly fleece to offspring with a hairy fleece is 4:0. This means that, based on the Punnett square, this cross will always produce offspring with a woolly fleece. This cross is expected to never produce offspring with a hairy fleece. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"46\",\n    \"image\": \"46\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) shiny (B) slippery (C) opaque\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nAn opaque object does not let light through. All three objects are opaque.\\nA slippery object is hard to hold onto or stand on. The tortoise shell and the basketball are not slippery.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. The crown is shiny, but the basketball is not.\\nThe property that all three objects have in common is opaque. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"47\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"When World War I first started, what did many people believe?\\nContext: N/A\\nOptions: (A) It would be one of the longest wars in history. (B) The war would be the first of two world wars. (C) The war would lead to the death of millions of Germans. (D) The war would be over quickly.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"World War I started in the summer of 1914. The two main sides of World War I were the Allied powers and Central powers. The table below shows the most important countries on each side at the beginning of the war.\\nOriginally, many people believed that the war would be over quickly. The people on each side believed that their armies could win the war easily. One popular saying during the time was that the war would be \\\"over by Christmas.\\\"\\nThe Allied powers and Central powers were almost equally matched in resources and strength. Both sides used modern weapons and technology. Because of the matched resources and new technology, World War I was deadlier than past wars. It ended up lasting four long years. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"51\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Farid investigate with an experiment?\\nContext: Farid is baking a pie. He notices that the crust burns before the pie is fully cooked. He wonders what factors affect whether a pie crust will burn in the oven. So, he decides to design an experiment. He has the following supplies available:\\ningredients for pumpkin pie filling\\ningredients for apple pie filling\\ntwo pie crusts made with white flour\\na glass pie pan\\nan aluminum pie pan\\nan oven\\nOptions: (A) Does a pie crust made with white flour burn more quickly when the pie is cooked in a glass pan or in an aluminum pan? (B) Do pie crusts made with white flour burn less quickly when covered with aluminum foil or when left uncovered? (C) Does a pie crust made with white flour burn more quickly than a pie crust made with whole wheat flour?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"61\",\n    \"image\": \"61\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes and shapes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is smaller in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is smaller in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"62\",\n    \"image\": \"62\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Phoenix (B) Baton Rouge (C) Honolulu (D) Cheyenne\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"78\",\n    \"image\": \"78\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe largest planet is made mainly of ice.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that Jupiter is the largest planet and that Jupiter is made mainly of gas. So, the largest planet is made mainly of gas. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"85\",\n    \"image\": \"85\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following organisms is the primary consumer in this food web?\\nContext: Below is a food web from Little Rock Lake, a freshwater lake ecosystem in Wisconsin.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) copepod (B) black crappie (C) bacteria\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Primary consumers eat producers. So, in a food web, primary consumers have arrows pointing to them from producers.\\nThe rotifer has an arrow pointing to it from the green algae. The green algae is a producer, so the rotifer is a primary consumer.\\nThe copepod has an arrow pointing to it from the golden algae. The golden algae is a producer, so the copepod is a primary consumer.\\nThe black crappie has arrows pointing to it from the water flea, the rotifer, and the shiner. None of these organisms is a produce, so the black crappie is not a primary consumer.\\nThe bacteria have arrows pointing to them from the copepod and the shiner. Neither the copepod nor the shiner is a producer, so the bacteria are not primary consumers. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"86\",\n    \"image\": \"86\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 2. (B) The magnetic force is stronger in Pair 1. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 1 are closer together than the magnets in Pair 2. So, the magnetic force is stronger in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"87\",\n    \"image\": \"87\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Daintree rain forest ecosystem?\\nContext: Figure: Daintree rain forest.\\nThe Daintree rain forest is a tropical rain forest ecosystem in northeastern Australia.\\nOptions: (A) It has year-round rain. It also has soil that is poor in nutrients. (B) It has cold winters. It also has many different types of organisms.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A tropical rain forest is a type of ecosystem. Tropical rain forests have the following features: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. So, the Daintree rain forest has year-round rain. It also has soil that is poor in nutrients. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"92\",\n    \"image\": \"92\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Delaware?\\nContext: N/A\\nOptions: (A) Montpelier (B) Trenton (C) Dover (D) Georgetown\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Dover is the capital of Delaware. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"93\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nSasha is good at knitting hats.\\nContext: Hint: People who can knit had to learn how to do it.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to knit. Instead, many people learn how to knit. Knitting well takes practice. So, knitting well is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"95\",\n    \"image\": \"95\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Maine (B) South Carolina (C) Kansas (D) Delaware\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. Maine is farthest north. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"96\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nimitate - iron\\nContext: N/A\\nOptions: (A) itch (B) inherit\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince inherit is between the guide words imitate - iron, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"111\",\n    \"image\": \"111\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Greta and Allie trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nGreta and Allie open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Greta wanted broccoli in her lunch and Allie was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Greta can trade her tomatoes for Allie's sandwich. (B) Allie can trade her broccoli for Greta's oranges. (C) Allie can trade her almonds for Greta's tomatoes. (D) Greta can trade her tomatoes for Allie's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Greta wanted broccoli in her lunch and Allie was hoping for tomatoes. Look at the labeled part of the images.\\nGreta has tomatoes. Allie has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"121\",\n    \"image\": \"121\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Boulder (B) Phoenix (C) Colorado Springs (D) Denver\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"126\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word streak on a dictionary page with the following guide words?\\nserpent - skirt\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince streak is not between the guide words serpent - skirt, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"128\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbutter melting on a hot day\\nmixing sand and water\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are only physical changes. (C) Both are caused by heating. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nButter melting on a hot day is a change of state. So, it is a physical change. The butter changes from solid to liquid, but it is still made of the same type of matter.\\nMixing sand and water is a physical change. Adding water makes the sand wet. But both the sand and water are still made of the same type of matter as before.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nButter melting on a hot day is caused by heating. But mixing sand and water is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"133\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the plant.\\nContext: N/A\\nOptions: (A) Oak trees can have thick branches. (B) Orcas swim in the ocean.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. An oak tree is a plant. It can have thick branches.\\nAcorns grow on oak trees. Acorns are small nuts with a seed inside.\\nAn orca is an animal. It swims in the ocean.\\nOrcas are also called killer whales. They hunt fish and other animals that live in the ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"139\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which phrase has a more positive connotation?\\nContext: N/A\\nOptions: (A) a cowardly leader (B) a prudent leader\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Connotation is the feeling or idea that goes along with a word or phrase. Some words are close in meaning but have different connotations.\\nFor example, think about the words eager and impatient. They both mean wanting something to happen, but they have different connotations.\\nEager has a positive connotation. It is a nice word. An eager person is happy and excited.\\nImpatient has a negative connotation. It is not a nice word. An impatient person is often pushy and demanding. A prudent leader has a more positive connotation. Prudent and cowardly both denote avoiding risks or danger. However, prudent suggests someone is wisely cautious, while cowardly suggests someone lacks bravery. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"140\",\n    \"image\": \"140\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Africa (B) North America (C) South America (D) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Asia. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"142\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word bruise on a dictionary page with the following guide words?\\nblush - buffalo\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince bruise is between the guide words blush - buffalo, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"145\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the air on a cold, rainy day?\\nContext: Select the better estimate.\\nOptions: (A) 45\\u00b0C (B) 45\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the air on a cold, rainy day is 45\\u00b0F.\\n45\\u00b0C is too hot. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"149\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the reptile.\\nContext: N/A\\nOptions: (A) Chinese alligator (B) California toad (C) grass frog (D) eastern newt\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Reptiles have scaly, waterproof skin. Most reptiles live on land. A Chinese alligator is a reptile. It has scaly, waterproof skin.\\nAlligators live in and around water. They can live near ponds, rivers, marshes, and lakes.\\nAn eastern newt is an amphibian. It has moist skin and begins its life in water.\\nSome newts live in water. Other newts live on land but lay their eggs in water.\\nA grass frog is an amphibian. It has moist skin and begins its life in water.\\nFrogs live near water or in damp places. Most frogs lay their eggs in water.\\nA California toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"155\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the metaphor in this text suggest?\\nAll religions, arts, and sciences are branches of the same tree.\\n\\u2014Albert Einstein\\nContext: N/A\\nOptions: (A) All religions, arts, and sciences are distant from one another. (B) All religions, arts, and sciences are related.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town. The text uses a metaphor, comparing two things that are not actually alike without using like or as.\\nThe metaphor all religions, arts, and sciences are branches of the same tree suggests that all religions, arts, and sciences are related. Those areas grow out of shared human motivations, just as the branches of a single tree grow from a shared trunk. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"156\",\n    \"image\": \"156\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Chase's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nChase set up five pairs of platform bird feeders around his yard. He filled one feeder in each pair with sunflower seeds and the other feeder with flax seeds. For one week, Chase watched cardinals visiting the feeders during the same hour each morning. During his observations, Chase counted the number of visits by cardinals to feeders with sunflower seeds and the number of visits by cardinals to feeders with flax seeds.\\nFigure: a cardinal visiting a platform feeder with sunflower seeds.\\nOptions: (A) Do cardinals eat more seeds per visit from feeders containing sunflower seeds compared to feeders containing flax seeds? (B) Do cardinals visit feeders containing sunflower seeds more often than feeders containing flax seeds?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"158\",\n    \"image\": \"158\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this path made of?\\nContext: N/A\\nOptions: (A) plastic (B) brick\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials. Look at the picture of the path.\\nThe path is made of bricks. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"161\",\n    \"image\": \"161\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak. A robin is an example of a bird.\\nOptions: (A) cane toad (B) ostrich\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. An ostrich is a bird. It has feathers, two wings, and a beak.\\nThe ostrich is the largest bird alive today. Ostriches cannot fly, but they can run very fast.\\nA cane toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"163\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) wife (B) hide (C) life\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the same sound.\\nThe words meet and treat also rhyme. They both end with the same sound, even though the sound has two different spellings.\\nThe words tip and meet don't rhyme. They end with different sounds. The words wife and life rhyme. They both end with the ife sound.\\nThe word hide does not rhyme. It ends with a different sound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"167\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the temperature shown by this thermometer.\\nContext: N/A\\nOptions: (A) 100\\u00b0F (B) 125\\u00b0F (C) 65\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A thermometer is a tool that measures temperature. Temperature can be measured in degrees. The symbol for degrees is \\u00b0.\\nSome thermometers measure temperature in degrees Fahrenheit (\\u00b0F). Fahrenheit is one scale used to measure temperature.\\nThis is a tube thermometer. It has a tube filled with a red liquid.\\nThere is a Fahrenheit scale along the right side of the tube. The top of the red liquid lines up with the number 80 on the scale. So, the temperature shown by this thermometer is 80\\u00b0F. Find the top of the red liquid.\\nNow look at the scale to the right. The top of the red liquid lines up with 100. So, the temperature is 100\\u00b0F. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"170\",\n    \"image\": \"170\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) blue (B) hard (C) sticky\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA sticky object can attach or stick to other things. The toothpaste is sticky, but the soccer shorts and the water slide are not.\\nBlue is a color.\\nThis color is blue. All three objects are blue.\\nA hard object does not change shape when pressed or squeezed. The water slide is hard, but the toothpaste and the soccer shorts are not.\\nThe property that all three objects have in common is blue. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"172\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a hiking trail?\\nContext: Select the best estimate.\\nOptions: (A) 4 meters (B) 4 millimeters (C) 4 kilometers (D) 4 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a hiking trail is 4 kilometers.\\n4 millimeters, 4 centimeters, and 4 meters are all too short. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"176\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ngarage - goose\\nContext: N/A\\nOptions: (A) guess (B) glow\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince glow is between the guide words garage - goose, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"180\",\n    \"image\": \"180\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following was a dependent variable in this experiment?\\nContext: The passage below describes an experiment. Read the passage and think about the variables that are described.\\n\\nKenneth wanted to grow cucumbers from seeds. He read that using a heating pad to heat up potting soil could help make seeds germinate, or sprout, faster. Kenneth wondered whether the temperature of the heating pad would affect how quickly the seeds germinated.\\nKenneth prepared two potting trays, each made up of ten small pots of soil. He planted one cucumber seed in each small pot and arranged the potting trays near a sunny window. He set an electric heating pad to 75\\u00b0F and placed it under one potting tray. He set a second heating pad to 85\\u00b0F and placed it under the other potting tray. Kenneth observed the pots daily, and he counted the number of days it took until a seed germinated in each pot.\\nHint: An independent variable is a variable whose effect you are investigating. A dependent variable is a variable that you measure.\\nFigure: germinating plants in a potting tray.\\nOptions: (A) the temperature of the heating pad (B) the number of days until a seed germinated\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to find out how one variable affects another variable. For example, imagine that you want to find out if fertilizer affects the number of tomatoes a tomato plant grows. To answer this question, you decide to set up two equal groups of tomato plants. Then, you add fertilizer to the soil of the plants in one group but not in the other group. Later, you measure the effect of the fertilizer by counting the number of tomatoes on each plant.\\nIn this experiment, the amount of fertilizer added to the soil and the number of tomatoes were both variables.\\nThe amount of fertilizer added to the soil was an independent variable because it was the variable whose effect you were investigating. This type of variable is called independent because its value does not depend on what happens after the experiment begins. Instead, you decided to give fertilizer to some plants and not to others.\\nThe number of tomatoes was a dependent variable because it was the variable you were measuring. This type of variable is called dependent because its value can depend on what happens in the experiment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"182\",\n    \"image\": \"182\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Mississippi?\\nContext: N/A\\nOptions: (A) Detroit (B) Jackson (C) Biloxi (D) Topeka\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jackson is the capital of Mississippi. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"183\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this pea plant's genotype for the stem height gene?\\nContext: In a group of pea plants, some individuals have a tall stem and others have a short stem. In this group, the gene for the stem height trait has two alleles. The allele H is for a tall stem, and the allele h is for a short stem.\\nA certain pea plant from this group has a tall stem. This plant has two alleles for a tall stem.\\nOptions: (A) HH (B) a tall stem\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. The pea plant has two alleles for a tall stem (H). So, the plant's genotype for the stem height gene is HH. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"184\",\n    \"image\": \"184\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) stretchy (B) blue\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nBlue is a color.\\nThis color is blue. The melted marshmallow is not blue.\\nA stretchy object gets longer when you pull on it. The melted marshmallow is stretchy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"188\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to Newton's third law, what other force must be happening?\\nContext: Isaac Newton was born in the 1600s and studied how objects move. He discovered three fundamental laws about forces and motion. According to Newton's third law, for every force, there is an equal and opposite force.\\nConsider the following force:\\nDarnel is pushing on his friend's wheelchair.\\nOptions: (A) The wheelchair is pushing on Darnel. (B) The wheelchair is pulling on Darnel.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to Newton's third law, for every force, there is an equal and opposite force. This means that if one object is applying a force on a second object, the second object must also be applying a force on the first object, but in the opposite direction.\\nFor example, if your hand is pushing down on a table, the table is also pushing up on your hand. Or, if you are pulling forward on a rope, the rope is also pulling back on you. Darnel is pushing on the wheelchair. So, Newton's third law tells you that the wheelchair is pushing on Darnel. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"193\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a warm grilled cheese sandwich?\\nContext: Select the better estimate.\\nOptions: (A) 55\\u00b0F (B) 55\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a warm grilled cheese sandwich is 55\\u00b0C.\\n55\\u00b0F is too cold. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"196\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a hiking trail?\\nContext: Select the better estimate.\\nOptions: (A) 5 meters (B) 5 kilometers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a hiking trail is 5 kilometers.\\n5 meters is too short. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"198\",\n    \"image\": \"198\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is Rafflesia arnoldii made up of many cells?\\nContext: This organism is Rafflesia arnoldii. It is a member of the plant kingdom.\\nRafflesia arnoldii has the largest flowers in the world. A single flower can be three feet wide! R. arnoldii is commonly called a corpse flower because the flower smells like rotting meat.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Rafflesia arnoldii is a plant. Plants are made up of many cells. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"209\",\n    \"image\": \"209\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with smooth fruit to offspring with fuzzy fruit? Choose the most likely ratio.\\nContext: In a group of tomato plants, some individuals have smooth fruit and others have fuzzy fruit. In this group, the gene for the fruit texture trait has two alleles. The allele for smooth fruit (F) is dominant over the allele for fuzzy fruit (f).\\nThis Punnett square shows a cross between two tomato plants.\\nOptions: (A) 3:1 (B) 2:2 (C) 1:3 (D) 4:0 (E) 0:4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with smooth fruit or fuzzy fruit, consider whether each phenotype is the dominant or recessive allele's version of the fruit texture trait. The question tells you that the F allele, which is for smooth fruit, is dominant over the f allele, which is for fuzzy fruit.\\nSmooth fruit is the dominant allele's version of the fruit texture trait. A tomato plant with the dominant version of the fruit texture trait must have at least one dominant allele for the fruit texture gene. So, offspring with smooth fruit must have the genotype FF or Ff.\\nAll 4 boxes in the Punnett square have the genotype FF or Ff.\\nFuzzy fruit is the recessive allele's version of the fruit texture trait. A tomato plant with the recessive version of the fruit texture trait must have only recessive alleles for the fruit texture gene. So, offspring with fuzzy fruit must have the genotype ff.\\nThere are 0 boxes in the Punnett square with the genotype ff.\\nSo, the expected ratio of offspring with smooth fruit to offspring with fuzzy fruit is 4:0. This means that, based on the Punnett square, this cross will always produce offspring with smooth fruit. This cross is expected to never produce offspring with fuzzy fruit. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"210\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\ndry ice sublimating and becoming a gas\\nburning a marshmallow over a campfire\\nContext: N/A\\nOptions: (A) Both are only physical changes. (B) Both are caused by cooling. (C) Both are caused by heating. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nDry ice is solid carbon dioxide. When dry ice gets warm, it changes state and becomes carbon dioxide gas. This change of state, from solid to gas, is called sublimation.\\nDry ice becoming a gas is a physical change. A change of state does not form a different type of matter.\\nBurning a marshmallow is a chemical change. The heat from the fire causes the type of matter in the marshmallow to change. The marshmallow becomes black and crispy.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nDry ice sublimating is a physical change. But burning a marshmallow is not.\\nBoth are chemical changes.\\nBurning a marshmallow is a chemical change. But dry ice sublimating is not.\\nBoth are caused by heating.\\nBoth changes are caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"214\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the most thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a meatball at a temperature of 139\\u00b0F (B) a meatball at a temperature of 126\\u00b0F (C) a meatball at a temperature of 111\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. All three meatballs have the same mass but different temperatures. Since the 139\\u00b0F meatball is the hottest, it has the most thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"230\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) ***The Lion and the Mouse*** (B) \\\"The Lion and the Mouse\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A book should be in italics.\\nThe correct title is **The Lion and the Mouse**. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"232\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is this a run-on sentence?\\nDust particles around nine nearby stars may have been caused by long-ago collisions between melting comets and asteroids.\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA run-on sentence is formed when two sentences are run together, joined by just a comma or by no punctuation at all. If only a comma is used, the run-on is called a comma splice.\\nThe band I'm in has been rehearsing daily, we have a concert in two weeks.\\nThe band I'm in has been rehearsing daily we have a concert in two weeks.\\nThere are several ways to fix a run-on sentence:\\nUse stronger punctuation, such as a period or a semicolon.\\nThe band I'm in has been rehearsing daily. We have a concert in two weeks.\\nThe band I'm in has been rehearsing daily; we have a concert in two weeks.\\nUse a comma and a coordinating conjunction to create a compound sentence. Coordinating conjunctions include and, but, or, and so.\\nThe band I'm in has been rehearsing daily, and we have a concert in two weeks.\\nUse a subordinating conjunction or a relative pronoun to create a complex sentence. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, and whose.\\nThe band I'm in has been rehearsing daily since we have a concert in two weeks. This is not a run-on sentence. It is not formed from two sentences that have been run together without appropriate punctuation.\\nDust particles around nine nearby stars may have been caused by long-ago collisions between melting comets and asteroids. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"234\",\n    \"image\": \"234\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Cooper's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nCooper was a landscape architect who was hired to design a new city park. The city council wanted the park to have space for outdoor concerts and to have at least 20% of the park shaded by trees. Cooper thought the concert area should be at least 150 meters from the road so traffic noise didn't interrupt the music. He developed three possible designs for the park with the concert area in a different location in each design. Then, he tested each design by measuring the distance between the road and the concert area.\\nFigure: studying an architect's design.\\nOptions: (A) if at least 20% of the park would be shaded by trees in each design (B) which design would have the least traffic noise in the concert area (C) which design would have the greatest distance between the concert area and the road\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"237\",\n    \"image\": \"237\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the south pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"266\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nMia is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years.\\nContext: N/A\\nOptions: (A) compound-complex (B) compound (C) simple (D) complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound-complex. It is made up of two independent clauses and a dependent clause. The dependent clause begins with the relative pronoun which.\\nMia is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"269\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) bull ant (B) red-kneed tarantula (C) chinchilla (D) comet moth\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. Like other tarantulas, a red-kneed tarantula is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA bull ant is an insect. Like other insects, a bull ant is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA chinchilla is a mammal. Like other mammals, a chinchilla is a vertebrate. It has a backbone.\\nA comet moth is an insect. Like other insects, a comet moth is an invertebrate. It does not have a backbone. It has an exoskeleton. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"271\",\n    \"image\": \"271\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Connecticut?\\nContext: N/A\\nOptions: (A) Hartford (B) Annapolis (C) New Haven (D) Dover\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Hartford is the capital of Connecticut. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"272\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has more thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a cherry pie at a temperature of 100\\u00b0F (B) a cherry pie at a temperature of 85\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. The two cherry pies have the same mass but different temperatures. Since the 100\\u00b0F pie is hotter than the 85\\u00b0F pie, it has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"275\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nNicole learns about her ancestors in the book.\\nContext: N/A\\nOptions: (A) future tense (B) present tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, learns. The verb ends in -s and tells you about something that is true or happening now. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"280\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Seth acquired this trait?\\nContext: Read the description of a trait.\\nSeth knows a lot about biology.\\nOptions: (A) Seth is most interested in plant biology. (B) Seth learned biology by doing experiments.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"282\",\n    \"image\": \"282\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Indian Ocean (B) the Atlantic Ocean (C) the Pacific Ocean (D) the Southern Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Indian Ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"286\",\n    \"image\": \"286\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Yasuni National Park ecosystem?\\nContext: Figure: Yasuni National Park.\\nThe Amazon rain forest in South America is the largest rain forest ecosystem in the world. Ecuador's Yasuni National Park, which is in the Amazon rain forest, has many different species of plants, birds, and mammals.\\nOptions: (A) It has mostly small plants. (B) It has many different types of organisms. (C) It has soil that is rich in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A tropical rain forest is a type of ecosystem. Tropical rain forests have the following features: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. So, the following statement describes the Yasuni National Park ecosystem: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. It has many different types of organisms. The following statements do not describe Yasuni National Park: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. It has mostly small plants. It has soil that is rich in nutrients. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"288\",\n    \"image\": \"288\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) fragile (B) bouncy (C) yellow\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA fragile object will break into pieces if you drop it. All three objects are fragile.\\nYellow is a color.\\nThis color is yellow. None of the objects are yellow.\\nA bouncy object will bounce back from the floor if you drop it. None of the objects are bouncy.\\nThe property that all three objects have in common is fragile. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"292\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Jordan decides to plant the chrysanthemums. Which result would be a cost?\\nContext: Jordan is deciding whether to plant chrysanthemums or a magnolia tree in his backyard. He wants to make his backyard more beautiful. But he also wants to leave space for doing fun things.\\nOptions: (A) He will save some space. The chrysanthemums will use up less space than the magnolia tree would have used up. (B) Jordan will give up the chance to look at the magnolia tree. He thinks it would have looked more beautiful than the chrysanthemums.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Jordan wants or needs:\\nJordan will give up the chance to look at the magnolia tree. He thinks it would have looked more beautiful than the chrysanthemums. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"293\",\n    \"image\": \"293\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) carbon tetrachloride (B) acetaldehyde (C) bromine\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"298\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the word. Does it have a closed syllable or an open syllable?\\nme\\nContext: N/A\\nOptions: (A) open (B) closed\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words are made up of syllables. Two kinds of syllables are closed and open.\\nA closed syllable has one vowel and ends with a consonant. It usually has a short vowel sound.\\ndesk: short e\\nkit / ten: short i / short e\\nAn open syllable ends with one vowel. It usually has a long vowel sound.\\ngo: long o\\nhe / ro: long e / long o\\nSome open syllables end with y. The y makes a long e sound or a long i sound.\\nsky: long i\\nba / by: long a / long e The word me ends with a vowel and has a long vowel sound. So, it has an open syllable. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"301\",\n    \"image\": \"301\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the pink-backed pelican.\\nContext: This organism is a pink-backed pelican. Its scientific name is Pelecanus rufescens.\\nOptions: (A) Balearica pavonina (B) Tyto alba (C) Pelecanus rufescens\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A pink-backed pelican's scientific name is Pelecanus rufescens.\\nPelecanus rufescens has the same scientific name as a pink-backed pelican. So, these organisms are in the same species.\\nBalearica pavonina does not have the same scientific name as a pink-backed pelican. So, Pelecanus rufescens and Balearica pavonina are not in the same species.\\nTyto alba does not have the same scientific name as a pink-backed pelican. So, Pelecanus rufescens and Tyto alba are not in the same species. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"305\",\n    \"image\": \"305\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of North Dakota?\\nContext: N/A\\nOptions: (A) Des Moines (B) Bismarck (C) Madison (D) Fargo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Bismarck is the capital of North Dakota. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"315\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the allusion in this text suggest?\\nWith the gutters clogged and water rising in the streets, Lacey, who was watching the storm from her window, commented, \\\"We're going to need an ark to get out of here.\\\"\\nContext: N/A\\nOptions: (A) Lacey wants to protect her possessions. (B) Lacey thinks the storm will cause major flooding.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked. The text uses an allusion, a brief reference to someone or something well known.\\nThe allusion to an ark suggests that Lacey thinks the storm will cause major flooding. In the Bible, it rains for forty days and forty nights; Noah, his family, and animals of every species survive the great flood in an ark that he builds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"319\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nWell, that's cast rather a gloom over the evening, hasn't it?\\n\\u2014Dinner guest, after a visit from the Grim Reaper, in Monty Python's The Meaning of Life\\nContext: N/A\\nOptions: (A) understatement (B) antithesis\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses understatement, which involves deliberately representing something as less serious or important than it really is.\\nRather a gloom is an understatement, since a visit from Death would presumably ruin an evening. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"324\",\n    \"image\": \"324\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Jeremiah's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nJeremiah set up five pairs of platform bird feeders around his yard. He filled one feeder in each pair with sunflower seeds and the other feeder with flax seeds. For one week, Jeremiah watched cardinals visiting the feeders during the same hour each morning. During his observations, Jeremiah counted the number of visits by cardinals to feeders with sunflower seeds and the number of visits by cardinals to feeders with flax seeds.\\nFigure: a cardinal visiting a platform feeder with sunflower seeds.\\nOptions: (A) Do cardinals visit feeders containing sunflower seeds more often than feeders containing flax seeds? (B) Do cardinals eat more seeds per visit from feeders containing sunflower seeds compared to feeders containing flax seeds?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"325\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of an eyedropper?\\nContext: Select the better estimate.\\nOptions: (A) 5 milliliters (B) 5 liters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of an eyedropper is 5 milliliters.\\n5 liters is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"330\",\n    \"image\": \"330\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Massachusetts?\\nContext: N/A\\nOptions: (A) Cambridge (B) Plymouth (C) Boston (D) Dover\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boston is the capital of Massachusetts. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"332\",\n    \"image\": \"332\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged in the snow?\\nContext: Arctic wolves live in the Canadian Arctic and Greenland. The is adapted to be camouflaged in the snow.\\nFigure: Arctic wolf.\\nOptions: (A) short-tailed weasel (B) common hawk-cuckoo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the Arctic wolf.\\nThis Arctic wolf has white fur covering its body. It is adapted to be camouflaged in the snow. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nDuring the winter, the short-tailed weasel has white fur covering its body. It is adapted to be camouflaged in the snow.\\nThe common hawk-cuckoo has a gray head, a gray-and-brown back, and a white belly with a gray-and-brown pattern. It is not adapted to be camouflaged in the snow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"333\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nPolly anticipated that the free makeover her friend was promising would turn out to be a Trojan horse.\\nContext: N/A\\nOptions: (A) Greek mythology (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Trojan horse is Greek mythology.\\nIn Greek mythology, the Greek army tricks the Trojan army into taking a large wooden horse into their carefully guarded city. The horse turns out to be filled with Greek warriors who, once inside the city of Troy, open the gates to the Greek army waiting outside.\\nThe allusion Trojan horse means a deceptive or harmful offering. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"337\",\n    \"image\": \"337\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the Goliath heron.\\nContext: This organism is a Goliath heron. Its scientific name is Ardea goliath.\\nOptions: (A) Falco sparverius (B) Ardea herodias (C) Tigrisoma mexicanum\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A Goliath heron's scientific name is Ardea goliath. The first word of its scientific name is Ardea.\\nArdea herodias is in the genus Ardea. The first word of its scientific name is Ardea. So, Ardea herodias and Ardea goliath are in the same genus.\\nFalco sparverius is in the genus Falco. The first word of its scientific name is Falco. So, Falco sparverius and Ardea goliath are not in the same genus.\\nTigrisoma mexicanum is in the genus Tigrisoma. The first word of its scientific name is Tigrisoma. So, Tigrisoma mexicanum and Ardea goliath are not in the same genus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"338\",\n    \"image\": \"338\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Barbados (B) the Dominican Republic (C) Saint Lucia (D) Saint Vincent and the Grenadines\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Lucia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"342\",\n    \"image\": \"342\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"345\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a simple sentence?\\nContext: N/A\\nOptions: (A) In June, Bridget and Max will graduate with honors from Lowell High School. (B) When the supervisor arrived at the quarry, six dump trucks were in line at the gate.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the simple sentence. It is a single independent clause.\\nIn June, Bridget and Max will graduate with honors from Lowell High School. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"348\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the air on a warm, sunny day?\\nContext: Select the better estimate.\\nOptions: (A) 26\\u00b0C (B) 26\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the air on a warm, sunny day is 26\\u00b0C.\\n26\\u00b0F is too cold. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"363\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is bumpier?\\nContext: N/A\\nOptions: (A) bark (B) wood ruler\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Bumpy is a property. A bumpy material is covered in lumps and bumps. It is not flat or smooth.\\nLook at each picture, one at a time. Imagine touching the material shown in each picture.\\nOf the choices, the bark is bumpier. If you could touch this tree bark, it would feel lumpy and bumpy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"366\",\n    \"image\": \"366\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Can Fromia monilis cells make their own food?\\nContext: This organism is Fromia monilis. It is a member of the animal kingdom.\\nFromia monilis is commonly called a tile sea star. Did you notice that this tile sea star is missing one of its arms? If a tile sea star loses an arm, it can regrow the arm over time. This ability is called regeneration.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Fromia monilis is an animal. Animal cells cannot make their own food. Animals get their food by digesting other organisms. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"374\",\n    \"image\": \"374\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Tambor Beach, Costa Rica.\\nTambor Beach is located in Costa Rica, a country in Central America. A temperature of 84\\u00b0F was measured at Tambor Beach on Friday.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nTambor Beach is located in Costa Rica, a country in Central America. A temperature of 84\\u00b0F was measured at Tambor Beach on Friday.\\nThe underlined part of the passage tells you about the temperature at Tambor Beach on Friday. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"383\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text structure does the text use?\\nContext: Read the text.\\nExperts say that too much television can be bad for you. Watching hours of TV results in too much sitting and not enough exercise. Exercise often makes people healthier. TV also takes away from the time kids might spend reading or doing their homework. This means that they might fall behind in school. Some people don't even get enough sleep because they stay up too late watching TV.\\nOptions: (A) sequential (B) cause-effect\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Writers can organize their ideas in different ways. These ways of organizing writing are called text structures. When you can tell how a text is organized, it's easier to understand how the writer's ideas go together. You can also use these text structures to organize your own writing.\\n | Text structure | Where you might find it | Words and phrases to look for\\nA sequential structure tells you about events that happen in a certain order. | a recipe for how to make a blueberry pie | first, until, second, after, next, then, before, finally, during\\nA cause-effect structure shows the causes and the effects, or results, of an event. | an essay about how recycling helps the environment | because, led to, since, as a result, due to, so, reason\\nA problem-solution structure explains a problem and offers possible solutions. | an article about ways to get more people to vote | issue, suggest, question, puzzle, fix, answer\\nA compare-contrast structure shows how two (or more) things are the same or different. | a chapter about the differences between whales and sharks | like, unlike, too, on the other hand, both, while, same, instead, common, different, as well as, however\\nA descriptive structure tells you a list of details about an object, scene, or topic. | a paragraph about what Tyrannosaurus rex looked like| for example, near, for instance beside, such as, most important, also The text uses a cause-effect structure to show what happens if you watch too much television. In the text, certain words and phrases help to organize ideas in a cause-effect structure. Notice the phrase results in and the words makes, means, and because. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"387\",\n    \"image\": \"387\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Vanuatu (B) Tonga (C) the Marshall Islands (D) Nauru\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Nauru. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"389\",\n    \"image\": \"389\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which rhetorical appeal is primarily used in this ad?\\nContext: N/A\\nOptions: (A) logos (reason) (B) pathos (emotion) (C) ethos (character)\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The purpose of an advertisement is to persuade people to do something. To accomplish this purpose, advertisements use three types of persuasive strategies, or appeals.\\nAppeals to ethos, or character, show the writer or speaker as trustworthy, authoritative, or sharing important values with the audience. An ad that appeals to ethos might do one of the following:\\nsay that a brand has been trusted for many years\\ninclude an endorsement from a respected organization, such as the American Dental Association\\nfeature a testimonial from a \\\"real person\\\" who shares the audience's values\\nuse an admired celebrity or athlete as a spokesperson\\nAppeals to logos, or reason, use logic and verifiable evidence. An ad that appeals to logos might do one of the following:\\nuse graphs or charts to display information\\ncite results of clinical trials or independently conducted studies\\nexplain the science behind a product or service\\nemphasize that the product is a financially wise choice\\nanticipate and refute potential counterclaims\\nAppeals to pathos, or emotion, use feelings rather than facts to persuade the audience. An ad that appeals to pathos might do one of the following:\\ntrigger a fear, such as the fear of embarrassment\\nappeal to a desire, such as the desire to appear attractive\\nlink the product to a positive feeling, such as adventure, love, or luxury The ad appeals to pathos, or emotion, by evoking feelings of parental love and concern. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"392\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear Pablo, (B) dear Pablo,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Pablo is capitalized because it is a proper noun. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"402\",\n    \"image\": \"402\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged among dead leaves?\\nContext: Orange oakleaf butterflies live in the forests of Asia. This butterfly is adapted to be camouflaged among dead leaves.\\nFigure: orange oakleaf butterfly.\\nOptions: (A) strawberry poison frog (B) Surinam horned frog\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the orange oakleaf butterfly.\\nThe orange oakleaf butterfly has a brown leaf-shaped body. It is adapted to be camouflaged among dead leaves, which often have a reddish or brownish color. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe Surinam horned frog has orange-and-brown skin. It is adapted to be camouflaged among dead leaves, which often have a reddish or brownish color.\\nThe strawberry poison frog has brightly colored skin. It is not adapted to be camouflaged among dead leaves. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"404\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nNorma's phone slipped out of her pocket, landing in the toilet with a plop.\\nContext: N/A\\nOptions: (A) verbal irony (B) onomatopoeia\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses onomatopoeia, a word that expresses a sound.\\nPlop represents the sound of the phone landing in the toilet. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"406\",\n    \"image\": \"406\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Helen's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nHelen prepared ten buckets, each with one gallon of boiling water and three tablespoons of black fabric dye. Helen soaked white linen fabric squares in five of the buckets, and white cotton fabric squares in the other five buckets. All of the fabric squares were soaked for 15 minutes. After the fabric dried, Helen scored the darkness of the squares on a scale from light to dark. She compared the darkness of the linen fabric to the darkness of the cotton fabric.\\nFigure: fabric that has been dyed black.\\nOptions: (A) Does fabric turn darker when soaked in a mixture of black dye and water for 15 minutes compared to 30 minutes? (B) Does linen fabric turn darker than cotton fabric when soaked in a mixture of black dye and water?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"415\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Rachel investigate with an experiment?\\nContext: Rachel gets a basketball for her birthday and dribbles it around her neighborhood. She notices that sometimes the ball bounces higher than other times. She wonders what factors affect how high her ball bounces. So, she decides to design an experiment. She has the following supplies available:\\none basketball\\naccess to a brick patio\\naccess to a grassy lawn\\naccess to a gravel driveway\\na meterstick\\nOptions: (A) Does the basketball bounce higher on gravel or on grass? (B) Do larger basketballs bounce higher than smaller basketballs on a brick patio? (C) Does the basketball bounce higher on a lawn or on a dirt path?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"427\",\n    \"image\": \"427\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 1. (B) The magnetic force is stronger in Pair 2. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 2 are closer together than the magnets in Pair 1. So, the magnetic force is stronger in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"433\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word nature on a dictionary page with the following guide words?\\nneither - nuisance\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince nature is not between the guide words neither - nuisance, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"440\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nRed velvet cupcakes were Mabel's Achilles's heel when she was trying to eat more healthily.\\nContext: N/A\\nOptions: (A) Greek mythology (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Achilles's heel is Greek mythology.\\nIn Greek mythology, Achilles's mother dips him in a river that protects his body wherever it touches. His heel does not get wet, so it is the one part of his body left unprotected. During the Trojan War, an arrow hits Achilles in the heel and kills him.\\nThe allusion Achilles's heel means a sole weakness. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"445\",\n    \"image\": \"445\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Washington?\\nContext: N/A\\nOptions: (A) Olympia (B) Burlington (C) Seattle (D) Spokane\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Olympia is the capital of Washington. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"453\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Last year, there were seven men's clothing stores on Main Street in Norwood. This year, there are only three. What probably happened to the overall supply of men's shirts in Norwood?\\nContext: N/A\\nOptions: (A) The supply probably went up. (B) The supply probably went down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. When four men's clothing stores closed on Main Street, the number of suppliers went down. There were fewer stores selling men's shirts. So, the supply of men's shirts probably went down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"456\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence uses a metaphor?\\nContext: N/A\\nOptions: (A) The tired boy was a slow turtle. (B) The tired boy was as slow as a turtle.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. This sentence uses a metaphor:\\nThe tired boy was a slow turtle.\\nThe words boy and turtle are compared without the word like or as.\\nThis sentence uses a simile:\\nThe tired boy was as slow as a turtle.\\nThe words boy and turtle are compared using the word as. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"457\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word factoid in its traditional sense?\\nContext: N/A\\nOptions: (A) As a geneticist, Suzie dislikes many popular sci-fi movies because they often present audiences with factoids that misrepresent her field. (B) As a geneticist, Suzie enjoys watching science documentaries and sharing various factoids she's learned with her colleagues.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses factoid in its traditional sense: something made up presented as a true fact.\\nAs a geneticist, Suzie dislikes many popular sci-fi movies because they often present audiences with factoids that misrepresent her field.\\nThe first text uses factoid in its nontraditional sense: a trivial but true fact.\\nAs a geneticist, Suzie enjoys watching science documentaries and sharing various factoids she's learned with her colleagues.\\nMost style guides recommend to use the traditional sense of the word factoid because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"460\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nDerek remarked that the new book on anti-gravity was impossible to put down.\\nContext: N/A\\nOptions: (A) pun (B) allusion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses a pun, a word or phrase that humorously suggests more than one meaning.\\nImpossible to put down means that the book is so good that it is hard to stop reading. The phrase impossible to put down is also a joke about anti-gravity: if gravity pulls things down, perhaps anti-gravity does the opposite and makes them impossible to put down. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"466\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe old wooden rocking chair that Norma brought home from the rummage sale was as comfortable as a bed of nails.\\nContext: N/A\\nOptions: (A) verbal irony (B) pun\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAs comfortable as a bed of nails shows verbal irony because sitting on nails would not be comfortable. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"469\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nThe likelihood of two people having the same set of fingerprints is incredibly low.\\nContext: N/A\\nOptions: (A) declarative (B) exclamatory (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement and always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn imperative sentence makes a request or a demand and usually ends with a period. If a demand shows strong feeling, it can end with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn interrogative sentence asks a question and always ends with a question mark.\\nGiven the recent critiques of her new strategic plan, do you think the CEO will reconsider the company's direction?\\nAn exclamatory sentence is a statement that shows surprise or strong feeling. An exclamation always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence is a statement and ends with a period. It is a declarative sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"470\",\n    \"image\": \"470\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution A and Solution B have the same number of green particles per milliliter. So, their concentrations are the same. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"509\",\n    \"image\": \"509\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's scientific name?\\nContext: This organism is a comet moth. It is also called Argema mittrei.\\nOptions: (A) comet moth (B) Argema mittrei\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Argema mittrei is written in italics. The first word is capitalized, and the second word is not.\\nSo, Argema mittrei is the scientific name. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"512\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) See you soon,\\nJanet (B) See You Soon,\\nJanet\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"515\",\n    \"image\": \"515\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) smooth (B) stretchy (C) fuzzy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA fuzzy object is covered in soft hair. None of the objects are fuzzy.\\nA smooth object is not scratchy or rough. All three objects are smooth.\\nA stretchy object gets longer when you pull on it. None of the objects are stretchy.\\nThe property that all three objects have in common is smooth. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"517\",\n    \"image\": \"517\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) North America (B) Africa (C) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Asia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"519\",\n    \"image\": \"519\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Florida (B) Illinois (C) Ohio (D) New Hampshire\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. New Hampshire is farthest north. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"522\",\n    \"image\": \"522\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nBoth magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"532\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to go for a walk with a dog?\\nContext: Select the better estimate.\\nOptions: (A) 13 seconds (B) 13 minutes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to go for a walk with a dog is 13 minutes.\\n13 seconds is too fast. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"533\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Edwin acquired this trait?\\nContext: Read the description of a trait.\\nEdwin is good at identifying insects.\\nOptions: (A) Edwin learned to identify insects by reading many books about insects. (B) Edwin likes to look at butterflies and beetles.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"534\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which drop of honey has a higher temperature?\\nContext: Two drops of honey are identical except for their thermal energies.\\nOptions: (A) the drop of honey with less thermal energy (B) the drop of honey with more thermal energy\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two drops of honey are made of the same material and have the same mass. So, the drop of honey with more thermal energy has a higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"536\",\n    \"image\": \"536\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's legs are also adapted for wading?\\nContext: Flamingos live near marshes, rivers, and oceans. They eat small crustaceans that live in shallow water. Flamingos get their food by walking through water, or wading.\\nThe 's legs are adapted for wading. They are lightweight and keep the bird's body above the water.\\nFigure: flamingo.\\nOptions: (A) kookaburra (B) Eurasian spoonbill\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nArms, legs, flippers, and wings are different types of limbs. The type of limbs an animal has is an example of an adaptation. Animals' limbs can be adapted in different ways. For example, long legs might help an animal run fast. Flippers might help an animal swim. Wings might help an animal fly. Look at the picture of the flamingo.\\nLong legs help the flamingo keep its body above the surface of the water while wading. Thin legs are easier to move through the water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe Eurasian spoonbill has long, thin legs. Its legs are adapted for wading.\\nThe kookaburra has short legs. Its legs are not adapted for wading. The kookaburra uses its legs to walk and perch. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"539\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nThere are usually more days with low air pressure than high air pressure where Martha lives.\\nContext: N/A\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nThere are usually more days with low air pressure than high air pressure where Martha lives.\\nAir pressure is caused by the weight of the air in the atmosphere. When the air pressure is low, the sky is usually cloudy. When the air pressure is high, the sky is usually clear.\\nThis passage tells you about the usual pattern of air pressure where Martha lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"541\",\n    \"image\": \"541\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which rock is more likely to form from sediment deposited in a desert?\\nContext: This picture shows a desert in Asia. A desert is an environment that does not get much rain or snow.\\nOptions: (A) Sandstone forms from layers of sand. (B) Shale forms from layers of mud.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Material that is carried by wind, water, or ice is called sediment. Sand and mud are examples of sediment. Sediment may be deposited, or laid down, in places such as deserts and the ocean floor.\\nOver time, sediment can be pressed together to form sedimentary rock. You can observe a sedimentary rock to learn about the environment in which the sediment was deposited.\\nEach type of sediment forms a different sedimentary rock. Here are some examples of sedimentary rocks:\\nSandstone forms from sand. Sand is usually deposited by wind in deserts and by water on beaches.\\nShale and mudstone form from mud. Mud is often deposited at the bottom of oceans and deep lakes.\\nLimestone forms from sediment made mostly of the shells of marine organisms. This type of sediment is often deposited in the ocean near coral reefs.\\nConglomerate forms from sediment of many different sizes, such as mud, sand, pebbles, and boulders. This type of sediment is usually carried by glaciers and fast-flowing rivers. The sediment can be deposited when a glacier melts or a river starts moving more slowly. Sandstone is likely to form from sediment deposited in a desert.\\nShale forms from layers of mud. Mud is usually deposited by water. Since deserts are dry environments, mud is rarely found in deserts. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"543\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) wife (B) swim (C) life\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the ip sound.\\nThe words lake and make rhyme. They both end with the ake sound.\\nThe words tip and lake don't rhyme. They end with different sounds. The words wife and life rhyme. They both end with the ife sound.\\nThe word swim does not rhyme. It ends with a different sound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"550\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Hari's phenotype for the coat pattern trait?\\nContext: In a group of jaguars, some individuals have a black coat and others have a spotted coat. In this group, the gene for the coat pattern trait has two alleles. The allele for a spotted coat (a) is recessive to the allele for a black coat (A).\\nHari is a jaguar from this group. Hari has the homozygous genotype aa for the coat pattern gene.\\nOptions: (A) a black coat (B) a spotted coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Hari's genotype for the coat pattern gene is aa. Hari's genotype of aa has only a alleles. The a allele is for a spotted coat. So, Hari's phenotype for the coat pattern trait must be a spotted coat.\\nTo check this answer, consider whether Hari's alleles are dominant or recessive. The allele for a spotted coat (a) is recessive to the allele for a black coat (A). This means A is a dominant allele, and a is a recessive allele.\\nHari's genotype of aa has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Hari's phenotype for the coat pattern trait must be a spotted coat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"552\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nWhitney told her friends that Alvin was a typical Peter Pan type.\\nContext: N/A\\nOptions: (A) literature (B) Greek mythology\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Peter Pan is literature.\\nIn a J. M. Barrie novel, the character Peter Pan retreats to Neverland and refuses to grow up.\\nThe allusion Peter Pan means a person who won't take on adult responsibilities. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"554\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has more thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 200-gram mug of cocoa at a temperature of 155\\u00b0F (B) a 200-gram mug of cocoa at a temperature of 115\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. The two mugs of cocoa have the same mass but different temperatures. Since the 155\\u00b0F mug of cocoa is hotter than the 115\\u00b0F mug of cocoa, it has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"557\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Assume all other forces on Ken are balanced. Which statement describes the forces on Ken?\\nContext: Ken is standing on a diving board at the pool. Earth's gravity is pulling down on Ken with a force of 400N. The diving board is pushing up on Ken with a force of 400N.\\nOptions: (A) The forces are unbalanced, so there is a net force on Ken. (B) The forces are balanced, so there is no net force on Ken.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Every force has a direction and a magnitude, or strength. If two forces act on an object in opposite directions, the forces are called opposing forces.\\nWhen opposing forces have the same magnitude, they are balanced. If all the forces on an object are balanced, there is no net force on the object.\\nWhen opposing forces have different magnitudes, the forces are unbalanced. If any forces on an object are unbalanced, there is a net force on the object. To determine if there is a net force on Ken, look at the forces:\\nEarth's gravity is pulling Ken down with a force of 400 N.\\nThe diving board is pushing Ken up with a force of 400 N.\\nThe forces are in opposite directions, and the forces have the same magnitude: 400 N. This means that the forces are balanced, so there is no net force on Ken. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"573\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nWould you please be careful with my new laptop? That thing cost a million dollars!\\nContext: N/A\\nOptions: (A) euphemism (B) hyperbole\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nA million dollars is an exaggeration, since it is unlikely that a laptop would actually cost a million dollars. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"576\",\n    \"image\": \"576\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"As Rusty pulls on the toy, what is the direction of the opposing force?\\nContext: The text below describes a pair of opposing forces. Opposing forces act on an object in opposite directions. Read the text. Then answer the question below.\\nTwo dogs, Rusty and Coco, play with a toy. Think about two of the forces that act on the toy:\\nCoco pulls toward herself.\\nRusty pulls away from Coco.\\nOptions: (A) away from Coco (B) toward Coco\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Each force acts on an object in a certain direction. If two forces act on an object in opposite directions, they are called opposing forces. Find the direction Rusty pulls on the toy.\\nTwo dogs, Rusty and Coco, play with a toy. Think about two of the forces that act on the toy:\\nCoco pulls toward herself.\\nRusty pulls away from Coco.\\nThe text tells you that Rusty pulls away from Coco. The opposite direction is toward Coco. So, the direction of the opposing force is toward Coco. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"577\",\n    \"image\": \"577\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Hawaii?\\nContext: N/A\\nOptions: (A) Portland (B) Bismarck (C) Honolulu (D) Juneau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Honolulu is the capital of Hawaii. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"584\",\n    \"image\": \"584\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Washington?\\nContext: N/A\\nOptions: (A) Santa Fe (B) Lansing (C) Olympia (D) Seattle\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Olympia is the capital of Washington. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"593\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a long-distance running race?\\nContext: Select the best estimate.\\nOptions: (A) 18 yards (B) 18 inches (C) 18 miles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a long-distance running race is 18 miles.\\n18 inches and 18 yards are both too short. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"595\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The students start rolling their backpacks at the same speed. Which backpack is pulled with a larger force?\\nContext: Two students get ready to leave school. The students have the same rolling backpacks. Each student has different books in her backpack.\\nOptions: (A) a backpack carrying 9 pounds (B) a backpack carrying 6 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull.\\nA force can make an object start moving or stop an object that is moving. A force can also make an object speed up, slow down, or change direction.\\nForces can be different sizes.\\nThink about trying to move a heavy object and a light object. Imagine you want to move them at the same speed. You will need to use a larger force to move the heavy object. Look for the backpack that is heavier.\\nA backpack carrying 9 pounds is heavier than a backpack carrying 6 pounds. So, the backpack carrying 9 pounds needs to be pulled with a larger force to start rolling at the same speed as the other backpack. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"600\",\n    \"image\": \"600\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that an American curl cat produced by this cross will be homozygous dominant for the ear type gene?\\nContext: In a group of American curl cats, some individuals have curled ears and others have straight ears. In this group, the gene for the ear type trait has two alleles. The allele for curled ears (E) is dominant over the allele for straight ears (e).\\nThis Punnett square shows a cross between two American curl cats.\\nOptions: (A) 0/4 (B) 2/4 (C) 4/4 (D) 3/4 (E) 1/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring genotypes: homozygous or heterozygous?\\nHow do you determine whether an organism is homozygous or heterozygous for a gene? Look at the alleles in the organism's genotype for that gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene.\\nIf both alleles are dominant, the organism is homozygous dominant for the gene.\\nIf both alleles are recessive, the organism is homozygous recessive for the gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. \\nBecause there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4 The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"603\",\n    \"image\": \"603\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oklahoma?\\nContext: N/A\\nOptions: (A) Boise (B) Oklahoma City (C) Little Rock (D) Birmingham\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oklahoma City is the capital of Oklahoma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"605\",\n    \"image\": \"605\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Jaden and Ron's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nJaden placed a ping pong ball in a catapult, pulled the catapult's arm back to a 45\\u00b0 angle, and launched the ball. Then, Jaden launched another ping pong ball, this time pulling the catapult's arm back to a 30\\u00b0 angle. With each launch, his friend Ron measured the distance between the catapult and the place where the ball hit the ground. Jaden and Ron repeated the launches with ping pong balls in four more identical catapults. They compared the distances the balls traveled when launched from a 45\\u00b0 angle to the distances the balls traveled when launched from a 30\\u00b0 angle.\\nFigure: a catapult for launching ping pong balls.\\nOptions: (A) Do ping pong balls travel farther when launched from a 30\\u00b0 angle compared to a 45\\u00b0 angle? (B) Do ping pong balls stop rolling along the ground sooner after being launched from a 30\\u00b0 angle or a 45\\u00b0 angle?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"612\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Abby was surprised when the article said that at least one-third of American adults get less than seven hours of sleep each night. (B) Abby was surprised when it said that at least one-third of American adults get less than seven hours of sleep each night.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun it is used without its antecedent.\\nThe second answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the article.\\nAbby was surprised when the article said that at least one-third of American adults get less than seven hours of sleep each night. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"614\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word radio on a dictionary page with the following guide words?\\nrescue - road\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince radio is not between the guide words rescue - road, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"616\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nMost humans can hear many different sounds.\\nContext: N/A\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Babies do not need to learn how to hear sounds. They are able to hear naturally. So, the ability to hear is an inherited trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"617\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a pot of boiling water?\\nContext: Select the better estimate.\\nOptions: (A) 100\\u00b0F (B) 100\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a pot of boiling water is 100\\u00b0C.\\n100\\u00b0F is too cold. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"621\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nLast year, the city of Hillsdale allocated more money to public parks. This year, however, littering increased, so the increase in park funding must have been responsible.\\nContext: N/A\\nOptions: (A) false causation: the assumption that because two things happened together, one caused the other (B) false dichotomy: an argument that presents only two choices when more options exist\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that increased park funding was responsible for an increase in littering. However, even though littering increased after funding to parks was increased, that doesn't necessarily mean that the funding was responsible. This illustrates a type of logical fallacy known as false causation. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"627\",\n    \"image\": \"627\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nHydrogen is ().\\nContext: The model below represents a molecule of hydrogen. Hydrogen gas was once used to make large airships, such as blimps, float. It is no longer used in airships because it catches fire easily.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All substances are made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the chemical element boron is B, and the symbol for the chemical element chlorine is Cl.\\nScientists can use models to represent molecules. A ball-and-stick model of a molecule is shown below. This model represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent chemical bonds. Notice how each ball is labeled with a symbol for a chemical element. The ball represents one atom of that element. Count the number of chemical elements represented in the model. Then, decide if hydrogen is an elementary substance or a compound.\\nIn this model, both balls are labeled with H. So, the model shows you that hydrogen is made of one chemical element.\\nSubstances made of only one chemical element are elementary substances. So, hydrogen is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"632\",\n    \"image\": \"632\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New Jersey (B) South Carolina (C) West Virginia (D) Rhode Island\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is South Carolina. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"640\",\n    \"image\": \"640\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Kansas?\\nContext: N/A\\nOptions: (A) Des Moines (B) Wichita (C) Topeka (D) Lincoln\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Topeka is the capital of Kansas. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"641\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Why might a person have a limb amputated?\\nContext: If a person's body is damaged, the body can often heal itself. But sometimes, disease or injury can cause damage that is too severe to heal. When a limb is too severely damaged to heal, it may need to be amputated, or removed.\\nFor example, a doctor can treat an infected limb with medicine. But if the infection does not go away, it can spread to the rest of the person's body. To stop the infection from spreading, the infected limb may need to be amputated.\\nIn other cases, when a limb is badly injured, the skin, bones, muscles, and nerves may be severely damaged. If the damaged tissue cannot heal, it may die. The severely damaged or dead tissue then needs to be amputated.\\nOptions: (A) After an accident, the limb is too badly injured to heal. (B) The limb has healed from a serious disease.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"645\",\n    \"image\": \"645\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) North America (B) Africa (C) Asia (D) South America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Africa. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"667\",\n    \"image\": \"667\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Linda and Bob's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nLinda applied a thin layer of wax to the underside of her snowboard and rode the board straight down a hill. Then, she removed the wax and rode the snowboard straight down the hill again. She repeated the rides four more times, alternating whether she rode with a thin layer of wax on the board or not. Her friend Bob timed each ride. Linda and Bob calculated the average time it took to slide straight down the hill on the snowboard with wax compared to the average time on the snowboard without wax.\\nFigure: snowboarding down a hill.\\nOptions: (A) Does Linda's snowboard slide down a hill in less time when it has a thin layer of wax or a thick layer of wax? (B) Does Linda's snowboard slide down a hill in less time when it has a layer of wax or when it does not have a layer of wax?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"670\",\n    \"image\": \"670\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nevada?\\nContext: N/A\\nOptions: (A) Sacramento (B) Las Vegas (C) Carson City (D) Jefferson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Carson City is the capital of Nevada. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"671\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nHe had hoped to find his missing watch, but he couldn't find the time.\\nContext: N/A\\nOptions: (A) allusion (B) pun\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses a pun, a word or phrase that humorously suggests more than one meaning.\\nHe couldn't find the time means he didn't have enough time to go looking. It also suggests that he didn't manage to find his watch. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"674\",\n    \"image\": \"674\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Maine (B) Maryland (C) New Hampshire (D) North Carolina\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Maryland. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"686\",\n    \"image\": \"686\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Mexico?\\nContext: N/A\\nOptions: (A) Albuquerque (B) Santa Fe (C) Honolulu (D) Boston\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Santa Fe is the capital of New Mexico. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"689\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nTara swore she would never go back to Hampton, but I told her she should never say never. The city might be a very different place in ten years.\\nContext: N/A\\nOptions: (A) paradox (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a paradox, a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nNever say never at first appears to be contradictory: by saying the phrase itself, you have already said never. However, it contains some truth: people often change their minds as they age and so should not rule anything out by saying never. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"691\",\n    \"image\": \"691\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) Asia (C) South America (D) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is South America. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"693\",\n    \"image\": \"693\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"694\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the air on a cold, snowy day?\\nContext: Select the better estimate.\\nOptions: (A) 22\\u00b0F (B) 22\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the air on a cold, snowy day is 22\\u00b0F.\\n22\\u00b0C is too hot. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"730\",\n    \"image\": \"730\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's limbs are also adapted for climbing trees?\\nContext: Chimpanzees live in the forests of Central Africa. Their limbs are adapted for climbing trees.\\nFigure: chimpanzee.\\nOptions: (A) three-toed sloth (B) sea turtle\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nArms, legs, flippers, and wings are different types of limbs. The type of limbs an animal has is an example of an adaptation. Animals' limbs can be adapted in different ways. For example, long legs might help an animal run fast. Flippers might help an animal swim. Wings might help an animal fly. Look at the picture of the chimpanzee.\\nThe chimpanzee uses its long limbs to reach branches while climbing. It uses its fingers and toes to grab the branches.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe three-toed sloth has long limbs with fingers and toes. Its limbs are adapted for climbing trees.\\nThe sea turtle has flippers. Its limbs are not adapted for climbing trees. The sea turtle uses its flippers to swim underwater. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"734\",\n    \"image\": \"734\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of relationship is formed when a rat tapeworm attaches itself to a rat's intestine?\\nContext: Read the passage. Then answer the question.\\n\\nA rat tapeworm is a type of flatworm that can live inside a rat's body. When a rat eats an insect that has a tapeworm inside it, the insect is digested, but the tapeworm remains alive.\\nThe tapeworm is moved into the rat's intestines and uses suckers to attach itself to the intestine wall. Inside the rat's intestine, the tapeworm absorbs nutrients from food that the rat has eaten. If the rat has many tapeworms in its intestines, it will become weak from lack of nutrients.\\nFigure: a tapeworm attached to the wall of an intestine.\\nOptions: (A) parasitic (B) mutualistic (C) commensal\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When two organisms of different species interact in a way that affects one or both organisms, they form a symbiotic relationship. The word symbiosis comes from a Greek word that means living together. Scientists define types of symbiotic relationships based on how each organism is affected.\\nThis table lists three common types of symbiotic relationships. It shows how each organism is affected in each type of symbiotic relationship.\\nType of symbiotic relationship | Organism of one species... | Organism of the other species...\\nCommensal | benefits | is not significantly affected\\nMutualistic | benefits | benefits\\nParasitic | benefits | is harmed (but not usually killed) When a rat tapeworm attaches itself to a rat's intestine, the tapeworm gets nutrients that it needs to grow and survive. So, the tapeworm benefits from its relationship with the rat.\\nThe rat loses nutrients from its food to the tapeworm. So, the rat is harmed by its relationship with the tapeworm.\\nSince the tapeworm benefits and the rat is harmed, a parasitic relationship is formed when a rat tapeworm attaches itself to the intestine of a rat. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"739\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has more thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 7-kilogram block of iron at a temperature of 135\\u00b0C (B) a 7-kilogram block of iron at a temperature of 110\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. The two blocks of iron have the same mass but different temperatures. Since the 135\\u00b0C block is hotter than the 110\\u00b0C block, it has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"741\",\n    \"image\": \"741\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of California?\\nContext: N/A\\nOptions: (A) San Francisco (B) Sacramento (C) Jefferson City (D) Lansing\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sacramento is the capital of California. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"751\",\n    \"image\": \"751\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) salty (B) scratchy (C) sticky\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nPotato chips have a salty taste. The honey and the chocolate milkshake are not salty.\\nA sticky object can attach or stick to other things. All three objects are sticky.\\nA scratchy object is rough and itchy against your skin. None of the objects are scratchy.\\nThe property that all three objects have in common is sticky. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"752\",\n    \"image\": \"752\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the arrows, which of the following living things is a decomposer?\\nContext: Below is a food web from an ocean ecosystem. The ecosystem is in Monterey Bay, off the coast of California.\\nA food web is a model that shows how the matter eaten by living things moves through an ecosystem. The arrows show how matter moves through the food web.\\nOptions: (A) kelp (B) bat star\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nModels can make things in nature easier to understand. Models can be simpler than the things they represent. A food web is a model that shows where living things in an ecosystem get their food. If a food web showed every living thing in an ecosystem, the food web would be hard to understand. So, each food web shows how some living things in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one living thing to another. Each arrow shows the direction that matter moves when one living thing eats another living thing. An arrow starts from the living thing that is eaten. The arrow points to the living thing that is doing the eating.\\nA living thing in a food web can have more than one arrow pointing from it. This shows that the living thing is eaten by more than one other living thing in the food web.\\nA living thing in a food web can also have more than one arrow pointing to it. This shows that the living thing eats more than one other living thing in the food web. Decomposers help break down dead living things into simpler matter, such as nutrients. These nutrients can then help plants and other living things grow. In a food web, there is an arrow pointing from another living thing to a decomposer. There are no arrows pointing from a decomposer to another living thing.\\nThe kelp has an arrow pointing from it. So, the kelp is not a decomposer.\\nThe bat star does not have arrows pointing from it to other living things. So, the bat star is a decomposer. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"754\",\n    \"image\": \"754\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is marble a mineral or a rock?\\nContext: Marble has the following properties:\\nnaturally occurring\\nno fixed crystal structure\\nsolid\\ndissolves in acid\\nnot made by organisms\\nmade mostly of calcite\\nOptions: (A) rock (B) mineral\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! The properties of marble match the properties of a rock. So, marble is a rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"763\",\n    \"image\": \"763\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nEthane is ().\\nContext: The model below represents a molecule of ethane. Ethane is used to make plastic bags.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All substances are made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the chemical element boron is B, and the symbol for the chemical element chlorine is Cl.\\nScientists can use models to represent molecules. A ball-and-stick model of a molecule is shown below. This model represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent chemical bonds. Notice how each ball is labeled with a symbol for a chemical element. The ball represents one atom of that element. Count the number of chemical elements represented in the model. Then, decide if ethane is an elementary substance or a compound.\\nIn this model, each ball is labeled with C for carbon or H for hydrogen. So, the model shows you that ethane is made of two chemical elements bonded together.\\nSubstances made of two or more chemical elements bonded together are compounds. So, ethane is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"764\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Keith acquired this trait?\\nContext: Read the description of a trait.\\nKeith is good at identifying insects.\\nOptions: (A) Keith likes to look at butterflies and beetles. (B) Keith learned to identify insects by reading many books about insects.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"769\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the action that doesn't belong.\\nContext: N/A\\nOptions: (A) chop (B) blend (C) stir (D) mix\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chop doesn't belong.\\nBlend, mix, and stir all describe ways to combine things. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"781\",\n    \"image\": \"781\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Rhode Island?\\nContext: N/A\\nOptions: (A) Fayetteville (B) Huntington (C) Providence (D) Newport\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Providence is the capital of Rhode Island. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"785\",\n    \"image\": \"785\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's scientific name?\\nContext: This organism is a common loon. It is also called Gavia immer.\\nOptions: (A) Gavia immer (B) common loon\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Gavia immer is written in italics. The first word is capitalized, and the second word is not.\\nSo, Gavia immer is the scientific name. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"788\",\n    \"image\": \"788\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Missouri (B) Florida (C) Montana (D) Oregon\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. Oregon is farthest west. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"795\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Mona investigate with an experiment?\\nContext: Mona has a garden that is sometimes visited by deer. She notices that the deer eat some plants in her garden more than others. She wonders what factors affect which plants the deer eat. So, she decides to design an experiment. She has the following supplies available:\\na garlic spray used to keep garden pests away\\nfour tomato plants\\nfour bean plants\\nOptions: (A) Do the deer eat fewer leaves from bean plants sprayed with garlic spray than from unsprayed bean plants? (B) Do the deer eat fewer leaves from bean plants sprayed with coffee spray than from unsprayed bean plants? (C) Do the deer eat more leaves from tomato plants or from squash plants?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"814\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Why might a person have a limb amputated?\\nContext: If a person's body is damaged, the body can often heal itself. But sometimes, disease or injury can cause damage that is too severe to heal. When a limb is too severely damaged to heal, it may need to be amputated, or removed.\\nFor example, a doctor can treat an infected limb with medicine. But if the infection does not go away, it can spread to the rest of the person's body. To stop the infection from spreading, the infected limb may need to be amputated.\\nIn other cases, when a limb is badly injured, the skin, bones, muscles, and nerves may be severely damaged. If the damaged tissue cannot heal, it may die. The severely damaged or dead tissue then needs to be amputated.\\nOptions: (A) The limb has healed from a serious disease. (B) The limb cannot recover from an infection.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"816\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word pink on a dictionary page with the following guide words?\\nparrot - property\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince pink is between the guide words parrot - property, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"824\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word terribly in its traditional sense?\\nContext: N/A\\nOptions: (A) Ronald shivered terribly as he gazed at the snow-clad slope. After calming his nerves, he began his descent. (B) Ronald shivered as he gazed at the terribly steep, snowy slope. After calming his nerves, he began his descent.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses terribly in its traditional sense: in a terrible manner.\\nRonald shivered terribly as he gazed at the snow-clad slope. After calming his nerves, he began his descent.\\nThe second text uses terribly in its nontraditional sense: extremely; very.\\nRonald shivered as he gazed at the terribly steep, snowy slope. After calming his nerves, he began his descent.\\nMost style guides recommend to use the traditional sense of the word terribly because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"827\",\n    \"image\": \"827\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) slippery (B) transparent (C) yellow\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nYellow is a color.\\nThis color is yellow. All three objects are yellow.\\nA slippery object is hard to hold onto or stand on. The rubber toys and the gold nugget are not slippery.\\nYou can see clearly through a transparent object. None of the objects are transparent.\\nThe property that all three objects have in common is yellow. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"828\",\n    \"image\": \"828\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Cape Breton Highlands National Park ecosystem?\\nContext: Figure: Cape Breton Highlands National Park.\\nCape Breton Highlands National Park is a taiga ecosystem in eastern Canada. It is mostly covered with taiga forests that are home to moose, bears, bald eagles, and other organisms.\\nOptions: (A) It has soil that is rich in nutrients. (B) It has many evergreen trees.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A taiga is a type of ecosystem. Taigas have the following features: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. So, the following statements describe the Cape Breton Highlands National Park ecosystem: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. It has long, cold winters and short, cool summers. It has many evergreen trees. The following statement does not describe Cape Breton Highlands National Park: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. It has soil that is rich in nutrients. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"834\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Katy inherited this trait?\\nContext: Read the description of a trait.\\nKaty has brown eyes.\\nOptions: (A) Katy's father has brown eyes. He passed this trait down to Katy. (B) Katy's hair is the same color as her brown eyes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"840\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word nor on a dictionary page with the following guide words?\\nnap - neither\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince nor is not between the guide words nap - neither, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"841\",\n    \"image\": \"841\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these organisms contains matter that was once part of the lichen?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) mushroom (B) short-tailed weasel (C) brown lemming (D) rough-legged hawk (E) bilberry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows that starts from the lichen.\\nThe bilberry does not have any arrows pointing to it. So, in this food web, matter does not move from the lichen to the bilberry.There are two paths matter can take from the lichen to the mushroom: lichen->barren-ground caribou->mushroom. lichen->barren-ground caribou->grizzly bear->mushroom. brown lemming. The brown lemming has two arrows pointing to it. These arrows start from the bear sedge and the bilberry. Neither the bear sedge nor the bilberry has any arrows pointing to it. So, in this food web, matter does not move from the lichen to the brown lemming.. short-tailed weasel. The only arrow pointing to the short-tailed weasel starts from the brown lemming. The brown lemming has two arrows pointing to it. These arrows start from the bear sedge and the bilberry. Neither the bear sedge nor the bilberry has any arrows pointing to it. So, in this food web, matter does not move from the lichen to the short-tailed weasel.. rough-legged hawk. The only arrow pointing to the rough-legged hawk starts from the parasitic jaeger. The only arrow pointing to the parasitic jaeger starts from the brown lemming. The brown lemming has two arrows pointing to it. These arrows start from the bear sedge and the bilberry. Neither the bear sedge nor the bilberry has any arrows pointing to it. So, in this food web, matter does not move from the lichen to the rough-legged hawk.. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"843\",\n    \"image\": \"843\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"845\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nThe washing machine () when Doug ran an oversized load of laundry.\\nContext: N/A\\nOptions: (A) complained (B) broke\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word complained. It describes the washing machine as if it were a grumpy, overworked person. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"849\",\n    \"image\": \"849\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New Hampshire (B) Vermont (C) New York (D) Delaware\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New York.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"851\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Bryant decides to take a trip to Connecticut. Which result would be a cost?\\nContext: Bryant is deciding whether to take a trip to Connecticut or Iowa. He wants to enjoy his trip. But he is also trying to save money.\\nOptions: (A) Bryant will spend more money. Plane tickets for Bryant to get to Connecticut are more expensive than tickets to Iowa. (B) Bryant will enjoy his trip to Connecticut more than he would have enjoyed a trip to Iowa.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Bryant wants or needs:\\nBryant will spend more money. Plane tickets for Bryant to get to Connecticut are more expensive than tickets to Iowa. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"856\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) When Becky parked her scooter next to Mr. McDowell's car, she noticed that the scooter had a flat tire. (B) When Becky parked her scooter next to Mr. McDowell's car, she noticed that it had a flat tire.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it could refer to her scooter or Mr. McDowell's car.\\nThe first answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the scooter.\\nWhen Becky parked her scooter next to Mr. McDowell's car, she noticed that the scooter had a flat tire. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"865\",\n    \"image\": \"865\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bird's beak is also adapted to catch insects?\\nContext: Common nighthawks eat insects and other small invertebrates. The shape of the 's beak is adapted to catch insects.\\nFigure: common nighthawk.\\nOptions: (A) barn swallow (B) hanging parrot\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of a bird's beak is one example of an adaptation. Birds' beaks can be adapted in different ways. For example, a sharp hooked beak might help a bird tear through meat easily. A short, thick beak might help a bird break through a seed's hard shell. Birds that eat similar food often have similar beaks. Look at the picture of the common nighthawk.\\nA short, thin beak is light and easy to move. The common nighthawk uses its beak to grab fast-moving insects while flying.\\nNow look at each bird. Figure out which bird has a similar adaptation.\\nThe barn swallow has a short, thin beak. Its beak is adapted to catch insects.\\nThe hanging parrot has a small hooked beak. Its beak is not adapted to catch insects. The hanging parrot uses its beak to eat fruit and seeds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"868\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"When was Benjamin Franklin born?\\nContext: N/A\\nOptions: (A) 1856 (B) 1656 (C) 1776 (D) 1706\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Benjamin Franklin helped write the Declaration of Independence in 1776. So, he must have been born before then. The choice 1656 is too early. He would've been over 100 years old in 1776! So, the correct choice is 1706. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"878\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the crustacean traits listed above.\\nContext: Crustaceans are a group of animals with similar traits. The following traits can be used to identify crustaceans:\\nThey have two pairs of antennae.\\nThey have an exoskeleton. Observe the animals and read the descriptions.\\nOptions: (A) Earthworms live in soil and have no limbs. Their bodies are soft, cylindrical, and made up of many segments. (B) Blue crabs are omnivores. Omnivores are animals that are adapted to eat both plants and animals. Blue crabs have an exoskeleton and two pairs of antennae.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nCrustaceans have the following traits:\\nThey have two pairs of antennae.\\nThey have an exoskeleton.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nAn earthworm has the following traits:\\nIt has a soft, cylindrical body.\\nIt has no limbs.\\nIt is made up of segments.\\nAn earthworm does not have all of the traits of a crustacean. An earthworm is a segmented worm.\\nA blue crab has the following traits:\\nIt has two pairs of antennae.\\nIt has an exoskeleton.\\nA blue crab has the traits of a crustacean. A blue crab is a crustacean. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"879\",\n    \"image\": \"879\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample A (C) sample B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample A has more mass than each particle in sample B. The particles in sample A also have a higher average speed than the particles in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"880\",\n    \"image\": \"880\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Connecticut?\\nContext: N/A\\nOptions: (A) Columbia (B) Bridgeport (C) New Haven (D) Hartford\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Hartford is the capital of Connecticut. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"886\",\n    \"image\": \"886\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Ohio?\\nContext: N/A\\nOptions: (A) Wilmington (B) Reno (C) Cleveland (D) Columbus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbus is the capital of Ohio. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"888\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Trevor acquired this trait?\\nContext: Read the description of a trait.\\nTrevor has a scar on his right arm.\\nOptions: (A) Some scars fade more quickly than others. (B) Trevor's scar was caused by an accident. He cut his arm when he fell off his bicycle.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"898\",\n    \"image\": \"898\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is dolerite a mineral or a rock?\\nContext: Dolerite has the following properties:\\nfound in nature\\nnot made by organisms\\ncoarse-grained texture\\nsolid\\nno fixed crystal structure\\nnot a pure substance\\nOptions: (A) mineral (B) rock\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! The properties of dolerite match the properties of a rock. So, dolerite is a rock. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"900\",\n    \"image\": \"900\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What evidence of a wildfire does this picture show?\\nContext: This picture was taken during a wildfire. A wildfire happens when a natural area catches fire and burns.\\nOptions: (A) The grass is brown and dry. (B) Some of the grass on the ground is burning.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Evidence is information that tells you something happened.\\nHow do you look for evidence of a change to Earth's surface?\\nThere are many ways to find evidence of a change to Earth's surface. One way is to look at a picture that was taken after the change.\\nHere are some examples of what the evidence for different changes might be:\\nCause of the change | Evidence of the change\\nearthquake | cracks in the ground; houses with broken walls and roofs\\nvolcanic eruption | melted rock on Earth's surface; smoke coming out of a hole in the ground\\nerosion | a canyon with a river flowing through it; a river carrying sand and mud\\nBe careful when you are looking for evidence!\\nA picture of Earth's surface can contain a lot of information. Some of that information might be evidence of a change to the surface, but some of it is not!\\nFor example, a picture taken after an earthquake might show a blue sky. But the color of the sky is not evidence of an earthquake. So, that information is not evidence that an earthquake happened.\\n The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"901\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to the Seventh Amendment, who has the final say in deciding who wins a court case?\\nContext: N/A\\nOptions: (A) the president (B) the judge (C) the defendant (D) the jury\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to the Seventh Amendment, the jury has the final say in deciding who wins a court case. The judge is usually not allowed to change a jury's decision. A jury is a group of regular citizens who listen to a trial. Then they decide together which side is right. In the United States, juries are supposed to come from the area where the crime or disagreement took place. Most trial juries have between 6 and 12 people, called jurors. If you are an American citizen, you may be asked to be on a jury someday! Part of the text of the Seventh Amendment is below. What kind of trials does the amendment talk about? In suits at common law. . .the right of trial by jury shall be preserved, and no fact tried by a jury, shall be otherwise re-examined in any court of the United States, than according to the rules of the common law. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"905\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Mia decides to go as a superhero. Which result would be a cost?\\nContext: Mia is deciding whether to go as a vampire or a superhero to a costume party. She would rather go as a vampire. But she already has a superhero costume.\\nOptions: (A) Mia will give up the chance to wear the costume she is more excited about. (B) Mia will save some time and money. She won't have to go out and get a new costume.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Mia wants or needs:\\nMia will give up the chance to wear the costume she is more excited about. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"908\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complex sentence?\\nContext: N/A\\nOptions: (A) Mr. Livingston's afternoon lecture was about art and culture in Germany before World War II. (B) Although she left her house early, Cara barely made it to the train station in time.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The first sentence is the complex sentence. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction although.\\nAlthough she left her house early, Cara barely made it to the train station in time. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"909\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Love,\\nZoe (B) love,\\nZoe\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"913\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word disinterested in its traditional sense?\\nContext: N/A\\nOptions: (A) As a teacher of American history, Mr. McDowell tries to remain disinterested when discussing controversial issues, giving equal attention and consideration to each major viewpoint. (B) As an experienced teacher of American history, Mr. McDowell believes that playing history-based trivia games will revive even the most disinterested of students.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses disinterested in its traditional sense: unbiased or impartial.\\nAs a teacher of American history, Mr. McDowell tries to remain disinterested when discussing controversial issues, giving equal attention and consideration to each major viewpoint.\\nThe second text uses disinterested in its nontraditional sense: uninterested or indifferent.\\nAs an experienced teacher of American history, Mr. McDowell believes that playing history-based trivia games will revive even the most disinterested of students.\\nMost style guides recommend to use the traditional sense of the word disinterested because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"916\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) It is bad for a country to have a king or queen. (B) Felipe VI is the king of Spain.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true. Facts can be proved by observing, measuring, or studying information.\\nThe flag of the United States has 13 stripes.\\nThis is a fact. It can be proved by looking at the flag and counting the number of stripes.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nThe flag of the United States is easy to draw.\\nThis is an opinion. People may have different opinions about what makes a flag \\\"easy\\\" to draw. The first sentence states a fact.\\nFelipe VI is the king of Spain.\\nIt can be proved by looking in a book about the government of Spain.\\nThe second sentence states an opinion.\\nIt is bad for a country to have a king or queen.\\nBad shows what a person believes, thinks, or feels. Another person might have a different opinion about whether something is good or bad. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"918\",\n    \"image\": \"918\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Austen and Naomi trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nAusten and Naomi open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Austen wanted broccoli in his lunch and Naomi was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Naomi can trade her broccoli for Austen's oranges. (B) Austen can trade his tomatoes for Naomi's broccoli. (C) Austen can trade his tomatoes for Naomi's sandwich. (D) Naomi can trade her almonds for Austen's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Austen wanted broccoli in his lunch and Naomi was hoping for tomatoes. Look at the labeled part of the images.\\nAusten has tomatoes. Naomi has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"923\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nA modern-day Icarus, Miranda launched into the first stretch of the marathon at a breakneck pace.\\nContext: N/A\\nOptions: (A) Shakespeare (B) Greek mythology\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Icarus is Greek mythology.\\nIn Greek mythology, Icarus's father Daedalus built wings for his son but warned him not to fly too high. Too excited to heed his father's advice, Icarus flew so close to the sun that his wings melted and he fell from the sky.\\nThe allusion Icarus means an overconfident person who ignores his or her limitations. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"926\",\n    \"image\": \"926\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Poles that are different attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"932\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Michelle inherited this trait?\\nContext: Read the description of a trait.\\nMichelle has wavy hair.\\nOptions: (A) Michelle's parents were born with wavy hair. They passed down this trait to Michelle. (B) Michelle and her mother both have short hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"936\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nDeb insisted that her dog wasn't fat; she said that he was merely well-fed.\\nContext: N/A\\nOptions: (A) paradox (B) euphemism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nWell-fed is an indirect way of saying overweight. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"945\",\n    \"image\": \"945\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the arrows, which of the following organisms is a consumer?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) mushroom (B) lichen\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Consumers eat other organisms. So, there are arrows in a food web that point from other organisms to consumers.\\nThe mushroom has arrows pointing to it from the barren-ground caribou and the grizzly bear. So, the mushroom is a consumer.\\nThe lichen does not have any arrows pointing to it. So, the lichen is a producer, not a consumer. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"952\",\n    \"image\": \"952\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of pink particles?\\nContext: The diagram below is a model of two solutions. Each pink ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution B (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the pink particles represent the solute. To figure out which solution has a higher concentration of pink particles, look at both the number of pink particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of pink particles per milliliter.\\nSolution B has more pink particles per milliliter. So, Solution B has a higher concentration of pink particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"953\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complete sentence?\\nContext: N/A\\nOptions: (A) In the story, a giant hid a bag of gold and jewels. (B) Our car was stuck in traffic, we were late.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. In the story, a giant hid a bag of gold and jewels is a complete sentence. The subject is a giant, and the verb is hid. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"957\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the air inside of a freezer?\\nContext: Select the better estimate.\\nOptions: (A) 15\\u00b0F (B) 15\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the air inside of a freezer is 15\\u00b0F.\\n15\\u00b0C is too hot. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"962\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nMost of the people who knew Harold considered him to be an unrepentant Casanova.\\nContext: N/A\\nOptions: (A) history (B) Greek mythology\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Casanova is history.\\nThe autobiography of Giovanni Giacomo Casanova, an eighteenth-century Italian adventurer, details and perhaps exaggerates his amorous adventures and success with women.\\nThe allusion Casanova means a womanizer. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"964\",\n    \"image\": \"964\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Robert's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nRobert put one two-inch steel nail into each of six test tubes. He added water to three of the test tubes and vinegar to the other three. In each test tube, he completely covered the nail with the same volume of liquid. Robert checked the nails for rust at the same time every day. He recorded how many days it took each nail to become completely covered in rust. Then, he compared the number of days it took nails to rust in water to the number of days it took nails to rust in vinegar.\\nFigure: a new steel nail on a pile of rusty nails.\\nOptions: (A) Do steel nails take fewer days to rust in water compared to vinegar? (B) Do steel nails rust in fewer days when submerged in a large volume of liquid compared to a small volume?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"971\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nHe clasps the crag with crooked hands;\\nClose to the sun in lonely lands . . .\\n\\u2014Alfred, Lord Tennyson, \\\"The Eagle\\\"\\nContext: N/A\\nOptions: (A) idiom (B) alliteration\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses alliteration, the repetition of sounds at the beginning of nearby words.\\nClasps the crag with crooked hands repeats the c sound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"973\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nNuclear weapons are a threat to the stability and safety of the world. Like nuclear weapons, nuclear power plants rely on fission. Therefore, nuclear power plants are also a threat to the stability and safety of the world.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) guilt by association: a negative association intended to discredit someone or something (C) straw man: a misrepresentation of an opponent's position that makes it easier to argue against\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that nuclear power plants are a threat to world safety because they use the same process as nuclear bombs. However, this is not evidence that nuclear power plants are a threat to world stability. This illustrates a type of logical fallacy known as guilt by association. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"982\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which basketball has more thermal energy?\\nContext: Two basketballs are identical except for their temperatures.\\nOptions: (A) the hotter basketball (B) the colder basketball\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two basketballs are made of the same material and have the same mass. So, the hotter basketball has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"991\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Ernesto inherited this trait?\\nContext: Read the description of a trait.\\nErnesto has hazel eyes.\\nOptions: (A) Ernesto's biological father wears contacts in his hazel eyes. (B) Ernesto wears glasses and so do his sisters. (C) Ernesto's friend also has hazel eyes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"993\",\n    \"image\": \"993\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Canary Islands.\\nIt was partly cloudy in the Canary Islands last Tuesday.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nIt was partly cloudy in the Canary Islands last Tuesday.\\nThis passage tells you about the cloud cover over the Canary Islands last Tuesday. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1002\",\n    \"image\": \"1002\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Haiti (B) Trinidad and Tobago (C) Cuba (D) the Dominican Republic\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Haiti.\\nDoes Haiti have any territorial disputes?\\nHaiti claims to own Navassa Island, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nNavassa Island is also claimed by the United States. The United States claimed the island in 1857 and has controlled it since then. But Haiti considers the island part of its territory and has protested the United States' claim since this time. No one lives on the island. Today, it is a nature preserve. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1004\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a TV show?\\nContext: N/A\\nOptions: (A) The Adventures of Chuck and Friends (B) the Adventures of Chuck and Friends\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The words of and and are not important, so they should not be capitalized.\\nThe correct title is The Adventures of Chuck and Friends. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1009\",\n    \"image\": \"1009\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample B (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1014\",\n    \"image\": \"1014\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution A and Solution B have the same number of green particles per milliliter. So, their concentrations are the same. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1029\",\n    \"image\": \"1029\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Pennsylvania (B) Vermont (C) Tennessee (D) Michigan\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1041\",\n    \"image\": \"1041\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Hawaii?\\nContext: N/A\\nOptions: (A) Hilo (B) Carson City (C) Honolulu (D) Juneau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Honolulu is the capital of Hawaii. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1043\",\n    \"image\": \"1043\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food chain, the yucca moth is a consumer. Why?\\nContext: This diagram shows a food chain from a desert ecosystem in Southern California.\\nOptions: (A) It makes its own food. (B) It eats another living thing.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every living thing needs food to stay alive. Living things get their food in different ways. A food chain shows how living things in an ecosystem get their food.\\nProducers make their own food. Many producers use carbon dioxide, water, and sunlight to make sugar. This sugar is food for the producer.\\nConsumers eat other living things. Consumers cannot make their own food. In this food chain, the yucca moth is a consumer because it eats another living thing. The yucca moth in this food chain eats the Mojave yucca. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1044\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nMrs. McCall decided not to argue with the name her daughter had chosen for their new kitten, figuring it was a matter of a rose by any other name.\\nContext: N/A\\nOptions: (A) Shakespeare (B) a poem\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion a rose by any other name is Shakespeare.\\nIn Shakespeare's Romeo and Juliet, the two central characters are denied their love because they belong to warring families, the Montagues and Capulets. Juliet wonders how a mere family name can make someone an enemy, observing that a rose would smell sweet no matter what its name.\\nThe allusion a rose by any other name means something so special that what it's called seems unimportant. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1049\",\n    \"image\": \"1049\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Kentucky?\\nContext: N/A\\nOptions: (A) Lexington (B) Frankfort (C) Anchorage (D) Baton Rouge\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Frankfort is the capital of Kentucky. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1050\",\n    \"image\": \"1050\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Can Polytrichum commune cells make their own food?\\nContext: This organism is Polytrichum commune. It is a member of the plant kingdom.\\nPolytrichum commune is also called the common haircap moss. This plant gets its common name from its brown, cap-like structures. Those structures contain spores. After the spores are released, they can settle on the ground and grow into new mosses.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Polytrichum commune is a plant. Plant cells can make their own food. Plant cells make food using photosynthesis. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1056\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na slice of banana turning brown\\nchicken cooking in an oven\\nContext: N/A\\nOptions: (A) Both are only physical changes. (B) Both are chemical changes. (C) Both are caused by heating. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA slice of banana turning brown is a chemical change. The part of the banana in contact with the air reacts with oxygen and turns into a different type of matter.\\nCooking chicken is a chemical change. The heat causes the matter in the chicken to change. Cooked chicken and raw chicken are different types of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nCooking is caused by heating. But a slice of banana turning brown is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1064\",\n    \"image\": \"1064\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the amphibian below.\\nContext: Amphibians have moist skin and begin their lives in water. An American bullfrog is an example of an amphibian.\\nOptions: (A) brown tree frog (B) woodpecker\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A brown tree frog is an amphibian. It has moist skin and begins its life in water.\\nThere are many kinds of tree frogs. Most tree frogs are very small. They can walk on thin branches.\\nA woodpecker is a bird. It has feathers, two wings, and a beak.\\nWoodpeckers have strong beaks. They use their beaks to drill into wood to hunt for food. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1079\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Cindy inherited this trait?\\nContext: Read the description of a trait.\\nCindy has straight hair.\\nOptions: (A) Cindy's biological parents have red hair. Cindy also has red hair. (B) Cindy's neighbor also has straight hair. (C) Cindy's biological mother often wears her straight hair in a ponytail.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1082\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a newspaper?\\nContext: N/A\\nOptions: (A) The Fresno Bee (B) the fresno Bee\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between.\\nThe correct title is The Fresno Bee. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1083\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) bib (B) job (C) sob\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the same sound.\\nThe words meet and treat also rhyme. They both end with the same sound, even though the sound has two different spellings.\\nThe words tip and meet don't rhyme. They end with different sounds. The words sob and job rhyme. They both end with the ob sound.\\nThe word bib does not rhyme. It ends with a different sound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1088\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nYou won't find a single polite person in a big city. I went downtown today, and no one would stop to give me directions! Those city dwellers have got some nerve!\\nContext: N/A\\nOptions: (A) false causation: the assumption that because two things happened together, one caused the other (B) appeal to nature: the assumption that natural things are always good (C) hasty generalization: a broad claim based on too few observations\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that the speaker's bad experience downtown indicates that all people who live in cities are rude. However, the speaker's experience with a handful of people in one city does not necessarily reflect the behavior of all people in cities everywhere. This illustrates a type of logical fallacy known as a hasty generalization. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1089\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nIn the game today, Molly hit a home run with bases loaded!\\nContext: N/A\\nOptions: (A) declarative (B) exclamatory (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement and always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn imperative sentence makes a request or a demand and usually ends with a period. If a demand shows strong feeling, it can end with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn interrogative sentence asks a question and always ends with a question mark.\\nGiven the recent critiques of her new strategic plan, do you think the CEO will reconsider the company's direction?\\nAn exclamatory sentence is a statement that shows surprise or strong feeling. An exclamation always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence is a statement that shows strong feeling and ends with an exclamation point. It is an exclamatory sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1093\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Kenneth inherited this trait?\\nContext: Read the description of a trait.\\nKenneth has pale skin.\\nOptions: (A) Kenneth and his father both have dark hair. (B) Kenneth's parents have pale skin. They passed down this trait to Kenneth.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1095\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nBrenda plays tennis.\\nContext: Hint: Playing tennis takes practice.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to play tennis. Instead, some people learn how to play tennis. Playing the sport takes practice. So, playing tennis is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1098\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentences.\\nThe Sixth Amendment talks about criminal trials. It says that all criminal trials must be speedy and public. It also says that anyone accused of a crime has the right to get help from ().\\nContext: N/A\\nOptions: (A) the army (B) the president (C) a lawyer (D) other countries\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The Sixth Amendment says that all criminal trials must be speedy and public. It also says that anyone accused of a crime has the right to get help from a lawyer. A lawyer is a person trained in the law. If someone cannot afford to hire a lawyer, the government will pay for one. Usually these lawyers are called public defenders. There are more than 15,000 public defenders in the United States. They defend people in millions of criminal cases every year. Part of the text of the Sixth Amendment is below. Notice the phrases \\\"speedy and public trial\\\" and \\\"assistance of counsel.\\\" Does the text mention any other rules for trials? In all criminal prosecutions, the accused shall enjoy the right to a speedy and public trial, by an impartial jury of the state and district wherein the crime shall have been committed. . .and to have the assistance of counsel for his defense. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1113\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Blossom's phenotype for the coat color trait?\\nContext: In a group of horses, some individuals have a black coat and others have a reddish-brown coat. In this group, the gene for the coat color trait has two alleles. The allele for a black coat (L) is dominant over the allele for a reddish-brown coat (l).\\nBlossom is a horse from this group. Blossom has the homozygous genotype ll for the coat color gene.\\nOptions: (A) a black coat (B) a reddish-brown coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Blossom's genotype for the coat color gene is ll. Blossom's genotype of ll has only l alleles. The l allele is for a reddish-brown coat. So, Blossom's phenotype for the coat color trait must be a reddish-brown coat.\\nTo check this answer, consider whether Blossom's alleles are dominant or recessive. The allele for a black coat (L) is dominant over the allele for a reddish-brown coat (l). This means L is a dominant allele, and l is a recessive allele.\\nBlossom's genotype of ll has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Blossom's phenotype for the coat color trait must be a reddish-brown coat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1114\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to slide down a slide?\\nContext: Select the better estimate.\\nOptions: (A) 3 seconds (B) 3 minutes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to slide down a slide is 3 seconds.\\n3 minutes is too slow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1123\",\n    \"image\": \"1123\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nBeryllium is ().\\nContext: The model below represents beryllium. ryllium is a strong, lightweight metal used to make mirrors for space telescopes.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a space-filling model. The space-filling model below represents the elementary substance zirconium.\\nIn a space-filling model, the balls represent atoms that are bonded together. The color of a ball represents a specific chemical element. The atomic symbol for that chemical element is shown in the legend. Use the model to determine whether beryllium is an elementary substance or a compound.\\nStep 1: Interpret the model.\\nIn the space-filling model shown above, all of the balls are the same color:\\n. The legend shows that light green represents the chemical element with the atomic symbol Be. So, the model shows you that beryllium is composed of one chemical element.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that beryllium is composed of only one chemical element. So, beryllium is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1128\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the plant.\\nContext: N/A\\nOptions: (A) Alligators eat animals. (B) Ivy has star-shaped leaves. (C) Hippopotamuses eat plants. (D) Water buffalo eat plants.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. An alligator is an animal. It eats other animals.\\nAlligators can live in ponds, rivers, marshes, and lakes.\\nA hippopotamus is an animal. It eats plants.\\nHippopotamuses keep cool by lying in mud or water.\\nIvy is a plant. It has green star-shaped leaves.\\nIvy is a climbing plant. It can grow up the sides of walls, trees, and rocks. But its roots grow in the ground.\\nA water buffalo is an animal. It eats plants.\\nWater buffalo live near water. They can live near rivers or swamps. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1131\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nIn ancient Greece and Rome, dice were usually made from bone and ivory.\\nContext: N/A\\nOptions: (A) declarative (B) interrogative (C) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells about something, and it ends with a period. It is a declarative sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1134\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a passenger helicopter?\\nContext: Select the best estimate.\\nOptions: (A) 4 ounces (B) 4 pounds (C) 4 tons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a passenger helicopter is 4 tons.\\n4 ounces and 4 pounds are both too light. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1135\",\n    \"image\": \"1135\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Edwin's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nEdwin, a materials engineer, was developing a quick-drying fabric for athletic clothing. The fabric needed to absorb one drop of water in less than one second and dry completely in less than five minutes. Edwin thought a fabric made from cotton and polyester would both absorb water well and dry quickly. But he needed to decide what percentage of each material to use.\\nSo, he made a sample fabric that was 50% cotton and 50% polyester. Then he put one drop of water on the sample. He timed how long it took the fabric to dry after the water was absorbed.\\nFigure: fabric that has not absorbed drops of water.\\nOptions: (A) how much athletes would sweat in the fabric (B) if the sample fabric would absorb one drop of water in less than one second (C) how long it would take the sample fabric to dry after it absorbed one drop of water\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1137\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Victoria investigate with an experiment?\\nContext: Victoria leaves some chocolates in her jacket pocket. When she finds the chocolates later, she notices that some of them have melted. She wonders what factors affect how quickly chocolate melts. So, she decides to design an experiment. She has the following supplies available:\\none bar of milk chocolate\\none bar of dark chocolate\\na stove\\na pot\\nOptions: (A) Does milk chocolate or dark chocolate melt faster when heated on the stove? (B) Does dark chocolate or white chocolate melt faster when heated on the stove? (C) Does milk chocolate melt faster when heated in a microwave or on a stove?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1139\",\n    \"image\": \"1139\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample B has more mass than each particle in sample A. The particles in sample B also have a higher average speed than the particles in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1153\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a kitchen sink?\\nContext: Select the best estimate.\\nOptions: (A) 13 gallons (B) 13 fluid ounces (C) 13 cups\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a kitchen sink is 13 gallons.\\n13 fluid ounces and 13 cups are both too little. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1165\",\n    \"image\": \"1165\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Massachusetts?\\nContext: N/A\\nOptions: (A) Dover (B) Boston (C) Salem (D) Augusta\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boston is the capital of Massachusetts. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1174\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nclover - cry\\nContext: N/A\\nOptions: (A) come (B) cap\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince come is between the guide words clover - cry, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1179\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word nauseous in its traditional sense?\\nContext: N/A\\nOptions: (A) Tisha's little brother looked a little nauseous after eating mounds of candy and then going on the dizzying rides at the state fair. (B) Tisha's little brother looked a little sick after eating mounds of candy and then going on the nauseous rides at the state fair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses nauseous in its traditional sense: causing disgust or nausea.\\nTisha's little brother looked a little sick after eating mounds of candy and then going on the nauseous rides at the state fair.\\nThe first text uses nauseous in its nontraditional sense: feeling disgusted or nauseated.\\nTisha's little brother looked a little nauseous after eating mounds of candy and then going on the dizzying rides at the state fair.\\nMost style guides recommend to use the traditional sense of the word nauseous because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1203\",\n    \"image\": \"1203\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the Morelet's crocodile's scientific name?\\nContext: The Morelet's crocodile lives in South America. Its scientific name refers to P. M. A. Morelet, the French naturalist who first identified the crocodile in 1850. A naturalist is a scientist who observes and studies organisms in their environments.\\nOptions: (A) Crocodylus moreletii (B) Crocodylus anthropophagus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When a scientist identifies a new organism, he or she chooses its scientific name.\\nSometimes, an organism is named after the place where it was first found. Other times, an organism is named after the scientist who first identified it. Or, the scientific name might describe the organism's physical traits.\\nMany of the words that make up scientific names are based on words from old languages, like Latin and classical Greek. Sometimes, English words are changed to make them sound more like Latin or Greek. The new words are then used in an organism's scientific name. This organism's scientific name refers to P. M. A. Morelet.\\nThe word moreletii refers to P. M. A. Morelet. So, the Morelet's crocodile's scientific name is Crocodylus moreletii. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1206\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nIt's an open secret that Hunter is writing a book based on his experiences living in Singapore. He never talks about it, but almost all his friends know.\\nContext: N/A\\nOptions: (A) oxymoron (B) hyperbole\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nOpen secret is a contradiction, because open describes something that is freely or publicly known, and a secret is hidden. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1208\",\n    \"image\": \"1208\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this flower vase made of?\\nContext: N/A\\nOptions: (A) silk (B) glass\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials. Look at the picture of the flower vase.\\nThe flower vase is made of glass.\\nGlass is a clear, breakable material. If you knock over a glass flower vase, it might break. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1211\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Darren inherited this trait?\\nContext: Read the description of a trait.\\nDarren has freckles.\\nOptions: (A) Darren and his biological mother have pale skin. (B) Darren's biological parents have freckles on their noses just as Darren does. (C) Darren has freckles on his nose and shoulders.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1212\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Dr. Erickson and her team took horses and went to a place that had no modern medical services. (B) Dr. Erickson and her team traveled by horseback to a remote village that had no modern medical services.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses overly simple or imprecise language (took, went).\\nThe second sentence uses more precise language, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1221\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) birdwing butterfly (B) trapdoor spider (C) forest scorpion (D) wombat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. Like other spiders, a trapdoor spider is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA birdwing butterfly is an insect. Like other insects, a birdwing butterfly is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nLike other scorpions, a forest scorpion is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA wombat is a mammal. Like other mammals, a wombat is a vertebrate. It has a backbone. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1222\",\n    \"image\": \"1222\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1223\",\n    \"image\": \"1223\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Kansas?\\nContext: N/A\\nOptions: (A) Wichita (B) Pierre (C) Springfield (D) Topeka\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Topeka is the capital of Kansas. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1224\",\n    \"image\": \"1224\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) translucent (B) opaque (C) fragile\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA translucent object lets light through. But you cannot see clearly through a translucent object. None of the objects are translucent.\\nA fragile object will break into pieces if you drop it. None of the objects are fragile.\\nAn opaque object does not let light through. All three objects are opaque.\\nThe property that all three objects have in common is opaque. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1226\",\n    \"image\": \"1226\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Turner and Mona trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nTurner and Mona open their lunch boxes in the school cafeteria. Neither Turner nor Mona got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nTurner's lunch Mona's lunch\\nOptions: (A) Turner can trade his tomatoes for Mona's broccoli. (B) Turner can trade his tomatoes for Mona's carrots. (C) Mona can trade her broccoli for Turner's oranges. (D) Mona can trade her almonds for Turner's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nTurner wants broccoli. Mona wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1228\",\n    \"image\": \"1228\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) stretchy (B) transparent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nYou can see clearly through a transparent object. The fish bowl is transparent.\\nA stretchy object gets longer when you pull on it. The fish bowl is not stretchy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1231\",\n    \"image\": \"1231\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Tuvalu (B) Australia (C) New Zealand (D) Papua New Guinea\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Australia.\\nIs Australia a country or a continent?\\nBoth! Australia is a country in Oceania, a region made up of many lands and islands in the Pacific Ocean. Many people say that Australia is the world's smallest continent. But some people call Oceania a continent instead. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1232\",\n    \"image\": \"1232\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample A (C) sample B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1234\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word slide on a dictionary page with the following guide words?\\nsatisfy - suggest\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince slide is between the guide words satisfy - suggest, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1237\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nbookcase - burden\\nContext: N/A\\nOptions: (A) beware (B) brilliant\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince brilliant is between the guide words bookcase - burden, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1244\",\n    \"image\": \"1244\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Blue Nile Falls.\\nBlue Nile Falls is in Ethiopia. The winds in this part of Africa usually blow from the southeast.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nBlue Nile Falls is in Ethiopia. The winds in this part of Africa usually blow from the southeast.\\nThe underlined part of the passage tells you about the usual wind patterns at Blue Nile Falls. This passage does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1247\",\n    \"image\": \"1247\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this egg carton made of?\\nContext: N/A\\nOptions: (A) wood (B) styrofoam\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials. Look at the picture of the egg carton.\\nThe egg carton is made of styrofoam.\\nNot all egg cartons are made of styrofoam. Some egg cartons are made of soft, gray cardboard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1251\",\n    \"image\": \"1251\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Florida?\\nContext: N/A\\nOptions: (A) Tampa (B) Little Rock (C) Laramie (D) Tallahassee\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Tallahassee is the capital of Florida. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1252\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear Uncle Jim, (B) dear Uncle Jim,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Uncle Jim is capitalized because it is a proper noun. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1253\",\n    \"image\": \"1253\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Kira's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nKira prepared ten buckets, each with one gallon of boiling water and three tablespoons of black fabric dye. Kira soaked white linen fabric squares in five of the buckets, and white cotton fabric squares in the other five buckets. All of the fabric squares were soaked for 15 minutes. After the fabric dried, Kira scored the darkness of the squares on a scale from light to dark. She compared the darkness of the linen fabric to the darkness of the cotton fabric.\\nFigure: fabric that has been dyed black.\\nOptions: (A) Does linen fabric turn darker than cotton fabric when soaked in a mixture of black dye and water? (B) Does fabric turn darker when soaked in a mixture of black dye and water for 15 minutes compared to 30 minutes?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1259\",\n    \"image\": \"1259\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) the Federated States of Micronesia (B) New Zealand (C) Tuvalu (D) Tonga\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Tuvalu. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1268\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a bottle of nail polish?\\nContext: Select the better estimate.\\nOptions: (A) 11 liters (B) 11 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a bottle of nail polish is 11 milliliters.\\n11 liters is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1269\",\n    \"image\": \"1269\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) shiny (B) fuzzy (C) blue\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. All three objects are shiny.\\nA fuzzy object is covered in soft hair. None of the objects are fuzzy.\\nBlue is a color.\\nThis color is blue. None of the objects are blue.\\nThe property that all three objects have in common is shiny. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1281\",\n    \"image\": \"1281\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Maryland (B) Virginia (C) Washington, D.C. (D) Rhode Island\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Maryland. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1282\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a cold glass of water?\\nContext: Select the better estimate.\\nOptions: (A) 3\\u00b0C (B) 3\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a cold glass of water is 3\\u00b0C.\\n3\\u00b0F is too cold. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1286\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na piece of pizza rotting in a trashcan\\nburning a candle\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are only physical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA piece of pizza rotting is a chemical change. The matter in the pizza breaks down and slowly turns into a different type of matter.\\nBurning a candle is a chemical change. Both the wick and the melted wax burn. They react with oxygen in the air and turn into soot, carbon dioxide, and water.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBurning is caused by heating. But a piece of pizza rotting is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1289\",\n    \"image\": \"1289\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) Nebraska (B) Louisiana (C) Idaho (D) Arizona\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. Louisiana is farthest east. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1301\",\n    \"image\": \"1301\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) The Bahamas (B) Cuba (C) Jamaica (D) Haiti\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Cuba.\\nDoes Cuba have any territorial disputes?\\nCuba claims to own Guantanamo Bay Naval Base, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nThe United States controls the area and uses it as a military base and prison. A treaty in 1903 gave the U.S. the right to rent the land from Cuba. But today, Cuba says that it had no choice but to accept the treaty. It wants the United States to leave the area and does not accept the rent money sent by the United States each year. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1304\",\n    \"image\": \"1304\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month is the hottest on average in Rome?\\nContext: Use the graph to answer the question below.\\nOptions: (A) December, January, and February (B) July and August (C) March and April\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Temperature is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average temperature for each month. The average temperature can be used to describe the climate of a location.\\nA line graph can be used to show the average temperature each month. Months with higher dots on the graph have higher average temperatures. To describe the average temperature trends in Rome, look at the graph.\\nChoice \\\"Feb\\\" is incorrect.\\nChoice \\\"Mar\\\" is incorrect.\\nChoice \\\"Apr\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Aug\\\" is incorrect.\\nChoice \\\"Dec\\\" is incorrect.\\nChoice \\\"Jan\\\" is incorrect.\\nThe average temperatures in July and August are around 23\\u00b0C. These months have the highest average temperatures of all of the months. So, they are the hottest months on average. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1309\",\n    \"image\": \"1309\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New York (B) Rhode Island (C) North Carolina (D) New Jersey\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Rhode Island. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1314\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nThe makeup artist's devotion to his work has at times turned into a personal obsession with certain clients, leading some to call him a modern-day Pygmalion.\\nContext: N/A\\nOptions: (A) Greek mythology (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Pygmalion is Greek mythology.\\nIn Greek mythology, Pygmalion was a king who fell in love with his sculpture of an ideal woman. The statue then came to life in answer to his prayer.\\nThe allusion Pygmalion means a person who becomes overly invested in his or her creation. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1315\",\n    \"image\": \"1315\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's mouth is also adapted to tear through meat?\\nContext: Cougars are carnivores, or meat eaters. They eat mammals such as deer and rabbits. The 's mouth is adapted to tear through meat.\\nFigure: cougar.\\nOptions: (A) tiger (B) marmot\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the cougar.\\nThe cougar has a large mouth and sharp teeth. Its mouth is adapted to tear through meat. The cougar uses its large mouth to grab its prey. It uses its sharp teeth to cut up the meat of the prey into pieces it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe tiger has a large mouth and sharp teeth. Its mouth is adapted to tear through meat.\\nThe marmot has large front teeth. It does not have sharp teeth. So, its mouth is not adapted to tear through meat. The marmot uses its mouth to gnaw on plant matter. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1320\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Kenny acquired this trait?\\nContext: Read the description of a trait.\\nKenny has a scar on his right arm.\\nOptions: (A) Some scars fade more quickly than others. (B) Kenny's scar was caused by an accident. He cut his arm when he fell off his bicycle.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1326\",\n    \"image\": \"1326\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the water in a sink a solid or a liquid?\\nContext: N/A\\nOptions: (A) a liquid (B) a solid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid and liquid are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid. The water in a sink is a liquid. A liquid takes the shape of any container it is in.\\nIf you move the water from a sink into a different container, the water will take the shape of that container. But the water will still take up the same amount of space. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1338\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nDon't try to tell me that you only watch educational programming, Gina! I know for a fact that your sister only watches reality television.\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) guilt by association: a negative association intended to discredit someone or something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Gina must watch reality television, because her sister watches reality television. However, even though Gina's sister watches reality television, that doesn't necessarily mean that Gina does, too. This illustrates a type of logical fallacy known as guilt by association. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1339\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word literally in its traditional sense?\\nContext: N/A\\nOptions: (A) Mia adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally hundreds of years old. (B) Mia adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally a million years old.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses literally in its traditional sense: in a factual, non-exaggerated way.\\nMia adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally hundreds of years old.\\nThe first text uses literally in its nontraditional sense: nearly or in effect (often exaggerated). The bridge is old, but it is not actually a million years old.\\nMia adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally a million years old.\\nMost style guides recommend to avoid using the nontraditional sense of the word literally because it is generally considered incorrect. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1340\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nOver time, too much sun will harm your skin.\\nContext: N/A\\nOptions: (A) present tense (B) future tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, harm. The verb tells you about something that is going to happen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1355\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAt twenty-one, Ernesto felt overwhelmed with adult responsibilities and wished he could fly off to Neverland.\\nContext: N/A\\nOptions: (A) allusion (B) onomatopoeia\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses an allusion, a brief reference to someone or something well known.\\nNeverland alludes to the story of Peter Pan, a boy who lived in Neverland and never grew up. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1359\",\n    \"image\": \"1359\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maryland?\\nContext: N/A\\nOptions: (A) Juneau (B) Augusta (C) Annapolis (D) Providence\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Annapolis is the capital of Maryland. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1360\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nThe rise of video games has led to more computer science PhDs, as shown by the fact that the number of PhD degrees in computer science increased as video games became more popular.\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences (C) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that a rise in video games has increased the number of PhD degrees in computer science. However, this isn't necessarily true. There could be common explanation for both increases. For example, increased access to computers could be responsible for both the rise in video games and the increase in computer science PhDs. This illustrates a type of logical fallacy known as false causation. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1370\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a short story?\\nContext: N/A\\nOptions: (A) Pigs Is Pigs (B) \\\"Pigs Is Pigs\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A short story should be in quotation marks.\\nThe correct title is \\\"Pigs Is Pigs.\\\" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1378\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nJamie usually eats oatmeal for breakfast.\\nContext: N/A\\nOptions: (A) declarative (B) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence tells about something, and it ends with a period. It is a declarative sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1382\",\n    \"image\": \"1382\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Palau (B) Nauru (C) the Federated States of Micronesia (D) New Zealand\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Palau. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1387\",\n    \"image\": \"1387\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Utah?\\nContext: N/A\\nOptions: (A) Helena (B) Albany (C) Salt Lake City (D) Provo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salt Lake City is the capital of Utah. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1389\",\n    \"image\": \"1389\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Jersey?\\nContext: N/A\\nOptions: (A) Newark (B) Montpelier (C) Jersey City (D) Trenton\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Trenton is the capital of New Jersey. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1392\",\n    \"image\": \"1392\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following organisms is the decomposer in this food web?\\nContext: Below is a food web from Little Rock Lake, a freshwater lake ecosystem in Wisconsin.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) green algae (B) water mold (C) golden algae\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Decomposers help break down dead organisms into simpler matter, such as nutrients. These nutrients can then help plants and other organisms grow. In a food web, there is an arrow pointing from another organism to a decomposer. There are no arrows pointing from a decomposer to another organism.\\nThe water mold does not have arrows pointing from it to other organisms. So, the water mold is a decomposer.\\nThe bacteria do not have arrows pointing from them to other organisms. So, the bacteria are decomposers.\\nThe green algae has arrows pointing from it. So, the green algae is not a decomposer.\\nThe golden algae has an arrow pointing from it. So, the golden algae is not a decomposer. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1395\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal.\\nContext: N/A\\nOptions: (A) Giant water lilies can grow big flowers. (B) Chameleons walk and climb.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A giant water lily is a plant. It can grow big flowers.\\nGiant water lilies grow in the Amazon river in South America.\\nA chameleon is an animal. It walks and climbs.\\nChameleons can grab onto branches with their tails. This helps chameleons walk between tree tops. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1396\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the reptile traits listed above.\\nContext: Reptiles are a group of animals with similar traits. The following traits can be used to identify reptiles:\\nThey have scaly, waterproof skin.\\nThey make eggs with shells. Observe the animals and read the descriptions.\\nOptions: (A) Common snapping turtles hatch from eggs with shells. They have powerful beaks. When a snapping turtle is threatened by a predator, it snaps its beak! Snapping turtles have scaly, waterproof skin. (B) Salmon lay eggs with no shells at the bottom of freshwater streams. Salmon use their powerful fins to swim. They can even jump up small waterfalls!\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nReptiles have the following traits:\\nThey have scaly, waterproof skin.\\nThey make eggs with shells.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA common snapping turtle has the following traits:\\nIt has scaly, waterproof skin.\\nIt makes eggs with shells.\\nA common snapping turtle has the traits of a reptile. A common snapping turtle is a reptile.\\nA salmon has the following traits:\\nIt has fins, not limbs.\\nIt makes eggs with no shells.\\nA salmon does not have all of the traits of a reptile. A salmon is a fish. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1400\",\n    \"image\": \"1400\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the North American beaver.\\nContext: This organism is a North American beaver. Its scientific name is Castor canadensis.\\nOptions: (A) Goura scheepmakeri (B) Castor fiber (C) Cervus canadensis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A North American beaver's scientific name is Castor canadensis. The first word of its scientific name is Castor.\\nCervus canadensis and Castor canadensis are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Cervus canadensis and Castor canadensis have the same species name within their genus, canadensis. But the first words of their scientific names are different. Cervus canadensis is in the genus Cervus, and Castor canadensis is in the genus Castor.\\nCastor fiber is in the genus Castor. The first word of its scientific name is Castor. So, Castor fiber and Castor canadensis are in the same genus.\\nGoura scheepmakeri is in the genus Goura. The first word of its scientific name is Goura. So, Goura scheepmakeri and Castor canadensis are not in the same genus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1411\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a hot day in the desert?\\nContext: Select the better estimate.\\nOptions: (A) 45\\u00b0F (B) 45\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a hot day in the desert is 45\\u00b0C.\\n45\\u00b0F is too cold. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1412\",\n    \"image\": \"1412\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged in the snow?\\nContext: Polar bears live in and around the cold Arctic Ocean. The is adapted to be camouflaged in the snow.\\nFigure: polar bear.\\nOptions: (A) Arctic hare (B) camel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the polar bear.\\nThe polar bear has white fur covering its body. It is adapted to be camouflaged in the snow. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nDuring the winter, the Arctic hare has white fur covering its body. It is adapted to be camouflaged in the snow.\\nThe camel has sand-colored fur covering its skin. It is not adapted to be camouflaged in the snow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1421\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Maureen inherited this trait?\\nContext: Read the description of a trait.\\nMaureen has wavy hair.\\nOptions: (A) Maureen's parents were born with wavy hair. They passed down this trait to Maureen. (B) Maureen and her mother both have short hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1431\",\n    \"image\": \"1431\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Indian Ocean (B) the Atlantic Ocean (C) the Pacific Ocean (D) the Southern Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Atlantic Ocean. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1445\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) see you soon,\\nRose (B) See you soon,\\nRose\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1454\",\n    \"image\": \"1454\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of relationship is formed when a bristle worm lives on a white sea urchin?\\nContext: Read the passage. Then answer the question.\\n\\nWhite sea urchins live in tropical oceans. Sea urchins are covered with hard, sharp spines. These spear-like spines protect the sea urchin from predators, such as fish. Sometimes a small worm, called a bristle worm, also uses the spines for protection.\\nThe worm lives on the sea urchin, between the spines. To attack a worm on the sea urchin's body, a fish would have to get past the spines. When the worm lives on the sea urchin, the worm does not change the sea urchin's ability to survive.\\nFigure: a white sea urchin in the ocean.\\nOptions: (A) mutualistic (B) commensal (C) parasitic\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When two organisms of different species interact in a way that affects one or both organisms, they form a symbiotic relationship. The word symbiosis comes from a Greek word that means living together. Scientists define types of symbiotic relationships based on how each organism is affected.\\nThis table lists three common types of symbiotic relationships. It shows how each organism is affected in each type of symbiotic relationship.\\nType of symbiotic relationship | Organism of one species... | Organism of the other species...\\nCommensal | benefits | is not significantly affected\\nMutualistic | benefits | benefits\\nParasitic | benefits | is harmed (but not usually killed) When a bristle worm lives on a white sea urchin, the worm is protected from predators by the sea urchin's sharp spines. So, the worm benefits from its relationship with the sea urchin.\\nThe sea urchin's ability to survive does not change when a worm lives on it. So, the sea urchin is not significantly affected by its relationship with the worm.\\nSince the worm benefits and the sea urchin is not significantly affected, a commensal relationship is formed when a bristle worm lives on a white sea urchin. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1463\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Two baked potatoes have the same temperature but different masses. Which potato has more thermal energy?\\nContext: The objects are made of the same type of matter.\\nOptions: (A) the baked potato with more mass (B) the baked potato with less mass\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two baked potatoes have the same temperature and are made of the same type of matter. So, the baked potato with more mass has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1468\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\n\\\"That fits you well,\\\" Tamir remarked after Kinsley's cap fell over her eyes for the tenth time.\\nContext: N/A\\nOptions: (A) The cap was a good fit. (B) The cap was too big.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nFits you well ironically suggests that the cap was too big. The cap was falling over Kinsley's eyes, so it didn't fit her well at all. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1469\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a hammer?\\nContext: Select the better estimate.\\nOptions: (A) 25 centimeters (B) 25 meters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a hammer is 25 centimeters.\\n25 meters is too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1473\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) According to Rebecca, Willie Mays hit 660 career home runs, although Joe DiMaggio had a higher batting average. She said that he is her favorite player. (B) According to Rebecca, Willie Mays hit 660 career home runs, although Joe DiMaggio had a higher batting average. She said that Mays is her favorite player.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun he could refer to Joe Di Maggio or Willie Mays.\\nThe first answer choice shows a possible correction for the vague pronoun reference. He has been replaced with Mays.\\nAccording to Rebecca, Willie Mays hit 660 career home runs, although Joe DiMaggio had a higher batting average. She said that Mays is her favorite player. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1477\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a rock.\\nContext: N/A\\nOptions: (A) Granodiorite is not made by living things. It is a solid. (B) A brick is made in a factory. It is not a pure substance. (C) Limestone is formed in nature. It is not a pure substance.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rocks are made of minerals. Here are some properties of rocks:\\nThey are solid.\\nThey are formed in nature.\\nThey are not made by living things.\\nThey are not pure substances. Compare the properties of each substance to the properties of rocks. Select the substance whose properties do not match those of rocks.\\nGranodiorite is a rock.\\nA brick is made in a factory. But all rocks are formed in nature.\\nSo, a brick is not a rock.\\nLimestone is a rock. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1491\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Ryan acquired this trait?\\nContext: Read the description of a trait.\\nRyan knows how to knit sweaters.\\nOptions: (A) Ryan knits sweaters using cotton, wool, and other types of yarn. (B) Ryan learned how to knit in an after school program.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1501\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) Listened to soft music alone in his room. (B) He won't get lost I will give him directions.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. He won't get lost I will give him directions is a run-on sentence. It has two sentences that are joined without end punctuation: He won't get lost and I will give him directions. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1503\",\n    \"image\": \"1503\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) rough (B) yellow (C) sticky\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA rough object feels scratchy when you touch it. The rain boots and the rubber duck are not rough.\\nA sticky object can attach or stick to other things. The rain boots and the rubber duck are not sticky.\\nYellow is a color.\\nThis color is yellow. All three objects are yellow.\\nThe property that all three objects have in common is yellow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1514\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nJen has a scar on her left knee.\\nContext: Hint: Most scars are caused by accidents during a person's life.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1515\",\n    \"image\": \"1515\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) Georgia (B) Delaware (C) North Dakota (D) Colorado\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. Delaware is farthest east. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1518\",\n    \"image\": \"1518\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's scientific name?\\nContext: This organism is a great white shark. It is also called Carcharodon carcharias.\\nOptions: (A) Carcharodon carcharias (B) great white shark\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Carcharodon carcharias is written in italics. The first word is capitalized, and the second word is not.\\nSo, Carcharodon carcharias is the scientific name. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1526\",\n    \"image\": \"1526\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month is the wettest on average in Christchurch?\\nContext: Use the graph to answer the question below.\\nOptions: (A) August (B) April (C) May\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Christchurch, look at the graph.\\nChoice \\\"Apr\\\" is incorrect.\\nChoice \\\"May\\\" is incorrect.\\nChoice \\\"Aug\\\" is incorrect.\\nMay has an average monthly precipitation of about 70 millimeters. This is higher than in any other month. So, May is the wettest month on average. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1529\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Warren inherited this trait?\\nContext: Read the description of a trait.\\nWarren has blond hair.\\nOptions: (A) Warren's parents have blond hair. They passed down this trait to Warren. (B) Warren's mother cuts his hair every month.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1531\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which mug of cider has a lower temperature?\\nContext: Two 150-gram mugs of cider are identical except for their thermal energies.\\nOptions: (A) the mug of cider with less thermal energy (B) the mug of cider with more thermal energy\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two mugs of cider are made of the same material and have the same mass. So, the mug of cider with less thermal energy has a lower temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1532\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the reptile.\\nContext: N/A\\nOptions: (A) great white shark (B) olive toad (C) American alligator (D) western gorilla\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Reptiles have scaly, waterproof skin. Most reptiles live on land. An olive toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole.\\nA great white shark is a fish. It lives underwater. It has fins, not limbs.\\nGreat white sharks can live for up to 70 years.\\nA western gorilla is a mammal. It has fur and feeds its young milk.\\nGorillas live in groups called troops. The largest male in the troop is usually the leader.\\nAn American alligator is a reptile. It has scaly, waterproof skin.\\nAlligators live in and around water. They can live near ponds, rivers, marshes, and lakes. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1533\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Answer the riddle.\\nI am an animal.\\nI live with people.\\nYou have to feed me.\\nWhat am I?\\nContext: N/A\\nOptions: (A) a pet (B) a plant\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A pet is an animal.\\nA pet lives with people.\\nYou have to feed a pet. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1540\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMs. Thompson has suggested that our schools let students take statistics instead of algebra to graduate. Frankly, it is puzzling to me that she thinks algebra is a useless subject.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) guilt by association: a negative association intended to discredit someone or something (C) straw man: a misrepresentation of an opponent's position that makes it easier to argue against\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Ms. Thompson thinks algebra is useless because she would let students take statistics instead. However, Ms. Thompson only claimed that students should be allowed to take statistics instead of algebra. She did not suggest that algebra is a useless subject. This illustrates a type of logical fallacy known as a straw man. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1550\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nShawna has a scar on her left knee.\\nContext: Hint: Most scars are caused by accidents during a person's life.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1551\",\n    \"image\": \"1551\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1558\",\n    \"image\": \"1558\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Southern Ocean (B) the Pacific Ocean (C) the Atlantic Ocean (D) the Indian Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Southern Ocean.\\nThe Southern Ocean reaches from the shores of Antarctica to 60\\u00b0 South latitude. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1569\",\n    \"image\": \"1569\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Olympia (B) Denver (C) Carson City (D) Louisville\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1571\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a sentence fragment?\\nWe called a taxi for Mr. McClure. Whose car was towed from the no-parking zone in front of the firehouse.\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA sentence fragment is a group of words that does not express a complete thought.\\nRehearsing daily because we have a concert in two weeks.\\nThis fragment is missing a subject. It doesn't tell who is rehearsing.\\nThe band I'm in.\\nThis fragment is missing a verb. It doesn't tell what the band I'm in is doing.\\nBecause we have a concert in two weeks.\\nThis fragment is missing an independent clause. It doesn't tell what happened because of the concert. There is a sentence fragment that does not express a complete thought.\\nWe called a taxi for Mr. McClure. Whose car was towed from the no-parking zone in front of the firehouse.\\nHere is one way to fix the sentence fragment:\\nWe called a taxi for Mr. McClure, whose car was towed from the no-parking zone in front of the firehouse. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1572\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) see you soon,\\nJack (B) See you soon,\\nJack\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1582\",\n    \"image\": \"1582\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) the Marshall Islands (C) New Zealand (D) Papua New Guinea\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is New Zealand. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1584\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word disinterested in its traditional sense?\\nContext: N/A\\nOptions: (A) As a teacher of American history, Mr. Gordon tries to remain disinterested when discussing controversial issues, giving equal attention and consideration to each major viewpoint. (B) As an experienced teacher of American history, Mr. Gordon believes that playing history-based trivia games will revive even the most disinterested of students.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses disinterested in its traditional sense: unbiased or impartial.\\nAs a teacher of American history, Mr. Gordon tries to remain disinterested when discussing controversial issues, giving equal attention and consideration to each major viewpoint.\\nThe second text uses disinterested in its nontraditional sense: uninterested or indifferent.\\nAs an experienced teacher of American history, Mr. Gordon believes that playing history-based trivia games will revive even the most disinterested of students.\\nMost style guides recommend to use the traditional sense of the word disinterested because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1586\",\n    \"image\": \"1586\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Missouri (B) Michigan (C) Maine (D) Oregon\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. Missouri is farthest south. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1590\",\n    \"image\": \"1590\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) Miami (B) Atlanta (C) Nashville (D) Oklahoma City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is Atlanta, Georgia. Oklahoma City, Nashville, and Miami are marked with gray circles on the map below. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1592\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the metaphor in this text suggest?\\nWhen Zeke lost his job, he was devastated. The only light in the sea of darkness was the prospect of pursuing a new career.\\nContext: N/A\\nOptions: (A) Zeke felt in the dark about what to do after losing his job. (B) There was a benefit to Zeke's job loss.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town. The text uses a metaphor, comparing two things that are not actually alike without using like or as.\\nThe metaphor the only light in the sea of darkness was the prospect of pursuing a new career suggests that there was a benefit to Zeke's job loss. A light would be beneficial in helping someone escape a dark, difficult-to-navigate situation. Similarly, Zeke's new career was beneficial in helping him escape the emotionally difficult experience of losing his job. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1598\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that John inherited this trait?\\nContext: Read the description of a trait.\\nJohn has hazel eyes.\\nOptions: (A) John wears glasses and so do his sisters. (B) John's friend also has hazel eyes. (C) John's biological father wears contacts in his hazel eyes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1605\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a poem?\\nContext: N/A\\nOptions: (A) \\\"The Mountain and the Squirrel\\\" (B) The Mountain and the Squirrel\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A poem should be in quotation marks.\\nThe correct title is \\\"The Mountain and the Squirrel.\\\" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1606\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word beauty on a dictionary page with the following guide words?\\nblame - bunk\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince beauty is not between the guide words blame - bunk, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1608\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) Vocal cords in your throat help you make sounds. (B) Jasper won the school costume contest, his mom felt proud.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Jasper won the school costume contest, his mom felt proud is a run-on sentence. It has two sentences that are joined by just a comma: Jasper won the school costume contest and His mom felt proud. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1612\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nslate - strong\\nContext: N/A\\nOptions: (A) smile (B) shred\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince smile is between the guide words slate - strong, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1615\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which organ takes in oxygen from the air?\\nContext: N/A\\nOptions: (A) skeleton (B) heart (C) brain (D) lungs\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1618\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) With love,\\nKevin (B) with love,\\nKevin\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1621\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbaking cookies\\nwater evaporating from a puddle\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are caused by heating. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBaking cookies is a chemical change. Cookies are made from cookie dough. Baking turns the cookie dough into cookies. The cookies are a different type of matter than the dough.\\nWater evaporating from a puddle is a change of state. So, it is a physical change. The liquid changes into a gas, but a different type of matter is not formed.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nWater evaporating is a physical change. But baking cookies is not.\\nBoth are chemical changes.\\nBaking cookies is a chemical change. But water evaporating from a puddle is not.\\nBoth are caused by heating.\\nBoth changes are caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1626\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of an ear of corn?\\nContext: Select the best estimate.\\nOptions: (A) 12 pounds (B) 12 tons (C) 12 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of an ear of corn is 12 ounces.\\n12 pounds and 12 tons are both too heavy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1628\",\n    \"image\": \"1628\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food web, which organism contains matter that eventually moves to the bat star?\\nContext: Below is a food web from an ocean ecosystem in Monterey Bay, off the coast of California.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) sea cucumber (B) sea otter (C) phytoplankton\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows to the bat star.There are four paths matter can take from the phytoplankton to the bat star: phytoplankton->zooplankton->kelp bass->bat star. phytoplankton->zooplankton->plainfin midshipman->kelp bass->bat star. phytoplankton->zooplankton->black rockfish->kelp bass->bat star. phytoplankton->plainfin midshipman->kelp bass->bat star. There are three paths matter can take from the zooplankton to the bat star: zooplankton->kelp bass->bat star. zooplankton->plainfin midshipman->kelp bass->bat star. zooplankton->black rockfish->kelp bass->bat star. sea otter. The only arrow pointing from the sea otter leads to the orca. The only arrow pointing from the orca leads to the sea cucumber. No arrows point from the sea cucumber to any other organisms. So, in this food web, matter does not move from the sea otter to the bat star.. sea cucumber. No arrows point from the sea cucumber to any other organisms. So, in this food web, matter does not move from the sea cucumber to the bat star.. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1632\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word other on a dictionary page with the following guide words?\\noccur - oil\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince other is not between the guide words occur - oil, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1633\",\n    \"image\": \"1633\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Dakota's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nDakota planted 25 tomato seeds one-half inch below the soil surface in each of six pots. Dakota added an equal amount of fertilizer to three of the six pots. She placed the pots in a plant growth chamber where all the seeds experienced the same temperature, amount of light, and humidity level. After two weeks, Dakota counted the number of seedlings that grew in each pot. She compared the number of seedlings in the pots with fertilizer to the number of seedlings in the pots without fertilizer.\\nFigure: tomato seedlings growing in soil.\\nOptions: (A) Do more tomato seedlings grow when they are planted in soil with fertilizer compared to soil without fertilizer? (B) Does the humidity level where tomato seeds are planted affect the number of tomato seedlings that grow?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1637\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nHanson's leaving his job? That's old news. He's been planning that for months.\\nContext: N/A\\nOptions: (A) euphemism (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nOld news is a contradiction, because news is recent information. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1640\",\n    \"image\": \"1640\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of California?\\nContext: N/A\\nOptions: (A) Sacramento (B) Reno (C) Los Angeles (D) San Francisco\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sacramento is the capital of California. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1650\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nSince Laura Ellis became vice president of the parent-teacher association, student performance has declined and teacher morale is down. We on the school board believe that Ellis bears sole responsibility for the downtrend.\\nContext: N/A\\nOptions: (A) red herring: the use of a completely unrelated topic or idea (B) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Laura Ellis is responsible for the decline in student performance and teacher morale. However, even though things declined after Ellis became vice president of the parent-teacher association, that doesn't necessarily mean that she caused the downturn. This illustrates a type of logical fallacy known as false causation. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1654\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of an eraser?\\nContext: Select the best estimate.\\nOptions: (A) 2 tons (B) 2 ounces (C) 2 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of an eraser is 2 ounces.\\n2 pounds and 2 tons are both too heavy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1669\",\n    \"image\": \"1669\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) Africa (C) South America (D) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is South America. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1672\",\n    \"image\": \"1672\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Harry's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nHarry put one two-inch steel nail into each of six test tubes. He added water to three of the test tubes and vinegar to the other three. In each test tube, he completely covered the nail with the same volume of liquid. Harry checked the nails for rust at the same time every day. He recorded how many days it took each nail to become completely covered in rust. Then, he compared the number of days it took nails to rust in water to the number of days it took nails to rust in vinegar.\\nFigure: a new steel nail on a pile of rusty nails.\\nOptions: (A) Do steel nails take fewer days to rust in water compared to vinegar? (B) Do steel nails rust in fewer days when submerged in a large volume of liquid compared to a small volume?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1674\",\n    \"image\": \"1674\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nOf the four smallest planets, two are made mainly of gas.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\n To decide which four planets are the smallest, look at the volumes and compare the exponents. The volumes of Mercury, Venus, Earth, and Mars have the smallest exponents. So, these four planets are the smallest.\\nThese four planets are made mainly of rock. So, of the four smallest planets, none are made mainly of gas. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1696\",\n    \"image\": \"1696\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Denver (B) Concord (C) Columbia (D) Charlotte\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1702\",\n    \"image\": \"1702\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes and shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1703\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nerosion caused by wind\\nice melting in a cup\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are caused by heating. (C) Both are chemical changes. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nErosion caused by wind is a physical change. The wind carries away tiny pieces of rock. But the pieces of rock do not become a different type of matter.\\nIce melting in a cup is a change of state. So, it is a physical change. The solid ice becomes liquid, but it is still made of water.\\nThe links between atoms in the water molecules do not change. So, a different type of matter is not formed.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nIce melting is caused by heating. But erosion caused by wind is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1708\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nScarlett has a lot on her plate: she is attending college, has a full-time job as a waitress, and volunteers at the animal shelter.\\nContext: N/A\\nOptions: (A) Scarlett has many responsibilities. (B) Scarlett has worked up an appetite.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom a lot on her plate suggests that Scarlett has many responsibilities. If you have a lot on your plate, you are busy with many different obligations. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1714\",\n    \"image\": \"1714\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with a normal-sized body to offspring with a dwarf body? Choose the most likely ratio.\\nContext: In a group of rats, some individuals have a normal-sized body and others have a dwarf body. In this group, the gene for the body size trait has two alleles. The allele for a dwarf body (b) is recessive to the allele for a normal-sized body (B).\\nThis Punnett square shows a cross between two rats.\\nOptions: (A) 1:3 (B) 4:0 (C) 0:4 (D) 2:2 (E) 3:1\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with a normal-sized body or a dwarf body, consider whether each phenotype is the dominant or recessive allele's version of the body size trait. The question tells you that the b allele, which is for a dwarf body, is recessive to the B allele, which is for a normal-sized body.\\nA normal-sized body is the dominant allele's version of the body size trait. A rat with the dominant version of the body size trait must have at least one dominant allele for the body size gene. So, offspring with a normal-sized body must have the genotype BB or Bb.\\nAll 4 boxes in the Punnett square have the genotype BB or Bb.\\nA dwarf body is the recessive allele's version of the body size trait. A rat with the recessive version of the body size trait must have only recessive alleles for the body size gene. So, offspring with a dwarf body must have the genotype bb.\\nThere are 0 boxes in the Punnett square with the genotype bb.\\nSo, the expected ratio of offspring with a normal-sized body to offspring with a dwarf body is 4:0. This means that, based on the Punnett square, this cross will always produce offspring with a normal-sized body. This cross is expected to never produce offspring with a dwarf body. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1717\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of an apple?\\nContext: Select the better estimate.\\nOptions: (A) 100 grams (B) 100 kilograms\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of an apple is 100 grams.\\n100 kilograms is too heavy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1719\",\n    \"image\": \"1719\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs.\\nFish are cold-blooded. The body temperature of cold-blooded animals depends on their environment.\\nA Banggai cardinalfish is an example of a fish.\\nOptions: (A) water buffalo (B) poison dart frog (C) great white shark (D) penguin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A penguin is a bird. It has feathers, two wings, and a beak.\\nPenguins live near water. Penguins cannot fly! They use their wings to swim.\\nA water buffalo is a mammal. It has hair and feeds its young milk.\\nWater buffaloes live in Asia. Some people raise water buffaloes for their milk.\\nA great white shark is a fish. It lives underwater. It has fins, not limbs.\\nGreat white sharks can live for up to 70 years.\\nA poison dart frog is an amphibian. It has moist skin and begins its life in water.\\nPoison dart frogs come in many bright colors. Their bright color warns other animals that these frogs are poisonous. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1721\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has less thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 120-gram bottle of water at a temperature of 10\\u00b0C (B) a 120-gram bottle of water at a temperature of 20\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. The two bottles of water have the same mass but different temperatures. Since the 10\\u00b0C bottle of water is colder than the 20\\u00b0C bottle of water, it has less thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1723\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the metaphor in this text suggest?\\nWhen Alvin lost his job, he was devastated. The only light in the sea of darkness was the prospect of pursuing a new career.\\nContext: N/A\\nOptions: (A) There was a benefit to Alvin's job loss. (B) Alvin felt in the dark about what to do after losing his job.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town. The text uses a metaphor, comparing two things that are not actually alike without using like or as.\\nThe metaphor the only light in the sea of darkness was the prospect of pursuing a new career suggests that there was a benefit to Alvin's job loss. A light would be beneficial in helping someone escape a dark, difficult-to-navigate situation. Similarly, Alvin's new career was beneficial in helping him escape the emotionally difficult experience of losing his job. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1729\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nHunter invited Stacy to his house.\\nContext: N/A\\nOptions: (A) past tense (B) present tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in past tense. You can tell because it uses a past-tense verb, invited. The verb ends in -ed and tells you about something that has already happened. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1738\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Emma took the memory card out of the digital camera and put it in her desk drawer. (B) Emma took the memory card out of the digital camera and put the card in her desk drawer.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun it could refer to the memory card or the digital camera.\\nThe second answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the card.\\nEmma took the memory card out of the digital camera and put the card in her desk drawer. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1752\",\n    \"image\": \"1752\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Clara and Harry trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nClara and Harry open their lunch boxes in the school cafeteria. Neither Clara nor Harry got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nClara's lunch Harry's lunch\\nOptions: (A) Harry can trade his almonds for Clara's tomatoes. (B) Clara can trade her tomatoes for Harry's carrots. (C) Harry can trade his broccoli for Clara's oranges. (D) Clara can trade her tomatoes for Harry's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nClara wants broccoli. Harry wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1757\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nSandeep dropped out of college to travel the world, but a year later, the prodigal son returned home and re-enrolled.\\nContext: N/A\\nOptions: (A) Greek mythology (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion prodigal son is the Bible.\\nIn a Biblical parable, the prodigal son irresponsibly spends the inheritance given to him by his father. When he returns home, he expects to be shamed, but his father forgives him.\\nThe allusion prodigal son means a person who behaves recklessly but later makes a repentant return. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1760\",\n    \"image\": \"1760\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) sour (B) stretchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA lemon has a sour taste. Both objects are sour.\\nA stretchy object gets longer when you pull on it. Neither of the objects are stretchy.\\nThe property that both objects have in common is sour. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1762\",\n    \"image\": \"1762\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) North Carolina (B) Mississippi (C) New York (D) Massachusetts\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New York.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1765\",\n    \"image\": \"1765\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Massachusetts (B) Virginia (C) Georgia (D) New Hampshire\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Virginia.\\nThe Virginia Colony included land that would later become part of the state of West Virginia. West Virginia was never its own colony. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1769\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nMaya needs a new pair of shoes.\\nContext: N/A\\nOptions: (A) future tense (B) present tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, needs. The verb ends in -s and tells you about something that is true or happening now. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1773\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nSusan has a scar on her right hand.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1774\",\n    \"image\": \"1774\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Charlotte's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nCharlotte was designing small aircraft called drones to pick up items from warehouse shelves. She knew that the drones' propeller blades would get damaged if they bumped into anything while flying through the warehouse. So, Charlotte wanted to add blade guards to protect the propeller blades. The guards had to be sturdy so they would not break in a crash. But she thought that if the guards weighed too much, the drones would not fly well.\\nSo, Charlotte put guards made of lightweight metal on one drone. Then she observed how well the drone flew with the guards.\\nFigure: a drone without blade guards.\\nOptions: (A) if the blade guards would break in a crash (B) if adding the blade guards made the drone fly poorly (C) how much the drone weighed with the blade guards\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1779\",\n    \"image\": \"1779\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1784\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na piece of pear turning brown\\nacid rain weathering a marble statue\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by cooling. (C) Both are only physical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA piece of a pear turning brown is a chemical change. The substances in the pear react with oxygen in the air and turn into a different type of matter.\\nIf you scrape off the brown part of the pear, the inside will still be white. The inside hasn't touched the air. So the chemical change hasn't happened to that part of the pear.\\nAcid rain weathering a marble statue is a chemical change. The acid rain reacts with the outside of the statue and breaks it down into a different type of matter. This new matter is then washed away by the rain. Acid rain is a type of pollution. It forms when smoke from automobiles and factories mixes with water in clouds.\\nAcid rain is a type of pollution. It forms when automobiles and factories release smoke containing sulfur or nitrogen. Some of these chemicals react with water in the atmosphere. The reaction forms droplets of water that can fall back to the ground as acid rain.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1803\",\n    \"image\": \"1803\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 2. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is stronger in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 1 are closer together than the magnets in Pair 2. So, the magnetic force is stronger in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1816\",\n    \"image\": \"1816\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following organisms is the omnivore in this food web?\\nContext: Below is a food web from Shenandoah National Park, a forest ecosystem in Virginia.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) black racer (B) gray fox (C) silver maple (D) black bear\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Omnivores are consumers that eat both producers and other consumers. So, an omnivore has arrows pointing to it from at least one producer and at least one consumer.\\nThe black bear has an arrow pointing to it from the persimmon tree, which is a producer. The black bear also has arrows pointing to it from the swallowtail caterpillar and the beaver, which are consumers. The black bear eats a producer and consumers, so it is an omnivore.\\nThe gray fox has two arrows pointing to it. These arrows start from the swallowtail caterpillar and the pine vole, which are both consumers. So, the gray fox is a consumer but not an omnivore.\\nThe pine vole has an arrow pointing to it from the persimmon tree, which is a producer. The pine vole also has an arrow pointing to it from the swallowtail caterpillar, which is a consumer. The pine vole eats a producer and a consumer, so it is an omnivore.\\nThe silver maple does not have any arrows pointing to it. So, the silver maple is not an omnivore.\\nThe black racer has only one arrow pointing to it. This arrow starts from the pine vole, which is a consumer. So, the black racer is a consumer but not an omnivore. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1829\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAfter a parrotfish eats algae-covered coral, the coral travels through the fish's digestive system, and then it is deposited in the reef as white coral sand.\\nContext: N/A\\nOptions: (A) compound (B) simple (C) compound-complex (D) complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound-complex. It is made up of two independent clauses and a dependent clause. The dependent clause begins with the subordinating conjunction after.\\nAfter a parrotfish eats algae-covered coral, the coral travels through the fish's digestive system, and then it is deposited in the reef as white coral sand. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1848\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nplants making food from sunlight, air, and water\\na penny tarnishing\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are chemical changes. (C) Both are only physical changes. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nPlants making food is a chemical change. Plants use energy from sunlight to change air and water into food. The food is sugar. Sugar is a different type of matter than air or water.\\nMetal turning less shiny over time is called tarnishing. A penny tarnishing is a chemical change. When air touches the penny, the surface of the penny changes into a different type of matter. This matter makes the penny dull.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1857\",\n    \"image\": \"1857\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) opaque (B) fragile (C) smooth\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nAn opaque object does not let light through. All four objects are opaque.\\nA fragile object will break into pieces if you drop it. The ceramic mug is fragile, but the rock and the binder are not.\\nA smooth object is not scratchy or rough. The ceramic mug is smooth, but the rock are not.\\nThe property that all four objects have in common is opaque. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1874\",\n    \"image\": \"1874\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 1. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is smaller when there is a greater distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a greater distance between magnets, the magnitude of the magnetic force between them is smaller.\\nThere is a greater distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is smaller in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1878\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the mango's motion?\\nContext: A juicy mango is hanging motionless from a branch.\\nOptions: (A) The mango has a constant velocity. (B) The mango is accelerating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's velocity describes its speed and its direction.\\nAn object has a constant velocity when neither its speed nor its direction is changing. So, an object has a constant velocity when the object is:\\nmoving in a straight line at a constant speed, or\\nremaining motionless.\\nIf an object does not have a constant velocity, the object is accelerating. An object is accelerating when either its speed or its direction is changing. So, an object is accelerating when the object is:\\nspeeding up,\\nslowing down, or\\nchanging direction. The mango is remaining motionless. So, the mango has a constant velocity. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1879\",\n    \"image\": \"1879\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Reid and Daniel trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nReid and Daniel open their lunch boxes in the school cafeteria. Neither Reid nor Daniel got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nReid's lunch Daniel's lunch\\nOptions: (A) Reid can trade his tomatoes for Daniel's carrots. (B) Daniel can trade his broccoli for Reid's oranges. (C) Reid can trade his tomatoes for Daniel's broccoli. (D) Daniel can trade his almonds for Reid's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nReid wants broccoli. Daniel wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1883\",\n    \"image\": \"1883\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) flexible (B) fragile\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA fragile object will break into pieces if you drop it. The ceramic mug is fragile.\\nA flexible object can be folded or bent without breaking easily. The ceramic mug is not flexible. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1888\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nSince Hampton College receives more applications for admission than Greenpoint University, Hampton College is evidently a better school.\\nContext: N/A\\nOptions: (A) hasty generalization: a broad claim based on too few observations (B) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences (C) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Hampton College is better than Greenpoint University because Hampton College receives more applications. However, the popularity of a school does not necessarily indicate its quality. This illustrates a type of logical fallacy known as the bandwagon fallacy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1891\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a sentence fragment?\\nContext: N/A\\nOptions: (A) Our cabin has bunk beds for the kids. (B) Circles the date on her wall calendar.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Circles the date on her wall calendar is a sentence fragment. It is missing a subject. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1894\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a human front tooth?\\nContext: Select the best estimate.\\nOptions: (A) 14 meters (B) 14 millimeters (C) 14 kilometers (D) 14 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a human front tooth is 14 millimeters.\\n14 centimeters, 14 meters, and 14 kilometers are all too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1907\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nEmmy is good at knitting hats.\\nContext: Hint: People who can knit had to learn how to do it.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to knit. Instead, many people learn how to knit. Knitting well takes practice. So, knitting well is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1908\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to Newton's third law, what other force must be happening?\\nContext: Isaac Newton was born in the 1600s and studied how objects move. He discovered three fundamental laws about forces and motion. According to Newton's third law, for every force, there is an equal and opposite force.\\nConsider the following force:\\nNicole's foot is pushing on her car's gas pedal.\\nOptions: (A) The gas pedal is pulling on Nicole's foot. (B) The gas pedal is pushing on Nicole's foot.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to Newton's third law, for every force, there is an equal and opposite force. This means that if one object is applying a force on a second object, the second object must also be applying a force on the first object, but in the opposite direction.\\nFor example, if your hand is pushing down on a table, the table is also pushing up on your hand. Or, if you are pulling forward on a rope, the rope is also pulling back on you. Nicole's foot is pushing on the gas pedal. So, Newton's third law tells you that the gas pedal is pushing on Nicole's foot. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1914\",\n    \"image\": \"1914\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Jeanette's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nJeanette built an electric circuit: she used wires to connect a battery to a light bulb, the light bulb to a small piece of copper, and the copper back to the battery. When the circuit was complete, the light turned on. Jeanette observed the brightness of the light for five seconds. She then replaced the copper with a piece of iron of equal size and noted whether the light became brighter or dimmer. Jeanette built three more of the same type of circuit. She repeated the tests with each circuit. Jeanette recorded whether the circuits produced brighter light when the circuit included copper or when the circuit included iron.\\nFigure: a circuit with a battery, a light bulb, and a piece of copper.\\nOptions: (A) Do circuits that include iron produce dimmer light than circuits that include copper? (B) Can light bulbs stay lit longer when circuits include copper or when circuits include iron?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1916\",\n    \"image\": \"1916\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) sour (B) blue\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nBlue is a color.\\nThis color is blue. Neither of the objects are blue.\\nA lemon has a sour taste. Both objects are sour.\\nThe property that both objects have in common is sour. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1921\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Minnie's phenotype for the whisker type trait?\\nContext: In a group of Syrian hamsters, some individuals have straight whiskers and others have curved whiskers. In this group, the gene for the whisker type trait has two alleles. The allele H is for straight whiskers, and the allele h is for curved whiskers.\\nMinnie, a Syrian hamster from this group, has straight whiskers. Minnie has two alleles for straight whiskers.\\nOptions: (A) HH (B) straight whiskers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Minnie's observable version of the whisker type trait is straight whiskers. So, Minnie's phenotype for the whisker type trait is straight whiskers. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1926\",\n    \"image\": \"1926\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Wanda and Ernest's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nWanda applied a thin layer of wax to the underside of her snowboard and rode the board straight down a hill. Then, she removed the wax and rode the snowboard straight down the hill again. She repeated the rides four more times, alternating whether she rode with a thin layer of wax on the board or not. Her friend Ernest timed each ride. Wanda and Ernest calculated the average time it took to slide straight down the hill on the snowboard with wax compared to the average time on the snowboard without wax.\\nFigure: snowboarding down a hill.\\nOptions: (A) Does Wanda's snowboard slide down a hill in less time when it has a thin layer of wax or a thick layer of wax? (B) Does Wanda's snowboard slide down a hill in less time when it has a layer of wax or when it does not have a layer of wax?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1936\",\n    \"image\": \"1936\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this pull?\\nContext: A sled dog team moves a sled across the snow. The team uses a force to pull the sled forward.\\nOptions: (A) away from the sled dog team (B) toward the sled dog team\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to another. Every force has a direction.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The dogs pull the sled. The direction of the pull is toward the sled dog team. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1939\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nI'm never setting foot in any seafood restaurant again. We just had a ridiculously overpriced dinner at Mateo's Seafood Hut, and I have no interest in repeating that experience.\\nContext: N/A\\nOptions: (A) hasty generalization: a very broad claim based on very little evidence (B) red herring: the use of a completely unrelated topic or idea\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that all seafood restaurants are overpriced. However, even though one seafood restaurant was overpriced, that doesn't necessarily mean that all seafood restaurants are overpriced. This illustrates a type of logical fallacy known as a hasty generalization. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1940\",\n    \"image\": \"1940\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Ohio (B) South Dakota (C) Nebraska (D) Indiana\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Indiana. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1941\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word wealthy on a dictionary page with the following guide words?\\nwand - what\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince wealthy is between the guide words wand - what, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1948\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nDuring last night's thunderstorm, a flurry of tiny hailstones danced across the roof of our house.\\nContext: N/A\\nOptions: (A) compound-complex (B) compound (C) simple (D) complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is simple. It is a single independent clause.\\nDuring last night's thunderstorm, a flurry of tiny hailstones danced across the roof of our house. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1949\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Below are three examples of using energy from natural resources. Select the use of energy that did not add to air pollution.\\nContext: Humans have invented many ways to use energy from natural resources. Some of these uses of energy add to air pollution, and others do not.\\nHint: Burning a material such as wood, oil, or coal releases chemicals that add to air pollution.\\nOptions: (A) The engine on a garbage truck burned natural gas. (B) Many early railway locomotives had engines that burned coal. (C) Wind turned the blades of a windmill that was used to grind wheat into flour.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Humans have invented many ways to use natural resources. We use energy from natural resources in our daily activities, including cooking food, moving objects, and powering machines.\\nSome ways of using natural resources for energy add to air pollution, and others do not.\\nWood, oil, and coal are examples of natural resources that are fuels. Burning a fuel provides energy. But it also releases chemicals that can be harmful to our health and to the environment. These chemicals add to air pollution.\\nSunlight, wind, and water are natural resources that can provide energy. Using energy from the Sun, wind, or water does not burn material. These uses of energy do not release chemicals that add to air pollution. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1950\",\n    \"image\": \"1950\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nChristianity and () originated in the same region of the world.\\nContext: The following map shows where several major world religions originated, or began. Look at the map. Then complete the sentence below.\\nOptions: (A) Buddhism (B) Judaism (C) Yoruba (D) Hinduism\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the map.\\nThe markers representing Christianity and Judaism are close together, so they originated in the same region of the world. Both religions started in the Middle East. In fact, Christianity actually started as a form of Judaism!\\nThe other choices are not correct. Hinduism and Buddhism originated in present-day India, and Yoruba is an African religion that started near present-day Nigeria. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1951\",\n    \"image\": \"1951\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) North America (B) Europe (C) Australia (D) South America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is South America. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1952\",\n    \"image\": \"1952\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bird's beak is also adapted to crack large, hard nuts?\\nContext: Scarlet macaws live in the forests of Central and South America. They eat large seeds and nuts. The shape of the 's beak is adapted to crack open large, hard nuts.\\nFigure: scarlet macaw.\\nOptions: (A) African gray parrot (B) white-tipped sicklebill\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of a bird's beak is one example of an adaptation. Birds' beaks can be adapted in different ways. For example, a sharp hooked beak might help a bird tear through meat easily. A short, thick beak might help a bird break through a seed's hard shell. Birds that eat similar food often have similar beaks. Look at the picture of the scarlet macaw.\\nThe scarlet macaw has a thick hooked beak. Its beak is adapted to crack large, hard nuts. The scarlet macaw uses its thick beak to crack the shell of a nut by squeezing it. The hooked shape of the beak can help the bird hold the nut in place while cracking it.\\nNow look at each bird. Figure out which bird has a similar adaptation.\\nThe African gray parrot has a thick hooked beak. Its beak is adapted to crack large, hard nuts.\\nThe white-tipped sicklebill has a long, thin, curved beak. Its beak is not adapted to crack large, hard nuts. The white-tipped sicklebill uses its beak to drink nectar out of long flowers. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1955\",\n    \"image\": \"1955\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution A (B) neither; their concentrations are the same (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution B has more green particles per milliliter. So, Solution B has a higher concentration of green particles. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1974\",\n    \"image\": \"1974\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Maryland (B) New York (C) Illinois (D) Connecticut\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Maryland. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1976\",\n    \"image\": \"1976\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Jersey?\\nContext: N/A\\nOptions: (A) Augusta (B) Montpelier (C) Newark (D) Trenton\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Trenton is the capital of New Jersey. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1977\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a watering can?\\nContext: Select the best estimate.\\nOptions: (A) 24 cups (B) 24 fluid ounces (C) 24 gallons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a watering can is 24 cups.\\n24 fluid ounces is too little and 24 gallons is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1979\",\n    \"image\": \"1979\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Mexico?\\nContext: N/A\\nOptions: (A) Albuquerque (B) Santa Fe (C) Carson City (D) Lexington\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Santa Fe is the capital of New Mexico. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"1985\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The mom and dad push the strollers at the same speed. Which stroller is pushed with a larger force?\\nContext: A mom, a dad, and two kids are going for a walk. The mom and the dad each push one of the kids in a stroller. The strollers are the same. But the kids are different sizes.\\nOptions: (A) a stroller with kid that weighs 27 pounds (B) a stroller with kid that weighs 26 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull.\\nA force can make an object start moving or stop an object that is moving. A force can also make an object speed up, slow down, or change direction.\\nForces can be different sizes.\\nThink about trying to move a heavy object and a light object. Imagine you want to move them at the same speed. You will need to use a larger force to move the heavy object. Look for the stroller that is heavier.\\nA stroller holding a kid that weighs 27 pounds is heavier than a stroller holding a kid that weighs 26 pounds. So, the stroller holding the kid that weighs 27 pounds needs to be pushed with a larger force to start moving forward at the same speed as the other other stroller. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2005\",\n    \"image\": \"2005\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait did Palaeopython have? Select the trait you can observe on the fossil.\\nContext: This picture shows a fossil of an ancient animal called Palaeopython. Palaeopython lived in trees and could grow more than six feet long.\\nOptions: (A) black stripes on its skin (B) large fins on its body (C) a long, thin body\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The way an organism looks or acts is called a trait. Scientists use fossils to learn more about the traits of ancient organisms.\\nFossils can preserve the remains of body parts and activities. A fossil of a body part, such as a tail or a wing, can tell you what an organism looked like. A fossil of an organism's activities, such as a burrow or a footprint, can tell you about the organism's behavior.\\nHere are three examples of fossils and the traits that you can observe from them:\\nThis is a fossil of an animal. This fossil tells you that the animal had a spiral-shaped shell.\\nThis is a fossil of a plant. This fossil tells you that the plant had small leaves arranged in a branched pattern.\\nThis is a fossil of an animal's footprint. This fossil tells you that the animal could walk on land.\\nAn organism's fossil may not show all of the organism's traits. This is because most body parts are destroyed during fossil formation. When an organism's body turns into a fossil, only a few body parts are usually preserved. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2007\",\n    \"image\": \"2007\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is sphalerite a mineral?\\nContext: Sphalerite has the following properties:\\nnot made by living things\\nsolid\\npure substance\\nfound in nature\\nfixed crystal structure\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Sphalerite has all the properties of a mineral. So, sphalerite is a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2009\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the least thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 200-gram cup of black tea at a temperature of 187\\u00b0F (B) a 200-gram cup of black tea at a temperature of 154\\u00b0F (C) a 200-gram cup of black tea at a temperature of 172\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. All three cups of black tea have the same mass but different temperatures. Since the 154\\u00b0F cup of black tea is the coldest, it has the least thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2015\",\n    \"image\": \"2015\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the Eurasian beaver.\\nContext: This organism is a Eurasian beaver. Its scientific name is Castor fiber.\\nOptions: (A) Castor fiber (B) Ovis canadensis (C) Lontra canadensis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A Eurasian beaver's scientific name is Castor fiber.\\nOvis canadensis does not have the same scientific name as a Eurasian beaver. So, Castor fiber and Ovis canadensis are not in the same species.\\nLontra canadensis does not have the same scientific name as a Eurasian beaver. So, Castor fiber and Lontra canadensis are not in the same species.\\nCastor fiber has the same scientific name as a Eurasian beaver. So, these organisms are in the same species. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2018\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Mrs. Chapman informed her assistant that she had to book a flight to Seoul immediately. (B) Mrs. Chapman told her assistant to book a flight to Livingston immediately.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun she could refer to Mrs. Chapman or her assistant.\\nMrs. Chapman informed her assistant that she had to book a flight to Seoul immediately.\\nThe first answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nMrs. Chapman told her assistant to book a flight to Livingston immediately. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2028\",\n    \"image\": \"2028\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the snowy owl.\\nContext: This organism is a snowy owl. Its scientific name is Bubo scandiacus.\\nOptions: (A) Bubo scandiacus (B) Ardea herodias (C) Pelecanus erythrorhynchos\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A snowy owl's scientific name is Bubo scandiacus.\\nBubo scandiacus has the same scientific name as a snowy owl. So, these organisms are in the same species.\\nArdea herodias does not have the same scientific name as a snowy owl. So, Bubo scandiacus and Ardea herodias are not in the same species.\\nPelecanus erythrorhynchos does not have the same scientific name as a snowy owl. So, Bubo scandiacus and Pelecanus erythrorhynchos are not in the same species. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2037\",\n    \"image\": \"2037\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) flexible (B) transparent (C) opaque\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nAn opaque object does not let light through. None of the objects are opaque.\\nA flexible object can be folded or bent without breaking easily. The glass and the glass flask are not flexible.\\nYou can see clearly through a transparent object. All three objects are transparent.\\nThe property that all three objects have in common is transparent. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2038\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nwhoop - wren\\nContext: N/A\\nOptions: (A) wait (B) width\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince width is between the guide words whoop - wren, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2045\",\n    \"image\": \"2045\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is the main persuasive appeal used in this ad?\\nContext: N/A\\nOptions: (A) pathos (emotion) (B) ethos (character) (C) logos (reason)\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The purpose of an advertisement is to persuade people to do something. To accomplish this purpose, advertisements use three types of persuasive strategies, or appeals:\\nAppeals to ethos, or character, show that the writer or speaker is trustworthy or is an authority on a subject. An ad that appeals to ethos might do one of the following:\\nsay that a brand has been trusted for many years\\nnote that a brand is recommended by a respected organization or celebrity\\ninclude a quote from a \\\"real person\\\" who shares the audience's values\\nAppeals to logos, or reason, use logic and specific evidence. An ad that appeals to logos might do one of the following:\\nuse graphs or charts to display information\\nmention the results of scientific studies\\nexplain the science behind a product or service\\nAppeals to pathos, or emotion, use feelings rather than facts to persuade the audience. An ad that appeals to pathos might do one of the following:\\ntrigger a fear, such as the fear of embarrassment\\nappeal to a desire, such as the desire to appear attractive\\nlink the product to a positive feeling, such as adventure, love, or luxury The ad appeals to ethos, or character. It includes an endorsement (seal of approval) from a respected organization. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2051\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which banana has a lower temperature?\\nContext: Two bananas are identical except for their thermal energies.\\nOptions: (A) the banana with less thermal energy (B) the banana with more thermal energy\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The two bananas are made of the same material and have the same mass. So, the banana with less thermal energy has a lower temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2055\",\n    \"image\": \"2055\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Maine (B) Rhode Island (C) New York (D) Virginia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Rhode Island. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2073\",\n    \"image\": \"2073\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk. A sea otter is an example of a mammal.\\nOptions: (A) gray wolf (B) keel-billed toucan\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A keel-billed toucan is a bird. It has feathers, two wings, and a beak.\\nToucans have large beaks. A toucan's beak can be half as long as its body.\\nA gray wolf is a mammal. It has fur and feeds its young milk.\\nWolves often live in family groups. A wolf mother, father, and their children travel together. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2078\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nIn such an unfamiliar environment, Luca was a fish out of water.\\nContext: N/A\\nOptions: (A) Luca felt out of place. (B) Luca didn't have any friends.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom a fish out of water suggests that Luca felt out of place. A fish out of water is someone out of his or her usual, comfortable environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2081\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a cement truck?\\nContext: Select the best estimate.\\nOptions: (A) 20 tons (B) 20 pounds (C) 20 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a cement truck is 20 tons.\\n20 ounces and 20 pounds are both too light. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2095\",\n    \"image\": \"2095\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New Jersey (B) New York (C) Maryland (D) Delaware\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New York.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2098\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the solid.\\nContext: N/A\\nOptions: (A) air inside a balloon (B) wet paint (C) tent\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid.\\nWhen matter is a gas, it spreads out to fill a space.\\nMany gases are invisible. So, you can\\u2019t see them. Air is a gas. The air inside a balloon is a gas. A gas spreads out to fill a space. The air inside a balloon spreads out to fill all the space in the balloon. If the balloon pops, the air will spread out to fill a much larger space.\\nA tent is a solid. You can fold a tent or spread it out. But it will still have a size and shape of its own.\\nWet paint is a liquid. A liquid takes the shape of any container it is in. If you pour wet paint out of a can, the paint will change shape. But the wet paint will still take up the same amount of space. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2107\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a sofa?\\nContext: Select the best estimate.\\nOptions: (A) 3 millimeters (B) 3 centimeters (C) 3 kilometers (D) 3 meters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a sofa is 3 meters.\\n3 millimeters and 3 centimeters are too short. 3 kilometers is too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2110\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to the Tenth Amendment, who or what holds the powers not listed in the Constitution?\\nContext: The Constitution lists the powers given to the United States government. But there are some powers that are not listed anywhere in the Constitution.\\nOptions: (A) the governments of Canada and Mexico (B) the American people and the state governments (C) the military and private businesses (D) the president and vice president\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to the Tenth Amendment, the Constitution lists all the powers given to the United States government. Any power not listed in the Constitution belongs to either the American people or the state governments. The full text of the Tenth Amendment is below. The powers not delegated to the United States by the Constitution, nor prohibited by it to the states, are reserved to the states respectively, or to the people. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2122\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word bright on a dictionary page with the following guide words?\\nbelieve - burrow\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince bright is between the guide words believe - burrow, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2125\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nBarbara has a lot on her plate: she is attending college, has a full-time job as a waitress, and volunteers at the animal shelter.\\nContext: N/A\\nOptions: (A) Barbara has many responsibilities. (B) Barbara has no time to eat well.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom a lot on her plate suggests that Barbara has many responsibilities. If you have a lot on your plate, you are busy with many different obligations. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2126\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word ironic in its traditional sense?\\nContext: N/A\\nOptions: (A) Last winter, Dale took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, a rare snowstorm happened to hit Florida that week. (B) Last winter, Dale took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, he just missed a few of his college friends, who had been in Florida the previous week.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses ironic in its traditional sense: contrary to what was intended, often in an amusing way. It's ironic because Dale tried to get away from the snow but found himself in a snowstorm regardless.\\nLast winter, Dale took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, a rare snowstorm happened to hit Florida that week.\\nThe first text uses ironic in its nontraditional sense: marked by coincidence. It was a coincidence that Dale's friends were in Florida the week before.\\nLast winter, Dale took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, he just missed a few of his college friends, who had been in Florida the previous week.\\nMost style guides recommend to avoid using the nontraditional sense of the word ironic because it is generally considered incorrect. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2129\",\n    \"image\": \"2129\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2138\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nDon't try to tell me that you only watch educational programming, Rebecca! I know for a fact that your sister only watches reality television.\\nContext: N/A\\nOptions: (A) guilt by association: a negative association intended to discredit someone or something (B) hasty generalization: a very broad claim based on very little evidence\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Rebecca must watch reality television, because her sister watches reality television. However, even though Rebecca's sister watches reality television, that doesn't necessarily mean that Rebecca does, too. This illustrates a type of logical fallacy known as guilt by association. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2141\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In the 1970s, several countries in the Middle East decided to pump less oil from their oil wells. Oil is often made into gasoline. What happened to the world's overall supply of gasoline?\\nContext: N/A\\nOptions: (A) The supply went up. (B) The supply went down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. Oil is a resource for gasoline. When oil became more expensive, it was harder to get. There was less of it that could be made into gasoline. So, the supply of gasoline went down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2147\",\n    \"image\": \"2147\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2148\",\n    \"image\": \"2148\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bird's beak is also adapted to crack large, hard nuts?\\nContext: s eat large seeds and nuts. The shape of the 's beak is adapted to crack open large, hard nuts.\\nFigure: Alexandrine parakeet.\\nOptions: (A) bald ibis (B) scarlet macaw\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of a bird's beak is one example of an adaptation. Birds' beaks can be adapted in different ways. For example, a sharp hooked beak might help a bird tear through meat easily. A short, thick beak might help a bird break through a seed's hard shell. Birds that eat similar food often have similar beaks. Look at the picture of the Alexandrine parakeet.\\nThe Alexandrine parakeet has a thick hooked beak. Its beak is adapted to crack large, hard nuts. The Alexandrine parakeet uses its thick beak to crack the shell of a nut by squeezing it. The hooked shape of the beak can help the bird hold the nut in place while cracking it.\\nNow look at each bird. Figure out which bird has a similar adaptation.\\nThe scarlet macaw has a thick hooked beak. Its beak is adapted to crack large, hard nuts.\\nThe bald ibis has a long curved beak. Its beak is not adapted to crack large, hard nuts. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2149\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which would smell more?\\nContext: N/A\\nOptions: (A) toothpaste (B) metal car bumper\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Smelly is a property. A smelly material has a strong smell.\\nLook at each picture, one at a time. Imagine smelling the material shown in each picture.\\nOf the choices, the toothpaste would smell more. Toothpaste has a strong smell. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2152\",\n    \"image\": \"2152\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Helen's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nHelen was designing small aircraft called drones to pick up items from warehouse shelves. She knew that the drones' propeller blades would get damaged if they bumped into anything while flying through the warehouse. So, Helen wanted to add blade guards to protect the propeller blades. The guards had to be sturdy so they would not break in a crash. But she thought that if the guards weighed too much, the drones would not fly well.\\nSo, Helen put guards made of lightweight metal on one drone. Then she observed how well the drone flew with the guards.\\nFigure: a drone without blade guards.\\nOptions: (A) if adding the blade guards made the drone fly poorly (B) if the blade guards would break in a crash (C) how much the drone weighed with the blade guards\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2158\",\n    \"image\": \"2158\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) acetaldehyde (B) hydrazine (C) ozone\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2163\",\n    \"image\": \"2163\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is weaker in Pair 1. (B) The magnetic force is weaker in Pair 2. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2165\",\n    \"image\": \"2165\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is weaker in Pair 2. (C) The magnetic force is weaker in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is weaker when the magnets are farther apart. Distance affects the strength of the magnetic force. When magnets are farther apart, the magnetic force between them is weaker.\\nThe magnets in Pair 1 are farther apart than the magnets in Pair 2. So, the magnetic force is weaker in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2173\",\n    \"image\": \"2173\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Marcy and Brenda's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nMarcy and Brenda were making batches of concrete for a construction project. To make the concrete, they mixed together dry cement powder, gravel, and water. Then, they checked if each batch was firm enough using a test called a slump test.\\nThey poured some of the fresh concrete into an upside-down metal cone. They left the concrete in the metal cone for 30 seconds. Then, they lifted the cone to see if the concrete stayed in a cone shape or if it collapsed. If the concrete in a batch collapsed, they would know the batch should not be used.\\nFigure: preparing a concrete slump test.\\nOptions: (A) if a new batch of concrete was firm enough to use (B) if the concrete from each batch took the same amount of time to dry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2186\",\n    \"image\": \"2186\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The United States has a federal system. Based on these definitions, which of these statements would most likely be made by a person who lives under a federal system?\\nContext: Think about the name of the United States of America. As the name shows, the country has both a united national government and a collection of state governments. In the following questions, you will learn about the relationship between the national government and state governments. You will also learn about how state and local governments work.\\nMany countries have both a national government and state governments. However, these countries divide power differently between the national and state governments. The table below describes three different systems for dividing power. Look at the table. Then answer the question below.\\nOptions: (A) My national government officials decide most issues that come up. (B) I only pay attention to state politics since the national government has almost no power. (C) Both my state and national government officials have power over important issues.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2189\",\n    \"image\": \"2189\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Lacey's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nLacey poured four ounces of water into each of six glasses. Lacey dissolved one tablespoon of salt in each of three glasses, and did not add salt to the other three. Then, Lacey placed an egg in one glass and observed if the egg floated. She removed the egg and dried it. She repeated the process with the other five glasses, recording each time if the egg floated. Lacey repeated this test with two more eggs and counted the number of times the eggs floated in fresh water compared to salty water.\\nFigure: an egg floating in a glass of salty water.\\nOptions: (A) Does the amount of water in a glass affect whether eggs sink or float in the water? (B) Are eggs more likely to float in fresh water or salty water?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2194\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a drinking straw?\\nContext: Select the best estimate.\\nOptions: (A) 10 inches (B) 10 yards (C) 10 feet (D) 10 miles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a drinking straw is 10 inches.\\n10 feet, 10 yards, and 10 miles are all too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2205\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAs Bert sat down on the rickety old chair, it abruptly collapsed beneath him.\\nContext: N/A\\nOptions: (A) complex (B) simple (C) compound (D) compound-complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is complex. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction as.\\nAs Bert sat down on the rickety old chair, it abruptly collapsed beneath him. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2210\",\n    \"image\": \"2210\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2221\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a sentence fragment?\\nAt the conclusion of the War of 1812, the youngest general in the army was Winfield Scott. Whose tactical methods and regulations came to define the U.S. Army for most of the nineteenth century.\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA sentence fragment is a group of words that does not express a complete thought.\\nRehearsing daily because we have a concert in two weeks.\\nThis fragment is missing a subject. It doesn't tell who is rehearsing.\\nThe band I'm in.\\nThis fragment is missing a verb. It doesn't tell what the band I'm in is doing.\\nBecause we have a concert in two weeks.\\nThis fragment is missing an independent clause. It doesn't tell what happened because of the concert. There is a sentence fragment that does not express a complete thought.\\nAt the conclusion of the War of 1812, the youngest general in the army was Winfield Scott. Whose tactical methods and regulations came to define the U.S. Army for most of the nineteenth century.\\nHere is one way to fix the sentence fragment:\\nAt the conclusion of the War of 1812, the youngest general in the army was Winfield Scott, whose tactical methods and regulations came to define the U.S. Army for most of the nineteenth century. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2224\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Dolly's phenotype for the coat graying trait?\\nContext: This passage describes the coat graying trait in horses:\\n\\nIn a group of horses, some individuals have coat graying and others do not. In this group, the gene for the coat graying trait has two alleles. The allele for having a graying coat (G) is dominant over the allele for not having a graying coat (g).\\nDolly is a horse from this group. Dolly has the homozygous genotype gg for the coat graying gene.\\nOptions: (A) not having a graying coat (B) having a graying coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Dolly's genotype for the coat graying gene is gg. Dolly's genotype of gg has only g alleles. The g allele is for not having a graying coat. So, Dolly's phenotype for the coat graying trait must be not having a graying coat.\\nTo check this answer, consider whether Dolly's alleles are dominant or recessive. The allele for having a graying coat (G) is dominant over the allele for not having a graying coat (g). This means G is a dominant allele, and g is a recessive allele.\\nDolly's genotype of gg has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Dolly's phenotype for the coat graying trait must be not having a graying coat. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2239\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nPeople with larger houses live longer. I guess bigger homes are better for your health!\\nContext: N/A\\nOptions: (A) false causation: the assumption that because two things happened together, one caused the other (B) ad hominem: an attack against the person making the argument, rather than the argument itself (C) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that larger houses lead to better health. However, that's not necessarily true. For instance, perhaps having a bigger home and better health care both result from being rich. This illustrates a type of logical fallacy known as false causation. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2244\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) The manager put the antique vases on these tables to show that they are reserved. (B) To show that these tables are reserved, the manager put the antique vases on them.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun they could refer to the vases or the tables.\\nThe manager put the antique vases on these tables to show that they are reserved.\\nThe second answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nTo show that these tables are reserved, the manager put the antique vases on them. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2255\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nHow do I know that Lacey is the most intelligent person in our geometry class? I know because she's so smart.\\nContext: N/A\\nOptions: (A) ad hominem: a personal attack against one's opponent (B) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Lacey is intelligent because she's smart. However, the \\\"evidence\\\" is just a restatement of the claim itself. This illustrates a type of logical fallacy known as circular reasoning. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2259\",\n    \"image\": \"2259\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Jamaica (B) Grenada (C) Cuba (D) Haiti\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Jamaica. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2260\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nPresident Townsend is an effective communicator, because he has a natural talent for speaking with people.\\nContext: N/A\\nOptions: (A) false dichotomy: an argument that presents only two choices when more options exist (B) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that President Townsend is an effective communicator because he communicates well. However, the \\\"evidence\\\" is just a restatement of the claim itself. This illustrates a type of logical fallacy known as circular reasoning. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2269\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complex sentence?\\nContext: N/A\\nOptions: (A) Uncle Kendrick will keep snoring until he rolls over onto his stomach. (B) In 1900, the U.S. state with the largest population was New York.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the complex sentence. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction until.\\nUncle Kendrick will keep snoring until he rolls over onto his stomach. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2274\",\n    \"image\": \"2274\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Connecticut (B) Pennsylvania (C) New Hampshire (D) Vermont\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New Hampshire.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2286\",\n    \"image\": \"2286\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Scientists in a laboratory were working with insulin, a protein often used to treat diabetes. They left two identical vials of insulin in different places. This table shows how the temperature of each vial changed over 15minutes.\\nOptions: (A) the surroundings . . . each vial (B) each vial . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each vial increased, which means that the thermal energy of each vial increased. So, thermal energy was transferred from the surroundings to each vial. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2289\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nA part of Earth's surface moves and shakes.\\nContext: N/A\\nOptions: (A) flood (B) wildfire (C) earthquake\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2292\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Algernon's genotype for the fur color gene?\\nContext: In a group of rabbits, some individuals have black fur and others have brown fur. In this group, the gene for the fur color trait has two alleles. The allele F is for black fur, and the allele f is for brown fur.\\nAlgernon, a rabbit from this group, has brown fur. Algernon has two alleles for brown fur.\\nOptions: (A) brown fur (B) ff\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Algernon has two alleles for brown fur (f). So, Algernon's genotype for the fur color gene is ff. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2297\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which job does the circulatory system do?\\nContext: N/A\\nOptions: (A) It brings nutrients to cells. (B) It breaks down food into small pieces.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"To stay alive, animal cells must get water and oxygen. Animal cells also produce carbon dioxide, a waste that must be removed. An animal's respiratory and circulatory systems work together to do these jobs.\\nAn animal's respiratory system is made up of organs that work together to bring in oxygen gas from the environment. The respiratory system also removes carbon dioxide gas from the animal's body. Some animals have lungs to exchange oxygen and carbon dioxide with the air. Other animals have gills to exchange oxygen and carbon dioxide with water.\\nAn animal's circulatory system is made up of organs that work together to move blood through its body. The heart pumps blood through blood vessels throughout the body. As blood moves through blood vessels, it delivers oxygen, nutrients from food, and water to cells. Blood also absorbs waste, including carbon dioxide. When the blood is pumped into the lungs or gills, it releases carbon dioxide and absorbs oxygen. The circulatory system brings oxygen, nutrients, and water to cells. It also helps remove carbon dioxide waste.\\nThe circulatory system does not break down food into small pieces. This job is done by the digestive system. After the digestive system breaks down food, blood vessels in the intestines absorb the nutrients from the food. The blood then carries the nutrients to cells throughout the body. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2307\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nMelted rock comes out from below Earth's surface.\\nContext: N/A\\nOptions: (A) flood (B) earthquake (C) volcanic eruption\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2308\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three motorboats. Which motorboat was moving at the lowest speed?\\nContext: N/A\\nOptions: (A) a motorboat that moved 185miles west in 10hours (B) a motorboat that moved 150miles north in 10hours (C) a motorboat that moved 250miles west in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the slowest will go the shortest distance in that time. It is moving at the lowest speed. Look at the distance each motorboat moved and the time it took to move that distance. The direction each motorboat moved does not affect its speed.\\nNotice that each motorboat moved for 10 hours. The motorboat that moved 150 miles moved the shortest distance in that time. So, that motorboat must have moved at the lowest speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2309\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ntarpaulin - transport\\nContext: N/A\\nOptions: (A) twine (B) tile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince tile is between the guide words tarpaulin - transport, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2317\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Emmy investigate with an experiment?\\nContext: Emmy is sledding with her friends. She notices that some of them go faster down the sledding hill. She wonders what factors affect sledding speed. So, she decides to design an experiment. She has the following supplies available:\\naccess to a small snow-covered hill at the park\\na small plastic sled\\na large plastic sled\\na rubber inner tube sled\\na stopwatch\\nOptions: (A) Does a rubber inner tube sled go faster down a small hill or down a big hill? (B) Does a plastic sled or a wooden sled go down a hill faster? (C) Does a rubber inner tube sled or a plastic sled go faster down a hill?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2321\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nThe windiest months on Mount Everest are November, December, and January.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nThe windiest months on Mount Everest are November, December, and January.\\nThis passage tells you about the usual wind pattern on Mount Everest. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2327\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is more flexible?\\nContext: N/A\\nOptions: (A) diamond (B) wool sweater\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Flexible is a property. A flexible material can be bent without breaking easily.\\nLook at each picture, one at a time. Imagine bending the material shown in each picture.\\nOf the choices, the wool sweater is more flexible. If you fold a wool sweater, it will not break. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2328\",\n    \"image\": \"2328\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Pennsylvania?\\nContext: N/A\\nOptions: (A) Hartford (B) Harrisburg (C) Nashville (D) Pittsburgh\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Harrisburg is the capital of Pennsylvania. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2332\",\n    \"image\": \"2332\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2343\",\n    \"image\": \"2343\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Arianna and Clarence trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nArianna and Clarence open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Arianna wanted broccoli in her lunch and Clarence was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Arianna can trade her tomatoes for Clarence's sandwich. (B) Arianna can trade her tomatoes for Clarence's broccoli. (C) Clarence can trade his broccoli for Arianna's oranges. (D) Clarence can trade his almonds for Arianna's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Arianna wanted broccoli in her lunch and Clarence was hoping for tomatoes. Look at the labeled part of the images.\\nArianna has tomatoes. Clarence has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2347\",\n    \"image\": \"2347\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the water in a glass a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a solid (B) a gas (C) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. The water in a glass is a liquid. A liquid takes the shape of any container it is in.\\nIf you pour water from a glass into a different container, the water will take the shape of that container. But the water will still take up the same amount of space. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2349\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Read the following excerpt from a student essay. How can the writer best improve his or her organization?\\nI discovered my passion shortly after my freshman year. That summer, at my parents' suggestion, I attended a weeklong seminar sponsored by a local university. Although I was nervous about being the only high school student, I stretched myself and learned a lot. Through the seminar, I mastered the basics of reporting and feature writing. The following summer, I took a creative writing workshop and completed several short stories. In my school's creative writing class this year, I am sharing my stories with others and receiving helpful critiques to improve my craft.\\nContext: N/A\\nOptions: (A) by putting the ideas in chronological order (B) by clearly stating the main idea (C) by reordering sentences to keep related ideas together\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"During peer review, you read and respond to a fellow student's writing. While there are many methods and strategies that you can use for reviewing a text, it is generally helpful to frame your suggestions in concrete and constructive ways and to consider the following areas for revision:\\nIdeas and development: Does the writer express a clear idea and develop it with evidence, examples, or analysis?\\nOrganization: Does the writer order ideas in a clear, logical way so that they build on one another and are easy to follow?\\nVoice: Does the writer maintain an appropriate voice, such as a formal and objective voice in an academic essay or an engaging and expressive voice in a narrative essay?\\nSentence fluency: Does the writer use sentences that vary in structure and length to create a sense of rhythm and flow within and between sentences, or does the writing sound choppy, rambling, or repetitive?\\nWord choice: Does the writer use words accurately and precisely to create clear, effective, and engaging writing?\\nGrammar and mechanics: Does the writer follow appropriate conventions, using accurate spelling, punctuation, and grammar to create writing that is correct and easy to read? The writer could best improve his or her organization by clearly stating the main idea.\\nFor example, the writer could begin with a topic sentence that matches the contents of the paragraph.\\nI discovered my passion shortly after my freshman year. That summer, at my parents' suggestion, I attended a weeklong seminar sponsored by a local university. Although I was nervous about being the only high school student, I stretched myself and learned a lot. Through the seminar, I mastered the basics of reporting and feature writing. The following summer, I took a creative writing workshop and completed several short stories. In my school's creative writing class this year, I am sharing my stories with others and receiving helpful critiques to improve my craft. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2355\",\n    \"image\": \"2355\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New York?\\nContext: N/A\\nOptions: (A) Montpelier (B) New York City (C) Louisville (D) Albany\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Albany is the capital of New York. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2360\",\n    \"image\": \"2360\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is Bertholletia excelsa made up of one cell?\\nContext: This organism is Bertholletia excelsa. It is a member of the plant kingdom.\\nBertholletia excelsa is commonly called a Brazil nut tree. Brazil nut trees have a tall, thin trunk. Branches grow near the top of the tree. A Brazil nut tree can live for over 500 years!\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Bertholletia excelsa is a plant. Plants are made up of many cells. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2366\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Kiera decides to plant the crocuses. Which result would be a cost?\\nContext: Kiera is deciding whether to plant crocuses or a fir tree in her backyard. She wants to make her backyard more beautiful. But she also wants to leave space for doing fun things.\\nOptions: (A) She will save some space. The crocuses will use up less space than the fir tree would have used up. (B) Kiera will give up the chance to look at the fir tree. She thinks it would have looked more beautiful than the crocuses.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Kiera wants or needs:\\nKiera will give up the chance to look at the fir tree. She thinks it would have looked more beautiful than the crocuses. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2368\",\n    \"image\": \"2368\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThree-quarters of the planets are larger than Earth.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\n To decide which planets are larger than Earth, look at the volumes of the other planets and compare the exponents to the exponent of Earth's volume. Earth's volume is 1.08 x 10^12 km^3. Earth's volume is the only volume with an exponent of 12.\\nThe volumes of Jupiter, Saturn, Uranus, and Neptune have exponents greater than 12, so these four planets are larger than Earth. There are eight planets total. So, one-half of the planets are larger than Earth. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2369\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nJacob is good at cooking.\\nContext: Hint: Cooking well takes practice.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to cook. Instead, many people learn how to cook. So, cooking is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2372\",\n    \"image\": \"2372\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is better adapted as a warning sign to ward off predators?\\nContext: Flamboyant cuttlefish are poisonous animals with brightly colored skin. The bright colors serve as a warning sign that the animal is poisonous. The 's skin is adapted to ward off predators.\\nFigure: flamboyant cuttlefish.\\nOptions: (A) lichen katydid (B) opalescent nudibranch\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the flamboyant cuttlefish.\\nThe flamboyant cuttlefish has a poisonous body with brightly colored skin. Its skin is adapted to ward off predators. The bright colors serve as a warning sign that the flamboyant cuttlefish is poisonous.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe opalescent nudibranch has stinging cells in its brightly colored skin. Its skin is adapted to ward off predators.\\nThe lichen katydid has green and white patches on its body. Its skin is not adapted to be a warning sign that wards off predators. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2380\",\n    \"image\": \"2380\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which three months have over 200millimeters of precipitation in Singapore?\\nContext: Use the graph to answer the question below.\\nOptions: (A) November, December, and January (B) August, September, and October (C) May, June, and July\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Singapore, look at the graph.\\nChoice \\\"Jan\\\" is incorrect.\\nChoice \\\"May\\\" is incorrect.\\nChoice \\\"Jun\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Aug\\\" is incorrect.\\nChoice \\\"Sep\\\" is incorrect.\\nChoice \\\"Oct\\\" is incorrect.\\nChoice \\\"Nov\\\" is incorrect.\\nChoice \\\"Dec\\\" is incorrect.\\nNovember, December, and January each have over 200 millimeters of precipitation. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2382\",\n    \"image\": \"2382\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is scoria a mineral or a rock?\\nContext: Scoria has the following properties:\\nno fixed crystal structure\\nhas many small holes\\nnot a pure substance\\nfound in nature\\nsolid\\nnot made by organisms\\nOptions: (A) rock (B) mineral\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! The properties of scoria match the properties of a rock. So, scoria is a rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2383\",\n    \"image\": \"2383\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Ohio?\\nContext: N/A\\nOptions: (A) Cincinnati (B) Columbus (C) Frankfort (D) Cleveland\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbus is the capital of Ohio. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2384\",\n    \"image\": \"2384\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's legs are also adapted for wading?\\nContext: Gray herons live near marshes, rivers, and lakes. They eat frogs and fish that live in shallow water. Gray herons hunt their prey by walking through water, or wading.\\nThe 's legs are adapted for wading. They are lightweight and keep the bird's body above the water.\\nFigure: gray heron.\\nOptions: (A) common kingfisher (B) painted stork\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nArms, legs, flippers, and wings are different types of limbs. The type of limbs an animal has is an example of an adaptation. Animals' limbs can be adapted in different ways. For example, long legs might help an animal run fast. Flippers might help an animal swim. Wings might help an animal fly. Look at the picture of the gray heron.\\nLong legs help the gray heron keep its body above the surface of the water while wading. Thin legs are easier to move through the water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe painted stork has long, thin legs. Its legs are adapted for wading.\\nThe common kingfisher has short legs. Its legs are not adapted for wading. The common kingfisher uses its legs to walk and perch. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2388\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Paula decides to go on the scorpion. Which result would be a cost?\\nContext: Paula is deciding which ride to go on at the fair. She can go on either the scorpion or the flying bobsled. She wants to have as much fun as possible at the fair.\\nOptions: (A) Paula will have more fun on the scorpion than she would have had on the flying bobsled. (B) Paula will spend more ride tickets on the scorpion than she would have spent on the flying bobsled.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Paula wants or needs:\\nPaula will spend more ride tickets on the scorpion than she would have spent on the flying bobsled. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2391\",\n    \"image\": \"2391\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a Syrian hamster produced by this cross will have long fur?\\nContext: In a group of Syrian hamsters, some individuals have short fur and others have long fur. In this group, the gene for the fur length trait has two alleles. The allele for short fur (F) is dominant over the allele for long fur (f).\\nThis Punnett square shows a cross between two Syrian hamsters.\\nOptions: (A) 2/4 (B) 3/4 (C) 4/4 (D) 1/4 (E) 0/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2392\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to Newton's third law, what other force must be happening?\\nContext: Isaac Newton was born in the 1600s and studied how objects move. He discovered three fundamental laws about forces and motion. According to Newton's third law, for every force, there is an equal and opposite force.\\nConsider the following force:\\nA fridge magnet is pulling on a paper clip.\\nOptions: (A) The paper clip is pulling on the fridge magnet. (B) The paper clip is pushing on the fridge magnet.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to Newton's third law, for every force, there is an equal and opposite force. This means that if one object is applying a force on a second object, the second object must also be applying a force on the first object, but in the opposite direction.\\nFor example, if your hand is pushing down on a table, the table is also pushing up on your hand. Or, if you are pulling forward on a rope, the rope is also pulling back on you. The fridge magnet is pulling on the paper clip. So, Newton's third law tells you that the paper clip is pulling on the fridge magnet. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2395\",\n    \"image\": \"2395\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Kansas (B) Connecticut (C) Ohio (D) South Dakota\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. Kansas is farthest south. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2400\",\n    \"image\": \"2400\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2401\",\n    \"image\": \"2401\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Saint Vincent and the Grenadines (B) Saint Lucia (C) Grenada (D) Haiti\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Vincent and the Grenadines. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2406\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a mustard bottle?\\nContext: Select the best estimate.\\nOptions: (A) 9 gallons (B) 9 cups (C) 9 fluid ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a mustard bottle is 9 fluid ounces.\\n9 cups and 9 gallons are both too much. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2413\",\n    \"image\": \"2413\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Rose's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nWind turbines use wind power to produce electricity. Rose was a materials engineer who designed wind turbines. She wanted to design a new turbine that would produce 10% more electricity than older wind turbines. She thought that a turbine made from lightweight material would turn more easily and produce more electricity. So, Rose created a computer model of a turbine made from lightweight material. Then she used the model to calculate how much more electricity the new turbine could produce compared to the older turbines.\\nFigure: studying a wind turbine computer model.\\nOptions: (A) if the new turbine could turn easily (B) whether the new turbine could produce 10% more electricity (C) how much the new turbine would weigh\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2418\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nHow nice to finally be on vacation again!\\nContext: N/A\\nOptions: (A) interrogative (B) exclamatory (C) declarative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement and always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn imperative sentence makes a request or a demand and usually ends with a period. If a demand shows strong feeling, it can end with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn interrogative sentence asks a question and always ends with a question mark.\\nGiven the recent critiques of her new strategic plan, do you think the CEO will reconsider the company's direction?\\nAn exclamatory sentence is a statement that shows surprise or strong feeling. An exclamation always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence is a statement that shows strong feeling and ends with an exclamation point. It is an exclamatory sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2423\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Landslides are caused by many factors, including earthquakes, storms, and volcanic eruptions, and they can occur in any U.S. state. (B) Tornadoes are scarier than other natural disasters like earthquakes, hurricanes, and volcanic eruptions.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Statements of fact make claims that are based on research, observation, or experimentation. Facts can be proved with evidence.\\nNapoleon Bonaparte was shorter than King Louis XVI.\\nThis statement is a fact. The statement can be verified by researching and comparing the height of each man.\\nStatements of opinion make claims that are based on personal judgments or perspectives. Opinions can be supported by evidence, but they cannot be definitively proved.\\nNapoleon Bonaparte was a better leader than King Louis XVI.\\nThis statement is an opinion. People can have different ideas about what makes someone a \\\"better\\\" leader, so the statement cannot be proved. The first sentence states a fact. It can be verified by researching why and where landslides occur.\\nLandslides are caused by many factors, including earthquakes, storms, and volcanic eruptions, and they can occur in any U.S. state.\\nThe second sentence states an opinion. Scarier indicates a personal judgment.\\nTornadoes are scarier than other natural disasters like earthquakes, hurricanes, and volcanic eruptions. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2429\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the bird traits listed above.\\nContext: Birds are a group of animals with similar traits. The following traits can be used to identify birds:\\nThey have feathers.\\nThey have wings.\\nThey have a beak.\\nThey make eggs with shells. Observe the animals and read the descriptions.\\nOptions: (A) Galapagos giant tortoises hatch from eggs with shells and live on the Galapagos Islands in the Pacific Ocean. They can live to be over 150 years old! Galapagos giant tortoises have scaly, waterproof skin. (B) Common loons hatch from eggs with brown, spotted shells. They dive underwater and use their beaks to hunt food. They have feathers and two wings.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nBirds have the following traits:\\nThey have feathers.\\nThey have wings.\\nThey have a beak.\\nThey make eggs with shells.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA Galapagos giant tortoise has the following traits:\\nIt has scaly, waterproof skin.\\nIt makes eggs with shells.\\nA Galapagos giant tortoise does not have all of the traits of a bird. A Galapagos giant tortoise is a reptile.\\nA common loon has the following traits:\\nIt has feathers.\\nIt has wings.\\nIt has a beak.\\nIt makes eggs with shells.\\nA common loon has the traits of a bird. A common loon is a bird. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2432\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the word. Does it have a closed syllable or an open syllable?\\nhe\\nContext: N/A\\nOptions: (A) closed (B) open\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words are made up of syllables. Two kinds of syllables are closed and open.\\nA closed syllable has one vowel and ends with a consonant. It usually has a short vowel sound.\\ndesk: short e\\nkit / ten: short i / short e\\nAn open syllable ends with one vowel. It usually has a long vowel sound.\\ngo: long o\\nhe / ro: long e / long o\\nSome open syllables end with y. The y makes a long e sound or a long i sound.\\nsky: long i\\nba / by: long a / long e The word he ends with a vowel and has a long vowel sound. So, it has an open syllable. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2452\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does the sentence use a simile or a metaphor?\\nFrom across the room, Uncle Devin's laughter was booming thunder.\\nContext: N/A\\nOptions: (A) simile (B) metaphor\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. From across the room, Uncle Devin's laughter was booming thunder.\\nThe words laughter and thunder are compared without the word like or as. So, the sentence uses a metaphor. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2460\",\n    \"image\": \"2460\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Solomon Islands (B) Papua New Guinea (C) New Zealand (D) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Papua New Guinea.\\nWhy does Papua New Guinea share its island with another country?\\nPapua New Guinea takes up the eastern half of the island of New Guinea. The western half is part of Indonesia, an Asian country.\\nBeginning in the 17 th century, several countries took control of different parts of the island of New Guinea. By 1922, Australia controlled the entire eastern half of the island, and the Netherlands controlled the western half. In 1963, control over the western half was transferred to Indonesia, which had just gained independence from the Netherlands. Many people in western New Guinea did not want to become part of Indonesia, though, and some people in this area are still fighting to leave Indonesia today. The eastern part gained independence from Australia in 1975 and became Papua New Guinea. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2473\",\n    \"image\": \"2473\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oregon?\\nContext: N/A\\nOptions: (A) Salem (B) Denver (C) Milwaukee (D) Portland\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salem is the capital of Oregon. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2479\",\n    \"image\": \"2479\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this pull?\\nContext: A builder uses a pair of pliers to remove a nail from a board. A force from the pliers pulls the nail out of the wood.\\nOptions: (A) toward the pliers (B) away from the pliers\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to another. Every force has a direction.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The pliers pull the nail. The direction of the pull is toward the pliers. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2481\",\n    \"image\": \"2481\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Virginia?\\nContext: N/A\\nOptions: (A) Austin (B) Arlington (C) Montpelier (D) Richmond\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Richmond is the capital of Virginia. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2486\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nPeople in the station wait for the train.\\nContext: N/A\\nOptions: (A) future tense (B) present tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, wait. The verb tells you about something that is true or happening now. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2494\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) hope (B) rope (C) nose\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the same sound.\\nThe words meet and treat also rhyme. They both end with the same sound, even though the sound has two different spellings.\\nThe words tip and meet don't rhyme. They end with different sounds. The words rope and hope rhyme. They both end with the ope sound.\\nThe word nose does not rhyme. It ends with a different sound. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2499\",\n    \"image\": \"2499\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maryland?\\nContext: N/A\\nOptions: (A) Augusta (B) Dover (C) Annapolis (D) Phoenix\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Annapolis is the capital of Maryland. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2500\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nAt night, when the machines were () the factory seemed to be an entirely different place.\\nContext: N/A\\nOptions: (A) off (B) asleep\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word asleep. It describes the machines as if they were people who were sleeping. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2502\",\n    \"image\": \"2502\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Missouri?\\nContext: N/A\\nOptions: (A) Salem (B) Saint Louis (C) Jefferson City (D) Kansas City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jefferson City is the capital of Missouri. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2510\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a rowboat?\\nContext: Select the best estimate.\\nOptions: (A) 4 miles (B) 4 feet (C) 4 yards (D) 4 inches\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a rowboat is 4 yards.\\n4 inches and 4 feet are too short. 4 miles is too long. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2513\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a parking space?\\nContext: Select the better estimate.\\nOptions: (A) 6 meters (B) 6 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a parking space is 6 meters.\\n6 centimeters is too short. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2523\",\n    \"image\": \"2523\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Nate's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nNate used a dropper to put equal-sized drops of pure water, one at a time, onto a penny. The drops stayed together and formed a dome on the penny's surface. Nate recorded the number of drops he could add before the water spilled over the edge of the penny. Then, he rinsed and dried the penny, and repeated the test using water mixed with hand soap. He repeated these trials on nine additional pennies. Nate compared the average number of pure water drops to the average number of water drops mixed with hand soap that he could add to a penny before the water spilled over.\\nFigure: a dome of water on the surface of a penny.\\nOptions: (A) Can pennies hold more drops of water mixed with dish soap or water mixed with hand soap? (B) Can pennies hold more drops of pure water or water mixed with hand soap?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2531\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nrust forming on a bike frame\\na penny tarnishing\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are only physical changes. (C) Both are caused by heating. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nRust forming on a bike frame is a chemical change. The metal on the bike changes into rust. Metal and rust are different types of matter.\\nMetal turning less shiny over time is called tarnishing. A penny tarnishing is a chemical change. When air touches the penny, the surface of the penny changes into a different type of matter. This matter makes the penny dull.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2538\",\n    \"image\": \"2538\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Indian Ocean (B) the Southern Ocean (C) the Pacific Ocean (D) the Atlantic Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Southern Ocean.\\nThe Southern Ocean reaches from the shores of Antarctica to 60\\u00b0 South latitude. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2539\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Ivan decides to join the Photography Club. Which result would be a cost?\\nContext: Ivan is deciding whether to join the Theater Club or the Photography Club at school. He wants the club he joins to be fun. But he doesn't want it to take up too much time.\\nOptions: (A) Ivan will give up the chance to be in the Theater Club. He would have had more fun in the Theater Club than in the Photography Club. (B) Ivan will save some time. He would have spent more time in the Theater Club than in the Photography Club.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Ivan wants or needs:\\nIvan will give up the chance to be in the Theater Club. He would have had more fun in the Theater Club than in the Photography Club. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2548\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Gale's genotype for the body feather color gene?\\nContext: In a group of budgerigar parakeets, some individuals have green body feathers and others have blue body feathers. In this group, the gene for the body feather color trait has two alleles. The allele B is for green body feathers, and the allele b is for blue body feathers.\\nGale, a budgerigar parakeet from this group, has blue body feathers. Gale has two alleles for blue body feathers.\\nOptions: (A) bb (B) blue body feathers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Gale has two alleles for blue body feathers (b). So, Gale's genotype for the body feather color gene is bb. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2551\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nValeria's phone slipped out of her pocket, landing in the toilet with a plop.\\nContext: N/A\\nOptions: (A) onomatopoeia (B) verbal irony\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses onomatopoeia, a word that expresses a sound.\\nPlop represents the sound of the phone landing in the toilet. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2552\",\n    \"image\": \"2552\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following statements is supported by the passage?\\nContext: Meteorologists can make predictions about weather events. For example, the passage below describes how a meteorologist might use observations of Earth's atmosphere to predict a tornado event.\\nFigure: a tornado passing through a field.\\nOptions: (A) Scientists can study air masses to predict weather events. (B) Meteorologists are scientists who study meteors.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2566\",\n    \"image\": \"2566\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nBoth poles of each magnet line up with both poles of the other magnet. The south pole of each magnet is closest to the north pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2569\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nSince Greenville College receives more applications for admission than Springtown University, Greenville College is evidently a better school.\\nContext: N/A\\nOptions: (A) hasty generalization: a broad claim based on too few observations (B) bandwagon fallacy: the assumption that the popular choice is automatically correct (C) appeal to nature: the assumption that natural things are always good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Greenville College is better than Springtown University because Greenville College receives more applications. However, the popularity of a school does not necessarily indicate its quality. This illustrates a type of logical fallacy known as the bandwagon fallacy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2574\",\n    \"image\": \"2574\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Solomon Islands (B) the Marshall Islands (C) Tonga (D) Fiji\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Fiji. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2579\",\n    \"image\": \"2579\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What evidence of an earthquake does this picture show?\\nContext: This picture was taken after an earthquake. During an earthquake, the ground shakes.\\nOptions: (A) Some of the houses have broken roofs and walls. (B) The houses have windows.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Evidence is information that tells you something happened.\\nHow do you look for evidence of a change to Earth's surface?\\nThere are many ways to find evidence of a change to Earth's surface. One way is to look at a picture that was taken after the change.\\nHere are some examples of what the evidence for different changes might be:\\nCause of the change | Evidence of the change\\nearthquake | cracks in the ground; houses with broken walls and roofs\\nvolcanic eruption | melted rock on Earth's surface; smoke coming out of a hole in the ground\\nerosion | a canyon with a river flowing through it; a river carrying sand and mud\\nBe careful when you are looking for evidence!\\nA picture of Earth's surface can contain a lot of information. Some of that information might be evidence of a change to the surface, but some of it is not!\\nFor example, a picture taken after an earthquake might show a blue sky. But the color of the sky is not evidence of an earthquake. So, that information is not evidence that an earthquake happened.\\n The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2584\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Carla investigate with an experiment?\\nContext: Carla has a garden that is sometimes visited by deer. She notices that the deer eat some plants in her garden more than others. She wonders what factors affect which plants the deer eat. So, she decides to design an experiment. She has the following supplies available:\\na garlic spray used to keep garden pests away\\nfour tomato plants\\nfour bean plants\\nOptions: (A) Do the deer eat fewer leaves from bean plants sprayed with coffee spray than from unsprayed bean plants? (B) Do the deer eat fewer leaves from bean plants sprayed with garlic spray than from unsprayed bean plants? (C) Do the deer eat more leaves from tomato plants or from squash plants?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2585\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nMr. Boyer gave a lecture on water conservation, during which he stressed the importance of not watering lawns during a drought.\\nContext: N/A\\nOptions: (A) declarative (B) interrogative (C) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells about something, and it ends with a period. It is a declarative sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2588\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ncheese - cover\\nContext: N/A\\nOptions: (A) clever (B) cat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince clever is between the guide words cheese - cover, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2595\",\n    \"image\": \"2595\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThree-quarters of the planets are larger than Venus.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that there are five planets larger than Venus: Earth, Jupiter, Saturn, Uranus, and Neptune. There are eight planets total. Five-eighths is less than three-quarters. So, five-eighths of the planets are larger than Venus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2597\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nYouth would be an ideal state if it came a little later in life.\\n\\u2014Herbert Asquith\\nContext: N/A\\nOptions: (A) oxymoron (B) paradox\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a paradox, a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nYouth would be an ideal state if it came a little later in life at first appears to be contradictory, as it is impossible to be young late in life. However, it contains some truth: it is easier to appreciate the pleasant qualities of youth, such as liveliness and curiosity, when one has the life experience that comes with age. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2604\",\n    \"image\": \"2604\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this experiment, which were part of a control group?\\nContext: The passage below describes an experiment.\\n\\nSusan wanted to set up a compost bin, where food could decompose, or break down, into soil fertilizer. She knew that worms can break down food. She wondered if adding worms to her compost bin would cause food to decompose faster.\\nSusan set up four small compost containers. She added the same amounts of fruit peels, vegetable scraps, and eggshells to each container. Then, she added worms to two of the containers but not to the other two. After one month, Susan weighed the amount of undecomposed food left in each container.\\nFigure: food decomposing in a compost bin.\\nOptions: (A) the containers that did not get worms (B) the containers that got worms\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to investigate whether changing a variable between different groups has a specific outcome.\\nFor example, imagine you want to find out whether adding fertilizer to soil affects the height of pea plants. You could investigate this question with the following experiment:\\nYou grow one group of pea plants in soil with fertilizer and measure the height of the plants. This group shows you what happens when fertilizer is added to soil. Since fertilizer is the variable whose effect you are investigating, this group is an experimental group.\\nYou grow another group of pea plants in soil without fertilizer and measure the height of the plants. Since this group shows you what happens when fertilizer is not added to the soil, it is a control group.\\nBy comparing the results from the experimental group to the results from the control group, you can conclude whether adding fertilizer to the soil affects pea plant height. In this experiment, Susan investigated whether adding worms to compost containers affects how well food breaks down. There were no worms in the containers that did not get worms. So, they were part of a control group. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2621\",\n    \"image\": \"2621\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What instrument does Yo-Yo play?\\nContext: Read the passage about Yo-Yo Ma.\\nYo-Yo Ma is a famous cello player. He makes beautiful music. Yo-Yo's name comes from the Chinese word yo, which means \\\"friendly.\\\" Yo-Yo's parents were from China. His mother was a singer, and his father was a music teacher.\\nYo-Yo began playing the cello when he was only four years old. His father was his first teacher. Yo-Yo's father hoped that Yo-Yo would become a great cello player someday. Today, Yo-Yo is one of the best cello players in the world.\\nOptions: (A) the violin (B) the cello\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the passage. It tells you what instrument Yo-Yo plays.\\nYo-Yo Ma is a famous cello player. He makes beautiful music. Yo-Yo's name comes from the Chinese word yo, which means \\\"friendly.\\\" Yo-Yo's parents were from China. His mother was a singer, and his father was a music teacher. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2624\",\n    \"image\": \"2624\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) flexible (B) salty (C) smooth\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA flexible object can be folded or bent without breaking easily. The flower petals are flexible, but the wax candle, the ice hockey rink, and the trombone are not.\\nPotato chips have a salty taste. The trombone is not salty.\\nA smooth object is not scratchy or rough. All four objects are smooth.\\nThe property that all four objects have in common is smooth. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2626\",\n    \"image\": \"2626\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Harrisburg (B) Denver (C) Colorado Springs (D) Helena\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2634\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the estuary ecosystem.\\nContext: N/A\\nOptions: (A) This ecosystem has:\\na mix of fresh and salty water\\nmuddy soil that is rich in nutrients\\nmany different types of organisms (B) This ecosystem has:\\ndaily flooding and draining of seawater\\nwater that is rich in nutrients\\nmany different types of organisms\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of ecosystems. Here are some ways in which these ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there An estuary is a type of ecosystem. It has a mix of fresh and salty water, muddy soil that is rich in nutrients, and many different types of organisms.\\nChoice 1 is an estuary ecosystem. It is a place where freshwater and salt water meet. Estuaries have muddy soil that is rich in nutrients.\\nChoice 2 is a tide pool ecosystem. Several times each day, it floods with seawater. Then the water drains back into the ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2638\",\n    \"image\": \"2638\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a rubber balloon a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a liquid (B) a gas (C) a solid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids are thicker than others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. The oxygen you breathe is a gas. The helium in a balloon is also a gas. A rubber balloon is a solid. You can bend a balloon. But it will still have a size and shape of its own. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2644\",\n    \"image\": \"2644\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe volume of Mars is more than ten times as large as Mercury's.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, first compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\nTo multiply a number written in scientific notation by a power of 10, write the multiple of 10 as 10 raised to an exponent. Then, add the exponents. For example:\\n1.43 x 10^15 \\u00b7 1000\\n= 1.43 x 10^15 \\u00b7 10^3\\n= 1.43 x 10^(15 + 3)\\n= 1.43 x 10^18\\n To determine if this statement is true, calculate the value of ten times the volume of Mercury.\\nThen compare the result to the volume of Mars. The volume of Mars is 1.63 x 10^11 km^3, which is less than 6.08 x 10^11 km^3. So, the volume of Mars is less than ten times as large as Mercury's. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2660\",\n    \"image\": \"2660\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maryland?\\nContext: N/A\\nOptions: (A) Providence (B) Baltimore (C) Montpelier (D) Annapolis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Annapolis is the capital of Maryland. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2675\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nWe will whisper in the library.\\nContext: N/A\\nOptions: (A) past tense (B) future tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, whisper. The verb tells you about something that is going to happen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2677\",\n    \"image\": \"2677\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) Antarctica (C) South America (D) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Australia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2683\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nLooking at his life, we couldn't help but see Grayson as a Job-like figure.\\nContext: N/A\\nOptions: (A) the Bible (B) Roman history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Job is the Bible.\\nIn the Bible, Job remains faithful and loyal to God, even after the unjust loss of his possessions, family, and health.\\nThe allusion Job means someone who patiently endures adversity. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2690\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a long-distance running race?\\nContext: Select the best estimate.\\nOptions: (A) 42 kilometers (B) 42 millimeters (C) 42 meters (D) 42 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a long-distance running race is 42 kilometers.\\n42 millimeters, 42 centimeters, and 42 meters are all too short. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2699\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nQuinn is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years.\\nContext: N/A\\nOptions: (A) simple (B) complex (C) compound (D) compound-complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound-complex. It is made up of two independent clauses and a dependent clause. The dependent clause begins with the relative pronoun which.\\nQuinn is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2704\",\n    \"image\": \"2704\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2712\",\n    \"image\": \"2712\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What type of rock is conglomerate?\\nContext: This is a piece of conglomerate. Conglomerate has grains of various sizes, such as sand, mud, and pebbles. Do you see the pebbles that are part of this rock?\\nConglomerate forms when sediments of different sizes are deposited in one place. This usually happens in riverbeds. Conglomerate forms when layers of sand, mud, and pebbles are pressed together to form rock.\\nOptions: (A) sedimentary (B) igneous (C) metamorphic\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Igneous rock is formed when melted rock cools and hardens into solid rock. This type of change can occur at Earth's surface or below it.\\nSedimentary rock is formed when layers of sediment are pressed together, or compacted, to make rock. This type of change occurs below Earth's surface.\\nMetamorphic rock is formed when a rock is changed by very high temperature and pressure. This type of change often occurs deep below Earth's surface. Over time, the old rock becomes a new rock with different properties. Conglomerate is a sedimentary rock. Like other sedimentary rocks, it forms from layers of sediment.\\nMaterial that is eroded in nature is called sediment. Sand, mud, and pebbles are all types of sediment. Over time, layers of these sediments can build up in places like riverbeds. The top layers press down on the bottom layers, squeezing out water and air. Conglomerate forms when the bottom layers of sediment are pressed together to form rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2715\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nmaking paper from wood\\nroasting a marshmallow over a campfire\\nContext: N/A\\nOptions: (A) Both are only physical changes. (B) Both are chemical changes. (C) Both are caused by cooling. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nMaking paper from wood is a chemical change. Paper is made by mixing tiny pieces of wood with special chemicals. The wood reacts with the chemicals to form pulp. Wood and pulp are different types of matter.\\nRoasting a marshmallow is a chemical change. The type of matter on the outside of the marshmallow changes. As a marshmallow is roasted, it turns brown and crispy.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nRoasting is caused by heating. But making paper from wood is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2716\",\n    \"image\": \"2716\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Saint Lucia (B) Jamaica (C) Haiti (D) Cuba\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Jamaica. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2722\",\n    \"image\": \"2722\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Tyler's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nTyler was . At the plant, an expensive filter was used to remove disease-causing bacteria from the water. But over time, the filter would become clogged with bacteria. If the filter became clogged, the water would not move through quickly enough. Tyler had to decide when the filter was too clogged and needed to be replaced. So, during his inspection, Tyler checked the filter by measuring how quickly water moved through it.\\nFigure: an engineer at a water treatment plant.\\nOptions: (A) the amount of bacteria in the water before it was filtered (B) whether the filter was clogged (C) whether an inexpensive filter would become clogged more often\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2725\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nMom will pitch the ball to Bernie.\\nContext: N/A\\nOptions: (A) present tense (B) past tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, pitch. The verb tells you about something that is going to happen. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2731\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mixture.\\nContext: N/A\\nOptions: (A) beads (B) oxygen\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A pure substance is made of only one type of matter.\\nA mixture is made of two or more types of matter mixed together. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2737\",\n    \"image\": \"2737\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Janet and Kari trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nJanet and Kari open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Janet wanted broccoli in her lunch and Kari was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Janet can trade her tomatoes for Kari's sandwich. (B) Kari can trade her almonds for Janet's tomatoes. (C) Kari can trade her broccoli for Janet's oranges. (D) Janet can trade her tomatoes for Kari's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Janet wanted broccoli in her lunch and Kari was hoping for tomatoes. Look at the labeled part of the images.\\nJanet has tomatoes. Kari has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2740\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the desert ecosystem.\\nContext: Hint: Deserts are dry year-round.\\nOptions: (A) This ecosystem has:\\na small amount of rain\\ndry, thin soil\\nmany different types of organisms (B) This ecosystem has:\\nland that is covered with water during most of the year\\nsoil that is rich in nutrients\\nother water ecosystems nearby\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A desert is a type of ecosystem. It has a small amount of rain, dry, thin soil, and many different types of organisms.\\nChoice 1 is a desert ecosystem. It is dry and is home to many different types of organisms.\\nChoice 2 is a wetland ecosystem. It is covered with water for most of the year. Wetlands also have soil that is rich in nutrients. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2741\",\n    \"image\": \"2741\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is better adapted as a warning sign to ward off predators?\\nContext: Golden dart frogs have poisonous glands in their brightly colored skin. The bright color serves as a warning sign that the animal is poisonous. The 's skin is adapted to ward off predators.\\nFigure: golden dart frog.\\nOptions: (A) lionfish (B) impala\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the golden dart frog.\\nThe golden dart frog has poisonous glands in its brightly colored skin. Its skin is adapted to ward off predators. The bright colors serve as a warning sign that the golden dart frog is poisonous.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe lionfish has venomous spines and brightly colored skin. Its skin is adapted to ward off predators.\\nThe impala has yellow-brown fur. Its skin is not adapted to be a warning sign that wards off predators. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2742\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which piece of rope has more thermal energy?\\nContext: Two 15-gram pieces of rope are identical except for their temperatures.\\nOptions: (A) the hotter piece of rope (B) the colder piece of rope\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two pieces of rope are made of the same material and have the same mass. So, the hotter piece of rope has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2745\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a teakettle?\\nContext: Select the best estimate.\\nOptions: (A) 8 fluid ounces (B) 8 gallons (C) 8 cups\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a teakettle is 8 cups.\\n8 fluid ounces is too little and 8 gallons is too much. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2756\",\n    \"image\": \"2756\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) translucent (B) colorful\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA translucent object lets light through. But you cannot see clearly through a translucent object. The crayons are not translucent.\\nA colorful object has one or more bright colors. The crayons are colorful. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2758\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nJeremiah and Kari have trouble working on projects together. Although Kari is very sociable and friendly, she's not exactly a team player.\\nContext: N/A\\nOptions: (A) paradox (B) euphemism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nNot exactly a team player is an indirect way of saying that someone doesn't work well with others. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2759\",\n    \"image\": \"2759\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) bendable (B) bouncy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA bouncy object will bounce back from the floor if you drop it. The soccer shorts are not bouncy.\\nA bendable object can be bent without breaking. The soccer shorts are bendable. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2760\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nDarnel can drive a car.\\nContext: Hint: Driving well takes practice.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Humans are not born knowing how to drive a car. Instead, many people learn how to drive when they are older. So, driving is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2763\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Heather investigate with an experiment?\\nContext: Heather likes to skip rocks at the river. She notices that some of the rocks she throws skip off the surface of the water many times, while others skip once and then sink. She wonders what factors affect how well rocks skip on the water. So, she decides to design an experiment. She has the following supplies available:\\n10 small flat rocks\\n10 large flat rocks\\naccess to the river by her school\\nOptions: (A) Do round rocks or flat rocks skip more times when thrown across the river? (B) Do small rocks or large rocks skip more times when thrown across the river? (C) Do rocks skip more times when thrown across a river or across a pond?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2764\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\npageant - prevail\\nContext: N/A\\nOptions: (A) purchase (B) police\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince police is between the guide words pageant - prevail, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2767\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What was the Great Depression?\\nContext: N/A\\nOptions: (A) a weather pattern that caused the worst hurricane season of the 20th century (B) the most severe period of economic hardship in the 20th century (C) the feelings of sadness felt by many Americans in the 1970s (D) the discovery in 1934 of a huge cave in Arizona\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The Great Depression was the most severe period of economic decline and hardship in the 20 th century.\\nHow bad was the Great Depression?\\nThe Great Depression was a period of economic hardship for much of the world, including the United States. Several things made it especially bad:\\nMany banks and businesses were forced to close.\\nAt times, about 1 in 4 workers in the United States were unemployed, or without a job.\\nMany people lost their homes or farms when they could not pay their bills.\\nTo make matters worse, the Great Depression lasted for over 10 years! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2771\",\n    \"image\": \"2771\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Tanner's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nTanner used a dropper to put equal-sized drops of pure water, one at a time, onto a penny. The drops stayed together and formed a dome on the penny's surface. Tanner recorded the number of drops he could add before the water spilled over the edge of the penny. Then, he rinsed and dried the penny, and repeated the test using water mixed with hand soap. He repeated these trials on nine additional pennies. Tanner compared the average number of pure water drops to the average number of water drops mixed with hand soap that he could add to a penny before the water spilled over.\\nFigure: a dome of water on the surface of a penny.\\nOptions: (A) Can pennies hold more drops of pure water or water mixed with hand soap? (B) Can pennies hold more drops of water mixed with dish soap or water mixed with hand soap?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2779\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Iago's phenotype for the body feather color trait?\\nContext: In a group of budgerigar parakeets, some individuals have green body feathers and others have blue body feathers. In this group, the gene for the body feather color trait has two alleles. The allele for blue body feathers (b) is recessive to the allele for green body feathers (B).\\nIago is a budgerigar parakeet from this group. Iago has the homozygous genotype bb for the body feather color gene.\\nOptions: (A) blue body feathers (B) green body feathers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Iago's genotype for the body feather color gene is bb. Iago's genotype of bb has only b alleles. The b allele is for blue body feathers. So, Iago's phenotype for the body feather color trait must be blue body feathers.\\nTo check this answer, consider whether Iago's alleles are dominant or recessive. The allele for blue body feathers (b) is recessive to the allele for green body feathers (B). This means B is a dominant allele, and b is a recessive allele.\\nIago's genotype of bb has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Iago's phenotype for the body feather color trait must be blue body feathers. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2783\",\n    \"image\": \"2783\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Barbara's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nBarbara glued lids onto 16 cardboard shoe boxes of equal size. She painted eight of the boxes black and eight of the boxes white. Barbara made a small hole in the side of each box and then stuck a thermometer partially into each hole so she could measure the temperatures inside the boxes. She placed the boxes in direct sunlight in her backyard. Two hours later, she measured the temperature inside each box. Barbara compared the average temperature inside the black boxes to the average temperature inside the white boxes.\\nFigure: a shoebox painted black.\\nOptions: (A) Do the temperatures inside boxes depend on the sizes of the boxes? (B) Do the insides of white boxes get hotter than the insides of black boxes when the boxes are left in the sun?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2785\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nmilk going sour\\nbaking a loaf of bread\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are only physical changes. (C) Both are caused by cooling. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nMilk going sour is a chemical change. The type of matter in the milk slowly changes. The new matter that is formed gives the milk its sour taste.\\nBaking a loaf of bread is a chemical change. Bread is made from dough. Baking turns the dough into bread. The bread is a different type of matter than the dough.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBaking is caused by heating. But milk going sour is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2788\",\n    \"image\": \"2788\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes and shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2789\",\n    \"image\": \"2789\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 2. (B) The magnetic force is stronger in Pair 1. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2790\",\n    \"image\": \"2790\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged in a sandy desert?\\nContext: Horned vipers live in the deserts of Africa and the Middle East. The is adapted to be camouflaged in a sandy desert.\\nFigure: horned viper.\\nOptions: (A) Namaqua chameleon (B) fire salamander\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the horned viper.\\nThe horned viper has sand-colored scales covering its body. It is adapted to be camouflaged in a sandy desert. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe Namaqua chameleon has sand-colored scales covering its body. It is adapted to be camouflaged in a sandy desert.\\nThe fire salamander has brightly colored skin. It is not adapted to be camouflaged in a sandy desert. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2791\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Your student,\\nTrent (B) your student,\\nTrent\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2792\",\n    \"image\": \"2792\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) shiny (B) slippery (C) hard\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA hard object does not change shape when pressed or squeezed. All three objects are hard.\\nA slippery object is hard to hold onto or stand on. The building blocks and the magnifying glass are not slippery.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. The metal bar and the magnifying glass are shiny, but the building blocks are not.\\nThe property that all three objects have in common is hard. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2795\",\n    \"image\": \"2795\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Iowa?\\nContext: N/A\\nOptions: (A) Jefferson City (B) Des Moines (C) Madison (D) Cedar Rapids\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Des Moines is the capital of Iowa. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2796\",\n    \"image\": \"2796\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Havana.\\nHavana is the capital of Cuba. The winds there were blowing from the east last weekend.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nHavana is the capital of Cuba. The winds there were blowing from the east last weekend.\\nThe underlined part of the passage tells you about the wind direction in Havana last weekend. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2798\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe brush grabbed at his legs in the dark until one knee of his jeans ripped.\\n\\u2014John Steinbeck, \\\"Flight\\\"\\nContext: N/A\\nOptions: (A) personification (B) allusion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses personification, giving human characteristics to nonhuman things.\\nThe brush grabbed describes the brush as if it were human, with actual hands. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2800\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nColleen asked her mother if she could adopt a cat, and her mother replied, \\\"It's a definite maybe,\\\" so Colleen didn't want to get her hopes up.\\nContext: N/A\\nOptions: (A) euphemism (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nDefinite maybe is a contradiction, because definite describes something that is sure, and maybe refers to something that is unsure. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2814\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Assume all other forces on the slice of pizza are balanced. Which statement describes the forces on the slice of pizza?\\nContext: Quinn and Brad are fighting over the last slice of pizza. Quinn is pulling the slice of pizza to the left with a force of 50N. Brad is pulling the slice of pizza to the right with a force of 45N.\\nOptions: (A) The forces are balanced, so there is no net force on the slice of pizza. (B) The forces are unbalanced, so there is a net force on the slice of pizza.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Every force has a direction and a magnitude, or strength. If two forces act on an object in opposite directions, the forces are called opposing forces.\\nWhen opposing forces have the same magnitude, they are balanced. If all the forces on an object are balanced, there is no net force on the object.\\nWhen opposing forces have different magnitudes, the forces are unbalanced. If any forces on an object are unbalanced, there is a net force on the object. To determine if there is a net force on the slice of pizza, look at the forces:\\nQuinn is pulling the slice of pizza left with a force of 50 N.\\nBrad is pulling the slice of pizza right with a force of 45 N.\\nThe forces are in opposite directions, and the forces have different magnitudes: 50 N and 45 N. This means that the forces are unbalanced, so there is a net force on the slice of pizza. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2817\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the euphemism in this text suggest?\\n\\\"Thank you for your work over the years,\\\" Mrs. Bryant said to her gardener. \\\"As of next week, however, your services will no longer be required.\\\"\\nContext: N/A\\nOptions: (A) The gardener is no longer obligated to work for Mrs. Bryant. (B) The gardener is being fired.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe euphemism your services will no longer be required means that the gardener is being fired. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2822\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nIt is 65\\u00b0F in Jackie's backyard.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nIt is 65\\u00b0F in Jackie's backyard.\\nThis passage tells you about the temperature in Jackie's backyard right now. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2827\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word purse on a dictionary page with the following guide words?\\npatriot - pleasant\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince purse is not between the guide words patriot - pleasant, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2828\",\n    \"image\": \"2828\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Iowa?\\nContext: N/A\\nOptions: (A) Davenport (B) Helena (C) Lansing (D) Des Moines\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Des Moines is the capital of Iowa. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2830\",\n    \"image\": \"2830\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these continents does the prime meridian intersect?\\nContext: N/A\\nOptions: (A) North America (B) Asia (C) Africa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lines of latitude and lines of longitude are imaginary lines drawn on some globes and maps. They can help you find places on globes and maps.\\nLines of latitude show how far north or south a place is. We use units called degrees to describe how far a place is from the equator. The equator is the line located at 0\\u00b0 latitude. We start counting degrees from there.\\nLines north of the equator are labeled N for north. Lines south of the equator are labeled S for south. Lines of latitude are also called parallels because each line is parallel to the equator.\\nLines of longitude are also called meridians. They show how far east or west a place is. We use degrees to help describe how far a place is from the prime meridian. The prime meridian is the line located at 0\\u00b0 longitude. Lines west of the prime meridian are labeled W. Lines east of the prime meridian are labeled E. Meridians meet at the north and south poles.\\nThe equator goes all the way around the earth, but the prime meridian is different. It only goes from the North Pole to the South Pole on one side of the earth. On the opposite side of the globe is another special meridian. It is labeled both 180\\u00b0E and 180\\u00b0W.\\nTogether, lines of latitude and lines of longitude form a grid. You can use this grid to find the exact location of a place. The prime meridian is the line at 0\\u00b0 longitude. It intersects Africa. It does not intersect North America or Asia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2839\",\n    \"image\": \"2839\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Maryland (B) New Jersey (C) Virginia (D) West Virginia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Virginia.\\nThe Virginia Colony included land that would later become part of the state of West Virginia. West Virginia was never its own colony. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2845\",\n    \"image\": \"2845\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the reticulated python.\\nContext: This organism is a reticulated python. Its scientific name is Python reticulatus.\\nOptions: (A) Python bivittatus (B) Python reticulatus (C) Sciurus vulgaris\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A reticulated python's scientific name is Python reticulatus.\\nPython reticulatus has the same scientific name as a reticulated python. So, these organisms are in the same species.\\nSciurus vulgaris does not have the same scientific name as a reticulated python. So, Python reticulatus and Sciurus vulgaris are not in the same species.\\nPython reticulatus is in the same genus as Python bivittatus, but they are not in the same species.\\nOrganisms in the same species have the same scientific names. Python reticulatus and Python bivittatus are different species within the same genus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2857\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word factoid in its traditional sense?\\nContext: N/A\\nOptions: (A) As a geneticist, Julie dislikes many popular sci-fi movies because they often present audiences with factoids that misrepresent her field. (B) As a geneticist, Julie enjoys watching science documentaries and sharing various factoids she's learned with her colleagues.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses factoid in its traditional sense: something made up presented as a true fact.\\nAs a geneticist, Julie dislikes many popular sci-fi movies because they often present audiences with factoids that misrepresent her field.\\nThe first text uses factoid in its nontraditional sense: a trivial but true fact.\\nAs a geneticist, Julie enjoys watching science documentaries and sharing various factoids she's learned with her colleagues.\\nMost style guides recommend to use the traditional sense of the word factoid because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2870\",\n    \"image\": \"2870\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two identical refrigerators in a restaurant kitchen lost power. The door of one fridge was slightly open, and the door of the other fridge was closed. This table shows how the temperature of each refrigerator changed over 10minutes.\\nOptions: (A) each refrigerator . . . the surroundings (B) the surroundings . . . each refrigerator\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each refrigerator increased, which means that the thermal energy of each refrigerator increased. So, thermal energy was transferred from the surroundings to each refrigerator. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2871\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a sofa?\\nContext: Select the best estimate.\\nOptions: (A) 5 feet (B) 5 yards (C) 5 inches\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a sofa is 5 feet.\\n5 inches is too short and 5 yards is too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2876\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three ships. Which ship was moving at the lowest speed?\\nContext: N/A\\nOptions: (A) a ship that moved 190kilometers east in 5hours (B) a ship that moved 315kilometers west in 5hours (C) a ship that moved 325kilometers south in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the slowest will go the shortest distance in that time. It is moving at the lowest speed. Look at the distance each ship moved and the time it took to move that distance. The direction each ship moved does not affect its speed.\\nNotice that each ship moved for 5 hours. The ship that moved 190 kilometers moved the shortest distance in that time. So, that ship must have moved at the lowest speed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2877\",\n    \"image\": \"2877\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is weaker in Pair 2. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is weaker in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is weaker when the magnets are farther apart. Distance affects the strength of the magnetic force. When magnets are farther apart, the magnetic force between them is weaker.\\nThe magnets in Pair 1 are farther apart than the magnets in Pair 2. So, the magnetic force is weaker in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2878\",\n    \"image\": \"2878\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Can Asimina triloba cells make their own food?\\nContext: This organism is Asimina triloba. It is a member of the plant kingdom.\\nAsimina triloba is commonly called the pawpaw. Pawpaw trees grow in the southeastern part of the United States. They have large, sweet fruit. The fruit is sometimes called a prairie banana.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Asimina triloba is a plant. Plant cells can make their own food. Plant cells make food using photosynthesis. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2883\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAnn is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years.\\nContext: N/A\\nOptions: (A) compound-complex (B) complex (C) compound (D) simple\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound-complex. It is made up of two independent clauses and a dependent clause. The dependent clause begins with the relative pronoun which.\\nAnn is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2886\",\n    \"image\": \"2886\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following was a dependent variable in this experiment?\\nContext: The passage below describes an experiment. Read the passage and think about the variables that are described.\\n\\nDr. Hardin collected two species of algae, Chlorella rotunda and Tetraselmis cordiformis. He wanted to know whether one species released more oxygen as it grew than the other species.\\nTo find out, Dr. Hardin prepared six culture tanks. He filled each tank with the same amount of a mixture of water and nutrients. Then, he added 1,000 live algae cells to each tank and sealed the tank. In three of the tanks, he added C. rotunda cells. In the other three, he added T. cordiformis cells. After five days, Dr. Hardin measured the amount of oxygen in each culture tank.\\nHint: An independent variable is a variable whose effect you are investigating. A dependent variable is a variable that you measure.\\nFigure: growing algae in culture tanks.\\nOptions: (A) the amount of oxygen in the tanks (B) the species of algae\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to find out how one variable affects another variable. For example, imagine that you want to find out if fertilizer affects the number of tomatoes a tomato plant grows. To answer this question, you decide to set up two equal groups of tomato plants. Then, you add fertilizer to the soil of the plants in one group but not in the other group. Later, you measure the effect of the fertilizer by counting the number of tomatoes on each plant.\\nIn this experiment, the amount of fertilizer added to the soil and the number of tomatoes were both variables.\\nThe amount of fertilizer added to the soil was an independent variable because it was the variable whose effect you were investigating. This type of variable is called independent because its value does not depend on what happens after the experiment begins. Instead, you decided to give fertilizer to some plants and not to others.\\nThe number of tomatoes was a dependent variable because it was the variable you were measuring. This type of variable is called dependent because its value can depend on what happens in the experiment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2888\",\n    \"image\": \"2888\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) cyclopropane (B) chloroform (C) nitrogen\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2900\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nice melting in a cup\\ndew appearing on grass in the morning\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are only physical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nIce melting in a cup is a change of state. So, it is a physical change. The solid ice becomes liquid, but it is still made of water.\\nThe links between atoms in the water molecules do not change. So, a different type of matter is not formed.\\nDew appearing on grass in the morning is a change of state. So, it is a physical change. Water vapor in the air touches the cool grass and becomes liquid.\\nThe water vapor changes state to become dew, but it is still made of water. A different type of matter is not formed.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nIce melting is caused by heating. But dew appearing on grass is not.\\nBoth are caused by cooling.\\nDew appears when water vapor in the air condenses into a liquid on the grass. This is caused by cooling. But ice melting is not. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2905\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a movie?\\nContext: N/A\\nOptions: (A) \\\"My Brother the Pig\\\" (B) ***My Brother the Pig***\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, or article should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A movie should be in italics.\\nThe correct title is **My Brother the Pig**. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2908\",\n    \"image\": \"2908\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: the Red Sea.\\nThe Red Sea is a popular place for windsurfing. Wind speeds reached 30 miles per hour there on Thursday.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nThe Red Sea is a popular place for windsurfing. Wind speeds reached 30 miles per hour there on Thursday.\\nThe underlined part of the passage tells you about the wind speed at the Red Sea on Thursday. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2921\",\n    \"image\": \"2921\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of blue particles?\\nContext: The diagram below is a model of two solutions. Each blue ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution A (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the blue particles represent the solute. To figure out which solution has a higher concentration of blue particles, look at both the number of blue particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of blue particles per milliliter.\\nSolution A has more blue particles per milliliter. So, Solution A has a higher concentration of blue particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2923\",\n    \"image\": \"2923\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 1. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Both magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2929\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which phrase has a more positive connotation?\\nContext: N/A\\nOptions: (A) an excuse (B) a reason\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Connotation is the feeling or idea that goes along with a word or phrase. Some words are close in meaning but have different connotations.\\nFor example, think about the words eager and impatient. They both mean wanting something to happen, but they have different connotations.\\nEager has a positive connotation. It is a nice word. An eager person is happy and excited.\\nImpatient has a negative connotation. It is not a nice word. An impatient person is often pushy and demanding. A reason has a more positive connotation. An excuse is usually not a very good reason. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2933\",\n    \"image\": \"2933\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) the Dominican Republic (B) Grenada (C) Jamaica (D) Trinidad and Tobago\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Trinidad and Tobago. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2936\",\n    \"image\": \"2936\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Brandon and Derek trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nBrandon and Derek open their lunch boxes in the school cafeteria. Neither Brandon nor Derek got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nBrandon's lunch Derek's lunch\\nOptions: (A) Brandon can trade his tomatoes for Derek's broccoli. (B) Brandon can trade his tomatoes for Derek's carrots. (C) Derek can trade his almonds for Brandon's tomatoes. (D) Derek can trade his broccoli for Brandon's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nBrandon wants broccoli. Derek wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2952\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nThe wind () dispersed the leaves that Evan had spent so long raking.\\nContext: N/A\\nOptions: (A) lightly (B) carelessly\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word carelessly. It describes the wind as if it were a person who didn't care. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2956\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) The groundbreaking movie Toy Story was the first full-length, computer-animated feature film. (B) The totally awesome movie Toy Story was the first full-length, computer-animated feature film.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses slang (totally awesome).\\nThe first sentence uses formal language in place of the slang, so it is more formal overall. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2960\",\n    \"image\": \"2960\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Connor and Maura trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nConnor and Maura open their lunch boxes in the school cafeteria. Neither Connor nor Maura got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nConnor's lunch Maura's lunch\\nOptions: (A) Connor can trade his tomatoes for Maura's carrots. (B) Maura can trade her broccoli for Connor's oranges. (C) Connor can trade his tomatoes for Maura's broccoli. (D) Maura can trade her almonds for Connor's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nConnor wants broccoli. Maura wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2969\",\n    \"image\": \"2969\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2971\",\n    \"image\": \"2971\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month is the coolest on average in Detroit?\\nContext: Use the graph to answer the question below.\\nOptions: (A) January and February (B) November and December (C) June and July\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Temperature is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average temperature for each month. The average temperature can be used to describe the climate of a location.\\nA line graph can be used to show the average temperature each month. Months with higher dots on the graph have higher average temperatures. To describe the average temperature trends in Detroit, look at the graph.\\nChoice \\\"Feb\\\" is incorrect.\\nChoice \\\"Jun\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Nov\\\" is incorrect.\\nChoice \\\"Dec\\\" is incorrect.\\nChoice \\\"Jan\\\" is incorrect.\\nThe average temperatures in January and February are between 25\\u00b0F and 30\\u00b0F. These months have the lowest average temperatures of all of the months. So, they are the coolest months on average. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2976\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Last year, 50,000 people lived in the city of Oak Grove. But since then, 8,000 people have moved away. What probably happened to the overall supply of houses for sale in Oak Grove?\\nContext: N/A\\nOptions: (A) The supply probably went up. (B) The supply probably went down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. The population of Oak Grove fell by 8,000 people. Many of the people who have left are probably trying to sell their houses. Since more people are trying to sell their houses, the number of suppliers of houses for sale in Oak Grove has gone up. So, the supply of houses for sale probably went up, too. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2978\",\n    \"image\": \"2978\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Jamaica (B) Saint Lucia (C) Barbados (D) Saint Vincent and the Grenadines\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Lucia. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2983\",\n    \"image\": \"2983\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution A (B) neither; their concentrations are the same (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution B has more green particles per milliliter. So, Solution B has a higher concentration of green particles. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2993\",\n    \"image\": \"2993\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Nebraska (B) North Dakota (C) Michigan (D) Minnesota\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is North Dakota. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"2994\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a surplus or shortage of peanut butter?\\nContext: A jar of peanut butter costs $6. The grocery store has 100 jars on the shelf. At that price, 74 people want to buy a jar of peanut butter.\\nOptions: (A) surplus (B) shortage\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There is a surplus if there is too much for sale at a given price.\\nThere is a shortage if there is not enough for sale at a given price.\\nSurpluses and shortages usually happen when people who are selling goods or services charge too much or too little.\\nWhen the price is too high, consumers will not want to buy much of the good or service. The quantity demanded will be less than the quantity supplied. So, there will be a surplus.\\nWhen the price is too low, too many consumers will want to buy the good or service. The quantity demanded will be more than the quantity supplied. So, there will be a shortage. At the current price, there are too many jars of peanut butter for sale. There are 100 jars for sale, but only 74 people want to buy a jar.\\nSo, there is a surplus of peanut butter. The grocery store will not get any money for the leftover jars. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3004\",\n    \"image\": \"3004\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Catoctin Mountain Park ecosystem?\\nContext: Figure: Catoctin Mountain Park.\\nCatoctin Mountain Park is a temperate deciduous forest ecosystem in Maryland.\\nOptions: (A) It has cold, wet winters. It also has soil that is rich in nutrients. (B) It has cold, wet winters. It also has soil that is poor in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A temperate deciduous forest is a type of ecosystem. Temperate deciduous forests have the following features: warm, wet summers and cold, wet winters, soil that is rich in nutrients, and only a few types of trees. So, Catoctin Mountain Park has cold, wet winters. It also has soil that is rich in nutrients. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3016\",\n    \"image\": \"3016\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the reptile below.\\nContext: Reptiles have scaly, waterproof skin. Most reptiles live on land. A coral snake is an example of a reptile.\\nOptions: (A) clownfish (B) helmeted iguana\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A clownfish is a fish. It lives underwater. It has fins, not limbs.\\nClownfish live with animals called anemones. In the image of the clownfish, you can see the green anemone behind the clownfish.\\nA helmeted iguana is a reptile. It has scaly, waterproof skin.\\nIguanas are a type of lizard. Iguanas eat plants and fruit. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3020\",\n    \"image\": \"3020\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the common kestrel.\\nContext: This organism is a common kestrel. Its scientific name is Falco tinnunculus.\\nOptions: (A) Falco novaeseelandiae (B) Ardea goliath (C) Haliaeetus pelagicus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A common kestrel's scientific name is Falco tinnunculus. The first word of its scientific name is Falco.\\nArdea goliath is in the genus Ardea. The first word of its scientific name is Ardea. So, Ardea goliath and Falco tinnunculus are not in the same genus.\\nFalco novaeseelandiae is in the genus Falco. The first word of its scientific name is Falco. So, Falco novaeseelandiae and Falco tinnunculus are in the same genus.\\nHaliaeetus pelagicus is in the genus Haliaeetus. The first word of its scientific name is Haliaeetus. So, Haliaeetus pelagicus and Falco tinnunculus are not in the same genus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3022\",\n    \"image\": \"3022\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) Atlanta (B) Los Angeles (C) New York City (D) Houston\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is Los Angeles, California. Atlanta, Houston, and New York City are marked with gray circles on the map below. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3036\",\n    \"image\": \"3036\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample A (C) sample B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in the two samples has the same mass, and the particles in both samples have the same average speed. So, the particles in both samples have the same average kinetic energy.\\nBecause the particles in both samples have the same average kinetic energy, the samples must have the same temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3037\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the least thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 250-gram glass of water at a temperature of 29\\u00b0C (B) a 250-gram glass of water at a temperature of 14\\u00b0C (C) a 250-gram glass of water at a temperature of 16\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. All three glasses of water have the same mass but different temperatures. Since the 14\\u00b0C glass of water is the coldest, it has the least thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3041\",\n    \"image\": \"3041\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following organisms is the decomposer in this food web?\\nContext: Below is a food web from an ocean ecosystem in Monterey Bay, off the coast of California.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) sea otter (B) kelp bass (C) black rockfish (D) bat star\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Decomposers help break down dead organisms into simpler matter, such as nutrients. These nutrients can then help plants and other organisms grow. In a food web, there is an arrow pointing from another organism to a decomposer. There are no arrows pointing from a decomposer to another organism.\\nThe bat star does not have arrows pointing from it to other organisms. So, the bat star is a decomposer.\\nThe sea otter has an arrow pointing from it. So, the sea otter is not a decomposer.\\nThe kelp bass has an arrow pointing from it. So, the kelp bass is not a decomposer.\\nThe sea cucumber does not have arrows pointing from it to other organisms. So, the sea cucumber is a decomposer.\\nThe black rockfish has an arrow pointing from it. So, the black rockfish is not a decomposer. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3044\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the solid.\\nContext: N/A\\nOptions: (A) piece of paper (B) rain (C) air inside a bubble\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid.\\nWhen matter is a gas, it spreads out to fill a space.\\nMany gases are invisible. So, you can\\u2019t see them. Air is a gas. Rain is a liquid. A liquid takes the shape of any container it is in. If you put rainwater into a bucket, the rainwater will take the shape of the bucket. But the rainwater will still take up the same amount of space.\\nThe air inside a bubble is a gas. A gas spreads out to fill a space. The air inside a bubble fills all the space in the bubble. If the bubble pops, the air will spread out to fill a much larger space.\\nA piece of paper is a solid. You can fold a piece of paper. But it will still have a size and shape of its own. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3056\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the hyperbole in this text suggest?\\nThe last time Caleb cleaned his room, dinosaurs were still roaming the Earth.\\nContext: N/A\\nOptions: (A) Caleb hasn't cleaned his room in a very long time. (B) Caleb refuses to clean his room.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode! The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nThe hyperbole dinosaurs were still roaming the Earth suggests that Caleb hasn't cleaned his room in a very long time. He did not actually clean his room millions of years ago when dinosaurs existed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3060\",\n    \"image\": \"3060\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) fluoromethanol (B) tetraphosphorus (C) methane\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3064\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word even on a dictionary page with the following guide words?\\nengineer - except\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince even is between the guide words engineer - except, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3069\",\n    \"image\": \"3069\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3072\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Jackie inherited this trait?\\nContext: Read the description of a trait.\\nJackie has red hair.\\nOptions: (A) Jackie and her mother both wear their hair in braids. (B) Jackie's parents have red hair. They passed down this trait to Jackie.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3077\",\n    \"image\": \"3077\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which air temperature was measured within the outlined area shown?\\nContext: The map below shows air temperatures in the lower atmosphere on April 19, 2016. The outlined area shows an air mass that influenced weather in North America on that day.\\nLook at the map. Then, answer the question below.\\nData source: United States National Oceanic and Atmospheric Administration/Earth System Research Laboratory, Physical Sciences Division\\nOptions: (A) -24\\u00b0C (B) 3\\u00b0C (C) -4\\u00b0C\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"To study air masses, scientists can use maps that show conditions within Earth's atmosphere. For example, the map below uses color to show air temperatures.\\nThe map's legend tells you the temperature that each color represents. Colors on the left in the legend represent lower temperatures than colors on the right. For example, areas on the map that are the darkest shade of blue have a temperature from -25\\u00b0C up to -20\\u00b0C. Areas that are the next darkest shade of blue have a temperature from -20\\u00b0C up to -15\\u00b0C. Look at the colors shown within the outlined area. Then, use the legend to determine which air temperatures those colors represent.\\n15\\u00b0C.\\n-24\\u00b0C is within this range.\\n-4\\u00b0C and 3\\u00b0C are outside of this range. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3088\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a hammer?\\nContext: Select the better estimate.\\nOptions: (A) 21 kilometers (B) 21 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a hammer is 21 centimeters.\\n21 kilometers is too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3089\",\n    \"image\": \"3089\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Tonga (B) Nauru (C) the Federated States of Micronesia (D) Samoa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Samoa. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3093\",\n    \"image\": \"3093\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Minnesota?\\nContext: N/A\\nOptions: (A) New Haven (B) Saint Paul (C) Dover (D) Colorado Springs\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Saint Paul is the capital of Minnesota. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3103\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nWhen I learned the details of Rachel's Faustian bargain, I was in disbelief.\\nContext: N/A\\nOptions: (A) history (B) literature\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Faustian bargain is literature.\\nIn a play by Christopher Marlowe based on the legend of Faust, a man strikes a deal with the devil. Disregarding the long-term consequences of his actions, he sells his soul in exchange for power.\\nThe allusion Faustian bargain means a compromise of one's values for personal gain. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3105\",\n    \"image\": \"3105\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this rocking chair made of?\\nContext: N/A\\nOptions: (A) wood (B) silk\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials. Look at the picture of the rocking chair.\\nThe chair is made of wood.\\nChairs are not always made of wood. Chairs can also be made of plastic or metal. Some chairs are made of several different materials. Are you sitting on a chair? If so, what is it made of? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3107\",\n    \"image\": \"3107\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alabama?\\nContext: N/A\\nOptions: (A) Montgomery (B) Columbus (C) Oklahoma City (D) Birmingham\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montgomery is the capital of Alabama. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3109\",\n    \"image\": \"3109\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is this archosaur's scientific name?\\nContext: This drawing shows a type of archosaur, a dinosaur that grew to be about six feet long. This archosaur's fossil was discovered in rock near the Ghost Ranch Quarry in New Mexico. It was named after the painter Georgia O'Keeffe because she lived nearby.\\nOptions: (A) Effigia okeeffeae (B) Effigia nesbitti\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When a scientist identifies a new organism, he or she chooses its scientific name.\\nSometimes, an organism is named after the place where it was first found. Other times, an organism is named after the scientist who first identified it. Or, the scientific name might describe the organism's physical traits.\\nMany of the words that make up scientific names are based on words from old languages, like Latin and classical Greek. Sometimes, English words are changed to make them sound more like Latin or Greek. The new words are then used in an organism's scientific name. This organism's scientific name refers to Georgia O'Keeffe.\\nThe word okeeffeae refers to Georgia O'Keeffe. So, this archosaur's scientific name is Effigia okeeffeae. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3110\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Rodrigo acquired this trait?\\nContext: Read the description of a trait.\\nRodrigo can ride a bicycle.\\nOptions: (A) Rodrigo and his mother both ride bicycles. (B) Rodrigo's friend showed him how to ride a bicycle. (C) Rodrigo rides his bicycle to school.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3113\",\n    \"image\": \"3113\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Stanley's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nStanley divided 40 evenly among eight paper bags and sealed the bags. He poked 20 small holes in four of the bags and left the other four without holes. He kept the bags at room temperature for three days. Then, Stanley opened the bags and counted the number of brown spots on each banana. He compared the average number of brown spots on bananas from bags with holes to the average number of brown spots on bananas from bags without holes.\\nFigure: unripe bananas.\\nOptions: (A) Do bananas develop more brown spots when they are kept at room temperature compared to in a cold refrigerator? (B) Do bananas develop more brown spots if they are kept in bags with holes compared to bags without holes?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3115\",\n    \"image\": \"3115\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes and shapes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 1. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is smaller in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3118\",\n    \"image\": \"3118\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following fossils is older? Select the more likely answer.\\nContext: This diagram shows fossils in an undisturbed sedimentary rock sequence.\\nOptions: (A) ginkgo leaf (B) insect\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fossil is the preserved evidence of an ancient organism. Some fossils are formed from body parts such as bones or shells. Other fossils, such as footprints or burrows, are formed from traces of an organism's activities.\\nFossils are typically found in sedimentary rocks. Sedimentary rocks usually form in layers. Over time, new layers are added on top of old layers in a series called a rock sequence. The layers in an undisturbed rock sequence are in the same order as when they formed. So, the deeper layers are older than the shallower layers.\\nThe relative ages of fossils can be determined from their positions in an undisturbed rock sequence. Older fossils are usually in deeper layers, and younger fossils are usually in shallower layers. Look again at the fossils in the rock sequence diagram.\\nCompare the positions of these fossils to determine which one is older:\\nThe ginkgo leaf fossil is in a deeper layer in the rock sequence than the insect fossil. So, the ginkgo leaf fossil is most likely older than the insect fossil. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3123\",\n    \"image\": \"3123\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) South Dakota (B) Kansas (C) Illinois (D) Michigan\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is South Dakota. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3125\",\n    \"image\": \"3125\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these organisms contains matter that was once part of the bear sedge?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) Arctic fox (B) barren-ground caribou (C) bilberry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows that starts from the bear sedge.\\nThe only arrow pointing to the barren-ground caribou starts from the lichen. No arrow points to the lichen. So, in this food web, matter does not move from the bear sedge to the barren-ground caribou.\\nNo arrow points to the bilberry. So, in this food web, matter does not move from the bear sedge to the bilberry. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3132\",\n    \"image\": \"3132\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Utah?\\nContext: N/A\\nOptions: (A) Salt Lake City (B) Denver (C) Des Moines (D) Provo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salt Lake City is the capital of Utah. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3138\",\n    \"image\": \"3138\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Haiti (B) Dominica (C) the Dominican Republic (D) Trinidad and Tobago\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Dominica. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3141\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nRudy once fell asleep with the window open and woke up with a horrible migraine. Since then, he's always made sure to close his window before going to sleep.\\nContext: N/A\\nOptions: (A) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences (B) false causation: the assumption that because two things happened together, one caused the other (C) straw man: a misrepresentation of an opponent's position that makes it easier to argue against\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that an open window caused Rudy's migraine. However, that's not necessarily true. For instance, the migraine might have occurred for no particular reason while the window happened to be open. This illustrates a type of logical fallacy known as false causation. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3144\",\n    \"image\": \"3144\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Colorado (B) Montana (C) Washington (D) Pennsylvania\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. Colorado is farthest south. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3147\",\n    \"image\": \"3147\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the text to describe the diagram.\\nSolute particles moved in both directions across the permeable membrane. But more solute particles moved across the membrane (). When there was an equal concentration on both sides, the particles reached equilibrium.\\nContext: The diagram below shows a solution with one solute. Each solute particle is represented by a pink ball. The solution fills a closed container that is divided in half by a membrane. The membrane, represented by a dotted line, is permeable to the solute particles.\\nThe diagram shows how the solution can change over time during the process of diffusion.\\nOptions: (A) to the right than to the left (B) to the left than to the right\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a solution, solute particles move and spread throughout the solvent. The diagram below shows how a solution can change over time. Solute particles move from the area where they are at a higher concentration to the area where they are at a lower concentration. This movement happens through the process of diffusion.\\nAs a result of diffusion, the concentration of solute particles becomes equal throughout the solution. When this happens, the solute particles reach equilibrium. At equilibrium, the solute particles do not stop moving. But their concentration throughout the solution stays the same.\\nMembranes, or thin boundaries, can divide solutions into parts. A membrane is permeable to a solute when particles of the solute can pass through gaps in the membrane. In this case, solute particles can move freely across the membrane from one side to the other.\\nSo, for the solute particles to reach equilibrium, more particles will move across a permeable membrane from the side with a higher concentration of solute particles to the side with a lower concentration. At equilibrium, the concentration on both sides of the membrane is equal. Look at the diagram again. It shows you how the solution changed during the process of diffusion.\\nBefore the solute particles reached equilibrium, there were 3 solute particles on the left side of the membrane and 7 solute particles on the right side of the membrane.\\nWhen the solute particles reached equilibrium, there were 5 solute particles on each side of the membrane. There were 2 more solute particles on the left side of the membrane than before.\\nSo, for the solute particles to reach equilibrium, more solute particles must have moved across the membrane to the left than to the right. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3153\",\n    \"image\": \"3153\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Robert's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nRobert was an aerospace engineer who was developing a parachute for a spacecraft that would land on Mars. He needed to add a vent at the center of the parachute so the spacecraft would land smoothly. However, the spacecraft would have to travel at a high speed before landing. If the vent was too big or too small, the parachute might swing wildly at this speed. The movement could damage the spacecraft.\\nSo, to help decide how big the vent should be, Robert put a parachute with a 1 m vent in a wind tunnel. The wind tunnel made it seem like the parachute was moving at 200 km per hour. He observed the parachute to see how much it swung.\\nFigure: a spacecraft's parachute in a wind tunnel.\\nOptions: (A) how steady a parachute with a 1 m vent was at 200 km per hour (B) if the spacecraft was damaged when using a parachute with a 1 m vent going 200 km per hour (C) whether a parachute with a 1 m vent would swing too much at 400 km per hour\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3156\",\n    \"image\": \"3156\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the Christmas tree worm.\\nContext: This organism is a Christmas tree worm. Its scientific name is Spirobranchus giganteus.\\nOptions: (A) Nerodia clarkii (B) Spirobranchus giganteus (C) Nerodia cyclopion\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A Christmas tree worm's scientific name is Spirobranchus giganteus.\\nNerodia clarkii does not have the same scientific name as a Christmas tree worm. So, Spirobranchus giganteus and Nerodia clarkii are not in the same species.\\nNerodia cyclopion does not have the same scientific name as a Christmas tree worm. So, Spirobranchus giganteus and Nerodia cyclopion are not in the same species.\\nSpirobranchus giganteus has the same scientific name as a Christmas tree worm. So, these organisms are in the same species. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3157\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word disinterested in its traditional sense?\\nContext: N/A\\nOptions: (A) As an experienced teacher of American history, Mr. Patton believes that playing history-based trivia games will revive even the most disinterested of students. (B) As a teacher of American history, Mr. Patton tries to remain disinterested when discussing controversial issues, giving equal attention and consideration to each major viewpoint.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses disinterested in its traditional sense: unbiased or impartial.\\nAs a teacher of American history, Mr. Patton tries to remain disinterested when discussing controversial issues, giving equal attention and consideration to each major viewpoint.\\nThe second text uses disinterested in its nontraditional sense: uninterested or indifferent.\\nAs an experienced teacher of American history, Mr. Patton believes that playing history-based trivia games will revive even the most disinterested of students.\\nMost style guides recommend to use the traditional sense of the word disinterested because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3168\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a newspaper?\\nContext: N/A\\nOptions: (A) east Bay express (B) East Bay Express\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between.\\nThe correct title is East Bay Express. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3174\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Colin decides to join the Photography Club. Which result would be a cost?\\nContext: Colin is deciding whether to join the Photography Club or the Theater Club at school. He wants the club he joins to be fun. But he doesn't want it to take up too much time.\\nOptions: (A) Colin will have more fun in the Photography Club than he would have had in the Theater Club. (B) Colin will spend more time in the Photography Club than he would have spent in the Theater Club.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Colin wants or needs:\\nColin will spend more time in the Photography Club than he would have spent in the Theater Club. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3185\",\n    \"image\": \"3185\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the Indian rock python.\\nContext: This organism is an Indian rock python. Its scientific name is Python molurus.\\nOptions: (A) Python molurus (B) Lacerta agilis (C) Nerodia cyclopion\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n An Indian rock python's scientific name is Python molurus.\\nNerodia cyclopion does not have the same scientific name as an Indian rock python. So, Python molurus and Nerodia cyclopion are not in the same species.\\nPython molurus has the same scientific name as an Indian rock python. So, these organisms are in the same species.\\nLacerta agilis does not have the same scientific name as an Indian rock python. So, Python molurus and Lacerta agilis are not in the same species. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3187\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nVictoria submitted her suggestions to Richard; now the ball is in his court.\\nContext: N/A\\nOptions: (A) Richard needs to act next. (B) Richard has some difficult work to do.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom the ball is in his court suggests that Richard needs to act next. In tennis, when the ball is in a player's court, it is that person's turn. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3193\",\n    \"image\": \"3193\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Eastern Siberian Taiga ecosystem?\\nContext: Figure: East Siberian Taiga.\\nThe Eastern Siberian Taiga is a large forest that covers more than a quarter of Russia. It is home to brown bears, wolves, deer, and other organisms.\\nOptions: (A) It has mostly small plants. (B) It has soil that is rich in nutrients. (C) It has long, cold winters and short, cool summers.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A taiga is a type of ecosystem. Taigas have the following features: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. So, the following statement describes the Eastern Siberian Taiga ecosystem: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. It has long, cold winters and short, cool summers. The following statements do not describe the Eastern Siberian Taiga: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. It has mostly small plants. It has soil that is rich in nutrients. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3196\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What was World War I originally called?\\nContext: N/A\\nOptions: (A) the Great War (B) European War I (C) the European Revolution (D) the First War\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"At first, World War I was called the Great War. People didn't call it World War I until World War II started. They didn't know there would be more than one world war. So, they didn't think they needed to number it.\\nWorld War I is usually considered the first modern, worldwide war. Today, it is usually called World War I or the First World War. It can also be abbreviated as \\\"WWI.\\\" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3197\",\n    \"image\": \"3197\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Heather and Tanner's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nHeather applied a thin layer of wax to the underside of her snowboard and rode the board straight down a hill. Then, she removed the wax and rode the snowboard straight down the hill again. She repeated the rides four more times, alternating whether she rode with a thin layer of wax on the board or not. Her friend Tanner timed each ride. Heather and Tanner calculated the average time it took to slide straight down the hill on the snowboard with wax compared to the average time on the snowboard without wax.\\nFigure: snowboarding down a hill.\\nOptions: (A) Does Heather's snowboard slide down a hill in less time when it has a layer of wax or when it does not have a layer of wax? (B) Does Heather's snowboard slide down a hill in less time when it has a thin layer of wax or a thick layer of wax?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3203\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Dwayne decides to go on the spinning teacups. Which result would be a cost?\\nContext: Dwayne is deciding which ride to go on at the fair. He can go on either the spinning teacups or the scrambler. He wants to have as much fun as possible at the fair.\\nOptions: (A) Dwayne will have more fun on the spinning teacups than he would have had on the scrambler. (B) Dwayne will spend more ride tickets on the spinning teacups than he would have spent on the scrambler.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Dwayne wants or needs:\\nDwayne will spend more ride tickets on the spinning teacups than he would have spent on the scrambler. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3204\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has less thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 150-gram glass of apple juice at a temperature of 5\\u00b0C (B) a 150-gram glass of apple juice at a temperature of 10\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. The two glasses of apple juice have the same mass but different temperatures. Since the 5\\u00b0C glass of apple juice is colder than the 10\\u00b0C glass of apple juice, it has less thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3205\",\n    \"image\": \"3205\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) rough (B) stretchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA rough object feels scratchy when you touch it. Both objects are rough.\\nA stretchy object gets longer when you pull on it. Neither of the objects are stretchy.\\nThe property that both objects have in common is rough. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3210\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) sock (B) truck (C) rock\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the same sound.\\nThe words meet and treat also rhyme. They both end with the same sound, even though the sound has two different spellings.\\nThe words tip and meet don't rhyme. They end with different sounds. The words sock and rock rhyme. They both end with the ock sound.\\nThe word truck does not rhyme. It ends with a different sound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3212\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word is not like the others?\\nContext: N/A\\nOptions: (A) time (B) rain (C) snow (D) sun\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some words are alike. They go together in a group.\\nRed, blue, and green go together. They are colors.\\nMom, dad, grandma, and grandpa go together. They are people in a family. Snow, sun, and rain go together. They are weather words. Time is not a weather word, so it is not like the other words. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3213\",\n    \"image\": \"3213\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait did this aurochs have? Select the trait you can observe on the fossil.\\nContext: This picture shows a fossil of an animal called an aurochs.\\nThe aurochs was hunted by humans and went extinct around 1627. The oldest aurochs fossils are about 2,000,000 years old.\\nOptions: (A) four legs (B) a striped body\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The way an organism looks or acts is called a trait. Scientists use fossils to learn more about the traits of ancient organisms.\\nFossils can preserve the remains of body parts and activities. A fossil of a body part, such as a tail or a wing, can tell you what an organism looked like. A fossil of an organism's activities, such as a burrow or a footprint, can tell you about the organism's behavior.\\nHere are three examples of fossils and the traits that you can observe from them:\\nThis is a fossil of an animal. This fossil tells you that the animal had a spiral-shaped shell.\\nThis is a fossil of a plant. This fossil tells you that the plant had small leaves arranged in a branched pattern.\\nThis is a fossil of an animal's footprint. This fossil tells you that the animal could walk on land.\\nAn organism's fossil may not show all of the organism's traits. This is because most body parts are destroyed during fossil formation. When an organism's body turns into a fossil, only a few body parts are usually preserved. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3215\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Brooke investigate with an experiment?\\nContext: Brooke visits a museum about ancient Greece. She notices an exhibit with models of wooden catapults that were used to launch large rocks across battlefields. She wonders what factors affect how far a catapult can launch an object. So, she decides to design an experiment. She has the following supplies available:\\na wooden catapult with a 10-inch-long arm\\na wooden catapult with a five-inch-long arm\\ntwo identical rubber balls\\nOptions: (A) Does a rubber ball travel farther when launched from a metal catapult or from a wooden catapult? (B) Does a heavier ball travel farther than a lighter ball when launched from a catapult? (C) Does a catapult with a longer arm launch a rubber ball farther than a catapult with a shorter arm?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3217\",\n    \"image\": \"3217\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the reptile below.\\nContext: Reptiles have scaly, waterproof skin. Most reptiles live on land. A box turtle is an example of a reptile.\\nOptions: (A) sea otter (B) tortoise\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A tortoise is a reptile. It has scaly, waterproof skin.\\nA tortoise's shell protects it from predators. When a tortoise feels threatened, it can pull its head and legs inside its shell.\\nA sea otter is a mammal. It has fur and feeds its young milk.\\nSea otters have very thick fur. Their fur keeps them warm in cold water. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3219\",\n    \"image\": \"3219\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What type of rock is scoria?\\nContext: This is a piece of scoria. Scoria is usually formed near volcanoes. It comes from melted rock that is rich in iron and magnesium.\\nDo you see the hollow gaps in this rock? The gaps come from air and water bubbles that became trapped while the melted rock was cooling.\\nOptions: (A) igneous (B) metamorphic (C) sedimentary\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Igneous rock is formed when melted rock cools and hardens into solid rock. This type of change can occur at Earth's surface or below it.\\nSedimentary rock is formed when layers of sediment are pressed together, or compacted, to make rock. This type of change occurs below Earth's surface.\\nMetamorphic rock is formed when a rock is changed by very high temperature and pressure. This type of change often occurs deep below Earth's surface. Over time, the old rock becomes a new rock with different properties. Scoria is an igneous rock. Like other igneous rocks, it forms when melted rock cools and hardens.\\nMelted rock at the earth's surface is called lava. Scoria forms from a type of lava that is rich in iron and magnesium. As the lava erupts from a volcano, it can trap small bubbles of air or water. When the lava becomes solid, the bubbles leave behind gaps in the rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3220\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nMaureen felt intimidated by the steep cliff that she faced on her first rock-climbing adventure.\\nContext: N/A\\nOptions: (A) exclamatory (B) declarative (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement and always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn imperative sentence makes a request or a demand and usually ends with a period. If a demand shows strong feeling, it can end with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn interrogative sentence asks a question and always ends with a question mark.\\nGiven the recent critiques of her new strategic plan, do you think the CEO will reconsider the company's direction?\\nAn exclamatory sentence is a statement that shows surprise or strong feeling. An exclamation always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence is a statement and ends with a period. It is a declarative sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3222\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nRita's shoes are superior, because they're made from one hundred percent snakeskin, not synthetic materials.\\nContext: N/A\\nOptions: (A) appeal to nature: the assumption that natural things are always good (B) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Rita's shoes are the best, because they're made with snakeskin rather than synthetic materials. However, even though the shoes are made from snakes, that doesn't necessarily mean that they are better. This illustrates a type of logical fallacy known as an appeal to nature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3229\",\n    \"image\": \"3229\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these continents does the prime meridian intersect?\\nContext: N/A\\nOptions: (A) North America (B) Africa (C) South America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lines of latitude and lines of longitude are imaginary lines drawn on some globes and maps. They can help you find places on globes and maps.\\nLines of latitude show how far north or south a place is. We use units called degrees to describe how far a place is from the equator. The equator is the line located at 0\\u00b0 latitude. We start counting degrees from there.\\nLines north of the equator are labeled N for north. Lines south of the equator are labeled S for south. Lines of latitude are also called parallels because each line is parallel to the equator.\\nLines of longitude are also called meridians. They show how far east or west a place is. We use degrees to help describe how far a place is from the prime meridian. The prime meridian is the line located at 0\\u00b0 longitude. Lines west of the prime meridian are labeled W. Lines east of the prime meridian are labeled E. Meridians meet at the north and south poles.\\nThe equator goes all the way around the earth, but the prime meridian is different. It only goes from the North Pole to the South Pole on one side of the earth. On the opposite side of the globe is another special meridian. It is labeled both 180\\u00b0E and 180\\u00b0W.\\nTogether, lines of latitude and lines of longitude form a grid. You can use this grid to find the exact location of a place. The prime meridian is the line at 0\\u00b0 longitude. It intersects Africa. It does not intersect North America or South America. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3231\",\n    \"image\": \"3231\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the amphibian below.\\nContext: Amphibians have moist skin and begin their lives in water. An American bullfrog is an example of an amphibian.\\nOptions: (A) common toad (B) catfish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A common toad is an amphibian. It has moist skin and begins its life in water.\\nA catfish is a fish. It lives underwater. It has fins, not limbs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3233\",\n    \"image\": \"3233\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) stretchy (B) rough (C) bouncy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA rough object feels scratchy when you touch it. All three objects are rough.\\nA stretchy object gets longer when you pull on it. The rock and the tree bark are not stretchy.\\nA bouncy object will bounce back from the floor if you drop it. The tree bark and the velcro are not bouncy.\\nThe property that all three objects have in common is rough. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3243\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nEdna never lies. She told me herself, so it must be true.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) straw man: a misrepresentation of an opponent's position that makes it easier to argue against\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Edna is telling the truth because she says she never lies. However, the \\\"evidence\\\" is just a restatement of the claim itself. This illustrates a type of logical fallacy known as circular reasoning. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3246\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) There are some things that Ms. Dotson wants to bring up at the next city council meeting. (B) Ms. Dotson has several important proposals to discuss at the next city council meeting.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses overly simple or imprecise language (some things, bring up).\\nThe second sentence uses more precise language, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3247\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) The farmers pick the corn and beans. (B) The fog made it hard to see, Dad drove slowly.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. The fog made it hard to see, Dad drove slowly is a run-on sentence. It has two sentences that are joined by just a comma: The fog made it hard to see and Dad drove slowly. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3255\",\n    \"image\": \"3255\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of blue particles?\\nContext: The diagram below is a model of two solutions. Each blue ball represents one particle of solute.\\nOptions: (A) Solution B (B) Solution A (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the blue particles represent the solute. To figure out which solution has a higher concentration of blue particles, look at both the number of blue particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of blue particles per milliliter.\\nSolution A has more blue particles per milliliter. So, Solution A has a higher concentration of blue particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3259\",\n    \"image\": \"3259\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Kiribati (B) Tuvalu (C) Tonga (D) the Marshall Islands\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Tuvalu. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3284\",\n    \"image\": \"3284\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Ohio?\\nContext: N/A\\nOptions: (A) Cleveland (B) Columbus (C) Frankfort (D) Jefferson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbus is the capital of Ohio. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3292\",\n    \"image\": \"3292\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) Nashville (B) Houston (C) Charlotte (D) New Orleans\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is Houston, Texas. Nashville, New Orleans, and Charlotte are marked with gray circles on the map below. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3305\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ndare - disturb\\nContext: N/A\\nOptions: (A) devour (B) dread\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince devour is between the guide words dare - disturb, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3311\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nVictoria learns about her ancestors in the book.\\nContext: N/A\\nOptions: (A) present tense (B) past tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, learns. The verb ends in -s and tells you about something that is true or happening now. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3316\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Whenever the Davidsons visit Florida, they see their relatives. (B) The Davidsons see their relatives whenever they visit Florida.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun they could refer to the Davidsons or their relatives.\\nThe Davidsons see their relatives whenever they visit Florida.\\nThe second answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nWhenever the Davidsons visit Florida, they see their relatives. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3318\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nDylan will make cookies with his friends.\\nContext: N/A\\nOptions: (A) future tense (B) present tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, make. The verb tells you about something that is going to happen. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3323\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to drink a small glass of water?\\nContext: Select the better estimate.\\nOptions: (A) 55 hours (B) 55 seconds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to drink a small glass of water is 55 seconds.\\n55 hours is too slow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3327\",\n    \"image\": \"3327\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3330\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Lexi inherited this trait?\\nContext: Read the description of a trait.\\nLexi has naturally black hair.\\nOptions: (A) Some people use a hair dryer to straighten their hair. But Lexi and her brothers have naturally straight hair. (B) Both of Lexi's biological parents have naturally black hair. (C) When she was younger, Lexi wore ribbons in her naturally black hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3336\",\n    \"image\": \"3336\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3337\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three geese. Which goose was moving at the highest speed?\\nContext: N/A\\nOptions: (A) a goose that moved 905kilometers south in 10hours (B) a goose that moved 925kilometers west in 10hours (C) a goose that moved 920kilometers west in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the fastest will go the farthest distance in that time. It is moving at the highest speed. Look at the distance each goose moved and the time it took to move that distance. The direction each goose moved does not affect its speed.\\nNotice that each goose moved for 10 hours. The goose that moved 925 kilometers moved the farthest distance in that time. So, that goose must have moved at the highest speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3339\",\n    \"image\": \"3339\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of North Carolina?\\nContext: N/A\\nOptions: (A) Saint Paul (B) Fargo (C) Raleigh (D) Charlotte\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Raleigh is the capital of North Carolina. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3345\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) dream (B) cream (C) such\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the ip sound.\\nThe words lake and make rhyme. They both end with the ake sound.\\nThe words tip and lake don't rhyme. They end with different sounds. The words cream and dream rhyme. They both end with the eam sound.\\nThe word such does not rhyme. It ends with a different sound. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3347\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nGive Ronald a tour of the building and then take him to Mr. Cain's office.\\nContext: N/A\\nOptions: (A) exclamatory (B) interrogative (C) imperative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells someone to do something, so it is an imperative sentence. Here, it ends with a period. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3351\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word linen on a dictionary page with the following guide words?\\nleather - lying\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince linen is between the guide words leather - lying, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3354\",\n    \"image\": \"3354\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement is true about the average monthly precipitation in Nairobi?\\nContext: Use the graph to answer the question below.\\nOptions: (A) Nairobi gets about the same amount of precipitation each month. (B) More precipitation falls in April than in August. (C) February is the wettest month of the year.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Nairobi, look at the graph.\\nChoice \\\"Feb\\\" is incorrect.\\nChoice \\\"Apr\\\" is incorrect.\\nChoice \\\"Aug\\\" is incorrect.\\nChoice \\\"More precipitation falls in April than in August.\\\" is incorrect.\\nApril has a higher average monthly precipitation than August.\\nChoice \\\"Nairobi gets about the same amount of precipitation each month.\\\" is incorrect.\\nOn average, less precipitation falls between June and October than between November and May.\\nChoice \\\"February is the wettest month of the year.\\\" is incorrect.\\nThe wettest month is the one with the highest average monthly precipitation. April, not February, has the highest average precipitation. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3355\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a cup of hot cocoa?\\nContext: Select the better estimate.\\nOptions: (A) 70\\u00b0F (B) 70\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a cup of hot cocoa is 70\\u00b0C.\\n70\\u00b0F is too cold. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3377\",\n    \"image\": \"3377\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of purple particles?\\nContext: The diagram below is a model of two solutions. Each purple ball represents one particle of solute.\\nOptions: (A) Solution B (B) Solution A (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the purple particles represent the solute. To figure out which solution has a higher concentration of purple particles, look at both the number of purple particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of purple particles per milliliter.\\nSolution A has more purple particles per milliliter. So, Solution A has a higher concentration of purple particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3379\",\n    \"image\": \"3379\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month has the lowest average precipitation in London?\\nContext: Use the graph to answer the question below.\\nOptions: (A) July (B) November (C) February\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in London, look at the graph.\\nChoice \\\"Feb\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Nov\\\" is incorrect.\\nJuly has an average monthly precipitation of about 45 millimeters. This is lower than in any other month. So, July has the lowest average precipitation. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3383\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a pen?\\nContext: Select the better estimate.\\nOptions: (A) 19 centimeters (B) 19 kilometers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a pen is 19 centimeters.\\n19 kilometers is too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3385\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Last year, there were seven men's clothing stores on Main Street in Fairview. This year, there are only three. What probably happened to the overall supply of men's shirts in Fairview?\\nContext: N/A\\nOptions: (A) The supply probably went up. (B) The supply probably went down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. When four men's clothing stores closed on Main Street, the number of suppliers went down. There were fewer stores selling men's shirts. So, the supply of men's shirts probably went down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3387\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Molly inherited this trait?\\nContext: Read the description of a trait.\\nMolly has brown eyes.\\nOptions: (A) Molly's hair is the same color as her brown eyes. (B) Molly's father has brown eyes. He passed this trait down to Molly.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3395\",\n    \"image\": \"3395\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Zachary's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nZachary put one two-inch steel nail into each of six test tubes. He added water to three of the test tubes and vinegar to the other three. In each test tube, he completely covered the nail with the same volume of liquid. Zachary checked the nails for rust at the same time every day. He recorded how many days it took each nail to become completely covered in rust. Then, he compared the number of days it took nails to rust in water to the number of days it took nails to rust in vinegar.\\nFigure: a new steel nail on a pile of rusty nails.\\nOptions: (A) Do steel nails take fewer days to rust in water compared to vinegar? (B) Do steel nails rust in fewer days when submerged in a large volume of liquid compared to a small volume?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3398\",\n    \"image\": \"3398\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Kiribati (B) Nauru (C) the Marshall Islands (D) Solomon Islands\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Marshall Islands.\\nDoes the Marshall Islands have any territorial disputes?\\nThe Marshall Islands claims to own Wake Island, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nThe United States claimed Wake Island in 1899 and has controlled it since then. But the Marshall Islands considers the island part of its territory. It says that its people have traveled to the island to gather food and resources for many years. Today, the island is mainly used by the U.S. Air Force. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3413\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nRuth is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years.\\nContext: N/A\\nOptions: (A) complex (B) compound-complex (C) compound (D) simple\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound-complex. It is made up of two independent clauses and a dependent clause. The dependent clause begins with the relative pronoun which.\\nRuth is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3418\",\n    \"image\": \"3418\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) Louisiana (B) Ohio (C) Maine (D) Tennessee\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. Maine is farthest east. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3428\",\n    \"image\": \"3428\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) sticky (B) salty (C) colorful\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nPotato chips have a salty taste. All three objects are salty.\\nA colorful object has one or more bright colors. None of the objects are colorful.\\nA sticky object can attach or stick to other things. None of the objects are sticky.\\nThe property that all three objects have in common is salty. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3430\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nPamela warned her youngest son not to cry wolf while wrestling with his older brother.\\nContext: N/A\\nOptions: (A) U.S. history (B) a fable\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion cry wolf is a fable.\\nIn the fable \\\"The Boy Who Cried Wolf,\\\" a shepherd boy repeatedly tricks people in his village by falsely claiming that a wolf is coming to eat his flock. When a wolf actually comes and the boy cries for help, nobody believes him or comes to his aid.\\nThe allusion cry wolf means to raise a false alarm. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3431\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) The tailor measures the length of the pant leg. (B) I need to shovel this snow, or someone might slip and fall.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction or.\\nI need to shovel this snow, or someone might slip and fall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3433\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nSodium iodide is ().\\nContext: Sodium iodide can be used to help treat certain types of cancer. The chemical formula for sodium iodide is NaI.\\nOptions: (A) an elementary substance (B) a compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nThe atomic symbol for each chemical element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one atomic symbol.\\nThe atomic symbol in a chemical formula may be followed by a small number written lower than the symbol. This number is called a subscript. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript shows how many atoms are in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen, O2, has a subscript of 2. This subscript shows that the atomic symbol O represents two atoms. The elementary substance O2 and the chemical element represented by the atomic symbol O are both named oxygen. So, the formula tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple atomic symbols.\\nThe chemical elements in a compound are bonded together in a fixed ratio. This ratio is shown in a compound's chemical formula.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. So, the ratio of beryllium atoms to fluorine atoms is 1 to 2. This ratio is shown in the chemical formula for beryllium fluoride, BeF2. There is no subscript following the atomic symbol Be because that symbol represents one atom. The subscript 2 follows the atomic symbol F to show that the symbol represents two atoms. You can tell whether sodium iodide is an elementary substance or a compound by counting the number of atomic symbols in its chemical formula. An atomic symbol consists of either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for sodium iodide, NaI, contains two atomic symbols: Na for sodium and I for iodine. So, the formula tells you that sodium iodide is composed of two chemical elements bonded together.\\nSince sodium iodide is composed of multiple chemical elements bonded together, sodium iodide is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3434\",\n    \"image\": \"3434\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged in a sandy desert?\\nContext: Bearded dragons are lizards that live in the deserts of Australia. The is adapted to be camouflaged in a sandy desert.\\nFigure: bearded dragon.\\nOptions: (A) horned viper (B) blue poison dart frog\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the bearded dragon.\\nThe bearded dragon has a sand-colored body. It is adapted to be camouflaged in a sandy desert. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe horned viper has sand-colored scales covering its body. It is adapted to be camouflaged in a sandy desert.\\nThe blue poison dart frog has brightly colored skin. It is not adapted to be camouflaged in a sandy desert. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3436\",\n    \"image\": \"3436\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Vivian and Jamal trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nVivian and Jamal open their lunch boxes in the school cafeteria. Neither Vivian nor Jamal got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nVivian's lunch Jamal's lunch\\nOptions: (A) Vivian can trade her tomatoes for Jamal's broccoli. (B) Jamal can trade his broccoli for Vivian's oranges. (C) Vivian can trade her tomatoes for Jamal's carrots. (D) Jamal can trade his almonds for Vivian's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nVivian wants broccoli. Jamal wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3439\",\n    \"image\": \"3439\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Antarctica (B) North America (C) Asia (D) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Europe. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3442\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nDon't ever get a ride from Mia. Her brother has been driving for only six months, and he's already gotten three speeding tickets.\\nContext: N/A\\nOptions: (A) guilt by association: a negative association intended to discredit someone or something (B) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Mia must be a reckless driver, because her brother is a reckless driver. However, even though Mia's brother is reckless, that doesn't necessarily mean that Mia is, too. This illustrates a type of logical fallacy known as guilt by association. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3451\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nI must have eaten too much of Sean's homemade chili, because now I'm so full I could explode!\\nContext: N/A\\nOptions: (A) oxymoron (B) hyperbole\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nSo full I could explode is an exaggeration, since it is clear that the speaker is not actually in danger of exploding. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3455\",\n    \"image\": \"3455\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nevada?\\nContext: N/A\\nOptions: (A) Las Vegas (B) Reno (C) Cheyenne (D) Carson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Carson City is the capital of Nevada. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3468\",\n    \"image\": \"3468\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Texas (B) Maryland (C) Michigan (D) Rhode Island\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. Texas is farthest south. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3472\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which would smell more?\\nContext: N/A\\nOptions: (A) metal license plate (B) gasoline\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Smelly is a property. A smelly material has a strong smell.\\nLook at each picture, one at a time. Imagine smelling the material shown in each picture.\\nOf the choices, the gasoline would smell more. Gasoline has a strong smell. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3476\",\n    \"image\": \"3476\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a crown a solid or a liquid?\\nContext: N/A\\nOptions: (A) a liquid (B) a solid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid and liquid are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid. A crown is a solid. A solid has a size and shape of its own.\\nIf you put a crown on your head, the crown will keep its shape. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3479\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take for an ice cube to melt on a hot sidewalk?\\nContext: Select the better estimate.\\nOptions: (A) 4 hours (B) 4 minutes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes for an ice cube to melt on a hot sidewalk is 4 minutes.\\n4 hours is too slow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3481\",\n    \"image\": \"3481\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the gray tree frog.\\nContext: This organism is a gray tree frog. Its scientific name is Hyla versicolor.\\nOptions: (A) Hyla cinerea (B) Atelopus zeteki (C) Hemidactylus turcicus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A gray tree frog's scientific name is Hyla versicolor. The first word of its scientific name is Hyla.\\nAtelopus zeteki is in the genus Atelopus. The first word of its scientific name is Atelopus. So, Atelopus zeteki and Hyla versicolor are not in the same genus.\\nHemidactylus turcicus is in the genus Hemidactylus. The first word of its scientific name is Hemidactylus. So, Hemidactylus turcicus and Hyla versicolor are not in the same genus.\\nHyla cinerea is in the genus Hyla. The first word of its scientific name is Hyla. So, Hyla cinerea and Hyla versicolor are in the same genus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3484\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird.\\nContext: N/A\\nOptions: (A) box turtle (B) emu (C) piranha (D) sea otter\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds have feathers, two wings, and a beak. An emu is a bird. It has feathers, two wings, and a beak.\\nEmus cannot fly, but they can run very fast. They run to avoid predators.\\nA box turtle is a reptile. It has scaly, waterproof skin.\\nBox turtles can live to be over 100 years old!\\nA sea otter is a mammal. It has fur and feeds its young milk.\\nSea otters have very thick fur. Their fur keeps them warm in cold water.\\nA piranha is a fish. It lives underwater. It has fins, not limbs.\\nPiranhas have sharp teeth. Piranhas hunt in groups. A group of piranhas can eat a large animal. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3485\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Deb decides to eat the sunflower seeds. Which result would be a cost?\\nContext: Deb is deciding whether to eat sunflower seeds or apple crisp for an afternoon snack. She would like to eat something tasty, but she is also trying to be healthier.\\nOptions: (A) Deb will get to eat the sunflower seeds. The sunflower seeds will be healthier than the apple crisp would have been. (B) Deb will give up the chance to eat the apple crisp. Deb thinks apple crisp would have tasted better than sunflower seeds will.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Deb wants or needs:\\nDeb will give up the chance to eat the apple crisp. Deb thinks apple crisp would have tasted better than sunflower seeds will. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3486\",\n    \"image\": \"3486\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's mouth is also adapted to eat plant matter?\\nContext: Kudus are herbivores, or plant eaters. They eat leaves and shoots. The 's mouth is adapted to grind up and eat plant matter.\\nFigure: kudu.\\nOptions: (A) spotted deer (B) Nile crocodile\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the kudu.\\nThe kudu has long jaws and flat teeth. Its mouth is adapted to eat plant matter. The long jaws can help the kudu reach leaves and shoots. The flat teeth can help it cut and grind up the food into soft pieces it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe spotted deer has long jaws and flat teeth. Its mouth is adapted to eat plant matter.\\nThe Nile crocodile has a large mouth and sharp teeth. Its mouth is not adapted to eat plant matter. The Nile crocodile uses its mouth to eat other animals. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3492\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) See you soon,\\nDale (B) see you soon,\\nDale\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3494\",\n    \"image\": \"3494\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Janice and Abdul trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nJanice and Abdul open their lunch boxes in the school cafeteria. Neither Janice nor Abdul got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nJanice's lunch Abdul's lunch\\nOptions: (A) Abdul can trade his almonds for Janice's tomatoes. (B) Janice can trade her tomatoes for Abdul's carrots. (C) Janice can trade her tomatoes for Abdul's broccoli. (D) Abdul can trade his broccoli for Janice's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nJanice wants broccoli. Abdul wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3495\",\n    \"image\": \"3495\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Atlantic Ocean (B) the Indian Ocean (C) the Southern Ocean (D) the Pacific Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Southern Ocean.\\nThe Southern Ocean reaches from the shores of Antarctica to 60\\u00b0 South latitude. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3498\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mixture.\\nContext: N/A\\nOptions: (A) caramel corn (B) silver\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A pure substance is made of only one type of matter.\\nA mixture is made of two or more types of matter mixed together. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3504\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nwater evaporating from a puddle\\ndust settling out of the air\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are caused by heating. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nWater evaporating from a puddle is a change of state. So, it is a physical change. The liquid changes into a gas, but a different type of matter is not formed.\\nDust settling out of the air is a physical change. As the dust settles, or falls, it might land on furniture or the ground. This separates dust particles from the air, but does not form a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nWater evaporating is caused by heating. But dust settling out of the air is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3505\",\n    \"image\": \"3505\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which term matches the picture?\\nContext: Read the text.\\nInvertebrates make up the majority of Earth's living things, but there are many different groups, or phyla, of invertebrates. Jellyfish and sea anemone, for example, are both part of the phylum Cnidaria. Cnidaria comes from a Greek word that means \\\"nettle,\\\" a stinging type of plant. Cnidarians are known for the tentacles that surround their mouths, which they use to sting and capture prey. All species that belong in the Cnidaria phyla live exclusively in the ocean.\\nAnother phylum of invertebrates found only in oceans is the Echinodermata, a term that comes from Greek words meaning \\\"spiny\\\" and \\\"skin.\\\" Echinoderms, members of this phylum, have stiff bodies and often have stiff, sharp spines covering their skins. Unlike a cnidarian's wavy tentacles, these spines are used for protection, not to capture prey.\\nOptions: (A) echinoderm (B) cnidarian\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An echinoderm is a type of sea invertebrate that usually has sharp or spiky skin. A sea urchin is a type of echinoderm. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3507\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Rover's phenotype for the fur length trait?\\nContext: In a group of dogs, some individuals have short fur and others have long fur. In this group, the gene for the fur length trait has two alleles. The allele F is for short fur, and the allele f is for long fur.\\nRover, a dog from this group, has long fur. Rover has two alleles for long fur.\\nOptions: (A) ff (B) long fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Rover's observable version of the fur length trait is long fur. So, Rover's phenotype for the fur length trait is long fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3514\",\n    \"image\": \"3514\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Logan's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nLogan put one two-inch steel nail into each of six test tubes. He added water to three of the test tubes and vinegar to the other three. In each test tube, he completely covered the nail with the same volume of liquid. Logan checked the nails for rust at the same time every day. He recorded how many days it took each nail to become completely covered in rust. Then, he compared the number of days it took nails to rust in water to the number of days it took nails to rust in vinegar.\\nFigure: a new steel nail on a pile of rusty nails.\\nOptions: (A) Do steel nails rust in fewer days when submerged in a large volume of liquid compared to a small volume? (B) Do steel nails take fewer days to rust in water compared to vinegar?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3515\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear aunt Lucy, (B) Dear Aunt Lucy,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Aunt Lucy is capitalized because it is a proper noun. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3518\",\n    \"image\": \"3518\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) sample A (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3523\",\n    \"image\": \"3523\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) transparent (B) smooth\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA smooth object is not scratchy or rough. The silk tie is smooth.\\nYou can see clearly through a transparent object. The silk tie is not transparent. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3530\",\n    \"image\": \"3530\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 1. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3534\",\n    \"image\": \"3534\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 1. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3539\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nMost of the people who knew Dale considered him to be an unrepentant Casanova.\\nContext: N/A\\nOptions: (A) Greek mythology (B) history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Casanova is history.\\nThe autobiography of Giovanni Giacomo Casanova, an eighteenth-century Italian adventurer, details and perhaps exaggerates his amorous adventures and success with women.\\nThe allusion Casanova means a womanizer. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3541\",\n    \"image\": \"3541\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Indian Ocean (B) the Arctic Ocean (C) the Pacific Ocean (D) the Southern Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Southern Ocean.\\nThe Southern Ocean reaches from the shores of Antarctica to 60\\u00b0 South latitude. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3542\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) We went to Texas we saw an old fort. (B) A bag of beans.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. We went to Texas we saw an old fort is a run-on sentence. It has two sentences that are joined without end punctuation: We went to Texas and We saw an old fort. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3544\",\n    \"image\": \"3544\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) soft (B) fragile (C) scratchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA scratchy object is rough and itchy against your skin. None of the objects are scratchy.\\nA soft object changes shape when pressed or squeezed. None of the objects are soft.\\nA fragile object will break into pieces if you drop it. All three objects are fragile.\\nThe property that all three objects have in common is fragile. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3549\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\nAccording to Mr. Long's kids, his snoring is as quiet as a jackhammer.\\nContext: N/A\\nOptions: (A) The snoring occurs in bursts. (B) The snoring is loud.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAs quiet as a jackhammer suggests that the snoring is loud. A jackhammer is not quiet, and neither is Mr. Long's snoring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3558\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nDespite centuries of decay, the ancient structure still stands tall and ().\\nContext: N/A\\nOptions: (A) proud (B) straight\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word proud. It describes the ancient structure as if it were a person with a sense of pride. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3567\",\n    \"image\": \"3567\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with black fur to offspring with brown fur? Choose the most likely ratio.\\nContext: In a group of rabbits, some individuals have black fur and others have brown fur. In this group, the gene for the fur color trait has two alleles. The allele for brown fur (f) is recessive to the allele for black fur (F).\\nThis Punnett square shows a cross between two rabbits.\\nOptions: (A) 0:4 (B) 1:3 (C) 2:2 (D) 3:1 (E) 4:0\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with black fur or brown fur, consider whether each phenotype is the dominant or recessive allele's version of the fur color trait. The question tells you that the f allele, which is for brown fur, is recessive to the F allele, which is for black fur.\\nBlack fur is the dominant allele's version of the fur color trait. A rabbit with the dominant version of the fur color trait must have at least one dominant allele for the fur color gene. So, offspring with black fur must have the genotype FF or Ff.\\nThere are 3 boxes in the Punnett square with the genotype FF or Ff. These boxes are highlighted below.\\nBrown fur is the recessive allele's version of the fur color trait. A rabbit with the recessive version of the fur color trait must have only recessive alleles for the fur color gene. So, offspring with brown fur must have the genotype ff.\\nThere is 1 box in the Punnett square with the genotype ff. This box is highlighted below.\\nSo, the expected ratio of offspring with black fur to offspring with brown fur is 3:1. This means that, on average, this cross will produce 3 offspring with black fur for every 1 offspring with brown fur. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3576\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nwater evaporating from a lake\\nstretching a rubber band\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by heating. (C) Both are caused by cooling. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nWater evaporating from a lake is a change of state. So, it is a physical change. The liquid changes into a gas, but a different type of matter is not formed.\\nStretching a rubber band is a physical change. The rubber band gets longer. But it is still made of the same type of matter as before.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nWater evaporating is caused by heating. But stretching a rubber band is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3583\",\n    \"image\": \"3583\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Idaho (B) Wyoming (C) Utah (D) California\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Idaho. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3593\",\n    \"image\": \"3593\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the blue jay.\\nContext: This organism is a blue jay. Its scientific name is Cyanocitta cristata.\\nOptions: (A) Cyanocitta cristata (B) Larus michahellis (C) Goura victoria\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A blue jay's scientific name is Cyanocitta cristata.\\nLarus michahellis does not have the same scientific name as a blue jay. So, Cyanocitta cristata and Larus michahellis are not in the same species.\\nGoura victoria does not have the same scientific name as a blue jay. So, Cyanocitta cristata and Goura victoria are not in the same species.\\nCyanocitta cristata has the same scientific name as a blue jay. So, these organisms are in the same species. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3604\",\n    \"image\": \"3604\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maine?\\nContext: N/A\\nOptions: (A) Portland (B) Burlington (C) Augusta (D) Madison\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Augusta is the capital of Maine. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3609\",\n    \"image\": \"3609\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the great gray owl.\\nContext: This organism is a great gray owl. Its scientific name is Strix nebulosa.\\nOptions: (A) Neofelis nebulosa (B) Cyanea capillata (C) Strix varia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A great gray owl's scientific name is Strix nebulosa. The first word of its scientific name is Strix.\\nCyanea capillata is in the genus Cyanea. The first word of its scientific name is Cyanea. So, Cyanea capillata and Strix nebulosa are not in the same genus.\\nNeofelis nebulosa and Strix nebulosa are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Neofelis nebulosa and Strix nebulosa have the same species name within their genus, nebulosa. But the first words of their scientific names are different. Neofelis nebulosa is in the genus Neofelis, and Strix nebulosa is in the genus Strix.\\nStrix varia is in the genus Strix. The first word of its scientific name is Strix. So, Strix varia and Strix nebulosa are in the same genus. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3611\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nI can't believe this is Janet's first time seeing the Pacific Ocean!\\nContext: N/A\\nOptions: (A) interrogative (B) exclamatory (C) declarative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells about something, but it shows surprise and ends with an exclamation point. It is an exclamatory sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3629\",\n    \"image\": \"3629\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to the text, what evidence of a volcanic eruption did the captain observe?\\nContext: Before sunrise on November 14, 1963, the crew of the fishing boat Isleifur II had just finished putting their fishing lines in the ocean off the southern coast of Iceland. As the crew waited to have breakfast, a strong smell of sulfur drifted over the boat. At first, crew members thought that the cook had burned the eggs or that something was wrong with the boat's engine. But when the sun started to rise, the crew saw black smoke billowing from the water a few kilometers away.\\nThe captain of the Isleifur II first thought the smoke was coming from a boat that was on fire, so he sailed closer to try to help. But as the Isleifur II approached the column of smoke, the captain and crew saw glowing pieces of molten rock shooting up out of the water. The captain realized this was not a burning boat. It was a volcano erupting under the water!\\nFigure: the erupting undersea volcano seen by the sailors on the Isleifur II.\\nOptions: (A) He heard a report on the radio warning about a volcanic eruption. (B) He saw a nearby boat that was on fire. (C) He smelled sulfur and saw pieces of molten rock shooting out of the water.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3633\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nAkiko teaches Norma about customs in Japan.\\nContext: N/A\\nOptions: (A) past tense (B) future tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, teaches. The verb ends in -es and tells you about something that is true or happening now. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3634\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The city of Ashland has been one of the world's biggest makers of cough drops for many years. But last month, Ashland's cough drop factories were destroyed by floods. What will probably happen to the overall supply of cough drops?\\nContext: N/A\\nOptions: (A) The supply will probably go up. (B) The supply will probably go down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. Floods destroyed the cough drop factories in Ashland. The number of producers of cough drops went down. So, the supply of cough drops will probably go down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3643\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Sebastian inherited this trait?\\nContext: Read the description of a trait.\\nSebastian has straight hair.\\nOptions: (A) Sebastian's parents were born with straight hair. They passed down this trait to Sebastian. (B) Sebastian and his father both have short hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3650\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Lauren decides to go as a superhero. Which result would be a cost?\\nContext: Lauren is deciding whether to go as a vampire or a superhero to a costume party. She would rather go as a vampire. But she already has a superhero costume.\\nOptions: (A) Lauren will save some time and money. She won't have to go out and get a new costume. (B) Lauren will give up the chance to wear the costume she is more excited about.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Lauren wants or needs:\\nLauren will give up the chance to wear the costume she is more excited about. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3654\",\n    \"image\": \"3654\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Florida?\\nContext: N/A\\nOptions: (A) Denver (B) Tallahassee (C) Tampa (D) Orlando\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Tallahassee is the capital of Florida. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3656\",\n    \"image\": \"3656\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Bill and Anita trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nBill and Anita open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Bill wanted broccoli in his lunch and Anita was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Anita can trade her almonds for Bill's tomatoes. (B) Anita can trade her broccoli for Bill's oranges. (C) Bill can trade his tomatoes for Anita's broccoli. (D) Bill can trade his tomatoes for Anita's sandwich.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Bill wanted broccoli in his lunch and Anita was hoping for tomatoes. Look at the labeled part of the images.\\nBill has tomatoes. Anita has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3660\",\n    \"image\": \"3660\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) blue (B) sticky (C) fuzzy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nBlue is a color.\\nThis color is blue. The kiwi and the stuffed dice are not blue.\\nA fuzzy object is covered in soft hair. All three objects are fuzzy.\\nA sticky object can attach or stick to other things. The socks and the stuffed dice are not sticky.\\nThe property that all three objects have in common is fuzzy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3669\",\n    \"image\": \"3669\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Carter's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nCarter put one two-inch steel nail into each of six test tubes. He added water to three of the test tubes and vinegar to the other three. In each test tube, he completely covered the nail with the same volume of liquid. Carter checked the nails for rust at the same time every day. He recorded how many days it took each nail to become completely covered in rust. Then, he compared the number of days it took nails to rust in water to the number of days it took nails to rust in vinegar.\\nFigure: a new steel nail on a pile of rusty nails.\\nOptions: (A) Do steel nails take fewer days to rust in water compared to vinegar? (B) Do steel nails rust in fewer days when submerged in a large volume of liquid compared to a small volume?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3679\",\n    \"image\": \"3679\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Nampa (B) Denver (C) Dover (D) Phoenix\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3681\",\n    \"image\": \"3681\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 1. (B) The magnetic force is stronger in Pair 2. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 2 are closer together than the magnets in Pair 1. So, the magnetic force is stronger in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3682\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one true statement.\\nContext: N/A\\nOptions: (A) Vacuoles store nutrients, water, and waste in plant cells. (B) The cell membrane of an animal cell contains the master plan for cell activities and cell development. (C) The chromosomes of a plant cell use sunlight to make sugar.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3683\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Jill investigate with an experiment?\\nContext: Jill visits a museum about ancient Greece. She notices an exhibit with models of wooden catapults that were used to launch large rocks across battlefields. She wonders what factors affect how far a catapult can launch an object. So, she decides to design an experiment. She has the following supplies available:\\na wooden catapult with a 10-inch-long arm\\na wooden catapult with a five-inch-long arm\\ntwo identical rubber balls\\nOptions: (A) Does a catapult with a longer arm launch a rubber ball farther than a catapult with a shorter arm? (B) Does a rubber ball travel farther when launched from a metal catapult or from a wooden catapult? (C) Does a heavier ball travel farther than a lighter ball when launched from a catapult?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3688\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Clarence investigate with an experiment?\\nContext: After Clarence cleans up a spill, he hangs a wet cloth towel in the laundry room. Two hours later, he notices that the towel has partially dried. He wonders what factors affect how cloth dries. So, he decides to design an experiment. He has the following supplies available:\\ntwo identical white cloth towels\\nwater\\na clothesline in the laundry room\\na clothesline in the backyard\\nOptions: (A) Do cloth towels dry faster if they are hung in the laundry room or in the backyard? (B) When hung in the laundry room, do black cloth towels or white cloth towels dry more quickly? (C) Does a small cloth towel or a large cloth towel dry faster when hung in the backyard?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3692\",\n    \"image\": \"3692\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the Venn diagram, which statement is true of Leonardo da Vinci?\\nContext: This Venn diagram compares two famous Renaissance artists.\\nOptions: (A) He was from Florence. (B) He created David.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A graphic organizer is a chart or picture that shows how ideas, facts, or topics are related to one another.\\nWhen you read, look for graphic organizers included in the text. You can use these images to find key information. You can also create your own graphic organizers with information that you've read. Doing this can help you think about the ideas in the text and easily review them.\\nWhen you write, you can use graphic organizers to organize your thoughts and plan your writing. In a Venn diagram, each circle shows information that is true for a particular topic. In any area where circles overlap, the information is true for all of the overlapping topics. This Venn diagram compares two famous Renaissance artists.\\nThe detail from Florence appears in the Leonardo da Vinci circle. This tells you that he was from Florence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3701\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a fish bowl?\\nContext: Select the better estimate.\\nOptions: (A) 3 liters (B) 3 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a fish bowl is 3 liters.\\n3 milliliters is too little. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3703\",\n    \"image\": \"3703\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of yellow particles?\\nContext: The diagram below is a model of two solutions. Each yellow ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution B (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the yellow particles represent the solute. To figure out which solution has a higher concentration of yellow particles, look at both the number of yellow particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of yellow particles per milliliter.\\nSolution B has more yellow particles per milliliter. So, Solution B has a higher concentration of yellow particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3710\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nPhosphorus tribromide is ().\\nContext: Phosphorus tribromide is used to make certain types of medicine. The chemical formula for phosphorus tribromide is PBr3.\\nOptions: (A) a compound (B) an elementary substance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nThe atomic symbol for each chemical element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one atomic symbol.\\nThe atomic symbol in a chemical formula may be followed by a small number written lower than the symbol. This number is called a subscript. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript shows how many atoms are in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen, O2, has a subscript of 2. This subscript shows that the atomic symbol O represents two atoms. The elementary substance O2 and the chemical element represented by the atomic symbol O are both named oxygen. So, the formula tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple atomic symbols.\\nThe chemical elements in a compound are bonded together in a fixed ratio. This ratio is shown in a compound's chemical formula.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. So, the ratio of beryllium atoms to fluorine atoms is 1 to 2. This ratio is shown in the chemical formula for beryllium fluoride, BeF2. There is no subscript following the atomic symbol Be because that symbol represents one atom. The subscript 2 follows the atomic symbol F to show that the symbol represents two atoms. You can tell whether phosphorus tribromide is an elementary substance or a compound by counting the number of atomic symbols in its chemical formula. An atomic symbol consists of either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for phosphorus tribromide, PBr3, contains two atomic symbols: P for phosphorus and Br for bromine. So, the formula tells you that phosphorus tribromide is composed of two chemical elements bonded together.\\nSince phosphorus tribromide is composed of multiple chemical elements bonded together, phosphorus tribromide is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3716\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this fruit fly's genotype for the wing type gene?\\nContext: This passage describes the wing type trait in fruit flies:\\n\\nIn a group of fruit flies, some individuals have normal wings and others have vestigial wings. In this group, the gene for the wing type trait has two alleles. The allele N is for normal wings, and the allele n is for vestigial wings.\\nA certain fruit fly from this group has vestigial wings. This fly has two alleles for vestigial wings.\\nOptions: (A) vestigial wings (B) nn\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. The fruit fly has two alleles for vestigial wings (n). So, the fly's genotype for the wing type gene is nn. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3721\",\n    \"image\": \"3721\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Jennifer and Scarlett's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nJennifer and Scarlett were making batches of concrete for a construction project. To make the concrete, they mixed together dry cement powder, gravel, and water. Then, they checked if each batch was firm enough using a test called a slump test.\\nThey poured some of the fresh concrete into an upside-down metal cone. They left the concrete in the metal cone for 30 seconds. Then, they lifted the cone to see if the concrete stayed in a cone shape or if it collapsed. If the concrete in a batch collapsed, they would know the batch should not be used.\\nFigure: preparing a concrete slump test.\\nOptions: (A) if a new batch of concrete was firm enough to use (B) if the concrete from each batch took the same amount of time to dry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3727\",\n    \"image\": \"3727\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of West Virginia?\\nContext: N/A\\nOptions: (A) Charleston (B) Baton Rouge (C) Portland (D) Huntington\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Charleston is the capital of West Virginia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3733\",\n    \"image\": \"3733\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a coffee mug a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a gas (B) a liquid (C) a solid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids are thicker than others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. The oxygen you breathe is a gas. The helium in a balloon is also a gas. A coffee mug is a solid. A solid has a size and shape of its own.\\nWhen you pour coffee into a coffee mug, the mug keeps its shape. If you drop a coffee mug, it may break into pieces. But each piece will still have a size and shape of its own. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3736\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMr. Wells argues that we need to do more to prevent workplace injuries and fatalities. I doubt that someone so socially awkward would know a thing about office safety.\\nContext: N/A\\nOptions: (A) ad hominem: a personal attack against one's opponent (B) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that being socially awkward determines knowledge of workplace safety. This is a personal attack that isn't relevant to Mr. Wells's desire to prevent workplace injuries. This illustrates a type of logical fallacy known as ad hominem. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3745\",\n    \"image\": \"3745\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which i in column 3?\\nContext: N/A\\nOptions: (A) the school (B) the park (C) the pond (D) the gas station\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A grid is made up of lines of squares. They are organized in rows and columns. A grid can help you use a map.\\nA row is a line of squares that goes from side to side. Rows are marked with letters.\\nA column is a line of squares that goes up and down. Columns are marked with numbers. The school is in column 3. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3750\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bowl of oatmeal has a lower temperature?\\nContext: Two bowls of oatmeal are identical except for their thermal energies.\\nOptions: (A) the bowl of oatmeal with less thermal energy (B) the bowl of oatmeal with more thermal energy\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two bowls of oatmeal are made of the same material and have the same mass. So, the bowl of oatmeal with less thermal energy has a lower temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3751\",\n    \"image\": \"3751\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Africa (B) South America (C) Europe (D) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Europe. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3752\",\n    \"image\": \"3752\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the painting, which was true about ironclads?\\nContext: The Union and Confederacy built many new ships during the Civil War. This is a painting of the first battle between two ironclads, the CSS Virginia and the USS Monitor. Use it to answer the question below.\\nOptions: (A) They were powered by oars. (B) They didn't have weapons. (C) They were made of metal. (D) They used sails.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Notice how the two ironclads have smooth, reflective surfaces. Ironclads gained their name because they were made of metal. Iron is a type of metal. Before the Civil War, naval ships were made of wood. Metal ships such as ironclads were stronger than ships made of wood. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3758\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Gwen acquired this trait?\\nContext: Read the description of a trait.\\nGwen has a scar on her right elbow.\\nOptions: (A) Gwen's sister has a bruise from falling on her elbow. (B) Gwen's scar is on her right elbow. Her father also has a scar on his right elbow. (C) Gwen's scar was caused by an accident. She cut her arm when she fell off her bicycle.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3762\",\n    \"image\": \"3762\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Vermont?\\nContext: N/A\\nOptions: (A) Burlington (B) Montpelier (C) Annapolis (D) Philadelphia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montpelier is the capital of Vermont. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3773\",\n    \"image\": \"3773\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 1. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is stronger in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3774\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is the Red Sea?\\nContext: Select the best estimate.\\nOptions: (A) 2,240 meters (B) 2,240 kilometers (C) 2,240 centimeters (D) 2,240 millimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of the Red Sea is 2,240 kilometers.\\n2,240 millimeters, 2,240 centimeters, and 2,240 meters are all too short. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3775\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Mandy investigate with an experiment?\\nContext: Mandy gets a basketball for her birthday and dribbles it around her neighborhood. She notices that sometimes the ball bounces higher than other times. She wonders what factors affect how high her ball bounces. So, she decides to design an experiment. She has the following supplies available:\\none basketball\\naccess to a brick patio\\naccess to a grassy lawn\\naccess to a gravel driveway\\na meterstick\\nOptions: (A) Does the basketball bounce higher on gravel or on grass? (B) Do larger basketballs bounce higher than smaller basketballs on a brick patio? (C) Does the basketball bounce higher on a lawn or on a dirt path?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3783\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that the water balloon's mass did not change.\\nThe gravitational potential energy stored between the water balloon and Earth () as the water balloon fell toward Alec.\\nContext: Read the text about an object in motion.\\nClara dropped a water balloon off a balcony. The water balloon fell toward her friend Alec, who was standing below the balcony.\\nOptions: (A) stayed the same (B) decreased (C) increased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between the water balloon and the center of Earth changed.\\nAlec was lower than the balcony. As the water balloon fell toward Alec, the distance between the water balloon and the center of Earth decreased. So, the gravitational potential energy stored between the water balloon and Earth decreased as the water balloon fell toward Alec. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3788\",\n    \"image\": \"3788\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this push?\\nContext: A baseball player hits the ball with his bat. His bat pushes the ball into the outfield.\\nOptions: (A) away from the baseball bat (B) toward the baseball bat\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"One object can make another object move with a push or a pull.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. Hitting a baseball with a bat is a type of push. The baseball player hits the ball away from his bat. The ball flies into the field. The direction of the push is away from the baseball bat. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3789\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is an adult great white shark?\\nContext: Select the best estimate.\\nOptions: (A) 5 kilometers (B) 5 meters (C) 5 millimeters (D) 5 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of an adult great white shark is 5 meters.\\n5 millimeters and 5 centimeters are too short. 5 kilometers is too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3797\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word terribly in its traditional sense?\\nContext: N/A\\nOptions: (A) Candice made escargots using the small snails from her garden. She prepared them according to the recipe but found the chewy texture terribly disappointing. (B) Candice decided to make escargots using the small snails from her garden, but she prepared them terribly. Since she'd forgotten to add garlic, the taste was disappointing.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses terribly in its traditional sense: in a terrible manner.\\nCandice decided to make escargots using the small snails from her garden, but she prepared them terribly. Since she'd forgotten to add garlic, the taste was disappointing.\\nThe first text uses terribly in its nontraditional sense: extremely; very.\\nCandice made escargots using the small snails from her garden. She prepared them according to the recipe but found the chewy texture terribly disappointing.\\nMost style guides recommend to use the traditional sense of the word terribly because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3810\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In which place would you usually find more farms?\\nContext: N/A\\nOptions: (A) a suburban area (B) a rural area\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People around the world live in three main kinds of places: urban areas, suburban areas, and rural areas.\\nAn urban area is a city. It has many people and businesses. The buildings are close to each other. The buildings are often tall and have many floors. Since there are so many people, traffic is usually bad. People will walk or take the bus, train, or subway to avoid traffic.\\nA suburban area, or suburb, is near a city. It is quieter and less crowded than an urban area. People usually live in houses with yards. Most people drive to get places.\\nA rural area is less crowded than both urban and suburban areas. Houses are much more spread out. People usually have to drive to get places. People in rural areas often live on farms or ranches.\\nSome places, like small towns, don't really fit into any of the types. A small town does not have as many people as an urban area, but it has more people than a rural area. It is not near a city, so it is not called a suburb. Farms are almost always in rural areas. They take up a lot of space. Rural areas have a lot of open space. There aren't many buildings or people. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3813\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a tennis racket?\\nContext: Select the best estimate.\\nOptions: (A) 55 millimeters (B) 55 kilometers (C) 55 meters (D) 55 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a tennis racket is 55 centimeters.\\n55 millimeters is too short. 55 meters and 55 kilometers are too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3815\",\n    \"image\": \"3815\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of pink particles?\\nContext: The diagram below is a model of two solutions. Each pink ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the pink particles represent the solute. To figure out which solution has a higher concentration of pink particles, look at both the number of pink particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of pink particles per milliliter.\\nSolution A has more pink particles per milliliter. So, Solution A has a higher concentration of pink particles. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3823\",\n    \"image\": \"3823\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution A (B) Solution B (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution B has more green particles per milliliter. So, Solution B has a higher concentration of green particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3840\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word is not like the others?\\nContext: N/A\\nOptions: (A) brother (B) daughter (C) son (D) teacher\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some words are alike. They go together in a group.\\nRed, blue, and green go together. They are colors.\\nMom, dad, grandma, and grandpa go together. They are people in a family. Daughter, brother, and son go together. They are people in a family. Teacher is not a person in a family, so it is not like the other words. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3844\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does the sentence use a simile or a metaphor?\\nMrs. Robertson is an owl, working at night and sleeping during the day.\\nContext: N/A\\nOptions: (A) metaphor (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. Mrs. Robertson is an owl, working at night and sleeping during the day.\\nThe words Mrs. Robertson and owl are compared without the word like or as. So, the sentence uses a metaphor. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3846\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three cars. Which car was moving at the lowest speed?\\nContext: N/A\\nOptions: (A) a car that moved 250miles east in 5hours (B) a car that moved 65miles south in 5hours (C) a car that moved 300miles north in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the slowest will go the shortest distance in that time. It is moving at the lowest speed. Look at the distance each car moved and the time it took to move that distance. The direction each car moved does not affect its speed.\\nNotice that each car moved for 5 hours. The car that moved 65 miles moved the shortest distance in that time. So, that car must have moved at the lowest speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3848\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word blessing on a dictionary page with the following guide words?\\nbillow - brown\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince blessing is between the guide words billow - brown, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3852\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the allusion in this text suggest?\\nThe swordsman achieved a pyrrhic victory, defeating his opponent while incurring mortal wounds of his own.\\nContext: N/A\\nOptions: (A) The victory came at a great cost. (B) The victory was quick and efficient.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked. The text uses an allusion, a brief reference to someone or something well known.\\nThe allusion pyrrhic victory means that the victory came at a great cost. A pyrrhic victory is a victory that is so costly that it could actually be considered a failure. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3860\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Choose the poem that uses anaphora.\\nContext: From Kahlil Gibran, \\\"Defeat\\\" and from George Marion McClellan, \\\"A January Dandelion\\\"\\nOptions: (A) You and I shall laugh together with the storm,\\nAnd together we shall dig graves for all that die in us,\\nAnd we shall stand in the sun with a will,\\nAnd we shall be dangerous. (B) All Nashville is a chill. And everywhere\\nLike desert sand, when the winds blow,\\nThere is each moment sifted through the air,\\nA powdered blast of January snow.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Poets often use the sounds of words to create interesting effects and to express moods and emotions. Understanding these elements of poetry can help you better interpret and appreciate poetic forms.\\nAnaphora is the repetition of words or sequences of words at the beginning of multiple phrases, sentences, or lines.\\nOut of the cradle endlessly rocking,\\nOut of the mocking-bird's throat, the musical shuttle,\\nOut of the Ninth-month midnight\\n\\u2014From Walt Whitman, \\\"Out of the Cradle Endlessly Rocking\\\"\\nOnomatopoeia is when language sounds like what it talks about.\\nSometimes the onomatopoeia uses made-up words:\\nTlot-tlot! tlot-tlot! Had they heard it? The horse hoofs ringing clear.\\n\\u2014From Alfred Noyes, \\\"The Highwayman\\\"\\nSometimes the onomatopoeia uses real words:\\nHark! the honey bee is humming.\\n\\u2014From Mary Howitt, \\\"The Voice of Spring\\\"\\nAlliteration is when beginning consonant sounds are repeated in words that are close together.\\nWhere the wild men watched and waited\\nWolves in the forest, and bears in the bush.\\n\\u2014From Bayard Taylor, \\\"A Night with a Wolf\\\"\\nAssonance is the repetition of vowel sounds. Often, assonance can create rhymes or near-rhymes within lines.\\nI wandered lonely as a Cloud\\nThat floats on high o'er Vales and Hills,\\nWhen all at once I saw a crowd,\\nA host of golden Daffodils.\\n\\u2014From William Wordsworth, \\\"I Wandered Lonely as a Cloud\\\"\\nMeter is a poem's rhythm, or the pattern of strong and weak syllables. Strong syllables are stressed, while weak syllables are unstressed.\\nA poem has an iambic meter when the beat sounds like da-DUM. A weak syllable is followed by a strong syllable. Occasionally, a line may begin with a strong syllable.\\nHe watches from his mountain walls,\\nAnd like a thunderbolt he falls.\\n\\u2014From Alfred, Lord Tennyson, \\\"The Eagle\\\"\\nA poem has a trochaic meter when the beat sounds like DUM-da. A strong syllable is followed by a weak syllable. Occasionally, a line may end in a strong syllable.\\nBack into the chamber turning, all my soul within me burning,\\nSoon again I heard a tapping somewhat louder than before.\\n\\u2014From Edgar Allen Poe, \\\"The Raven\\\"\\nFree verse is when a poem has neither a regular rhythm nor a rhyme pattern.\\nThe old bridge has a wrinkled face.\\nHe bends his back\\nFor us to go over.\\n\\u2014From Hilda Conkling, \\\"The Old Bridge\\\"\\nThe syllables in bold are strong. You can see this poem does not have a regular rhythm. It also doesn't have a rhyme pattern. This poem uses anaphora. It repeats the same word or words at the beginning of multiple lines or phrases.\\nAnd we shall be dangerous. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3864\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\nWhile waiting for her search results, Katie exclaimed, \\\"My Internet connection is as speedy as a snail!\\\"\\nContext: N/A\\nOptions: (A) The Internet connection was very slow. (B) Katie was patiently waiting for an Internet connection.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAs speedy as a snail suggests that the Internet connection was very slow. A snail is not speedy, and neither was Katie's Internet connection. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3866\",\n    \"image\": \"3866\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Carter's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nCarter was installing solar panels on the roof of a client's house. The panels had to provide enough electricity to power the house year-round. Carter needed to decide how many panels to install and which side of the roof to install them on. If he put the panels on the side that got the most sun, then he could use fewer panels, and the client would save money. Carter installed sunlight sensors on both sides of the roof. Then, he measured the amount of sunlight the sensors on each side of the roof recorded over one sunny summer day.\\nFigure: installing solar panels on a roof.\\nOptions: (A) the amount of sunlight the roof would get throughout the year (B) how many solar panels could fit on each side of the roof (C) which side of the roof got more sun over one day\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3869\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\n\\\"Erica is such a Pollyanna!\\\" Jon announced with a sigh.\\nContext: N/A\\nOptions: (A) British history (B) literature\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Pollyanna is literature.\\nThe character Pollyanna, from Eleanor Porter's children's book, is a young girl who finds good in everything and everyone.\\nThe allusion Pollyanna means an overly optimistic person. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3873\",\n    \"image\": \"3873\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is smaller in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nBoth magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3875\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nConsider yourself fortunate that you missed the test.\\nContext: N/A\\nOptions: (A) imperative (B) interrogative (C) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement and always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn imperative sentence makes a request or a demand and usually ends with a period. If a demand shows strong feeling, it can end with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn interrogative sentence asks a question and always ends with a question mark.\\nGiven the recent critiques of her new strategic plan, do you think the CEO will reconsider the company's direction?\\nAn exclamatory sentence is a statement that shows surprise or strong feeling. An exclamation always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence makes a demand, so it is an imperative sentence. Here, it ends with a period. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3877\",\n    \"image\": \"3877\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these oceans does the prime meridian intersect?\\nContext: N/A\\nOptions: (A) the Atlantic Ocean (B) the Indian Ocean (C) the Pacific Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lines of latitude and lines of longitude are imaginary lines drawn on some globes and maps. They can help you find places on globes and maps.\\nLines of latitude show how far north or south a place is. We use units called degrees to describe how far a place is from the equator. The equator is the line located at 0\\u00b0 latitude. We start counting degrees from there.\\nLines north of the equator are labeled N for north. Lines south of the equator are labeled S for south. Lines of latitude are also called parallels because each line is parallel to the equator.\\nLines of longitude are also called meridians. They show how far east or west a place is. We use degrees to help describe how far a place is from the prime meridian. The prime meridian is the line located at 0\\u00b0 longitude. Lines west of the prime meridian are labeled W. Lines east of the prime meridian are labeled E. Meridians meet at the north and south poles.\\nThe equator goes all the way around the earth, but the prime meridian is different. It only goes from the North Pole to the South Pole on one side of the earth. On the opposite side of the globe is another special meridian. It is labeled both 180\\u00b0E and 180\\u00b0W.\\nTogether, lines of latitude and lines of longitude form a grid. You can use this grid to find the exact location of a place. The prime meridian is the line at 0\\u00b0 longitude. It intersects the Atlantic Ocean. It does not intersect the Indian Ocean or the Pacific Ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3882\",\n    \"image\": \"3882\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait does this red squirrel have?\\nContext: This image shows a Eurasian red squirrel.\\nOptions: (A) It has fins. (B) It has fur.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3883\",\n    \"image\": \"3883\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Kiara and Fernando trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nKiara and Fernando open their lunch boxes in the school cafeteria. Neither Kiara nor Fernando got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nKiara's lunch Fernando's lunch\\nOptions: (A) Kiara can trade her tomatoes for Fernando's carrots. (B) Fernando can trade his broccoli for Kiara's oranges. (C) Kiara can trade her tomatoes for Fernando's broccoli. (D) Fernando can trade his almonds for Kiara's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nKiara wants broccoli. Fernando wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3885\",\n    \"image\": \"3885\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of North Dakota?\\nContext: N/A\\nOptions: (A) Fargo (B) Bismarck (C) Columbus (D) Saint Louis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Bismarck is the capital of North Dakota. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3888\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two ships. Which ship was moving at a lower speed?\\nContext: N/A\\nOptions: (A) a ship that moved 350kilometers in 5hours (B) a ship that moved 245kilometers in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving slower will go a shorter distance in that time. It is moving at a lower speed. Look at the distance each ship moved and the time it took to move that distance.\\nOne ship moved 245 kilometers in 5 hours.\\nThe other ship moved 350 kilometers in 5 hours.\\nNotice that each ship spent the same amount of time moving. The ship that moved 245 kilometers moved a shorter distance in that time. So, that ship must have moved at a lower speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3901\",\n    \"image\": \"3901\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) Louisiana (B) North Dakota (C) North Carolina (D) Arizona\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. North Carolina is farthest east. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3903\",\n    \"image\": \"3903\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) Asia (C) North America (D) Antarctica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Antarctica. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3913\",\n    \"image\": \"3913\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alaska?\\nContext: N/A\\nOptions: (A) Helena (B) Juneau (C) Olympia (D) Fairbanks\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Juneau is the capital of Alaska. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3914\",\n    \"image\": \"3914\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's neck is also adapted for hunting prey while keeping the rest of its body still?\\nContext: Saddle-billed storks live near wetlands and lakes. They eat mostly fish.\\nThe 's neck helps it grab fish while keeping the rest of its body still. If the stork had to move its body, it might scare the fish away.\\nFigure: saddle-billed stork.\\nOptions: (A) northern pintail (B) black-headed heron\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's neck is one example of an adaptation. Animals' necks can be adapted in different ways. For example, a large frilled neck might help an animal appear dangerous to its predators. A long neck might help an animal get food from tall trees. Look at the picture of the saddle-billed stork.\\nThe saddle-billed stork has a long neck. Its neck is adapted for hunting prey while keeping the rest of its body still. This allows the saddle-billed stork to grab the prey without scaring it away.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe black-headed heron has a long neck. Its neck is adapted for hunting prey while keeping the rest of its body still.\\nThe northern pintail has a short neck. Its neck is not adapted for hunting prey while keeping the rest of its body still. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3920\",\n    \"image\": \"3920\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nDistance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3921\",\n    \"image\": \"3921\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Maine (B) Massachusetts (C) Michigan (D) Delaware\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. Delaware is farthest south. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3925\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nJasmine lives in a windy place.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nJasmine lives in a windy place.\\nThis passage tells you about the usual amount of wind where Jasmine lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3934\",\n    \"image\": \"3934\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this experiment, which were part of a control group?\\nContext: The passage below describes an experiment.\\n\\nLuther's young son drew all over the living room wall with crayons! Luther wanted to find a way to remove the crayon markings. Based on what he read online, he decided to see if scrubbing a wall with baking soda could help remove crayon.\\nLuther dipped a sponge in water and used it to scrub the crayon on a small section of the wall. He dipped a second sponge in water, sprinkled it with baking soda, and used it to scrub the crayon on another section of the wall. He observed how much crayon was removed from each section. Luther repeated this test two more times on other sections of the wall.\\nFigure: scrubbing a crayon drawing off a wall.\\nOptions: (A) the sections of wall scrubbed with water and baking soda (B) the sections of wall scrubbed with water only\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to investigate whether changing a variable between different groups has a specific outcome.\\nFor example, imagine you want to find out whether adding fertilizer to soil affects the height of pea plants. You could investigate this question with the following experiment:\\nYou grow one group of pea plants in soil with fertilizer and measure the height of the plants. This group shows you what happens when fertilizer is added to soil. Since fertilizer is the variable whose effect you are investigating, this group is an experimental group.\\nYou grow another group of pea plants in soil without fertilizer and measure the height of the plants. Since this group shows you what happens when fertilizer is not added to the soil, it is a control group.\\nBy comparing the results from the experimental group to the results from the control group, you can conclude whether adding fertilizer to the soil affects pea plant height. In this experiment, Luther investigated whether baking soda can remove crayon from a wall. The sections of wall scrubbed with water only did not get baking soda. So, they were part of a control group. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3951\",\n    \"image\": \"3951\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Georgia (B) New Hampshire (C) South Carolina (D) West Virginia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Georgia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3956\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Read the following excerpt from a student essay. How can the writer best improve his or her academic voice?\\nMany people don't recycle because throwing things away is easier, even though doing so can be damaging to the environment. People are lazy and selfish, always wanting what is good for themselves, not necessarily what is good for society. As a result, many people do not take the steps that are required to recycle different materials. For example, some towns require residents to sort items before leaving them at the curbside; this causes some to skip recycling altogether, even though doing so is unethical.\\nContext: N/A\\nOptions: (A) by avoiding first-person pronouns (B) by including technical terms (C) by maintaining an objective tone\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"During peer review, you read and respond to a fellow student's writing. While there are many methods and strategies that you can use for reviewing a text, it is generally helpful to frame your suggestions in concrete and constructive ways and to consider the following areas for revision:\\nIdeas and development: Does the writer express a clear idea and develop it with evidence, examples, or analysis?\\nOrganization: Does the writer order ideas in a clear, logical way so that they build on one another and are easy to follow?\\nVoice: Does the writer maintain an appropriate voice, such as a formal and objective voice in an academic essay or an engaging and expressive voice in a narrative essay?\\nSentence fluency: Does the writer use sentences that vary in structure and length to create a sense of rhythm and flow within and between sentences, or does the writing sound choppy, rambling, or repetitive?\\nWord choice: Does the writer use words accurately and precisely to create clear, effective, and engaging writing?\\nGrammar and mechanics: Does the writer follow appropriate conventions, using accurate spelling, punctuation, and grammar to create writing that is correct and easy to read? The writer could best improve his or her academic voice by maintaining an objective tone.\\nFor example, the writer could revise the underlined text.\\nMany people don't recycle because throwing things away is easier, even though doing so can be damaging to the environment. People are lazy and selfish, always wanting what is good for themselves, not necessarily what is good for society. As a result, many people do not take the steps that are required to recycle different materials. For example, some towns require residents to sort items before leaving them at the curbside; this causes some to skip recycling altogether, even though doing so is unethical. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3963\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Read the following excerpt from a student essay. How can the writer best improve his or her ideas and development?\\nWearing a bicycle helmet is the best way to protect yourself against fatal head injuries. Several studies have shown that riders who wore helmets had a reduction in their risk of head and brain injuries. More and better bike lanes in our cities would help protect cyclists from danger. Children especially benefit from wearing helmets, since they experience the majority of bicycling accidents that cause serious head injuries.\\nContext: N/A\\nOptions: (A) by including more evidence to support the claim (B) by removing a second main idea (C) by clearly stating the main idea\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"During peer review, you read and respond to a fellow student's writing. While there are many methods and strategies that you can use for reviewing a text, it is generally helpful to frame your suggestions in concrete and constructive ways and to consider the following areas for revision:\\nIdeas and development: Does the writer express a clear idea and develop it with evidence, examples, or analysis?\\nOrganization: Does the writer order ideas in a clear, logical way so that they build on one another and are easy to follow?\\nVoice: Does the writer maintain an appropriate voice, such as a formal and objective voice in an academic essay or an engaging and expressive voice in a narrative essay?\\nSentence fluency: Does the writer use sentences that vary in structure and length to create a sense of rhythm and flow within and between sentences, or does the writing sound choppy, rambling, or repetitive?\\nWord choice: Does the writer use words accurately and precisely to create clear, effective, and engaging writing?\\nGrammar and mechanics: Does the writer follow appropriate conventions, using accurate spelling, punctuation, and grammar to create writing that is correct and easy to read? The writer could best improve his or her ideas and development by removing a second main idea.\\nFor example, the writer could remove the underlined text and focus only on the main idea: the importance of wearing bicycle helmets.\\nWearing a bicycle helmet is the best way to protect yourself against fatal head injuries. Several studies have shown that riders who wore helmets had a reduction in their risk of head and brain injuries. More and better bike lanes in our cities would help protect cyclists from danger. Children especially benefit from wearing helmets, since they experience the majority of bicycling accidents that cause serious head injuries. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3964\",\n    \"image\": \"3964\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Okefenokee Swamp ecosystem?\\nContext: Figure: Okefenokee Swamp.\\nThe Okefenokee Swamp is a wetland ecosystem in Georgia and Florida.\\nOptions: (A) It has land that is covered with water during most of the year. It also has soil that is rich in nutrients. (B) It has soil that is poor in nutrients. It also has only a few types of organisms.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A wetland is a type of ecosystem. Wetlands have the following features: land that is covered with water during most of the year, soil that is rich in nutrients, and other water ecosystems nearby. So, the Okefenokee Swamp has land that is covered with water during most of the year. It also has soil that is rich in nutrients. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3965\",\n    \"image\": \"3965\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk.\\nMammals are warm-blooded. Warm-blooded animals can control their body temperature.\\nA koala is an example of a mammal.\\nOptions: (A) brown tree frog (B) red crowned crane (C) great white shark (D) red kangaroo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A brown tree frog is an amphibian. It has moist skin and begins its life in water.\\nThere are many kinds of tree frogs. Most tree frogs are very small. They can walk on thin branches.\\nA great white shark is a fish. It lives underwater. It has fins, not limbs.\\nGreat white sharks can live for up to 70 years.\\nA red crowned crane is a bird. It has feathers, two wings, and a beak.\\nCranes wade in shallow water to look for food. Cranes eat insects, worms, and plants.\\nA red kangaroo is a mammal. It has fur and feeds its young milk.\\nKangaroos hop to move around. They use their large tails for balance while hopping. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3968\",\n    \"image\": \"3968\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's common name?\\nContext: This organism is Haliaeetus pelagicus. It is also called a Steller's sea eagle.\\nOptions: (A) Steller's sea eagle (B) Haliaeetus pelagicus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Haliaeetus pelagicus is written in italics. The first word is capitalized, and the second word is not. So, it is the scientific name.\\nHaliaeetus pelagicus is the organism's scientific name. So, you know that Steller's sea eagle is the common name. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3972\",\n    \"image\": \"3972\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Saint Vincent and the Grenadines (B) Saint Lucia (C) Barbados (D) Grenada\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Vincent and the Grenadines. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3973\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nCutting your fingernails is a ().\\nContext: N/A\\nOptions: (A) physical change (B) chemical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two ways matter can change.\\nIn a chemical change, the type of matter changes.\\nBurning a piece of paper is a chemical change. The paper changes into ash and smoke.\\nIn a physical change, the type of matter stays the same.\\nCutting a piece of paper is a physical change. The cut pieces are still made of paper.\\nIce melting is also a physical change. When ice melts, it changes from a solid to a liquid. But both ice and liquid water are made of the same type of matter: water! This kind of change is called a change of state. Cutting your fingernails is a physical change. Your fingernails are shorter after you cut them. But the pieces are still made of the same type of matter as the uncut fingernails. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3983\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Marvin acquired this trait?\\nContext: Read the description of a trait.\\nMarvin speaks two languages.\\nOptions: (A) Marvin's mother speaks one language. (B) Marvin learned to speak two languages in school.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3988\",\n    \"image\": \"3988\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) shiny (B) translucent (C) soft\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. All three objects are shiny.\\nA soft object changes shape when pressed or squeezed. None of the objects are soft.\\nA translucent object lets light through. But you cannot see clearly through a translucent object. The sapphire is translucent, but the car bumper and the metal bar are not.\\nThe property that all three objects have in common is shiny. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3993\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nSidney told her friends that Desmond was a typical Peter Pan type.\\nContext: N/A\\nOptions: (A) literature (B) a song\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Peter Pan is literature.\\nIn a J. M. Barrie novel, the character Peter Pan retreats to Neverland and refuses to grow up.\\nThe allusion Peter Pan means a person who won't take on adult responsibilities. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"3995\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nWhere Desmond lives, winds blowing from the northeast are rare in July.\\nContext: N/A\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nWhere Desmond lives, winds blowing from the northeast are rare in July.\\nThis passage tells you about the usual wind pattern where Desmond lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4003\",\n    \"image\": \"4003\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this pull?\\nContext: There is a magnet on each of these toy train cars. Each magnet attracts the other with a magnetic force. The force from the first train car pulls the second train car along behind it.\\nOptions: (A) away from the first train car (B) toward the first train car\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to another. Every force has a direction.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The magnet on the first train car pulls the second train car. The direction of the pull is toward the first train car. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4009\",\n    \"image\": \"4009\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which part of the orange tree makes the seeds?\\nContext: An adult orange tree can grow seeds.\\nOptions: (A) the flowers (B) the fruit\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Many plants have flowers. These plants can use their flowers to reproduce, or make new plants like themselves. How do plants use their flowers to reproduce?\\nFirst, the male part of the flower makes pollen, and the female part makes eggs. Animals, wind, or water can move pollen. Pollination is what happens when pollen is moved to the female part of the flower.\\nAfter pollination, sperm from the pollen can combine with the eggs. This is called fertilization. The fertilized eggs grow into seeds. The fruit grows around the seeds. Later, a seed can fall out of the fruit. It can germinate, or start to grow into a new plant. Flowers make seeds. After a flower is pollinated, male cells from the pollen combine with eggs. This is called fertilization. The fertilized eggs grow into seeds.\\nThe fruit can grow around the seeds. But the fruit does not make seeds. Both the fruit and the seeds grow from parts of the flower. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4015\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word mint on a dictionary page with the following guide words?\\nmarriage - modest\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince mint is between the guide words marriage - modest, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4024\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to Newton's third law, what other force must be happening?\\nContext: Isaac Newton was born in the 1600s and studied how objects move. He discovered three fundamental laws about forces and motion. According to Newton's third law, for every force, there is an equal and opposite force.\\nConsider the following force:\\nMiranda's hand is pushing on a door.\\nOptions: (A) The door is pulling on Miranda's hand. (B) The door is pushing on Miranda's hand.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to Newton's third law, for every force, there is an equal and opposite force. This means that if one object is applying a force on a second object, the second object must also be applying a force on the first object, but in the opposite direction.\\nFor example, if your hand is pushing down on a table, the table is also pushing up on your hand. Or, if you are pulling forward on a rope, the rope is also pulling back on you. Miranda's hand is pushing on the door. So, Newton's third law tells you that the door is pushing on Miranda's hand. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4025\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Greta acquired this trait?\\nContext: Read the description of a trait.\\nGreta has a scar on her right elbow.\\nOptions: (A) Greta's scar is on her right elbow. Her father also has a scar on his right elbow. (B) Greta's scar was caused by an accident. She cut her arm when she fell off her bicycle. (C) Greta's sister has a bruise from falling on her elbow.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4028\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a simple sentence?\\nContext: N/A\\nOptions: (A) In ancient times, mustard was used as a medicine for toothaches and insect stings. (B) If we hike Bright Angel Trail in the Grand Canyon, we won't see Mooney Falls.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The first sentence is the simple sentence. It is a single independent clause.\\nIn ancient times, mustard was used as a medicine for toothaches and insect stings. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4029\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word roam on a dictionary page with the following guide words?\\nreality - rudder\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince roam is between the guide words reality - rudder, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4039\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nFrom the look on her face, Rhianna is carrying an albatross around her neck.\\nContext: N/A\\nOptions: (A) the Bible (B) a poem\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion an albatross around her neck is a poem.\\nIn Samuel Taylor Coleridge's poem \\\"The Rime of the Ancient Mariner,\\\" a sailor shoots and kills an albatross, an action that curses the ship and crew. As his crew members die, the Ancient Mariner feels his guilt hanging like the albatross around his neck.\\nThe allusion an albatross around her neck means a burden a person must bear. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4040\",\n    \"image\": \"4040\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) carbon tetrachloride (B) nitrogen (C) fluoromethanol\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4048\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) ladybug (B) peacock mantis shrimp (C) fire salamander (D) metallic tarantula\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A ladybug is an insect. Like other insects, a ladybug is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA fire salamander is an amphibian. Like other amphibians, a fire salamander is a vertebrate. It has a backbone.\\nLike other tarantulas, a metallic tarantula is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA peacock mantis shrimp is a crustacean. Like other crustaceans, a peacock mantis shrimp is an invertebrate. It does not have a backbone. It has an exoskeleton. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4050\",\n    \"image\": \"4050\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) South Dakota (B) New Mexico (C) Nevada (D) South Carolina\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. South Dakota is farthest north. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4065\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Choose the poem that uses onomatopoeia.\\nContext: From Edward Thomas, \\\"I Never Saw That Land Before\\\" and from Tu Fu, \\\"Conscripts Leaving for the Frontier.\\\" Trans. Charles Budd\\nOptions: (A) To the valley and the river small,\\nThe cattle, the grass, the bare ash trees,\\nThe chickens from the farmsteads, all\\nElm-hidden, and the tributaries (B) Chariots rumbling; horses neighing;\\nSoldiers shouting martial cries;\\nDrums are sounding; trumpets braying;\\nSeas of glittering spears arise.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Poets often use the sounds of words to create interesting effects and to express moods and emotions. Understanding these elements of poetry can help you better interpret and appreciate poetic forms.\\nAnaphora is the repetition of words or sequences of words at the beginning of multiple phrases, sentences, or lines.\\nOut of the cradle endlessly rocking,\\nOut of the mocking-bird's throat, the musical shuttle,\\nOut of the Ninth-month midnight\\n\\u2014From Walt Whitman, \\\"Out of the Cradle Endlessly Rocking\\\"\\nOnomatopoeia is when language sounds like what it talks about.\\nSometimes the onomatopoeia uses made-up words:\\nTlot-tlot! tlot-tlot! Had they heard it? The horse hoofs ringing clear.\\n\\u2014From Alfred Noyes, \\\"The Highwayman\\\"\\nSometimes the onomatopoeia uses real words:\\nHark! the honey bee is humming.\\n\\u2014From Mary Howitt, \\\"The Voice of Spring\\\"\\nAlliteration is when beginning consonant sounds are repeated in words that are close together.\\nWhere the wild men watched and waited\\nWolves in the forest, and bears in the bush.\\n\\u2014From Bayard Taylor, \\\"A Night with a Wolf\\\"\\nAssonance is the repetition of vowel sounds. Often, assonance can create rhymes or near-rhymes within lines.\\nI wandered lonely as a Cloud\\nThat floats on high o'er Vales and Hills,\\nWhen all at once I saw a crowd,\\nA host of golden Daffodils.\\n\\u2014From William Wordsworth, \\\"I Wandered Lonely as a Cloud\\\"\\nMeter is a poem's rhythm, or the pattern of strong and weak syllables. Strong syllables are stressed, while weak syllables are unstressed.\\nA poem has an iambic meter when the beat sounds like da-DUM. A weak syllable is followed by a strong syllable. Occasionally, a line may begin with a strong syllable.\\nHe watches from his mountain walls,\\nAnd like a thunderbolt he falls.\\n\\u2014From Alfred, Lord Tennyson, \\\"The Eagle\\\"\\nA poem has a trochaic meter when the beat sounds like DUM-da. A strong syllable is followed by a weak syllable. Occasionally, a line may end in a strong syllable.\\nBack into the chamber turning, all my soul within me burning,\\nSoon again I heard a tapping somewhat louder than before.\\n\\u2014From Edgar Allen Poe, \\\"The Raven\\\"\\nFree verse is when a poem has neither a regular rhythm nor a rhyme pattern.\\nThe old bridge has a wrinkled face.\\nHe bends his back\\nFor us to go over.\\n\\u2014From Hilda Conkling, \\\"The Old Bridge\\\"\\nThe syllables in bold are strong. You can see this poem does not have a regular rhythm. It also doesn't have a rhyme pattern. This poem uses onomatopoeia. It uses language that sounds like what it talks about.\\nSeas of glittering spears arise. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4072\",\n    \"image\": \"4072\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) South America (B) Antarctica (C) Asia (D) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Asia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4081\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Morocco is a country on the northwest coast of Africa. (B) Morocco is the most exciting country to visit.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true. Facts can be proved by observing, measuring, or studying information.\\nThe flag of the United States has 13 stripes.\\nThis is a fact. It can be proved by looking at the flag and counting the number of stripes.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nThe flag of the United States is easy to draw.\\nThis is an opinion. People may have different opinions about what makes a flag \\\"easy\\\" to draw. The first sentence states a fact.\\nMorocco is a country on the northwest coast of Africa.\\nIt can be proved by checking a map of Africa.\\nThe second sentence states an opinion.\\nMorocco is the most exciting country to visit.\\nMost exciting shows what a person believes, thinks, or feels. Another person might have a different opinion about what is exciting. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4084\",\n    \"image\": \"4084\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Marvin and Ken trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nMarvin and Ken open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Marvin wanted broccoli in his lunch and Ken was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Marvin can trade his tomatoes for Ken's broccoli. (B) Ken can trade his broccoli for Marvin's oranges. (C) Ken can trade his almonds for Marvin's tomatoes. (D) Marvin can trade his tomatoes for Ken's sandwich.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Marvin wanted broccoli in his lunch and Ken was hoping for tomatoes. Look at the labeled part of the images.\\nMarvin has tomatoes. Ken has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4088\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\n\\\"The reporter on the news said we may have to evaporate the island if the storm gets any worse,\\\" my younger sister explained, unaware of her malapropism.\\nContext: N/A\\nOptions: (A) U.S. history (B) literature\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion malapropism is literature.\\nMrs. Malaprop, a character in Richard Brinsley Sheridan's 1775 play The Rivals, conflates or confuses words that sound alike but have totally different meanings.\\nThe allusion malapropism means an amusingly incorrect use of a word. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4092\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nI will float on my back in the pool.\\nContext: N/A\\nOptions: (A) present tense (B) past tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, float. The verb tells you about something that is going to happen. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4094\",\n    \"image\": \"4094\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Maggie's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nMaggie planted 25 tomato seeds one-half inch below the soil surface in each of six pots. Maggie added an equal amount of fertilizer to three of the six pots. She placed the pots in a plant growth chamber where all the seeds experienced the same temperature, amount of light, and humidity level. After two weeks, Maggie counted the number of seedlings that grew in each pot. She compared the number of seedlings in the pots with fertilizer to the number of seedlings in the pots without fertilizer.\\nFigure: tomato seedlings growing in soil.\\nOptions: (A) Do more tomato seedlings grow when they are planted in soil with fertilizer compared to soil without fertilizer? (B) Does the humidity level where tomato seeds are planted affect the number of tomato seedlings that grow?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4095\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nIn the darkness, Brittany strained her eyes.\\nContext: N/A\\nOptions: (A) past tense (B) present tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in past tense. You can tell because it uses a past-tense verb, strained. The verb ends in -ed and tells you about something that has already happened. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4096\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal.\\nContext: N/A\\nOptions: (A) Hydrangea bushes can grow colorful flowers. (B) Sea otters eat animals that live in the ocean.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A sea otter is an animal. It eats animals that live in the ocean.\\nSea otters have very thick fur. Their fur keeps them warm in cold water.\\nA hydrangea bush is a plant. It can grow colorful flowers.\\nHydrangea bushes can have blue, white, purple, or pink flowers. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4098\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the simile in this text suggest?\\nKendra rubbed coconut oil on her hands, which were like the parched earth during a drought.\\nContext: N/A\\nOptions: (A) Kendra's hands were hot. (B) Kendra's hands were dry and cracked.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night. The text includes a simile, using like or as to compare two things that are not actually alike.\\nThe simile like the parched earth during a drought suggests that Kendra's hands were dry and cracked. A drought is a period without rain; the ground during a drought can become hard and cracked. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4106\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nplus - prospect\\nContext: N/A\\nOptions: (A) pest (B) pot\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince pot is between the guide words plus - prospect, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4112\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nseize - spank\\nContext: N/A\\nOptions: (A) say (B) smooth\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince smooth is between the guide words seize - spank, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4115\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a movie?\\nContext: N/A\\nOptions: (A) The return of jafar (B) The Return of Jafar\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The word of is not important, so it should not be capitalized.\\nThe correct title is The Return of Jafar. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4120\",\n    \"image\": \"4120\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Saint Kitts and Nevis (B) Antigua and Barbuda (C) Saint Vincent and the Grenadines (D) Barbados\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Antigua and Barbuda. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4122\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nYou've reached Ed Lambert's voice mail. Please leave a detailed message at the beep, and I will return your call at my earliest convenience.\\nContext: N/A\\nOptions: (A) onomatopoeia (B) verbal irony\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses onomatopoeia, a word that expresses a sound.\\nBeep represents the sound that tells the caller to start recording a message. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4123\",\n    \"image\": \"4123\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Massachusetts?\\nContext: N/A\\nOptions: (A) Annapolis (B) Boston (C) Baltimore (D) Philadelphia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boston is the capital of Massachusetts. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4124\",\n    \"image\": \"4124\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) North Carolina (B) Rhode Island (C) Delaware (D) Georgia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Georgia. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4126\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is the hardest?\\nContext: N/A\\nOptions: (A) rock (B) clay ball (C) nylon swim shorts\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Hard is a property. A hard material keeps its shape when you press on it with your finger.\\nLook at each picture, one at a time. Imagine pushing on the material shown in each picture.\\nOf the choices, the rock is the hardest. If you squeeze a rock, it will not change shape. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4130\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Hares are often mistaken for rabbits, even though their legs, feet, and ears are usually bigger. (B) Hares are often mistaken for rabbits, even though hares' legs, feet, and ears are usually bigger.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun their could refer to hares' or rabbits'.\\nThe first answer choice shows a possible correction for the vague pronoun reference. Their has been replaced with hares'.\\nHares are often mistaken for rabbits, even though hares' legs, feet, and ears are usually bigger. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4139\",\n    \"image\": \"4139\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) bouncy (B) blue (C) fuzzy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nBlue is a color.\\nThis color is blue. All three objects are blue.\\nA fuzzy object is covered in soft hair. The water slide and the binder are not fuzzy.\\nA bouncy object will bounce back from the floor if you drop it. The jeans and the binder are not bouncy.\\nThe property that all three objects have in common is blue. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4145\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mixture.\\nContext: N/A\\nOptions: (A) salad (B) sugar\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A pure substance is made of only one type of matter.\\nA mixture is made of two or more types of matter mixed together. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4150\",\n    \"image\": \"4150\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Africa (B) North America (C) Europe (D) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is North America. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4153\",\n    \"image\": \"4153\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Austin and Colin trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nAustin and Colin open their lunch boxes in the school cafeteria. Neither Austin nor Colin got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nAustin's lunch Colin's lunch\\nOptions: (A) Colin can trade his broccoli for Austin's oranges. (B) Colin can trade his almonds for Austin's tomatoes. (C) Austin can trade his tomatoes for Colin's carrots. (D) Austin can trade his tomatoes for Colin's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nAustin wants broccoli. Colin wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4155\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear Aiden, (B) dear Aiden,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Aiden is capitalized because it is a proper noun. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4156\",\n    \"image\": \"4156\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month is the hottest on average in Cape Town?\\nContext: Use the graph to answer the question below.\\nOptions: (A) April, May, and November (B) December, January, February, and March (C) August, September, October, and November\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Temperature is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average temperature for each month. The average temperature can be used to describe the climate of a location.\\nA line graph can be used to show the average temperature each month. Months with higher dots on the graph have higher average temperatures. To describe the average temperature trends in Cape Town, look at the graph.\\nChoice \\\"Feb\\\" is incorrect.\\nChoice \\\"Mar\\\" is incorrect.\\nChoice \\\"Apr\\\" is incorrect.\\nChoice \\\"May\\\" is incorrect.\\nChoice \\\"Aug\\\" is incorrect.\\nChoice \\\"Sep\\\" is incorrect.\\nChoice \\\"Oct\\\" is incorrect.\\nChoice \\\"Nov\\\" is incorrect.\\nChoice \\\"Dec\\\" is incorrect.\\nChoice \\\"Jan\\\" is incorrect.\\nThe average temperatures in December, January, February, and March are around 20\\u00b0C. These months have the highest average temperatures of all of the months. So, they are the hottest months on average. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4164\",\n    \"image\": \"4164\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) silane (B) nitrogen (C) ethane\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4165\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which phrase has a more negative connotation?\\nContext: N/A\\nOptions: (A) whine about something (B) talk about something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Connotation is the feeling or idea that goes along with a word or phrase. Some words are close in meaning but have different connotations.\\nFor example, think about the words eager and impatient. They both mean wanting something to happen, but they have different connotations.\\nEager has a positive connotation. It is a nice word. An eager person is happy and excited.\\nImpatient has a negative connotation. It is not a nice word. An impatient person is often pushy and demanding. Whine about something has a more negative connotation. If you whine about something, you talk about it in a complaining way. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4167\",\n    \"image\": \"4167\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the great gray owl.\\nContext: This organism is a great gray owl. Its scientific name is Strix nebulosa.\\nOptions: (A) Strix nebulosa (B) Goura victoria (C) Cyanocitta cristata\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A great gray owl's scientific name is Strix nebulosa.\\nGoura victoria does not have the same scientific name as a great gray owl. So, Strix nebulosa and Goura victoria are not in the same species.\\nCyanocitta cristata does not have the same scientific name as a great gray owl. So, Strix nebulosa and Cyanocitta cristata are not in the same species.\\nStrix nebulosa has the same scientific name as a great gray owl. So, these organisms are in the same species. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4168\",\n    \"image\": \"4168\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Ivan's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nIvan used a dropper to put equal-sized drops of pure water, one at a time, onto a penny. The drops stayed together and formed a dome on the penny's surface. Ivan recorded the number of drops he could add before the water spilled over the edge of the penny. Then, he rinsed and dried the penny, and repeated the test using water mixed with hand soap. He repeated these trials on nine additional pennies. Ivan compared the average number of pure water drops to the average number of water drops mixed with hand soap that he could add to a penny before the water spilled over.\\nFigure: a dome of water on the surface of a penny.\\nOptions: (A) Can pennies hold more drops of water mixed with dish soap or water mixed with hand soap? (B) Can pennies hold more drops of pure water or water mixed with hand soap?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4176\",\n    \"image\": \"4176\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) sticky (B) opaque (C) blue\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nAn opaque object does not let light through. The caramel corn is opaque, but the tape is not.\\nA sticky object can attach or stick to other things. All three objects are sticky.\\nBlue is a color.\\nThis color is blue. The cake batter and the caramel corn are not blue.\\nThe property that all three objects have in common is sticky. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4177\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nChristina told her friends that Devin was a typical Peter Pan type.\\nContext: N/A\\nOptions: (A) literature (B) a song\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Peter Pan is literature.\\nIn a J. M. Barrie novel, the character Peter Pan retreats to Neverland and refuses to grow up.\\nThe allusion Peter Pan means a person who won't take on adult responsibilities. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4187\",\n    \"image\": \"4187\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the peregrine falcon.\\nContext: This organism is a peregrine falcon. Its scientific name is Falco peregrinus.\\nOptions: (A) Phoebastria nigripes (B) Ardea alba (C) Falco peregrinus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A peregrine falcon's scientific name is Falco peregrinus.\\nPhoebastria nigripes does not have the same scientific name as a peregrine falcon. So, Falco peregrinus and Phoebastria nigripes are not in the same species.\\nFalco peregrinus has the same scientific name as a peregrine falcon. So, these organisms are in the same species.\\nArdea alba does not have the same scientific name as a peregrine falcon. So, Falco peregrinus and Ardea alba are not in the same species. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4193\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is bumpier?\\nContext: N/A\\nOptions: (A) cardboard (B) asphalt road\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Bumpy is a property. A bumpy material is covered in lumps and bumps. It is not flat or smooth.\\nLook at each picture, one at a time. Imagine touching the material shown in each picture.\\nOf the choices, the asphalt road is bumpier. If you touch an asphalt road, it will feel lumpy and bumpy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4199\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Roger investigate with an experiment?\\nContext: Roger went to a magic show. The magician rubbed a balloon on her hair and then held the balloon against a wall. When the magician released the balloon, Roger was amazed to see that it stuck to the wall! He wonders what factors affect how well balloons stick to different surfaces. So, he decides to design an experiment. He has the following supplies available:\\nthe hair on his own head\\na cotton blanket\\na wooden door\\nfive rubber balloons\\nOptions: (A) Do rubber balloons or foil balloons stick to the wooden door longer after being rubbed on his hair? (B) Do rubber balloons stick to a wooden door or a metal door longer after being rubbed on his hair? (C) Do rubber balloons stick to a cotton blanket or a wooden door longer after being rubbed on his hair?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4202\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nscurry - shelter\\nContext: N/A\\nOptions: (A) spool (B) see\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince see is between the guide words scurry - shelter, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4203\",\n    \"image\": \"4203\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food web, which organism contains matter that eventually moves to the earthworm?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) mushroom (B) barren-ground caribou (C) lichen (D) grizzly bear (E) parasitic jaeger\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows to the earthworm.\\nNo arrows point from the mushroom to any other organisms. So, in this food web, matter does not move from the mushroom to the earthworm.\\nThe only arrow pointing from the lichen leads to the barren-ground caribou. There are two arrows pointing from the barren-ground caribou to other organisms. One arrow points to the grizzly bear. The only arrow pointing from the grizzly bear leads to the mushroom. The other arrow pointing from the barren-ground caribou leads to the mushroom. No arrows point from the mushroom to any other organisms. So, in this food web, matter does not move from the lichen to the earthworm.\\nThere are two arrows pointing from the barren-ground caribou to other organisms. One arrow points to the grizzly bear. The only arrow pointing from the grizzly bear leads to the mushroom. The other arrow pointing from the barren-ground caribou leads to the mushroom. No arrows point from the mushroom to any other organisms. So, in this food web, matter does not move from the barren-ground caribou to the earthworm.\\nThe only arrow pointing from the grizzly bear leads to the mushroom. No arrows point from the mushroom to any other organisms. So, in this food web, matter does not move from the grizzly bear to the earthworm.There is one path matter can take from the parasitic jaeger to the earthworm: parasitic jaeger->rough-legged hawk->earthworm. The answer is E.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4205\",\n    \"image\": \"4205\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4210\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has more thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 5-kilogram block of iron at a temperature of 75\\u00b0C (B) a 5-kilogram block of iron at a temperature of 70\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. The two blocks of iron have the same mass but different temperatures. Since the 75\\u00b0C block is hotter than the 70\\u00b0C block, it has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4211\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which holiday greeting is more formal?\\nContext: N/A\\nOptions: (A) Happy 4th from the crew at Natalie's. (B) Best wishes for an enjoyable Independence Day from the entire staff at Natalie's Cafe.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The second holiday greeting is more formal. It uses more elevated language (Independence Day, the entire staff). The other holiday greeting uses casual language (happy 4 th, the crew) that is more familiar in tone. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4214\",\n    \"image\": \"4214\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is better adapted as a warning sign to ward off predators?\\nContext: s have stinging cells in their brightly colored skin. The bright colors serve as a warning sign that the animal is toxic and dangerous. The 's skin is adapted to ward off predators.\\nFigure: Spanish shawl nudibranch.\\nOptions: (A) crown-of-thorns sea star (B) peppered moth\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the Spanish shawl nudibranch.\\nThe Spanish shawl nudibranch has stinging cells in its brightly colored skin. Its skin is adapted to ward off predators. The bright colors serve as a warning sign that the Spanish shawl nudibranch is toxic and dangerous.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe crown-of-thorns sea star has venomous spines and brightly colored skin. Its skin is adapted to ward off predators.\\nThe peppered moth has gray and brown patches on its body. Its skin is not adapted to be a warning sign that wards off predators. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4216\",\n    \"image\": \"4216\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted for climbing trees?\\nContext: Crested black macaques live in the rain forests of Indonesia. They climb trees to find food and shelter. The macaque's hands and feet are adapted for climbing trees.\\nFigure: crested black macaque.\\nOptions: (A) chital (B) lar gibbon\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the crested black macaque.\\nThe crested black macaque has long fingers and toes. It is adapted for climbing trees. The crested black macaque uses its long fingers and toes to hold on to branches while climbing.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe lar gibbon has long fingers and toes. It is adapted for climbing trees.\\nThe chital has four hoofed feet. It is not adapted for climbing trees. The chital uses its feet to walk and run. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4217\",\n    \"image\": \"4217\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) sample A (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4231\",\n    \"image\": \"4231\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Iowa (B) New Hampshire (C) Vermont (D) New York\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New Hampshire.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4240\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Zachary investigate with an experiment?\\nContext: Zachary starts to make a sandwich, but he sees mold on the bread! He wonders what factors affect how mold grows on bread. So, he decides to design an experiment. He has the following supplies available:\\ntwo loaves of white sandwich bread\\na small plastic bag\\na large plastic bag\\na refrigerator\\nOptions: (A) Does white or whole wheat sandwich bread grow visible mold in fewer days? (B) Does white sandwich bread grow visible mold in fewer days if the bread is stored in a paper bag or in a plastic bag? (C) Does white sandwich bread grow visible mold in fewer days if the bread is stored inside or outside the refrigerator?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4244\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAfter Cara cooked and served a scrumptious dinner, Dad boasted that she is the Julia Child of our family.\\nContext: N/A\\nOptions: (A) allusion (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses an allusion, a brief reference to someone or something well known.\\nJulia Child alludes to the famous chef who is known for popularizing French cuisine in the United States. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4246\",\n    \"image\": \"4246\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month is the wettest on average in Christchurch?\\nContext: Use the graph to answer the question below.\\nOptions: (A) December (B) May (C) April\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Christchurch, look at the graph.\\nChoice \\\"Apr\\\" is incorrect.\\nChoice \\\"May\\\" is incorrect.\\nChoice \\\"Dec\\\" is incorrect.\\nMay has an average monthly precipitation of about 70 millimeters. This is higher than in any other month. So, May is the wettest month on average. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4248\",\n    \"image\": \"4248\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nEarth is the largest planet that is made mainly of rock.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that Mercury, Venus, Earth, and Mars are the planets made mainly of rock. Of these planets, Earth is the largest. So, Earth is the largest planet that is made mainly of rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4250\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nBy the time Anita had finished explaining to Mr. Dodson what had happened, her friends were laughingly referring to her as Scheherazade.\\nContext: N/A\\nOptions: (A) ancient legend (B) Greek history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Scheherazade is ancient legend.\\nThe Arabian Nights presents the ancient legend of how Scheherazade successfully postpones her imminent death by mesmerizing her captor with a thousand and one fascinating tales.\\nThe allusion Scheherazade means a person who uses his or her arts to distract someone and avoid consequences. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4258\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a long-distance running race?\\nContext: Select the best estimate.\\nOptions: (A) 15 inches (B) 15 miles (C) 15 feet (D) 15 yards\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a long-distance running race is 15 miles.\\n15 inches, 15 feet, and 15 yards are all too short. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4260\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Ryan acquired this trait?\\nContext: Read the description of a trait.\\nRyan is good at identifying insects.\\nOptions: (A) Ryan likes to look at butterflies and beetles. (B) Ryan learned to identify insects by reading many books about insects.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4263\",\n    \"image\": \"4263\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of blue particles?\\nContext: The diagram below is a model of two solutions. Each blue ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the blue particles represent the solute. To figure out which solution has a higher concentration of blue particles, look at both the number of blue particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of blue particles per milliliter.\\nSolution B has more blue particles per milliliter. So, Solution B has a higher concentration of blue particles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4271\",\n    \"image\": \"4271\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Jonah and Cassie trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nJonah and Cassie open their lunch boxes in the school cafeteria. Neither Jonah nor Cassie got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nJonah's lunch Cassie's lunch\\nOptions: (A) Cassie can trade her broccoli for Jonah's oranges. (B) Jonah can trade his tomatoes for Cassie's carrots. (C) Cassie can trade her almonds for Jonah's tomatoes. (D) Jonah can trade his tomatoes for Cassie's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nJonah wants broccoli. Cassie wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4274\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nColin will make cookies with his friends.\\nContext: N/A\\nOptions: (A) present tense (B) future tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, make. The verb tells you about something that is going to happen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4281\",\n    \"image\": \"4281\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which term matches the picture?\\nContext: Read the text.\\nBiologists can look at how related two animals are by comparing their body parts, or structures. Analogous structures are parts with the same purpose but with different structures, like a fin and a flipper. Different species may develop analogous structures when they live in similar environments even if they aren't closely related.\\nHomologous structures, however, may show that species are related by indicating they have common ancestors. A whale is a mammal, which makes it more closely related to a bear than to a fish, and a whale's flipper has bones like those in a bear's paw. Though they are different shapes and sizes, the arrangement of bones is similar.\\nOptions: (A) analogous structures (B) homologous structure\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Homologous structures have the same basic parts and suggest different species shared a common ancestor. A person's arm and a frog's arm are both made of a similar set of bones, even though the bones within a frog's arm are differently sized and shaped than those in a human's. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4282\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na penny tarnishing\\nan old sandwich rotting in a trashcan\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by heating. (C) Both are caused by cooling. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nMetal turning less shiny over time is called tarnishing. A penny tarnishing is a chemical change. When air touches the penny, the surface of the penny changes into a different type of matter. This matter makes the penny dull.\\nA sandwich rotting is a chemical change. The matter in the sandwich breaks down and slowly turns into a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4285\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is softer?\\nContext: N/A\\nOptions: (A) cotton towel (B) wood ruler\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Soft is a property. A soft material changes shape when pressed or squeezed.\\nLook at each picture, one at a time. Imagine touching the material shown in each picture.\\nOf the choices, the cotton towel is softer. If you squeeze cotton fabric, it will change shape. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4287\",\n    \"image\": \"4287\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of South Dakota?\\nContext: N/A\\nOptions: (A) Laramie (B) Bismarck (C) Pierre (D) Sioux Falls\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Pierre is the capital of South Dakota. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4288\",\n    \"image\": \"4288\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk. A sea otter is an example of a mammal.\\nOptions: (A) Japanese tree frog (B) human\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A human is a mammal. It has hair and feeds its young milk.\\nHumans are a type of animal called a primate. Monkeys and apes are also primates.\\nA Japanese tree frog is an amphibian. It has moist skin and begins its life in water.\\nThere are many kinds of tree frogs. Most tree frogs are very small. They can walk on thin branches. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4291\",\n    \"image\": \"4291\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Tennessee?\\nContext: N/A\\nOptions: (A) Memphis (B) Harrisburg (C) Nashville (D) Montgomery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Nashville is the capital of Tennessee. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4293\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nDo you know Dalton from soccer camp, or do you have another connection with him?\\nContext: N/A\\nOptions: (A) imperative (B) interrogative (C) declarative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence asks something, and it ends with a question mark. It is an interrogative sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4301\",\n    \"image\": \"4301\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Santa Fe (B) Boise (C) Topeka (D) Madison\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4306\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a passenger airplane?\\nContext: Select the best estimate.\\nOptions: (A) 47 tons (B) 47 ounces (C) 47 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a passenger airplane is 47 tons.\\n47 ounces and 47 pounds are both too light. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4310\",\n    \"image\": \"4310\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which rhetorical appeal is primarily used in this ad?\\nContext: N/A\\nOptions: (A) logos (reason) (B) ethos (character) (C) pathos (emotion)\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The purpose of an advertisement is to persuade people to do something. To accomplish this purpose, advertisements use three types of persuasive strategies, or appeals.\\nAppeals to ethos, or character, show the writer or speaker as trustworthy, authoritative, or sharing important values with the audience. An ad that appeals to ethos might do one of the following:\\nsay that a brand has been trusted for many years\\ninclude an endorsement from a respected organization, such as the American Dental Association\\nfeature a testimonial from a \\\"real person\\\" who shares the audience's values\\nuse an admired celebrity or athlete as a spokesperson\\nAppeals to logos, or reason, use logic and verifiable evidence. An ad that appeals to logos might do one of the following:\\nuse graphs or charts to display information\\ncite results of clinical trials or independently conducted studies\\nexplain the science behind a product or service\\nemphasize that the product is a financially wise choice\\nanticipate and refute potential counterclaims\\nAppeals to pathos, or emotion, use feelings rather than facts to persuade the audience. An ad that appeals to pathos might do one of the following:\\ntrigger a fear, such as the fear of embarrassment\\nappeal to a desire, such as the desire to appear attractive\\nlink the product to a positive feeling, such as adventure, love, or luxury The ad appeals to pathos, or emotion, by evoking a fear of social exclusion. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4311\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nIt is snowing in Sam's town today.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nIt is snowing in Sam's town today.\\nThis passage tells you about the precipitation today in Sam's town. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4313\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does the sentence use a simile or a metaphor?\\nTracy went down the slide face-first, like a penguin.\\nContext: N/A\\nOptions: (A) metaphor (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. Tracy went down the slide face-first, like a penguin.\\nThe words Tracy and penguin are compared using the word like. So, the sentence uses a simile. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4315\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complete sentence?\\nContext: N/A\\nOptions: (A) We live on a peninsula, water is on three sides of it. (B) The curious girl looked into the damp cellar.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. The curious girl looked into the damp cellar is a complete sentence. The subject is the curious girl, and the verb is looked. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4317\",\n    \"image\": \"4317\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the map, which of the following areas did the Mongol Empire control?\\nContext: The Mongol Empire controlled most of Asia and some parts of Eastern Europe from around 1210 to 1375. Look at the map of the Mongol Empire. Then answer the question below.\\nOptions: (A) East Asia (B) Southeast Asia (C) South Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look back at the map. The labels on the map show the name of each region. The shaded area shows the territory controlled by the Mongol Empire.\\nThe map shows that the Mongol Empire controlled many parts of East Asia, Central Asia, Siberia, and the Middle East.\\nThe Mongol Empire did not control Southeast Asia or South Asia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4319\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to blow your nose?\\nContext: Select the better estimate.\\nOptions: (A) 5 minutes (B) 5 seconds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to blow your nose is 5 seconds.\\n5 minutes is too slow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4333\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the liquid.\\nContext: N/A\\nOptions: (A) water from a faucet (B) stone statue (C) book (D) arrowhead\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. An arrowhead is a solid. A solid has a size and shape of its own. An arrowhead is made of rock.\\nThe water from a faucet is a liquid. A liquid takes the shape of any container it is in. If you put water from a faucet into a container, the water will take the shape of that container. But the water will still take up the same amount of space.\\nA book is a solid. When you read a book, you bend the spine and turn the pages. But the book still has a shape of its own.\\nA stone statue is a solid. A solid has a size and shape of its own. Stone statues are made of one or more pieces of rock. Each piece of rock has a size and shape of its own. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4339\",\n    \"image\": \"4339\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is shampoo a mineral?\\nContext: Shampoo has the following properties:\\nnot a pure substance\\nno fixed crystal structure\\nhuman-made\\nliquid\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Shampoo does not have all the properties of a mineral. So, shampoo is not a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4340\",\n    \"image\": \"4340\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) flexible (B) yellow (C) fuzzy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA flexible object can be folded or bent without breaking easily. All three objects are flexible.\\nYellow is a color.\\nThis color is yellow. The rubber duck is yellow, but the trampoline and the metal paper clip are not.\\nA fuzzy object is covered in soft hair. None of the objects are fuzzy.\\nThe property that all three objects have in common is flexible. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4344\",\n    \"image\": \"4344\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Okavango Delta ecosystem?\\nContext: Figure: Okavango Delta.\\nThe Okavango Delta is a wetland ecosystem in Botswana, a country in southern Africa.\\nOptions: (A) It has soil that is rich in nutrients. It also has other water ecosystems nearby. (B) It has soil that is poor in nutrients. It also has other water ecosystems nearby.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A wetland is a type of ecosystem. Wetlands have the following features: land that is covered with water during most of the year, soil that is rich in nutrients, and other water ecosystems nearby. So, the Okavango Delta has soil that is rich in nutrients. It also has other water ecosystems nearby. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4347\",\n    \"image\": \"4347\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this experiment, which were part of a control group?\\nContext: The passage below describes an experiment.\\n\\nJessica was using steel to make rusted sculptures. After building each sculpture, she caused it to rust by placing it in salt water for eight hours. Jessica wondered if steel would rust faster if she added vinegar to the salt water.\\nJessica cut ten squares of steel sheet metal. She put five of the squares into a tub filled with salt water. She put the other five squares into a tub filled with salt water mixed with vinegar. Once an hour for eight hours, Jessica counted how many steel squares in each group had rust on them.\\nFigure: a sculpture made from rusted steel.\\nOptions: (A) the steel squares soaked in salt water (B) the steel squares soaked in salt water and vinegar\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to investigate whether changing a variable between different groups has a specific outcome.\\nFor example, imagine you want to find out whether adding fertilizer to soil affects the height of pea plants. You could investigate this question with the following experiment:\\nYou grow one group of pea plants in soil with fertilizer and measure the height of the plants. This group shows you what happens when fertilizer is added to soil. Since fertilizer is the variable whose effect you are investigating, this group is an experimental group.\\nYou grow another group of pea plants in soil without fertilizer and measure the height of the plants. Since this group shows you what happens when fertilizer is not added to the soil, it is a control group.\\nBy comparing the results from the experimental group to the results from the control group, you can conclude whether adding fertilizer to the soil affects pea plant height. In this experiment, Jessica investigated whether adding vinegar to salt water affects how quickly steel squares rust. The steel squares soaked in salt water did not get vinegar. So, they were part of a control group. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4351\",\n    \"image\": \"4351\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of yellow particles?\\nContext: The diagram below is a model of two solutions. Each yellow ball represents one particle of solute.\\nOptions: (A) Solution A (B) Solution B (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the yellow particles represent the solute. To figure out which solution has a higher concentration of yellow particles, look at both the number of yellow particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of yellow particles per milliliter.\\nSolution B has more yellow particles per milliliter. So, Solution B has a higher concentration of yellow particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4355\",\n    \"image\": \"4355\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's mouth is also adapted to get insects out of burrows?\\nContext: Long-beaked echidnas eat animals such as insects. These insects often live in holes called burrows. The echidna's mouth is adapted to get insects out of burrows.\\nFigure: long-beaked echidna.\\nOptions: (A) aardvark (B) brown hyena\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the long-beaked echidna.\\nA tube-shaped snout helps the long-beaked echidna reach into a burrow. A long, sticky tongue helps it catch the insects.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe aardvark has a tube-shaped mouth and a long, sticky tongue. Its mouth is adapted to eat insects that live inside burrows.\\nThe brown hyena has a wide snout. Its mouth is not adapted to get insects out of burrows. The brown hyena uses its mouth to tear through meat. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4357\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Ringo's phenotype for the fur color trait?\\nContext: In a group of rock pocket mice, some individuals have dark fur and others have light fur. In this group, the gene for the fur color trait has two alleles. The allele for dark fur (F) is dominant over the allele for light fur (f).\\nRingo is a rock pocket mouse from this group. Ringo has the heterozygous genotype Ff for the fur color gene.\\nOptions: (A) light fur (B) dark fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine Ringo's phenotype for the fur color trait. First, consider the alleles in Ringo's genotype for the fur color gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for dark fur (F) is dominant over the allele for light fur (f). This means F is a dominant allele, and f is a recessive allele.\\nRingo's genotype of Ff has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Ringo's phenotype for the fur color trait must be dark fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4361\",\n    \"image\": \"4361\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) South America (C) Africa (D) North America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is South America. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4366\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nThe passengers will give Warren their tickets.\\nContext: N/A\\nOptions: (A) present tense (B) future tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, give. The verb tells you about something that is going to happen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4376\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a short story?\\nContext: N/A\\nOptions: (A) \\\"Words for Living By\\\" (B) Words for Living By\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A short story should be in quotation marks.\\nThe correct title is \\\"Words for Living By.\\\" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4385\",\n    \"image\": \"4385\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these organisms contains matter that was once part of the phytoplankton?\\nContext: Below is a food web from an ocean ecosystem in Monterey Bay, off the coast of California.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) orca (B) sea cucumber (C) sea urchin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows that starts from the phytoplankton.There are two paths matter can take from the phytoplankton to the sea cucumber: phytoplankton->plainfin midshipman->sea cucumber. phytoplankton->zooplankton->plainfin midshipman->sea cucumber. There is one path matter can take from the phytoplankton to the black rockfish: phytoplankton->zooplankton->black rockfish. orca. The only arrow pointing to the orca starts from the sea otter. The only arrow pointing to the sea otter starts from the sea urchin. The only arrow pointing to the sea urchin starts from the kelp. No arrow points to the kelp. So, in this food web, matter does not move from the phytoplankton to the orca.. sea urchin. The only arrow pointing to the sea urchin starts from the kelp. No arrow points to the kelp. So, in this food web, matter does not move from the phytoplankton to the sea urchin.. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4386\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the action that doesn't belong.\\nContext: N/A\\nOptions: (A) chew (B) chuckle (C) snicker (D) giggle\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chew doesn't belong.\\nSnicker, giggle, and chuckle all name ways to laugh. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4394\",\n    \"image\": \"4394\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) translucent (B) colorful\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA colorful object has one or more bright colors. The wet ice cube is not colorful.\\nA translucent object lets light through. But you cannot see clearly through a translucent object. The wet ice cube is translucent. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4420\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal.\\nContext: N/A\\nOptions: (A) ostrich (B) fire salamander (C) elephant seal (D) parrotfish\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Mammals have hair or fur and feed their young milk. A parrotfish is a fish. It lives underwater. It has fins, not limbs.\\nParrotfish have fins and live underwater near coral reefs. They get their name from their bird-like beak!\\nAn elephant seal is a mammal. It has hair and feeds its young milk.\\nSeals have flippers instead of arms! They use their flippers to swim underwater or to crawl on the beach.\\nA fire salamander is an amphibian. It has moist skin and begins its life in water.\\nFire salamanders can release poison from their skin. This poison helps protect them from predators.\\nAn ostrich is a bird. It has feathers, two wings, and a beak.\\nThe ostrich is the largest bird alive today. Ostriches cannot fly, but they can run very fast. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4428\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following statements is true?\\nContext: The Executive Branch of government is described in Article II of the United States Constitution. Read Section 1 of Article II. Then answer the question.\\nThe executive power shall be vested in a president of the United States of America. He shall hold his office during the term of four years, and, together with the vice president, chosen for the same term, be elected.\\nexecutive: related to the carrying out of laws\\nvested in: given to\\nOptions: (A) The president of the United States serves a term of four years. (B) The president of the United States makes all laws.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4436\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMrs. Harmon, you point out that childhood obesity rates have skyrocketed, but are you aware that rainforests provide critical habitats for some of the world's rarest plants and animals?\\nContext: N/A\\nOptions: (A) straw man: a misrepresentation of an opponent's position that makes it easier to argue against (B) red herring: the use of a completely unrelated topic or idea\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that obesity rates and rainforests are somehow interconnected. However, these two ideas aren't related. This illustrates a type of logical fallacy known as a red herring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4443\",\n    \"image\": \"4443\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Hawaii?\\nContext: N/A\\nOptions: (A) Lincoln (B) Honolulu (C) Hilo (D) Juneau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Honolulu is the capital of Hawaii. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4444\",\n    \"image\": \"4444\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is stronger in Pair 1. (C) The magnetic force is stronger in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4446\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nGrayson's recent behavior made his parents begin to see his friend Hanson as some sort of Svengali.\\nContext: N/A\\nOptions: (A) a poem (B) literature\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Svengali is literature.\\nIn George du Maurier's novel Trilby, Svengali is a hypnotist who exerts such power over the central character that she is suddenly able to sing, which she was unable to do before.\\nThe allusion Svengali means a person with an unduly strong influence over someone else. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4458\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the euphemism in this text suggest?\\n\\\"Thank you for your work over the years,\\\" Mrs. Kramer said to her gardener. \\\"As of next week, however, your services will no longer be required.\\\"\\nContext: N/A\\nOptions: (A) The gardener is retiring. (B) The gardener is being fired.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe euphemism your services will no longer be required means that the gardener is being fired. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4459\",\n    \"image\": \"4459\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Solomon Islands (B) New Zealand (C) the Federated States of Micronesia (D) Papua New Guinea\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Papua New Guinea.\\nWhy does Papua New Guinea share its island with another country?\\nPapua New Guinea takes up the eastern half of the island of New Guinea. The western half is part of Indonesia, an Asian country.\\nBeginning in the 17 th century, several countries took control of different parts of the island of New Guinea. By 1922, Australia controlled the entire eastern half of the island, and the Netherlands controlled the western half. In 1963, control over the western half was transferred to Indonesia, which had just gained independence from the Netherlands. Many people in western New Guinea did not want to become part of Indonesia, though, and some people in this area are still fighting to leave Indonesia today. The eastern part gained independence from Australia in 1975 and became Papua New Guinea. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4465\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the invertebrate.\\nContext: Hint: Insects, spiders, and worms are invertebrates.\\nOptions: (A) luna moth (B) carp (C) toucan (D) koala\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A carp is a fish. Like other fish, a carp is a vertebrate. It has a backbone.\\nA koala is a mammal. Like other mammals, a koala is a vertebrate. It has a backbone.\\nA luna moth is an insect. Like other insects, a luna moth is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA toucan is a bird. Like other birds, a toucan is a vertebrate. It has a backbone. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4474\",\n    \"image\": \"4474\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Colorado (B) Arkansas (C) Idaho (D) South Carolina\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. Idaho is farthest north. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4482\",\n    \"image\": \"4482\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample A (C) sample B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample B has more mass than each particle in sample A. The particles in sample B also have a higher average speed than the particles in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4483\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nSince 1923, the United States Flag Code has provided advisory rules for displaying and handling the U.S. flag.\\nContext: N/A\\nOptions: (A) complex (B) simple (C) compound (D) compound-complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is simple. It is a single independent clause.\\nSince 1923, the United States Flag Code has provided advisory rules for displaying and handling the U.S. flag. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4485\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two runners. Which runner was moving at a higher speed?\\nContext: N/A\\nOptions: (A) a runner who moved 100kilometers in 10hours (B) a runner who moved 140kilometers in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving faster will go a farther distance in that time. It is moving at a higher speed. Look at the distance each runner moved and the time it took to move that distance.\\nOne runner moved 140 kilometers in 10 hours.\\nThe other runner moved 100 kilometers in 10 hours.\\nNotice that each runner spent the same amount of time moving. The runner who moved 140 kilometers moved a farther distance in that time. So, that runner must have moved at a higher speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4497\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a surplus or a shortage of picture frames?\\nContext: The art supply store has 25 picture frames for sale. The frames cost $20 each. At that price, 18 people want to buy one.\\nOptions: (A) surplus (B) shortage\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There is a surplus if there is too much for sale at a given price.\\nThere is a shortage if there is not enough for sale at a given price.\\nSurpluses and shortages usually happen when people who are selling goods or services charge too much or too little.\\nWhen the price is too high, consumers will not want to buy much of the good or service. The quantity demanded will be less than the quantity supplied. So, there will be a surplus.\\nWhen the price is too low, too many consumers will want to buy the good or service. The quantity demanded will be more than the quantity supplied. So, there will be a shortage. At the current price, there are too many picture frames for sale. There are 25 frames for sale, but only 18 people want to buy one.\\nSo, there is a surplus of picture frames. The art supply store will not get any money for the leftover picture frames. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4500\",\n    \"image\": \"4500\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe smallest planet is made mainly of rock.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that the smallest planet is Mercury and that Mercury is made mainly of rock. So, the smallest planet is made mainly of rock. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4502\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nHydrogen peroxide is ().\\nContext: Hydrogen peroxide can be used to kill bacteria on medical tools. The chemical formula for hydrogen peroxide is H2O2.\\nOptions: (A) an elementary substance (B) a compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. You can tell whether hydrogen peroxide is an elementary substance or a compound by counting the number of symbols in its chemical formula. A symbol contains either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for hydrogen peroxide is H2 O2. This formula contains two symbols: H for hydrogen and O for oxygen. So, the formula tells you that hydrogen peroxide is made of two chemical elements bonded together.\\nSubstances made of two or more chemical elements bonded together are compounds. So, hydrogen peroxide is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4505\",\n    \"image\": \"4505\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Michigan?\\nContext: N/A\\nOptions: (A) Pierre (B) Charleston (C) Grand Rapids (D) Lansing\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lansing is the capital of Michigan. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4507\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentences.\\nThe Fifth Amendment talks about the rights of people who are accused of crimes. For example, anyone accused of a crime has the right to remain silent. The amendment also says that no person can be put on trial for ().\\nContext: N/A\\nOptions: (A) a crime he or she did not commit (B) breaking a law he or she didn't know about (C) the same crime more than once\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The Fifth Amendment says that anyone accused of a crime has the right to remain silent. The amendment also says that no person can be put on trial for the same crime more than once. Putting a person on trial for the same crime twice is called double jeopardy. To be in jeopardy is to be in danger of losing something, such as life or freedom. In the United States, no one can ever be put in double jeopardy. Part of the text of the Fifth Amendment is below. It never uses the phrase \\\"double jeopardy.\\\" Where do you think the phrase comes from? Nor shall any person be subject for the same offense to be twice put in jeopardy of life or limb; nor shall be compelled in any criminal case to be a witness against himself. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4512\",\n    \"image\": \"4512\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Serengeti National Park ecosystem?\\nContext: Figure: Serengeti National Park.\\nSerengeti National Park is a savanna grassland ecosystem in Tanzania, a country in eastern Africa.\\nOptions: (A) It has a rainy season and a dry season. It also has long, cold winters. (B) It has warm summers and warm winters. It also has soil that is poor in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A savanna grassland is a type of ecosystem. Savanna grasslands have the following features: warm summers and warm winters, a rainy season and a dry season, and soil that is poor in nutrients. So, Serengeti National Park has warm summers and warm winters. It also has soil that is poor in nutrients. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4519\",\n    \"image\": \"4519\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Virginia (B) New York (C) Delaware (D) Vermont\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New York.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4520\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three ducks. Which duck was moving at the highest speed?\\nContext: N/A\\nOptions: (A) a duck that moved 175miles west in 5hours (B) a duck that moved 220miles east in 5hours (C) a duck that moved 260miles north in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the fastest will go the farthest distance in that time. It is moving at the highest speed. Look at the distance each duck moved and the time it took to move that distance. The direction each duck moved does not affect its speed.\\nNotice that each duck moved for 5 hours. The duck that moved 260 miles moved the farthest distance in that time. So, that duck must have moved at the highest speed. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4529\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Martin investigate with an experiment?\\nContext: Martin and his classmates are growing tomato plants in the school garden. He wonders what factors affect how tomato plants grow. So, he decides to design an experiment. He has the following supplies available:\\nthree different types of tomato seeds\\none bag of potting soil\\nfive identical clay pots\\nwater\\nOptions: (A) Which type of soil will cause a certain kind of tomato plant to grow the most fruit? (B) Which of the three types of tomato seeds sprouts the fastest? (C) Does a certain kind of tomato plant grow taller when planted in a clay pot or in a plastic pot?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4532\",\n    \"image\": \"4532\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is smaller in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4537\",\n    \"image\": \"4537\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New York (B) Connecticut (C) New Hampshire (D) Massachusetts\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Connecticut. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4548\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this rose plant's phenotype for the thorns trait?\\nContext: In a group of rose plants, some individuals have thorns and others do not. In this group, the gene for the thorns trait has two alleles. The allele R is for having thorns, and the allele r is for not having thorns.\\nA certain rose plant from this group does not have thorns. This plant has two alleles for not having thorns.\\nOptions: (A) rr (B) not having thorns\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. The rose plant's observable version of the thorns trait is not having thorns. So, the plant's phenotype for the thorns trait is not having thorns. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4553\",\n    \"image\": \"4553\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's limbs are also adapted for climbing trees?\\nContext: Chimpanzees live in the forests of Central Africa. Their limbs are adapted for climbing trees.\\nFigure: chimpanzee.\\nOptions: (A) okapi (B) Sumatran orangutan\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nArms, legs, flippers, and wings are different types of limbs. The type of limbs an animal has is an example of an adaptation. Animals' limbs can be adapted in different ways. For example, long legs might help an animal run fast. Flippers might help an animal swim. Wings might help an animal fly. Look at the picture of the chimpanzee.\\nThe chimpanzee uses its long limbs to reach branches while climbing. It uses its fingers and toes to grab the branches.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe Sumatran orangutan has long limbs with fingers and toes. Its limbs are adapted for climbing trees.\\nThe okapi has long, thin limbs. Its limbs are not adapted for climbing trees. The okapi uses its limbs for walking and running. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4554\",\n    \"image\": \"4554\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged among dead leaves?\\nContext: Dead leaf mantises are found in forests. The mantis is adapted to be camouflaged among dead leaves.\\nFigure: dead leaf mantis.\\nOptions: (A) plated leaf chameleon (B) Arctic wolf\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the dead leaf mantis.\\nThe dead leaf mantis has a reddish-brown body. It is adapted to be camouflaged among dead leaves, which often have a reddish or brownish color. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe plated leaf chameleon has reddish-brown scales coverings its body. It is adapted to be camouflaged among dead leaves, which often have a reddish or brownish color.\\nThis Arctic wolf has white fur covering its body. It is not adapted to be camouflaged among dead leaves. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4559\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal.\\nContext: N/A\\nOptions: (A) Dandelions can grow small yellow flowers. (B) Walnut trees have many green leaves. (C) Lavender bushes have many purple flowers. (D) Orcas swim in the ocean.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. An orca is an animal. It swims in the ocean.\\nOrcas are also called killer whales. They hunt fish and other animals that live in the ocean.\\nA walnut tree is a plant. It has many green leaves.\\nPeople pick and eat walnuts from walnut trees. Walnuts are the tree's seeds!\\nA dandelion is a plant. It can grow small yellow flowers.\\nDandelion seeds can be blown long distances by the wind.\\nA lavender bush is a plant. It has many purple flowers.\\nLavender has a sweet smell. Some people use the oil from lavender bushes for perfume. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4562\",\n    \"image\": \"4562\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Connecticut?\\nContext: N/A\\nOptions: (A) Spokane (B) Bridgeport (C) New Haven (D) Hartford\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Hartford is the capital of Connecticut. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4568\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nBrenna is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years.\\nContext: N/A\\nOptions: (A) compound (B) complex (C) compound-complex (D) simple\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound-complex. It is made up of two independent clauses and a dependent clause. The dependent clause begins with the relative pronoun which.\\nBrenna is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4575\",\n    \"image\": \"4575\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Janelle's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nJanelle planted 20 radish plants in a greenhouse, putting each plant in its own pot. She placed ten of the pots under bright light and the other ten pots under dim light. Janelle watered all the plants twice a day. After two months, she pulled the radish plants from the ground, threw away the leafy green tops, and measured the sizes of the radishes. She compared the sizes of the radishes grown under bright light to the sizes of the radishes grown under dim light.\\nFigure: a radish plant in soil.\\nOptions: (A) Do radish plants grown under bright light have more leaves than radish plants grown under dim light? (B) Do radishes grown under bright light get bigger than radishes grown under dim light?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4578\",\n    \"image\": \"4578\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Antarctica (B) Africa (C) South America (D) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is South America. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4583\",\n    \"image\": \"4583\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How does thick fur help animals in wintertime?\\nContext: Read the passage about winter coats.\\nPeople put on winter coats when it's cold outside, and some animals have winter coats, too! They grow extra-thick coats of fur to keep warm in winter. The thick fur traps their body heat and keeps it close to their skin. Many wild animals grow winter coats. But so do some cats and dogs.\\nSome animals, like arctic foxes, also change coat colors in winter. They shed their brown fur and grow thick white coats. Their white coats help them hide from other animals in the snow.\\nOptions: (A) It keeps them warm by trapping their body heat. (B) It makes them look older.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the passage. It tells you how thick fur helps animals in wintertime.\\nPeople put on winter coats when it's cold outside, and some animals have winter coats, too! They grow extra-thick coats of fur to keep warm in winter. The thick fur traps their body heat and keeps it close to their skin. Many wild animals grow winter coats. But so do some cats and dogs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4594\",\n    \"image\": \"4594\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the axolotl.\\nContext: This organism is an axolotl. Its scientific name is Ambystoma mexicanum.\\nOptions: (A) Python reticulatus (B) Tigrisoma mexicanum (C) Ambystoma opacum\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n An axolotl's scientific name is Ambystoma mexicanum. The first word of its scientific name is Ambystoma.\\nPython reticulatus is in the genus Python. The first word of its scientific name is Python. So, Python reticulatus and Ambystoma mexicanum are not in the same genus.\\nAmbystoma opacum is in the genus Ambystoma. The first word of its scientific name is Ambystoma. So, Ambystoma opacum and Ambystoma mexicanum are in the same genus.\\nTigrisoma mexicanum and Ambystoma mexicanum are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Tigrisoma mexicanum and Ambystoma mexicanum have the same species name within their genus, mexicanum. But the first words of their scientific names are different. Tigrisoma mexicanum is in the genus Tigrisoma, and Ambystoma mexicanum is in the genus Ambystoma. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4603\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nmixing chocolate syrup into milk\\nstapling an envelope shut\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are caused by heating. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nMixing chocolate syrup into milk is a physical change. The chocolate syrup and milk make a mixture. Making a mixture does not form a different type of matter.\\nStapling an envelope shut is a physical change. The envelope and the staple get new shapes. Both are still made of the same type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4604\",\n    \"image\": \"4604\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following fossils is older? Select the more likely answer.\\nContext: This diagram shows fossils in an undisturbed sedimentary rock sequence.\\nOptions: (A) crocodile egg (B) palm leaf\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fossil is the preserved evidence of an ancient organism. Some fossils are formed from body parts such as bones or shells. Other fossils, such as footprints or burrows, are formed from traces of an organism's activities.\\nFossils are typically found in sedimentary rocks. Sedimentary rocks usually form in layers. Over time, new layers are added on top of old layers in a series called a rock sequence. The layers in an undisturbed rock sequence are in the same order as when they formed. So, the deeper layers are older than the shallower layers.\\nThe relative ages of fossils can be determined from their positions in an undisturbed rock sequence. Older fossils are usually in deeper layers, and younger fossils are usually in shallower layers. Look again at the fossils in the rock sequence diagram.\\nCompare the positions of these fossils to determine which one is older:\\nThe palm leaf fossil is in a deeper layer in the rock sequence than the crocodile egg fossil. So, the palm leaf fossil is most likely older than the crocodile egg fossil. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4622\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nSarah has a scar on her right ankle.\\nContext: Hint: Most scars are caused by accidents during a person's life.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4623\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the living thing.\\nContext: N/A\\nOptions: (A) scarecrow (B) rain (C) ice cube (D) rabbit\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All living things are made up of cells. Plants, animals, and some fungi have many cells. Other living things are made up of just one cell.\\nAll living things need food and water. Water helps living things break down food and remove waste. Food gives living things energy. They use energy from food to grow and change.\\nAll living things sense changes in their environment. Living things might sense changes by seeing, smelling, hearing, or feeling. Living things can respond to the changes they sense. A scarecrow is not a living thing.\\nA scarecrow does not have all the traits of a living thing. It is shaped like a person, but it does not grow. It does not need food or water.\\nRain is not a living thing.\\nRain is made of water. It helps living things survive. But it does not have all the traits of a living thing. Rain does not grow or need food.\\nA rabbit is a living thing.\\nRabbits grow and respond to their environment. They need food and water. Rabbits are made up of many cells.\\nAn ice cube is not a living thing.\\nAn ice cube can change. It will melt in warm weather! But it does not have all the traits of a living thing. It does not need food. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4624\",\n    \"image\": \"4624\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the amphibian below.\\nContext: Amphibians have moist skin and begin their lives in water. A golden frog is an example of an amphibian.\\nOptions: (A) poison dart frog (B) helmeted iguana\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A helmeted iguana is a reptile. It has scaly, waterproof skin.\\nIguanas are a type of lizard. Iguanas eat plants and fruit.\\nA poison dart frog is an amphibian. It has moist skin and begins its life in water.\\nPoison dart frogs come in many bright colors. Their bright color warns other animals that these frogs are poisonous. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4631\",\n    \"image\": \"4631\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Saint Kitts and Nevis (B) Barbados (C) Haiti (D) Antigua and Barbuda\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Antigua and Barbuda. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4632\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nIn this chemical reaction, ammonium nitrate is a ().\\nContext: This passage describes a chemical reaction. Read the passage. Then, follow the instructions below.\\nTo help relieve pain during a dental visit, a dentist may give a patient nitrous oxide. Nitrous oxide is made in factories by carefully heating ammonium nitrate. At 170\\u00b0C, ammonium nitrate breaks down and forms a mixture of nitrous oxide gas and water vapor. After the mixture is collected, the water vapor is separated from the nitrous oxide gas.\\nOptions: (A) reactant (B) product\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A chemical change occurs when new substances are formed from existing substances. This process is called a chemical reaction.\\nIn a chemical reaction, one or more substances change into one or more different substances. During the reaction, the atoms of the original substances are rearranged to form other substances.\\nThe original substances in a chemical reaction are called reactants. These substances react, or go through a chemical change.\\nThe substances that are formed in a chemical reaction are called products. These substances are produced by the chemical reaction.\\nSo, in a chemical reaction, reactants go through a chemical change to form products. Read the underlined text carefully. Look for information about what happens to ammonium nitrate in this chemical reaction.\\nTo help relieve pain during a dental visit, a dentist may give a patient nitrous oxide. Nitrous oxide is made in factories by carefully heating ammonium nitrate. At 170\\u00b0C, ammonium nitrate breaks down and forms a mixture of nitrous oxide gas and water vapor. After the mixture is collected, the water vapor is separated from the nitrous oxide gas.\\nThe underlined text tells you that when ammonium nitrate breaks down, nitrous oxide and water are formed. When ammonium nitrate reacts, or goes through a chemical change, its atoms are rearranged to form nitrous oxide and water. Because ammonium nitrate reacts in this chemical reaction, ammonium nitrate is a reactant. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4639\",\n    \"image\": \"4639\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Cerrado ecosystem?\\nContext: Figure: Cerrado.\\nThe savanna grasslands of Brazil are called the Cerrado. The Cerrado covers over one-fifth of Brazil and is home to termites, anteaters, armadillos, and other organisms.\\nOptions: (A) It has warm summers and warm winters. (B) It has a small amount of rain.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A savanna grassland is a type of ecosystem. Savanna grasslands have the following features: warm summers and warm winters, a rainy season and a dry season, and soil that is poor in nutrients. So, the following statements describe the Cerrado ecosystem: warm summers and warm winters, a rainy season and a dry season, and soil that is poor in nutrients. It has a rainy season and a dry season. It has warm summers and warm winters. The following statement does not describe the Cerrado: warm summers and warm winters, a rainy season and a dry season, and soil that is poor in nutrients. It has a small amount of rain. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4645\",\n    \"image\": \"4645\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a muskmelon plant produced by this cross will be homozygous recessive for the fruit taste gene?\\nContext: In a group of muskmelon plants, some individuals have sour fruit and others have sweet fruit. In this group, the gene for the fruit taste trait has two alleles. The allele for sweet fruit (f) is recessive to the allele for sour fruit (F).\\nThis Punnett square shows a cross between two muskmelon plants.\\nOptions: (A) 2/4 (B) 1/4 (C) 0/4 (D) 3/4 (E) 4/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring genotypes: homozygous or heterozygous?\\nHow do you determine whether an organism is homozygous or heterozygous for a gene? Look at the alleles in the organism's genotype for that gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene.\\nIf both alleles are dominant, the organism is homozygous dominant for the gene.\\nIf both alleles are recessive, the organism is homozygous recessive for the gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. \\nBecause there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4 The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4647\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal.\\nContext: N/A\\nOptions: (A) Moles eat insects and worms. (B) Cedar trees have small leaves.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A cedar tree is a plant. It has small leaves.\\nCedar trees grow in many parts of the world. Many cedar trees grow on mountains.\\nA mole is an animal. It eats insects and worms.\\nMoles live mostly underground. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4654\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does the sentence use a simile or a metaphor?\\nMarie went down the slide face-first, like a penguin.\\nContext: N/A\\nOptions: (A) simile (B) metaphor\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. Marie went down the slide face-first, like a penguin.\\nThe words Marie and penguin are compared using the word like. So, the sentence uses a simile. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4657\",\n    \"image\": \"4657\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Jaylen and Porter trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nJaylen and Porter open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Jaylen wanted broccoli in his lunch and Porter was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Jaylen can trade his tomatoes for Porter's broccoli. (B) Porter can trade his almonds for Jaylen's tomatoes. (C) Jaylen can trade his tomatoes for Porter's sandwich. (D) Porter can trade his broccoli for Jaylen's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jaylen wanted broccoli in his lunch and Porter was hoping for tomatoes. Look at the labeled part of the images.\\nJaylen has tomatoes. Porter has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4670\",\n    \"image\": \"4670\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) rough (B) soft (C) transparent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nYou can see clearly through a transparent object. None of the objects are transparent.\\nA rough object feels scratchy when you touch it. All three objects are rough.\\nA soft object changes shape when pressed or squeezed. None of the objects are soft.\\nThe property that all three objects have in common is rough. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4672\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nPreston took several incredible panoramic photographs of the sweeping view from the top of Table Mountain.\\nContext: N/A\\nOptions: (A) complex (B) compound (C) compound-complex (D) simple\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is simple. It is a single independent clause.\\nPreston took several incredible panoramic photographs of the sweeping view from the top of Table Mountain. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4678\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word sailor on a dictionary page with the following guide words?\\nsour - stone\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince sailor is not between the guide words sour - stone, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4682\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the hyperbole in this text suggest?\\nThe last time Dustin cleaned his room, dinosaurs were still roaming the Earth.\\nContext: N/A\\nOptions: (A) Dustin refuses to clean his room. (B) Dustin hasn't cleaned his room in a very long time.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode! The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nThe hyperbole dinosaurs were still roaming the Earth suggests that Dustin hasn't cleaned his room in a very long time. He did not actually clean his room millions of years ago when dinosaurs existed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4686\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Best wishes,\\nNoah (B) best wishes,\\nNoah\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4690\",\n    \"image\": \"4690\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Nauru (B) the Federated States of Micronesia (C) the Marshall Islands (D) Samoa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Nauru. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4698\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Mia investigate with an experiment?\\nContext: Mia leaves a glass jar of cold tea outside in full sunlight. When she goes to get it, she notices that the tea is warm. She wonders what factors affect how warm a liquid gets from sitting in the sunlight. So, she decides to design an experiment. She has the following supplies available:\\ntwo identical glass jars\\ntwo jar lids\\ntap water\\na measuring cup\\ntwo thermometers\\nOptions: (A) When placed in the sun, will eight ounces of water in a closed jar or eight ounces of water in an open jar get warmer? (B) Will eight ounces of carbonated water or eight ounces of tap water get warmer when placed in a jar in the sun? (C) When placed in the sun, will eight ounces of water in a glass jar or eight ounces of water in a plastic cup get warmer?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4699\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nillustrate - interrupt\\nContext: N/A\\nOptions: (A) impulse (B) itch\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince impulse is between the guide words illustrate - interrupt, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4708\",\n    \"image\": \"4708\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for grabbing prey?\\nContext: Golden eagles eat fish, mammals, and other birds. The 's feet are adapted to grab prey.\\nFigure: golden eagle.\\nOptions: (A) Malayan tapir (B) common buzzard\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the golden eagle.\\nThe golden eagle has long toes with sharp claws. Its feet are adapted for grabbing prey. The sharp claws can help the golden eagle attack and kill its prey. The long toes can help it hold on to its prey.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe common buzzard has long toes with sharp claws. Its feet are adapted for grabbing prey.\\nThe Malayan tapir has large, heavy feet. Its feet are not adapted for grabbing prey. The Malayan tapir uses its feet to walk and run. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4709\",\n    \"image\": \"4709\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Pennsylvania?\\nContext: N/A\\nOptions: (A) Harrisburg (B) Dover (C) Montpelier (D) Concord\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Harrisburg is the capital of Pennsylvania. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4717\",\n    \"image\": \"4717\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which rock layer is older?\\nContext: The following diagram shows an example of a rock sequence. Use the rock sequence to answer the question below.\\nOptions: (A) the limestone layer (B) the sandstone layer\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the diagram of the rock sequence. The double-headed arrow on the left tells you how the rock layers are arranged by age. In this diagram, the older layer is shown below the younger layer.\\nThe sandstone layer is older than the limestone layer. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4718\",\n    \"image\": \"4718\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) New Mexico (B) New York (C) Indiana (D) Delaware\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. New York is farthest north. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4719\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Jackie Robinson was the most noteworthy baseball player of the 1940s and 1950s. (B) Jackie Robinson played baseball for the Brooklyn Dodgers from 1947 to 1956.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true. Facts can be proved by observing, measuring, or studying information.\\nThe flag of the United States has 13 stripes.\\nThis is a fact. It can be proved by looking at the flag and counting the number of stripes.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nThe flag of the United States is easy to draw.\\nThis is an opinion. People may have different opinions about what makes a flag \\\"easy\\\" to draw. The second sentence states a fact.\\nJackie Robinson played baseball for the Brooklyn Dodgers from 1947 to 1956.\\nIt can be proved by reading a history book about Jackie Robinson.\\nThe first sentence states an opinion.\\nJackie Robinson was the most noteworthy baseball player of the 1940 s and 1950 s.\\nMost noteworthy shows what a person believes, thinks, or feels. Another person might have a different opinion about what makes a baseball player noteworthy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4720\",\n    \"image\": \"4720\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Massachusetts?\\nContext: N/A\\nOptions: (A) Albany (B) Annapolis (C) Cambridge (D) Boston\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boston is the capital of Massachusetts. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4740\",\n    \"image\": \"4740\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the text to describe the diagram.\\nSolute particles moved in both directions across the permeable membrane. But more solute particles moved across the membrane (). When there was an equal concentration on both sides, the particles reached equilibrium.\\nContext: The diagram below shows a solution with one solute. Each solute particle is represented by a green ball. The solution fills a closed container that is divided in half by a membrane. The membrane, represented by a dotted line, is permeable to the solute particles.\\nThe diagram shows how the solution can change over time during the process of diffusion.\\nOptions: (A) to the left than to the right (B) to the right than to the left\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a solution, solute particles move and spread throughout the solvent. The diagram below shows how a solution can change over time. Solute particles move from the area where they are at a higher concentration to the area where they are at a lower concentration. This movement happens through the process of diffusion.\\nAs a result of diffusion, the concentration of solute particles becomes equal throughout the solution. When this happens, the solute particles reach equilibrium. At equilibrium, the solute particles do not stop moving. But their concentration throughout the solution stays the same.\\nMembranes, or thin boundaries, can divide solutions into parts. A membrane is permeable to a solute when particles of the solute can pass through gaps in the membrane. In this case, solute particles can move freely across the membrane from one side to the other.\\nSo, for the solute particles to reach equilibrium, more particles will move across a permeable membrane from the side with a higher concentration of solute particles to the side with a lower concentration. At equilibrium, the concentration on both sides of the membrane is equal. Look at the diagram again. It shows you how the solution changed during the process of diffusion.\\nBefore the solute particles reached equilibrium, there were 3 solute particles on the left side of the membrane and 5 solute particles on the right side of the membrane.\\nWhen the solute particles reached equilibrium, there were 4 solute particles on each side of the membrane. There was 1 more solute particle on the left side of the membrane than before.\\nSo, for the solute particles to reach equilibrium, more solute particles must have moved across the membrane to the left than to the right. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4748\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the personification in this text suggest?\\nDaniel tried to ignore his unfinished essay, but it glared at him from across the room.\\nContext: N/A\\nOptions: (A) It bothered Daniel that the essay wasn't finished. (B) The essay was printed in large type.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind. The text uses personification, giving human characteristics to nonhuman things.\\nGlared at him suggests that it bothered Daniel that the essay wasn't finished. The essay is like a person who is bothering Daniel. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4749\",\n    \"image\": \"4749\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is smaller when there is a greater distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a greater distance between magnets, the magnitude of the magnetic force between them is smaller.\\nThere is a greater distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4753\",\n    \"image\": \"4753\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Rhode Island (B) Indiana (C) New Hampshire (D) Massachusetts\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Massachusetts.\\nThe Massachusetts Colony included land that would later become the state of Maine. Maine was never its own colony. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4755\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nalbum - avoid\\nContext: N/A\\nOptions: (A) argue (B) accurate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince argue is between the guide words album - avoid, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4757\",\n    \"image\": \"4757\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following organisms is the primary consumer in this food web?\\nContext: Below is a food web from an ocean ecosystem in Monterey Bay, off the coast of California.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) orca (B) phytoplankton (C) sea urchin (D) black rockfish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Primary consumers eat producers. So, in a food web, primary consumers have arrows pointing to them from producers.\\nThe black rockfish has an arrow pointing to it from the zooplankton. The zooplankton is not a producer. So, the black rockfish is not a primary consumer.\\nThe phytoplankton does not have any arrows pointing to it. So, the phytoplankton is not a primary consumer.\\nThe orca has an arrow pointing to it from the sea otter. The sea otter is not a producer. So, the orca is not a primary consumer.\\nThe sea urchin has an arrow pointing to it from the kelp. The kelp is a producer, so the sea urchin is a primary consumer.\\nThe kelp bass has an arrow pointing to it from the kelp. The kelp is a producer, so the kelp bass is a primary consumer. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4767\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the temperature shown by this thermometer.\\nContext: N/A\\nOptions: (A) 40\\u00b0C (B) 50\\u00b0C (C) 15\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A thermometer is a tool that measures temperature. Temperature can be measured in degrees. The symbol for degrees is \\u00b0.\\nSome thermometers measure temperature in degrees Celsius (\\u00b0C). Celsius is one scale used to measure temperature.\\nThis is a tube thermometer. It has a tube filled with a red liquid.\\nThere is a Celsius scale along the right side of the tube. The top of the red liquid lines up with the number 30 on the scale. So, the temperature shown by this thermometer is 30\\u00b0C. Find the top of the red liquid.\\nNow look at the scale to the right. The top of the red liquid lines up with 15. So, the temperature is 15\\u00b0C. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4774\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word factoid in its traditional sense?\\nContext: N/A\\nOptions: (A) As a geneticist, Eliana dislikes many popular sci-fi movies because they often present audiences with factoids that misrepresent her field. (B) As a geneticist, Eliana enjoys watching science documentaries and sharing various factoids she's learned with her colleagues.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses factoid in its traditional sense: something made up presented as a true fact.\\nAs a geneticist, Eliana dislikes many popular sci-fi movies because they often present audiences with factoids that misrepresent her field.\\nThe second text uses factoid in its nontraditional sense: a trivial but true fact.\\nAs a geneticist, Eliana enjoys watching science documentaries and sharing various factoids she's learned with her colleagues.\\nMost style guides recommend to use the traditional sense of the word factoid because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4782\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the arachnid traits listed above.\\nContext: Arachnids are a group of animals with similar traits. The following traits can be used to identify arachnids:\\nThey have eight legs.\\nThey have an exoskeleton.\\nThey have no antennae. Observe the animals and read the descriptions.\\nOptions: (A) Female wolf spiders carry their young on their backs! If you look closely at the picture, you can see small wolf spiders on their mother's back. The adult and baby wolf spiders each have an exoskeleton and eight legs. They do not have antennae. (B) Trichina worms have soft, thin bodies. They have a cylindrical shape and do not have limbs. Trichina worms are not made up of segments. They can infect and feed off of humans, pigs, and other mammals.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nArachnids have the following traits:\\nThey have eight legs.\\nThey have an exoskeleton.\\nThey have no antennae.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA trichina worm has the following traits:\\nA trichina worm does not have all of the traits of an arachnid. A trichina worm is a roundworm.\\nA wolf spider has the following traits:\\nIt has eight legs.\\nIt has an exoskeleton.\\nIt has no antennae.\\nA wolf spider has the traits of an arachnid. A wolf spider is an arachnid. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4784\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a washing machine?\\nContext: Select the best estimate.\\nOptions: (A) 36 cups (B) 36 fluid ounces (C) 36 gallons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a washing machine is 36 gallons.\\n36 fluid ounces and 36 cups are both too little. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4805\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a car's gas tank?\\nContext: Select the best estimate.\\nOptions: (A) 15 cups (B) 15 gallons (C) 15 fluid ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a car's gas tank is 15 gallons.\\n15 fluid ounces and 15 cups are both too little. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4809\",\n    \"image\": \"4809\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Tennessee?\\nContext: N/A\\nOptions: (A) Oklahoma City (B) Knoxville (C) Nashville (D) Boise\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Nashville is the capital of Tennessee. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4817\",\n    \"image\": \"4817\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Solomon Islands (B) Tonga (C) Fiji (D) Vanuatu\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Fiji. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4820\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) There are some things that Ms. Olson wants to bring up at the next city council meeting. (B) Ms. Olson has several important proposals to discuss at the next city council meeting.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses overly simple or imprecise language (some things, bring up).\\nThe second sentence uses more precise language, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4828\",\n    \"image\": \"4828\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Denver (B) Boulder (C) Olympia (D) Tallahassee\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4832\",\n    \"image\": \"4832\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of blue particles?\\nContext: The diagram below is a model of two solutions. Each blue ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution A (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the blue particles represent the solute. To figure out which solution has a higher concentration of blue particles, look at both the number of blue particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of blue particles per milliliter.\\nSolution A has more blue particles per milliliter. So, Solution A has a higher concentration of blue particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4833\",\n    \"image\": \"4833\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe smallest planet is made mainly of rock.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\n To decide which planet is the smallest, look at the volumes shown in the table and compare the exponents. Mercury's volume has an exponent of 10, which is the smallest out of all the planets.\\nMercury is made mainly of rock. So, the smallest planet is made mainly of rock. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4834\",\n    \"image\": \"4834\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to use its neck to appear large and scary to a predator?\\nContext: Spectacled cobras are snakes. Their predators include mongooses and eagles. The cobra uses its neck to appear large and scary to a predator.\\nFigure: spectacled cobra.\\nOptions: (A) bearded dragon (B) green anole\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's neck is one example of an adaptation. Animals' necks can be adapted in different ways. For example, a large frilled neck might help an animal appear dangerous to its predators. A long neck might help an animal get food from tall trees. Look at the picture of the spectacled cobra.\\nWhen frightened, the spectacled cobra can spread out its hood to appear larger and more dangerous. If a predator is nearby, the hood can help scare it away.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe bearded dragon has spiny scales around its neck. It uses its neck to appear larger and more dangerous to a predator.\\nThe green anole has a short neck. Its neck is not adapted to help it appear larger and more dangerous to a predator. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4836\",\n    \"image\": \"4836\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Maya and Hanson trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nMaya and Hanson open their lunch boxes in the school cafeteria. Neither Maya nor Hanson got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nMaya's lunch Hanson's lunch\\nOptions: (A) Maya can trade her tomatoes for Hanson's carrots. (B) Hanson can trade his almonds for Maya's tomatoes. (C) Hanson can trade his broccoli for Maya's oranges. (D) Maya can trade her tomatoes for Hanson's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nMaya wants broccoli. Hanson wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4844\",\n    \"image\": \"4844\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk.\\nMammals are warm-blooded. Warm-blooded animals can control their body temperature.\\nA red kangaroo is an example of a mammal.\\nOptions: (A) Banggai cardinalfish (B) black howler (C) snowy owl (D) gray crowned crane\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A snowy owl is a bird. It has feathers, two wings, and a beak.\\nSnowy owls live in cold places. Even their feet have feathers to keep warm!\\nA gray crowned crane is a bird. It has feathers, two wings, and a beak.\\nCranes wade in shallow water to look for food. Cranes eat insects, worms, and plants.\\nA black howler is a mammal. It has hair and feeds its young milk.\\nHowler monkeys have loud calls, or howls. Their calls can be heard over three miles away!\\nA Banggai cardinalfish is a fish. It lives underwater. It has fins, not limbs.\\nCardinalfish often live near coral reefs. They are nocturnal, which means that they are active mostly at night. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4851\",\n    \"image\": \"4851\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the Christmas tree worm.\\nContext: This organism is a Christmas tree worm. Its scientific name is Spirobranchus giganteus.\\nOptions: (A) Sphodromantis viridis (B) Spirobranchus giganteus (C) Macropus giganteus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A Christmas tree worm's scientific name is Spirobranchus giganteus.\\nSphodromantis viridis does not have the same scientific name as a Christmas tree worm. So, Spirobranchus giganteus and Sphodromantis viridis are not in the same species.\\nMacropus giganteus does have the same species within its genus as a Christmas tree worm, but they are not in the same genus! They do not have the same scientific name as each other. So, these organisms are not in the same species.\\nSpirobranchus giganteus has the same scientific name as a Christmas tree worm. So, these organisms are in the same species. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4854\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Kurt decides to go as a ghost. Which result would be a cost?\\nContext: Kurt is deciding whether to go as a ghost or a superhero to a costume party. He would rather go as a ghost. But he already has a superhero costume.\\nOptions: (A) Kurt will get to wear the costume he is more excited about. (B) Kurt will spend some time and money to get the costume.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Kurt wants or needs:\\nKurt will spend some time and money to get the costume. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4859\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nOur mission is to provide customers with the best snacks on the market. That's why we only use real ingredients that you can pronounce.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) straw man: a misrepresentation of an opponent's position that makes it easier to argue against (C) appeal to nature: the assumption that natural things are always good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that the company's snacks are the best because they use natural ingredients. However, snacks with natural ingredients aren't necessarily the best. This illustrates a type of logical fallacy known as an appeal to nature. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4865\",\n    \"image\": \"4865\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is andesite a mineral or a rock?\\nContext: Andesite has the following properties:\\nfound in nature\\nsolid\\nnot a pure substance\\nnot made by living things\\nmade up of coarse and fine mineral grains\\nno fixed crystal structure\\nOptions: (A) mineral (B) rock\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! The properties of andesite match the properties of a rock. So, andesite is a rock. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4871\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ncivilian - crank\\nContext: N/A\\nOptions: (A) choke (B) common\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince common is between the guide words civilian - crank, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4877\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) Sharon will change the batteries in the radio tomorrow. (B) Mrs. Lloyd will bake brownies for dessert, or she will make peach cobbler.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction or.\\nMrs. Lloyd will bake brownies for dessert, or she will make peach cobbler. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4883\",\n    \"image\": \"4883\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month has the lowest average precipitation in London?\\nContext: Use the graph to answer the question below.\\nOptions: (A) July (B) February (C) November\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average precipitation for each month. The average precipitation can be used to describe the climate of a location.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in London, look at the graph.\\nChoice \\\"Feb\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Nov\\\" is incorrect.\\nJuly has an average monthly precipitation of about 45 millimeters. This is lower than in any other month. So, July has the lowest average precipitation. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4886\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Many thanks,\\nScott (B) many thanks,\\nScott\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4891\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to do ten jumping jacks?\\nContext: Select the better estimate.\\nOptions: (A) 18 seconds (B) 18 hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to do ten jumping jacks is 18 seconds.\\n18 hours is too slow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4897\",\n    \"image\": \"4897\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Virginia (B) New Hampshire (C) South Carolina (D) Texas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. New Hampshire is farthest north. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4914\",\n    \"image\": \"4914\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) smooth (B) rough\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA smooth object is not scratchy or rough. Both objects are smooth.\\nA rough object feels scratchy when you touch it. Neither of the objects are rough.\\nThe property that both objects have in common is smooth. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4918\",\n    \"image\": \"4918\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Saint Vincent and the Grenadines (B) Grenada (C) the Dominican Republic (D) Trinidad and Tobago\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Grenada. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4919\",\n    \"image\": \"4919\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following best describes an ecosystem on a prairie in Nebraska?\\nContext: Read the passage. Then answer the question below.\\n\\nIn the Sandhills region of Nebraska, a grassy prairie grows on sand dunes. The roots of grasses, such as the prairie sandreed, help hold the sand in place.\\nGreater prairie chickens roam through the grasses eating seeds, leaves, and insects. Adult prairie chickens are prey for coyotes, great horned owls, and red-tailed hawks. Their eggs can be eaten by raccoons, skunks, and red foxes.\\nFigure: greater prairie chickens on a Nebraska prairie.\\nOptions: (A) the sand dunes, the prairie sandreed, and the greater prairie chickens (B) the red foxes (C) the seeds, the leaves, and the insects\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In an environment, organisms interact with each other and with their nonliving surroundings. To help describe these interactions, ecologists use specific terms for different types of groups.\\nA single organism is an individual. Individuals of the same species that live in the same place are part of a population.\\nMultiple populations of different species that live in the same place are part of a community.\\nTogether, communities of living organisms and the nonliving parts of their environment make up an ecosystem. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4920\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following parts does an animal cell have?\\nContext: N/A\\nOptions: (A) nucleus (B) cell wall (C) chloroplasts\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plant and animal cells have many parts in common, but not all. This table shows some of their similarities and differences.\\nCell part | Plant cell | Animal cell\\ncell wall | yes | no\\ncell membrane | yes | yes\\ncytoplasm | yes | yes\\nmitochondria | yes | yes\\nvacuole | yes | yes\\nchloroplasts | yes | no\\nnucleus | yes | yes\\nchromosomes | yes | yes\\nThink about how plant and animal cells are different:\\nPlant cells have a cell wall, but animal cells do not. The cell wall helps plant cells keep a fixed shape. Most animal cells do not have a fixed shape.\\nPlant cells have chloroplasts, but animal cells do not. Chloroplasts make sugar that plants cells can use as food. Animal cells cannot make their own food.\\n The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4922\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ndangle - differ\\nContext: N/A\\nOptions: (A) describe (B) double\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince describe is between the guide words dangle - differ, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4924\",\n    \"image\": \"4924\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following was an independent variable in this experiment?\\nContext: The passage below describes an experiment. Read the passage and think about the variables that are described.\\n\\nDr. Spencer was the land manager for a prairie that had become overrun by unwanted grasses. These grasses crowded out other plants. Dr. Spencer thought that she could use fire to remove the unwanted grasses and allow other plants to grow. But she didn't know how often the prairie should be burned.\\nDr. Spencer marked off six plots within a large area of the prairie. She used carefully controlled fires to burn all of the plants in each plot. She burned three of the plots once a year for three years. She burned the other three plots twice a year for three years. A year after the last fire, Dr. Spencer counted the number of unwanted grasses in each of the six plots.\\nHint: An independent variable is a variable whose effect you are investigating. A dependent variable is a variable that you measure.\\nFigure: a fire burning through a prairie.\\nOptions: (A) the number of times the plots were burned each year (B) the number of unwanted grasses\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to find out how one variable affects another variable. For example, imagine that you want to find out if fertilizer affects the number of tomatoes a tomato plant grows. To answer this question, you decide to set up two equal groups of tomato plants. Then, you add fertilizer to the soil of the plants in one group but not in the other group. Later, you measure the effect of the fertilizer by counting the number of tomatoes on each plant.\\nIn this experiment, the amount of fertilizer added to the soil and the number of tomatoes were both variables.\\nThe amount of fertilizer added to the soil was an independent variable because it was the variable whose effect you were investigating. This type of variable is called independent because its value does not depend on what happens after the experiment begins. Instead, you decided to give fertilizer to some plants and not to others.\\nThe number of tomatoes was a dependent variable because it was the variable you were measuring. This type of variable is called dependent because its value can depend on what happens in the experiment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4933\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbaking an apple pie\\nplants making food from sunlight, air, and water\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are only physical changes. (C) Both are caused by heating. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBaking an apple pie is a chemical change. The type of matter in the pie changes. The apples become soft, and the crust turns brown.\\nPlants making food is a chemical change. Plants use energy from sunlight to change air and water into food. The food is sugar. Sugar is a different type of matter than air or water.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBaking is caused by heating. But plants making food is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4943\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nThe Second Amendment says that () have the right to own weapons.\\nContext: N/A\\nOptions: (A) the American people (B) only policemen (C) only men (D) the state governments\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The Second Amendment says that the American people have the right to own weapons. It does not say only certain people have that right. The amendment applies to all Americans. The complete text of the Second Amendment is below. According to the text, why is it important for Americans to have the right to own weapons? A well regulated militia, being necessary to the security of a free state, the right of the people to keep and bear arms, shall not be infringed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4950\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is building a deck a good or a service?\\nContext: N/A\\nOptions: (A) a service (B) a good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Everything you can buy is either a good or a service.\\nA good is something you can touch or hold in your hands. For example, a hammer is a good.\\nA service is a job you pay someone else to do. For example, cooking food in a restaurant is a service. To decide whether building a deck is a good or a service, ask these questions:\\nIs building a deck something you can touch? No.\\nIs building a deck a job you might pay someone else to do? Yes.\\nSo, building a deck is a service. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4955\",\n    \"image\": \"4955\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the bubble map, which animals sleep during the day?\\nContext: This bubble map shows information about different kinds of marsupials.\\nOptions: (A) koalas (B) kangaroos\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A graphic organizer is a chart or picture that shows how ideas, facts, or topics are related to one another.\\nWhen you read, look for graphic organizers included in the text. You can use these images to find key information. You can also create your own graphic organizers with information that you've read. Doing this can help you think about the ideas in the text and easily review them.\\nWhen you write, you can use graphic organizers to organize your thoughts and plan your writing. A bubble map uses lines to connect things that are related. This bubble map shows information about different kinds of marsupials.\\nKoalas is directly connected to sleep during the day. This tells you that koalas sleep during the day. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4956\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a pen?\\nContext: Select the best estimate.\\nOptions: (A) 18 meters (B) 18 kilometers (C) 18 millimeters (D) 18 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a pen is 18 centimeters.\\n18 millimeters is too short. 18 meters and 18 kilometers are too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4969\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which kind of place usually has less traffic?\\nContext: N/A\\nOptions: (A) a rural area (B) an urban area\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People around the world live in three main kinds of places: urban areas, suburban areas, and rural areas.\\nAn urban area is a city. It has many people and businesses. The buildings are close to each other. The buildings are often tall and have many floors. Since there are so many people, traffic is usually bad. People will walk or take the bus, train, or subway to avoid traffic.\\nA suburban area, or suburb, is near a city. It is quieter and less crowded than an urban area. People usually live in houses with yards. Most people drive to get places.\\nA rural area is less crowded than both urban and suburban areas. Houses are much more spread out. People usually have to drive to get places. People in rural areas often live on farms or ranches.\\nSome places, like small towns, don't really fit into any of the types. A small town does not have as many people as an urban area, but it has more people than a rural area. It is not near a city, so it is not called a suburb. Rural areas have much less traffic. There aren't as many people or cars in rural areas. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4974\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this plant's phenotype for the growth pattern trait?\\nContext: This passage describes the growth pattern trait in rose plants:\\n\\nIn a group of rose plants, some individuals have climbing growth and others have bush growth. In this group, the gene for the growth pattern trait has two alleles. The allele for bush growth (g) is recessive to the allele for climbing growth (G).\\nA certain rose plant from this group has the homozygous genotype GG for the growth pattern gene.\\nOptions: (A) bush growth (B) climbing growth\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. The rose plant's genotype for the growth pattern gene is GG. The rose plant's genotype of GG has only G allelles. The G allele is for climbing growth. So, the rose plant's phenotype for the growth pattern trait must be climbing growth.\\nTo check this answer, consider whether the rose plant's alleles are dominant or recessive. The allele for bush growth (g) is recessive to the allele for climbing growth (G). This means G is a dominant allele, and g is a recessive allele.\\nThe rose plant's genotype of GG has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, the rose plant's phenotype for the growth pattern trait must be climbing growth. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4975\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nJim said he would put in a good word for Alexandra with their boss, but she knew he had a reputation as a Benedict Arnold.\\nContext: N/A\\nOptions: (A) a poem (B) U.S. history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Benedict Arnold is U.S. history.\\nBenedict Arnold was an American officer who secretly aided the British during the American Revolution.\\nThe allusion Benedict Arnold means a traitor. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4977\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nChandler's room is as tidy as an overgrown garden.\\nContext: N/A\\nOptions: (A) pun (B) verbal irony\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAs tidy as an overgrown garden shows verbal irony because an overgrown garden is not tidy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4980\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a bathtub?\\nContext: Select the better estimate.\\nOptions: (A) 335 milliliters (B) 335 liters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a bathtub is 335 liters.\\n335 milliliters is too little. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4991\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ncinder - couple\\nContext: N/A\\nOptions: (A) crow (B) clatter\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince clatter is between the guide words cinder - couple, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4996\",\n    \"image\": \"4996\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is also adapted for survival in cold places?\\nContext: Polar bears live in and around the cold Arctic Ocean. The 's skin is adapted to help the animal survive in cold places.\\nFigure: polar bear.\\nOptions: (A) snowy owl (B) hairy armadillo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the polar bear.\\nThe polar bear has skin with thick fur on top and a thick layer of fat underneath it. Its skin is adapted for survival in cold places. The polar bear uses its fur and fat to keep warm in cold weather.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe snowy owl has a thick coat of feathers covering its skin. Its skin is adapted for survival in cold places.\\nThe hairy armadillo has scales covering much of its skin. Its skin is not adapted for survival in cold places. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"4999\",\n    \"image\": \"4999\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of South Dakota?\\nContext: N/A\\nOptions: (A) Pierre (B) Sioux Falls (C) Jefferson City (D) Rapid City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Pierre is the capital of South Dakota. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5000\",\n    \"image\": \"5000\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nSilicon carbide is ().\\nContext: The model below represents silicon carbide. Silicon carbide is a hard substance used in car brakes and in bulletproof vests.\\nOptions: (A) a compound (B) an elementary substance\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents the compound pyrite.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. Use the model to determine whether silicon carbide is an elementary substance or a compound.\\nStep 1: Interpret the model.\\n.\\nUse the legend to determine the chemical element represented by each color. The colors and atomic symbols from the legend are shown in the table below. The table also includes the names of the chemical elements represented in the model.\\nYou can see from the model that silicon carbide is composed of carbon atoms and silicon atoms bonded together.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that silicon carbide is composed of two chemical elements: carbon and silicon. Since silicon carbide is composed of multiple chemical elements bonded together, silicon carbide is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5013\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Use the evidence in the text to select the photosynthetic organism.\\nContext: N/A\\nOptions: (A) The moss mantis is green and brown, which helps it hide among mosses and leaves. This camouflage helps the mantis sneak up on its insect prey. (B) Racomitrium lanuginosum moss is green because its cells contain chlorophyll. This moss uses chlorophyll to capture energy from sunlight.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms that carry out photosynthesis are called photosynthetic organisms. During photosynthesis, these organisms use light energy, carbon dioxide, and water to produce sugars and oxygen.\\nPhotosynthetic organisms also often have the following characteristics:\\nThey are producers, which are organisms that make their own food inside their cells. Because producers make their own food, they typically do not eat other organisms.\\nTheir cells contain chloroplasts, which are cell structures where photosynthesis occurs.\\nTheir chloroplasts often contain a green substance called chlorophyll. Chlorophyll captures light energy from the Sun to power photosynthesis.\\nThey use the sugars they produce during photosynthesis as food. This food provides energy that helps the organisms live, grow, and reproduce. This organism is photosynthetic:\\nThe text tells you that Racomitrium lanuginosum moss cells contain chlorophyll. This is evidence that Racomitrium lanuginosum moss is a photosynthetic organism.\\nThis organism is not photosynthetic:\\nThe text does not provide evidence that the moss mantis is photosynthetic. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5018\",\n    \"image\": \"5018\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Both magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5022\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Jessica acquired this trait?\\nContext: Read the description of a trait.\\nJessica is good at identifying birds from their calls.\\nOptions: (A) Jessica was not born knowing how to identify different bird calls. She had to learn this skill. (B) Jessica likes to photograph birds at the zoo.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5025\",\n    \"image\": \"5025\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Bridget's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nPeople with diabetes sometimes take a medicine made from insulin. Insulin can be made by a special type of bacteria. Bridget was a bioengineer who wanted to increase the amount of insulin that the bacteria produced by 20%. She read that giving the bacteria more nutrients could affect the amount of insulin they produced. So, Bridget gave extra nutrients to some of the bacteria. Then, she measured how much insulin those bacteria produced compared to bacteria that did not get extra nutrients.\\nFigure: studying bacteria in a laboratory.\\nOptions: (A) whether producing more insulin would help the bacteria grow faster (B) whether she added enough nutrients to help the bacteria produce 20% more insulin (C) whether different types of bacteria would need different nutrients to produce insulin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5032\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the liquid.\\nContext: N/A\\nOptions: (A) chair (B) baseball (C) water in a waterfall (D) air from a hair dryer\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. A baseball is a solid. A solid has a size and shape of its own. If you hit a baseball with a bat, the baseball will still have a size and shape of its own.\\nThe air from a hair dryer is a gas. A gas expands to fill a space. A hair dryer uses a fan to blow warm air out. When the air leaves the hair dryer, the air expands to fill a much large space.\\nThe water in a waterfall is a liquid. A liquid can change shape. But it still takes up the same amount of space. As water flows down a waterfall, the water changes shape.\\nA chair is a solid. A solid has a size and shape of its own. When you sit on a chair, it keeps its shape. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5044\",\n    \"image\": \"5044\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Boulder (B) Denver (C) Provo (D) Lincoln\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5045\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a hiking trail?\\nContext: Select the better estimate.\\nOptions: (A) 2 kilometers (B) 2 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a hiking trail is 2 kilometers.\\n2 centimeters is too short. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5046\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word nauseous in its traditional sense?\\nContext: N/A\\nOptions: (A) Marcy couldn't tolerate the nauseous odor emanating from the landfill, so she rolled up her car windows as she drove past. (B) The odor emanating from the landfill made Marcy so nauseous that she had to roll up the car windows as she drove past.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses nauseous in its traditional sense: causing disgust or nausea.\\nMarcy couldn't tolerate the nauseous odor emanating from the landfill, so she rolled up her car windows as she drove past.\\nThe first text uses nauseous in its nontraditional sense: feeling disgusted or nauseated.\\nThe odor emanating from the landfill made Marcy so nauseous that she had to roll up the car windows as she drove past.\\nMost style guides recommend to use the traditional sense of the word nauseous because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5047\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to bake lasagna in the oven?\\nContext: Select the better estimate.\\nOptions: (A) 44 hours (B) 44 minutes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to bake lasagna in the oven is 44 minutes.\\n44 hours is too slow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5049\",\n    \"image\": \"5049\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nDistance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5050\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAfter having lived near the airport for ten years, I've finally gotten accustomed to the dull roar of the planes taking off above my house.\\nContext: N/A\\nOptions: (A) euphemism (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nDull roar is a contradiction, because dull describes something muffled or soft, and a roar is loud. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5052\",\n    \"image\": \"5052\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) flexible (B) hard (C) slippery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA slippery object is hard to hold onto or stand on. All four objects are slippery.\\nA hard object does not change shape when pressed or squeezed. The ice hockey rink is hard, but the dish soap, the yogurt, and the butter are not.\\nA flexible object can be folded or bent without breaking easily. The ice hockey rink is not flexible.\\nThe property that all four objects have in common is slippery. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5056\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a fire truck?\\nContext: Select the best estimate.\\nOptions: (A) 16 pounds (B) 16 ounces (C) 16 tons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a fire truck is 16 tons.\\n16 ounces and 16 pounds are both too light. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5063\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nParts of a cliff break off and fall.\\nContext: N/A\\nOptions: (A) meteorite crash (B) drought (C) landslide\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5069\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Erik decides to plant the tulips. Which result would be a cost?\\nContext: Erik is deciding whether to plant tulips or a birch tree in his backyard. He wants to make his backyard more beautiful. But he also wants to leave space for doing fun things.\\nOptions: (A) He will save some space. The tulips will use up less space than the birch tree would have used up. (B) Erik will give up the chance to look at the birch tree. He thinks it would have looked more beautiful than the tulips.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Erik wants or needs:\\nErik will give up the chance to look at the birch tree. He thinks it would have looked more beautiful than the tulips. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5072\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the metaphor in this text suggest?\\nWhen Quincy lost his job, he was devastated. The only light in the sea of darkness was the prospect of pursuing a new career.\\nContext: N/A\\nOptions: (A) Having to pursue a new career was the worst part of Quincy's job loss. (B) There was a benefit to Quincy's job loss.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town. The text uses a metaphor, comparing two things that are not actually alike without using like or as.\\nThe metaphor the only light in the sea of darkness was the prospect of pursuing a new career suggests that there was a benefit to Quincy's job loss. A light would be beneficial in helping someone escape a dark, difficult-to-navigate situation. Similarly, Quincy's new career was beneficial in helping him escape the emotionally difficult experience of losing his job. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5073\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Javier inherited this trait?\\nContext: Read the description of a trait.\\nJavier has hazel eyes.\\nOptions: (A) Javier's friend also has hazel eyes. (B) Javier's biological father wears contacts in his hazel eyes. (C) Javier wears glasses and so do his sisters.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5080\",\n    \"image\": \"5080\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Vanuatu (B) Tuvalu (C) Tonga (D) Fiji\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Fiji. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5082\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The mom and dad push the strollers at the same speed. Which stroller is pushed with a larger force?\\nContext: A mom, a dad, and two kids are going for a walk. The mom and the dad each push one of the kids in a stroller. The strollers are the same. But the kids are different sizes.\\nOptions: (A) a stroller with kid that weighs 22 pounds (B) a stroller with kid that weighs 29 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull.\\nA force can make an object start moving or stop an object that is moving. A force can also make an object speed up, slow down, or change direction.\\nForces can be different sizes.\\nThink about trying to move a heavy object and a light object. Imagine you want to move them at the same speed. You will need to use a larger force to move the heavy object. Look for the stroller that is heavier.\\nA stroller holding a kid that weighs 29 pounds is heavier than a stroller holding a kid that weighs 22 pounds. So, the stroller holding the kid that weighs 29 pounds needs to be pushed with a larger force to start moving forward at the same speed as the other other stroller. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5086\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear Ms. Weber, (B) Dear Ms. weber,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Ms. Weber is capitalized because it is a proper noun. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5090\",\n    \"image\": \"5090\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these continents does the equator intersect?\\nContext: N/A\\nOptions: (A) North America (B) Africa (C) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lines of latitude and lines of longitude are imaginary lines drawn on some globes and maps. They can help you find places on globes and maps.\\nLines of latitude show how far north or south a place is. We use units called degrees to describe how far a place is from the equator. The equator is the line located at 0\\u00b0 latitude. We start counting degrees from there.\\nLines north of the equator are labeled N for north. Lines south of the equator are labeled S for south. Lines of latitude are also called parallels because each line is parallel to the equator.\\nLines of longitude are also called meridians. They show how far east or west a place is. We use degrees to help describe how far a place is from the prime meridian. The prime meridian is the line located at 0\\u00b0 longitude. Lines west of the prime meridian are labeled W. Lines east of the prime meridian are labeled E. Meridians meet at the north and south poles.\\nThe equator goes all the way around the earth, but the prime meridian is different. It only goes from the North Pole to the South Pole on one side of the earth. On the opposite side of the globe is another special meridian. It is labeled both 180\\u00b0E and 180\\u00b0W.\\nTogether, lines of latitude and lines of longitude form a grid. You can use this grid to find the exact location of a place. The equator is the line at 0\\u00b0 latitude. It intersects Africa. It does not intersect Europe or North America. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5097\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Sidney investigate with an experiment?\\nContext: Sidney wants to grow sunflowers in her backyard garden. She notices that some sunflowers grow much taller than others. She is curious about what factors affect how sunflowers grow. So, she decides to design an experiment. She has the following supplies available:\\nseeds from one type of sunflower\\nsoil\\none wooden planter box in the sun\\none wooden planter box in the shade\\none plastic planter box in the sun\\nwater\\nOptions: (A) Which type of sunflower grows more leaves? (B) Do sunflowers grow bigger in sunny planter boxes or in shady planter boxes? (C) Do sunflowers grow taller if they are planted in planter boxes or in pots?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5119\",\n    \"image\": \"5119\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Iowa?\\nContext: N/A\\nOptions: (A) Springfield (B) Des Moines (C) Lincoln (D) Jefferson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Des Moines is the capital of Iowa. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5126\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a banana a good or a service?\\nContext: N/A\\nOptions: (A) a service (B) a good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Everything you can buy is either a good or a service.\\nA good is something you can touch or hold in your hands. For example, a hammer is a good.\\nA service is a job you pay someone else to do. For example, cooking food in a restaurant is a service. To decide whether a banana is a good or a service, ask these questions:\\nIs a banana something you can touch? Yes.\\nIs a banana a job you might pay someone else to do? No.\\nSo, a banana is a good. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5140\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal that has a backbone.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians all have backbones.\\nOptions: (A) red-kneed tarantula (B) green toad\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some animals have a backbone. The backbone is made of many bones in an animal's back. An animal's backbone helps connect the different parts of its body. In the drawings below, each animal's backbone is colored orange.\\nOther animals do not have a backbone. In fact, these animals don't have any bones! Some animals without backbones have a hard outer cover. Other animals have a soft body. Like other tarantulas, a red-kneed tarantula does not have a backbone. It has a hard outer cover.\\nA green toad is an amphibian. Like other amphibians, a green toad has a backbone. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5143\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Chen Electronics has a reputation for responding quickly to all customer concerns and questions. (B) Chen Electronics has a reputation for responding real quick to customer concerns and questions.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses conversational language (real quick).\\nThe first sentence uses formal language in place of the conversational language, so it is more formal overall. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5144\",\n    \"image\": \"5144\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs. A salmon is an example of a fish.\\nOptions: (A) clownfish (B) helmeted iguana\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A clownfish is a fish. It lives underwater. It has fins, not limbs.\\nA helmeted iguana is a reptile. It has scaly, waterproof skin. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5145\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nMartha's Boutique claims to have \\\"something for everyone,\\\" but it is generally understood that their target market is women of a certain age.\\nContext: N/A\\nOptions: (A) euphemism (B) paradox\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nOf a certain age is an indirect and generally more polite way of referring to older people. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5146\",\n    \"image\": \"5146\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food web, which organism contains matter that eventually moves to the earthworm?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) mushroom (B) short-tailed weasel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows to the earthworm.\\nNo arrows point from the mushroom to any other organisms. So, in this food web, matter does not move from the mushroom to the earthworm.There are three paths matter can take from the bear sedge to the earthworm: bear sedge->brown lemming->Arctic fox->earthworm. bear sedge->brown lemming->snowy owl->earthworm. bear sedge->brown lemming->parasitic jaeger->rough-legged hawk->earthworm. There are four paths matter can take from the bilberry to the earthworm: bilberry->Arctic fox->earthworm. bilberry->brown lemming->Arctic fox->earthworm. bilberry->brown lemming->snowy owl->earthworm. bilberry->brown lemming->parasitic jaeger->rough-legged hawk->earthworm. There is one path matter can take from the short-tailed weasel to the earthworm: short-tailed weasel->snowy owl->earthworm. There is one path matter can take from the snowy owl to the earthworm: snowy owl->earthworm. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5152\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two bowhead whales. Which bowhead whale was moving at a higher speed?\\nContext: N/A\\nOptions: (A) a bowhead whale that moved 45kilometers in 10hours (B) a bowhead whale that moved 80kilometers in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving faster will go a farther distance in that time. It is moving at a higher speed. Look at the distance each bowhead whale moved and the time it took to move that distance.\\nOne bowhead whale moved 80 kilometers in 10 hours.\\nThe other bowhead whale moved 45 kilometers in 10 hours.\\nNotice that each bowhead whale spent the same amount of time moving. The bowhead whale that moved 80 kilometers moved a farther distance in that time. So, that bowhead whale must have moved at a higher speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5155\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a passenger helicopter?\\nContext: Select the best estimate.\\nOptions: (A) 2 tons (B) 2 ounces (C) 2 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a passenger helicopter is 2 tons.\\n2 ounces and 2 pounds are both too light. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5175\",\n    \"image\": \"5175\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Alabama (B) Texas (C) Mississippi (D) Arkansas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Alabama. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5180\",\n    \"image\": \"5180\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) bumpy (B) sweet\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nSugar has a sweet taste. The pretzel is not sweet.\\nA bumpy object is covered in lumps and bumps. The pretzel is bumpy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5184\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Best Regards,\\nAllie (B) Best regards,\\nAllie\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5185\",\n    \"image\": \"5185\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is peridotite a mineral?\\nContext: Peridotite has the following properties:\\nsolid\\nnot a pure substance\\nnaturally occurring\\nno fixed crystal structure\\nnot made by living things\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Peridotite does not have all the properties of a mineral. So, peridotite is not a mineral. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5188\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the elementary substance.\\nContext: N/A\\nOptions: (A) pyrite (FeS2) (B) nickel (Ni) (C) chloromethane (CH3Cl)\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. Look at the chemical formula for each substance, and count the number of symbols in the formula. Then, decide if the substance is an elementary substance. The chemical formula for pyrite contains two symbols: Fe for iron and S for sulfur. So, pyrite is made of two chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, pyrite is a compound, not an elementary substance. The chemical formula for chloromethane contains three symbols: C for carbon, H for hydrogen, and Cl for chlorine. So, chloromethane is made of three chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, chloromethane is a compound, not an elementary substance. The chemical formula for nickel contains one symbol: Ni. So, nickel is made of one chemical element. Substances that are made of one chemical element are elementary substances. So, nickel is an elementary substance. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5189\",\n    \"image\": \"5189\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's common name?\\nContext: This organism is a goldfish. It is also called Carassius auratus.\\nOptions: (A) Carassius auratus (B) goldfish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Carassius auratus is written in italics. The first word is capitalized, and the second word is not. So, it is the scientific name.\\nCarassius auratus is the organism's scientific name. So, you know that goldfish is the common name. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5190\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nDuring much of the twentieth century, artistic types were a dime a dozen in Greenwich Village.\\nContext: N/A\\nOptions: (A) idiom (B) allusion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses an idiom, an expression that cannot be understood literally.\\nA dime a dozen means common. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5200\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Logan starts to pull the wagon across the yard. To move the wagon at the same speed each time, which friend does Logan need to pull with a larger force?\\nContext: Logan gives two friends a ride in his wagon. One friend sits in the wagon at a time.\\nOptions: (A) a friend who weighs 24 pounds (B) a friend who weighs 25 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull.\\nA force can make an object start moving or stop an object that is moving. A force can also make an object speed up, slow down, or change direction.\\nForces can be different sizes.\\nThink about trying to move a heavy object and a light object. Imagine you want to move them at the same speed. You will need to use a larger force to move the heavy object. Look for the friend who is heavier.\\nA friend who weighs 25 pounds is heavier than a friend who weighs 24 pounds. So, to move the wagon at the same speed each time, Logan needs to use a larger force to start moving the wagon with a friend who weighs 25 pounds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5203\",\n    \"image\": \"5203\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Massachusetts (B) Rhode Island (C) New Hampshire (D) Vermont\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New Hampshire.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5208\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Use the evidence in the text to select the photosynthetic organism.\\nContext: N/A\\nOptions: (A) Leafy sea dragons are consumers in their ecosystems, so they rely on other organisms as food. A leafy sea dragon's leaf-like fins help it hide among seaweed. (B) Giant kelp are producers in their ecosystems and also provide shelter for many animals. Giant kelp use carbon dioxide and water to make food inside their cells.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms that carry out photosynthesis are called photosynthetic organisms. During photosynthesis, these organisms use light energy, carbon dioxide, and water to produce sugars and oxygen.\\nPhotosynthetic organisms also often have the following characteristics:\\nThey are producers, which are organisms that make their own food inside their cells. Because producers make their own food, they typically do not eat other organisms.\\nTheir cells contain chloroplasts, which are cell structures where photosynthesis occurs.\\nTheir chloroplasts often contain a green substance called chlorophyll. Chlorophyll captures light energy from the Sun to power photosynthesis.\\nThey use the sugars they produce during photosynthesis as food. This food provides energy that helps the organisms live, grow, and reproduce. This organism is photosynthetic:\\nThe text tells you that giant kelp are producers that use carbon dioxide and water to make food. This is evidence that the giant kelp is a photosynthetic organism.\\nThis organism is not photosynthetic:\\nThe text does not provide evidence that the leafy sea dragon is photosynthetic. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5210\",\n    \"image\": \"5210\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk. A red kangaroo is an example of a mammal.\\nOptions: (A) green tree frog (B) human\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A human is a mammal. It has hair and feeds its young milk.\\nHumans are a type of animal called a primate. Monkeys and apes are also primates.\\nA green tree frog is an amphibian. It has moist skin and begins its life in water.\\nThere are many kinds of tree frogs. Most tree frogs are very small. They can walk on thin branches. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5211\",\n    \"image\": \"5211\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Trinidad and Tobago (B) Saint Lucia (C) Dominica (D) the Dominican Republic\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Trinidad and Tobago. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5212\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The donkeys move the carts at the same speed. Which cart is pulled with a larger force?\\nContext: Two donkeys pull carts from the farmhouse to the yard. The carts are the same. Each cart is holding different tools.\\nOptions: (A) a cart holding 50 pounds (B) a cart holding 62 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull.\\nA force can make an object start moving or stop an object that is moving. A force can also make an object speed up, slow down, or change direction.\\nForces can be different sizes.\\nThink about trying to move a heavy object and a light object. Imagine you want to move them at the same speed. You will need to use a larger force to move the heavy object. Look for the cart that is heavier.\\nA cart holding 62 pounds is heavier than a cart holding 50 pounds. So, the cart holding 62 pounds needs a larger force to start moving at the same speed as the other cart. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5214\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the least thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a meatball at a temperature of 51\\u00b0C (B) a meatball at a temperature of 44\\u00b0C (C) a meatball at a temperature of 53\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. All three meatballs have the same mass but different temperatures. Since the 44\\u00b0C meatball is the coldest, it has the least thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5223\",\n    \"image\": \"5223\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) rough (B) colorful\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA rough object feels scratchy when you touch it. The velcro is rough.\\nA colorful object has one or more bright colors. The velcro is not colorful. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5226\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word dad on a dictionary page with the following guide words?\\ndegree - doll\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince dad is not between the guide words degree - doll, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5238\",\n    \"image\": \"5238\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Emmy's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nEmmy was designing small aircraft called drones to pick up items from warehouse shelves. She knew that the drones' propeller blades would get damaged if they bumped into anything while flying through the warehouse. So, Emmy wanted to add blade guards to protect the propeller blades. The guards had to be sturdy so they would not break in a crash. But she thought that if the guards weighed too much, the drones would not fly well.\\nSo, Emmy put guards made of lightweight metal on one drone. Then she observed how well the drone flew with the guards.\\nFigure: a drone without blade guards.\\nOptions: (A) if the blade guards would break in a crash (B) how much the drone weighed with the blade guards (C) if adding the blade guards made the drone fly poorly\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5243\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to brush your teeth?\\nContext: Select the better estimate.\\nOptions: (A) 2 seconds (B) 2 minutes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to brush your teeth is 2 minutes.\\n2 seconds is too fast. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5248\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nbook - bulletin\\nContext: N/A\\nOptions: (A) back (B) brave\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince brave is between the guide words book - bulletin, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5249\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nKendra was known among her coworkers for her spartan ways.\\nContext: N/A\\nOptions: (A) Greek history (B) Shakespeare\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion spartan is Greek history.\\nSoldiers from the city of Sparta in ancient Greece were known for their self-restraint, self-discipline, and indifference to luxury.\\nThe allusion spartan means simple and austere. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5254\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nJohnny has a scar on his right leg.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5256\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Duncan decides to join the Photography Club. Which result would be a cost?\\nContext: Duncan is deciding whether to join the Theater Club or the Photography Club at school. He wants the club he joins to be fun. But he doesn't want it to take up too much time.\\nOptions: (A) Duncan will save some time. He would have spent more time in the Theater Club than in the Photography Club. (B) Duncan will give up the chance to be in the Theater Club. He would have had more fun in the Theater Club than in the Photography Club.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Duncan wants or needs:\\nDuncan will give up the chance to be in the Theater Club. He would have had more fun in the Theater Club than in the Photography Club. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5258\",\n    \"image\": \"5258\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Cheyenne (B) Laramie (C) Savannah (D) Denver\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5270\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the description that doesn't belong.\\nContext: N/A\\nOptions: (A) new (B) rarely (C) sometimes (D) usually\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"New doesn't belong.\\nSometimes, rarely, and usually all describe how often something happens. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5272\",\n    \"image\": \"5272\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Jasmine's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nPeople with diabetes sometimes take a medicine made from insulin. Insulin can be made by a special type of bacteria. Jasmine was a bioengineer who wanted to increase the amount of insulin that the bacteria produced by 20%. She read that giving the bacteria more nutrients could affect the amount of insulin they produced. So, Jasmine gave extra nutrients to some of the bacteria. Then, she measured how much insulin those bacteria produced compared to bacteria that did not get extra nutrients.\\nFigure: studying bacteria in a laboratory.\\nOptions: (A) whether producing more insulin would help the bacteria grow faster (B) whether different types of bacteria would need different nutrients to produce insulin (C) whether she added enough nutrients to help the bacteria produce 20% more insulin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5274\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Preston inherited this trait?\\nContext: Read the description of a trait.\\nPreston has blue eyes.\\nOptions: (A) Preston likes to wear a blue sweater to match his blue eyes. (B) Preston's mother has blue eyes. She passed this trait down to Preston.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5287\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a bench?\\nContext: Select the best estimate.\\nOptions: (A) 11 inches (B) 11 feet (C) 11 yards (D) 11 miles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a bench is 11 feet.\\n11 inches is too short. 11 yards and 11 miles are too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5298\",\n    \"image\": \"5298\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is the main persuasive appeal used in this ad?\\nContext: N/A\\nOptions: (A) pathos (emotion) (B) ethos (character) (C) logos (reason)\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The purpose of an advertisement is to persuade people to do something. To accomplish this purpose, advertisements use three types of persuasive strategies, or appeals:\\nAppeals to ethos, or character, show that the writer or speaker is trustworthy or is an authority on a subject. An ad that appeals to ethos might do one of the following:\\nsay that a brand has been trusted for many years\\nnote that a brand is recommended by a respected organization or celebrity\\ninclude a quote from a \\\"real person\\\" who shares the audience's values\\nAppeals to logos, or reason, use logic and specific evidence. An ad that appeals to logos might do one of the following:\\nuse graphs or charts to display information\\nmention the results of scientific studies\\nexplain the science behind a product or service\\nAppeals to pathos, or emotion, use feelings rather than facts to persuade the audience. An ad that appeals to pathos might do one of the following:\\ntrigger a fear, such as the fear of embarrassment\\nappeal to a desire, such as the desire to appear attractive\\nlink the product to a positive feeling, such as adventure, love, or luxury The ad appeals to logos, or reason. It uses a graph to display factual information. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5302\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nriddle - rye\\nContext: N/A\\nOptions: (A) robber (B) reduce\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince robber is between the guide words riddle - rye, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5306\",\n    \"image\": \"5306\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with yellow pods to offspring with green pods? Choose the most likely ratio.\\nContext: In a group of pea plants, some individuals have green pods and others have yellow pods. In this group, the gene for the pod color trait has two alleles. The allele for yellow pods (d) is recessive to the allele for green pods (D).\\nThis Punnett square shows a cross between two pea plants.\\nOptions: (A) 3:1 (B) 4:0 (C) 0:4 (D) 1:3 (E) 2:2\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with yellow pods or green pods, consider whether each phenotype is the dominant or recessive allele's version of the pod color trait. The question tells you that the d allele, which is for yellow pods, is recessive to the D allele, which is for green pods.\\nYellow pods is the recessive allele's version of the pod color trait. A pea plant with the recessive version of the pod color trait must have only recessive alleles for the pod color gene. So, offspring with yellow pods must have the genotype dd.\\nThere are 0 boxes in the Punnett square with the genotype dd.\\nGreen pods is the dominant allele's version of the pod color trait. A pea plant with the dominant version of the pod color trait must have at least one dominant allele for the pod color gene. So, offspring with green pods must have the genotype DD or Dd.\\nAll 4 boxes in the Punnett square have the genotype DD or Dd.\\nSo, the expected ratio of offspring with yellow pods to offspring with green pods is 0:4. This means that, based on the Punnett square, this cross will never produce offspring with yellow pods. Instead, this cross is expected to always produce offspring with green pods. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5308\",\n    \"image\": \"5308\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Hampshire?\\nContext: N/A\\nOptions: (A) Salt Lake City (B) Atlanta (C) Biloxi (D) Concord\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Concord is the capital of New Hampshire. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5311\",\n    \"image\": \"5311\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) sour (B) soft (C) shiny\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA soft object changes shape when pressed or squeezed. All four objects are soft.\\nA lemon has a sour taste. The melted marshmallow is not sour.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. The melted marshmallow, the apron, and the stuffed dice are not shiny.\\nThe property that all four objects have in common is soft. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5313\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which phrase has a more negative connotation?\\nContext: N/A\\nOptions: (A) whisper about something (B) mutter about something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Connotation is the feeling or idea that goes along with a word or phrase. Some words are close in meaning but have different connotations.\\nFor example, think about the words eager and impatient. They both mean wanting something to happen, but they have different connotations.\\nEager has a positive connotation. It is a nice word. An eager person is happy and excited.\\nImpatient has a negative connotation. It is not a nice word. An impatient person is often pushy and demanding. Mutter about something has a more negative connotation. If you mutter about something, you whisper about it in an unhappy or angry way. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5316\",\n    \"image\": \"5316\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is smaller in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5333\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nDr. Kelly is unhappy with her new assistant because simple tasks, like fetching coffee, take him years to finish.\\nContext: N/A\\nOptions: (A) hyperbole (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nTake him years to finish is an exaggeration, since it probably does not take him entire years to fetch coffee. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5335\",\n    \"image\": \"5335\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Tori's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nWind turbines use wind power to produce electricity. Tori was a materials engineer who designed wind turbines. She wanted to design a new turbine that would produce 10% more electricity than older wind turbines. She thought that a turbine made from lightweight material would turn more easily and produce more electricity. So, Tori created a computer model of a turbine made from lightweight material. Then she used the model to calculate how much more electricity the new turbine could produce compared to the older turbines.\\nFigure: studying a wind turbine computer model.\\nOptions: (A) if the new turbine could turn easily (B) how much the new turbine would weigh (C) whether the new turbine could produce 10% more electricity\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5346\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nLooking at his life, we couldn't help but see Doug as a Job-like figure.\\nContext: N/A\\nOptions: (A) the Bible (B) Greek mythology\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Job is the Bible.\\nIn the Bible, Job remains faithful and loyal to God, even after the unjust loss of his possessions, family, and health.\\nThe allusion Job means someone who patiently endures adversity. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5351\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can seeds look like?\\nContext: N/A\\nOptions: (A) Seeds are always small. (B) Seeds can be many shapes, colors, and sizes. (C) Seeds are always black or white. (D) Seeds are always round or oval-shaped.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Many plants have flowers. These plants can use their flowers to reproduce, or make new plants like themselves. How do plants use their flowers to reproduce?\\nFirst, the male part of the flower makes pollen, and the female part makes eggs. Animals, wind, or water can move pollen. Pollination is what happens when pollen is moved to the female part of the flower.\\nAfter pollination, sperm from the pollen can combine with the eggs. This is called fertilization. The fertilized eggs grow into seeds. The fruit grows around the seeds. Later, a seed can fall out of the fruit. It can germinate, or start to grow into a new plant. Seeds can be big or small. This coconut seed is big.\\nSeeds can be many different shapes. These maple seeds are long and flat.\\nSeeds can be more than one color. These pistachio seeds are green and brown. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5352\",\n    \"image\": \"5352\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of pink particles?\\nContext: The diagram below is a model of two solutions. Each pink ball represents one particle of solute.\\nOptions: (A) Solution B (B) Solution A (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the pink particles represent the solute. To figure out which solution has a higher concentration of pink particles, look at both the number of pink particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of pink particles per milliliter.\\nSolution A has more pink particles per milliliter. So, Solution A has a higher concentration of pink particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5355\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nmechanic - monk\\nContext: N/A\\nOptions: (A) mission (B) market\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince mission is between the guide words mechanic - monk, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5362\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this muskmelon plant's genotype for the fruit taste gene?\\nContext: In a group of muskmelon plants, some individuals have sour fruit and others have sweet fruit. In this group, the gene for the fruit taste trait has two alleles. The allele F is for sour fruit, and the allele f is for sweet fruit.\\nA certain muskmelon plant from this group has sweet fruit. This plant has two alleles for sweet fruit.\\nOptions: (A) sweet fruit (B) ff\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. The muskmelon plant has two alleles for sweet fruit (f). So, the plant's genotype for the fruit taste gene is ff. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5389\",\n    \"image\": \"5389\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Pennsylvania (B) Vermont (C) Rhode Island (D) New Jersey\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is New Jersey. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5400\",\n    \"image\": \"5400\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this box made of?\\nContext: N/A\\nOptions: (A) wood (B) brick\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the box.\\nThe jewelry box is made of two different materials. The box is made of wood, and the hinges are metal. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5408\",\n    \"image\": \"5408\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is also adapted for survival in cold places?\\nContext: s live in the Canadian Arctic and Greenland. The 's skin is adapted to help the animal survive in cold places.\\nFigure: Arctic hare.\\nOptions: (A) caribou (B) scarlet snake\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the Arctic hare.\\nDuring the winter, the Arctic hare has thick fur covering its skin. Its skin is adapted for survival in cold places. The Arctic hare uses its fur to keep warm in cold weather.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nDuring the winter, the caribou has thick fur covering its skin. Its skin is adapted for survival in cold places.\\nThe scarlet snake has thin scales covering its body. Its skin is not adapted for survival in cold places. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5415\",\n    \"image\": \"5415\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following fossils is older? Select the more likely answer.\\nContext: This diagram shows fossils in an undisturbed sedimentary rock sequence.\\nOptions: (A) crocodile egg (B) fern\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fossil is the preserved evidence of an ancient organism. Some fossils are formed from body parts such as bones or shells. Other fossils, such as footprints or burrows, are formed from traces of an organism's activities.\\nFossils are typically found in sedimentary rocks. Sedimentary rocks usually form in layers. Over time, new layers are added on top of old layers in a series called a rock sequence. The layers in an undisturbed rock sequence are in the same order as when they formed. So, the deeper layers are older than the shallower layers.\\nThe relative ages of fossils can be determined from their positions in an undisturbed rock sequence. Older fossils are usually in deeper layers, and younger fossils are usually in shallower layers. Look again at the fossils in the rock sequence diagram.\\nCompare the positions of these fossils to determine which one is older:\\nThe fern fossil is in a deeper layer in the rock sequence than the crocodile egg fossil. So, the fern fossil is most likely older than the crocodile egg fossil. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5416\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\noar - orphan\\nContext: N/A\\nOptions: (A) ought (B) oh\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince oh is between the guide words oar - orphan, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5418\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has more thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 150-gram mug of cider at a temperature of 40\\u00b0C (B) a 150-gram mug of cider at a temperature of 30\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. The two mugs of cider have the same mass but different temperatures. Since the 40\\u00b0C mug of cider is hotter than the 30\\u00b0C mug of cider, it has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5421\",\n    \"image\": \"5421\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this pull?\\nContext: A hiker uses her hand to clean up litter. She uses a force to pick the litter up off of the ground. This force is a pull.\\nOptions: (A) toward her hand (B) away from her hand\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to another. Every force has a direction.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The hiker pulls the litter up off of the ground. The direction of the pull is toward her hand. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5441\",\n    \"image\": \"5441\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Zach's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nZach put one two-inch steel nail into each of six test tubes. He added water to three of the test tubes and vinegar to the other three. In each test tube, he completely covered the nail with the same volume of liquid. Zach checked the nails for rust at the same time every day. He recorded how many days it took each nail to become completely covered in rust. Then, he compared the number of days it took nails to rust in water to the number of days it took nails to rust in vinegar.\\nFigure: a new steel nail on a pile of rusty nails.\\nOptions: (A) Do steel nails rust in fewer days when submerged in a large volume of liquid compared to a small volume? (B) Do steel nails take fewer days to rust in water compared to vinegar?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5447\",\n    \"image\": \"5447\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Indian Ocean (B) the Atlantic Ocean (C) the Arctic Ocean (D) the Southern Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Atlantic Ocean. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5456\",\n    \"image\": \"5456\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this pull?\\nContext: When a diver flips off of a platform, the force of Earth's gravity pulls him downward into the pool.\\nOptions: (A) toward the center of Earth (B) away from the center of Earth\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to another. Every force has a direction.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The force of Earth's gravity pulls the diver downward. The direction of the pull is toward the center of Earth. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5469\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nBert noticed that the wind was blowing in from the ocean this afternoon.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nBert noticed that the wind was blowing in from the ocean this afternoon.\\nThis passage tells you about the wind direction where Bert was this afternoon. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5471\",\n    \"image\": \"5471\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the amphibian below.\\nContext: Amphibians have moist skin and begin their lives in water. A green tree frog is an example of an amphibian.\\nOptions: (A) golden frog (B) cardinalfish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A golden frog is an amphibian. It has moist skin and begins its life in water.\\nFrogs live near water or in damp places. Most frogs lay their eggs in water.\\nA cardinalfish is a fish. It lives underwater. It has fins, not limbs.\\nCardinalfish often live near coral reefs. They are nocturnal, which means that they are active mostly at night. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5472\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) I wear an apron it keeps my dress clean. (B) Our cabin has bunk beds for the kids.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. I wear an apron it keeps my dress clean is a run-on sentence. It has two sentences that are joined without end punctuation: I wear an apron and It keeps my dress clean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5474\",\n    \"image\": \"5474\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) hard (B) soft\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA soft object changes shape when you squeeze it. The dress is soft.\\nA hard object keeps its shape when you squeeze it. The dress is not hard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5475\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\ntearing a piece of paper\\nstapling an envelope shut\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are only physical changes. (C) Both are caused by cooling. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nTearing a piece of paper is a physical change. The paper tears into pieces. But each piece is still made of paper.\\nStapling an envelope shut is a physical change. The envelope and the staple get new shapes. Both are still made of the same type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5476\",\n    \"image\": \"5476\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) blue (B) sticky\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA sticky object can stick to other things. Neither of the objects are sticky.\\nBlue is a color.\\nThis color is blue. Both objects are blue.\\nThe property that both objects have in common is blue. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5490\",\n    \"image\": \"5490\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Grenada (B) Antigua and Barbuda (C) Trinidad and Tobago (D) Saint Vincent and the Grenadines\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Grenada. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5499\",\n    \"image\": \"5499\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) the Marshall Islands (B) Papua New Guinea (C) the Federated States of Micronesia (D) Palau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Federated States of Micronesia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5507\",\n    \"image\": \"5507\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Monica and Diana trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nMonica and Diana open their lunch boxes in the school cafeteria. Neither Monica nor Diana got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nMonica's lunch Diana's lunch\\nOptions: (A) Monica can trade her tomatoes for Diana's carrots. (B) Diana can trade her almonds for Monica's tomatoes. (C) Diana can trade her broccoli for Monica's oranges. (D) Monica can trade her tomatoes for Diana's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nMonica wants broccoli. Diana wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5511\",\n    \"image\": \"5511\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's mouth is also adapted for bottom feeding?\\nContext: Sturgeons eat invertebrates, plants, and small fish. They are bottom feeders. Bottom feeders find their food at the bottom of rivers, lakes, and the ocean.\\nThe 's mouth is located on the underside of its head and points downward. Its mouth is adapted for bottom feeding.\\nFigure: sturgeon.\\nOptions: (A) bat ray (B) emperor angelfish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the sturgeon.\\nThe sturgeon's mouth is located on the underside of its head and points downward. Its mouth is adapted for bottom feeding. The sturgeon uses its mouth to find food hidden in the sediment at the bottom of rivers, lakes, and the ocean.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe bat ray's mouth is located on the underside of its head. Its mouth points downward. Its mouth is adapted for bottom feeding.\\nThe emperor angelfish's mouth is not located on the underside of its head. Its mouth is not adapted for bottom feeding. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5522\",\n    \"image\": \"5522\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Diana and Gabby trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nDiana and Gabby open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Diana wanted broccoli in her lunch and Gabby was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Gabby can trade her almonds for Diana's tomatoes. (B) Diana can trade her tomatoes for Gabby's sandwich. (C) Diana can trade her tomatoes for Gabby's broccoli. (D) Gabby can trade her broccoli for Diana's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Diana wanted broccoli in her lunch and Gabby was hoping for tomatoes. Look at the labeled part of the images.\\nDiana has tomatoes. Gabby has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5529\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear mr. vincent, (B) Dear Mr. Vincent,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Mr. Vincent is capitalized because it is a proper noun. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5533\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nReba has a lot on her plate: she is attending college, has a full-time job as a waitress, and volunteers at the animal shelter.\\nContext: N/A\\nOptions: (A) Reba has worked up an appetite. (B) Reba has many responsibilities.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom a lot on her plate suggests that Reba has many responsibilities. If you have a lot on your plate, you are busy with many different obligations. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5540\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nManny took several incredible panoramic photographs of the sweeping view from the top of Table Mountain.\\nContext: N/A\\nOptions: (A) compound (B) complex (C) compound-complex (D) simple\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is simple. It is a single independent clause.\\nManny took several incredible panoramic photographs of the sweeping view from the top of Table Mountain. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5543\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is an ice skate?\\nContext: Select the best estimate.\\nOptions: (A) 12 yards (B) 12 inches (C) 12 feet (D) 12 miles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of an ice skate is 12 inches.\\n12 feet, 12 yards, and 12 miles are all too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5545\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Keith investigate with an experiment?\\nContext: Keith mixes oil and vinegar to make salad dressing. He notices that after a few minutes, the oil and vinegar separate. He wonders what factors affect how quickly liquids separate. So, he decides to design an experiment. He has the following supplies available:\\nthree glass bottles\\nolive oil\\nvegetable oil\\nvinegar\\ncold water\\nOptions: (A) Does vegetable oil separate faster when stirred together with vinegar or with water? (B) Does vinegar separate faster when stirred together with olive oil or with coconut oil? (C) Does vegetable oil separate faster when stirred together with cold water or with hot water?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5547\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Long ago, all books were copied by hand. Making new copies was a lot of work and took a long time. But the invention of the printing press made copying books faster and easier. What happened to the overall supply of books after the printing press was invented?\\nContext: N/A\\nOptions: (A) The supply went up. (B) The supply went down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. The printing press was a new technology. It made the process of copying books easier and faster. So, the supply of books went up. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5548\",\n    \"image\": \"5548\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Tamir's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nTamir was a landscape architect who was hired to design a new city park. The city council wanted the park to have space for outdoor concerts and to have at least 20% of the park shaded by trees. Tamir thought the concert area should be at least 150 meters from the road so traffic noise didn't interrupt the music. He developed three possible designs for the park with the concert area in a different location in each design. Then, he tested each design by measuring the distance between the road and the concert area.\\nFigure: studying an architect's design.\\nOptions: (A) which design would have the least traffic noise in the concert area (B) if at least 20% of the park would be shaded by trees in each design (C) which design would have the greatest distance between the concert area and the road\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5559\",\n    \"image\": \"5559\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is weaker in Pair 2. (C) The magnetic force is weaker in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is weaker when the magnets are farther apart. Distance affects the strength of the magnetic force. When magnets are farther apart, the magnetic force between them is weaker.\\nThe magnets in Pair 1 are farther apart than the magnets in Pair 2. So, the magnetic force is weaker in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5563\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) When Maria called the officers at the bank, she learned that her checking account was overdrawn. (B) When Maria called them at the bank, she learned that her checking account was overdrawn.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun them is used without its antecedent.\\nThe second answer choice shows a possible correction for the vague pronoun reference. Them has been replaced with the officers.\\nWhen Maria called the officers at the bank, she learned that her checking account was overdrawn. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5564\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Brenda acquired this trait?\\nContext: Read the description of a trait.\\nBrenda knows how to knit sweaters.\\nOptions: (A) Brenda learned how to knit in an after school program. (B) Brenda knits sweaters using cotton, wool, and other types of yarn.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5573\",\n    \"image\": \"5573\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) San Antonio (B) Chicago (C) San Francisco (D) New York City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is San Antonio, Texas. Chicago, New York City, and San Francisco are marked with gray circles on the map below. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5584\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) The pond has frozen over, so Nellie will go ice skating. (B) Tomorrow the price of gas may go up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The second sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction so.\\nThe pond has frozen over, so Nellie will go ice skating. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5589\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word boulder on a dictionary page with the following guide words?\\nbike - bridge\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince boulder is between the guide words bike - bridge, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5592\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMy father asked me to help around the house more. I can't believe he doesn't want me to spend time with my friends.\\nContext: N/A\\nOptions: (A) appeal to nature: the assumption that natural things are always good (B) circular reasoning: an argument that supports a claim with the claim itself (C) straw man: a misrepresentation of an opponent's position that makes it easier to argue against\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that the speaker's father wants the speaker to stop spending time with friends. However, this misrepresents the father's argument. The speaker's father only asked the speaker to spend more time on household chores. This illustrates a type of logical fallacy known as a straw man. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5603\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which orange has more thermal energy?\\nContext: Two oranges are identical except for their temperatures.\\nOptions: (A) the colder orange (B) the hotter orange\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two oranges are made of the same material and have the same mass. So, the hotter orange has more thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5606\",\n    \"image\": \"5606\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) rough (B) stretchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA rough object feels scratchy when you touch it. The pineapple is rough.\\nA stretchy object gets longer when you pull on it. The pineapple is not stretchy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5611\",\n    \"image\": \"5611\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Diane and Sofia's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nDiane and Sofia were making batches of concrete for a construction project. To make the concrete, they mixed together dry cement powder, gravel, and water. Then, they checked if each batch was firm enough using a test called a slump test.\\nThey poured some of the fresh concrete into an upside-down metal cone. They left the concrete in the metal cone for 30 seconds. Then, they lifted the cone to see if the concrete stayed in a cone shape or if it collapsed. If the concrete in a batch collapsed, they would know the batch should not be used.\\nFigure: preparing a concrete slump test.\\nOptions: (A) if a new batch of concrete was firm enough to use (B) if the concrete from each batch took the same amount of time to dry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5618\",\n    \"image\": \"5618\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Brennan's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nBrennan was a mechanical engineer who was designing to record temperature, precipitation, and wind speed. The weather station would be used in a town where the highest recorded temperature was 40\\u00b0C. Brennan wanted to make sure the weather station would work even in unusually warm weather.\\nSo, he set an indoor test chamber to 50\\u00b0C with low moisture and no wind. He left the weather station in the chamber overnight. The next day, he checked to see if the weather station displayed accurate measurements after 24 hours at 50\\u00b0C.\\nFigure: a weather station.\\nOptions: (A) if the weather station would work when the temperature was 50\\u00b0C (B) how well the weather station would work when it was windy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5623\",\n    \"image\": \"5623\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged in the snow?\\nContext: Short-tailed weasels live in cold, snowy areas in Europe. The short tailed weasel is adapted to be camouflaged in the snow.\\nFigure: short-tailed weasel.\\nOptions: (A) Arctic fox (B) screech owl\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the short-tailed weasel.\\nDuring the winter, the short-tailed weasel has white fur covering its body. It is adapted to be camouflaged in the snow. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nDuring the winter, the Arctic fox has white fur covering its body. It is adapted to be camouflaged in the snow.\\nThis screech owl has gray and brown feathers on its skin. It is not adapted to be camouflaged in the snow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5625\",\n    \"image\": \"5625\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which term matches the picture?\\nContext: Read the text.\\nThe way an animal looks can help to keep it safe from predators. Some animals use camouflage. These animals may blend into their environments so that it is hard for them to be seen.\\nOther animals find safety in being seen. Many venomous animals, for example, have brightly colored skins that warn off predators.\\nFinally, some animals may use mimicry to stay safe. These animals look like, or mimic, venomous animals so that predators will stay away.\\nOptions: (A) camouflage (B) mimicry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Camouflage is at work when an animal is hard to see because it looks like its environment. For example, some butterflies look like leaves, so they are better hidden from predators. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5634\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) The friends walk on the beach. (B) Sacramento is the capital of California the state government meets there.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Sacramento is the capital of California the state government meets there is a run-on sentence. It has two sentences that are joined without end punctuation: Sacramento is the capital of California and The state government meets there. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5637\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Savannah investigate with an experiment?\\nContext: Savannah has a small vegetable garden, which includes a compost pile of food scraps. She notices that some of the squash plants growing next to the compost pile grow differently than squash plants that are farther away. She wonders what factors affect how her squash plants grow. So, she decides to design an experiment. She has the following supplies available:\\none type of squash seeds\\nfour large clay pots\\nsoil\\na compost pile\\nwater\\nOptions: (A) Do squash plants grow larger if the seeds are planted in small pots or in large pots? (B) If squash seeds and tomato seeds are planted with compost, which type of plant grows larger? (C) Do squash plants grow larger if the seeds are planted with compost or without compost?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5639\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) When Megan ran into Carly at the post office, she smiled and said hello. (B) Megan smiled and said hello when she ran into Carly at the post office.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun she could refer to Megan or Carly.\\nWhen Megan ran into Carly at the post office, she smiled and said hello.\\nThe first answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nMegan smiled and said hello when she ran into Carly at the post office. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5642\",\n    \"image\": \"5642\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Samoa (B) Nauru (C) Tonga (D) New Zealand\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Samoa. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5648\",\n    \"image\": \"5648\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Bridgette was delivering two identical pizzas to a customer. While driving to the customer's house, Bridgette put one of the pizza boxes on top of the other one. This table shows how the temperature of each pizza changed over 15minutes.\\nOptions: (A) the surroundings . . . each pizza (B) each pizza . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each pizza decreased, which means that the thermal energy of each pizza decreased. So, thermal energy was transferred from each pizza to the surroundings. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5651\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a water pitcher?\\nContext: Select the best estimate.\\nOptions: (A) 11 fluid ounces (B) 11 gallons (C) 11 cups\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a water pitcher is 11 cups.\\n11 fluid ounces is too little and 11 gallons is too much. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5663\",\n    \"image\": \"5663\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) propane (B) hydrazine (C) iodine\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5664\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a can of soda pop?\\nContext: Select the better estimate.\\nOptions: (A) 345 milliliters (B) 345 liters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a can of soda pop is 345 milliliters.\\n345 liters is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5667\",\n    \"image\": \"5667\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of West Virginia?\\nContext: N/A\\nOptions: (A) Tucson (B) Charleston (C) Jackson (D) Billings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Charleston is the capital of West Virginia. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5671\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is this a run-on sentence?\\nThe first car that Mr. Castro bought is still the most precious in his collection it's a 1971 Chevrolet Chevelle.\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA run-on sentence is formed when two sentences are run together, joined by just a comma or by no punctuation at all. If only a comma is used, the run-on is called a comma splice.\\nThe band I'm in has been rehearsing daily, we have a concert in two weeks.\\nThe band I'm in has been rehearsing daily we have a concert in two weeks.\\nThere are several ways to fix a run-on sentence:\\nUse stronger punctuation, such as a period or a semicolon.\\nThe band I'm in has been rehearsing daily. We have a concert in two weeks.\\nThe band I'm in has been rehearsing daily; we have a concert in two weeks.\\nUse a comma and a coordinating conjunction to create a compound sentence. Coordinating conjunctions include and, but, or, and so.\\nThe band I'm in has been rehearsing daily, and we have a concert in two weeks.\\nUse a subordinating conjunction or a relative pronoun to create a complex sentence. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, and whose.\\nThe band I'm in has been rehearsing daily since we have a concert in two weeks. This is a run-on sentence. It is formed from two sentences run together, joined without punctuation.\\nThe first car that Mr. Castro bought is still the most precious in his collection it's a 1971 Chevrolet Chevelle.\\nHere is one way to fix the run-on sentence:\\nThe first car that Mr. Castro bought is still the most precious in his collection; it's a 1971 Chevrolet Chevelle. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5674\",\n    \"image\": \"5674\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the black howler.\\nContext: This organism is a black howler. Its scientific name is Alouatta caraya.\\nOptions: (A) Ovis orientalis (B) Alouatta caraya (C) Ovis canadensis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A black howler's scientific name is Alouatta caraya.\\nOvis orientalis does not have the same scientific name as a black howler. So, Alouatta caraya and Ovis orientalis are not in the same species.\\nOvis canadensis does not have the same scientific name as a black howler. So, Alouatta caraya and Ovis canadensis are not in the same species.\\nAlouatta caraya has the same scientific name as a black howler. So, these organisms are in the same species. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5683\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) back (B) tune (C) pack\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the ip sound.\\nThe words lake and make rhyme. They both end with the ake sound.\\nThe words tip and lake don't rhyme. They end with different sounds. The words pack and back rhyme. They both end with the ack sound.\\nThe word tune does not rhyme. It ends with a different sound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5691\",\n    \"image\": \"5691\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) sweet (B) sour (C) blue\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nBlue is a color.\\nThis color is blue. None of the objects are blue.\\nSugar has a sweet taste. All three objects are sweet.\\nA lemon has a sour taste. None of the objects are sour.\\nThe property that all three objects have in common is sweet. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5694\",\n    \"image\": \"5694\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Jersey?\\nContext: N/A\\nOptions: (A) Providence (B) Trenton (C) Jersey City (D) Concord\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Trenton is the capital of New Jersey. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5696\",\n    \"image\": \"5696\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) Papua New Guinea (C) Fiji (D) New Zealand\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is New Zealand. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5697\",\n    \"image\": \"5697\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Massachusetts (B) Virginia (C) Maryland (D) Rhode Island\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Massachusetts.\\nThe Massachusetts Colony included land that would later become the state of Maine. Maine was never its own colony. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5698\",\n    \"image\": \"5698\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which term matches the picture?\\nContext: Read the text.\\nIn the sciences, it's important to distinguish between the accuracy and precision of measurements. Accuracy refers to how close measured values are to a true value. Precision refers to how close measured values are to each other. A common metaphor used to illustrate the difference between these terms is a bull's-eye, or target. Darts thrown accurately at a bull's-eye all hit close to the center of the target but not necessarily close to each other. Darts thrown precisely at a bull's-eye, by contrast, all hit the same spot but not necessarily at the center of the bull's-eye.\\nOptions: (A) accuracy (B) precision\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Precision refers to how close measurements are to each other. On a bull's-eye, a series of precise dart throws would all cluster around the same spot. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5710\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a bottle of hair spray?\\nContext: Select the best estimate.\\nOptions: (A) 10 fluid ounces (B) 10 gallons (C) 10 cups\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a bottle of hair spray is 10 fluid ounces.\\n10 cups and 10 gallons are both too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5711\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) Last night we heard an owl outside in the oak tree. (B) Susan finished her book, but she got two more from the library.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction but.\\nSusan finished her book, but she got two more from the library. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5720\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which confirmation text message is more formal?\\nContext: N/A\\nOptions: (A) Thanks 4 confirming your appt. C U on Mon, 1/17 @ 10. (B) Thank you for confirming your appointment. We'll see you on Monday, January 17, at 10 A.M.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The second confirmation text message is more formal. It avoids abbreviations (4, ur, C, U, Mon) and writes out \\\"@.\\\" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5722\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Amy asked Annie to make a flourless chocolate cake for their book club meeting because she has a gluten allergy. (B) Because Annie has a gluten allergy, Amy asked her to make a flourless chocolate cake for their book club meeting.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun she could refer to Amy or Annie.\\nAmy asked Annie to make a flourless chocolate cake for their book club meeting because she has a gluten allergy.\\nThe first answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nBecause Annie has a gluten allergy, Amy asked her to make a flourless chocolate cake for their book club meeting. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5724\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the invertebrate.\\nContext: Hint: Insects, spiders, and worms are invertebrates.\\nOptions: (A) cat (B) orb weaver\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have a hard outer cover on their body. Other invertebrates have a soft body. Like other spiders, an orb weaver is an invertebrate. It does not have a backbone. It has a hard outer cover.\\nA cat is a mammal. Like other mammals, a cat is a vertebrate. It has a backbone. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5725\",\n    \"image\": \"5725\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged in the snow?\\nContext: Short-tailed weasels live in cold, snowy areas in Europe. The short tailed weasel is adapted to be camouflaged in the snow.\\nFigure: short-tailed weasel.\\nOptions: (A) polar bear (B) porcupine\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the short-tailed weasel.\\nDuring the winter, the short-tailed weasel has white fur covering its body. It is adapted to be camouflaged in the snow. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe polar bear has white fur covering its body. It is adapted to be camouflaged in the snow.\\nThe porcupine has black-and-white spines covering its body. It is not adapted to be camouflaged in the snow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5726\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Bullseye's phenotype for the fur color trait?\\nContext: In a group of Labrador retrievers, some individuals have black fur and others have brown fur. In this group, the gene for the fur color trait has two alleles. The allele F is for black fur, and the allele f is for brown fur.\\nBullseye, a Labrador retriever from this group, has brown fur. Bullseye has two alleles for brown fur.\\nOptions: (A) ff (B) brown fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Bullseye's observable version of the fur color trait is brown fur. So, Bullseye's phenotype for the fur color trait is brown fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5734\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word accuse on a dictionary page with the following guide words?\\nanother - away\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince accuse is not between the guide words another - away, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5736\",\n    \"image\": \"5736\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Minnesota?\\nContext: N/A\\nOptions: (A) Saint Paul (B) Columbus (C) Lincoln (D) San Francisco\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Saint Paul is the capital of Minnesota. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5747\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the allusion in this text suggest?\\nWith the gutters clogged and water rising in the streets, Christine, who was watching the storm from her window, commented, \\\"We're going to need an ark to get out of here.\\\"\\nContext: N/A\\nOptions: (A) Christine wants to protect her possessions. (B) Christine thinks the storm will cause major flooding.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked. The text uses an allusion, a brief reference to someone or something well known.\\nThe allusion to an ark suggests that Christine thinks the storm will cause major flooding. In the Bible, it rains for forty days and forty nights; Noah, his family, and animals of every species survive the great flood in an ark that he builds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5748\",\n    \"image\": \"5748\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Virginia (B) South Carolina (C) Idaho (D) Connecticut\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. Idaho is farthest west. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5755\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) The United States government can collect taxes. (B) People are taxed too much.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true. Facts can be proved by observing, measuring, or studying information.\\nThe flag of the United States has 13 stripes.\\nThis is a fact. It can be proved by looking at the flag and counting the number of stripes.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nThe flag of the United States is easy to draw.\\nThis is an opinion. People may have different opinions about what makes a flag \\\"easy\\\" to draw. The first sentence states a fact.\\nThe United States government can collect taxes.\\nIt can be proved by looking at a list of government powers.\\nThe second sentence states an opinion.\\nPeople are taxed too much.\\nToo much shows what a person believes, thinks, or feels. Another person might have a different opinion about what level of taxes is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5761\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nSomeone will raise the flag in the morning.\\nContext: N/A\\nOptions: (A) present tense (B) future tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, raise. The verb tells you about something that is going to happen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5770\",\n    \"image\": \"5770\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) fragile (B) transparent (C) opaque\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA fragile object will break into pieces if you drop it. All four objects are fragile.\\nAn opaque object does not let light through. The ceramic plate is opaque, but the icicle, the window, and the glass are not.\\nYou can see clearly through a transparent object. The window and the glass are transparent, but the ceramic plate is not.\\nThe property that all four objects have in common is fragile. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5774\",\n    \"image\": \"5774\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\n75% of the planets are made mainly of rock.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that four out of the eight planets are made mainly of rock. So, one-half, or 50%, of the planets are made mainly of rock. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5781\",\n    \"image\": \"5781\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) neither; the samples have the same temperature (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5789\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a mineral.\\nContext: N/A\\nOptions: (A) Quartz is a pure substance. It is formed in nature. (B) Hornblende is formed in nature. It is a solid. (C) A skull is not a pure substance. It is formed in nature.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Compare the properties of each substance to the properties of minerals. Select the substance whose properties do not match those of minerals.\\nA skull is not a pure substance. But all minerals are pure substances.\\nSo, a skull is not a mineral.\\nQuartz is a mineral.\\nHornblende is a mineral. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5795\",\n    \"image\": \"5795\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Hampshire?\\nContext: N/A\\nOptions: (A) Boston (B) Manchester (C) Des Moines (D) Concord\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Concord is the capital of New Hampshire. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5801\",\n    \"image\": \"5801\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Arizona?\\nContext: N/A\\nOptions: (A) Phoenix (B) Sacramento (C) Cheyenne (D) Tucson\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Phoenix is the capital of Arizona. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5805\",\n    \"image\": \"5805\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Solomon Islands (B) New Zealand (C) Kiribati (D) the Marshall Islands\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Marshall Islands.\\nDoes the Marshall Islands have any territorial disputes?\\nThe Marshall Islands claims to own Wake Island, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nThe United States claimed Wake Island in 1899 and has controlled it since then. But the Marshall Islands considers the island part of its territory. It says that its people have traveled to the island to gather food and resources for many years. Today, the island is mainly used by the U.S. Air Force. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5806\",\n    \"image\": \"5806\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Missouri (B) Wyoming (C) Delaware (D) Texas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. Texas is farthest south. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5808\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the action that doesn't belong.\\nContext: N/A\\nOptions: (A) tell (B) say (C) announce (D) write\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Write doesn't belong.\\nTell, announce, and say all name ways to speak aloud. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5812\",\n    \"image\": \"5812\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 1. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nDistance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5816\",\n    \"image\": \"5816\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Kevin and Aaliyah trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nKevin and Aaliyah open their lunch boxes in the school cafeteria. Neither Kevin nor Aaliyah got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nKevin's lunch Aaliyah's lunch\\nOptions: (A) Aaliyah can trade her broccoli for Kevin's oranges. (B) Kevin can trade his tomatoes for Aaliyah's broccoli. (C) Kevin can trade his tomatoes for Aaliyah's carrots. (D) Aaliyah can trade her almonds for Kevin's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nKevin wants broccoli. Aaliyah wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5828\",\n    \"image\": \"5828\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Stanley's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nStanley, a materials engineer, was developing a quick-drying fabric for athletic clothing. The fabric needed to absorb one drop of water in less than one second and dry completely in less than five minutes. Stanley thought a fabric made from cotton and polyester would both absorb water well and dry quickly. But he needed to decide what percentage of each material to use.\\nSo, he made a sample fabric that was 50% cotton and 50% polyester. Then he put one drop of water on the sample. He timed how long it took the fabric to dry after the water was absorbed.\\nFigure: fabric that has not absorbed drops of water.\\nOptions: (A) if the sample fabric would absorb one drop of water in less than one second (B) how long it would take the sample fabric to dry after it absorbed one drop of water (C) how much athletes would sweat in the fabric\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5830\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the living thing.\\nContext: N/A\\nOptions: (A) street lamp (B) spruce tree\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All living things need food and water. Water helps living things break down food and remove waste. Food gives living things energy. Living things use this energy to grow and change. All living things grow and change during their lives.\\nAll living things sense changes in the world around them. Living things might sense changes by seeing, smelling, hearing, or feeling. Living things can respond to the changes they sense. A spruce tree is a living thing.\\nSpruce trees grow and respond to the world around them. They need food and water.\\nSpruce trees are plants. They make their own food using water, carbon dioxide, and energy from sunlight.\\nA street lamp is not a living thing.\\nStreet lamps do not have all of the traits of living things. They do not grow or respond to the world around them. They do not need food or water. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5836\",\n    \"image\": \"5836\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Antarctica (B) Asia (C) Australia (D) Africa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Australia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5840\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bath towel has more thermal energy?\\nContext: Two 475-gram bath towels are identical except for their temperatures.\\nOptions: (A) the hotter bath towel (B) the colder bath towel\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two bath towels are made of the same material and have the same mass. So, the hotter bath towel has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5845\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nMr. McDowell gave a lecture on water conservation, during which he stressed the importance of not watering lawns during a drought.\\nContext: N/A\\nOptions: (A) exclamatory (B) declarative (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells about something, and it ends with a period. It is a declarative sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5859\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAs a result of the recent merger, twenty people in the regional sales division were let go. Most of the work will now be done by the marketing team.\\nContext: N/A\\nOptions: (A) euphemism (B) hyperbole\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nLet go is an indirect and more polite way of saying fired. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5864\",\n    \"image\": \"5864\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Anita and Gabby's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nAnita and Gabby were making batches of concrete for a construction project. To make the concrete, they mixed together dry cement powder, gravel, and water. Then, they checked if each batch was firm enough using a test called a slump test.\\nThey poured some of the fresh concrete into an upside-down metal cone. They left the concrete in the metal cone for 30 seconds. Then, they lifted the cone to see if the concrete stayed in a cone shape or if it collapsed. If the concrete in a batch collapsed, they would know the batch should not be used.\\nFigure: preparing a concrete slump test.\\nOptions: (A) if the concrete from each batch took the same amount of time to dry (B) if a new batch of concrete was firm enough to use\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5871\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a paper drinking cup?\\nContext: Select the better estimate.\\nOptions: (A) 150 liters (B) 150 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a paper drinking cup is 150 milliliters.\\n150 liters is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5876\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a garden snail?\\nContext: Select the best estimate.\\nOptions: (A) 35 millimeters (B) 35 centimeters (C) 35 meters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a garden snail is 35 millimeters.\\n35 centimeters and 35 meters are both too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5880\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does Holi celebrate?\\nContext: N/A\\nOptions: (A) the beginning of the school year (B) the birthday of India's first president (C) the beginning of spring (D) Nepal's independence day\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Holi celebrates the beginning of spring. The holiday takes place over two days in late February or early March. After winter, people are excited for the warmth and bright colors that come with spring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5881\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) bad kitty for President (B) Bad Kitty for President\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The word for is not important, so it should not be capitalized.\\nThe correct title is Bad Kitty for President. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5886\",\n    \"image\": \"5886\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk.\\nMammals are warm-blooded. Warm-blooded animals can control their body temperature.\\nA rabbit is an example of a mammal.\\nOptions: (A) wombat (B) barn owl (C) flamingo (D) ocean sunfish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A wombat is a mammal. It has fur and feeds its young milk.\\nWombats have strong claws on their front feet. They use their claws to dig underground holes called burrows.\\nA barn owl is a bird. It has feathers, two wings, and a beak.\\nBarn owls live on every continent except Antarctica.\\nA flamingo is a bird. It has feathers, two wings, and a beak.\\nFlamingos live in large groups. These groups are called flocks.\\nAn ocean sunfish is a fish. It lives underwater. It has fins, not limbs.\\nOcean sunfish have a flat body and wide fins. They sometimes swim to the ocean's surface to rest in the sun. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5888\",\n    \"image\": \"5888\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Poles that are different attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5889\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the living thing.\\nContext: N/A\\nOptions: (A) crayon (B) ferris wheel (C) toy car (D) hedge maze\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All living things are made up of cells. Plants, animals, and some fungi have many cells. Other living things are made up of just one cell.\\nAll living things need food and water. Water helps living things break down food and remove waste. Food gives living things energy. They use energy from food to grow and change.\\nAll living things sense changes in their environment. Living things might sense changes by seeing, smelling, hearing, or feeling. Living things can respond to the changes they sense. A toy car is not a living thing.\\nIf this toy car is wound up, it will roll forward. But toy cars do not have all of the traits of living things. They do not grow. They do not need food or water.\\nA hedge maze is a living thing.\\nHedge mazes grow and respond to their environment. They need food and water. Hedge mazes are made up of many cells.\\nHedge mazes are made from shrubs. People cut the shrubs into shapes that form a maze.\\nA ferris wheel is not a living thing.\\nA ferris wheel does not have all the traits of a living thing. It moves in a circle, but it does not grow. It does not need food or water.\\nA crayon is not a living thing.\\nCrayons do not have all of the traits of living things. They do not grow or respond to their environment. They do not need food or water. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5890\",\n    \"image\": \"5890\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Delaware?\\nContext: N/A\\nOptions: (A) Harrisburg (B) Dover (C) Wilmington (D) Georgetown\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Dover is the capital of Delaware. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5893\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nEric remarked that the new book on anti-gravity was impossible to put down.\\nContext: N/A\\nOptions: (A) pun (B) alliteration\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses a pun, a word or phrase that humorously suggests more than one meaning.\\nImpossible to put down means that the book is so good that it is hard to stop reading. The phrase impossible to put down is also a joke about anti-gravity: if gravity pulls things down, perhaps anti-gravity does the opposite and makes them impossible to put down. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5900\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Ms. Meyer has several important proposals to discuss at the next city council meeting. (B) There are some things that Ms. Meyer wants to bring up at the next city council meeting.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses overly simple or imprecise language (some things, bring up).\\nThe second sentence uses more precise language, so it is more formal overall. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5901\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word shower on a dictionary page with the following guide words?\\nseven - strange\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince shower is between the guide words seven - strange, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5903\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word scooter on a dictionary page with the following guide words?\\nshop - swept\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince scooter is not between the guide words shop - swept, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5912\",\n    \"image\": \"5912\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample A has more mass than each particle in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5913\",\n    \"image\": \"5913\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the reptile below.\\nContext: Reptiles have scaly, waterproof skin. Most reptiles live on land. A Galapagos giant tortoise is an example of a reptile.\\nOptions: (A) dwarf crocodile (B) gorilla\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A dwarf crocodile is a reptile. It has scaly, waterproof skin.\\nA gorilla is a mammal. It has fur and feeds its young milk. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5919\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nJosie entered the bustling, aromatic spice market in Istanbul and said to her travel companion, \\\"We're not in Kansas anymore.\\\"\\nContext: N/A\\nOptions: (A) a movie (B) a poem\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion We're not in Kansas anymore is a movie.\\nIn the 1939 film The Wizard of Oz, Dorothy, a young farm girl from Kansas, finds herself in Oz, an unusual place that looks nothing like her home. She says to her dog, \\\"Toto, I've a feeling we're not in Kansas anymore.\\\"\\nThe allusion We're not in Kansas anymore means we're in an unfamiliar place. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5922\",\n    \"image\": \"5922\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Ivan's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nIvan, a materials engineer, was developing a quick-drying fabric for athletic clothing. The fabric needed to absorb one drop of water in less than one second and dry completely in less than five minutes. Ivan thought a fabric made from cotton and polyester would both absorb water well and dry quickly. But he needed to decide what percentage of each material to use.\\nSo, he made a sample fabric that was 50% cotton and 50% polyester. Then he put one drop of water on the sample. He timed how long it took the fabric to dry after the water was absorbed.\\nFigure: fabric that has not absorbed drops of water.\\nOptions: (A) how much athletes would sweat in the fabric (B) how long it would take the sample fabric to dry after it absorbed one drop of water (C) if the sample fabric would absorb one drop of water in less than one second\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5925\",\n    \"image\": \"5925\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bird's beak is also adapted to catch insects?\\nContext: Common swifts eat insects and other small invertebrates. The shape of the 's beak is adapted to catch insects.\\nFigure: common swift.\\nOptions: (A) hanging parrot (B) barn swallow\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of a bird's beak is one example of an adaptation. Birds' beaks can be adapted in different ways. For example, a sharp hooked beak might help a bird tear through meat easily. A short, thick beak might help a bird break through a seed's hard shell. Birds that eat similar food often have similar beaks. Look at the picture of the common swift.\\nA short, thin beak is light and easy to move. The common swift uses its beak to grab fast-moving insects while flying.\\nNow look at each bird. Figure out which bird has a similar adaptation.\\nThe barn swallow has a short, thin beak. Its beak is adapted to catch insects.\\nThe hanging parrot has a small hooked beak. Its beak is not adapted to catch insects. The hanging parrot uses its beak to eat fruit and seeds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5933\",\n    \"image\": \"5933\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the tawny owl.\\nContext: This organism is a tawny owl. Its scientific name is Strix aluco.\\nOptions: (A) Cyanocitta cristata (B) Strix aluco (C) Goura cristata\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A tawny owl's scientific name is Strix aluco. The first word of its scientific name is Strix.\\nGoura cristata is in the genus Goura. The first word of its scientific name is Goura. So, Goura cristata and Strix aluco are not in the same genus.\\nThis organism and the tawny owl are in the same genus and the same species! Both organisms have the same scientific name, Strix aluco.\\nCyanocitta cristata is in the genus Cyanocitta. The first word of its scientific name is Cyanocitta. So, Cyanocitta cristata and Strix aluco are not in the same genus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5934\",\n    \"image\": \"5934\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Tennessee?\\nContext: N/A\\nOptions: (A) Wilmington (B) Nashville (C) Columbia (D) Cheyenne\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Nashville is the capital of Tennessee. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5940\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Paddling a kayak down a river is the most unforgettable experience. (B) For thousands of years, the natives of Greenland used kayaks for hunting and fishing.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true. Facts can be proved by observing, measuring, or studying information.\\nThe flag of the United States has 13 stripes.\\nThis is a fact. It can be proved by looking at the flag and counting the number of stripes.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nThe flag of the United States is easy to draw.\\nThis is an opinion. People may have different opinions about what makes a flag \\\"easy\\\" to draw. The second sentence states a fact.\\nFor thousands of years, the natives of Greenland used kayaks for hunting and fishing.\\nIt can be proved by reading a book about Greenland history.\\nThe first sentence states an opinion.\\nPaddling a kayak down a river is the most unforgettable experience.\\nMost unforgettable shows what a person believes, thinks, or feels. Another person might have a different opinion about what an experience is like. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5946\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word nauseous in its traditional sense?\\nContext: N/A\\nOptions: (A) Lara's little brother looked a little sick after eating mounds of candy and then going on the nauseous rides at the state fair. (B) Lara's little brother looked a little nauseous after eating mounds of candy and then going on the dizzying rides at the state fair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses nauseous in its traditional sense: causing disgust or nausea.\\nLara's little brother looked a little sick after eating mounds of candy and then going on the nauseous rides at the state fair.\\nThe second text uses nauseous in its nontraditional sense: feeling disgusted or nauseated.\\nLara's little brother looked a little nauseous after eating mounds of candy and then going on the dizzying rides at the state fair.\\nMost style guides recommend to use the traditional sense of the word nauseous because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5956\",\n    \"image\": \"5956\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is smaller in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5959\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a short story?\\nContext: N/A\\nOptions: (A) \\\"The Wolf in Sheep's clothing\\\" (B) \\\"The Wolf in Sheep's Clothing\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The word in is not important, so it should not be capitalized.\\nThe correct title is \\\"The Wolf in Sheep's Clothing.\\\" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5961\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nKrysta has no school spirit\\u2014she never comes to any of our football games.\\nContext: N/A\\nOptions: (A) false dichotomy: an argument that presents only two choices when more options exist (B) appeal to nature: the assumption that natural things are always good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Krysta doesn't have school spirit, because she doesn't go to football games. However, there may be a number of reasons why Krysta doesn't go to football games. This illustrates a type of logical fallacy known as a false dichotomy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5975\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is more flexible?\\nContext: N/A\\nOptions: (A) tape (B) plastic ball\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Flexible is a property. A flexible material can be bent without breaking easily.\\nLook at each picture, one at a time. Imagine bending the material shown in each picture.\\nOf the choices, the tape is more flexible. If you bend a piece of tape, it will not break. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5978\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbleaching clothes\\na piece of apple turning brown\\nContext: N/A\\nOptions: (A) Both are only physical changes. (B) Both are caused by cooling. (C) Both are chemical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBleaching clothes is a chemical change. The bleach reacts with dark stains on the clothes. The reaction changes the stains into different types of matter that wash away easily.\\nA piece of apple turning brown is a chemical change. The apple reacts with oxygen in the air and turns into a different type of matter.\\nIf you scrape off the brown layer of the apple, the inside is still white. The inside hasn't touched the air. So the chemical change didn't happen to that part of the apple.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5981\",\n    \"image\": \"5981\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oklahoma?\\nContext: N/A\\nOptions: (A) Jackson (B) Oklahoma City (C) Concord (D) Birmingham\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oklahoma City is the capital of Oklahoma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5986\",\n    \"image\": \"5986\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) bouncy (B) transparent (C) slippery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nYou can see clearly through a transparent object. The wet bar of soap is not transparent.\\nA bouncy object will bounce back from the floor if you drop it. The wet bar of soap and the jello are not bouncy.\\nA slippery object is hard to hold onto or stand on. All three objects are slippery.\\nThe property that all three objects have in common is slippery. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5990\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this Channel catfish's phenotype for the body color trait?\\nContext: In a group of Channel catfish, some individuals have a brown body and others have a white body. In this group, the gene for the body color trait has two alleles. The allele B is for a brown body, and the allele b is for a white body.\\nA certain Channel catfish from this group has a brown body. This catfish has two alleles for a brown body.\\nOptions: (A) a brown body (B) BB\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. The Channel catfish's observable version of the body color trait is a brown body. So, the catfish's phenotype for the body color trait is a brown body. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5991\",\n    \"image\": \"5991\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these organisms contains matter that was once part of the bear sedge?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) collared lemming (B) grizzly bear\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows that starts from the bear sedge.\\nArrows point to the grizzly bear from the bilberry and the barren-ground caribou. The only arrow pointing to the barren-ground caribou starts from the lichen. No arrow points to the lichen or the bilberry. So, in this food web, matter does not move from the bear sedge to the grizzly bear. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5992\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Dominic inherited this trait?\\nContext: Read the description of a trait.\\nDominic has blond hair.\\nOptions: (A) Dominic's mother cuts his hair every month. (B) Dominic's parents have blond hair. They passed down this trait to Dominic.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5994\",\n    \"image\": \"5994\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Iguazu Falls.\\nIguazu Falls is one of the largest waterfalls in the world. It is located in South America. Low rainfall in 1978 caused the falls to run dry that year.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nIguazu Falls is one of the largest waterfalls in the world. It is located in South America. Low rainfall in 1978 caused the falls to run dry that year.\\nThe underlined part of the passage tells you about the amount of precipitation that fell near Iguazu Falls in 1978. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5995\",\n    \"image\": \"5995\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bird's beak is also adapted to crack hard seeds?\\nContext: Hawfinches eat small, hard seeds. The shape of the 's beak is adapted to crack open small, hard seeds.\\nFigure: hawfinch.\\nOptions: (A) common swift (B) Asian golden weaver\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of a bird's beak is one example of an adaptation. Birds' beaks can be adapted in different ways. For example, a sharp hooked beak might help a bird tear through meat easily. A short, thick beak might help a bird break through a seed's hard shell. Birds that eat similar food often have similar beaks. Look at the picture of the hawfinch.\\nThe hawfinch has a short, thick beak. Its beak is adapted to crack hard seeds. The hawfinch uses its short, thick beak to press down on a seed and crack open its hard shell.\\nNow look at each bird. Figure out which bird has a similar adaptation.\\nThe Asian golden weaver has a short, thick beak. Its beak is adapted to crack hard seeds.\\nThe common swift has a short, thin beak. Its beak is not adapted to crack hard seeds. The common swift uses its beak to eat insects and other small invertebrates. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"5998\",\n    \"image\": \"5998\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Washington?\\nContext: N/A\\nOptions: (A) Spokane (B) Seattle (C) Olympia (D) Phoenix\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Olympia is the capital of Washington. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6001\",\n    \"image\": \"6001\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nHalf of the planets are made mainly of gas or ice.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that of the eight planets, two are made mainly of gas and two are made mainly of ice. So, four of the eight, or half, of the planets are made mainly of gas or ice. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6005\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal.\\nContext: N/A\\nOptions: (A) Wombats eat plants. (B) Maple trees have star-shaped leaves.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A wombat is an animal. It eats plants.\\nWombats have strong claws. They use their claws to dig tunnels called burrows.\\nA maple tree is a plant. It has star-shaped leaves.\\nMaple trees have green leaves in the spring and summer. In the fall, their leaves turn yellow, red, or brown. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6008\",\n    \"image\": \"6008\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Missouri (B) Illinois (C) Indiana (D) Michigan\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Missouri. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6020\",\n    \"image\": \"6020\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these organisms contains matter that was once part of the lichen?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) grizzly bear (B) bear sedge\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows that starts from the lichen.\\nNo arrow points to the bear sedge. So, in this food web, matter does not move from the lichen to the bear sedge. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6023\",\n    \"image\": \"6023\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait do African wild dogs have?\\nContext: This picture shows two African wild dogs. \\nAfrican wild dogs live in groups called packs. Between 3 and 20 adult African wild dogs live together in a pack.\\nOptions: (A) They live in packs with thousands of other African wild dogs. (B) They have four legs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Both the picture and the text tell you about the traits of African wild dogs. Start with the picture.\\nThese African wild dogs have black, brown, and white fur. They also have four legs and two ears.\\nNext, read the text about African wild dogs.\\nAfrican wild dogs live in groups called packs. Between 3 and 20 adult African wild dogs live together in a pack.\\nAfrican wild dogs do live in groups. But the groups are not made up of thousands of dogs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6028\",\n    \"image\": \"6028\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this door made of?\\nContext: N/A\\nOptions: (A) wood (B) cardboard\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the door.\\nThis door is made of two different materials. The body of the door is made of wood. The door knob is made of metal.\\nNot all doors are made of wood. The body of a door can be made of metal or even glass. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6029\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAn avid reader, Philip attends weekly book club meetings, and he finishes several novels every month.\\nContext: N/A\\nOptions: (A) compound-complex (B) simple (C) complex (D) compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound. It is made up of two independent clauses joined by the coordinating conjunction and.\\nAn avid reader, Philip attends weekly book club meetings, and he finishes several novels every month. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6037\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nSenator Fischer announced today that she plans to cut funding to early childhood education programs. The last thing we need is a government official who hates children!\\nContext: N/A\\nOptions: (A) straw man: a misrepresentation of an opponent's position that makes it easier to argue against (B) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Senator Fischer hates children, because she wants to cut education funding. However, the fact that Senator Fischer wants to cut education funding doesn't necessarily suggest that she hates children. This illustrates a type of logical fallacy known as a straw man. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6046\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nThe judge frequently described her life as a Cinderella story.\\nContext: N/A\\nOptions: (A) a fairy tale (B) Roman mythology\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion a Cinderella story is a fairy tale.\\nThe character Cinderella, from the fairy tale of the same name, transforms from a disrespected and neglected young woman to the wife of a prince.\\nThe allusion a Cinderella story means a dramatic gain in wealth or status. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6051\",\n    \"image\": \"6051\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Saint Vincent and the Grenadines (B) The Bahamas (C) Cuba (D) Haiti\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is The Bahamas. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6052\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the plant.\\nContext: N/A\\nOptions: (A) Orange trees can grow fruit. (B) Orcas swim in the ocean.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. An orange tree is a plant. It can grow fruit.\\nOrange trees grow in sunny, warm places. They can be damaged by cold weather.\\nAn orca is an animal. It swims in the ocean.\\nOrcas are also called killer whales. They hunt fish and other animals that live in the ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6054\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Carson acquired this trait?\\nContext: Read the description of a trait.\\nCarson is good at identifying insects.\\nOptions: (A) Carson learned to identify insects by reading many books about insects. (B) Carson likes to look at butterflies and beetles.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6072\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Sage's phenotype for the coat color trait?\\nContext: In a group of horses, some individuals have a black coat and others have a reddish-brown coat. In this group, the gene for the coat color trait has two alleles. The allele for a reddish-brown coat (l) is recessive to the allele for a black coat (L).\\nSage is a horse from this group. Sage has the homozygous genotype ll for the coat color gene.\\nOptions: (A) a black coat (B) a reddish-brown coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Sage's genotype for the coat color gene is ll. Sage's genotype of ll has only l alleles. The l allele is for a reddish-brown coat. So, Sage's phenotype for the coat color trait must be a reddish-brown coat.\\nTo check this answer, consider whether Sage's alleles are dominant or recessive. The allele for a reddish-brown coat (l) is recessive to the allele for a black coat (L). This means L is a dominant allele, and l is a recessive allele.\\nSage's genotype of ll has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Sage's phenotype for the coat color trait must be a reddish-brown coat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6078\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nChristina has a scar on her right elbow.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6083\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complete sentence?\\nContext: N/A\\nOptions: (A) A famous group will sing here on Saturday. (B) Mars has a special name it is called the red planet.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. A famous group will sing here on Saturday is a complete sentence. The subject is a famous group, and the verb is will sing. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6091\",\n    \"image\": \"6091\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the text to describe the diagram.\\nSolute particles moved in both directions across the permeable membrane. But more solute particles moved across the membrane (). When there was an equal concentration on both sides, the particles reached equilibrium.\\nContext: The diagram below shows a solution with one solute. Each solute particle is represented by a yellow ball. The solution fills a closed container that is divided in half by a membrane. The membrane, represented by a dotted line, is permeable to the solute particles.\\nThe diagram shows how the solution can change over time during the process of diffusion.\\nOptions: (A) to the left than to the right (B) to the right than to the left\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a solution, solute particles move and spread throughout the solvent. The diagram below shows how a solution can change over time. Solute particles move from the area where they are at a higher concentration to the area where they are at a lower concentration. This movement happens through the process of diffusion.\\nAs a result of diffusion, the concentration of solute particles becomes equal throughout the solution. When this happens, the solute particles reach equilibrium. At equilibrium, the solute particles do not stop moving. But their concentration throughout the solution stays the same.\\nMembranes, or thin boundaries, can divide solutions into parts. A membrane is permeable to a solute when particles of the solute can pass through gaps in the membrane. In this case, solute particles can move freely across the membrane from one side to the other.\\nSo, for the solute particles to reach equilibrium, more particles will move across a permeable membrane from the side with a higher concentration of solute particles to the side with a lower concentration. At equilibrium, the concentration on both sides of the membrane is equal. Look at the diagram again. It shows you how the solution changed during the process of diffusion.\\nBefore the solute particles reached equilibrium, there were 4 solute particles on the left side of the membrane and 6 solute particles on the right side of the membrane.\\nWhen the solute particles reached equilibrium, there were 5 solute particles on each side of the membrane. There was 1 more solute particle on the left side of the membrane than before.\\nSo, for the solute particles to reach equilibrium, more solute particles must have moved across the membrane to the left than to the right. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6092\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a movie?\\nContext: N/A\\nOptions: (A) the Elephant man (B) The Elephant Man\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between.\\nThe correct title is The Elephant Man. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6096\",\n    \"image\": \"6096\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the agile wallaby.\\nContext: This organism is an agile wallaby. Its scientific name is Macropus agilis.\\nOptions: (A) Macropus agilis (B) Hyla cinerea (C) Lacerta agilis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n An agile wallaby's scientific name is Macropus agilis. The first word of its scientific name is Macropus.\\nHyla cinerea is in the genus Hyla. The first word of its scientific name is Hyla. So, Hyla cinerea and Macropus agilis are not in the same genus.\\nLacerta agilis and Macropus agilis are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Lacerta agilis and Macropus agilis have the same species name within their genus, agilis. But the first words of their scientific names are different. Lacerta agilis is in the genus Lacerta, and Macropus agilis is in the genus Macropus.\\nThis organism and the agile wallaby are in the same genus and the same species! Both organisms have the same scientific name, Macropus agilis. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6099\",\n    \"image\": \"6099\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution B has more green particles per milliliter. So, Solution B has a higher concentration of green particles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6112\",\n    \"image\": \"6112\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Washington?\\nContext: N/A\\nOptions: (A) Spokane (B) Seattle (C) Jefferson City (D) Olympia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Olympia is the capital of Washington. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6115\",\n    \"image\": \"6115\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month has the lowest average precipitation in London?\\nContext: Use the graph to answer the question below.\\nOptions: (A) November (B) July (C) May\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in London, look at the graph.\\nChoice \\\"May\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Nov\\\" is incorrect.\\nJuly has an average monthly precipitation of about 45 millimeters. This is lower than in any other month. So, July has the lowest average precipitation. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6116\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word since on a dictionary page with the following guide words?\\nserape - spice\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince since is between the guide words serape - spice, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6118\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Steve investigate with an experiment?\\nContext: Steve has a pet lizard. Steve notices that on some days, the lizard is active and runs around the tank. On other days, the lizard hardly moves at all. Steve wonders what factors affect how active his lizard is. So, he decides to design an experiment. He has the following supplies available:\\none pet lizard\\nlive crickets\\nlive mealworms\\none heating lamp\\nOptions: (A) Is the pet lizard more active when its tank is heated with one heating lamp or with two heating lamps? (B) Is the pet lizard more active when it is fed crickets or mealworms? (C) Is the pet lizard more active when it is fed insects or lettuce?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6120\",\n    \"image\": \"6120\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) The Bahamas (B) Trinidad and Tobago (C) Cuba (D) Grenada\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Trinidad and Tobago. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6123\",\n    \"image\": \"6123\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the green tree frog.\\nContext: This organism is a green tree frog. Its scientific name is Hyla cinerea.\\nOptions: (A) Ardea cinerea (B) Strix aluco (C) Hyla cinerea\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A green tree frog's scientific name is Hyla cinerea. The first word of its scientific name is Hyla.\\nThis organism and the green tree frog are in the same genus and the same species! Both organisms have the same scientific name, Hyla cinerea.\\nArdea cinerea and Hyla cinerea are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Ardea cinerea and Hyla cinerea have the same species name within their genus, cinerea. But the first words of their scientific names are different. Ardea cinerea is in the genus Ardea, and Hyla cinerea is in the genus Hyla.\\nStrix aluco is in the genus Strix. The first word of its scientific name is Strix. So, Strix aluco and Hyla cinerea are not in the same genus. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6125\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Moxie's phenotype for the wool color trait?\\nContext: In a group of sheep, some individuals have white wool and others have black wool. In this group, the gene for the wool color trait has two alleles. The allele for black wool (l) is recessive to the allele for white wool (L).\\nMoxie is a sheep from this group. Moxie has the homozygous genotype ll for the wool color gene.\\nOptions: (A) black wool (B) white wool\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Moxie's genotype for the wool color gene is ll. Moxie's genotype of ll has only l alleles. The l allele is for black wool. So, Moxie's phenotype for the wool color trait must be black wool.\\nTo check this answer, consider whether Moxie's alleles are dominant or recessive. The allele for black wool (l) is recessive to the allele for white wool (L). This means L is a dominant allele, and l is a recessive allele.\\nMoxie's genotype of ll has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Moxie's phenotype for the wool color trait must be black wool. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6127\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complex sentence?\\nContext: N/A\\nOptions: (A) In June, Gabrielle and Jon will graduate with honors from Millersburg High School. (B) If we hike Bright Angel Trail in the Grand Canyon, we won't see Mooney Falls.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The first sentence is the complex sentence. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction if.\\nIf we hike Bright Angel Trail in the Grand Canyon, we won't see Mooney Falls. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6129\",\n    \"image\": \"6129\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Utah (B) Montana (C) California (D) Idaho\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Utah. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6133\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal.\\nContext: N/A\\nOptions: (A) Bison eat mostly grass. (B) Pear trees have green leaves.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A pear tree is a plant. It has green leaves.\\nWild pear trees grow in Europe, north Africa, and Asia.\\nA bison is an animal. It eats mostly grass.\\nBison can use their horns to defend themselves. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6138\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence uses a metaphor?\\nContext: N/A\\nOptions: (A) Mr. Casey's long legs were sunflower stalks. (B) Mr. Casey's legs were as long as sunflower stalks.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. This sentence uses a metaphor:\\nMr. Casey's long legs were sunflower stalks.\\nThe words legs and sunflower stalks are compared without the word like or as.\\nThis sentence uses a simile:\\nMr. Casey's legs were as long as sunflower stalks.\\nThe words legs and sunflower stalks are compared using the word as. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6144\",\n    \"image\": \"6144\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak. A toco toucan is an example of a bird.\\nOptions: (A) great white shark (B) white stork\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A white stork is a bird. It has feathers, two wings, and a beak.\\nStorks wade in shallow water to look for food. Storks eat fish, insects, worms, and other small animals.\\nA great white shark is a fish. It lives underwater. It has fins, not limbs.\\nGreat white sharks can live for up to 70 years. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6145\",\n    \"image\": \"6145\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) North Dakota (B) Maine (C) Iowa (D) Kansas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. Maine is farthest east. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6152\",\n    \"image\": \"6152\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this experiment, which were part of an experimental group?\\nContext: The passage below describes an experiment.\\n\\nMartina had six air plants on her desk that were not growing. Once a week, she soaked the air plants in water. But she suspected that they needed more water. She wondered if spraying the air plants with water every day in addition to soaking them would help them grow.\\nMartina measured the initial weight of all six air plants. Then, for the next month, she continued to soak all of the air plants once a week. She also sprayed three of the plants every day. At the end of the month, Martina measured the weights of the plants again.\\nFigure: an air plant displayed on a rock.\\nOptions: (A) the plants that were soaked in water and sprayed (B) the plants that were only soaked in water\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to investigate whether changing a variable between different groups has a specific outcome.\\nFor example, imagine you want to find out whether adding fertilizer to soil affects the height of pea plants. You could investigate this question with the following experiment:\\nYou grow one group of pea plants in soil with fertilizer and measure the height of the plants. This group shows you what happens when fertilizer is added to soil. Since fertilizer is the variable whose effect you are investigating, this group is an experimental group.\\nYou grow another group of pea plants in soil without fertilizer and measure the height of the plants. Since this group shows you what happens when fertilizer is not added to the soil, it is a control group.\\nBy comparing the results from the experimental group to the results from the control group, you can conclude whether adding fertilizer to the soil affects pea plant height. In this experiment, Martina investigated whether spraying air plants affects their growth. So, the plants that were soaked in water and sprayed were part of an experimental group.\\nThe plants that were only soaked in water were not sprayed. So, they were not part of an experimental group. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6162\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nDevon has a lot on her plate: she is attending college, has a full-time job as a waitress, and volunteers at the animal shelter.\\nContext: N/A\\nOptions: (A) Devon has no time to eat well. (B) Devon has many responsibilities.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom a lot on her plate suggests that Devon has many responsibilities. If you have a lot on your plate, you are busy with many different obligations. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6163\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nRachel has a lot on her plate: she is attending college, has a full-time job as a waitress, and volunteers at the animal shelter.\\nContext: N/A\\nOptions: (A) Rachel has many responsibilities. (B) Rachel has no time to eat well.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom a lot on her plate suggests that Rachel has many responsibilities. If you have a lot on your plate, you are busy with many different obligations. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6164\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Hugo acquired this trait?\\nContext: Read the description of a trait.\\nHugo can ride a bicycle.\\nOptions: (A) Hugo and his mother both ride bicycles. (B) Hugo rides his bicycle to school. (C) Hugo's friend showed him how to ride a bicycle.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6179\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word factoid in its traditional sense?\\nContext: N/A\\nOptions: (A) The Livingston Daily Mail was forced to issue a retraction after printing a factoid about Livingston's founder. It turned out that the reporter had written the article based on local legend rather than researching the actual history. (B) A reporter for the Livingston Daily Mail dug up an amusing factoid about Livingston's founder while researching for an article about the town's early years.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses factoid in its traditional sense: something made up presented as a true fact.\\nThe Livingston Daily Mail was forced to issue a retraction after printing a factoid about Livingston's founder. It turned out that the reporter had written the article based on local legend rather than researching the actual history.\\nThe second text uses factoid in its nontraditional sense: a trivial but true fact.\\nA reporter for the Livingston Daily Mail dug up an amusing factoid about Livingston's founder while researching for an article about the town's early years.\\nMost style guides recommend to use the traditional sense of the word factoid because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6184\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one true statement.\\nContext: N/A\\nOptions: (A) The nucleus of a plant cell does not have chromosomes. (B) The cell membrane stores nutrients, water, and waste in a plant cell. (C) The Golgi is outside the nucleus in a plant cell.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6185\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Cooper inherited this trait?\\nContext: Read the description of a trait.\\nCooper has straight hair.\\nOptions: (A) Cooper's parents were born with straight hair. They passed down this trait to Cooper. (B) Cooper and his father both have short hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6186\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does the sentence use a simile or a metaphor?\\nOn that winter morning, Brittany's hands were as cold as ice.\\nContext: N/A\\nOptions: (A) metaphor (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. On that winter morning, Brittany's hands were as cold as ice.\\nThe words hands and ice are compared using the word as. So, the sentence uses a simile. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6187\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word persuade on a dictionary page with the following guide words?\\nprey - punch\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince persuade is not between the guide words prey - punch, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6188\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complete sentence?\\nContext: N/A\\nOptions: (A) Over the summer, my cousin Reba visited many times. (B) Beavers build a dam they use sticks and branches.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Over the summer, my cousin Reba visited many times is a complete sentence. The subject is my cousin Reba, and the verb is visited. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6193\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Several competent city council members have been elected in Oakland, but the mayor's office has prevented the council members from significantly influencing policy. (B) The citizens of Oakland have elected several competent city council members, but the mayor's office has prevented them from significantly influencing policy.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun them could refer to the citizens or several competent city council members.\\nThe citizens of Oakland have elected several competent city council members, but the mayor's office has prevented them from significantly influencing policy.\\nThe first answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nSeveral competent city council members have been elected in Oakland, but the mayor's office has prevented the council members from significantly influencing policy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6201\",\n    \"image\": \"6201\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Lamar's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nLamar was . At the plant, an expensive filter was used to remove disease-causing bacteria from the water. But over time, the filter would become clogged with bacteria. If the filter became clogged, the water would not move through quickly enough. Lamar had to decide when the filter was too clogged and needed to be replaced. So, during his inspection, Lamar checked the filter by measuring how quickly water moved through it.\\nFigure: an engineer at a water treatment plant.\\nOptions: (A) whether the filter was clogged (B) the amount of bacteria in the water before it was filtered (C) whether an inexpensive filter would become clogged more often\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6204\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) If the governor raises tolls on state highways, he may be in hot water with voters. (B) The governor may be in serious trouble with voters if he raises the tolls on state highways.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses an idiom (in hot water).\\nThe first sentence uses formal language in place of the idiom, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6207\",\n    \"image\": \"6207\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) South America (B) North America (C) Asia (D) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is North America. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6212\",\n    \"image\": \"6212\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a horse produced by this cross will have a reddish-brown coat?\\nContext: In a group of horses, some individuals have a black coat and others have a reddish-brown coat. In this group, the gene for the coat color trait has two alleles. The allele for a black coat (L) is dominant over the allele for a reddish-brown coat (l).\\nThis Punnett square shows a cross between two horses.\\nOptions: (A) 3/4 (B) 4/4 (C) 0/4 (D) 2/4 (E) 1/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6214\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a movie?\\nContext: N/A\\nOptions: (A) \\\"In an Old House\\\" (B) ***In an Old House***\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A movie should be in italics.\\nThe correct title is **In an Old House**. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6215\",\n    \"image\": \"6215\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a rabbit produced by this cross will have brown fur?\\nContext: In a group of rabbits, some individuals have black fur and others have brown fur. In this group, the gene for the fur color trait has two alleles. The allele for brown fur (f) is recessive to the allele for black fur (F).\\nThis Punnett square shows a cross between two rabbits.\\nOptions: (A) 0/4 (B) 4/4 (C) 2/4 (D) 3/4 (E) 1/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6219\",\n    \"image\": \"6219\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Kathleen and Susan's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nKathleen and Susan were making batches of concrete for a construction project. To make the concrete, they mixed together dry cement powder, gravel, and water. Then, they checked if each batch was firm enough using a test called a slump test.\\nThey poured some of the fresh concrete into an upside-down metal cone. They left the concrete in the metal cone for 30 seconds. Then, they lifted the cone to see if the concrete stayed in a cone shape or if it collapsed. If the concrete in a batch collapsed, they would know the batch should not be used.\\nFigure: preparing a concrete slump test.\\nOptions: (A) if a new batch of concrete was firm enough to use (B) if the concrete from each batch took the same amount of time to dry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6222\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na piece of pizza rotting in a trashcan\\ncooking an egg\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by heating. (C) Both are caused by cooling. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA piece of pizza rotting is a chemical change. The matter in the pizza breaks down and slowly turns into a different type of matter.\\nCooking an egg is a chemical change. The heat causes the matter in the egg to change. Cooked eggs and raw eggs are made of different types of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nCooking is caused by heating. But a piece of pizza rotting is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6223\",\n    \"image\": \"6223\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What evidence of a flood does this picture show?\\nContext: This picture was taken during a flood. A flood can happen when an area gets a lot of rain in a short time.\\nOptions: (A) The benches on the riverbank are partly underwater. (B) There are two benches beside the river.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Evidence is information that tells you something happened.\\nHow do you look for evidence of a change to Earth's surface?\\nThere are many ways to find evidence of a change to Earth's surface. One way is to look at a picture that was taken after the change.\\nHere are some examples of what the evidence for different changes might be:\\nCause of the change | Evidence of the change\\nearthquake | cracks in the ground; houses with broken walls and roofs\\nvolcanic eruption | melted rock on Earth's surface; smoke coming out of a hole in the ground\\nerosion | a canyon with a river flowing through it; a river carrying sand and mud\\nBe careful when you are looking for evidence!\\nA picture of Earth's surface can contain a lot of information. Some of that information might be evidence of a change to the surface, but some of it is not!\\nFor example, a picture taken after an earthquake might show a blue sky. But the color of the sky is not evidence of an earthquake. So, that information is not evidence that an earthquake happened.\\n The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6232\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThere was a clear consensus in the Jefferson family that they should put their dog to sleep, rather than let him continue to suffer.\\nContext: N/A\\nOptions: (A) euphemism (B) paradox\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nPut their dog to sleep is a more indirect way of saying have the veterinarian kill their dog. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6245\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Assume all other forces on Valeria are balanced. Which statement describes the forces on Valeria?\\nContext: Valeria is sitting on a roller coaster cart as it reaches the bottom of a big loop. Earth's gravity is pulling down on Valeria with a force of 600N. The seat of the cart is pushing up on Valeria with a force of 1,200N.\\nOptions: (A) The forces are unbalanced, so there is a net force on Valeria. (B) The forces are balanced, so there is no net force on Valeria.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Every force has a direction and a magnitude, or strength. If two forces act on an object in opposite directions, the forces are called opposing forces.\\nWhen opposing forces have the same magnitude, they are balanced. If all the forces on an object are balanced, there is no net force on the object.\\nWhen opposing forces have different magnitudes, the forces are unbalanced. If any forces on an object are unbalanced, there is a net force on the object. To determine if there is a net force on Valeria, look at the forces:\\nEarth's gravity is pulling Valeria down with a force of 600 N.\\nThe seat of the cart is pushing Valeria up with a force of 1,200 N.\\nThe forces are in opposite directions, and the forces have different magnitudes: 600 N and 1,200 N. This means that the forces are unbalanced, so there is a net force on Valeria. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6257\",\n    \"image\": \"6257\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the black-tailed jackrabbit.\\nContext: This organism is a black-tailed jackrabbit. Its scientific name is Lepus californicus.\\nOptions: (A) Lepus californicus (B) Erinaceus europaeus (C) Sciurus vulgaris\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A black-tailed jackrabbit's scientific name is Lepus californicus.\\nLepus californicus has the same scientific name as a black-tailed jackrabbit. So, these organisms are in the same species.\\nErinaceus europaeus does not have the same scientific name as a black-tailed jackrabbit. So, Lepus californicus and Erinaceus europaeus are not in the same species.\\nSciurus vulgaris does not have the same scientific name as a black-tailed jackrabbit. So, Lepus californicus and Sciurus vulgaris are not in the same species. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6263\",\n    \"image\": \"6263\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of North Carolina?\\nContext: N/A\\nOptions: (A) Raleigh (B) Sacramento (C) Frankfort (D) Charlotte\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Raleigh is the capital of North Carolina. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6266\",\n    \"image\": \"6266\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nOf the four largest planets, three are made mainly of gas.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that the four largest planets are Jupiter, Saturn, Uranus, and Neptune. Jupiter and Saturn are made mainly of gas. Uranus and Neptune are made mainly of ice. So, of the four largest planets, two are made mainly of gas. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6269\",\n    \"image\": \"6269\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this coat made of?\\nContext: N/A\\nOptions: (A) concrete (B) plastic\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the coat.\\nThe coat is made of two materials. The buttons are made of plastic. The rest of the coat is made of wool.\\nWool comes from the fluffy coats of sheep! First, a farmer cuts the sheep's coats. Then, the wool is spun into yarn. The yarn can be dyed and used to make clothes. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6278\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nI've heard that Kiara & Co. is downsizing, so I'm happy to see that their store in downtown Greenville will remain open for now.\\nContext: N/A\\nOptions: (A) euphemism (B) hyperbole\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nDownsizing is an indirect way of saying that the company is planning on firing employees, closing shops or branches, and/or reducing its budget. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6283\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Some mosquitoes carry germs that can cause diseases like yellow fever. (B) The worst diseases are spread to humans by mosquitoes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true.\\nThe month of July has more days than the month of June.\\nThis is a fact. It can be proved by looking at a calendar and counting the number of days in each month.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nJuly is a better month than June for camping.\\nThis is an opinion. People may have different opinions about which month is \\\"better\\\" for camping. The second sentence states a fact.\\nSome mosquitoes carry germs that can cause diseases like yellow fever.\\nIt can be proved by checking a website about mosquitos.\\nThe first sentence states an opinion.\\nThe worst diseases are spread to humans by mosquitoes.\\nWorst shows what a person believes, thinks, or feels. Another person might have a different opinion about what the worst diseases are. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6290\",\n    \"image\": \"6290\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this coat made of?\\nContext: N/A\\nOptions: (A) glass (B) wool\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the coat.\\nThe coat is made of two materials. The buckle is made of metal. The rest of the coat is made of wool.\\nWool comes from the fluffy coats of sheep! First, a farmer cuts the sheep's coats. Then, the wool is spun into yarn. The yarn can be dyed and used to make clothes. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6291\",\n    \"image\": \"6291\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak. A peregrine falcon is an example of a bird.\\nOptions: (A) flamingo (B) gray tree frog\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A flamingo is a bird. It has feathers, two wings, and a beak.\\nFlamingos live in large groups. These groups are called flocks.\\nA gray tree frog is an amphibian. It has moist skin and begins its life in water.\\nThere are many kinds of tree frogs. Most tree frogs are very small. They can walk on thin branches. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6293\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a rock.\\nContext: N/A\\nOptions: (A) Steel is made in a factory. It is a solid. (B) Gabbro is not made by living things. It is a solid. (C) Rhyolite is a solid. It is formed in nature.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rocks are made of minerals. Here are some properties of rocks:\\nThey are solid.\\nThey are formed in nature.\\nThey are not made by living things.\\nThey are not pure substances. Compare the properties of each substance to the properties of rocks. Select the substance whose properties do not match those of rocks.\\nRhyolite is a rock.\\nSteel is made in a factory. But all rocks are formed in nature.\\nSo, steel is not a rock.\\nGabbro is a rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6304\",\n    \"image\": \"6304\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) smooth (B) scratchy (C) slippery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA smooth object is not scratchy or rough. None of the objects are smooth.\\nA slippery object is hard to hold onto or stand on. None of the objects are slippery.\\nA scratchy object is rough and itchy against your skin. All three objects are scratchy.\\nThe property that all three objects have in common is scratchy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6306\",\n    \"image\": \"6306\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Naomi and Emilia trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nNaomi and Emilia open their lunch boxes in the school cafeteria. Neither Naomi nor Emilia got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nNaomi's lunch Emilia's lunch\\nOptions: (A) Emilia can trade her almonds for Naomi's tomatoes. (B) Naomi can trade her tomatoes for Emilia's carrots. (C) Naomi can trade her tomatoes for Emilia's broccoli. (D) Emilia can trade her broccoli for Naomi's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nNaomi wants broccoli. Emilia wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6307\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) Susan's bedroom is neat she puts everything away. (B) The little boy popped a big bubble.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Susan's bedroom is neat she puts everything away is a run-on sentence. It has two sentences that are joined without end punctuation: Susan's bedroom is neat and She puts everything away. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6308\",\n    \"image\": \"6308\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) scratchy (B) yellow\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA scratchy object is rough and itchy against your skin. The corn on the cob is not scratchy.\\nYellow is a color.\\nThis color is yellow. The corn on the cob is yellow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6316\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nI don't trust Professor Powell's findings. Another researcher at her university was caught falsifying data. So, it's likely Professor Powell has, too.\\nContext: N/A\\nOptions: (A) guilt by association: a negative association intended to discredit someone or something (B) appeal to nature: the assumption that natural things are always good (C) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Professor Powell's research is untrustworthy because someone else at her university was caught falsifying data. However, this isn't necessarily true. The practices of one researcher at a university do not necessarily reflect the practices of another researcher at the same university. This illustrates a type of logical fallacy known as guilt by association. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6323\",\n    \"image\": \"6323\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Are the bubbles in soda a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a gas (B) a solid (C) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids are thicker than others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. The oxygen you breathe is a gas. The helium in a balloon is also a gas. The bubbles in soda are filled with carbon dioxide gas. Carbon dioxide gas spreads out to fill a space.\\nCarbon dioxide fills all the space inside the bubbles. If the bubbles pop at the surface of the soda, the carbon dioxide will expand to fill a much larger space. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6326\",\n    \"image\": \"6326\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Ohio (B) Nevada (C) Maine (D) Delaware\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. Nevada is farthest west. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6327\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that Sanjay's mass did not change.\\nThe gravitational potential energy stored between Sanjay and Earth () as he hiked toward the summit.\\nContext: Read the text about a person in motion.\\nSanjay hiked up a tall mountain. He followed a trail all the way to the summit.\\nOptions: (A) decreased (B) stayed the same (C) increased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between Sanjay and the center of Earth changed.\\nThe summit of the mountain was higher than the point where Sanjay started hiking. As he hiked toward the summit, the distance between Sanjay and the center of Earth increased. So, the gravitational potential energy stored between Sanjay and Earth increased as he hiked toward the summit. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6329\",\n    \"image\": \"6329\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to use its neck to appear large and scary to a predator?\\nContext: Bearded dragons are lizards. Their predators include owls, eagles, and snakes. The uses its neck to appear large and scary to a predator.\\nFigure: bearded dragon.\\nOptions: (A) lace monitor (B) spectacled cobra\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's neck is one example of an adaptation. Animals' necks can be adapted in different ways. For example, a large frilled neck might help an animal appear dangerous to its predators. A long neck might help an animal get food from tall trees. Look at the picture of the bearded dragon.\\nWhen frightened, the bearded dragon can spread out its hood to appear larger and more dangerous. If a predator is nearby, the hood can help scare it away.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe spectacled cobra has a hood around its neck. It uses its neck to appear larger and more dangerous to a predator.\\nThe lace monitor has a narrow neck. Its neck is not adapted to help it appear larger and more dangerous to a predator. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6331\",\n    \"image\": \"6331\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Olympia (B) Boise (C) Santa Fe (D) Pierre\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6334\",\n    \"image\": \"6334\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Laramie (B) Cheyenne (C) Salem (D) Grand Rapids\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6338\",\n    \"image\": \"6338\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Vermont?\\nContext: N/A\\nOptions: (A) Montpelier (B) Harrisburg (C) Burlington (D) Boston\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montpelier is the capital of Vermont. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6345\",\n    \"image\": \"6345\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the chemical formula for this molecule.\\nContext: N/A\\nOptions: (A) He2O2 (B) HO3 (C) H2O2 (D) CH2O2\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made up of atoms. Atoms can link together to form molecules. The links between atoms in a molecule are called chemical bonds. Different molecules are made up of different chemical elements, or types of atoms, bonded together.\\nScientists use both ball-and-stick models and chemical formulas to represent molecules.\\nA ball-and-stick model of a molecule is shown below.\\nThe balls represent atoms. The sticks represent the chemical bonds between the atoms.\\nNotice how each ball is labeled with a symbol made of one or more letters. The symbol is an abbreviation for a chemical element. The ball represents one atom of that element.\\nEvery chemical element is represented by its own symbol. For some elements, that symbol is one capital letter. For other elements, it is one capital letter followed by one lowercase letter. For example, the symbol for the element boron is B and the symbol for the element chlorine is Cl.\\nThe molecule shown above has one boron atom and three chlorine atoms. A chemical bond links each chlorine atom to the boron atom.\\nThe chemical formula for a molecule contains the symbol for each chemical element in the molecule. Many chemical formulas use subscripts. A subscript is text that is smaller and placed lower than the normal line of text.\\nIn chemical formulas, the subscripts are numbers. The subscript is always written after the symbol for an element. The subscript tells you how many atoms that symbol represents. If the symbol represents just one atom, then no subscript is included.\\nThe symbols in the chemical formula for a molecule match the symbols in the ball-and-stick model for that molecule. The ball-and-stick model shown before and the chemical formula shown above represent the same substance. H is the symbol for hydrogen. O is the symbol for oxygen. This ball-and-stick model shows a molecule with two hydrogen atoms and two oxygen atoms.\\nThe chemical formula will contain the symbols H and O. There are two hydrogen atoms, so H will have a subscript of 2. There are two oxygen atoms, so O will have a subscript of 2.\\nThe correct formula is H2 O2.\\nThe diagram below shows how each part of the chemical formula matches with each part of the model above. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6365\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Hazel decides to watch the action movie. Which result would be a cost?\\nContext: Hazel is deciding whether to watch a comedy or an action movie. She would prefer to watch a comedy. But she also wants to watch a movie with her sister. Hazel's sister will only watch an action movie.\\nOptions: (A) Hazel will give up the chance to watch the movie that she is more excited about. (B) Hazel will get to watch a movie with her sister.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Hazel wants or needs:\\nHazel will give up the chance to watch the movie that she is more excited about. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6371\",\n    \"image\": \"6371\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Ernest's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nErnest was an aerospace engineer who was developing a parachute for a spacecraft that would land on Mars. He needed to add a vent at the center of the parachute so the spacecraft would land smoothly. However, the spacecraft would have to travel at a high speed before landing. If the vent was too big or too small, the parachute might swing wildly at this speed. The movement could damage the spacecraft.\\nSo, to help decide how big the vent should be, Ernest put a parachute with a 1 m vent in a wind tunnel. The wind tunnel made it seem like the parachute was moving at 200 km per hour. He observed the parachute to see how much it swung.\\nFigure: a spacecraft's parachute in a wind tunnel.\\nOptions: (A) whether a parachute with a 1 m vent would swing too much at 400 km per hour (B) how steady a parachute with a 1 m vent was at 200 km per hour (C) if the spacecraft was damaged when using a parachute with a 1 m vent going 200 km per hour\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6372\",\n    \"image\": \"6372\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Indiana?\\nContext: N/A\\nOptions: (A) Fort Wayne (B) Indianapolis (C) Pierre (D) Austin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Indianapolis is the capital of Indiana. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6375\",\n    \"image\": \"6375\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The tops of the mountains are at () the valley below.\\nContext: Read the text. Then answer the question.\\nMany different features cover Earth's surface. In some places, hills and mountains rise high above the surrounding land. In other places, valleys and canyons drop far below.\\nElevation is the height of a location compared to sea level. Elevation is usually measured in feet or meters.\\nUse the image to complete the sentence.\\nOptions: (A) the same elevation as (B) a lower elevation than (C) a higher elevation than\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Elevation is the height of a location compared to sea level. The mountains in the picture rise above the valley. So, the tops of the mountains are at a higher elevation than the valley below. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6376\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the living thing.\\nContext: N/A\\nOptions: (A) pebble (B) cabbage in a field (C) ferris wheel (D) television\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All living things are made up of cells. Plants, animals, and some fungi have many cells. Other living things are made up of just one cell.\\nAll living things need food and water. Water helps living things break down food and remove waste. Food gives living things energy. They use energy from food to grow and change.\\nAll living things sense changes in their environment. Living things might sense changes by seeing, smelling, hearing, or feeling. Living things can respond to the changes they sense. A ferris wheel is not a living thing.\\nA ferris wheel does not have all the traits of a living thing. It moves in a circle, but it does not grow. It does not need food or water.\\nA pebble is not a living thing.\\nPebbles do not have all of the traits of living things. They do not grow or respond to their environment. They do not need food or water.\\nCabbage in a field is a living thing.\\nCabbage in a field grows and responds to its environment. It needs food and water. It is made up of many cells.\\nCabbage plants grow and change. They need food and water. Cabbage plants use water, air, and energy from sunlight to make food.\\nA television is not a living thing.\\nA television does not have all the traits of a living thing. It responds to the world around it, but it does not grow. It does not need food or water. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6377\",\n    \"image\": \"6377\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Sarah and Dave trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nSarah and Dave open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Sarah wanted broccoli in her lunch and Dave was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Sarah can trade her tomatoes for Dave's broccoli. (B) Dave can trade his almonds for Sarah's tomatoes. (C) Sarah can trade her tomatoes for Dave's sandwich. (D) Dave can trade his broccoli for Sarah's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sarah wanted broccoli in her lunch and Dave was hoping for tomatoes. Look at the labeled part of the images.\\nSarah has tomatoes. Dave has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6378\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a movie?\\nContext: N/A\\nOptions: (A) No Time but Now (B) no Time but Now\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The word but is not important, so it should not be capitalized.\\nThe correct title is No Time but Now. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6381\",\n    \"image\": \"6381\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Masoala National Park ecosystem?\\nContext: Figure: Masoala National Park.\\nMasoala National Park is a tropical rain forest ecosystem in northeastern Madagascar.\\nOptions: (A) It has year-round rain. It also has many different types of organisms. (B) It has cold winters. It also has many different types of organisms.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A tropical rain forest is a type of ecosystem. Tropical rain forests have the following features: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. So, Masoala National Park has year-round rain. It also has many different types of organisms. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6387\",\n    \"image\": \"6387\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) Asia (C) Antarctica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Australia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6391\",\n    \"image\": \"6391\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Salt Lake City (B) Saint Louis (C) Olympia (D) Cheyenne\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6400\",\n    \"image\": \"6400\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maryland?\\nContext: N/A\\nOptions: (A) Baltimore (B) Trenton (C) Annapolis (D) Olympia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Annapolis is the capital of Maryland. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6406\",\n    \"image\": \"6406\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oregon?\\nContext: N/A\\nOptions: (A) Portland (B) Salem (C) Louisville (D) Santa Fe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salem is the capital of Oregon. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6408\",\n    \"image\": \"6408\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Connecticut (B) Vermont (C) New York (D) Pennsylvania\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New York.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6410\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Chirpie's phenotype for the body feather color trait?\\nContext: In a group of budgerigar parakeets, some individuals have green body feathers and others have blue body feathers. In this group, the gene for the body feather color trait has two alleles. The allele for blue body feathers (b) is recessive to the allele for green body feathers (B).\\nChirpie is a budgerigar parakeet from this group. Chirpie has the heterozygous genotype Bb for the body feather color gene.\\nOptions: (A) blue body feathers (B) green body feathers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine Chirpie's phenotype for the body feather color trait. First, consider the alleles in Chirpie's genotype for the body feather color gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for blue body feathers (b) is recessive to the allele for green body feathers (B). This means B is a dominant allele, and b is a recessive allele.\\nChirpie's genotype of Bb has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Chirpie's phenotype for the body feather color trait must be green body feathers. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6412\",\n    \"image\": \"6412\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Tara and Jeremiah trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nTara and Jeremiah open their lunch boxes in the school cafeteria. Neither Tara nor Jeremiah got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nTara's lunch Jeremiah's lunch\\nOptions: (A) Jeremiah can trade his almonds for Tara's tomatoes. (B) Jeremiah can trade his broccoli for Tara's oranges. (C) Tara can trade her tomatoes for Jeremiah's carrots. (D) Tara can trade her tomatoes for Jeremiah's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nTara wants broccoli. Jeremiah wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6442\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is more flexible?\\nContext: N/A\\nOptions: (A) nylon shorts (B) ceramic mug\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Flexible is a property. A flexible material can be bent without breaking easily.\\nLook at each picture, one at a time. Imagine bending the material shown in each picture.\\nOf the choices, the nylon shorts are more flexible. If you fold nylon fabric, it will not break. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6445\",\n    \"image\": \"6445\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Florida?\\nContext: N/A\\nOptions: (A) Tallahassee (B) Charleston (C) Helena (D) Nashville\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Tallahassee is the capital of Florida. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6454\",\n    \"image\": \"6454\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) neither; the samples have the same temperature (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample A has more mass than each particle in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6455\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nI read that people with higher-paying jobs wear more expensive clothing. So, if I wear fancier clothes, I'll finally get that raise I've been wanting.\\nContext: N/A\\nOptions: (A) false causation: the assumption that because two things happened together, one caused the other (B) appeal to nature: the assumption that natural things are always good (C) false dichotomy: an argument that presents only two choices when more options exist\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that expensive clothing will lead to a higher-paying job. However, that's not necessarily true. For instance, perhaps having a higher-paying job might lead someone to buy more expensive clothing. This illustrates a type of logical fallacy known as false causation. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6457\",\n    \"image\": \"6457\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nEthane is ().\\nContext: The model below represents a molecule of ethane. Ethane is used to make plastic bags.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. Use the model to determine whether ethane is an elementary substance or a compound.\\nStep 1: Interpret the model.\\n.\\nUse the legend to determine the chemical element represented by each color. The colors and atomic symbols from the legend are shown in the table below. The table also includes the names of the chemical elements represented in the model.\\nYou can see from the model that a molecule of ethane is composed of six hydrogen atoms and two carbon atoms bonded together.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that ethane is composed of two chemical elements: hydrogen and carbon. Since ethane is composed of multiple chemical elements bonded together, ethane is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6467\",\n    \"image\": \"6467\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Why did young Mae look at the stars?\\nContext: Read the passage about Mae Jemison.\\nMae Jemison always wanted to go to space. As a child, she looked at the stars and dreamed of flying there. She also liked to read books about stars, planets, and space.\\nMae grew up and became a doctor. But she never forgot her dreams of space. So, a few years later, she became an astronaut, too. That's someone who is trained to travel in space. Mae made history in 1992 when she blasted off in the space shuttle Endeavour. She was the first African American woman to travel in space!\\nOptions: (A) She wanted to watch the weather. (B) She wanted to travel to outer space.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the passage. It tells you why young Mae looked at the stars.\\nMae Jemison always wanted to go to space. As a child, she looked at the stars and dreamed of flying there. She also liked to read books about stars, planets, and space. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6469\",\n    \"image\": \"6469\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Pamela's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nPamela prepared ten buckets, each with one gallon of boiling water and three tablespoons of black fabric dye. Pamela soaked white linen fabric squares in five of the buckets, and white cotton fabric squares in the other five buckets. All of the fabric squares were soaked for 15 minutes. After the fabric dried, Pamela scored the darkness of the squares on a scale from light to dark. She compared the darkness of the linen fabric to the darkness of the cotton fabric.\\nFigure: fabric that has been dyed black.\\nOptions: (A) Does fabric turn darker when soaked in a mixture of black dye and water for 15 minutes compared to 30 minutes? (B) Does linen fabric turn darker than cotton fabric when soaked in a mixture of black dye and water?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6470\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nDry ice sublimating and becoming a gas is a ().\\nContext: N/A\\nOptions: (A) chemical change (B) physical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form new molecules. The types of molecules in matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then relink and form different molecules. For example, carbon dioxide molecules are created when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. For example, water vaporizing is a physical change. Liquid water and water vapor are made of the same type of matter: water. Dry ice is solid carbon dioxide. When dry ice gets warm, it changes state and becomes carbon dioxide gas. This change of state, from solid to gas, is called sublimation.\\nDry ice becoming a gas is a physical change. A change of state does not form a different type of matter. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6472\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Your student,\\nNicole (B) your student,\\nNicole\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6482\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does the sentence use a simile or a metaphor?\\nMy little brother is as sweet as pie.\\nContext: N/A\\nOptions: (A) metaphor (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. My little brother is as sweet as pie.\\nThe words brother and pie are compared using the word as. So, the sentence uses a simile. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6502\",\n    \"image\": \"6502\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the air moving through a trombone a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a gas (B) a solid (C) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids are thicker than others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. The oxygen you breathe is a gas. The helium in a balloon is also a gas. The air moving through a trombone is a gas. A gas expands to fill a space.\\nThe air in a trombone expands to fill all the space inside the trombone. When air leaves the trombone, the air expands to fill a much larger space. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6504\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that the sled's mass did not change.\\nThe gravitational potential energy stored between the sled and Earth () as Tammy rode down the hill.\\nContext: Read the text about an object in motion.\\nOn a snowy day, Tammy rode her sled down a big hill.\\nOptions: (A) stayed the same (B) increased (C) decreased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between the sled and the center of Earth changed.\\nThe bottom of the hill was lower than the point where Tammy started sledding. As Tammy rode toward the bottom of the hill, the distance between the sled and the center of Earth decreased. So, the gravitational potential energy stored between the sled and Earth decreased as Tammy rode down the hill. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6517\",\n    \"image\": \"6517\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's mouth is also adapted to tear through meat?\\nContext: Leopards are carnivores, or meat eaters. They eat large mammals like deer and antelope. The 's mouth is adapted to tear through meat.\\nFigure: leopard.\\nOptions: (A) aardvark (B) Eurasian lynx\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the leopard.\\nThe leopard has a large mouth and sharp teeth. Its mouth is adapted to tear through meat. The leopard uses its large mouth to grab its prey. It uses its sharp teeth to cut up the meat of the prey into pieces it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe Eurasian lynx has a large mouth and sharp teeth. Its mouth is adapted to tear through meat.\\nThe aardvark has a long tube-shaped mouth and a few, small teeth. It does not have sharp teeth. So, its mouth is not adapted to tear through meat. The aardvark uses its mouth to get insects out of holes and burrows. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6525\",\n    \"image\": \"6525\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Chicago.\\nOn February 12, 1894, a record high wind speed of 87 miles per hour was recorded in Chicago.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nOn February 12, 1894, a record high wind speed of 87 miles per hour was recorded in Chicago.\\nThis passage tells you about the wind speed in Chicago on February 12, 1894. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6534\",\n    \"image\": \"6534\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Sahara Desert.\\nThe Sahara Desert covers a large part of northern Africa. It does not get much rainfall each year.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nThe Sahara Desert covers a large part of northern Africa. It does not get much rainfall each year.\\nThe underlined part of the passage tells you about the usual pattern of precipitation in the Sahara Desert. This passage does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6535\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Jada inherited this trait?\\nContext: Read the description of a trait.\\nJada has green eyes.\\nOptions: (A) Jada has green eyes like her biological mother. (B) Jada's neighbor has green eyes. (C) Jada and her biological father wear sunglasses when they go outside.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6536\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) The awesome band Prehistoric Playground has a gig at McCarthy Hall tonight. (B) The band Prehistoric Playground is performing at McCarthy Hall tonight.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses slang (awesome, gig).\\nThe second sentence uses formal language in place of the slang, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6537\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word nauseous in its traditional sense?\\nContext: N/A\\nOptions: (A) Everyone seemed to enjoy the magnolia-scented candle, but it made Zachary feel rather nauseous. (B) Everyone seemed to enjoy the magnolia-scented candle, but Zachary found the smell rather nauseous.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses nauseous in its traditional sense: causing disgust or nausea.\\nEveryone seemed to enjoy the magnolia-scented candle, but Zachary found the smell rather nauseous.\\nThe second text uses nauseous in its nontraditional sense: feeling disgusted or nauseated.\\nEveryone seemed to enjoy the magnolia-scented candle, but it made Zachary feel rather nauseous.\\nMost style guides recommend to use the traditional sense of the word nauseous because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6539\",\n    \"image\": \"6539\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Solomon Islands (B) New Zealand (C) Papua New Guinea (D) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Australia.\\nIs Australia a country or a continent?\\nBoth! Australia is a country in Oceania, a region made up of many lands and islands in the Pacific Ocean. Many people say that Australia is the world's smallest continent. But some people call Oceania a continent instead. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6541\",\n    \"image\": \"6541\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nebraska?\\nContext: N/A\\nOptions: (A) Newport (B) Omaha (C) Lincoln (D) Lansing\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lincoln is the capital of Nebraska. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6542\",\n    \"image\": \"6542\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) shiny (B) scratchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA shiny object reflects a lot of light. Both objects are shiny.\\nA scratchy object is rough and itchy against your skin. Neither of the objects are scratchy.\\nThe property that both objects have in common is shiny. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6546\",\n    \"image\": \"6546\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of South Carolina?\\nContext: N/A\\nOptions: (A) Columbia (B) Atlanta (C) Charleston (D) Frankfort\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbia is the capital of South Carolina. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6553\",\n    \"image\": \"6553\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this magnifying glass made of?\\nContext: N/A\\nOptions: (A) glass (B) clay\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the magnifying glass.\\nThe magnifying glass is made of two different materials. The handle is made of plastic, and the lens is made of glass. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6557\",\n    \"image\": \"6557\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which fish's mouth is also adapted for tearing through meat?\\nContext: Piranhas eat mostly fish. The 's mouth is adapted to tear through meat.\\nFigure: piranha.\\nOptions: (A) starry moray (B) copperband butterflyfish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the piranha.\\nThe piranha has large, sharp teeth. Its mouth is adapted for tearing through meat. The piranha uses its teeth to cut up meat into pieces it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe starry moray has a large mouth and sharp teeth. Its mouth is adapted for tearing through meat.\\nThe copperband butterflyfish has a small, narrow mouth. Its mouth is not adapted for tearing through meat. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6558\",\n    \"image\": \"6558\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Massachusetts (B) Maryland (C) New York (D) Rhode Island\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Rhode Island. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6560\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Shelley investigate with an experiment?\\nContext: Shelley gets a basketball for her birthday and dribbles it around her neighborhood. She notices that sometimes the ball bounces higher than other times. She wonders what factors affect how high her ball bounces. So, she decides to design an experiment. She has the following supplies available:\\none basketball\\naccess to a brick patio\\naccess to a grassy lawn\\naccess to a gravel driveway\\na meterstick\\nOptions: (A) Does the basketball bounce higher on gravel or on grass? (B) Does the basketball bounce higher on a lawn or on a dirt path? (C) Do larger basketballs bounce higher than smaller basketballs on a brick patio?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6573\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Flicka's phenotype for the wool color trait?\\nContext: In a group of sheep, some individuals have white wool and others have black wool. In this group, the gene for the wool color trait has two alleles. The allele L is for white wool, and the allele l is for black wool.\\nFlicka, a sheep from this group, has white wool. Flicka has one allele for white wool and one allele for black wool.\\nOptions: (A) Ll (B) white wool\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Flicka's observable version of the wool color trait is white wool. So, Flicka's phenotype for the wool color trait is white wool. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6574\",\n    \"image\": \"6574\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Buffalo Gap National Grassland ecosystem?\\nContext: Figure: Buffalo Gap National Grassland.\\nBuffalo Gap National Grassland is a prairie grassland ecosystem in southwestern South Dakota.\\nOptions: (A) It has hot summers. It also has soil that is rich in nutrients. (B) It has cool winters. It also has cool summers.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A prairie grassland is a type of ecosystem. Prairie grasslands have the following features: hot summers and cool winters, a medium amount of rain, and soil that is rich in nutrients. So, the Buffalo Gap National Grassland has hot summers. It also has soil that is rich in nutrients. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6576\",\n    \"image\": \"6576\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New York?\\nContext: N/A\\nOptions: (A) New York City (B) Albany (C) Buffalo (D) Montpelier\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Albany is the capital of New York. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6577\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two blue whales. Which blue whale was moving at a lower speed?\\nContext: N/A\\nOptions: (A) a blue whale that moved 55miles in 5hours (B) a blue whale that moved 40miles in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving slower will go a shorter distance in that time. It is moving at a lower speed. Look at the distance each blue whale moved and the time it took to move that distance.\\nOne blue whale moved 40 miles in 5 hours.\\nThe other blue whale moved 55 miles in 5 hours.\\nNotice that each blue whale spent the same amount of time moving. The blue whale that moved 40 miles moved a shorter distance in that time. So, that blue whale must have moved at a lower speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6578\",\n    \"image\": \"6578\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Palau (B) Tonga (C) Samoa (D) Papua New Guinea\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Samoa. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6585\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Just as Mr. Terry was about to play the vinyl album on his old record player, it broke. (B) The vinyl album broke just as Mr. Terry was about to play it on his old record player.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it could refer to the vinyl album or the record player.\\nJust as Mr. Terry was about to play the vinyl album on his old record player, it broke.\\nThe first answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nThe vinyl album broke just as Mr. Terry was about to play it on his old record player. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6588\",\n    \"image\": \"6588\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Iowa?\\nContext: N/A\\nOptions: (A) Cedar Rapids (B) Des Moines (C) Indianapolis (D) Cheyenne\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Des Moines is the capital of Iowa. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6591\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a limousine?\\nContext: Select the best estimate.\\nOptions: (A) 6 yards (B) 6 feet (C) 6 inches\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a limousine is 6 yards.\\n6 inches and 6 feet are both too short. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6608\",\n    \"image\": \"6608\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 1. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is smaller when there is a greater distance between the magnets. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nDistance affects the magnitude of the magnetic force. When there is a greater distance between magnets, the magnitude of the magnetic force between them is smaller.\\nThere is a greater distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is smaller in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6609\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nJennifer is good at knitting hats.\\nContext: Hint: People who can knit had to learn how to do it.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to knit. Instead, many people learn how to knit. Knitting well takes practice. So, knitting well is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6611\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word lucky on a dictionary page with the following guide words?\\nlaid - lizard\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince lucky is not between the guide words laid - lizard, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6619\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ndine - drown\\nContext: N/A\\nOptions: (A) dozen (B) design\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince dozen is between the guide words dine - drown, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6620\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this Channel catfish's genotype for the body color gene?\\nContext: In a group of Channel catfish, some individuals have a brown body and others have a white body. In this group, the gene for the body color trait has two alleles. The allele B is for a brown body, and the allele b is for a white body.\\nA certain Channel catfish from this group has a brown body. This catfish has one allele for a brown body and one allele for a white body.\\nOptions: (A) Bb (B) a brown body\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. The Channel catfish has one allele for a brown body (B) and one allele for a white body (b). So, the catfish's genotype for the body color gene is Bb. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6624\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a bicycle?\\nContext: Select the best estimate.\\nOptions: (A) 19 tons (B) 19 pounds (C) 19 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a bicycle is 19 pounds.\\n19 ounces is too light and 19 tons is too heavy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6626\",\n    \"image\": \"6626\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oklahoma?\\nContext: N/A\\nOptions: (A) Tallahassee (B) Little Rock (C) Oklahoma City (D) Missoula\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oklahoma City is the capital of Oklahoma. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6635\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal.\\nContext: N/A\\nOptions: (A) Seals eat fish. (B) Avocado trees have green leaves.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A seal is an animal. It eats fish and other animals that live in the ocean.\\nSeals have flippers instead of arms. They use their flippers to swim.\\nAn avocado tree is a plant. It has green leaves.\\nEach avocado has one large seed inside. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6636\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to make a paper airplane?\\nContext: Select the better estimate.\\nOptions: (A) 50 seconds (B) 50 hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to make a paper airplane is 50 seconds.\\n50 hours is too slow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6637\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nCody's research on nineteenth-century philosophers led him down the rabbit hole.\\nContext: N/A\\nOptions: (A) literature (B) Greek mythology\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion down the rabbit hole is literature.\\nLewis Carroll's Alice's Adventures in Wonderland tells the story of a young girl who follows a white rabbit down a rabbit hole and finds herself in a series of adventures in a surreal world.\\nThe allusion down the rabbit hole means on a strange or difficult exploration. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6646\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nThe air was muggy and humid today where Eli lives.\\nContext: N/A\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nThe air was muggy and humid today where Eli lives.\\nHumidity is the amount of water in the air.\\nThis passage tells you about the humidity today where Eli lives. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6648\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the description that doesn't belong.\\nContext: N/A\\nOptions: (A) always (B) done (C) sometimes (D) never\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Done doesn't belong.\\nSometimes, never, and always all describe how often something happens. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6652\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Whenever the Griffins visit Florida, they see their relatives. (B) The Griffins see their relatives whenever they visit Florida.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun they could refer to the Griffins or their relatives.\\nThe Griffins see their relatives whenever they visit Florida.\\nThe second answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nWhenever the Griffins visit Florida, they see their relatives. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6660\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which brick has more thermal energy?\\nContext: Two 2-kilogram bricks are identical except for their temperatures.\\nOptions: (A) the hotter brick (B) the colder brick\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two bricks are made of the same material and have the same mass. So, the hotter brick has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6662\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence uses a metaphor?\\nContext: N/A\\nOptions: (A) The cat's silver eyes were two shiny coins. (B) The cat's silver eyes were like two shiny coins.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. This sentence uses a metaphor:\\nThe cat's silver eyes were two shiny coins.\\nThe words eyes and coins are compared without the word like or as.\\nThis sentence uses a simile:\\nThe cat's silver eyes were like two shiny coins.\\nThe words eyes and coins are compared using the word like. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6671\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which order confirmation is more formal?\\nContext: N/A\\nOptions: (A) Thanks for shopping with us. We'll let you know ASAP when your item has shipped. (B) Thank you for shopping with us. We will send a confirmation as soon as your item has shipped.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The first order confirmation is more formal. It uses more elevated language (confirmation). The other order confirmation uses contractions (we'll) and abbreviations (ASAP) and sounds more conversational. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6685\",\n    \"image\": \"6685\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Arkansas?\\nContext: N/A\\nOptions: (A) Carson City (B) Fayetteville (C) Jefferson City (D) Little Rock\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Little Rock is the capital of Arkansas. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6686\",\n    \"image\": \"6686\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is weaker in Pair 2. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is weaker in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is weaker when the magnets are farther apart. Distance affects the strength of the magnetic force. When magnets are farther apart, the magnetic force between them is weaker.\\nThe magnets in Pair 1 are farther apart than the magnets in Pair 2. So, the magnetic force is weaker in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6687\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nbathtub - blend\\nContext: N/A\\nOptions: (A) bin (B) butler\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince bin is between the guide words bathtub - blend, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6691\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nIn autumn, the leaves change color.\\nContext: N/A\\nOptions: (A) past tense (B) future tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, change. The verb tells you about something that is true or happening now. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6697\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Ayana investigate with an experiment?\\nContext: Ayana leaves some chocolates in her jacket pocket. When she finds the chocolates later, she notices that some of them have melted. She wonders what factors affect how quickly chocolate melts. So, she decides to design an experiment. She has the following supplies available:\\none bar of milk chocolate\\none bar of dark chocolate\\na stove\\na pot\\nOptions: (A) Does milk chocolate melt faster when heated in a microwave or on a stove? (B) Does milk chocolate or dark chocolate melt faster when heated on the stove? (C) Does dark chocolate or white chocolate melt faster when heated on the stove?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6710\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Lady's phenotype for the wool color trait?\\nContext: In a group of sheep, some individuals have white wool and others have black wool. In this group, the gene for the wool color trait has two alleles. The allele L is for white wool, and the allele l is for black wool.\\nLady, a sheep from this group, has white wool. Lady has one allele for white wool and one allele for black wool.\\nOptions: (A) Ll (B) white wool\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Lady's observable version of the wool color trait is white wool. So, Lady's phenotype for the wool color trait is white wool. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6712\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Vivian investigate with an experiment?\\nContext: Vivian is outside with her friend on a sunny day. Vivian is wearing a light-colored shirt, and she notices that she feels colder than her friend, who is wearing a dark shirt. She wonders what factors affect how fabric warms an object. So, she decides to design an experiment. She has the following supplies available:\\na black cotton shirt\\na white cotton shirt\\ntwo identical empty glass jars\\ntwo thermometers\\nOptions: (A) When placed in the sun, does a glass jar wrapped in cotton heat up more than a glass jar wrapped in wool? (B) When wrapped in a cotton shirt and placed in the sun, does a large jar or a small jar heat up more? (C) When placed in the sun, does a glass jar wrapped in a black cotton shirt heat up more than a glass jar wrapped in a white cotton shirt?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6713\",\n    \"image\": \"6713\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following organisms is the secondary consumer in this food web?\\nContext: Below is a food web from an ocean ecosystem in Monterey Bay, off the coast of California.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) orca (B) sea urchin (C) kelp bass (D) kelp\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Secondary consumers eat primary consumers, and primary consumers eat producers. So, in a food web, secondary consumers have arrows pointing to them from primary consumers. Primary consumers have arrows pointing to them from producers.\\nThe kelp does not have any arrows pointing to it. So, the kelp is not a secondary consumer.\\nThe orca has an arrow pointing to it from the sea otter. The sea otter is not a primary consumer. So, the orca is not a secondary consumer.\\nThe kelp bass has arrows pointing to it from the zooplankton and the plainfin midshipman. The zooplankton and the plainfin midshipman are primary consumers, so the kelp bass is a secondary consumer.\\nThe black rockfish has an arrow pointing to it from the zooplankton. The zooplankton is a primary consumer, so the black rockfish is a secondary consumer.\\nThe sea urchin has an arrow pointing to it from the kelp. The kelp is not a primary consumer. So, the sea urchin is not a secondary consumer. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6717\",\n    \"image\": \"6717\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Santa Fe (B) Denver (C) Boise (D) Colorado Springs\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6726\",\n    \"image\": \"6726\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) rough (B) shiny (C) transparent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. All three objects are shiny.\\nA rough object feels scratchy when you touch it. The car bumper and the hair clip are not rough.\\nYou can see clearly through a transparent object. None of the objects are transparent.\\nThe property that all three objects have in common is shiny. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6728\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) blue crab (B) chameleon (C) dung beetle (D) crown jellyfish\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A chameleon is a reptile. Like other reptiles, a chameleon is a vertebrate. It has a backbone.\\nLike other jellyfishes, a crown jellyfish is an invertebrate. It does not have a backbone. It has a soft body.\\nA dung beetle is an insect. Like other insects, a dung beetle is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nLike other crabs, a blue crab is an invertebrate. It does not have a backbone. It has an exoskeleton. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6729\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Santiago investigate with an experiment?\\nContext: Santiago and his classmates are growing tomato plants in the school garden. He wonders what factors affect how tomato plants grow. So, he decides to design an experiment. He has the following supplies available:\\nthree different types of tomato seeds\\none bag of potting soil\\nfive identical clay pots\\nwater\\nOptions: (A) Which type of soil will cause a certain kind of tomato plant to grow the most fruit? (B) Does a certain kind of tomato plant grow taller when planted in a clay pot or in a plastic pot? (C) Which of the three types of tomato seeds sprouts the fastest?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6732\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nEmily and Scott will spend the afternoon at the beach.\\nContext: N/A\\nOptions: (A) present tense (B) future tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, spend. The verb tells you about something that is going to happen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6734\",\n    \"image\": \"6734\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Santa Fe (B) Laramie (C) Salt Lake City (D) Cheyenne\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6735\",\n    \"image\": \"6735\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) neither; the samples have the same temperature (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample A has more mass than each particle in sample B. The particles in sample A also have a higher average speed than the particles in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6738\",\n    \"image\": \"6738\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"After the Akkadian Empire ended, many cities and empires tried to control Mesopotamia. Around the 1790s BCE, which empire started controlling Mesopotamia?\\nContext: Look at the table. Then answer the question below.\\nOptions: (A) the Elamite Empire (B) the Akkadian Empire (C) the Babylonian Empire (D) the Neo-Sumerian Empire\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table.\\nThe abbreviation \\\"ca.\\\" stands for the Latin word, circa. Circa means \\\"about.\\\" It indicates when a date is estimated. So, around 1792 BCE, the Babylonian Empire started controlling Mesopotamia.\\nThe Babylonian (ba-bih-LOH-nee-in) Empire came after the Akkadian and Neo-Sumerian empires. The capital of the Babylonian Empire was the city of Babylon (BA-bih-lahn). The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6739\",\n    \"image\": \"6739\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the American alligator.\\nContext: This organism is an American alligator. Its scientific name is Alligator mississippiensis.\\nOptions: (A) Lithobates catesbeianus (B) Ictinia mississippiensis (C) Alligator sinensis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n An American alligator's scientific name is Alligator mississippiensis. The first word of its scientific name is Alligator.\\nIctinia mississippiensis and Alligator mississippiensis are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Ictinia mississippiensis and Alligator mississippiensis have the same species name within their genus, mississippiensis. But the first words of their scientific names are different. Ictinia mississippiensis is in the genus Ictinia, and Alligator mississippiensis is in the genus Alligator.\\nLithobates catesbeianus is in the genus Lithobates. The first word of its scientific name is Lithobates. So, Lithobates catesbeianus and Alligator mississippiensis are not in the same genus.\\nAlligator sinensis is in the genus Alligator. The first word of its scientific name is Alligator. So, Alligator sinensis and Alligator mississippiensis are in the same genus. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6759\",\n    \"image\": \"6759\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6763\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which water balloon has more thermal energy?\\nContext: Two water balloons are identical except for their temperatures.\\nOptions: (A) the colder water balloon (B) the hotter water balloon\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two water balloons are made of the same material and have the same mass. So, the hotter water balloon has more thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6774\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a simple sentence?\\nContext: N/A\\nOptions: (A) The famous Venus de Milo statue was found on Milos, a volcanic Greek island in the Aegean Sea. (B) Marshall was playing the piano in the living room when Dad called him for dinner.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the simple sentence. It is a single independent clause.\\nThe famous Venus de Milo statue was found on Milos, a volcanic Greek island in the Aegean Sea. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6779\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbaking cookies\\na piece of avocado turning brown\\nContext: N/A\\nOptions: (A) Both are only physical changes. (B) Both are caused by heating. (C) Both are chemical changes. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBaking cookies is a chemical change. The type of matter in the cookie dough changes when it is baked. The cookie dough turns into cookies!\\nA piece of avocado turning brown is a chemical change. The avocado reacts with oxygen in the air to form a different type of matter.\\nIf you scrape off the brown part of the avocado, the inside will still be green. The inside hasn't touched the air. So the chemical change hasn't happened to that part of the avocado.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBaking is caused by heating. But a piece of avocado turning brown is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6780\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nLiam has a scar on his right elbow.\\nContext: Hint: Most scars are caused by accidents during a person's life.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6782\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Colleen acquired this trait?\\nContext: Read the description of a trait.\\nColleen knows how to fly a plane.\\nOptions: (A) Colleen is in the Air Force. She flies a plane almost every day. (B) Colleen can fly a plane on cloudy days and at night. (C) A pilot taught Colleen how to fly a plane.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6785\",\n    \"image\": \"6785\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs.\\nFish are cold-blooded. The body temperature of cold-blooded animals depends on their environment.\\nA goldfish is an example of a fish.\\nOptions: (A) emerald tree boa (B) bison (C) wombat (D) piranha\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A bison is a mammal. It has fur and feeds its young milk.\\nMale bison have horns. They can use their horns to defend themselves.\\nA wombat is a mammal. It has fur and feeds its young milk.\\nWombats have strong claws on their front feet. They use their claws to dig underground holes called burrows.\\nA piranha is a fish. It lives underwater. It has fins, not limbs.\\nPiranhas have sharp teeth. Piranhas hunt in groups. A group of piranhas can eat a large animal.\\nAn emerald tree boa is a reptile. It has scaly, waterproof skin.\\nTree boas eat small mammals, birds, lizards, and frogs. Tree boas only need to eat once every few months! The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6786\",\n    \"image\": \"6786\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Poles that are different attract. So, these magnets will attract each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6798\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nI used to love this TV show, but then I found out that Philip likes it, too. So I changed my opinion\\u2014if someone like Philip likes a show, it can't be as good as I thought!\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) circular reasoning: an argument that supports a claim with the claim itself (C) guilt by association: a negative association intended to discredit someone or something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that a television show must be bad because someone the speaker hates enjoys it. However, this is not evidence that the show is bad. This illustrates a type of logical fallacy known as guilt by association. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6802\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) The Empire State Building is too tall. (B) The Empire State Building is 1,250 feet tall.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true. Facts can be proved by observing, measuring, or studying information.\\nThe flag of the United States has 13 stripes.\\nThis is a fact. It can be proved by looking at the flag and counting the number of stripes.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nThe flag of the United States is easy to draw.\\nThis is an opinion. People may have different opinions about what makes a flag \\\"easy\\\" to draw. The second sentence states a fact.\\nThe Empire State Building is 1,250 feet tall.\\nIt can be proved by researching the height of the building.\\nThe first sentence states an opinion.\\nThe Empire State Building is too tall.\\nToo tall shows what a person believes, thinks, or feels. Another person might have a different opinion about how tall is too tall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6809\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe salesperson tried hard to convince Sanjay that the jacket was a good buy; after all, it was made of genuine imitation leather.\\nContext: N/A\\nOptions: (A) oxymoron (B) hyperbole\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nGenuine imitation is a contradiction, because genuine means real, and imitation means fake or synthetic. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6814\",\n    \"image\": \"6814\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Dominica (B) Haiti (C) Cuba (D) The Bahamas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Haiti.\\nDoes Haiti have any territorial disputes?\\nHaiti claims to own Navassa Island, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nNavassa Island is also claimed by the United States. The United States claimed the island in 1857 and has controlled it since then. But Haiti considers the island part of its territory and has protested the United States' claim since this time. No one lives on the island. Today, it is a nature preserve. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6815\",\n    \"image\": \"6815\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Utah?\\nContext: N/A\\nOptions: (A) Columbia (B) Phoenix (C) Salt Lake City (D) Provo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salt Lake City is the capital of Utah. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6825\",\n    \"image\": \"6825\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nThe mutation in the () affected the structure and function of the ().\\nContext: The following passage describes the effects of a gene mutation, which is a permanent change in a gene. Read the passage and then follow the instructions below.\\n\\nMuscle movement is controlled by charged atoms called ions. Ions move in and out of muscle cells through tube-like structures called channels.\\nOne of these channels is made from the chloride channel protein. The chloride channel protein is encoded by the CLCN1 gene.\\nA certain person had a mutation in the CLCN1 gene. Compared to the CLCN1 gene without a mutation, the mutated CLCN1 gene encoded a form of the chloride channel protein with a different structure.\\nThis different form of the chloride channel protein allowed fewer ions than normal to travel through it. The person with the mutation had muscles that were slow to relax, which resulted in muscle stiffness. Having muscle stiffness due to a mutation in the CLCN1 gene is called Thomsen disease.\\nFigure: muscles in the human body.\\nOptions: (A) chloride channel protein . . . CLCN1 gene (B) CLCN1 gene . . . chloride channel protein\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's genes contain information about its proteins. Each gene encodes, or contains the instructions for making, one protein or a group of proteins.\\nA permanent change in a gene is called a mutation. Because a mutation changes a gene, the mutation may change the structure of the protein encoded by that gene.\\nThe function of a protein depends on its structure. So, if a mutation in a gene changes a protein's structure, the mutation may also change the protein's function.\\nAn organism's observable traits are affected by the functions of its proteins. So, a gene mutation that affects a protein's function may also affect an organism's observable traits. A mutation in a gene may affect the protein it encodes.\\nSo, the mutation in the CLCN1 gene affected the structure and function of the chloride channel protein. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6827\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nIn this election, we've seen the highest voter turnout ever recorded. If you have any doubts about Bobby Monroe's qualifications, just look at how many people have come out to vote for him.\\nContext: N/A\\nOptions: (A) guilt by association: a negative association intended to discredit someone or something (B) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Bobby Monroe is the most qualified candidate, because so many voters turned out to vote. However, even though many people voted for him, that doesn't necessarily mean that Bobby Monroe is the most qualified candidate. This illustrates a type of logical fallacy known as the bandwagon fallacy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6830\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the amphibian traits listed above.\\nContext: Amphibians are a group of animals with similar traits. The following traits can be used to identify amphibians:\\nThey spend part of their lives in water and part on land.\\nThey have moist skin.\\nThey make eggs with no shells. Observe the animals and read the descriptions.\\nOptions: (A) Smooth newts have moist, smooth skin with black spots. Young smooth newts hatch from eggs without shells. They live in streams or ponds until they are about ten weeks old. Then, they crawl onto land. (B) Loggerhead sea turtles hatch from eggs with shells. They live in the water, but they lay their eggs on the land. Their scaly, waterproof skin and thick shell help protect them from predators.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nAmphibians have the following traits:\\nThey spend part of their lives in water and part on land.\\nThey have moist skin.\\nThey make eggs with no shells.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA sea turtle has the following traits:\\nIt has scaly, waterproof skin.\\nIt makes eggs with shells.\\nA sea turtle does not have all of the traits of an amphibian. A sea turtle is a reptile.\\nA smooth newt has the following traits:\\nIt spends part of its life in water and part on land.\\nIt has moist skin.\\nIt makes eggs with no shells.\\nA smooth newt has the traits of an amphibian. A smooth newt is an amphibian. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6835\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this plant's phenotype for the stem height trait?\\nContext: In a group of pea plants, some individuals have a tall stem and others have a short stem. In this group, the gene for the stem height trait has two alleles. The allele for a tall stem (H) is dominant over the allele for a short stem (h).\\nA certain pea plant from this group has the homozygous genotype hh for the stem height gene.\\nOptions: (A) a short stem (B) a tall stem\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. The pea plant's genotype for the stem height gene is hh. The pea plant's genotype of hh has only h alleles. The h allele is for a short stem. So, the pea plant's phenotype for the stem height trait must be a short stem.\\nTo check this answer, consider whether the pea plant's alleles are dominant or recessive. The allele for a tall stem (H) is dominant over the allele for a short stem (h). This means H is a dominant allele, and h is a recessive allele.\\nThe pea plant's genotype of hh has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, the pea plant's phenotype for the stem height trait must be a short stem. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6850\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nRight after Andrew moved into the apartment, our washing machine broke. He'd better tell us how he broke it.\\nContext: N/A\\nOptions: (A) false causation: the assumption that because two things happened together, one caused the other (B) hasty generalization: a very broad claim based on very little evidence\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Andrew is responsible for the broken washing machine. However, the fact that the machine stopped working soon after Andrew moved in doesn't necessarily mean that he caused the machine to break. This illustrates a type of logical fallacy known as false causation. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6851\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a floor lamp?\\nContext: Select the best estimate.\\nOptions: (A) 11 pounds (B) 11 tons (C) 11 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a floor lamp is 11 pounds.\\n11 ounces is too light and 11 tons is too heavy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6863\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three bicycles. Which bicycle was moving at the highest speed?\\nContext: N/A\\nOptions: (A) a bicycle that moved 155miles south in 10hours (B) a bicycle that moved 315miles north in 10hours (C) a bicycle that moved 325miles west in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the fastest will go the farthest distance in that time. It is moving at the highest speed. Look at the distance each bicycle moved and the time it took to move that distance. The direction each bicycle moved does not affect its speed.\\nNotice that each bicycle moved for 10 hours. The bicycle that moved 325 miles moved the farthest distance in that time. So, that bicycle must have moved at the highest speed. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6867\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Since the branches had grown over the power lines, Ariel requested a permit to have the branches removed. (B) Since the branches had grown over the power lines, Ariel requested a permit to have them removed.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun they could refer to the branches or the power lines.\\nThe second answer choice shows a possible correction for the vague pronoun reference. They has been replaced with the branches.\\nSince the branches had grown over the power lines, Ariel requested a permit to have the branches removed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6868\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) \\\"And Then It's Spring\\\" (B) ***And Then It's Spring***\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A book should be in italics.\\nThe correct title is **And Then It's Spring**. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6873\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nSince Sophia Browning became vice president of the parent-teacher association, student performance has declined and teacher morale is down. We on the school board believe that Browning bears sole responsibility for the downtrend.\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Sophia Browning is responsible for the decline in student performance and teacher morale. However, even though things declined after Browning became vice president of the parent-teacher association, that doesn't necessarily mean that she caused the downturn. This illustrates a type of logical fallacy known as false causation. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6875\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) You can make a quill pen with a goose feather. (B) Mom wraps the packages, and Dad drops them off at the post office.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction and.\\nMom wraps the packages, and Dad drops them off at the post office. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6877\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word dove on a dictionary page with the following guide words?\\ndeck - drawer\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince dove is between the guide words deck - drawer, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6880\",\n    \"image\": \"6880\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 2. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is stronger in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 1 are closer together than the magnets in Pair 2. So, the magnetic force is stronger in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6886\",\n    \"image\": \"6886\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) oxygen (B) fluoromethane (C) carbon tetrachloride\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6891\",\n    \"image\": \"6891\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Antarctica (B) Australia (C) North America (D) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Australia. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6899\",\n    \"image\": \"6899\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the reptile below.\\nContext: Reptiles have scaly, waterproof skin. Most reptiles live on land. A dwarf crocodile is an example of a reptile.\\nOptions: (A) green tree frog (B) box turtle\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A box turtle is a reptile. It has scaly, waterproof skin.\\nBox turtles can live to be over 100 years old!\\nA green tree frog is an amphibian. It has moist skin and begins its life in water.\\nThere are many kinds of tree frogs. Most tree frogs are very small. They can walk on thin branches. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6902\",\n    \"image\": \"6902\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Atlantic Ocean (B) the Indian Ocean (C) the Pacific Ocean (D) the Southern Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Pacific Ocean. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6916\",\n    \"image\": \"6916\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Keenan baked two identical cakes. When he took them out of the oven, he left one cake in its pan and took the other cake out of its pan to put it on a plate. This table shows how the temperature of each cake changed over 5minutes.\\nOptions: (A) the surroundings . . . each cake (B) each cake . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each cake decreased, which means that the thermal energy of each cake decreased. So, thermal energy was transferred from each cake to the surroundings. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6923\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) They say that diesel cars have better fuel economy than cars powered by gasoline. (B) Experts say that diesel cars have better fuel economy than cars powered by gasoline.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun they is used without its antecedent.\\nThe first answer choice shows a possible correction for the vague pronoun reference. They has been replaced with experts.\\nExperts say that diesel cars have better fuel economy than cars powered by gasoline. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6924\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a salt shaker?\\nContext: Select the better estimate.\\nOptions: (A) 43 milliliters (B) 43 liters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a salt shaker is 43 milliliters.\\n43 liters is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6940\",\n    \"image\": \"6940\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) Las Vegas (B) San Francisco (C) Phoenix (D) Salt Lake City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is Las Vegas, Nevada. Salt Lake City, Phoenix, and San Francisco are marked with gray circles on the map below. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6942\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal that has a backbone.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians all have backbones.\\nOptions: (A) curlyhair tarantula (B) red salamander\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some animals have a backbone. The backbone is made of many bones in an animal's back. An animal's backbone helps connect the different parts of its body. In the drawings below, each animal's backbone is colored orange.\\nOther animals do not have a backbone. In fact, these animals don't have any bones! Some animals without backbones have a hard outer cover. Other animals have a soft body. A red salamander is an amphibian. Like other amphibians, a red salamander has a backbone.\\nLike other tarantulas, a curlyhair tarantula does not have a backbone. It has a hard outer cover. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6948\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nJayce's leaving his job? That's old news. He's been planning that for months.\\nContext: N/A\\nOptions: (A) euphemism (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nOld news is a contradiction, because news is recent information. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6953\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word factoid in its traditional sense?\\nContext: N/A\\nOptions: (A) Bert subscribed to an online newsletter about African wildlife; he enjoyed receiving daily factoids about the wild animals' natural habitats and behavior. (B) Bert seemed to know a lot about African wildlife, but it turned out that his knowledge was mostly based on factoids gleaned from unreliable websites.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses factoid in its traditional sense: something made up presented as a true fact.\\nBert seemed to know a lot about African wildlife, but it turned out that his knowledge was mostly based on factoids gleaned from unreliable websites.\\nThe first text uses factoid in its nontraditional sense: a trivial but true fact.\\nBert subscribed to an online newsletter about African wildlife; he enjoyed receiving daily factoids about the wild animals' natural habitats and behavior.\\nMost style guides recommend to use the traditional sense of the word factoid because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6955\",\n    \"image\": \"6955\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nEarth's volume is more than ten times as great as Mars's volume.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, first compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\nTo multiply a number written in scientific notation by a power of 10, write the multiple of 10 as 10 raised to an exponent. Then, add the exponents. For example:\\n1.43 x 10^15 \\u00b7 1000\\n= 1.43 x 10^15 \\u00b7 10^3\\n= 1.43 x 10^(15 + 3)\\n= 1.43 x 10^18\\n To determine if this statement is true, calculate the value of ten times the volume of Mars.\\nThen compare the result to the volume of Earth. The volume of Earth is 1.08 x 10^12 km^3, which is less than 1.63 x 10^12 km^3. So, Earth's volume is less than ten times as great as Mars's volume. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6956\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nChandler plays tennis.\\nContext: Hint: Playing tennis takes practice.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to play tennis. Instead, some people learn how to play tennis. Playing the sport takes practice. So, playing tennis is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6958\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a school bus?\\nContext: Select the better estimate.\\nOptions: (A) 13 meters (B) 13 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a school bus is 13 meters.\\n13 centimeters is too short. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6964\",\n    \"image\": \"6964\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is the main persuasive appeal used in this ad?\\nContext: N/A\\nOptions: (A) logos (reason) (B) pathos (emotion) (C) ethos (character)\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The purpose of an advertisement is to persuade people to do something. To accomplish this purpose, advertisements use three types of persuasive strategies, or appeals:\\nAppeals to ethos, or character, show that the writer or speaker is trustworthy or is an authority on a subject. An ad that appeals to ethos might do one of the following:\\nsay that a brand has been trusted for many years\\nnote that a brand is recommended by a respected organization or celebrity\\ninclude a quote from a \\\"real person\\\" who shares the audience's values\\nAppeals to logos, or reason, use logic and specific evidence. An ad that appeals to logos might do one of the following:\\nuse graphs or charts to display information\\nmention the results of scientific studies\\nexplain the science behind a product or service\\nAppeals to pathos, or emotion, use feelings rather than facts to persuade the audience. An ad that appeals to pathos might do one of the following:\\ntrigger a fear, such as the fear of embarrassment\\nappeal to a desire, such as the desire to appear attractive\\nlink the product to a positive feeling, such as adventure, love, or luxury The ad appeals to pathos, or emotion. It links the product to feelings of happiness. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6965\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that Billy's mass did not change.\\nThe gravitational potential energy stored between Billy and Earth () as he rode the escalator.\\nContext: Read the text about a person in motion.\\nBilly rode an escalator from the first floor to the second floor of a shopping mall.\\nOptions: (A) decreased (B) increased (C) stayed the same\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between Billy and the center of Earth changed.\\nThe second floor is higher than the first floor. As he rode the escalator toward the second floor, the distance between Billy and the center of Earth increased. So, the gravitational potential energy stored between Billy and Earth increased as he rode the escalator. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6967\",\n    \"image\": \"6967\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6981\",\n    \"image\": \"6981\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following organisms is the producer in this food web?\\nContext: Below is a food web from Shenandoah National Park, a forest ecosystem in Virginia.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) silver maple (B) beaver (C) gray fox (D) pine vole\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Producers do not eat other organisms. So, in a food web, producers do not have arrows pointing to them from other organisms.\\nThe persimmon tree does not have any arrows pointing to it. So, the persimmon tree is a producer.\\nThe gray fox has arrows pointing to it, so it is not a producer.\\nThe silver maple does not have any arrows pointing to it. So, the silver maple is a producer.\\nThe beaver has an arrow pointing to it, so it is not a producer.\\nThe pine vole has arrows pointing to it, so it is not a producer. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6984\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nOn the sand banks the rabbits sat as quietly as little gray, sculptured stones.\\n\\u2014John Steinbeck, Of Mice and Men\\nContext: N/A\\nOptions: (A) metaphor (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text includes a simile, using like or as to compare two things that are not actually alike.\\nAs quietly as little gray, sculptured stones compares rabbits to sculptured stones. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6987\",\n    \"image\": \"6987\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of force from the student's finger presses the key on the keyboard?\\nContext: A student types on a keyboard. Her finger applies a force to a key.\\nOptions: (A) push (B) pull\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to a second object.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The student's finger applies a force to the key as she types. The direction of this force is away from her finger. This force is a push. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"6990\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Read the following text from a student essay. How can the writer best improve his or her word choice?\\nIf I could invent something, I would create a really nice bicycle. My bike would have a good seat and great tires so that I could ride it anywhere. It would also have a bell and special pockets for carrying things. A special top would be wonderful, so I could ride it in the rain but also enjoy the sun. I would choose a fun color to reflect my personality. Inventing a new bike would be cool.\\nContext: N/A\\nOptions: (A) by reducing repetitive language (B) by using more specific language\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When you review a fellow student's writing, try to make your feedback clear and specific. You can use questions such as the following to guide your feedback:\\nIdeas and development: Does the writer express a clear main idea and develop it with evidence, examples, and analysis?\\nOrganization: Does the writer order ideas in a clear, logical way so that the ideas build on one another and are easy to follow?\\nSentence fluency: Do the writer's sentences vary in structure and length, or does the writing sound choppy, rambling, or repetitive?\\nWord choice: Does the writer use words accurately and precisely, avoiding excessive repetition or inappropriate language to create clear, effective, and engaging writing?\\nGrammar and mechanics: Does the writer use accurate spelling, punctuation, and grammar to create writing that is correct and easy to read? The writer could best improve his or her word choice by using more specific language.\\nFor example, the writer could replace the underlined text more descriptive language, such as the perfect bicycle; comfortable; durable; my cell phone, a water bottle, and a snack; foldable, umbrella-like top; unusual color like turquoise or magenta; my own custom bicycle; and thrilling.\\nIf I could invent something, I would create a really nice bicycle. My bike would have a good seat and great tires so that I could ride it anywhere. It would also have a bell and special pockets for carrying things. A special top would be wonderful, so I could ride it in the rain but also enjoy the sun. I would choose a fun color to reflect my personality. Inventing a new bike would be cool. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7000\",\n    \"image\": \"7000\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Ohio?\\nContext: N/A\\nOptions: (A) Lincoln (B) Columbus (C) Chicago (D) Jefferson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbus is the capital of Ohio. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7005\",\n    \"image\": \"7005\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Terrell and Allie trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nTerrell and Allie open their lunch boxes in the school cafeteria. Neither Terrell nor Allie got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nTerrell's lunch Allie's lunch\\nOptions: (A) Terrell can trade his tomatoes for Allie's carrots. (B) Allie can trade her broccoli for Terrell's oranges. (C) Allie can trade her almonds for Terrell's tomatoes. (D) Terrell can trade his tomatoes for Allie's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nTerrell wants broccoli. Allie wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7007\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nan antacid tablet reacting with water\\nburning food on a stove\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are caused by heating. (C) Both are chemical changes. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nAn antacid tablet reacting with water is a chemical change. When the tablet touches water, the type of matter in the tablet changes and carbon dioxide gas is released. This gas makes the water fizz.\\nBurning food on a stove is a chemical change. When the food burns, the type of matter in it changes. The food turns black and gives off smoke.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBurning is caused by heating. But an antacid tablet reacting with water is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7012\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that the sled's mass did not change.\\nThe gravitational potential energy stored between the sled and Earth () as Julia rode down the hill.\\nContext: Read the text about an object in motion.\\nOn a snowy day, Julia rode her sled down a big hill.\\nOptions: (A) increased (B) stayed the same (C) decreased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between the sled and the center of Earth changed.\\nThe bottom of the hill was lower than the point where Julia started sledding. As Julia rode toward the bottom of the hill, the distance between the sled and the center of Earth decreased. So, the gravitational potential energy stored between the sled and Earth decreased as Julia rode down the hill. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7014\",\n    \"image\": \"7014\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for swimming?\\nContext: Black-bellied whistling ducks live near lakes and streams in North America. They find most of their food in shallow water. The feet of the are adapted for swimming.\\nFigure: black-bellied whistling duck.\\nOptions: (A) European beaver (B) sable\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the black-bellied whistling duck.\\nThe black-bellied whistling duck has webbed feet. Its feet are adapted for swimming. As it swims, the black-bellied whistling duck uses its webbed feet to push itself through water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe European beaver has webbed feet. Its feet are adapted for swimming.\\nThe sable has hoofed feet. Its feet are not adapted for swimming. The sable uses its feet to walk and run on hard ground. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7021\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Darnell's phenotype for the cystic fibrosis trait?\\nContext: This passage describes the cystic fibrosis trait in humans:\\n\\nIn a group of humans, some individuals have cystic fibrosis and others do not. In this group, the gene for the cystic fibrosis trait has two alleles. The allele F is for not having cystic fibrosis, and the allele f is for having cystic fibrosis.\\nDarnell, a human from this group, has cystic fibrosis. Darnell has two alleles for having cystic fibrosis.\\nOptions: (A) ff (B) having cystic fibrosis\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Darnell's observable version of the cystic fibrosis trait is having cystic fibrosis. So, Darnell's phenotype for the cystic fibrosis trait is having cystic fibrosis. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7023\",\n    \"image\": \"7023\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Massachusetts?\\nContext: N/A\\nOptions: (A) Boston (B) Chicago (C) Cambridge (D) Concord\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boston is the capital of Massachusetts. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7026\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nBrody always approaches difficult tasks enthusiastically, and he frequently motivates others with his energy and fervor.\\nContext: N/A\\nOptions: (A) compound (B) compound-complex (C) simple (D) complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound. It is made up of two independent clauses joined by the coordinating conjunction and.\\nBrody always approaches difficult tasks enthusiastically, and he frequently motivates others with his energy and fervor. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7031\",\n    \"image\": \"7031\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of South Dakota?\\nContext: N/A\\nOptions: (A) Saint Paul (B) Madison (C) Pierre (D) Rapid City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Pierre is the capital of South Dakota. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7033\",\n    \"image\": \"7033\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Natalie's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nNatalie prepared ten buckets, each with one gallon of boiling water and three tablespoons of black fabric dye. Natalie soaked white linen fabric squares in five of the buckets, and white cotton fabric squares in the other five buckets. All of the fabric squares were soaked for 15 minutes. After the fabric dried, Natalie scored the darkness of the squares on a scale from light to dark. She compared the darkness of the linen fabric to the darkness of the cotton fabric.\\nFigure: fabric that has been dyed black.\\nOptions: (A) Does fabric turn darker when soaked in a mixture of black dye and water for 15 minutes compared to 30 minutes? (B) Does linen fabric turn darker than cotton fabric when soaked in a mixture of black dye and water?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7037\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nRust forming on a bike frame is a ().\\nContext: N/A\\nOptions: (A) physical change (B) chemical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two ways matter can change.\\nIn a chemical change, the type of matter changes.\\nBurning a piece of paper is a chemical change. The paper changes into ash and smoke.\\nIn a physical change, the type of matter stays the same.\\nCutting a piece of paper is a physical change. The cut pieces are still made of paper.\\nIce melting is also a physical change. When ice melts, it changes from a solid to a liquid. But both ice and liquid water are made of the same type of matter: water! This kind of change is called a change of state. Rust forming on a bike frame is a chemical change. The metal on the bike changes into rust. Metal and rust are different types of matter. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7038\",\n    \"image\": \"7038\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's neck is also adapted for hunting prey while keeping the rest of its body still?\\nContext: Great egrets live near wetlands and lakes. They eat mostly fish.\\nThe 's neck helps it grab fish while keeping the rest of its body still. If the egret had to move its body, it might scare the fish away.\\nFigure: great egret.\\nOptions: (A) mallard (B) painted stork\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's neck is one example of an adaptation. Animals' necks can be adapted in different ways. For example, a large frilled neck might help an animal appear dangerous to its predators. A long neck might help an animal get food from tall trees. Look at the picture of the great egret.\\nThe great egret has a long neck. Its neck is adapted for hunting prey while keeping the rest of its body still. This allows the great egret to grab the prey without scaring it away.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe painted stork has a long neck. Its neck is adapted for hunting prey while keeping the rest of its body still.\\nThe mallard has a short neck. Its neck is not adapted for hunting prey while keeping the rest of its body still. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7041\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a trumpet?\\nContext: Select the best estimate.\\nOptions: (A) 2 ounces (B) 2 tons (C) 2 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a trumpet is 2 pounds.\\n2 ounces is too light and 2 tons is too heavy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7047\",\n    \"image\": \"7047\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Madison, Wisconsin.\\nMadison, the capital of Wisconsin, is located in the southern part of the state. For two weeks in December, the temperature never rose above 20\\u00b0F.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nMadison, the capital of Wisconsin, is located in the southern part of the state. For two weeks in December, the temperature never rose above 20\\u00b0F.\\nThe underlined part of the passage tells you what the temperature in Madison was like in December. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7052\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Chitters's genotype for the leg color gene?\\nContext: In a group of chickens, some individuals have white legs and others have yellow legs. In this group, the gene for the leg color trait has two alleles. The allele L is for white legs, and the allele l is for yellow legs.\\nChitters, a chicken from this group, has white legs. Chitters has two alleles for white legs.\\nOptions: (A) LL (B) white legs\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Chitters has two alleles for white legs (L). So, Chitters's genotype for the leg color gene is LL. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7055\",\n    \"image\": \"7055\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7057\",\n    \"image\": \"7057\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the American alligator.\\nContext: This organism is an American alligator. Its scientific name is Alligator mississippiensis.\\nOptions: (A) Alligator sinensis (B) Alligator mississippiensis (C) Aequorea victoria\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n An American alligator's scientific name is Alligator mississippiensis.\\nAequorea victoria does not have the same scientific name as an American alligator. So, Alligator mississippiensis and Aequorea victoria are not in the same species.\\nAlligator mississippiensis is in the same genus as Alligator sinensis, but they are not in the same species.\\nOrganisms in the same species have the same scientific names. Alligator mississippiensis and Alligator sinensis are different species within the same genus.\\nAlligator mississippiensis has the same scientific name as an American alligator. So, these organisms are in the same species. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7059\",\n    \"image\": \"7059\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) bouncy (B) opaque\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA bouncy object will bounce back from the floor if you drop it. The tin foil is not bouncy.\\nAn opaque object does not let light through. The tin foil is opaque. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7064\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Angel's genotype for the leg color gene?\\nContext: In a group of chickens, some individuals have white legs and others have yellow legs. In this group, the gene for the leg color trait has two alleles. The allele L is for white legs, and the allele l is for yellow legs.\\nAngel, a chicken from this group, has yellow legs. Angel has two alleles for yellow legs.\\nOptions: (A) ll (B) yellow legs\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Angel has two alleles for yellow legs (l). So, Angel's genotype for the leg color gene is ll. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7078\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nThe ancient oak tree () under the weight of its own branches.\\nContext: N/A\\nOptions: (A) cracked (B) slouched\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word slouched. It describes the tree as if it were a person with slumping shoulders. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7083\",\n    \"image\": \"7083\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Montana?\\nContext: N/A\\nOptions: (A) Helena (B) Birmingham (C) Tucson (D) Salem\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Helena is the capital of Montana. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7085\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\ncarving a piece of wood\\nsewing an apron\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are chemical changes. (C) Both are caused by cooling. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nCarving a piece of wood is a physical change. The wood changes shape, but it is still made of the same type of matter.\\nSewing an apron is a physical change. The fabric and thread that make up the apron get a new shape, but the type of matter in each of them does not change.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7092\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is the softest?\\nContext: N/A\\nOptions: (A) plastic bucket (B) cotton apron (C) glass flask\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Soft is a property. A soft material changes shape when pressed or squeezed.\\nLook at each picture, one at a time. Imagine touching the material shown in each picture.\\nOf the choices, the cotton apron is the softest. Cotton fabric changes shape easily when you squeeze it. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7094\",\n    \"image\": \"7094\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) sticky (B) translucent (C) sweet\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA translucent object lets light through. But you cannot see clearly through a translucent object. All four objects are translucent.\\nA sticky object can attach or stick to other things. The honey is sticky, but the marbles are not.\\nSugar has a sweet taste. The honey is sweet, but the wet ice cube and the marbles are not.\\nThe property that all four objects have in common is translucent. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7107\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nMr. Atkinson will deliver the envelope to Trent.\\nContext: N/A\\nOptions: (A) future tense (B) past tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, deliver. The verb tells you about something that is going to happen. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7108\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the air inside of a classroom?\\nContext: Select the better estimate.\\nOptions: (A) 75\\u00b0C (B) 75\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the air inside of a classroom is 75\\u00b0F.\\n75\\u00b0C is too hot. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7115\",\n    \"image\": \"7115\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Georgia?\\nContext: N/A\\nOptions: (A) Savannah (B) Athens (C) Atlanta (D) Boston\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Atlanta is the capital of Georgia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7119\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Two blocks of iron have the same temperature but different masses. Which block has more thermal energy?\\nContext: The objects are made of the same type of matter.\\nOptions: (A) the block of iron with less mass (B) the block of iron with more mass\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two blocks of iron have the same temperature and are made of the same type of matter. So, the block of iron with more mass has more thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7121\",\n    \"image\": \"7121\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is these swim goggles made of?\\nContext: N/A\\nOptions: (A) wool (B) plastic\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the swim goggles.\\nThe swim goggles are made of two different materials. The lenses are plastic, and the straps are rubber. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7124\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nScientists will measure the rainfall in Danville.\\nContext: N/A\\nOptions: (A) past tense (B) future tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, measure. The verb tells you about something that is going to happen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7126\",\n    \"image\": \"7126\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nEthanol is ().\\nContext: The model below represents a molecule of ethanol. Ethanol can be used as a fuel. Most of the gasoline that is used in the United States is about 10% ethanol.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. Use the model to determine whether ethanol is an elementary substance or a compound.\\nStep 1: Interpret the model.\\n.\\nUse the legend to determine the chemical element represented by each color. The colors and atomic symbols from the legend are shown in the table below. The table also includes the names of the chemical elements represented in the model.\\nYou can see from the model that a molecule of ethanol is composed of six hydrogen atoms, two carbon atoms, and one oxygen atom bonded together.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that ethanol is composed of three chemical elements: hydrogen, carbon, and oxygen. Since ethanol is composed of multiple chemical elements bonded together, ethanol is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7130\",\n    \"image\": \"7130\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) San Antonio (B) Boston (C) Washington, D.C. (D) Atlanta\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is Washington, D.C. San Antonio, Boston, and Atlanta are marked with gray circles on the map below. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7134\",\n    \"image\": \"7134\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the North American beaver.\\nContext: This organism is a North American beaver. Its scientific name is Castor canadensis.\\nOptions: (A) Castor canadensis (B) Ovis canadensis (C) Strix varia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A North American beaver's scientific name is Castor canadensis. The first word of its scientific name is Castor.\\nThis organism and the North American beaver are in the same genus and the same species! Both organisms have the same scientific name, Castor canadensis.\\nStrix varia is in the genus Strix. The first word of its scientific name is Strix. So, Strix varia and Castor canadensis are not in the same genus.\\nOvis canadensis and Castor canadensis are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Ovis canadensis and Castor canadensis have the same species name within their genus, canadensis. But the first words of their scientific names are different. Ovis canadensis is in the genus Ovis, and Castor canadensis is in the genus Castor. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7135\",\n    \"image\": \"7135\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample B (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample A has more mass than each particle in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7138\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which online professional profile is more formal?\\nContext: N/A\\nOptions: (A) I am a certified college graduate seeking a teaching position. (B) I've got a degree and certification and want to get a job teaching.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The second online professional profile is more formal. It uses more elevated language (certified college graduate, teaching position) and avoids overly personal or casual language (I've got, want to get). The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7140\",\n    \"image\": \"7140\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two identical refrigerators in a restaurant kitchen lost power. The door of one fridge was slightly open, and the door of the other fridge was closed. This table shows how the temperature of each refrigerator changed over 10minutes.\\nOptions: (A) each refrigerator . . . the surroundings (B) the surroundings . . . each refrigerator\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each refrigerator increased, which means that the thermal energy of each refrigerator increased. So, thermal energy was transferred from the surroundings to each refrigerator. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7145\",\n    \"image\": \"7145\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs.\\nFish are cold-blooded. The body temperature of cold-blooded animals depends on their environment.\\nA manta ray is an example of a fish.\\nOptions: (A) tiger shark (B) leaf-tailed gecko (C) Hermann's tortoise (D) dwarf crocodile\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A tiger shark is a fish. It lives underwater. It has fins, not limbs.\\nTiger sharks are nocturnal. This means that they are active mostly at night.\\nA leaf-tailed gecko is a reptile. It has scaly, waterproof skin.\\nMany geckos have special pads on their toes. The pads help them climb up plants and rocks.\\nA dwarf crocodile is a reptile. It has scaly, waterproof skin.\\nCrocodiles hunt their prey in or near water.\\nA Hermann's tortoise is a reptile. It has scaly, waterproof skin.\\nA tortoise's shell protects it from predators. When a tortoise feels threatened, it can pull its head and legs inside its shell. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7147\",\n    \"image\": \"7147\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the chemical formula for this molecule.\\nContext: N/A\\nOptions: (A) BF3 (B) BFe3 (C) HB3F (D) B2F3\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made up of atoms. Atoms can link together to form molecules. The links between atoms in a molecule are called chemical bonds. Different molecules are made up of different chemical elements, or types of atoms, bonded together.\\nScientists use both ball-and-stick models and chemical formulas to represent molecules.\\nA ball-and-stick model of a molecule is shown below.\\nThe balls represent atoms. The sticks represent the chemical bonds between the atoms.\\nNotice how each ball is labeled with a symbol made of one or more letters. The symbol is an abbreviation for a chemical element. The ball represents one atom of that element.\\nEvery chemical element is represented by its own symbol. For some elements, that symbol is one capital letter. For other elements, it is one capital letter followed by one lowercase letter. For example, the symbol for the element boron is B and the symbol for the element chlorine is Cl.\\nThe molecule shown above has one boron atom and three chlorine atoms. A chemical bond links each chlorine atom to the boron atom.\\nThe chemical formula for a molecule contains the symbol for each chemical element in the molecule. Many chemical formulas use subscripts. A subscript is text that is smaller and placed lower than the normal line of text.\\nIn chemical formulas, the subscripts are numbers. The subscript is always written after the symbol for an element. The subscript tells you how many atoms that symbol represents. If the symbol represents just one atom, then no subscript is included.\\nThe symbols in the chemical formula for a molecule match the symbols in the ball-and-stick model for that molecule. The ball-and-stick model shown before and the chemical formula shown above represent the same substance. B is the symbol for boron. F is the symbol for fluorine. This ball-and-stick model shows a molecule with one boron atom and three fluorine atoms.\\nThe chemical formula will contain the symbols B and F. There is one boron atom, so B will not have a subscript. There are three fluorine atoms, so F will have a subscript of 3.\\nThe correct formula is BF3.\\nThe diagram below shows how each part of the chemical formula matches with each part of the model above. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7150\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has more thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 200-gram cup of black tea at a temperature of 105\\u00b0F (B) a 200-gram cup of black tea at a temperature of 100\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. The two cups of black tea have the same mass but different temperatures. Since the 105\\u00b0F cup of black tea is hotter than the 100\\u00b0F cup of black tea, it has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7161\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Undyne's phenotype for the Bekko patterning trait?\\nContext: This passage describes the Bekko patterning trait in koi fish:\\n\\nIn a group of koi fish, some individuals have Bekko patterning and others do not. In this group, the gene for the Bekko patterning trait has two alleles. The allele for not having Bekko patterning (b) is recessive to the allele for having Bekko patterning (B).\\nUndyne is a koi fish from this group. Undyne has the homozygous genotype BB for the Bekko patterning gene.\\nOptions: (A) not having Bekko patterning (B) having Bekko patterning\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Undyne's genotype for the Bekko patterning gene is BB. Undyne's genotype of BB has only B allelles. The B allele is for having Bekko patterning. So, Undyne's phenotype for the Bekko patterning trait must be having Bekko patterning.\\nTo check this answer, consider whether Undyne's alleles are dominant or recessive. The allele for not having Bekko patterning (b) is recessive to the allele for having Bekko patterning (B). This means B is a dominant allele, and b is a recessive allele.\\nUndyne's genotype of BB has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Undyne's phenotype for the Bekko patterning trait must be having Bekko patterning. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7164\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Dutchess's phenotype for the ear type trait?\\nContext: In a group of American curl cats, some individuals have curled ears and others have straight ears. In this group, the gene for the ear type trait has two alleles. The allele for curled ears (E) is dominant over the allele for straight ears (e).\\nDutchess is an American curl cat from this group. Dutchess has the heterozygous genotype Ee for the ear type gene.\\nOptions: (A) curled ears (B) straight ears\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine Dutchess's phenotype for the ear type trait. First, consider the alleles in Dutchess's genotype for the ear type gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for curled ears (E) is dominant over the allele for straight ears (e). This means E is a dominant allele, and e is a recessive allele.\\nDutchess's genotype of Ee has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Dutchess's phenotype for the ear type trait must be curled ears. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7188\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nbolt - buckled\\nContext: N/A\\nOptions: (A) brow (B) bandage\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince brow is between the guide words bolt - buckled, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7191\",\n    \"image\": \"7191\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following best describes a population in a forest in the Cascade mountains?\\nContext: Read the passage. Then answer the question below.\\n\\nThe forests in Oregon's Cascade mountains include western red cedar and Douglas fir, two of the tallest tree species in the world. Both of these species can grow to be 100 meters tall, or as tall as a 30-story building!\\nSeveral owl species, including long-eared owls, great horned owls, and northern pygmy owls, live in these forests. Owls are nocturnal, which means they are most active at night. During the day, they rest high in the tall trees.\\nFigure: fir trees in the Cascade mountains.\\nOptions: (A) the western red cedar trees (B) the great horned owls and the northern pygmy owls (C) the Douglas fir trees and the long-eared owls\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In an environment, organisms interact with each other and with their nonliving surroundings. To help describe these interactions, ecologists use specific terms for different types of groups.\\nA single organism is an individual. Individuals of the same species that live in the same place are part of a population.\\nMultiple populations of different species that live in the same place are part of a community.\\nTogether, communities of living organisms and the nonliving parts of their environment make up an ecosystem. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7192\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nThe rising tide () the sandcastle that the children had so carefully crafted.\\nContext: N/A\\nOptions: (A) washed over (B) gobbled up\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the phrase gobbled up. It describes the tide as if it were a hungry person. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7206\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) Ants attacked our picnic. (B) My ancestors are from Russia, they came here many years ago.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. My ancestors are from Russia, they came here many years ago is a run-on sentence. It has two sentences that are joined by just a comma: My ancestors are from Russia and They came here many years ago. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7207\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word rock on a dictionary page with the following guide words?\\nregret - ruffle\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince rock is between the guide words regret - ruffle, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7208\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Lucia investigate with an experiment?\\nContext: Lucia is sledding with her friends. She notices that some of them go faster down the sledding hill. She wonders what factors affect sledding speed. So, she decides to design an experiment. She has the following supplies available:\\naccess to a small snow-covered hill at the park\\na small plastic sled\\na large plastic sled\\na rubber inner tube sled\\na stopwatch\\nOptions: (A) Does a rubber inner tube sled go faster down a small hill or down a big hill? (B) Does a rubber inner tube sled or a plastic sled go faster down a hill? (C) Does a plastic sled or a wooden sled go down a hill faster?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7209\",\n    \"image\": \"7209\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Vanuatu (B) the Marshall Islands (C) the Federated States of Micronesia (D) Solomon Islands\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Marshall Islands.\\nDoes the Marshall Islands have any territorial disputes?\\nThe Marshall Islands claims to own Wake Island, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nThe United States claimed Wake Island in 1899 and has controlled it since then. But the Marshall Islands considers the island part of its territory. It says that its people have traveled to the island to gather food and resources for many years. Today, the island is mainly used by the U.S. Air Force. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7212\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nBarbara should either stop reading those sappy paranormal romance novels or finally admit that she doesn't believe in empowering women.\\nContext: N/A\\nOptions: (A) false dichotomy: an argument that presents only two choices when more options exist (B) guilt by association: a negative association intended to discredit someone or something (C) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Barbara either must give up reading a certain type of book or admit she doesn't believe in female empowerment. However, someone can both enjoy reading paranormal romance books and also believe in empowering women. This illustrates a type of logical fallacy known as a false dichotomy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7215\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ncafe - consent\\nContext: N/A\\nOptions: (A) chief (B) crag\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince chief is between the guide words cafe - consent, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7216\",\n    \"image\": \"7216\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Alabama (B) Oklahoma (C) Arizona (D) West Virginia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. West Virginia is farthest north. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7219\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a newspaper?\\nContext: N/A\\nOptions: (A) The New York Times (B) The New york Times\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between.\\nThe correct title is The New York Times. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7226\",\n    \"image\": \"7226\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the text, what was one of the things that made Alex different from most parrots?\\nContext: Read the text about Alex the parrot.\\nMost parrots can speak, or at least copy the sounds of people talking. Alex, an African grey parrot, learned to do much more. He knew how to do simple math. In fact, he was capable of adding up to six objects. Alex added up crackers, jelly beans, and blocks. He could also point out seven different colors and six shapes. And he knew more than a hundred words!\\nAlex's owner taught him for more than thirty years and observed a lot about how parrots learn. People had worked with animals before Alex to see if animals could understand language and math. But Alex proved that animals might be even smarter than we thought!\\nOptions: (A) He loved playing with blocks. (B) He was an African grey parrot. (C) He was able to do math.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the text in bold below. It tells you what made Alex different from most parrots.\\nMost parrots can speak, or at least copy the sounds of people talking. Alex, an African grey parrot, learned to do much more. He knew how to do simple math. In fact, he was capable of adding up to six objects. Alex added up crackers, jelly beans, and blocks. He could also point out seven different colors and six shapes. And he knew more than a hundred words! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7235\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Last year, 50,000 people lived in the city of Millersburg. But since then, 8,000 people have moved away. What probably happened to the overall supply of houses for sale in Millersburg?\\nContext: N/A\\nOptions: (A) The supply probably went down. (B) The supply probably went up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. The population of Millersburg fell by 8,000 people. Many of the people who have left are probably trying to sell their houses. Since more people are trying to sell their houses, the number of suppliers of houses for sale in Millersburg has gone up. So, the supply of houses for sale probably went up, too. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7238\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two trains. Which train was moving at a lower speed?\\nContext: N/A\\nOptions: (A) a train that moved 835kilometers in 10hours (B) a train that moved 945kilometers in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving slower will go a shorter distance in that time. It is moving at a lower speed. Look at the distance each train moved and the time it took to move that distance.\\nOne train moved 835 kilometers in 10 hours.\\nThe other train moved 945 kilometers in 10 hours.\\nNotice that each train spent the same amount of time moving. The train that moved 835 kilometers moved a shorter distance in that time. So, that train must have moved at a lower speed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7244\",\n    \"image\": \"7244\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Emmet and Kathleen trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nEmmet and Kathleen open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Emmet wanted broccoli in his lunch and Kathleen was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Emmet can trade his tomatoes for Kathleen's broccoli. (B) Emmet can trade his tomatoes for Kathleen's sandwich. (C) Kathleen can trade her almonds for Emmet's tomatoes. (D) Kathleen can trade her broccoli for Emmet's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Emmet wanted broccoli in his lunch and Kathleen was hoping for tomatoes. Look at the labeled part of the images.\\nEmmet has tomatoes. Kathleen has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7250\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complete sentence?\\nContext: N/A\\nOptions: (A) Darkness comes quickly on long winter nights. (B) Zoe just moved here she's new to our country.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Darkness comes quickly on long winter nights is a complete sentence. The subject is darkness, and the verb is comes. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7255\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this pea plant's genotype for the pod shape gene?\\nContext: This passage describes the pod shape trait in pea plants:\\n\\nIn a group of pea plants, some individuals have inflated pods and others have constricted pods. In this group, the gene for the pod shape trait has two alleles. The allele D is for inflated pods, and the allele d is for constricted pods.\\nA certain pea plant from this group has inflated pods. This plant has one allele for inflated pods and one allele for constricted pods.\\nOptions: (A) Dd (B) inflated pods\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. The pea plant has one allele for inflated pods (D) and one allele for constricted pods (d). So, the plant's genotype for the pod shape gene is Dd. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7266\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this tomato plant's genotype for the fruit color gene?\\nContext: In a group of tomato plants, some individuals have red fruit and others have yellow fruit. In this group, the gene for the fruit color trait has two alleles. The allele F is for red fruit, and the allele f is for yellow fruit.\\nA certain tomato plant from this group has red fruit. This plant has one allele for red fruit and one allele for yellow fruit.\\nOptions: (A) Ff (B) red fruit\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. The tomato plant has one allele for red fruit (F) and one allele for yellow fruit (f). So, the plant's genotype for the fruit color gene is Ff. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7267\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word random in its traditional sense?\\nContext: N/A\\nOptions: (A) At the grocery store, Denise hastily grabbed fruits and vegetables at random, filling her shopping cart with a hodgepodge of food. (B) Denise made a random trip to the grocery store, though her kitchen was already stocked with a hodgepodge of food.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses random in its traditional sense: made or occurring without a definite pattern.\\nAt the grocery store, Denise hastily grabbed fruits and vegetables at random, filling her shopping cart with a hodgepodge of food.\\nThe second text uses random in its nontraditional sense: odd or out of place.\\nDenise made a random trip to the grocery store, though her kitchen was already stocked with a hodgepodge of food.\\nMost style guides recommend to avoid using the nontraditional sense of the word random because it is generally considered incorrect. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7270\",\n    \"image\": \"7270\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the picture. Which word best describes the sound this lion makes?\\nContext: N/A\\nOptions: (A) roaring (B) splashing (C) banging\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When you write, you can use sensory details. These sense words help your reader understand what something looks, sounds, tastes, smells, or feels like.\\nSensory Category | Description\\nSight | These are words like bright, clean, and purple. A reader can imagine looking at these details.\\nSound | These are words like hissing, buzzing, and ringing. A reader can imagine hearing these details.\\nTaste | These are words like juicy, sweet, and burnt. A reader can imagine tasting these details.\\nSmell | These are words like fruity, sweet, and stinky. A reader can imagine smelling these details.\\nTouch | These are words like fuzzy, wet, and soft. A reader can imagine feeling these details.\\nMany sense words can describe more than one sense. For example, soft can describe a touch or a sound. And sweet can describe a taste or a smell.\\n Look at the picture.\\nThe word roaring describes the sound this lion makes.\\nSplashing and banging can also describe sounds. But they do not describe the sounds this lion makes. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7272\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a leather belt?\\nContext: Select the better estimate.\\nOptions: (A) 65 kilometers (B) 65 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a leather belt is 65 centimeters.\\n65 kilometers is too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7285\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nAkiko teaches Emily about customs in Japan.\\nContext: N/A\\nOptions: (A) present tense (B) past tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, teaches. The verb ends in -es and tells you about something that is true or happening now. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7291\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) Bella was stung by a bee, so her finger is slightly swollen. (B) Mr. Estrada's afternoon lecture was about art and culture in Germany before World War II.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the compound sentence. It is made up of two independent clauses joined by the coordinating conjunction so.\\nBella was stung by a bee, so her finger is slightly swollen. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7301\",\n    \"image\": \"7301\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the text to describe the diagram.\\nSolute particles moved in both directions across the permeable membrane. But more solute particles moved across the membrane (). When there was an equal concentration on both sides, the particles reached equilibrium.\\nContext: The diagram below shows a solution with one solute. Each solute particle is represented by a pink ball. The solution fills a closed container that is divided in half by a membrane. The membrane, represented by a dotted line, is permeable to the solute particles.\\nThe diagram shows how the solution can change over time during the process of diffusion.\\nOptions: (A) to the right than to the left (B) to the left than to the right\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a solution, solute particles move and spread throughout the solvent. The diagram below shows how a solution can change over time. Solute particles move from the area where they are at a higher concentration to the area where they are at a lower concentration. This movement happens through the process of diffusion.\\nAs a result of diffusion, the concentration of solute particles becomes equal throughout the solution. When this happens, the solute particles reach equilibrium. At equilibrium, the solute particles do not stop moving. But their concentration throughout the solution stays the same.\\nMembranes, or thin boundaries, can divide solutions into parts. A membrane is permeable to a solute when particles of the solute can pass through gaps in the membrane. In this case, solute particles can move freely across the membrane from one side to the other.\\nSo, for the solute particles to reach equilibrium, more particles will move across a permeable membrane from the side with a higher concentration of solute particles to the side with a lower concentration. At equilibrium, the concentration on both sides of the membrane is equal. Look at the diagram again. It shows you how the solution changed during the process of diffusion.\\nBefore the solute particles reached equilibrium, there were 6 solute particles on the left side of the membrane and 2 solute particles on the right side of the membrane.\\nWhen the solute particles reached equilibrium, there were 4 solute particles on each side of the membrane. There were 2 more solute particles on the right side of the membrane than before.\\nSo, for the solute particles to reach equilibrium, more solute particles must have moved across the membrane to the right than to the left. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7306\",\n    \"image\": \"7306\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Antarctica (B) Europe (C) Asia (D) Africa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Europe. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7310\",\n    \"image\": \"7310\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Farid's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nFarid used a dropper to put equal-sized drops of pure water, one at a time, onto a penny. The drops stayed together and formed a dome on the penny's surface. Farid recorded the number of drops he could add before the water spilled over the edge of the penny. Then, he rinsed and dried the penny, and repeated the test using water mixed with hand soap. He repeated these trials on nine additional pennies. Farid compared the average number of pure water drops to the average number of water drops mixed with hand soap that he could add to a penny before the water spilled over.\\nFigure: a dome of water on the surface of a penny.\\nOptions: (A) Can pennies hold more drops of pure water or water mixed with hand soap? (B) Can pennies hold more drops of water mixed with dish soap or water mixed with hand soap?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7318\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Kevin inherited this trait?\\nContext: Read the description of a trait.\\nKevin has straight hair.\\nOptions: (A) Kevin's parents were born with straight hair. They passed down this trait to Kevin. (B) Kevin and his father both have short hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7319\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nAn auction house representative described Bob Dylan's handwritten lyrics, worth over a million dollars, as \\\"the holy grail of lyrics.\\\"\\nContext: N/A\\nOptions: (A) history (B) a poem\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion holy grail is history.\\nDuring the Middle Ages, knights sought to find the Holy Grail, the cup that was supposedly used by Jesus at the Last Supper.\\nThe allusion holy grail means something desired but hard to obtain. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7322\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a car's gas tank?\\nContext: Select the better estimate.\\nOptions: (A) 42 milliliters (B) 42 liters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a car's gas tank is 42 liters.\\n42 milliliters is too little. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7329\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a guitar?\\nContext: Select the better estimate.\\nOptions: (A) 4 grams (B) 4 kilograms\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of a guitar is 4 kilograms.\\n4 grams is too light. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7333\",\n    \"image\": \"7333\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New Hampshire (B) Delaware (C) Kentucky (D) Wisconsin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Delaware. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7336\",\n    \"image\": \"7336\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the north pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7348\",\n    \"image\": \"7348\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Steigerwald Forest ecosystem?\\nContext: Figure: Steigerwald Forest.\\nThe Steigerwald Forest is a temperate deciduous forest ecosystem in Bavaria, a state in southern Germany. This forest has many oak and beech trees.\\nOptions: (A) It has soil that is rich in nutrients. (B) It has a small amount of rain or snow. (C) It has soil that is poor in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A temperate deciduous forest is a type of ecosystem. Temperate deciduous forests have the following features: warm, wet summers and cold, wet winters, soil that is rich in nutrients, and only a few types of trees. So, the following statement describes the Steigerwald Forest ecosystem: warm, wet summers and cold, wet winters, soil that is rich in nutrients, and only a few types of trees. It has soil that is rich in nutrients. The following statements do not describe the Steigerwald Forest: warm, wet summers and cold, wet winters, soil that is rich in nutrients, and only a few types of trees. It has soil that is poor in nutrients. It has a small amount of rain or snow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7349\",\n    \"image\": \"7349\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How much time passed between the founding of Jamestown, Virginia, and the start of the Revolutionary War?\\nContext: Look at the timeline. Then answer the question.\\nOptions: (A) 100 to 150 years (B) less than 50 years (C) 50 to 100 years (D) more than 150 years\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"More than 150 years passed between the founding of the Jamestown colony in Virginia and the start of the Revolutionary War.\\nJamestown was founded in 1607. The Revolutionary War started 168 years later, in 1775. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7358\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nflee - frontier\\nContext: N/A\\nOptions: (A) foolish (B) face\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince foolish is between the guide words flee - frontier, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7365\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nThe actor blinks away his tears.\\nContext: N/A\\nOptions: (A) past tense (B) present tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, blinks. The verb ends in -s and tells you about something that is true or happening now. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7367\",\n    \"image\": \"7367\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 1. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is stronger in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 2 are closer together than the magnets in Pair 1. So, the magnetic force is stronger in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7373\",\n    \"image\": \"7373\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for swimming?\\nContext: Red-eared sliders are a type of turtle. They are found in ponds, lakes, and rivers in many parts of North America. The feet of the are adapted for swimming.\\nFigure: red-eared slider.\\nOptions: (A) New Zealand falcon (B) California gull\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the red-eared slider.\\nThe red-eared slider has webbed feet. Its feet are adapted for swimming. As it swims, the red-eared slider uses its webbed feet to push itself through water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe California gull has small claws and webbed feet. Its feet are adapted for swimming.\\nThe New Zealand falcon has long toes with sharp claws. Its feet are not adapted for swimming. The New Zealand falcon uses its feet to grab prey. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7374\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) love,\\nTony (B) Love,\\nTony\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7385\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Argo's phenotype for the coat color trait?\\nContext: In a group of horses, some individuals have a black coat and others have a reddish-brown coat. In this group, the gene for the coat color trait has two alleles. The allele L is for a black coat, and the allele l is for a reddish-brown coat.\\nArgo, a horse from this group, has a reddish-brown coat. Argo has two alleles for a reddish-brown coat.\\nOptions: (A) a reddish-brown coat (B) ll\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Argo's observable version of the coat color trait is a reddish-brown coat. So, Argo's phenotype for the coat color trait is a reddish-brown coat. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7387\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a short story?\\nContext: N/A\\nOptions: (A) The Law of Life (B) \\\"The Law of Life\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A short story should be in quotation marks.\\nThe correct title is \\\"The Law of Life.\\\" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7390\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe old wooden rocking chair that Tanvi brought home from the rummage sale was as comfortable as a bed of nails.\\nContext: N/A\\nOptions: (A) verbal irony (B) pun\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAs comfortable as a bed of nails shows verbal irony because sitting on nails would not be comfortable. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7395\",\n    \"image\": \"7395\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) New Mexico (B) Kansas (C) Maryland (D) Alabama\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. New Mexico is farthest west. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7403\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mixture.\\nContext: N/A\\nOptions: (A) lemonade (B) silver\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A pure substance is made of only one type of matter.\\nA mixture is made of two or more types of matter mixed together. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7405\",\n    \"image\": \"7405\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak. A pelican is an example of a bird.\\nOptions: (A) flamingo (B) cane toad\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A flamingo is a bird. It has feathers, two wings, and a beak.\\nA cane toad is an amphibian. It has moist skin and begins its life in water. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7415\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the most thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 5-kilogram gold bar at a temperature of 31\\u00b0F (B) a 5-kilogram gold bar at a temperature of 17\\u00b0F (C) a 5-kilogram gold bar at a temperature of 25\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. All three gold bars have the same mass but different temperatures. Since the 31\\u00b0F gold bar is the hottest, it has the most thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7418\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) The construction of the Channel Tunnel cost a ridiculous amount of money. (B) The Channel Tunnel, which runs beneath the English Channel, connects England and France by rail.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true. Facts can be proved by observing, measuring, or studying information.\\nThe flag of the United States has 13 stripes.\\nThis is a fact. It can be proved by looking at the flag and counting the number of stripes.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nThe flag of the United States is easy to draw.\\nThis is an opinion. People may have different opinions about what makes a flag \\\"easy\\\" to draw. The first sentence states a fact.\\nThe Channel Tunnel, which runs beneath the English Channel, connects England and France by rail.\\nIt can be proved by checking an accurate website about the Channel Tunnel.\\nThe second sentence states an opinion.\\nThe construction of the Channel Tunnel cost a ridiculous amount of money.\\nRidiculous shows what a person believes, thinks, or feels. Another person might have a different opinion about what is ridiculous. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7424\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear Becky, (B) Dear becky,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Becky is capitalized because it is a proper noun. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7428\",\n    \"image\": \"7428\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample A (C) sample B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample A has more mass than each particle in sample B. The particles in sample A also have a higher average speed than the particles in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7432\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the invertebrate.\\nContext: Hint: Insects, spiders, and worms are invertebrates.\\nOptions: (A) rockfish (B) albatross (C) leaf-curling spider (D) whiptail lizard\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. Like other spiders, a leaf-curling spider is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA whiptail lizard is a reptile. Like other reptiles, a whiptail lizard is a vertebrate. It has a backbone.\\nA rockfish is a fish. Like other fish, a rockfish is a vertebrate. It has a backbone.\\nAn albatross is a bird. Like other birds, an albatross is a vertebrate. It has a backbone. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7434\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) After Jenny scolded Annie for missing the deadline, she felt awful. (B) Jenny felt awful after she scolded Annie for missing the deadline.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun she could refer to Jenny or Annie.\\nAfter Jenny scolded Annie for missing the deadline, she felt awful.\\nThe first answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nJenny felt awful after she scolded Annie for missing the deadline. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7447\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Choose the poem that has a regular rhythm, or a pattern of sound like a beat.\\nContext: From Alfred, Lord Tennyson, \\\"Lady Clare\\\" and from E. E. Cummings, \\\"but the other\\\"\\nOptions: (A) in spring\\nropes\\nof silver gliding from sunny\\nthunder into freshness (B) \\\"He does not love me for my birth,\\nNor for my lands so broad and fair;\\nHe loves me for my own true worth,\\nAnd that is well,\\\" said Lady Clare.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Poetry is a special kind of writing. It has many elements that make it different from ordinary writing. Knowing these elements can help you talk about poetry, understand it better, and enjoy it more.\\nA poem rhymes when it has a pattern of words that end in the same sound.\\nEnd rhyme is when the rhymes appear at the end of a poem's lines.\\nLittle Betty Blue,\\nLost her holiday shoe.\\n\\u2014From Mother Goose\\nInternal rhyme is when at least one of the rhyming words appears inside the poem's lines.\\nSweet dreams of pleasant streams.\\n\\u2014From William Blake, \\\"A Cradle Song\\\"\\nRhythm is the pattern of strong and weak syllables, or stress, in a poem. You can recognize rhythm in a poem by listening to how it sounds. Poems with regular rhythm have a beat, like in music.\\nHe watches from his mountain walls,\\nAnd like a thunderbolt he falls.\\n\\u2014From Alfred, Lord Tennyson, \\\"The Eagle\\\"\\nThe syllables in bold are strong. We say them with more force than the other syllables. In this poem, every weak syllable is followed by a strong syllable. Each line sounds like da-DUM da-DUM da-DUM da-DUM. To better hear the rhythm, try reading it aloud while clapping on each strong syllable.\\nFree verse is when a poem has neither a regular rhythm nor a rhyme pattern.\\nThe old bridge has a wrinkled face.\\nHe bends his back\\nFor us to go over.\\n\\u2014From Hilda Conkling, \\\"The Old Bridge\\\"\\nThe syllables in bold are strong. You can see this poem does not have a regular rhythm. It also doesn't have a rhyme pattern.\\nRepetition is when words, phrases, or whole lines are repeated.\\nThe dainty flying squirrel\\nIn vest of shining white,\\nIn coat of silver gray,\\nAnd vest of shining white.\\n\\u2014Adapted from Mary E. Burt, \\\"The Flying Squirrel\\\"\\nAlliteration is when beginning consonant sounds are repeated in words that are close together.\\nWhere the wild men watched and waited\\nWolves in the forest, and bears in the bush.\\n\\u2014From Bayard Taylor, \\\"A Night with a Wolf\\\"\\nOnomatopoeia is when language sounds like what it talks about.\\nSometimes the onomatopoeia uses made-up words:\\nTlot-tlot! tlot-tlot! Had they heard it? The horse hoofs ringing clear.\\n\\u2014From Alfred Noyes, \\\"The Highwayman\\\"\\nSometimes the onomatopoeia uses real words:\\nHark! the honey bee is humming.\\n\\u2014From Mary Howitt, \\\"The Voice of Spring\\\" This poem has a regular rhythm, or a pattern of sound like a beat. The parts in bold show the strong syllables. The pattern is a weak syllable followed by a strong syllable. It sounds like da-DUM da-DUM.\\nAnd that is well,\\\" said Lady Clare. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7457\",\n    \"image\": \"7457\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) smooth (B) rough\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA rough object feels scratchy when you touch it. Both objects are rough.\\nA smooth object is not scratchy or rough. Neither of the objects are smooth.\\nThe property that both objects have in common is rough. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7462\",\n    \"image\": \"7462\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7465\",\n    \"image\": \"7465\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the brown pelican.\\nContext: This organism is a brown pelican. Its scientific name is Pelecanus occidentalis.\\nOptions: (A) Ardea cocoi (B) Ictinia mississippiensis (C) Pelecanus occidentalis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A brown pelican's scientific name is Pelecanus occidentalis.\\nArdea cocoi does not have the same scientific name as a brown pelican. So, Pelecanus occidentalis and Ardea cocoi are not in the same species.\\nPelecanus occidentalis has the same scientific name as a brown pelican. So, these organisms are in the same species.\\nIctinia mississippiensis does not have the same scientific name as a brown pelican. So, Pelecanus occidentalis and Ictinia mississippiensis are not in the same species. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7466\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nIf you have any doubts that Ken Henderson is the ideal candidate, just look at how many people have come out to vote for him.\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) appeal to nature: the assumption that natural things are always good (C) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Ken Henderson is the ideal candidate because so many people turned out to vote for him. However, just because many people voted for Ken Henderson, it doesn't necessarily mean he is the ideal candidate. He could be a popular candidate for other reasons. This illustrates a type of logical fallacy known as the bandwagon fallacy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7467\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Your Student,\\nJulia (B) Your student,\\nJulia\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7470\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Ken investigate with an experiment?\\nContext: Ken and his sister are building ramps to race their toy cars down. Ken notices that the cars go down some of the ramps faster than others. He wonders what factors affect the cars' speed. So, he decides to design an experiment. He has the following supplies available:\\ntwo identical toy cars\\na wooden ramp three feet long and two feet tall\\na cardboard ramp three feet long and two feet tall\\nOptions: (A) Do toy cars with plastic wheels go faster down the cardboard ramp than toy cars with metal wheels? (B) Does a big toy car go down the wooden ramp faster than a small toy car? (C) Do toy cars go faster down the ramp made of wood or the ramp made of cardboard?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7474\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Cleo's phenotype for the fur color trait?\\nContext: In a group of rock pocket mice, some individuals have dark fur and others have light fur. In this group, the gene for the fur color trait has two alleles. The allele for light fur (f) is recessive to the allele for dark fur (F).\\nCleo is a rock pocket mouse from this group. Cleo has the homozygous genotype ff for the fur color gene.\\nOptions: (A) light fur (B) dark fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Cleo's genotype for the fur color gene is ff. Cleo's genotype of ff has only f alleles. The f allele is for light fur. So, Cleo's phenotype for the fur color trait must be light fur.\\nTo check this answer, consider whether Cleo's alleles are dominant or recessive. The allele for light fur (f) is recessive to the allele for dark fur (F). This means F is a dominant allele, and f is a recessive allele.\\nCleo's genotype of ff has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Cleo's phenotype for the fur color trait must be light fur. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7477\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) If Fred doesn't know how to make homemade waffles, he can find the recipe in the cookbook. (B) If Fred doesn't know how to make homemade waffles, he can find it in the cookbook.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it is used without its antecedent.\\nThe first answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the recipe.\\nIf Fred doesn't know how to make homemade waffles, he can find the recipe in the cookbook. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7480\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nAt the museum, we saw statues from China.\\nContext: N/A\\nOptions: (A) declarative (B) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence tells about something, and it ends with a period. It is a declarative sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7483\",\n    \"image\": \"7483\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which fish's mouth is also adapted for tearing through meat?\\nContext: Barracudas often hunt large fish for food. The 's mouth is adapted to tear through meat.\\nFigure: barracuda.\\nOptions: (A) bull shark (B) magnificent rabbitfish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the barracuda.\\nThe barracuda has a large mouth and sharp teeth. Its mouth is adapted for tearing through meat. The baracuda uses its teeth to cut up meat into pieces it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe bull shark has a large mouth and sharp teeth. Its mouth is adapted for tearing through meat.\\nThe magnificent rabbitfish has a small, narrow mouth. Its mouth is not adapted for tearing through meat. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7487\",\n    \"image\": \"7487\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is greater in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7488\",\n    \"image\": \"7488\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Mitchell's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nMitchell, a materials engineer, was developing a quick-drying fabric for athletic clothing. The fabric needed to absorb one drop of water in less than one second and dry completely in less than five minutes. Mitchell thought a fabric made from cotton and polyester would both absorb water well and dry quickly. But he needed to decide what percentage of each material to use.\\nSo, he made a sample fabric that was 50% cotton and 50% polyester. Then he put one drop of water on the sample. He timed how long it took the fabric to dry after the water was absorbed.\\nFigure: fabric that has not absorbed drops of water.\\nOptions: (A) if the sample fabric would absorb one drop of water in less than one second (B) how much athletes would sweat in the fabric (C) how long it would take the sample fabric to dry after it absorbed one drop of water\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7490\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the personification in this text suggest?\\nEmmet tried to ignore his unfinished essay, but it glared at him from across the room.\\nContext: N/A\\nOptions: (A) It bothered Emmet that the essay wasn't finished. (B) Emmet thought he was being watched.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind. The text uses personification, giving human characteristics to nonhuman things.\\nGlared at him suggests that it bothered Emmet that the essay wasn't finished. The essay is like a person who is bothering Emmet. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7494\",\n    \"image\": \"7494\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the Chinese alligator.\\nContext: This organism is a Chinese alligator. Its scientific name is Alligator sinensis.\\nOptions: (A) Miscanthus sinensis (B) Alligator sinensis (C) Strix varia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A Chinese alligator's scientific name is Alligator sinensis. The first word of its scientific name is Alligator.\\nStrix varia is in the genus Strix. The first word of its scientific name is Strix. So, Strix varia and Alligator sinensis are not in the same genus.\\nMiscanthus sinensis and Alligator sinensis are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Miscanthus sinensis and Alligator sinensis have the same species name within their genus, sinensis. But the first words of their scientific names are different. Miscanthus sinensis is in the genus Miscanthus, and Alligator sinensis is in the genus Alligator.\\nThis organism and the Chinese alligator are in the same genus and the same species! Both organisms have the same scientific name, Alligator sinensis. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7495\",\n    \"image\": \"7495\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Pablo's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nPablo used a dropper to put equal-sized drops of pure water, one at a time, onto a penny. The drops stayed together and formed a dome on the penny's surface. Pablo recorded the number of drops he could add before the water spilled over the edge of the penny. Then, he rinsed and dried the penny, and repeated the test using water mixed with hand soap. He repeated these trials on nine additional pennies. Pablo compared the average number of pure water drops to the average number of water drops mixed with hand soap that he could add to a penny before the water spilled over.\\nFigure: a dome of water on the surface of a penny.\\nOptions: (A) Can pennies hold more drops of pure water or water mixed with hand soap? (B) Can pennies hold more drops of water mixed with dish soap or water mixed with hand soap?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7497\",\n    \"image\": \"7497\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Arizona?\\nContext: N/A\\nOptions: (A) Helena (B) Phoenix (C) Tucson (D) Honolulu\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Phoenix is the capital of Arizona. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7507\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nEarth is hit by a rock from outer space.\\nContext: N/A\\nOptions: (A) deposition (B) landslide (C) meteorite crash\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7512\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is harder?\\nContext: N/A\\nOptions: (A) rubber balloons (B) ceramic tea cup\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Hard is a property. A hard material keeps its shape when you press on it with your finger.\\nLook at each picture, one at a time. Imagine pushing on the material shown in each picture.\\nOf the choices, the ceramic tea cup is harder. If you press on a piece of ceramic, it will not change shape. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7514\",\n    \"image\": \"7514\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Hampshire?\\nContext: N/A\\nOptions: (A) Louisville (B) Pittsburgh (C) Manchester (D) Concord\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Concord is the capital of New Hampshire. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7517\",\n    \"image\": \"7517\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oregon?\\nContext: N/A\\nOptions: (A) Billings (B) Salem (C) Portland (D) Salt Lake City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salem is the capital of Oregon. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7521\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Cole decides to watch the action movie. Which result would be a cost?\\nContext: Cole is deciding whether to watch a comedy or an action movie. He would prefer to watch a comedy. But he also wants to watch a movie with his sister. Cole's sister will only watch an action movie.\\nOptions: (A) Cole will get to watch a movie with his sister. (B) Cole will give up the chance to watch the movie that he is more excited about.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Cole wants or needs:\\nCole will give up the chance to watch the movie that he is more excited about. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7524\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which mug of cocoa has a higher temperature?\\nContext: Two 200-gram mugs of cocoa are identical except for their thermal energies.\\nOptions: (A) the mug of cocoa with less thermal energy (B) the mug of cocoa with more thermal energy\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two mugs of cocoa are made of the same material and have the same mass. So, the mug of cocoa with more thermal energy has a higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7528\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the temperature shown by this thermometer.\\nContext: N/A\\nOptions: (A) 20\\u00b0C (B) 5\\u00b0C (C) 35\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A thermometer is a tool that measures temperature. Temperature can be measured in degrees. The symbol for degrees is \\u00b0.\\nSome thermometers measure temperature in degrees Celsius (\\u00b0C). Celsius is one scale used to measure temperature.\\nThis is a tube thermometer. It has a tube filled with a red liquid.\\nThere is a Celsius scale along the right side of the tube. The top of the red liquid lines up with the number 30 on the scale. So, the temperature shown by this thermometer is 30\\u00b0C. Find the top of the red liquid.\\nNow look at the scale to the right. The top of the red liquid lines up with 5. So, the temperature is 5\\u00b0C. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7529\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word they on a dictionary page with the following guide words?\\nterritory - trek\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince they is between the guide words territory - trek, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7531\",\n    \"image\": \"7531\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Cuba (B) Haiti (C) Trinidad and Tobago (D) Grenada\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Haiti.\\nDoes Haiti have any territorial disputes?\\nHaiti claims to own Navassa Island, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nNavassa Island is also claimed by the United States. The United States claimed the island in 1857 and has controlled it since then. But Haiti considers the island part of its territory and has protested the United States' claim since this time. No one lives on the island. Today, it is a nature preserve. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7532\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Marcy investigate with an experiment?\\nContext: Marcy has a small vegetable garden, which includes a compost pile of food scraps. She notices that some of the squash plants growing next to the compost pile grow differently than squash plants that are farther away. She wonders what factors affect how her squash plants grow. So, she decides to design an experiment. She has the following supplies available:\\none type of squash seeds\\nfour large clay pots\\nsoil\\na compost pile\\nwater\\nOptions: (A) If squash seeds and tomato seeds are planted with compost, which type of plant grows larger? (B) Do squash plants grow larger if the seeds are planted with compost or without compost? (C) Do squash plants grow larger if the seeds are planted in small pots or in large pots?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7533\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mixture.\\nContext: N/A\\nOptions: (A) oxygen (B) blocks\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A pure substance is made of only one type of matter.\\nA mixture is made of two or more types of matter mixed together. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7534\",\n    \"image\": \"7534\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the amphibian below.\\nContext: Amphibians have moist skin and begin their lives in water. An olive toad is an example of an amphibian.\\nOptions: (A) robin (B) barking tree frog\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A barking tree frog is an amphibian. It has moist skin and begins its life in water.\\nA robin is a bird. It has feathers, two wings, and a beak. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7545\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nPreston has naturally red hair.\\nContext: N/A\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Humans do not choose their natural hair color. Some people dye their hair. But this does not change their natural hair color.\\nChildren get their natural hair color from their parents. So, Preston's hair color is an inherited trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7546\",\n    \"image\": \"7546\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Pennsylvania (B) Connecticut (C) Massachusetts (D) Wisconsin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Massachusetts.\\nThe Massachusetts Colony included land that would later become the state of Maine. Maine was never its own colony. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7548\",\n    \"image\": \"7548\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What type of rock is sandstone?\\nContext: This is a piece of sandstone. Sandstone forms below the ground in places like deserts and beaches. This piece of rock shows dark and light layers.\\nSandstone forms from sand grains. Sand grains are tiny pieces of rock that are broken off by water, wind, or ice. Layers of sand can build up in some places. Over time, these layers can get compacted into sandstone.\\nOptions: (A) igneous (B) metamorphic (C) sedimentary\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Igneous rock is formed when melted rock cools and hardens into solid rock. This type of change can occur at Earth's surface or below it.\\nSedimentary rock is formed when layers of sediment are pressed together, or compacted, to make rock. This type of change occurs below Earth's surface.\\nMetamorphic rock is formed when a rock is changed by very high temperature and pressure. This type of change often occurs deep below Earth's surface. Over time, the old rock becomes a new rock with different properties. Sandstone is a sedimentary rock. Like other sedimentary rocks, it forms from layers of sediment.\\nMaterial that is eroded in nature is called sediment. Sand is a type of sediment. Over time, layers of sand can build up in places like deserts and beaches. The top layers press down on the bottom layers, squeezing out water and air. Sandstone forms when the bottom layers of sand are pressed together to form rock. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7553\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a fish bowl?\\nContext: Select the best estimate.\\nOptions: (A) 1 cup (B) 1 fluid ounce (C) 1 gallon\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a fish bowl is 1 gallon.\\n1 fluid ounce and 1 cup are both too little. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7560\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMichael's definitely voting for the Conservative Party in the next election because he said there was no way he was voting for the Labour Party.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) appeal to nature: the assumption that natural things are always good (C) false dichotomy: an argument that presents only two choices when more options exist\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Michael is voting either for the candidate from the Conservative Party or the Labour Party. However, Michael might be voting for a third party\\u2014or he might not be voting at all. This illustrates a type of logical fallacy known as a false dichotomy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7563\",\n    \"image\": \"7563\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is pyrite a mineral?\\nContext: Pyrite has the following properties:\\nsolid\\nfound in nature\\npure substance\\nfixed crystal structure\\nnot made by organisms\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Pyrite has all the properties of a mineral. So, pyrite is a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7578\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) ***Giants in the Land*** (B) \\\"Giants in the Land\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A book should be in italics.\\nThe correct title is **Giants in the Land**. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7582\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Last year, there were seven men's clothing stores on Main Street in Wildgrove. This year, there are only three. What probably happened to the overall supply of men's shirts in Wildgrove?\\nContext: N/A\\nOptions: (A) The supply probably went up. (B) The supply probably went down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. When four men's clothing stores closed on Main Street, the number of suppliers went down. There were fewer stores selling men's shirts. So, the supply of men's shirts probably went down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7587\",\n    \"image\": \"7587\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) opaque (B) salty (C) slippery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nAn opaque object does not let light through. All four objects are opaque.\\nA slippery object is hard to hold onto or stand on. The license plate is not slippery.\\nPotato chips have a salty taste. The ceramic mug and the banana are not salty.\\nThe property that all four objects have in common is opaque. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7597\",\n    \"image\": \"7597\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Cheyenne (B) Indianapolis (C) Carson City (D) Santa Fe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7598\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a basketball court?\\nContext: Select the best estimate.\\nOptions: (A) 23 centimeters (B) 23 millimeters (C) 23 kilometers (D) 23 meters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a basketball court is 23 meters.\\n23 millimeters and 23 centimeters are too short. 23 kilometers is too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7608\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Ariana acquired this trait?\\nContext: Read the description of a trait.\\nAriana knows how to fly a plane.\\nOptions: (A) Ariana is in the Air Force. She flies a plane almost every day. (B) A pilot taught Ariana how to fly a plane. (C) Ariana can fly a plane on cloudy days and at night.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7614\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is an ice skate?\\nContext: Select the best estimate.\\nOptions: (A) 11 miles (B) 11 feet (C) 11 yards (D) 11 inches\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of an ice skate is 11 inches.\\n11 feet, 11 yards, and 11 miles are all too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7617\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nDespite Sally's insistence that she would raise Cain if we ever got lost, we decided to try taking a shortcut.\\nContext: N/A\\nOptions: (A) the Bible (B) U.S. history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion raise Cain is the Bible.\\nIn the Bible, Adam and Eve's son Cain murders his brother in a jealous rage.\\nThe allusion raise Cain means to resort to violence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7621\",\n    \"image\": \"7621\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of purple particles?\\nContext: The diagram below is a model of two solutions. Each purple ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution B (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the purple particles represent the solute. To figure out which solution has a higher concentration of purple particles, look at both the number of purple particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of purple particles per milliliter.\\nSolution A has more purple particles per milliliter. So, Solution A has a higher concentration of purple particles. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7624\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a full box of cereal?\\nContext: Select the best estimate.\\nOptions: (A) 16 pounds (B) 16 tons (C) 16 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a full box of cereal is 16 ounces.\\n16 pounds and 16 tons are both too heavy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7625\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is stickier?\\nContext: N/A\\nOptions: (A) paper crane (B) glue\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Sticky is a property. A sticky material can stick to other things.\\nLook at each picture, one at a time. Imagine touching the material shown in each picture.\\nOf the choices, the glue is stickier. If you touch wet glue, it will stick to you. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7626\",\n    \"image\": \"7626\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Leo and Caden trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nLeo and Caden open their lunch boxes in the school cafeteria. Neither Leo nor Caden got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nLeo's lunch Caden's lunch\\nOptions: (A) Caden can trade his broccoli for Leo's oranges. (B) Leo can trade his tomatoes for Caden's carrots. (C) Leo can trade his tomatoes for Caden's broccoli. (D) Caden can trade his almonds for Leo's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nLeo wants broccoli. Caden wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7638\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Wishbone's genotype for the fur length gene?\\nContext: In a group of dogs, some individuals have short fur and others have long fur. In this group, the gene for the fur length trait has two alleles. The allele F is for short fur, and the allele f is for long fur.\\nWishbone, a dog from this group, has short fur. Wishbone has two alleles for short fur.\\nOptions: (A) FF (B) short fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Wishbone has two alleles for short fur (F). So, Wishbone's genotype for the fur length gene is FF. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7651\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) Our cabin has bunk beds for the kids. (B) Our school has rules we always follow them.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Our school has rules we always follow them is a run-on sentence. It has two sentences that are joined without end punctuation: Our school has rules and We always follow them. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7653\",\n    \"image\": \"7653\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the European hedgehog.\\nContext: This organism is a European hedgehog. Its scientific name is Erinaceus europaeus.\\nOptions: (A) Erinaceus europaeus (B) Equus zebra (C) Caprimulgus europaeus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A European hedgehog's scientific name is Erinaceus europaeus. The first word of its scientific name is Erinaceus.\\nCaprimulgus europaeus and Erinaceus europaeus are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Caprimulgus europaeus and Erinaceus europaeus have the same species name within their genus, europaeus. But the first words of their scientific names are different. Caprimulgus europaeus is in the genus Caprimulgus, and Erinaceus europaeus is in the genus Erinaceus.\\nEquus zebra is in the genus Equus. The first word of its scientific name is Equus. So, Equus zebra and Erinaceus europaeus are not in the same genus.\\nThis organism and the European hedgehog are in the same genus and the same species! Both organisms have the same scientific name, Erinaceus europaeus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7670\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a can of soup?\\nContext: Select the best estimate.\\nOptions: (A) 15 pounds (B) 15 ounces (C) 15 tons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a can of soup is 15 ounces.\\n15 pounds and 15 tons are both too heavy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7675\",\n    \"image\": \"7675\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Peter's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nPeter put one two-inch steel nail into each of six test tubes. He added water to three of the test tubes and vinegar to the other three. In each test tube, he completely covered the nail with the same volume of liquid. Peter checked the nails for rust at the same time every day. He recorded how many days it took each nail to become completely covered in rust. Then, he compared the number of days it took nails to rust in water to the number of days it took nails to rust in vinegar.\\nFigure: a new steel nail on a pile of rusty nails.\\nOptions: (A) Do steel nails take fewer days to rust in water compared to vinegar? (B) Do steel nails rust in fewer days when submerged in a large volume of liquid compared to a small volume?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7679\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tray of lasagna has more thermal energy?\\nContext: Two trays of lasagna are identical except for their temperatures.\\nOptions: (A) the colder tray of lasagna (B) the hotter tray of lasagna\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two trays of lasagna are made of the same material and have the same mass. So, the hotter tray of lasagna has more thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7685\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Tyler worked with Dave to design the new header for Dave's website. (B) Tyler worked with Dave to design the new header for his website.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun his could refer to Tyler's or Dave's.\\nThe second answer choice shows a possible correction for the vague pronoun reference. His has been replaced with Dave's.\\nTyler worked with Dave to design the new header for Dave's website. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7688\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Walker's phenotype for the coat pattern trait?\\nContext: In a group of cows, some individuals have solid coloring and others have white spots. In this group, the gene for the coat pattern trait has two alleles. The allele for solid coloring (A) is dominant over the allele for white spots (a).\\nWalker is a cow from this group. Walker has the homozygous genotype AA for the coat pattern gene.\\nOptions: (A) white spots (B) solid coloring\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Walker's genotype for the coat pattern gene is AA. Walker's genotype of AA has only A allelles. The A allele is for solid coloring. So, Walker's phenotype for the coat pattern trait must be solid coloring.\\nTo check this answer, consider whether Walker's alleles are dominant or recessive. The allele for solid coloring (A) is dominant over the allele for white spots (a). This means A is a dominant allele, and a is a recessive allele.\\nWalker's genotype of AA has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Walker's phenotype for the coat pattern trait must be solid coloring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7691\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which press release is more formal?\\nContext: N/A\\nOptions: (A) On Nov. 19, musicians from all over town will battle it out in the fourth annual Jam-a-thon, happening at the amphitheater. (B) On November 19, the Yardley Amphitheater will host area musicians vying for top honors in the fourth annual Jam-a-thon.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The first press release is more formal. It uses more elevated language (area musicians, top honors). The other press release uses idioms (battle it out) and abbreviations (Nov.). The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7692\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Donald acquired this trait?\\nContext: Read the description of a trait.\\nDonald knows how to fly a kite.\\nOptions: (A) Donald's neighbor taught him how to repair a kite. (B) Donald's friend taught him how to fly a kite. (C) Donald likes to fly a kite with his younger brother.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7694\",\n    \"image\": \"7694\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is the main persuasive appeal used in this ad?\\nContext: N/A\\nOptions: (A) logos (reason) (B) ethos (character) (C) pathos (emotion)\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The purpose of an advertisement is to persuade people to do something. To accomplish this purpose, advertisements use three types of persuasive strategies, or appeals:\\nAppeals to ethos, or character, show that the writer or speaker is trustworthy or is an authority on a subject. An ad that appeals to ethos might do one of the following:\\nsay that a brand has been trusted for many years\\nnote that a brand is recommended by a respected organization or celebrity\\ninclude a quote from a \\\"real person\\\" who shares the audience's values\\nAppeals to logos, or reason, use logic and specific evidence. An ad that appeals to logos might do one of the following:\\nuse graphs or charts to display information\\nmention the results of scientific studies\\nexplain the science behind a product or service\\nAppeals to pathos, or emotion, use feelings rather than facts to persuade the audience. An ad that appeals to pathos might do one of the following:\\ntrigger a fear, such as the fear of embarrassment\\nappeal to a desire, such as the desire to appear attractive\\nlink the product to a positive feeling, such as adventure, love, or luxury The ad appeals to logos, or reason. It mentions the results of laboratory tests. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7707\",\n    \"image\": \"7707\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of South Dakota?\\nContext: N/A\\nOptions: (A) Arlington (B) Madison (C) Springfield (D) Pierre\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Pierre is the capital of South Dakota. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7709\",\n    \"image\": \"7709\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the Venn diagram, what do Natty Bumppo and Daniel Boone have in common?\\nContext: This Venn diagram compares Natty Bumppo and Daniel Boone.\\nOptions: (A) Both fought in the French and Indian War. (B) Both were created by writer James Fenimore Cooper.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A graphic organizer is a chart or picture that shows how ideas, facts, or topics are related to one another.\\nWhen you read, look for graphic organizers included in the text. You can use these images to find key information. You can also create your own graphic organizers with information that you've read. Doing this can help you think about the ideas in the text and easily review them.\\nWhen you write, you can use graphic organizers to organize your thoughts and plan your writing. In a Venn diagram, each circle shows things that are true for a particular topic. The middle, where the two circles overlap, shows things that are true for both topics. This Venn diagram compares Natty Bumppo and Daniel Boone.\\nFought in the French and Indian War appears in both the Natty Bumppo circle and the Daniel Boone circle. This tells you that Natty Bumppo and Daniel Boone both fought in the French and Indian War. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7713\",\n    \"image\": \"7713\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\n50% of the planets are made mainly of gas.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that two out of the eight planets are made mainly of gas. So, one-fourth, or 25%, of the planets are made mainly of gas. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7719\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a sentence fragment?\\nI enjoyed the risotto and the poached pears. Although I didn't care for the seared trout.\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA sentence fragment is a group of words that does not express a complete thought.\\nRehearsing daily because we have a concert in two weeks.\\nThis fragment is missing a subject. It doesn't tell who is rehearsing.\\nThe band I'm in.\\nThis fragment is missing a verb. It doesn't tell what the band I'm in is doing.\\nBecause we have a concert in two weeks.\\nThis fragment is missing an independent clause. It doesn't tell what happened because of the concert. There is a sentence fragment that does not express a complete thought.\\nI enjoyed the risotto and the poached pears. Although I didn't care for the seared trout.\\nHere is one way to fix the sentence fragment:\\nI enjoyed the risotto and the poached pears, although I didn't care for the seared trout. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7720\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does this Works Cited entry indicate about the cited work?\\nBrenner, Wendy. \\\"Strange Beads.\\\" The Best American Essays 2014. Ed. John Jeremiah Sullivan. Boston: Houghton Mifflin, 2014. 5\\u201317. Print.\\nContext: N/A\\nOptions: (A) The volume number is 5. (B) John Jeremiah Sullivan is the editor. (C) \\\"Strange Beads\\\" is the book title.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing research papers, you will often be asked to follow a particular style guide for your citations. One popular style guide is the Modern Language Association (MLA) Handbook.\\nBelow are the basic formats for some common types of Works Cited entries. Consult the MLA Handbook for a complete list.\\nBooks:\\nFormat | Author(s). Book Title. City of Publication: Publisher, Year of Publication. Medium of Publication.\\nExample | Austen, Jane. Pride and Prejudice. New York: Dover Publications, 1995. Print.\\nEssays, short stories, or poems in an anthology or book:\\nFormat | Author(s). \\\"Essay, Poem, or Short Story Title.\\\" Anthology or Book Title. Ed. Editor Name. City of Publication: Publisher, Year of Publication. Page Number(s). Medium of Publication.\\nExample | James, Henry. \\\"The Middle Years.\\\" The Oxford Book of American Short Stories. Ed. Joyce Carol Oates. Oxford: Oxford UP, 2013. 116-135. Print.\\nMagazine and newspaper articles:\\nFormat | Author(s). \\\"Article Title.\\\" Title of Magazine or Newspaper Date of Publication: Page(s). Medium of Publication.\\nExample | Hayes, David J., and James H. Stock. \\\"The Real Cost of Coal.\\\" New York Times 24 Mar. 2015: n. pag. Web. 25 Mar. 2015.\\nJournal articles:\\nFormat | Author(s). \\\"Article Title.\\\" Title of Journal Volume.Issue (Year): Page(s). Medium of Publication.\\nExample | Gillette, Jane, et al. \\\"Human Simulations of Vocabulary Learning.\\\" Cognition 73.2 (1999): 135-176. Print.\\nWeb pages:\\nFormat | Author(s). \\\"Page Title.\\\" Name of Website. Publisher, Date of Publication. Medium of Publication. Date of Access.\\nExample | Gunn, Janelle P., and Lauren E. Owens. \\\"How to Slash Sodium from Your Diet.\\\" Livestrong.com. Demand Media, 30 Mar. 2015. Web. 31 Mar. 2015.\\nAdditional guidelines:\\nAuthor Names. The first author's name is written in last name, first name format (Smith, Jane). Additional author names are written in first name last name format (Smith, Jane, and John Doe). If there are more than three authors, the first author's name is followed by \\\"et al.,\\\" which stands for and others (e.g., Smith, Jane, et al.).\\nMedium of Publication. Each entry must include information about what form the content was communicated in. The most common mediums are \\\"Print\\\" and \\\"Web,\\\" but other possibilities include \\\"Film,\\\" \\\"E-mail,\\\" and \\\"Lecture.\\\" Whenever the Medium of Publication is \\\"Web,\\\" the date of access (the day, month, and year the webpage was viewed) must be listed directly after the Medium of Publication.\\nEditors and Translators. If a work has an editor or a translator, this information must be added to the Works Cited entry using the appropriate abbreviation. \\\"Ed.\\\" stands for edited by. \\\"Trans.\\\" stands for translated by.\\nMissing Information. If a work has no known author, the author section of the citation is simply left out. If a work has no available page numbers, the abbreviation \\\"n. pag.\\\" is used instead. If a work has no available publication date, the abbreviation \\\"n.d.\\\" is used instead. If a work has no available publisher or no available city of publication, the abbreviation \\\"n.p.\\\" is used instead.\\n Look closely at the Works Cited entry:\\nBrenner, Wendy. \\\"Strange Beads.\\\" The Best American Essays 2014. Ed. John Jeremiah Sullivan. Boston: Houghton Mifflin, 2014. 5\\u201317. Print.\\nYou can tell that John Jeremiah Sullivan is the editor because his name appears after the abbreviation Ed., which means edited by. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7724\",\n    \"image\": \"7724\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the comet moth.\\nContext: This organism is a comet moth. Its scientific name is Argema mittrei.\\nOptions: (A) Sphodromantis viridis (B) Argema mittrei (C) Acanthaster planci\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A comet moth's scientific name is Argema mittrei.\\nArgema mittrei has the same scientific name as a comet moth. So, these organisms are in the same species.\\nSphodromantis viridis does not have the same scientific name as a comet moth. So, Argema mittrei and Sphodromantis viridis are not in the same species.\\nAcanthaster planci does not have the same scientific name as a comet moth. So, Argema mittrei and Acanthaster planci are not in the same species. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7726\",\n    \"image\": \"7726\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the text to describe the diagram.\\nSolute particles moved in both directions across the permeable membrane. But more solute particles moved across the membrane (). When there was an equal concentration on both sides, the particles reached equilibrium.\\nContext: The diagram below shows a solution with one solute. Each solute particle is represented by a pink ball. The solution fills a closed container that is divided in half by a membrane. The membrane, represented by a dotted line, is permeable to the solute particles.\\nThe diagram shows how the solution can change over time during the process of diffusion.\\nOptions: (A) to the left than to the right (B) to the right than to the left\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a solution, solute particles move and spread throughout the solvent. The diagram below shows how a solution can change over time. Solute particles move from the area where they are at a higher concentration to the area where they are at a lower concentration. This movement happens through the process of diffusion.\\nAs a result of diffusion, the concentration of solute particles becomes equal throughout the solution. When this happens, the solute particles reach equilibrium. At equilibrium, the solute particles do not stop moving. But their concentration throughout the solution stays the same.\\nMembranes, or thin boundaries, can divide solutions into parts. A membrane is permeable to a solute when particles of the solute can pass through gaps in the membrane. In this case, solute particles can move freely across the membrane from one side to the other.\\nSo, for the solute particles to reach equilibrium, more particles will move across a permeable membrane from the side with a higher concentration of solute particles to the side with a lower concentration. At equilibrium, the concentration on both sides of the membrane is equal. Look at the diagram again. It shows you how the solution changed during the process of diffusion.\\nBefore the solute particles reached equilibrium, there were 2 solute particles on the left side of the membrane and 6 solute particles on the right side of the membrane.\\nWhen the solute particles reached equilibrium, there were 4 solute particles on each side of the membrane. There were 2 more solute particles on the left side of the membrane than before.\\nSo, for the solute particles to reach equilibrium, more solute particles must have moved across the membrane to the left than to the right. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7727\",\n    \"image\": \"7727\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the bubble map, which statement is true?\\nContext: This bubble map shows information about different bodies of water.\\nOptions: (A) The Gulf of Mexico contains salt water. (B) Lake Michigan contains salt water.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A graphic organizer is a chart or picture that shows how ideas, facts, or topics are related to one another.\\nWhen you read, look for graphic organizers included in the text. You can use these images to find key information. You can also create your own graphic organizers with information that you've read. Doing this can help you think about the ideas in the text and easily review them.\\nWhen you write, you can use graphic organizers to organize your thoughts and plan your writing. A bubble map uses lines to connect things that are related. This bubble map shows information about different bodies of water.\\nGulf of Mexico is directly connected to salt water. This tells you that the Gulf of Mexico contains salt water. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7729\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Tina investigate with an experiment?\\nContext: Tina wants to grow sunflowers in her backyard garden. She notices that some sunflowers grow much taller than others. She is curious about what factors affect how sunflowers grow. So, she decides to design an experiment. She has the following supplies available:\\nseeds from one type of sunflower\\nsoil\\none wooden planter box in the sun\\none wooden planter box in the shade\\none plastic planter box in the sun\\nwater\\nOptions: (A) Which type of sunflower grows more leaves? (B) Do sunflowers grow taller if they are planted in planter boxes or in pots? (C) Do sunflowers grow bigger in sunny planter boxes or in shady planter boxes?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7737\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Answer the riddle.\\nYou can hold me in your hand.\\nYou can write with me.\\nI may be blue or black.\\nWhat am I?\\nContext: N/A\\nOptions: (A) a cap (B) a pen\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"You can hold a pen in your hand.\\nYou can write with a pen.\\nA pen may be blue or black. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7756\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a paper clip?\\nContext: Select the best estimate.\\nOptions: (A) 28 meters (B) 28 centimeters (C) 28 millimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a paper clip is 28 millimeters.\\n28 centimeters and 28 meters are both too long. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7758\",\n    \"image\": \"7758\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) California (B) Idaho (C) New Mexico (D) Nebraska\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. Nebraska is farthest east. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7759\",\n    \"image\": \"7759\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Steigerwald Forest ecosystem?\\nContext: Figure: Steigerwald Forest.\\nThe Steigerwald Forest is a temperate deciduous forest ecosystem in Bavaria, a state in southern Germany. This forest has many oak and beech trees.\\nOptions: (A) It has soil that is poor in nutrients. (B) It has soil that is rich in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A temperate deciduous forest is a type of ecosystem. Temperate deciduous forests have the following features: warm, wet summers and cold, wet winters, soil that is rich in nutrients, and only a few types of trees. So, the following statements describe the Steigerwald Forest ecosystem: warm, wet summers and cold, wet winters, soil that is rich in nutrients, and only a few types of trees. It has soil that is rich in nutrients. It has warm, wet summers and cold, wet winters. The following statement does not describe the Steigerwald Forest: warm, wet summers and cold, wet winters, soil that is rich in nutrients, and only a few types of trees. It has soil that is poor in nutrients. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7762\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word indignant on a dictionary page with the following guide words?\\nignore - ivy\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince indignant is between the guide words ignore - ivy, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7768\",\n    \"image\": \"7768\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alabama?\\nContext: N/A\\nOptions: (A) Tallahassee (B) Frankfort (C) Montgomery (D) Birmingham\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montgomery is the capital of Alabama. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7785\",\n    \"image\": \"7785\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Wisconsin (B) Pennsylvania (C) Indiana (D) Oklahoma\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. Oklahoma is farthest south. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7795\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Riley acquired this trait?\\nContext: Read the description of a trait.\\nRiley is good at identifying birds from their calls.\\nOptions: (A) Riley likes to photograph birds at the zoo. (B) Riley was not born knowing how to identify different bird calls. She had to learn this skill.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7804\",\n    \"image\": \"7804\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the De Biesbosch National Park ecosystem?\\nContext: Figure: De Biesbosch National Park.\\nDe Biesbosch National Park is a wetland ecosystem in the Netherlands.\\nOptions: (A) It has soil that is rich in nutrients. It also has other water ecosystems nearby. (B) It has soil that is poor in nutrients. It also has other water ecosystems nearby.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A wetland is a type of ecosystem. Wetlands have the following features: land that is covered with water during most of the year, soil that is rich in nutrients, and other water ecosystems nearby. So, De Biesbosch National Park has soil that is rich in nutrients. It also has other water ecosystems nearby. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7805\",\n    \"image\": \"7805\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the time line, what does Romeo do after he fights with Tybalt?\\nContext: This time line shows events from Romeo and Juliet by William Shakespeare.\\nOptions: (A) He makes a plan with Juliet to run away. (B) He meets Juliet at the ball.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A graphic organizer is a chart or picture that shows how ideas, facts, or topics are related to one another.\\nWhen you read, look for graphic organizers included in the text. You can use these images to find key information. You can also create your own graphic organizers with information that you've read. Doing this can help you think about the ideas in the text and easily review them.\\nWhen you write, you can use graphic organizers to organize your thoughts and plan your writing. A time line shows the order of events by placing them along a line. This time line shows events from Romeo and Juliet by William Shakespeare.\\nLook at how the events are ordered on the time line. Events that happen earlier are shown to the left. Events that happen later are shown to the right. Romeo and Juliet plan to run away is shown to the right of Tybalt fights with Romeo. So, after Romeo fights with Tybalt, Romeo and Juliet plan to run away. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7809\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMr. McCormick argues that we need to do more to prevent workplace injuries and fatalities. I doubt that someone so socially awkward would know a thing about office safety.\\nContext: N/A\\nOptions: (A) ad hominem: a personal attack against one's opponent (B) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that being socially awkward determines knowledge of workplace safety. This is a personal attack that isn't relevant to Mr. McCormick's desire to prevent workplace injuries. This illustrates a type of logical fallacy known as ad hominem. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7822\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two buses. Which bus was moving at a higher speed?\\nContext: N/A\\nOptions: (A) a bus that moved 880kilometers in 10hours (B) a bus that moved 850kilometers in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving faster will go a farther distance in that time. It is moving at a higher speed. Look at the distance each bus moved and the time it took to move that distance.\\nOne bus moved 880 kilometers in 10 hours.\\nThe other bus moved 850 kilometers in 10 hours.\\nNotice that each bus spent the same amount of time moving. The bus that moved 880 kilometers moved a farther distance in that time. So, that bus must have moved at a higher speed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7825\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nPorter got off the mountain by the skin of his teeth.\\nContext: N/A\\nOptions: (A) the Bible (B) a movie\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion by the skin of his teeth is the Bible.\\nIn the Bible, Job complains to God about his hardships, saying that both strangers and those he loves have turned against him. He says, \\\"My bone cleaveth to my skin and to my flesh, and I am escaped with the skin of my teeth.\\\" Scholars have long debated the exact meaning of the phrase, but many claim that Job is saying that he narrowly escaped death.\\nThe allusion by the skin of his teeth means just barely. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7829\",\n    \"image\": \"7829\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Seattle (B) Cheyenne (C) Tucson (D) Trenton\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7832\",\n    \"image\": \"7832\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Earth's organisms rely on the atmosphere for which of the following?\\nContext: Read the text. Then answer the question.\\nEarth is surrounded by a layer of gases called the atmosphere. The gases that make up the atmosphere sustain life on Earth. Living organisms take in and release some of these gases. Gases in the atmosphere also help insulate Earth from extreme temperatures and block some harmful forms of sunlight.\\nOptions: (A) stable temperatures (B) sunlight\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Read the text carefully. The underlined text below shows information about each answer choice.\\nEarth is surrounded by a layer of gases called the atmosphere. The gases that make up the atmosphere sustain life on Earth. Living organisms take in and release some of these gases. Gases in the atmosphere also help insulate Earth from extreme temperatures and block some harmful forms of sunlight.\\nEarth's atmosphere contains many different gases, including oxygen and carbon dioxide. These gases are both taken in and released by living organisms. Animals breathe in oxygen and breathe out carbon dioxide. Plants use carbon dioxide and release oxygen during photosynthesis.\\nSome of the gases that make up the atmosphere also insulate Earth, helping to maintain its stable temperatures.\\nWhile many gases interact with sunlight, Earth's atmosphere does not provide sunlight. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7833\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nmite - mud\\nContext: N/A\\nOptions: (A) moisture (B) market\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince moisture is between the guide words mite - mud, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7841\",\n    \"image\": \"7841\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of blue particles?\\nContext: The diagram below is a model of two solutions. Each blue ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution A (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the blue particles represent the solute. To figure out which solution has a higher concentration of blue particles, look at both the number of blue particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of blue particles per milliliter.\\nSolution B has more blue particles per milliliter. So, Solution B has a higher concentration of blue particles. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7842\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can seeds look like?\\nContext: N/A\\nOptions: (A) Seeds come in many colors. But all seeds are small. (B) Seeds can come in many colors and sizes. (C) Seeds come in many sizes. But all seeds are black.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Many plants have flowers. These plants can use their flowers to reproduce, or make new plants like themselves. How do plants use their flowers to reproduce?\\nFirst, the male part of the flower makes pollen, and the female part makes eggs. Animals, wind, or water can move pollen. Pollination is what happens when pollen is moved to the female part of the flower.\\nAfter pollination, sperm from the pollen can combine with the eggs. This is called fertilization. The fertilized eggs grow into seeds. The fruit grows around the seeds. Later, a seed can fall out of the fruit. It can germinate, or start to grow into a new plant. Seeds can be big or small. This coconut seed is big.\\nSeeds can be many different shapes. These maple seeds are long and flat.\\nSeeds can be many different colors. These mustard seeds are yellow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7844\",\n    \"image\": \"7844\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\n75% of the planets are made mainly of rock.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that four out of the eight planets are made mainly of rock. So, one-half, or 50%, of the planets are made mainly of rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7857\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a pen?\\nContext: Select the best estimate.\\nOptions: (A) 15 meters (B) 15 kilometers (C) 15 millimeters (D) 15 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a pen is 15 centimeters.\\n15 millimeters is too short. 15 meters and 15 kilometers are too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7859\",\n    \"image\": \"7859\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this bucket made of?\\nContext: N/A\\nOptions: (A) metal (B) porcelain\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the bucket.\\nThe bucket is made of two different materials. The body is made of plastic, and the handle is made of metal.\\nPlastic is a great material for buckets because plastic is waterproof. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7860\",\n    \"image\": \"7860\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which term matches the picture?\\nContext: Read the text.\\nScientists divide the history of Earth into eras. Different types of animal life help distinguish these eras. We live in the Cenozoic era, which began roughly sixty-six million years ago. The Cenozoic era is known as the Age of Mammals because mammals, like humans, are the largest land animals. During the previous era, called the Mesozoic era, big reptiles, like dinosaurs, were the dominant animal species\\u2014it's nicknamed the Age of Reptiles. Some scientists believe that, at the end of the Mesozoic era, a large object from space collided with Earth, helping cause the mass extinction of the dinosaurs and ushering in the Age of Mammals.\\nOptions: (A) Cenozoic era (B) Mesozoic era\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The Mesozoic era is also known as the Age of Reptiles. During the Mesozoic era, reptiles like dinosaurs were the dominant animal species. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7866\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a surplus or a shortage of trumpets?\\nContext: Trumpets cost $350 each. A music store has 15 trumpets for sale. At that price, 8 people want to buy one.\\nOptions: (A) shortage (B) surplus\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There is a surplus if there is too much for sale at a given price.\\nThere is a shortage if there is not enough for sale at a given price.\\nSurpluses and shortages usually happen when people who are selling goods or services charge too much or too little.\\nWhen the price is too high, consumers will not want to buy much of the good or service. The quantity demanded will be less than the quantity supplied. So, there will be a surplus.\\nWhen the price is too low, too many consumers will want to buy the good or service. The quantity demanded will be more than the quantity supplied. So, there will be a shortage. At the current price, there are too many trumpets for sale. There are 15 trumpets, but only 8 people want to buy one.\\nSo, there is a surplus of trumpets. The music store will not get any money for the leftover trumpets. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7869\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one true statement.\\nContext: N/A\\nOptions: (A) Plant cells can have vacuoles but do not have mitochondria. (B) Mitochondria direct cell activities by sending instructions to different parts of a plant cell. (C) Mitochondria break down sugar to release energy that an animal cell can use.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7873\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe salesperson tried hard to convince Duncan that the jacket was a good buy; after all, it was made of genuine imitation leather.\\nContext: N/A\\nOptions: (A) hyperbole (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nGenuine imitation is a contradiction, because genuine means real, and imitation means fake or synthetic. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7888\",\n    \"image\": \"7888\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can a fern spore grow into?\\nContext: This diagram shows the life cycle of a fern.\\nOptions: (A) a mature fern (B) a heart-shaped plant\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Fern plants reproduce using both asexual reproduction and sexual reproduction.\\nMature ferns have flat leaves called fronds. Ferns have structures that look like small dots on the underside of their fronds. These structures are called spore cases. The mature ferns use asexual reproduction to make spores. When the spore cases open, the spores are released.\\nWhen a spore lands on the ground and germinates, it grows into a small heart-shaped plant. The heart-shaped plant begins the fern's sexual reproduction stage by making eggs and sperm. Ferns live in damp environments, and sperm can swim though small water drops. Self-fertilization happens when a sperm swims to an egg on the same heart-shaped plant. Cross-fertilization happens when the sperm swims to an egg on a nearby plant.\\nFertilization happens when a sperm and an egg fuse. The fertilized egg germinates and grows into a mature fern.\\nThe mature fern can make spores and begin the fern life cycle again. After they are released, spores can land on the ground and germinate. When a spore germinates, it grows into a heart-shaped plant.\\nMature fern plants grow from fertilized eggs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7892\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nrust forming on a metal gate\\nsaliva breaking down a piece of bread\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are only physical changes. (C) Both are chemical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nRust forming on a metal gate is a chemical change. As the gate rusts, the metal turns into a different type of matter called rust. Rust is reddish-brown and falls apart easily.\\nSaliva breaking down a piece of bread is a chemical change. Bread is made up mostly of a chemical called starch. Saliva breaks the bonds between atoms in the starch molecules.\\nThe atoms then link together to form smaller, simpler molecules of sugar. The sugar is a different type of matter than the starch.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7893\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Sean acquired this trait?\\nContext: Read the description of a trait.\\nSean has a scar on his right arm.\\nOptions: (A) Sean's scar was caused by an accident. He cut his arm when he fell off his bicycle. (B) Some scars fade more quickly than others.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7895\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nMr. Wolfsheim, forgetting the more sentimental atmosphere of the old Metropole, began to eat with ferocious delicacy.\\n\\u2014F. Scott Fitzgerald, The Great Gatsby\\nContext: N/A\\nOptions: (A) oxymoron (B) anaphora\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nFerocious delicacy is a contradiction, because ferocious describes something savage or fierce, while delicacy refers to a refined or sensitive quality. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7902\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nRed velvet cupcakes were Sasha's Achilles's heel when she was trying to eat more healthily.\\nContext: N/A\\nOptions: (A) a movie (B) Greek mythology\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Achilles's heel is Greek mythology.\\nIn Greek mythology, Achilles's mother dips him in a river that protects his body wherever it touches. His heel does not get wet, so it is the one part of his body left unprotected. During the Trojan War, an arrow hits Achilles in the heel and kills him.\\nThe allusion Achilles's heel means a sole weakness. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7906\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) On the evening news, the reporters showed rare footage\\u2014reportedly taken by a fisherman as he stood on the beach\\u2014of sharks fighting over their prey. (B) On the evening news, they showed rare footage\\u2014reportedly taken by a fisherman as he stood on the beach\\u2014of sharks fighting over their prey.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun they is used without its antecedent.\\nThe first answer choice shows a possible correction for the vague pronoun reference. They has been replaced with the reporters.\\nOn the evening news, the reporters showed rare footage\\u2014reportedly taken by a fisherman as he stood on the beach\\u2014of sharks fighting over their prey. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7908\",\n    \"image\": \"7908\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Tuvalu (B) the Marshall Islands (C) Kiribati (D) Nauru\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Kiribati. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7914\",\n    \"image\": \"7914\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the tide pool ecosystems in Little Corona Beach?\\nContext: Figure: Little Corona Beach.\\nLittle Corona Beach is in southern California. It has many tide pool ecosystems.\\nOptions: (A) It has daily flooding and draining of seawater. It also has water that is poor in nutrients. (B) It has daily flooding and draining of seawater. It also has water that is rich in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A tide pool is a type of ecosystem. Tide pool ecosystems have the following features: daily flooding and draining of seawater, water that is rich in nutrients, and many different types of organisms. So, the tide pool ecosystems in Little Corona Beach have daily flooding and draining of seawater. They also have water that is rich in nutrients. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7916\",\n    \"image\": \"7916\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nDistance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7917\",\n    \"image\": \"7917\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is Myrmarachne maxillosa made up of one cell?\\nContext: This organism is Myrmarachne maxillosa. It is a member of the animal kingdom.\\nMyrmarachne maxillosa is a spider. But its body shape mimics, or copies, the shape of an ant. Mimicking an ant helps M. maxillosa avoid predators that eat spiders. You can tell that M. maxillosa is a spider by counting its legs. Spiders have eight legs, and ants have just six.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Myrmarachne maxillosa is an animal. Animals are made up of many cells. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7918\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Gwen acquired this trait?\\nContext: Read the description of a trait.\\nGwen knows a lot about history.\\nOptions: (A) Gwen learned history by reading. (B) Gwen is most interested in American history.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7923\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this scarlet rosemallow plant's phenotype for the flower color trait?\\nContext: In a group of scarlet rosemallow plants, some individuals have red flowers and others have white flowers. In this group, the gene for the flower color trait has two alleles. The allele F is for red flowers, and the allele f is for white flowers.\\nA certain scarlet rosemallow plant from this group has white flowers. This plant has two alleles for white flowers.\\nOptions: (A) white flowers (B) ff\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. The scarlet rosemallow plant's observable version of the flower color trait is white flowers. So, the plant's phenotype for the flower color trait is white flowers. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7927\",\n    \"image\": \"7927\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which fish's mouth is also adapted for tearing through meat?\\nContext: Sand tiger sharks eat turtles, dolphins, and other fish. The mouth of the tiger shark is adapted to tear through meat.\\nFigure: sand tiger shark.\\nOptions: (A) parrotfish (B) starry moray\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the sand tiger shark.\\nThe sand tiger shark has a large mouth and sharp teeth. Its mouth is adapted for tearing through meat. The sand tiger shark uses its teeth to cut up meat into pieces it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe starry moray has a large mouth and sharp teeth. Its mouth is adapted for tearing through meat.\\nThe parrotfish has a small mouth and small teeth. Its mouth is not adapted for tearing through meat. The parrotfish uses its mouth to eat corals. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7933\",\n    \"image\": \"7933\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7936\",\n    \"image\": \"7936\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the arrows, which of the following living things is an omnivore?\\nContext: Below is a food web from an ocean ecosystem. The ecosystem is in Monterey Bay, off the coast of California.\\nA food web is a model that shows how the matter eaten by living things moves through an ecosystem. The arrows show how matter moves through the food web.\\nOptions: (A) kelp bass (B) zooplankton\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nModels can make things in nature easier to understand. Models can be simpler than the things they represent. A food web is a model that shows where living things in an ecosystem get their food. If a food web showed every living thing in an ecosystem, the food web would be hard to understand. So, each food web shows how some living things in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one living thing to another. Each arrow shows the direction that matter moves when one living thing eats another living thing. An arrow starts from the living thing that is eaten. The arrow points to the living thing that is doing the eating.\\nA living thing in a food web can have more than one arrow pointing from it. This shows that the living thing is eaten by more than one other living thing in the food web.\\nA living thing in a food web can also have more than one arrow pointing to it. This shows that the living thing eats more than one other living thing in the food web. Omnivores are consumers that eat both producers and other consumers. So, an omnivore has arrows pointing to it from at least one producer and at least one consumer.\\nThe zooplankton has only one arrow pointing to it. This arrow starts from the phytoplankton. So, the zooplankton is a consumer but not an omnivore.\\nThe kelp bass has an arrow pointing to it from the kelp, which is a producer. The kelp bass also has arrows pointing to it from the zooplankton and the plainfin midshipman, which are both consumers. The kelp bass eats a producer and consumers, so it is an omnivore. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7940\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Destiny decides to take a trip to Virginia. Which result would be a cost?\\nContext: Destiny is deciding whether to take a trip to Virginia or Connecticut. She wants to enjoy her trip. But she is also trying to save money.\\nOptions: (A) Destiny will enjoy her trip to Virginia more than she would have enjoyed a trip to Connecticut. (B) Destiny will spend more money. Plane tickets for Destiny to get to Virginia are more expensive than tickets to Connecticut.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Destiny wants or needs:\\nDestiny will spend more money. Plane tickets for Destiny to get to Virginia are more expensive than tickets to Connecticut. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7945\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sales pitch is more formal?\\nContext: N/A\\nOptions: (A) Like our furniture? Make it yours with colors and fabrics that will blow you away! (B) Our furniture is highly customizable, with more than one hundred colors and fabrics to choose from.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The second sales pitch is more formal. It uses more impersonal language. The other sales pitch uses idioms (blow you away!), and the direct address to the reader makes it sound more conversational. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7956\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Rosanne inherited this trait?\\nContext: Read the description of a trait.\\nRosanne has wavy hair.\\nOptions: (A) Rosanne's parents were born with wavy hair. They passed down this trait to Rosanne. (B) Rosanne and her mother both have short hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7964\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Nabi's phenotype for the agouti fur trait?\\nContext: This passage describes the agouti fur trait in cats:\\n\\nIn a group of cats, some individuals have agouti fur and others do not. In this group, the gene for the agouti fur trait has two alleles. The allele for having agouti fur (A) is dominant over the allele for not having agouti fur (a).\\nNabi is a cat from this group. Nabi has the homozygous genotype AA for the agouti fur gene.\\nOptions: (A) not having agouti fur (B) having agouti fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Nabi's genotype for the agouti fur gene is AA. Nabi's genotype of AA has only A allelles. The A allele is for having agouti fur. So, Nabi's phenotype for the agouti fur trait must be having agouti fur.\\nTo check this answer, consider whether Nabi's alleles are dominant or recessive. The allele for having agouti fur (A) is dominant over the allele for not having agouti fur (a). This means A is a dominant allele, and a is a recessive allele.\\nNabi's genotype of AA has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Nabi's phenotype for the agouti fur trait must be having agouti fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7975\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is the Great Wall of China?\\nContext: Select the best estimate.\\nOptions: (A) 21,000 meters (B) 21,000 kilometers (C) 21,000 millimeters (D) 21,000 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of the Great Wall of China is 21,000 kilometers.\\n21,000 millimeters, 21,000 centimeters, and 21,000 meters are all too short. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7983\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is sweeping the floor a good or a service?\\nContext: N/A\\nOptions: (A) a good (B) a service\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Everything you can buy is either a good or a service.\\nA good is something you can touch or hold in your hands. For example, a hammer is a good.\\nA service is a job you pay someone else to do. For example, cooking food in a restaurant is a service. To decide whether sweeping the floor is a good or a service, ask these questions:\\nIs sweeping the floor something you can touch? No.\\nIs sweeping the floor a job you might pay someone else to do? Yes.\\nSo, sweeping the floor is a service. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7993\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a rowboat?\\nContext: Select the better estimate.\\nOptions: (A) 3 yards (B) 3 inches\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 8 long. You might be thinking, 8 what? Is the pencil 8 inches long? 8 feet? 8 miles?\\nThe number 8 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are inches. So, the length of the pencil is 8 inches.\\nThere are 12 inches in 1 foot. So, 1 inch is much shorter than 1 foot.\\nThere are 3 feet in 1 yard. So, 1 foot is shorter than 1 yard. The better estimate for the length of a rowboat is 3 yards.\\n3 inches is too short. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"7994\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nJessica can fly a helicopter.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to fly a helicopter. Instead, some people learn how to fly helicopters. So, flying a helicopter is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8004\",\n    \"image\": \"8004\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Iowa (B) Connecticut (C) Virginia (D) Maine\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Connecticut. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8012\",\n    \"image\": \"8012\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement is true about seeds?\\nContext: An adult orange tree can grow seeds.\\nOptions: (A) A plant's flowers make seeds. (B) A plant's fruit makes seeds.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Many plants have flowers. These plants can use their flowers to reproduce, or make new plants like themselves. How do plants use their flowers to reproduce?\\nFirst, the male part of the flower makes pollen, and the female part makes eggs. Animals, wind, or water can move pollen. Pollination is what happens when pollen is moved to the female part of the flower.\\nAfter pollination, sperm from the pollen can combine with the eggs. This is called fertilization. The fertilized eggs grow into seeds. The fruit grows around the seeds. Later, a seed can fall out of the fruit. It can germinate, or start to grow into a new plant. Flowers make seeds. After a flower is pollinated, male cells from the pollen combine with eggs. This is called fertilization. The fertilized eggs grow into seeds.\\nThe fruit can grow around the seeds. But the fruit does not make seeds. Both the fruit and the seeds grow from parts of the flower. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8014\",\n    \"image\": \"8014\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food web, which organism contains matter that eventually moves to the mushroom?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) brown lemming (B) bilberry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows to the mushroom.There is one path matter can take from the bilberry to the mushroom: bilberry->grizzly bear->mushroom. There is one path matter can take from the grizzly bear to the mushroom: grizzly bear->mushroom. There are two paths matter can take from the barren-ground caribou to the mushroom: barren-ground caribou->mushroom. barren-ground caribou->grizzly bear->mushroom. There are two paths matter can take from the lichen to the mushroom: lichen->barren-ground caribou->mushroom. lichen->barren-ground caribou->grizzly bear->mushroom. brown lemming. There are three arrows pointing from the brown lemming to other organisms. One arrow points to the Arctic fox. The only arrow pointing from the Arctic fox leads to the earthworm. The second arrow pointing from the brown lemming leads to the short-tailed weasel. The only arrow pointing from the short-tailed weasel leads to the snowy owl. The only arrow pointing from the snowy owl leads to the earthworm. The third arrow pointing from the brown lemming leads to the parasitic jaeger. The only arrow pointing from the parasitic jaeger leads to the rough-legged hawk. The only arrow pointing from the rough-legged hawk leads to the earthworm. No arrows point from the earthworm to any other organisms. So, in this food web, matter does not move from the brown lemming to the mushroom.. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8018\",\n    \"image\": \"8018\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the spot-billed pelican.\\nContext: This organism is a spot-billed pelican. Its scientific name is Pelecanus philippensis.\\nOptions: (A) Ardea herodias (B) Pelecanus philippensis (C) Bubo scandiacus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A spot-billed pelican's scientific name is Pelecanus philippensis. The first word of its scientific name is Pelecanus.\\nBubo scandiacus is in the genus Bubo. The first word of its scientific name is Bubo. So, Bubo scandiacus and Pelecanus philippensis are not in the same genus.\\nThis organism and the spot-billed pelican are in the same genus and the same species! Both organisms have the same scientific name, Pelecanus philippensis.\\nArdea herodias is in the genus Ardea. The first word of its scientific name is Ardea. So, Ardea herodias and Pelecanus philippensis are not in the same genus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8022\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nburning a candle\\ndeep-frying chicken\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBurning a candle is a chemical change. Both the wick and the melted wax burn. They react with oxygen in the air and turn into soot, carbon dioxide, and water.\\nDeep-frying chicken is a chemical change. The heat causes the matter in the chicken to change. Cooked chicken and raw chicken are different types of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBoth changes are caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8025\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nI believe everyone has his or her own idea of what's beautiful in the world. After all, it's the individual who determines what's attractive according to his or her own opinion.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) hasty generalization: a broad claim based on too few observations (C) straw man: a misrepresentation of an opponent's position that makes it easier to argue against\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that everyone has his or her own idea of what is beautiful because the individual determines what's beautiful to him or her. However, the \\\"evidence\\\" is just a restatement of the claim itself. This illustrates a type of logical fallacy known as circular reasoning. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8029\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nDespite Abigail's insistence that she would raise Cain if we ever got lost, we decided to try taking a shortcut.\\nContext: N/A\\nOptions: (A) Greek mythology (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion raise Cain is the Bible.\\nIn the Bible, Adam and Eve's son Cain murders his brother in a jealous rage.\\nThe allusion raise Cain means to resort to violence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8031\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the air on a cold, rainy day?\\nContext: Select the better estimate.\\nOptions: (A) 42\\u00b0C (B) 42\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the air on a cold, rainy day is 42\\u00b0F.\\n42\\u00b0C is too hot. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8035\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has less thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 150-gram glass of orange juice at a temperature of 50\\u00b0F (B) a 150-gram glass of orange juice at a temperature of 40\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. The two glasses of orange juice have the same mass but different temperatures. Since the 40\\u00b0F glass of orange juice is colder than the 50\\u00b0F glass of orange juice, it has less thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8043\",\n    \"image\": \"8043\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Bryce and Victor trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nBryce and Victor open their lunch boxes in the school cafeteria. Neither Bryce nor Victor got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nBryce's lunch Victor's lunch\\nOptions: (A) Victor can trade his broccoli for Bryce's oranges. (B) Bryce can trade his tomatoes for Victor's broccoli. (C) Victor can trade his almonds for Bryce's tomatoes. (D) Bryce can trade his tomatoes for Victor's carrots.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nBryce wants broccoli. Victor wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8049\",\n    \"image\": \"8049\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What location was involved in the triangular trade?\\nContext: By the 1700s, merchants in the Thirteen Colonies traded goods across the Atlantic Ocean in a pattern called triangular trade. Look at the map showing this trade. Then answer the question below.\\nOptions: (A) western Africa (B) China\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the map.\\nThe arrows on the map show that goods moved to and from these locations:\\nChina was not involved in the triangular trade. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8053\",\n    \"image\": \"8053\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does Asimina triloba have cells that have a nucleus?\\nContext: This organism is Asimina triloba. It is a member of the plant kingdom.\\nAsimina triloba is commonly called the pawpaw. Pawpaw trees grow in the southeastern part of the United States. They have large, sweet fruit. The fruit is sometimes called a prairie banana.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Asimina triloba is a plant. Plant cells have a nucleus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8054\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nHow many articles did Herman write before his publisher offered him a book contract?\\nContext: N/A\\nOptions: (A) imperative (B) interrogative (C) declarative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence asks something, and it ends with a question mark. It is an interrogative sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8055\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word dump on a dictionary page with the following guide words?\\ndecay - disaster\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince dump is not between the guide words decay - disaster, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8062\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\nWhile waiting for her search results, Beth exclaimed, \\\"My Internet connection is as speedy as a snail!\\\"\\nContext: N/A\\nOptions: (A) The Internet connection was very slow. (B) The Internet connection was very fast.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAs speedy as a snail suggests that the Internet connection was very slow. A snail is not speedy, and neither was Beth's Internet connection. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8064\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Grayson acquired this trait?\\nContext: Read the description of a trait.\\nGrayson knows how to fly a kite.\\nOptions: (A) Grayson's neighbor taught him how to repair a kite. (B) Grayson likes to fly a kite with his younger brother. (C) Grayson's friend taught him how to fly a kite.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8065\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a surplus or a shortage of mangoes?\\nContext: A grocery store has 200 mangoes for sale. The mangoes cost $1 each. At that price, 170 people want to buy one.\\nOptions: (A) shortage (B) surplus\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There is a surplus if there is too much for sale at a given price.\\nThere is a shortage if there is not enough for sale at a given price.\\nSurpluses and shortages usually happen when people who are selling goods or services charge too much or too little.\\nWhen the price is too high, consumers will not want to buy much of the good or service. The quantity demanded will be less than the quantity supplied. So, there will be a surplus.\\nWhen the price is too low, too many consumers will want to buy the good or service. The quantity demanded will be more than the quantity supplied. So, there will be a shortage. At the current price, there are too many mangoes for sale. There are 200 mangoes for sale, but only 170 people want to buy one.\\nSo, there is a surplus of mangoes. The grocery store will not get any money for the leftover mangoes. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8070\",\n    \"image\": \"8070\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Hector's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nHector was . At the plant, an expensive filter was used to remove disease-causing bacteria from the water. But over time, the filter would become clogged with bacteria. If the filter became clogged, the water would not move through quickly enough. Hector had to decide when the filter was too clogged and needed to be replaced. So, during his inspection, Hector checked the filter by measuring how quickly water moved through it.\\nFigure: an engineer at a water treatment plant.\\nOptions: (A) whether the filter was clogged (B) the amount of bacteria in the water before it was filtered (C) whether an inexpensive filter would become clogged more often\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8071\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nConnor returned to the parking lot to find his car somewhat destroyed. Apparently someone had crashed into it while he was working and had broken the entire front windshield.\\nContext: N/A\\nOptions: (A) hyperbole (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nSomewhat destroyed is a contradiction, because somewhat means partially or moderately, and destroyed implies totally wrecked. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8080\",\n    \"image\": \"8080\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait did Pentasteria have? Select the trait you can observe on the fossil.\\nContext: This picture shows a fossil of an ancient animal called Pentasteria.\\nPentasteria lived in the ocean over 190,000,000 years ago.\\nOptions: (A) red skin (B) a long tube-shaped body (C) five arms\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The way an organism looks or acts is called a trait. Scientists use fossils to learn more about the traits of ancient organisms.\\nFossils can preserve the remains of body parts and activities. A fossil of a body part, such as a tail or a wing, can tell you what an organism looked like. A fossil of an organism's activities, such as a burrow or a footprint, can tell you about the organism's behavior.\\nHere are three examples of fossils and the traits that you can observe from them:\\nThis is a fossil of an animal. This fossil tells you that the animal had a spiral-shaped shell.\\nThis is a fossil of a plant. This fossil tells you that the plant had small leaves arranged in a branched pattern.\\nThis is a fossil of an animal's footprint. This fossil tells you that the animal could walk on land.\\nAn organism's fossil may not show all of the organism's traits. This is because most body parts are destroyed during fossil formation. When an organism's body turns into a fossil, only a few body parts are usually preserved. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8088\",\n    \"image\": \"8088\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Sadie and Kira trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nSadie and Kira open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Sadie wanted broccoli in her lunch and Kira was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Kira can trade her almonds for Sadie's tomatoes. (B) Sadie can trade her tomatoes for Kira's broccoli. (C) Kira can trade her broccoli for Sadie's oranges. (D) Sadie can trade her tomatoes for Kira's sandwich.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sadie wanted broccoli in her lunch and Kira was hoping for tomatoes. Look at the labeled part of the images.\\nSadie has tomatoes. Kira has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8090\",\n    \"image\": \"8090\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the amphibian below.\\nContext: Amphibians have moist skin and begin their lives in water. An African bullfrog is an example of an amphibian.\\nOptions: (A) red salamander (B) koala\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A koala is a mammal. It has fur and feeds its young milk.\\nA red salamander is an amphibian. It has moist skin and begins its life in water. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8093\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select a reason you might choose to keep your money in a bank account.\\nContext: Banks offer services that have to do with money. For example, banks offer accounts that you can keep your money in. When you put money in a bank account, you trust the bank to look after the money.\\nOptions: (A) You want to protect the money in a safe place. (B) You want to keep your money in a place where you can see it all the time.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8099\",\n    \"image\": \"8099\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) shiny (B) bumpy (C) bouncy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA bouncy object will bounce back from the floor if you drop it. All three objects are bouncy.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. The basketball is not shiny.\\nA bumpy object is covered in lumps and bumps. The rubber ball is not bumpy.\\nThe property that all three objects have in common is bouncy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8100\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbutter melting on a hot day\\ncooking an egg\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are caused by heating. (C) Both are only physical changes. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nButter melting on a hot day is a change of state. So, it is a physical change. The butter changes from solid to liquid, but it is still made of the same type of matter.\\nCooking an egg is a chemical change. The heat causes the matter in the egg to change. Cooked egg and raw egg are different types of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nButter melting on a hot day is a physical change. But cooking an egg is not.\\nBoth are chemical changes.\\nCooking an egg is a chemical change. But butter melting on a hot day is not.\\nBoth are caused by heating.\\nBoth changes are caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8114\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Your Nephew,\\nWyatt (B) Your nephew,\\nWyatt\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8118\",\n    \"image\": \"8118\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Cheyenne (B) Nashville (C) Dover (D) Laramie\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8134\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the plant.\\nContext: N/A\\nOptions: (A) Dandelions can grow small yellow flowers. (B) Giant pandas walk and climb.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A giant panda is an animal. It walks and climbs.\\nGiant pandas eat mostly bamboo. But they can also eat other plants and small animals.\\nA dandelion is a plant. It can grow small yellow flowers.\\nDandelion seeds can be blown long distances by the wind. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8146\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) The average American eats three pounds of sugar each week. (B) Your hand contains twenty-seven bones, and your foot contains twenty-six.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction and.\\nYour hand contains twenty-seven bones, and your foot contains twenty-six. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8150\",\n    \"image\": \"8150\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for walking on large, floating leaves?\\nContext: s live near rivers and lakes. They eat insects and snails that live on plants floating on the surface of the water.\\nThe feet of the jacana are adapted for walking on large, floating leaves. The jacana uses its feet to spread its weight out over a wide area. This helps the bird walk on the leaves without sinking into the water.\\nFigure: African jacana.\\nOptions: (A) New Zealand falcon (B) wattled jacana\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the African jacana.\\nThe African jacana uses its toes to spread its weight out over a large area. This can help it walk on leaves without sinking into the water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe wattled jacana has long, thin toes on its feet. Its feet are adapted for walking on floating leaves.\\nThe New Zealand falcon has medium-sized toes with sharp claws. Its feet are not adapted for walking on floating leaves. The New Zealand falcon uses its feet to grab prey. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8163\",\n    \"image\": \"8163\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wisconsin?\\nContext: N/A\\nOptions: (A) Milwaukee (B) Madison (C) Cheyenne (D) Green Bay\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Madison is the capital of Wisconsin. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8167\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Pudge's genotype for the body color gene?\\nContext: In a group of guppies, some individuals have a gray body and others have a golden body. In this group, the gene for the body color trait has two alleles. The allele B is for a gray body, and the allele b is for a golden body.\\nPudge, a guppy from this group, has a gray body. Pudge has one allele for a gray body and one allele for a golden body.\\nOptions: (A) Bb (B) a gray body\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Pudge has one allele for a gray body (B) and one allele for a golden body (b). So, Pudge's genotype for the body color gene is Bb. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8168\",\n    \"image\": \"8168\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's mouth is also adapted for bottom feeding?\\nContext: Armored catfish eat plants and small invertebrates. They are bottom feeders. Bottom feeders find their food at the bottom of rivers, lakes, and the ocean.\\nThe catfish's mouth is located on the underside of its head and points downward. Its mouth is adapted for bottom feeding.\\nFigure: armored catfish.\\nOptions: (A) bat ray (B) clown triggerfish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the armored catfish.\\nThe armored catfish's mouth is located on the underside of its head and points downward. Its mouth is adapted for bottom feeding. The armored catfish uses its mouth to find food hidden in the sediment at the bottom of rivers and streams.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe bat ray's mouth is located on the underside of its head. Its mouth points downward. Its mouth is adapted for bottom feeding.\\nThe clown triggerfish's mouth is not located on the underside of its head. Its mouth is not adapted for bottom feeding. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8174\",\n    \"image\": \"8174\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Edwin and Brenda trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nEdwin and Brenda open their lunch boxes in the school cafeteria. Neither Edwin nor Brenda got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nEdwin's lunch Brenda's lunch\\nOptions: (A) Brenda can trade her almonds for Edwin's tomatoes. (B) Edwin can trade his tomatoes for Brenda's carrots. (C) Edwin can trade his tomatoes for Brenda's broccoli. (D) Brenda can trade her broccoli for Edwin's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nEdwin wants broccoli. Brenda wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8176\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAt twenty-one, Aaron felt overwhelmed with adult responsibilities and wished he could fly off to Neverland.\\nContext: N/A\\nOptions: (A) allusion (B) onomatopoeia\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses an allusion, a brief reference to someone or something well known.\\nNeverland alludes to the story of Peter Pan, a boy who lived in Neverland and never grew up. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8183\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word doze on a dictionary page with the following guide words?\\ndepth - drink\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince doze is between the guide words depth - drink, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8193\",\n    \"image\": \"8193\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Washington (B) Iowa (C) North Dakota (D) Nevada\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. Nevada is farthest south. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8200\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Read the following excerpt from a student essay. How can the writer best improve his or her grammar and mechanics?\\nWhen my grandparents first bought a computer, they didn't know how to use the Internet, so I sit down with them and show them the ropes. We go over a few basic terms, and I introduce them to different browsers. I taught them where to find the URL for a website and how to use search boxes. We cover different ways to navigate around a website; for example, I show them how to use a mouse, how to scroll up or down a page using the scroll bar, and how to click on links. Now they are excited to be online.\\nContext: N/A\\nOptions: (A) by using consistent verb tenses (B) by correcting misplaced modifiers (C) by using commas correctly\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"During peer review, you read and respond to a fellow student's writing. While there are many methods and strategies that you can use for reviewing a text, it is generally helpful to frame your suggestions in concrete and constructive ways and to consider the following areas for revision:\\nIdeas and development: Does the writer express a clear idea and develop it with evidence, examples, or analysis?\\nOrganization: Does the writer order ideas in a clear, logical way so that they build on one another and are easy to follow?\\nVoice: Does the writer maintain an appropriate voice, such as a formal and objective voice in an academic essay or an engaging and expressive voice in a narrative essay?\\nSentence fluency: Does the writer use sentences that vary in structure and length to create a sense of rhythm and flow within and between sentences, or does the writing sound choppy, rambling, or repetitive?\\nWord choice: Does the writer use words accurately and precisely to create clear, effective, and engaging writing?\\nGrammar and mechanics: Does the writer follow appropriate conventions, using accurate spelling, punctuation, and grammar to create writing that is correct and easy to read? The writer could best improve his or her grammar and mechanics by using consistent verb tenses.\\nFor example, the writer could use past tense for all verbs but the last one; now indicates that the last sentence should be written in present tense.\\nWhen my grandparents first bought a computer, they didn't know how to use the Internet, so I sit down with them and show them the ropes. We go over a few basic terms, and I introduce them to different browsers. I taught them where to find the URL for a website and how to use search boxes. We cover different ways to navigate around a website; for example, I show them how to use a mouse, how to scroll up or down a page using the scroll bar, and how to click on links. Now they are excited to be online. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8208\",\n    \"image\": \"8208\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Camille and Lucy's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nCamille and Lucy were making batches of concrete for a construction project. To make the concrete, they mixed together dry cement powder, gravel, and water. Then, they checked if each batch was firm enough using a test called a slump test.\\nThey poured some of the fresh concrete into an upside-down metal cone. They left the concrete in the metal cone for 30 seconds. Then, they lifted the cone to see if the concrete stayed in a cone shape or if it collapsed. If the concrete in a batch collapsed, they would know the batch should not be used.\\nFigure: preparing a concrete slump test.\\nOptions: (A) if a new batch of concrete was firm enough to use (B) if the concrete from each batch took the same amount of time to dry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8211\",\n    \"image\": \"8211\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the European nightjar.\\nContext: This organism is a European nightjar. Its scientific name is Caprimulgus europaeus.\\nOptions: (A) Caprimulgus europaeus (B) Haliaeetus leucocephalus (C) Ulex europaeus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A European nightjar's scientific name is Caprimulgus europaeus. The first word of its scientific name is Caprimulgus.\\nHaliaeetus leucocephalus is in the genus Haliaeetus. The first word of its scientific name is Haliaeetus. So, Haliaeetus leucocephalus and Caprimulgus europaeus are not in the same genus.\\nUlex europaeus and Caprimulgus europaeus are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Ulex europaeus and Caprimulgus europaeus have the same species name within their genus, europaeus. But the first words of their scientific names are different. Ulex europaeus is in the genus Ulex, and Caprimulgus europaeus is in the genus Caprimulgus.\\nThis organism and the European nightjar are in the same genus and the same species! Both organisms have the same scientific name, Caprimulgus europaeus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8212\",\n    \"image\": \"8212\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) sticky (B) blue (C) bouncy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA bouncy object will bounce back from the floor if you drop it. None of the objects are bouncy.\\nA sticky object can attach or stick to other things. The toothpaste is sticky, but the slippers and the track suit are not.\\nBlue is a color.\\nThis color is blue. All three objects are blue.\\nThe property that all three objects have in common is blue. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8213\",\n    \"image\": \"8213\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Justine and Caleb trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nJustine and Caleb open their lunch boxes in the school cafeteria. Neither Justine nor Caleb got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nJustine's lunch Caleb's lunch\\nOptions: (A) Caleb can trade his almonds for Justine's tomatoes. (B) Justine can trade her tomatoes for Caleb's broccoli. (C) Caleb can trade his broccoli for Justine's oranges. (D) Justine can trade her tomatoes for Caleb's carrots.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nJustine wants broccoli. Caleb wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8221\",\n    \"image\": \"8221\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of West Virginia?\\nContext: N/A\\nOptions: (A) Huntington (B) Charleston (C) Concord (D) Memphis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Charleston is the capital of West Virginia. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8224\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nFor many runners who prefer running barefoot but still want some support and protection, minimalist shoes are the best thing since sliced bread.\\nContext: N/A\\nOptions: (A) The shoes are as soft as freshly baked bread. (B) The shoes are a fabulous invention.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom the best thing since sliced bread suggests that the shoes are a fabulous invention. A pre-sliced loaf of bread was once considered a wonderful innovation. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8225\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Walter inherited this trait?\\nContext: Read the description of a trait.\\nWalter has blond hair.\\nOptions: (A) Walter's parents have blond hair. They passed down this trait to Walter. (B) Walter's mother cuts his hair every month.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8230\",\n    \"image\": \"8230\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Providence (B) Baton Rouge (C) Denver (D) Colorado Springs\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8236\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a ladybug?\\nContext: Select the best estimate.\\nOptions: (A) 8 meters (B) 8 kilometers (C) 8 centimeters (D) 8 millimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a ladybug is 8 millimeters.\\n8 centimeters, 8 meters, and 8 kilometers are all too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8243\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Assume all other forces on Gabe are balanced. Which statement describes the forces on Gabe?\\nContext: Gabe is standing on a diving board at the pool. Earth's gravity is pulling down on Gabe with a force of 400N. The diving board is pushing up on Gabe with a force of 400N.\\nOptions: (A) The forces are balanced, so there is no net force on Gabe. (B) The forces are unbalanced, so there is a net force on Gabe.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Every force has a direction and a magnitude, or strength. If two forces act on an object in opposite directions, the forces are called opposing forces.\\nWhen opposing forces have the same magnitude, they are balanced. If all the forces on an object are balanced, there is no net force on the object.\\nWhen opposing forces have different magnitudes, the forces are unbalanced. If any forces on an object are unbalanced, there is a net force on the object. To determine if there is a net force on Gabe, look at the forces:\\nEarth's gravity is pulling Gabe down with a force of 400 N.\\nThe diving board is pushing Gabe up with a force of 400 N.\\nThe forces are in opposite directions, and the forces have the same magnitude: 400 N. This means that the forces are balanced, so there is no net force on Gabe. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8248\",\n    \"image\": \"8248\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nevada?\\nContext: N/A\\nOptions: (A) Frankfort (B) Juneau (C) Carson City (D) Huntington\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Carson City is the capital of Nevada. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8252\",\n    \"image\": \"8252\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the snowy owl.\\nContext: This organism is a snowy owl. Its scientific name is Bubo scandiacus.\\nOptions: (A) Bubo scandiacus (B) Falco tinnunculus (C) Ardea alba\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A snowy owl's scientific name is Bubo scandiacus.\\nFalco tinnunculus does not have the same scientific name as a snowy owl. So, Bubo scandiacus and Falco tinnunculus are not in the same species.\\nBubo scandiacus has the same scientific name as a snowy owl. So, these organisms are in the same species.\\nArdea alba does not have the same scientific name as a snowy owl. So, Bubo scandiacus and Ardea alba are not in the same species. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8259\",\n    \"image\": \"8259\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Atlantic Ocean (B) the Indian Ocean (C) the Arctic Ocean (D) the Pacific Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Atlantic Ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8264\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which soap bubble has a lower temperature?\\nContext: Two soap bubbles are identical except for their thermal energies.\\nOptions: (A) the soap bubble with more thermal energy (B) the soap bubble with less thermal energy\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two soap bubbles are made of the same material and have the same mass. So, the soap bubble with less thermal energy has a lower temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8267\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nTim has five toes on each foot.\\nContext: N/A\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Most humans are born with five toes on each foot. So, having five toes is an inherited trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8269\",\n    \"image\": \"8269\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Joe's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nJoe mixed bacteria into a nutrient-rich liquid where the bacteria could grow. He poured four ounces of the mixture into each of ten glass flasks. In five of the ten flasks, he also added one teaspoon of cinnamon. He allowed the bacteria in the flasks to grow overnight in a 37\\u00b0C room. Then, Joe used a microscope to count the number of bacteria in a small sample from each flask. He compared the amount of bacteria in the liquid with cinnamon to the amount of bacteria in the liquid without cinnamon.\\nFigure: flasks of liquid for growing bacteria.\\nOptions: (A) Do more bacteria grow in liquid with cinnamon than in liquid without cinnamon? (B) Does temperature affect how much bacteria can grow in liquid?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8276\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a grain of rice?\\nContext: Select the best estimate.\\nOptions: (A) 3 millimeters (B) 3 meters (C) 3 centimeters (D) 3 kilometers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a grain of rice is 3 millimeters.\\n3 centimeters, 3 meters, and 3 kilometers are all too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8285\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this plant's phenotype for the leaf texture trait?\\nContext: In a group of summer squash plants, some individuals have fuzzy leaves and others have smooth leaves. In this group, the gene for the leaf texture trait has two alleles. The allele for smooth leaves (l) is recessive to the allele for fuzzy leaves (L).\\nA certain summer squash plant from this group has the homozygous genotype ll for the leaf texture gene.\\nOptions: (A) fuzzy leaves (B) smooth leaves\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. The summer squash plant's genotype for the leaf texture gene is ll. The summer squash plant's genotype of ll has only l alleles. The l allele is for smooth leaves. So, the summer squash plant's phenotype for the leaf texture trait must be smooth leaves.\\nTo check this answer, consider whether the summer squash plant's alleles are dominant or recessive. The allele for smooth leaves (l) is recessive to the allele for fuzzy leaves (L). This means L is a dominant allele, and l is a recessive allele.\\nThe summer squash plant's genotype of ll has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, the summer squash plant's phenotype for the leaf texture trait must be smooth leaves. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8294\",\n    \"image\": \"8294\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Atlantic Ocean (B) the Indian Ocean (C) the Southern Ocean (D) the Pacific Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Pacific Ocean. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8296\",\n    \"image\": \"8296\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which term matches the picture?\\nContext: Read the text.\\nA conditioned response occurs when an animal learns to associate two events that were not originally related. For example, a dog will naturally salivate at the smell of food (an unconditioned response). However, if a dog learns that the sound of a ringing bell is a sure sign that dinner is coming, it will begin to react to the sound of that bell the same way it reacts to the smell of food (a conditioned response). This is called classical conditioning.\\nOperant conditioning is a process like classical conditioning. However, in classical conditioning, the events that an animal learns to associate are not under the animal's voluntary control. In operant conditioning, an external event that is either a reward or punishment becomes linked with a voluntary behavior. For example, a student who receives a gold star for sitting quietly is more likely to choose to sit quietly in the future. The behavior (sitting quietly) has become linked in the student's mind with the reward that it produced in the past. Animal trainers rely on operant conditioning to encourage desired behaviors and discourage unwanted ones.\\nOptions: (A) operant conditioning (B) classical conditioning\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A dog receiving a treat for sitting and staying is an example of operant conditioning. The treat is a reward that encourages wanted behavior, like sitting, in the future. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8300\",\n    \"image\": \"8300\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) neither; the samples have the same temperature (C) sample B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in the two samples has the same mass, and the particles in both samples have the same average speed. So, the particles in both samples have the same average kinetic energy.\\nBecause the particles in both samples have the same average kinetic energy, the samples must have the same temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8308\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Jason decides to go as a superhero. Which result would be a cost?\\nContext: Jason is deciding whether to go as a vampire or a superhero to a costume party. He would rather go as a vampire. But he already has a superhero costume.\\nOptions: (A) Jason will give up the chance to wear the costume he is more excited about. (B) Jason will save some time and money. He won't have to go out and get a new costume.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Jason wants or needs:\\nJason will give up the chance to wear the costume he is more excited about. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8321\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbeating an egg\\nmixing lettuce and salad dressing\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by heating. (C) Both are caused by cooling. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBeating an egg is a physical change. Beating an egg mixes together the egg white, egg yolk, and some air. But mixing them together does not form a different type of matter.\\nMixing lettuce and salad dressing is a physical change. Together, the salad and dressing make a mixture. But making this mixture does not form a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8332\",\n    \"image\": \"8332\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is the main persuasive appeal used in this ad?\\nContext: N/A\\nOptions: (A) logos (reason) (B) ethos (character) (C) pathos (emotion)\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The purpose of an advertisement is to persuade people to do something. To accomplish this purpose, advertisements use three types of persuasive strategies, or appeals:\\nAppeals to ethos, or character, show that the writer or speaker is trustworthy or is an authority on a subject. An ad that appeals to ethos might do one of the following:\\nsay that a brand has been trusted for many years\\nnote that a brand is recommended by a respected organization or celebrity\\ninclude a quote from a \\\"real person\\\" who shares the audience's values\\nAppeals to logos, or reason, use logic and specific evidence. An ad that appeals to logos might do one of the following:\\nuse graphs or charts to display information\\nmention the results of scientific studies\\nexplain the science behind a product or service\\nAppeals to pathos, or emotion, use feelings rather than facts to persuade the audience. An ad that appeals to pathos might do one of the following:\\ntrigger a fear, such as the fear of embarrassment\\nappeal to a desire, such as the desire to appear attractive\\nlink the product to a positive feeling, such as adventure, love, or luxury The ad appeals to pathos, or emotion. It triggers feelings of pity for shelter animals. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8335\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nThe First Amendment says that the government cannot take away a person's () or ().\\nContext: N/A\\nOptions: (A) freedom of speech . . . freedom of religion (B) voting rights . . . right to own weapons (C) home . . . private property\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The First Amendment says that the government cannot take away a person's freedom of speech or freedom of religion. Freedom of speech means that Americans can say and write what they want. But there are some limits on freedom of speech. For example, a person cannot write lies about someone in a newspaper. But the government cannot stop speech just because someone disagrees with it. Freedom of religion means a person can choose his or her own religion. In the United States, the government cannot tell a person what to believe. The complete text of the First Amendment is below. Does it mention any other rights? Congress shall make no law respecting an establishment of religion, or prohibiting the free exercise thereof; or abridging the freedom of speech, or of the press; or the right of the people peaceably to assemble, and to petition the Government for a redress of grievances. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8338\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nChloe's Bistro used to be a great place to go for a delicious and carefully prepared dinner, but nobody goes there anymore: it's too crowded.\\nContext: N/A\\nOptions: (A) paradox (B) euphemism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a paradox, a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nNobody goes there anymore: it's too crowded at first appears to be contradictory, because if no one goes to the restaurant, then the restaurant should be empty, not crowded. However, it contains some truth: if a restaurant is frequently perceived to be too crowded, many people will no longer want to go there. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8346\",\n    \"image\": \"8346\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Asia (B) South America (C) North America (D) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Asia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8357\",\n    \"image\": \"8357\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 1. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Both magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8358\",\n    \"image\": \"8358\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is better adapted as a warning sign to ward off predators?\\nContext: Opalescent nudibranchs have stinging cells in their brightly colored skin. The bright colors serve as a warning sign that the animal is toxic and dangerous. The 's skin is adapted to ward off predators.\\nFigure: opalescent nudibranch.\\nOptions: (A) lechwe (B) blue poison dart frog\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the opalescent nudibranch.\\nThe opalescent nudibranch has stinging cells in its brightly colored skin. Its skin is adapted to ward off predators. The bright colors serve as a warning sign that the opalescent nudibranch is toxic and dangerous.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe blue poison dart frog has poisonous glands in its brightly colored skin. Its skin is adapted to ward off predators.\\nThe lechwe has light-brown fur covering its skin. Its skin is not adapted to be a warning sign that wards off predators. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8362\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) They are researching a hybrid South African tobacco plant that may decrease reliance on fossil fuels. It contains oily seeds that can be transformed into sustainable biofuel. (B) Scientists are researching a hybrid South African tobacco plant that may decrease reliance on fossil fuels. It contains oily seeds that can be transformed into sustainable biofuel.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun they is used without its antecedent.\\nThe second answer choice shows a possible correction for the vague pronoun reference. They has been replaced with scientists.\\nScientists are researching a hybrid South African tobacco plant that may decrease reliance on fossil fuels. It contains oily seeds that can be transformed into sustainable biofuel. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8363\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word side on a dictionary page with the following guide words?\\nskirt - stories\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince side is not between the guide words skirt - stories, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8368\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the phase of the Moon shown in the model.\\nContext: The model below shows the Moon at one position in its orbit around Earth. The white half of the Moon shows the part that is lit up by the Sun.\\nOptions: (A) first quarter (B) new\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Although the Moon appears to shine, it does not give off light. Instead, we can see the Moon because it is lit up by the Sun. The part of the Moon that is both lit up by the Sun and facing Earth is called the Moon's phase.\\nThe Moon orbits, or goes around, Earth. As it does, the Moon's phase changes. The model below shows the Moon's phase at eight positions in its orbit. The smaller moons closer to Earth show where sunlight hits the Moon. The larger moons farther from Earth show how the Moon will look during that phase.\\nTo use the model, first pick one of the eight positions. Then, imagine standing on Earth and looking up at the Moon. Use the dotted white lines in the model to guide you. The picture of the Moon shows its phase for that position. If you are in the Southern Hemisphere, the Moon will appear flipped, left to right. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8371\",\n    \"image\": \"8371\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two friends bought phones that cost different amounts but had identical batteries. After using the phones for a while, both friends had to turn them off to let the batteries cool. This table shows how the temperature of each battery changed over 5minutes.\\nOptions: (A) the surroundings . . . each battery (B) each battery . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each battery decreased, which means that the thermal energy of each battery decreased. So, thermal energy was transferred from each battery to the surroundings. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8374\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nJuan plays soccer.\\nContext: N/A\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to play soccer. Instead, some people learn how to play soccer. Playing the sport takes practice. So, playing soccer is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8386\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a car key?\\nContext: Select the better estimate.\\nOptions: (A) 7 kilometers (B) 7 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a car key is 7 centimeters.\\n7 kilometers is too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8394\",\n    \"image\": \"8394\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which rhetorical appeal is primarily used in this ad?\\nContext: N/A\\nOptions: (A) pathos (emotion) (B) logos (reason) (C) ethos (character)\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The purpose of an advertisement is to persuade people to do something. To accomplish this purpose, advertisements use three types of persuasive strategies, or appeals.\\nAppeals to ethos, or character, show the writer or speaker as trustworthy, authoritative, or sharing important values with the audience. An ad that appeals to ethos might do one of the following:\\nsay that a brand has been trusted for many years\\ninclude an endorsement from a respected organization, such as the American Dental Association\\nfeature a testimonial from a \\\"real person\\\" who shares the audience's values\\nuse an admired celebrity or athlete as a spokesperson\\nAppeals to logos, or reason, use logic and verifiable evidence. An ad that appeals to logos might do one of the following:\\nuse graphs or charts to display information\\ncite results of clinical trials or independently conducted studies\\nexplain the science behind a product or service\\nemphasize that the product is a financially wise choice\\nanticipate and refute potential counterclaims\\nAppeals to pathos, or emotion, use feelings rather than facts to persuade the audience. An ad that appeals to pathos might do one of the following:\\ntrigger a fear, such as the fear of embarrassment\\nappeal to a desire, such as the desire to appear attractive\\nlink the product to a positive feeling, such as adventure, love, or luxury The ad appeals to pathos, or emotion, by associating the advertised product with feelings of belonging and familial love. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8397\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nA rock from outer space crashes into Earth's surface.\\nContext: N/A\\nOptions: (A) meteorite crash (B) deposition (C) drought\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8398\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Albert acquired this trait?\\nContext: Read the description of a trait.\\nAlbert speaks two languages.\\nOptions: (A) Albert's mother speaks one language. (B) Albert learned to speak two languages in school.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8403\",\n    \"image\": \"8403\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) scratchy (B) breakable\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA breakable object will break into pieces if you drop it. The sandpaper is not breakable.\\nA scratchy object is rough and itchy against your skin. The sandpaper is scratchy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8406\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nWhich do you think is the most important environmental issue of our time-water conservation or the protection of natural habitats?\\nContext: N/A\\nOptions: (A) imperative (B) exclamatory (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence asks something, and it ends with a question mark. It is an interrogative sentence. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8408\",\n    \"image\": \"8408\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Vanuatu (B) the Marshall Islands (C) Tuvalu (D) Solomon Islands\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Solomon Islands. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8422\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which body part takes air into the body?\\nContext: N/A\\nOptions: (A) lungs (B) stomach (C) muscles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8447\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three bicycles. Which bicycle was moving at the highest speed?\\nContext: N/A\\nOptions: (A) a bicycle that moved 30miles east in 5hours (B) a bicycle that moved 70miles west in 5hours (C) a bicycle that moved 35miles east in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the fastest will go the farthest distance in that time. It is moving at the highest speed. Look at the distance each bicycle moved and the time it took to move that distance. The direction each bicycle moved does not affect its speed.\\nNotice that each bicycle moved for 5 hours. The bicycle that moved 70 miles moved the farthest distance in that time. So, that bicycle must have moved at the highest speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8449\",\n    \"image\": \"8449\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Dominica (B) Saint Vincent and the Grenadines (C) Jamaica (D) Barbados\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Jamaica. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8451\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a bus route across a small town?\\nContext: Select the better estimate.\\nOptions: (A) 5 centimeters (B) 5 kilometers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a bus route across a small town is 5 kilometers.\\n5 centimeters is too short. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8453\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word fare on a dictionary page with the following guide words?\\nflow - four\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince fare is not between the guide words flow - four, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8454\",\n    \"image\": \"8454\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a crown a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a solid (B) a gas (C) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. A crown is a solid. A solid has a size and shape of its own.\\nIf you put a crown on your head, the crown will keep its shape. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8456\",\n    \"image\": \"8456\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Papua New Guinea (B) Australia (C) the Federated States of Micronesia (D) Palau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Federated States of Micronesia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8460\",\n    \"image\": \"8460\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a turtle shell a mineral?\\nContext: A turtle shell has the following properties:\\nbody part of a turtle\\nfound in nature\\nno fixed crystal structure\\nnot a pure substance\\nsolid\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n A turtle shell does not have all the properties of a mineral. So, a turtle shell is not a mineral. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8478\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear Uncle Dave, (B) Dear Uncle dave,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Uncle Dave is capitalized because it is a proper noun. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8487\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three ships. Which ship was moving at the highest speed?\\nContext: N/A\\nOptions: (A) a ship that moved 100miles south in 10hours (B) a ship that moved 385miles south in 10hours (C) a ship that moved 160miles west in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the fastest will go the farthest distance in that time. It is moving at the highest speed. Look at the distance each ship moved and the time it took to move that distance. The direction each ship moved does not affect its speed.\\nNotice that each ship moved for 10 hours. The ship that moved 385 miles moved the farthest distance in that time. So, that ship must have moved at the highest speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8490\",\n    \"image\": \"8490\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New York (B) Pennsylvania (C) Delaware (D) New Jersey\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8492\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nJoseph has a scar on his left leg.\\nContext: Hint: Most scars are caused by accidents during a person's life.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8496\",\n    \"image\": \"8496\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the water in a fishbowl a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a liquid (B) a gas (C) a solid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. The water in a fishbowl is a liquid. A liquid takes the shape of any container it is in.\\nIf you pour water from a fishbowl into a different container, the water will take the shape of that container. But the water will still take up the same amount of space. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8497\",\n    \"image\": \"8497\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alabama?\\nContext: N/A\\nOptions: (A) Bismarck (B) Tallahassee (C) Montgomery (D) Birmingham\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montgomery is the capital of Alabama. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8498\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nAre you yawning because you're tired or because you're bored?\\nContext: N/A\\nOptions: (A) imperative (B) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence asks something, and it ends with a question mark. It is an interrogative sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8500\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two mountain bikers. Which mountain biker was moving at a lower speed?\\nContext: N/A\\nOptions: (A) a mountain biker who moved 190miles in 10hours (B) a mountain biker who moved 100miles in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving slower will go a shorter distance in that time. It is moving at a lower speed. Look at the distance each mountain biker moved and the time it took to move that distance.\\nOne mountain biker moved 100 miles in 10 hours.\\nThe other mountain biker moved 190 miles in 10 hours.\\nNotice that each mountain biker spent the same amount of time moving. The mountain biker who moved 100 miles moved a shorter distance in that time. So, that mountain biker must have moved at a lower speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8502\",\n    \"image\": \"8502\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of California?\\nContext: N/A\\nOptions: (A) Cheyenne (B) Sacramento (C) Honolulu (D) Birmingham\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sacramento is the capital of California. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8505\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a bottle of hot sauce?\\nContext: Select the best estimate.\\nOptions: (A) 4 gallons (B) 4 fluid ounces (C) 4 cups\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a bottle of hot sauce is 4 fluid ounces.\\n4 cups and 4 gallons are both too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8509\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word factoid in its traditional sense?\\nContext: N/A\\nOptions: (A) The lecturer became flustered when a factoid that she had presented was promptly refuted by an expert in the field. (B) The lecturer's presentation on economics included some interesting factoids from recent research studies in the field.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses factoid in its traditional sense: something made up presented as a true fact.\\nThe lecturer became flustered when a factoid that she had presented was promptly refuted by an expert in the field.\\nThe first text uses factoid in its nontraditional sense: a trivial but true fact.\\nThe lecturer's presentation on economics included some interesting factoids from recent research studies in the field.\\nMost style guides recommend to use the traditional sense of the word factoid because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8510\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the fish traits listed above.\\nContext: Fish are a group of animals with similar traits. The following traits can be used to identify fish:\\nThey have fins, not limbs.\\nThey make eggs with no shells. Observe the animals and read the descriptions.\\nOptions: (A) Green frogs have moist skin. Green frog tadpoles hatch from eggs without shells and live underwater. The adult frogs live on land near ponds and rivers. They may jump into the water to hide from predators. (B) Minnows live underwater and have fins to help them swim. They have scaly skin and lay eggs with no shells. Many fishermen use minnows as bait to catch other fish.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nFish have the following traits:\\nThey have fins, not limbs.\\nThey make eggs with no shells.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA green frog has the following traits:\\nIt spends part of its life in water and part on land.\\nIt has moist skin.\\nIt makes eggs with no shells.\\nA green frog does not have all of the traits of a fish. A green frog is an amphibian.\\nA minnow has the following traits:\\nIt has fins, not limbs.\\nIt makes eggs with no shells.\\nA minnow has the traits of a fish. A minnow is a fish. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8515\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na copper statue turning green\\nfiring a clay pot in a hot kiln\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are caused by heating. (C) Both are only physical changes. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA copper statue turning green is a chemical change. The copper reacts with oxygen in the air. This reaction forms a different type of matter called copper oxide. The copper oxide is green.\\nFiring a clay pot in a hot kiln is a chemical change. High temperatures cause the clay to slowly harden. After several hours in the kiln, the clay will have changed into a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nFiring clay is caused by heating. But a copper statue turning green is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8516\",\n    \"image\": \"8516\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Mark and Valeria trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nMark and Valeria open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Mark wanted broccoli in his lunch and Valeria was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Mark can trade his tomatoes for Valeria's broccoli. (B) Valeria can trade her broccoli for Mark's oranges. (C) Mark can trade his tomatoes for Valeria's sandwich. (D) Valeria can trade her almonds for Mark's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Mark wanted broccoli in his lunch and Valeria was hoping for tomatoes. Look at the labeled part of the images.\\nMark has tomatoes. Valeria has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8518\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Mitchell investigate with an experiment?\\nContext: Mitchell starts to make a sandwich, but he sees mold on the bread! He wonders what factors affect how mold grows on bread. So, he decides to design an experiment. He has the following supplies available:\\ntwo loaves of white sandwich bread\\na small plastic bag\\na large plastic bag\\na refrigerator\\nOptions: (A) Does white sandwich bread grow visible mold in fewer days if the bread is stored inside or outside the refrigerator? (B) Does white sandwich bread grow visible mold in fewer days if the bread is stored in a paper bag or in a plastic bag? (C) Does white or whole wheat sandwich bread grow visible mold in fewer days?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8520\",\n    \"image\": \"8520\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Pennsylvania?\\nContext: N/A\\nOptions: (A) Harrisburg (B) Pittsburgh (C) Frankfort (D) Providence\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Harrisburg is the capital of Pennsylvania. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8533\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nGreta entered the bustling, aromatic spice market in Istanbul and said to her travel companion, \\\"We're not in Kansas anymore.\\\"\\nContext: N/A\\nOptions: (A) a poem (B) a movie\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion We're not in Kansas anymore is a movie.\\nIn the 1939 film The Wizard of Oz, Dorothy, a young farm girl from Kansas, finds herself in Oz, an unusual place that looks nothing like her home. She says to her dog, \\\"Toto, I've a feeling we're not in Kansas anymore.\\\"\\nThe allusion We're not in Kansas anymore means we're in an unfamiliar place. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8536\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word mar on a dictionary page with the following guide words?\\nmodest - musician\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince mar is not between the guide words modest - musician, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8541\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Last year, there were seven men's clothing stores on Main Street in Arlington. This year, there are only three. What probably happened to the overall supply of men's shirts in Arlington?\\nContext: N/A\\nOptions: (A) The supply probably went up. (B) The supply probably went down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. When four men's clothing stores closed on Main Street, the number of suppliers went down. There were fewer stores selling men's shirts. So, the supply of men's shirts probably went down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8542\",\n    \"image\": \"8542\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Vermont?\\nContext: N/A\\nOptions: (A) Bridgeport (B) New Orleans (C) Providence (D) Montpelier\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montpelier is the capital of Vermont. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8543\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Destiny acquired this trait?\\nContext: Read the description of a trait.\\nDestiny is good at identifying insects.\\nOptions: (A) Destiny likes to look at butterflies and beetles. (B) Destiny learned to identify insects by reading many books about insects.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8551\",\n    \"image\": \"8551\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's scientific name?\\nContext: This organism is a brown-throated sloth. It is also called Bradypus variegatus.\\nOptions: (A) brown-throated sloth (B) Bradypus variegatus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Bradypus variegatus is written in italics. The first word is capitalized, and the second word is not.\\nSo, Bradypus variegatus is the scientific name. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8553\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nMaddie is good at cooking.\\nContext: Hint: Cooking well takes practice.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to cook. Instead, many people learn how to cook. So, cooking is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8554\",\n    \"image\": \"8554\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Hawaii?\\nContext: N/A\\nOptions: (A) Honolulu (B) Carson City (C) Hilo (D) Denver\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Honolulu is the capital of Hawaii. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8557\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nThe shower is broken for the second time this week!\\nContext: N/A\\nOptions: (A) exclamatory (B) declarative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence tells about something, but it shows surprise and ends with an exclamation point. It is an exclamatory sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8571\",\n    \"image\": \"8571\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of force from the woman's finger will knock over the domino?\\nContext: A woman is going to topple a line of dominoes. Her finger applies a force to the first domino to knock it over.\\nOptions: (A) pull (B) push\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to a second object.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The woman's finger applies a force to the domino. This force will knock over the domino. The direction of this force is away from the woman's finger. This force is a push. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8572\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Simon inherited this trait?\\nContext: Read the description of a trait.\\nSimon has blue eyes.\\nOptions: (A) Simon likes to wear a blue sweater to match his blue eyes. (B) Simon's mother has blue eyes. She passed this trait down to Simon.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8573\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nWhat type of training and experience do you need to become a referee?\\nContext: N/A\\nOptions: (A) declarative (B) exclamatory (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence asks something, and it ends with a question mark. It is an interrogative sentence. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8580\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Kate asked Katie to make a flourless chocolate cake for their book club meeting because she has a gluten allergy. (B) Because Katie has a gluten allergy, Kate asked her to make a flourless chocolate cake for their book club meeting.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun she could refer to Kate or Katie.\\nKate asked Katie to make a flourless chocolate cake for their book club meeting because she has a gluten allergy.\\nThe second answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nBecause Katie has a gluten allergy, Kate asked her to make a flourless chocolate cake for their book club meeting. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8581\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) The class chuckles at Ms. McKee's joke. (B) Sharon fell asleep Mom put a blanket on her.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Sharon fell asleep Mom put a blanket on her is a run-on sentence. It has two sentences that are joined without end punctuation: Sharon fell asleep and Mom put a blanket on her. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8583\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nThe bus will go through the tunnel.\\nContext: N/A\\nOptions: (A) past tense (B) present tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, go. The verb tells you about something that is going to happen. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8584\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAlthough Jacob hasn't worked in years, his mother prefers to say that he's between jobs right now.\\nContext: N/A\\nOptions: (A) oxymoron (B) euphemism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nBetween jobs is an indirect way of saying unemployed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8587\",\n    \"image\": \"8587\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) bouncy (B) hard (C) stretchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA hard object does not change shape when pressed or squeezed. All three objects are hard.\\nA stretchy object gets longer when you pull on it. None of the objects are stretchy.\\nA bouncy object will bounce back from the floor if you drop it. None of the objects are bouncy.\\nThe property that all three objects have in common is hard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8595\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is this a run-on sentence?\\nThe honey mushroom, a fungus spreading over more than two thousand acres across eastern Oregon's Malheur National Forest, is thought to be the largest living organism on Earth.\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA run-on sentence is formed when two sentences are run together, joined by just a comma or by no punctuation at all. If only a comma is used, the run-on is called a comma splice.\\nThe band I'm in has been rehearsing daily, we have a concert in two weeks.\\nThe band I'm in has been rehearsing daily we have a concert in two weeks.\\nThere are several ways to fix a run-on sentence:\\nUse stronger punctuation, such as a period or a semicolon.\\nThe band I'm in has been rehearsing daily. We have a concert in two weeks.\\nThe band I'm in has been rehearsing daily; we have a concert in two weeks.\\nUse a comma and a coordinating conjunction to create a compound sentence. Coordinating conjunctions include and, but, or, and so.\\nThe band I'm in has been rehearsing daily, and we have a concert in two weeks.\\nUse a subordinating conjunction or a relative pronoun to create a complex sentence. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, and whose.\\nThe band I'm in has been rehearsing daily since we have a concert in two weeks. This is not a run-on sentence. It is not formed from two sentences that have been run together without appropriate punctuation.\\nThe honey mushroom, a fungus spreading over more than two thousand acres across eastern Oregon's Malheur National Forest, is thought to be the largest living organism on Earth. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8599\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Your friend,\\nJada (B) your friend,\\nJada\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8606\",\n    \"image\": \"8606\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample A (C) sample B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in the two samples has the same mass, but the particles in sample A have a higher average speed than the particles in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8609\",\n    \"image\": \"8609\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is quartzite a mineral?\\nContext: Quartzite has the following properties:\\nnot made by organisms\\nmade mostly of quartz\\nno fixed crystal structure\\nfound in nature\\nsolid\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Quartzite does not have all the properties of a mineral. So, quartzite is not a mineral. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8614\",\n    \"image\": \"8614\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of blue particles?\\nContext: The diagram below is a model of two solutions. Each blue ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution B (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the blue particles represent the solute. To figure out which solution has a higher concentration of blue particles, look at both the number of blue particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of blue particles per milliliter.\\nSolution B has more blue particles per milliliter. So, Solution B has a higher concentration of blue particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8618\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to Newton's third law, what other force must be happening?\\nContext: Isaac Newton was born in the 1600s and studied how objects move. He discovered three fundamental laws about forces and motion. According to Newton's third law, for every force, there is an equal and opposite force.\\nConsider the following force:\\nSamantha's foot is pushing on her car's gas pedal.\\nOptions: (A) The gas pedal is pushing on Samantha's foot. (B) The gas pedal is pulling on Samantha's foot.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to Newton's third law, for every force, there is an equal and opposite force. This means that if one object is applying a force on a second object, the second object must also be applying a force on the first object, but in the opposite direction.\\nFor example, if your hand is pushing down on a table, the table is also pushing up on your hand. Or, if you are pulling forward on a rope, the rope is also pulling back on you. Samantha's foot is pushing on the gas pedal. So, Newton's third law tells you that the gas pedal is pushing on Samantha's foot. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8625\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Abby inherited this trait?\\nContext: Read the description of a trait.\\nAbby has wavy hair.\\nOptions: (A) Abby's parents were born with wavy hair. They passed down this trait to Abby. (B) Abby and her mother both have short hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8640\",\n    \"image\": \"8640\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) Oklahoma City (B) Nashville (C) New Orleans (D) Miami\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is Miami, Florida. Oklahoma City, New Orleans, and Nashville are marked with gray circles on the map below. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8648\",\n    \"image\": \"8648\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Tennessee (B) Virginia (C) Maryland (D) West Virginia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Virginia.\\nThe Virginia Colony included land that would later become part of the state of West Virginia. West Virginia was never its own colony. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8666\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of armos?\\nContext: Select the best estimate.\\nOptions: (A) 6 gallons (B) 6 cups (C) 6 fluid ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a thermos is 6 cups.\\n6 fluid ounces is too little and 6 gallons is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8671\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three geese. Which goose was moving at the lowest speed?\\nContext: N/A\\nOptions: (A) a goose that moved 275miles south in 5hours (B) a goose that moved 155miles west in 5hours (C) a goose that moved 120miles north in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the slowest will go the shortest distance in that time. It is moving at the lowest speed. Look at the distance each goose moved and the time it took to move that distance. The direction each goose moved does not affect its speed.\\nNotice that each goose moved for 5 hours. The goose that moved 120 miles moved the shortest distance in that time. So, that goose must have moved at the lowest speed. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8672\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) three (B) bee (C) green\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the same sound.\\nThe words meet and treat also rhyme. They both end with the same sound, even though the sound has two different spellings.\\nThe words tip and meet don't rhyme. They end with different sounds. The words three and bee rhyme. They both end with the ee sound.\\nThe word green does not rhyme. It ends with a different sound. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8676\",\n    \"image\": \"8676\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Gordon and Ariel trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nGordon and Ariel open their lunch boxes in the school cafeteria. Neither Gordon nor Ariel got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nGordon's lunch Ariel's lunch\\nOptions: (A) Ariel can trade her broccoli for Gordon's oranges. (B) Gordon can trade his tomatoes for Ariel's carrots. (C) Ariel can trade her almonds for Gordon's tomatoes. (D) Gordon can trade his tomatoes for Ariel's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nGordon wants broccoli. Ariel wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8681\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nbare - bite\\nContext: N/A\\nOptions: (A) because (B) booth\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince because is between the guide words bare - bite, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8686\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Mrs. Herman told her friend that she needs to exercise on a regular basis and get more sleep in order to have more energy throughout the day. (B) Mrs. Herman told her friend to exercise on a regular basis and get more sleep in order to have more energy throughout the day.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun she could refer to Mrs. Herman or her friend.\\nMrs. Herman told her friend that she needs to exercise on a regular basis and get more sleep in order to have more energy throughout the day.\\nThe first answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nMrs. Herman told her friend to exercise on a regular basis and get more sleep in order to have more energy throughout the day. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8689\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nErnesto got off the mountain by the skin of his teeth.\\nContext: N/A\\nOptions: (A) U.S. history (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion by the skin of his teeth is the Bible.\\nIn the Bible, Job complains to God about his hardships, saying that both strangers and those he loves have turned against him. He says, \\\"My bone cleaveth to my skin and to my flesh, and I am escaped with the skin of my teeth.\\\" Scholars have long debated the exact meaning of the phrase, but many claim that Job is saying that he narrowly escaped death.\\nThe allusion by the skin of his teeth means just barely. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8692\",\n    \"image\": \"8692\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is Polytrichum commune made up of one cell?\\nContext: This organism is Polytrichum commune. It is a member of the plant kingdom.\\nPolytrichum commune is also called the common haircap moss. This plant gets its common name from its brown, cap-like structures. Those structures contain spores. After the spores are released, they can settle on the ground and grow into new mosses.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Polytrichum commune is a plant. Plants are made up of many cells. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8703\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Katie looks almost identical to her twin sister Abby, but she has pierced ears. (B) Katie has pierced ears, but otherwise she looks almost identical to her twin sister Abby.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun she could refer to Katie or Abby.\\nKatie looks almost identical to her twin sister Abby, but she has pierced ears.\\nThe second answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nKatie has pierced ears, but otherwise she looks almost identical to her twin sister Abby. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8709\",\n    \"image\": \"8709\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes and shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 1. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is greater in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8715\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the living thing.\\nContext: N/A\\nOptions: (A) yak (B) bracelet (C) ferris wheel (D) rain\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All living things are made up of cells. Plants, animals, and some fungi have many cells. Other living things are made up of just one cell.\\nAll living things need food and water. Water helps living things break down food and remove waste. Food gives living things energy. They use energy from food to grow and change.\\nAll living things sense changes in their environment. Living things might sense changes by seeing, smelling, hearing, or feeling. Living things can respond to the changes they sense. A ferris wheel is not a living thing.\\nA ferris wheel does not have all the traits of a living thing. It moves in a circle, but it does not grow. It does not need food or water.\\nA yak is a living thing.\\nYaks grow and respond to their environment. They need food and water. Yaks are made up of many cells.\\nA bracelet is not a living thing.\\nBracelets do not have all of the traits of living things. They do not grow or respond to their environment. They do not need food or water.\\nRain is not a living thing.\\nRain is made of water. It helps living things survive. But it does not have all the traits of a living thing. Rain does not grow or need food. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8720\",\n    \"image\": \"8720\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 1. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is stronger in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8721\",\n    \"image\": \"8721\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Shelley's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nShelley was designing small aircraft called drones to pick up items from warehouse shelves. She knew that the drones' propeller blades would get damaged if they bumped into anything while flying through the warehouse. So, Shelley wanted to add blade guards to protect the propeller blades. The guards had to be sturdy so they would not break in a crash. But she thought that if the guards weighed too much, the drones would not fly well.\\nSo, Shelley put guards made of lightweight metal on one drone. Then she observed how well the drone flew with the guards.\\nFigure: a drone without blade guards.\\nOptions: (A) how much the drone weighed with the blade guards (B) if adding the blade guards made the drone fly poorly (C) if the blade guards would break in a crash\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8722\",\n    \"image\": \"8722\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Africa (B) Asia (C) South America (D) Antarctica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Africa. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8727\",\n    \"image\": \"8727\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Connecticut?\\nContext: N/A\\nOptions: (A) Bridgeport (B) Albany (C) Hartford (D) New Haven\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Hartford is the capital of Connecticut. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8729\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word nauseous in its traditional sense?\\nContext: N/A\\nOptions: (A) Danielle couldn't tolerate the nauseous odor emanating from the landfill, so she rolled up her car windows as she drove past. (B) The odor emanating from the landfill made Danielle so nauseous that she had to roll up the car windows as she drove past.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses nauseous in its traditional sense: causing disgust or nausea.\\nDanielle couldn't tolerate the nauseous odor emanating from the landfill, so she rolled up her car windows as she drove past.\\nThe first text uses nauseous in its nontraditional sense: feeling disgusted or nauseated.\\nThe odor emanating from the landfill made Danielle so nauseous that she had to roll up the car windows as she drove past.\\nMost style guides recommend to use the traditional sense of the word nauseous because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8732\",\n    \"image\": \"8732\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on clues in the text, why would farmers have appreciated cats eight thousand years ago?\\nContext: Read the text about cats.\\nCats are among the most popular pets in the world. Millions of people have welcomed cats into their homes. Indeed, researchers believe that the relationship between cats and humans goes back to prehistoric times. But throughout history, different cultures and people around the world have had different sentiments about cats. Such feelings have ranged from fear to worship.\\nPeople probably first developed friendly relationships with cats around eight thousand years ago, when farming and agriculture had just started to develop in the Middle East. Farmers were growing and storing grain, which in turn attracted mice and other pests. Cats were wild then. However, they were likely drawn to farming communities because there were mice to hunt. The farmers would have noticed and appreciated these visitors. To keep the cats around, these early farmers may have given food and even shelter to the wild cats. The farmers and cats probably helped one another.\\nIt wasn't until five thousand years later that the Egyptians started to treat cats as pets. Cats in ancient Egypt were not simply valued, but considered sacred. In paintings, many Egyptian goddesses took the form of cats. People who were caught harming cats were punished severely. Some cats were even made into mummies when they died. Normally, only the richest and most powerful people were buried this way.\\nLater in history, some societies thought of the cat as evil. In Europe during the Middle Ages, black cats were especially feared. Some believed that witches turned themselves into black cats at night. The connection between witches and black cats lasted for many years. The idea traveled from Europe to North America as Europeans settled there. However, today cats of all colors are beloved by millions of people worldwide. In fact, the way some house cats are treated now might make their Egyptian ancestors jealous!\\nOptions: (A) The cats were thought to be visiting goddesses. (B) The cats hunted and brought food to the farmers. (C) The cats helped keep the farmers' grain free of mice. (D) The cats helped farmers find better places to store grain.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informational texts include many facts, examples, and details. Authors don't always directly state how these things connect to each other. So, you may need to make guesses, or inferences, to understand how the ideas from the text fit together. Inferences can help you understand the whole text and draw conclusions about the information. Be sure to base your inferences on details found in the text as well as things you already know. Think about these details from the text:\\nGrain attracted mice and other pests.\\nCats were drawn to farms to hunt mice.\\nYou may know that mice like to eat grain, and that this is a problem for farmers. If cats hunted the mice, that would help stop the mice from eating the grain.\\nBased on these clues, you can guess that farmers appreciated cats eight thousand years ago because the cats helped keep their grain free of mice. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8743\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nThat was the longest yawn I've ever seen!\\nContext: N/A\\nOptions: (A) declarative (B) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence tells about something, but it shows surprise and ends with an exclamation point. It is an exclamatory sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8749\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nsediment settling to the bottom of a muddy puddle\\ndry ice sublimating and becoming a gas\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by heating. (C) Both are caused by cooling. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nLoose matter such as sand and dirt is called sediment. Sediment settling to the bottom of a muddy puddle is a physical change.\\nThe sediment sinks, and the water above becomes clearer. This separates the water from the sediment. But separating a mixture does not form a different type of matter.\\nDry ice is solid carbon dioxide. When dry ice gets warm, it changes state and becomes carbon dioxide gas. This change of state, from solid to gas, is called sublimation.\\nDry ice becoming a gas is a physical change. A change of state does not form a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nDry ice sublimating is caused by heating. But sediment settling to the bottom of a muddy puddle is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8752\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ndesk - drop\\nContext: N/A\\nOptions: (A) dazzle (B) distribute\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince distribute is between the guide words desk - drop, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8763\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nIn this election, we've seen the highest voter turnout ever recorded. If you have any doubts about Jacob Trevino's qualifications, just look at how many people have come out to vote for him.\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) false dichotomy: an argument that presents only two choices when more options exist\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Jacob Trevino is the most qualified candidate, because so many voters turned out to vote. However, even though many people voted for him, that doesn't necessarily mean that Jacob Trevino is the most qualified candidate. This illustrates a type of logical fallacy known as the bandwagon fallacy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8769\",\n    \"image\": \"8769\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Missouri?\\nContext: N/A\\nOptions: (A) Pierre (B) Kansas City (C) Jefferson City (D) Wichita\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jefferson City is the capital of Missouri. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8779\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Assume all other forces on the ice cube are balanced. Which statement describes the forces on the ice cube?\\nContext: An ice cube is floating in a glass of water. Earth's gravity is pulling down on the ice cube with a force of 0.1N. The water is pushing up on the ice cube with a force of 0.1N.\\nOptions: (A) The forces are unbalanced, so there is a net force on the ice cube. (B) The forces are balanced, so there is no net force on the ice cube.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Every force has a direction and a magnitude, or strength. If two forces act on an object in opposite directions, the forces are called opposing forces.\\nWhen opposing forces have the same magnitude, they are balanced. If all the forces on an object are balanced, there is no net force on the object.\\nWhen opposing forces have different magnitudes, the forces are unbalanced. If any forces on an object are unbalanced, there is a net force on the object. To determine if there is a net force on the ice cube, look at the forces:\\nEarth's gravity is pulling the ice cube down with a force of 0.1 N.\\nThe water is pushing the ice cube up with a force of 0.1 N.\\nThe forces are in opposite directions, and the forces have the same magnitude: 0.1 N. This means that the forces are balanced, so there is no net force on the ice cube. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8785\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Dakota inherited this trait?\\nContext: Read the description of a trait.\\nDakota has green eyes.\\nOptions: (A) Dakota has green eyes like her biological mother. (B) Dakota and her biological father wear sunglasses when they go outside. (C) Dakota's neighbor has green eyes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8793\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nEmir plays hockey.\\nContext: Hint: Playing hockey takes practice.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to play hockey. Instead, some people learn how to play hockey. Playing the sport takes practice. So, playing hockey is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8798\",\n    \"image\": \"8798\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) salty (B) rough (C) flexible\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA rough object feels scratchy when you touch it. All four objects are rough.\\nPotato chips have a salty taste. The pineapple is not salty.\\nA flexible object can be folded or bent without breaking easily. The potato sack is flexible, but the rock and the sidewalk are not.\\nThe property that all four objects have in common is rough. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8805\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nLisbon, Portugal, has cloudy skies today. So, the air pressure is low.\\nContext: N/A\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nLisbon, Portugal, has cloudy skies today. So, the air pressure is low.\\nAir pressure is caused by the weight of the air in the atmosphere. When the air pressure is low, the sky is usually cloudy.\\nThis passage tells you about the air pressure in Lisbon today. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8811\",\n    \"image\": \"8811\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) translucent (B) stretchy (C) bumpy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA bumpy object is covered in lumps and bumps. The honey is not bumpy.\\nA stretchy object gets longer when you pull on it. The wet ice cube is not stretchy.\\nA translucent object lets light through. But you cannot see clearly through a translucent object. All three objects are translucent.\\nThe property that all three objects have in common is translucent. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8819\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a song?\\nContext: N/A\\nOptions: (A) Any Dream Will Do (B) \\\"Any Dream Will Do\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A song should be in quotation marks.\\nThe correct title is \\\"Any Dream Will Do.\\\" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8841\",\n    \"image\": \"8841\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Gwen's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nGwen built an electric circuit: she used wires to connect a battery to a light bulb, the light bulb to a small piece of copper, and the copper back to the battery. When the circuit was complete, the light turned on. Gwen observed the brightness of the light for five seconds. She then replaced the copper with a piece of iron of equal size and noted whether the light became brighter or dimmer. Gwen built three more of the same type of circuit. She repeated the tests with each circuit. Gwen recorded whether the circuits produced brighter light when the circuit included copper or when the circuit included iron.\\nFigure: a circuit with a battery, a light bulb, and a piece of copper.\\nOptions: (A) Do circuits that include iron produce dimmer light than circuits that include copper? (B) Can light bulbs stay lit longer when circuits include copper or when circuits include iron?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8847\",\n    \"image\": \"8847\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait did Galeocerdo have? Select the trait you can observe on the fossil.\\nContext: This picture shows a fossil of an animal called Galeocerdo.\\nSome fossils of Galeocerdo are over 2,000,000 years old.\\nOptions: (A) a round, flat body (B) fins on its back (C) gray skin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The way an organism looks or acts is called a trait. Scientists use fossils to learn more about the traits of ancient organisms.\\nFossils can preserve the remains of body parts and activities. A fossil of a body part, such as a tail or a wing, can tell you what an organism looked like. A fossil of an organism's activities, such as a burrow or a footprint, can tell you about the organism's behavior.\\nHere are three examples of fossils and the traits that you can observe from them:\\nThis is a fossil of an animal. This fossil tells you that the animal had a spiral-shaped shell.\\nThis is a fossil of a plant. This fossil tells you that the plant had small leaves arranged in a branched pattern.\\nThis is a fossil of an animal's footprint. This fossil tells you that the animal could walk on land.\\nAn organism's fossil may not show all of the organism's traits. This is because most body parts are destroyed during fossil formation. When an organism's body turns into a fossil, only a few body parts are usually preserved. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8852\",\n    \"image\": \"8852\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this clothes hanger made of?\\nContext: N/A\\nOptions: (A) metal (B) wool\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the clothes hanger.\\nThe clothes hanger is made of two different materials. The hook is made of metal. The rest of the hanger is made of wood. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8862\",\n    \"image\": \"8862\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nNickel is ().\\nContext: The model below represents nickel. ckel is a metal that is used in coins and in rechargeable batteries.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a space-filling model. The space-filling model below represents the elementary substance copper.\\nIn a space-filling model, the balls represent atoms that are bonded together. The color of a ball represents a specific chemical element. The atomic symbol for that chemical element is shown in the legend. Use the model to determine whether nickel is an elementary substance or a compound.\\nStep 1: Interpret the model.\\nIn the space-filling model shown above, all of the balls are the same color:\\n. The legend shows that dark blue represents the chemical element with the atomic symbol Ni. So, the model shows you that nickel is composed of one chemical element.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that nickel is composed of only one chemical element. So, nickel is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8876\",\n    \"image\": \"8876\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the Venn diagram, what do the Odyssey and the Aeneid have in common?\\nContext: This Venn diagram shows information about two ancient poems.\\nOptions: (A) They are both set after the Trojan War. (B) They were both written by Virgil.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A graphic organizer is a chart or picture that shows how ideas, facts, or topics are related to one another.\\nWhen you read, look for graphic organizers included in the text. You can use these images to find key information. You can also create your own graphic organizers with information that you've read. Doing this can help you think about the ideas in the text and easily review them.\\nWhen you write, you can use graphic organizers to organize your thoughts and plan your writing. In a Venn diagram, each circle shows information that is true for a particular topic. In any area where circles overlap, the information is true for all of the overlapping topics. This Venn diagram shows information about two ancient poems.\\nSet after the Trojan War appears in both the circle for the Odyssey and the circle for the Aeneid. This tells you that the Odyssey and the Aeneid are both set after the Trojan War. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8878\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nSilicon dioxide is ().\\nContext: Silicon dioxide occurs naturally in the mineral quartz, which makes up many of the particles in sand. The chemical formula for silicon dioxide is SiO2.\\nOptions: (A) a compound (B) an elementary substance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. You can tell whether silicon dioxide is an elementary substance or a compound by counting the number of symbols in its chemical formula. A symbol contains either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for silicon dioxide is SiO2. This formula contains two symbols: Si for silicon and O for oxygen. So, the formula tells you that silicon dioxide is made of two chemical elements bonded together.\\nSubstances made of two or more chemical elements bonded together are compounds. So, silicon dioxide is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8880\",\n    \"image\": \"8880\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for walking on large, floating leaves?\\nContext: Bronze-winged jacanas live near rivers and lakes. They eat insects and snails that live on plants floating on the surface of the water.\\nThe feet of the jacana are adapted for walking on large, floating leaves. The jacana uses its feet to spread its weight out over a wide area. This helps the bird walk on the leaves without sinking into the water.\\nFigure: bronze-winged jacana.\\nOptions: (A) Magellan penguin (B) purple gallinule\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the bronze-winged jacana.\\nThe bronze-winged jacana uses its toes to spread its weight out over a large area. This can help it walk on leaves without sinking into the water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe purple gallinule has long, thin toes on its feet. Its feet are adapted for walking on floating leaves.\\nThe Magellan penguin has webbed feet. Its feet are not adapted for walking on floating leaves. The Magellan penguin uses its feet to walk and swim. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8884\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is an adult great white shark?\\nContext: Select the best estimate.\\nOptions: (A) 4 yards (B) 4 inches (C) 4 feet\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of an adult great white shark is 4 yards.\\n4 inches and 4 feet are both too short. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8887\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nYou've reached Eric Horton's voice mail. Please leave a detailed message at the beep, and I will return your call at my earliest convenience.\\nContext: N/A\\nOptions: (A) verbal irony (B) onomatopoeia\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses onomatopoeia, a word that expresses a sound.\\nBeep represents the sound that tells the caller to start recording a message. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8889\",\n    \"image\": \"8889\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait did Diplomystus have? Select the trait you can observe on the fossil.\\nContext: This picture shows a fossil of an ancient fish called Diplomystus. Diplomystus lived in ancient lakes and ate smaller fish.\\nOptions: (A) reddish-orange scales on its body (B) a V-shaped tail fin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The way an organism looks or acts is called a trait. Scientists use fossils to learn more about the traits of ancient organisms.\\nFossils can preserve the remains of body parts and activities. A fossil of a body part, such as a tail or a wing, can tell you what an organism looked like. A fossil of an organism's activities, such as a burrow or a footprint, can tell you about the organism's behavior.\\nHere are three examples of fossils and the traits that you can observe from them:\\nThis is a fossil of an animal. This fossil tells you that the animal had a spiral-shaped shell.\\nThis is a fossil of a plant. This fossil tells you that the plant had small leaves arranged in a branched pattern.\\nThis is a fossil of an animal's footprint. This fossil tells you that the animal could walk on land.\\nAn organism's fossil may not show all of the organism's traits. This is because most body parts are destroyed during fossil formation. When an organism's body turns into a fossil, only a few body parts are usually preserved. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8890\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Since the branches had grown over the power lines, Lauren requested a permit to have the branches removed. (B) Since the branches had grown over the power lines, Lauren requested a permit to have them removed.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun they could refer to the branches or the power lines.\\nThe second answer choice shows a possible correction for the vague pronoun reference. They has been replaced with the branches.\\nSince the branches had grown over the power lines, Lauren requested a permit to have the branches removed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8894\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Jupiter's phenotype for the coat pattern trait?\\nContext: In a group of jaguars, some individuals have a black coat and others have a spotted coat. In this group, the gene for the coat pattern trait has two alleles. The allele for a spotted coat (a) is recessive to the allele for a black coat (A).\\nJupiter is a jaguar from this group. Jupiter has the homozygous genotype AA for the coat pattern gene.\\nOptions: (A) a spotted coat (B) a black coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Jupiter's genotype for the coat pattern gene is AA. Jupiter's genotype of AA has only A allelles. The A allele is for a black coat. So, Jupiter's phenotype for the coat pattern trait must be a black coat.\\nTo check this answer, consider whether Jupiter's alleles are dominant or recessive. The allele for a spotted coat (a) is recessive to the allele for a black coat (A). This means A is a dominant allele, and a is a recessive allele.\\nJupiter's genotype of AA has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Jupiter's phenotype for the coat pattern trait must be a black coat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8897\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nbeginner - bottom\\nContext: N/A\\nOptions: (A) blueberry (B) baseball\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince blueberry is between the guide words beginner - bottom, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8901\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Before the Louisiana Purchase, what was the western boundary of the United States?\\nContext: N/A\\nOptions: (A) the Pacific Ocean (B) the Mississippi River (C) the Rocky Mountains (D) the Missouri River\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before the Louisiana Purchase, the western boundary of the United States was the Mississippi River.\\nThe old boundaries had been set in 1783, at the end of the Revolutionary War. In the Treaty of Paris, Britain gave the United States control of the western land south of the Great Lakes. The United States in 1783 stretched from the Atlantic Ocean to the Mississippi River. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8904\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a large trash can?\\nContext: Select the best estimate.\\nOptions: (A) 16 cups (B) 16 gallons (C) 16 fluid ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a large trash can is 16 gallons.\\n16 fluid ounces and 16 cups are both too little. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8905\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the living thing.\\nContext: N/A\\nOptions: (A) shoe (B) iceberg (C) pushpin (D) fig tree\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All living things are made up of cells. Plants, animals, and some fungi have many cells. Other living things are made up of just one cell.\\nAll living things need food and water. Water helps living things break down food and remove waste. Food gives living things energy. They use energy from food to grow and change.\\nAll living things sense changes in their environment. Living things might sense changes by seeing, smelling, hearing, or feeling. Living things can respond to the changes they sense. A fig tree is a living thing.\\nFig trees grow and respond to their environment. They need food and water. Fig trees are made up of many cells.\\nFig trees are plants. They make their own food using water, carbon dioxide, and energy from sunlight.\\nAn iceberg is not a living thing.\\nAn iceberg does not have all the traits of a living thing. It may grow or melt in response to the world around it, but it does not need food.\\nA pushpin is not a living thing.\\nPushpins do not have all of the traits of living things. They do not grow or respond to their environment. They do not need food or water.\\nA shoe is not a living thing.\\nShoes do not have all of the traits of living things. They do not grow or respond to their environment. They do not need food or water. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8906\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Emma investigate with an experiment?\\nContext: Emma leaves a glass jar of cold tea outside in full sunlight. When she goes to get it, she notices that the tea is warm. She wonders what factors affect how warm a liquid gets from sitting in the sunlight. So, she decides to design an experiment. She has the following supplies available:\\ntwo identical glass jars\\ntwo jar lids\\ntap water\\na measuring cup\\ntwo thermometers\\nOptions: (A) Will eight ounces of carbonated water or eight ounces of tap water get warmer when placed in a jar in the sun? (B) When placed in the sun, will eight ounces of water in a closed jar or eight ounces of water in an open jar get warmer? (C) When placed in the sun, will eight ounces of water in a glass jar or eight ounces of water in a plastic cup get warmer?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8917\",\n    \"image\": \"8917\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) sticky (B) hard (C) stretchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA stretchy object gets longer when you pull on it. The bubble gum is stretchy, but the ice pop and the chocolate milkshake are not.\\nA sticky object can attach or stick to other things. All four objects are sticky.\\nA hard object does not change shape when pressed or squeezed. The ice pop is hard, but the cake batter, the chocolate milkshake, and the bubble gum are not.\\nThe property that all four objects have in common is sticky. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8931\",\n    \"image\": \"8931\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement best describes the average monthly precipitation in Boston?\\nContext: Use the graph to answer the question below.\\nOptions: (A) March is the month with the highest average precipitation. (B) About the same amount of precipitation falls each month between May and October. (C) Precipitation does not change much from month to month in Boston.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average precipitation for each month. The average precipitation can be used to describe the climate of a location.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Boston, look at the graph.\\nChoice \\\"Mar\\\" is incorrect.\\nChoice \\\"May\\\" is incorrect.\\nChoice \\\"Oct\\\" is incorrect.\\nChoice \\\"Precipitation does not change much from month to month in Boston.\\\" is incorrect.\\nOn average, more precipitation falls between November and April than between May and October.\\nChoice \\\"About the same amount of precipitation falls each month between May and October.\\\" is incorrect.\\nThe average precipitation each month between May and October is about 3 inches. So, about the same amount of precipitation falls during each of these months.\\nChoice \\\"March is the month with the highest average precipitation.\\\" is incorrect.\\nJanuary, not March, has the highest average monthly precipitation. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8932\",\n    \"image\": \"8932\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the north pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8937\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nAbdul's proclamations earned him a reputation as our neighborhood's own Nostradamus.\\nContext: N/A\\nOptions: (A) Greek mythology (B) history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Nostradamus is history.\\nNostradamus, a sixteenth-century French astrologer and physician, is best known as the author of a book of prophecies.\\nThe allusion Nostradamus means a seer or predictor of the future. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8948\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Deion acquired this trait?\\nContext: Read the description of a trait.\\nDeion knows a lot about biology.\\nOptions: (A) Deion learned biology by reading, observing, and experimenting. (B) Deion is most interested in human biology.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8952\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Mackenzie investigate with an experiment?\\nContext: Mackenzie wants to grow sunflowers in her backyard garden. She notices that some sunflowers grow much taller than others. She is curious about what factors affect how sunflowers grow. So, she decides to design an experiment. She has the following supplies available:\\nseeds from one type of sunflower\\nsoil\\none wooden planter box in the sun\\none wooden planter box in the shade\\none plastic planter box in the sun\\nwater\\nOptions: (A) Which type of sunflower grows more leaves? (B) Do sunflowers grow bigger in sunny planter boxes or in shady planter boxes? (C) Do sunflowers grow taller if they are planted in planter boxes or in pots?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8957\",\n    \"image\": \"8957\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for walking on large, floating leaves?\\nContext: Bronze-winged jacanas live near rivers and lakes. They eat insects and snails that live on plants floating on the surface of the water.\\nThe feet of the jacana are adapted for walking on large, floating leaves. The jacana uses its feet to spread its weight out over a wide area. This helps the bird walk on the leaves without sinking into the water.\\nFigure: bronze-winged jacana.\\nOptions: (A) emu (B) northern jacana\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the bronze-winged jacana.\\nThe bronze-winged jacana uses its toes to spread its weight out over a large area. This can help it walk on leaves without sinking into the water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe northern jacana has long, thin toes on its feet. Its feet are adapted for walking on floating leaves.\\nThe emu has large, heavy feet with thick toes. Its feet are not adapted for walking on floating leaves. The emu uses its feet to walk and run on hard ground. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8959\",\n    \"image\": \"8959\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait did Coelodonta have? Select the trait you can observe on the fossil.\\nContext: This picture shows a fossil of an ancient animal called Coelodonta.\\nCoelodonta was hunted by early humans and went extinct about 10,000 years ago.\\nOptions: (A) a black snout (B) a tail\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The way an organism looks or acts is called a trait. Scientists use fossils to learn more about the traits of ancient organisms.\\nFossils can preserve the remains of body parts and activities. A fossil of a body part, such as a tail or a wing, can tell you what an organism looked like. A fossil of an organism's activities, such as a burrow or a footprint, can tell you about the organism's behavior.\\nHere are three examples of fossils and the traits that you can observe from them:\\nThis is a fossil of an animal. This fossil tells you that the animal had a spiral-shaped shell.\\nThis is a fossil of a plant. This fossil tells you that the plant had small leaves arranged in a branched pattern.\\nThis is a fossil of an animal's footprint. This fossil tells you that the animal could walk on land.\\nAn organism's fossil may not show all of the organism's traits. This is because most body parts are destroyed during fossil formation. When an organism's body turns into a fossil, only a few body parts are usually preserved. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8963\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Molly didn't enter student politics until her junior year. (B) Molly did not enter student politics until her junior year.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses a contraction (didn't).\\nThe first sentence does not use a contraction, so it is more formal. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8965\",\n    \"image\": \"8965\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Haiti (B) Saint Lucia (C) Barbados (D) Saint Vincent and the Grenadines\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Lucia. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8969\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nmeddle - mound\\nContext: N/A\\nOptions: (A) map (B) mild\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince mild is between the guide words meddle - mound, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8972\",\n    \"image\": \"8972\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Yasuni National Park ecosystem?\\nContext: Figure: Yasuni National Park.\\nThe Amazon rain forest in South America is the largest rain forest ecosystem in the world. Ecuador's Yasuni National Park, which is in the Amazon rain forest, has many different species of plants, birds, and mammals.\\nOptions: (A) It has mostly small plants. (B) It has soil that is poor in nutrients. (C) It has soil that is rich in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A tropical rain forest is a type of ecosystem. Tropical rain forests have the following features: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. So, the following statement describes the Yasuni National Park ecosystem: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. It has soil that is poor in nutrients. The following statements do not describe Yasuni National Park: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. It has soil that is rich in nutrients. It has mostly small plants. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8974\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to Newton's third law, what other force must be happening?\\nContext: Isaac Newton was born in the 1600s and studied how objects move. He discovered three fundamental laws about forces and motion. According to Newton's third law, for every force, there is an equal and opposite force.\\nConsider the following force:\\nPete is pulling on a full suitcase.\\nOptions: (A) The suitcase is pushing on Pete. (B) The suitcase is pulling on Pete.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to Newton's third law, for every force, there is an equal and opposite force. This means that if one object is applying a force on a second object, the second object must also be applying a force on the first object, but in the opposite direction.\\nFor example, if your hand is pushing down on a table, the table is also pushing up on your hand. Or, if you are pulling forward on a rope, the rope is also pulling back on you. Pete is pulling on the suitcase. So, Newton's third law tells you that the suitcase is pulling on Pete. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"8980\",\n    \"image\": \"8980\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement best describes the average monthly precipitation in New Orleans?\\nContext: Use the graph to answer the question below.\\nOptions: (A) The wettest months of the year are June, July, and August. (B) October is the wettest month. (C) June, July, and August are the driest months of the year.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average precipitation for each month. The average precipitation can be used to describe the climate of a location.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in New Orleans, look at the graph.\\nChoice \\\"Jun\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Aug\\\" is incorrect.\\nChoice \\\"Oct\\\" is incorrect.\\nChoice \\\"June, July, and August are the driest months of the year.\\\" is incorrect.\\nOn average, slightly more precipitation falls during June, July, and August than during the other months of the year. So, June, July, and August are not the driest months.\\nChoice \\\"The wettest months of the year are June, July, and August.\\\" is incorrect.\\nOn average, more precipitation falls during June, July, and August than during other months of the year. So, June, July, and August are the wettest months.\\nChoice \\\"October is the wettest month.\\\" is incorrect.\\nEvery other month has a higher average precipitation than October. So, October is the driest, not the wettest, month. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9001\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the hyperbole in this text suggest?\\nThe last time Lorenzo cleaned his room, dinosaurs were still roaming the Earth.\\nContext: N/A\\nOptions: (A) Lorenzo hates to clean his room. (B) Lorenzo hasn't cleaned his room in a very long time.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode! The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nThe hyperbole dinosaurs were still roaming the Earth suggests that Lorenzo hasn't cleaned his room in a very long time. He did not actually clean his room millions of years ago when dinosaurs existed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9003\",\n    \"image\": \"9003\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this dress made of?\\nContext: N/A\\nOptions: (A) glass (B) cotton\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials. Look at the picture of the dress.\\nThis dress is made of cotton.\\nNot all dresses are made of cotton. Dresses can be made from silk, wool, linen, or many other fabrics. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9004\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one true statement.\\nContext: N/A\\nOptions: (A) The cell membrane stores nutrients, water, and waste in a plant cell. (B) The Golgi directs cell activities by sending instructions to different parts of an animal cell. (C) The nucleus directs an animal cell's activities by sending instructions to different parts of the cell.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9005\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the elementary substance.\\nContext: N/A\\nOptions: (A) helium (He) (B) boron trifluoride (BF3) (C) fluoromethanol (CH3FO)\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. Look at the chemical formula for each substance, and count the number of symbols in the formula. Then, decide if the substance is an elementary substance. The chemical formula for fluoromethanol contains four symbols: C for carbon, H for hydrogen, F for fluorine, and O for oxygen. So, fluoromethanol is made of four chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, fluoromethanol is a compound, not an elementary substance. The chemical formula for helium contains one symbol: He. So, helium is made of one chemical element. Substances that are made of one chemical element are elementary substances. So, helium is an elementary substance. The chemical formula for boron trifluoride contains two symbols: B for boron and F for fluorine. So, boron trifluoride is made of two chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, boron trifluoride is a compound, not an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9010\",\n    \"image\": \"9010\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Hawaii?\\nContext: N/A\\nOptions: (A) Honolulu (B) Little Rock (C) Hilo (D) Jefferson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Honolulu is the capital of Hawaii. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9019\",\n    \"image\": \"9019\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample A has more mass than each particle in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9038\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is the most flexible?\\nContext: N/A\\nOptions: (A) rubber gloves (B) glass window (C) rock\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Flexible is a property. A flexible material can be bent without breaking easily.\\nLook at each picture, one at a time. Imagine bending the material shown in each picture.\\nOf the choices, the rubber gloves are the most flexible. If you gently twist rubber, it will not break. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9052\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a goat?\\nContext: Select the better estimate.\\nOptions: (A) 30 grams (B) 30 kilograms\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of a goat is 30 kilograms.\\n30 grams is too light. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9054\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nland - lilac\\nContext: N/A\\nOptions: (A) leaf (B) local\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince leaf is between the guide words land - lilac, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9055\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement true or false?\\nA plant cell does not have a cell membrane.\\nContext: N/A\\nOptions: (A) true (B) false\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A plant cell does not have a cell membrane.\\nThis statement is false. Every cell has a cell membrane. The cell membrane controls which substances enter and leave the cell. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9057\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a magazine?\\nContext: N/A\\nOptions: (A) ***Car and Driver*** (B) \\\"Car and Driver\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A magazine should be in italics.\\nThe correct title is **Car and Driver**. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9058\",\n    \"image\": \"9058\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nJupiter's volume is more than 10,000 times as large as the volume of Mars.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, first compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\nTo multiply a number written in scientific notation by a power of 10, write the multiple of 10 as 10 raised to an exponent. Then, add the exponents. For example:\\n1.43 x 10^15 \\u00b7 1000\\n= 1.43 x 10^15 \\u00b7 10^3\\n= 1.43 x 10^(15 + 3)\\n= 1.43 x 10^18\\n To determine if this statement is true, calculate the value of 10,000 times the volume of Mars.\\nThen compare the result to the volume of Jupiter. Jupiter's volume is 1.43 x 10^15 km^3, which is less than 1.63 x 10^15 km^3. So, Jupiter's volume is less than 10,000 times as large as the volume of Mars. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9067\",\n    \"image\": \"9067\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Delaware (B) Idaho (C) Georgia (D) Arkansas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. Idaho is farthest west. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9068\",\n    \"image\": \"9068\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) hard (B) soft\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA soft object changes shape when you squeeze it. Neither of the objects are soft.\\nA hard object keeps its shape when you squeeze it. Both objects are hard.\\nThe property that both objects have in common is hard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9070\",\n    \"image\": \"9070\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Indiana?\\nContext: N/A\\nOptions: (A) Columbus (B) Indianapolis (C) Fort Wayne (D) Lansing\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Indianapolis is the capital of Indiana. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9071\",\n    \"image\": \"9071\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What evidence of a drought does this picture show?\\nContext: This picture was taken during a drought. A drought happens when an area gets less rain or snow than usual.\\nOptions: (A) The riverbed is dry and cracked. (B) The ground is mostly flat.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Evidence is information that tells you something happened.\\nHow do you look for evidence of a change to Earth's surface?\\nThere are many ways to find evidence of a change to Earth's surface. One way is to look at a picture that was taken after the change.\\nHere are some examples of what the evidence for different changes might be:\\nCause of the change | Evidence of the change\\nearthquake | cracks in the ground; houses with broken walls and roofs\\nvolcanic eruption | melted rock on Earth's surface; smoke coming out of a hole in the ground\\nerosion | a canyon with a river flowing through it; a river carrying sand and mud\\nBe careful when you are looking for evidence!\\nA picture of Earth's surface can contain a lot of information. Some of that information might be evidence of a change to the surface, but some of it is not!\\nFor example, a picture taken after an earthquake might show a blue sky. But the color of the sky is not evidence of an earthquake. So, that information is not evidence that an earthquake happened.\\n The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9084\",\n    \"image\": \"9084\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) sample A (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample A has more mass than each particle in sample B. The particles in sample A also have a higher average speed than the particles in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9089\",\n    \"image\": \"9089\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Gunung Leuser National Park ecosystem?\\nContext: Figure: Gunung Leuser National Park.\\nGunung Leuser National Park is a tropical rain forest ecosystem in Sumatra, an island in western Indonesia.\\nOptions: (A) It has year-round warm temperatures. It also has soil that is poor in nutrients. (B) It has cold winters. It also has soil that is rich in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A tropical rain forest is a type of ecosystem. Tropical rain forests have the following features: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. So, Gunung Leuser National Park has year-round warm temperatures. It also has soil that is poor in nutrients. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9091\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nI tried to ignore the fresh blueberry pie, but it was ().\\nContext: N/A\\nOptions: (A) calling my name (B) delicious\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the phrase calling my name. It describes the pie as if it were a person who was beckoning. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9093\",\n    \"image\": \"9093\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9095\",\n    \"image\": \"9095\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Taklamakan Desert ecosystem?\\nContext: Figure: Taklamakan Desert.\\nThe Taklamakan Desert is a cold desert ecosystem in northwestern China.\\nOptions: (A) It has dry, thin soil. It also has a small amount of rain or snow. (B) It has heavy snow. It also has only a few types of trees.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A cold desert is a type of ecosystem. Cold deserts have the following features: a small amount of rain or snow, dry, thin soil, and long, cold winters. So, the Taklamakan Desert has dry, thin soil. It also has a small amount of rain or snow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9096\",\n    \"image\": \"9096\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Georgia (B) Rhode Island (C) Pennsylvania (D) Iowa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9101\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nChristine chops onions for the tomato sauce.\\nContext: N/A\\nOptions: (A) future tense (B) present tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, chops. The verb ends in -s and tells you about something that is true or happening now. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9104\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbaking an apple pie\\nusing polish to remove tarnish from a silver spoon\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are caused by heating. (C) Both are only physical changes. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBaking an apple pie is a chemical change. The type of matter in the pie changes when it is baked. The crust turns brown, and the apples become soft.\\nA tarnished silver spoon is one that has become less shiny over time. Polishing the spoon makes it look shiny again.\\nThe polish changes the tarnish into a different type of matter that can be easily wiped away. So, using polish to remove tarnish from silver is a chemical change.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBaking is caused by heating. But polish removing tarnish from a silver spoon is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9106\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nYou never even finished law school, so why should I trust you to watch my children?\\nContext: N/A\\nOptions: (A) ad hominem: a personal attack against one's opponent (B) appeal to nature: the assumption that natural things are always good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that finishing law school determine's one's ability to care for children. This is a personal attack that isn't relevant to taking care of children. This illustrates a type of logical fallacy known as ad hominem. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9109\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) When Molly was researching the lives of famous scientists, one source said that Albert Einstein had a speech impediment when he was a child. (B) When Molly was researching the lives of famous scientists, it said that Albert Einstein had a speech impediment when he was a child.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it is used without its antecedent.\\nThe first answer choice shows a possible correction for the vague pronoun reference. It has been replaced with one source.\\nWhen Molly was researching the lives of famous scientists, one source said that Albert Einstein had a speech impediment when he was a child. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9120\",\n    \"image\": \"9120\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9127\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nBecause most wild orchids naturally affix themselves to trees and branches, planting an orchid in soil will likely kill it.\\nContext: N/A\\nOptions: (A) simple (B) compound-complex (C) complex (D) compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is complex. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction because.\\nBecause most wild orchids naturally affix themselves to trees and branches, planting an orchid in soil will likely kill it. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9134\",\n    \"image\": \"9134\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Arkansas?\\nContext: N/A\\nOptions: (A) Little Rock (B) Fayetteville (C) Tallahassee (D) Arlington\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Little Rock is the capital of Arkansas. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9143\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Assume all other forces on Max are balanced. Which statement describes the forces on Max?\\nContext: Max is standing on a diving board at the pool. Earth's gravity is pulling down on Max with a force of 400N. The diving board is pushing up on Max with a force of 400N.\\nOptions: (A) The forces are unbalanced, so there is a net force on Max. (B) The forces are balanced, so there is no net force on Max.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Every force has a direction and a magnitude, or strength. If two forces act on an object in opposite directions, the forces are called opposing forces.\\nWhen opposing forces have the same magnitude, they are balanced. If all the forces on an object are balanced, there is no net force on the object.\\nWhen opposing forces have different magnitudes, the forces are unbalanced. If any forces on an object are unbalanced, there is a net force on the object. To determine if there is a net force on Max, look at the forces:\\nEarth's gravity is pulling Max down with a force of 400 N.\\nThe diving board is pushing Max up with a force of 400 N.\\nThe forces are in opposite directions, and the forces have the same magnitude: 400 N. This means that the forces are balanced, so there is no net force on Max. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9144\",\n    \"image\": \"9144\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Missouri (B) North Carolina (C) Arizona (D) Texas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. Missouri is farthest north. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9146\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nvain - vinegar\\nContext: N/A\\nOptions: (A) very (B) voyage\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince very is between the guide words vain - vinegar, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9150\",\n    \"image\": \"9150\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Jasmine and Bryan trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nJasmine and Bryan open their lunch boxes in the school cafeteria. Neither Jasmine nor Bryan got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nJasmine's lunch Bryan's lunch\\nOptions: (A) Jasmine can trade her tomatoes for Bryan's carrots. (B) Bryan can trade his broccoli for Jasmine's oranges. (C) Bryan can trade his almonds for Jasmine's tomatoes. (D) Jasmine can trade her tomatoes for Bryan's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nJasmine wants broccoli. Bryan wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9169\",\n    \"image\": \"9169\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for swimming?\\nContext: The is found in rivers and streams in South America. It eats small fish, worms, and crustaceans, which it often finds underwater. Its feet are adapted for swimming.\\nFigure: Suriname toad.\\nOptions: (A) giraffe (B) African clawed frog\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the Suriname toad.\\nThe Suriname toad has webbed feet. Its feet are adapted for swimming. As it swims, the Suriname toad uses its webbed feet to push itself through water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe African clawed frog has webbed feet. Its feet are adapted for swimming.\\nThe giraffe has large, heavy, hoofed feet. Its feet are not adapted for swimming. The giraffe uses its feet to walk and run on hard ground. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9177\",\n    \"image\": \"9177\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Texas?\\nContext: N/A\\nOptions: (A) Rapid City (B) Charleston (C) Austin (D) Dallas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Austin is the capital of Texas. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9189\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Wendy decides to watch the action movie. Which result would be a cost?\\nContext: Wendy is deciding whether to watch a comedy or an action movie. She would prefer to watch a comedy. But she also wants to watch a movie with her sister. Wendy's sister will only watch an action movie.\\nOptions: (A) Wendy will get to watch a movie with her sister. (B) Wendy will give up the chance to watch the movie that she is more excited about.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Wendy wants or needs:\\nWendy will give up the chance to watch the movie that she is more excited about. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9196\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Dalton investigate with an experiment?\\nContext: Dalton is baking a pie. He notices that the crust burns before the pie is fully cooked. He wonders what factors affect whether a pie crust will burn in the oven. So, he decides to design an experiment. He has the following supplies available:\\ningredients for pumpkin pie filling\\ningredients for apple pie filling\\ntwo pie crusts made with white flour\\na glass pie pan\\nan aluminum pie pan\\nan oven\\nOptions: (A) Do pie crusts made with white flour burn less quickly when covered with aluminum foil or when left uncovered? (B) Does a pie crust made with white flour burn more quickly than a pie crust made with whole wheat flour? (C) Does a pie crust made with white flour burn more quickly when the pie is cooked in a glass pan or in an aluminum pan?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9197\",\n    \"image\": \"9197\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the Chinese mitten crab.\\nContext: This organism is a Chinese mitten crab. Its scientific name is Eriocheir sinensis.\\nOptions: (A) Melanoplus bivittatus (B) Acanthaster planci (C) Eriocheir sinensis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A Chinese mitten crab's scientific name is Eriocheir sinensis.\\nEriocheir sinensis has the same scientific name as a Chinese mitten crab. So, these organisms are in the same species.\\nAcanthaster planci does not have the same scientific name as a Chinese mitten crab. So, Eriocheir sinensis and Acanthaster planci are not in the same species.\\nMelanoplus bivittatus does not have the same scientific name as a Chinese mitten crab. So, Eriocheir sinensis and Melanoplus bivittatus are not in the same species. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9205\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nsediment settling to the bottom of a muddy puddle\\nan iceberg melting slowly\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are only physical changes. (C) Both are caused by heating. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nLoose matter such as sand and dirt is called sediment. Sediment settling to the bottom of a muddy puddle is a physical change.\\nThe sediment sinks, and the water above becomes clearer. This separates the water from the sediment. But separating a mixture does not form a different type of matter.\\nAn iceberg melting is a change of state. So, it is a physical change. An iceberg is made of frozen water. As it melts, the water changes from a solid to a liquid. But a different type of matter is not formed.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nAn iceberg melting is caused by heating. But sediment settling to the bottom of a muddy puddle is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9214\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\n\\\"It was my good luck to have to study for a test while all my friends went to the water park,\\\" Alec remarked.\\nContext: N/A\\nOptions: (A) Alec was upset about staying home. (B) Alec wanted time to catch up on his responsibilities.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nGood luck ironically suggests that Alec was upset about staying home. Alec was actually unlucky because he couldn't join his friends at the water park. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9218\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAs Juan sat down on the rickety old chair, it abruptly collapsed beneath him.\\nContext: N/A\\nOptions: (A) compound (B) compound-complex (C) simple (D) complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is complex. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction as.\\nAs Juan sat down on the rickety old chair, it abruptly collapsed beneath him. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9223\",\n    \"image\": \"9223\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food web, which organism contains matter that eventually moves to the earthworm?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) barren-ground caribou (B) bilberry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows to the earthworm.\\nArrows point from the barren-ground caribou to the grizzly bear and the mushroom. The only arrow pointing from the grizzly bear leads to the mushroom. No arrows point from the mushroom to any other organisms. So, in this food web, matter does not move from the barren-ground caribou to the earthworm. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9225\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the personification in this text suggest?\\nStefan tried to ignore his unfinished essay, but it glared at him from across the room.\\nContext: N/A\\nOptions: (A) Stefan thought he was being watched. (B) It bothered Stefan that the essay wasn't finished.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind. The text uses personification, giving human characteristics to nonhuman things.\\nGlared at him suggests that it bothered Stefan that the essay wasn't finished. The essay is like a person who is bothering Stefan. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9231\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nBrad argues that American schools should offer foreign language classes at every level. I disagree. How could Brad not see the value of learning English?\\nContext: N/A\\nOptions: (A) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences (B) straw man: a misrepresentation of an opponent's position that makes it easier to argue against (C) appeal to nature: the assumption that natural things are always good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Brad claims that Americans should stop learning English and only study foreign languages. However, this misrepresents Brad's argument. Brad only wants more foreign language instruction. He says nothing about eliminating English instruction. This illustrates a type of logical fallacy known as a straw man. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9232\",\n    \"image\": \"9232\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two identical aquariums were next to an open window. One aquarium had a plastic cover on it, and the other was uncovered. This table shows how the temperature of each aquarium changed over 1.5hours.\\nOptions: (A) each aquarium . . . the surroundings (B) the surroundings . . . each aquarium\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each aquarium decreased, which means that the thermal energy of each aquarium decreased. So, thermal energy was transferred from each aquarium to the surroundings. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9233\",\n    \"image\": \"9233\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) breakable (B) rough\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA rough object feels scratchy when you touch it. Neither of the objects are rough.\\nA breakable object will break into pieces if you drop it. Both objects are breakable.\\nThe property that both objects have in common is breakable. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9242\",\n    \"image\": \"9242\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Kibale National Forest ecosystem?\\nContext: Figure: Kibale National Forest.\\nKibale National Forest is a tropical rain forest ecosystem in Uganda, a country in eastern Africa. This rain forest is home to many African primates, including chimpanzees.\\nOptions: (A) It has soil that is poor in nutrients. (B) It has soil that is rich in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A tropical rain forest is a type of ecosystem. Tropical rain forests have the following features: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. So, the following statements describe the Kibale National Forest ecosystem: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. It has many different types of organisms. It has soil that is poor in nutrients. The following statement does not describe Kibale National Forest: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. It has soil that is rich in nutrients. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9247\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nI pulled Harry off the project because his work was sloppy. While we're at it, let's pull Grace off the project, too. I haven't reviewed her work, but she's friends with Harry, so we cannot rely on the quality of her work either.\\nContext: N/A\\nOptions: (A) false dichotomy: an argument that presents only two choices when more options exist (B) guilt by association: a negative association intended to discredit someone or something (C) straw man: a misrepresentation of an opponent's position that makes it easier to argue against\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Grace's work is low quality because her friend's work is low quality. However, the work of Grace's friend does not necessarily reflect the quality of Grace's work. This illustrates a type of logical fallacy known as guilt by association. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9248\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a sofa?\\nContext: Select the best estimate.\\nOptions: (A) 6 feet (B) 6 inches (C) 6 yards\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a sofa is 6 feet.\\n6 inches is too short and 6 yards is too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9249\",\n    \"image\": \"9249\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) New Mexico (B) Florida (C) Arkansas (D) Kansas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. Florida is farthest east. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9257\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the euphemism in this text suggest?\\n\\\"Thank you for your work over the years,\\\" Mrs. Becker said to her gardener. \\\"As of next week, however, your services will no longer be required.\\\"\\nContext: N/A\\nOptions: (A) The gardener is retiring. (B) The gardener is being fired.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe euphemism your services will no longer be required means that the gardener is being fired. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9262\",\n    \"image\": \"9262\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Asia (B) Africa (C) Europe (D) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Asia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9266\",\n    \"image\": \"9266\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the north pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9275\",\n    \"image\": \"9275\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Mississippi?\\nContext: N/A\\nOptions: (A) Jackson (B) Frankfort (C) Charleston (D) Biloxi\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jackson is the capital of Mississippi. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9277\",\n    \"image\": \"9277\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is stronger in Pair 2. (C) The magnetic force is stronger in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9278\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is this a run-on sentence?\\nRight-handedness is controlled by genetics, interestingly enough, the same genes are also responsible for the brain becoming more specialized at certain tasks.\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA run-on sentence is formed when two sentences are run together, joined by just a comma or by no punctuation at all. If only a comma is used, the run-on is called a comma splice.\\nThe band I'm in has been rehearsing daily, we have a concert in two weeks.\\nThe band I'm in has been rehearsing daily we have a concert in two weeks.\\nThere are several ways to fix a run-on sentence:\\nUse stronger punctuation, such as a period or a semicolon.\\nThe band I'm in has been rehearsing daily. We have a concert in two weeks.\\nThe band I'm in has been rehearsing daily; we have a concert in two weeks.\\nUse a comma and a coordinating conjunction to create a compound sentence. Coordinating conjunctions include and, but, or, and so.\\nThe band I'm in has been rehearsing daily, and we have a concert in two weeks.\\nUse a subordinating conjunction or a relative pronoun to create a complex sentence. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, and whose.\\nThe band I'm in has been rehearsing daily since we have a concert in two weeks. This is a run-on sentence. It is a comma splice formed from two sentences run together, joined by just a comma.\\nRight-handedness is controlled by genetics, interestingly enough, the same genes are also responsible for the brain becoming more specialized at certain tasks.\\nHere is one way to fix the run-on sentence:\\nRight-handedness is controlled by genetics. Interestingly enough, the same genes are also responsible for the brain becoming more specialized at certain tasks. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9283\",\n    \"image\": \"9283\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak.\\nBirds are warm-blooded. Warm-blooded animals can control their body temperature.\\nA griffon vulture is an example of a bird.\\nOptions: (A) rabbit (B) albatross (C) western gorilla (D) Galapagos giant tortoise\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A rabbit is a mammal. It has fur and feeds its young milk.\\nRabbits live underground in burrows. A group of rabbit burrows is called a warren.\\nAn albatross is a bird. It has feathers, two wings, and a beak.\\nAlbatrosses live near the ocean. They hunt squid, fish, and other small animals.\\nA Galapagos giant tortoise is a reptile. It has scaly, waterproof skin.\\nGalapagos tortoises live on the Galapagos Islands in the Pacific Ocean. They can live to be over 150 years old!\\nA western gorilla is a mammal. It has fur and feeds its young milk.\\nGorillas live in groups called troops. The largest male in the troop is usually the leader. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9285\",\n    \"image\": \"9285\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is weaker in Pair 2. (B) The magnetic force is weaker in Pair 1. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9287\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Chester's phenotype for the fur texture trait?\\nContext: In a group of dachshund dogs, some individuals have rough fur and others have soft fur. In this group, the gene for the fur texture trait has two alleles. The allele for soft fur (f) is recessive to the allele for rough fur (F).\\nChester is a dachshund dog from this group. Chester has the homozygous genotype ff for the fur texture gene.\\nOptions: (A) rough fur (B) soft fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Chester's genotype for the fur texture gene is ff. Chester's genotype of ff has only f alleles. The f allele is for soft fur. So, Chester's phenotype for the fur texture trait must be soft fur.\\nTo check this answer, consider whether Chester's alleles are dominant or recessive. The allele for soft fur (f) is recessive to the allele for rough fur (F). This means F is a dominant allele, and f is a recessive allele.\\nChester's genotype of ff has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Chester's phenotype for the fur texture trait must be soft fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9288\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is harder?\\nContext: N/A\\nOptions: (A) wool scarf (B) asphalt road\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Hard is a property. A hard material keeps its shape when you press on it with your finger.\\nLook at each picture, one at a time. Imagine pushing on the material shown in each picture.\\nOf the choices, the asphalt road is harder. If you step on asphalt, it will not change shape. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9290\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a soccer field?\\nContext: Select the best estimate.\\nOptions: (A) 370 miles (B) 370 yards (C) 370 feet (D) 370 inches\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a soccer field is 370 feet.\\n370 inches is too short. 370 yards and 370 miles are too long. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9294\",\n    \"image\": \"9294\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) blue (B) fuzzy (C) slippery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA slippery object is hard to hold onto or stand on. None of the objects are slippery.\\nA fuzzy object is covered in soft hair. All three objects are fuzzy.\\nBlue is a color.\\nThis color is blue. The yarn pom pom is blue, but the tennis ball and the boots are not.\\nThe property that all three objects have in common is fuzzy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9295\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nIn this chemical reaction, water is a ().\\nContext: This passage describes a chemical reaction. Read the passage. Then, follow the instructions below.\\nHydrogen peroxide, a household disinfectant, breaks down into water and oxygen gas over time. Light speeds up this process, so hydrogen peroxide is typically stored in a dark-colored bottle. The bottle's dark coloring blocks light and makes the hydrogen peroxide last longer.\\nOptions: (A) reactant (B) product\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A chemical change occurs when new substances are formed from existing substances. This process is called a chemical reaction.\\nIn a chemical reaction, one or more substances change into one or more different substances. During the reaction, the atoms of the original substances are rearranged to form other substances.\\nThe original substances in a chemical reaction are called reactants. These substances react, or go through a chemical change.\\nThe substances that are formed in a chemical reaction are called products. These substances are produced by the chemical reaction.\\nSo, in a chemical reaction, reactants go through a chemical change to form products. Read the underlined text carefully. Look for information about what happens to water in this chemical reaction.\\nHydrogen peroxide, a household disinfectant, breaks down into water and oxygen gas over time. Light speeds up this process, so hydrogen peroxide is typically stored in a dark-colored bottle. The bottle's dark coloring blocks light and makes the hydrogen peroxide last longer.\\nThe underlined text tells you that hydrogen forms when hydrogen peroxide breaks down. Because water is produced by this chemical reaction, water is a product. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9304\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAnd so, my fellow Americans: ask not what your country can do for you\\u2014ask what you can do for your country.\\n\\u2014President John F. Kennedy, inaugural address\\nContext: N/A\\nOptions: (A) assonance (B) chiasmus\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses chiasmus, an expression in which the second half parallels the first but reverses the order of words.\\nThe second half of the sentence reverses the order of the words country and you relative to the first half. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9323\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word travesty in its traditional sense?\\nContext: N/A\\nOptions: (A) In 1687, John Phillips published a controversial English translation of Cervantes's Don Quixote. Phillips's translation, a travesty of the original story, was filled with vulgar humor. (B) John Milton's epic poem Paradise Lost was first published in 1667. It's a travesty that only thirty-three pages of the original manuscript have survived.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses travesty in its traditional sense: a ridiculous imitation; a parody.\\nIn 1687, John Phillips published a controversial English translation of Cervantes's Don Quixote. Phillips's translation, a travesty of the original story, was filled with vulgar humor.\\nThe first text uses travesty in its nontraditional sense: a disappointment or a tragedy.\\nJohn Milton's epic poem Paradise Lost was first published in 1667. It's a travesty that only thirty-three pages of the original manuscript have survived.\\nMost style guides recommend to use the traditional sense of the word travesty because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9328\",\n    \"image\": \"9328\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample A has more mass than each particle in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9330\",\n    \"image\": \"9330\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wisconsin?\\nContext: N/A\\nOptions: (A) Madison (B) Lincoln (C) Dover (D) Green Bay\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Madison is the capital of Wisconsin. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9332\",\n    \"image\": \"9332\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maine?\\nContext: N/A\\nOptions: (A) Baton Rouge (B) Portland (C) Augusta (D) Manchester\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Augusta is the capital of Maine. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9336\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The time period after the Civil War is usually called Reconstruction. What does it mean to reconstruct something?\\nContext: N/A\\nOptions: (A) to criticize something (B) to destroy something (C) to forget something entirely (D) to build something again\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The prefix re- means \\\"again.\\\" The word construct means \\\"to build.\\\" So, reconstruct means \\\"to build something again.\\\" The Confederate States were in the South. The border states were Southern states that did not join the Confederacy. In 1861, the Civil War started when 11 Southern states seceded, or withdrew from the country. The seceded states tried to form a new country called the Confederate States of America. In 1865, the Confederate states lost the Civil War. During Reconstruction, Americans debated how to bring the Confederate states back into the United States' political and economic systems. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9344\",\n    \"image\": \"9344\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Kathleen's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nPeople with diabetes sometimes take a medicine made from insulin. Insulin can be made by a special type of bacteria. Kathleen was a bioengineer who wanted to increase the amount of insulin that the bacteria produced by 20%. She read that giving the bacteria more nutrients could affect the amount of insulin they produced. So, Kathleen gave extra nutrients to some of the bacteria. Then, she measured how much insulin those bacteria produced compared to bacteria that did not get extra nutrients.\\nFigure: studying bacteria in a laboratory.\\nOptions: (A) whether she added enough nutrients to help the bacteria produce 20% more insulin (B) whether producing more insulin would help the bacteria grow faster (C) whether different types of bacteria would need different nutrients to produce insulin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9345\",\n    \"image\": \"9345\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Haiti (B) Saint Kitts and Nevis (C) the Dominican Republic (D) Dominica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Dominica. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9352\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nCyclooctasulfur is ().\\nContext: Cyclooctasulfur is used in the production of rubber bands and automobile tires. The chemical formula for cyclooctasulfur is S8.\\nOptions: (A) a compound (B) an elementary substance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nThe atomic symbol for each chemical element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one atomic symbol.\\nThe atomic symbol in a chemical formula may be followed by a small number written lower than the symbol. This number is called a subscript. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript shows how many atoms are in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen, O2, has a subscript of 2. This subscript shows that the atomic symbol O represents two atoms. The elementary substance O2 and the chemical element represented by the atomic symbol O are both named oxygen. So, the formula tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple atomic symbols.\\nThe chemical elements in a compound are bonded together in a fixed ratio. This ratio is shown in a compound's chemical formula.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. So, the ratio of beryllium atoms to fluorine atoms is 1 to 2. This ratio is shown in the chemical formula for beryllium fluoride, BeF2. There is no subscript following the atomic symbol Be because that symbol represents one atom. The subscript 2 follows the atomic symbol F to show that the symbol represents two atoms. You can tell whether cyclooctasulfur is an elementary substance or a compound by counting the number of atomic symbols in its chemical formula. An atomic symbol consists of either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for cyclooctasulfur, S8, contains one atomic symbol: S for sulfur. So, the formula tells you that cyclooctasulfur is composed of only one chemical element.\\nSince cyclooctasulfur is composed of only one chemical element, cyclooctasulfur is an elementary substance. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9356\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMaura has no school spirit\\u2014she never comes to any of our football games.\\nContext: N/A\\nOptions: (A) false dichotomy: an argument that presents only two choices when more options exist (B) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Maura doesn't have school spirit, because she doesn't go to football games. However, there may be a number of reasons why Maura doesn't go to football games. This illustrates a type of logical fallacy known as a false dichotomy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9357\",\n    \"image\": \"9357\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) salty (B) fuzzy (C) smooth\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nPotato chips have a salty taste. All four objects are salty.\\nA fuzzy object is covered in soft hair. The cracker is not fuzzy.\\nA smooth object is not scratchy or rough. The potato chips, the fries, and the cracker are not smooth.\\nThe property that all four objects have in common is salty. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9361\",\n    \"image\": \"9361\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9367\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Gabby investigate with an experiment?\\nContext: Gabby leaves some chocolates in her jacket pocket. When she finds the chocolates later, she notices that some of them have melted. She wonders what factors affect how quickly chocolate melts. So, she decides to design an experiment. She has the following supplies available:\\none bar of milk chocolate\\none bar of dark chocolate\\na stove\\na pot\\nOptions: (A) Does milk chocolate melt faster when heated in a microwave or on a stove? (B) Does dark chocolate or white chocolate melt faster when heated on the stove? (C) Does milk chocolate or dark chocolate melt faster when heated on the stove?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9370\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Assume all other forces on Natalie are balanced. Which statement describes the forces on Natalie?\\nContext: Natalie is sitting on a roller coaster cart as it reaches the bottom of a big loop. Earth's gravity is pulling down on Natalie with a force of 600N. The seat of the cart is pushing up on Natalie with a force of 1,200N.\\nOptions: (A) The forces are balanced, so there is no net force on Natalie. (B) The forces are unbalanced, so there is a net force on Natalie.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Every force has a direction and a magnitude, or strength. If two forces act on an object in opposite directions, the forces are called opposing forces.\\nWhen opposing forces have the same magnitude, they are balanced. If all the forces on an object are balanced, there is no net force on the object.\\nWhen opposing forces have different magnitudes, the forces are unbalanced. If any forces on an object are unbalanced, there is a net force on the object. To determine if there is a net force on Natalie, look at the forces:\\nEarth's gravity is pulling Natalie down with a force of 600 N.\\nThe seat of the cart is pushing Natalie up with a force of 1,200 N.\\nThe forces are in opposite directions, and the forces have different magnitudes: 600 N and 1,200 N. This means that the forces are unbalanced, so there is a net force on Natalie. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9375\",\n    \"image\": \"9375\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Duncan and Sam trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nDuncan and Sam open their lunch boxes in the school cafeteria. Neither Duncan nor Sam got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nDuncan's lunch Sam's lunch\\nOptions: (A) Duncan can trade his tomatoes for Sam's broccoli. (B) Duncan can trade his tomatoes for Sam's carrots. (C) Sam can trade his almonds for Duncan's tomatoes. (D) Sam can trade his broccoli for Duncan's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nDuncan wants broccoli. Sam wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9381\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does this Works Cited entry indicate about the cited work?\\nCamus, Albert. \\\"The Guest.\\\" Trans. Justin O'Brien. The Oxford Book of French Short Stories. Ed. Elizabeth Fallaize. Oxford: Oxford UP, 2002. Print.\\nContext: N/A\\nOptions: (A) It has been translated from another language. (B) It has more than two authors. (C) Its date of publication is unknown.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing research papers, you will often be asked to follow a particular style guide for your citations. One popular style guide is the Modern Language Association (MLA) Handbook.\\nBelow are the basic formats for some common types of Works Cited entries. Consult the MLA Handbook for a complete list.\\nBooks:\\nFormat | Author(s). Book Title. City of Publication: Publisher, Year of Publication. Medium of Publication.\\nExample | Austen, Jane. Pride and Prejudice. New York: Dover Publications, 1995. Print.\\nEssays, short stories, or poems in an anthology or book:\\nFormat | Author(s). \\\"Essay, Poem, or Short Story Title.\\\" Anthology or Book Title. Ed. Editor Name. City of Publication: Publisher, Year of Publication. Page Number(s). Medium of Publication.\\nExample | James, Henry. \\\"The Middle Years.\\\" The Oxford Book of American Short Stories. Ed. Joyce Carol Oates. Oxford: Oxford UP, 2013. 116-135. Print.\\nMagazine and newspaper articles:\\nFormat | Author(s). \\\"Article Title.\\\" Title of Magazine or Newspaper Date of Publication: Page(s). Medium of Publication.\\nExample | Hayes, David J., and James H. Stock. \\\"The Real Cost of Coal.\\\" New York Times 24 Mar. 2015: n. pag. Web. 25 Mar. 2015.\\nJournal articles:\\nFormat | Author(s). \\\"Article Title.\\\" Title of Journal Volume.Issue (Year): Page(s). Medium of Publication.\\nExample | Gillette, Jane, et al. \\\"Human Simulations of Vocabulary Learning.\\\" Cognition 73.2 (1999): 135-176. Print.\\nWeb pages:\\nFormat | Author(s). \\\"Page Title.\\\" Name of Website. Publisher, Date of Publication. Medium of Publication. Date of Access.\\nExample | Gunn, Janelle P., and Lauren E. Owens. \\\"How to Slash Sodium from Your Diet.\\\" Livestrong.com. Demand Media, 30 Mar. 2015. Web. 31 Mar. 2015.\\nAdditional guidelines:\\nAuthor Names. The first author's name is written in last name, first name format (Smith, Jane). Additional author names are written in first name last name format (Smith, Jane, and John Doe). If there are more than three authors, the first author's name is followed by \\\"et al.,\\\" which stands for and others (e.g., Smith, Jane, et al.).\\nMedium of Publication. Each entry must include information about what form the content was communicated in. The most common mediums are \\\"Print\\\" and \\\"Web,\\\" but other possibilities include \\\"Film,\\\" \\\"E-mail,\\\" and \\\"Lecture.\\\" Whenever the Medium of Publication is \\\"Web,\\\" the date of access (the day, month, and year the webpage was viewed) must be listed directly after the Medium of Publication.\\nEditors and Translators. If a work has an editor or a translator, this information must be added to the Works Cited entry using the appropriate abbreviation. \\\"Ed.\\\" stands for edited by. \\\"Trans.\\\" stands for translated by.\\nMissing Information. If a work has no known author, the author section of the citation is simply left out. If a work has no available page numbers, the abbreviation \\\"n. pag.\\\" is used instead. If a work has no available publication date, the abbreviation \\\"n.d.\\\" is used instead. If a work has no available publisher or no available city of publication, the abbreviation \\\"n.p.\\\" is used instead.\\n Look closely at the Works Cited entry:\\nCamus, Albert. \\\"The Guest.\\\" Trans. Justin O'Brien. The Oxford Book of French Short Stories. Ed. Elizabeth Fallaize. Oxford: Oxford UP, 2002. Print.\\nYou can tell that the cited work has been translated from another language because the entry contains the abbreviation Trans., which means translated by. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9382\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The city of Georgetown has been one of the world's biggest makers of cough drops for many years. But last month, Georgetown's cough drop factories were destroyed by floods. What will probably happen to the overall supply of cough drops?\\nContext: N/A\\nOptions: (A) The supply will probably go up. (B) The supply will probably go down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. Floods destroyed the cough drop factories in Georgetown. The number of producers of cough drops went down. So, the supply of cough drops will probably go down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9386\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a sentence fragment?\\nIn 2004, a team of archaeologists discovered a three-foot-tall skeleton, dubbed the \\\"Hobbit,\\\" in Indonesia. Even after ten years, experts still debate whether the skeleton belonged to a modern human.\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA sentence fragment is a group of words that does not express a complete thought.\\nRehearsing daily because we have a concert in two weeks.\\nThis fragment is missing a subject. It doesn't tell who is rehearsing.\\nThe band I'm in.\\nThis fragment is missing a verb. It doesn't tell what the band I'm in is doing.\\nBecause we have a concert in two weeks.\\nThis fragment is missing an independent clause. It doesn't tell what happened because of the concert. There is not a sentence fragment. These are complete sentences because they express complete thoughts.\\nIn 2004, a team of archaeologists discovered a three-foot-tall skeleton, dubbed the \\\"Hobbit,\\\" in Indonesia. Even after ten years, experts still debate whether the skeleton belonged to a modern human. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9387\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of an apple?\\nContext: Select the better estimate.\\nOptions: (A) 120 kilograms (B) 120 grams\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of an apple is 120 grams.\\n120 kilograms is too heavy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9388\",\n    \"image\": \"9388\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is better adapted as a warning sign to ward off predators?\\nContext: Fire salamanders have poisonous glands in their brightly colored skin. The bright colors serve as a warning sign that the animal is poisonous. The 's skin is adapted to ward off predators.\\nFigure: fire salamander.\\nOptions: (A) opalescent nudibranch (B) lechwe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the fire salamander.\\nThe fire salamander has a poisonous body with brightly colored skin. Its skin is adapted to ward off predators. The bright colors serve as a warning sign that the fire salamander is poisonous.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe opalescent nudibranch has stinging cells in its brightly colored skin. Its skin is adapted to ward off predators.\\nThe lechwe has light-brown fur covering its skin. Its skin is not adapted to be a warning sign that wards off predators. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9389\",\n    \"image\": \"9389\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nHydrogen fluoride is ().\\nContext: The model below represents a molecule of hydrogen fluoride. Hydrogen fluoride is used to make chemicals that can help keep refrigerators cool.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All substances are made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the chemical element boron is B, and the symbol for the chemical element chlorine is Cl.\\nScientists can use models to represent molecules. A ball-and-stick model of a molecule is shown below. This model represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent chemical bonds. Notice how each ball is labeled with a symbol for a chemical element. The ball represents one atom of that element. Count the number of chemical elements represented in the model. Then, decide if hydrogen fluoride is an elementary substance or a compound.\\nIn this model, each ball is labeled with H for hydrogen or F for fluorine. So, the model shows you that hydrogen fluoride is made of two chemical elements bonded together.\\nSubstances made of two or more chemical elements bonded together are compounds. So, hydrogen fluoride is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9394\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na puddle freezing into ice on a cold night\\nmixing sand and water\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are caused by heating. (C) Both are only physical changes. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA puddle freezing into ice on a cold night is a change of state. So, it is a physical change. Liquid water freezes and becomes solid, but it is still made of water. A different type of matter is not formed.\\nMixing sand and water is a physical change. Adding water makes the sand wet. But both the sand and water are still made of the same type of matter as before.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nA puddle freezing is caused by cooling. But mixing sand and water is not. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9399\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of an eraser?\\nContext: Select the better estimate.\\nOptions: (A) 40 kilograms (B) 40 grams\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of an eraser is 40 grams.\\n40 kilograms is too heavy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9403\",\n    \"image\": \"9403\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the common kestrel.\\nContext: This organism is a common kestrel. Its scientific name is Falco tinnunculus.\\nOptions: (A) Falco sparverius (B) Tigrisoma mexicanum (C) Ardea herodias\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A common kestrel's scientific name is Falco tinnunculus. The first word of its scientific name is Falco.\\nArdea herodias is in the genus Ardea. The first word of its scientific name is Ardea. So, Ardea herodias and Falco tinnunculus are not in the same genus.\\nFalco sparverius is in the genus Falco. The first word of its scientific name is Falco. So, Falco sparverius and Falco tinnunculus are in the same genus.\\nTigrisoma mexicanum is in the genus Tigrisoma. The first word of its scientific name is Tigrisoma. So, Tigrisoma mexicanum and Falco tinnunculus are not in the same genus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9415\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the plant.\\nContext: N/A\\nOptions: (A) Barn owls walk and fly. (B) Cedar trees have small leaves.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A cedar tree is a plant. It has small leaves.\\nCedar trees grow in many parts of the world. Many cedar trees grow on mountains.\\nA barn owl is an animal. It walks and flies.\\nA barn owl is a bird. Barn owls live on every continent except Antarctica. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9423\",\n    \"image\": \"9423\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Laura's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nLaura planted 25 tomato seeds one-half inch below the soil surface in each of six pots. Laura added an equal amount of fertilizer to three of the six pots. She placed the pots in a plant growth chamber where all the seeds experienced the same temperature, amount of light, and humidity level. After two weeks, Laura counted the number of seedlings that grew in each pot. She compared the number of seedlings in the pots with fertilizer to the number of seedlings in the pots without fertilizer.\\nFigure: tomato seedlings growing in soil.\\nOptions: (A) Does the humidity level where tomato seeds are planted affect the number of tomato seedlings that grow? (B) Do more tomato seedlings grow when they are planted in soil with fertilizer compared to soil without fertilizer?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9436\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a rock.\\nContext: N/A\\nOptions: (A) Rhyolite is a solid. It is not a pure substance. (B) Slate is a solid. It is not made by living things. (C) Styrofoam is made by humans. It is not a pure substance.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rocks are made of minerals. Here are some properties of rocks:\\nThey are solid.\\nThey are formed in nature.\\nThey are not made by living things.\\nThey are not pure substances. Compare the properties of each substance to the properties of rocks. Select the substance whose properties do not match those of rocks.\\nSlate is a rock.\\nStyrofoam is made by humans. But rocks are not made by living things.\\nSo, styrofoam is not a rock.\\nRhyolite is a rock. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9444\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nMona grabs her mother's hand.\\nContext: N/A\\nOptions: (A) past tense (B) future tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, grabs. The verb ends in -s and tells you about something that is true or happening now. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9468\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Robert was recently reading about remote mountain villages, and it said that they often have no Internet access. He couldn't imagine life without email! (B) Robert was recently reading about remote mountain villages, and the article said that they often have no Internet access. He couldn't imagine life without email!\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it is used without its antecedent.\\nThe first answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the article.\\nRobert was recently reading about remote mountain villages, and the article said that they often have no Internet access. He couldn't imagine life without email! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9475\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nPotassium hydroxide is ().\\nContext: Potassium hydroxide is used to make liquid soap. The chemical formula for potassium hydroxide is KOH.\\nOptions: (A) a compound (B) an elementary substance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nThe atomic symbol for each chemical element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one atomic symbol.\\nThe atomic symbol in a chemical formula may be followed by a small number written lower than the symbol. This number is called a subscript. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript shows how many atoms are in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen, O2, has a subscript of 2. This subscript shows that the atomic symbol O represents two atoms. The elementary substance O2 and the chemical element represented by the atomic symbol O are both named oxygen. So, the formula tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple atomic symbols.\\nThe chemical elements in a compound are bonded together in a fixed ratio. This ratio is shown in a compound's chemical formula.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. So, the ratio of beryllium atoms to fluorine atoms is 1 to 2. This ratio is shown in the chemical formula for beryllium fluoride, BeF2. There is no subscript following the atomic symbol Be because that symbol represents one atom. The subscript 2 follows the atomic symbol F to show that the symbol represents two atoms. You can tell whether potassium hydroxide is an elementary substance or a compound by counting the number of atomic symbols in its chemical formula. An atomic symbol consists of either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for potassium hydroxide, KOH, contains three atomic symbols: K for potassium, O for oxygen, and H for hydrogen. So, the formula tells you that potassium hydroxide is composed of three chemical elements bonded together.\\nSince potassium hydroxide is composed of multiple chemical elements bonded together, potassium hydroxide is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9481\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the allusion in this text suggest?\\nBobby seems to have the Midas touch. Without any special experience or training, he launched a thriving business and then established a well-respected charity.\\nContext: N/A\\nOptions: (A) Bobby is lazy and uninformed. (B) Bobby is successful at all that he does.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked. The text uses an allusion, a brief reference to someone or something well known.\\nThe allusion the Midas touch suggests that Bobby is successful at all that he does. In Greek mythology, King Midas has the power to turn anything he touches into gold, easily creating value from nothing. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9489\",\n    \"image\": \"9489\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 2. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is stronger in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 2 are closer together than the magnets in Pair 1. So, the magnetic force is stronger in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9493\",\n    \"image\": \"9493\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these organisms contains matter that was once part of the lichen?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) rough-legged hawk (B) parasitic jaeger (C) Arctic fox (D) snowy owl (E) barren-ground caribou\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows that starts from the lichen.\\nThe only arrow pointing to the rough-legged hawk starts from the parasitic jaeger. The only arrow pointing to the parasitic jaeger starts from the brown lemming. The brown lemming has two arrows pointing to it. These arrows start from the bear sedge and the bilberry. Neither the bear sedge nor the bilberry has any arrows pointing to it. So, in this food web, matter does not move from the lichen to the rough-legged hawk.\\nThe only arrow pointing to the snowy owl starts from the short-tailed weasel. The only arrow pointing to the short-tailed weasel starts from the brown lemming. The brown lemming has two arrows pointing to it. These arrows start from the bear sedge and the bilberry. Neither the bear sedge nor the bilberry has any arrows pointing to it. So, in this food web, matter does not move from the lichen to the snowy owl.\\nThe only arrow pointing to the parasitic jaeger starts from the brown lemming. The brown lemming has two arrows pointing to it. These arrows start from the bear sedge and the bilberry. Neither the bear sedge nor the bilberry has any arrows pointing to it. So, in this food web, matter does not move from the lichen to the parasitic jaeger.There is one path matter can take from the lichen to the barren-ground caribou: lichen->barren-ground caribou. Arctic fox. The Arctic fox has two arrows pointing to it. One arrow starts from the bilberry. The bilberry does not have any arrows pointing to it. The other arrow pointing to the Arctic fox starts from the brown lemming. The brown lemming has two arrows pointing to it. These arrows start from the bear sedge and the bilberry. Neither the bear sedge nor the bilberry has any arrows pointing to it. So, in this food web, matter does not move from the lichen to the Arctic fox.. The answer is E.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9494\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nIf you're wondering whether purchasing the computer's extended warranty is a wise choice, let me point out that ninety percent of my customers choose to buy it. Don't question the wisdom of the crowd.\\nContext: N/A\\nOptions: (A) straw man: a misrepresentation of an opponent's position that makes it easier to argue against (B) appeal to nature: the assumption that natural things are always good (C) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that the extended warranty is a wise choice because most customers buy it. However, the fact that many customers purchase the warranty doesn't necessarily make it a good purchase. This illustrates a type of logical fallacy known as the bandwagon fallacy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9495\",\n    \"image\": \"9495\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) transparent (B) fragile (C) flexible\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA flexible object can be folded or bent without breaking easily. All three objects are flexible.\\nA fragile object will break into pieces if you drop it. None of the objects are fragile.\\nYou can see clearly through a transparent object. None of the objects are transparent.\\nThe property that all three objects have in common is flexible. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9499\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Ben acquired this trait?\\nContext: Read the description of a trait.\\nBen speaks two languages.\\nOptions: (A) Ben's mother speaks one language. (B) Ben learned to speak two languages in school.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9503\",\n    \"image\": \"9503\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Antarctica (B) South America (C) Asia (D) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is South America. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9504\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a cold glass of water?\\nContext: Select the better estimate.\\nOptions: (A) 4\\u00b0C (B) 4\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a cold glass of water is 4\\u00b0C.\\n4\\u00b0F is too cold. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9505\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Kenny decides to take a trip to Arkansas. Which result would be a cost?\\nContext: Kenny is deciding whether to take a trip to Arkansas or Delaware. He wants to enjoy his trip. But he is also trying to save money.\\nOptions: (A) Kenny will spend more money. Plane tickets for Kenny to get to Arkansas are more expensive than tickets to Delaware. (B) Kenny will enjoy his trip to Arkansas more than he would have enjoyed a trip to Delaware.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Kenny wants or needs:\\nKenny will spend more money. Plane tickets for Kenny to get to Arkansas are more expensive than tickets to Delaware. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9508\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Tristan decides to eat the oatmeal cookies. Which result would be a cost?\\nContext: Tristan is deciding whether to eat raisins or oatmeal cookies for an afternoon snack. He would like to eat something tasty, but he is also trying to be healthier.\\nOptions: (A) Tristan will give up the chance to eat the raisins. The raisins would have been healthier than the oatmeal cookies. (B) Tristan will get to eat the oatmeal cookies. Tristan thinks oatmeal cookies will taste better than raisins would have.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Tristan wants or needs:\\nTristan will give up the chance to eat the raisins. The raisins would have been healthier than the oatmeal cookies. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9509\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has more thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 240-gram bottle of water at a temperature of 25\\u00b0C (B) a 240-gram bottle of water at a temperature of 10\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. The two bottles of water have the same mass but different temperatures. Since the 25\\u00b0C bottle of water is hotter than the 10\\u00b0C bottle of water, it has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9513\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nsave - softly\\nContext: N/A\\nOptions: (A) shy (B) supplies\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince shy is between the guide words save - softly, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9514\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a vacuum cleaner?\\nContext: Select the best estimate.\\nOptions: (A) 19 pounds (B) 19 tons (C) 19 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a vacuum cleaner is 19 pounds.\\n19 ounces is too light and 19 tons is too heavy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9525\",\n    \"image\": \"9525\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these continents does the prime meridian intersect?\\nContext: N/A\\nOptions: (A) South America (B) Antarctica (C) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lines of latitude and lines of longitude are imaginary lines drawn on some globes and maps. They can help you find places on globes and maps.\\nLines of latitude show how far north or south a place is. We use units called degrees to describe how far a place is from the equator. The equator is the line located at 0\\u00b0 latitude. We start counting degrees from there.\\nLines north of the equator are labeled N for north. Lines south of the equator are labeled S for south. Lines of latitude are also called parallels because each line is parallel to the equator.\\nLines of longitude are also called meridians. They show how far east or west a place is. We use degrees to help describe how far a place is from the prime meridian. The prime meridian is the line located at 0\\u00b0 longitude. Lines west of the prime meridian are labeled W. Lines east of the prime meridian are labeled E. Meridians meet at the north and south poles.\\nThe equator goes all the way around the earth, but the prime meridian is different. It only goes from the North Pole to the South Pole on one side of the earth. On the opposite side of the globe is another special meridian. It is labeled both 180\\u00b0E and 180\\u00b0W.\\nTogether, lines of latitude and lines of longitude form a grid. You can use this grid to find the exact location of a place. The prime meridian is the line at 0\\u00b0 longitude. It intersects Antarctica. It does not intersect Australia or South America. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9530\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a raisin?\\nContext: Select the best estimate.\\nOptions: (A) 11 meters (B) 11 millimeters (C) 11 kilometers (D) 11 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a raisin is 11 millimeters.\\n11 centimeters, 11 meters, and 11 kilometers are all too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9535\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Even if most Americans say that they approve of NASA's missions, the organization receives too much public funding. (B) Almost seventy percent of respondents to a 2011 Pew Research survey said that they value space exploration.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved by research or observation.\\nNapoleon Bonaparte was shorter than King Louis XVI.\\nThe statement above is a fact. The statement can be proved by researching the height of each man and comparing them.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved.\\nNapoleon Bonaparte was a better leader than King Louis XVI.\\nThe statement above is an opinion. People can have different ideas about what makes someone a \\\"better\\\" leader, so the statement cannot be proved. The first sentence states a fact.\\nAlmost seventy percent of respondents to a 2011 Pew Research survey said that they value space exploration.\\nIt can be proved by consulting the results of the relevant 2011 survey.\\nThe second sentence states an opinion.\\nEven if most Americans say that they approve of NASA's missions, the organization receives too much public funding.\\nToo much shows what a person believes, thinks, or feels. Another person might have a different opinion about whether the amount of funding NASA receives is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9538\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Moxie's phenotype for the coat color trait?\\nContext: In a group of cows, some individuals have a black coat and others have a red coat. In this group, the gene for the coat color trait has two alleles. The allele for a black coat (L) is dominant over the allele for a red coat (l).\\nMoxie is a cow from this group. Moxie has the homozygous genotype LL for the coat color gene.\\nOptions: (A) a red coat (B) a black coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Moxie's genotype for the coat color gene is LL. Moxie's genotype of LL has only L allelles. The L allele is for a black coat. So, Moxie's phenotype for the coat color trait must be a black coat.\\nTo check this answer, consider whether Moxie's alleles are dominant or recessive. The allele for a black coat (L) is dominant over the allele for a red coat (l). This means L is a dominant allele, and l is a recessive allele.\\nMoxie's genotype of LL has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Moxie's phenotype for the coat color trait must be a black coat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9540\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a sentence fragment?\\nContext: N/A\\nOptions: (A) The next baseball game. (B) Polly draws an arrow it points up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. The next baseball game is a sentence fragment. It is missing a verb. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9541\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a sentence fragment?\\nOne of the oldest harvest festivals in the world is the Chinese Mid-Autumn Festival. Which was first celebrated in the tenth century BCE.\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA sentence fragment is a group of words that does not express a complete thought.\\nRehearsing daily because we have a concert in two weeks.\\nThis fragment is missing a subject. It doesn't tell who is rehearsing.\\nThe band I'm in.\\nThis fragment is missing a verb. It doesn't tell what the band I'm in is doing.\\nBecause we have a concert in two weeks.\\nThis fragment is missing an independent clause. It doesn't tell what happened because of the concert. There is a sentence fragment that does not express a complete thought.\\nOne of the oldest harvest festivals in the world is the Chinese Mid-Autumn Festival. Which was first celebrated in the tenth century BCE.\\nHere is one way to fix the sentence fragment:\\nOne of the oldest harvest festivals in the world is the Chinese Mid-Autumn Festival, which was first celebrated in the tenth century BCE. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9544\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ncedar - county\\nContext: N/A\\nOptions: (A) chorus (B) cafeteria\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince chorus is between the guide words cedar - county, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9546\",\n    \"image\": \"9546\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the text to describe the diagram.\\nSolute particles moved in both directions across the permeable membrane. But more solute particles moved across the membrane (). When there was an equal concentration on both sides, the particles reached equilibrium.\\nContext: The diagram below shows a solution with one solute. Each solute particle is represented by a yellow ball. The solution fills a closed container that is divided in half by a membrane. The membrane, represented by a dotted line, is permeable to the solute particles.\\nThe diagram shows how the solution can change over time during the process of diffusion.\\nOptions: (A) to the left than to the right (B) to the right than to the left\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a solution, solute particles move and spread throughout the solvent. The diagram below shows how a solution can change over time. Solute particles move from the area where they are at a higher concentration to the area where they are at a lower concentration. This movement happens through the process of diffusion.\\nAs a result of diffusion, the concentration of solute particles becomes equal throughout the solution. When this happens, the solute particles reach equilibrium. At equilibrium, the solute particles do not stop moving. But their concentration throughout the solution stays the same.\\nMembranes, or thin boundaries, can divide solutions into parts. A membrane is permeable to a solute when particles of the solute can pass through gaps in the membrane. In this case, solute particles can move freely across the membrane from one side to the other.\\nSo, for the solute particles to reach equilibrium, more particles will move across a permeable membrane from the side with a higher concentration of solute particles to the side with a lower concentration. At equilibrium, the concentration on both sides of the membrane is equal. Look at the diagram again. It shows you how the solution changed during the process of diffusion.\\nBefore the solute particles reached equilibrium, there were 2 solute particles on the left side of the membrane and 6 solute particles on the right side of the membrane.\\nWhen the solute particles reached equilibrium, there were 4 solute particles on each side of the membrane. There were 2 more solute particles on the left side of the membrane than before.\\nSo, for the solute particles to reach equilibrium, more solute particles must have moved across the membrane to the left than to the right. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9548\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has less thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 250-gram baked potato at a temperature of 60\\u00b0C (B) a 250-gram baked potato at a temperature of 40\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. The two baked potatoes have the same mass but different temperatures. Since the 40\\u00b0C potato is colder than the 60\\u00b0C potato, it has less thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9552\",\n    \"image\": \"9552\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the red kangaroo.\\nContext: This organism is a red kangaroo. Its scientific name is Macropus rufus.\\nOptions: (A) Cervus canadensis (B) Camelus bactrianus (C) Macropus giganteus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A red kangaroo's scientific name is Macropus rufus. The first word of its scientific name is Macropus.\\nCervus canadensis is in the genus Cervus. The first word of its scientific name is Cervus. So, Cervus canadensis and Macropus rufus are not in the same genus.\\nMacropus giganteus is in the genus Macropus. The first word of its scientific name is Macropus. So, Macropus giganteus and Macropus rufus are in the same genus.\\nCamelus bactrianus is in the genus Camelus. The first word of its scientific name is Camelus. So, Camelus bactrianus and Macropus rufus are not in the same genus. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9560\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Vivian acquired this trait?\\nContext: Read the description of a trait.\\nVivian can play the cello.\\nOptions: (A) Vivian learned how to play the cello in music class. (B) Vivian and her father play the cello together. (C) Vivian knows how to polish her cello.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9561\",\n    \"image\": \"9561\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Hayley's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nHayley was designing small aircraft called drones to pick up items from warehouse shelves. She knew that the drones' propeller blades would get damaged if they bumped into anything while flying through the warehouse. So, Hayley wanted to add blade guards to protect the propeller blades. The guards had to be sturdy so they would not break in a crash. But she thought that if the guards weighed too much, the drones would not fly well.\\nSo, Hayley put guards made of lightweight metal on one drone. Then she observed how well the drone flew with the guards.\\nFigure: a drone without blade guards.\\nOptions: (A) how much the drone weighed with the blade guards (B) if the blade guards would break in a crash (C) if adding the blade guards made the drone fly poorly\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9592\",\n    \"image\": \"9592\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) South America (C) Antarctica (D) Africa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Antarctica. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9593\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nMom will pitch the ball to Preston.\\nContext: N/A\\nOptions: (A) present tense (B) future tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, pitch. The verb tells you about something that is going to happen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9609\",\n    \"image\": \"9609\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is better adapted as a warning sign to ward off predators?\\nContext: Blue poison dart frogs have poisonous glands in their brightly colored skin. The bright colors serve as a warning sign that the animal is poisonous. The 's skin is adapted to ward off predators.\\nFigure: blue poison dart frog.\\nOptions: (A) sharpnose-puffer (B) gray tree frog\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the blue poison dart frog.\\nThe blue poison dart frog has poisonous glands in its brightly colored skin. Its skin is adapted to ward off predators. The bright colors serve as a warning sign that the blue poison dart frog is poisonous.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe sharpnose-puffer has a poisonous body with brightly colored skin. Its skin is adapted to ward off predators.\\nThe gray tree frog has gray-brown skin. Its skin is not adapted to be a warning sign that wards off predators. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9620\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nmixing sand and water\\ncarving a piece of wood\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are chemical changes. (C) Both are only physical changes. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nMixing sand and water is a physical change. Adding water makes the sand wet. But both the sand and water are still made of the same type of matter as before.\\nCarving a piece of wood is a physical change. The wood changes shape, but it is still made of the same type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9621\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nManny will make cookies with his friends.\\nContext: N/A\\nOptions: (A) future tense (B) past tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, make. The verb tells you about something that is going to happen. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9624\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two geese. Which goose was moving at a lower speed?\\nContext: N/A\\nOptions: (A) a goose that moved 190miles in 5hours (B) a goose that moved 235miles in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving slower will go a shorter distance in that time. It is moving at a lower speed. Look at the distance each goose moved and the time it took to move that distance.\\nOne goose moved 190 miles in 5 hours.\\nThe other goose moved 235 miles in 5 hours.\\nNotice that each goose spent the same amount of time moving. The goose that moved 190 miles moved a shorter distance in that time. So, that goose must have moved at a lower speed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9626\",\n    \"image\": \"9626\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Rhode Island (B) Michigan (C) Massachusetts (D) New Jersey\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New Jersey. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9628\",\n    \"image\": \"9628\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Southern Ocean (B) the Atlantic Ocean (C) the Arctic Ocean (D) the Pacific Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Atlantic Ocean. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9650\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nHydrogen is ().\\nContext: Hydrogen gas was once used to make large airships, such as blimps, float. It is no longer used in airships because it catches fire easily. The chemical formula for hydrogen is H2.\\nOptions: (A) a compound (B) an elementary substance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nThe atomic symbol for each chemical element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one atomic symbol.\\nThe atomic symbol in a chemical formula may be followed by a small number written lower than the symbol. This number is called a subscript. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript shows how many atoms are in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen, O2, has a subscript of 2. This subscript shows that the atomic symbol O represents two atoms. The elementary substance O2 and the chemical element represented by the atomic symbol O are both named oxygen. So, the formula tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple atomic symbols.\\nThe chemical elements in a compound are bonded together in a fixed ratio. This ratio is shown in a compound's chemical formula.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. So, the ratio of beryllium atoms to fluorine atoms is 1 to 2. This ratio is shown in the chemical formula for beryllium fluoride, BeF2. There is no subscript following the atomic symbol Be because that symbol represents one atom. The subscript 2 follows the atomic symbol F to show that the symbol represents two atoms. You can tell whether hydrogen is an elementary substance or a compound by counting the number of atomic symbols in its chemical formula. An atomic symbol consists of either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for hydrogen, H2, contains one atomic symbol: H. So, the formula tells you that hydrogen is composed of only one chemical element.\\nSince hydrogen is composed of only one chemical element, hydrogen is an elementary substance. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9652\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) If Peter doesn't know how to make homemade waffles, he can find the recipe in the cookbook. (B) If Peter doesn't know how to make homemade waffles, he can find it in the cookbook.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it is used without its antecedent.\\nThe first answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the recipe.\\nIf Peter doesn't know how to make homemade waffles, he can find the recipe in the cookbook. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9653\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of armos?\\nContext: Select the best estimate.\\nOptions: (A) 7 cups (B) 7 fluid ounces (C) 7 gallons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a thermos is 7 cups.\\n7 fluid ounces is too little and 7 gallons is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9655\",\n    \"image\": \"9655\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) the Federated States of Micronesia (B) New Zealand (C) the Marshall Islands (D) Palau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Federated States of Micronesia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9657\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAn avid reader, Darnell attends weekly book club meetings, and he finishes several novels every month.\\nContext: N/A\\nOptions: (A) simple (B) compound (C) compound-complex (D) complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound. It is made up of two independent clauses joined by the coordinating conjunction and.\\nAn avid reader, Darnell attends weekly book club meetings, and he finishes several novels every month. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9668\",\n    \"image\": \"9668\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nPollination is what happens when ().\\nContext: Male cones make pollen. Wind can blow pollen from a male cone to a female cone.\\nOptions: (A) pollen lands on a female cone (B) sperm fuses with an egg\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Conifers are plants that grow cones. Conifers use their cones to reproduce, or make new plants like themselves. How do conifers use their cones to reproduce?\\nConifers can grow male and female cones. Male cones make pollen, and female cones make eggs. Pollination is what happens when wind blows pollen from male cones onto female cones. After pollination, sperm from the pollen can combine with eggs. This is called fertilization. The fertilized eggs grow into seeds.\\nThe seeds can fall out of the cones and land on the ground. When a seed lands on the ground, it can germinate, or start to grow into a new plant. When pollen lands on a female cone, it is called pollination. This photograph shows wind blowing pollen from the male cones on a Japanese cedar tree.\\nAfter a female cone is pollinated, its eggs can be fertilized. Fertilization is what happens when male cells from the pollen combine with eggs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9670\",\n    \"image\": \"9670\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the European nightjar.\\nContext: This organism is a European nightjar. Its scientific name is Caprimulgus europaeus.\\nOptions: (A) Caprimulgus macrurus (B) Ulex europaeus (C) Acanthaster planci\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A European nightjar's scientific name is Caprimulgus europaeus. The first word of its scientific name is Caprimulgus.\\nUlex europaeus and Caprimulgus europaeus are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Ulex europaeus and Caprimulgus europaeus have the same species name within their genus, europaeus. But the first words of their scientific names are different. Ulex europaeus is in the genus Ulex, and Caprimulgus europaeus is in the genus Caprimulgus.\\nAcanthaster planci is in the genus Acanthaster. The first word of its scientific name is Acanthaster. So, Acanthaster planci and Caprimulgus europaeus are not in the same genus.\\nCaprimulgus macrurus is in the genus Caprimulgus. The first word of its scientific name is Caprimulgus. So, Caprimulgus macrurus and Caprimulgus europaeus are in the same genus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9676\",\n    \"image\": \"9676\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of California?\\nContext: N/A\\nOptions: (A) Olympia (B) San Francisco (C) Los Angeles (D) Sacramento\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sacramento is the capital of California. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9688\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAlthough Tony hasn't worked in years, his mother prefers to say that he's between jobs right now.\\nContext: N/A\\nOptions: (A) euphemism (B) paradox\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nBetween jobs is an indirect way of saying unemployed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9704\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Gabrielle inherited this trait?\\nContext: Read the description of a trait.\\nGabrielle has dark skin.\\nOptions: (A) Gabrielle and her father both have dark hair. (B) Gabrielle's parents have dark skin. They passed down this trait to Gabrielle.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9710\",\n    \"image\": \"9710\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following statements is true?\\nContext: A substance's physical and chemical properties are all determined by its chemical structure. Its chemical structure depends on the number and types of atoms in each of its molecules, as well as on how those atoms are arranged.\\nOne property of a substance is its flavor, which is its odor and taste combined. The chemical structure of a substance determines both the kind of flavor it has and the strength of that flavor.\\nSyrups containing flavorants are used to add flavor to snow cones.\\nSubstances that have especially interesting and strong flavors are often added to food to change or enhance the food's flavor. These substances are called flavorants. Flavorants can be found in nature, made in a chemical factory, or both.\\nOne example of a flavorant is methyl anthranilate. This flavorant is often used to add a grape flavor to syrups, candy, and other sweets. Methyl anthranilate is found naturally in certain types of grapes, but it can also be made by workers in a chemical factory.\\nOptions: (A) A flavorant might be both found in nature and made in a chemical factory. (B) A substance's chemical structure depends only on the number and types of atoms in each molecule of the substance.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9712\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which baked potato has a lower temperature?\\nContext: Two 200-gram baked potatoes are identical except for their thermal energies.\\nOptions: (A) the baked potato with more thermal energy (B) the baked potato with less thermal energy\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two baked potatoes are made of the same material and have the same mass. So, the baked potato with less thermal energy has a lower temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9713\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nA natural area, such as a grassland, catches fire and burns.\\nContext: N/A\\nOptions: (A) volcanic eruption (B) wildfire (C) erosion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9719\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which part of a conifer makes seeds?\\nContext: N/A\\nOptions: (A) the needles (B) the cones (C) the roots\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Conifers are plants that grow cones. Conifers use their cones to reproduce, or make new plants like themselves. How do conifers use their cones to reproduce?\\nConifers can grow male and female cones. Male cones make pollen, and female cones make eggs. Pollination is what happens when wind blows pollen from male cones onto female cones. After pollination, sperm from the pollen can combine with eggs. This is called fertilization. The fertilized eggs grow into seeds.\\nThe seeds can fall out of the cones and land on the ground. When a seed lands on the ground, it can germinate, or start to grow into a new plant. Conifers use their cones to make seeds. Seeds grow inside the female cones.\\nMany conifers have thin pointed leaves called needles. The needles make most of the conifer's food. Needles do not make seeds.\\nRoots take in water and nutrients from the soil. They do not make seeds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9720\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word is not like the others?\\nContext: N/A\\nOptions: (A) horse (B) goat (C) squirrel (D) leg\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some words are alike. They go together in a group.\\nRed, blue, and green go together. They are colors.\\nMom, dad, grandma, and grandpa go together. They are people in a family. Horse, squirrel, and goat go together. They are animals. Leg is not an animal, so it is not like the other words. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9724\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nI tell Nellie my opinions about her music.\\nContext: N/A\\nOptions: (A) future tense (B) past tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, tell. The verb tells you about something that is true or happening now. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9726\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Precious's genotype for the fur type gene?\\nContext: In a group of cats, some individuals have straight fur and others have curly fur. In this group, the gene for the fur type trait has two alleles. The allele F is for straight fur, and the allele f is for curly fur.\\nPrecious, a cat from this group, has straight fur. Precious has two alleles for straight fur.\\nOptions: (A) FF (B) straight fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Precious has two alleles for straight fur (F). So, Precious's genotype for the fur type gene is FF. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9728\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Cody investigate with an experiment?\\nContext: Cody went to a magic show. The magician rubbed a balloon on her hair and then held the balloon against a wall. When the magician released the balloon, Cody was amazed to see that it stuck to the wall! He wonders what factors affect how well balloons stick to different surfaces. So, he decides to design an experiment. He has the following supplies available:\\nthe hair on his own head\\na cotton blanket\\na wooden door\\nfive rubber balloons\\nOptions: (A) Do rubber balloons or foil balloons stick to the wooden door longer after being rubbed on his hair? (B) Do rubber balloons stick to a cotton blanket or a wooden door longer after being rubbed on his hair? (C) Do rubber balloons stick to a wooden door or a metal door longer after being rubbed on his hair?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9732\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complete sentence?\\nContext: N/A\\nOptions: (A) Over the summer, my cousin Brenna visited many times. (B) Wanda is from Washington now she lives in Lancaster.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Over the summer, my cousin Brenna visited many times is a complete sentence. The subject is my cousin Brenna, and the verb is visited. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9738\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that the motorcycle's mass did not change.\\nThe gravitational potential energy stored between the motorcycle and Earth () as Stefan rode up the hill.\\nContext: Read the text about an object in motion.\\nStefan rode his motorcycle from the bottom of a hill to the top of the hill.\\nOptions: (A) stayed the same (B) decreased (C) increased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between the motorcycle and the center of Earth changed.\\nThe top of the hill is higher than the bottom of the hill. As Stefan rode toward the top of the hill, the distance between the motorcycle and the center of Earth increased. So, the gravitational potential energy stored between the motorcycle and Earth increased as Stefan rode up the hill. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9744\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the solid.\\nContext: N/A\\nOptions: (A) grape juice (B) water from a faucet (C) air from a hair dryer (D) screwdriver\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. The air from a hair dryer is a gas. A gas expands to fill a space. A hair dryer uses a fan to blow warm air out. When the air leaves the hair dryer, the air expands to fill a much large space.\\nThe water from a faucet is a liquid. A liquid takes the shape of any container it is in. If you put water from a faucet into a container, the water will take the shape of that container. But the water will still take up the same amount of space.\\nA screwdriver is a solid. A solid has a size and shape of its own. This screwdriver has a metal blade and a plastic handle. Both metal and plastic are solids.\\nGrape juice is a liquid. A liquid takes the shape of any container it is in. If you pour grape juice into a different container, the grape juice will take the shape of that container. But the grape juice will still take up the same amount of space. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9750\",\n    \"image\": \"9750\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Maryland (B) Washington, D.C. (C) Virginia (D) New York\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Maryland. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9762\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nLove is an ideal thing, marriage a real thing.\\n\\u2014Johann Wolfgang von Goethe\\nContext: N/A\\nOptions: (A) assonance (B) antithesis\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses antithesis, the contrasting of opposing ideas within a parallel grammatical structure.\\nGoethe contrasts love, an ideal thing, with marriage, a real thing. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9765\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nYou've reached Billy Soto's voice mail. Please leave a detailed message at the beep, and I will return your call at my earliest convenience.\\nContext: N/A\\nOptions: (A) verbal irony (B) onomatopoeia\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses onomatopoeia, a word that expresses a sound.\\nBeep represents the sound that tells the caller to start recording a message. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9770\",\n    \"image\": \"9770\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThere are twice as many ice planets as rocky planets.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that there are two ice planets and four rocky planets. So, there are half as many ice planets as rocky planets. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9772\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two bats. Which bat was moving at a lower speed?\\nContext: N/A\\nOptions: (A) a bat that moved 30miles in 5hours (B) a bat that moved 40miles in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving slower will go a shorter distance in that time. It is moving at a lower speed. Look at the distance each bat moved and the time it took to move that distance.\\nOne bat moved 30 miles in 5 hours.\\nThe other bat moved 40 miles in 5 hours.\\nNotice that each bat spent the same amount of time moving. The bat that moved 30 miles moved a shorter distance in that time. So, that bat must have moved at a lower speed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9783\",\n    \"image\": \"9783\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New Hampshire (B) Georgia (C) Rhode Island (D) Connecticut\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Rhode Island. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9784\",\n    \"image\": \"9784\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Southern Ocean (B) the Pacific Ocean (C) the Arctic Ocean (D) the Indian Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Southern Ocean.\\nThe Southern Ocean reaches from the shores of Antarctica to 60\\u00b0 South latitude. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9796\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nAndy can ride a motorcycle.\\nContext: Hint: Riding a motorcycle well takes practice.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to ride a motorcycle. Instead, many people learn how to ride. So, riding a motorcycle is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9799\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nDevon is good at knitting hats.\\nContext: Hint: People who can knit had to learn how to do it.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to knit. Instead, many people learn how to knit. Knitting well takes practice. So, knitting well is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9806\",\n    \"image\": \"9806\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is better adapted as a warning sign to ward off predators?\\nContext: Lionfish can release venom from the spines on their brightly colored bodies. The bright colors serve as a warning sign that the animal is venomous. The 's skin is adapted to ward off predators.\\nFigure: lionfish.\\nOptions: (A) lichen katydid (B) flamboyant cuttlefish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the lionfish.\\nThe lionfish has venomous spines and brightly colored skin. Its skin is adapted to ward off predators. The bright colors serve as a warning sign that the lionfish is venomous.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe flamboyant cuttlefish has a poisonous body with brightly colored skin. Its skin is adapted to ward off predators.\\nThe lichen katydid has green and white patches on its body. Its skin is not adapted to be a warning sign that wards off predators. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9809\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Use the evidence in the text to select the photosynthetic organism.\\nContext: N/A\\nOptions: (A) Common fig plants are grown around the world for their fruit. The fig plants use carbon dioxide and water to make food. (B) Double-eyed fig parrots live in the forests of Australia and New Guinea. These parrots rely on figs and other plants for food.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms that carry out photosynthesis are called photosynthetic organisms. During photosynthesis, these organisms use light energy to turn water and carbon dioxide into sugars and oxygen.\\nPhotosynthetic organisms also often have the following characteristics:\\nThey are producers, which are organisms that make their own food inside their cells. Producers don't usually eat other organisms.\\nTheir cells contain chloroplasts. Chloroplasts are cell parts where photosynthesis occurs.\\nTheir chloroplasts often contain chlorophyll, which is green. Chlorophyll captures energy from sunlight to power photosynthesis.\\nThey use the sugars they make during photosynthesis as food. This food provides the organisms with the energy they need to live. This organism is photosynthetic:\\nThe text tells you that common fig plants use carbon dioxide and water to make food. This is evidence that the common fig is a photosynthetic organism.\\nThis organism is not photosynthetic:\\nThe text does not provide evidence that the double-eyed fig parrot is photosynthetic. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9811\",\n    \"image\": \"9811\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Jardines de la Reina National Park ecosystem?\\nContext: Figure: Jardines de la Reina National Park.\\nJardines de la Reina National Park is a tropical coral reef ecosystem near the southern coast of Cuba.\\nOptions: (A) It has bright sunlight. It also has shallow water. (B) It has water with not much salt. It also has only a few types of organisms.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A tropical coral reef is a type of ecosystem. Tropical coral reefs have the following features: shallow, salty water, bright sunlight, and many different types of organisms. So, Jardines de la Reina National Park has bright sunlight. It also has shallow water. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9814\",\n    \"image\": \"9814\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample B (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample A has more mass than each particle in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9823\",\n    \"image\": \"9823\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring that have horns to offspring that do not have horns? Choose the most likely ratio.\\nContext: In a group of cows, some individuals have horns and others do not. In this group, the gene for the horns trait has two alleles. The allele for having horns (h) is recessive to the allele for not having horns (H).\\nThis Punnett square shows a cross between two cows.\\nOptions: (A) 3:1 (B) 2:2 (C) 1:3 (D) 4:0 (E) 0:4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring that do or do not have horns, consider whether each phenotype is the dominant or recessive allele's version of the horns trait. The question tells you that the h allele, which is for having horns, is recessive to the H allele, which is for not having horns.\\nHaving horns is the recessive allele's version of the horns trait. A cow with the recessive version of the horns trait must have only recessive alleles for the horns gene. So, offspring that have horns must have the genotype hh.\\nThere are 0 boxes in the Punnett square with the genotype hh.\\nNot having horns is the dominant allele's version of the horns trait. A cow with the dominant version of the horns trait must have at least one dominant allele for the horns gene. So, offspring that do not have horns must have the genotype HH or Hh.\\nAll 4 boxes in the Punnett square have the genotype HH or Hh.\\nSo, the expected ratio of offspring that have horns to offspring that do not have horns is 0:4. This means that, based on the Punnett square, this cross will never produce offspring that have horns. Instead, this cross is expected to always produce offspring that do not have horns. The answer is E.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9834\",\n    \"image\": \"9834\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe volume of Uranus is less than ten times the volume of Neptune.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, first compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\nTo multiply a number written in scientific notation by a power of 10, write the multiple of 10 as 10 raised to an exponent. Then, add the exponents. For example:\\n1.43 x 10^15 \\u00b7 1000\\n= 1.43 x 10^15 \\u00b7 10^3\\n= 1.43 x 10^(15 + 3)\\n= 1.43 x 10^18\\n To determine if this statement is true, calculate the value of ten times the volume of Neptune.\\nThen compare the result to the volume of Uranus. The volume of Uranus is 6.83 x 10^13 km^3, which is less than 6.25 x 10^14 km^3. So, the volume of Uranus is less than ten times the volume of Neptune. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9840\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a play?\\nContext: N/A\\nOptions: (A) ***Sale or Return*** (B) \\\"Sale or Return\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, or article should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A play should be in italics.\\nThe correct title is **Sale or Return**. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9846\",\n    \"image\": \"9846\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nIodine is ().\\nContext: The model below represents a molecule of iodine. Iodine is found in some types of disinfectants.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All substances are made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the chemical element boron is B, and the symbol for the chemical element chlorine is Cl.\\nScientists can use models to represent molecules. A ball-and-stick model of a molecule is shown below. This model represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent chemical bonds. Notice how each ball is labeled with a symbol for a chemical element. The ball represents one atom of that element. Count the number of chemical elements represented in the model. Then, decide if iodine is an elementary substance or a compound.\\nIn this model, both balls are labeled with I. So, the model shows you that iodine is made of one chemical element.\\nSubstances made of only one chemical element are elementary substances. So, iodine is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9855\",\n    \"image\": \"9855\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of South Dakota?\\nContext: N/A\\nOptions: (A) Pierre (B) Rapid City (C) Indianapolis (D) Sacramento\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Pierre is the capital of South Dakota. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9866\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Jerry acquired this trait?\\nContext: Read the description of a trait.\\nJerry is good at identifying fish.\\nOptions: (A) Jerry was not born knowing how to identify different fish. He had to learn this skill. (B) Jerry has two pet fish. The fish live in a fish tank together.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9872\",\n    \"image\": \"9872\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the arrows, which of the following living things is an omnivore?\\nContext: Below is a food web from an ocean ecosystem. The ecosystem is in Monterey Bay, off the coast of California.\\nA food web is a model that shows how the matter eaten by living things moves through an ecosystem. The arrows show how matter moves through the food web.\\nOptions: (A) phytoplankton (B) plainfin midshipman\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nModels can make things in nature easier to understand. Models can be simpler than the things they represent. A food web is a model that shows where living things in an ecosystem get their food. If a food web showed every living thing in an ecosystem, the food web would be hard to understand. So, each food web shows how some living things in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one living thing to another. Each arrow shows the direction that matter moves when one living thing eats another living thing. An arrow starts from the living thing that is eaten. The arrow points to the living thing that is doing the eating.\\nA living thing in a food web can have more than one arrow pointing from it. This shows that the living thing is eaten by more than one other living thing in the food web.\\nA living thing in a food web can also have more than one arrow pointing to it. This shows that the living thing eats more than one other living thing in the food web. Omnivores are consumers that eat both producers and other consumers. So, an omnivore has arrows pointing to it from at least one producer and at least one consumer.\\nThe phytoplankton does not have any arrows pointing to it. So, the phytoplankton is a producer, not an omnivore.\\nThe plainfin midshipman has an arrow pointing to it from the phytoplankton, which is a producer. The plainfin midshipman also has an arrow pointing to it from the zooplankton, which is a consumer. The plainfin midshipman eats a producer and a consumer, so it is an omnivore. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9874\",\n    \"image\": \"9874\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe volume of Mars is more than three times as large as Mercury's.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. To determine if this statement is true, calculate the value of three times the volume of Mercury.\\nThen compare the result to the volume of Mars. The volume of Mars is 160 billion km^3, which is less than 180 billion km^3. So, the volume of Mars is less than three times as large as Mercury's. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9883\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that the whale's mass did not change.\\nThe gravitational potential energy stored between the whale and Earth () as the whale swam toward the surface.\\nContext: Read the text about an animal in motion.\\nA whale was swimming deep in the ocean. After a few minutes, the whale swam to the surface of the water to breathe.\\nOptions: (A) increased (B) stayed the same (C) decreased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between the whale and the center of Earth changed.\\nThe surface of the water is higher than the point where the whale was swimming deep in the ocean. As the whale swam toward the surface, the distance between the whale and the center of Earth increased. So, the gravitational potential energy stored between the whale and Earth increased as the whale swam toward the surface. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9884\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a rock.\\nContext: N/A\\nOptions: (A) Conglomerate is not made by living things. It is formed in nature. (B) An eggshell is made by a living thing. It is a solid. (C) Pumice is not a pure substance. It is not made by living things.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rocks are made of minerals. Here are some properties of rocks:\\nThey are solid.\\nThey are formed in nature.\\nThey are not made by living things.\\nThey are not pure substances. Compare the properties of each substance to the properties of rocks. Select the substance whose properties do not match those of rocks.\\nConglomerate is a rock.\\nAn eggshell is made by a living thing. But rocks are not made by living things.\\nSo, an eggshell is not a rock.\\nPumice is a rock. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9885\",\n    \"image\": \"9885\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nebraska?\\nContext: N/A\\nOptions: (A) Lincoln (B) Omaha (C) Savannah (D) Indianapolis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lincoln is the capital of Nebraska. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9888\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to do ten jumping jacks?\\nContext: Select the better estimate.\\nOptions: (A) 26 seconds (B) 26 minutes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to do ten jumping jacks is 26 seconds.\\n26 minutes is too slow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9891\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word ironic in its traditional sense?\\nContext: N/A\\nOptions: (A) Last winter, Levi took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, he just missed a few of his college friends, who had been in Florida the previous week. (B) Last winter, Levi took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, a rare snowstorm happened to hit Florida that week.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses ironic in its traditional sense: contrary to what was intended, often in an amusing way. It's ironic because Levi tried to get away from the snow but found himself in a snowstorm regardless.\\nLast winter, Levi took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, a rare snowstorm happened to hit Florida that week.\\nThe second text uses ironic in its nontraditional sense: marked by coincidence. It was a coincidence that Levi's friends were in Florida the week before.\\nLast winter, Levi took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, he just missed a few of his college friends, who had been in Florida the previous week.\\nMost style guides recommend to avoid using the nontraditional sense of the word ironic because it is generally considered incorrect. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9898\",\n    \"image\": \"9898\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Pennsylvania?\\nContext: N/A\\nOptions: (A) Pittsburgh (B) Philadelphia (C) Phoenix (D) Harrisburg\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Harrisburg is the capital of Pennsylvania. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9902\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a sentence fragment?\\nContext: N/A\\nOptions: (A) Our car was stuck in traffic we were late. (B) A strong, bold girl.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. A strong, bold girl is a sentence fragment. It is missing a verb. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9906\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nLee lives in a town with hot summers and freezing cold winters.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nLee lives in a town with hot summers and freezing cold winters.\\nThis passage tells you about the usual temperatures where Lee lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9913\",\n    \"image\": \"9913\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Kelsey's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nKelsey prepared ten buckets, each with one gallon of boiling water and three tablespoons of black fabric dye. Kelsey soaked white linen fabric squares in five of the buckets, and white cotton fabric squares in the other five buckets. All of the fabric squares were soaked for 15 minutes. After the fabric dried, Kelsey scored the darkness of the squares on a scale from light to dark. She compared the darkness of the linen fabric to the darkness of the cotton fabric.\\nFigure: fabric that has been dyed black.\\nOptions: (A) Does linen fabric turn darker than cotton fabric when soaked in a mixture of black dye and water? (B) Does fabric turn darker when soaked in a mixture of black dye and water for 15 minutes compared to 30 minutes?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9915\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mixture.\\nContext: N/A\\nOptions: (A) cereal (B) carbon\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A pure substance is made of only one type of matter.\\nA mixture is made of two or more types of matter mixed together. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9923\",\n    \"image\": \"9923\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is greater in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Both magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9931\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nI tell Jayla my opinions about her music.\\nContext: N/A\\nOptions: (A) past tense (B) present tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, tell. The verb tells you about something that is true or happening now. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9942\",\n    \"image\": \"9942\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alaska?\\nContext: N/A\\nOptions: (A) Fairbanks (B) Juneau (C) Tucson (D) Cheyenne\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Juneau is the capital of Alaska. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9943\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nvelvet - vote\\nContext: N/A\\nOptions: (A) victory (B) vase\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince victory is between the guide words velvet - vote, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9946\",\n    \"image\": \"9946\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) soft (B) flexible (C) slippery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA slippery object is hard to hold onto or stand on. All three objects are slippery.\\nA flexible object can be folded or bent without breaking easily. The wet ice cube is not flexible.\\nA soft object changes shape when pressed or squeezed. The butter is soft, but the wet ice cube is not.\\nThe property that all three objects have in common is slippery. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9948\",\n    \"image\": \"9948\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the south pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9953\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\n\\\"Bryan's personality is very Jekyll and Hyde,\\\" Marie told her brother.\\nContext: N/A\\nOptions: (A) literature (B) a song\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Jekyll and Hyde is literature.\\nRobert Louis Stevenson's popular Victorian novella Dr. Jekyll and Mr. Hyde tells the story of a man with two distinct personalities. Known to the world as a kind and highly respected doctor, at night he transforms into a monstrous person.\\nThe allusion Jekyll and Hyde means kind then cruel. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9960\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a play?\\nContext: N/A\\nOptions: (A) Alice in Space (B) alice in Space\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The word in is not important, so it should not be capitalized.\\nThe correct title is Alice in Space. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9974\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nTo err is human, to forgive, divine.\\n\\u2014Alexander Pope, An Essay on Criticism\\nContext: N/A\\nOptions: (A) apostrophe (B) antithesis\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses antithesis, the contrasting of opposing ideas within a parallel grammatical structure.\\nPope contrasts two ideas, erring and forgiving. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9977\",\n    \"image\": \"9977\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) bendable (B) bouncy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA bouncy object will bounce back from the floor if you drop it. The tin foil is not bouncy.\\nA bendable object can be bent without breaking. The tin foil is bendable. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9984\",\n    \"image\": \"9984\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nHalf of the planets are made mainly of gas or ice.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that of the eight planets, two are made mainly of gas and two are made mainly of ice. So, four of the eight, or half, of the planets are made mainly of gas or ice. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"9993\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is more flexible?\\nContext: N/A\\nOptions: (A) rock wall (B) clay ball\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Flexible is a property. A flexible material can be bent without breaking easily.\\nLook at each picture, one at a time. Imagine bending the material shown in each picture.\\nOf the choices, the clay ball is more flexible. If you squeeze a ball of wet clay, it will not break easily. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10001\",\n    \"image\": \"10001\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is smaller in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is smaller in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10015\",\n    \"image\": \"10015\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is these jeans made of?\\nContext: N/A\\nOptions: (A) metal (B) rock\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the jeans.\\nThe jeans are made of two different materials. The buttons and zipper of the jeans are made of metal. The rest of the jeans are made of cotton.\\nJeans are made of a type of cotton fabric called denim. Denim is a fabric woven in a special way. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10017\",\n    \"image\": \"10017\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month is the hottest on average in Adelaide?\\nContext: Use the graph to answer the question below.\\nOptions: (A) June, July, and August (B) April and May (C) January and February\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Temperature is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average temperature for each month. The average temperature can be used to describe the climate of a location.\\nA line graph can be used to show the average temperature each month. Months with higher dots on the graph have higher average temperatures. To describe the average temperature trends in Adelaide, look at the graph.\\nChoice \\\"Feb\\\" is incorrect.\\nChoice \\\"Apr\\\" is incorrect.\\nChoice \\\"May\\\" is incorrect.\\nChoice \\\"Jun\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Aug\\\" is incorrect.\\nChoice \\\"Jan\\\" is incorrect.\\nThe average temperatures in January and February are just above 20\\u00b0C. These months have the highest average temperatures of all of the months. So, they are hotter than the other months. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10020\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a song?\\nContext: N/A\\nOptions: (A) \\\"Do Your Ears Hang Low?\\\" (B) Do Your Ears Hang Low?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, or article should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A song should be in quotation marks.\\nThe correct title is \\\"Do Your Ears Hang Low?\\\" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10028\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentences.\\nAccording to the Tenth Amendment, the Constitution lists all of the powers given to the United States government. Any power not listed in the Constitution belongs to either the state governments or ().\\nContext: N/A\\nOptions: (A) the American people (B) the king or queen of Great Britain (C) private businesses (D) the military\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to the Tenth Amendment, the Constitution lists all of the powers given to the United States government. Any power not listed in the Constitution belongs to either the state governments or the American people. The full text of the Tenth Amendment is below. The powers not delegated to the United States by the Constitution, nor prohibited by it to the states, are reserved to the states respectively, or to the people. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10037\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a sunflower seed?\\nContext: Select the best estimate.\\nOptions: (A) 12 millimeters (B) 12 meters (C) 12 centimeters (D) 12 kilometers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a sunflower seed is 12 millimeters.\\n12 centimeters, 12 meters, and 12 kilometers are all too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10046\",\n    \"image\": \"10046\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Kevin and Lily trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nKevin and Lily open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Kevin wanted broccoli in his lunch and Lily was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Lily can trade her broccoli for Kevin's oranges. (B) Kevin can trade his tomatoes for Lily's sandwich. (C) Kevin can trade his tomatoes for Lily's broccoli. (D) Lily can trade her almonds for Kevin's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Kevin wanted broccoli in his lunch and Lily was hoping for tomatoes. Look at the labeled part of the images.\\nKevin has tomatoes. Lily has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10053\",\n    \"image\": \"10053\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two friends bought phones that cost different amounts but had identical batteries. After using the phones for a while, both friends had to turn them off to let the batteries cool. This table shows how the temperature of each battery changed over 5minutes.\\nOptions: (A) each battery . . . the surroundings (B) the surroundings . . . each battery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each battery decreased, which means that the thermal energy of each battery decreased. So, thermal energy was transferred from each battery to the surroundings. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10056\",\n    \"image\": \"10056\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following is on the map?\\nContext: Read the passage. Then answer the question.\\nThis is a map of Earth. The map uses color to show parts of Earth that are covered by land and water. The map uses white to show large sheets of ice and snow called glaciers.\\nThe map's legend, or information box, shows the feature that each color represents.\\nOptions: (A) water in clouds (B) water in rivers and lakes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The map uses blue to show liquid water in rivers, lakes, and oceans. It uses white to show water that is frozen in glaciers.\\nThe map shows only water that is on the surface of Earth. It does not show water that is underground or in clouds. Other maps might use different colors to show water that is underground or in clouds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10058\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nLeo picked up his pace on the trail as his spidey sense began to tingle.\\nContext: N/A\\nOptions: (A) a comic book (B) a song\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion spidey sense is a comic book.\\nThe comic book superhero Spider-Man possesses a spidey sense that warns him of impending trouble.\\nThe allusion spidey sense means a sense of danger coming. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10065\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nBernard once fell asleep with the window open and woke up with a horrible migraine. Since then, he's always made sure to close his window before going to sleep.\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) false causation: the assumption that because two things happened together, one caused the other (C) straw man: a misrepresentation of an opponent's position that makes it easier to argue against\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that an open window caused Bernard's migraine. However, that's not necessarily true. For instance, the migraine might have occurred for no particular reason while the window happened to be open. This illustrates a type of logical fallacy known as false causation. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10068\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nscream - slide\\nContext: N/A\\nOptions: (A) suitcase (B) shallow\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince shallow is between the guide words scream - slide, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10071\",\n    \"image\": \"10071\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nOf the four largest planets, three are made mainly of gas.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that the four largest planets are Jupiter, Saturn, Uranus, and Neptune. Jupiter and Saturn are made mainly of gas. Uranus and Neptune are made mainly of ice. So, of the four largest planets, two are made mainly of gas. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10074\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nPamela knows how to type.\\nContext: Hint: Typing takes practice.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to type. Instead, many people learn how to type. So, typing is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10090\",\n    \"image\": \"10090\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with a reddish-brown coat to offspring with a black coat? Choose the most likely ratio.\\nContext: In a group of horses, some individuals have a black coat and others have a reddish-brown coat. In this group, the gene for the coat color trait has two alleles. The allele for a black coat (L) is dominant over the allele for a reddish-brown coat (l).\\nThis Punnett square shows a cross between two horses.\\nOptions: (A) 1:3 (B) 4:0 (C) 3:1 (D) 0:4 (E) 2:2\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with a reddish-brown coat or a black coat, consider whether each phenotype is the dominant or recessive allele's version of the coat color trait. The question tells you that the L allele, which is for a black coat, is dominant over the l allele, which is for a reddish-brown coat.\\nA reddish-brown coat is the recessive allele's version of the coat color trait. A horse with the recessive version of the coat color trait must have only recessive alleles for the coat color gene. So, offspring with a reddish-brown coat must have the genotype ll.\\nThere are 2 boxes in the Punnett square with the genotype ll. These boxes are highlighted below.\\nA black coat is the dominant allele's version of the coat color trait. A horse with the dominant version of the coat color trait must have at least one dominant allele for the coat color gene. So, offspring with a black coat must have the genotype LL or Ll.\\nThere are 2 boxes in the Punnett square with the genotype LL or Ll. These boxes are highlighted below.\\nSo, the expected ratio of offspring with a reddish-brown coat to offspring with a black coat is 2:2. This means that, on average, this cross will produce 2 offspring with a reddish-brown coat for every 2 offspring with a black coat. The answer is E.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10091\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nDo you know if it's possible to make seawater safe for drinking?\\nContext: N/A\\nOptions: (A) interrogative (B) imperative (C) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence asks something, and it ends with a question mark. It is an interrogative sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10094\",\n    \"image\": \"10094\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted for flight?\\nContext: s fly high above the ground in search of food. The vulture has wings instead of arms. It is adapted for flight.\\nFigure: Cape vulture.\\nOptions: (A) flying fox (B) European mole\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nArms, legs, flippers, and wings are different types of limbs. The type of limbs an animal has is an example of an adaptation. Animals' limbs can be adapted in different ways. For example, long legs might help an animal run fast. Flippers might help an animal swim. Wings might help an animal fly. Look at the picture of the Cape vulture.\\nThe Cape vulture has large, powerful wings. It is adapted for flight. Long, powerful wings help the Cape vulture travel long distances by air.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe flying fox has large, powerful wings. It is adapted for flight.\\nThe European mole has short legs. It is not adapted for flight. The European mole uses its legs for crawling. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10097\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a caterpillar?\\nContext: Select the best estimate.\\nOptions: (A) 21 meters (B) 21 centimeters (C) 21 millimeters (D) 21 kilometers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a caterpillar is 21 millimeters.\\n21 centimeters, 21 meters, and 21 kilometers are all too long. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10099\",\n    \"image\": \"10099\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Indian Ocean (B) the Southern Ocean (C) the Pacific Ocean (D) the Arctic Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Arctic Ocean. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10101\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) Cleaned the cabin for Mrs. Copeland's family. (B) Zoe rode downhill on her bicycle she held onto the handles.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Zoe rode downhill on her bicycle she held onto the handles is a run-on sentence. It has two sentences that are joined without end punctuation: Zoe rode downhill on her bicycle and She held onto the handles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10103\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbaking a loaf of bread\\nmelting glass\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by cooling. (C) Both are caused by heating. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBaking a loaf of bread is a chemical change. The type of matter in the dough changes when it is baked. The dough turns into bread!\\nMelting glass is a change of state. So, it is a physical change. The glass changes from solid to liquid. But a different type of matter is not formed.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nMelting glass is a physical change. But baking bread is not.\\nBoth are chemical changes.\\nBaking bread is a chemical change. But melting glass is not.\\nBoth are caused by heating.\\nBoth changes are caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10114\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the temperature shown by this thermometer.\\nContext: N/A\\nOptions: (A) 25\\u00b0C (B) 50\\u00b0C (C) 15\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A thermometer is a tool that measures temperature. Temperature can be measured in degrees. The symbol for degrees is \\u00b0.\\nSome thermometers measure temperature in degrees Celsius (\\u00b0C). Celsius is one scale used to measure temperature.\\nThis is a tube thermometer. It has a tube filled with a red liquid.\\nThere is a Celsius scale along the right side of the tube. The top of the red liquid lines up with the number 30 on the scale. So, the temperature shown by this thermometer is 30\\u00b0C. Find the top of the red liquid.\\nNow look at the scale to the right. The top of the red liquid lines up with 25. So, the temperature is 25\\u00b0C. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10115\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) When Molly and her sister flew to Hawaii last month, the airline lost her baggage. (B) The airline lost Molly's baggage when she flew to Hawaii with her sister last month.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun her could refer to Molly's or her sister's.\\nWhen Molly and her sister flew to Hawaii last month, the airline lost her baggage.\\nThe first answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nThe airline lost Molly's baggage when she flew to Hawaii with her sister last month. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10124\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Eva and her husband met Amy for lunch at a small caf\\u00e9 around the block from her office. (B) Eva and her husband met Amy for lunch at a small caf\\u00e9 around the block from Amy's office.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun her could refer to Eva or Amy.\\nThe second answer choice shows a possible correction for the vague pronoun reference. Her has been replaced with Amy's.\\nEva and her husband met Amy for lunch at a small caf\\u00e9 around the block from Amy's office. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10128\",\n    \"image\": \"10128\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Pamela and Kimi's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nPamela and Kimi were making batches of concrete for a construction project. To make the concrete, they mixed together dry cement powder, gravel, and water. Then, they checked if each batch was firm enough using a test called a slump test.\\nThey poured some of the fresh concrete into an upside-down metal cone. They left the concrete in the metal cone for 30 seconds. Then, they lifted the cone to see if the concrete stayed in a cone shape or if it collapsed. If the concrete in a batch collapsed, they would know the batch should not be used.\\nFigure: preparing a concrete slump test.\\nOptions: (A) if the concrete from each batch took the same amount of time to dry (B) if a new batch of concrete was firm enough to use\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10130\",\n    \"image\": \"10130\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Can Leopardus wiedii cells make their own food?\\nContext: This organism is Leopardus wiedii. It is a member of the animal kingdom.\\nLeopardus wiedii is commonly called a margay. Margays live in the forest in Central and South America. Margays are nocturnal. A nocturnal animal sleeps most of the day and is awake at night.\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Leopardus wiedii is an animal. Animal cells cannot make their own food. Animals get their food by digesting other organisms. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10132\",\n    \"image\": \"10132\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Colin lit the charcoal in his grill to cook two identical salmon. He put one fish on the left half of the grill and one fish on the right half of the grill. This table shows how the temperature of each salmon changed over 6minutes.\\nOptions: (A) the surroundings . . . each salmon (B) each salmon . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each salmon increased, which means that the thermal energy of each salmon increased. So, thermal energy was transferred from the surroundings to each salmon. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10140\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is an eyelash?\\nContext: Select the best estimate.\\nOptions: (A) 8 kilometers (B) 8 meters (C) 8 centimeters (D) 8 millimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of an eyelash is 8 millimeters.\\n8 centimeters, 8 meters, and 8 kilometers are all too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10141\",\n    \"image\": \"10141\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with sweet fruit to offspring with sour fruit? Choose the most likely ratio.\\nContext: In a group of muskmelon plants, some individuals have sour fruit and others have sweet fruit. In this group, the gene for the fruit taste trait has two alleles. The allele for sour fruit (F) is dominant over the allele for sweet fruit (f).\\nThis Punnett square shows a cross between two muskmelon plants.\\nOptions: (A) 4:0 (B) 0:4 (C) 3:1 (D) 2:2 (E) 1:3\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with sweet fruit or sour fruit, consider whether each phenotype is the dominant or recessive allele's version of the fruit taste trait. The question tells you that the F allele, which is for sour fruit, is dominant over the f allele, which is for sweet fruit.\\nSweet fruit is the recessive allele's version of the fruit taste trait. A muskmelon plant with the recessive version of the fruit taste trait must have only recessive alleles for the fruit taste gene. So, offspring with sweet fruit must have the genotype ff.\\nThere are 2 boxes in the Punnett square with the genotype ff. These boxes are highlighted below.\\nSour fruit is the dominant allele's version of the fruit taste trait. A muskmelon plant with the dominant version of the fruit taste trait must have at least one dominant allele for the fruit taste gene. So, offspring with sour fruit must have the genotype FF or Ff.\\nThere are 2 boxes in the Punnett square with the genotype FF or Ff. These boxes are highlighted below.\\nSo, the expected ratio of offspring with sweet fruit to offspring with sour fruit is 2:2. This means that, on average, this cross will produce 2 offspring with sweet fruit for every 2 offspring with sour fruit. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10149\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nJuan's remark about your new car is clearly a case of sour grapes.\\nContext: N/A\\nOptions: (A) Greek mythology (B) a fable\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion sour grapes is a fable.\\nIn the fable \\\"The Fox and the Grapes,\\\" a fox tries unsuccessfully to reach a bunch of grapes. Because he cannot reach them and therefore cannot eat them, he tells himself that they must be sour.\\nThe allusion sour grapes means criticizing something because you can't have it. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10155\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the elementary substance.\\nContext: N/A\\nOptions: (A) methane (CH4) (B) water (H2O) (C) zinc (Zn)\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. Look at the chemical formula for each substance, and count the number of symbols in the formula. Then, decide if the substance is an elementary substance. The chemical formula for water contains two symbols: H for hydrogen and O for oxygen. So, water is made of two chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, water is a compound, not an elementary substance. The chemical formula for zinc contains one symbol: Zn. So, zinc is made of one chemical element. Substances that are made of one chemical element are elementary substances. So, zinc is an elementary substance. The chemical formula for methane contains two symbols: C for carbon and H for hydrogen. So, methane is made of two chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, methane is a compound, not an elementary substance. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10159\",\n    \"image\": \"10159\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Montana?\\nContext: N/A\\nOptions: (A) Cheyenne (B) Helena (C) Billings (D) Missoula\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Helena is the capital of Montana. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10164\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nMrs. Crosby decided not to argue with the name her daughter had chosen for their new kitten, figuring it was a matter of a rose by any other name.\\nContext: N/A\\nOptions: (A) U.S. history (B) Shakespeare\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion a rose by any other name is Shakespeare.\\nIn Shakespeare's Romeo and Juliet, the two central characters are denied their love because they belong to warring families, the Montagues and Capulets. Juliet wonders how a mere family name can make someone an enemy, observing that a rose would smell sweet no matter what its name.\\nThe allusion a rose by any other name means something so special that what it's called seems unimportant. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10185\",\n    \"image\": \"10185\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Kansas?\\nContext: N/A\\nOptions: (A) Jefferson City (B) Topeka (C) Reno (D) Lansing\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Topeka is the capital of Kansas. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10188\",\n    \"image\": \"10188\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) the Marshall Islands (B) New Zealand (C) Australia (D) Papua New Guinea\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is New Zealand. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10210\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to drink a small glass of water?\\nContext: Select the better estimate.\\nOptions: (A) 40 seconds (B) 40 hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to drink a small glass of water is 40 seconds.\\n40 hours is too slow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10220\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nRight after Marvin moved into the apartment, our washing machine broke. He'd better tell us how he broke it.\\nContext: N/A\\nOptions: (A) false causation: the assumption that because two things happened together, one caused the other (B) hasty generalization: a very broad claim based on very little evidence\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Marvin is responsible for the broken washing machine. However, the fact that the machine stopped working soon after Marvin moved in doesn't necessarily mean that he caused the machine to break. This illustrates a type of logical fallacy known as false causation. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10225\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nKevin lives in a city that is often covered by thick stratus clouds.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nKevin lives in a city that is often covered by thick stratus clouds.\\nThis passage tells you about the usual clouds where Kevin lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10238\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Gabby acquired this trait?\\nContext: Read the description of a trait.\\nGabby is good at identifying birds from their calls.\\nOptions: (A) Gabby was not born knowing how to identify different bird calls. She had to learn this skill. (B) Gabby likes to photograph birds at the zoo.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10240\",\n    \"image\": \"10240\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Arctic Ocean (B) the Atlantic Ocean (C) the Indian Ocean (D) the Southern Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Arctic Ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10244\",\n    \"image\": \"10244\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Sebastian's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nSebastian was an aerospace engineer who was developing a parachute for a spacecraft that would land on Mars. He needed to add a vent at the center of the parachute so the spacecraft would land smoothly. However, the spacecraft would have to travel at a high speed before landing. If the vent was too big or too small, the parachute might swing wildly at this speed. The movement could damage the spacecraft.\\nSo, to help decide how big the vent should be, Sebastian put a parachute with a 1 m vent in a wind tunnel. The wind tunnel made it seem like the parachute was moving at 200 km per hour. He observed the parachute to see how much it swung.\\nFigure: a spacecraft's parachute in a wind tunnel.\\nOptions: (A) how steady a parachute with a 1 m vent was at 200 km per hour (B) whether a parachute with a 1 m vent would swing too much at 400 km per hour (C) if the spacecraft was damaged when using a parachute with a 1 m vent going 200 km per hour\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10245\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word pour on a dictionary page with the following guide words?\\npatience - pulley\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince pour is between the guide words patience - pulley, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10246\",\n    \"image\": \"10246\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the air inside a basketball a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a liquid (B) a solid (C) a gas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. The air inside a basketball is a gas. A gas expands to fill a space.\\nThe air fills all the space inside the basketball. If air leaks out, it will expand into the space around the ball. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10247\",\n    \"image\": \"10247\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Mississippi?\\nContext: N/A\\nOptions: (A) Birmingham (B) Saint Paul (C) Biloxi (D) Jackson\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jackson is the capital of Mississippi. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10248\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the living thing.\\nContext: N/A\\nOptions: (A) flower pot (B) computer (C) raspberry bush (D) airplane\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All living things are made up of cells. Plants, animals, and some fungi have many cells. Other living things are made up of just one cell.\\nAll living things need food and water. Water helps living things break down food and remove waste. Food gives living things energy. They use energy from food to grow and change.\\nAll living things sense changes in their environment. Living things might sense changes by seeing, smelling, hearing, or feeling. Living things can respond to the changes they sense. An airplane is not a living thing.\\nAn airplane does not have all the traits of a living thing. It needs energy to fly, but it does not eat food. Airplanes get energy from gasoline or other fuel. They do not grow.\\nA raspberry bush is a living thing.\\nRaspberry bushes grow and respond to their environment. They need food and water. Raspberry bushes are made up of many cells.\\nRaspberry bushes are plants. They make their own food using water, carbon dioxide, and energy from sunlight.\\nA computer is not a living thing.\\nA computer does not have all the traits of a living thing. It does many useful things, and even responds to the world around it. But it does not grow. It does not need food or water.\\nA flower pot is not a living thing.\\nFlower pots do not have all of the traits of living things. They do not grow or respond to their environment. They do not need food or water. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10250\",\n    \"image\": \"10250\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Barbara's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nBarbara prepared ten buckets, each with one gallon of boiling water and three tablespoons of black fabric dye. Barbara soaked white linen fabric squares in five of the buckets, and white cotton fabric squares in the other five buckets. All of the fabric squares were soaked for 15 minutes. After the fabric dried, Barbara scored the darkness of the squares on a scale from light to dark. She compared the darkness of the linen fabric to the darkness of the cotton fabric.\\nFigure: fabric that has been dyed black.\\nOptions: (A) Does fabric turn darker when soaked in a mixture of black dye and water for 15 minutes compared to 30 minutes? (B) Does linen fabric turn darker than cotton fabric when soaked in a mixture of black dye and water?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10254\",\n    \"image\": \"10254\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is greater in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10256\",\n    \"image\": \"10256\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution A (B) Solution B (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution B has more green particles per milliliter. So, Solution B has a higher concentration of green particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10257\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a test tube?\\nContext: Select the better estimate.\\nOptions: (A) 11 milliliters (B) 11 liters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a test tube is 11 milliliters.\\n11 liters is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10264\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Insomnia is a sleep disorder in which people have difficulty falling asleep and staying asleep. (B) People who have a sleep disorder called insomnia sometimes can't fall asleep or stay asleep.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses a contraction (can't).\\nThe first sentence does not use a contraction, so it is more formal. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10266\",\n    \"image\": \"10266\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Massachusetts (B) Maryland (C) North Carolina (D) New Hampshire\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New Hampshire.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10268\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Tara investigate with an experiment?\\nContext: Tara leaves some chocolates in her jacket pocket. When she finds the chocolates later, she notices that some of them have melted. She wonders what factors affect how quickly chocolate melts. So, she decides to design an experiment. She has the following supplies available:\\none bar of milk chocolate\\none bar of dark chocolate\\na stove\\na pot\\nOptions: (A) Does dark chocolate or white chocolate melt faster when heated on the stove? (B) Does milk chocolate melt faster when heated in a microwave or on a stove? (C) Does milk chocolate or dark chocolate melt faster when heated on the stove?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10271\",\n    \"image\": \"10271\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these continents does the prime meridian intersect?\\nContext: N/A\\nOptions: (A) Europe (B) Australia (C) North America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lines of latitude and lines of longitude are imaginary lines drawn on some globes and maps. They can help you find places on globes and maps.\\nLines of latitude show how far north or south a place is. We use units called degrees to describe how far a place is from the equator. The equator is the line located at 0\\u00b0 latitude. We start counting degrees from there.\\nLines north of the equator are labeled N for north. Lines south of the equator are labeled S for south. Lines of latitude are also called parallels because each line is parallel to the equator.\\nLines of longitude are also called meridians. They show how far east or west a place is. We use degrees to help describe how far a place is from the prime meridian. The prime meridian is the line located at 0\\u00b0 longitude. Lines west of the prime meridian are labeled W. Lines east of the prime meridian are labeled E. Meridians meet at the north and south poles.\\nThe equator goes all the way around the earth, but the prime meridian is different. It only goes from the North Pole to the South Pole on one side of the earth. On the opposite side of the globe is another special meridian. It is labeled both 180\\u00b0E and 180\\u00b0W.\\nTogether, lines of latitude and lines of longitude form a grid. You can use this grid to find the exact location of a place. The prime meridian is the line at 0\\u00b0 longitude. It intersects Europe. It does not intersect North America or Australia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10279\",\n    \"image\": \"10279\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Mount Rainier National Park ecosystem?\\nContext: Figure: Mount Rainier National Park.\\nMount Rainier National Park is a taiga ecosystem in Washington State.\\nOptions: (A) It has long, cold winters. It also has many evergreen trees. (B) It has short, cool summers. It also has soil that is rich in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A taiga is a type of ecosystem. Taigas have the following features: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. So, Mount Rainier National Park has long, cold winters. It also has many evergreen trees. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10280\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear Mr. Carter, (B) Dear mr. carter,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Mr. Carter is capitalized because it is a proper noun. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10283\",\n    \"image\": \"10283\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is greater in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10286\",\n    \"image\": \"10286\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's scientific name?\\nContext: This organism is Buteo jamaicensis. It is also called a red-tailed hawk.\\nOptions: (A) red-tailed hawk (B) Buteo jamaicensis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Buteo jamaicensis is written in italics. The first word is capitalized, and the second word is not.\\nSo, Buteo jamaicensis is the scientific name. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10292\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a human front tooth?\\nContext: Select the best estimate.\\nOptions: (A) 11 kilometers (B) 11 meters (C) 11 millimeters (D) 11 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a human front tooth is 11 millimeters.\\n11 centimeters, 11 meters, and 11 kilometers are all too long. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10294\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complex sentence?\\nContext: N/A\\nOptions: (A) Letters and packages were sent to the mail room from a chute on the fourth floor. (B) After Shelby returned from the Gal\\u00e1pagos Islands, she showed Emmett and Justine pictures of all the exotic animals.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the complex sentence. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction after.\\nAfter Shelby returned from the Gal\\u00e1pagos Islands, she showed Emmett and Justine pictures of all the exotic animals. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10300\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nravenous - rise\\nContext: N/A\\nOptions: (A) reform (B) rudder\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince reform is between the guide words ravenous - rise, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10306\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is carrying groceries a good or a service?\\nContext: N/A\\nOptions: (A) a good (B) a service\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Everything you can buy is either a good or a service.\\nA good is something you can touch or hold in your hands. For example, a hammer is a good.\\nA service is a job you pay someone else to do. For example, cooking food in a restaurant is a service. To decide whether carrying groceries is a good or a service, ask these questions:\\nIs carrying groceries something you can touch? No.\\nIs carrying groceries a job you might pay someone else to do? Yes.\\nSo, carrying groceries is a service. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10307\",\n    \"image\": \"10307\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) South America (B) North America (C) Asia (D) Antarctica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Asia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10314\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word factoid in its traditional sense?\\nContext: N/A\\nOptions: (A) Herman seemed to know a lot about African wildlife, but it turned out that his knowledge was mostly based on factoids gleaned from unreliable websites. (B) Herman subscribed to an online newsletter about African wildlife; he enjoyed receiving daily factoids about the wild animals' natural habitats and behavior.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses factoid in its traditional sense: something made up presented as a true fact.\\nHerman seemed to know a lot about African wildlife, but it turned out that his knowledge was mostly based on factoids gleaned from unreliable websites.\\nThe first text uses factoid in its nontraditional sense: a trivial but true fact.\\nHerman subscribed to an online newsletter about African wildlife; he enjoyed receiving daily factoids about the wild animals' natural habitats and behavior.\\nMost style guides recommend to use the traditional sense of the word factoid because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10318\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nDarnel has naturally black hair.\\nContext: Hint: Some people dye their hair. But this does not change their natural hair color.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Humans do not choose their natural hair color. Instead, children get their natural hair color from their parents. So, Darnel's hair color is an inherited trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10319\",\n    \"image\": \"10319\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Nepal.\\nA group of climbers were happy about the warm temperatures during their hike last Thursday. They were hiking in Nepal, which is home to Mount Everest.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nA group of climbers were happy about the warm temperatures during their hike last Thursday. They were hiking in Nepal, which is home to Mount Everest.\\nThe underlined part of the passage tells you about the temperature in Nepal last Thursday. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10322\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a clock a good or a service?\\nContext: N/A\\nOptions: (A) a good (B) a service\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Everything you can buy is either a good or a service.\\nA good is something you can touch or hold in your hands. For example, a hammer is a good.\\nA service is a job you pay someone else to do. For example, cooking food in a restaurant is a service. To decide whether a clock is a good or a service, ask these questions:\\nIs a clock something you can touch? Yes.\\nIs a clock a job you might pay someone else to do? No.\\nSo, a clock is a good. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10324\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a mineral.\\nContext: N/A\\nOptions: (A) Aquamarine is not made by living things. It is formed in nature. (B) Cotton is made by living things. It is not a pure substance. (C) Biotite is a solid. It is a pure substance.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Compare the properties of each substance to the properties of minerals. Select the substance whose properties do not match those of minerals.\\nAquamarine is a mineral.\\nBiotite is a mineral.\\nCotton is made by living things. But minerals are not made by living things.\\nCotton is not a pure substance. But all minerals are pure substances.\\nSo, cotton is not a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10330\",\n    \"image\": \"10330\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Texas?\\nContext: N/A\\nOptions: (A) Raleigh (B) Montgomery (C) Austin (D) Dallas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Austin is the capital of Texas. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10334\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nDid you really vote for Jayce as class treasurer? Didn't you hear that his uncle was imprisoned for embezzling $1.5 million?\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) guilt by association: a negative association intended to discredit someone or something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Jayce can't be trusted with money, because his uncle embezzled money. However, even though his uncle couldn't be trusted with money, that doesn't necessarily mean that Jayce can't be trusted with it. This illustrates a type of logical fallacy known as guilt by association. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10335\",\n    \"image\": \"10335\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the south pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10337\",\n    \"image\": \"10337\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 1. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10338\",\n    \"image\": \"10338\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) stretchy (B) yellow\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nYellow is a color.\\nThis color is yellow. The helium balloons are not yellow.\\nA stretchy object gets longer when you pull on it. The helium balloons are stretchy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10344\",\n    \"image\": \"10344\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nNeptune's volume is more than 100 times as large as Earth's.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, first compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\nTo multiply a number written in scientific notation by a power of 10, write the multiple of 10 as 10 raised to an exponent. Then, add the exponents. For example:\\n1.43 x 10^15 \\u00b7 1000\\n= 1.43 x 10^15 \\u00b7 10^3\\n= 1.43 x 10^(15 + 3)\\n= 1.43 x 10^18\\n To determine if this statement is true, calculate the value of 100 times the volume of Earth.\\nThen compare the result to the volume of Neptune. The volume of Neptune is 6.25 x 10^13 km^3, which is less than 1.08 x 10^14 km^3. So, Neptune's volume is less than 100 times as large as Earth's. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10345\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMayor Hoffman wants to create more bicycle lanes in Norwood. Why is he forcing us to give up our cars and bike everywhere?\\nContext: N/A\\nOptions: (A) straw man: a misrepresentation of an opponent's position that makes it easier to argue against (B) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that creating more bike lanes means that Mayor Hoffman thinks that everyone should ride bicycles instead of cars. However, the fact that Mayor Hoffman wants more bike lanes doesn't necessarily suggest that the mayor is opposed to other forms of transportation. This illustrates a type of logical fallacy known as a straw man. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10352\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nsnails growing shells\\nphotosynthesis\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are chemical changes. (C) Both are only physical changes. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nSnails growing shells is a chemical change. A snail's body uses calcium from its food to make a new molecule called calcium carbonate. This calcium carbonate is used to grow the shell.\\nPhotosynthesis is a chemical change. Plants make sugar using carbon dioxide, water, and energy from sunlight.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10356\",\n    \"image\": \"10356\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Why are deserts so dry?\\nContext: Read the passage about deserts.\\nDeserts are places that get very little rain. In fact, deserts are the driest places on the planet. In some deserts, it doesn't rain a drop for months or even years. One desert in the country of Chile didn't get any rain for fourteen years!\\nMany people think that all deserts are hot and sandy. But there are cold deserts, too. The world's largest desert, Antarctica, is covered with ice. Antarctica is the coldest place on Earth!\\nOptions: (A) The sand soaks up all the rain. (B) They don't get very much rain.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the passage. It tells you why deserts are so dry.\\nDeserts are places that get very little rain. In fact, deserts are the driest places on the planet. In some deserts, it doesn't rain a drop for months or even years. One desert in the country of Chile didn't get any rain for fourteen years! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10365\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which press release is more formal?\\nContext: N/A\\nOptions: (A) On November 19, the Campbell Amphitheater will host area musicians vying for top honors in the fourth annual Jam-a-thon. (B) On Nov. 19, musicians from all over town will battle it out in the fourth annual Jam-a-thon, happening at the amphitheater.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The first press release is more formal. It uses more elevated language (area musicians, top honors). The other press release uses idioms (battle it out) and abbreviations (Nov.). The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10374\",\n    \"image\": \"10374\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) Antarctica (C) North America (D) South America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is North America. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10380\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe soul is born old but grows young. That is the comedy of life. And the body is born young and grows old. That is life's tragedy.\\n\\u2014Oscar Wilde, A Woman of No Importance\\nContext: N/A\\nOptions: (A) chiasmus (B) apostrophe\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses chiasmus, an expression in which the second half parallels the first but reverses the order of words.\\nThe third sentence reverses the order of the words old and young relative to the first sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10385\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Vijay starts to pull the wagon across the yard. To move the wagon at the same speed each time, which friend does Vijay need to pull with a larger force?\\nContext: Vijay gives two friends a ride in his wagon. One friend sits in the wagon at a time.\\nOptions: (A) a friend who weighs 21 pounds (B) a friend who weighs 28 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull.\\nA force can make an object start moving or stop an object that is moving. A force can also make an object speed up, slow down, or change direction.\\nForces can be different sizes.\\nThink about trying to move a heavy object and a light object. Imagine you want to move them at the same speed. You will need to use a larger force to move the heavy object. Look for the friend who is heavier.\\nA friend who weighs 28 pounds is heavier than a friend who weighs 21 pounds. So, to move the wagon at the same speed each time, Vijay needs to use a larger force to start moving the wagon with a friend who weighs 28 pounds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10391\",\n    \"image\": \"10391\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this pool toy made of?\\nContext: N/A\\nOptions: (A) plastic (B) wool\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials. Look at the picture of the pool toy.\\nThe pool toy is made of plastic.\\nMany pool toys are filled with air. The air inside the toy helps it float in water. Other pool toys are made of styrofoam. Styrofoam floats, even when it is not filled with air. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10399\",\n    \"image\": \"10399\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the red-billed gull.\\nContext: This organism is a red-billed gull. Its scientific name is Chroicocephalus scopulinus.\\nOptions: (A) Haliaeetus leucocephalus (B) Chroicocephalus ridibundus (C) Chroicocephalus scopulinus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A red-billed gull's scientific name is Chroicocephalus scopulinus.\\nChroicocephalus scopulinus has the same scientific name as a red-billed gull. So, these organisms are in the same species.\\nHaliaeetus leucocephalus does not have the same scientific name as a red-billed gull. So, Chroicocephalus scopulinus and Haliaeetus leucocephalus are not in the same species.\\nChroicocephalus scopulinus is in the same genus as Chroicocephalus ridibundus, but they are not in the same species.\\nOrganisms in the same species have the same scientific names. Chroicocephalus scopulinus and Chroicocephalus ridibundus are different species within the same genus. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10406\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nCaleb described the situation he was facing with his boss as a catch-22.\\nContext: N/A\\nOptions: (A) literature (B) a poem\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion catch-22 is literature.\\nJoseph Heller coined the term \\\"catch-22\\\" in his 1961 novel of the same name. In the novel, if an army pilot wants to avoid dangerous missions, he must be deemed mentally unfit; however, his desire to stay safe proves his sanity, so he can never be excused from a mission. Heller called this sort of predicament or dilemma a catch-22.\\nThe allusion catch-22 means a no-win situation. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10407\",\n    \"image\": \"10407\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Rhode Island?\\nContext: N/A\\nOptions: (A) Annapolis (B) Newport (C) Providence (D) Boston\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Providence is the capital of Rhode Island. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10408\",\n    \"image\": \"10408\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Jersey?\\nContext: N/A\\nOptions: (A) Hartford (B) Newark (C) Trenton (D) Jersey City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Trenton is the capital of New Jersey. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10411\",\n    \"image\": \"10411\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Can Danio rerio cells make their own food?\\nContext: This organism is Danio rerio. It is a member of the animal kingdom.\\nDanio rerio is commonly called a zebrafish. Young zebrafish are see-through! Scientists can easily observe their insides. This trait makes zebrafish a useful organism for scientists to study.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Danio rerio is an animal. Animal cells cannot make their own food. Animals get their food by digesting other organisms. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10412\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) \\\"Strong to the Hoop\\\" (B) ***Strong to the Hoop***\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A book should be in italics.\\nThe correct title is **Strong to the Hoop**. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10419\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nAgainst all odds, the () train eventually reached the crest of the hill.\\nContext: N/A\\nOptions: (A) run-down (B) wheezing\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word wheezing. It describes the train as if it were a person who is out of breath. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10420\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence uses a metaphor?\\nContext: N/A\\nOptions: (A) Mr. Holland's long legs were sunflower stalks. (B) Mr. Holland's legs were as long as sunflower stalks.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. This sentence uses a metaphor:\\nMr. Holland's long legs were sunflower stalks.\\nThe words legs and sunflower stalks are compared without the word like or as.\\nThis sentence uses a simile:\\nMr. Holland's legs were as long as sunflower stalks.\\nThe words legs and sunflower stalks are compared using the word as. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10423\",\n    \"image\": \"10423\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is apple juice a solid or a liquid?\\nContext: N/A\\nOptions: (A) a solid (B) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid and liquid are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid. Apple juice is a liquid. A liquid takes the shape of any container it is in.\\nIf you pour apple juice into a different container, the apple juice will take the shape of that container. But the apple juice will still take up the same amount of space. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10428\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nA tiny creature creeps along the vine.\\nContext: N/A\\nOptions: (A) past tense (B) future tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, creeps. The verb ends in -s and tells you about something that is true or happening now. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10434\",\n    \"image\": \"10434\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Mason's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nMason was an aerospace engineer who was developing a parachute for a spacecraft that would land on Mars. He needed to add a vent at the center of the parachute so the spacecraft would land smoothly. However, the spacecraft would have to travel at a high speed before landing. If the vent was too big or too small, the parachute might swing wildly at this speed. The movement could damage the spacecraft.\\nSo, to help decide how big the vent should be, Mason put a parachute with a 1 m vent in a wind tunnel. The wind tunnel made it seem like the parachute was moving at 200 km per hour. He observed the parachute to see how much it swung.\\nFigure: a spacecraft's parachute in a wind tunnel.\\nOptions: (A) how steady a parachute with a 1 m vent was at 200 km per hour (B) if the spacecraft was damaged when using a parachute with a 1 m vent going 200 km per hour (C) whether a parachute with a 1 m vent would swing too much at 400 km per hour\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10452\",\n    \"image\": \"10452\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Florida?\\nContext: N/A\\nOptions: (A) Orlando (B) Baton Rouge (C) Tallahassee (D) Tampa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Tallahassee is the capital of Florida. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10454\",\n    \"image\": \"10454\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Illinois?\\nContext: N/A\\nOptions: (A) Chicago (B) Springfield (C) Topeka (D) Annapolis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Springfield is the capital of Illinois. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10456\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the reptile.\\nContext: N/A\\nOptions: (A) green frog (B) olive toad (C) Nile crocodile (D) salmon\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Reptiles have scaly, waterproof skin. Most reptiles live on land. An olive toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole.\\nA green frog is an amphibian. It has moist skin and begins its life in water.\\nFrogs live near water or in damp places. Most frogs lay their eggs in water.\\nA salmon is a fish. It lives underwater. It has fins, not limbs.\\nUnlike most other fish, salmon can live in both fresh water and salt water.\\nA Nile crocodile is a reptile. It has scaly, waterproof skin.\\nCrocodiles hunt their prey in or near water. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10457\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word nauseous in its traditional sense?\\nContext: N/A\\nOptions: (A) The odor emanating from the landfill made Wendy so nauseous that she had to roll up the car windows as she drove past. (B) Wendy couldn't tolerate the nauseous odor emanating from the landfill, so she rolled up her car windows as she drove past.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses nauseous in its traditional sense: causing disgust or nausea.\\nWendy couldn't tolerate the nauseous odor emanating from the landfill, so she rolled up her car windows as she drove past.\\nThe first text uses nauseous in its nontraditional sense: feeling disgusted or nauseated.\\nThe odor emanating from the landfill made Wendy so nauseous that she had to roll up the car windows as she drove past.\\nMost style guides recommend to use the traditional sense of the word nauseous because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10463\",\n    \"image\": \"10463\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Delaware (B) South Carolina (C) Pennsylvania (D) New Jersey\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Delaware. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10465\",\n    \"image\": \"10465\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New Hampshire (B) West Virginia (C) Virginia (D) New York\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New Hampshire.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10476\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nmixing sand and gravel\\ncrushing a mineral into powder\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are only physical changes. (C) Both are caused by cooling. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nMixing sand and gravel is a physical change. Together, the sand and gravel make a mixture. But making this mixture does not form a different type of matter.\\nCrushing a mineral into powder is a physical change. The mineral breaks into tiny pieces. But it is still made of the same type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10478\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe Thompson family is going to spend two weeks in Ocean City, but for Darell it will be a working vacation, since he'll be checking in with the office every day.\\nContext: N/A\\nOptions: (A) oxymoron (B) euphemism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nWorking vacation is a contradiction, because going on a vacation implies that you are taking a break from work. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10493\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a small candy bar?\\nContext: Select the better estimate.\\nOptions: (A) 50 kilograms (B) 50 grams\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of a small candy bar is 50 grams.\\n50 kilograms is too heavy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10496\",\n    \"image\": \"10496\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) smooth (B) blue\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA smooth object is not scratchy or rough. Both objects are smooth.\\nBlue is a color.\\nThis color is blue. Neither of the objects are blue.\\nThe property that both objects have in common is smooth. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10500\",\n    \"image\": \"10500\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Virginia (B) Connecticut (C) New Hampshire (D) Pennsylvania\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10512\",\n    \"image\": \"10512\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Rosa and Alexandra trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nRosa and Alexandra open their lunch boxes in the school cafeteria. Neither Rosa nor Alexandra got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nRosa's lunch Alexandra's lunch\\nOptions: (A) Rosa can trade her tomatoes for Alexandra's broccoli. (B) Rosa can trade her tomatoes for Alexandra's carrots. (C) Alexandra can trade her almonds for Rosa's tomatoes. (D) Alexandra can trade her broccoli for Rosa's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nRosa wants broccoli. Alexandra wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10513\",\n    \"image\": \"10513\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with yellow fruit to offspring with red fruit? Choose the most likely ratio.\\nContext: In a group of tomato plants, some individuals have red fruit and others have yellow fruit. In this group, the gene for the fruit color trait has two alleles. The allele for red fruit (F) is dominant over the allele for yellow fruit (f).\\nThis Punnett square shows a cross between two tomato plants.\\nOptions: (A) 0:4 (B) 2:2 (C) 1:3 (D) 4:0 (E) 3:1\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with yellow fruit or red fruit, consider whether each phenotype is the dominant or recessive allele's version of the fruit color trait. The question tells you that the F allele, which is for red fruit, is dominant over the f allele, which is for yellow fruit.\\nYellow fruit is the recessive allele's version of the fruit color trait. A tomato plant with the recessive version of the fruit color trait must have only recessive alleles for the fruit color gene. So, offspring with yellow fruit must have the genotype ff.\\nAll 4 boxes in the Punnett square have the genotype ff.\\nRed fruit is the dominant allele's version of the fruit color trait. A tomato plant with the dominant version of the fruit color trait must have at least one dominant allele for the fruit color gene. So, offspring with red fruit must have the genotype FF or Ff.\\nThere are 0 boxes in the Punnett square with the genotype FF or Ff.\\nSo, the expected ratio of offspring with yellow fruit to offspring with red fruit is 4:0. This means that, based on the Punnett square, this cross will always produce offspring with yellow fruit. This cross is expected to never produce offspring with red fruit. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10519\",\n    \"image\": \"10519\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two identical refrigerators in a restaurant kitchen lost power. The door of one fridge was slightly open, and the door of the other fridge was closed. This table shows how the temperature of each refrigerator changed over 10minutes.\\nOptions: (A) each refrigerator . . . the surroundings (B) the surroundings . . . each refrigerator\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each refrigerator increased, which means that the thermal energy of each refrigerator increased. So, thermal energy was transferred from the surroundings to each refrigerator. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10521\",\n    \"image\": \"10521\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe volume of Saturn is more than ten times the volume of Uranus.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, first compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\nTo multiply a number written in scientific notation by a power of 10, write the multiple of 10 as 10 raised to an exponent. Then, add the exponents. For example:\\n1.43 x 10^15 \\u00b7 1000\\n= 1.43 x 10^15 \\u00b7 10^3\\n= 1.43 x 10^(15 + 3)\\n= 1.43 x 10^18\\n To determine if this statement is true, calculate the value of ten times the volume of Uranus.\\nThen compare the result to the volume of Saturn. The volume of Saturn is 8.27 x 10^14 km^3, which is greater than 6.83 x 10^14 km^3. So, the volume of Saturn is more than ten times the volume of Uranus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10522\",\n    \"image\": \"10522\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of yellow particles?\\nContext: The diagram below is a model of two solutions. Each yellow ball represents one particle of solute.\\nOptions: (A) Solution A (B) neither; their concentrations are the same (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the yellow particles represent the solute. To figure out which solution has a higher concentration of yellow particles, look at both the number of yellow particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of yellow particles per milliliter.\\nSolution A has more yellow particles per milliliter. So, Solution A has a higher concentration of yellow particles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10523\",\n    \"image\": \"10523\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is smaller when there is a greater distance between the magnets. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nDistance affects the magnitude of the magnetic force. When there is a greater distance between magnets, the magnitude of the magnetic force between them is smaller.\\nThere is a greater distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is smaller in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10528\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nLucy and Carly will plant the seeds.\\nContext: N/A\\nOptions: (A) past tense (B) future tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, plant. The verb tells you about something that is going to happen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10536\",\n    \"image\": \"10536\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New York (B) Rhode Island (C) Delaware (D) Virginia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New York.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10537\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nnibble - nugget\\nContext: N/A\\nOptions: (A) narrow (B) nostril\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince nostril is between the guide words nibble - nugget, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10540\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nIf the government is allowed to start blocking websites, then soon they'll start banning books, and all we'll have to read is propaganda.\\nContext: N/A\\nOptions: (A) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences (B) appeal to nature: the assumption that natural things are always good (C) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that blocking websites will eventually lead to having only propaganda to read. However, this isn't necessarily true. This argument offers only one extreme and unlikely outcome. This illustrates a type of logical fallacy known as the slippery slope fallacy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10545\",\n    \"image\": \"10545\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nBoth magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10549\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complete sentence?\\nContext: N/A\\nOptions: (A) The eardrum is a part of the ear. (B) Gives the baby a bath.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. The eardrum is a part of the ear is a complete sentence. The subject is the eardrum, and the verb is is. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10550\",\n    \"image\": \"10550\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month is the wettest on average in Christchurch?\\nContext: Use the graph to answer the question below.\\nOptions: (A) April (B) December (C) May\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Christchurch, look at the graph.\\nChoice \\\"Apr\\\" is incorrect.\\nChoice \\\"May\\\" is incorrect.\\nChoice \\\"Dec\\\" is incorrect.\\nMay has an average monthly precipitation of about 70 millimeters. This is higher than in any other month. So, May is the wettest month on average. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10554\",\n    \"image\": \"10554\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Kentucky?\\nContext: N/A\\nOptions: (A) Pierre (B) Lexington (C) Frankfort (D) Jefferson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Frankfort is the capital of Kentucky. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10555\",\n    \"image\": \"10555\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is smaller in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is smaller in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10556\",\n    \"image\": \"10556\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) the Dominican Republic (B) Dominica (C) Trinidad and Tobago (D) Grenada\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Trinidad and Tobago. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10560\",\n    \"image\": \"10560\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Tara and Rosanne's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nTara and Rosanne were making batches of concrete for a construction project. To make the concrete, they mixed together dry cement powder, gravel, and water. Then, they checked if each batch was firm enough using a test called a slump test.\\nThey poured some of the fresh concrete into an upside-down metal cone. They left the concrete in the metal cone for 30 seconds. Then, they lifted the cone to see if the concrete stayed in a cone shape or if it collapsed. If the concrete in a batch collapsed, they would know the batch should not be used.\\nFigure: preparing a concrete slump test.\\nOptions: (A) if the concrete from each batch took the same amount of time to dry (B) if a new batch of concrete was firm enough to use\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10562\",\n    \"image\": \"10562\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nebraska?\\nContext: N/A\\nOptions: (A) Providence (B) Saint Paul (C) Lincoln (D) Kansas City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lincoln is the capital of Nebraska. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10563\",\n    \"image\": \"10563\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Sonoran Desert ecosystem?\\nContext: Figure: Sonoran Desert.\\nThe Sonoran Desert is a hot desert ecosystem in the southwestern United States and northwestern Mexico. This desert is home to wild saguaro cactus, which can grow over 70 feet tall.\\nOptions: (A) It has many different types of organisms. (B) It has thick, moist soil. (C) It has only a few types of organisms.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A hot desert is a type of ecosystem. Hot deserts have the following features: a small amount of rain, dry, thin soil, and many different types of organisms. So, the following statement describes the Sonoran Desert ecosystem: a small amount of rain, dry, thin soil, and many different types of organisms. It has many different types of organisms. The following statements do not describe the Sonoran Desert: a small amount of rain, dry, thin soil, and many different types of organisms. It has thick, moist soil. It has only a few types of organisms. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10565\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has less thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 200-gram glass of grape juice at a temperature of 15\\u00b0C (B) a 200-gram glass of grape juice at a temperature of 5\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. The two glasses of grape juice have the same mass but different temperatures. Since the 5\\u00b0C glass of grape juice is colder than the 15\\u00b0C glass of grape juice, it has less thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10568\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nMrs. McKenzie decided not to argue with the name her daughter had chosen for their new kitten, figuring it was a matter of a rose by any other name.\\nContext: N/A\\nOptions: (A) U.S. history (B) Shakespeare\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion a rose by any other name is Shakespeare.\\nIn Shakespeare's Romeo and Juliet, the two central characters are denied their love because they belong to warring families, the Montagues and Capulets. Juliet wonders how a mere family name can make someone an enemy, observing that a rose would smell sweet no matter what its name.\\nThe allusion a rose by any other name means something so special that what it's called seems unimportant. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10569\",\n    \"image\": \"10569\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) North America (C) South America (D) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Asia. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10576\",\n    \"image\": \"10576\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Tennessee (B) New Mexico (C) Rhode Island (D) Kansas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. Rhode Island is farthest north. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10577\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the water in a hot bath?\\nContext: Select the better estimate.\\nOptions: (A) 40\\u00b0F (B) 40\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the water in a hot bath is 40\\u00b0C.\\n40\\u00b0F is too cold. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10578\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the hyperbole in this text suggest?\\nAfter he finished the marathon, Dean collapsed into a chair and declared that he could no longer move a single muscle.\\nContext: N/A\\nOptions: (A) Dean was very tired and sore. (B) Dean became paralyzed.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode! The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nThe hyperbole could no longer move a single muscle suggests that Dean was very tired and sore. His muscles were not literally incapable of moving. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10579\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Precious's phenotype for the fur type trait?\\nContext: In a group of cats, some individuals have straight fur and others have curly fur. In this group, the gene for the fur type trait has two alleles. The allele for curly fur (f) is recessive to the allele for straight fur (F).\\nPrecious is a cat from this group. Precious has the homozygous genotype FF for the fur type gene.\\nOptions: (A) straight fur (B) curly fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Precious's genotype for the fur type gene is FF. Precious's genotype of FF has only F allelles. The F allele is for straight fur. So, Precious's phenotype for the fur type trait must be straight fur.\\nTo check this answer, consider whether Precious's alleles are dominant or recessive. The allele for curly fur (f) is recessive to the allele for straight fur (F). This means F is a dominant allele, and f is a recessive allele.\\nPrecious's genotype of FF has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Precious's phenotype for the fur type trait must be straight fur. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10580\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nThe Eighth Amendment prevents the government from using any \\\"cruel and unusual ()\\\".\\nContext: N/A\\nOptions: (A) punishments (B) taxes (C) technologies\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The Eighth Amendment prevents the government from using any \\\"cruel and unusual punishments.\\\" What makes a punishment \\\"cruel or unusual\\\"? The answer is not clear. The Eighth Amendment doesn't talk about specific punishments. Over time, Americans have changed their views on what is cruel and unusual. For example, the government decided in 2005 that it was cruel to put someone to death for a crime he or she committed before the age of 18. Today, Americans continue to question what is cruel and unusual. In the future, some punishments used today may be outlawed. The text of the Eighth Amendment is below. Does it have rules against anything else? Excessive bail shall not be required, nor excessive fines imposed, nor cruel and unusual punishments inflicted. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10595\",\n    \"image\": \"10595\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) rough (B) stretchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA stretchy object gets longer when you pull on it. The rock are not stretchy.\\nA rough object feels scratchy when you touch it. The rock are rough. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10600\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nThe maple leaf, which i Canada's national emblem, has been associated with the country since the 1700s.\\nContext: N/A\\nOptions: (A) compound-complex (B) compound (C) complex (D) simple\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is complex. It is made up of an independent clause and a dependent clause. The dependent clause begins with the relative pronoun which.\\nThe maple leaf, which is Canada's national emblem, has been associated with the country since the 1700 s. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10601\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nMrs. Lowery decided not to argue with the name her daughter had chosen for their new kitten, figuring it was a matter of a rose by any other name.\\nContext: N/A\\nOptions: (A) Shakespeare (B) U.S. history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion a rose by any other name is Shakespeare.\\nIn Shakespeare's Romeo and Juliet, the two central characters are denied their love because they belong to warring families, the Montagues and Capulets. Juliet wonders how a mere family name can make someone an enemy, observing that a rose would smell sweet no matter what its name.\\nThe allusion a rose by any other name means something so special that what it's called seems unimportant. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10602\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is this a run-on sentence?\\nBecause penguins are frightened by humans and difficult to approach, researchers from the University of Strasbourg used remote-controlled rovers outfitted as baby penguins to study their subjects.\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA run-on sentence is formed when two sentences are run together, joined by just a comma or by no punctuation at all. If only a comma is used, the run-on is called a comma splice.\\nThe band I'm in has been rehearsing daily, we have a concert in two weeks.\\nThe band I'm in has been rehearsing daily we have a concert in two weeks.\\nThere are several ways to fix a run-on sentence:\\nUse stronger punctuation, such as a period or a semicolon.\\nThe band I'm in has been rehearsing daily. We have a concert in two weeks.\\nThe band I'm in has been rehearsing daily; we have a concert in two weeks.\\nUse a comma and a coordinating conjunction to create a compound sentence. Coordinating conjunctions include and, but, or, and so.\\nThe band I'm in has been rehearsing daily, and we have a concert in two weeks.\\nUse a subordinating conjunction or a relative pronoun to create a complex sentence. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, and whose.\\nThe band I'm in has been rehearsing daily since we have a concert in two weeks. This is not a run-on sentence. It is not formed from two sentences that have been run together without appropriate punctuation.\\nBecause penguins are frightened by humans and difficult to approach, researchers from the University of Strasbourg used remote-controlled rovers outfitted as baby penguins to study their subjects. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10604\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a magazine?\\nContext: N/A\\nOptions: (A) \\\"Horse and Rider\\\" (B) ***Horse and Rider***\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A magazine should be in italics.\\nThe correct title is **Horse and Rider**. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10614\",\n    \"image\": \"10614\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of relationship is formed when an alpheid shrimp shares its burrow with a goby?\\nContext: Read the passage. Then answer the question.\\n\\nAlpheid shrimp are small crustaceans that build burrows, or underground shelters, in the sand. Alpheid shrimp are blind and are vulnerable to predators when they are outside of their burrows.\\nA shrimp can share its burrow with a fish called a goby. The goby acts as a lookout for the blind shrimp. When the shrimp leaves the safety of the burrow, it touches its antennae to the goby's tail. If a predator comes near, the goby flicks its tail, alerting the shrimp to the danger. Both animals then retreat to the safety of the burrow.\\nFigure: a goby and an alpheid shrimp at the entrance of a burrow.\\nOptions: (A) commensal (B) parasitic (C) mutualistic\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When two organisms of different species interact in a way that affects one or both organisms, they form a symbiotic relationship. The word symbiosis comes from a Greek word that means living together. Scientists define types of symbiotic relationships based on how each organism is affected.\\nThis table lists three common types of symbiotic relationships. It shows how each organism is affected in each type of symbiotic relationship.\\nType of symbiotic relationship | Organism of one species... | Organism of the other species...\\nCommensal | benefits | is not significantly affected\\nMutualistic | benefits | benefits\\nParasitic | benefits | is harmed (but not usually killed) When an alpheid shrimp shares its burrow with a goby, the goby alerts the shrimp about nearby predators. These alerts help the shrimp survive. So, the shrimp benefits from its relationship with the goby.\\nThe goby also receives protection from predators when it shares the shrimp's burrow. So, the goby also benefits from its relationship with the shrimp.\\nSince both the shrimp and the goby benefit, a mutualistic relationship is formed when an alpheid shrimp shares its burrow with a goby. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10616\",\n    \"image\": \"10616\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Delaware (B) Georgia (C) Indiana (D) Maryland\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Georgia. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10623\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na puddle freezing into ice on a cold night\\nbeating an egg\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are only physical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA puddle freezing into ice on a cold night is a change of state. So, it is a physical change. Liquid water freezes and becomes solid, but it is still made of water. A different type of matter is not formed.\\nBeating an egg is a physical change. Beating an egg mixes together the egg white, egg yolk, and some air. But mixing them together does not form a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nA puddle freezing is caused by cooling. But beating an egg is not. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10630\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does this Works Cited entry indicate about the cited work?\\nEncyclopedia of Indiana. New York: Somerset Publishers, 1993. Print.\\nContext: N/A\\nOptions: (A) Somerset is the place of publication. (B) It has no author. (C) It was published in 1983.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing research papers, you will often be asked to follow a particular style guide for your citations. One popular style guide is the Modern Language Association (MLA) Handbook.\\nBelow are the basic formats for some common types of Works Cited entries. Consult the MLA Handbook for a complete list.\\nBooks:\\nFormat | Author(s). Book Title. City of Publication: Publisher, Year of Publication. Medium of Publication.\\nExample | Austen, Jane. Pride and Prejudice. New York: Dover Publications, 1995. Print.\\nEssays, short stories, or poems in an anthology or book:\\nFormat | Author(s). \\\"Essay, Poem, or Short Story Title.\\\" Anthology or Book Title. Ed. Editor Name. City of Publication: Publisher, Year of Publication. Page Number(s). Medium of Publication.\\nExample | James, Henry. \\\"The Middle Years.\\\" The Oxford Book of American Short Stories. Ed. Joyce Carol Oates. Oxford: Oxford UP, 2013. 116-135. Print.\\nMagazine and newspaper articles:\\nFormat | Author(s). \\\"Article Title.\\\" Title of Magazine or Newspaper Date of Publication: Page(s). Medium of Publication.\\nExample | Hayes, David J., and James H. Stock. \\\"The Real Cost of Coal.\\\" New York Times 24 Mar. 2015: n. pag. Web. 25 Mar. 2015.\\nJournal articles:\\nFormat | Author(s). \\\"Article Title.\\\" Title of Journal Volume.Issue (Year): Page(s). Medium of Publication.\\nExample | Gillette, Jane, et al. \\\"Human Simulations of Vocabulary Learning.\\\" Cognition 73.2 (1999): 135-176. Print.\\nWeb pages:\\nFormat | Author(s). \\\"Page Title.\\\" Name of Website. Publisher, Date of Publication. Medium of Publication. Date of Access.\\nExample | Gunn, Janelle P., and Lauren E. Owens. \\\"How to Slash Sodium from Your Diet.\\\" Livestrong.com. Demand Media, 30 Mar. 2015. Web. 31 Mar. 2015.\\nAdditional guidelines:\\nAuthor Names. The first author's name is written in last name, first name format (Smith, Jane). Additional author names are written in first name last name format (Smith, Jane, and John Doe). If there are more than three authors, the first author's name is followed by \\\"et al.,\\\" which stands for and others (e.g., Smith, Jane, et al.).\\nMedium of Publication. Each entry must include information about what form the content was communicated in. The most common mediums are \\\"Print\\\" and \\\"Web,\\\" but other possibilities include \\\"Film,\\\" \\\"E-mail,\\\" and \\\"Lecture.\\\" Whenever the Medium of Publication is \\\"Web,\\\" the date of access (the day, month, and year the webpage was viewed) must be listed directly after the Medium of Publication.\\nEditors and Translators. If a work has an editor or a translator, this information must be added to the Works Cited entry using the appropriate abbreviation. \\\"Ed.\\\" stands for edited by. \\\"Trans.\\\" stands for translated by.\\nMissing Information. If a work has no known author, the author section of the citation is simply left out. If a work has no available page numbers, the abbreviation \\\"n. pag.\\\" is used instead. If a work has no available publication date, the abbreviation \\\"n.d.\\\" is used instead. If a work has no available publisher or no available city of publication, the abbreviation \\\"n.p.\\\" is used instead.\\n Look closely at the Works Cited entry:\\nEncyclopedia of Indiana. New York: Somerset Publishers, 1993. Print.\\nYou can tell that the cited work has no author because no name appears before the title, which is in italics. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10634\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nSmall pieces of rock are carried away by water.\\nContext: N/A\\nOptions: (A) volcanic eruption (B) erosion (C) earthquake\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10635\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nMia, please stay away from the ocean. You shouldn't go in the water until you know how to swim.\\nContext: N/A\\nOptions: (A) oxymoron (B) paradox\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a paradox, a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nYou shouldn't go in the water until you know how to swim at first appears to be contradictory, because it is impossible to learn how to swim without going in the water. However, it contains some truth: you should not go into deep or dangerous water without first knowing how to swim. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10649\",\n    \"image\": \"10649\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is smaller in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Both magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10654\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nDave can fly an airplane.\\nContext: Hint: Pilots have to learn how to fly an airplane.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to fly an airplane. Instead, some people learn how to fly airplanes. So, flying an airplane is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10655\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nbaseball - bottom\\nContext: N/A\\nOptions: (A) blow (B) brown\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince blow is between the guide words baseball - bottom, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10660\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a coffee pot?\\nContext: Select the best estimate.\\nOptions: (A) 12 fluid ounces (B) 12 cups (C) 12 gallons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a coffee pot is 12 cups.\\n12 fluid ounces is too little and 12 gallons is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10661\",\n    \"image\": \"10661\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes and shapes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10665\",\n    \"image\": \"10665\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's mouth is also adapted to eat plant matter?\\nContext: Goats are herbivores, or plant eaters. They eat grass and leaves. The 's mouth is adapted to grind up and eat plant matter.\\nFigure: goat.\\nOptions: (A) cougar (B) impala\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the goat.\\nThe goat has long jaws and flat teeth. Its mouth is adapted to eat plant matter. The long jaws can help the goat reach leaves and grass. The flat teeth can help it cut and grind up the food into soft pieces it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe impala has long jaws and flat teeth. Its mouth is adapted to eat plant matter.\\nThe cougar has a large mouth and sharp teeth. Its mouth is not adapted to eat plant matter. The cougar uses its mouth to eat other animals. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10671\",\n    \"image\": \"10671\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Nancy and Dominic trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nNancy and Dominic open their lunch boxes in the school cafeteria. Neither Nancy nor Dominic got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nNancy's lunch Dominic's lunch\\nOptions: (A) Nancy can trade her tomatoes for Dominic's carrots. (B) Dominic can trade his broccoli for Nancy's oranges. (C) Dominic can trade his almonds for Nancy's tomatoes. (D) Nancy can trade her tomatoes for Dominic's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nNancy wants broccoli. Dominic wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10675\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Ruben investigate with an experiment?\\nContext: Ruben is painting watercolor pictures with his friend. An hour after they have finished, Ruben notices one painting is dry but the other is not. He wonders what factors affect how quickly watercolor paintings dry. So, he decides to design an experiment. He has the following supplies available:\\ntwo freshly painted watercolor pictures of the same size\\nhis dining room table\\na picnic table in his backyard\\na heater\\nOptions: (A) Do watercolor paintings dry faster when placed next to a fan? (B) Does a large watercolor painting or a small watercolor painting dry faster? (C) Do watercolor paintings dry faster when they are placed inside or outside?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10681\",\n    \"image\": \"10681\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Barbados (B) Saint Vincent and the Grenadines (C) Cuba (D) Saint Lucia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Barbados. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10685\",\n    \"image\": \"10685\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this toilet plunger made of?\\nContext: N/A\\nOptions: (A) wood (B) porcelain\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the toilet plunger.\\nThe toilet plunger is made of two different materials. The handle is made of wood, and the head is made of rubber.\\nRubber is a good material for a toilet plunger because it is flexible. The plunger can bend to the shape of the toilet. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10689\",\n    \"image\": \"10689\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) Palau (C) Papua New Guinea (D) New Zealand\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is New Zealand. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10692\",\n    \"image\": \"10692\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) tetraphosphorus (B) fluoromethane (C) chloromethane\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10696\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAntonio took several incredible panoramic photographs of the sweeping view from the top of Table Mountain.\\nContext: N/A\\nOptions: (A) simple (B) compound-complex (C) complex (D) compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is simple. It is a single independent clause.\\nAntonio took several incredible panoramic photographs of the sweeping view from the top of Table Mountain. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10697\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ncommon - current\\nContext: N/A\\nOptions: (A) craft (B) chilly\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince craft is between the guide words common - current, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10700\",\n    \"image\": \"10700\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Hampshire?\\nContext: N/A\\nOptions: (A) Salem (B) Concord (C) Fort Wayne (D) Manchester\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Concord is the capital of New Hampshire. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10706\",\n    \"image\": \"10706\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk.\\nMammals are warm-blooded. Warm-blooded animals can control their body temperature.\\nA koala is an example of a mammal.\\nOptions: (A) common toad (B) human (C) box turtle (D) clownfish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A common toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole.\\nA box turtle is a reptile. It has scaly, waterproof skin.\\nBox turtles can live to be over 100 years old!\\nA clownfish is a fish. It lives underwater. It has fins, not limbs.\\nClownfish live with animals called anemones. In the image of the clownfish, you can see the green anemone behind the clownfish.\\nA human is a mammal. It has hair and feeds its young milk.\\nHumans are a type of animal called a primate. Monkeys and apes are also primates. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10708\",\n    \"image\": \"10708\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the wind through a tree a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a solid (B) a gas (C) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids are thicker than others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. The oxygen you breathe is a gas. The helium in a balloon is also a gas. Wind through a tree is air that is moving! Air is a gas. The air expands to fill the space around each tree branch. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10709\",\n    \"image\": \"10709\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food web, which organism contains matter that eventually moves to the earthworm?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) barren-ground caribou (B) mushroom (C) grizzly bear (D) bear sedge\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows to the earthworm.\\nThe only arrow pointing from the grizzly bear leads to the mushroom. No arrows point from the mushroom to any other organisms. So, in this food web, matter does not move from the grizzly bear to the earthworm.There are three paths matter can take from the bear sedge to the earthworm: bear sedge->brown lemming->Arctic fox->earthworm. bear sedge->brown lemming->snowy owl->earthworm. bear sedge->brown lemming->parasitic jaeger->rough-legged hawk->earthworm. mushroom. No arrows point from the mushroom to any other organisms. So, in this food web, matter does not move from the mushroom to the earthworm.. barren-ground caribou. There are two arrows pointing from the barren-ground caribou to other organisms. One arrow points to the grizzly bear. The only arrow pointing from the grizzly bear leads to the mushroom. The other arrow pointing from the barren-ground caribou leads to the mushroom. No arrows point from the mushroom to any other organisms. So, in this food web, matter does not move from the barren-ground caribou to the earthworm.. There are four paths matter can take from the bilberry to the earthworm: bilberry->Arctic fox->earthworm. bilberry->brown lemming->Arctic fox->earthworm. bilberry->brown lemming->snowy owl->earthworm. bilberry->brown lemming->parasitic jaeger->rough-legged hawk->earthworm. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10711\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) The blouse looks lovely with that skirt, but it costs too much. (B) Although the blouse costs too much, it does look lovely with that skirt.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun it could refer to the blouse or the skirt.\\nThe blouse looks lovely with that skirt, but it costs too much.\\nThe second answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nAlthough the blouse costs too much, it does look lovely with that skirt. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10716\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two ships. Which ship was moving at a higher speed?\\nContext: N/A\\nOptions: (A) a ship that moved 60miles in 5hours (B) a ship that moved 75miles in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving faster will go a farther distance in that time. It is moving at a higher speed. Look at the distance each ship moved and the time it took to move that distance.\\nOne ship moved 75 miles in 5 hours.\\nThe other ship moved 60 miles in 5 hours.\\nNotice that each ship spent the same amount of time moving. The ship that moved 75 miles moved a farther distance in that time. So, that ship must have moved at a higher speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10723\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Assume all other forces on the leash are balanced. Which statement describes the forces on the leash?\\nContext: Camilla is walking her dog, Daisy. A squirrel just ran by, and Daisy is pulling forward on the leash with a force of 250N. Camilla is pulling backward on the leash with a force of 180N.\\nOptions: (A) The forces are unbalanced, so there is a net force on the leash. (B) The forces are balanced, so there is no net force on the leash.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Every force has a direction and a magnitude, or strength. If two forces act on an object in opposite directions, the forces are called opposing forces.\\nWhen opposing forces have the same magnitude, they are balanced. If all the forces on an object are balanced, there is no net force on the object.\\nWhen opposing forces have different magnitudes, the forces are unbalanced. If any forces on an object are unbalanced, there is a net force on the object. To determine if there is a net force on the leash, look at the forces:\\nDaisy is pulling the leash forward with a force of 250 N.\\nCamilla is pulling the leash backward with a force of 180 N.\\nThe forces are in opposite directions, and the forces have different magnitudes: 250 N and 180 N. This means that the forces are unbalanced, so there is a net force on the leash. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10725\",\n    \"image\": \"10725\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Tonga (B) Solomon Islands (C) Vanuatu (D) Fiji\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Fiji. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10729\",\n    \"image\": \"10729\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Africa (B) Europe (C) South America (D) North America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Africa. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10732\",\n    \"image\": \"10732\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Jersey?\\nContext: N/A\\nOptions: (A) Trenton (B) Honolulu (C) Jersey City (D) Hartford\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Trenton is the capital of New Jersey. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10738\",\n    \"image\": \"10738\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Clara and Hazel trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nClara and Hazel open their lunch boxes in the school cafeteria. Neither Clara nor Hazel got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nClara's lunch Hazel's lunch\\nOptions: (A) Clara can trade her tomatoes for Hazel's broccoli. (B) Hazel can trade her almonds for Clara's tomatoes. (C) Clara can trade her tomatoes for Hazel's carrots. (D) Hazel can trade her broccoli for Clara's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nClara wants broccoli. Hazel wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10750\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the invertebrate.\\nContext: Hint: Insects, spiders, and worms are invertebrates.\\nOptions: (A) komodo dragon (B) tiger (C) gray crowned crane (D) mosquito\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A mosquito is an insect. Like other insects, a mosquito is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA tiger is a mammal. Like other mammals, a tiger is a vertebrate. It has a backbone.\\nA komodo dragon is a reptile. Like other reptiles, a komodo dragon is a vertebrate. It has a backbone.\\nA gray crowned crane is a bird. Like other birds, a gray crowned crane is a vertebrate. It has a backbone. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10755\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Jennifer decides to join the Photography Club. Which result would be a cost?\\nContext: Jennifer is deciding whether to join the Photography Club or the Theater Club at school. She wants the club she joins to be fun. But she doesn't want it to take up too much time.\\nOptions: (A) Jennifer will spend more time in the Photography Club than she would have spent in the Theater Club. (B) Jennifer will have more fun in the Photography Club than she would have had in the Theater Club.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Jennifer wants or needs:\\nJennifer will spend more time in the Photography Club than she would have spent in the Theater Club. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10758\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Kendall acquired this trait?\\nContext: Read the description of a trait.\\nKendall knows how to make chili.\\nOptions: (A) Kendall's friends like to make chili with her. (B) Kendall learned how to make chili from a recipe book. (C) When Kendall was young, her grandmother taught her how to cut chili peppers.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10761\",\n    \"image\": \"10761\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs. A piranha is an example of a fish.\\nOptions: (A) flamingo (B) bull shark\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A bull shark is a fish. It lives underwater. It has fins, not limbs.\\nBull sharks can live in both fresh and salt water. They are found in rivers and in shallow parts of the ocean.\\nA flamingo is a bird. It has feathers, two wings, and a beak.\\nFlamingos live in large groups. These groups are called flocks. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10762\",\n    \"image\": \"10762\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Erik and Lily trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nErik and Lily open their lunch boxes in the school cafeteria. Neither Erik nor Lily got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nErik's lunch Lily's lunch\\nOptions: (A) Erik can trade his tomatoes for Lily's broccoli. (B) Lily can trade her almonds for Erik's tomatoes. (C) Lily can trade her broccoli for Erik's oranges. (D) Erik can trade his tomatoes for Lily's carrots.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nErik wants broccoli. Lily wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10770\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word literally in its traditional sense?\\nContext: N/A\\nOptions: (A) The curry that the chef prepared was so spicy that Logan's mouth was literally on fire by the time he finished his meal. (B) The curry that the chef prepared was so spicy that Logan literally had to drink three glasses of milk to ease the pain.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses literally in its traditional sense: in a factual, non-exaggerated way.\\nThe curry that the chef prepared was so spicy that Logan literally had to drink three glasses of milk to ease the pain.\\nThe second text uses literally in its nontraditional sense: nearly or in effect (often exaggerated). Logan's mouth may be in pain, but it is not actually on fire.\\nThe curry that the chef prepared was so spicy that Logan's mouth was literally on fire by the time he finished his meal.\\nMost style guides recommend to avoid using the nontraditional sense of the word literally because it is generally considered incorrect. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10783\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) goat (B) rob (C) sob\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the ip sound.\\nThe words lake and make rhyme. They both end with the ake sound.\\nThe words tip and lake don't rhyme. They end with different sounds. The words sob and rob rhyme. They both end with the ob sound.\\nThe word goat does not rhyme. It ends with a different sound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10785\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the air inside of a freezer?\\nContext: Select the better estimate.\\nOptions: (A) 17\\u00b0C (B) 17\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the air inside of a freezer is 17\\u00b0F.\\n17\\u00b0C is too hot. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10786\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word is not like the others?\\nContext: N/A\\nOptions: (A) grass (B) cookie (C) cake (D) ice cream\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some words are alike. They go together in a group.\\nRed, blue, and green go together. They are colors.\\nMom, dad, grandma, and grandpa go together. They are people in a family. Cake, ice cream, and cookie go together. They are sweet things. Grass is not a sweet thing, so it is not like the other words. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10790\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a car key?\\nContext: Select the better estimate.\\nOptions: (A) 6 meters (B) 6 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a car key is 6 centimeters.\\n6 meters is too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10791\",\n    \"image\": \"10791\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement is true about the average monthly temperature in New York City?\\nContext: Use the graph to answer the question below.\\nOptions: (A) January and February are the coldest months of the year. (B) The temperature does not change much from month to month. (C) July, August, and September are colder than the other months of the year.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Temperature is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average temperature for each month. The average temperature can be used to describe the climate of a location.\\nA line graph can be used to show the average temperature each month. Months with higher dots on the graph have higher average temperatures. To describe the average temperature trends in New York City, look at the graph.\\nChoice \\\"Feb\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Aug\\\" is incorrect.\\nChoice \\\"Sep\\\" is incorrect.\\nChoice \\\"Jan\\\" is incorrect.\\nChoice \\\"The temperature does not change much from month to month.\\\" is incorrect.\\nSome months of the year have much higher temperatures than others. So, the temperature does change a lot from month to month.\\nChoice \\\"July, August, and September are colder than the other months of the year.\\\" is incorrect.\\nThe average temperatures in July, August, and September are around 75\\u00b0F. These months have the highest average temperatures of any months. So, they are hotter, not colder, than the other months.\\nChoice \\\"January and February are the coldest months of the year.\\\" is incorrect.\\nThe average temperatures in January and February are between 30\\u00b0F and 35\\u00b0F. These months have the lowest average temperatures of all of the months. So, they are the coldest months of the year. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10793\",\n    \"image\": \"10793\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Cape Breton Highlands National Park ecosystem?\\nContext: Figure: Cape Breton Highlands National Park.\\nCape Breton Highlands National Park is a taiga ecosystem in eastern Canada.\\nOptions: (A) It has short, cool summers. It also has soil that is rich in nutrients. (B) It has many evergreen trees. It also has soil that is poor in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A taiga is a type of ecosystem. Taigas have the following features: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. So, Cape Breton Highlands National Park has many evergreen trees. It also has soil that is poor in nutrients. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10797\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word unique in its traditional sense?\\nContext: N/A\\nOptions: (A) Jon custom ordered his unique coffee table from a master craftsman in Lancaster. (B) Jon bought his unique coffee table from a factory outlet store in Lancaster.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses unique in its traditional sense: being the only one of its kind.\\nJon custom ordered his unique coffee table from a master craftsman in Lancaster.\\nThe second text uses unique in its nontraditional sense: interesting or unusual. Jon's coffee table is an interesting style, but it was made in a factory and is probably not actually one of a kind.\\nJon bought his unique coffee table from a factory outlet store in Lancaster.\\nMost style guides recommend to use the traditional sense of the word unique because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10801\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does this Works Cited entry indicate about the cited work?\\nAllawi, Ali A. Faisali of Iraq. New Haven: Yale University Press, 2014. Print.\\nContext: N/A\\nOptions: (A) Ali is the author's last name. (B) Allawi is the author's last name. (C) Faisali is the author's last name.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing research papers, you will often be asked to follow a particular style guide for your citations. One popular style guide is the Modern Language Association (MLA) Handbook.\\nBelow are the basic formats for some common types of Works Cited entries. Consult the MLA Handbook for a complete list.\\nBooks:\\nFormat | Author(s). Book Title. City of Publication: Publisher, Year of Publication. Medium of Publication.\\nExample | Austen, Jane. Pride and Prejudice. New York: Dover Publications, 1995. Print.\\nEssays, short stories, or poems in an anthology or book:\\nFormat | Author(s). \\\"Essay, Poem, or Short Story Title.\\\" Anthology or Book Title. Ed. Editor Name. City of Publication: Publisher, Year of Publication. Page Number(s). Medium of Publication.\\nExample | James, Henry. \\\"The Middle Years.\\\" The Oxford Book of American Short Stories. Ed. Joyce Carol Oates. Oxford: Oxford UP, 2013. 116-135. Print.\\nMagazine and newspaper articles:\\nFormat | Author(s). \\\"Article Title.\\\" Title of Magazine or Newspaper Date of Publication: Page(s). Medium of Publication.\\nExample | Hayes, David J., and James H. Stock. \\\"The Real Cost of Coal.\\\" New York Times 24 Mar. 2015: n. pag. Web. 25 Mar. 2015.\\nJournal articles:\\nFormat | Author(s). \\\"Article Title.\\\" Title of Journal Volume.Issue (Year): Page(s). Medium of Publication.\\nExample | Gillette, Jane, et al. \\\"Human Simulations of Vocabulary Learning.\\\" Cognition 73.2 (1999): 135-176. Print.\\nWeb pages:\\nFormat | Author(s). \\\"Page Title.\\\" Name of Website. Publisher, Date of Publication. Medium of Publication. Date of Access.\\nExample | Gunn, Janelle P., and Lauren E. Owens. \\\"How to Slash Sodium from Your Diet.\\\" Livestrong.com. Demand Media, 30 Mar. 2015. Web. 31 Mar. 2015.\\nAdditional guidelines:\\nAuthor Names. The first author's name is written in last name, first name format (Smith, Jane). Additional author names are written in first name last name format (Smith, Jane, and John Doe). If there are more than three authors, the first author's name is followed by \\\"et al.,\\\" which stands for and others (e.g., Smith, Jane, et al.).\\nMedium of Publication. Each entry must include information about what form the content was communicated in. The most common mediums are \\\"Print\\\" and \\\"Web,\\\" but other possibilities include \\\"Film,\\\" \\\"E-mail,\\\" and \\\"Lecture.\\\" Whenever the Medium of Publication is \\\"Web,\\\" the date of access (the day, month, and year the webpage was viewed) must be listed directly after the Medium of Publication.\\nEditors and Translators. If a work has an editor or a translator, this information must be added to the Works Cited entry using the appropriate abbreviation. \\\"Ed.\\\" stands for edited by. \\\"Trans.\\\" stands for translated by.\\nMissing Information. If a work has no known author, the author section of the citation is simply left out. If a work has no available page numbers, the abbreviation \\\"n. pag.\\\" is used instead. If a work has no available publication date, the abbreviation \\\"n.d.\\\" is used instead. If a work has no available publisher or no available city of publication, the abbreviation \\\"n.p.\\\" is used instead.\\n Look closely at the Works Cited entry:\\nAllawi, Ali A. Faisali of Iraq. New Haven: Yale University Press, 2014. Print.\\nYou can tell that the author's last name is Allawi because the author's name appears last name first at the beginning of the entry. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10819\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe Olsen family is going to spend two weeks in Ocean City, but for Ivan it will be a working vacation, since he'll be checking in with the office every day.\\nContext: N/A\\nOptions: (A) oxymoron (B) hyperbole\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nWorking vacation is a contradiction, because going on a vacation implies that you are taking a break from work. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10823\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Norma didn't enter student politics until her junior year. (B) Norma did not enter student politics until her junior year.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses a contraction (didn't).\\nThe second sentence does not use a contraction, so it is more formal. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10837\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three ships. Which ship was moving at the lowest speed?\\nContext: N/A\\nOptions: (A) a ship that moved 130kilometers south in 5hours (B) a ship that moved 220kilometers east in 5hours (C) a ship that moved 80kilometers north in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the slowest will go the shortest distance in that time. It is moving at the lowest speed. Look at the distance each ship moved and the time it took to move that distance. The direction each ship moved does not affect its speed.\\nNotice that each ship moved for 5 hours. The ship that moved 80 kilometers moved the shortest distance in that time. So, that ship must have moved at the lowest speed. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10838\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nShannon warned her youngest son not to cry wolf while wrestling with his older brother.\\nContext: N/A\\nOptions: (A) a fable (B) U.S. history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion cry wolf is a fable.\\nIn the fable \\\"The Boy Who Cried Wolf,\\\" a shepherd boy repeatedly tricks people in his village by falsely claiming that a wolf is coming to eat his flock. When a wolf actually comes and the boy cries for help, nobody believes him or comes to his aid.\\nThe allusion cry wolf means to raise a false alarm. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10839\",\n    \"image\": \"10839\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alabama?\\nContext: N/A\\nOptions: (A) Cheyenne (B) Charleston (C) Montgomery (D) Providence\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montgomery is the capital of Alabama. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10840\",\n    \"image\": \"10840\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which term matches the picture?\\nContext: Read the text.\\nYour body has many systems that perform important tasks to keep you alive and well. For example, your circulatory system is responsible for moving the oxygen, nutrients, and wastes in blood through your body. Your heart, lungs, and blood vessels are all part of your circulatory system. Your lungs are also an important part of your respiratory system, along with your nose and throat. Your respiratory system includes the parts of your body that help you breathe.\\nOptions: (A) respiratory system (B) circulatory system\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The circulatory system includes the heart, lungs, and blood vessels. It moves, or circulates, nutrients through the body. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10841\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMr. Kemp argues that we need to do more to prevent workplace injuries and fatalities. I doubt that someone so socially awkward would know a thing about office safety.\\nContext: N/A\\nOptions: (A) ad hominem: a personal attack against one's opponent (B) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that being socially awkward determines knowledge of workplace safety. This is a personal attack that isn't relevant to Mr. Kemp's desire to prevent workplace injuries. This illustrates a type of logical fallacy known as ad hominem. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10853\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this fly's phenotype for the wing type trait?\\nContext: This passage describes the wing type trait in fruit flies:\\n\\nIn a group of fruit flies, some individuals have normal wings and others have vestigial wings. In this group, the gene for the wing type trait has two alleles. The allele for vestigial wings (n) is recessive to the allele for normal wings (N).\\nA certain fruit fly from this group has the heterozygous genotype Nn for the wing type gene.\\nOptions: (A) normal wings (B) vestigial wings\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine the fruit fly's phenotype for the wing type trait. First, consider the alleles in the fly's genotype for the wing type gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for vestigial wings (n) is recessive to the allele for normal wings (N). This means N is a dominant allele, and n is a recessive allele.\\nThe fruit fly's genotype of Nn has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, the fruit fly's phenotype for the wing type trait must be normal wings. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10854\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nThe First Amendment says that the government cannot take away a person's () or freedom of religion.\\nContext: N/A\\nOptions: (A) freedom of speech (B) right to own weapons (C) right to vote\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The First Amendment says that the government cannot take away a person's freedom of speech or freedom of religion. In the United States, voting rights are not a part of freedom of speech. Freedom of speech means that Americans can say and write what they want. But there are some limits on freedom of speech. For example, a person cannot write lies about someone in a newspaper. But the government cannot stop speech just because someone disagrees with it. Freedom of religion means a person can choose his or her own religion. In the United States, the government cannot tell a person what to believe. The complete text of the First Amendment is below. Does it mention any other rights? Congress shall make no law respecting an establishment of religion, or prohibiting the free exercise thereof; or abridging the freedom of speech, or of the press; or the right of the people peaceably to assemble, and to petition the Government for a redress of grievances. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10865\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the part whose main job is to help a plant cell make proteins.\\nContext: N/A\\nOptions: (A) cytoplasm (B) endoplasmic reticulum (C) mitochondria (D) cell wall\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plant cells are made up of many different parts. Each cell part has a function that helps the cell survive and grow.\\nSome cell parts are called organelles. Organelles are cell structures that are surrounded by their own membranes. Here are some of the organelles in plant cells:\\nChloroplasts and mitochondria work together to help the cell get the energy it needs. The chloroplasts use photosynthesis to make sugar. The mitochondria break down this sugar and release energy that the cell can use for all of its activities.\\nThe nucleus directs cell activities by sending instructions to different parts of the cell. The nucleus contains structures called chromosomes. The chromosomes are made mostly of hereditary material called DNA. DNA contains information that the cell uses for growth and activities. These instructions tell ribosomes how to build molecules called proteins, which make up cell structures and help chemical reactions happen in the cell.\\nThe endoplasmic reticulum is an organelle that helps ribosomes build proteins. The nucleus sends instructions for making proteins to ribosomes. Ribosomes can attach to the endoplamic reticulum. The endoplasmic reticulum and ribosomes use these instructions to make proteins that the cell needs to survive and grow.\\nAfter proteins are made in the endoplasmic reticulum, they can be transferred to the Golgi. The Golgi is an organelle made up of flat, stacked membranes. The Golgi sorts and packages proteins and other substances. Then, the Golgi sends these substances to different parts of the cell. Some of these substances are sent to the cell membrane and released from the cell.\\nIn plant cells, the vacuole stores waste, water, and nutrients such as sugar. Most plant cells have one vacuole.\\nOther cell parts are not surrounded by their own membranes. These cell parts are not organelles.\\nThe cell wall is the cell's tough outer covering. It gives the cell strength and stiffness and helps the cell keep its shape.\\nOn the inside of the cell wall is a thin layer called the cell membrane. This layer is a membrane, but it does not have a membrane surrounding it, so it is not an organelle. The cell membrane controls which substances enter and leave the cell.\\nThe cytoplasm is a thick liquid that fills the space inside the cell. The cytoplasm also helps the cell keep its shape and supports the other cell parts. The endoplasmic reticulum helps the cell make proteins. Instructions for making proteins are sent to ribosomes. Ribosomes can attach to the endoplamic reticulum and use the instructions to make proteins. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10867\",\n    \"image\": \"10867\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Virginia (B) South Carolina (C) Georgia (D) North Carolina\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is North Carolina. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10869\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the part that contains the information that a plant cell uses for growth and activities.\\nContext: N/A\\nOptions: (A) chloroplasts (B) chromosomes (C) mitochondria (D) Golgi\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plant cells are made up of many different parts. Each cell part has a function that helps the cell survive and grow.\\nSome cell parts are called organelles. Organelles are cell structures that are surrounded by their own membranes. Here are some of the organelles in plant cells:\\nChloroplasts and mitochondria work together to help the cell get the energy it needs. The chloroplasts use photosynthesis to make sugar. The mitochondria break down this sugar and release energy that the cell can use for all of its activities.\\nThe nucleus directs cell activities by sending instructions to different parts of the cell. The nucleus contains structures called chromosomes. The chromosomes are made mostly of hereditary material called DNA. DNA contains information that the cell uses for growth and activities. These instructions tell ribosomes how to build molecules called proteins, which make up cell structures and help chemical reactions happen in the cell.\\nThe endoplasmic reticulum is an organelle that helps ribosomes build proteins. The nucleus sends instructions for making proteins to ribosomes. Ribosomes can attach to the endoplamic reticulum. The endoplasmic reticulum and ribosomes use these instructions to make proteins that the cell needs to survive and grow.\\nAfter proteins are made in the endoplasmic reticulum, they can be transferred to the Golgi. The Golgi is an organelle made up of flat, stacked membranes. The Golgi sorts and packages proteins and other substances. Then, the Golgi sends these substances to different parts of the cell. Some of these substances are sent to the cell membrane and released from the cell.\\nIn plant cells, the vacuole stores waste, water, and nutrients such as sugar. Most plant cells have one vacuole.\\nOther cell parts are not surrounded by their own membranes. These cell parts are not organelles.\\nThe cell wall is the cell's tough outer covering. It gives the cell strength and stiffness and helps the cell keep its shape.\\nOn the inside of the cell wall is a thin layer called the cell membrane. This layer is a membrane, but it does not have a membrane surrounding it, so it is not an organelle. The cell membrane controls which substances enter and leave the cell.\\nThe cytoplasm is a thick liquid that fills the space inside the cell. The cytoplasm also helps the cell keep its shape and supports the other cell parts. Chromosomes contain the information that the cell uses for growth and activities. This information helps control what the cell does and how it grows and develops.\\nIn plant and animal cells, the chromosomes are inside the nucleus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10873\",\n    \"image\": \"10873\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) South America (B) Antarctica (C) Africa (D) North America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Africa. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10874\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the word. Does it have a closed syllable or an open syllable?\\nhi\\nContext: N/A\\nOptions: (A) open (B) closed\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words are made up of syllables. Two kinds of syllables are closed and open.\\nA closed syllable has one vowel and ends with a consonant. It usually has a short vowel sound.\\ndesk: short e\\nkit / ten: short i / short e\\nAn open syllable ends with one vowel. It usually has a long vowel sound.\\ngo: long o\\nhe / ro: long e / long o\\nSome open syllables end with y. The y makes a long e sound or a long i sound.\\nsky: long i\\nba / by: long a / long e The word hi ends with a vowel and has a long vowel sound. So, it has an open syllable. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10883\",\n    \"image\": \"10883\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is weaker in Pair 2. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is weaker in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is weaker when the magnets are farther apart. Distance affects the strength of the magnetic force. When magnets are farther apart, the magnetic force between them is weaker.\\nThe magnets in Pair 2 are farther apart than the magnets in Pair 1. So, the magnetic force is weaker in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10885\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nWalter lives in a city where the wind often blows from the south throughout the year.\\nContext: N/A\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nWalter lives in a city where the wind often blows from the south throughout the year.\\nThis passage tells you about the usual wind pattern where Walter lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10886\",\n    \"image\": \"10886\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the European green toad.\\nContext: This organism is a European green toad. Its scientific name is Bufo viridis.\\nOptions: (A) Bufo bufo (B) Lithobates blairi (C) Hyla japonica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A European green toad's scientific name is Bufo viridis. The first word of its scientific name is Bufo.\\nLithobates blairi is in the genus Lithobates. The first word of its scientific name is Lithobates. So, Lithobates blairi and Bufo viridis are not in the same genus.\\nBufo bufo is in the genus Bufo. The first word of its scientific name is Bufo. So, Bufo bufo and Bufo viridis are in the same genus.\\nHyla japonica is in the genus Hyla. The first word of its scientific name is Hyla. So, Hyla japonica and Bufo viridis are not in the same genus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10889\",\n    \"image\": \"10889\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's mouth is also adapted to tear through meat?\\nContext: Leopards are carnivores, or meat eaters. They eat large mammals like deer and antelope. The 's mouth is adapted to tear through meat.\\nFigure: leopard.\\nOptions: (A) orca (B) tamandua\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the leopard.\\nThe leopard has a large mouth and sharp teeth. Its mouth is adapted to tear through meat. The leopard uses its large mouth to grab its prey. It uses its sharp teeth to cut up the meat of the prey into pieces it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe orca has a large mouth and sharp teeth. Its mouth is adapted to tear through meat.\\nThe tamandua has a long tube-shaped mouth and no teeth. It does not have sharp teeth. So, its mouth is not adapted to tear through meat. The tamandua uses its mouth to get insects out of holes and burrows. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10894\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is smoother?\\nContext: N/A\\nOptions: (A) burlap sack (B) cardboard\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Smooth is a property. A smooth material is not rough or bumpy.\\nLook at each picture, one at a time. Imagine touching the material shown in each picture.\\nOf the choices, the cardboard is smoother. If you touch a cardboard box like this one, it will not feel rough or bumpy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10899\",\n    \"image\": \"10899\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Ian and Joseph trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nIan and Joseph open their lunch boxes in the school cafeteria. Neither Ian nor Joseph got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nIan's lunch Joseph's lunch\\nOptions: (A) Joseph can trade his almonds for Ian's tomatoes. (B) Ian can trade his tomatoes for Joseph's carrots. (C) Ian can trade his tomatoes for Joseph's broccoli. (D) Joseph can trade his broccoli for Ian's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nIan wants broccoli. Joseph wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10909\",\n    \"image\": \"10909\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two friends bought phones that cost different amounts but had identical batteries. After using the phones for a while, both friends had to turn them off to let the batteries cool. This table shows how the temperature of each battery changed over 5minutes.\\nOptions: (A) the surroundings . . . each battery (B) each battery . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each battery decreased, which means that the thermal energy of each battery decreased. So, thermal energy was transferred from each battery to the surroundings. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10919\",\n    \"image\": \"10919\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is also adapted for survival in cold places?\\nContext: Polar bears live in and around the cold Arctic Ocean. The 's skin is adapted to help the animal survive in cold places.\\nFigure: polar bear.\\nOptions: (A) Eurasian lynx (B) thorny devil\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the polar bear.\\nThe polar bear has skin with thick fur on top and a thick layer of fat underneath it. Its skin is adapted for survival in cold places. The polar bear uses its fur and fat to keep warm in cold weather.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nDuring the winter, the Eurasian lynx has thick fur covering its skin. Its skin is adapted for survival in cold places.\\nThe thorny devil has spines covering much of its skin. Its skin is not adapted for survival in cold places. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10921\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\n\\\"You might think you'll always be young,\\\" Mrs. Sheppard counseled, \\\"but time ()\\\".\\nContext: N/A\\nOptions: (A) affects everyone (B) creeps up on you\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the phrase creeps up on you. It describes time as if it were a sneaky person. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10935\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Basil's phenotype for the eye color trait?\\nContext: In a group of guinea pigs, some individuals have brown eyes and others have red eyes. In this group, the gene for the eye color trait has two alleles. The allele for brown eyes (E) is dominant over the allele for red eyes (e).\\nBasil is a guinea pig from this group. Basil has the homozygous genotype ee for the eye color gene.\\nOptions: (A) brown eyes (B) red eyes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Basil's genotype for the eye color gene is ee. Basil's genotype of ee has only e alleles. The e allele is for red eyes. So, Basil's phenotype for the eye color trait must be red eyes.\\nTo check this answer, consider whether Basil's alleles are dominant or recessive. The allele for brown eyes (E) is dominant over the allele for red eyes (e). This means E is a dominant allele, and e is a recessive allele.\\nBasil's genotype of ee has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Basil's phenotype for the eye color trait must be red eyes. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10939\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nScarlett told her friends that Kevin was a typical Peter Pan type.\\nContext: N/A\\nOptions: (A) literature (B) Greek mythology\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Peter Pan is literature.\\nIn a J. M. Barrie novel, the character Peter Pan retreats to Neverland and refuses to grow up.\\nThe allusion Peter Pan means a person who won't take on adult responsibilities. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10941\",\n    \"image\": \"10941\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Algeria.\\nDark clouds hung over the coast of Algeria last weekend.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nDark clouds hung over the coast of Algeria last weekend.\\nThis passage tells you about last weekend's cloud cover on the coast of Algeria. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10945\",\n    \"image\": \"10945\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe volume of Neptune is less than 75% of the volume of Uranus.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. To determine if this statement is true, calculate the value of 75% of the volume of Uranus by multiplying its volume by 0.75.\\nThen compare the result to the volume of Neptune. The volume of Neptune is 62,530 billion km^3, which is more than 51,248 billion km^3. So, the volume of Neptune is more than 75% of the volume of Uranus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10947\",\n    \"image\": \"10947\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New Jersey (B) Delaware (C) Michigan (D) Indiana\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New Jersey. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10955\",\n    \"image\": \"10955\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Tristan and Lorenzo trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nTristan and Lorenzo open their lunch boxes in the school cafeteria. Neither Tristan nor Lorenzo got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nTristan's lunch Lorenzo's lunch\\nOptions: (A) Lorenzo can trade his broccoli for Tristan's oranges. (B) Tristan can trade his tomatoes for Lorenzo's broccoli. (C) Lorenzo can trade his almonds for Tristan's tomatoes. (D) Tristan can trade his tomatoes for Lorenzo's carrots.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nTristan wants broccoli. Lorenzo wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10960\",\n    \"image\": \"10960\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Haiti (B) the Dominican Republic (C) Cuba (D) Dominica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Dominican Republic.\\nWhy does the Dominican Republic share its island with another country?\\nThe Dominican Republic and Haiti share the island of Hispaniola. It is home to the earliest European settlements in the Americas. Christopher Columbus founded the first European settlement on the island in 1492 during his first voyage across the Atlantic.\\nThough many people lived on the island before Columbus's arrival, European countries quickly began to colonize the island. Eventually France and Spain both established colonies. The Spanish colony eventually became the country of the Dominican Republic, and the French colony eventually became the country of Haiti. Today, people in the two countries speak different languages and have many cultural differences. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10961\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is fixing a computer a good or a service?\\nContext: N/A\\nOptions: (A) a service (B) a good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Everything you can buy is either a good or a service.\\nA good is something you can touch or hold in your hands. For example, a hammer is a good.\\nA service is a job you pay someone else to do. For example, cooking food in a restaurant is a service. To decide whether fixing a computer is a good or a service, ask these questions:\\nIs fixing a computer something you can touch? No.\\nIs fixing a computer a job you might pay someone else to do? Yes.\\nSo, fixing a computer is a service. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10962\",\n    \"image\": \"10962\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Mexico?\\nContext: N/A\\nOptions: (A) Santa Fe (B) Columbia (C) Albuquerque (D) Minneapolis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Santa Fe is the capital of New Mexico. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10964\",\n    \"image\": \"10964\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Louisiana?\\nContext: N/A\\nOptions: (A) Frankfort (B) Salem (C) Baton Rouge (D) New Orleans\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Baton Rouge is the capital of Louisiana. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10971\",\n    \"image\": \"10971\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) Arkansas (B) Montana (C) Arizona (D) Ohio\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. Ohio is farthest east. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10980\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nJackie lives in a town with hot summers and freezing cold winters.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nJackie lives in a town with hot summers and freezing cold winters.\\nThis passage tells you about the usual temperatures where Jackie lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10982\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Kari acquired this trait?\\nContext: Read the description of a trait.\\nKari has a scar on her left leg.\\nOptions: (A) Kari's scar was caused by an accident. She cut her leg when she was climbing a tree. (B) Some scars fade more quickly than others.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10984\",\n    \"image\": \"10984\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) Asia (C) Australia (D) South America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Europe. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10997\",\n    \"image\": \"10997\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the slender-spined porcupinefish.\\nContext: This organism is a slender-spined porcupinefish. Its scientific name is Diodon nicthemerus.\\nOptions: (A) Amphiprion frenatus (B) Amphiprion perideraion (C) Diodon nicthemerus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A slender-spined porcupinefish's scientific name is Diodon nicthemerus.\\nAmphiprion frenatus does not have the same scientific name as a slender-spined porcupinefish. So, Diodon nicthemerus and Amphiprion frenatus are not in the same species.\\nAmphiprion perideraion does not have the same scientific name as a slender-spined porcupinefish. So, Diodon nicthemerus and Amphiprion perideraion are not in the same species.\\nDiodon nicthemerus has the same scientific name as a slender-spined porcupinefish. So, these organisms are in the same species. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"10999\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does the sentence use a simile or a metaphor?\\nThe new blanket was as soft as a kitten's fur.\\nContext: N/A\\nOptions: (A) simile (B) metaphor\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. The new blanket was as soft as a kitten's fur.\\nThe words blanket and fur are compared using the word as. So, the sentence uses a simile. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11000\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nTrent's '64 Impala groaned as he turned the ignition. Yet again he resolved to refurbish it over the summer.\\nContext: N/A\\nOptions: (A) personification (B) metaphor\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses personification, giving human characteristics to nonhuman things.\\nTrent's '64 Impala groaned describes the car as if it were human. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11006\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nusing polish to remove tarnish from a silver spoon\\na piece of avocado turning brown\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are only physical changes. (C) Both are chemical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA tarnished silver spoon is one that has become less shiny over time. Polishing the spoon makes it look shiny again.\\nThe polish changes the tarnish into a different type of matter that can be easily wiped away. So, using polish to remove tarnish from silver is a chemical change.\\nA piece of avocado turning brown is a chemical change. The avocado reacts with oxygen in the air to form a different type of matter.\\nIf you scrape off the brown part of the avocado, the inside will still be green. The inside hasn't touched the air. So the chemical change hasn't happened to that part of the avocado.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11007\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of an article?\\nContext: N/A\\nOptions: (A) \\\"Caring for Our Children\\\" (B) Caring for Our Children\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, or article should be in quotation marks.\\n\\\"You Are My Sunshine\\\" An article should be in quotation marks.\\nThe correct title is \\\"Caring for Our Children.\\\" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11015\",\n    \"image\": \"11015\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Arctic Ocean (B) the Atlantic Ocean (C) the Indian Ocean (D) the Southern Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Southern Ocean.\\nThe Southern Ocean reaches from the shores of Antarctica to 60\\u00b0 South latitude. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11020\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Bonnie inherited this trait?\\nContext: Read the description of a trait.\\nBonnie has wavy hair.\\nOptions: (A) Bonnie's parents were born with wavy hair. They passed down this trait to Bonnie. (B) Bonnie and her mother both have short hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11022\",\n    \"image\": \"11022\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which specific humidity level was measured within the outlined area shown?\\nContext: The map below shows humidity in the lower atmosphere on October 28, 2013. The map shows specific humidity, a measurement of the amount of water vapor in the air. The outlined area shows an air mass that influenced weather in Asia on that day.\\nLook at the map. Then, answer the question below.\\nData source: United States National Oceanic and Atmospheric Administration/Earth System Research Laboratory, Physical Sciences Division\\nOptions: (A) 24 grams of water vapor per kilogram of air (B) 13 grams of water vapor per kilogram of air (C) 9 grams of water vapor per kilogram of air\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"To study air masses, scientists can use maps that show conditions within Earth's atmosphere. For example, the map below uses color to show specific humidity, a measurement of the amount of water vapor in the air.\\nThe map's legend tells you the specific humidity level that each color represents. Colors on the left in the legend represent lower specific humidity levels than colors on the right. For example, areas on the map that are the darkest shade of purple have a specific humidity from zero grams per kilogram (g/kg) up to two g/kg. Areas that are the next darkest shade of purple have a specific humidity from two g/kg up to four g/kg. Look at the colors shown within the outlined area. Then, use the legend to determine which specific humidity levels those colors represent.\\nThe legend tells you that this air mass contained air with specific humidity levels between 18 and 24 grams of water vapor per kilogram of air.\\n24 grams of water vapor per kilogram of air is within this range.\\n9 and 13 grams of water vapor per kilogram of air are outside of this range. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11027\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a leather belt?\\nContext: Select the better estimate.\\nOptions: (A) 85 kilometers (B) 85 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a leather belt is 85 centimeters.\\n85 kilometers is too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11038\",\n    \"image\": \"11038\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Antarctica (B) Asia (C) Australia (D) South America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Australia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11042\",\n    \"image\": \"11042\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two identical aquariums were next to an open window. One aquarium had a plastic cover on it, and the other was uncovered. This table shows how the temperature of each aquarium changed over 1.5hours.\\nOptions: (A) each aquarium . . . the surroundings (B) the surroundings . . . each aquarium\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each aquarium decreased, which means that the thermal energy of each aquarium decreased. So, thermal energy was transferred from each aquarium to the surroundings. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11046\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Tom was recently reading about remote mountain villages, and it said that they often have no Internet access. He couldn't imagine life without email! (B) Tom was recently reading about remote mountain villages, and the article said that they often have no Internet access. He couldn't imagine life without email!\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it is used without its antecedent.\\nThe first answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the article.\\nTom was recently reading about remote mountain villages, and the article said that they often have no Internet access. He couldn't imagine life without email! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11060\",\n    \"image\": \"11060\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Rosa and Kylie trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nRosa and Kylie open their lunch boxes in the school cafeteria. Neither Rosa nor Kylie got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nRosa's lunch Kylie's lunch\\nOptions: (A) Kylie can trade her almonds for Rosa's tomatoes. (B) Rosa can trade her tomatoes for Kylie's broccoli. (C) Rosa can trade her tomatoes for Kylie's carrots. (D) Kylie can trade her broccoli for Rosa's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nRosa wants broccoli. Kylie wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11064\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nHarry's leaving his job? That's old news. He's been planning that for months.\\nContext: N/A\\nOptions: (A) oxymoron (B) euphemism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nOld news is a contradiction, because news is recent information. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11067\",\n    \"image\": \"11067\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) rough (B) slippery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA rough object feels scratchy when you touch it. The potato sack is rough.\\nA slippery object is hard to hold onto or stand on. The potato sack is not slippery. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11073\",\n    \"image\": \"11073\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) translucent (B) transparent (C) sour\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA translucent object lets light through. But you cannot see clearly through a translucent object. The green apple is not translucent.\\nYou can see clearly through a transparent object. The green apple and the lime are not transparent.\\nA lemon has a sour taste. All three objects are sour.\\nThe property that all three objects have in common is sour. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11083\",\n    \"image\": \"11083\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Washington (B) New Mexico (C) California (D) Alaska\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is New Mexico. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11085\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) \\\"Tales of a Fourth Grade Nothing\\\" (B) ***Tales of a Fourth Grade Nothing***\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, or article should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A book should be in italics.\\nThe correct title is **Tales of a Fourth Grade Nothing**. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11094\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word pouch on a dictionary page with the following guide words?\\npicture - profit\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince pouch is between the guide words picture - profit, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11099\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Helen decides to bake cranberry muffins. Which result would be a cost?\\nContext: Helen is deciding whether to bake chocolate muffins or cranberry muffins. She wants the muffins to be tasty. But she also wants to make a lot of muffins.\\nOptions: (A) Helen will get to eat more muffins. She can make more cranberry muffins than chocolate muffins. (B) Helen will give up the chance to eat chocolate muffins. She thinks chocolate muffins are tastier than cranberry muffins.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Helen wants or needs:\\nHelen will give up the chance to eat chocolate muffins. She thinks chocolate muffins are tastier than cranberry muffins. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11113\",\n    \"image\": \"11113\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes and shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11116\",\n    \"image\": \"11116\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this experiment, which were part of an experimental group?\\nContext: The passage below describes an experiment.\\n\\nLester worked in a restaurant that had a vegetable garden. Part of his job was to care for the tomato plants. He had heard that pruning, or trimming, tomato plants can help tomatoes grow. He wondered if pruning would affect how well his tomato plants grew.\\nLester chose 24 tomato plants that were similar in size. He pruned an equal number of branches from each of the first 12 plants. He left the other 12 plants unpruned. Then, each week, Lester weighed the tomatoes that he picked from each group of plants.\\nFigure: a tomato plant.\\nOptions: (A) the unpruned tomato plants (B) the pruned tomato plants\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to investigate whether changing a variable between different groups has a specific outcome.\\nFor example, imagine you want to find out whether adding fertilizer to soil affects the height of pea plants. You could investigate this question with the following experiment:\\nYou grow one group of pea plants in soil with fertilizer and measure the height of the plants. This group shows you what happens when fertilizer is added to soil. Since fertilizer is the variable whose effect you are investigating, this group is an experimental group.\\nYou grow another group of pea plants in soil without fertilizer and measure the height of the plants. Since this group shows you what happens when fertilizer is not added to the soil, it is a control group.\\nBy comparing the results from the experimental group to the results from the control group, you can conclude whether adding fertilizer to the soil affects pea plant height. In this experiment, Lester investigated whether pruning tomato plants affects the weight of the tomatoes. So, the pruned tomato plants were part of an experimental group.\\nThe unpruned tomato plants were not pruned. So, they were not part of an experimental group. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11119\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nThe floor of a valley is covered by water after a heavy rainfall.\\nContext: N/A\\nOptions: (A) wildfire (B) flood (C) volcanic eruption\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11120\",\n    \"image\": \"11120\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Delaware (B) West Virginia (C) Iowa (D) Alabama\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. Iowa is farthest north. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11123\",\n    \"image\": \"11123\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is weaker in Pair 2. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is weaker in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11126\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\npassage - pigeon\\nContext: N/A\\nOptions: (A) puppet (B) phantom\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince phantom is between the guide words passage - pigeon, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11131\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Judy inherited this trait?\\nContext: Read the description of a trait.\\nJudy has red hair.\\nOptions: (A) Judy's parents have red hair. They passed down this trait to Judy. (B) Judy and her mother both wear their hair in braids.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11132\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Anne decides to go on the spinning teacups. Which result would be a cost?\\nContext: Anne is deciding which ride to go on at the fair. She can go on either the scrambler or the spinning teacups. She wants to have as much fun as possible at the fair.\\nOptions: (A) Anne will give up the chance to go on the scrambler. She would have had more fun on that ride. (B) Anne will save some ride tickets. She needs fewer tickets to go on the spinning teacups than on the scrambler.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Anne wants or needs:\\nAnne will give up the chance to go on the scrambler. She would have had more fun on that ride. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11137\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Mabel investigate with an experiment?\\nContext: Mabel gets a basketball for her birthday and dribbles it around her neighborhood. She notices that sometimes the ball bounces higher than other times. She wonders what factors affect how high her ball bounces. So, she decides to design an experiment. She has the following supplies available:\\none basketball\\naccess to a brick patio\\naccess to a grassy lawn\\naccess to a gravel driveway\\na meterstick\\nOptions: (A) Does the basketball bounce higher on gravel or on grass? (B) Does the basketball bounce higher on a lawn or on a dirt path? (C) Do larger basketballs bounce higher than smaller basketballs on a brick patio?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11138\",\n    \"image\": \"11138\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of North Dakota?\\nContext: N/A\\nOptions: (A) Kansas City (B) Bismarck (C) Fargo (D) Davenport\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Bismarck is the capital of North Dakota. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11145\",\n    \"image\": \"11145\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is weaker in Pair 1. (C) The magnetic force is weaker in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11149\",\n    \"image\": \"11149\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Tonga (B) New Zealand (C) Tuvalu (D) Kiribati\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Tonga. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11155\",\n    \"image\": \"11155\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Mississippi?\\nContext: N/A\\nOptions: (A) Charleston (B) Portland (C) Jackson (D) Biloxi\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jackson is the capital of Mississippi. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11169\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a bowl of ice cream?\\nContext: Select the better estimate.\\nOptions: (A) 39\\u00b0C (B) 39\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a bowl of ice cream is 39\\u00b0F.\\n39\\u00b0C is too hot. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11177\",\n    \"image\": \"11177\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does Chelonoidis nigra have cells that have a nucleus?\\nContext: This organism is Chelonoidis nigra. It is a member of the animal kingdom.\\nChelonoidis nigra is commonly called a Gal\\u00e1pagos giant tortoise. These large tortoises live on the Gal\\u00e1pagos Islands. When Spanish sailors arrived at these islands in the 1530s, about 200,000 Gal\\u00e1pagos giant tortoises lived on the islands. The Spanish sailors named the islands after a Spanish word for tortoise, gal\\u00e1pago.\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Chelonoidis nigra is an animal. Animal cells have a nucleus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11180\",\n    \"image\": \"11180\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this push?\\nContext: A boy plays with marbles. He pushes one of the marbles with his thumb.\\nOptions: (A) toward the boy's thumb (B) away from the boy's thumb\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"One object can make another object move with a push or a pull.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The boy pushes his marble away from his thumb. The direction of the push is away from the boy's thumb. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11181\",\n    \"image\": \"11181\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Massachusetts (B) Ohio (C) Indiana (D) New Hampshire\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Massachusetts.\\nThe Massachusetts Colony included land that would later become the state of Maine. Maine was never its own colony. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11187\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one true statement.\\nContext: N/A\\nOptions: (A) Plant cells can have a nucleus but do not have chloroplasts. (B) The Golgi packages proteins and other substances and directs them to different parts of a plant cell. (C) In an animal cell, the vacuoles contain the master plan for cell activities and cell development.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11191\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nBridget felt intimidated by the steep cliff that she faced on her first rock-climbing adventure.\\nContext: N/A\\nOptions: (A) exclamatory (B) interrogative (C) declarative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement and always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn imperative sentence makes a request or a demand and usually ends with a period. If a demand shows strong feeling, it can end with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn interrogative sentence asks a question and always ends with a question mark.\\nGiven the recent critiques of her new strategic plan, do you think the CEO will reconsider the company's direction?\\nAn exclamatory sentence is a statement that shows surprise or strong feeling. An exclamation always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence is a statement and ends with a period. It is a declarative sentence. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11195\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does the sentence use a simile or a metaphor?\\nMrs. Leonard is kind, and her heart is gold.\\nContext: N/A\\nOptions: (A) metaphor (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. Mrs. Leonard is kind, and her heart is gold.\\nThe words heart and gold are compared without the word like or as. So, the sentence uses a metaphor. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11198\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Troy decides to see the otters. Which result would be a cost?\\nContext: Troy is deciding whether to see the lemurs or the otters at the zoo. He wants to see lots of animals, but the zoo is closing soon.\\nOptions: (A) Troy will save some time. The otters are close by, but he would have had to walk to the the other side of the zoo to see the lemurs. (B) Troy will give up the chance to see the lemurs. He would have enjoyed seeing them more than the otters.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Troy wants or needs:\\nTroy will give up the chance to see the lemurs. He would have enjoyed seeing them more than the otters. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11199\",\n    \"image\": \"11199\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is hematite a mineral or a rock?\\nContext: Hematite has the following properties:\\nmetallic luster\\nnot made by living things\\nfixed crystal structure\\nfound in nature\\nsolid\\npure substance\\nOptions: (A) rock (B) mineral\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Hematite has all the properties of a mineral. So, hematite is a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11201\",\n    \"image\": \"11201\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with mutated antennae to offspring with normal antennae? Choose the most likely ratio.\\nContext: This passage describes the antenna type trait in fruit flies:\\nMost fruit flies have a pair of antennae on their head. But, some flies appear to have an extra pair of legs on their head instead! These flies have a mutation, or change, in a gene that affects body development. This mutation makes the cells in the fly's head form mutated antennae that are like legs.\\nIn a group of fruit flies, some individuals have mutated antennae and others have normal antennae. In this group, the gene for the antenna type trait has two alleles. The allele for mutated antennae (A) is dominant over the allele for normal antennae (a).\\nThis Punnett square shows a cross between two fruit flies.\\nOptions: (A) 1:3 (B) 0:4 (C) 3:1 (D) 2:2 (E) 4:0\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with mutated antennae or normal antennae, consider whether each phenotype is the dominant or recessive allele's version of the antenna type trait. The question tells you that the A allele, which is for mutated antennae, is dominant over the a allele, which is for normal antennae.\\nMutated antennae is the dominant allele's version of the antenna type trait. A fruit fly with the dominant version of the antenna type trait must have at least one dominant allele for the antenna type gene. So, offspring with mutated antennae must have the genotype AA or Aa.\\nThere are 3 boxes in the Punnett square with the genotype AA or Aa. These boxes are highlighted below.\\nNormal antennae is the recessive allele's version of the antenna type trait. A fruit fly with the recessive version of the antenna type trait must have only recessive alleles for the antenna type gene. So, offspring with normal antennae must have the genotype aa.\\nThere is 1 box in the Punnett square with the genotype aa. This box is highlighted below.\\nSo, the expected ratio of offspring with mutated antennae to offspring with normal antennae is 3:1. This means that, on average, this cross will produce 3 offspring with mutated antennae for every 1 offspring with normal antennae. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11202\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this plant's phenotype for the flower color trait?\\nContext: In a group of scarlet rosemallow plants, some individuals have red flowers and others have white flowers. In this group, the gene for the flower color trait has two alleles. The allele for red flowers (F) is dominant over the allele for white flowers (f).\\nA certain scarlet rosemallow plant from this group has the homozygous genotype ff for the flower color gene.\\nOptions: (A) white flowers (B) red flowers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. The scarlet rosemallow plant's genotype for the flower color gene is ff. The scarlet rosemallow plant's genotype of ff has only f alleles. The f allele is for white flowers. So, the scarlet rosemallow plant's phenotype for the flower color trait must be white flowers.\\nTo check this answer, consider whether the scarlet rosemallow plant's alleles are dominant or recessive. The allele for red flowers (F) is dominant over the allele for white flowers (f). This means F is a dominant allele, and f is a recessive allele.\\nThe scarlet rosemallow plant's genotype of ff has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, the scarlet rosemallow plant's phenotype for the flower color trait must be white flowers. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11206\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nPotassium chloride is ().\\nContext: Potassium chloride can be added to food as a substitute for table salt. The chemical formula for potassium chloride is KCl.\\nOptions: (A) a compound (B) an elementary substance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nThe atomic symbol for each chemical element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one atomic symbol.\\nThe atomic symbol in a chemical formula may be followed by a small number written lower than the symbol. This number is called a subscript. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript shows how many atoms are in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen, O2, has a subscript of 2. This subscript shows that the atomic symbol O represents two atoms. The elementary substance O2 and the chemical element represented by the atomic symbol O are both named oxygen. So, the formula tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple atomic symbols.\\nThe chemical elements in a compound are bonded together in a fixed ratio. This ratio is shown in a compound's chemical formula.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. So, the ratio of beryllium atoms to fluorine atoms is 1 to 2. This ratio is shown in the chemical formula for beryllium fluoride, BeF2. There is no subscript following the atomic symbol Be because that symbol represents one atom. The subscript 2 follows the atomic symbol F to show that the symbol represents two atoms. You can tell whether potassium chloride is an elementary substance or a compound by counting the number of atomic symbols in its chemical formula. An atomic symbol consists of either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for potassium chloride, KCl, contains two atomic symbols: K for potassium and Cl for chlorine. So, the formula tells you that potassium chloride is composed of two chemical elements bonded together.\\nSince potassium chloride is composed of multiple chemical elements bonded together, potassium chloride is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11215\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Denise inherited this trait?\\nContext: Read the description of a trait.\\nDenise has straight hair.\\nOptions: (A) Denise's biological mother often wears her straight hair in a ponytail. (B) Denise's biological parents have red hair. Denise also has red hair. (C) Denise's neighbor also has straight hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11218\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nChicken cooking in an oven is a ().\\nContext: N/A\\nOptions: (A) physical change (B) chemical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form new molecules. The types of molecules in matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then relink and form different molecules. For example, carbon dioxide molecules are created when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. For example, water vaporizing is a physical change. Liquid water and water vapor are made of the same type of matter: water. Cooking chicken is a chemical change. The heat causes the matter in the chicken to change. Cooked chicken and raw chicken are different types of matter. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11219\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nAudrey finally found her phone () under the bed.\\nContext: N/A\\nOptions: (A) missing (B) hiding\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word hiding. It describes the phone as if it were a person who is hiding. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11220\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word children on a dictionary page with the following guide words?\\ncarriage - cloak\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince children is between the guide words carriage - cloak, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11223\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Cheyenne's phenotype for the coat color trait?\\nContext: In a group of cows, some individuals have a black coat and others have a red coat. In this group, the gene for the coat color trait has two alleles. The allele for a red coat (l) is recessive to the allele for a black coat (L).\\nCheyenne is a cow from this group. Cheyenne has the homozygous genotype ll for the coat color gene.\\nOptions: (A) a black coat (B) a red coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Cheyenne's genotype for the coat color gene is ll. Cheyenne's genotype of ll has only l alleles. The l allele is for a red coat. So, Cheyenne's phenotype for the coat color trait must be a red coat.\\nTo check this answer, consider whether Cheyenne's alleles are dominant or recessive. The allele for a red coat (l) is recessive to the allele for a black coat (L). This means L is a dominant allele, and l is a recessive allele.\\nCheyenne's genotype of ll has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Cheyenne's phenotype for the coat color trait must be a red coat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11227\",\n    \"image\": \"11227\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Mount Rainier National Park ecosystem?\\nContext: Figure: Mount Rainier National Park.\\nMount Rainier National Park is a taiga ecosystem in Washington State. The park is named after a volcano called Mount Rainier, which is covered in glaciers.\\nOptions: (A) It has many evergreen trees. (B) It has soil that is frozen year-round.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A taiga is a type of ecosystem. Taigas have the following features: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. So, the following statements describe the Mount Rainier National Park ecosystem: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. It has soil that is poor in nutrients. It has many evergreen trees. The following statement does not describe Mount Rainier National Park: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. It has soil that is frozen year-round. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11238\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a kitchen sink?\\nContext: Select the better estimate.\\nOptions: (A) 22 liters (B) 22 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a kitchen sink is 22 liters.\\n22 milliliters is too little. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11241\",\n    \"image\": \"11241\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Houston.\\nHouston is a city near the coast of Texas. A record 42 inches of rain fell near Houston during the last week of July in 1979.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nHouston is a city near the coast of Texas. A record 42 inches of rain fell near Houston during the last week of July in 1979.\\nThe underlined part of the passage tells you about the amount of rain that fell during a single week in 1979. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11246\",\n    \"image\": \"11246\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) bromine (B) hydrazine (C) trichlorofluoromethane\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11252\",\n    \"image\": \"11252\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample A (C) sample B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample B has more mass than each particle in sample A. The particles in sample B also have a higher average speed than the particles in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11254\",\n    \"image\": \"11254\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of South Dakota?\\nContext: N/A\\nOptions: (A) Springfield (B) Pierre (C) Rapid City (D) Frankfort\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Pierre is the capital of South Dakota. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11257\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nBlue Moon, you saw me standing alone\\nWithout a dream in my heart,\\nWithout a love of my own.\\n\\u2014Lorenz Hart, \\\"Blue Moon\\\"\\nContext: N/A\\nOptions: (A) apostrophe (B) antithesis\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses apostrophe, a direct address to an absent person or a nonhuman entity.\\nBlue Moon is a direct address to the moon, a nonhuman entity. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11260\",\n    \"image\": \"11260\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's legs are also adapted for wading?\\nContext: Shoebills live near marshes and lakes in Africa. They eat fish, frogs, and small reptiles that live in shallow water. Shoebills hunt their prey by walking through water, or wading.\\nThe 's legs are adapted for wading. They are lightweight and keep the bird's body above the water.\\nFigure: shoebill.\\nOptions: (A) African sacred ibis (B) kookaburra\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nArms, legs, flippers, and wings are different types of limbs. The type of limbs an animal has is an example of an adaptation. Animals' limbs can be adapted in different ways. For example, long legs might help an animal run fast. Flippers might help an animal swim. Wings might help an animal fly. Look at the picture of the shoebill.\\nLong legs help the shoebill keep its body above the surface of the water while wading. Thin legs are easier to move through the water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe African sacred ibis has long, thin legs. Its legs are adapted for wading.\\nThe kookaburra has short legs. Its legs are not adapted for wading. The kookaburra uses its legs to walk and perch. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11262\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ndad - distant\\nContext: N/A\\nOptions: (A) drive (B) deserve\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince deserve is between the guide words dad - distant, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11263\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nHow do I know that Beth is the most intelligent person in our geometry class? I know because she's so smart.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) hasty generalization: a very broad claim based on very little evidence\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Beth is intelligent because she's smart. However, the \\\"evidence\\\" is just a restatement of the claim itself. This illustrates a type of logical fallacy known as circular reasoning. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11280\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAs Scott sat down on the rickety old chair, it abruptly collapsed beneath him.\\nContext: N/A\\nOptions: (A) complex (B) compound-complex (C) compound (D) simple\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is complex. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction as.\\nAs Scott sat down on the rickety old chair, it abruptly collapsed beneath him. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11283\",\n    \"image\": \"11283\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of pink particles?\\nContext: The diagram below is a model of two solutions. Each pink ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution A (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the pink particles represent the solute. To figure out which solution has a higher concentration of pink particles, look at both the number of pink particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of pink particles per milliliter.\\nSolution B has more pink particles per milliliter. So, Solution B has a higher concentration of pink particles. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11285\",\n    \"image\": \"11285\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the purple heron.\\nContext: This organism is a purple heron. Its scientific name is Ardea purpurea.\\nOptions: (A) Caprimulgus europaeus (B) Ardea purpurea (C) Ardea herodias\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A purple heron's scientific name is Ardea purpurea.\\nArdea purpurea is in the same genus as Ardea herodias, but they are not in the same species.\\nOrganisms in the same species have the same scientific names. Ardea purpurea and Ardea herodias are different species within the same genus.\\nCaprimulgus europaeus does not have the same scientific name as a purple heron. So, Ardea purpurea and Caprimulgus europaeus are not in the same species.\\nArdea purpurea has the same scientific name as a purple heron. So, these organisms are in the same species. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11293\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) dung beetle (B) rainbow boa (C) curlyhair tarantula (D) monarch butterfly\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A monarch butterfly is an insect. Like other insects, a monarch butterfly is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA rainbow boa is a reptile. Like other reptiles, a rainbow boa is a vertebrate. It has a backbone.\\nA dung beetle is an insect. Like other insects, a dung beetle is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nLike other tarantulas, a curlyhair tarantula is an invertebrate. It does not have a backbone. It has an exoskeleton. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11296\",\n    \"image\": \"11296\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) transparent (B) sour (C) opaque\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA lemon has a sour taste. The glass bowl and the water are not sour.\\nYou can see clearly through a transparent object. All three objects are transparent.\\nAn opaque object does not let light through. None of the objects are opaque.\\nThe property that all three objects have in common is transparent. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11300\",\n    \"image\": \"11300\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the north pole of the other magnet. Poles that are different attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11309\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Rafi investigate with an experiment?\\nContext: Rafi is washing dishes after cooking his dinner. He notices that some of the dishes still feel oily after being washed. He wonders what factors affect how clean dishes are after they are washed. So, he decides to design an experiment. He has the following supplies available:\\na sponge\\nliquid dish detergent\\na bar of soap\\nhot water\\ncold water\\na pile of dirty dishes\\nOptions: (A) Are dishes cleaner when washed with liquid dish detergent or with bar soap? (B) Are dishes washed in a dishwasher cleaner than dishes washed by hand? (C) Are dishes cleaner when washed with a soapy sponge or with a soapy rag?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11317\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a goat?\\nContext: Select the better estimate.\\nOptions: (A) 34 kilograms (B) 34 grams\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of a goat is 34 kilograms.\\n34 grams is too light. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11318\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the air on a warm, sunny day?\\nContext: Select the better estimate.\\nOptions: (A) 28\\u00b0F (B) 28\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the air on a warm, sunny day is 28\\u00b0C.\\n28\\u00b0F is too cold. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11320\",\n    \"image\": \"11320\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nPotassium bromide is ().\\nContext: The model below represents potassium bromide. In some countries, potassium bromide can be used as medicine to treat seizures.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a space-filling model. The space-filling model below represents the compound potassium chloride.\\nIn a space-filling model, the balls represent atoms that are bonded together. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. Use the model to determine whether potassium bromide is an elementary substance or a compound.\\nStep 1: Interpret the model.\\n.\\nUse the legend to determine the chemical element represented by each color. The colors and atomic symbols from the legend are shown in the table below. The table also includes the names of the chemical elements represented in the model.\\nYou can see from the model that potassium bromide is composed of potassium atoms and bromine atoms bonded together.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that potassium bromide is composed of two chemical elements: potassium and bromine. Since potassium bromide is composed of multiple chemical elements bonded together, potassium bromide is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11324\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a paintbrush?\\nContext: Select the better estimate.\\nOptions: (A) 29 meters (B) 29 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a paintbrush is 29 centimeters.\\n29 meters is too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11333\",\n    \"image\": \"11333\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) neither; the samples have the same temperature (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in the two samples has the same mass, but the particles in sample A have a higher average speed than the particles in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11335\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Where were the effects of the Great Depression felt?\\nContext: N/A\\nOptions: (A) The Great Depression was felt only in the Western Hemisphere. (B) The Great Depression only affected the United States. (C) The Great Depression's impact was limited to North American countries. (D) The Great Depression affected countries around the world.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The Great Depression affected countries around the world. But some were hit harder than others. Many historians think the effects of the Great Depression were worst in the United States. There, the Depression lasted for more than ten years.\\nIn some other countries, the Depression was much shorter. In Sweden and Germany, for example, the Great Depression ended by 1936. Other countries, like Japan and the Soviet Union, were not strongly affected by the Great Depression. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11342\",\n    \"image\": \"11342\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Kaylee's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nPeople with diabetes sometimes take a medicine made from insulin. Insulin can be made by a special type of bacteria. Kaylee was a bioengineer who wanted to increase the amount of insulin that the bacteria produced by 20%. She read that giving the bacteria more nutrients could affect the amount of insulin they produced. So, Kaylee gave extra nutrients to some of the bacteria. Then, she measured how much insulin those bacteria produced compared to bacteria that did not get extra nutrients.\\nFigure: studying bacteria in a laboratory.\\nOptions: (A) whether different types of bacteria would need different nutrients to produce insulin (B) whether she added enough nutrients to help the bacteria produce 20% more insulin (C) whether producing more insulin would help the bacteria grow faster\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11344\",\n    \"image\": \"11344\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Percy's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nPercy used a dropper to put equal-sized drops of pure water, one at a time, onto a penny. The drops stayed together and formed a dome on the penny's surface. Percy recorded the number of drops he could add before the water spilled over the edge of the penny. Then, he rinsed and dried the penny, and repeated the test using water mixed with hand soap. He repeated these trials on nine additional pennies. Percy compared the average number of pure water drops to the average number of water drops mixed with hand soap that he could add to a penny before the water spilled over.\\nFigure: a dome of water on the surface of a penny.\\nOptions: (A) Can pennies hold more drops of water mixed with dish soap or water mixed with hand soap? (B) Can pennies hold more drops of pure water or water mixed with hand soap?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11345\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a cherry pie?\\nContext: Select the best estimate.\\nOptions: (A) 2 tons (B) 2 ounces (C) 2 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a cherry pie is 2 pounds.\\n2 ounces is too light and 2 tons is too heavy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11346\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Shannon acquired this trait?\\nContext: Read the description of a trait.\\nShannon knows how to grow sunflowers.\\nOptions: (A) Last summer, Shannon's neighbor showed her how to grow sunflowers. (B) Both Shannon and her father grow sunflowers. (C) Shannon likes to visit sunflower fields.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11367\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nThe gardener struggled to tame the () vines.\\nContext: N/A\\nOptions: (A) overwhelming (B) merciless\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word merciless. It describes the vines as if they were people without mercy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11371\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three sailboats. Which sailboat was moving at the highest speed?\\nContext: N/A\\nOptions: (A) a sailboat that moved 70kilometers south in 5hours (B) a sailboat that moved 50kilometers south in 5hours (C) a sailboat that moved 65kilometers east in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the fastest will go the farthest distance in that time. It is moving at the highest speed. Look at the distance each sailboat moved and the time it took to move that distance. The direction each sailboat moved does not affect its speed.\\nNotice that each sailboat moved for 5 hours. The sailboat that moved 70 kilometers moved the farthest distance in that time. So, that sailboat must have moved at the highest speed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11373\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a mineral.\\nContext: N/A\\nOptions: (A) Sphalerite is a solid. It is a pure substance. (B) Paper is not a pure substance. It is a solid. (C) Pyrite is not made by living things. It is formed in nature.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Compare the properties of each substance to the properties of minerals. Select the substance whose properties do not match those of minerals.\\nPyrite is a mineral.\\nPaper is not a pure substance. But all minerals are pure substances.\\nSo, paper is not a mineral.\\nSphalerite is a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11374\",\n    \"image\": \"11374\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the tide pool ecosystems in Tongue Point Marine Life Sanctuary?\\nContext: Figure: Tongue Point Marine Life Sanctuary.\\nTongue Point Marine Life Sanctuary is in western Washington State. The park is on the coast of the Pacific Ocean. It has many tide pool ecosystems.\\nOptions: (A) It has no sunlight. It also has daily flooding and draining of seawater. (B) It has daily flooding and draining of seawater. It also has many different types of organisms.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A tide pool is a type of ecosystem. Tide pool ecosystems have the following features: daily flooding and draining of seawater, water that is rich in nutrients, and many different types of organisms. So, the tide pool ecosystems in Tongue Point Marine Life Sanctuary have daily flooding and draining of seawater. They also have many different types of organisms. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11380\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nHazel has no school spirit\\u2014she never comes to any of our football games.\\nContext: N/A\\nOptions: (A) red herring: the use of a completely unrelated topic or idea (B) false dichotomy: an argument that presents only two choices when more options exist\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Hazel doesn't have school spirit, because she doesn't go to football games. However, there may be a number of reasons why Hazel doesn't go to football games. This illustrates a type of logical fallacy known as a false dichotomy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11383\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nCindy groaned as her shrill alarm clock ().\\nContext: N/A\\nOptions: (A) went off (B) sprang to life\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the phrase sprang to life. It describes Cindy's clock as if it were an energetic person. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11384\",\n    \"image\": \"11384\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Zach's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nZach used a dropper to put equal-sized drops of pure water, one at a time, onto a penny. The drops stayed together and formed a dome on the penny's surface. Zach recorded the number of drops he could add before the water spilled over the edge of the penny. Then, he rinsed and dried the penny, and repeated the test using water mixed with hand soap. He repeated these trials on nine additional pennies. Zach compared the average number of pure water drops to the average number of water drops mixed with hand soap that he could add to a penny before the water spilled over.\\nFigure: a dome of water on the surface of a penny.\\nOptions: (A) Can pennies hold more drops of water mixed with dish soap or water mixed with hand soap? (B) Can pennies hold more drops of pure water or water mixed with hand soap?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11394\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a motorcycle a good or a service?\\nContext: N/A\\nOptions: (A) a service (B) a good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Everything you can buy is either a good or a service.\\nA good is something you can touch or hold in your hands. For example, a hammer is a good.\\nA service is a job you pay someone else to do. For example, cooking food in a restaurant is a service. To decide whether a motorcycle is a good or a service, ask these questions:\\nIs a motorcycle something you can touch? Yes.\\nIs a motorcycle a job you might pay someone else to do? No.\\nSo, a motorcycle is a good. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11397\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the allusion in this text suggest?\\nTroy seems to have the Midas touch. Without any special experience or training, he launched a thriving business and then established a well-respected charity.\\nContext: N/A\\nOptions: (A) Troy is lazy and uninformed. (B) Troy is successful at all that he does.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked. The text uses an allusion, a brief reference to someone or something well known.\\nThe allusion the Midas touch suggests that Troy is successful at all that he does. In Greek mythology, King Midas has the power to turn anything he touches into gold, easily creating value from nothing. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11399\",\n    \"image\": \"11399\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Tennessee?\\nContext: N/A\\nOptions: (A) Knoxville (B) Austin (C) Biloxi (D) Nashville\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Nashville is the capital of Tennessee. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11400\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Joy investigate with an experiment?\\nContext: Joy is outside with her friend on a sunny day. Joy is wearing a light-colored shirt, and she notices that she feels colder than her friend, who is wearing a dark shirt. She wonders what factors affect how fabric warms an object. So, she decides to design an experiment. She has the following supplies available:\\na black cotton shirt\\na white cotton shirt\\ntwo identical empty glass jars\\ntwo thermometers\\nOptions: (A) When wrapped in a cotton shirt and placed in the sun, does a large jar or a small jar heat up more? (B) When placed in the sun, does a glass jar wrapped in cotton heat up more than a glass jar wrapped in wool? (C) When placed in the sun, does a glass jar wrapped in a black cotton shirt heat up more than a glass jar wrapped in a white cotton shirt?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11408\",\n    \"image\": \"11408\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 2. (B) The magnetic force is stronger in Pair 1. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 2 are closer together than the magnets in Pair 1. So, the magnetic force is stronger in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11416\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a potato?\\nContext: Select the best estimate.\\nOptions: (A) 16 centimeters (B) 16 kilometers (C) 16 millimeters (D) 16 meters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a potato is 16 centimeters.\\n16 millimeters is too short. 16 meters and 16 kilometers are too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11417\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nSofia asked her mother if she could adopt a cat, and her mother replied, \\\"It's a definite maybe,\\\" so Sofia didn't want to get her hopes up.\\nContext: N/A\\nOptions: (A) oxymoron (B) euphemism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nDefinite maybe is a contradiction, because definite describes something that is sure, and maybe refers to something that is unsure. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11418\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\n\\\"I can't believe I tripped,\\\" Aiden remarked. \\\"The curb must have ()\\\".\\nContext: N/A\\nOptions: (A) jumped out in front of me (B) had an uneven surface\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the phrase jumped out in front of me. It describes the curb as if it were a mischievous, unpredictable person. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11421\",\n    \"image\": \"11421\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nChloroform is ().\\nContext: The model below represents a molecule of chloroform. Chloroform was once used for pain relief. It is no longer used because it can be dangerous to humans.\\nOptions: (A) a compound (B) an elementary substance\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All substances are made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the chemical element boron is B, and the symbol for the chemical element chlorine is Cl.\\nScientists can use models to represent molecules. A ball-and-stick model of a molecule is shown below. This model represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent chemical bonds. Notice how each ball is labeled with a symbol for a chemical element. The ball represents one atom of that element. Count the number of chemical elements represented in the model. Then, decide if chloroform is an elementary substance or a compound.\\nIn this model, each ball is labeled with C for carbon, H for hydrogen, or Cl for chlorine. So, the model shows you that chloroform is made of three chemical elements bonded together.\\nSubstances made of two or more chemical elements bonded together are compounds. So, chloroform is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11429\",\n    \"image\": \"11429\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is hornblende a mineral or a rock?\\nContext: Hornblende has the following properties:\\nfound in nature\\npure substance\\ndull luster\\nfixed crystal structure\\nsolid\\nnot made by organisms\\nOptions: (A) rock (B) mineral\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Hornblende has all the properties of a mineral. So, hornblende is a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11430\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Petunia's genotype for the fleece type gene?\\nContext: This passage describes the fleece type trait in sheep:\\n\\nIn a group of sheep, some individuals have a hairy fleece and others have a woolly fleece. In this group, the gene for the fleece type trait has two alleles. The allele F is for a hairy fleece, and the allele f is for a woolly fleece.\\nPetunia, a sheep from this group, has a hairy fleece. Petunia has two alleles for a hairy fleece.\\nOptions: (A) FF (B) a hairy fleece\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Petunia has two alleles for a hairy fleece (F). So, Petunia's genotype for the fleece type gene is FF. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11434\",\n    \"image\": \"11434\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe volume of Neptune is less than 75% of the volume of Uranus.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. To determine if this statement is true, calculate the value of 75% of the volume of Uranus by multiplying its volume by 0.75.\\nThen compare the result to the volume of Neptune. The volume of Neptune is 62,530 billion km^3, which is more than 51,248 billion km^3. So, the volume of Neptune is more than 75% of the volume of Uranus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11445\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that Joseph's mass did not change.\\nThe gravitational potential energy stored between Joseph and Earth () as he hiked toward the summit.\\nContext: Read the text about a person in motion.\\nJoseph hiked up a tall mountain. He followed a trail all the way to the summit.\\nOptions: (A) increased (B) stayed the same (C) decreased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between Joseph and the center of Earth changed.\\nThe summit of the mountain was higher than the point where Joseph started hiking. As he hiked toward the summit, the distance between Joseph and the center of Earth increased. So, the gravitational potential energy stored between Joseph and Earth increased as he hiked toward the summit. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11446\",\n    \"image\": \"11446\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Mike's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nMike mixed bacteria into a nutrient-rich liquid where the bacteria could grow. He poured four ounces of the mixture into each of ten glass flasks. In five of the ten flasks, he also added one teaspoon of cinnamon. He allowed the bacteria in the flasks to grow overnight in a 37\\u00b0C room. Then, Mike used a microscope to count the number of bacteria in a small sample from each flask. He compared the amount of bacteria in the liquid with cinnamon to the amount of bacteria in the liquid without cinnamon.\\nFigure: flasks of liquid for growing bacteria.\\nOptions: (A) Do more bacteria grow in liquid with cinnamon than in liquid without cinnamon? (B) Does temperature affect how much bacteria can grow in liquid?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11453\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird.\\nContext: N/A\\nOptions: (A) red-eyed tree frog (B) harbor seal (C) Steller's sea eagle (D) humpback whale\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds have feathers, two wings, and a beak. A humpback whale is a mammal. It has hair and feeds its young milk.\\nWhales are mammals that live in the ocean. Humpback whales have small hairs that grow from bumps around their mouth.\\nA red-eyed tree frog is an amphibian. It has moist skin and begins its life in water.\\nA red-eyed tree frog has sticky pads on its toes. The sticky pads help the red-eyed tree frog hold on to leaves.\\nA harbor seal is a mammal. It has fur and feeds its young milk.\\nSeals have flippers instead of arms! They use their flippers to swim underwater or to crawl on the beach.\\nA Steller's sea eagle is a bird. It has feathers, two wings, and a beak.\\nSea eagles use their sharp beaks to eat fish and other birds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11454\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence uses a simile?\\nContext: N/A\\nOptions: (A) Joe's eyes are as green as emeralds. (B) Joe's eyes are bright green emeralds.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. This sentence uses a simile:\\nJoe's eyes are as green as emeralds.\\nThe words eyes and emeralds are compared using the word as.\\nThis sentence uses a metaphor:\\nJoe's eyes are bright green emeralds.\\nThe words eyes and emeralds are compared without the word like or as. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11457\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) When Erica and her sister flew to Hawaii last month, the airline lost her baggage. (B) The airline lost Erica's baggage when she flew to Hawaii with her sister last month.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun her could refer to Erica's or her sister's.\\nWhen Erica and her sister flew to Hawaii last month, the airline lost her baggage.\\nThe first answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nThe airline lost Erica's baggage when she flew to Hawaii with her sister last month. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11468\",\n    \"image\": \"11468\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Utah?\\nContext: N/A\\nOptions: (A) Salt Lake City (B) Nashville (C) Boston (D) Salem\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salt Lake City is the capital of Utah. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11480\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nsewing an apron\\nmixing lettuce and salad dressing\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are chemical changes. (C) Both are only physical changes. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nSewing an apron is a physical change. The fabric and thread that make up the apron get a new shape, but the type of matter in each of them does not change.\\nMixing lettuce and salad dressing is a physical change. Together, the salad and dressing make a mixture. But making this mixture does not form a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11487\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to mow the lawn?\\nContext: Select the better estimate.\\nOptions: (A) 30 minutes (B) 30 seconds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to mow the lawn is 30 minutes.\\n30 seconds is too fast. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11489\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nNellie learns about her ancestors in the book.\\nContext: N/A\\nOptions: (A) past tense (B) present tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, learns. The verb ends in -s and tells you about something that is true or happening now. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11496\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a carton of orange juice?\\nContext: Select the better estimate.\\nOptions: (A) 2 liters (B) 2 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a carton of orange juice is 2 liters.\\n2 milliliters is too little. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11497\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text message is more formal?\\nContext: N/A\\nOptions: (A) Heads up! Schmidt is here. In the lobby. (B) Ms. Schmidt is already here. She's waiting in the lobby.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The first text message is more formal. It uses complete sentences, avoids slang (heads up), and uses the person's title (Ms. Schmidt). The other text message includes more casual language and sentence fragments. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11498\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Mona decides to go on the super starship. Which result would be a cost?\\nContext: Mona is deciding which ride to go on at the fair. She can go on either the super starship or the pirate ship. She wants to have as much fun as possible at the fair.\\nOptions: (A) Mona will have more fun on the super starship than she would have had on the pirate ship. (B) Mona will spend more ride tickets on the super starship than she would have spent on the pirate ship.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Mona wants or needs:\\nMona will spend more ride tickets on the super starship than she would have spent on the pirate ship. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11502\",\n    \"image\": \"11502\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to use its neck to appear large and scary to a predator?\\nContext: Bearded dragons are lizards. Their predators include owls, eagles, and snakes. The uses its neck to appear large and scary to a predator.\\nFigure: bearded dragon.\\nOptions: (A) Madagascar day gecko (B) Mozambique spitting cobra\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's neck is one example of an adaptation. Animals' necks can be adapted in different ways. For example, a large frilled neck might help an animal appear dangerous to its predators. A long neck might help an animal get food from tall trees. Look at the picture of the bearded dragon.\\nWhen frightened, the bearded dragon can spread out its hood to appear larger and more dangerous. If a predator is nearby, the hood can help scare it away.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe Mozambique spitting cobra has a hood around its neck. It uses its neck to appear larger and more dangerous to a predator.\\nThe Madagascar day gecko has a short neck. Its neck is not adapted to help it appear larger and more dangerous to a predator. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11505\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nThe humidity is low where Brody lives. So, the air is usually dry.\\nContext: N/A\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nThe humidity is low where Brody lives. So, the air is usually dry.\\nHumidity is the amount of water in the air.\\nThis passage tells you about the usual humidity where Brody lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11509\",\n    \"image\": \"11509\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Boulder (B) Colorado Springs (C) Dallas (D) Denver\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11511\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Last year, 50,000 people lived in the city of Richmond. But since then, 8,000 people have moved away. What probably happened to the overall supply of houses for sale in Richmond?\\nContext: N/A\\nOptions: (A) The supply probably went down. (B) The supply probably went up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. The population of Richmond fell by 8,000 people. Many of the people who have left are probably trying to sell their houses. Since more people are trying to sell their houses, the number of suppliers of houses for sale in Richmond has gone up. So, the supply of houses for sale probably went up, too. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11514\",\n    \"image\": \"11514\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) shiny (B) rough (C) fragile\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. All three objects are shiny.\\nA fragile object will break into pieces if you drop it. The car bumper and the gold ring are not fragile.\\nA rough object feels scratchy when you touch it. The car bumper and the gold ring are not rough.\\nThe property that all three objects have in common is shiny. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11523\",\n    \"image\": \"11523\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the true statement.\\nContext: Plants, animals, and all other organisms need energy from food to live and grow.\\n\\nHow do organisms get energy from food? Inside an organism's cells, food molecules are broken down and rearranged through chemical reactions. The reactions release chemical energy that the cells can use to power growth and other important cell processes. These processes allow the entire organism to live and grow.\\nFigure: a bear getting food.\\nOptions: (A) Animals need food, but plants don't. (B) Chemical energy can be used for cell growth.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical energy can be used for cell growth.\\nCells can use chemical energy to power many important cell processes, including growth.\\nAnimals need food, but plants don't.\\nAll organisms need energy from food. Some organisms, including most plants, make their own food.\\nMolecules from food can provide energy.\\nIn cells, food molecules are broken down and rearranged. These changes release chemical energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11532\",\n    \"image\": \"11532\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Tanvi's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nTanvi poured four ounces of water into each of six glasses. Tanvi dissolved one tablespoon of salt in each of three glasses, and did not add salt to the other three. Then, Tanvi placed an egg in one glass and observed if the egg floated. She removed the egg and dried it. She repeated the process with the other five glasses, recording each time if the egg floated. Tanvi repeated this test with two more eggs and counted the number of times the eggs floated in fresh water compared to salty water.\\nFigure: an egg floating in a glass of salty water.\\nOptions: (A) Are eggs more likely to float in fresh water or salty water? (B) Does the amount of water in a glass affect whether eggs sink or float in the water?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11545\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a soccer field?\\nContext: Select the best estimate.\\nOptions: (A) 390 inches (B) 390 yards (C) 390 miles (D) 390 feet\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a soccer field is 390 feet.\\n390 inches is too short. 390 yards and 390 miles are too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11546\",\n    \"image\": \"11546\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which part of the pineapple tree do we usually eat?\\nContext: People use pineapple trees for food. We usually eat the part of this plant that contains the seeds. It grows from a pollinated flower.\\nOptions: (A) the leaves (B) the root (C) the fruit\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The fruits and vegetables we eat are parts of plants! Plants are made up of different structures. The different structures carry out important functions.\\nThe roots take in water and nutrients from the soil. They also hold the plant in place in the soil.\\nThe stem supports the plant. It carries food, water, and nutrients through the plant.\\nThe leaves are where most of the plant's photosynthesis happens. Photosynthesis is the process plants use to turn water, sunlight, and carbon dioxide into food.\\nAfter they are pollinated, the flowers make seeds and fruit.\\nThe fruit contain the seeds. Each fruit grows from a pollinated flower.\\nThe seeds can grow into a new plant. Germination is when a seed begins to grow. The part of the pineapple tree we usually eat is the fruit. It contains the seeds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11548\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nHe had wasted too many opportunities, and now his last chance was ().\\nContext: N/A\\nOptions: (A) nearly gone (B) walking out the door\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the phrase walking out the door. It describes the last chance as if it were a person who was leaving a building. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11552\",\n    \"image\": \"11552\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of purple particles?\\nContext: The diagram below is a model of two solutions. Each purple ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the purple particles represent the solute. To figure out which solution has a higher concentration of purple particles, look at both the number of purple particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of purple particles per milliliter.\\nSolution A and Solution B have the same number of purple particles per milliliter. So, their concentrations are the same. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11556\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word middle on a dictionary page with the following guide words?\\nmeadow - mole\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince middle is between the guide words meadow - mole, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11559\",\n    \"image\": \"11559\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Peary Land ecosystem?\\nContext: Figure: Peary Land.\\nPeary Land is a tundra ecosystem in northern Greenland. It is part of Northeast Greenland National Park. That park is one of the largest national parks in the world, covering about 375,000 square miles.\\nOptions: (A) It has warm summers and cool winters. (B) It has many evergreen trees. (C) It has mostly small plants.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A tundra is a type of ecosystem. Tundras have the following features: long, cold winters and short, cold summers, soil that is frozen year-round, and mostly small plants. So, the following statement describes the Peary Land ecosystem: long, cold winters and short, cold summers, soil that is frozen year-round, and mostly small plants. It has mostly small plants. The following statements do not describe Peary Land: long, cold winters and short, cold summers, soil that is frozen year-round, and mostly small plants. It has warm summers and cool winters. It has many evergreen trees. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11572\",\n    \"image\": \"11572\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Atlantic Ocean (B) the Indian Ocean (C) the Southern Ocean (D) the Arctic Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Atlantic Ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11578\",\n    \"image\": \"11578\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) New York (B) Ohio (C) Colorado (D) Mississippi\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. New York is farthest east. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11581\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to fry an egg in a pan?\\nContext: Select the better estimate.\\nOptions: (A) 5 hours (B) 5 minutes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to fry an egg in a pan is 5 minutes.\\n5 hours is too slow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11582\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) fake (B) lake (C) bike\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the same sound.\\nThe words meet and treat also rhyme. They both end with the same sound, even though the sound has two different spellings.\\nThe words tip and meet don't rhyme. They end with different sounds. The words fake and lake rhyme. They both end with the ake sound.\\nThe word bike does not rhyme. It ends with a different sound. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11583\",\n    \"image\": \"11583\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with dumbo ears to offspring with normal ears? Choose the most likely ratio.\\nContext: This passage describes the ear type trait in rats:\\nSome rats have dumbo ears, which are larger and rounder than normal ears. Dumbo ears are also set on the sides of the rat's head instead of on the top. The word dumbo comes from the name of a cartoon elephant whose ears had a similar appearance.\\nIn a group of rats, some individuals have normal ears and others have dumbo ears. In this group, the gene for the ear type trait has two alleles. The allele for normal ears (E) is dominant over the allele for dumbo ears (e).\\nThis Punnett square shows a cross between two rats.\\nOptions: (A) 3:1 (B) 0:4 (C) 2:2 (D) 4:0 (E) 1:3\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with dumbo ears or normal ears, consider whether each phenotype is the dominant or recessive allele's version of the ear type trait. The question tells you that the E allele, which is for normal ears, is dominant over the e allele, which is for dumbo ears.\\nDumbo ears is the recessive allele's version of the ear type trait. A rat with the recessive version of the ear type trait must have only recessive alleles for the ear type gene. So, offspring with dumbo ears must have the genotype ee.\\nThere are 0 boxes in the Punnett square with the genotype ee.\\nNormal ears is the dominant allele's version of the ear type trait. A rat with the dominant version of the ear type trait must have at least one dominant allele for the ear type gene. So, offspring with normal ears must have the genotype EE or Ee.\\nAll 4 boxes in the Punnett square have the genotype EE or Ee.\\nSo, the expected ratio of offspring with dumbo ears to offspring with normal ears is 0:4. This means that, based on the Punnett square, this cross will never produce offspring with dumbo ears. Instead, this cross is expected to always produce offspring with normal ears. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11589\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Tora's phenotype for the coat pattern trait?\\nContext: In a group of leopards, some individuals have a spotted coat and others have a black coat. In this group, the gene for the coat pattern trait has two alleles. The allele A is for a spotted coat, and the allele a is for a black coat.\\nTora, a leopard from this group, has a black coat. Tora has two alleles for a black coat.\\nOptions: (A) aa (B) a black coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Tora's observable version of the coat pattern trait is a black coat. So, Tora's phenotype for the coat pattern trait is a black coat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11590\",\n    \"image\": \"11590\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's scientific name?\\nContext: This organism is Caprimulgus europaeus. It is also called a European nightjar.\\nOptions: (A) European nightjar (B) Caprimulgus europaeus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Caprimulgus europaeus is written in italics. The first word is capitalized, and the second word is not.\\nSo, Caprimulgus europaeus is the scientific name. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11591\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Shelby acquired this trait?\\nContext: Read the description of a trait.\\nShelby knows a lot about history.\\nOptions: (A) Shelby is most interested in American history. (B) Shelby learned history by reading.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11593\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal.\\nContext: N/A\\nOptions: (A) Kangaroos hop and swim. (B) Cherry trees can grow white or pink flowers.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A kangaroo is an animal. It hops and swims.\\nKangaroos hop to move around. They use their large tails for balance while hopping.\\nA cherry tree is a plant. It can grow white or pink flowers.\\nMany types of cherry trees come from Japan. Some of these trees have flowers, but no cherries! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11596\",\n    \"image\": \"11596\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material are these marbles made of?\\nContext: N/A\\nOptions: (A) glass (B) cardboard\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials. Look at the picture of the marbles.\\nThe marbles are made of glass.\\nHow are marbles made? First, glass is heated until it gets very soft. Next, the soft glass is rolled into balls. The glass balls slowly cool and form marbles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11597\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nLena has naturally straight hair.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Some humans are born with naturally straight hair. Others are born with naturally curly hair. Straight and curly are examples of hair texture.\\nSome people use tools to change how their hair looks. But this doesn't affect the natural texture of their hair. So, having naturally straight hair is an inherited trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11599\",\n    \"image\": \"11599\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Delaware (B) Florida (C) Rhode Island (D) Maine\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. Florida is farthest west. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11603\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nIt has not rained in over a week at Ian's house.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nIt has not rained in over a week at Ian's house.\\nThis passage tells you about the precipitation last week at Ian's house. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11605\",\n    \"image\": \"11605\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's neck is also adapted for reaching high branches?\\nContext: Gerenuk eat leaves and twigs. The 's neck is adapted for reaching branches that are high above the ground.\\nFigure: gerenuk.\\nOptions: (A) bison (B) giraffe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's neck is one example of an adaptation. Animals' necks can be adapted in different ways. For example, a large frilled neck might help an animal appear dangerous to its predators. A long neck might help an animal get food from tall trees. Look at the picture of the gerenuk.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe giraffe has a long neck. Its neck is adapted for reaching high branches.\\nThe bison has a short neck. Its neck is not adapted for reaching high branches. The bison eats mostly grass. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11606\",\n    \"image\": \"11606\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Utah?\\nContext: N/A\\nOptions: (A) Richmond (B) Provo (C) Phoenix (D) Salt Lake City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salt Lake City is the capital of Utah. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11607\",\n    \"image\": \"11607\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Pacific Ocean (B) the Arctic Ocean (C) the Indian Ocean (D) the Atlantic Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Pacific Ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11608\",\n    \"image\": \"11608\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) transparent (B) bouncy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA bouncy object will bounce back from the floor if you drop it. The glass bottle is not bouncy.\\nYou can see clearly through a transparent object. The glass bottle is transparent. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11609\",\n    \"image\": \"11609\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the text to describe the diagram.\\nSolute particles moved in both directions across the permeable membrane. But more solute particles moved across the membrane (). When there was an equal concentration on both sides, the particles reached equilibrium.\\nContext: The diagram below shows a solution with one solute. Each solute particle is represented by a yellow ball. The solution fills a closed container that is divided in half by a membrane. The membrane, represented by a dotted line, is permeable to the solute particles.\\nThe diagram shows how the solution can change over time during the process of diffusion.\\nOptions: (A) to the right than to the left (B) to the left than to the right\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a solution, solute particles move and spread throughout the solvent. The diagram below shows how a solution can change over time. Solute particles move from the area where they are at a higher concentration to the area where they are at a lower concentration. This movement happens through the process of diffusion.\\nAs a result of diffusion, the concentration of solute particles becomes equal throughout the solution. When this happens, the solute particles reach equilibrium. At equilibrium, the solute particles do not stop moving. But their concentration throughout the solution stays the same.\\nMembranes, or thin boundaries, can divide solutions into parts. A membrane is permeable to a solute when particles of the solute can pass through gaps in the membrane. In this case, solute particles can move freely across the membrane from one side to the other.\\nSo, for the solute particles to reach equilibrium, more particles will move across a permeable membrane from the side with a higher concentration of solute particles to the side with a lower concentration. At equilibrium, the concentration on both sides of the membrane is equal. Look at the diagram again. It shows you how the solution changed during the process of diffusion.\\nBefore the solute particles reached equilibrium, there were 6 solute particles on the left side of the membrane and 2 solute particles on the right side of the membrane.\\nWhen the solute particles reached equilibrium, there were 4 solute particles on each side of the membrane. There were 2 more solute particles on the right side of the membrane than before.\\nSo, for the solute particles to reach equilibrium, more solute particles must have moved across the membrane to the right than to the left. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11613\",\n    \"image\": \"11613\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of yellow particles?\\nContext: The diagram below is a model of two solutions. Each yellow ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution A (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the yellow particles represent the solute. To figure out which solution has a higher concentration of yellow particles, look at both the number of yellow particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of yellow particles per milliliter.\\nSolution B has more yellow particles per milliliter. So, Solution B has a higher concentration of yellow particles. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11639\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nMorning clouds usually clear up by noon where Leo lives.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nMorning clouds usually clear up by noon where Leo lives.\\nThis passage tells you about the usual pattern of clouds where Leo lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11643\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) snowy owl (B) peacock butterfly (C) bess beetle (D) Caribbean spiny lobster\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A bess beetle is an insect. Like other insects, a bess beetle is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA Caribbean spiny lobster is a crustacean. Like other crustaceans, a Caribbean spiny lobster is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA snowy owl is a bird. Like other birds, a snowy owl is a vertebrate. It has a backbone.\\nA peacock butterfly is an insect. Like other insects, a peacock butterfly is an invertebrate. It does not have a backbone. It has an exoskeleton. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11656\",\n    \"image\": \"11656\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Neil and Darnell trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nNeil and Darnell open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Neil wanted broccoli in his lunch and Darnell was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Darnell can trade his almonds for Neil's tomatoes. (B) Darnell can trade his broccoli for Neil's oranges. (C) Neil can trade his tomatoes for Darnell's sandwich. (D) Neil can trade his tomatoes for Darnell's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Neil wanted broccoli in his lunch and Darnell was hoping for tomatoes. Look at the labeled part of the images.\\nNeil has tomatoes. Darnell has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11663\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Guardians of the Galaxy was the most enjoyable film of 2014. (B) Guardians of the Galaxy was released in theaters on July 24, 2014.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Statements of fact make claims that are based on research, observation, or experimentation. Facts can be proved with evidence.\\nNapoleon Bonaparte was shorter than King Louis XVI.\\nThis statement is a fact. The statement can be verified by researching and comparing the height of each man.\\nStatements of opinion make claims that are based on personal judgments or perspectives. Opinions can be supported by evidence, but they cannot be definitively proved.\\nNapoleon Bonaparte was a better leader than King Louis XVI.\\nThis statement is an opinion. People can have different ideas about what makes someone a \\\"better\\\" leader, so the statement cannot be proved. The first sentence states a fact. It can be verified by looking up the movie's date.\\nGuardians of the Galaxy was released in theaters on July 24, 2014.\\nThe second sentence states an opinion. The most enjoyable indicates a personal judgment.\\nGuardians of the Galaxy was the most enjoyable film of 2014. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11664\",\n    \"image\": \"11664\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Washington?\\nContext: N/A\\nOptions: (A) Olympia (B) Salt Lake City (C) Nampa (D) Springfield\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Olympia is the capital of Washington. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11670\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Martha acquired this trait?\\nContext: Read the description of a trait.\\nMartha knows how to knit sweaters.\\nOptions: (A) Martha knits sweaters using cotton, wool, and other types of yarn. (B) Martha learned how to knit in an after school program.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11675\",\n    \"image\": \"11675\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Papua New Guinea (B) New Zealand (C) Australia (D) Nauru\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is New Zealand. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11688\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Danny inherited this trait?\\nContext: Read the description of a trait.\\nDanny has pale skin.\\nOptions: (A) Danny and his father both have dark hair. (B) Danny's parents have pale skin. They passed down this trait to Danny.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11690\",\n    \"image\": \"11690\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the south pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11695\",\n    \"image\": \"11695\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Georgia (B) Kentucky (C) New Mexico (D) Arkansas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. Kentucky is farthest north. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11696\",\n    \"image\": \"11696\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Jennifer and Melissa trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nJennifer and Melissa open their lunch boxes in the school cafeteria. Neither Jennifer nor Melissa got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nJennifer's lunch Melissa's lunch\\nOptions: (A) Jennifer can trade her tomatoes for Melissa's carrots. (B) Melissa can trade her broccoli for Jennifer's oranges. (C) Melissa can trade her almonds for Jennifer's tomatoes. (D) Jennifer can trade her tomatoes for Melissa's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nJennifer wants broccoli. Melissa wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11715\",\n    \"image\": \"11715\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Can Rhizophora mangle cells make their own food?\\nContext: This organism is Rhizophora mangle. It is a member of the plant kingdom.\\nRhizophora mangle is commonly called a red mangrove. Red mangrove trees grow in or near water. They have strong roots that help prop, or hold, them up. These roots are also aerial, which means that they can grow above the ground. So, the red mangrove roots are called aerial prop roots.\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Rhizophora mangle is a plant. Plant cells can make their own food. Plant cells make food using photosynthesis. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11728\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word factoid in its traditional sense?\\nContext: N/A\\nOptions: (A) As a geneticist, Jackie dislikes many popular sci-fi movies because they often present audiences with factoids that misrepresent her field. (B) As a geneticist, Jackie enjoys watching science documentaries and sharing various factoids she's learned with her colleagues.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses factoid in its traditional sense: something made up presented as a true fact.\\nAs a geneticist, Jackie dislikes many popular sci-fi movies because they often present audiences with factoids that misrepresent her field.\\nThe second text uses factoid in its nontraditional sense: a trivial but true fact.\\nAs a geneticist, Jackie enjoys watching science documentaries and sharing various factoids she's learned with her colleagues.\\nMost style guides recommend to use the traditional sense of the word factoid because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11733\",\n    \"image\": \"11733\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) smooth (B) translucent (C) transparent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA translucent object lets light through. But you cannot see clearly through a translucent object. The rubber ball and the silver ring are not translucent.\\nYou can see clearly through a transparent object. The magnifying glass is transparent, but the rubber ball and the silver ring are not.\\nA smooth object is not scratchy or rough. All four objects are smooth.\\nThe property that all four objects have in common is smooth. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11734\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the plant.\\nContext: N/A\\nOptions: (A) Salmon swim in the water. (B) Banana trees have large leaves. (C) Koalas eat leaves. (D) Peregrine falcons walk and fly.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A peregrine falcon is an animal. It walks and flies.\\nA peregrine falcon can fly very fast. It is the fastest animal in the world!\\nA salmon is an animal. It swims in the water.\\nUnlike most other fish, salmon can live in both freshwater and seawater.\\nA koala is an animal. It eats leaves.\\nKoalas spend most of their time in trees. They sleep for up to 20 hours a day!\\nA banana tree is a plant. It has large leaves.\\nThe leaves on a banana tree can be up to nine feet long! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11736\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which phrase has a more negative connotation?\\nContext: N/A\\nOptions: (A) an employee (B) an underling\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Connotation is the feeling or idea that goes along with a word or phrase. Some words are close in meaning but have different connotations.\\nFor example, think about the words eager and impatient. They both mean wanting something to happen, but they have different connotations.\\nEager has a positive connotation. It is a nice word. An eager person is happy and excited.\\nImpatient has a negative connotation. It is not a nice word. An impatient person is often pushy and demanding. An underling has a more negative connotation. Underling and employee both denote a person who works for someone else. However, employee is the standard term, while underling is an insulting term that emphasizes a person's lower status. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11738\",\n    \"image\": \"11738\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Tibetan Plateau ecosystem?\\nContext: Figure: Tibetan Plateau.\\nThe Tibetan Plateau is a tundra ecosystem located in Tibet, western China, and northern India. The plateau is over 14,800 feet high and is surrounded by many mountain ranges.\\nOptions: (A) It has warm summers and cool winters. (B) It has soil that is frozen year-round.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A tundra is a type of ecosystem. Tundras have the following features: long, cold winters and short, cold summers, soil that is frozen year-round, and mostly small plants. So, the following statements describe the Tibetan Plateau ecosystem: long, cold winters and short, cold summers, soil that is frozen year-round, and mostly small plants. It has soil that is frozen year-round. It has mostly small plants. The following statement does not describe the Tibetan Plateau: long, cold winters and short, cold summers, soil that is frozen year-round, and mostly small plants. It has warm summers and cool winters. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11745\",\n    \"image\": \"11745\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following best describes a community in the Great Sand Dunes?\\nContext: Read the passage. Then answer the question below.\\n\\nThe tallest sand dunes in North America are in Colorado. In this desert region, the top few inches of sand are usually dry, but the lower layers remain moist year-round.\\nOrd's kangaroo rats spend their entire lives in these dunes. They collect seeds from grasses and prairie sunflowers, and then bury the seeds in the moist layers of sand. Later, the rats come back to eat their buried seeds. The seeds absorb enough moisture from the sand that the kangaroo rats never need to drink water!\\nFigure: Great Sand Dunes National Park and Preserve in Colorado.\\nOptions: (A) the grasses and the prairie sunflowers (B) the Ord's kangaroo rats (C) the grasses, the water, and the sand dunes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In an environment, organisms interact with each other and with their nonliving surroundings. To help describe these interactions, ecologists use specific terms for different types of groups.\\nA single organism is an individual. Individuals of the same species that live in the same place are part of a population.\\nMultiple populations of different species that live in the same place are part of a community.\\nTogether, communities of living organisms and the nonliving parts of their environment make up an ecosystem. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11756\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nDaniel is a real Benedict Arnold. After promising to work on my campaign for class president, he decided to support my opponent.\\nContext: N/A\\nOptions: (A) allusion (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses an allusion, a brief reference to someone or something well known.\\nBenedict Arnold alludes to the American general during the Revolutionary War who betrayed his country and fought for the British. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11757\",\n    \"image\": \"11757\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 2. (B) The magnetic force is stronger in Pair 1. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 1 are closer together than the magnets in Pair 2. So, the magnetic force is stronger in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11758\",\n    \"image\": \"11758\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of yellow particles?\\nContext: The diagram below is a model of two solutions. Each yellow ball represents one particle of solute.\\nOptions: (A) Solution A (B) Solution B (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the yellow particles represent the solute. To figure out which solution has a higher concentration of yellow particles, look at both the number of yellow particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of yellow particles per milliliter.\\nSolution A has more yellow particles per milliliter. So, Solution A has a higher concentration of yellow particles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11761\",\n    \"image\": \"11761\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Florida?\\nContext: N/A\\nOptions: (A) Oklahoma City (B) Orlando (C) Tallahassee (D) Tampa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Tallahassee is the capital of Florida. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11768\",\n    \"image\": \"11768\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted for climbing trees?\\nContext: Crested black macaques live in the rain forests of Indonesia. They climb trees to find food and shelter. The macaque's hands and feet are adapted for climbing trees.\\nFigure: crested black macaque.\\nOptions: (A) bare-eared squirrel monkey (B) chital\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the crested black macaque.\\nThe crested black macaque has long fingers and toes. It is adapted for climbing trees. The crested black macaque uses its long fingers and toes to hold on to branches while climbing.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe bare-eared squirrel monkey has long fingers and toes. It is adapted for climbing trees.\\nThe chital has four hoofed feet. It is not adapted for climbing trees. The chital uses its feet to walk and run. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11772\",\n    \"image\": \"11772\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11773\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nSenator Serrano isn't lying when she says she cares about her constituents\\u2014she wouldn't lie to people she cares about.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) false dichotomy: an argument that presents only two choices when more options exist (C) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Senator Serrano isn't lying about caring for her constituents because she doesn't lie to people she cares about. However, the \\\"evidence\\\" is just a restatement of the claim itself. This illustrates a type of logical fallacy known as circular reasoning. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11777\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) Open and honest communication is the foundation of a healthy relationship. (B) I can translate these French words for you, or you can use an online dictionary.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the compound sentence. It is made up of two independent clauses joined by the coordinating conjunction or.\\nI can translate these French words for you, or you can use an online dictionary. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11784\",\n    \"image\": \"11784\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Ryan lit the charcoal in his grill to cook two identical salmon. He put one fish on the left half of the grill and one fish on the right half of the grill. This table shows how the temperature of each salmon changed over 6minutes.\\nOptions: (A) each salmon . . . the surroundings (B) the surroundings . . . each salmon\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each salmon increased, which means that the thermal energy of each salmon increased. So, thermal energy was transferred from the surroundings to each salmon. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11799\",\n    \"image\": \"11799\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement is true about the average monthly precipitation in Charlotte?\\nContext: Use the graph to answer the question below.\\nOptions: (A) January is the month with the highest average precipitation. (B) Precipitation does not change much from month to month. (C) Charlotte has a rainy season and a dry season.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average precipitation for each month. The average precipitation can be used to describe the climate of a location.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Charlotte, look at the graph.\\nChoice \\\"Jan\\\" is incorrect.\\nChoice \\\"Charlotte has a rainy season and a dry season.\\\" is incorrect.\\nThe average monthly precipitation does not change much throughout the year. Every month has some rain, and there is no dry season. So, Charlotte does not have a rainy season and a dry season.\\nChoice \\\"January is the month with the highest average precipitation.\\\" is incorrect.\\nSeveral other months have a slightly higher average precipitation than January.\\nChoice \\\"Precipitation does not change much from month to month.\\\" is incorrect.\\nThe average monthly precipitation changes only slightly throughout the year. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11802\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Bryce inherited this trait?\\nContext: Read the description of a trait.\\nBryce has blue eyes.\\nOptions: (A) Bryce likes to wear a blue sweater to match his blue eyes. (B) Bryce's mother has blue eyes. She passed this trait down to Bryce.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11805\",\n    \"image\": \"11805\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Michigan (B) New York (C) North Dakota (D) California\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. California is farthest south. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11815\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nThe museum's new gemstones and precious minerals exhibit needs more security guards. If you don't agree, then you must be planning to steal a piece of the exhibit.\\nContext: N/A\\nOptions: (A) false dichotomy: an argument that presents only two choices when more options exist (B) ad hominem: a personal attack against one's opponent\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that you're a thief if you don't agree that museum security measures must be increased. However, you may have a variety of reasons for not wanting to increase museum security. This illustrates a type of logical fallacy known as a false dichotomy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11817\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the euphemism in this text suggest?\\nMr. Dudley is enjoying his golden years in a luxurious beachside community just down the street from his grandchildren.\\nContext: N/A\\nOptions: (A) Mr. Dudley is old. (B) Mr. Dudley lives near his family.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe euphemism golden years indicates that Mr. Dudley is old. Golden years is a nicer way of referring to old age. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11818\",\n    \"image\": \"11818\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Kiribati (B) Solomon Islands (C) the Marshall Islands (D) the Federated States of Micronesia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Marshall Islands.\\nDoes the Marshall Islands have any territorial disputes?\\nThe Marshall Islands claims to own Wake Island, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nThe United States claimed Wake Island in 1899 and has controlled it since then. But the Marshall Islands considers the island part of its territory. It says that its people have traveled to the island to gather food and resources for many years. Today, the island is mainly used by the U.S. Air Force. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11819\",\n    \"image\": \"11819\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is granite a mineral?\\nContext: Granite has the following properties:\\nnot made by living things\\nno fixed crystal structure\\nnaturally occurring\\nnot a pure substance\\nsolid\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Granite does not have all the properties of a mineral. So, granite is not a mineral. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11825\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a movie?\\nContext: N/A\\nOptions: (A) Here come the Littles (B) Here Come the Littles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The word the is not important, so it should not be capitalized.\\nThe correct title is Here Come the Littles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11829\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a floor lamp?\\nContext: Select the best estimate.\\nOptions: (A) 10 tons (B) 10 pounds (C) 10 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a floor lamp is 10 pounds.\\n10 ounces is too light and 10 tons is too heavy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11845\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the savanna grassland ecosystem.\\nContext: N/A\\nOptions: (A) This ecosystem has:\\nwarm summers and warm winters\\na rainy season and a dry season\\nsoil that is poor in nutrients (B) This ecosystem has:\\nyear-round rain and warm temperatures\\nsoil that is poor in nutrients\\nmany different types of organisms (C) This ecosystem has:\\nlong, cold winters and short, cool summers\\nmany evergreen trees\\nsoil that is poor in nutrients\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A savanna grassland is a type of ecosystem. It has warm summers and warm winters, a rainy season and a dry season, and soil that is poor in nutrients.\\nChoice 1 is a savanna grassland ecosystem. It is covered in grasses and has a dry season and a wet season.\\nChoice 2 is a taiga ecosystem. It has many evergreen trees. It also has long, cold winters and short, cool summers.\\nChoice 3 is a tropical rain forest ecosystem. It has year-round rain and soil that is poor in nutrients. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11849\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nMr. Vincent gave a lecture on water conservation, during which he stressed the importance of not watering lawns during a drought.\\nContext: N/A\\nOptions: (A) exclamatory (B) declarative (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells about something, and it ends with a period. It is a declarative sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11860\",\n    \"image\": \"11860\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) sticky (B) bouncy (C) stretchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA sticky object can attach or stick to other things. All three objects are sticky.\\nA stretchy object gets longer when you pull on it. The ice cream sundae and the ice pop are not stretchy.\\nA bouncy object will bounce back from the floor if you drop it. None of the objects are bouncy.\\nThe property that all three objects have in common is sticky. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11862\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nKate and Lucy win the game every time.\\nContext: N/A\\nOptions: (A) future tense (B) past tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, win. The verb tells you about something that is true or happening now. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11866\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a can of soda pop?\\nContext: Select the better estimate.\\nOptions: (A) 310 milliliters (B) 310 liters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a can of soda pop is 310 milliliters.\\n310 liters is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11868\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a pair of goggles?\\nContext: Select the better estimate.\\nOptions: (A) 60 grams (B) 60 kilograms\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of a pair of goggles is 60 grams.\\n60 kilograms is too heavy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11874\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Skippy's phenotype for the body hair trait?\\nContext: In a group of deer mice, some individuals have a hairy body and others have a hairless body. In this group, the gene for the body hair trait has two alleles. The allele for a hairy body (B) is dominant over the allele for a hairless body (b).\\nSkippy is a deer mouse from this group. Skippy has the homozygous genotype bb for the body hair gene.\\nOptions: (A) a hairy body (B) a hairless body\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Skippy's genotype for the body hair gene is bb. Skippy's genotype of bb has only b alleles. The b allele is for a hairless body. So, Skippy's phenotype for the body hair trait must be a hairless body.\\nTo check this answer, consider whether Skippy's alleles are dominant or recessive. The allele for a hairy body (B) is dominant over the allele for a hairless body (b). This means B is a dominant allele, and b is a recessive allele.\\nSkippy's genotype of bb has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Skippy's phenotype for the body hair trait must be a hairless body. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11881\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Mars's atmosphere is not thick enough to trap the sun's heat, so the planet gets quite cold. (B) Mars gets real cold because its atmosphere does not trap the sun's heat.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses conversational language (real).\\nThe first sentence uses formal language in place of the conversational language, so it is more formal overall. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11886\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Tara acquired this trait?\\nContext: Read the description of a trait.\\nTara knows how to grow sunflowers.\\nOptions: (A) Tara likes to visit sunflower fields. (B) Both Tara and her father grow sunflowers. (C) Last summer, Tara's neighbor showed her how to grow sunflowers.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11890\",\n    \"image\": \"11890\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Tennessee?\\nContext: N/A\\nOptions: (A) Nashville (B) Knoxville (C) Memphis (D) Indianapolis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Nashville is the capital of Tennessee. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11892\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Trisha's genotype for the sickle-cell disease gene?\\nContext: This passage describes the sickle-cell disease trait in humans:\\n\\nIn a group of humans, some individuals have sickle-cell disease and others do not. In this group, the gene for the sickle-cell disease trait has two alleles. The allele A is for not having sickle-cell disease, and the allele a is for having sickle-cell disease.\\nTrisha, a human from this group, has sickle-cell disease. Trisha has two alleles for having sickle-cell disease.\\nOptions: (A) having sickle-cell disease (B) aa\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Trisha has two alleles for having sickle-cell disease (a). So, Trisha's genotype for the sickle-cell disease gene is aa. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11897\",\n    \"image\": \"11897\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Mississippi?\\nContext: N/A\\nOptions: (A) Harrisburg (B) Biloxi (C) Jackson (D) Rapid City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jackson is the capital of Mississippi. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11901\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the liquid.\\nContext: N/A\\nOptions: (A) umbrella (B) rain (C) plate (D) helium\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. Rain is a liquid. A liquid takes the shape of any container it is in. If you put rainwater into a bucket, the rainwater will take the shape of the bucket. But the rainwater will still take up the same amount of space.\\nA plate is a solid. If someone drops a plate, it may break into pieces. But each piece will still have a size and shape of its own.\\nAn umbrella is a solid. A solid has a size and shape of its own. When you open an umbrella, it still has a size and shape of its own.\\nHelium is a gas. A gas expands to fill a space. Helium is lighter than air. So, if you fill a balloon with helium, the balloon will rise. If helium leaks out of the balloon, the helium will expand into the space around the balloon. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11917\",\n    \"image\": \"11917\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Georgia?\\nContext: N/A\\nOptions: (A) Augusta (B) Lincoln (C) Jackson (D) Atlanta\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Atlanta is the capital of Georgia. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11921\",\n    \"image\": \"11921\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maine?\\nContext: N/A\\nOptions: (A) Montpelier (B) Providence (C) Augusta (D) Portland\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Augusta is the capital of Maine. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11922\",\n    \"image\": \"11922\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) sticky (B) salty\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nPotato chips have a salty taste. Both objects are salty.\\nA sticky object can stick to other things. Neither of the objects are sticky.\\nThe property that both objects have in common is salty. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11923\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Shawn investigate with an experiment?\\nContext: Shawn and his classmates are growing tomato plants in the school garden. He wonders what factors affect how tomato plants grow. So, he decides to design an experiment. He has the following supplies available:\\nthree different types of tomato seeds\\none bag of potting soil\\nfive identical clay pots\\nwater\\nOptions: (A) Which of the three types of tomato seeds sprouts the fastest? (B) Does a certain kind of tomato plant grow taller when planted in a clay pot or in a plastic pot? (C) Which type of soil will cause a certain kind of tomato plant to grow the most fruit?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11925\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nBreaking a plate is a ().\\nContext: N/A\\nOptions: (A) physical change (B) chemical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two ways matter can change.\\nIn a chemical change, the type of matter changes.\\nBurning a piece of paper is a chemical change. The paper changes into ash and smoke.\\nIn a physical change, the type of matter stays the same.\\nCutting a piece of paper is a physical change. The cut pieces are still made of paper.\\nIce melting is also a physical change. When ice melts, it changes from a solid to a liquid. But both ice and liquid water are made of the same type of matter: water! This kind of change is called a change of state. Breaking a plate is a physical change. The plate gets broken into pieces. But each piece is still made of the same type of matter. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11926\",\n    \"image\": \"11926\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Indiana?\\nContext: N/A\\nOptions: (A) Indianapolis (B) Lansing (C) Fort Wayne (D) Springfield\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Indianapolis is the capital of Indiana. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11928\",\n    \"image\": \"11928\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is granite a mineral or a rock?\\nContext: Granite has the following properties:\\nno fixed crystal structure\\nnot made by organisms\\nsolid\\nnot a pure substance\\ncoarse-grained texture\\nfound in nature\\nOptions: (A) mineral (B) rock\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! The properties of granite match the properties of a rock. So, granite is a rock. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11930\",\n    \"image\": \"11930\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of West Virginia?\\nContext: N/A\\nOptions: (A) Huntington (B) Pierre (C) Charleston (D) Austin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Charleston is the capital of West Virginia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11931\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which invitation is more formal?\\nContext: N/A\\nOptions: (A) You are cordially invited to a dinner party as an expression of our appreciation. (B) You're invited to a dinner party because we want to say \\\"Thanks!\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The first invitation is more formal. It uses more elevated language (cordially, expression of our appreciation). The other invitation uses contractions (you're) and sounds more conversational (thanks). The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11932\",\n    \"image\": \"11932\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the pickerel frog.\\nContext: This organism is a pickerel frog. Its scientific name is Lithobates palustris.\\nOptions: (A) Lithobates catesbeianus (B) Agalychnis callidryas (C) Bufo guttatus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A pickerel frog's scientific name is Lithobates palustris. The first word of its scientific name is Lithobates.\\nLithobates catesbeianus is in the genus Lithobates. The first word of its scientific name is Lithobates. So, Lithobates catesbeianus and Lithobates palustris are in the same genus.\\nAgalychnis callidryas is in the genus Agalychnis. The first word of its scientific name is Agalychnis. So, Agalychnis callidryas and Lithobates palustris are not in the same genus.\\nBufo guttatus is in the genus Bufo. The first word of its scientific name is Bufo. So, Bufo guttatus and Lithobates palustris are not in the same genus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11934\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Brianna acquired this trait?\\nContext: Read the description of a trait.\\nBrianna has a scar on her left leg.\\nOptions: (A) Some scars fade more quickly than others. (B) Brianna's scar was caused by an accident. She cut her leg when she was climbing a tree.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11936\",\n    \"image\": \"11936\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Tennessee?\\nContext: N/A\\nOptions: (A) Honolulu (B) Nashville (C) Little Rock (D) Memphis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Nashville is the capital of Tennessee. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11942\",\n    \"image\": \"11942\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Lake Titicaca.\\nLake Titicaca is a large, deep lake on the border between Peru and Bolivia. Dry, windy conditions are common each year in June, July, and August.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nLake Titicaca is a large, deep lake on the border between Peru and Bolivia. Dry, windy conditions are common each year in June, July, and August.\\nThe underlined part of the passage tells you about the usual wind patterns at Lake Titicaca. This passage does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11943\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the liquid.\\nContext: N/A\\nOptions: (A) rag doll (B) eraser (C) arrowhead (D) vinegar\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. An arrowhead is a solid. A solid has a size and shape of its own. An arrowhead is made of rock.\\nAn eraser is a solid. You can bend an eraser. But it will still have a size and shape of its own.\\nVinegar is a liquid. A liquid takes the shape of any container it is in. If you pour vinegar into a different container, the vinegar will take the shape of that container. But the vinegar will still take up the same amount of space.\\nA rag doll is a solid. A solid has a size and shape of its own. When you hold a rag doll in your hands, the rag doll still has a size and shape of its own. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11946\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nLogan's recent behavior made his parents begin to see his friend Ted as some sort of Svengali.\\nContext: N/A\\nOptions: (A) literature (B) modern history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Svengali is literature.\\nIn George du Maurier's novel Trilby, Svengali is a hypnotist who exerts such power over the central character that she is suddenly able to sing, which she was unable to do before.\\nThe allusion Svengali means a person with an unduly strong influence over someone else. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11948\",\n    \"image\": \"11948\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alabama?\\nContext: N/A\\nOptions: (A) Montgomery (B) Birmingham (C) Little Rock (D) Raleigh\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montgomery is the capital of Alabama. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11954\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Henry acquired this trait?\\nContext: Read the description of a trait.\\nHenry is good at identifying fish.\\nOptions: (A) Henry was not born knowing how to identify different fish. He had to learn this skill. (B) Henry has two pet fish. The fish live in a fish tank together.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11955\",\n    \"image\": \"11955\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Southern Ocean (B) the Indian Ocean (C) the Atlantic Ocean (D) the Pacific Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Pacific Ocean. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11963\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nWhere Rita lives, winds blowing from the northeast are rare in July.\\nContext: N/A\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nWhere Rita lives, winds blowing from the northeast are rare in July.\\nThis passage tells you about the usual wind pattern where Rita lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11964\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nSenator Swift announced today that she plans to cut funding to early childhood education programs. The last thing we need is a government official who hates children!\\nContext: N/A\\nOptions: (A) straw man: a misrepresentation of an opponent's position that makes it easier to argue against (B) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Senator Swift hates children, because she wants to cut education funding. However, the fact that Senator Swift wants to cut education funding doesn't necessarily suggest that she hates children. This illustrates a type of logical fallacy known as a straw man. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11975\",\n    \"image\": \"11975\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Arizona?\\nContext: N/A\\nOptions: (A) Olympia (B) Phoenix (C) Tucson (D) Santa Fe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Phoenix is the capital of Arizona. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11983\",\n    \"image\": \"11983\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Connecticut (B) Georgia (C) Indiana (D) North Carolina\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is North Carolina. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11984\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a potato?\\nContext: Select the better estimate.\\nOptions: (A) 8 inches (B) 8 feet\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 8 long. You might be thinking, 8 what? Is the pencil 8 inches long? 8 feet? 8 miles?\\nThe number 8 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are inches. So, the length of the pencil is 8 inches.\\nThere are 12 inches in 1 foot. So, 1 inch is much shorter than 1 foot.\\nThere are 3 feet in 1 yard. So, 1 foot is shorter than 1 yard. The better estimate for the length of a potato is 8 inches.\\n8 feet is too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11986\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which phrase has a more negative connotation?\\nContext: N/A\\nOptions: (A) a slender animal (B) a scrawny animal\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Connotation is the feeling or idea that goes along with a word or phrase. Some words are close in meaning but have different connotations.\\nFor example, think about the words eager and impatient. They both mean wanting something to happen, but they have different connotations.\\nEager has a positive connotation. It is a nice word. An eager person is happy and excited.\\nImpatient has a negative connotation. It is not a nice word. An impatient person is often pushy and demanding. A scrawny animal has a more negative connotation. A scrawny animal is too thin. A slender animal is thin in a graceful way. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11988\",\n    \"image\": \"11988\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a fruit fly produced by this cross will have normal wings?\\nContext: This passage describes the wing type trait in fruit flies:\\nSome scientists breed fruit flies to learn how traits are inherited. These scientists often use flies with vestigial wings, which are shorter and stubbier than normal wings. Fruit flies with vestigial wings cannot fly, so they are easier for scientists to handle and study.\\nIn a group of fruit flies, some individuals have normal wings and others have vestigial wings. In this group, the gene for the wing type trait has two alleles. The allele for vestigial wings (n) is recessive to the allele for normal wings (N).\\nThis Punnett square shows a cross between two fruit flies.\\nOptions: (A) 1/4 (B) 3/4 (C) 2/4 (D) 0/4 (E) 4/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is E.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11990\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nWhat we need in the United States is not division; what we need in the United States is not hatred; what we need in the United States is not violence and lawlessness . . .\\n\\u2014Senator Robert Kennedy, speaking on the death of Martin Luther King, Jr.\\nContext: N/A\\nOptions: (A) hyperbole (B) anaphora\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses anaphora, the repetition of the same word or words at the beginning of several phrases or clauses.\\nKennedy repeats the words what we need in the United States at the beginning of each clause. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11992\",\n    \"image\": \"11992\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the north pole of the other magnet. Poles that are different attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"11995\",\n    \"image\": \"11995\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak.\\nBirds are warm-blooded. Warm-blooded animals can control their body temperature.\\nA bald eagle is an example of a bird.\\nOptions: (A) ocean sunfish (B) water buffalo (C) penguin (D) common toad\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A penguin is a bird. It has feathers, two wings, and a beak.\\nPenguins live near water. Penguins cannot fly! They use their wings to swim.\\nA water buffalo is a mammal. It has hair and feeds its young milk.\\nWater buffaloes live in Asia. Some people raise water buffaloes for their milk.\\nA common toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole.\\nAn ocean sunfish is a fish. It lives underwater. It has fins, not limbs.\\nOcean sunfish have a flat body and wide fins. They sometimes swim to the ocean's surface to rest in the sun. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12008\",\n    \"image\": \"12008\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Bruce's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nBruce was installing solar panels on the roof of a client's house. The panels had to provide enough electricity to power the house year-round. Bruce needed to decide how many panels to install and which side of the roof to install them on. If he put the panels on the side that got the most sun, then he could use fewer panels, and the client would save money. Bruce installed sunlight sensors on both sides of the roof. Then, he measured the amount of sunlight the sensors on each side of the roof recorded over one sunny summer day.\\nFigure: installing solar panels on a roof.\\nOptions: (A) which side of the roof got more sun over one day (B) how many solar panels could fit on each side of the roof (C) the amount of sunlight the roof would get throughout the year\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12011\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Kiki's phenotype for the whisker type trait?\\nContext: In a group of Syrian hamsters, some individuals have straight whiskers and others have curved whiskers. In this group, the gene for the whisker type trait has two alleles. The allele for curved whiskers (h) is recessive to the allele for straight whiskers (H).\\nKiki is a Syrian hamster from this group. Kiki has the heterozygous genotype Hh for the whisker type gene.\\nOptions: (A) straight whiskers (B) curved whiskers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine Kiki's phenotype for the whisker type trait. First, consider the alleles in Kiki's genotype for the whisker type gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for curved whiskers (h) is recessive to the allele for straight whiskers (H). This means H is a dominant allele, and h is a recessive allele.\\nKiki's genotype of Hh has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Kiki's phenotype for the whisker type trait must be straight whiskers. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12016\",\n    \"image\": \"12016\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of purple particles?\\nContext: The diagram below is a model of two solutions. Each purple ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution B (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the purple particles represent the solute. To figure out which solution has a higher concentration of purple particles, look at both the number of purple particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of purple particles per milliliter.\\nSolution B has more purple particles per milliliter. So, Solution B has a higher concentration of purple particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12021\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nJordan plays golf.\\nContext: Hint: Playing golf takes practice.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to play golf. Instead, some people learn how to play golf. Playing the sport takes practice. So, playing golf is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12023\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a simple sentence?\\nContext: N/A\\nOptions: (A) Clayton can iron this shirt, or he can wear a different one. (B) Every winter my father grows a thick beard.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the simple sentence. It has one subject and predicate.\\nEvery winter my father grows a thick beard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12026\",\n    \"image\": \"12026\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Maine (B) Connecticut (C) Delaware (D) Pennsylvania\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Delaware. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12031\",\n    \"image\": \"12031\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the arrows, which of the following organisms is a producer?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) lichen (B) barren-ground caribou\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Producers do not eat other organisms. So, in a food web, producers do not have arrows pointing to them from other organisms.\\nThe lichen does not have an arrow pointing to it. So, the lichen is a producer.\\nThe barren-ground caribou has an arrow pointing to it from the lichen. So, the barren-ground caribou is a consumer, not a producer. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12033\",\n    \"image\": \"12033\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a budgerigar parakeet produced by this cross will be heterozygous for the body feather color gene?\\nContext: In a group of budgerigar parakeets, some individuals have green body feathers and others have blue body feathers. In this group, the gene for the body feather color trait has two alleles. The allele for green body feathers (B) is dominant over the allele for blue body feathers (b).\\nThis Punnett square shows a cross between two budgerigar parakeets.\\nOptions: (A) 4/4 (B) 2/4 (C) 3/4 (D) 1/4 (E) 0/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring genotypes: homozygous or heterozygous?\\nHow do you determine whether an organism is homozygous or heterozygous for a gene? Look at the alleles in the organism's genotype for that gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene.\\nIf both alleles are dominant, the organism is homozygous dominant for the gene.\\nIf both alleles are recessive, the organism is homozygous recessive for the gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. \\nBecause there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4 The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12034\",\n    \"image\": \"12034\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Oklahoma City (B) Boise (C) Baton Rouge (D) Nampa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12047\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Last year, there were seven men's clothing stores on Main Street in Yardley. This year, there are only three. What probably happened to the overall supply of men's shirts in Yardley?\\nContext: N/A\\nOptions: (A) The supply probably went down. (B) The supply probably went up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. When four men's clothing stores closed on Main Street, the number of suppliers went down. There were fewer stores selling men's shirts. So, the supply of men's shirts probably went down. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12054\",\n    \"image\": \"12054\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Hampshire?\\nContext: N/A\\nOptions: (A) Montgomery (B) Concord (C) Manchester (D) Jackson\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Concord is the capital of New Hampshire. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12056\",\n    \"image\": \"12056\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Maya's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nMaya planted 20 radish plants in a greenhouse, putting each plant in its own pot. She placed ten of the pots under bright light and the other ten pots under dim light. Maya watered all the plants twice a day. After two months, she pulled the radish plants from the ground, threw away the leafy green tops, and measured the sizes of the radishes. She compared the sizes of the radishes grown under bright light to the sizes of the radishes grown under dim light.\\nFigure: a radish plant in soil.\\nOptions: (A) Do radish plants grown under bright light have more leaves than radish plants grown under dim light? (B) Do radishes grown under bright light get bigger than radishes grown under dim light?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12064\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nLeaves changing color in the fall is a ().\\nContext: N/A\\nOptions: (A) physical change (B) chemical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form new molecules. The types of molecules in matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then relink and form different molecules. For example, carbon dioxide molecules are created when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. For example, water vaporizing is a physical change. Liquid water and water vapor are made of the same type of matter: water. Leaves changing color is a chemical change. Leaves contain a chemical called chlorophyll that makes them green. In the fall, the chlorophyll in the leaves changes into a different type of matter. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12068\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word hind on a dictionary page with the following guide words?\\nheart - hood\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince hind is between the guide words heart - hood, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12072\",\n    \"image\": \"12072\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of yellow particles?\\nContext: The diagram below is a model of two solutions. Each yellow ball represents one particle of solute.\\nOptions: (A) Solution A (B) neither; their concentrations are the same (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the yellow particles represent the solute. To figure out which solution has a higher concentration of yellow particles, look at both the number of yellow particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of yellow particles per milliliter.\\nSolution A and Solution B have the same number of yellow particles per milliliter. So, their concentrations are the same. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12083\",\n    \"image\": \"12083\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month has the highest average precipitation in Santiago?\\nContext: Use the graph to answer the question below.\\nOptions: (A) August (B) June (C) March\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Santiago, look at the graph.\\nChoice \\\"Mar\\\" is incorrect.\\nChoice \\\"Jun\\\" is incorrect.\\nChoice \\\"Aug\\\" is incorrect.\\nJune has an average monthly precipitation of about 80 millimeters. This is higher than in any other month. So, June has the highest average precipitation. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12096\",\n    \"image\": \"12096\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Asia (B) Antarctica (C) South America (D) Africa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Africa. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12100\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nMartin can drive a car.\\nContext: Hint: Driving well takes practice.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Humans are not born knowing how to drive a car. Instead, many people learn how to drive when they are older. So, driving is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12103\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nGive Bobby a tour of the building and then take him to Mr. Owen's office.\\nContext: N/A\\nOptions: (A) imperative (B) exclamatory (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells someone to do something, so it is an imperative sentence. Here, it ends with a period. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12105\",\n    \"image\": \"12105\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does Rhizophora mangle have cells that have a nucleus?\\nContext: This organism is Rhizophora mangle. It is a member of the plant kingdom.\\nRhizophora mangle is commonly called a red mangrove. Red mangrove trees grow in or near water. They have strong roots that help prop, or hold, them up. These roots are also aerial, which means that they can grow above the ground. So, the red mangrove roots are called aerial prop roots.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Rhizophora mangle is a plant. Plant cells have a nucleus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12116\",\n    \"image\": \"12116\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) sample A (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample B has more mass than each particle in sample A. The particles in sample B also have a higher average speed than the particles in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12117\",\n    \"image\": \"12117\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) New Zealand (B) Palau (C) the Marshall Islands (D) Papua New Guinea\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is New Zealand. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12123\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nwater evaporating from a puddle\\nrain forming in a cloud\\nContext: N/A\\nOptions: (A) Both are only physical changes. (B) Both are chemical changes. (C) Both are caused by heating. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nWater evaporating from a puddle is a change of state. So, it is a physical change. The liquid changes into a gas, but a different type of matter is not formed.\\nRain forming in a cloud is a change of state. So, it is a physical change. Water vapor in the air condenses into tiny droplets of liquid water. These droplets make up a cloud. When there is enough water in the air, the droplets will fall as rain.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nWater evaporating is caused by heating. But rain forming in a cloud is not.\\nBoth are caused by cooling.\\nRain begins to form when water vapor in the air becomes liquid water. This is caused by cooling. But water evaporating from a puddle is not. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12129\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a full box of cereal?\\nContext: Select the best estimate.\\nOptions: (A) 19 pounds (B) 19 tons (C) 19 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a full box of cereal is 19 ounces.\\n19 pounds and 19 tons are both too heavy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12134\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the temperature shown by this thermometer.\\nContext: N/A\\nOptions: (A) 65\\u00b0F (B) 100\\u00b0F (C) 90\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A thermometer is a tool that measures temperature. Temperature can be measured in degrees. The symbol for degrees is \\u00b0.\\nSome thermometers measure temperature in degrees Fahrenheit (\\u00b0F). Fahrenheit is one scale used to measure temperature.\\nThis is a tube thermometer. It has a tube filled with a red liquid.\\nThere is a Fahrenheit scale along the right side of the tube. The top of the red liquid lines up with the number 80 on the scale. So, the temperature shown by this thermometer is 80\\u00b0F. Find the top of the red liquid.\\nNow look at the scale to the right. The top of the red liquid lines up with 90. So, the temperature is 90\\u00b0F. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12135\",\n    \"image\": \"12135\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Michigan (B) Minnesota (C) North Dakota (D) Iowa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Michigan. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12137\",\n    \"image\": \"12137\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is Hevea brasiliensis made up of many cells?\\nContext: This organism is Hevea brasiliensis. It is a member of the plant kingdom.\\nHevea brasiliensis is commonly called a rubber tree. Rubber trees make a white liquid called latex. Rubber trees use latex for protection. Latex has a bad taste and can be poisonous to some animals. So, the latex helps to stop animals from eating the rubber tree's leaves and branches.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Hevea brasiliensis is a plant. Plants are made up of many cells. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12139\",\n    \"image\": \"12139\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 1. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is greater in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12143\",\n    \"image\": \"12143\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe smallest planet is made mainly of rock.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\n To decide which planet is the smallest, look at the volumes shown in the table and compare the exponents. Mercury's volume has an exponent of 10, which is the smallest out of all the planets.\\nMercury is made mainly of rock. So, the smallest planet is made mainly of rock. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12154\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) Asian pears don't change color after being harvested, but some European pears do. (B) Those carpenters use wood to build stairways and doorframes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction but.\\nAsian pears don't change color after being harvested, but some European pears do. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12157\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nThe surfers rode the wave as it () towards the coastline.\\nContext: N/A\\nOptions: (A) sprinted (B) moved\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word sprinted. It describes the wave as if it were a person who ran fast. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12167\",\n    \"image\": \"12167\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of relationship is formed when a hawk moth visits a petunia flower?\\nContext: Read the passage. Then answer the question.\\n\\nHawk moths visit many types of plants to find nectar, including petunias. Petunias produce nectar deep inside their flowers. To reach the nectar, a moth puts its long, tubular mouthpart, called a proboscis, inside a flower. While the moth drinks nectar, pollen from the flower sticks to the moth's head and proboscis.\\nLater, the moth visits another petunia flower to drink more nectar. When pollen on the moth's head and proboscis is transferred to the female part of the other flower, that flower is pollinated. After the moth pollinates the flower, the petunia is able to reproduce.\\nFigure: a hawk moth visiting a petunia flower.\\nOptions: (A) commensal (B) mutualistic (C) parasitic\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When two organisms of different species interact in a way that affects one or both organisms, they form a symbiotic relationship. The word symbiosis comes from a Greek word that means living together. Scientists define types of symbiotic relationships based on how each organism is affected.\\nThis table lists three common types of symbiotic relationships. It shows how each organism is affected in each type of symbiotic relationship.\\nType of symbiotic relationship | Organism of one species... | Organism of the other species...\\nCommensal | benefits | is not significantly affected\\nMutualistic | benefits | benefits\\nParasitic | benefits | is harmed (but not usually killed) When a hawk moth visits a petunia flower, the moth drinks nectar. The moth uses the nectar to survive and grow. So, the moth benefits from its relationship with the petunia.\\nThe petunia flower is pollinated when the moth visits it. After the petunia is pollinated, it is able to reproduce. So, the petunia also benefits from its relationship with the moth.\\nSince both the moth and the petunia benefit, a mutualistic relationship is formed when a hawk moth pollinates a petunia flower. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12172\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) snarl (B) swirl (C) twirl\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the same sound.\\nThe words meet and treat also rhyme. They both end with the same sound, even though the sound has two different spellings.\\nThe words tip and meet don't rhyme. They end with different sounds. The words twirl and swirl rhyme. They both end with the irl sound.\\nThe word snarl does not rhyme. It ends with a different sound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12174\",\n    \"image\": \"12174\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Montana?\\nContext: N/A\\nOptions: (A) Boston (B) Billings (C) Bismarck (D) Helena\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Helena is the capital of Montana. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12176\",\n    \"image\": \"12176\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of California?\\nContext: N/A\\nOptions: (A) San Francisco (B) Sacramento (C) Atlanta (D) Carson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sacramento is the capital of California. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12183\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) After Scott explained the chemistry homework to Ed, he understood it better, too. (B) After Scott explained the chemistry homework to Ed, Scott understood it better, too.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun he could refer to Scott or Ed.\\nThe first answer choice shows a possible correction for the vague pronoun reference. He has been replaced with Scott.\\nAfter Scott explained the chemistry homework to Ed, Scott understood it better, too. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12191\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is a seedling?\\nContext: N/A\\nOptions: (A) a small, young plant (B) an old plant (C) a part of a seed\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Conifers are plants that grow cones. Conifers use their cones to reproduce, or make new plants like themselves. How do conifers use their cones to reproduce?\\nConifers can grow male and female cones. Male cones make pollen, and female cones make eggs. Pollination is what happens when wind blows pollen from male cones onto female cones. After pollination, sperm from the pollen can combine with eggs. This is called fertilization. The fertilized eggs grow into seeds.\\nThe seeds can fall out of the cones and land on the ground. When a seed lands on the ground, it can germinate, or start to grow into a new plant. A seedling is a young plant. A seedling will grow into an adult plant. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12192\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) thank (B) hike (C) yank\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the ip sound.\\nThe words lake and make rhyme. They both end with the ake sound.\\nThe words tip and lake don't rhyme. They end with different sounds. The words thank and yank rhyme. They both end with the ank sound.\\nThe word hike does not rhyme. It ends with a different sound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12198\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Sheep's wool is used to make all kinds of clothing. (B) The most comfortable clothing is made from wool.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true.\\nThe month of July has more days than the month of June.\\nThis is a fact. It can be proved by looking at a calendar and counting the number of days in each month.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nJuly is a better month than June for camping.\\nThis is an opinion. People may have different opinions about which month is \\\"better\\\" for camping. The second sentence states a fact.\\nSheep's wool is used to make all kinds of clothing.\\nIt can be proved by looking up the uses of wool.\\nThe first sentence states an opinion.\\nThe most comfortable clothing is made from wool.\\nMost comfortable shows what a person believes, thinks, or feels. Another person might have a different opinion about what kind of clothing is the most comfortable. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12204\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a movie?\\nContext: N/A\\nOptions: (A) In the Blink of an Eye (B) in the blink of an Eye\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The words the, of, and an are not important, so they should not be capitalized.\\nThe correct title is In the Blink of an Eye. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12215\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Answer the riddle.\\nI am outside.\\nI can be very tall.\\nBirds may live in me.\\nWhat am I?\\nContext: N/A\\nOptions: (A) a tree (B) a dog\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A tree is outside.\\nA tree can be very tall.\\nBirds may live in a tree. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12219\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a simple sentence?\\nContext: N/A\\nOptions: (A) The highway is full of cracks, so the workers are repairing it. (B) Tonight the farmers will herd the cattle into the barn.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the simple sentence. It has one subject and predicate.\\nTonight the farmers will herd the cattle into the barn. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12226\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Mabel acquired this trait?\\nContext: Read the description of a trait.\\nMabel knows how to make chili.\\nOptions: (A) Mabel's friends like to make chili with her. (B) When Mabel was young, her grandmother taught her how to cut chili peppers. (C) Mabel learned how to make chili from a recipe book.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12232\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nMarco has a scar on his right leg.\\nContext: Hint: Most scars are caused by accidents during a person's life.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12234\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three motorboats. Which motorboat was moving at the lowest speed?\\nContext: N/A\\nOptions: (A) a motorboat that moved 105miles south in 5hours (B) a motorboat that moved 190miles west in 5hours (C) a motorboat that moved 30miles east in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the slowest will go the shortest distance in that time. It is moving at the lowest speed. Look at the distance each motorboat moved and the time it took to move that distance. The direction each motorboat moved does not affect its speed.\\nNotice that each motorboat moved for 5 hours. The motorboat that moved 30 miles moved the shortest distance in that time. So, that motorboat must have moved at the lowest speed. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12240\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which organizational structure does this text primarily use?\\nContext: Read the text.\\nIn 1968, when the Democratic Party held its convention in Chicago to select a presidential candidate, the United States was at war in Vietnam. Thousands of Americans and Vietnamese had died in the war, giving rise to a growing anti-war movement. President Johnson, a Democrat, declined to run for reelection, in part because of the heavy opposition to his conduct of the war. Just months before the convention, both Martin Luther King Jr. and Robert Kennedy were assassinated, contributing to widespread unrest. Anti-war protesters wanted the Democratic Party to oppose the war, but they were excluded from the convention. This set off violent clashes between police and protesters on Chicago streets. The violence at the convention captured the nation's attention, strengthened the peace movement, and led to reforms in the nominating process.\\nOptions: (A) cause-effect (B) compare-contrast\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Authors use different text structures to organize their ideas in writing. Learning to identify these structures will help you to understand the relationships between ideas in informational texts. You can also use these structures to organize your own writing.\\nA cause-effect structure presents the causes and the effects of a particular event, trend, or situation. This structure often uses words and phrases such as because, since, as a result, due to, or consequently.\\nA compare-contrast structure presents similarities (comparisons) and differences (contrasts) between two or more things. This structure often uses words and phrases such as like, similarly, or in the same way (for comparing) or on the other hand, in contrast, or unlike (for contrasting).\\nA problem-solution structure presents a problem and suggests one or more possible solutions. This structure often uses words such as issue, question, puzzle, propose, and answer.\\nA sequential structure describes a series of events that happens in a certain order. This structure often uses specific dates and times or words such as first, next, during, finally, and while. The text uses a cause-effect structure to show the causes and effects of the violent demonstrations at the 1968 Democratic Convention in Chicago. In the text, certain words and phrases help to organize ideas in a cause-effect structure. Notice the phrases giving rise to, because of, contributing to, set off, and led to. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12247\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nabove - asphalt\\nContext: N/A\\nOptions: (A) auction (B) afraid\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince afraid is between the guide words above - asphalt, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12255\",\n    \"image\": \"12255\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Saint Kitts and Nevis (B) Haiti (C) Barbados (D) Saint Lucia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Lucia. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12263\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nThe car engine () as Mr. Lester tried to start it in the freezing cold.\\nContext: N/A\\nOptions: (A) failed (B) coughed\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word coughed. It describes the engine as if it were a person who is sick. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12266\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nParting is such sweet sorrow.\\n\\u2014William Shakespeare, Romeo and Juliet\\nContext: N/A\\nOptions: (A) euphemism (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nSweet sorrow is a contradiction, because sweet describes something that is gentle and pleasant, while sorrow refers to grief or sadness. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12269\",\n    \"image\": \"12269\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is these swim goggles made of?\\nContext: N/A\\nOptions: (A) rock (B) rubber\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the swim goggles.\\nThe swim goggles are made of two different materials. The lenses are plastic, and the straps are rubber. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12284\",\n    \"image\": \"12284\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the true statement.\\nContext: Look at the image and read the text. Then, answer the question.\\nvariation in the human eye color trait\\nAll organisms inherit certain traits from their parents. Information about these inherited traits is found in genes. Genes are pieces of hereditary material that are passed from parents to offspring. An organism's genes affect its inherited traits.\\nOptions: (A) Genes affect traits. (B) Eye color is an example of a gene.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Genes are passed down from parents to offspring.\\nWhen an organism reproduces, it passes copies of its genes to its offspring. This is how information about inherited traits is passed down.\\nAll organisms have genes.\\nAll organisms have genes that contain information about their inherited traits.\\nEye color is an example of a gene.\\nAn organism's eye color is affected by its genes. But eye color is not a gene. Eye color is a trait, which is an observable characteristic of an organism.\\nGenes affect traits.\\nGenes contain information about inherited traits. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12287\",\n    \"image\": \"12287\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of California?\\nContext: N/A\\nOptions: (A) Los Angeles (B) Sacramento (C) San Francisco (D) Nampa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sacramento is the capital of California. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12292\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Luna acquired this trait?\\nContext: Read the description of a trait.\\nLuna knows how to fly a plane.\\nOptions: (A) Luna can fly a plane on cloudy days and at night. (B) A pilot taught Luna how to fly a plane. (C) Luna is in the Air Force. She flies a plane almost every day.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12298\",\n    \"image\": \"12298\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's mouth is also adapted to get insects out of burrows?\\nContext: Giant anteaters eat insects such as ants and termites. These insects often live in holes called burrows. The anteater's mouth is adapted to get insects out of burrows.\\nFigure: giant anteater.\\nOptions: (A) gorilla (B) long-beaked echidna\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the giant anteater.\\nA tube-shaped snout helps the giant anteater reach into a burrow. A long, sticky tongue helps it catch the insects.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe long-beaked echidna has a tube-shaped snout and a long, sticky tongue. Its mouth is adapted to eat insects that live inside burrows.\\nThe mountain gorilla has a wide snout. Its mouth is not adapted to get insects out of burrows. The mountain gorilla uses its mouth to eat leaves and fruit. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12311\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Ms. Boone asked her daughter to chop the celery, but she couldn't find the knife. (B) Ms. Boone asked her daughter to chop the celery, but her daughter couldn't find the knife.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun she could refer to Ms. Boone or her daughter.\\nThe first answer choice shows a possible correction for the vague pronoun reference. She has been replaced with her daughter.\\nMs. Boone asked her daughter to chop the celery, but her daughter couldn't find the knife. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12316\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a washing machine?\\nContext: Select the best estimate.\\nOptions: (A) 32 gallons (B) 32 fluid ounces (C) 32 cups\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a washing machine is 32 gallons.\\n32 fluid ounces and 32 cups are both too little. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12320\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a full bag of groceries?\\nContext: Select the better estimate.\\nOptions: (A) 3 grams (B) 3 kilograms\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of a full bag of groceries is 3 kilograms.\\n3 grams is too light. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12321\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\ncutting a piece of rope\\npeeling a banana\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are caused by heating. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nCutting a piece of rope is a physical change. The rope is shorter after you cut it. But it is still made of the same type of matter as the uncut rope.\\nPeeling a banana is a physical change. The peel is not covering the rest of the fruit anymore. But both the peel and the banana are still made of the same type of matter as before.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12324\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Lucia inherited this trait?\\nContext: Read the description of a trait.\\nLucia has green eyes.\\nOptions: (A) Lucia and her biological father wear sunglasses when they go outside. (B) Lucia has green eyes like her biological mother. (C) Lucia's neighbor has green eyes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12332\",\n    \"image\": \"12332\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the north pole of the other magnet. Poles that are different attract. So, these magnets will attract each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12335\",\n    \"image\": \"12335\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12340\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish.\\nContext: N/A\\nOptions: (A) bull shark (B) Asian elephant (C) red kangaroo (D) green iguana\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Fish live underwater. They have fins, not limbs. A green iguana is a reptile. It has scaly, waterproof skin.\\nIguanas are a type of lizard. Iguanas eat plants and fruit.\\nA bull shark is a fish. It lives underwater. It has fins, not limbs.\\nBull sharks can live in both fresh and salt water. They are found in rivers and in shallow parts of the ocean.\\nA red kangaroo is a mammal. It has fur and feeds its young milk.\\nKangaroos hop to move around. They use their large tails for balance while hopping.\\nAn Asian elephant is a mammal. It has hair and feeds its young milk.\\nElephants live in groups called herds. The oldest female in the herd is usually the leader. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12350\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Wanda investigate with an experiment?\\nContext: Wanda likes to skip rocks at the river. She notices that some of the rocks she throws skip off the surface of the water many times, while others skip once and then sink. She wonders what factors affect how well rocks skip on the water. So, she decides to design an experiment. She has the following supplies available:\\n10 small flat rocks\\n10 large flat rocks\\naccess to the river by her school\\nOptions: (A) Do small rocks or large rocks skip more times when thrown across the river? (B) Do round rocks or flat rocks skip more times when thrown across the river? (C) Do rocks skip more times when thrown across a river or across a pond?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12357\",\n    \"image\": \"12357\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maryland?\\nContext: N/A\\nOptions: (A) Boston (B) Plymouth (C) Baltimore (D) Annapolis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Annapolis is the capital of Maryland. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12358\",\n    \"image\": \"12358\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the Panamanian golden frog.\\nContext: This organism is a Panamanian golden frog. Its scientific name is Atelopus zeteki.\\nOptions: (A) Atelopus zeteki (B) Hyla japonica (C) Bufo guttatus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A Panamanian golden frog's scientific name is Atelopus zeteki.\\nHyla japonica does not have the same scientific name as a Panamanian golden frog. So, Atelopus zeteki and Hyla japonica are not in the same species.\\nBufo guttatus does not have the same scientific name as a Panamanian golden frog. So, Atelopus zeteki and Bufo guttatus are not in the same species.\\nAtelopus zeteki has the same scientific name as a Panamanian golden frog. So, these organisms are in the same species. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12365\",\n    \"image\": \"12365\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk.\\nMammals are warm-blooded. Warm-blooded animals can control their body temperature.\\nA sea otter is an example of a mammal.\\nOptions: (A) hammerhead shark (B) red-headed poison frog (C) water buffalo (D) woodpecker\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A red-headed poison frog is an amphibian. It has moist skin and begins its life in water.\\nPoison dart frogs come in many bright colors. Their bright color warns other animals that these frogs are poisonous.\\nA woodpecker is a bird. It has feathers, two wings, and a beak.\\nWoodpeckers have strong beaks. They use their beaks to drill into wood to hunt for food.\\nA water buffalo is a mammal. It has hair and feeds its young milk.\\nWater buffaloes live in Asia. Some people raise water buffaloes for their milk.\\nA hammerhead shark is a fish. It lives underwater. It has fins, not limbs.\\nHammerhead sharks get their names from the shape of their heads. They have a wide, flat head and a small mouth. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12370\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nOut of the cradle endlessly rocking,\\nOut of the mocking-bird's throat, the musical shuttle,\\nOut of the Ninth-month midnight . . .\\n\\u2014Walt Whitman, \\\"Out of the Cradle\\\"\\nContext: N/A\\nOptions: (A) anaphora (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses anaphora, the repetition of the same word or words at the beginning of several phrases or clauses.\\nWhitman repeats the words out of the at the beginning of each line. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12382\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) Mr. Fowler exercises after work, or he plays cards with friends. (B) Later the sailors will wash the deck of the ship.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction or.\\nMr. Fowler exercises after work, or he plays cards with friends. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12390\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) If Steven doesn't know how to make homemade waffles, he can find the recipe in the cookbook. (B) If Steven doesn't know how to make homemade waffles, he can find it in the cookbook.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun it is used without its antecedent.\\nThe second answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the recipe.\\nIf Steven doesn't know how to make homemade waffles, he can find the recipe in the cookbook. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12394\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Read the following excerpt from a student essay. How can the writer best improve his or her word choice?\\nIf you're ever in New York State, you should see Albany, the state capitol. When I visited last summer, I was impressed by the museums, the historic mansions and colonial homes, and other cites. The surrounding area also provides plenty of options for outdoor recreation. Nearby lakes and rivers, not to mention the majestic Adirondack Mountains, offer hiking, fishing, and canoeing opportunities.\\nContext: N/A\\nOptions: (A) by reducing repetitive language (B) by fixing misused words (C) by replacing vague language\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"During peer review, you read and respond to a fellow student's writing. While there are many methods and strategies that you can use for reviewing a text, it is generally helpful to frame your suggestions in concrete and constructive ways and to consider the following areas for revision:\\nIdeas and development: Does the writer express a clear idea and develop it with evidence, examples, or analysis?\\nOrganization: Does the writer order ideas in a clear, logical way so that they build on one another and are easy to follow?\\nVoice: Does the writer maintain an appropriate voice, such as a formal and objective voice in an academic essay or an engaging and expressive voice in a narrative essay?\\nSentence fluency: Does the writer use sentences that vary in structure and length to create a sense of rhythm and flow within and between sentences, or does the writing sound choppy, rambling, or repetitive?\\nWord choice: Does the writer use words accurately and precisely to create clear, effective, and engaging writing?\\nGrammar and mechanics: Does the writer follow appropriate conventions, using accurate spelling, punctuation, and grammar to create writing that is correct and easy to read? The writer could best improve his or her word choice by fixing misused words.\\nFor example, the writer could replace the underlined words with capital and sights.\\nIf you're ever in New York State, you should see Albany, the state capitol. When I visited last summer, I was impressed by the museums, the historic mansions and colonial homes, and other cites. The surrounding area also provides plenty of options for outdoor recreation. Nearby lakes and rivers, not to mention the majestic Adirondack Mountains, offer hiking, fishing, and canoeing opportunities. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12396\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Eva smiled and said hello when she ran into Anna at the post office. (B) When Eva ran into Anna at the post office, she smiled and said hello.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun she could refer to Eva or Anna.\\nWhen Eva ran into Anna at the post office, she smiled and said hello.\\nThe second answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nEva smiled and said hello when she ran into Anna at the post office. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12397\",\n    \"image\": \"12397\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Haiti (B) the Dominican Republic (C) Cuba (D) The Bahamas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is The Bahamas. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12399\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\ncooking an egg\\na penny tarnishing\\nContext: N/A\\nOptions: (A) Both are only physical changes. (B) Both are caused by cooling. (C) Both are chemical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nCooking an egg is a chemical change. The heat causes the matter in the egg to change. Cooked egg and raw egg are different types of matter.\\nMetal turning less shiny over time is called tarnishing. A penny tarnishing is a chemical change. When air touches the penny, the surface of the penny changes into a different type of matter. This matter makes the penny dull.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nCooking is caused by heating. But a penny tarnishing is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12403\",\n    \"image\": \"12403\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Pacific Ocean (B) the Southern Ocean (C) the Indian Ocean (D) the Atlantic Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Indian Ocean. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12406\",\n    \"image\": \"12406\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Jayce's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nJayce put one two-inch steel nail into each of six test tubes. He added water to three of the test tubes and vinegar to the other three. In each test tube, he completely covered the nail with the same volume of liquid. Jayce checked the nails for rust at the same time every day. He recorded how many days it took each nail to become completely covered in rust. Then, he compared the number of days it took nails to rust in water to the number of days it took nails to rust in vinegar.\\nFigure: a new steel nail on a pile of rusty nails.\\nOptions: (A) Do steel nails rust in fewer days when submerged in a large volume of liquid compared to a small volume? (B) Do steel nails take fewer days to rust in water compared to vinegar?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12413\",\n    \"image\": \"12413\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) California (B) Rhode Island (C) New York (D) Washington\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. California is farthest south. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12414\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which phrase has a more negative connotation?\\nContext: N/A\\nOptions: (A) a boring shirt (B) a plain shirt\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Connotation is the feeling or idea that goes along with a word or phrase. Some words are close in meaning but have different connotations.\\nFor example, think about the words eager and impatient. They both mean wanting something to happen, but they have different connotations.\\nEager has a positive connotation. It is a nice word. An eager person is happy and excited.\\nImpatient has a negative connotation. It is not a nice word. An impatient person is often pushy and demanding. A boring shirt has a more negative connotation. A boring shirt is simple and uninteresting. A plain shirt is just simple. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12418\",\n    \"image\": \"12418\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12421\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which phrase has a more negative connotation?\\nContext: N/A\\nOptions: (A) disagree about something (B) argue about something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Connotation is the feeling or idea that goes along with a word or phrase. Some words are close in meaning but have different connotations.\\nFor example, think about the words eager and impatient. They both mean wanting something to happen, but they have different connotations.\\nEager has a positive connotation. It is a nice word. An eager person is happy and excited.\\nImpatient has a negative connotation. It is not a nice word. An impatient person is often pushy and demanding. Argue about something has a more negative connotation. When two people disagree about something, they have different opinions. When two people argue about something, they fight over those opinions. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12427\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a test tube?\\nContext: Select the better estimate.\\nOptions: (A) 13 liters (B) 13 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a test tube is 13 milliliters.\\n13 liters is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12438\",\n    \"image\": \"12438\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement best describes the average monthly precipitation in New Orleans?\\nContext: Use the graph to answer the question below.\\nOptions: (A) October is the wettest month. (B) The wettest months of the year are June, July, and August. (C) June, July, and August are the driest months of the year.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average precipitation for each month. The average precipitation can be used to describe the climate of a location.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in New Orleans, look at the graph.\\nChoice \\\"Jun\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Aug\\\" is incorrect.\\nChoice \\\"Oct\\\" is incorrect.\\nChoice \\\"The wettest months of the year are June, July, and August.\\\" is incorrect.\\nOn average, more precipitation falls during June, July, and August than during other months of the year. So, June, July, and August are the wettest months.\\nChoice \\\"June, July, and August are the driest months of the year.\\\" is incorrect.\\nOn average, slightly more precipitation falls during June, July, and August than during the other months of the year. So, June, July, and August are not the driest months.\\nChoice \\\"October is the wettest month.\\\" is incorrect.\\nEvery other month has a higher average precipitation than October. So, October is the driest, not the wettest, month. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12441\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is this a run-on sentence?\\nInside its tissues, the spotted jelly\\u2014a marine invertebrate native to the South Pacific\\u2014grows symbiotic algae that produces food for the jelly and gives it a greenish-brown hue.\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA run-on sentence is formed when two sentences are run together, joined by just a comma or by no punctuation at all. If only a comma is used, the run-on is called a comma splice.\\nThe band I'm in has been rehearsing daily, we have a concert in two weeks.\\nThe band I'm in has been rehearsing daily we have a concert in two weeks.\\nThere are several ways to fix a run-on sentence:\\nUse stronger punctuation, such as a period or a semicolon.\\nThe band I'm in has been rehearsing daily. We have a concert in two weeks.\\nThe band I'm in has been rehearsing daily; we have a concert in two weeks.\\nUse a comma and a coordinating conjunction to create a compound sentence. Coordinating conjunctions include and, but, or, and so.\\nThe band I'm in has been rehearsing daily, and we have a concert in two weeks.\\nUse a subordinating conjunction or a relative pronoun to create a complex sentence. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, and whose.\\nThe band I'm in has been rehearsing daily since we have a concert in two weeks. This is not a run-on sentence. It is not formed from two sentences that have been run together without appropriate punctuation.\\nInside its tissues, the spotted jelly\\u2014a marine invertebrate native to the South Pacific\\u2014grows symbiotic algae that produces food for the jelly and gives it a greenish-brown hue. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12446\",\n    \"image\": \"12446\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) rough (B) salty (C) yellow\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nYellow is a color.\\nThis color is yellow. The potato chips are yellow, but the ocean water is not.\\nA rough object feels scratchy when you touch it. The cracker and the potato chips are rough, but the ocean water is not.\\nPotato chips have a salty taste. All three objects are salty.\\nThe property that all three objects have in common is salty. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12452\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this muskmelon plant's phenotype for the fruit taste trait?\\nContext: In a group of muskmelon plants, some individuals have sour fruit and others have sweet fruit. In this group, the gene for the fruit taste trait has two alleles. The allele F is for sour fruit, and the allele f is for sweet fruit.\\nA certain muskmelon plant from this group has sour fruit. This plant has two alleles for sour fruit.\\nOptions: (A) sour fruit (B) FF\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. The muskmelon plant's observable version of the fruit taste trait is sour fruit. So, the plant's phenotype for the fruit taste trait is sour fruit. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12453\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which letter opening is more formal?\\nContext: N/A\\nOptions: (A) Dear Mr. McConnell, (B) Dear Eric,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The second letter opening is more formal. It uses the recipient's personal title and last name. The other opening uses the recipient's first name, suggesting a more familiar relationship. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12455\",\n    \"image\": \"12455\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Georgia (B) North Carolina (C) Tennessee (D) Pennsylvania\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12468\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the solid.\\nContext: N/A\\nOptions: (A) water in a sink (B) grape juice (C) baseball bat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid and liquid are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12473\",\n    \"image\": \"12473\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Dominica (B) Antigua and Barbuda (C) Barbados (D) Saint Kitts and Nevis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Antigua and Barbuda. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12477\",\n    \"image\": \"12477\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of yellow particles?\\nContext: The diagram below is a model of two solutions. Each yellow ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the yellow particles represent the solute. To figure out which solution has a higher concentration of yellow particles, look at both the number of yellow particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of yellow particles per milliliter.\\nSolution A and Solution B have the same number of yellow particles per milliliter. So, their concentrations are the same. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12487\",\n    \"image\": \"12487\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) bromomethane (B) trichlorofluoromethane (C) tetraphosphorus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12489\",\n    \"image\": \"12489\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nBoth magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12490\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which memo to customers is more formal?\\nContext: N/A\\nOptions: (A) Colleen's Cupcakes is committed to your health. We are honoring that commitment by publishing nutrition information on all of our baked goods. (B) Colleen's Cupcakes cares about you and your health. That's why we're providing nutrition info for everything we bake.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The first memo to customers is more formal. It uses more impersonal and elevated language (honoring that commitment, publishing nutrition information). The other memo to customers uses abbreviations (info) and sounds more conversational. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12506\",\n    \"image\": \"12506\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) translucent (B) flexible (C) sweet\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA flexible object can be folded or bent without breaking easily. The jello is flexible, but the wet ice cube is not.\\nSugar has a sweet taste. The jello is sweet, but the wet ice cube and the ocean water are not.\\nA translucent object lets light through. But you cannot see clearly through a translucent object. All four objects are translucent.\\nThe property that all four objects have in common is translucent. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12509\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) You can wipe up your spill with some paper towels, or you can use the sponge on the counter. (B) Freedom of speech and trial by jury are two important rights in the United States Constitution.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The first sentence is the compound sentence. It is made up of two independent clauses joined by the coordinating conjunction or.\\nYou can wipe up your spill with some paper towels, or you can use the sponge on the counter. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12513\",\n    \"image\": \"12513\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Peary Land ecosystem?\\nContext: Figure: Peary Land.\\nPeary Land is a tundra ecosystem in northern Greenland.\\nOptions: (A) It has short, cold summers. It also has many trees and shrubs. (B) It has long, cold winters. It also has mostly small plants.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A tundra is a type of ecosystem. Tundras have the following features: long, cold winters and short, cold summers, soil that is frozen year-round, and mostly small plants. So, Peary Land has long, cold winters. It also has mostly small plants. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12521\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a bike path?\\nContext: Select the best estimate.\\nOptions: (A) 2 feet (B) 2 inches (C) 2 yards (D) 2 miles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a bike path is 2 miles.\\n2 inches, 2 feet, and 2 yards are all too short. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12523\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nWe need to raise taxes to improve our public schools. If we don't raise taxes, we are condemning our schools to failure.\\nContext: N/A\\nOptions: (A) appeal to nature: the assumption that natural things are always good (B) bandwagon fallacy: the assumption that the popular choice is automatically correct (C) false dichotomy: an argument that presents only two choices when more options exist\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that either we must raise taxes or public schools will fail. However, there are ways schools can be improved without raising taxes, so these are not the only options. For instance, perhaps existing tax money could be spent differently to improve schools. This illustrates a type of logical fallacy known as a false dichotomy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12535\",\n    \"image\": \"12535\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Georgia?\\nContext: N/A\\nOptions: (A) Athens (B) Tallahassee (C) Savannah (D) Atlanta\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Atlanta is the capital of Georgia. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12547\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nThe tsunami rushed over the land, () everything in its path.\\nContext: N/A\\nOptions: (A) crashing into (B) devouring\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word devouring. It describes the tsunami as if it were a very hungry person. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12549\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nNitrogen is ().\\nContext: Nitrogen gas makes up nearly 80% of the air you breathe. The chemical formula for nitrogen is N2.\\nOptions: (A) a compound (B) an elementary substance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nThe atomic symbol for each chemical element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one atomic symbol.\\nThe atomic symbol in a chemical formula may be followed by a small number written lower than the symbol. This number is called a subscript. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript shows how many atoms are in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen, O2, has a subscript of 2. This subscript shows that the atomic symbol O represents two atoms. The elementary substance O2 and the chemical element represented by the atomic symbol O are both named oxygen. So, the formula tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple atomic symbols.\\nThe chemical elements in a compound are bonded together in a fixed ratio. This ratio is shown in a compound's chemical formula.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. So, the ratio of beryllium atoms to fluorine atoms is 1 to 2. This ratio is shown in the chemical formula for beryllium fluoride, BeF2. There is no subscript following the atomic symbol Be because that symbol represents one atom. The subscript 2 follows the atomic symbol F to show that the symbol represents two atoms. You can tell whether nitrogen is an elementary substance or a compound by counting the number of atomic symbols in its chemical formula. An atomic symbol consists of either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for nitrogen, N2, contains one atomic symbol: N. So, the formula tells you that nitrogen is composed of only one chemical element.\\nSince nitrogen is composed of only one chemical element, nitrogen is an elementary substance. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12553\",\n    \"image\": \"12553\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the sand cat.\\nContext: This organism is a sand cat. Its scientific name is Felis margarita.\\nOptions: (A) Felis margarita (B) Lynx canadensis (C) Lynx rufus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A sand cat's scientific name is Felis margarita. The first word of its scientific name is Felis.\\nLynx canadensis is in the genus Lynx. The first word of its scientific name is Lynx. So, Lynx canadensis and Felis margarita are not in the same genus.\\nLynx rufus is in the genus Lynx. The first word of its scientific name is Lynx. So, Lynx rufus and Felis margarita are not in the same genus.\\nThis organism and the sand cat are in the same genus and the same species! Both organisms have the same scientific name, Felis margarita. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12554\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nerosion caused by wind\\nbeating an egg\\nContext: N/A\\nOptions: (A) Both are only physical changes. (B) Both are chemical changes. (C) Both are caused by cooling. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nErosion caused by wind is a physical change. The wind carries away tiny pieces of rock. But the pieces of rock do not become a different type of matter.\\nBeating an egg is a physical change. Beating an egg mixes together the egg white, egg yolk, and some air. But mixing them together does not form a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12556\",\n    \"image\": \"12556\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of yellow particles?\\nContext: The diagram below is a model of two solutions. Each yellow ball represents one particle of solute.\\nOptions: (A) Solution B (B) Solution A (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the yellow particles represent the solute. To figure out which solution has a higher concentration of yellow particles, look at both the number of yellow particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of yellow particles per milliliter.\\nSolution B has more yellow particles per milliliter. So, Solution B has a higher concentration of yellow particles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12557\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the tropical coral reef ecosystem.\\nContext: N/A\\nOptions: (A) This ecosystem has:\\nland that is covered with water during most of the year\\nsoil that is rich in nutrients\\nother water ecosystems nearby (B) This ecosystem has:\\nshallow, salty water\\nbright sunlight\\nmany different types of organisms\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of ecosystems. Here are some ways in which these ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A tropical coral reef is a type of ecosystem. It has shallow, salty water, bright sunlight, and many different types of organisms.\\nChoice 1 is a tropical coral reef ecosystem. It has shallow water and many different types of organisms.\\nChoice 2 is a wetland ecosystem. It is covered with water for most of the year. Wetlands also have soil that is rich in nutrients. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12577\",\n    \"image\": \"12577\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this pull?\\nContext: A horseshoe magnet attracts paper clips with a magnetic force. This magnetic force pulls the paper clips upward so they do not fall.\\nOptions: (A) away from the magnet (B) toward the magnet\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to another. Every force has a direction.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The magnet pulls the paper clips upward. The direction of the pull is toward the magnet. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12587\",\n    \"image\": \"12587\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Illinois (B) Georgia (C) Maryland (D) Ohio\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. Illinois is farthest west. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12606\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nWater evaporating from a puddle is a ().\\nContext: N/A\\nOptions: (A) physical change (B) chemical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. When paper gets hot enough, it reacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nCutting a piece of paper is a physical change. The cut pieces are still made of paper.\\nA change of state is a type of physical change. For example, ice melting is a physical change. Ice and liquid water are made of the same type of matter: water. Water evaporating from a puddle is a change of state. So, it is a physical change. The liquid changes into a gas, but a different type of matter is not formed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12608\",\n    \"image\": \"12608\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Lamar and Jackson trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nLamar and Jackson open their lunch boxes in the school cafeteria. Neither Lamar nor Jackson got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nLamar's lunch Jackson's lunch\\nOptions: (A) Jackson can trade his almonds for Lamar's tomatoes. (B) Jackson can trade his broccoli for Lamar's oranges. (C) Lamar can trade his tomatoes for Jackson's carrots. (D) Lamar can trade his tomatoes for Jackson's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nLamar wants broccoli. Jackson wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12611\",\n    \"image\": \"12611\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) Los Angeles (B) Chicago (C) San Francisco (D) Denver\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is San Francisco, California. Los Angeles, Denver, and Chicago are marked with gray circles on the map below. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12613\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nWas I late for the party last night? Was I late for work today? Was I late for our meeting? Was I late for dinner? The answer is no, so stop saying I'm always late!\\nContext: N/A\\nOptions: (A) assonance (B) anaphora\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses anaphora, the repetition of the same word or words at the beginning of several phrases or clauses.\\nThe words was I late for are repeated at the beginning of each sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12627\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nIf I let you miss this deadline, everyone else will start asking for the same treatment. Deadlines will be meaningless.\\nContext: N/A\\nOptions: (A) appeal to nature: the assumption that natural things are always good (B) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences (C) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that missing one deadline will lead to deadlines having no meaning. However, this isn't necessarily true. For instance, the speaker could make one exception under particular circumstances without allowing other exceptions. This illustrates a type of logical fallacy known as the slippery slope fallacy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12629\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nTim, the company you work for just filed for bankruptcy! How can I trust you with our money?\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) guilt by association: a negative association intended to discredit someone or something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Tim must be fiscally irresponsible, because he works for a company that went bankrupt. However, even though his company is perceived as fiscally irresponsible, that doesn't necessarily mean that Tim is, too. This illustrates a type of logical fallacy known as guilt by association. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12641\",\n    \"image\": \"12641\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Belize Barrier Reef ecosystem?\\nContext: Figure: Belize Barrier Reef.\\nThe Belize Barrier Reef is a tropical coral reef ecosystem near the coast of Belize.\\nOptions: (A) It has salty water. It also has many different types of organisms. (B) It has water with not much salt. It also has many different types of organisms.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A tropical coral reef is a type of ecosystem. Tropical coral reefs have the following features: shallow, salty water, bright sunlight, and many different types of organisms. So, the Belize Barrier Reef has salty water. It also has many different types of organisms. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12645\",\n    \"image\": \"12645\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) fragile (B) sticky (C) colorful\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA colorful object has one or more bright colors. All three objects are colorful.\\nA sticky object can attach or stick to other things. None of the objects are sticky.\\nA fragile object will break into pieces if you drop it. The socks and the hot air balloon are not fragile.\\nThe property that all three objects have in common is colorful. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12652\",\n    \"image\": \"12652\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of force from the older brother moves the car forward?\\nContext: A boy and his younger brother play with their toy car in the snow. The older brother applies a force to the back of the car to move it forward.\\nOptions: (A) pull (B) push\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to a second object.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The older brother applies a force to the back of the car. This force moves the car forward. The direction of this force is away from the older brother. This force is a push. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12662\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of an eyedropper?\\nContext: Select the better estimate.\\nOptions: (A) 7 milliliters (B) 7 liters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of an eyedropper is 7 milliliters.\\n7 liters is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12664\",\n    \"image\": \"12664\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes and shapes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12670\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nOrder a vegetarian meal for me, please.\\nContext: N/A\\nOptions: (A) exclamatory (B) imperative (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement and always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn imperative sentence makes a request or a demand and usually ends with a period. If a demand shows strong feeling, it can end with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn interrogative sentence asks a question and always ends with a question mark.\\nGiven the recent critiques of her new strategic plan, do you think the CEO will reconsider the company's direction?\\nAn exclamatory sentence is a statement that shows surprise or strong feeling. An exclamation always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence makes a request, so it is an imperative sentence. Here, it ends with a period. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12672\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nRaymond took several incredible panoramic photographs of the sweeping view from the top of Table Mountain.\\nContext: N/A\\nOptions: (A) compound (B) simple (C) compound-complex (D) complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is simple. It is a single independent clause.\\nRaymond took several incredible panoramic photographs of the sweeping view from the top of Table Mountain. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12673\",\n    \"image\": \"12673\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Colorado (B) California (C) Texas (D) North Dakota\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. California is farthest west. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12675\",\n    \"image\": \"12675\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the gray heron.\\nContext: This organism is a gray heron. Its scientific name is Ardea cinerea.\\nOptions: (A) Lissotriton helveticus (B) Ardea cinerea (C) Hyla cinerea\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A gray heron's scientific name is Ardea cinerea. The first word of its scientific name is Ardea.\\nLissotriton helveticus is in the genus Lissotriton. The first word of its scientific name is Lissotriton. So, Lissotriton helveticus and Ardea cinerea are not in the same genus.\\nThis organism and the gray heron are in the same genus and the same species! Both organisms have the same scientific name, Ardea cinerea.\\nHyla cinerea and Ardea cinerea are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Hyla cinerea and Ardea cinerea have the same species name within their genus, cinerea. But the first words of their scientific names are different. Hyla cinerea is in the genus Hyla, and Ardea cinerea is in the genus Ardea. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12677\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\ndry ice sublimating and becoming a gas\\nwater freezing into ice\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are only physical changes. (C) Both are chemical changes. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nDry ice is solid carbon dioxide. When dry ice gets warm, it changes state and becomes carbon dioxide gas. This change of state, from solid to gas, is called sublimation.\\nDry ice becoming a gas is a physical change. A change of state does not form a different type of matter.\\nWater freezing into ice is a change of state. So, it is a physical change. The water changes from solid to liquid. But the ice is still made of the same type of matter as the liquid water.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nDry ice sublimating is caused by heating. But water freezing into ice is not.\\nBoth are caused by cooling.\\nWater freezing is caused by cooling. But dry ice sublimating is not. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12683\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Your nephew,\\nJohnny (B) Your Nephew,\\nJohnny\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12698\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nOh! Stars and clouds and winds, ye are all about to mock me; if ye really pity me, crush sensation and memory; let me become as nought.\\n\\u2014Mary Shelley, Frankenstein\\nContext: N/A\\nOptions: (A) apostrophe (B) antithesis\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses apostrophe, a direct address to an absent person or a nonhuman entity.\\nOh! Stars and clouds and winds is a direct address to stars, clouds, and winds, all nonhuman entities. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12706\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nCharlotte anticipated that the free makeover her friend was promising would turn out to be a Trojan horse.\\nContext: N/A\\nOptions: (A) Greek mythology (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Trojan horse is Greek mythology.\\nIn Greek mythology, the Greek army tricks the Trojan army into taking a large wooden horse into their carefully guarded city. The horse turns out to be filled with Greek warriors who, once inside the city of Troy, open the gates to the Greek army waiting outside.\\nThe allusion Trojan horse means a deceptive or harmful offering. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12707\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Mason decides to bake blueberry muffins. Which result would be a cost?\\nContext: Mason is deciding whether to bake blueberry muffins or cranberry muffins. He wants the muffins to be tasty. But he also wants to make a lot of muffins.\\nOptions: (A) Mason will get to eat blueberry muffins. He thinks blueberry muffins are tastier than cranberry muffins. (B) Mason will give up some muffins. He could have made more cranberry muffins than blueberry muffins.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Mason wants or needs:\\nMason will give up some muffins. He could have made more cranberry muffins than blueberry muffins. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12712\",\n    \"image\": \"12712\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which air temperature was measured within the outlined area shown?\\nContext: The map below shows air temperatures in the lower atmosphere on October 28, 2016. The outlined area shows an air mass that influenced weather in Asia on that day.\\nLook at the map. Then, answer the question below.\\nData source: United States National Oceanic and Atmospheric Administration/Earth System Research Laboratory, Physical Sciences Division\\nOptions: (A) -22\\u00b0C (B) -1\\u00b0C (C) 2\\u00b0C\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"To study air masses, scientists can use maps that show conditions within Earth's atmosphere. For example, the map below uses color to show air temperatures.\\nThe map's legend tells you the temperature that each color represents. Colors on the left in the legend represent lower temperatures than colors on the right. For example, areas on the map that are the darkest shade of blue have a temperature from -25\\u00b0C up to -20\\u00b0C. Areas that are the next darkest shade of blue have a temperature from -20\\u00b0C up to -15\\u00b0C. Look at the colors shown within the outlined area. Then, use the legend to determine which air temperatures those colors represent.\\n10\\u00b0C.\\n-22\\u00b0C is within this range.\\n-1\\u00b0C and 2\\u00b0C are outside of this range. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12714\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nHave you ever been in the attic?\\nContext: N/A\\nOptions: (A) declarative (B) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence asks something, and it ends with a question mark. It is an interrogative sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12719\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\n\\\"There's nothing I love more than skipping lunch,\\\" Mr. Kelly told the flight attendant when he learned that no food would be available on his cross-country flight.\\nContext: N/A\\nOptions: (A) personification (B) verbal irony\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nNothing I love more shows verbal irony because Mr. Kelly is probably upset that there isn't anything to eat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12722\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nBees making honey from nectar is a ().\\nContext: N/A\\nOptions: (A) chemical change (B) physical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form new molecules. The types of molecules in matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then relink and form different molecules. For example, carbon dioxide molecules are created when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. For example, water vaporizing is a physical change. Liquid water and water vapor are made of the same type of matter: water. Bees making honey from nectar is a chemical change. The bees use nectar to make honey, which contains new molecules that are easier to store. Honey and nectar are different types of matter. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12723\",\n    \"image\": \"12723\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which i in column 3?\\nContext: N/A\\nOptions: (A) the library (B) the restaurant (C) the police department (D) the grocery store\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A grid is made up of lines of squares. They are organized in rows and columns. A grid can help you use a map.\\nA row is a line of squares that goes from side to side. Rows are marked with letters.\\nA column is a line of squares that goes up and down. Columns are marked with numbers. The grocery store is in column 3. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12724\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAn avid reader, Caden attends weekly book club meetings, and he finishes several novels every month.\\nContext: N/A\\nOptions: (A) compound-complex (B) simple (C) compound (D) complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound. It is made up of two independent clauses joined by the coordinating conjunction and.\\nAn avid reader, Caden attends weekly book club meetings, and he finishes several novels every month. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12733\",\n    \"image\": \"12733\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nPhosphine is ().\\nContext: The model below represents a molecule of phosphine. Phosphine is a poisonous gas that some farmers use to kill insects.\\nOptions: (A) a compound (B) an elementary substance\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. Use the model to determine whether phosphine is an elementary substance or a compound.\\nStep 1: Interpret the model.\\n.\\nUse the legend to determine the chemical element represented by each color. The colors and atomic symbols from the legend are shown in the table below. The table also includes the names of the chemical elements represented in the model.\\nYou can see from the model that a molecule of phosphine is composed of three hydrogen atoms and one phosphorus atom bonded together.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that phosphine is composed of two chemical elements: hydrogen and phosphorus. Since phosphine is composed of multiple chemical elements bonded together, phosphine is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12741\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the metaphor in this text suggest?\\nWhen Trent lost his job, he was devastated. The only light in the sea of darkness was the prospect of pursuing a new career.\\nContext: N/A\\nOptions: (A) There was a benefit to Trent's job loss. (B) Having to pursue a new career was the worst part of Trent's job loss.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town. The text uses a metaphor, comparing two things that are not actually alike without using like or as.\\nThe metaphor the only light in the sea of darkness was the prospect of pursuing a new career suggests that there was a benefit to Trent's job loss. A light would be beneficial in helping someone escape a dark, difficult-to-navigate situation. Similarly, Trent's new career was beneficial in helping him escape the emotionally difficult experience of losing his job. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12753\",\n    \"image\": \"12753\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Sonoran Desert ecosystem?\\nContext: Figure: Sonoran Desert.\\nThe Sonoran Desert is a hot desert ecosystem in the southwestern United States and northwestern Mexico. This desert is home to wild saguaro cactus, which can grow over 70 feet tall.\\nOptions: (A) It has only a few types of organisms. (B) It has warm, wet summers. (C) It has a small amount of rain.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A hot desert is a type of ecosystem. Hot deserts have the following features: a small amount of rain, dry, thin soil, and many different types of organisms. So, the following statement describes the Sonoran Desert ecosystem: a small amount of rain, dry, thin soil, and many different types of organisms. It has a small amount of rain. The following statements do not describe the Sonoran Desert: a small amount of rain, dry, thin soil, and many different types of organisms. It has warm, wet summers. It has only a few types of organisms. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12754\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Dustin acquired this trait?\\nContext: Read the description of a trait.\\nDustin knows a lot about history.\\nOptions: (A) Dustin learned history by reading. (B) Dustin is most interested in American history.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12756\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nafter - another\\nContext: N/A\\nOptions: (A) always (B) accept\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince always is between the guide words after - another, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12758\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the personification in this text suggest?\\nWhile the plumber was under the sink fiddling with the pipes, the drain burped up a spray of brown water.\\nContext: N/A\\nOptions: (A) The drain noisily released some water. (B) The plumber burped.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind. The text uses personification, giving human characteristics to nonhuman things.\\nBurped suggests that the drain noisily released some water. When you burp, you noisily release air from your stomach. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12776\",\n    \"image\": \"12776\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a bowling ball a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a liquid (B) a solid (C) a gas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. A bowling ball is a solid. A solid has a size and shape of its own.\\nA bowling ball can knock down bowling pins. But after it hits the pins, the bowling ball still has a size and shape of its own. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12777\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of an elephant?\\nContext: Select the better estimate.\\nOptions: (A) 6,370 grams (B) 6,370 kilograms\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of an elephant is 6,370 kilograms.\\n6,370 grams is too light. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12785\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the air on a hot day?\\nContext: Select the better estimate.\\nOptions: (A) 36\\u00b0F (B) 36\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the air on a hot day is 36\\u00b0C.\\n36\\u00b0F is too cold. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12787\",\n    \"image\": \"12787\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Montana?\\nContext: N/A\\nOptions: (A) Billings (B) Honolulu (C) Cincinnati (D) Helena\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Helena is the capital of Montana. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12793\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the personification in this text suggest?\\nDuring Hurricane Katrina in 2005, the levees and flood walls that had been built to protect the city of New Orleans broke, and water swallowed parts of the city.\\nContext: N/A\\nOptions: (A) Parts of the city disappeared underwater. (B) People in the city didn't have water to drink.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind. The text uses personification, giving human characteristics to nonhuman things.\\nSwallowed suggests that parts of the city disappeared underwater. When a person swallows something, it disappears. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12799\",\n    \"image\": \"12799\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New Hampshire (B) Kentucky (C) Georgia (D) Rhode Island\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Rhode Island. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12809\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Damon inherited this trait?\\nContext: Read the description of a trait.\\nDamon has pale skin.\\nOptions: (A) Damon and his father both have dark hair. (B) Damon's parents have pale skin. They passed down this trait to Damon.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12814\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a kiddie pool?\\nContext: Select the better estimate.\\nOptions: (A) 1,080 liters (B) 1,080 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a kiddie pool is 1,080 liters.\\n1,080 milliliters is too little. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12815\",\n    \"image\": \"12815\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Samir and Derek trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nSamir and Derek open their lunch boxes in the school cafeteria. Neither Samir nor Derek got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nSamir's lunch Derek's lunch\\nOptions: (A) Samir can trade his tomatoes for Derek's carrots. (B) Derek can trade his broccoli for Samir's oranges. (C) Derek can trade his almonds for Samir's tomatoes. (D) Samir can trade his tomatoes for Derek's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nSamir wants broccoli. Derek wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12821\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Lacey inherited this trait?\\nContext: Read the description of a trait.\\nLacey has wavy hair.\\nOptions: (A) Lacey's parents were born with wavy hair. They passed down this trait to Lacey. (B) Lacey and her mother both have short hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12824\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbreaking a ceramic plate\\nknitting yarn into a scarf\\nContext: N/A\\nOptions: (A) Both are only physical changes. (B) Both are chemical changes. (C) Both are caused by cooling. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBreaking a ceramic plate is a physical change. The plate gets broken into pieces. But each piece is still made of the same type of matter.\\nKnitting yarn into a scarf is a physical change. The yarn gets a different shape, but it is still made of the same type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12827\",\n    \"image\": \"12827\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Pierre (B) Nampa (C) Santa Fe (D) Boise\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12839\",\n    \"image\": \"12839\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alabama?\\nContext: N/A\\nOptions: (A) Norfolk (B) Salem (C) Birmingham (D) Montgomery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montgomery is the capital of Alabama. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12841\",\n    \"image\": \"12841\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait did Curculioides adompha have? Select the trait you can observe on the fossil.\\nContext: This picture shows a fossil of an animal called Curculioides adompha. This fossil is more than 300,000,000 years old.\\nOptions: (A) red eyes (B) eight legs\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The way an organism looks or acts is called a trait. Scientists use fossils to learn more about the traits of ancient organisms.\\nFossils can preserve the remains of body parts and activities. A fossil of a body part, such as a tail or a wing, can tell you what an organism looked like. A fossil of an organism's activities, such as a burrow or a footprint, can tell you about the organism's behavior.\\nHere are three examples of fossils and the traits that you can observe from them:\\nThis is a fossil of an animal. This fossil tells you that the animal had a spiral-shaped shell.\\nThis is a fossil of a plant. This fossil tells you that the plant had small leaves arranged in a branched pattern.\\nThis is a fossil of an animal's footprint. This fossil tells you that the animal could walk on land.\\nAn organism's fossil may not show all of the organism's traits. This is because most body parts are destroyed during fossil formation. When an organism's body turns into a fossil, only a few body parts are usually preserved. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12842\",\n    \"image\": \"12842\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Maine (B) Pennsylvania (C) Delaware (D) Massachusetts\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12845\",\n    \"image\": \"12845\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Las Vegas.\\nLas Vegas is in the desert. On average, Las Vegas has almost 300 clear, sunny days each year!\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nLas Vegas is in the desert. On average, Las Vegas has almost 300 clear, sunny days each year!\\nThe underlined part of the passage tells you about the usual pattern of cloud cover in Las Vegas. This passage does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12856\",\n    \"image\": \"12856\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Washington?\\nContext: N/A\\nOptions: (A) Seattle (B) Sacramento (C) Salt Lake City (D) Olympia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Olympia is the capital of Washington. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12858\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the invertebrate.\\nContext: Hint: Insects, spiders, and worms are invertebrates.\\nOptions: (A) black howler (B) cardinalfish (C) green sea turtle (D) earthworm\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A black howler is a mammal. Like other mammals, a black howler is a vertebrate. It has a backbone.\\nA green sea turtle is a reptile. Like other reptiles, a green sea turtle is a vertebrate. It has a backbone.\\nAn earthworm is a worm. Like other worms, an earthworm is an invertebrate. It does not have a backbone. It has a soft body.\\nA cardinalfish is a fish. Like other fish, a cardinalfish is a vertebrate. It has a backbone. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12861\",\n    \"image\": \"12861\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample B (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12869\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nwater evaporating from a puddle\\nmelting glass\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by cooling. (C) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nWater evaporating from a puddle is a change of state. So, it is a physical change. The liquid changes into a gas, but a different type of matter is not formed.\\nMelting glass is a change of state. So, it is a physical change. The glass changes from solid to liquid. But a different type of matter is not formed.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nBoth changes are caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12875\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the elementary substance.\\nContext: N/A\\nOptions: (A) hydrogen sulfide (H2S) (B) cyclopropane (C3H6) (C) silver (Ag)\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. Look at the chemical formula for each substance, and count the number of symbols in the formula. Then, decide if the substance is an elementary substance. The chemical formula for cyclopropane contains two symbols: C for carbon and H for hydrogen. So, cyclopropane is made of two chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, cyclopropane is a compound, not an elementary substance. The chemical formula for silver contains one symbol: Ag. So, silver is made of one chemical element. Substances that are made of one chemical element are elementary substances. So, silver is an elementary substance. The chemical formula for hydrogen sulfide contains two symbols: H for hydrogen and S for sulfur. So, hydrogen sulfide is made of two chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, hydrogen sulfide is a compound, not an elementary substance. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12878\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nArgon is ().\\nContext: Argon is a gas used to protect important documents, including the United States Constitution, from decay. The chemical formula for argon is Ar.\\nOptions: (A) an elementary substance (B) a compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. You can tell whether argon is an elementary substance or a compound by counting the number of symbols in its chemical formula. A symbol contains either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for argon is Ar. This formula contains one symbol: Ar. So, the formula tells you that argon is made of one chemical element.\\nSubstances made of only one chemical element are elementary substances. So, argon is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12894\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nGallium arsenide is ().\\nContext: Gallium arsenide is found in the solar cells that power the robotic vehicles used by scientists to explore Mars. The chemical formula for gallium arsenide is GaAs.\\nOptions: (A) a compound (B) an elementary substance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nThe atomic symbol for each chemical element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one atomic symbol.\\nThe atomic symbol in a chemical formula may be followed by a small number written lower than the symbol. This number is called a subscript. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript shows how many atoms are in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen, O2, has a subscript of 2. This subscript shows that the atomic symbol O represents two atoms. The elementary substance O2 and the chemical element represented by the atomic symbol O are both named oxygen. So, the formula tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple atomic symbols.\\nThe chemical elements in a compound are bonded together in a fixed ratio. This ratio is shown in a compound's chemical formula.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. So, the ratio of beryllium atoms to fluorine atoms is 1 to 2. This ratio is shown in the chemical formula for beryllium fluoride, BeF2. There is no subscript following the atomic symbol Be because that symbol represents one atom. The subscript 2 follows the atomic symbol F to show that the symbol represents two atoms. You can tell whether gallium arsenide is an elementary substance or a compound by counting the number of atomic symbols in its chemical formula. An atomic symbol consists of either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for gallium arsenide, GaAs, contains two atomic symbols: Ga for gallium and As for arsenic. So, the formula tells you that gallium arsenide is composed of two chemical elements bonded together.\\nSince gallium arsenide is composed of multiple chemical elements bonded together, gallium arsenide is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12897\",\n    \"image\": \"12897\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Michigan?\\nContext: N/A\\nOptions: (A) Detroit (B) Oklahoma City (C) Jefferson City (D) Lansing\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lansing is the capital of Michigan. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12905\",\n    \"image\": \"12905\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Florida (B) Virginia (C) Vermont (D) West Virginia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Virginia.\\nThe Virginia Colony included land that would later become part of the state of West Virginia. West Virginia was never its own colony. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12909\",\n    \"image\": \"12909\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Ohio?\\nContext: N/A\\nOptions: (A) Cleveland (B) Cincinnati (C) Concord (D) Columbus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbus is the capital of Ohio. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12916\",\n    \"image\": \"12916\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Pittsburgh (B) Denver (C) Seattle (D) Helena\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12924\",\n    \"image\": \"12924\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In which region did the Republican candidate do the best?\\nContext: By the 1850s, slavery was a major issue in presidential elections. In 1856, the antislavery Republican Party competed in its first presidential election. Use the election map to answer the question below.\\nOptions: (A) the Northwest (B) the South (C) the West\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12925\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nVarious technologies have been developed to help militaries easily identify their own forces, and thus to reduce incidents of friendly fire.\\nContext: N/A\\nOptions: (A) euphemism (B) assonance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nFriendly fire is an indirect way of referring to an accidental attack on one's own soldiers or allies. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12933\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word nauseous in its traditional sense?\\nContext: N/A\\nOptions: (A) Leah couldn't tolerate the nauseous odor emanating from the landfill, so she rolled up her car windows as she drove past. (B) The odor emanating from the landfill made Leah so nauseous that she had to roll up the car windows as she drove past.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses nauseous in its traditional sense: causing disgust or nausea.\\nLeah couldn't tolerate the nauseous odor emanating from the landfill, so she rolled up her car windows as she drove past.\\nThe second text uses nauseous in its nontraditional sense: feeling disgusted or nauseated.\\nThe odor emanating from the landfill made Leah so nauseous that she had to roll up the car windows as she drove past.\\nMost style guides recommend to use the traditional sense of the word nauseous because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12936\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a mineral.\\nContext: N/A\\nOptions: (A) An antler is not a pure substance. It is a solid. (B) Native copper is formed in nature. It is a pure substance. (C) Gypsum is not made by living things. It is formed in nature.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Compare the properties of each substance to the properties of minerals. Select the substance whose properties do not match those of minerals.\\nNative copper is a mineral.\\nAn antler is not a pure substance. But all minerals are pure substances.\\nSo, an antler is not a mineral.\\nGypsum is a mineral. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12938\",\n    \"image\": \"12938\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Arkansas?\\nContext: N/A\\nOptions: (A) Columbia (B) Austin (C) Fayetteville (D) Little Rock\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Little Rock is the capital of Arkansas. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12940\",\n    \"image\": \"12940\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 1. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is greater in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12961\",\n    \"image\": \"12961\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Jenny and Zoe trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nJenny and Zoe open their lunch boxes in the school cafeteria. Neither Jenny nor Zoe got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nJenny's lunch Zoe's lunch\\nOptions: (A) Zoe can trade her almonds for Jenny's tomatoes. (B) Jenny can trade her tomatoes for Zoe's carrots. (C) Zoe can trade her broccoli for Jenny's oranges. (D) Jenny can trade her tomatoes for Zoe's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nJenny wants broccoli. Zoe wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12965\",\n    \"image\": \"12965\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution A (B) Solution B (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution B has more green particles per milliliter. So, Solution B has a higher concentration of green particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12966\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Novak Electronics has a reputation for responding real quick to customer concerns and questions. (B) Novak Electronics has a reputation for responding quickly to all customer concerns and questions.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses conversational language (real quick).\\nThe second sentence uses formal language in place of the conversational language, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12976\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nThe pastor, explaining his decision to sell his red convertible, said it was a golden calf.\\nContext: N/A\\nOptions: (A) a movie (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion golden calf is the Bible.\\nIn the Bible, Moses grows angry when he discovers some of his followers worshipping a golden calf, an act he sees as an affront to God's law.\\nThe allusion golden calf means a material object that is the subject of worship. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12979\",\n    \"image\": \"12979\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of North Dakota?\\nContext: N/A\\nOptions: (A) Pierre (B) Juneau (C) Bismarck (D) Jefferson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Bismarck is the capital of North Dakota. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12983\",\n    \"image\": \"12983\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Saint Kitts and Nevis (B) Antigua and Barbuda (C) Jamaica (D) Saint Lucia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Kitts and Nevis. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12984\",\n    \"image\": \"12984\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of South Dakota?\\nContext: N/A\\nOptions: (A) Pierre (B) Sioux Falls (C) Madison (D) Springfield\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Pierre is the capital of South Dakota. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12992\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word human on a dictionary page with the following guide words?\\nhate - here\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince human is not between the guide words hate - here, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12995\",\n    \"image\": \"12995\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Montana (B) Oregon (C) California (D) Washington\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Oregon. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"12999\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) All ants have six legs. (B) Red ants are worse than black ants.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true.\\nThe month of July has more days than the month of June.\\nThis is a fact. It can be proved by looking at a calendar and counting the number of days in each month.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nJuly is a better month than June for camping.\\nThis is an opinion. People may have different opinions about which month is \\\"better\\\" for camping. The first sentence states a fact.\\nAll ants have six legs.\\nIt can be proved by reading a book about insects.\\nThe second sentence states an opinion.\\nRed ants are worse than black ants.\\nWorse shows what a person believes, thinks, or feels. Another person might have a different opinion about which ants are worse. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13005\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a bathtub?\\nContext: Select the best estimate.\\nOptions: (A) 75 fluid ounces (B) 75 cups (C) 75 gallons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a bathtub is 75 gallons.\\n75 fluid ounces and 75 cups are both too little. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13007\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na banana getting ripe on the counter\\nsaliva breaking down a piece of bread\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are caused by heating. (C) Both are only physical changes. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA banana getting ripe on the counter is a chemical change. As a banana ripens, the type of matter in it changes. The peel changes color and the inside becomes softer and sweeter.\\nSaliva breaking down a piece of bread is a chemical change. Bread is made up mostly of a chemical called starch. Saliva breaks the bonds between atoms in the starch molecules.\\nThe atoms then link together to form smaller, simpler molecules of sugar. The sugar is a different type of matter than the starch.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13009\",\n    \"image\": \"13009\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Pacific Ocean (B) the Arctic Ocean (C) the Southern Ocean (D) the Atlantic Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Atlantic Ocean. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13012\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Jessica investigate with an experiment?\\nContext: Jessica gets a basketball for her birthday and dribbles it around her neighborhood. She notices that sometimes the ball bounces higher than other times. She wonders what factors affect how high her ball bounces. So, she decides to design an experiment. She has the following supplies available:\\none basketball\\naccess to a brick patio\\naccess to a grassy lawn\\naccess to a gravel driveway\\na meterstick\\nOptions: (A) Do larger basketballs bounce higher than smaller basketballs on a brick patio? (B) Does the basketball bounce higher on a lawn or on a dirt path? (C) Does the basketball bounce higher on gravel or on grass?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13015\",\n    \"image\": \"13015\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the picture. Which word best describes the sound this thunderstorm makes?\\nContext: N/A\\nOptions: (A) purring (B) booming (C) squeaking\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When you write, you can use sensory details. These sense words help your reader understand what something looks, sounds, tastes, smells, or feels like.\\nSensory Category | Description\\nSight | These are words like bright, clean, and purple. A reader can imagine looking at these details.\\nSound | These are words like hissing, buzzing, and ringing. A reader can imagine hearing these details.\\nTaste | These are words like juicy, sweet, and burnt. A reader can imagine tasting these details.\\nSmell | These are words like fruity, sweet, and stinky. A reader can imagine smelling these details.\\nTouch | These are words like fuzzy, wet, and soft. A reader can imagine feeling these details.\\nMany sense words can describe more than one sense. For example, soft can describe a touch or a sound. And sweet can describe a taste or a smell.\\n Look at the picture.\\nThe word booming describes the sound this thunderstorm makes.\\nPurring and squeaking can also describe sounds. But they do not describe the sounds this thunderstorm makes. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13016\",\n    \"image\": \"13016\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) South America (C) North America (D) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is South America. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13017\",\n    \"image\": \"13017\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) Asia (C) Africa (D) South America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Europe. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13021\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Meg decides to join the Photography Club. Which result would be a cost?\\nContext: Meg is deciding whether to join the Theater Club or the Photography Club at school. She wants the club she joins to be fun. But she doesn't want it to take up too much time.\\nOptions: (A) Meg will give up the chance to be in the Theater Club. She would have had more fun in the Theater Club than in the Photography Club. (B) Meg will save some time. She would have spent more time in the Theater Club than in the Photography Club.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Meg wants or needs:\\nMeg will give up the chance to be in the Theater Club. She would have had more fun in the Theater Club than in the Photography Club. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13043\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nJason picked up his pace on the trail as his spidey sense began to tingle.\\nContext: N/A\\nOptions: (A) a comic book (B) a song\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion spidey sense is a comic book.\\nThe comic book superhero Spider-Man possesses a spidey sense that warns him of impending trouble.\\nThe allusion spidey sense means a sense of danger coming. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13054\",\n    \"image\": \"13054\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following organisms is the primary consumer in this food web?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) Arctic fox (B) rough-legged hawk (C) mushroom\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Primary consumers eat producers. So, in a food web, primary consumers have arrows pointing to them from producers.\\nThe mushroom has arrows pointing to it from the barren-ground caribou and the grizzly bear. Neither the barren-ground caribou nor the grizzly bear is a producer, so the earthworm is not a primary consumer.\\nThe Arctic fox has an arrow pointing to it from the bilberry. The bilberry is a producer, so the Arctic fox is a primary consumer.\\nThe barren-ground caribou has an arrow pointing to it from the lichen. The lichen is a producer, so the barren-ground caribou is a primary consumer.\\nThe rough-legged hawk has an arrow pointing to it from the parasitic jaeger. The parasitic jaeger is not a producer, so the rough-legged hawk is not a primary consumer. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13058\",\n    \"image\": \"13058\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is diamond a mineral?\\nContext: Diamond has the following properties:\\nnot made by living things\\nfixed crystal structure\\nfound in nature\\nsolid\\nmade of carbon, which is a pure substance\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Diamond has all the properties of a mineral. So, diamond is a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13062\",\n    \"image\": \"13062\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs. A manta ray is an example of a fish.\\nOptions: (A) clownfish (B) American alligator\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A clownfish is a fish. It lives underwater. It has fins, not limbs.\\nAn American alligator is a reptile. It has scaly, waterproof skin. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13063\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that the submarine's mass did not change.\\nThe gravitational potential energy stored between the submarine and Earth () as the submarine dove toward the ocean floor.\\nContext: Read the text about an object in motion.\\nA submarine dove hundreds of feet from the surface of the ocean toward the ocean floor.\\nOptions: (A) decreased (B) stayed the same (C) increased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between the submarine and the center of Earth changed.\\nThe ocean floor is lower than the surface of the ocean. As the submarine dove toward the ocean floor, the distance between the submarine and the center of Earth decreased. So, the gravitational potential energy stored between the submarine and Earth decreased as the submarine dove toward the ocean floor. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13064\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Francesca inherited this trait?\\nContext: Read the description of a trait.\\nFrancesca has dark skin.\\nOptions: (A) Francesca and her father both have dark hair. (B) Francesca's parents have dark skin. They passed down this trait to Francesca.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13066\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two sailboats. Which sailboat was moving at a higher speed?\\nContext: N/A\\nOptions: (A) a sailboat that moved 50miles in 10hours (B) a sailboat that moved 100miles in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving faster will go a farther distance in that time. It is moving at a higher speed. Look at the distance each sailboat moved and the time it took to move that distance.\\nOne sailboat moved 100 miles in 10 hours.\\nThe other sailboat moved 50 miles in 10 hours.\\nNotice that each sailboat spent the same amount of time moving. The sailboat that moved 100 miles moved a farther distance in that time. So, that sailboat must have moved at a higher speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13068\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nhelping - hunter\\nContext: N/A\\nOptions: (A) hospital (B) hardship\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince hospital is between the guide words helping - hunter, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13072\",\n    \"image\": \"13072\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a cockatiel produced by this cross will have bright orange cheeks?\\nContext: In a group of cockatiels, some individuals have bright orange cheeks and others have pale orange cheeks. In this group, the gene for the cheek color trait has two alleles. The allele for bright orange cheeks (R) is dominant over the allele for pale orange cheeks (r).\\nThis Punnett square shows a cross between two cockatiels.\\nOptions: (A) 2/4 (B) 4/4 (C) 0/4 (D) 1/4 (E) 3/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13078\",\n    \"image\": \"13078\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bird's beak is also adapted to crack hard seeds?\\nContext: Evening grosbeaks eat small, hard seeds. The shape of the 's beak is adapted to crack open small, hard seeds.\\nFigure: evening grosbeak.\\nOptions: (A) common swift (B) hawfinch\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of a bird's beak is one example of an adaptation. Birds' beaks can be adapted in different ways. For example, a sharp hooked beak might help a bird tear through meat easily. A short, thick beak might help a bird break through a seed's hard shell. Birds that eat similar food often have similar beaks. Look at the picture of the evening grosbeak.\\nThe evening grosbeak has a short, thick beak. Its beak is adapted to crack hard seeds. The evening grosbeak uses its short, thick beak to press down on a seed and crack open its hard shell.\\nNow look at each bird. Figure out which bird has a similar adaptation.\\nThe hawfinch has a short, thick beak. Its beak is adapted to crack hard seeds.\\nThe common swift has a short, thin beak. Its beak is not adapted to crack hard seeds. The common swift uses its beak to eat insects and other small invertebrates. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13086\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this plant's phenotype for the fruit sheen trait?\\nContext: In a group of cucumber plants, some individuals have dull fruit and others have glossy fruit. In this group, the gene for the fruit sheen trait has two alleles. The allele for dull fruit (F) is dominant over the allele for glossy fruit (f).\\nA certain cucumber plant from this group has the homozygous genotype FF for the fruit sheen gene.\\nOptions: (A) dull fruit (B) glossy fruit\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. The cucumber plant's genotype for the fruit sheen gene is FF. The cucumber plant's genotype of FF has only F allelles. The F allele is for dull fruit. So, the cucumber plant's phenotype for the fruit sheen trait must be dull fruit.\\nTo check this answer, consider whether the cucumber plant's alleles are dominant or recessive. The allele for dull fruit (F) is dominant over the allele for glossy fruit (f). This means F is a dominant allele, and f is a recessive allele.\\nThe cucumber plant's genotype of FF has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, the cucumber plant's phenotype for the fruit sheen trait must be dull fruit. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13087\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThat man comes in here every day for dinner and always gets the most expensive meals. He must be richer than the king!\\nContext: N/A\\nOptions: (A) hyperbole (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nRicher than the king is an exaggeration, since it is unlikely that the man actually has more money than a king. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13093\",\n    \"image\": \"13093\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) shiny (B) bouncy (C) bumpy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. The gold nugget is shiny, but the log is not.\\nA bumpy object is covered in lumps and bumps. All three objects are bumpy.\\nA bouncy object will bounce back from the floor if you drop it. The gold nugget is not bouncy.\\nThe property that all three objects have in common is bumpy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13102\",\n    \"image\": \"13102\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Ronald's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nRonald mixed bacteria into a nutrient-rich liquid where the bacteria could grow. He poured four ounces of the mixture into each of ten glass flasks. In five of the ten flasks, he also added one teaspoon of cinnamon. He allowed the bacteria in the flasks to grow overnight in a 37\\u00b0C room. Then, Ronald used a microscope to count the number of bacteria in a small sample from each flask. He compared the amount of bacteria in the liquid with cinnamon to the amount of bacteria in the liquid without cinnamon.\\nFigure: flasks of liquid for growing bacteria.\\nOptions: (A) Do more bacteria grow in liquid with cinnamon than in liquid without cinnamon? (B) Does temperature affect how much bacteria can grow in liquid?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13110\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\n\\\"This is the best day of my life,\\\" Mr. Bartlett mumbled after his car broke down on the way to an important job interview.\\nContext: N/A\\nOptions: (A) Mr. Bartlett was having a bad day. (B) Mr. Bartlett liked fixing cars.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nThe best day of my life ironically suggests that Mr. Bartlett was having a bad day. He was having the opposite of a good day because his car broke down when he needed to be on time. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13114\",\n    \"image\": \"13114\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Diane's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nDiane planted 20 radish plants in a greenhouse, putting each plant in its own pot. She placed ten of the pots under bright light and the other ten pots under dim light. Diane watered all the plants twice a day. After two months, she pulled the radish plants from the ground, threw away the leafy green tops, and measured the sizes of the radishes. She compared the sizes of the radishes grown under bright light to the sizes of the radishes grown under dim light.\\nFigure: a radish plant in soil.\\nOptions: (A) Do radishes grown under bright light get bigger than radishes grown under dim light? (B) Do radish plants grown under bright light have more leaves than radish plants grown under dim light?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13122\",\n    \"image\": \"13122\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 1. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13125\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Use the evidence in the text to select the photosynthetic organism.\\nContext: N/A\\nOptions: (A) Poison oak is a type of shrub that may have red or green leaves. Poison oak shrubs have chloroplasts in their cells. These shrubs also produce an oil that can give people an itchy rash if they touch the leaves. (B) Poison dart frogs have special substances in their cells. These substances help protect the frogs from poisons in the insects they eat. Eating these insects also makes the frogs poisonous!\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms that carry out photosynthesis are called photosynthetic organisms. During photosynthesis, these organisms use light energy, carbon dioxide, and water to produce sugars and oxygen.\\nPhotosynthetic organisms also often have the following characteristics:\\nThey are producers, which are organisms that make their own food inside their cells. Because producers make their own food, they typically do not eat other organisms.\\nTheir cells contain chloroplasts, which are cell structures where photosynthesis occurs.\\nTheir chloroplasts often contain a green substance called chlorophyll. Chlorophyll captures light energy from the Sun to power photosynthesis.\\nThey use the sugars they produce during photosynthesis as food. This food provides energy that helps the organisms live, grow, and reproduce. This organism is photosynthetic:\\nThe text tells you that poison oak shrubs have chloroplasts in their cells. This is evidence that poison oak is a photosynthetic organism.\\nThis organism is not photosynthetic:\\nThe text does not provide evidence that the poison dart frog is photosynthetic. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13128\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nDid you know that Reggie is back home living with his parents again and won't get a job? Gosh, millennials are such a lazy generation.\\nContext: N/A\\nOptions: (A) appeal to nature: the assumption that natural things are always good (B) hasty generalization: a broad claim based on too few observations (C) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Reggie living with his parents means that millennials in general are lazy. However, one millennial's behavior does not necessarily reflect the behavior of the entire generation. This illustrates a type of logical fallacy known as a hasty generalization. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13133\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) Arrived at the beach. (B) The child built a tower, he used colored blocks.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. The child built a tower, he used colored blocks is a run-on sentence. It has two sentences that are joined by just a comma: The child built a tower and He used colored blocks. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13145\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal that has a backbone.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians all have backbones.\\nOptions: (A) Tasmanian devil (B) wolf spider\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some animals have a backbone. The backbone is made of many bones in an animal's back. An animal's backbone helps connect the different parts of its body. In the drawings below, each animal's backbone is colored orange.\\nOther animals do not have a backbone. In fact, these animals don't have any bones! Some animals without backbones have a hard outer cover. Other animals have a soft body. A Tasmanian devil is a mammal. Like other mammals, a Tasmanian devil has a backbone.\\nLike other spiders, a wolf spider does not have a backbone. It has a hard outer cover. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13147\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two buses. Which bus was moving at a higher speed?\\nContext: N/A\\nOptions: (A) a bus that moved 825kilometers in 10hours (B) a bus that moved 460kilometers in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving faster will go a farther distance in that time. It is moving at a higher speed. Look at the distance each bus moved and the time it took to move that distance.\\nOne bus moved 825 kilometers in 10 hours.\\nThe other bus moved 460 kilometers in 10 hours.\\nNotice that each bus spent the same amount of time moving. The bus that moved 825 kilometers moved a farther distance in that time. So, that bus must have moved at a higher speed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13162\",\n    \"image\": \"13162\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 1. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is smaller when there is a greater distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a greater distance between magnets, the magnitude of the magnetic force between them is smaller.\\nThere is a greater distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13164\",\n    \"image\": \"13164\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"When might a giant tortoise sleep for weeks at a time?\\nContext: Read the text about giant tortoises.\\nThe Gal\\u00e1pagos Islands in the Pacific Ocean are home to the giant tortoise. These tortoises are massive, weighing nearly five hundred pounds. However, giant tortoises do not use much energy.\\nThey often rest for up to sixteen hours a day. And when there is little water, giant tortoises might sleep for weeks at a time. This helps them save energy. Giant tortoises can live up to a year without food or water if they have to!\\nLife has not always been easy for giant tortoises, though. When people first arrived at the Gal\\u00e1pagos Islands hundreds of years ago, they took many of the tortoises away. And some people hunted the tortoises for food and oil. Few tortoises are left on the island today. Luckily, many groups of people are now working to keep these giant animals safe. Hopefully, giant tortoises can roam the islands for many years to come.\\nOptions: (A) when there is not much water (B) when the tortoise is growing quickly (C) when it is cold outside\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the text in bold below. It tells you when a giant Gal\\u00e1pagos tortoise might sleep for weeks at a time.\\nThe Gal\\u00e1pagos Islands in the Pacific Ocean are home to the giant tortoise. These tortoises are massive, weighing nearly five hundred pounds. However, giant tortoises do not use much energy. They often rest for up to sixteen hours a day. And when there is little water, giant tortoises might sleep for weeks at a time. This helps them save energy. Giant tortoises can live up to a year without food or water if they have to! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13166\",\n    \"image\": \"13166\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oregon?\\nContext: N/A\\nOptions: (A) Boston (B) Portland (C) Salem (D) Jefferson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salem is the capital of Oregon. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13180\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nWhen Katie first joined the track team, she was afraid of jumping, but she got over that hurdle.\\nContext: N/A\\nOptions: (A) pun (B) allusion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses a pun, a word or phrase that humorously suggests more than one meaning.\\nHurdle refers to an obstacle that one must overcome. It also refers to an object that a runner jumps over. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13184\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the euphemism in this text suggest?\\nErik is big-boned, so despite being in middle school, he often shops in the men's department.\\nContext: N/A\\nOptions: (A) Erik is overweight. (B) Erik is tall for his age.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe euphemism big-boned suggests that Erik is overweight. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13197\",\n    \"image\": \"13197\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Dominica (B) Saint Kitts and Nevis (C) Jamaica (D) the Dominican Republic\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Dominican Republic.\\nWhy does the Dominican Republic share its island with another country?\\nThe Dominican Republic and Haiti share the island of Hispaniola. It is home to the earliest European settlements in the Americas. Christopher Columbus founded the first European settlement on the island in 1492 during his first voyage across the Atlantic.\\nThough many people lived on the island before Columbus's arrival, European countries quickly began to colonize the island. Eventually France and Spain both established colonies. The Spanish colony eventually became the country of the Dominican Republic, and the French colony eventually became the country of Haiti. Today, people in the two countries speak different languages and have many cultural differences. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13199\",\n    \"image\": \"13199\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs.\\nFish are cold-blooded. The body temperature of cold-blooded animals depends on their environment.\\nA goldfish is an example of a fish.\\nOptions: (A) piranha (B) American bullfrog (C) olive toad (D) sea otter\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. An American bullfrog is an amphibian. It has moist skin and begins its life in water.\\nFrogs live near water or in damp places. Most frogs lay their eggs in water.\\nA sea otter is a mammal. It has fur and feeds its young milk.\\nSea otters have very thick fur. Their fur keeps them warm in cold water.\\nAn olive toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole.\\nA piranha is a fish. It lives underwater. It has fins, not limbs.\\nPiranhas have sharp teeth. Piranhas hunt in groups. A group of piranhas can eat a large animal. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13202\",\n    \"image\": \"13202\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bird's beak is also adapted to get nectar out of long flowers?\\nContext: s live in the woodlands and meadows of California and Mexico. The shape of this hummingbird's beak is adapted to get nectar out of long flowers.\\nFigure: Allen's hummingbird.\\nOptions: (A) green violetear (B) secretary bird\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of a bird's beak is one example of an adaptation. Birds' beaks can be adapted in different ways. For example, a sharp hooked beak might help a bird tear through meat easily. A short, thick beak might help a bird break through a seed's hard shell. Birds that eat similar food often have similar beaks. Look at the picture of the Allen's hummingbird.\\nThe Allen's hummingbird has a long, thin beak. Its beak is adapted to get nectar out of long flowers. The Allen's hummingbird's long, thin beak can reach deep into the flowers.\\nNow look at each bird. Figure out which bird has a similar adaptation.\\nThe green violetear has a long, thin beak. Its beak is adapted to get nectar out of long flowers.\\nThe secretary bird has a sharp hooked beak. Its beak is not adapted to get nectar out of long flowers. The secretary bird uses its beak to eat meat. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13204\",\n    \"image\": \"13204\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nThe Cascade Range formed at a () boundary.\\nContext: Read the passage and look at the picture.\\nThe Cascade Range is a volcanic arc in the Pacific Northwest that begins in California and runs north into British Columbia. As the North American Plate and the Juan de Fuca Plate move toward each other, oceanic crust of the Juan de Fuca Plate subducts, or sinks, below continental crust of the North American Plate.\\nThere are eighteen volcanoes in the Cascade Range, and some of them are still active. Mount St. Helens is an active volcano near Seattle, Washington. It last erupted in May of 1980.\\nOptions: (A) divergent (B) transform (C) convergent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The outer layer of Earth is broken up into many pieces called tectonic plates, or simply plates. The breaks between plates are called plate boundaries. Plate boundaries are classified by the way the plates are moving relative to each other:\\nAt a divergent boundary, two plates are moving away from each other.\\nAt a transform boundary, two plates are sliding past each other.\\nAt a convergent boundary, two plates are moving toward each other.\\nocean-continent subduction zone\\nOne type of convergent boundary is an ocean-continent subduction zone, which forms when a plate with oceanic crust and a plate with continental crust move toward each other. The oceanic crust subducts, or sinks, below the continental crust.\\nAs the oceanic crust subducts, a deep-sea trench forms at the plate boundary. Some rock in the subducting plate melts into magma and rises toward the surface. The magma cools and hardens to create a string of volcanoes called a volcanic arc. To figure out what type of plate boundary formed the Cascade Range, you need to know how the tectonic plates interacted. To find this out, read the passage carefully.\\nThe Cascade Range is a volcanic arc in the Pacific Northwest that begins in California and runs north into British Columbia. As the North American Plate and the Juan de Fuca Plate move toward each other, oceanic crust of the Juan de Fuca Plate subducts, or sinks, below continental crust of the North American Plate.\\nThere are eighteen volcanoes in the Cascade Range, and some of them are still active. Mount St. Helens is an active volcano near Seattle, Washington. It last erupted in May of 1980.\\nThe underlined part of the passage explains that the Cascade Range formed as the two plates moved toward each other. So, the Cascade Range formed at a convergent boundary. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13210\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\ngetting a haircut\\nsawing a log in half\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are only physical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nGetting a haircut is a physical change. Your hair is shorter after a haircut. But it is still made of the same type of matter.\\nSawing a log in half is a physical change. The log splits into two pieces. But the pieces are still made of the same type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13215\",\n    \"image\": \"13215\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted for climbing trees?\\nContext: Vervet monkeys live in the grasslands and forests of Africa. They climb trees to find food and shelter. The 's hands and feet are adapted for climbing trees.\\nFigure: vervet monkey.\\nOptions: (A) lama (B) bare-eared squirrel monkey\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the vervet monkey.\\nThe vervet monkey has long fingers and toes. It is adapted for climbing trees. The vervet monkey uses its long fingers and toes to hold on to branches while climbing.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe bare-eared squirrel monkey has long fingers and toes. It is adapted for climbing trees.\\nThe lama has four hoofed feet. It is not adapted for climbing trees. The lama uses its feet to walk and run. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13219\",\n    \"image\": \"13219\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Austin (B) Boise (C) Santa Fe (D) Des Moines\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13227\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nFrom the look on her face, Vivian is carrying an albatross around her neck.\\nContext: N/A\\nOptions: (A) a poem (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion an albatross around her neck is a poem.\\nIn Samuel Taylor Coleridge's poem \\\"The Rime of the Ancient Mariner,\\\" a sailor shoots and kills an albatross, an action that curses the ship and crew. As his crew members die, the Ancient Mariner feels his guilt hanging like the albatross around his neck.\\nThe allusion an albatross around her neck means a burden a person must bear. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13230\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nEli remarked that the new book on anti-gravity was impossible to put down.\\nContext: N/A\\nOptions: (A) allusion (B) pun\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses a pun, a word or phrase that humorously suggests more than one meaning.\\nImpossible to put down means that the book is so good that it is hard to stop reading. The phrase impossible to put down is also a joke about anti-gravity: if gravity pulls things down, perhaps anti-gravity does the opposite and makes them impossible to put down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13236\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nchief - corral\\nContext: N/A\\nOptions: (A) called (B) class\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince class is between the guide words chief - corral, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13247\",\n    \"image\": \"13247\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of West Virginia?\\nContext: N/A\\nOptions: (A) Huntington (B) Oklahoma City (C) Charleston (D) Buffalo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Charleston is the capital of West Virginia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13251\",\n    \"image\": \"13251\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the amphibian below.\\nContext: Amphibians have moist skin and begin their lives in water. A common toad is an example of an amphibian.\\nOptions: (A) red-spotted newt (B) human\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A red-spotted newt is an amphibian. It has moist skin and begins its life in water.\\nA human is a mammal. It has hair and feeds its young milk. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13252\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) The terrible snowstorm brought traffic to a halt. (B) Matthew makes toast for breakfast, or he eats a banana later at school.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction or.\\nMatthew makes toast for breakfast, or he eats a banana later at school. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13253\",\n    \"image\": \"13253\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Grenada (B) Trinidad and Tobago (C) Saint Lucia (D) Saint Vincent and the Grenadines\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Grenada. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13258\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nScientists will measure the rainfall in Livingston.\\nContext: N/A\\nOptions: (A) past tense (B) future tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, measure. The verb tells you about something that is going to happen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13263\",\n    \"image\": \"13263\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Montana?\\nContext: N/A\\nOptions: (A) Anchorage (B) Los Angeles (C) Helena (D) Honolulu\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Helena is the capital of Montana. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13268\",\n    \"image\": \"13268\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Arianna and Sidney trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nArianna and Sidney open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Arianna wanted broccoli in her lunch and Sidney was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Arianna can trade her tomatoes for Sidney's sandwich. (B) Arianna can trade her tomatoes for Sidney's broccoli. (C) Sidney can trade her broccoli for Arianna's oranges. (D) Sidney can trade her almonds for Arianna's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Arianna wanted broccoli in her lunch and Sidney was hoping for tomatoes. Look at the labeled part of the images.\\nArianna has tomatoes. Sidney has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13271\",\n    \"image\": \"13271\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Amazon rain forest ecosystem?\\nContext: Figure: Amazon rain forest.\\nThe Amazon rain forest is a tropical rain forest ecosystem located in Brazil, Peru, and several other South American countries.\\nOptions: (A) It has cold winters. It also has many different types of organisms. (B) It has year-round rain. It also has many different types of organisms.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A tropical rain forest is a type of ecosystem. Tropical rain forests have the following features: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. So, the Amazon rain forest has year-round rain. It also has many different types of organisms. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13280\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nWhile at the park today, Kyle noticed that the wind was coming from the southwest.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nWhile at the park today, Kyle noticed that the wind was coming from the southwest.\\nThis passage tells you about the wind direction at the park today. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13285\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) white-spotted octopus (B) locust (C) whiptail lizard (D) peacock butterfly\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A whiptail lizard is a reptile. Like other reptiles, a whiptail lizard is a vertebrate. It has a backbone.\\nLike other octopuses, a white-spotted octopus is an invertebrate. It does not have a backbone. It has a soft body.\\nA peacock butterfly is an insect. Like other insects, a peacock butterfly is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA locust is an insect. Like other insects, a locust is an invertebrate. It does not have a backbone. It has an exoskeleton. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13293\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAs Charlie sat down on the rickety old chair, it abruptly collapsed beneath him.\\nContext: N/A\\nOptions: (A) compound (B) complex (C) compound-complex (D) simple\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is complex. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction as.\\nAs Charlie sat down on the rickety old chair, it abruptly collapsed beneath him. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13309\",\n    \"image\": \"13309\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Dustin and Irma trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nDustin and Irma open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Dustin wanted broccoli in his lunch and Irma was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Dustin can trade his tomatoes for Irma's broccoli. (B) Irma can trade her broccoli for Dustin's oranges. (C) Dustin can trade his tomatoes for Irma's sandwich. (D) Irma can trade her almonds for Dustin's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Dustin wanted broccoli in his lunch and Irma was hoping for tomatoes. Look at the labeled part of the images.\\nDustin has tomatoes. Irma has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13311\",\n    \"image\": \"13311\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What location was involved in the triangular trade?\\nContext: By the 1700s, merchants in the Thirteen Colonies traded goods across the Atlantic Ocean in a pattern called triangular trade. Look at the map showing this trade. Then answer the question below.\\nOptions: (A) China (B) the Thirteen Colonies\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the map.\\nThe arrows on the map show that goods moved to and from these locations:\\nChina was not involved in the triangular trade. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13312\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\njerk - junk\\nContext: N/A\\nOptions: (A) join (B) jaw\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince join is between the guide words jerk - junk, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13319\",\n    \"image\": \"13319\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the Canada lynx.\\nContext: This organism is a Canada lynx. Its scientific name is Lynx canadensis.\\nOptions: (A) Lynx rufus (B) Macropus agilis (C) Lynx canadensis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A Canada lynx's scientific name is Lynx canadensis.\\nMacropus agilis does not have the same scientific name as a Canada lynx. So, Lynx canadensis and Macropus agilis are not in the same species.\\nLynx canadensis is in the same genus as Lynx rufus, but they are not in the same species.\\nOrganisms in the same species have the same scientific names. Lynx canadensis and Lynx rufus are different species within the same genus.\\nLynx canadensis has the same scientific name as a Canada lynx. So, these organisms are in the same species. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13344\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nMelted rock comes out of a gap in Earth's surface.\\nContext: N/A\\nOptions: (A) wildfire (B) volcanic eruption (C) erosion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13348\",\n    \"image\": \"13348\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Massachusetts (B) Pennsylvania (C) South Carolina (D) Wisconsin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Massachusetts.\\nThe Massachusetts Colony included land that would later become the state of Maine. Maine was never its own colony. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13354\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word terribly in its traditional sense?\\nContext: N/A\\nOptions: (A) Heather was terribly late to work this morning because her car broke down on the freeway. (B) Heather's car was running terribly before she took it to the mechanic for a tune-up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses terribly in its traditional sense: in a terrible manner.\\nHeather's car was running terribly before she took it to the mechanic for a tune-up.\\nThe second text uses terribly in its nontraditional sense: extremely; very.\\nHeather was terribly late to work this morning because her car broke down on the freeway.\\nMost style guides recommend to use the traditional sense of the word terribly because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13356\",\n    \"image\": \"13356\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Elise and Nolan trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nElise and Nolan open their lunch boxes in the school cafeteria. Neither Elise nor Nolan got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nElise's lunch Nolan's lunch\\nOptions: (A) Nolan can trade his broccoli for Elise's oranges. (B) Elise can trade her tomatoes for Nolan's broccoli. (C) Elise can trade her tomatoes for Nolan's carrots. (D) Nolan can trade his almonds for Elise's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nElise wants broccoli. Nolan wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13388\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word unique in its traditional sense?\\nContext: N/A\\nOptions: (A) Warren custom ordered his unique coffee table from a master craftsman in Oak Grove. (B) Warren bought his unique coffee table from a factory outlet store in Oak Grove.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses unique in its traditional sense: being the only one of its kind.\\nWarren custom ordered his unique coffee table from a master craftsman in Oak Grove.\\nThe first text uses unique in its nontraditional sense: interesting or unusual. Warren's coffee table is an interesting style, but it was made in a factory and is probably not actually one of a kind.\\nWarren bought his unique coffee table from a factory outlet store in Oak Grove.\\nMost style guides recommend to use the traditional sense of the word unique because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13392\",\n    \"image\": \"13392\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13393\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nAnna has naturally red hair.\\nContext: Hint: Some people dye their hair. But this does not change their natural hair color.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Humans do not choose their natural hair color. Instead, children get their natural hair color from their parents. So, Anna's hair color is an inherited trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13394\",\n    \"image\": \"13394\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Nina and Ivan trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nNina and Ivan open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Nina wanted broccoli in her lunch and Ivan was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Ivan can trade his almonds for Nina's tomatoes. (B) Nina can trade her tomatoes for Ivan's sandwich. (C) Nina can trade her tomatoes for Ivan's broccoli. (D) Ivan can trade his broccoli for Nina's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Nina wanted broccoli in her lunch and Ivan was hoping for tomatoes. Look at the labeled part of the images.\\nNina has tomatoes. Ivan has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13397\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a warm loaf of bread?\\nContext: Select the better estimate.\\nOptions: (A) 65\\u00b0F (B) 65\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a warm loaf of bread is 65\\u00b0C.\\n65\\u00b0F is too cold. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13408\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nThe most delicious avocados in the U.S. are grown in California because California avocados have the best taste.\\nContext: N/A\\nOptions: (A) false dichotomy: an argument that presents only two choices when more options exist (B) guilt by association: a negative association intended to discredit someone or something (C) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that avocados from California are the most delicious because they taste the best. However, the \\\"evidence\\\" is just a restatement of the claim itself. This illustrates a type of logical fallacy known as circular reasoning. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13413\",\n    \"image\": \"13413\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) colorful (B) sticky\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA colorful object has one or more bright colors. The flip-flops are colorful.\\nA sticky object can stick to other things. The flip-flops are not sticky. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13420\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nLithium bromide is ().\\nContext: Lithium bromide is used to absorb moisture from the air. The chemical formula for lithium bromide is LiBr.\\nOptions: (A) a compound (B) an elementary substance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nThe atomic symbol for each chemical element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one atomic symbol.\\nThe atomic symbol in a chemical formula may be followed by a small number written lower than the symbol. This number is called a subscript. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript shows how many atoms are in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen, O2, has a subscript of 2. This subscript shows that the atomic symbol O represents two atoms. The elementary substance O2 and the chemical element represented by the atomic symbol O are both named oxygen. So, the formula tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple atomic symbols.\\nThe chemical elements in a compound are bonded together in a fixed ratio. This ratio is shown in a compound's chemical formula.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. So, the ratio of beryllium atoms to fluorine atoms is 1 to 2. This ratio is shown in the chemical formula for beryllium fluoride, BeF2. There is no subscript following the atomic symbol Be because that symbol represents one atom. The subscript 2 follows the atomic symbol F to show that the symbol represents two atoms. You can tell whether lithium bromide is an elementary substance or a compound by counting the number of atomic symbols in its chemical formula. An atomic symbol consists of either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for lithium bromide, LiBr, contains two atomic symbols: Li for lithium and Br for bromine. So, the formula tells you that lithium bromide is composed of two chemical elements bonded together.\\nSince lithium bromide is composed of multiple chemical elements bonded together, lithium bromide is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13424\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the solid.\\nContext: N/A\\nOptions: (A) coffee (B) eraser (C) air inside a tire (D) air inside a bubble\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. Coffee is a liquid. A liquid takes the shape of any container it is in. If you pour coffee into a different container, the coffee will take the shape of that container. But the coffee will still take up the same amount of space.\\nThe air inside a tire is a gas. A gas expands to fill a space. The air in a tire expands to fill all the space inside the tire. If air leaks out, it will expand into the space around the tire.\\nThe air inside a bubble is a gas. A gas expands to fill a space. The air inside a bubble fills all the space in the bubble. If the bubble pops, the air will expand to fill a much larger space.\\nAn eraser is a solid. You can bend an eraser. But it will still have a size and shape of its own. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13434\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Cameron inherited this trait?\\nContext: Read the description of a trait.\\nCameron has blue eyes.\\nOptions: (A) Cameron likes to wear a blue sweater to match his blue eyes. (B) Cameron's mother has blue eyes. She passed this trait down to Cameron.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13437\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Choose the poem that uses onomatopoeia.\\nContext: From Emily Dickinson, \\\"I heard a Fly buzz (465)\\\" and from William Knox, \\\"Mortality\\\"\\nOptions: (A) I heard a Fly buzz\\u2014when I died\\u2014\\nThe Stillness in the Room\\nWas like the Stillness in the Air\\u2014\\nBetween the Heaves of Storm\\u2014 (B) The peasant whose lot was to sow and to reap,\\nThe herdsman who climbed with his goats to the steep,\\nThe beggar that wandered in search of his bread,\\nHave faded away like the grass that we tread.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Poets often use the sounds of words to create interesting effects and to express moods and emotions. Understanding these elements of poetry can help you better interpret and appreciate poetic forms.\\nAnaphora is the repetition of words or sequences of words at the beginning of multiple phrases, sentences, or lines.\\nOut of the cradle endlessly rocking,\\nOut of the mocking-bird's throat, the musical shuttle,\\nOut of the Ninth-month midnight\\n\\u2014From Walt Whitman, \\\"Out of the Cradle Endlessly Rocking\\\"\\nOnomatopoeia is when language sounds like what it talks about.\\nSometimes the onomatopoeia uses made-up words:\\nTlot-tlot! tlot-tlot! Had they heard it? The horse hoofs ringing clear.\\n\\u2014From Alfred Noyes, \\\"The Highwayman\\\"\\nSometimes the onomatopoeia uses real words:\\nHark! the honey bee is humming.\\n\\u2014From Mary Howitt, \\\"The Voice of Spring\\\"\\nAlliteration is when beginning consonant sounds are repeated in words that are close together.\\nWhere the wild men watched and waited\\nWolves in the forest, and bears in the bush.\\n\\u2014From Bayard Taylor, \\\"A Night with a Wolf\\\"\\nAssonance is the repetition of vowel sounds. Often, assonance can create rhymes or near-rhymes within lines.\\nI wandered lonely as a Cloud\\nThat floats on high o'er Vales and Hills,\\nWhen all at once I saw a crowd,\\nA host of golden Daffodils.\\n\\u2014From William Wordsworth, \\\"I Wandered Lonely as a Cloud\\\"\\nMeter is a poem's rhythm, or the pattern of strong and weak syllables. Strong syllables are stressed, while weak syllables are unstressed.\\nA poem has an iambic meter when the beat sounds like da-DUM. A weak syllable is followed by a strong syllable. Occasionally, a line may begin with a strong syllable.\\nHe watches from his mountain walls,\\nAnd like a thunderbolt he falls.\\n\\u2014From Alfred, Lord Tennyson, \\\"The Eagle\\\"\\nA poem has a trochaic meter when the beat sounds like DUM-da. A strong syllable is followed by a weak syllable. Occasionally, a line may end in a strong syllable.\\nBack into the chamber turning, all my soul within me burning,\\nSoon again I heard a tapping somewhat louder than before.\\n\\u2014From Edgar Allen Poe, \\\"The Raven\\\"\\nFree verse is when a poem has neither a regular rhythm nor a rhyme pattern.\\nThe old bridge has a wrinkled face.\\nHe bends his back\\nFor us to go over.\\n\\u2014From Hilda Conkling, \\\"The Old Bridge\\\"\\nThe syllables in bold are strong. You can see this poem does not have a regular rhythm. It also doesn't have a rhyme pattern. This poem uses onomatopoeia. It uses language that sounds like what it talks about. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13441\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nVictory at all costs, victory in spite of all terror, victory however long and hard the road may be.\\n\\u2014Winston Churchill\\nContext: N/A\\nOptions: (A) anaphora (B) apostrophe\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses anaphora, the repetition of the same word or words at the beginning of several phrases or clauses.\\nChurchill repeats the word victory at the beginning of each phrase. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13443\",\n    \"image\": \"13443\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Washington?\\nContext: N/A\\nOptions: (A) Sacramento (B) Boise (C) Olympia (D) Seattle\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Olympia is the capital of Washington. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13446\",\n    \"image\": \"13446\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Florida (B) South Carolina (C) Maryland (D) Tennessee\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Maryland. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13456\",\n    \"image\": \"13456\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the tide pool ecosystems in Tongue Point Marine Life Sanctuary?\\nContext: Figure: Tongue Point Marine Life Sanctuary.\\nTongue Point Marine Life Sanctuary is in western Washington State. The park is on the coast of the Pacific Ocean. It has many tide pool ecosystems.\\nOptions: (A) It has daily flooding and draining of seawater. It also has many different types of organisms. (B) It has daily flooding and draining of seawater. It also has water that is poor in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A tide pool is a type of ecosystem. Tide pool ecosystems have the following features: daily flooding and draining of seawater, water that is rich in nutrients, and many different types of organisms. So, the tide pool ecosystems in Tongue Point Marine Life Sanctuary have daily flooding and draining of seawater. They also have many different types of organisms. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13457\",\n    \"image\": \"13457\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Edwin's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nEdwin poured 30 milliliters of water into each of six measuring cups. He poured the same volume of apple juice into another six measuring cups. He kept the measuring cups in a freezer for 48 hours. Edwin then observed the frozen liquids' volumes in the measuring cups. He measured the amount the volumes increased to see how much the liquids had expanded while freezing. He compared how much the water expanded to how much the apple juice expanded.\\nFigure: water in a measuring cup.\\nOptions: (A) Does apple juice expand more or less than water when it freezes? (B) Does water freeze more quickly than apple juice?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13458\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word sacred on a dictionary page with the following guide words?\\nshoe - source\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince sacred is not between the guide words shoe - source, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13459\",\n    \"image\": \"13459\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe volume of Earth is more than ten times the volume of Mercury.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, first compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\nTo multiply a number written in scientific notation by a power of 10, write the multiple of 10 as 10 raised to an exponent. Then, add the exponents. For example:\\n1.43 x 10^15 \\u00b7 1000\\n= 1.43 x 10^15 \\u00b7 10^3\\n= 1.43 x 10^(15 + 3)\\n= 1.43 x 10^18\\n To determine if this statement is true, calculate the value of ten times the volume of Mercury.\\nThen compare the result to the volume of Earth. The volume of Earth is 1.08 x 10^12 km^3, which is greater than 6.08 x 10^11 km^3. So, the volume of Earth is more than ten times the volume of Mercury. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13461\",\n    \"image\": \"13461\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) Africa (C) Asia (D) North America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Asia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13463\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the placental mammal traits listed above.\\nContext: Placental mammals are a group of animals with similar traits. The following traits can be used to identify placental mammals:\\nThey give birth to live offspring.\\nThey have fur or hair. Observe the animals and read the descriptions.\\nOptions: (A) Dwarf crocodiles are the smallest crocodiles alive today. They grow to be about five feet long and have scaly, waterproof skin. Dwarf crocodiles live in Central Africa and hatch from eggs with shells. (B) North American beavers have fur and live near lakes and rivers. They use sticks and mud to build homes, or lodges, for themselves. Female beavers give birth to live offspring inside the lodges.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nPlacental mammals have the following traits:\\nThey give birth to live offspring.\\nThey have fur or hair.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA dwarf crocodile has the following traits:\\nIt has scaly, waterproof skin.\\nIt makes eggs with shells.\\nA dwarf crocodile does not have all of the traits of a placental mammal. A dwarf crocodile is a reptile.\\nA North American beaver has the following traits:\\nIt gives birth to live offspring.\\nA North American beaver has the traits of a placental mammal. A North American beaver is a placental mammal. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13469\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Darnel decides to take a trip to Connecticut. Which result would be a cost?\\nContext: Darnel is deciding whether to take a trip to Connecticut or Virginia. He wants to enjoy his trip. But he is also trying to save money.\\nOptions: (A) Darnel will enjoy his trip to Connecticut more than he would have enjoyed a trip to Virginia. (B) Darnel will spend more money. Plane tickets for Darnel to get to Connecticut are more expensive than tickets to Virginia.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Darnel wants or needs:\\nDarnel will spend more money. Plane tickets for Darnel to get to Connecticut are more expensive than tickets to Virginia. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13471\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nDevon has naturally pale skin.\\nContext: Hint: Humans are born with their skin color.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Humans do not choose their skin color. Babies get their skin color from their parents. So, Devon's skin color is an inherited trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13475\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one true statement.\\nContext: N/A\\nOptions: (A) The Golgi is inside the cell membrane in an animal cell. (B) Plant cells can have vacuoles but do not have mitochondria. (C) The endoplasmic reticulum breaks down sugar to release energy that a plant cell can use.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13476\",\n    \"image\": \"13476\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Southern Ocean (B) the Indian Ocean (C) the Arctic Ocean (D) the Pacific Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Southern Ocean.\\nThe Southern Ocean reaches from the shores of Antarctica to 60\\u00b0 South latitude. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13480\",\n    \"image\": \"13480\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two bottles of soda were sitting on a porch on a hot day. The two bottles were identical, except that one bottle was made of brown glass and one bottle was made of clear glass. This table shows how the temperature of each bottle changed over 25minutes.\\nOptions: (A) the surroundings . . . each bottle (B) each bottle . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each bottle increased, which means that the thermal energy of each bottle increased. So, thermal energy was transferred from the surroundings to each bottle. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13484\",\n    \"image\": \"13484\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak. A bald eagle is an example of a bird.\\nOptions: (A) painted stork (B) human\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A painted stork is a bird. It has feathers, two wings, and a beak.\\nStorks wade in shallow water to look for food. Storks eat fish, insects, worms, and other small animals.\\nA human is a mammal. It has hair and feeds its young milk.\\nHumans are a type of animal called a primate. Monkeys and apes are also primates. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13488\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Sugar's genotype for the body size gene?\\nContext: In a group of rats, some individuals have a normal-sized body and others have a dwarf body. In this group, the gene for the body size trait has two alleles. The allele B is for a normal-sized body, and the allele b is for a dwarf body.\\nSugar, a rat from this group, has a normal-sized body. Sugar has two alleles for a normal-sized body.\\nOptions: (A) BB (B) a normal-sized body\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Sugar has two alleles for a normal-sized body (B). So, Sugar's genotype for the body size gene is BB. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13489\",\n    \"image\": \"13489\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Ohio?\\nContext: N/A\\nOptions: (A) Cleveland (B) Columbus (C) Cincinnati (D) Fargo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbus is the capital of Ohio. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13491\",\n    \"image\": \"13491\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the south pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13497\",\n    \"image\": \"13497\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Katy and Anne's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nKaty and Anne were making batches of concrete for a construction project. To make the concrete, they mixed together dry cement powder, gravel, and water. Then, they checked if each batch was firm enough using a test called a slump test.\\nThey poured some of the fresh concrete into an upside-down metal cone. They left the concrete in the metal cone for 30 seconds. Then, they lifted the cone to see if the concrete stayed in a cone shape or if it collapsed. If the concrete in a batch collapsed, they would know the batch should not be used.\\nFigure: preparing a concrete slump test.\\nOptions: (A) if a new batch of concrete was firm enough to use (B) if the concrete from each batch took the same amount of time to dry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13500\",\n    \"image\": \"13500\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) salty (B) bendable\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA bendable object can be bent without breaking. The cracker is not bendable.\\nPotato chips have a salty taste. The cracker is salty. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13503\",\n    \"image\": \"13503\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Vermont?\\nContext: N/A\\nOptions: (A) Montpelier (B) Wilmington (C) Burlington (D) Hartford\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montpelier is the capital of Vermont. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13507\",\n    \"image\": \"13507\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Tonga (B) Australia (C) Solomon Islands (D) New Zealand\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Australia.\\nIs Australia a country or a continent?\\nBoth! Australia is a country in Oceania, a region made up of many lands and islands in the Pacific Ocean. Many people say that Australia is the world's smallest continent. But some people call Oceania a continent instead. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13510\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to sing the ABC song?\\nContext: Select the better estimate.\\nOptions: (A) 23 seconds (B) 23 minutes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to sing the ABC song is 23 seconds.\\n23 minutes is too slow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13525\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nWater freezing into ice is a ().\\nContext: N/A\\nOptions: (A) chemical change (B) physical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two ways matter can change.\\nIn a chemical change, the type of matter changes.\\nBurning a piece of paper is a chemical change. The paper changes into ash and smoke.\\nIn a physical change, the type of matter stays the same.\\nCutting a piece of paper is a physical change. The cut pieces are still made of paper.\\nIce melting is also a physical change. When ice melts, it changes from a solid to a liquid. But both ice and liquid water are made of the same type of matter: water! This kind of change is called a change of state. Water freezing into ice is a change of state. So, it is a physical change. The water changes from solid to liquid. But the ice is still made of the same type of matter as the liquid water. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13528\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAs Pablo sat down on the rickety old chair, it abruptly collapsed beneath him.\\nContext: N/A\\nOptions: (A) simple (B) complex (C) compound-complex (D) compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is complex. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction as.\\nAs Pablo sat down on the rickety old chair, it abruptly collapsed beneath him. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13539\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) ***Apple or Orange*** (B) \\\"Apple or Orange?\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A book should be in italics.\\nThe correct title is **Apple or Orange**. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13544\",\n    \"image\": \"13544\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which fish's mouth is also adapted for tearing through meat?\\nContext: Bull sharks eat turtles, birds, dolphins, and other fish. The mouth of the is adapted to tear through meat.\\nFigure: bull shark.\\nOptions: (A) copperband butterflyfish (B) barracuda\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the bull shark.\\nThe bull shark has a large mouth and sharp teeth. Its mouth is adapted for tearing through meat. The bull shark uses its teeth to cut up meat into pieces it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe barracuda has a large mouth and sharp teeth. Its mouth is adapted for tearing through meat.\\nThe copperband butterflyfish has a small, narrow mouth. Its mouth is not adapted for tearing through meat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13547\",\n    \"image\": \"13547\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following is on the map?\\nContext: Read the passage. Then answer the question.\\nThis is a map of Earth. The map uses color to show parts of Earth that are covered by land and water. The map uses white to show large sheets of ice and snow called glaciers.\\nThe map's legend, or information box, shows the feature that each color represents.\\nOptions: (A) water in clouds (B) water in oceans\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The map uses blue to show liquid water in rivers, lakes, and oceans. It uses white to show water that is frozen in glaciers.\\nThe map shows only water that is on the surface of Earth. It does not show water that is underground or in clouds. Other maps might use different colors to show water that is underground or in clouds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13551\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) mat (B) shut (C) rut\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the same sound.\\nThe words meet and treat also rhyme. They both end with the same sound, even though the sound has two different spellings.\\nThe words tip and meet don't rhyme. They end with different sounds. The words shut and rut rhyme. They both end with the ut sound.\\nThe word mat does not rhyme. It ends with a different sound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13552\",\n    \"image\": \"13552\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the south pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13571\",\n    \"image\": \"13571\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these organisms contains matter that was once part of the kelp?\\nContext: Below is a food web from an ocean ecosystem in Monterey Bay, off the coast of California.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) zooplankton (B) phytoplankton (C) bat star\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows that starts from the kelp.There is one path matter can take from the kelp to the sea cucumber: kelp->sea urchin->sea otter->orca->sea cucumber. There is one path matter can take from the kelp to the bat star: kelp->kelp bass->bat star. phytoplankton. No arrow points to the phytoplankton. So, in this food web, matter does not move from the kelp to the phytoplankton.. zooplankton. The only arrow pointing to the zooplankton starts from the phytoplankton. No arrow points to the phytoplankton. So, in this food web, matter does not move from the kelp to the zooplankton.. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13574\",\n    \"image\": \"13574\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13592\",\n    \"image\": \"13592\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs. A goldfish is an example of a fish.\\nOptions: (A) barn owl (B) clownfish\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A barn owl is a bird. It has feathers, two wings, and a beak.\\nA clownfish is a fish. It lives underwater. It has fins, not limbs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13599\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Last year, there were seven men's clothing stores on Main Street in Princeton. This year, there are only three. What probably happened to the overall supply of men's shirts in Princeton?\\nContext: N/A\\nOptions: (A) The supply probably went up. (B) The supply probably went down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. When four men's clothing stores closed on Main Street, the number of suppliers went down. There were fewer stores selling men's shirts. So, the supply of men's shirts probably went down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13603\",\n    \"image\": \"13603\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Elena's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nElena planted 20 radish plants in a greenhouse, putting each plant in its own pot. She placed ten of the pots under bright light and the other ten pots under dim light. Elena watered all the plants twice a day. After two months, she pulled the radish plants from the ground, threw away the leafy green tops, and measured the sizes of the radishes. She compared the sizes of the radishes grown under bright light to the sizes of the radishes grown under dim light.\\nFigure: a radish plant in soil.\\nOptions: (A) Do radishes grown under bright light get bigger than radishes grown under dim light? (B) Do radish plants grown under bright light have more leaves than radish plants grown under dim light?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13605\",\n    \"image\": \"13605\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) The Bahamas (B) Haiti (C) Cuba (D) Antigua and Barbuda\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is The Bahamas. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13614\",\n    \"image\": \"13614\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution A (B) neither; their concentrations are the same (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution A and Solution B have the same number of green particles per milliliter. So, their concentrations are the same. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13621\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) The conference that was originally scheduled for Tuesday will now be held on Wednesday. (B) FYI, the conference that was originally scheduled for Tuesday will now be held on Wednesday.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses abbreviated language (FYI).\\nThe second sentence does not use abbreviated language, so it is more formal. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13640\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nJosh has naturally pale skin.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Humans do not choose their skin color. Babies get their skin color from their parents. So, Josh's skin color is an inherited trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13643\",\n    \"image\": \"13643\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) blue (B) scratchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA scratchy object is rough and itchy against your skin. The yarn pom pom is not scratchy.\\nBlue is a color.\\nThis color is blue. The yarn pom pom is blue. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13644\",\n    \"image\": \"13644\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to the map, which of the following statements is true about North America in the early colonial era?\\nContext: Look at the map of North America in the early colonial era, or the 1600s and early 1700s. Then answer the question below.\\nOptions: (A) England claimed most of the Atlantic coast of North America. (B) The Dutch controlled the most territory in eastern North America.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13652\",\n    \"image\": \"13652\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the agile wallaby.\\nContext: This organism is an agile wallaby. Its scientific name is Macropus agilis.\\nOptions: (A) Ictinia mississippiensis (B) Macropus agilis (C) Lacerta agilis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n An agile wallaby's scientific name is Macropus agilis. The first word of its scientific name is Macropus.\\nIctinia mississippiensis is in the genus Ictinia. The first word of its scientific name is Ictinia. So, Ictinia mississippiensis and Macropus agilis are not in the same genus.\\nThis organism and the agile wallaby are in the same genus and the same species! Both organisms have the same scientific name, Macropus agilis.\\nLacerta agilis and Macropus agilis are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Lacerta agilis and Macropus agilis have the same species name within their genus, agilis. But the first words of their scientific names are different. Lacerta agilis is in the genus Lacerta, and Macropus agilis is in the genus Macropus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13666\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nVincent and Tessa have trouble working on projects together. Although Tessa is very sociable and friendly, she's not exactly a team player.\\nContext: N/A\\nOptions: (A) euphemism (B) paradox\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nNot exactly a team player is an indirect way of saying that someone doesn't work well with others. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13667\",\n    \"image\": \"13667\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Kyle and Tony trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nKyle and Tony open their lunch boxes in the school cafeteria. Neither Kyle nor Tony got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nKyle's lunch Tony's lunch\\nOptions: (A) Tony can trade his broccoli for Kyle's oranges. (B) Tony can trade his almonds for Kyle's tomatoes. (C) Kyle can trade his tomatoes for Tony's carrots. (D) Kyle can trade his tomatoes for Tony's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nKyle wants broccoli. Tony wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13678\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word peruse in its traditional sense?\\nContext: N/A\\nOptions: (A) Brad perused a catalog from his wife's favorite clothing store, searching for the perfect birthday gift. (B) Brad perused a clothing catalog as he waited for his appointment, flipping through the pages distractedly.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses peruse in its traditional sense: to examine in detail.\\nBrad perused a catalog from his wife's favorite clothing store, searching for the perfect birthday gift.\\nThe second text uses peruse in its nontraditional sense: to look through in a casual manner.\\nBrad perused a clothing catalog as he waited for his appointment, flipping through the pages distractedly.\\nMost style guides recommend to use the traditional sense of the word peruse because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13687\",\n    \"image\": \"13687\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of California?\\nContext: N/A\\nOptions: (A) Sacramento (B) Boise (C) Honolulu (D) San Francisco\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sacramento is the capital of California. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13688\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Jennifer inherited this trait?\\nContext: Read the description of a trait.\\nJennifer has brown eyes.\\nOptions: (A) Jennifer's father has brown eyes. He passed this trait down to Jennifer. (B) Jennifer's hair is the same color as her brown eyes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13695\",\n    \"image\": \"13695\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13696\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is harder?\\nContext: N/A\\nOptions: (A) glass bottle (B) wool scarf\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Hard is a property. A hard material keeps its shape when you press on it with your finger.\\nLook at each picture, one at a time. Imagine pushing on the material shown in each picture.\\nOf the choices, the glass bottle is harder. If you squeeze a glass bottle, it will not change shape. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13704\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Leslie acquired this trait?\\nContext: Read the description of a trait.\\nLeslie has a scar on her left leg.\\nOptions: (A) Some scars fade more quickly than others. (B) Leslie's scar was caused by an accident. She cut her leg when she was climbing a tree.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13715\",\n    \"image\": \"13715\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak.\\nBirds are warm-blooded. Warm-blooded animals can control their body temperature.\\nA turkey vulture is an example of a bird.\\nOptions: (A) gray tree frog (B) black howler (C) zebra (D) barn owl\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A barn owl is a bird. It has feathers, two wings, and a beak.\\nBarn owls live on every continent except Antarctica.\\nA black howler is a mammal. It has hair and feeds its young milk.\\nHowler monkeys have loud calls, or howls. Their calls can be heard over three miles away!\\nA zebra is a mammal. It has hair and feeds its young milk.\\nZebras eat mostly grass. But they sometimes eat other types of plants, such as shrubs or tree bark.\\nA gray tree frog is an amphibian. It has moist skin and begins its life in water.\\nThere are many kinds of tree frogs. Most tree frogs are very small. They can walk on thin branches. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13726\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following statements is true?\\nContext: All matter is made of atoms. Atoms are very small pieces of matter. But they are not the smallest pieces of matter. Atoms are made of even smaller pieces, or particles.\\nSome of these particles have a property called electric charge. There are two types of electric charge: positive and negative. Particles with a positive electric charge are called positive charges. Particles with a negative electric charge are called negative charges.\\nOptions: (A) Electric charge can be positive or negative. (B) Particles with any electric charge are called positive charges. (C) The smallest piece of matter is called an atom.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13732\",\n    \"image\": \"13732\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Virginia?\\nContext: N/A\\nOptions: (A) Norfolk (B) Little Rock (C) Richmond (D) Biloxi\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Richmond is the capital of Virginia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13736\",\n    \"image\": \"13736\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the text to describe the diagram.\\nSolute particles moved in both directions across the permeable membrane. But more solute particles moved across the membrane (). When there was an equal concentration on both sides, the particles reached equilibrium.\\nContext: The diagram below shows a solution with one solute. Each solute particle is represented by a pink ball. The solution fills a closed container that is divided in half by a membrane. The membrane, represented by a dotted line, is permeable to the solute particles.\\nThe diagram shows how the solution can change over time during the process of diffusion.\\nOptions: (A) to the left than to the right (B) to the right than to the left\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a solution, solute particles move and spread throughout the solvent. The diagram below shows how a solution can change over time. Solute particles move from the area where they are at a higher concentration to the area where they are at a lower concentration. This movement happens through the process of diffusion.\\nAs a result of diffusion, the concentration of solute particles becomes equal throughout the solution. When this happens, the solute particles reach equilibrium. At equilibrium, the solute particles do not stop moving. But their concentration throughout the solution stays the same.\\nMembranes, or thin boundaries, can divide solutions into parts. A membrane is permeable to a solute when particles of the solute can pass through gaps in the membrane. In this case, solute particles can move freely across the membrane from one side to the other.\\nSo, for the solute particles to reach equilibrium, more particles will move across a permeable membrane from the side with a higher concentration of solute particles to the side with a lower concentration. At equilibrium, the concentration on both sides of the membrane is equal. Look at the diagram again. It shows you how the solution changed during the process of diffusion.\\nBefore the solute particles reached equilibrium, there were 4 solute particles on the left side of the membrane and 2 solute particles on the right side of the membrane.\\nWhen the solute particles reached equilibrium, there were 3 solute particles on each side of the membrane. There was 1 more solute particle on the right side of the membrane than before.\\nSo, for the solute particles to reach equilibrium, more solute particles must have moved across the membrane to the right than to the left. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13738\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Estelle investigate with an experiment?\\nContext: Estelle is sledding with her friends. She notices that some of them go faster down the sledding hill. She wonders what factors affect sledding speed. So, she decides to design an experiment. She has the following supplies available:\\naccess to a small snow-covered hill at the park\\na small plastic sled\\na large plastic sled\\na rubber inner tube sled\\na stopwatch\\nOptions: (A) Does a rubber inner tube sled go faster down a small hill or down a big hill? (B) Does a rubber inner tube sled or a plastic sled go faster down a hill? (C) Does a plastic sled or a wooden sled go down a hill faster?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13741\",\n    \"image\": \"13741\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of pink particles?\\nContext: The diagram below is a model of two solutions. Each pink ball represents one particle of solute.\\nOptions: (A) Solution A (B) Solution B (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the pink particles represent the solute. To figure out which solution has a higher concentration of pink particles, look at both the number of pink particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of pink particles per milliliter.\\nSolution B has more pink particles per milliliter. So, Solution B has a higher concentration of pink particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13744\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the cartilaginous fish traits listed above.\\nContext: Cartilaginous fish are a group of animals with similar traits. The following traits can be used to identify cartilaginous fish:\\nThey have fins, not limbs.\\nThey live underwater.\\nThey have a skeleton made of cartilage.\\nThey make eggs with no shells. Observe the animals and read the descriptions.\\nOptions: (A) Tiger sharks get their name from the dark stripes on their body. They can be over 15 feet long, and they have a skeleton made of cartilage, not bone. Tiger shark eggs do not have shells for protection. Instead, the eggs grow and hatch inside the mother shark. (B) Snowy owls have sharp, curved beaks and live in cold places. They have feathers on their feet to protect them from the cold. Mother owls keep their eggs warm by standing on their shells.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nCartilaginous fish have the following traits:\\nThey have fins, not limbs.\\nThey live underwater.\\nThey have a skeleton made of cartilage.\\nThey make eggs with no shells.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA snowy owl has the following traits:\\nIt has feathers.\\nIt has wings.\\nIt has a beak.\\nIt makes eggs with shells.\\nA snowy owl does not have all of the traits of a cartilaginous fish. A snowy owl is a bird.\\nA tiger shark has the following traits:\\nIt has fins, not limbs.\\nIt lives underwater.\\nIt has a skeleton made of cartilage.\\nIt makes eggs with no shells.\\nA tiger shark has the traits of a cartilaginous fish. A tiger shark is a cartilaginous fish. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13745\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Many thanks,\\nHector (B) many thanks,\\nHector\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13746\",\n    \"image\": \"13746\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Salt Lake City (B) Nampa (C) Juneau (D) Boise\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13752\",\n    \"image\": \"13752\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of North Carolina?\\nContext: N/A\\nOptions: (A) Charlotte (B) Trenton (C) Raleigh (D) Oklahoma City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Raleigh is the capital of North Carolina. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13754\",\n    \"image\": \"13754\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Africa (B) Asia (C) South America (D) Antarctica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is South America. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13756\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Assume all other forces on the cat are balanced. Which statement describes the forces on the cat?\\nContext: A calico cat is asleep in a box. Earth's gravity is pulling down on the cat with a force of 40N. The bottom of the box is pushing up on the cat with a force of 40N.\\nOptions: (A) The forces are unbalanced, so there is a net force on the cat. (B) The forces are balanced, so there is no net force on the cat.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Every force has a direction and a magnitude, or strength. If two forces act on an object in opposite directions, the forces are called opposing forces.\\nWhen opposing forces have the same magnitude, they are balanced. If all the forces on an object are balanced, there is no net force on the object.\\nWhen opposing forces have different magnitudes, the forces are unbalanced. If any forces on an object are unbalanced, there is a net force on the object. To determine if there is a net force on the cat, look at the forces:\\nEarth's gravity is pulling the cat down with a force of 40 N.\\nThe bottom of the box is pushing the cat up with a force of 40 N.\\nThe forces are in opposite directions, and the forces have the same magnitude: 40 N. This means that the forces are balanced, so there is no net force on the cat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13758\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nNot all monkeys live in the jungle.\\nContext: N/A\\nOptions: (A) exclamatory (B) declarative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence tells about something, and it ends with a period. It is a declarative sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13765\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nBefore Nicole had even met her future husband in person, she knew about his reputation as a Romeo.\\nContext: N/A\\nOptions: (A) literature (B) British history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Romeo is literature.\\nIn William Shakespeare's Romeo and Juliet, Romeo is known for the eloquent declaration of love with which he woos Juliet.\\nThe allusion Romeo means a man who is very romantic. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13767\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Jane roomed with Bella last year, but her messiness became a point of contention. (B) Jane roomed with Bella last year, but Bella's messiness became a point of contention.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun her could refer to Jane's or Bella's.\\nThe second answer choice shows a possible correction for the vague pronoun reference. Her has been replaced with Bella's.\\nJane roomed with Bella last year, but Bella's messiness became a point of contention. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13777\",\n    \"image\": \"13777\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following fossils is younger? Select the more likely answer.\\nContext: This diagram shows fossils in an undisturbed sedimentary rock sequence.\\nOptions: (A) fern (B) palm leaf\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fossil is the preserved evidence of an ancient organism. Some fossils are formed from body parts such as bones or shells. Other fossils, such as footprints or burrows, are formed from traces of an organism's activities.\\nFossils are typically found in sedimentary rocks. Sedimentary rocks usually form in layers. Over time, new layers are added on top of old layers in a series called a rock sequence. The layers in an undisturbed rock sequence are in the same order as when they formed. So, the deeper layers are older than the shallower layers.\\nThe relative ages of fossils can be determined from their positions in an undisturbed rock sequence. Older fossils are usually in deeper layers, and younger fossils are usually in shallower layers. Look again at the fossils in the rock sequence diagram.\\nCompare the positions of these fossils to determine which one is younger:\\nThe palm leaf fossil is in a shallower layer in the rock sequence than the fern fossil. So, the palm leaf fossil is most likely younger than the fern fossil. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13781\",\n    \"image\": \"13781\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Maine (B) Massachusetts (C) Washington (D) North Dakota\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. Massachusetts is farthest south. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13784\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) A solar eclipse occurs when the moon goes in front of the sun and leaves a shadow on the earth. (B) A solar eclipse occurs when the moon passes in front of the sun, casting a shadow on the earth.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses overly simple or imprecise language (goes, leaves).\\nThe second sentence uses more precise language, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13795\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nBen got off the mountain by the skin of his teeth.\\nContext: N/A\\nOptions: (A) the Bible (B) a movie\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion by the skin of his teeth is the Bible.\\nIn the Bible, Job complains to God about his hardships, saying that both strangers and those he loves have turned against him. He says, \\\"My bone cleaveth to my skin and to my flesh, and I am escaped with the skin of my teeth.\\\" Scholars have long debated the exact meaning of the phrase, but many claim that Job is saying that he narrowly escaped death.\\nThe allusion by the skin of his teeth means just barely. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13807\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nZeke has a scar on his right leg.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13811\",\n    \"image\": \"13811\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Obed River.\\nA boy floated down the Obed River on a raft. It had rained the day before, so the river was flowing fast.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nA boy floated down the Obed River on a raft. It had rained the day before, so the river was flowing fast.\\nThe underlined part of the passage tells you about the rainfall on a specific day in central Tennessee. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13814\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Emmett investigate with an experiment?\\nContext: Emmett is washing dishes after cooking his dinner. He notices that some of the dishes still feel oily after being washed. He wonders what factors affect how clean dishes are after they are washed. So, he decides to design an experiment. He has the following supplies available:\\na sponge\\nliquid dish detergent\\na bar of soap\\nhot water\\ncold water\\na pile of dirty dishes\\nOptions: (A) Are dishes washed in a dishwasher cleaner than dishes washed by hand? (B) Are dishes cleaner when washed with a soapy sponge or with a soapy rag? (C) Are dishes cleaner when washed with liquid dish detergent or with bar soap?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13815\",\n    \"image\": \"13815\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's common name?\\nContext: This organism is Cyprinus carpio. It is also called a common carp.\\nOptions: (A) Cyprinus carpio (B) common carp\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Cyprinus carpio is written in italics. The first word is capitalized, and the second word is not. So, it is the scientific name.\\nCyprinus carpio is the organism's scientific name. So, you know that common carp is the common name. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13818\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complex sentence?\\nContext: N/A\\nOptions: (A) Her dog happily fetched his tennis ball from the muddy puddle and eagerly waited for her to throw it again. (B) Kevin prepared a receipt for the customer while Zack packaged her items for her.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The first sentence is the complex sentence. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction while.\\nKevin prepared a receipt for the customer while Zack packaged her items for her. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13834\",\n    \"image\": \"13834\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is fruit punch a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a solid (B) a liquid (C) a gas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. Fruit punch is a liquid. A liquid takes the shape of any container it is in.\\nIf you pour fruit punch into a cup, the punch will take the shape of the cup. But the punch will still take up the same amount of space. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13837\",\n    \"image\": \"13837\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) Omaha (B) Chicago (C) St. Louis (D) Cleveland\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is St. Louis, Missouri. Cleveland, Chicago, and Omaha are marked with gray circles on the map below. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13845\",\n    \"image\": \"13845\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Lola's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nLola glued lids onto 16 cardboard shoe boxes of equal size. She painted eight of the boxes black and eight of the boxes white. Lola made a small hole in the side of each box and then stuck a thermometer partially into each hole so she could measure the temperatures inside the boxes. She placed the boxes in direct sunlight in her backyard. Two hours later, she measured the temperature inside each box. Lola compared the average temperature inside the black boxes to the average temperature inside the white boxes.\\nFigure: a shoebox painted black.\\nOptions: (A) Do the temperatures inside boxes depend on the sizes of the boxes? (B) Do the insides of white boxes get hotter than the insides of black boxes when the boxes are left in the sun?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13856\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the least thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a marble at a temperature of 60\\u00b0F (B) a marble at a temperature of 32\\u00b0F (C) a marble at a temperature of 14\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. All three marbles have the same mass but different temperatures. Since the 14\\u00b0F marble is the coldest, it has the least thermal energy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13858\",\n    \"image\": \"13858\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) soft (B) smooth (C) transparent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA soft object changes shape when pressed or squeezed. All four objects are soft.\\nYou can see clearly through a transparent object. The scarf, the stuffed dice, and the towel are not transparent.\\nA smooth object is not scratchy or rough. The stuffed dice and the socks are not smooth.\\nThe property that all four objects have in common is soft. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13868\",\n    \"image\": \"13868\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oklahoma?\\nContext: N/A\\nOptions: (A) Tulsa (B) Bridgeport (C) Columbia (D) Oklahoma City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oklahoma City is the capital of Oklahoma. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13869\",\n    \"image\": \"13869\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) New Zealand (B) Palau (C) the Federated States of Micronesia (D) Fiji\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Federated States of Micronesia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13872\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has more thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 5-kilogram brick at a temperature of 260\\u00b0F (B) a 5-kilogram brick at a temperature of 235\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. The two bricks have the same mass but different temperatures. Since the 260\\u00b0F brick is hotter than the 235\\u00b0F brick, it has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13878\",\n    \"image\": \"13878\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk.\\nMammals are warm-blooded. Warm-blooded animals can control their body temperature.\\nA rabbit is an example of a mammal.\\nOptions: (A) koala (B) mandarinfish (C) bald eagle (D) helmeted iguana\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A koala is a mammal. It has fur and feeds its young milk.\\nKoalas sleep for up to 20 hours a day!\\nA bald eagle is a bird. It has feathers, two wings, and a beak.\\nBald eagles live in trees near water. They build nests that can be up to 13 feet wide!\\nA mandarinfish is a fish. It lives underwater. It has fins, not limbs.\\nMandarinfish often live near coral reefs. They eat small worms, snails, and fish eggs.\\nA helmeted iguana is a reptile. It has scaly, waterproof skin.\\nIguanas are a type of lizard. Iguanas eat plants and fruit. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13879\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nimagine - irrigation\\nContext: N/A\\nOptions: (A) instead (B) idea\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince instead is between the guide words imagine - irrigation, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13886\",\n    \"image\": \"13886\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which rhetorical appeal is primarily used in this ad?\\nContext: N/A\\nOptions: (A) ethos (character) (B) logos (reason) (C) pathos (emotion)\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The purpose of an advertisement is to persuade people to do something. To accomplish this purpose, advertisements use three types of persuasive strategies, or appeals.\\nAppeals to ethos, or character, show the writer or speaker as trustworthy, authoritative, or sharing important values with the audience. An ad that appeals to ethos might do one of the following:\\nsay that a brand has been trusted for many years\\ninclude an endorsement from a respected organization, such as the American Dental Association\\nfeature a testimonial from a \\\"real person\\\" who shares the audience's values\\nuse an admired celebrity or athlete as a spokesperson\\nAppeals to logos, or reason, use logic and verifiable evidence. An ad that appeals to logos might do one of the following:\\nuse graphs or charts to display information\\ncite results of clinical trials or independently conducted studies\\nexplain the science behind a product or service\\nemphasize that the product is a financially wise choice\\nanticipate and refute potential counterclaims\\nAppeals to pathos, or emotion, use feelings rather than facts to persuade the audience. An ad that appeals to pathos might do one of the following:\\ntrigger a fear, such as the fear of embarrassment\\nappeal to a desire, such as the desire to appear attractive\\nlink the product to a positive feeling, such as adventure, love, or luxury The ad appeals to ethos, or character, by emphasizing the established reputation and credibility of the brand. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13887\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word buck on a dictionary page with the following guide words?\\nbeing - blind\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince buck is not between the guide words being - blind, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13896\",\n    \"image\": \"13896\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two friends bought phones that cost different amounts but had identical batteries. After using the phones for a while, both friends had to turn them off to let the batteries cool. This table shows how the temperature of each battery changed over 5minutes.\\nOptions: (A) the surroundings . . . each battery (B) each battery . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each battery decreased, which means that the thermal energy of each battery decreased. So, thermal energy was transferred from each battery to the surroundings. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13907\",\n    \"image\": \"13907\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nHydrogen peroxide is ().\\nContext: The model below represents a molecule of hydrogen peroxide. Hydrogen peroxide can be used to kill bacteria on medical tools.\\nOptions: (A) a compound (B) an elementary substance\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All substances are made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the chemical element boron is B, and the symbol for the chemical element chlorine is Cl.\\nScientists can use models to represent molecules. A ball-and-stick model of a molecule is shown below. This model represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent chemical bonds. Notice how each ball is labeled with a symbol for a chemical element. The ball represents one atom of that element. Count the number of chemical elements represented in the model. Then, decide if hydrogen peroxide is an elementary substance or a compound.\\nIn this model, each ball is labeled with H for hydrogen or O for oxygen. So, the model shows you that hydrogen peroxide is made of two chemical elements bonded together.\\nSubstances made of two or more chemical elements bonded together are compounds. So, hydrogen peroxide is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13911\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complete sentence?\\nContext: N/A\\nOptions: (A) The child chews her food carefully. (B) Ms. Kerr's many books about history and law.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. The child chews her food carefully is a complete sentence. The subject is the child, and the verb is chews. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13914\",\n    \"image\": \"13914\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) bouncy (B) yellow (C) sticky\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nYellow is a color.\\nThis color is yellow. The ice pop and the wet glue are not yellow.\\nA bouncy object will bounce back from the floor if you drop it. None of the objects are bouncy.\\nA sticky object can attach or stick to other things. All three objects are sticky.\\nThe property that all three objects have in common is sticky. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13932\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has less thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 250-gram cup of black tea at a temperature of 120\\u00b0F (B) a 250-gram cup of black tea at a temperature of 115\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. The two cups of black tea have the same mass but different temperatures. Since the 115\\u00b0F cup of black tea is colder than the 120\\u00b0F cup of black tea, it has less thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13945\",\n    \"image\": \"13945\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe volume of Mars is more than three times as large as Mercury's.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. To determine if this statement is true, calculate the value of three times the volume of Mercury.\\nThen compare the result to the volume of Mars. The volume of Mars is 160 billion km^3, which is less than 180 billion km^3. So, the volume of Mars is less than three times as large as Mercury's. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13947\",\n    \"image\": \"13947\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Illinois?\\nContext: N/A\\nOptions: (A) Springfield (B) Albany (C) Chicago (D) Madison\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Springfield is the capital of Illinois. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13949\",\n    \"image\": \"13949\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample A (C) sample B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample A has more mass than each particle in sample B. The particles in sample A also have a higher average speed than the particles in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13950\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a city bus?\\nContext: Select the best estimate.\\nOptions: (A) 10 pounds (B) 10 tons (C) 10 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a city bus is 10 tons.\\n10 ounces and 10 pounds are both too light. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13952\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that Edgar's mass did not change.\\nThe gravitational potential energy stored between Edgar and Earth () as he hiked toward the summit.\\nContext: Read the text about a person in motion.\\nEdgar hiked up a tall mountain. He followed a trail all the way to the summit.\\nOptions: (A) stayed the same (B) increased (C) decreased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between Edgar and the center of Earth changed.\\nThe summit of the mountain was higher than the point where Edgar started hiking. As he hiked toward the summit, the distance between Edgar and the center of Earth increased. So, the gravitational potential energy stored between Edgar and Earth increased as he hiked toward the summit. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13953\",\n    \"image\": \"13953\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a cow produced by this cross will have solid coloring?\\nContext: In a group of cows, some individuals have solid coloring and others have white spots. In this group, the gene for the coat pattern trait has two alleles. The allele for white spots (a) is recessive to the allele for solid coloring (A).\\nThis Punnett square shows a cross between two cows.\\nOptions: (A) 4/4 (B) 0/4 (C) 3/4 (D) 1/4 (E) 2/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13960\",\n    \"image\": \"13960\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the south pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13961\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nMrs. Shaffer manages the busy office.\\nContext: N/A\\nOptions: (A) present tense (B) future tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, manages. The verb ends in -s and tells you about something that is true or happening now. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13962\",\n    \"image\": \"13962\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Justine and Ben's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nJustine applied a thin layer of wax to the underside of her snowboard and rode the board straight down a hill. Then, she removed the wax and rode the snowboard straight down the hill again. She repeated the rides four more times, alternating whether she rode with a thin layer of wax on the board or not. Her friend Ben timed each ride. Justine and Ben calculated the average time it took to slide straight down the hill on the snowboard with wax compared to the average time on the snowboard without wax.\\nFigure: snowboarding down a hill.\\nOptions: (A) Does Justine's snowboard slide down a hill in less time when it has a layer of wax or when it does not have a layer of wax? (B) Does Justine's snowboard slide down a hill in less time when it has a thin layer of wax or a thick layer of wax?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13968\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a sentence fragment?\\nContext: N/A\\nOptions: (A) The ships are in the canal the workers load boxes onto them. (B) An island culture different from our own.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. An island culture different from our own is a sentence fragment. It is missing a verb. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13970\",\n    \"image\": \"13970\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Utah?\\nContext: N/A\\nOptions: (A) Cheyenne (B) Denver (C) Provo (D) Salt Lake City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salt Lake City is the capital of Utah. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13971\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word factoid in its traditional sense?\\nContext: N/A\\nOptions: (A) A reporter for the Somerville Daily Mail dug up an amusing factoid about Somerville's founder while researching for an article about the town's early years. (B) The Somerville Daily Mail was forced to issue a retraction after printing a factoid about Somerville's founder. It turned out that the reporter had written the article based on local legend rather than researching the actual history.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses factoid in its traditional sense: something made up presented as a true fact.\\nThe Somerville Daily Mail was forced to issue a retraction after printing a factoid about Somerville's founder. It turned out that the reporter had written the article based on local legend rather than researching the actual history.\\nThe second text uses factoid in its nontraditional sense: a trivial but true fact.\\nA reporter for the Somerville Daily Mail dug up an amusing factoid about Somerville's founder while researching for an article about the town's early years.\\nMost style guides recommend to use the traditional sense of the word factoid because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13972\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nThe player slammed the ball into the hoop.\\nContext: N/A\\nOptions: (A) future tense (B) past tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in past tense. You can tell because it uses a past-tense verb, slammed. The verb ends in -ed and tells you about something that has already happened. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13976\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a song?\\nContext: N/A\\nOptions: (A) Ten Little Monkeys Jumping on a Bed (B) \\\"Ten Little Monkeys Jumping on a Bed\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A song should be in quotation marks.\\nThe correct title is \\\"Ten Little Monkeys Jumping on a Bed.\\\" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13977\",\n    \"image\": \"13977\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Iowa?\\nContext: N/A\\nOptions: (A) Tallahassee (B) Cedar Rapids (C) Davenport (D) Des Moines\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Des Moines is the capital of Iowa. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13978\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Minnie's phenotype for the fur texture trait?\\nContext: In a group of Syrian hamsters, some individuals have straight fur and others have wavy fur. In this group, the gene for the fur texture trait has two alleles. The allele for wavy fur (f) is recessive to the allele for straight fur (F).\\nMinnie is a Syrian hamster from this group. Minnie has the heterozygous genotype Ff for the fur texture gene.\\nOptions: (A) wavy fur (B) straight fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine Minnie's phenotype for the fur texture trait. First, consider the alleles in Minnie's genotype for the fur texture gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for wavy fur (f) is recessive to the allele for straight fur (F). This means F is a dominant allele, and f is a recessive allele.\\nMinnie's genotype of Ff has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Minnie's phenotype for the fur texture trait must be straight fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13985\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has less thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 350-gram mug of cocoa at a temperature of 30\\u00b0C (B) a 350-gram mug of cocoa at a temperature of 65\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. The two mugs of cocoa have the same mass but different temperatures. Since the 30\\u00b0C mug of cocoa is colder than the 65\\u00b0C mug of cocoa, it has less thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13988\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) see you soon,\\nRyan (B) See you soon,\\nRyan\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13993\",\n    \"image\": \"13993\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which colony was Middle Colonies?\\nContext: The map below shows the Thirteen Colonies in 1750.\\nOptions: (A) Connecticut (B) Georgia (C) New Jersey\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The four Middle Colonies are dark blue on the map:\\nDuring colonial times, Delaware was usually called the Three Lower Counties on the Delaware, or the Lower Counties for short.\\nNew York claimed part of the land that would later become the state of Vermont. But New Hampshire, a New England colony, also claimed this area. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13995\",\n    \"image\": \"13995\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement best describes the average monthly precipitation in Atlanta?\\nContext: Use the graph to answer the question below.\\nOptions: (A) February is wetter than March. (B) October has the highest average precipitation. (C) Precipitation does not change much from month to month in Atlanta.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Atlanta, look at the graph.\\nChoice \\\"Feb\\\" is incorrect.\\nChoice \\\"Mar\\\" is incorrect.\\nChoice \\\"Oct\\\" is incorrect.\\nChoice \\\"Precipitation does not change much from month to month in Atlanta.\\\" is incorrect.\\nThe average monthly precipitation changes only slightly throughout the year.\\nChoice \\\"February is wetter than March.\\\" is incorrect.\\nWetter months have a higher average precipitation than drier months. February has a slightly lower average monthly precipitation than March. So, February is not wetter than March.\\nChoice \\\"October has the highest average precipitation.\\\" is incorrect.\\nMost other months have a slightly higher average precipitation than October. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13998\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nCamille gazed at the ancient pug that seemed to sleep all day and noted, \\\"You're an energetic puppy!\\\"\\nContext: N/A\\nOptions: (A) idiom (B) verbal irony\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAn energetic puppy shows verbal irony because an old, exhausted dog is far from an energetic puppy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"13999\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word wrath on a dictionary page with the following guide words?\\nweary - wiggle\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince wrath is not between the guide words weary - wiggle, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14005\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) The archaeological site of Troy is one of thirteen UNESCO World Heritage sites in Turkey. (B) The archaeological site of Troy is Turkey's best UNESCO World Heritage site to visit.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Statements of fact make claims that are based on research, observation, or experimentation. Facts can be proved with evidence.\\nNapoleon Bonaparte was shorter than King Louis XVI.\\nThis statement is a fact. The statement can be verified by researching and comparing the height of each man.\\nStatements of opinion make claims that are based on personal judgments or perspectives. Opinions can be supported by evidence, but they cannot be definitively proved.\\nNapoleon Bonaparte was a better leader than King Louis XVI.\\nThis statement is an opinion. People can have different ideas about what makes someone a \\\"better\\\" leader, so the statement cannot be proved. The first sentence states a fact. It can be verified by researching UNESCO World Heritage sites in Turkey.\\nThe archaeological site of Troy is one of thirteen UNESCO World Heritage sites in Turkey.\\nThe second sentence states an opinion. Best indicates a personal judgment.\\nThe archaeological site of Troy is Turkey's best UNESCO World Heritage site to visit. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14029\",\n    \"image\": \"14029\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of West Virginia?\\nContext: N/A\\nOptions: (A) Charleston (B) Huntington (C) Baton Rouge (D) Richmond\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Charleston is the capital of West Virginia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14039\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe natural flights of the human mind are not from pleasure to pleasure, but from hope to hope.\\n\\u2014Samuel Johnson, The Rambler\\nContext: N/A\\nOptions: (A) understatement (B) antithesis\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses antithesis, the contrasting of opposing ideas within a parallel grammatical structure.\\nJohnson contrasts one kind of thought process (from pleasure to pleasure) with another (from hope to hope). The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14040\",\n    \"image\": \"14040\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Vancouver Island.\\nVancouver Island is in on the west coast of Canada. Much of the island received heavy rain on November 28 last year.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nVancouver Island is in on the west coast of Canada. Much of the island received heavy rain on November 28 last year.\\nThe underlined part of the passage tells you about the amount of rain that fell in Vancouver Island on November 28. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14041\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complex sentence?\\nContext: N/A\\nOptions: (A) Percy's ears were ringing after he stood near the stage for the entire concert. (B) Babe Ruth hit 714 home runs during his baseball career but struck out 1,330 times.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the complex sentence. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction after.\\nPercy's ears were ringing after he stood near the stage for the entire concert. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14048\",\n    \"image\": \"14048\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 1. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is greater in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14054\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nRusted old cars () every corner of the junkyard.\\nContext: N/A\\nOptions: (A) lounged in (B) could be found in\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the phrase lounged in. It describes the cars as if they were people relaxing. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14060\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nJack has naturally straight hair.\\nContext: Hint: Some humans are born with naturally straight hair. Others are born with naturally curly hair.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Human hair can be naturally straight or naturally curly. Straight and curly are examples of hair texture.\\nSome people use tools to change how their hair looks. But this doesn't affect the natural texture of their hair. So, having naturally straight hair is an inherited trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14064\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Beth decides to go on the drop tower. Which result would be a cost?\\nContext: Beth is deciding which ride to go on at the fair. She can go on either the screaming swing or the drop tower. She wants to have as much fun as possible at the fair.\\nOptions: (A) Beth will save some ride tickets. She needs fewer tickets to go on the drop tower than on the screaming swing. (B) Beth will give up the chance to go on the screaming swing. She would have had more fun on that ride.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Beth wants or needs:\\nBeth will give up the chance to go on the screaming swing. She would have had more fun on that ride. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14072\",\n    \"image\": \"14072\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nHalf of the planets are made mainly of gas or ice.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that of the eight planets, two are made mainly of gas and two are made mainly of ice. So, four of the eight, or half, of the planets are made mainly of gas or ice. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14073\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) black orb weaver spider (B) yellow jacket (C) harvest mouse (D) dung beetle\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A yellow jacket is an insect. Like other insects, a yellow jacket is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA harvest mouse is a mammal. Like other mammals, a harvest mouse is a vertebrate. It has a backbone.\\nLike other spiders, a black orb weaver spider is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA dung beetle is an insect. Like other insects, a dung beetle is an invertebrate. It does not have a backbone. It has an exoskeleton. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14086\",\n    \"image\": \"14086\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14087\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Nolan acquired this trait?\\nContext: Read the description of a trait.\\nNolan speaks two languages.\\nOptions: (A) Nolan's mother speaks one language. (B) Nolan learned to speak two languages in school.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14094\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nIce melts in the bright sun.\\nContext: N/A\\nOptions: (A) past tense (B) future tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, melts. The verb ends in -s and tells you about something that is true or happening now. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14096\",\n    \"image\": \"14096\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Rob and Carrie trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nRob and Carrie open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Rob wanted broccoli in his lunch and Carrie was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Rob can trade his tomatoes for Carrie's broccoli. (B) Carrie can trade her broccoli for Rob's oranges. (C) Carrie can trade her almonds for Rob's tomatoes. (D) Rob can trade his tomatoes for Carrie's sandwich.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rob wanted broccoli in his lunch and Carrie was hoping for tomatoes. Look at the labeled part of the images.\\nRob has tomatoes. Carrie has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14098\",\n    \"image\": \"14098\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the chemical formula for this molecule.\\nContext: N/A\\nOptions: (A) PCl5N (B) PCl5 (C) P2Cl6 (D) Cl6\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made up of atoms. Atoms can link together to form molecules. The links between atoms in a molecule are called chemical bonds. Different molecules are made up of different chemical elements, or types of atoms, bonded together.\\nScientists use both ball-and-stick models and chemical formulas to represent molecules.\\nA ball-and-stick model of a molecule is shown below.\\nThe balls represent atoms. The sticks represent the chemical bonds between the atoms.\\nNotice how each ball is labeled with a symbol made of one or more letters. The symbol is an abbreviation for a chemical element. The ball represents one atom of that element.\\nEvery chemical element is represented by its own symbol. For some elements, that symbol is one capital letter. For other elements, it is one capital letter followed by one lowercase letter. For example, the symbol for the element boron is B and the symbol for the element chlorine is Cl.\\nThe molecule shown above has one boron atom and three chlorine atoms. A chemical bond links each chlorine atom to the boron atom.\\nThe chemical formula for a molecule contains the symbol for each chemical element in the molecule. Many chemical formulas use subscripts. A subscript is text that is smaller and placed lower than the normal line of text.\\nIn chemical formulas, the subscripts are numbers. The subscript is always written after the symbol for an element. The subscript tells you how many atoms that symbol represents. If the symbol represents just one atom, then no subscript is included.\\nThe symbols in the chemical formula for a molecule match the symbols in the ball-and-stick model for that molecule. The ball-and-stick model shown before and the chemical formula shown above represent the same substance. P is the symbol for phosphorus. Cl is the symbol for chlorine. This ball-and-stick model shows a molecule with one phosphorus atom and five chlorine atoms.\\nThe chemical formula will contain the symbols P and Cl. There is one phosphorus atom, so P will not have a subscript. There are five chlorine atoms, so Cl will have a subscript of 5.\\nThe correct formula is PCl5.\\nThe diagram below shows how each part of the chemical formula matches with each part of the model above. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14103\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does the sentence use a simile or a metaphor?\\nOn that winter morning, Luna's hands were as cold as ice.\\nContext: N/A\\nOptions: (A) metaphor (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. On that winter morning, Luna's hands were as cold as ice.\\nThe words hands and ice are compared using the word as. So, the sentence uses a simile. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14106\",\n    \"image\": \"14106\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which air temperature was measured within the outlined area shown?\\nContext: The map below shows air temperatures in the lower atmosphere on October 1, 2015. The outlined area shows an air mass that influenced weather in North America on that day.\\nLook at the map. Then, answer the question below.\\nData source: United States National Oceanic and Atmospheric Administration/Earth System Research Laboratory, Physical Sciences Division\\nOptions: (A) 30\\u00b0C (B) 14\\u00b0C (C) 10\\u00b0C\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"To study air masses, scientists can use maps that show conditions within Earth's atmosphere. For example, the map below uses color to show air temperatures.\\nThe map's legend tells you the temperature that each color represents. Colors on the left in the legend represent lower temperatures than colors on the right. For example, areas on the map that are the darkest shade of blue have a temperature from -25\\u00b0C up to -20\\u00b0C. Areas that are the next darkest shade of blue have a temperature from -20\\u00b0C up to -15\\u00b0C. Look at the colors shown within the outlined area. Then, use the legend to determine which air temperatures those colors represent.\\nThe legend tells you that this air mass contained air with temperatures between 25\\u00b0C and 35\\u00b0C.\\n30\\u00b0C is within this range.\\n10\\u00b0C and 14\\u00b0C are outside of this range. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14108\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word identify on a dictionary page with the following guide words?\\nimage - indicate\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince identify is not between the guide words image - indicate, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14112\",\n    \"image\": \"14112\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alaska?\\nContext: N/A\\nOptions: (A) Juneau (B) Dover (C) Salt Lake City (D) Atlanta\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Juneau is the capital of Alaska. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14117\",\n    \"image\": \"14117\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of South Dakota?\\nContext: N/A\\nOptions: (A) Rapid City (B) Sioux Falls (C) Pierre (D) Montgomery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Pierre is the capital of South Dakota. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14124\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nSusan is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years.\\nContext: N/A\\nOptions: (A) complex (B) compound (C) simple (D) compound-complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound-complex. It is made up of two independent clauses and a dependent clause. The dependent clause begins with the relative pronoun which.\\nSusan is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14125\",\n    \"image\": \"14125\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Fairbanks (B) Santa Fe (C) Boise (D) Nampa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14132\",\n    \"image\": \"14132\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the air inside a bubble a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a liquid (B) a gas (C) a solid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. The air inside a bubble is a gas. A gas expands to fill a space.\\nThe air inside a bubble fills all the space in the bubble. If the bubble pops, the air will expand to fill a much larger space. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14136\",\n    \"image\": \"14136\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the reptile below.\\nContext: Reptiles have scaly, waterproof skin. Most reptiles live on land. An American alligator is an example of a reptile.\\nOptions: (A) California toad (B) Hermann's tortoise\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A California toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole.\\nA Hermann's tortoise is a reptile. It has scaly, waterproof skin.\\nA tortoise's shell protects it from predators. When a tortoise feels threatened, it can pull its head and legs inside its shell. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14139\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\npen - popular\\nContext: N/A\\nOptions: (A) physical (B) presence\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince physical is between the guide words pen - popular, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14145\",\n    \"image\": \"14145\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs. A piranha is an example of a fish.\\nOptions: (A) manta ray (B) giraffe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A manta ray is a fish. It lives underwater. It has fins, not limbs.\\nRays have a different shape than many other fish. Rays are large and flat. They have wide, triangle-shaped fins that help them swim long distances.\\nA giraffe is a mammal. It has hair and feeds its young milk.\\nGiraffes eat mostly leaves that are too high up for other animals to reach. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14146\",\n    \"image\": \"14146\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) shiny (B) fuzzy (C) transparent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. All three objects are shiny.\\nYou can see clearly through a transparent object. None of the objects are transparent.\\nA fuzzy object is covered in soft hair. None of the objects are fuzzy.\\nThe property that all three objects have in common is shiny. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14156\",\n    \"image\": \"14156\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Winston's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nWinston set up five pairs of platform bird feeders around his yard. He filled one feeder in each pair with sunflower seeds and the other feeder with flax seeds. For one week, Winston watched cardinals visiting the feeders during the same hour each morning. During his observations, Winston counted the number of visits by cardinals to feeders with sunflower seeds and the number of visits by cardinals to feeders with flax seeds.\\nFigure: a cardinal visiting a platform feeder with sunflower seeds.\\nOptions: (A) Do cardinals eat more seeds per visit from feeders containing sunflower seeds compared to feeders containing flax seeds? (B) Do cardinals visit feeders containing sunflower seeds more often than feeders containing flax seeds?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14162\",\n    \"image\": \"14162\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\n50% of the planets are made mainly of gas.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that two out of the eight planets are made mainly of gas. So, one-fourth, or 25%, of the planets are made mainly of gas. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14165\",\n    \"image\": \"14165\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with black eyes to offspring with red eyes? Choose the most likely ratio.\\nContext: In a group of koi fish, some individuals have red eyes and others have black eyes. In this group, the gene for the eye color trait has two alleles. The allele for red eyes (E) is dominant over the allele for black eyes (e).\\nThis Punnett square shows a cross between two koi fish.\\nOptions: (A) 2:2 (B) 0:4 (C) 1:3 (D) 4:0 (E) 3:1\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with black eyes or red eyes, consider whether each phenotype is the dominant or recessive allele's version of the eye color trait. The question tells you that the E allele, which is for red eyes, is dominant over the e allele, which is for black eyes.\\nBlack eyes is the recessive allele's version of the eye color trait. A koi fish with the recessive version of the eye color trait must have only recessive alleles for the eye color gene. So, offspring with black eyes must have the genotype ee.\\nThere are 0 boxes in the Punnett square with the genotype ee.\\nRed eyes is the dominant allele's version of the eye color trait. A koi fish with the dominant version of the eye color trait must have at least one dominant allele for the eye color gene. So, offspring with red eyes must have the genotype EE or Ee.\\nAll 4 boxes in the Punnett square have the genotype EE or Ee.\\nSo, the expected ratio of offspring with black eyes to offspring with red eyes is 0:4. This means that, based on the Punnett square, this cross will never produce offspring with black eyes. Instead, this cross is expected to always produce offspring with red eyes. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14167\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Use the evidence in the text to select the photosynthetic organism.\\nContext: N/A\\nOptions: (A) Tillandisa tectorum air plants make their own food from carbon dioxide and water. These plants get the water they need from the air instead of from the soil. (B) Komondor dogs have white fur that forms thick strings. Modern Komondor dogs eat mostly dog food. This food is made from other organisms, including plants and animals.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms that carry out photosynthesis are called photosynthetic organisms. During photosynthesis, these organisms use light energy to turn water and carbon dioxide into sugars and oxygen.\\nPhotosynthetic organisms also often have the following characteristics:\\nThey are producers, which are organisms that make their own food inside their cells. Producers don't usually eat other organisms.\\nTheir cells contain chloroplasts. Chloroplasts are cell parts where photosynthesis occurs.\\nTheir chloroplasts often contain chlorophyll, which is green. Chlorophyll captures energy from sunlight to power photosynthesis.\\nThey use the sugars they make during photosynthesis as food. This food provides the organisms with the energy they need to live. This organism is photosynthetic:\\nThe text tells you that Tillandisa tectorum air plants make their own food from carbon dioxide and water. This is evidence that the Tillandisa tectorum air plant is a photosynthetic organism.\\nThis organism is not photosynthetic:\\nThe text does not provide evidence that the Komondor dog is photosynthetic. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14169\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nFor me, Yosemite in the summer is Shangri-La.\\nContext: N/A\\nOptions: (A) the Bible (B) literature\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Shangri-La is literature.\\nIn his novel Lost Horizon, James Hilton describes the fictional paradise of Shangri-La, which is located in the mountains of Tibet.\\nThe allusion Shangri-La means an ideal place. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14172\",\n    \"image\": \"14172\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Annie's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nAnnie planted 20 radish plants in a greenhouse, putting each plant in its own pot. She placed ten of the pots under bright light and the other ten pots under dim light. Annie watered all the plants twice a day. After two months, she pulled the radish plants from the ground, threw away the leafy green tops, and measured the sizes of the radishes. She compared the sizes of the radishes grown under bright light to the sizes of the radishes grown under dim light.\\nFigure: a radish plant in soil.\\nOptions: (A) Do radish plants grown under bright light have more leaves than radish plants grown under dim light? (B) Do radishes grown under bright light get bigger than radishes grown under dim light?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14175\",\n    \"image\": \"14175\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is smaller when there is a greater distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a greater distance between magnets, the magnitude of the magnetic force between them is smaller.\\nThere is a greater distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14187\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nDwayne is the best cook I know!\\nContext: N/A\\nOptions: (A) declarative (B) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence tells about something, but it shows strong feeling and ends with an exclamation point. It is an exclamatory sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14191\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Isabelle decides to join the Theater Club. Which result would be a cost?\\nContext: Isabelle is deciding whether to join the Photography Club or the Theater Club at school. She wants the club she joins to be fun. But she doesn't want it to take up too much time.\\nOptions: (A) Isabelle will give up the chance to be in the Photography Club. She would have had more fun in the Photography Club than in the Theater Club. (B) Isabelle will save some time. She would have spent more time in the Photography Club than in the Theater Club.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Isabelle wants or needs:\\nIsabelle will give up the chance to be in the Photography Club. She would have had more fun in the Photography Club than in the Theater Club. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14192\",\n    \"image\": \"14192\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Fiji (B) Solomon Islands (C) Vanuatu (D) Tuvalu\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Fiji. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14203\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Jayce investigate with an experiment?\\nContext: Jayce enjoys feeding the squirrels in his backyard. He notices that they spend a lot of time collecting seeds and nuts. He wonders about what factors affect which foods squirrels choose to collect. So, he decides to design an experiment. He has the following supplies available:\\ntwo identical squirrel feeders\\na bag of sunflower seeds\\na bag of walnuts\\na tree to hang the feeders from\\nOptions: (A) Do the squirrels eat walnuts from large feeders more often than from small feeders? (B) Which type of tree do the squirrels feed from most often? (C) Do the squirrels select sunflower seeds or walnuts more often?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14204\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word is not like the others?\\nContext: N/A\\nOptions: (A) saw (B) shovel (C) window (D) hammer\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some words are alike. They go together in a group.\\nRed, blue, and green go together. They are colors.\\nMom, dad, grandma, and grandpa go together. They are people in a family. Saw, shovel, and hammer go together. They are tools. Window is not a tool, so it is not like the other words. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14205\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) \\\"Shooting stars\\\" are really bits of rock and dust burning up in Earth's atmosphere. (B) Camping in the woods is the best way to see shooting stars.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true.\\nThe month of July has more days than the month of June.\\nThis is a fact. It can be proved by looking at a calendar and counting the number of days in each month.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nJuly is a better month than June for camping.\\nThis is an opinion. People may have different opinions about which month is \\\"better\\\" for camping. The second sentence states a fact.\\n\\\"Shooting stars\\\" are really bits of rock and dust burning up in Earth's atmosphere.\\nIt can be proved by checking a website about shooting stars.\\nThe first sentence states an opinion.\\nCamping in the woods is the best way to see shooting stars.\\nBest shows what a person believes, thinks, or feels. Another person might have a different opinion about where the best place to see shooting stars is. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14206\",\n    \"image\": \"14206\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Hilo (B) Laramie (C) Carson City (D) Cheyenne\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14210\",\n    \"image\": \"14210\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) Pittsburgh (B) Baltimore (C) New York City (D) Boston\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is New York City, New York. Pittsburgh, Boston, and Baltimore are marked with gray circles on the map below. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14212\",\n    \"image\": \"14212\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Sally and Chloe trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nSally and Chloe open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Sally wanted broccoli in her lunch and Chloe was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Sally can trade her tomatoes for Chloe's sandwich. (B) Chloe can trade her almonds for Sally's tomatoes. (C) Chloe can trade her broccoli for Sally's oranges. (D) Sally can trade her tomatoes for Chloe's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sally wanted broccoli in her lunch and Chloe was hoping for tomatoes. Look at the labeled part of the images.\\nSally has tomatoes. Chloe has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14219\",\n    \"image\": \"14219\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nevada?\\nContext: N/A\\nOptions: (A) Carson City (B) Reno (C) Salem (D) Las Vegas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Carson City is the capital of Nevada. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14224\",\n    \"image\": \"14224\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Istanbul.\\nIstanbul is on the coast of Turkey, where nighttime temperatures average between 60\\u00b0F and 70\\u00b0F each year during June, July, and August.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nIstanbul is on the coast of Turkey, where nighttime temperatures average between 60\\u00b0F and 70\\u00b0F each year during June, July, and August.\\nThis passage tells you about the usual temperature pattern in Istanbul. This passage does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14233\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) dear Ms. McConnell, (B) Dear Ms. McConnell,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Ms. McConnell is capitalized because it is a proper noun. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14245\",\n    \"image\": \"14245\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the marbled salamander.\\nContext: This organism is a marbled salamander. Its scientific name is Ambystoma opacum.\\nOptions: (A) Lissotriton helveticus (B) Taricha torosa (C) Ambystoma opacum\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A marbled salamander's scientific name is Ambystoma opacum.\\nTaricha torosa does not have the same scientific name as a marbled salamander. So, Ambystoma opacum and Taricha torosa are not in the same species.\\nAmbystoma opacum has the same scientific name as a marbled salamander. So, these organisms are in the same species.\\nLissotriton helveticus does not have the same scientific name as a marbled salamander. So, Ambystoma opacum and Lissotriton helveticus are not in the same species. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14246\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does the sentence use a simile or a metaphor?\\nThe neighbor's loud music was a blaring fire alarm.\\nContext: N/A\\nOptions: (A) simile (B) metaphor\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. The neighbor's loud music was a blaring fire alarm.\\nThe words music and fire alarm are compared without the word like or as. So, the sentence uses a metaphor. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14254\",\n    \"image\": \"14254\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the amphibian below.\\nContext: Amphibians have moist skin and begin their lives in water.\\nAmphibians are cold-blooded. The body temperature of cold-blooded animals depends on their environment.\\nA gray tree frog is an example of an amphibian.\\nOptions: (A) human (B) red-spotted newt (C) great white shark (D) gray wolf\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A human is a mammal. It has hair and feeds its young milk.\\nHumans are a type of animal called a primate. Monkeys and apes are also primates.\\nA gray wolf is a mammal. It has fur and feeds its young milk.\\nWolves often live in family groups. A wolf mother, father, and their children travel together.\\nA great white shark is a fish. It lives underwater. It has fins, not limbs.\\nGreat white sharks can live for up to 70 years.\\nA red-spotted newt is an amphibian. It has moist skin and begins its life in water.\\nSome newts live in water. Other newts live on land but lay their eggs in water. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14255\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is walking a dog a good or a service?\\nContext: N/A\\nOptions: (A) a service (B) a good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Everything you can buy is either a good or a service.\\nA good is something you can touch or hold in your hands. For example, a hammer is a good.\\nA service is a job you pay someone else to do. For example, cooking food in a restaurant is a service. To decide whether walking a dog is a good or a service, ask these questions:\\nIs walking a dog something you can touch? No.\\nIs walking a dog a job you might pay someone else to do? Yes.\\nSo, walking a dog is a service. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14268\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Race car driver Mario Andretti won the Daytona 500, Indy 500, and Formula One titles during his career. (B) Mario Andretti, the only person named Driver of the Year in three different decades, is a great role model for young people interested in auto racing.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Statements of fact make claims that are based on research, observation, or experimentation. Facts can be proved with evidence.\\nNapoleon Bonaparte was shorter than King Louis XVI.\\nThis statement is a fact. The statement can be verified by researching and comparing the height of each man.\\nStatements of opinion make claims that are based on personal judgments or perspectives. Opinions can be supported by evidence, but they cannot be definitively proved.\\nNapoleon Bonaparte was a better leader than King Louis XVI.\\nThis statement is an opinion. People can have different ideas about what makes someone a \\\"better\\\" leader, so the statement cannot be proved. The first sentence states a fact. It can be verified by looking up the racing titles Mario Andretti won during his career.\\nRace car driver Mario Andretti won the Daytona 500, Indy 500, and Formula One titles during his career.\\nThe second sentence states an opinion. Great indicates a personal judgment.\\nMario Andretti, the only person named Driver of the Year in three different decades, is a great role model for young people interested in auto racing. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14270\",\n    \"image\": \"14270\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the north pole of the other magnet. Poles that are different attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14272\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"South American farmers have just harvested their largest cocoa crops in years. Cocoa is a major ingredient in chocolate. What will probably happen to the overall supply of chocolate bars?\\nContext: N/A\\nOptions: (A) The supply will probably go up. (B) The supply will probably go down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. Cocoa is an important resource for making chocolate. If more cocoa has been harvested, cocoa will be easier to get. So, the supply of chocolate bars will probably go up. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14275\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which phrase has a more positive connotation?\\nContext: N/A\\nOptions: (A) a chuckle (B) a snicker\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Connotation is the feeling or idea that goes along with a word or phrase. Some words are close in meaning but have different connotations.\\nFor example, think about the words eager and impatient. They both mean wanting something to happen, but they have different connotations.\\nEager has a positive connotation. It is a nice word. An eager person is happy and excited.\\nImpatient has a negative connotation. It is not a nice word. An impatient person is often pushy and demanding. A chuckle has a more positive connotation. Chuckle and snicker both denote short, quiet laughs. However, a chuckle is friendly, while a snicker is mean-spirited and disrespectful. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14279\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a tennis racket?\\nContext: Select the best estimate.\\nOptions: (A) 26 yards (B) 26 inches (C) 26 feet (D) 26 miles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a tennis racket is 26 inches.\\n26 feet, 26 yards, and 26 miles are all too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14299\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nMason can drive a car.\\nContext: Hint: Driving well takes practice.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Humans are not born knowing how to drive a car. Instead, many people learn how to drive when they are older. So, driving is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14304\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence uses a metaphor?\\nContext: N/A\\nOptions: (A) The bare tree's branches were sharp needles. (B) The bare tree's branches were as sharp as needles.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. This sentence uses a metaphor:\\nThe bare tree's branches were sharp needles.\\nThe words branches and needles are compared without the word like or as.\\nThis sentence uses a simile:\\nThe bare tree's branches were as sharp as needles.\\nThe words branches and needles are compared using the word as. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14308\",\n    \"image\": \"14308\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the reptile below.\\nContext: Reptiles have scaly, waterproof skin. Most reptiles live on land. A helmeted iguana is an example of a reptile.\\nOptions: (A) koala (B) box turtle\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A koala is a mammal. It has fur and feeds its young milk.\\nA box turtle is a reptile. It has scaly, waterproof skin. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14318\",\n    \"image\": \"14318\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Hampshire?\\nContext: N/A\\nOptions: (A) Manchester (B) Nampa (C) Concord (D) Grand Rapids\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Concord is the capital of New Hampshire. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14324\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbreaking a ceramic plate\\nmixing chocolate syrup into milk\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are caused by heating. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBreaking a ceramic plate is a physical change. The plate gets broken into pieces. But each piece is still made of the same type of matter.\\nMixing chocolate syrup into milk is a physical change. The chocolate syrup and milk make a mixture. Making a mixture does not form a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14327\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this plant's phenotype for the fruit texture trait?\\nContext: In a group of cucumber plants, some individuals have bumpy fruit and others have smooth fruit. In this group, the gene for the fruit texture trait has two alleles. The allele for smooth fruit (f) is recessive to the allele for bumpy fruit (F).\\nA certain cucumber plant from this group has the homozygous genotype FF for the fruit texture gene.\\nOptions: (A) bumpy fruit (B) smooth fruit\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. The cucumber plant's genotype for the fruit texture gene is FF. The cucumber plant's genotype of FF has only F allelles. The F allele is for bumpy fruit. So, the cucumber plant's phenotype for the fruit texture trait must be bumpy fruit.\\nTo check this answer, consider whether the cucumber plant's alleles are dominant or recessive. The allele for smooth fruit (f) is recessive to the allele for bumpy fruit (F). This means F is a dominant allele, and f is a recessive allele.\\nThe cucumber plant's genotype of FF has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, the cucumber plant's phenotype for the fruit texture trait must be bumpy fruit. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14332\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nAnn plays golf.\\nContext: Hint: Playing golf takes practice.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to play golf. Instead, some people learn how to play golf. Playing the sport takes practice. So, playing golf is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14341\",\n    \"image\": \"14341\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) blue (B) shiny\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA shiny object reflects a lot of light. The trombone is shiny.\\nBlue is a color.\\nThis color is blue. The trombone is not blue. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14342\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the invertebrate.\\nContext: Hint: Insects, spiders, and worms are invertebrates.\\nOptions: (A) atlas moth (B) dyeing dart frog (C) piranha (D) macaw\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A macaw is a bird. Like other birds, a macaw is a vertebrate. It has a backbone.\\nA dyeing dart frog is an amphibian. Like other amphibians, a dyeing dart frog is a vertebrate. It has a backbone.\\nA piranha is a fish. Like other fish, a piranha is a vertebrate. It has a backbone.\\nAn atlas moth is an insect. Like other insects, an atlas moth is an invertebrate. It does not have a backbone. It has an exoskeleton. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14348\",\n    \"image\": \"14348\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is stronger in Pair 1. (C) The magnetic force is stronger in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 1 are closer together than the magnets in Pair 2. So, the magnetic force is stronger in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14349\",\n    \"image\": \"14349\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of California?\\nContext: N/A\\nOptions: (A) Birmingham (B) Charleston (C) Sacramento (D) Richmond\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sacramento is the capital of California. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14355\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nPlatinum is ().\\nContext: Platinum is a precious metal used to make jewelry. The chemical formula for platinum is Pt.\\nOptions: (A) an elementary substance (B) a compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. You can tell whether platinum is an elementary substance or a compound by counting the number of symbols in its chemical formula. A symbol contains either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for platinum is Pt. This formula contains one symbol: Pt. So, the formula tells you that platinum is made of one chemical element.\\nSubstances made of only one chemical element are elementary substances. So, platinum is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14356\",\n    \"image\": \"14356\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Nicaragua.\\nWinds are called offshore when they blow from land to water. The winds in southern Nicaragua blow offshore over 300 days per year. Most people prefer to surf on days when the winds are offshore.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nWinds are called offshore when they blow from land to water. The winds in southern Nicaragua blow offshore over 300 days per year. Most people prefer to surf on days when the winds are offshore.\\nThe underlined part of the passage tells you about the usual wind patterns in Nicaragua. This passage does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14368\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nThe Alexanders argue we should eat our pizza with a fork and knife because it's less messy, but what do they know? Have you seen their house? It's a disaster!\\nContext: N/A\\nOptions: (A) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences (B) ad hominem: an attack against the person making the argument, rather than the argument itself (C) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that the Alexanders' opinion on eating pizza is invalid because their house is messy. This is a personal attack that isn't relevant to whether the argument is valid. This illustrates a type of logical fallacy known as ad hominem. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14369\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a tennis racket?\\nContext: Select the better estimate.\\nOptions: (A) 21 inches (B) 21 feet\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 8 long. You might be thinking, 8 what? Is the pencil 8 inches long? 8 feet? 8 miles?\\nThe number 8 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are inches. So, the length of the pencil is 8 inches.\\nThere are 12 inches in 1 foot. So, 1 inch is much shorter than 1 foot.\\nThere are 3 feet in 1 yard. So, 1 foot is shorter than 1 yard. The better estimate for the length of a tennis racket is 21 inches.\\n21 feet is too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14373\",\n    \"image\": \"14373\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maine?\\nContext: N/A\\nOptions: (A) Augusta (B) Phoenix (C) Portland (D) Madison\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Augusta is the capital of Maine. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14375\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the euphemism in this text suggest?\\nMr. Randolph is enjoying his golden years in a luxurious beachside community just down the street from his grandchildren.\\nContext: N/A\\nOptions: (A) Mr. Randolph is old. (B) Mr. Randolph is rich.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe euphemism golden years indicates that Mr. Randolph is old. Golden years is a nicer way of referring to old age. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14376\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to sing the ABC song?\\nContext: Select the better estimate.\\nOptions: (A) 28 hours (B) 28 seconds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to sing the ABC song is 28 seconds.\\n28 hours is too slow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14386\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nDiana has naturally pale skin.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Humans do not choose their skin color. Babies get their skin color from their parents. So, Diana's skin color is an inherited trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14387\",\n    \"image\": \"14387\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Iowa?\\nContext: N/A\\nOptions: (A) Cedar Rapids (B) Davenport (C) Des Moines (D) Frankfort\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Des Moines is the capital of Iowa. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14399\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Edmond investigate with an experiment?\\nContext: After Edmond cleans up a spill, he hangs a wet cloth towel in the laundry room. Two hours later, he notices that the towel has partially dried. He wonders what factors affect how cloth dries. So, he decides to design an experiment. He has the following supplies available:\\ntwo identical white cloth towels\\nwater\\na clothesline in the laundry room\\na clothesline in the backyard\\nOptions: (A) Do cloth towels dry faster if they are hung in the laundry room or in the backyard? (B) Does a small cloth towel or a large cloth towel dry faster when hung in the backyard? (C) When hung in the laundry room, do black cloth towels or white cloth towels dry more quickly?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14403\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Mr. Russo wanted the new employees to fill out their intake forms, but he couldn't find the forms. (B) Mr. Russo wanted the new employees to fill out their intake forms, but he couldn't find them.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun them could refer to the new employees or their intake forms.\\nThe second answer choice shows a possible correction for the vague pronoun reference. Them has been replaced with the forms.\\nMr. Russo wanted the new employees to fill out their intake forms, but he couldn't find the forms. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14405\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this plant's phenotype for the growth pattern trait?\\nContext: This passage describes the growth pattern trait in rose plants:\\n\\nIn a group of rose plants, some individuals have climbing growth and others have bush growth. In this group, the gene for the growth pattern trait has two alleles. The allele for bush growth (g) is recessive to the allele for climbing growth (G).\\nA certain rose plant from this group has the homozygous genotype gg for the growth pattern gene.\\nOptions: (A) bush growth (B) climbing growth\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. The rose plant's genotype for the growth pattern gene is gg. The rose plant's genotype of gg has only g alleles. The g allele is for bush growth. So, the rose plant's phenotype for the growth pattern trait must be bush growth.\\nTo check this answer, consider whether the rose plant's alleles are dominant or recessive. The allele for bush growth (g) is recessive to the allele for climbing growth (G). This means G is a dominant allele, and g is a recessive allele.\\nThe rose plant's genotype of gg has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, the rose plant's phenotype for the growth pattern trait must be bush growth. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14406\",\n    \"image\": \"14406\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Indiana?\\nContext: N/A\\nOptions: (A) Pierre (B) Springfield (C) Fort Wayne (D) Indianapolis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Indianapolis is the capital of Indiana. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14407\",\n    \"image\": \"14407\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs.\\nFish are cold-blooded. The body temperature of cold-blooded animals depends on their environment.\\nA salmon is an example of a fish.\\nOptions: (A) mandarinfish (B) green iguana (C) red-headed poison frog (D) water buffalo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A green iguana is a reptile. It has scaly, waterproof skin.\\nIguanas are a type of lizard. Iguanas eat plants and fruit.\\nA water buffalo is a mammal. It has hair and feeds its young milk.\\nWater buffaloes live in Asia. Some people raise water buffaloes for their milk.\\nA red-headed poison frog is an amphibian. It has moist skin and begins its life in water.\\nPoison dart frogs come in many bright colors. Their bright color warns other animals that these frogs are poisonous.\\nA mandarinfish is a fish. It lives underwater. It has fins, not limbs.\\nMandarinfish often live near coral reefs. They eat small worms, snails, and fish eggs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14417\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the living thing.\\nContext: N/A\\nOptions: (A) cave (B) roller skate (C) kelp (D) the Great Sphinx of Giza\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All living things are made up of cells. Plants, animals, and some fungi have many cells. Other living things are made up of just one cell.\\nAll living things need food and water. Water helps living things break down food and remove waste. Food gives living things energy. They use energy from food to grow and change.\\nAll living things sense changes in their environment. Living things might sense changes by seeing, smelling, hearing, or feeling. Living things can respond to the changes they sense. A cave is not a living thing.\\nA cave may have animals or plants living inside. But a cave does not have all the traits of a living thing. A cave does not need food or water.\\nThe Great Sphinx of Giza is not a living thing.\\nThe Great Sphinx of Giza is a statue of a mythical sphinx, a creature with a lion's body and a human head. The Great Sphinx does not have all of the traits of a living thing. It does not grow or respond to the world around it. It does not need food or water.\\nKelp is a living thing.\\nKelp grows and responds to its environment. It needs food and water. It is made up of many cells.\\nKelp uses energy from sunlight to make food. Kelp plants have special air pockets that bring their leaves close to the surface.\\nA roller skate is not a living thing.\\nRoller skates do not have all of the traits of living things. They do not grow or respond to their environment. They do not need food or water. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14420\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nIn the morning, Grandpa will make eggs.\\nContext: N/A\\nOptions: (A) past tense (B) present tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, make. The verb tells you about something that is going to happen. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14421\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nThat was the best performance I've ever seen!\\nContext: N/A\\nOptions: (A) declarative (B) interrogative (C) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells about something, but it shows strong feeling and ends with an exclamation point. It is an exclamatory sentence. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14424\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which announcement is more formal?\\nContext: N/A\\nOptions: (A) The Greenpoint Law Firm is pleased to announce . . . (B) The Greenpoint Law Firm is so happy to tell you . . .\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The second announcement is more formal. It uses more elevated language (pleased to announce). The other announcement sounds more conversational (so happy). The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14426\",\n    \"image\": \"14426\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the bobcat.\\nContext: This organism is a bobcat. Its scientific name is Lynx rufus.\\nOptions: (A) Lynx canadensis (B) Python molurus (C) Macropus rufus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A bobcat's scientific name is Lynx rufus. The first word of its scientific name is Lynx.\\nLynx canadensis is in the genus Lynx. The first word of its scientific name is Lynx. So, Lynx canadensis and Lynx rufus are in the same genus.\\nMacropus rufus and Lynx rufus are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Macropus rufus and Lynx rufus have the same species name within their genus, rufus. But the first words of their scientific names are different. Macropus rufus is in the genus Macropus, and Lynx rufus is in the genus Lynx.\\nPython molurus is in the genus Python. The first word of its scientific name is Python. So, Python molurus and Lynx rufus are not in the same genus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14428\",\n    \"image\": \"14428\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which i in row B?\\nContext: N/A\\nOptions: (A) the fire department (B) the police department (C) the library (D) the diner\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A grid is made up of lines of squares. They are organized in rows and columns. A grid can help you use a map.\\nA row is a line of squares that goes from side to side. Rows are marked with letters.\\nA column is a line of squares that goes up and down. Columns are marked with numbers. The library is in row B. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14438\",\n    \"image\": \"14438\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Everglades National Park ecosystem?\\nContext: Figure: Everglades National Park.\\nEverglades National Park is a wetland ecosystem in southern Florida.\\nOptions: (A) It has land that is covered in water during most of the year. It also has other water ecosystems nearby. (B) It has soil that is poor in nutrients. It also has other water ecosystems nearby.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A wetland is a type of ecosystem. Wetlands have the following features: land that is covered with water during most of the year, soil that is rich in nutrients, and other water ecosystems nearby. So, Everglades National Park has land that is covered with water during most of the year. It also has other water ecosystems nearby. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14440\",\n    \"image\": \"14440\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 1. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is stronger in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14442\",\n    \"image\": \"14442\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What type of rock is shale?\\nContext: Shale is a type of rock. It forms when layers of mud are pressed together to form rock. Shale is often found near underground deposits of fossil fuels such as oil.\\nOptions: (A) sedimentary (B) igneous\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Igneous rock is formed when melted rock cools and hardens into solid rock. This type of change can occur at Earth's surface or below it.\\nSedimentary rock is formed when layers of sediment are pressed together to make rock. This type of change occurs below Earth's surface.\\nMetamorphic rock is formed when a rock is changed by heating and squeezing. This type of change often occurs deep below Earth's surface. Over time, the old rock becomes a new rock with different properties. Shale is a sedimentary rock. Like other sedimentary rocks, it forms from layers of sediment.\\nMud is a type of sediment. It is found in places like lakes and oceans. Sediments like mud usually build up in layers. Over time, the top layers press down on the bottom layers. Sedimentary rock can form when the bottom layers are pressed together to form rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14444\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the euphemism in this text suggest?\\nSam is big-boned, so despite being in middle school, he often shops in the men's department.\\nContext: N/A\\nOptions: (A) Sam is overweight. (B) Sam has larger bones than most people.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe euphemism big-boned suggests that Sam is overweight. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14456\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the elementary substance.\\nContext: N/A\\nOptions: (A) bromomethane (CH3Br) (B) hydrogen peroxide (H2O2) (C) rhenium (Re)\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. Look at the chemical formula for each substance, and count the number of symbols in the formula. Then, decide if the substance is an elementary substance. The chemical formula for bromomethane contains three symbols: C for carbon, H for hydrogen, and Br for bromine. So, bromomethane is made of three chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, bromomethane is a compound, not an elementary substance. The chemical formula for rhenium contains one symbol: Re. So, rhenium is made of one chemical element. Substances that are made of one chemical element are elementary substances. So, rhenium is an elementary substance. The chemical formula for hydrogen peroxide contains two symbols: H for hydrogen and O for oxygen. So, hydrogen peroxide is made of two chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, hydrogen peroxide is a compound, not an elementary substance. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14462\",\n    \"image\": \"14462\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the text to describe the diagram.\\nSolute particles moved in both directions across the permeable membrane. But more solute particles moved across the membrane (). When there was an equal concentration on both sides, the particles reached equilibrium.\\nContext: The diagram below shows a solution with one solute. Each solute particle is represented by a purple ball. The solution fills a closed container that is divided in half by a membrane. The membrane, represented by a dotted line, is permeable to the solute particles.\\nThe diagram shows how the solution can change over time during the process of diffusion.\\nOptions: (A) to the left than to the right (B) to the right than to the left\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a solution, solute particles move and spread throughout the solvent. The diagram below shows how a solution can change over time. Solute particles move from the area where they are at a higher concentration to the area where they are at a lower concentration. This movement happens through the process of diffusion.\\nAs a result of diffusion, the concentration of solute particles becomes equal throughout the solution. When this happens, the solute particles reach equilibrium. At equilibrium, the solute particles do not stop moving. But their concentration throughout the solution stays the same.\\nMembranes, or thin boundaries, can divide solutions into parts. A membrane is permeable to a solute when particles of the solute can pass through gaps in the membrane. In this case, solute particles can move freely across the membrane from one side to the other.\\nSo, for the solute particles to reach equilibrium, more particles will move across a permeable membrane from the side with a higher concentration of solute particles to the side with a lower concentration. At equilibrium, the concentration on both sides of the membrane is equal. Look at the diagram again. It shows you how the solution changed during the process of diffusion.\\nBefore the solute particles reached equilibrium, there were 4 solute particles on the left side of the membrane and 6 solute particles on the right side of the membrane.\\nWhen the solute particles reached equilibrium, there were 5 solute particles on each side of the membrane. There was 1 more solute particle on the left side of the membrane than before.\\nSo, for the solute particles to reach equilibrium, more solute particles must have moved across the membrane to the left than to the right. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14467\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) your niece,\\nWhitney (B) Your niece,\\nWhitney\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14482\",\n    \"image\": \"14482\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Des Moines.\\nDes Moines has cold winters and warm summers.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nDes Moines has cold winters and warm summers.\\nThis passage tells you about the usual temperature pattern in Des Moines. This passage does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14484\",\n    \"image\": \"14484\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Illinois?\\nContext: N/A\\nOptions: (A) Chicago (B) Columbus (C) Springfield (D) Jefferson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Springfield is the capital of Illinois. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14489\",\n    \"image\": \"14489\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's common name?\\nContext: This organism is a brown-throated sloth. It is also called Bradypus variegatus.\\nOptions: (A) Bradypus variegatus (B) brown-throated sloth\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Bradypus variegatus is written in italics. The first word is capitalized, and the second word is not. So, it is the scientific name.\\nBradypus variegatus is the organism's scientific name. So, you know that brown-throated sloth is the common name. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14492\",\n    \"image\": \"14492\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Isaac's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nIsaac was a landscape architect who was hired to design a new city park. The city council wanted the park to have space for outdoor concerts and to have at least 20% of the park shaded by trees. Isaac thought the concert area should be at least 150 meters from the road so traffic noise didn't interrupt the music. He developed three possible designs for the park with the concert area in a different location in each design. Then, he tested each design by measuring the distance between the road and the concert area.\\nFigure: studying an architect's design.\\nOptions: (A) which design would have the greatest distance between the concert area and the road (B) if at least 20% of the park would be shaded by trees in each design (C) which design would have the least traffic noise in the concert area\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14498\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nI pulled Billy off the project because his work was sloppy. While we're at it, let's pull Maggie off the project, too. I haven't reviewed her work, but she's friends with Billy, so we cannot rely on the quality of her work either.\\nContext: N/A\\nOptions: (A) false dichotomy: an argument that presents only two choices when more options exist (B) appeal to nature: the assumption that natural things are always good (C) guilt by association: a negative association intended to discredit someone or something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Maggie's work is low quality because her friend's work is low quality. However, the work of Maggie's friend does not necessarily reflect the quality of Maggie's work. This illustrates a type of logical fallacy known as guilt by association. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14502\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nDeath, be not proud, though some have called thee\\nMighty and dreadful, for thou are not so.\\n\\u2014John Donne, Holy Sonnet X\\nContext: N/A\\nOptions: (A) assonance (B) apostrophe\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses apostrophe, a direct address to an absent person or a nonhuman entity.\\nDeath is a direct address to death, a nonhuman entity. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14504\",\n    \"image\": \"14504\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) sour (B) stretchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA stretchy object gets longer when you pull on it. Both objects are stretchy.\\nA lemon has a sour taste. The balloon is not sour.\\nThe property that both objects have in common is stretchy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14505\",\n    \"image\": \"14505\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is this huntsman spider's scientific name?\\nContext: This species of huntsman spider was discovered in Malaysia in 2008. It was named in honor of the musician David Bowie.\\nOptions: (A) Heteropoda davidbowie (B) Heteropoda altmannae\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When a scientist identifies a new organism, he or she chooses its scientific name.\\nSometimes, an organism is named after the place where it was first found. Other times, an organism is named after the scientist who first identified it. Or, the scientific name might describe the organism's physical traits.\\nMany of the words that make up scientific names are based on words from old languages, like Latin and classical Greek. Sometimes, English words are changed to make them sound more like Latin or Greek. The new words are then used in an organism's scientific name. This organism's scientific name refers to David Bowie.\\nThe word davidbowie refers to David Bowie. So, this huntsman spider's scientific name is Heteropoda davidbowie. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14506\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the allusion in this text suggest?\\nCody seems to have the Midas touch. Without any special experience or training, he launched a thriving business and then established a well-respected charity.\\nContext: N/A\\nOptions: (A) Cody has a hands-on approach to his work. (B) Cody is successful at all that he does.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked. The text uses an allusion, a brief reference to someone or something well known.\\nThe allusion the Midas touch suggests that Cody is successful at all that he does. In Greek mythology, King Midas has the power to turn anything he touches into gold, easily creating value from nothing. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14507\",\n    \"image\": \"14507\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with a yellow ground spot to offspring with a white ground spot? Choose the most likely ratio.\\nContext: This passage describes the ground spot color trait in watermelon plants:\\nWatermelon plants grow with their fruit resting on the ground. Over time, the bottom of each fruit develops a white or yellow spot called a ground spot. In some types of watermelon plants, the color of the ground spot is an inherited trait.\\nIn a group of watermelon plants, some individuals have a yellow ground spot and others have a white ground spot. In this group, the gene for the ground spot color trait has two alleles. The allele for a white ground spot (g) is recessive to the allele for a yellow ground spot (G).\\nThis Punnett square shows a cross between two watermelon plants.\\nOptions: (A) 4:0 (B) 3:1 (C) 1:3 (D) 0:4 (E) 2:2\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with a yellow ground spot or a white ground spot, consider whether each phenotype is the dominant or recessive allele's version of the ground spot color trait. The question tells you that the g allele, which is for a white ground spot, is recessive to the G allele, which is for a yellow ground spot.\\nA yellow ground spot is the dominant allele's version of the ground spot color trait. A watermelon plant with the dominant version of the ground spot color trait must have at least one dominant allele for the ground spot color gene. So, offspring with a yellow ground spot must have the genotype GG or Gg.\\nAll 4 boxes in the Punnett square have the genotype GG or Gg.\\nA white ground spot is the recessive allele's version of the ground spot color trait. A watermelon plant with the recessive version of the ground spot color trait must have only recessive alleles for the ground spot color gene. So, offspring with a white ground spot must have the genotype gg.\\nThere are 0 boxes in the Punnett square with the genotype gg.\\nSo, the expected ratio of offspring with a yellow ground spot to offspring with a white ground spot is 4:0. This means that, based on the Punnett square, this cross will always produce offspring with a yellow ground spot. This cross is expected to never produce offspring with a white ground spot. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14512\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a spider's leg?\\nContext: Select the best estimate.\\nOptions: (A) 20 meters (B) 20 kilometers (C) 20 millimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a spider's leg is 20 millimeters.\\n20 meters and 20 kilometers are both too long. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14525\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nveil - vowel\\nContext: N/A\\nOptions: (A) valve (B) virus\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince virus is between the guide words veil - vowel, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14533\",\n    \"image\": \"14533\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait did Megaloceros have? Select the trait you can observe on the fossil.\\nContext: This picture shows a fossil of an ancient animal called Megaloceros. An adult Megaloceros could grow over seven feet tall.\\nOptions: (A) four legs (B) a tail with long hair (C) a mane on the back of its neck\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The way an organism looks or acts is called a trait. Scientists use fossils to learn more about the traits of ancient organisms.\\nFossils can preserve the remains of body parts and activities. A fossil of a body part, such as a tail or a wing, can tell you what an organism looked like. A fossil of an organism's activities, such as a burrow or a footprint, can tell you about the organism's behavior.\\nHere are three examples of fossils and the traits that you can observe from them:\\nThis is a fossil of an animal. This fossil tells you that the animal had a spiral-shaped shell.\\nThis is a fossil of a plant. This fossil tells you that the plant had small leaves arranged in a branched pattern.\\nThis is a fossil of an animal's footprint. This fossil tells you that the animal could walk on land.\\nAn organism's fossil may not show all of the organism's traits. This is because most body parts are destroyed during fossil formation. When an organism's body turns into a fossil, only a few body parts are usually preserved. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14537\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nIan can play the trumpet.\\nContext: Hint: Playing an instrument well takes practice.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to play the trumpet. Instead, some people learn how to play. So, playing the trumpet is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14539\",\n    \"image\": \"14539\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this egg carton made of?\\nContext: N/A\\nOptions: (A) ceramic (B) cardboard\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials. Look at the picture of the egg carton.\\nThe egg carton is made of cardboard.\\nNot all egg cartons are made of cardboard. Some egg cartons are made of plastic, or even styrofoam. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14541\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Chip's genotype for the fur texture gene?\\nContext: In a group of Syrian hamsters, some individuals have straight fur and others have wavy fur. In this group, the gene for the fur texture trait has two alleles. The allele F is for straight fur, and the allele f is for wavy fur.\\nChip, a Syrian hamster from this group, has straight fur. Chip has one allele for straight fur and one allele for wavy fur.\\nOptions: (A) Ff (B) straight fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Chip has one allele for straight fur (F) and one allele for wavy fur (f). So, Chip's genotype for the fur texture gene is Ff. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14542\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two motorboats. Which motorboat was moving at a higher speed?\\nContext: N/A\\nOptions: (A) a motorboat that moved 245miles in 10hours (B) a motorboat that moved 145miles in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving faster will go a farther distance in that time. It is moving at a higher speed. Look at the distance each motorboat moved and the time it took to move that distance.\\nOne motorboat moved 245 miles in 10 hours.\\nThe other motorboat moved 145 miles in 10 hours.\\nNotice that each motorboat spent the same amount of time moving. The motorboat that moved 245 miles moved a farther distance in that time. So, that motorboat must have moved at a higher speed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14545\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of an apple?\\nContext: Select the best estimate.\\nOptions: (A) 3 tons (B) 3 ounces (C) 3 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of an apple is 3 ounces.\\n3 pounds and 3 tons are both too heavy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14546\",\n    \"image\": \"14546\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged in the snow?\\nContext: Ptarmigans live in cold, snowy places. The is adapted to be camouflaged in the snow.\\nFigure: ptarmigan.\\nOptions: (A) echidna (B) Arctic fox\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the ptarmigan.\\nDuring the winter, the ptarmigan has white feathers covering its body. It is adapted to be camouflaged in the snow. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nDuring the winter, the Arctic fox has white fur covering its body. It is adapted to be camouflaged in the snow.\\nThe echidna has a yellow and brown body. It is not adapted to be camouflaged in the snow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14547\",\n    \"image\": \"14547\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New Jersey (B) Delaware (C) Maine (D) Pennsylvania\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New Jersey. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14553\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) Mr. Duncan dedicated his book about the Alaskan wilderness to his wife and his three sons. (B) Destiny might go to the science museum with Bob, or she might go alone.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The first sentence is the compound sentence. It is made up of two independent clauses joined by the coordinating conjunction or.\\nDestiny might go to the science museum with Bob, or she might go alone. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14555\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear Mrs. burnett, (B) Dear Mrs. Burnett,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Mrs. Burnett is capitalized because it is a proper noun. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14556\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nKinsley has no school spirit\\u2014she never comes to any of our football games.\\nContext: N/A\\nOptions: (A) ad hominem: a personal attack against one's opponent (B) false dichotomy: an argument that presents only two choices when more options exist\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Kinsley doesn't have school spirit, because she doesn't go to football games. However, there may be a number of reasons why Kinsley doesn't go to football games. This illustrates a type of logical fallacy known as a false dichotomy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14563\",\n    \"image\": \"14563\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) rough (B) smooth (C) soft\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA smooth object is not scratchy or rough. All three objects are smooth.\\nA rough object feels scratchy when you touch it. None of the objects are rough.\\nA soft object changes shape when pressed or squeezed. None of the objects are soft.\\nThe property that all three objects have in common is smooth. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14572\",\n    \"image\": \"14572\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes and shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 1. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is greater in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14578\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two gray whales. Which gray whale was moving at a higher speed?\\nContext: N/A\\nOptions: (A) a gray whale that moved 35kilometers in 5hours (B) a gray whale that moved 40kilometers in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving faster will go a farther distance in that time. It is moving at a higher speed. Look at the distance each gray whale moved and the time it took to move that distance.\\nOne gray whale moved 40 kilometers in 5 hours.\\nThe other gray whale moved 35 kilometers in 5 hours.\\nNotice that each gray whale spent the same amount of time moving. The gray whale that moved 40 kilometers moved a farther distance in that time. So, that gray whale must have moved at a higher speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14580\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a basketball court?\\nContext: Select the best estimate.\\nOptions: (A) 29 feet (B) 29 yards (C) 29 inches (D) 29 miles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a basketball court is 29 yards.\\n29 inches and 29 feet are too short. 29 miles is too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14588\",\n    \"image\": \"14588\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the great blue heron.\\nContext: This organism is a great blue heron. Its scientific name is Ardea herodias.\\nOptions: (A) Strix varia (B) Pelecanus crispus (C) Ardea purpurea\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A great blue heron's scientific name is Ardea herodias. The first word of its scientific name is Ardea.\\nStrix varia is in the genus Strix. The first word of its scientific name is Strix. So, Strix varia and Ardea herodias are not in the same genus.\\nPelecanus crispus is in the genus Pelecanus. The first word of its scientific name is Pelecanus. So, Pelecanus crispus and Ardea herodias are not in the same genus.\\nArdea purpurea is in the genus Ardea. The first word of its scientific name is Ardea. So, Ardea purpurea and Ardea herodias are in the same genus. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14593\",\n    \"image\": \"14593\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Rosa and Isabella trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nRosa and Isabella open their lunch boxes in the school cafeteria. Neither Rosa nor Isabella got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nRosa's lunch Isabella's lunch\\nOptions: (A) Isabella can trade her broccoli for Rosa's oranges. (B) Rosa can trade her tomatoes for Isabella's broccoli. (C) Rosa can trade her tomatoes for Isabella's carrots. (D) Isabella can trade her almonds for Rosa's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nRosa wants broccoli. Isabella wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14598\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nPhilip is good at baking.\\nContext: Hint: Baking well takes practice.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to bake. Instead, many people learn how to bake. So, baking is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14602\",\n    \"image\": \"14602\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Hawaii?\\nContext: N/A\\nOptions: (A) Sacramento (B) Carson City (C) Honolulu (D) Hilo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Honolulu is the capital of Hawaii. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14605\",\n    \"image\": \"14605\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is one reason people can't go to Mars?\\nContext: Read the passage about the Mars robot Curiosity.\\nPeople can't make it to Mars yet. It takes too long to get there, and it's not an easy place to live. So, scientists sent a robot to look around Mars for them. The robot is named Curiosity. One of its jobs is to find out if anything can live on Mars.\\nCuriosity has many cameras. It takes pictures as it moves around Mars. Curiosity sends the pictures back to the scientists on Earth. Scientists hope that the pictures will make it easier for us to visit Mars someday.\\nOptions: (A) It's too far away. (B) It's too hot there.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the passage. It tells you why people can't go to Mars.\\nPeople can't make it to Mars yet. It takes too long to get there, and it's not an easy place to live. So, scientists sent a robot to look around Mars for them. The robot is named Curiosity. One of its jobs is to find out if anything can live on Mars. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14607\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nSodium bromide is ().\\nContext: Sodium bromide can be used to kill bacteria in swimming pools. The chemical formula for sodium bromide is NaBr.\\nOptions: (A) a compound (B) an elementary substance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nThe atomic symbol for each chemical element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one atomic symbol.\\nThe atomic symbol in a chemical formula may be followed by a small number written lower than the symbol. This number is called a subscript. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript shows how many atoms are in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen, O2, has a subscript of 2. This subscript shows that the atomic symbol O represents two atoms. The elementary substance O2 and the chemical element represented by the atomic symbol O are both named oxygen. So, the formula tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple atomic symbols.\\nThe chemical elements in a compound are bonded together in a fixed ratio. This ratio is shown in a compound's chemical formula.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. So, the ratio of beryllium atoms to fluorine atoms is 1 to 2. This ratio is shown in the chemical formula for beryllium fluoride, BeF2. There is no subscript following the atomic symbol Be because that symbol represents one atom. The subscript 2 follows the atomic symbol F to show that the symbol represents two atoms. You can tell whether sodium bromide is an elementary substance or a compound by counting the number of atomic symbols in its chemical formula. An atomic symbol consists of either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for sodium bromide, NaBr, contains two atomic symbols: Na for sodium and Br for bromine. So, the formula tells you that sodium bromide is composed of two chemical elements bonded together.\\nSince sodium bromide is composed of multiple chemical elements bonded together, sodium bromide is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14610\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a play?\\nContext: N/A\\nOptions: (A) \\\"Hex Marks the Spot\\\" (B) ***Hex Marks the Spot***\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A play should be in italics.\\nThe correct title is **Hex Marks the Spot**. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14620\",\n    \"image\": \"14620\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Bill's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nBill was . At the plant, an expensive filter was used to remove disease-causing bacteria from the water. But over time, the filter would become clogged with bacteria. If the filter became clogged, the water would not move through quickly enough. Bill had to decide when the filter was too clogged and needed to be replaced. So, during his inspection, Bill checked the filter by measuring how quickly water moved through it.\\nFigure: an engineer at a water treatment plant.\\nOptions: (A) whether an inexpensive filter would become clogged more often (B) whether the filter was clogged (C) the amount of bacteria in the water before it was filtered\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14626\",\n    \"image\": \"14626\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two identical aquariums were next to an open window. One aquarium had a plastic cover on it, and the other was uncovered. This table shows how the temperature of each aquarium changed over 1.5hours.\\nOptions: (A) the surroundings . . . each aquarium (B) each aquarium . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each aquarium decreased, which means that the thermal energy of each aquarium decreased. So, thermal energy was transferred from each aquarium to the surroundings. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14627\",\n    \"image\": \"14627\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material are these steps made of?\\nContext: N/A\\nOptions: (A) concrete (B) silk\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials. Look at the picture of the steps.\\nThe steps are made of concrete.\\nConcrete is a mixture of sand, rocks, and cement. Concrete is heavy and strong. Bridges and large buildings are often made out of concrete. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14637\",\n    \"image\": \"14637\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Boise (B) Baton Rouge (C) Atlanta (D) Nampa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14639\",\n    \"image\": \"14639\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the Japanese honeysuckle.\\nContext: This organism is a Japanese honeysuckle. Its scientific name is Lonicera japonica.\\nOptions: (A) Hyacinthus orientalis (B) Lonicera maackii (C) Ulex europaeus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A Japanese honeysuckle's scientific name is Lonicera japonica. The first word of its scientific name is Lonicera.\\nHyacinthus orientalis is in the genus Hyacinthus. The first word of its scientific name is Hyacinthus. So, Hyacinthus orientalis and Lonicera japonica are not in the same genus.\\nLonicera maackii is in the genus Lonicera. The first word of its scientific name is Lonicera. So, Lonicera maackii and Lonicera japonica are in the same genus.\\nUlex europaeus is in the genus Ulex. The first word of its scientific name is Ulex. So, Ulex europaeus and Lonicera japonica are not in the same genus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14644\",\n    \"image\": \"14644\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of force from the people moves the car forward?\\nContext: A car is stuck in the snow. Together, three people apply a force to the back of the car to move it forward.\\nOptions: (A) push (B) pull\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to a second object.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. Together, people apply a force to the back of the car to move it forward. The direction of this force is away from the people. This force is a push. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14648\",\n    \"image\": \"14648\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted to walk on snow and ice?\\nContext: Many s live in areas with cold, snowy winters. The 's feet are adapted for walking on snow and ice.\\nFigure: brown bear.\\nOptions: (A) Eurasian lynx (B) Suriname toad\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the brown bear.\\nThe brown bear has furry feet with large pads. Its feet are adapted to walk on snow and ice. The fur can help keep the brown bear's feet warm. The large pads help spread its weight over a larger area. This allows it to walk on ice without slipping and to walk on snow without sinking in too deep.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe Eurasian lynx has furry feet with large pads. Its feet are adapted to walk on snow and ice.\\nThe Suriname toad has webbed feet. Its feet are not adapted to walk on snow and ice. The Suriname toad uses its feet to swim in lakes and rivers. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14651\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which organ stores solid waste before it is released from the body?\\nContext: N/A\\nOptions: (A) trachea (B) large intestine (C) esophagus (D) muscles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14664\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nWhere Rick lives, winter is the rainiest season of the year.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nWhere Rick lives, winter is the rainiest season of the year.\\nThis passage tells you about the usual precipitation where Rick lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14666\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a hot day in the desert?\\nContext: Select the better estimate.\\nOptions: (A) 48\\u00b0C (B) 48\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a hot day in the desert is 48\\u00b0C.\\n48\\u00b0F is too cold. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14675\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence uses a metaphor?\\nContext: N/A\\nOptions: (A) The car engine was a lion's roar. (B) The car engine sounded like a lion's roar.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. This sentence uses a metaphor:\\nThe car engine was a lion's roar.\\nThe words engine and roar are compared without the word like or as.\\nThis sentence uses a simile:\\nThe car engine sounded like a lion's roar.\\nThe words engine and roar are compared using the word like. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14680\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a mineral.\\nContext: N/A\\nOptions: (A) Native copper is not made by living things. It is a pure substance. (B) Baryte is a pure substance. It is not made by living things. (C) Chocolate is not a pure substance. It is a solid.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Compare the properties of each substance to the properties of minerals. Select the substance whose properties do not match those of minerals.\\nNative copper is a mineral.\\nBaryte is a mineral.\\nChocolate is not a pure substance. But all minerals are pure substances.\\nSo, chocolate is not a mineral. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14692\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Jane smiled and said hello when she ran into Zoe at the post office. (B) When Jane ran into Zoe at the post office, she smiled and said hello.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun she could refer to Jane or Zoe.\\nWhen Jane ran into Zoe at the post office, she smiled and said hello.\\nThe second answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nJane smiled and said hello when she ran into Zoe at the post office. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14694\",\n    \"image\": \"14694\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a rat produced by this cross will have a dwarf body?\\nContext: In a group of rats, some individuals have a normal-sized body and others have a dwarf body. In this group, the gene for the body size trait has two alleles. The allele for a dwarf body (b) is recessive to the allele for a normal-sized body (B).\\nThis Punnett square shows a cross between two rats.\\nOptions: (A) 3/4 (B) 0/4 (C) 2/4 (D) 1/4 (E) 4/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14699\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) Mom kisses Leslie's cheek Leslie smiles at Mom. (B) Our cabin has bunk beds for the kids.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Mom kisses Leslie's cheek Leslie smiles at Mom is a run-on sentence. It has two sentences that are joined without end punctuation: Mom kisses Leslie's cheek and Leslie smiles at Mom. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14705\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nMyra thinks Mr. Harper is a Luddite because he doesn't own a cell phone.\\nContext: N/A\\nOptions: (A) British history (B) Roman history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Luddite is British history.\\nIn the early nineteenth century, factories were replacing the jobs of craftsmen. Some of these craftsmen banded together to destroy the new machinery; those who did so were called Luddites.\\nThe allusion Luddite means a person opposed to new technology. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14706\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) When Roxanne researched Dachshunds, it said that they can be short-haired, wire-haired, or long-haired. (B) When Roxanne researched Dachshunds, the breed standard said that they can be short-haired, wire-haired, or long-haired.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it is used without its antecedent.\\nThe first answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the breed standard.\\nWhen Roxanne researched Dachshunds, the breed standard said that they can be short-haired, wire-haired, or long-haired. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14707\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) I pretend to be a knight, and Mary pretends to be an astronaut. (B) Mary will change the batteries in the radio tomorrow.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction and.\\nI pretend to be a knight, and Mary pretends to be an astronaut. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14708\",\n    \"image\": \"14708\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bird's beak is also adapted to catch insects?\\nContext: Common swifts eat insects and other small invertebrates. The shape of the 's beak is adapted to catch insects.\\nFigure: common swift.\\nOptions: (A) Australian pelican (B) European robin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of a bird's beak is one example of an adaptation. Birds' beaks can be adapted in different ways. For example, a sharp hooked beak might help a bird tear through meat easily. A short, thick beak might help a bird break through a seed's hard shell. Birds that eat similar food often have similar beaks. Look at the picture of the common swift.\\nA short, thin beak is light and easy to move. The common swift uses its beak to grab fast-moving insects while flying.\\nNow look at each bird. Figure out which bird has a similar adaptation.\\nThe European robin has a short, thin beak. Its beak is adapted to catch insects.\\nThe Australian pelican has a large pouch-like beak. Its beak is not adapted to catch insects. The Australian pelican uses its beak to catch fish. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14719\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish.\\nContext: N/A\\nOptions: (A) albatross (B) elongated tortoise (C) green sea turtle (D) manta ray\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Fish live underwater. They have fins, not limbs. A manta ray is a fish. It lives underwater. It has fins, not limbs.\\nRays have a different shape than many other fish. Rays are large and flat. They have wide, triangle-shaped fins that help them swim long distances.\\nA green sea turtle is a reptile. It has scaly, waterproof skin.\\nSea turtles live in the water, but they lay their eggs on land.\\nAn albatross is a bird. It has feathers, two wings, and a beak.\\nAlbatrosses live near the ocean. They hunt squid, fish, and other small animals.\\nAn elongated tortoise is a reptile. It has scaly, waterproof skin.\\nA tortoise's shell protects it from predators. When a tortoise feels threatened, it can pull its head and legs inside its shell. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14722\",\n    \"image\": \"14722\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nOf the four largest planets, three are made mainly of gas.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that the four largest planets are Jupiter, Saturn, Uranus, and Neptune. Jupiter and Saturn are made mainly of gas. Uranus and Neptune are made mainly of ice. So, of the four largest planets, two are made mainly of gas. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14734\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text message is more formal?\\nContext: N/A\\nOptions: (A) My apologies\\u2014I'm stuck in traffic and will be late for our meeting. (B) Oops, stuck in traffic. Will be late for our meeting. Sorry!\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The first text message is more formal. It uses courteous language (my apologies) rather than casual language (oops, sorry!). The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14735\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nMike says that he would not be the person he is today were it not for his childhood, which he describes as Dickensian.\\nContext: N/A\\nOptions: (A) a poem (B) literature\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Dickensian is literature.\\nThe works of British author Charles Dickens often featured characters struggling to survive in settings such as debtors' prisons and orphanages.\\nThe allusion Dickensian means harsh or poverty-stricken. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14739\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nMalik got off the mountain by the skin of his teeth.\\nContext: N/A\\nOptions: (A) the Bible (B) U.S. history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion by the skin of his teeth is the Bible.\\nIn the Bible, Job complains to God about his hardships, saying that both strangers and those he loves have turned against him. He says, \\\"My bone cleaveth to my skin and to my flesh, and I am escaped with the skin of my teeth.\\\" Scholars have long debated the exact meaning of the phrase, but many claim that Job is saying that he narrowly escaped death.\\nThe allusion by the skin of his teeth means just barely. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14743\",\n    \"image\": \"14743\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of blue particles?\\nContext: The diagram below is a model of two solutions. Each blue ball represents one particle of solute.\\nOptions: (A) Solution A (B) Solution B (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the blue particles represent the solute. To figure out which solution has a higher concentration of blue particles, look at both the number of blue particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of blue particles per milliliter.\\nSolution A and Solution B have the same number of blue particles per milliliter. So, their concentrations are the same. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14746\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Ace's phenotype for the coat color trait?\\nContext: In a group of horses, some individuals have a black coat and others have a reddish-brown coat. In this group, the gene for the coat color trait has two alleles. The allele for a black coat (L) is dominant over the allele for a reddish-brown coat (l).\\nAce is a horse from this group. Ace has the heterozygous genotype Ll for the coat color gene.\\nOptions: (A) a black coat (B) a reddish-brown coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine Ace's phenotype for the coat color trait. First, consider the alleles in Ace's genotype for the coat color gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for a black coat (L) is dominant over the allele for a reddish-brown coat (l). This means L is a dominant allele, and l is a recessive allele.\\nAce's genotype of Ll has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Ace's phenotype for the coat color trait must be a black coat. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14749\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nDustin is a real Benedict Arnold. After promising to work on my campaign for class president, he decided to support my opponent.\\nContext: N/A\\nOptions: (A) simile (B) allusion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses an allusion, a brief reference to someone or something well known.\\nBenedict Arnold alludes to the American general during the Revolutionary War who betrayed his country and fought for the British. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14755\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nMaria can ride a motorcycle.\\nContext: N/A\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to ride a motorcycle. Instead, many people learn how to ride. So, riding a motorcycle is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14759\",\n    \"image\": \"14759\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's limbs are also adapted for climbing trees?\\nContext: Three-toed sloths live in the forests of Central and South America. Their limbs are adapted for climbing trees.\\nFigure: three-toed sloth.\\nOptions: (A) California sea lion (B) lar gibbon\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nArms, legs, flippers, and wings are different types of limbs. The type of limbs an animal has is an example of an adaptation. Animals' limbs can be adapted in different ways. For example, long legs might help an animal run fast. Flippers might help an animal swim. Wings might help an animal fly. Look at the picture of the three-toed sloth.\\nThe three-toed sloth uses its long limbs to reach branches while climbing. It uses its fingers and toes to grab the branches.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe lar gibbon has long limbs with fingers and toes. Its limbs are adapted for climbing trees.\\nThe California sea lion has flippers. Its limbs are not adapted for climbing trees. The California sea lion uses its flippers to swim underwater. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14764\",\n    \"image\": \"14764\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of blue particles?\\nContext: The diagram below is a model of two solutions. Each blue ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the blue particles represent the solute. To figure out which solution has a higher concentration of blue particles, look at both the number of blue particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of blue particles per milliliter.\\nSolution A has more blue particles per milliliter. So, Solution A has a higher concentration of blue particles. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14766\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nAustin is the best cook I know!\\nContext: N/A\\nOptions: (A) interrogative (B) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence tells about something, but it shows strong feeling and ends with an exclamation point. It is an exclamatory sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14767\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a sentence fragment?\\nContext: N/A\\nOptions: (A) All the judges at the important meeting. (B) The cardboard box gets wet it falls apart.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. All the judges at the important meeting is a sentence fragment. It is missing a verb. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14779\",\n    \"image\": \"14779\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Tuvalu (B) Solomon Islands (C) Fiji (D) Vanuatu\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Fiji. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14785\",\n    \"image\": \"14785\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Sandeep and Tracy trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nSandeep and Tracy open their lunch boxes in the school cafeteria. Neither Sandeep nor Tracy got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nSandeep's lunch Tracy's lunch\\nOptions: (A) Tracy can trade her almonds for Sandeep's tomatoes. (B) Sandeep can trade his tomatoes for Tracy's broccoli. (C) Sandeep can trade his tomatoes for Tracy's carrots. (D) Tracy can trade her broccoli for Sandeep's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nSandeep wants broccoli. Tracy wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14787\",\n    \"image\": \"14787\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the amphibian below.\\nContext: Amphibians have moist skin and begin their lives in water.\\nAmphibians are cold-blooded. The body temperature of cold-blooded animals depends on their environment.\\nA red-spotted newt is an example of an amphibian.\\nOptions: (A) koala (B) green moray eel (C) horned frog (D) zebra\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A koala is a mammal. It has fur and feeds its young milk.\\nKoalas sleep for up to 20 hours a day!\\nA zebra is a mammal. It has hair and feeds its young milk.\\nZebras eat mostly grass. But they sometimes eat other types of plants, such as shrubs or tree bark.\\nA green moray eel is a fish. It lives underwater. It has fins, not limbs.\\nEels are long and thin. They may have small fins. They look like snakes, but they are fish!\\nA horned frog is an amphibian. It has moist skin and begins its life in water.\\nFrogs live near water or in damp places. Most frogs lay their eggs in water. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14789\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Riley decides to plant the roses. Which result would be a cost?\\nContext: Riley is deciding whether to plant roses or a pine tree in her backyard. She wants to make her backyard more beautiful. But she also wants to leave space for doing fun things.\\nOptions: (A) She will save some space. The roses will use up less space than the pine tree would have used up. (B) Riley will give up the chance to look at the pine tree. She thinks it would have looked more beautiful than the roses.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Riley wants or needs:\\nRiley will give up the chance to look at the pine tree. She thinks it would have looked more beautiful than the roses. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14800\",\n    \"image\": \"14800\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged among green leaves?\\nContext: Leaf insects live in the forests of Asia and Australia. The is adapted to be camouflaged among green leaves.\\nFigure: leaf insect.\\nOptions: (A) fox snake (B) emerald tree boa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the leaf insect.\\nThe leaf insect has a green leaf-shaped body. It is adapted to be camouflaged among green leaves. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe emerald tree boa has bright green scales covering its body. It is adapted to be camouflaged among green leaves.\\nThe fox snake has a tan body with large brown spots. It is not adapted to be camouflaged among green leaves. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14803\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Ava's phenotype for the leg color trait?\\nContext: In a group of chickens, some individuals have white legs and others have yellow legs. In this group, the gene for the leg color trait has two alleles. The allele L is for white legs, and the allele l is for yellow legs.\\nAva, a chicken from this group, has yellow legs. Ava has two alleles for yellow legs.\\nOptions: (A) ll (B) yellow legs\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Ava's observable version of the leg color trait is yellow legs. So, Ava's phenotype for the leg color trait is yellow legs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14808\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nTroy, the company you work for just filed for bankruptcy! How can I trust you with our money?\\nContext: N/A\\nOptions: (A) appeal to nature: the assumption that natural things are always good (B) guilt by association: a negative association intended to discredit someone or something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Troy must be fiscally irresponsible, because he works for a company that went bankrupt. However, even though his company is perceived as fiscally irresponsible, that doesn't necessarily mean that Troy is, too. This illustrates a type of logical fallacy known as guilt by association. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14809\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nMona, I've told you a million times: you need to dry the dishes before you put them away.\\nContext: N/A\\nOptions: (A) hyperbole (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nA million times is an exaggeration, since it is unlikely that Mona has actually been told this a million times. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14811\",\n    \"image\": \"14811\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the cocoi heron.\\nContext: This organism is a cocoi heron. Its scientific name is Ardea cocoi.\\nOptions: (A) Taricha torosa (B) Ardea goliath (C) Ardea cocoi\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A cocoi heron's scientific name is Ardea cocoi.\\nArdea cocoi has the same scientific name as a cocoi heron. So, these organisms are in the same species.\\nTaricha torosa does not have the same scientific name as a cocoi heron. So, Ardea cocoi and Taricha torosa are not in the same species.\\nArdea cocoi is in the same genus as Ardea goliath, but they are not in the same species.\\nOrganisms in the same species have the same scientific names. Ardea cocoi and Ardea goliath are different species within the same genus. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14814\",\n    \"image\": \"14814\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Pam's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nPam was designing small aircraft called drones to pick up items from warehouse shelves. She knew that the drones' propeller blades would get damaged if they bumped into anything while flying through the warehouse. So, Pam wanted to add blade guards to protect the propeller blades. The guards had to be sturdy so they would not break in a crash. But she thought that if the guards weighed too much, the drones would not fly well.\\nSo, Pam put guards made of lightweight metal on one drone. Then she observed how well the drone flew with the guards.\\nFigure: a drone without blade guards.\\nOptions: (A) how much the drone weighed with the blade guards (B) if the blade guards would break in a crash (C) if adding the blade guards made the drone fly poorly\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14816\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Jasper investigate with an experiment?\\nContext: Jasper and his sister are building ramps to race their toy cars down. Jasper notices that the cars go down some of the ramps faster than others. He wonders what factors affect the cars' speed. So, he decides to design an experiment. He has the following supplies available:\\ntwo identical toy cars\\na wooden ramp three feet long and two feet tall\\na cardboard ramp three feet long and two feet tall\\nOptions: (A) Do toy cars go faster down the ramp made of wood or the ramp made of cardboard? (B) Do toy cars with plastic wheels go faster down the cardboard ramp than toy cars with metal wheels? (C) Does a big toy car go down the wooden ramp faster than a small toy car?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14818\",\n    \"image\": \"14818\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Erica was delivering two identical pizzas to a customer. While driving to the customer's house, Erica put one of the pizza boxes on top of the other one. This table shows how the temperature of each pizza changed over 15minutes.\\nOptions: (A) the surroundings . . . each pizza (B) each pizza . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each pizza decreased, which means that the thermal energy of each pizza decreased. So, thermal energy was transferred from each pizza to the surroundings. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14824\",\n    \"image\": \"14824\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is stronger in Pair 2. (C) The magnetic force is stronger in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 1 are closer together than the magnets in Pair 2. So, the magnetic force is stronger in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14826\",\n    \"image\": \"14826\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Dominica (B) Saint Vincent and the Grenadines (C) Trinidad and Tobago (D) Grenada\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Grenada. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14831\",\n    \"image\": \"14831\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Minnesota?\\nContext: N/A\\nOptions: (A) Saint Paul (B) Minneapolis (C) Jefferson City (D) Pierre\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Saint Paul is the capital of Minnesota. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14840\",\n    \"image\": \"14840\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for digging?\\nContext: Star-nosed moles are found in many parts of North America. They live in burrows. The moles eat earthworms and nuts, which they find in the soil. The feet of the are adapted for digging.\\nFigure: star-nosed mole.\\nOptions: (A) groundhog (B) tokay gecko\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the star-nosed mole.\\nThe star-nosed mole has long, straight claws. Its feet are adapted for digging. The star-nosed mole uses its claws to break up soil and move it out of the way.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe groundhog has long, straight claws. Its feet are adapted for digging.\\nThe tokay gecko has wide, sticky toes. Its feet are not adapted for digging. The tokay gecko uses its feet to climb trees and walk on leaves. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14841\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nclass - curl\\nContext: N/A\\nOptions: (A) castle (B) cottage\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince cottage is between the guide words class - curl, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14846\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text message is more formal?\\nContext: N/A\\nOptions: (A) Ms. Arnold is already here. She's waiting in the lobby. (B) Heads up! Arnold is here. In the lobby.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The first text message is more formal. It uses complete sentences, avoids slang (heads up), and uses the person's title (Ms. Arnold). The other text message includes more casual language and sentence fragments. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14857\",\n    \"image\": \"14857\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Rhianna's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nRhianna glued lids onto 16 cardboard shoe boxes of equal size. She painted eight of the boxes black and eight of the boxes white. Rhianna made a small hole in the side of each box and then stuck a thermometer partially into each hole so she could measure the temperatures inside the boxes. She placed the boxes in direct sunlight in her backyard. Two hours later, she measured the temperature inside each box. Rhianna compared the average temperature inside the black boxes to the average temperature inside the white boxes.\\nFigure: a shoebox painted black.\\nOptions: (A) Do the insides of white boxes get hotter than the insides of black boxes when the boxes are left in the sun? (B) Do the temperatures inside boxes depend on the sizes of the boxes?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14861\",\n    \"image\": \"14861\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following was a dependent variable in this experiment?\\nContext: The passage below describes an experiment. Read the passage and think about the variables that are described.\\n\\nAudrey had four air plants on her desk that were not growing. She suspected that they needed more water. Audrey's sister recommended soaking the air plants in a bowl of water once a week. Audrey's coworker recommended spraying the air plants with a mist of water every day.\\nAudrey decided to test both ideas. First, she measured the initial weight of all four air plants. Then, for the next two months, she sprayed two of the plants with a mist of water each day. She watered the two remaining plants by soaking them in water once a week. Finally, Audrey measured the weight of the plants again and calculated the change in weight for each plant.\\nHint: An independent variable is a variable whose effect you are investigating. A dependent variable is a variable that you measure.\\nFigure: an air plant displayed on a rock.\\nOptions: (A) the watering method used (B) the change in weight for each plant\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to find out how one variable affects another variable. For example, imagine that you want to find out if fertilizer affects the number of tomatoes a tomato plant grows. To answer this question, you decide to set up two equal groups of tomato plants. Then, you add fertilizer to the soil of the plants in one group but not in the other group. Later, you measure the effect of the fertilizer by counting the number of tomatoes on each plant.\\nIn this experiment, the amount of fertilizer added to the soil and the number of tomatoes were both variables.\\nThe amount of fertilizer added to the soil was an independent variable because it was the variable whose effect you were investigating. This type of variable is called independent because its value does not depend on what happens after the experiment begins. Instead, you decided to give fertilizer to some plants and not to others.\\nThe number of tomatoes was a dependent variable because it was the variable you were measuring. This type of variable is called dependent because its value can depend on what happens in the experiment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14862\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\nWhile waiting for her search results, Cara exclaimed, \\\"My Internet connection is as speedy as a snail!\\\"\\nContext: N/A\\nOptions: (A) The Internet connection was very fast. (B) The Internet connection was very slow.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAs speedy as a snail suggests that the Internet connection was very slow. A snail is not speedy, and neither was Cara's Internet connection. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14865\",\n    \"image\": \"14865\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nHydrazine is ().\\nContext: The model below represents a molecule of hydrazine. Hydrazine is used in some types of rocket fuels.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. Use the model to determine whether hydrazine is an elementary substance or a compound.\\nStep 1: Interpret the model.\\n.\\nUse the legend to determine the chemical element represented by each color. The colors and atomic symbols from the legend are shown in the table below. The table also includes the names of the chemical elements represented in the model.\\nYou can see from the model that a molecule of hydrazine is composed of four hydrogen atoms and two nitrogen atoms bonded together.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that hydrazine is composed of two chemical elements: hydrogen and nitrogen. Since hydrazine is composed of multiple chemical elements bonded together, hydrazine is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14874\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a can of soda pop?\\nContext: Select the better estimate.\\nOptions: (A) 320 liters (B) 320 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a can of soda pop is 320 milliliters.\\n320 liters is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14881\",\n    \"image\": \"14881\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a chicken produced by this cross will be heterozygous for the leg color gene?\\nContext: In a group of chickens, some individuals have white legs and others have yellow legs. In this group, the gene for the leg color trait has two alleles. The allele for yellow legs (l) is recessive to the allele for white legs (L).\\nThis Punnett square shows a cross between two chickens.\\nOptions: (A) 2/4 (B) 0/4 (C) 4/4 (D) 3/4 (E) 1/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring genotypes: homozygous or heterozygous?\\nHow do you determine whether an organism is homozygous or heterozygous for a gene? Look at the alleles in the organism's genotype for that gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene.\\nIf both alleles are dominant, the organism is homozygous dominant for the gene.\\nIf both alleles are recessive, the organism is homozygous recessive for the gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. \\nBecause there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4 The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14887\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a basketball?\\nContext: Select the best estimate.\\nOptions: (A) 20 pounds (B) 20 ounces (C) 20 tons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a basketball is 20 ounces.\\n20 pounds and 20 tons are both too heavy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14888\",\n    \"image\": \"14888\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these continents does the prime meridian intersect?\\nContext: N/A\\nOptions: (A) Africa (B) Australia (C) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lines of latitude and lines of longitude are imaginary lines drawn on some globes and maps. They can help you find places on globes and maps.\\nLines of latitude show how far north or south a place is. We use units called degrees to describe how far a place is from the equator. The equator is the line located at 0\\u00b0 latitude. We start counting degrees from there.\\nLines north of the equator are labeled N for north. Lines south of the equator are labeled S for south. Lines of latitude are also called parallels because each line is parallel to the equator.\\nLines of longitude are also called meridians. They show how far east or west a place is. We use degrees to help describe how far a place is from the prime meridian. The prime meridian is the line located at 0\\u00b0 longitude. Lines west of the prime meridian are labeled W. Lines east of the prime meridian are labeled E. Meridians meet at the north and south poles.\\nThe equator goes all the way around the earth, but the prime meridian is different. It only goes from the North Pole to the South Pole on one side of the earth. On the opposite side of the globe is another special meridian. It is labeled both 180\\u00b0E and 180\\u00b0W.\\nTogether, lines of latitude and lines of longitude form a grid. You can use this grid to find the exact location of a place. The prime meridian is the line at 0\\u00b0 longitude. It intersects Africa. It does not intersect Australia or Asia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14889\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear Hunter, (B) Dear hunter,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Hunter is capitalized because it is a proper noun. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14893\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nteeth - trousers\\nContext: N/A\\nOptions: (A) towel (B) taught\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince towel is between the guide words teeth - trousers, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14896\",\n    \"image\": \"14896\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a ruler a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a liquid (B) a gas (C) a solid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid.\\nWhen matter is a gas, it spreads out to fill a space.\\nMany gases are invisible. So, you can\\u2019t see them. Air is a gas. A ruler is a solid. A solid has a size and shape of its own.\\nIf you put a ruler in a box, the ruler will keep its shape. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14897\",\n    \"image\": \"14897\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) the Marshall Islands (B) New Zealand (C) Vanuatu (D) Nauru\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Nauru. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14898\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the reptile traits listed above.\\nContext: Reptiles are a group of animals with similar traits. The following traits can be used to identify reptiles:\\nThey have scaly, waterproof skin.\\nThey make eggs with shells. Observe the animals and read the descriptions.\\nOptions: (A) Green frogs have moist skin. Green frog tadpoles hatch from eggs without shells and live underwater. The adult frogs live on land near ponds and rivers. They may jump into the water to hide from predators. (B) Chinese alligators live in lakes and streams in eastern China. They lay eggs with shells and live in underground burrows in the winter. Chinese alligators have scaly, waterproof skin.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nReptiles have the following traits:\\nThey have scaly, waterproof skin.\\nThey make eggs with shells.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA Chinese alligator has the following traits:\\nIt has scaly, waterproof skin.\\nIt makes eggs with shells.\\nA Chinese alligator has the traits of a reptile. A Chinese alligator is a reptile.\\nA green frog has the following traits:\\nIt spends part of its life in water and part on land.\\nIt has moist skin.\\nIt makes eggs with no shells.\\nA green frog does not have all of the traits of a reptile. A green frog is an amphibian. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14904\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAt twenty-one, Hector felt overwhelmed with adult responsibilities and wished he could fly off to Neverland.\\nContext: N/A\\nOptions: (A) allusion (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses an allusion, a brief reference to someone or something well known.\\nNeverland alludes to the story of Peter Pan, a boy who lived in Neverland and never grew up. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14913\",\n    \"image\": \"14913\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nThe Western Alps formed at a () boundary.\\nContext: Read the passage and look at the picture.\\nMillions of years ago, the Eurasian Plate and the African Plate began to move toward each other, eventually colliding. This plate motion formed many mountain ranges, including the Western Alps. The Western Alps run through European countries, including France, Italy, and Switzerland.\\nOptions: (A) transform (B) convergent (C) divergent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The outer layer of Earth is broken up into many pieces called tectonic plates, or simply plates. The breaks between plates are called plate boundaries. Plate boundaries are classified by the way the plates are moving relative to each other:\\nAt a divergent boundary, two plates are moving away from each other.\\nAt a transform boundary, two plates are sliding past each other.\\nAt a convergent boundary, two plates are moving toward each other.\\nOne type of convergent boundary is a continent-continent collision. This type of boundary forms when two plates with continental crust move toward each other. The collision compresses and folds the continental crust, forcing it upward to form a mountain range. To figure out what type of plate boundary formed the Western Alps, you need to know how the tectonic plates interacted. To find this out, read the passage carefully.\\nMillions of years ago, the Eurasian Plate and the African Plate began to move toward each other, eventually colliding. This plate motion formed many mountain ranges, including the Western Alps. The Western Alps run through European countries, including France, Italy, and Switzerland.\\nThe underlined part of the passage explains that the Western Alps formed as the two plates collided, or ran into each other. For two plates to collide, they must be moving toward each other. So, the Western Alps formed at a convergent boundary. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14919\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has more thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 175-gram glass of apple juice at a temperature of 65\\u00b0F (B) a 175-gram glass of apple juice at a temperature of 40\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. The two glasses of apple juice have the same mass but different temperatures. Since the 65\\u00b0F glass of apple juice is hotter than the 40\\u00b0F glass of apple juice, it has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14927\",\n    \"image\": \"14927\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Vermont?\\nContext: N/A\\nOptions: (A) Omaha (B) Montpelier (C) Boston (D) Burlington\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montpelier is the capital of Vermont. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14937\",\n    \"image\": \"14937\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for grabbing prey?\\nContext: White-tailed eagles eat fish, mammals, and other birds. The 's feet are adapted for grabbing prey.\\nFigure: white-tailed eagle.\\nOptions: (A) brahminy kite (B) dromedary camel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the white-tailed eagle.\\nThe white-tailed eagle has long toes with sharp claws. Its feet are adapted for grabbing prey. The sharp claws can help the white-tailed eagle attack and kill its prey. The long toes can help it hold on to its prey.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe brahminy kite has long toes with sharp claws. Its feet are adapted for grabbing prey.\\nThe dromedary camel has large pads on the bottoms of its feet. Its feet are not adapted for grabbing prey. The dromedary camel uses its feet to walk on sand. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14941\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nsediment settling to the bottom of a muddy puddle\\nshaking up salad dressing\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are only physical changes. (C) Both are chemical changes. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nLoose matter such as sand and dirt is called sediment. Sediment settling to the bottom of a muddy puddle is a physical change.\\nThe sediment sinks, and the water above becomes clearer. This separates the water from the sediment. But separating a mixture does not form a different type of matter.\\nShaking up salad dressing is a physical change. The different parts mix together, but they are still made of the same type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14946\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\n\\\"It was my good luck to have to study for a test while all my friends went to the water park,\\\" Rodrigo remarked.\\nContext: N/A\\nOptions: (A) Rodrigo was upset about staying home. (B) Rodrigo wanted time to catch up on his responsibilities.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nGood luck ironically suggests that Rodrigo was upset about staying home. Rodrigo was actually unlucky because he couldn't join his friends at the water park. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14951\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear aunt Zoe, (B) Dear Aunt Zoe,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Aunt Zoe is capitalized because it is a proper noun. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14957\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which would stretch more?\\nContext: N/A\\nOptions: (A) rubber band (B) ceramic flower pot\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Stretchy is a property. A stretchy material gets longer when you pull on it.\\nLook at each picture, one at a time. Imagine pulling on the material shown in each picture.\\nOf the choices, the rubber band would stretch more. If you pull on a rubber band, it will get longer. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14958\",\n    \"image\": \"14958\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) South Carolina (B) Connecticut (C) Massachusetts (D) Georgia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Connecticut. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14961\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Dr. Larson and her team traveled by horseback to a remote village that had no modern medical services. (B) Dr. Larson and her team took horses and went to a place that had no modern medical services.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses overly simple or imprecise language (took, went).\\nThe first sentence uses more precise language, so it is more formal overall. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14971\",\n    \"image\": \"14971\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Georgia (B) Iowa (C) New York (D) North Dakota\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. North Dakota is farthest west. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14976\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word old on a dictionary page with the following guide words?\\nobject - orchard\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince old is between the guide words object - orchard, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14985\",\n    \"image\": \"14985\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14989\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is the Golden Gate Bridge?\\nContext: Select the best estimate.\\nOptions: (A) 2,750 meters (B) 2,750 millimeters (C) 2,750 centimeters (D) 2,750 kilometers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of the Golden Gate Bridge is 2,750 meters.\\n2,750 millimeters and 2,750 centimeters are too short. 2,750 kilometers is too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"14992\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) ***Dogs on Duty*** (B) \\\"Dogs on Duty\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A book should be in italics.\\nThe correct title is **Dogs on Duty**. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15002\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is fixing a sink a good or a service?\\nContext: N/A\\nOptions: (A) a good (B) a service\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Everything you can buy is either a good or a service.\\nA good is something you can touch or hold in your hands. For example, a hammer is a good.\\nA service is a job you pay someone else to do. For example, cooking food in a restaurant is a service. To decide whether fixing a sink is a good or a service, ask these questions:\\nIs fixing a sink something you can touch? No.\\nIs fixing a sink a job you might pay someone else to do? Yes.\\nSo, fixing a sink is a service. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15003\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nSidney has five fingers on each hand.\\nContext: Hint: Sidney was born with five fingers on each hand.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Most humans are born with five fingers on each hand. So, having five fingers is an inherited trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15024\",\n    \"image\": \"15024\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Indian Ocean (B) the Pacific Ocean (C) the Arctic Ocean (D) the Atlantic Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Arctic Ocean. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15025\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nSenator Logan announced today that she plans to cut funding to early childhood education programs. The last thing we need is a government official who hates children!\\nContext: N/A\\nOptions: (A) straw man: a misrepresentation of an opponent's position that makes it easier to argue against (B) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Senator Logan hates children, because she wants to cut education funding. However, the fact that Senator Logan wants to cut education funding doesn't necessarily suggest that she hates children. This illustrates a type of logical fallacy known as a straw man. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15027\",\n    \"image\": \"15027\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Ernesto and Lucia trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nErnesto and Lucia open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Ernesto wanted broccoli in his lunch and Lucia was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Ernesto can trade his tomatoes for Lucia's sandwich. (B) Ernesto can trade his tomatoes for Lucia's broccoli. (C) Lucia can trade her almonds for Ernesto's tomatoes. (D) Lucia can trade her broccoli for Ernesto's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Ernesto wanted broccoli in his lunch and Lucia was hoping for tomatoes. Look at the labeled part of the images.\\nErnesto has tomatoes. Lucia has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15044\",\n    \"image\": \"15044\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nevada?\\nContext: N/A\\nOptions: (A) Baltimore (B) Helena (C) Carson City (D) Baton Rouge\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Carson City is the capital of Nevada. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15050\",\n    \"image\": \"15050\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which plant can produce spores?\\nContext: This diagram shows the life cycle of a fern.\\nOptions: (A) a mature fern (B) a heart-shaped plant\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Fern plants reproduce using both asexual reproduction and sexual reproduction.\\nMature ferns have flat leaves called fronds. Ferns have structures that look like small dots on the underside of their fronds. These structures are called spore cases. The mature ferns use asexual reproduction to make spores. When the spore cases open, the spores are released.\\nWhen a spore lands on the ground and germinates, it grows into a small heart-shaped plant. The heart-shaped plant begins the fern's sexual reproduction stage by making eggs and sperm. Ferns live in damp environments, and sperm can swim though small water drops. Self-fertilization happens when a sperm swims to an egg on the same heart-shaped plant. Cross-fertilization happens when the sperm swims to an egg on a nearby plant.\\nFertilization happens when a sperm and an egg fuse. The fertilized egg germinates and grows into a mature fern.\\nThe mature fern can make spores and begin the fern life cycle again. A mature fern can make spores. Spores grow inside the spore case. When the spore case breaks open, the spores are released.\\nA heart-shaped plant produces eggs and sperm, not spores. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15066\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nMr. Walter signed his name on the letter.\\nContext: N/A\\nOptions: (A) future tense (B) present tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in past tense. You can tell because it uses a past-tense verb, signed. The verb ends in -ed and tells you about something that has already happened. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15068\",\n    \"image\": \"15068\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following organisms is the primary consumer in this food web?\\nContext: Below is a food web from an ocean ecosystem in Monterey Bay, off the coast of California.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) sea otter (B) kelp (C) plainfin midshipman (D) phytoplankton\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Primary consumers eat producers. So, in a food web, primary consumers have arrows pointing to them from producers.\\nThe phytoplankton does not have any arrows pointing to it. So, the phytoplankton is not a primary consumer.\\nThe plainfin midshipman has an arrow pointing to it from the phytoplankton. The phytoplankton is a producer, so the plainfin midshipman is a primary consumer.\\nThe sea otter has an arrow pointing to it from the sea urchin. The sea urchin is not a producer. So, the sea otter is not a primary consumer.\\nThe kelp does not have any arrows pointing to it. So, the kelp is not a primary consumer.\\nThe kelp bass has an arrow pointing to it from the kelp. The kelp is a producer, so the kelp bass is a primary consumer. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15070\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this plant's phenotype for the pea color trait?\\nContext: In a group of pea plants, some individuals have yellow peas and others have green peas. In this group, the gene for the pea color trait has two alleles. The allele for yellow peas (E) is dominant over the allele for green peas (e).\\nA certain pea plant from this group has the heterozygous genotype Ee for the pea color gene.\\nOptions: (A) yellow peas (B) green peas\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine the pea plant's phenotype for the pea color trait. First, consider the alleles in the plant's genotype for the pea color gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for yellow peas (E) is dominant over the allele for green peas (e). This means E is a dominant allele, and e is a recessive allele.\\nThe pea plant's genotype of Ee has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, the pea plant's phenotype for the pea color trait must be yellow peas. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15073\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Settlers in Madagascar should have done more to protect the elephant bird, which became extinct in the 1600s. (B) Madagascar's elephant bird laid eggs the size of American footballs.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Statements of fact make claims that are based on research, observation, or experimentation. Facts can be proved with evidence.\\nNapoleon Bonaparte was shorter than King Louis XVI.\\nThis statement is a fact. The statement can be verified by researching and comparing the height of each man.\\nStatements of opinion make claims that are based on personal judgments or perspectives. Opinions can be supported by evidence, but they cannot be definitively proved.\\nNapoleon Bonaparte was a better leader than King Louis XVI.\\nThis statement is an opinion. People can have different ideas about what makes someone a \\\"better\\\" leader, so the statement cannot be proved. The first sentence states a fact. It can be verified by looking up the size of the elephant bird's eggs and the size of American footballs.\\nMadagascar's elephant bird laid eggs the size of American footballs.\\nThe second sentence states an opinion. Should indicates a personal judgment.\\nSettlers in Madagascar should have done more to protect the elephant bird, which became extinct in the 1600 s. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15076\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nSuzie has a scar on her right elbow.\\nContext: Hint: Most scars are caused by accidents during a person's life.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15080\",\n    \"image\": \"15080\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Denver (B) Dallas (C) Sioux Falls (D) Green Bay\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15082\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ncalves - cow\\nContext: N/A\\nOptions: (A) cub (B) chaos\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince chaos is between the guide words calves - cow, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15086\",\n    \"image\": \"15086\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the north pole of the other magnet. Poles that are different attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15088\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Cara decides to get the sweet cream ice cream. Which result would be a cost?\\nContext: Cara is deciding whether to get strawberry cheesecake ice cream or sweet cream ice cream. She likes strawberry cheesecake more than sweet cream. But a scoop of sweet cream ice cream comes with a free waffle cone.\\nOptions: (A) Cara will get a free waffle cone. She will enjoy the waffle cone. (B) Cara will give up the chance to eat the strawberry cheesecake ice cream. She likes this flavor more than sweet cream.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Cara wants or needs:\\nCara will give up the chance to eat the strawberry cheesecake ice cream. She likes this flavor more than sweet cream. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15094\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Your niece,\\nChristine (B) your niece,\\nChristine\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15095\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the Eighth Amendment say about \\\"cruel and unusual punishments\\\"?\\nContext: N/A\\nOptions: (A) The government can only use cruel and unusual punishments against murderers. (B) The government can never use cruel and unusual punishments. (C) The government can use cruel and unusual punishments if it needs to. (D) The government can only use cruel and unusual punishments during wars.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The Eighth Amendment says that the government can never use \\\"cruel and unusual punishments.\\\" There are no special cases when they are allowed. What makes a punishment \\\"cruel or unusual\\\"? The answer is not clear. The Eighth Amendment doesn't talk about specific punishments. Over time, Americans have changed their views on what is cruel and unusual. For example, the government decided in 2005 that it was cruel to put someone to death for a crime he or she committed before the age of 18. Today, Americans continue to question what is cruel and unusual. In the future, some punishments used today may be outlawed. The text of the Eighth Amendment is below. Does it have rules against anything else? Excessive bail shall not be required, nor excessive fines imposed, nor cruel and unusual punishments inflicted. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15105\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the liquid.\\nContext: N/A\\nOptions: (A) water in a fishbowl (B) chalk (C) gold bracelet\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid and liquid are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15111\",\n    \"image\": \"15111\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Dominica (B) the Dominican Republic (C) Jamaica (D) Haiti\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Dominican Republic.\\nWhy does the Dominican Republic share its island with another country?\\nThe Dominican Republic and Haiti share the island of Hispaniola. It is home to the earliest European settlements in the Americas. Christopher Columbus founded the first European settlement on the island in 1492 during his first voyage across the Atlantic.\\nThough many people lived on the island before Columbus's arrival, European countries quickly began to colonize the island. Eventually France and Spain both established colonies. The Spanish colony eventually became the country of the Dominican Republic, and the French colony eventually became the country of Haiti. Today, people in the two countries speak different languages and have many cultural differences. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15115\",\n    \"image\": \"15115\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a handsaw a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a gas (B) a solid (C) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. A handsaw is a solid. A solid has a size and shape of its own.\\nThe handle of this handsaw is made of wood, and the blade is made of metal. Both wood and metal are solids. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15122\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a movie?\\nContext: N/A\\nOptions: (A) \\\"The Prince and the Surfer\\\" (B) ***The Prince and the Surfer***\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, or article should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A movie should be in italics.\\nThe correct title is **The Prince and the Surfer**. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15125\",\n    \"image\": \"15125\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) North America (C) South America (D) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is North America. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15146\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is this a run-on sentence?\\nWhite chocolate does not contain cocoa solids, it contains milk solids, cocoa butter, sugar, and flavorings such as vanilla.\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA run-on sentence is formed when two sentences are run together, joined by just a comma or by no punctuation at all. If only a comma is used, the run-on is called a comma splice.\\nThe band I'm in has been rehearsing daily, we have a concert in two weeks.\\nThe band I'm in has been rehearsing daily we have a concert in two weeks.\\nThere are several ways to fix a run-on sentence:\\nUse stronger punctuation, such as a period or a semicolon.\\nThe band I'm in has been rehearsing daily. We have a concert in two weeks.\\nThe band I'm in has been rehearsing daily; we have a concert in two weeks.\\nUse a comma and a coordinating conjunction to create a compound sentence. Coordinating conjunctions include and, but, or, and so.\\nThe band I'm in has been rehearsing daily, and we have a concert in two weeks.\\nUse a subordinating conjunction or a relative pronoun to create a complex sentence. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, and whose.\\nThe band I'm in has been rehearsing daily since we have a concert in two weeks. This is a run-on sentence. It is a comma splice formed from two sentences run together, joined by just a comma.\\nWhite chocolate does not contain cocoa solids, it contains milk solids, cocoa butter, sugar, and flavorings such as vanilla.\\nHere is one way to fix the run-on sentence:\\nWhite chocolate does not contain cocoa solids. Instead, it contains milk solids, cocoa butter, sugar, and flavorings such as vanilla. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15158\",\n    \"image\": \"15158\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Nolan and Dalton trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nNolan and Dalton open their lunch boxes in the school cafeteria. Neither Nolan nor Dalton got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nNolan's lunch Dalton's lunch\\nOptions: (A) Nolan can trade his tomatoes for Dalton's broccoli. (B) Nolan can trade his tomatoes for Dalton's carrots. (C) Dalton can trade his broccoli for Nolan's oranges. (D) Dalton can trade his almonds for Nolan's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nNolan wants broccoli. Dalton wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15161\",\n    \"image\": \"15161\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Georgetown (B) Boise (C) Nampa (D) Olympia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15171\",\n    \"image\": \"15171\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Cuba (B) the Dominican Republic (C) Saint Lucia (D) Saint Vincent and the Grenadines\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Lucia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15175\",\n    \"image\": \"15175\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food web, which organism contains matter that eventually moves to the sea cucumber?\\nContext: Below is a food web from an ocean ecosystem in Monterey Bay, off the coast of California.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) bat star (B) phytoplankton (C) kelp bass\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows to the sea cucumber.There is one path matter can take from the kelp to the sea cucumber: kelp->sea urchin->sea otter->orca->sea cucumber. kelp bass. The only arrow pointing from the kelp bass leads to the bat star. No arrows point from the bat star to any other organisms. So, in this food web, matter does not move from the kelp bass to the sea cucumber.. bat star. No arrows point from the bat star to any other organisms. So, in this food web, matter does not move from the bat star to the sea cucumber.. There are two paths matter can take from the phytoplankton to the sea cucumber: phytoplankton->plainfin midshipman->sea cucumber. phytoplankton->zooplankton->plainfin midshipman->sea cucumber. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15187\",\n    \"image\": \"15187\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait did Holophagus have? Select the trait you can observe on the fossil.\\nContext: This picture shows a fossil of an animal called Holophagus. Holophagus lived in the ocean and gave birth to live young.\\nOptions: (A) a tail fin (B) a large red lump on its head (C) long legs\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The way an organism looks or acts is called a trait. Scientists use fossils to learn more about the traits of ancient organisms.\\nFossils can preserve the remains of body parts and activities. A fossil of a body part, such as a tail or a wing, can tell you what an organism looked like. A fossil of an organism's activities, such as a burrow or a footprint, can tell you about the organism's behavior.\\nHere are three examples of fossils and the traits that you can observe from them:\\nThis is a fossil of an animal. This fossil tells you that the animal had a spiral-shaped shell.\\nThis is a fossil of a plant. This fossil tells you that the plant had small leaves arranged in a branched pattern.\\nThis is a fossil of an animal's footprint. This fossil tells you that the animal could walk on land.\\nAn organism's fossil may not show all of the organism's traits. This is because most body parts are destroyed during fossil formation. When an organism's body turns into a fossil, only a few body parts are usually preserved. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15189\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nJonah, you drive a beat-up car from the 1980s. For this reason, we can never allow you to be a lifeguard at the community pool.\\nContext: N/A\\nOptions: (A) ad hominem: a personal attack against one's opponent (B) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that people who drive old cars are likely to be poor lifeguards. This is a personal attack that isn't relevant to someone's qualifications to be a lifeguard. This illustrates a type of logical fallacy known as ad hominem. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15190\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nHow do I know that Samantha is the most intelligent person in our geometry class? I know because she's so smart.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) appeal to nature: the assumption that natural things are always good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Samantha is intelligent because she's smart. However, the \\\"evidence\\\" is just a restatement of the claim itself. This illustrates a type of logical fallacy known as circular reasoning. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15205\",\n    \"image\": \"15205\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) scratchy (B) bendable\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA scratchy object is rough and itchy against your skin. The bubble gum is not scratchy.\\nA bendable object can be bent without breaking. Both objects are bendable.\\nThe property that both objects have in common is bendable. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15206\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the temperature shown by this thermometer.\\nContext: N/A\\nOptions: (A) 45\\u00b0F (B) 85\\u00b0F (C) 75\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A thermometer is a tool that measures temperature. Temperature can be measured in degrees. The symbol for degrees is \\u00b0.\\nSome thermometers measure temperature in degrees Fahrenheit (\\u00b0F). Fahrenheit is one scale used to measure temperature.\\nThis is a tube thermometer. It has a tube filled with a red liquid.\\nThere is a Fahrenheit scale along the right side of the tube. The top of the red liquid lines up with the number 80 on the scale. So, the temperature shown by this thermometer is 80\\u00b0F. Find the top of the red liquid.\\nNow look at the scale to the right. The top of the red liquid is halfway between 70 and 80. So, the temperature is 75\\u00b0F. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15216\",\n    \"image\": \"15216\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Albert and Tucker's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nAlbert placed a ping pong ball in a catapult, pulled the catapult's arm back to a 45\\u00b0 angle, and launched the ball. Then, Albert launched another ping pong ball, this time pulling the catapult's arm back to a 30\\u00b0 angle. With each launch, his friend Tucker measured the distance between the catapult and the place where the ball hit the ground. Albert and Tucker repeated the launches with ping pong balls in four more identical catapults. They compared the distances the balls traveled when launched from a 45\\u00b0 angle to the distances the balls traveled when launched from a 30\\u00b0 angle.\\nFigure: a catapult for launching ping pong balls.\\nOptions: (A) Do ping pong balls travel farther when launched from a 30\\u00b0 angle compared to a 45\\u00b0 angle? (B) Do ping pong balls stop rolling along the ground sooner after being launched from a 30\\u00b0 angle or a 45\\u00b0 angle?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15221\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Mount Rushmore is too difficult to travel to. (B) There are four faces on Mount Rushmore.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true. Facts can be proved by observing, measuring, or studying information.\\nThe flag of the United States has 13 stripes.\\nThis is a fact. It can be proved by looking at the flag and counting the number of stripes.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nThe flag of the United States is easy to draw.\\nThis is an opinion. People may have different opinions about what makes a flag \\\"easy\\\" to draw. The first sentence states a fact.\\nThere are four faces on Mount Rushmore.\\nIt can be proved by observing Mount Rushmore.\\nThe second sentence states an opinion.\\nMount Rushmore is too difficult to travel to.\\nDifficult shows what a person believes, thinks, or feels. Another person might have a different opinion about how difficult is too difficult. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15224\",\n    \"image\": \"15224\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is stronger in Pair 1. (C) The magnetic force is stronger in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 1 are closer together than the magnets in Pair 2. So, the magnetic force is stronger in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15229\",\n    \"image\": \"15229\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for swimming?\\nContext: White-breasted cormorants live near lakes, marshes, and the sea in southern Africa. They eat mostly fish, which they catch while swimming and diving. The feet of the are adapted for swimming.\\nFigure: white-breasted cormorant.\\nOptions: (A) tokay gecko (B) European river otter\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the white-breasted cormorant.\\nThe white-breasted cormorant has webbed feet. Its feet are adapted for swimming. As it swims, the white-breasted cormorant uses its webbed feet to push itself through water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe European river otter has webbed feet. Its feet are adapted for swimming.\\nThe tokay gecko has wide, sticky toes. Its feet are not adapted for swimming. The tokay gecko uses its feet to climb trees and walk on leaves. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15230\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement true or false?\\nThe cell wall is the outermost layer in a plant cell.\\nContext: N/A\\nOptions: (A) false (B) true\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The cell wall is the outermost layer in a plant cell.\\nThis statement is true. A plant cell has a cell wall. The cell wall is outside the cell membrane and is the outermost layer in a plant cell. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15235\",\n    \"image\": \"15235\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) bouncy (B) bendable\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA bouncy object will bounce back from the floor if you drop it. The belt is not bouncy.\\nA bendable object can be bent without breaking. The belt is bendable. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15241\",\n    \"image\": \"15241\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is smaller when there is a greater distance between the magnets. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nDistance affects the magnitude of the magnetic force. When there is a greater distance between magnets, the magnitude of the magnetic force between them is smaller.\\nThere is a greater distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15245\",\n    \"image\": \"15245\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Pennsylvania?\\nContext: N/A\\nOptions: (A) Juneau (B) Providence (C) Harrisburg (D) Pittsburgh\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Harrisburg is the capital of Pennsylvania. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15253\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the elementary substance.\\nContext: N/A\\nOptions: (A) chloromethane (CH3Cl) (B) calcium (Ca) (C) phosphine (PH3)\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. Look at the chemical formula for each substance, and count the number of symbols in the formula. Then, decide if the substance is an elementary substance. The chemical formula for chloromethane contains three symbols: C for carbon, H for hydrogen, and Cl for chlorine. So, chloromethane is made of three chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, chloromethane is a compound, not an elementary substance. The chemical formula for calcium contains one symbol: Ca. So, calcium is made of one chemical element. Substances that are made of one chemical element are elementary substances. So, calcium is an elementary substance. The chemical formula for phosphine contains two symbols: P for phosphorus and H for hydrogen. So, phosphine is made of two chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, phosphine is a compound, not an elementary substance. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15256\",\n    \"image\": \"15256\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food chain, the persimmon is a producer. Why?\\nContext: This diagram shows a food chain from a forest ecosystem in Virginia.\\nOptions: (A) It eats another organism. (B) It makes its own food.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every organism needs food to stay alive. Organisms get their food in different ways. A food chain shows how organisms in an ecosystem get their food.\\nProducers make their own food. Many producers use carbon dioxide, water, and sunlight to make sugar. This sugar is food for the producer.\\nConsumers eat other organisms. Consumers cannot make their own food. In this food chain, the persimmon is a producer because it makes its own food. The persimmon uses carbon dioxide, water, and sunlight to make its own food. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15259\",\n    \"image\": \"15259\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Virginia?\\nContext: N/A\\nOptions: (A) Richmond (B) Arlington (C) Norfolk (D) Atlanta\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Richmond is the capital of Virginia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15260\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nThis lunch meat has absolutely no additives, so it must be nutritious.\\nContext: N/A\\nOptions: (A) appeal to nature: the assumption that natural things are always good (B) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that the lunch meat is nutritious because it contains no additives. However, even though the lunch meat has no additives, that doesn't necessarily mean that it is nutritious. This illustrates a type of logical fallacy known as an appeal to nature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15267\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) More people visited Great Smoky Mountains National Park in 2014 than visited Yosemite and Yellowstone combined. (B) Great Smoky Mountains National Park is fantastic because it has 150 official hiking trails.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Statements of fact make claims that are based on research, observation, or experimentation. Facts can be proved with evidence.\\nNapoleon Bonaparte was shorter than King Louis XVI.\\nThis statement is a fact. The statement can be verified by researching and comparing the height of each man.\\nStatements of opinion make claims that are based on personal judgments or perspectives. Opinions can be supported by evidence, but they cannot be definitively proved.\\nNapoleon Bonaparte was a better leader than King Louis XVI.\\nThis statement is an opinion. People can have different ideas about what makes someone a \\\"better\\\" leader, so the statement cannot be proved. The first sentence states a fact. It can be verified by comparing the number of visitors to U.S. national parks in 2014.\\nMore people visited Great Smoky Mountains National Park in 2014 than visited Yosemite and Yellowstone combined.\\nThe second sentence states an opinion. Fantastic indicates a personal judgment.\\nGreat Smoky Mountains National Park is fantastic because it has 150 official hiking trails. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15272\",\n    \"image\": \"15272\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) neither; the samples have the same temperature (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in the two samples has the same mass, but the particles in sample B have a higher average speed than the particles in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15273\",\n    \"image\": \"15273\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Arizona?\\nContext: N/A\\nOptions: (A) Phoenix (B) Juneau (C) Helena (D) Salt Lake City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Phoenix is the capital of Arizona. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15274\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nGary spoke at the city council meeting, claiming the new recycling regulations were draconian.\\nContext: N/A\\nOptions: (A) a fairy tale (B) Greek history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion draconian is Greek history.\\nDraco, a government official in seventh-century Athens, Greece, wrote a code of laws that called for severe punishments for even minor offenses.\\nThe allusion draconian means harsh. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15277\",\n    \"image\": \"15277\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15279\",\n    \"image\": \"15279\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) oxygen (B) bromomethane (C) methane\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15280\",\n    \"image\": \"15280\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak. A white stork is an example of a bird.\\nOptions: (A) fruit bat (B) sea eagle\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A sea eagle is a bird. It has feathers, two wings, and a beak.\\nSea eagles use their sharp beaks to eat fish and other birds.\\nA fruit bat is a mammal. It has hair and feeds its young milk.\\nFruit bats eat fruit and drink nectar from flowers. They have special teeth to help them bite through fruit skins. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15282\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has more thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a cherry pie at a temperature of 110\\u00b0F (B) a cherry pie at a temperature of 80\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. The two cherry pies have the same mass but different temperatures. Since the 110\\u00b0F pie is hotter than the 80\\u00b0F pie, it has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15288\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Trudy inherited this trait?\\nContext: Read the description of a trait.\\nTrudy has brown eyes.\\nOptions: (A) Trudy's father has brown eyes. He passed this trait down to Trudy. (B) Trudy's hair is the same color as her brown eyes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15289\",\n    \"image\": \"15289\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample A has more mass than each particle in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15290\",\n    \"image\": \"15290\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk.\\nMammals are warm-blooded. Warm-blooded animals can control their body temperature.\\nA koala is an example of a mammal.\\nOptions: (A) loon (B) great white shark (C) albatross (D) Tasmanian devil\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A loon is a bird. It has feathers, two wings, and a beak.\\nLoons usually live near lakes. They dive in the water to hunt for food.\\nAn albatross is a bird. It has feathers, two wings, and a beak.\\nAlbatrosses live near the ocean. They hunt squid, fish, and other small animals.\\nA Tasmanian devil is a mammal. It has fur and feeds its young milk.\\nTasmanian devils are meat-eating marsupials. They live on the island of Tasmania, near Australia.\\nA great white shark is a fish. It lives underwater. It has fins, not limbs.\\nGreat white sharks can live for up to 70 years. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15298\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nscan - swung\\nContext: N/A\\nOptions: (A) spent (B) sacrifice\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince spent is between the guide words scan - swung, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15303\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Maddie inherited this trait?\\nContext: Read the description of a trait.\\nMaddie has green eyes.\\nOptions: (A) Maddie's neighbor has green eyes. (B) Maddie and her biological father wear sunglasses when they go outside. (C) Maddie has green eyes like her biological mother.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15305\",\n    \"image\": \"15305\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Clare and Adele trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nClare and Adele open their lunch boxes in the school cafeteria. Neither Clare nor Adele got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nClare's lunch Adele's lunch\\nOptions: (A) Clare can trade her tomatoes for Adele's broccoli. (B) Adele can trade her broccoli for Clare's oranges. (C) Adele can trade her almonds for Clare's tomatoes. (D) Clare can trade her tomatoes for Adele's carrots.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nClare wants broccoli. Adele wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15306\",\n    \"image\": \"15306\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) Africa (C) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Asia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15327\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nCellular respiration is a ().\\nContext: N/A\\nOptions: (A) physical change (B) chemical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form new molecules. The types of molecules in matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then relink and form different molecules. For example, carbon dioxide molecules are created when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. For example, water vaporizing is a physical change. Liquid water and water vapor are made of the same type of matter: water. Cellular respiration is a chemical change. Cells use oxygen to break down sugar. Breaking the chemical bonds in sugar molecules releases energy that a cell can use.\\nThe atoms from the broken molecules then combine to form different molecules such as carbon dioxide and water. These molecules are different types of matter than sugar and oxygen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15335\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The mom and dad push the strollers at the same speed. Which stroller is pushed with a larger force?\\nContext: A mom, a dad, and two kids are going for a walk. The mom and the dad each push one of the kids in a stroller. The strollers are the same. But the kids are different sizes.\\nOptions: (A) a stroller with kid that weighs 25 pounds (B) a stroller with kid that weighs 30 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull.\\nA force can make an object start moving or stop an object that is moving. A force can also make an object speed up, slow down, or change direction.\\nForces can be different sizes.\\nThink about trying to move a heavy object and a light object. Imagine you want to move them at the same speed. You will need to use a larger force to move the heavy object. Look for the stroller that is heavier.\\nA stroller holding a kid that weighs 30 pounds is heavier than a stroller holding a kid that weighs 25 pounds. So, the stroller holding the kid that weighs 30 pounds needs to be pushed with a larger force to start moving forward at the same speed as the other other stroller. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15359\",\n    \"image\": \"15359\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Vermont (B) New Hampshire (C) Massachusetts (D) Connecticut\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Massachusetts.\\nThe Massachusetts Colony included land that would later become the state of Maine. Maine was never its own colony. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15374\",\n    \"image\": \"15374\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wisconsin?\\nContext: N/A\\nOptions: (A) Milwaukee (B) Juneau (C) Honolulu (D) Madison\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Madison is the capital of Wisconsin. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15382\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nwater boiling on a stove\\nice melting in a glass\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are only physical changes. (C) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nWater boiling on the stove is a change of state. So, it is a physical change. The liquid changes into a gas, but a different type of matter is not formed.\\nIce melting in a glass is a change of state. So, it is a physical change. The solid ice becomes liquid, but it is still made of water. A different type of matter is not made.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nBoth changes are caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15383\",\n    \"image\": \"15383\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for swimming?\\nContext: Parakeet auklets are small seabirds that live in the Pacific Ocean. They eat mostly crustaceans, which they catch while swimming and diving. The feet of the are adapted for swimming.\\nFigure: parakeet auklet.\\nOptions: (A) water rail (B) European beaver\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the parakeet auklet.\\nThe parakeet auklet has webbed feet. Its feet are adapted for swimming. As it swims, the parakeet auklet uses its webbed feet to push itself through water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe European beaver has webbed feet. Its feet are adapted for swimming.\\nThe water rail has very long toes. Its feet are not adapted for swimming. The water rail uses its feet to walk on muddy ground. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15385\",\n    \"image\": \"15385\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Colorado?\\nContext: N/A\\nOptions: (A) Salt Lake City (B) Colorado Springs (C) Denver (D) Boulder\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Denver is the capital of Colorado. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15403\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ncove - cylinder\\nContext: N/A\\nOptions: (A) credit (B) cattle\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince credit is between the guide words cove - cylinder, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15406\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is the Red Sea?\\nContext: Select the best estimate.\\nOptions: (A) 2,250 meters (B) 2,250 centimeters (C) 2,250 kilometers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of the Red Sea is 2,250 kilometers.\\n2,250 centimeters and 2,250 meters are both too short. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15407\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word doctor on a dictionary page with the following guide words?\\ndessert - dust\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince doctor is between the guide words dessert - dust, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15415\",\n    \"image\": \"15415\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Asia (B) Africa (C) South America (D) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is South America. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15422\",\n    \"image\": \"15422\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) South America (B) North America (C) Asia (D) Africa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Africa. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15429\",\n    \"image\": \"15429\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maryland?\\nContext: N/A\\nOptions: (A) Concord (B) Honolulu (C) Baltimore (D) Annapolis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Annapolis is the capital of Maryland. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15441\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nKate needs a new pair of shoes.\\nContext: N/A\\nOptions: (A) future tense (B) past tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, needs. The verb ends in -s and tells you about something that is true or happening now. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15444\",\n    \"image\": \"15444\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted for climbing trees?\\nContext: Vervet monkeys live in the grasslands and forests of Africa. They climb trees to find food and shelter. The 's hands and feet are adapted for climbing trees.\\nFigure: vervet monkey.\\nOptions: (A) lama (B) red-shanked douc\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the vervet monkey.\\nThe vervet monkey has long fingers and toes. It is adapted for climbing trees. The vervet monkey uses its long fingers and toes to hold on to branches while climbing.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe red-shanked douc has long fingers and toes. It is adapted for climbing trees.\\nThe lama has four hoofed feet. It is not adapted for climbing trees. The lama uses its feet to walk and run. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15445\",\n    \"image\": \"15445\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a scarlet rosemallow plant produced by this cross will have white flowers?\\nContext: In a group of scarlet rosemallow plants, some individuals have red flowers and others have white flowers. In this group, the gene for the flower color trait has two alleles. The allele for white flowers (f) is recessive to the allele for red flowers (F).\\nThis Punnett square shows a cross between two scarlet rosemallow plants.\\nOptions: (A) 4/4 (B) 0/4 (C) 3/4 (D) 1/4 (E) 2/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is E.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15446\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Last year, 50,000 people lived in the city of Fairview. But since then, 8,000 people have moved away. What probably happened to the overall supply of houses for sale in Fairview?\\nContext: N/A\\nOptions: (A) The supply probably went up. (B) The supply probably went down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. The population of Fairview fell by 8,000 people. Many of the people who have left are probably trying to sell their houses. Since more people are trying to sell their houses, the number of suppliers of houses for sale in Fairview has gone up. So, the supply of houses for sale probably went up, too. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15450\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAs Will sat down on the rickety old chair, it abruptly collapsed beneath him.\\nContext: N/A\\nOptions: (A) simple (B) compound-complex (C) complex (D) compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is complex. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction as.\\nAs Will sat down on the rickety old chair, it abruptly collapsed beneath him. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15457\",\n    \"image\": \"15457\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of purple particles?\\nContext: The diagram below is a model of two solutions. Each purple ball represents one particle of solute.\\nOptions: (A) Solution A (B) neither; their concentrations are the same (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the purple particles represent the solute. To figure out which solution has a higher concentration of purple particles, look at both the number of purple particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of purple particles per milliliter.\\nSolution A has more purple particles per milliliter. So, Solution A has a higher concentration of purple particles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15458\",\n    \"image\": \"15458\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Mexico?\\nContext: N/A\\nOptions: (A) Albuquerque (B) Santa Fe (C) Helena (D) Juneau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Santa Fe is the capital of New Mexico. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15461\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) When Emma parked her scooter next to Mr. Chang's car, she noticed that the scooter had a flat tire. (B) When Emma parked her scooter next to Mr. Chang's car, she noticed that it had a flat tire.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it could refer to her scooter or Mr. Chang's car.\\nThe first answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the scooter.\\nWhen Emma parked her scooter next to Mr. Chang's car, she noticed that the scooter had a flat tire. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15463\",\n    \"image\": \"15463\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Antarctica (B) Asia (C) Africa (D) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Africa. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15475\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nYesterday's tennis match was a classic David and Goliath story, with Hanson playing against his former team captain, Ernesto.\\nContext: N/A\\nOptions: (A) the Bible (B) a poem\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion David and Goliath is the Bible.\\nIn the Bible, a young man named David slays Goliath, a giant and champion warrior, using nothing more than a sling and a stone.\\nThe allusion David and Goliath means involving unequal rivals. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15478\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a paintbrush?\\nContext: Select the better estimate.\\nOptions: (A) 25 centimeters (B) 25 kilometers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a paintbrush is 25 centimeters.\\n25 kilometers is too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15486\",\n    \"image\": \"15486\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Haiti (B) Jamaica (C) Cuba (D) The Bahamas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Haiti.\\nDoes Haiti have any territorial disputes?\\nHaiti claims to own Navassa Island, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nNavassa Island is also claimed by the United States. The United States claimed the island in 1857 and has controlled it since then. But Haiti considers the island part of its territory and has protested the United States' claim since this time. No one lives on the island. Today, it is a nature preserve. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15487\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the solid.\\nContext: N/A\\nOptions: (A) coffee (B) wet paint (C) chalk\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid.\\nWhen matter is a gas, it spreads out to fill a space.\\nMany gases are invisible. So, you can\\u2019t see them. Air is a gas. Wet paint is a liquid. A liquid takes the shape of any container it is in. If you pour wet paint out of a can, the paint will change shape. But the wet paint will still take up the same amount of space.\\nChalk is a solid. You can easily break chalk into pieces. But each piece will still have a size and shape of its own.\\nCoffee is a liquid. A liquid takes the shape of any container it is in. If you pour coffee into a different container, the coffee will take the shape of that container. But the coffee will still take up the same amount of space. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15488\",\n    \"image\": \"15488\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Pennsylvania (B) Wisconsin (C) New York (D) Florida\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15494\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the part that fills most of the space inside an animal cell.\\nContext: N/A\\nOptions: (A) vacuoles (B) cytoplasm (C) chromosomes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The cell membrane controls which substances enter and leave the cell. The cell membrane also protects the cell from the outside environment.\\nThe cytoplasm is made up of a thick liquid that fills the space inside the cell membrane. The cytoplasm supports the other cell parts and holds them in place. Many important chemical reactions happen in the cytoplasm.\\nThe mitochondria break down sugar to release energy that the cell can use.\\nThe vacuoles store nutrients, such as sugar, in the cell. Vacuoles also store water and waste.\\nThe nucleus directs cell activities. It does this by sending instructions to different parts of the cell.\\nThe chromosomes contain the information that the cell uses for growth and activities. In animal and plant cells, the chromosomes are inside the nucleus. The cytoplasm is made up of a thick liquid that fills the space between the cell membrane and the nucleus.\\nThe thick liquid is made mostly of water. It also includes other important chemicals and cell parts. The cytoplasm holds the cell's structures in place and protects them from being damaged. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15497\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Stuart's phenotype for the whisker type trait?\\nContext: In a group of Syrian hamsters, some individuals have straight whiskers and others have curved whiskers. In this group, the gene for the whisker type trait has two alleles. The allele for curved whiskers (h) is recessive to the allele for straight whiskers (H).\\nStuart is a Syrian hamster from this group. Stuart has the homozygous genotype hh for the whisker type gene.\\nOptions: (A) curved whiskers (B) straight whiskers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Stuart's genotype for the whisker type gene is hh. Stuart's genotype of hh has only h alleles. The h allele is for curved whiskers. So, Stuart's phenotype for the whisker type trait must be curved whiskers.\\nTo check this answer, consider whether Stuart's alleles are dominant or recessive. The allele for curved whiskers (h) is recessive to the allele for straight whiskers (H). This means H is a dominant allele, and h is a recessive allele.\\nStuart's genotype of hh has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Stuart's phenotype for the whisker type trait must be curved whiskers. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15506\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMabel never lies. She told me herself, so it must be true.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) ad hominem: a personal attack against one's opponent\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Mabel is telling the truth because she says she never lies. However, the \\\"evidence\\\" is just a restatement of the claim itself. This illustrates a type of logical fallacy known as circular reasoning. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15512\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Remy's phenotype for the body hair trait?\\nContext: In a group of deer mice, some individuals have a hairy body and others have a hairless body. In this group, the gene for the body hair trait has two alleles. The allele B is for a hairy body, and the allele b is for a hairless body.\\nRemy, a deer mouse from this group, has a hairy body. Remy has one allele for a hairy body and one allele for a hairless body.\\nOptions: (A) Bb (B) a hairy body\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Remy's observable version of the body hair trait is a hairy body. So, Remy's phenotype for the body hair trait is a hairy body. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15516\",\n    \"image\": \"15516\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the tide pool ecosystems in Salt Point State Park?\\nContext: Figure: Salt Point State Park.\\nSalt Point State Park is in northern California. The park is on the coast of the Pacific Ocean. It has many tide pool ecosystems.\\nOptions: (A) It has daily flooding and draining of seawater. It also has water that is rich in nutrients. (B) It has daily flooding and draining of seawater. It also has water that is poor in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A tide pool is a type of ecosystem. Tide pool ecosystems have the following features: daily flooding and draining of seawater, water that is rich in nutrients, and many different types of organisms. So, the tide pool ecosystems in Salt Point State Park have daily flooding and draining of seawater. They also have water that is rich in nutrients. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15524\",\n    \"image\": \"15524\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Portland (B) Nampa (C) Columbus (D) Boise\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15525\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the personification in this text suggest?\\nThe trawler plunged into the angry swells of the dark, furious sea.\\n\\u2014Robert Ludlum, The Bourne Identity\\nContext: N/A\\nOptions: (A) The sea was fierce. (B) The sea was deep in color.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind. The text uses personification, giving human characteristics to nonhuman things.\\nAngry and furious suggest that the sea was fierce. Those words describe an emotionally intense person. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15528\",\n    \"image\": \"15528\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's body is better adapted for protection against a predator with sharp teeth?\\nContext: Painted turtles are adapted to protect themselves from a predator with sharp teeth. They have hard outer shells covering their bodies. A can pull its head and legs into its shell when attacked.\\nFigure: painted turtle.\\nOptions: (A) eastern rat snake (B) nautilus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the painted turtle.\\nThe painted turtle has a hard outer shell. Its body is adapted for protection against a predator with sharp teeth. The hard shell makes it difficult for predators to hurt or kill the painted turtle.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe nautilus has a hard outer shell. Its body is adapted for protection against a predator with sharp teeth.\\nThe eastern rat snake has soft scales covering its skin. Its body is not adapted for protection against predators with sharp teeth. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15530\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Only a fool would travel all the way to China to see rocks. (B) The Stone Forest in southern China is a cluster of ancient limestone pillars.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true. Facts can be proved by observing, measuring, or studying information.\\nThe flag of the United States has 13 stripes.\\nThis is a fact. It can be proved by looking at the flag and counting the number of stripes.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nThe flag of the United States is easy to draw.\\nThis is an opinion. People may have different opinions about what makes a flag \\\"easy\\\" to draw. The second sentence states a fact.\\nThe Stone Forest in southern China is a cluster of ancient limestone pillars.\\nIt can be proved by reading a travel guide about China.\\nThe first sentence states an opinion.\\nOnly a fool would travel all the way to China to see rocks.\\nOnly a fool shows what a person believes, thinks, or feels. Another person might have a different opinion about what is foolish. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15534\",\n    \"image\": \"15534\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Eastern Colorado.\\nEastern Colorado is part of the Great Plains. On October 19, 1988, a thunderstorm near the town of La Junta produced winds of 63 miles per hour.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nEastern Colorado is part of the Great Plains. On October 19, 1988, a thunderstorm near the town of La Junta produced winds of 63 miles per hour.\\nThe underlined part of the passage tells you about the wind speed in Eastern Colorado on October 19, 1988. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15541\",\n    \"image\": \"15541\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Tonga (B) Fiji (C) Nauru (D) Samoa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Samoa. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15546\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complex sentence?\\nContext: N/A\\nOptions: (A) You will attract more customers if you extend the sale through the weekend. (B) The barber and his brother opened their shop in Harlem more than thirty years ago.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The first sentence is the complex sentence. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction if.\\nYou will attract more customers if you extend the sale through the weekend. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15552\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nIn this chemical reaction, nitrous oxide is a ().\\nContext: This passage describes a chemical reaction. Read the passage. Then, follow the instructions below.\\nTo help relieve pain during a dental visit, a dentist may give a patient nitrous oxide. Nitrous oxide is made in factories by carefully heating ammonium nitrate. At 170\\u00b0C, ammonium nitrate breaks down and forms a mixture of nitrous oxide gas and water vapor. After the mixture is collected, the water vapor is separated from the nitrous oxide gas.\\nOptions: (A) reactant (B) product\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A chemical change occurs when new substances are formed from existing substances. This process is called a chemical reaction.\\nIn a chemical reaction, one or more substances change into one or more different substances. During the reaction, the atoms of the original substances are rearranged to form other substances.\\nThe original substances in a chemical reaction are called reactants. These substances react, or go through a chemical change.\\nThe substances that are formed in a chemical reaction are called products. These substances are produced by the chemical reaction.\\nSo, in a chemical reaction, reactants go through a chemical change to form products. Read the underlined text carefully. Look for information about what happens to nitrous oxide in this chemical reaction.\\nTo help relieve pain during a dental visit, a dentist may give a patient nitrous oxide. Nitrous oxide is made in factories by carefully heating ammonium nitrate. At 170\\u00b0C, ammonium nitrate breaks down and forms a mixture of nitrous oxide gas and water vapor. After the mixture is collected, the water vapor is separated from the nitrous oxide gas.\\nThe underlined text tells you that nitrous oxide forms when ammonium nitrate breaks down. Because nitrous oxide is produced by this chemical reaction, nitrous oxide is a product. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15556\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the most thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a crayon at a temperature of 91\\u00b0F (B) a crayon at a temperature of 53\\u00b0F (C) a crayon at a temperature of 41\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. All three crayons have the same mass but different temperatures. Since the 91\\u00b0F crayon is the hottest, it has the most thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15560\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nThe thing that makes Santiago stand out as a remarkable cellist is that he's a marvelous musician who plays the cello splendidly.\\nContext: N/A\\nOptions: (A) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences (B) circular reasoning: an argument that supports a claim with the claim itself (C) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Santiago is a remarkable cellist because he plays the cello well. However, the \\\"evidence\\\" is just a restatement of the claim itself. This illustrates a type of logical fallacy known as circular reasoning. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15562\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Brian had to stay home with his brother because he wasn't feeling well. (B) Brian's brother wasn't feeling well, so Brian had to stay home with him.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun he could refer to Brian or his brother.\\nBrian had to stay home with his brother because he wasn't feeling well.\\nThe first answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nBrian's brother wasn't feeling well, so Brian had to stay home with him. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15569\",\n    \"image\": \"15569\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Dhaka.\\nDhaka is the capital of Bangladesh, a country in southern Asia. The city is humid most days of the year.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nDhaka is the capital of Bangladesh, a country in southern Asia. The city is humid most days of the year.\\nThe underlined part of the passage tells you about the usual pattern of humidity in Dhaka. This passage does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15573\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word random in its traditional sense?\\nContext: N/A\\nOptions: (A) At the grocery store, Jayla hastily grabbed fruits and vegetables at random, filling her shopping cart with a hodgepodge of food. (B) Jayla made a random trip to the grocery store, though her kitchen was already stocked with a hodgepodge of food.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses random in its traditional sense: made or occurring without a definite pattern.\\nAt the grocery store, Jayla hastily grabbed fruits and vegetables at random, filling her shopping cart with a hodgepodge of food.\\nThe second text uses random in its nontraditional sense: odd or out of place.\\nJayla made a random trip to the grocery store, though her kitchen was already stocked with a hodgepodge of food.\\nMost style guides recommend to avoid using the nontraditional sense of the word random because it is generally considered incorrect. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15575\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe Dodson family is going to spend two weeks in Ocean City, but for Mateo it will be a working vacation, since he'll be checking in with the office every day.\\nContext: N/A\\nOptions: (A) euphemism (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nWorking vacation is a contradiction, because going on a vacation implies that you are taking a break from work. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15576\",\n    \"image\": \"15576\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Kenji's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nKenji was an aerospace engineer who was developing a parachute for a spacecraft that would land on Mars. He needed to add a vent at the center of the parachute so the spacecraft would land smoothly. However, the spacecraft would have to travel at a high speed before landing. If the vent was too big or too small, the parachute might swing wildly at this speed. The movement could damage the spacecraft.\\nSo, to help decide how big the vent should be, Kenji put a parachute with a 1 m vent in a wind tunnel. The wind tunnel made it seem like the parachute was moving at 200 km per hour. He observed the parachute to see how much it swung.\\nFigure: a spacecraft's parachute in a wind tunnel.\\nOptions: (A) if the spacecraft was damaged when using a parachute with a 1 m vent going 200 km per hour (B) how steady a parachute with a 1 m vent was at 200 km per hour (C) whether a parachute with a 1 m vent would swing too much at 400 km per hour\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15585\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a movie?\\nContext: N/A\\nOptions: (A) Life of Pi (B) Life of pi\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The word of is not important, so it should not be capitalized.\\nThe correct title is Life of Pi. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15591\",\n    \"image\": \"15591\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Scarborough Marsh ecosystem?\\nContext: Figure: Scarborough Marsh.\\nScarborough Marsh is a wetland ecosystem in southern Maine.\\nOptions: (A) It has land that is covered with water during most of the year. It also has other water ecosystems nearby. (B) It has land that is covered with water during most of the year. It also has soil that is poor in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A wetland is a type of ecosystem. Wetlands have the following features: land that is covered with water during most of the year, soil that is rich in nutrients, and other water ecosystems nearby. So, Scarborough Marsh has land that is covered with water during most of the year. It also has other water ecosystems nearby. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15594\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nI don't feel like going into it, if you want to know the truth. My parents would have about two hemorrhages apiece if I told anything pretty personal about them.\\n\\u2014J. D. Salinger, The Catcher in the Rye\\nContext: N/A\\nOptions: (A) anaphora (B) hyperbole\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nWould have about two hemorrhages apiece is an exaggeration, since the speaker's parents will not literally hemorrhage just because he talks about them. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15595\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nJulian's leaving his job? That's old news. He's been planning that for months.\\nContext: N/A\\nOptions: (A) euphemism (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nOld news is a contradiction, because news is recent information. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15596\",\n    \"image\": \"15596\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's legs are also adapted for wading?\\nContext: Flamingos live near marshes, rivers, and oceans. They eat small crustaceans that live in shallow water. Flamingos get their food by walking through water, or wading.\\nThe 's legs are adapted for wading. They are lightweight and keep the bird's body above the water.\\nFigure: flamingo.\\nOptions: (A) African fish eagle (B) great egret\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nArms, legs, flippers, and wings are different types of limbs. The type of limbs an animal has is an example of an adaptation. Animals' limbs can be adapted in different ways. For example, long legs might help an animal run fast. Flippers might help an animal swim. Wings might help an animal fly. Look at the picture of the flamingo.\\nLong legs help the flamingo keep its body above the surface of the water while wading. Thin legs are easier to move through the water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe great egret has long, thin legs. Its legs are adapted for wading.\\nThe African fish eagle has short legs. Its legs are not adapted for wading. The African fish eagle uses its legs to walk and perch. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15601\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a full bag of groceries?\\nContext: Select the best estimate.\\nOptions: (A) 8 tons (B) 8 pounds (C) 8 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a full bag of groceries is 8 pounds.\\n8 ounces is too light and 8 tons is too heavy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15602\",\n    \"image\": \"15602\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the air from a hair dryer a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a gas (B) a solid (C) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. The air from a hair dryer is a gas. A gas expands to fill a space.\\nA hair dryer uses a fan to blow warm air out. When the air leaves the hair dryer, the air expands to fill a much large space. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15606\",\n    \"image\": \"15606\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Why do adult cats meow?\\nContext: Read the text about cat meows.\\nWhile kittens meow to their mothers, they stop once they are old enough to take care of themselves. At that point, cats use smell, touch, and body language to talk to each other. So if adult cats aren't making noise for each other, why do cats meow? Cats meow to talk with their humans!\\nIf you are a cat owner, you may be interested in understanding your cat's meows. Different meows can have distinct meanings. A short, high squeak or chirp is a cheerful hello. A louder and longer meow is a cat's way of saying \\\"Please?\\\" or \\\"Let me out!\\\" An even longer and louder meow is your cat's way of demanding something, like \\\"Food! Now!\\\" Of course, the best cat sound to many cat owners is a low, rumbling purr that comes from a happy cat.\\nOptions: (A) to act like kittens (B) to talk to other cats (C) to talk to people\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the text in bold below. It tells you why adult cats meow.\\nWhile kittens meow to their mothers, they stop once they are old enough to take care of themselves. At that point, cats use smell, touch, and body language to talk to each other. So if adult cats aren't making noise for each other, why do cats meow? Cats meow to talk with their humans! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15614\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) A bunch of banks are about to start charging higher checking account fees. (B) Many banks will begin imposing higher fees for checking accounts.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses conversational language (a bunch of).\\nThe first sentence uses formal language in place of the conversational language, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15623\",\n    \"image\": \"15623\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is Daphnia pulex made up of one cell?\\nContext: This organism is Daphnia pulex. It is a member of the animal kingdom.\\nDaphnia pulex lives in lakes and ponds. D. pulex can sense chemicals that its predators release into the water. When D. pulex senses that a predator is nearby, it can grow sharp spikes on its head! These spikes make D. pulex harder to eat.\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Daphnia pulex is an animal. Animals are made up of many cells. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15627\",\n    \"image\": \"15627\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) blue (B) stretchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA stretchy object gets longer when you pull on it. The bubble gum is stretchy.\\nBlue is a color.\\nThis color is blue. The bubble gum is not blue. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15630\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that Caleb's mass did not change.\\nThe gravitational potential energy stored between Caleb and Earth () as he rode the escalator.\\nContext: Read the text about a person in motion.\\nCaleb rode an escalator from the first floor to the second floor of a shopping mall.\\nOptions: (A) increased (B) stayed the same (C) decreased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between Caleb and the center of Earth changed.\\nThe second floor is higher than the first floor. As he rode the escalator toward the second floor, the distance between Caleb and the center of Earth increased. So, the gravitational potential energy stored between Caleb and Earth increased as he rode the escalator. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15632\",\n    \"image\": \"15632\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this jacket made of?\\nContext: N/A\\nOptions: (A) metal (B) clay\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the jacket.\\nThe jacket is made of two different materials. The buckles are made of metal. The rest of the jacket is made of leather.\\nNot all shiny jackets are made of leather. Some are made from other fabrics designed to look like leather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15636\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one true statement.\\nContext: N/A\\nOptions: (A) Lysosomes are the sites where ribosomes build proteins in animal cells. (B) The endoplasmic reticulum is outside the nucleus in an animal cell. (C) The cell wall stores nutrients, water, and waste in a plant cell.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15637\",\n    \"image\": \"15637\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) New Mexico (B) Missouri (C) Virginia (D) Pennsylvania\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. Pennsylvania is farthest north. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15642\",\n    \"image\": \"15642\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Solomon Islands (B) Australia (C) the Marshall Islands (D) Vanuatu\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Solomon Islands. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15645\",\n    \"image\": \"15645\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Fiji (B) Solomon Islands (C) Australia (D) the Marshall Islands\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Solomon Islands. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15646\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nThe Small Dark Spot is the name of a cyclone that occurred on the planet Neptune.\\nContext: N/A\\nOptions: (A) declarative (B) exclamatory (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells about something, and it ends with a period. It is a declarative sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15651\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) \\\"With an Open Heart\\\" (B) ***With an Open Heart***\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A book should be in italics.\\nThe correct title is **With an Open Heart**. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15652\",\n    \"image\": \"15652\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is smaller when there is a greater distance between the magnets. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nDistance affects the magnitude of the magnetic force. When there is a greater distance between magnets, the magnitude of the magnetic force between them is smaller.\\nThere is a greater distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is smaller in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15658\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) I followed Vicky's recipe, but my chicken pot pie tasted nothing like hers. (B) The famous Venus de Milo statue was found on Milos, a volcanic Greek island in the Aegean Sea.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the compound sentence. It is made up of two independent clauses joined by the coordinating conjunction but.\\nI followed Vicky's recipe, but my chicken pot pie tasted nothing like hers. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15662\",\n    \"image\": \"15662\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which i in column 4?\\nContext: N/A\\nOptions: (A) the police department (B) the theater (C) the grocery store (D) the fire department\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A grid is made up of lines of squares. They are organized in rows and columns. A grid can help you use a map.\\nA row is a line of squares that goes from side to side. Rows are marked with letters.\\nA column is a line of squares that goes up and down. Columns are marked with numbers. The grocery store is in column 4. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15665\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) My uncle just moved to Italy, so he will need to learn Italian. (B) The cook tastes too much salt in the soup.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction so.\\nMy uncle just moved to Italy, so he will need to learn Italian. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15668\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is this a run-on sentence?\\nIn the early 1960s, Alan and Doris Litman, a couple in Pittsburgh, invented mace (a nontoxic tear gas), after one of Doris's colleagues was mugged, the Litmans wanted to create a safe product that women could use in self-defense.\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA run-on sentence is formed when two sentences are run together, joined by just a comma or by no punctuation at all. If only a comma is used, the run-on is called a comma splice.\\nThe band I'm in has been rehearsing daily, we have a concert in two weeks.\\nThe band I'm in has been rehearsing daily we have a concert in two weeks.\\nThere are several ways to fix a run-on sentence:\\nUse stronger punctuation, such as a period or a semicolon.\\nThe band I'm in has been rehearsing daily. We have a concert in two weeks.\\nThe band I'm in has been rehearsing daily; we have a concert in two weeks.\\nUse a comma and a coordinating conjunction to create a compound sentence. Coordinating conjunctions include and, but, or, and so.\\nThe band I'm in has been rehearsing daily, and we have a concert in two weeks.\\nUse a subordinating conjunction or a relative pronoun to create a complex sentence. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, and whose.\\nThe band I'm in has been rehearsing daily since we have a concert in two weeks. This is a run-on sentence. It is a comma splice formed from two sentences run together, joined by just a comma.\\nIn the early 1960 s, Alan and Doris Litman, a couple in Pittsburgh, invented mace (a nontoxic tear gas), after one of Doris's colleagues was mugged, the Litmans wanted to create a safe product that women could use in self-defense.\\nHere is one way to fix the run-on sentence:\\nIn the early 1960 s, Alan and Doris Litman, a couple in Pittsburgh, invented mace (a nontoxic tear gas). After one of Doris's colleagues was mugged, the Litmans wanted to create a safe product that women could use in self-defense. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15670\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change better matches the sentence?\\nA grassland catches fire and burns.\\nContext: N/A\\nOptions: (A) wildfire (B) erosion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15675\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Rachel acquired this trait?\\nContext: Read the description of a trait.\\nRachel knows how to knit sweaters.\\nOptions: (A) Rachel knits sweaters using cotton, wool, and other types of yarn. (B) Rachel learned how to knit in an after school program.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15684\",\n    \"image\": \"15684\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Denver (B) Indianapolis (C) Nampa (D) Boise\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15696\",\n    \"image\": \"15696\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Palau (B) Papua New Guinea (C) the Marshall Islands (D) the Federated States of Micronesia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Federated States of Micronesia. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15701\",\n    \"image\": \"15701\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Hawaii?\\nContext: N/A\\nOptions: (A) Boise (B) Hilo (C) Honolulu (D) Santa Fe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Honolulu is the capital of Hawaii. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15702\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe audience at the 2012 Olympics cheered as, with Herculean effort, Kim Un-Guk of North Korea set an Olympic record by lifting a 153-kilogram weight.\\nContext: N/A\\nOptions: (A) alliteration (B) allusion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses an allusion, a brief reference to someone or something well known.\\nHerculean alludes to Hercules, a hero in Greek mythology who was known for his strength and courage. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15705\",\n    \"image\": \"15705\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample B (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample A has more mass than each particle in sample B. The particles in sample A also have a higher average speed than the particles in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15706\",\n    \"image\": \"15706\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a T-shirt a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a liquid (B) a gas (C) a solid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids are thicker than others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. The oxygen you breathe is a gas. The helium in a balloon is also a gas. A T-shirt is a solid. You can fold a T-shirt. But it will still have a size and shape of its own. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15710\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Casper's phenotype for the Tobiano patterning trait?\\nContext: This passage describes the Tobiano patterning trait in horses:\\n\\nIn a group of horses, some individuals have Tobiano patterning and others do not. In this group, the gene for the Tobiano patterning trait has two alleles. The allele for having Tobiano patterning (B) is dominant over the allele for not having Tobiano patterning (b).\\nCasper is a horse from this group. Casper has the homozygous genotype BB for the Tobiano patterning gene.\\nOptions: (A) not having Tobiano patterning (B) having Tobiano patterning\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Casper's genotype for the Tobiano patterning gene is BB. Casper's genotype of BB has only B allelles. The B allele is for having Tobiano patterning. So, Casper's phenotype for the Tobiano patterning trait must be having Tobiano patterning.\\nTo check this answer, consider whether Casper's alleles are dominant or recessive. The allele for having Tobiano patterning (B) is dominant over the allele for not having Tobiano patterning (b). This means B is a dominant allele, and b is a recessive allele.\\nCasper's genotype of BB has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Casper's phenotype for the Tobiano patterning trait must be having Tobiano patterning. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15712\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Riding in a hot-air balloon is more exciting than flying in a plane. (B) In hot-air balloons, passengers ride in baskets.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true.\\nThe month of July has more days than the month of June.\\nThis is a fact. It can be proved by looking at a calendar and counting the number of days in each month.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nJuly is a better month than June for camping.\\nThis is an opinion. People may have different opinions about which month is \\\"better\\\" for camping. The first sentence states a fact.\\nIn hot-air balloons, passengers ride in baskets.\\nIt can be proved by looking at a picture of hot-air balloons.\\nThe second sentence states an opinion.\\nRiding in a hot-air balloon is more exciting than flying in a plane.\\nMore exciting shows what a person believes, thinks, or feels. Another person might have a different opinion about which one is more exciting. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15718\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear Devon, (B) dear Devon,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Devon is capitalized because it is a proper noun. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15725\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which cookie has less thermal energy?\\nContext: Two cookies are identical except for their temperatures.\\nOptions: (A) the hotter cookie (B) the colder cookie\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature.\\nWhat happens if the amount of matter changes? A 1-kilogram brick at 70\\u00b0F has half as much thermal energy as a 2-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the smaller brick has half as many atoms. So, it has half as much thermal energy. The two cookies are made of the same material and have the same mass. So, the colder cookie has less thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15737\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word ironic in its traditional sense?\\nContext: N/A\\nOptions: (A) Last winter, Clarence took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, a rare snowstorm happened to hit Florida that week. (B) Last winter, Clarence took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, he just missed a few of his college friends, who had been in Florida the previous week.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses ironic in its traditional sense: contrary to what was intended, often in an amusing way. It's ironic because Clarence tried to get away from the snow but found himself in a snowstorm regardless.\\nLast winter, Clarence took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, a rare snowstorm happened to hit Florida that week.\\nThe first text uses ironic in its nontraditional sense: marked by coincidence. It was a coincidence that Clarence's friends were in Florida the week before.\\nLast winter, Clarence took a vacation to Florida to escape Boston's cold, snowy weather. In an ironic twist, he just missed a few of his college friends, who had been in Florida the previous week.\\nMost style guides recommend to avoid using the nontraditional sense of the word ironic because it is generally considered incorrect. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15740\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nshack - spade\\nContext: N/A\\nOptions: (A) squirrel (B) source\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince source is between the guide words shack - spade, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15749\",\n    \"image\": \"15749\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) Fiji (C) Tuvalu (D) Solomon Islands\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Fiji. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15763\",\n    \"image\": \"15763\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Arizona?\\nContext: N/A\\nOptions: (A) Juneau (B) Phoenix (C) Provo (D) Newport\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Phoenix is the capital of Arizona. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15765\",\n    \"image\": \"15765\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Kansas?\\nContext: N/A\\nOptions: (A) Bismarck (B) Indianapolis (C) Topeka (D) Burlington\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Topeka is the capital of Kansas. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15767\",\n    \"image\": \"15767\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two bottles of soda were sitting on a porch on a hot day. The two bottles were identical, except that one bottle was made of brown glass and one bottle was made of clear glass. This table shows how the temperature of each bottle changed over 25minutes.\\nOptions: (A) the surroundings . . . each bottle (B) each bottle . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each bottle increased, which means that the thermal energy of each bottle increased. So, thermal energy was transferred from the surroundings to each bottle. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15772\",\n    \"image\": \"15772\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Shivani and Austin trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nShivani and Austin open their lunch boxes in the school cafeteria. Neither Shivani nor Austin got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nShivani's lunch Austin's lunch\\nOptions: (A) Austin can trade his almonds for Shivani's tomatoes. (B) Shivani can trade her tomatoes for Austin's broccoli. (C) Austin can trade his broccoli for Shivani's oranges. (D) Shivani can trade her tomatoes for Austin's carrots.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nShivani wants broccoli. Austin wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15787\",\n    \"image\": \"15787\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample B has more mass than each particle in sample A. The particles in sample B also have a higher average speed than the particles in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15790\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the euphemism in this text suggest?\\nThe Cohen family donated a number of gently loved books and toys to a local shelter.\\nContext: N/A\\nOptions: (A) The items were precious. (B) The items were not new.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe euphemism gently loved means the items were not new. Gently loved is a nicer way of referring to used items. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15791\",\n    \"image\": \"15791\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bird's beak is also adapted to catch insects?\\nContext: s eat insects and other small invertebrates. The shape of the 's beak is adapted to catch insects.\\nFigure: European nightjar.\\nOptions: (A) hanging parrot (B) sand martin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of a bird's beak is one example of an adaptation. Birds' beaks can be adapted in different ways. For example, a sharp hooked beak might help a bird tear through meat easily. A short, thick beak might help a bird break through a seed's hard shell. Birds that eat similar food often have similar beaks. Look at the picture of the European nightjar.\\nA short, thin beak is light and easy to move. The European nightjar uses its beak to grab fast-moving insects while flying.\\nNow look at each bird. Figure out which bird has a similar adaptation.\\nThe sand martin has a short, thin beak. Its beak is adapted to catch insects.\\nThe hanging parrot has a small hooked beak. Its beak is not adapted to catch insects. The hanging parrot uses its beak to eat fruit and seeds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15794\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nrust forming on a metal gate\\nburning food on a stove\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are only physical changes. (C) Both are caused by cooling. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nRust forming on a metal gate is a chemical change. As the gate rusts, the metal turns into a different type of matter called rust. Rust is reddish-brown and falls apart easily.\\nBurning food on a stove is a chemical change. When the food burns, the type of matter in it changes. The food turns black and gives off smoke.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBurning is caused by heating. But rust forming on a metal gate is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15799\",\n    \"image\": \"15799\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) Africa (C) Asia (D) Antarctica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Asia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15807\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nmixing sand and water\\nsediment settling to the bottom of a muddy puddle\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by heating. (C) Both are caused by cooling. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nMixing sand and water is a physical change. Adding water makes the sand wet. But both the sand and water are still made of the same type of matter as before.\\nLoose matter such as sand and dirt is called sediment. Sediment settling to the bottom of a muddy puddle is a physical change.\\nThe sediment sinks, and the water above becomes clearer. This separates the water from the sediment. But separating a mixture does not form a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15810\",\n    \"image\": \"15810\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nIodine is ().\\nContext: The model below represents a molecule of iodine. odine is found in some types of disinfectants.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. Use the model to determine whether iodine is an elementary substance or a compound.\\nStep 1: Interpret the model.\\nIn the ball-and-stick model shown above, both of the balls are the same color:\\n. The legend shows that dark purple represents the chemical element with the atomic symbol I. So, the model shows you that a molecule of iodine is composed of one chemical element.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that iodine is composed of only one chemical element. So, iodine is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15813\",\n    \"image\": \"15813\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Indiana?\\nContext: N/A\\nOptions: (A) Des Moines (B) Burlington (C) Fort Wayne (D) Indianapolis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Indianapolis is the capital of Indiana. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15815\",\n    \"image\": \"15815\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Virginia?\\nContext: N/A\\nOptions: (A) Jefferson City (B) Richmond (C) Jackson (D) Norfolk\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Richmond is the capital of Virginia. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15821\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMayor Stanley wants to create more bicycle lanes in Fairview. However, many citizens of Fairview live far from work. It would not be realistic to force us to give up our cars and bike everywhere.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) straw man: a misrepresentation of an opponent's position that makes it easier to argue against (C) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Mayor Stanley wants people to give up their cars. However, this misrepresents Mayor Stanley's argument. Mayor Stanley only wants to create more bike lanes. This illustrates a type of logical fallacy known as a straw man. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15826\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nFair river! In thy bright, clear flow\\nOf crystal, wandering water,\\nThou art an emblem of the glow\\nOf beauty . . . \\u2014Edgar Allan Poe, \\\"To the River\\\"\\nContext: N/A\\nOptions: (A) apostrophe (B) antithesis\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses apostrophe, a direct address to an absent person or a nonhuman entity.\\nFair river! is a direct address to a river, a nonhuman entity. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15829\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) far (B) her (C) star\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the same sound.\\nThe words meet and treat also rhyme. They both end with the same sound, even though the sound has two different spellings.\\nThe words tip and meet don't rhyme. They end with different sounds. The words far and star rhyme. They both end with the ar sound.\\nThe word her does not rhyme. It ends with a different sound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15831\",\n    \"image\": \"15831\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of pink particles?\\nContext: The diagram below is a model of two solutions. Each pink ball represents one particle of solute.\\nOptions: (A) Solution A (B) Solution B (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the pink particles represent the solute. To figure out which solution has a higher concentration of pink particles, look at both the number of pink particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of pink particles per milliliter.\\nSolution A and Solution B have the same number of pink particles per milliliter. So, their concentrations are the same. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15835\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Caleb inherited this trait?\\nContext: Read the description of a trait.\\nCaleb has blond hair.\\nOptions: (A) Caleb's mother cuts his hair every month. (B) Caleb's parents have blond hair. They passed down this trait to Caleb.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15841\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this pea plant's phenotype for the pea shape trait?\\nContext: In a group of pea plants, some individuals have round peas and others have wrinkled peas. In this group, the gene for the pea shape trait has two alleles. The allele E is for round peas, and the allele e is for wrinkled peas.\\nA certain pea plant from this group has wrinkled peas. This plant has two alleles for wrinkled peas.\\nOptions: (A) wrinkled peas (B) ee\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. The pea plant's observable version of the pea shape trait is wrinkled peas. So, the plant's phenotype for the pea shape trait is wrinkled peas. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15850\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nI can't believe this is Luna's first time seeing the Pacific Ocean!\\nContext: N/A\\nOptions: (A) interrogative (B) exclamatory (C) declarative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells about something, but it shows surprise and ends with an exclamation point. It is an exclamatory sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15853\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\n\\\"Sleeping through the rooster's crowing was no problem,\\\" Jasper joked with a yawn.\\nContext: N/A\\nOptions: (A) Jasper finds roosters amusing. (B) Jasper slept poorly.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nSleeping through the rooster's crowing was no problem ironically suggests that Jasper slept poorly. Jasper was tired, so the rooster's crowing was clearly a problem. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15857\",\n    \"image\": \"15857\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is smaller in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is smaller when there is a greater distance between the magnets. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nDistance affects the magnitude of the magnetic force. When there is a greater distance between magnets, the magnitude of the magnetic force between them is smaller.\\nThere is a greater distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is smaller in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15858\",\n    \"image\": \"15858\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Delaware (B) New Hampshire (C) Michigan (D) Pennsylvania\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15866\",\n    \"image\": \"15866\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) blue (B) hard\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA hard object keeps its shape when you squeeze it. The slippers are not hard.\\nBlue is a color.\\nThis color is blue. The slippers are blue. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15867\",\n    \"image\": \"15867\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the bubble map, which statement is true?\\nContext: This bubble map shows information about different kinds of marsupials.\\nOptions: (A) Kangaroos eat grass. (B) Kangaroos sleep during the day.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A graphic organizer is a chart or picture that shows how ideas, facts, or topics are related to one another.\\nWhen you read, look for graphic organizers included in the text. You can use these images to find key information. You can also create your own graphic organizers with information that you've read. Doing this can help you think about the ideas in the text and easily review them.\\nWhen you write, you can use graphic organizers to organize your thoughts and plan your writing. A bubble map uses lines to connect things that are related. This bubble map shows information about different kinds of marsupials.\\nKangaroos is directly connected to eat grass. This tells you that kangaroos eat grass. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15872\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nThe right hemisphere of the human brain typically controls muscle movement on the left side of the body.\\nContext: N/A\\nOptions: (A) compound (B) compound-complex (C) simple (D) complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is simple. It is a single independent clause.\\nThe right hemisphere of the human brain typically controls muscle movement on the left side of the body. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15874\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nmelting wax\\nknitting yarn into a scarf\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by heating. (C) Both are only physical changes. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nMelting wax is a change of state. So, it is a physical change. The wax changes from solid to liquid. But it is still made of the same type of matter.\\nKnitting yarn into a scarf is a physical change. The yarn gets a different shape, but it is still made of the same type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nWax melting is caused by heating. But knitting yarn is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15885\",\n    \"image\": \"15885\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) bouncy (B) blue (C) transparent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nYou can see clearly through a transparent object. None of the objects are transparent.\\nA bouncy object will bounce back from the floor if you drop it. The jeans and the yarn pom pom are not bouncy.\\nBlue is a color.\\nThis color is blue. All three objects are blue.\\nThe property that all three objects have in common is blue. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15891\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\n\\\"This mattress is as soft as concrete,\\\" Bob complained as he tested the bed in his hotel room.\\nContext: N/A\\nOptions: (A) personification (B) verbal irony\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAs soft as concrete shows verbal irony because concrete is not soft. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15900\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbreaking a ceramic plate\\nwater vapor condensing on a bathroom mirror\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are only physical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBreaking a ceramic plate is a physical change. The plate gets broken into pieces. But each piece is still made of the same type of matter.\\nWater vapor condensing on a bathroom mirror is a change of state. So, it is a physical change. The water changes state from gas in the air to liquid water on the mirror. But the water vapor and the liquid water are both made of water.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nWater vapor condensing is caused by cooling. But breaking a ceramic plate is not. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15902\",\n    \"image\": \"15902\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of South Carolina?\\nContext: N/A\\nOptions: (A) Charleston (B) Lexington (C) Columbia (D) Topeka\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbia is the capital of South Carolina. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15908\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nIsabella had her fifteen minutes when her video of kayaking with dolphins went viral.\\nContext: N/A\\nOptions: (A) Greek history (B) modern history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion fifteen minutes is modern history.\\nIn a catalog that accompanied an exhibit of his work, pop artist Andy Warhol said, \\\"In the future, everybody will be world-famous for fifteen minutes,\\\" meaning that fame would be briefly available even to those who did nothing spectacular.\\nThe allusion fifteen minutes means a temporary moment of celebrity status. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15913\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a rock.\\nContext: N/A\\nOptions: (A) Trachyte is not made by living things. It is a solid. (B) Scoria is not a pure substance. It is a solid. (C) Plastic is made in a factory. It is not a pure substance.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rocks are made of minerals. Here are some properties of rocks:\\nThey are solid.\\nThey are formed in nature.\\nThey are not made by living things.\\nThey are not pure substances. Compare the properties of each substance to the properties of rocks. Select the substance whose properties do not match those of rocks.\\nScoria is a rock.\\nPlastic is made in a factory. But all rocks are formed in nature.\\nSo, plastic is not a rock.\\nTrachyte is a rock. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15917\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following is better evidence that Ellen's kinetic energy changed?\\nContext: There are many types of energy. One type is kinetic energy, which is the energy an object has when it is moving.\\nRead the passage about a bike ride. Think about the kinetic energy of the person riding the bike.\\nEllen was training for a bike race. One afternoon, she grabbed her helmet and took her bike out to the street. She got on the bike and started to pedal, pushing hard to start moving forward.\\nOptions: (A) When Ellen started pedaling her bike, she began moving along the street. (B) When Ellen got on her bike, her feet were no longer touching the ground.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The kinetic energy of an object depends on the object's speed. So, a change in Ellen's speed is evidence of a change in her kinetic energy.\\nThis statement shows that Ellen's speed changed:\\nWhen Ellen started pedaling her bike, she began moving along the street.\\nThis statement does not show that Ellen's speed changed:\\nWhen Ellen got on her bike, her feet were no longer touching the ground. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15923\",\n    \"image\": \"15923\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Nebraska (B) Iowa (C) Kansas (D) Missouri\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Kansas. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15930\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word load on a dictionary page with the following guide words?\\nlent - livestock\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince load is not between the guide words lent - livestock, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15932\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nJackson stirred the sauce on the stove.\\nContext: N/A\\nOptions: (A) present tense (B) past tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in past tense. You can tell because it uses a past-tense verb, stirred. The verb ends in -ed and tells you about something that has already happened. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15934\",\n    \"image\": \"15934\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement best describes the average monthly precipitation in Atlanta?\\nContext: Use the graph to answer the question below.\\nOptions: (A) Atlanta has a rainy season and a dry season. (B) October has the highest average precipitation. (C) Precipitation does not change much from month to month in Atlanta.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average precipitation for each month. The average precipitation can be used to describe the climate of a location.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Atlanta, look at the graph.\\nChoice \\\"Oct\\\" is incorrect.\\nChoice \\\"Precipitation does not change much from month to month in Atlanta.\\\" is incorrect.\\nThe average monthly precipitation changes only slightly throughout the year.\\nChoice \\\"Atlanta has a rainy season and a dry season.\\\" is incorrect.\\nThe average monthly precipitation does not change much throughout the year. Every month has rain, and there is no dry season.\\nChoice \\\"October has the highest average precipitation.\\\" is incorrect.\\nMost other months have a slightly higher average precipitation than October. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15938\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Michelle acquired this trait?\\nContext: Read the description of a trait.\\nMichelle knows how to fly a plane.\\nOptions: (A) Michelle can fly a plane on cloudy days and at night. (B) Michelle is in the Air Force. She flies a plane almost every day. (C) A pilot taught Michelle how to fly a plane.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15943\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nacademy - apparent\\nContext: N/A\\nOptions: (A) affair (B) aviator\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince affair is between the guide words academy - apparent, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15950\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nSally is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years.\\nContext: N/A\\nOptions: (A) complex (B) simple (C) compound (D) compound-complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound-complex. It is made up of two independent clauses and a dependent clause. The dependent clause begins with the relative pronoun which.\\nSally is a competitive horseback rider, and she will be competing in the next World Equestrian Games, which are held every four years. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15956\",\n    \"image\": \"15956\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 1. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is smaller in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Both magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15958\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that the sled's mass did not change.\\nThe gravitational potential energy stored between the sled and Earth () as Rita rode down the hill.\\nContext: Read the text about an object in motion.\\nOn a snowy day, Rita rode her sled down a big hill.\\nOptions: (A) decreased (B) increased (C) stayed the same\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between the sled and the center of Earth changed.\\nThe bottom of the hill was lower than the point where Rita started sledding. As Rita rode toward the bottom of the hill, the distance between the sled and the center of Earth decreased. So, the gravitational potential energy stored between the sled and Earth decreased as Rita rode down the hill. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15960\",\n    \"image\": \"15960\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution A has more green particles per milliliter. So, Solution A has a higher concentration of green particles. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15967\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a paper drinking cup?\\nContext: Select the better estimate.\\nOptions: (A) 115 liters (B) 115 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a paper drinking cup is 115 milliliters.\\n115 liters is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15971\",\n    \"image\": \"15971\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Ben's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nBen put one two-inch steel nail into each of six test tubes. He added water to three of the test tubes and vinegar to the other three. In each test tube, he completely covered the nail with the same volume of liquid. Ben checked the nails for rust at the same time every day. He recorded how many days it took each nail to become completely covered in rust. Then, he compared the number of days it took nails to rust in water to the number of days it took nails to rust in vinegar.\\nFigure: a new steel nail on a pile of rusty nails.\\nOptions: (A) Do steel nails rust in fewer days when submerged in a large volume of liquid compared to a small volume? (B) Do steel nails take fewer days to rust in water compared to vinegar?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15976\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAs Matthew sat down on the rickety old chair, it abruptly collapsed beneath him.\\nContext: N/A\\nOptions: (A) simple (B) complex (C) compound (D) compound-complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is complex. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction as.\\nAs Matthew sat down on the rickety old chair, it abruptly collapsed beneath him. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15978\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has less thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 5-kilogram brick at a temperature of 385\\u00b0F (B) a 5-kilogram brick at a temperature of 390\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. The two bricks have the same mass but different temperatures. Since the 385\\u00b0F brick is colder than the 390\\u00b0F brick, it has less thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15981\",\n    \"image\": \"15981\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Illinois?\\nContext: N/A\\nOptions: (A) Louisville (B) Springfield (C) Phoenix (D) Chicago\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Springfield is the capital of Illinois. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15983\",\n    \"image\": \"15983\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which number marks the New England Colonies?\\nContext: The map below shows the Thirteen Colonies in 1750.\\nOptions: (A) 1 (B) 3 (C) 2\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The area that became Vermont was never a colony of its own. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"15984\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is smoother?\\nContext: N/A\\nOptions: (A) plastic bucket (B) burlap sack\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Smooth is a property. A smooth material is not rough or bumpy.\\nLook at each picture, one at a time. Imagine touching the material shown in each picture.\\nOf the choices, the plastic bucket is smoother. If you touch a plastic bucket like this one, it will not feel rough. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16002\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Joseph investigate with an experiment?\\nContext: Joseph mixes oil and vinegar to make salad dressing. He notices that after a few minutes, the oil and vinegar separate. He wonders what factors affect how quickly liquids separate. So, he decides to design an experiment. He has the following supplies available:\\nthree glass bottles\\nolive oil\\nvegetable oil\\nvinegar\\ncold water\\nOptions: (A) Does vegetable oil separate faster when stirred together with cold water or with hot water? (B) Does vegetable oil separate faster when stirred together with vinegar or with water? (C) Does vinegar separate faster when stirred together with olive oil or with coconut oil?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16004\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change better matches the sentence?\\nLava comes out from below Earth's surface.\\nContext: N/A\\nOptions: (A) wildfire (B) volcanic eruption\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16010\",\n    \"image\": \"16010\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of California?\\nContext: N/A\\nOptions: (A) Salem (B) Sacramento (C) Los Angeles (D) Tallahassee\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sacramento is the capital of California. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16011\",\n    \"image\": \"16011\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following fossils is younger? Select the more likely answer.\\nContext: This diagram shows fossils in an undisturbed sedimentary rock sequence.\\nOptions: (A) ginkgo leaf (B) insect\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fossil is the preserved evidence of an ancient organism. Some fossils are formed from body parts such as bones or shells. Other fossils, such as footprints or burrows, are formed from traces of an organism's activities.\\nFossils are typically found in sedimentary rocks. Sedimentary rocks usually form in layers. Over time, new layers are added on top of old layers in a series called a rock sequence. The layers in an undisturbed rock sequence are in the same order as when they formed. So, the deeper layers are older than the shallower layers.\\nThe relative ages of fossils can be determined from their positions in an undisturbed rock sequence. Older fossils are usually in deeper layers, and younger fossils are usually in shallower layers. Look again at the fossils in the rock sequence diagram.\\nCompare the positions of these fossils to determine which one is younger:\\nThe insect fossil is in a shallower layer in the rock sequence than the ginkgo leaf fossil. So, the insect fossil is most likely younger than the ginkgo leaf fossil. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16012\",\n    \"image\": \"16012\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Jamaica (B) Grenada (C) the Dominican Republic (D) Saint Vincent and the Grenadines\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Vincent and the Grenadines. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16015\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word hole on a dictionary page with the following guide words?\\nhello - hire\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince hole is not between the guide words hello - hire, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16016\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nAbout half of the days each year are partly cloudy in Honolulu, Hawaii.\\nContext: N/A\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nAbout half of the days each year are partly cloudy in Honolulu, Hawaii.\\nThis passage tells you about the usual pattern of clouds in Honolulu. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16025\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the invertebrate.\\nContext: Hint: Insects, spiders, and worms are invertebrates.\\nOptions: (A) cockatoo (B) whiptail lizard (C) cricket (D) minnow\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A whiptail lizard is a reptile. Like other reptiles, a whiptail lizard is a vertebrate. It has a backbone.\\nA cockatoo is a bird. Like other birds, a cockatoo is a vertebrate. It has a backbone.\\nA minnow is a fish. Like other fish, a minnow is a vertebrate. It has a backbone.\\nA cricket is an insect. Like other insects, a cricket is an invertebrate. It does not have a backbone. It has an exoskeleton. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16026\",\n    \"image\": \"16026\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) North Carolina (B) Ohio (C) New Hampshire (D) Arizona\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. Arizona is farthest west. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16027\",\n    \"image\": \"16027\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following statements describess living in an independent city-state?\\nContext: Athens was one of the most powerful independent city-states in ancient Greece. Look at the definitions below. Then answer the question.\\nOptions: (A) I live by myself in the wilderness. (B) My city rules itself and is not part of a larger country. (C) I vote for a president that rules over many different cities. (D) All the decisions about my city are made by a faraway emperor.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the definitions.\\nPutting the definitions together, an independent city-state is a self-ruling city with its own government. So, a city-state rules itself and is not part of a larger country.\\nThe ancient Greeks called a city-state a polis, which was the ancient Greek word for city. Today, the root word \\\"polis\\\" is in the name of many cities, such as Minneapolis in Minnesota or Annapolis in Maryland. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16035\",\n    \"image\": \"16035\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is an arrowhead a solid or a liquid?\\nContext: N/A\\nOptions: (A) a solid (B) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid and liquid are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid. An arrowhead is a solid. A solid has a size and shape of its own.\\nAn arrowhead is made of rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16042\",\n    \"image\": \"16042\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of North Carolina?\\nContext: N/A\\nOptions: (A) Tallahassee (B) Plymouth (C) Charlotte (D) Raleigh\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Raleigh is the capital of North Carolina. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16045\",\n    \"image\": \"16045\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Orlando (B) Laramie (C) Salt Lake City (D) Cheyenne\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16046\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nDoes Lila prefer pizza or pasta?\\nContext: N/A\\nOptions: (A) declarative (B) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence asks something, and it ends with a question mark. It is an interrogative sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16048\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Becky investigate with an experiment?\\nContext: Becky is outside with her friend on a sunny day. Becky is wearing a light-colored shirt, and she notices that she feels colder than her friend, who is wearing a dark shirt. She wonders what factors affect how fabric warms an object. So, she decides to design an experiment. She has the following supplies available:\\na black cotton shirt\\na white cotton shirt\\ntwo identical empty glass jars\\ntwo thermometers\\nOptions: (A) When placed in the sun, does a glass jar wrapped in a black cotton shirt heat up more than a glass jar wrapped in a white cotton shirt? (B) When wrapped in a cotton shirt and placed in the sun, does a large jar or a small jar heat up more? (C) When placed in the sun, does a glass jar wrapped in cotton heat up more than a glass jar wrapped in wool?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16049\",\n    \"image\": \"16049\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of force from the boy moves the cart forward?\\nContext: A boy shops for food. He applies a force to a shopping cart to move it forward.\\nOptions: (A) pull (B) push\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to a second object.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The boy applies a force to the shopping cart to move it forward. The direction of this force is away from the boy. This force is a push. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16050\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Shelby acquired this trait?\\nContext: Read the description of a trait.\\nShelby knows a lot about biology.\\nOptions: (A) Shelby learned biology by reading, observing, and experimenting. (B) Shelby is most interested in human biology.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16057\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\n\\\"Deb is such a Pollyanna!\\\" Kendrick announced with a sigh.\\nContext: N/A\\nOptions: (A) literature (B) British history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Pollyanna is literature.\\nThe character Pollyanna, from Eleanor Porter's children's book, is a young girl who finds good in everything and everyone.\\nThe allusion Pollyanna means an overly optimistic person. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16063\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Henry acquired this trait?\\nContext: Read the description of a trait.\\nHenry speaks two languages.\\nOptions: (A) Henry learned to speak two languages in school. (B) Henry's mother speaks one language.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16067\",\n    \"image\": \"16067\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Krysta and Malik trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nKrysta and Malik open their lunch boxes in the school cafeteria. Neither Krysta nor Malik got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nKrysta's lunch Malik's lunch\\nOptions: (A) Malik can trade his almonds for Krysta's tomatoes. (B) Krysta can trade her tomatoes for Malik's carrots. (C) Malik can trade his broccoli for Krysta's oranges. (D) Krysta can trade her tomatoes for Malik's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nKrysta wants broccoli. Malik wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16069\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) The Indian town of Cherrapunji gets a lot of rain every year. (B) Cherrapunji, India, receives nearly 460 inches of rain each year.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses overly simple or imprecise language (gets, a lot of).\\nThe second sentence uses more precise language, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16106\",\n    \"image\": \"16106\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Gobi Desert ecosystem?\\nContext: Figure: Gobi Desert.\\nThe Gobi Desert is a cold desert ecosystem in northern China and southern Mongolia.\\nOptions: (A) It has long, cold winters. It also has a small amount of rain or snow. (B) It has warm, wet summers. It also has long, cold winters.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A cold desert is a type of ecosystem. Cold deserts have the following features: a small amount of rain or snow, dry, thin soil, and long, cold winters. So, the Gobi Desert has long, cold winters. It also has a small amount of rain or snow. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16113\",\n    \"image\": \"16113\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the map, which of the following areas did the Mongol Empire control?\\nContext: The Mongol Empire controlled most of Asia and some parts of Eastern Europe from around 1210 to 1375. Look at the map of the Mongol Empire. Then answer the question below.\\nOptions: (A) South Asia (B) Southeast Asia (C) the Middle East\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look back at the map. The labels on the map show the name of each region. The shaded area shows the territory controlled by the Mongol Empire.\\nThe map shows that the Mongol Empire controlled many parts of Central Asia, East Asia, the Middle East, and Siberia.\\nThe Mongol Empire did not control Southeast Asia or South Asia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16115\",\n    \"image\": \"16115\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) North America (B) Africa (C) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Asia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16118\",\n    \"image\": \"16118\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oregon?\\nContext: N/A\\nOptions: (A) Portland (B) Harrisburg (C) Salem (D) Carson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salem is the capital of Oregon. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16119\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) McKinney Electronics has a reputation for responding real quick to customer concerns and questions. (B) McKinney Electronics has a reputation for responding quickly to all customer concerns and questions.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses conversational language (real quick).\\nThe first sentence uses formal language in place of the conversational language, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16122\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nsilver - strait\\nContext: N/A\\nOptions: (A) soil (B) swap\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince soil is between the guide words silver - strait, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16126\",\n    \"image\": \"16126\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the text, how are fruit bats different from most other animals?\\nContext: Read the text about bats.\\nSeveral kinds of animals \\\"talk\\\" to one another in the wild. Dolphins whistle, birds sing, and wolves howl. In recent years, researchers have paid more attention to animal \\\"languages,\\\" and they have made some surprising discoveries. Egyptian fruit bats, for example, have a very complex way of talking to one another. In fact, they are one of the few animals that direct their calls to another individual. Most animals make calls to their entire group. Bats can also share more complex information than other animals. This is because they have special sounds to communicate specific issues.\\nResearchers at Tel Aviv University in Israel wanted to learn more about what bats are really saying to one another. First, scientist Yossi Yovel and his team recorded sound and video of twenty-two bats. Fifteen thousand bat calls were collected over a period of seventy-five days. Then, the researchers tried to match each bat call with a behavior. They used special software to help them tell different bat calls apart and decipher the bats' messages.\\nWhat Yovel and his team found was astonishing. Egyptian fruit bats are not just making squeaky noises; they are expressing very distinct concerns. One type of call means the bats are arguing over food. Another type of call means the bats are figuring out where they are going to sleep. A third call is used when one bat has gotten too close to another.\\nThe researchers made another startling discovery. A bat can alter the sound of its call when addressing different members of the group. This is similar to how humans may use a different tone of voice when speaking to different people. It turns out that bats use language as a way to communicate their needs to each other, almost like humans do.\\nOptions: (A) They can communicate with many kinds of animals. (B) They can communicate about specific problems. (C) They can understand some human speech.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"These are two ways in which fruit bats are different from most other animals:\\nThey can \\\"talk\\\" directly to one other fruit bat.\\nThe first paragraph states that Egyptian fruit bats are one of the few species that will direct calls to another individual.\\nThey can communicate about specific problems.\\nThe first paragraph also states that bats have special sounds for talking about specific issues.\\nThese things are not stated in the text:\\nThey can communicate with many kinds of animals.\\nThey can understand some human speech. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16127\",\n    \"image\": \"16127\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Massachusetts?\\nContext: N/A\\nOptions: (A) Helena (B) Cambridge (C) Plymouth (D) Boston\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boston is the capital of Massachusetts. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16139\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\n\\\"There's nothing I love more than skipping lunch,\\\" Mr. Fowler told the flight attendant when he learned that no food would be available on his cross-country flight.\\nContext: N/A\\nOptions: (A) verbal irony (B) allusion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nNothing I love more shows verbal irony because Mr. Fowler is probably upset that there isn't anything to eat. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16141\",\n    \"image\": \"16141\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Solomon Islands (B) Samoa (C) Australia (D) the Federated States of Micronesia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Federated States of Micronesia. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16145\",\n    \"image\": \"16145\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) Georgia (B) North Dakota (C) Oklahoma (D) Louisiana\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. Georgia is farthest east. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16147\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Chase inherited this trait?\\nContext: Read the description of a trait.\\nChase has pale skin.\\nOptions: (A) Chase and his father both have dark hair. (B) Chase's parents have pale skin. They passed down this trait to Chase.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16156\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complex sentence?\\nContext: N/A\\nOptions: (A) Deion was playing the piano in the living room when Dad called him for dinner. (B) Madison Chock and Gracie Gold were two American figure skaters in the Sochi 2014 Olympics.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The first sentence is the complex sentence. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction when.\\nDeion was playing the piano in the living room when Dad called him for dinner. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16162\",\n    \"image\": \"16162\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) soft (B) bouncy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA bouncy object will bounce back from the floor if you drop it. The towel is not bouncy.\\nA soft object changes shape when pressed or squeezed. The towel is soft. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16169\",\n    \"image\": \"16169\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the great gray owl.\\nContext: This organism is a great gray owl. Its scientific name is Strix nebulosa.\\nOptions: (A) Cyanocitta stelleri (B) Strix aluco (C) Cyanocitta cristata\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A great gray owl's scientific name is Strix nebulosa. The first word of its scientific name is Strix.\\nCyanocitta stelleri is in the genus Cyanocitta. The first word of its scientific name is Cyanocitta. So, Cyanocitta stelleri and Strix nebulosa are not in the same genus.\\nStrix aluco is in the genus Strix. The first word of its scientific name is Strix. So, Strix aluco and Strix nebulosa are in the same genus.\\nCyanocitta cristata is in the genus Cyanocitta. The first word of its scientific name is Cyanocitta. So, Cyanocitta cristata and Strix nebulosa are not in the same genus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16180\",\n    \"image\": \"16180\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is weaker in Pair 1. (B) The magnetic force is weaker in Pair 2. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16182\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Zuri's phenotype for the coat pattern trait?\\nContext: In a group of leopards, some individuals have a spotted coat and others have a black coat. In this group, the gene for the coat pattern trait has two alleles. The allele for a spotted coat (A) is dominant over the allele for a black coat (a).\\nZuri is a leopard from this group. Zuri has the heterozygous genotype Aa for the coat pattern gene.\\nOptions: (A) a spotted coat (B) a black coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine Zuri's phenotype for the coat pattern trait. First, consider the alleles in Zuri's genotype for the coat pattern gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for a spotted coat (A) is dominant over the allele for a black coat (a). This means A is a dominant allele, and a is a recessive allele.\\nZuri's genotype of Aa has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Zuri's phenotype for the coat pattern trait must be a spotted coat. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16183\",\n    \"image\": \"16183\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following fossils is older? Select the more likely answer.\\nContext: This diagram shows fossils in an undisturbed sedimentary rock sequence.\\nOptions: (A) insect (B) ginkgo leaf\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fossil is the preserved evidence of an ancient organism. Some fossils are formed from body parts such as bones or shells. Other fossils, such as footprints or burrows, are formed from traces of an organism's activities.\\nFossils are typically found in sedimentary rocks. Sedimentary rocks usually form in layers. Over time, new layers are added on top of old layers in a series called a rock sequence. The layers in an undisturbed rock sequence are in the same order as when they formed. So, the deeper layers are older than the shallower layers.\\nThe relative ages of fossils can be determined from their positions in an undisturbed rock sequence. Older fossils are usually in deeper layers, and younger fossils are usually in shallower layers. Look again at the fossils in the rock sequence diagram.\\nCompare the positions of these fossils to determine which one is older:\\nThe ginkgo leaf fossil is in a deeper layer in the rock sequence than the insect fossil. So, the ginkgo leaf fossil is most likely older than the insect fossil. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16186\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the most thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) an orange at a temperature of 64\\u00b0F (B) an orange at a temperature of 57\\u00b0F (C) an orange at a temperature of 68\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. All three oranges have the same mass but different temperatures. Since the 68\\u00b0F orange is the hottest, it has the most thermal energy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16193\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a small beach bucket?\\nContext: Select the best estimate.\\nOptions: (A) 5 cups (B) 5 fluid ounces (C) 5 gallons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a small beach bucket is 5 cups.\\n5 fluid ounces is too little and 5 gallons is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16196\",\n    \"image\": \"16196\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is better adapted as a warning sign to ward off predators?\\nContext: Golden dart frogs have poisonous glands in their brightly colored skin. The bright color serves as a warning sign that the animal is poisonous. The 's skin is adapted to ward off predators.\\nFigure: golden dart frog.\\nOptions: (A) lichen katydid (B) sharpnose-puffer\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the golden dart frog.\\nThe golden dart frog has poisonous glands in its brightly colored skin. Its skin is adapted to ward off predators. The bright colors serve as a warning sign that the golden dart frog is poisonous.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe sharpnose-puffer has a poisonous body with brightly colored skin. Its skin is adapted to ward off predators.\\nThe lichen katydid has green and white patches on its body. Its skin is not adapted to be a warning sign that wards off predators. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16199\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nMr. Sharma gave a lecture on water conservation, during which he stressed the importance of not watering lawns during a drought.\\nContext: N/A\\nOptions: (A) interrogative (B) exclamatory (C) declarative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells about something, and it ends with a period. It is a declarative sentence. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16203\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) pail (B) fine (C) nine\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the ip sound.\\nThe words lake and make rhyme. They both end with the ake sound.\\nThe words tip and lake don't rhyme. They end with different sounds. The words fine and nine rhyme. They both end with the ine sound.\\nThe word pail does not rhyme. It ends with a different sound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16209\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the sailboat's motion?\\nContext: A sailboat is speeding up as a gust of wind catches the sail.\\nOptions: (A) The sailboat is accelerating. (B) The sailboat has a constant velocity.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's velocity describes its speed and its direction.\\nAn object has a constant velocity when neither its speed nor its direction is changing. So, an object has a constant velocity when the object is:\\nmoving in a straight line at a constant speed, or\\nremaining motionless.\\nIf an object does not have a constant velocity, the object is accelerating. An object is accelerating when either its speed or its direction is changing. So, an object is accelerating when the object is:\\nspeeding up,\\nslowing down, or\\nchanging direction. The sailboat is speeding up. So, the sailboat is accelerating. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16213\",\n    \"image\": \"16213\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes and shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 1. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16219\",\n    \"image\": \"16219\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food chain, the katydid is a primary consumer. Why?\\nContext: This diagram shows a food chain from a grassland ecosystem in Wyoming.\\nOptions: (A) It eats a primary consumer. (B) It makes its own food. (C) It eats a producer.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every organism needs food to stay alive. Organisms get their food in different ways. A food chain shows how organisms in an ecosystem get their food.\\nThe food chain begins with the producer. A producer can change matter that is not food into food. Many producers use carbon dioxide, water, and sunlight to make sugar. Carbon dioxide and water are not food, but sugar is food for the producer.\\nConsumers eat other organisms. There can be several kinds of consumers in a food chain:\\nA primary consumer eats producers. The word primary tells you that this is the first consumer in a food chain.\\nA secondary consumer eats primary consumers. The word secondary tells you that this is the second consumer in a food chain.\\nA tertiary consumer eats secondary consumers. The word tertiary tells you that this is the third consumer in a food chain.\\nA top consumer is the animal at the top of a food chain. Food chains can have different numbers of organisms. For example, when there are four organisms in the chain, the top consumer is the tertiary consumer. But if there are five organisms in the chain, the top consumer eats the tertiary consumer! In this food chain, the katydid is a primary consumer because it eats a producer. The producer in this food chain is the slender wheatgrass. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16221\",\n    \"image\": \"16221\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is greater in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16223\",\n    \"image\": \"16223\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a Labrador retriever produced by this cross will have brown fur?\\nContext: In a group of Labrador retrievers, some individuals have black fur and others have brown fur. In this group, the gene for the fur color trait has two alleles. The allele for black fur (F) is dominant over the allele for brown fur (f).\\nThis Punnett square shows a cross between two Labrador retrievers.\\nOptions: (A) 4/4 (B) 2/4 (C) 0/4 (D) 3/4 (E) 1/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16235\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the metaphor in this text suggest?\\nAmanda felt a roller coaster of emotions when she heard the news.\\nContext: N/A\\nOptions: (A) Amanda felt delighted about the news. (B) Amanda had varied feelings.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town. The text uses a metaphor, comparing two things that are not actually alike without using like or as.\\nThe metaphor Amanda felt a roller coaster of emotions suggests that Amanda had varied feelings. A roller coaster has a dramatic mix of ups and downs, and so do Amanda's feelings. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16240\",\n    \"image\": \"16240\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is the main persuasive appeal used in this ad?\\nContext: N/A\\nOptions: (A) ethos (character) (B) logos (reason) (C) pathos (emotion)\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The purpose of an advertisement is to persuade people to do something. To accomplish this purpose, advertisements use three types of persuasive strategies, or appeals:\\nAppeals to ethos, or character, show that the writer or speaker is trustworthy or is an authority on a subject. An ad that appeals to ethos might do one of the following:\\nsay that a brand has been trusted for many years\\nnote that a brand is recommended by a respected organization or celebrity\\ninclude a quote from a \\\"real person\\\" who shares the audience's values\\nAppeals to logos, or reason, use logic and specific evidence. An ad that appeals to logos might do one of the following:\\nuse graphs or charts to display information\\nmention the results of scientific studies\\nexplain the science behind a product or service\\nAppeals to pathos, or emotion, use feelings rather than facts to persuade the audience. An ad that appeals to pathos might do one of the following:\\ntrigger a fear, such as the fear of embarrassment\\nappeal to a desire, such as the desire to appear attractive\\nlink the product to a positive feeling, such as adventure, love, or luxury The ad appeals to logos, or reason. It uses a specific point of comparison (the amount of iron in one ounce). The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16242\",\n    \"image\": \"16242\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is plagioclase a mineral?\\nContext: Plagioclase has the following properties:\\nfound in nature\\nsolid\\nnot made by living things\\npure substance\\nfixed crystal structure\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Plagioclase has all the properties of a mineral. So, plagioclase is a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16243\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal.\\nContext: N/A\\nOptions: (A) Avocado trees have green leaves. (B) Cobras eat small animals.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A cobra is an animal. It eats small animals.\\nCobras can live to be 20 years old.\\nAn avocado tree is a plant. It has green leaves.\\nEach avocado has one large seed inside. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16245\",\n    \"image\": \"16245\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Maryland (B) Massachusetts (C) Illinois (D) Connecticut\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Massachusetts.\\nThe Massachusetts Colony included land that would later become the state of Maine. Maine was never its own colony. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16246\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Skip's phenotype for the horns trait?\\nContext: In a group of cows, some individuals have horns and others do not. In this group, the gene for the horns trait has two alleles. The allele for having horns (h) is recessive to the allele for not having horns (H).\\nSkip is a cow from this group. Skip has the heterozygous genotype Hh for the horns gene.\\nOptions: (A) not having horns (B) having horns\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine Skip's phenotype for the horns trait. First, consider the alleles in Skip's genotype for the horns gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for having horns (h) is recessive to the allele for not having horns (H). This means H is a dominant allele, and h is a recessive allele.\\nSkip's genotype of Hh has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Skip's phenotype for the horns trait must be not having horns. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16252\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nDid you really vote for Jaden as class treasurer? Didn't you hear that his uncle was imprisoned for embezzling $1.5 million?\\nContext: N/A\\nOptions: (A) hasty generalization: a very broad claim based on very little evidence (B) guilt by association: a negative association intended to discredit someone or something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Jaden can't be trusted with money, because his uncle embezzled money. However, even though his uncle couldn't be trusted with money, that doesn't necessarily mean that Jaden can't be trusted with it. This illustrates a type of logical fallacy known as guilt by association. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16253\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nDustin's room is as tidy as an overgrown garden.\\nContext: N/A\\nOptions: (A) onomatopoeia (B) verbal irony\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAs tidy as an overgrown garden shows verbal irony because an overgrown garden is not tidy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16276\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can David investigate with an experiment?\\nContext: David went to a magic show. The magician rubbed a balloon on her hair and then held the balloon against a wall. When the magician released the balloon, David was amazed to see that it stuck to the wall! He wonders what factors affect how well balloons stick to different surfaces. So, he decides to design an experiment. He has the following supplies available:\\nthe hair on his own head\\na cotton blanket\\na wooden door\\nfive rubber balloons\\nOptions: (A) Do rubber balloons or foil balloons stick to the wooden door longer after being rubbed on his hair? (B) Do rubber balloons stick to a cotton blanket or a wooden door longer after being rubbed on his hair? (C) Do rubber balloons stick to a wooden door or a metal door longer after being rubbed on his hair?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16279\",\n    \"image\": \"16279\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Rhode Island?\\nContext: N/A\\nOptions: (A) Hartford (B) Newport (C) Providence (D) Tulsa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Providence is the capital of Rhode Island. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16293\",\n    \"image\": \"16293\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Atlantic Ocean (B) the Indian Ocean (C) the Arctic Ocean (D) the Pacific Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Atlantic Ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16297\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this fish's phenotype for the body color trait?\\nContext: In a group of Nile tilapia fish, some individuals have a greenish-brown body and others have a pink body. In this group, the gene for the body color trait has two alleles. The allele for a pink body (b) is recessive to the allele for a greenish-brown body (B).\\nA certain Nile tilapia fish from this group has the homozygous genotype bb for the body color gene.\\nOptions: (A) a greenish-brown body (B) a pink body\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. The Nile tilapia fish's genotype for the body color gene is bb. The Nile tilapia fish's genotype of bb has only b alleles. The b allele is for a pink body. So, the Nile tilapia fish's phenotype for the body color trait must be a pink body.\\nTo check this answer, consider whether the Nile tilapia fish's alleles are dominant or recessive. The allele for a pink body (b) is recessive to the allele for a greenish-brown body (B). This means B is a dominant allele, and b is a recessive allele.\\nThe Nile tilapia fish's genotype of bb has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, the Nile tilapia fish's phenotype for the body color trait must be a pink body. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16301\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Daffodil's phenotype for the horns trait?\\nContext: In a group of cows, some individuals have horns and others do not. In this group, the gene for the horns trait has two alleles. The allele for having horns (h) is recessive to the allele for not having horns (H).\\nDaffodil is a cow from this group. Daffodil has the homozygous genotype hh for the horns gene.\\nOptions: (A) not having horns (B) having horns\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Daffodil's genotype for the horns gene is hh. Daffodil's genotype of hh has only h alleles. The h allele is for having horns. So, Daffodil's phenotype for the horns trait must be having horns.\\nTo check this answer, consider whether Daffodil's alleles are dominant or recessive. The allele for having horns (h) is recessive to the allele for not having horns (H). This means H is a dominant allele, and h is a recessive allele.\\nDaffodil's genotype of hh has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Daffodil's phenotype for the horns trait must be having horns. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16304\",\n    \"image\": \"16304\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is eclogite a mineral?\\nContext: Eclogite has the following properties:\\nsolid\\nnaturally occurring\\nnot made by organisms\\nnot a pure substance\\nno fixed crystal structure\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Eclogite does not have all the properties of a mineral. So, eclogite is not a mineral. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16315\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) During Homecoming Weekend, everyone is invited to come to a fancy dinner and other events at the college. (B) During Homecoming Weekend, former students are invited to attend a banquet and other events at the college.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses overly simple or imprecise language (everyone, come to).\\nThe first sentence uses more precise language, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16319\",\n    \"image\": \"16319\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: London.\\nIt was snowing in London on January 1, 1969.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nIt was snowing in London on January 1, 1969.\\nThis passage tells you about the snowfall in London on January 1, 1969. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16325\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this pea plant's phenotype for the pea color trait?\\nContext: In a group of pea plants, some individuals have yellow peas and others have green peas. In this group, the gene for the pea color trait has two alleles. The allele E is for yellow peas, and the allele e is for green peas.\\nA certain pea plant from this group has green peas. This plant has two alleles for green peas.\\nOptions: (A) green peas (B) ee\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. The pea plant's observable version of the pea color trait is green peas. So, the plant's phenotype for the pea color trait is green peas. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16326\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nWhen Sally first joined the track team, she was afraid of jumping, but she got over that hurdle.\\nContext: N/A\\nOptions: (A) verbal irony (B) pun\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses a pun, a word or phrase that humorously suggests more than one meaning.\\nHurdle refers to an obstacle that one must overcome. It also refers to an object that a runner jumps over. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16327\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) \\\"This morning, the newspaper said that Lucy Morton won the mayoral election in Allenville,\\\" Josh remarked to his sister. (B) \\\"This morning, it said that Lucy Morton won the mayoral election in Allenville,\\\" Josh remarked to his sister.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun it is used without its antecedent.\\nThe second answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the newspaper.\\n\\\"This morning, the newspaper said that Lucy Morton won the mayoral election in Allenville,\\\" Josh remarked to his sister. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16338\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which would stretch the most?\\nContext: N/A\\nOptions: (A) glass bottle (B) rubber balloons (C) diamond\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Stretchy is a property. A stretchy material gets longer when you pull on it.\\nLook at each picture, one at a time. Imagine pulling on the material shown in each picture.\\nOf the choices, the rubber balloons would stretch the most. If you pull on a rubber balloon, it will get longer. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16339\",\n    \"image\": \"16339\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following is better evidence that the train's kinetic energy changed?\\nContext: There are many types of energy. One type is kinetic energy, which is the energy an object has when it is moving.\\nRead the passage about the start of a roller coaster ride and think about the kinetic energy of the roller coaster train.\\nAt an amusement park, a group of riders boarded a roller coaster train and sat down.\\nOnce everyone was safely in their seats, the ride operator flipped a switch, and electricity flowed to a motor below the track. The motor pulled the train forward and out of the station.\\nOptions: (A) The train was stopped, and then it began to move forward and away from the station. (B) Electricity started flowing to the motor when the ride operator flipped the switch.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The kinetic energy of an object depends on the object's speed. So, a change in the train's speed is evidence of a change in the train's kinetic energy.\\nThis statement shows that the speed of the train changed:\\nThe train was stopped, and then it began to move forward and away from the station.\\nThis statement does not show that the speed of the train changed:\\nElectricity started flowing to the motor when the ride operator flipped the switch. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16340\",\n    \"image\": \"16340\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Rick and Felix trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nRick and Felix open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Rick wanted broccoli in his lunch and Felix was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Rick can trade his tomatoes for Felix's broccoli. (B) Rick can trade his tomatoes for Felix's sandwich. (C) Felix can trade his broccoli for Rick's oranges. (D) Felix can trade his almonds for Rick's tomatoes.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rick wanted broccoli in his lunch and Felix was hoping for tomatoes. Look at the labeled part of the images.\\nRick has tomatoes. Felix has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16347\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Blaze's phenotype for the horns trait?\\nContext: In a group of cows, some individuals have horns and others do not. In this group, the gene for the horns trait has two alleles. The allele for not having horns (H) is dominant over the allele for having horns (h).\\nBlaze is a cow from this group. Blaze has the homozygous genotype hh for the horns gene.\\nOptions: (A) not having horns (B) having horns\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Blaze's genotype for the horns gene is hh. Blaze's genotype of hh has only h alleles. The h allele is for having horns. So, Blaze's phenotype for the horns trait must be having horns.\\nTo check this answer, consider whether Blaze's alleles are dominant or recessive. The allele for not having horns (H) is dominant over the allele for having horns (h). This means H is a dominant allele, and h is a recessive allele.\\nBlaze's genotype of hh has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Blaze's phenotype for the horns trait must be having horns. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16348\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a bowl of ice cream?\\nContext: Select the better estimate.\\nOptions: (A) 35\\u00b0F (B) 35\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a bowl of ice cream is 35\\u00b0F.\\n35\\u00b0C is too hot. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16356\",\n    \"image\": \"16356\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) West Virginia (B) New Hampshire (C) Massachusetts (D) New Jersey\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Massachusetts.\\nThe Massachusetts Colony included land that would later become the state of Maine. Maine was never its own colony. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16366\",\n    \"image\": \"16366\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's legs are also adapted for wading?\\nContext: s live in the marshes of Europe and Asia. They eat insects, snails, and worms that live in shallow water. Spoonbills often hunt their prey by walking through water, or wading.\\nThe spoonbill's legs are adapted for wading. They are lightweight and keep the bird's body above the water.\\nFigure: Eurasian spoonbill.\\nOptions: (A) shoebill (B) satin bowerbird\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nArms, legs, flippers, and wings are different types of limbs. The type of limbs an animal has is an example of an adaptation. Animals' limbs can be adapted in different ways. For example, long legs might help an animal run fast. Flippers might help an animal swim. Wings might help an animal fly. Look at the picture of the Eurasian spoonbill.\\nLong legs help the Eurasian spoonbill keep its body above the surface of the water while wading. Thin legs are easier to move through the water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe shoebill has long, thin legs. Its legs are adapted for wading.\\nThe satin bowerbird has short legs. Its legs are not adapted for wading. The satin bowerbird uses its legs to walk and perch. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16372\",\n    \"image\": \"16372\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the reptile below.\\nContext: Reptiles have scaly, waterproof skin. Most reptiles live on land. A box turtle is an example of a reptile.\\nOptions: (A) Hermann's tortoise (B) gray wolf\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A gray wolf is a mammal. It has fur and feeds its young milk.\\nWolves often live in family groups. A wolf mother, father, and their children travel together.\\nA Hermann's tortoise is a reptile. It has scaly, waterproof skin.\\nA tortoise's shell protects it from predators. When a tortoise feels threatened, it can pull its head and legs inside its shell. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16374\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Mandy didn't enter student politics until her junior year. (B) Mandy did not enter student politics until her junior year.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses a contraction (didn't).\\nThe first sentence does not use a contraction, so it is more formal. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16379\",\n    \"image\": \"16379\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) the Dominican Republic (B) Grenada (C) Dominica (D) Haiti\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Dominican Republic.\\nWhy does the Dominican Republic share its island with another country?\\nThe Dominican Republic and Haiti share the island of Hispaniola. It is home to the earliest European settlements in the Americas. Christopher Columbus founded the first European settlement on the island in 1492 during his first voyage across the Atlantic.\\nThough many people lived on the island before Columbus's arrival, European countries quickly began to colonize the island. Eventually France and Spain both established colonies. The Spanish colony eventually became the country of the Dominican Republic, and the French colony eventually became the country of Haiti. Today, people in the two countries speak different languages and have many cultural differences. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16380\",\n    \"image\": \"16380\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this door made of?\\nContext: N/A\\nOptions: (A) wool (B) metal\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the door.\\nThis door is made of two different materials. The body of the door is made of wood. The door knob is made of metal.\\nNot all doors are made of wood. The body of a door can be made of metal or even glass. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16384\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word terribly in its traditional sense?\\nContext: N/A\\nOptions: (A) Nick shivered as he gazed at the terribly steep, snowy slope. After calming his nerves, he began his descent. (B) Nick shivered terribly as he gazed at the snow-clad slope. After calming his nerves, he began his descent.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses terribly in its traditional sense: in a terrible manner.\\nNick shivered terribly as he gazed at the snow-clad slope. After calming his nerves, he began his descent.\\nThe second text uses terribly in its nontraditional sense: extremely; very.\\nNick shivered as he gazed at the terribly steep, snowy slope. After calming his nerves, he began his descent.\\nMost style guides recommend to use the traditional sense of the word terribly because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16387\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) best wishes,\\nNick (B) Best wishes,\\nNick\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16395\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nDid Dalton vote for Sofia for school president, or does he hate her for some reason?\\nContext: N/A\\nOptions: (A) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences (B) false dichotomy: an argument that presents only two choices when more options exist (C) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Dalton either voted for Sofia or he hates her. However, Dalton could have voted for someone he considers a better candidate while still liking Sofia. This illustrates a type of logical fallacy known as a false dichotomy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16396\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Choose the poem that uses end rhyme.\\nContext: From Hilda Conkling, \\\"The Champlain Sandman\\\" and from Christina Rossetti, \\\"Caterpillar\\\"\\nOptions: (A) Brown and furry\\nCaterpillar in a hurry,\\nTake your walk\\nTo the shady leaf, or stalk,\\nOr what not,\\nWhich may be the chosen spot. (B) The Sandman comes pattering across the Bay:\\nHis hair is silver,\\nHis footstep soft.\\nThe moon shines on his silver hair,\\nOn his quick feet.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Poetry is a special kind of writing. It has many elements that make it different from ordinary writing. Knowing these elements can help you talk about poetry, understand it better, and enjoy it more.\\nA poem rhymes when it has a pattern of words that end in the same sound.\\nEnd rhyme is when the rhymes appear at the end of a poem's lines.\\nLittle Betty Blue,\\nLost her holiday shoe.\\n\\u2014From Mother Goose\\nInternal rhyme is when at least one of the rhyming words appears inside the poem's lines.\\nSweet dreams of pleasant streams.\\n\\u2014From William Blake, \\\"A Cradle Song\\\"\\nRhythm is the pattern of strong and weak syllables, or stress, in a poem. You can recognize rhythm in a poem by listening to how it sounds. Poems with regular rhythm have a beat, like in music.\\nHe watches from his mountain walls,\\nAnd like a thunderbolt he falls.\\n\\u2014From Alfred, Lord Tennyson, \\\"The Eagle\\\"\\nThe syllables in bold are strong. We say them with more force than the other syllables. In this poem, every weak syllable is followed by a strong syllable. Each line sounds like da-DUM da-DUM da-DUM da-DUM. To better hear the rhythm, try reading it aloud while clapping on each strong syllable.\\nFree verse is when a poem has neither a regular rhythm nor a rhyme pattern.\\nThe old bridge has a wrinkled face.\\nHe bends his back\\nFor us to go over.\\n\\u2014From Hilda Conkling, \\\"The Old Bridge\\\"\\nThe syllables in bold are strong. You can see this poem does not have a regular rhythm. It also doesn't have a rhyme pattern.\\nRepetition is when words, phrases, or whole lines are repeated.\\nThe dainty flying squirrel\\nIn vest of shining white,\\nIn coat of silver gray,\\nAnd vest of shining white.\\n\\u2014Adapted from Mary E. Burt, \\\"The Flying Squirrel\\\"\\nAlliteration is when beginning consonant sounds are repeated in words that are close together.\\nWhere the wild men watched and waited\\nWolves in the forest, and bears in the bush.\\n\\u2014From Bayard Taylor, \\\"A Night with a Wolf\\\"\\nOnomatopoeia is when language sounds like what it talks about.\\nSometimes the onomatopoeia uses made-up words:\\nTlot-tlot! tlot-tlot! Had they heard it? The horse hoofs ringing clear.\\n\\u2014From Alfred Noyes, \\\"The Highwayman\\\"\\nSometimes the onomatopoeia uses real words:\\nHark! the honey bee is humming.\\n\\u2014From Mary Howitt, \\\"The Voice of Spring\\\" This poem uses end rhyme. Its rhymes come at the end of its lines.\\nWhich may be the chosen spot. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16402\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word strife on a dictionary page with the following guide words?\\nsold - swell\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince strife is between the guide words sold - swell, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16410\",\n    \"image\": \"16410\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Missouri?\\nContext: N/A\\nOptions: (A) Kansas City (B) Saint Louis (C) Jefferson City (D) Richmond\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jefferson City is the capital of Missouri. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16419\",\n    \"image\": \"16419\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Haley and Elijah's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nHaley applied a thin layer of wax to the underside of her snowboard and rode the board straight down a hill. Then, she removed the wax and rode the snowboard straight down the hill again. She repeated the rides four more times, alternating whether she rode with a thin layer of wax on the board or not. Her friend Elijah timed each ride. Haley and Elijah calculated the average time it took to slide straight down the hill on the snowboard with wax compared to the average time on the snowboard without wax.\\nFigure: snowboarding down a hill.\\nOptions: (A) Does Haley's snowboard slide down a hill in less time when it has a layer of wax or when it does not have a layer of wax? (B) Does Haley's snowboard slide down a hill in less time when it has a thin layer of wax or a thick layer of wax?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16421\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is the Amazon River?\\nContext: Select the best estimate.\\nOptions: (A) 4,000 feet (B) 4,000 yards (C) 4,000 miles (D) 4,000 inches\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of the Amazon River is 4,000 miles.\\n4,000 inches, 4,000 feet, and 4,000 yards are all too short. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16422\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take for a pot of water to start boiling on a hot stove?\\nContext: Select the better estimate.\\nOptions: (A) 10 hours (B) 10 minutes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes for a pot of water to start boiling on a hot stove is 10 minutes.\\n10 hours is too slow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16424\",\n    \"image\": \"16424\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Joy's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nJoy was designing small aircraft called drones to pick up items from warehouse shelves. She knew that the drones' propeller blades would get damaged if they bumped into anything while flying through the warehouse. So, Joy wanted to add blade guards to protect the propeller blades. The guards had to be sturdy so they would not break in a crash. But she thought that if the guards weighed too much, the drones would not fly well.\\nSo, Joy put guards made of lightweight metal on one drone. Then she observed how well the drone flew with the guards.\\nFigure: a drone without blade guards.\\nOptions: (A) if the blade guards would break in a crash (B) how much the drone weighed with the blade guards (C) if adding the blade guards made the drone fly poorly\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16432\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) ladybug (B) moon jellyfish (C) greater flamingo (D) fly\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A greater flamingo is a bird. Like other birds, a greater flamingo is a vertebrate. It has a backbone.\\nLike other jellyfishes, a moon jellyfish is an invertebrate. It does not have a backbone. It has a soft body.\\nA ladybug is an insect. Like other insects, a ladybug is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA fly is an insect. Like other insects, a fly is an invertebrate. It does not have a backbone. It has an exoskeleton. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16434\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Carly investigate with an experiment?\\nContext: Carly leaves a glass jar of cold tea outside in full sunlight. When she goes to get it, she notices that the tea is warm. She wonders what factors affect how warm a liquid gets from sitting in the sunlight. So, she decides to design an experiment. She has the following supplies available:\\ntwo identical glass jars\\ntwo jar lids\\ntap water\\na measuring cup\\ntwo thermometers\\nOptions: (A) When placed in the sun, will eight ounces of water in a closed jar or eight ounces of water in an open jar get warmer? (B) Will eight ounces of carbonated water or eight ounces of tap water get warmer when placed in a jar in the sun? (C) When placed in the sun, will eight ounces of water in a glass jar or eight ounces of water in a plastic cup get warmer?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16436\",\n    \"image\": \"16436\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this hat made of?\\nContext: N/A\\nOptions: (A) wool (B) wood\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials. Look at the picture of the hat.\\nThe hat is made of wool.\\nWool comes from the fluffy coats of sheep! First, a farmer cuts the sheep's coats. Then, the wool is spun into yarn. The yarn can be dyed and used to make clothes. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16437\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is this a run-on sentence?\\nThe Gullah Geechee Heritage Corridor, which stretches from the Cape Fear River in North Carolina to the St. John's River in Florida, was established by Congress to recognize and preserve the cultural and historical contributions of the descendants of the West African slaves brought to the United States around the 1700s.\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA run-on sentence is formed when two sentences are run together, joined by just a comma or by no punctuation at all. If only a comma is used, the run-on is called a comma splice.\\nThe band I'm in has been rehearsing daily, we have a concert in two weeks.\\nThe band I'm in has been rehearsing daily we have a concert in two weeks.\\nThere are several ways to fix a run-on sentence:\\nUse stronger punctuation, such as a period or a semicolon.\\nThe band I'm in has been rehearsing daily. We have a concert in two weeks.\\nThe band I'm in has been rehearsing daily; we have a concert in two weeks.\\nUse a comma and a coordinating conjunction to create a compound sentence. Coordinating conjunctions include and, but, or, and so.\\nThe band I'm in has been rehearsing daily, and we have a concert in two weeks.\\nUse a subordinating conjunction or a relative pronoun to create a complex sentence. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, and whose.\\nThe band I'm in has been rehearsing daily since we have a concert in two weeks. This is not a run-on sentence. It is not formed from two sentences that have been run together without appropriate punctuation.\\nThe Gullah Geechee Heritage Corridor, which stretches from the Cape Fear River in North Carolina to the St. John's River in Florida, was established by Congress to recognize and preserve the cultural and historical contributions of the descendants of the West African slaves brought to the United States around the 1700 s. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16440\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nTables and chairs had been knocked over and the floor was strewn with cups and plates as if in the wake of a recent Saturnalia.\\nContext: N/A\\nOptions: (A) a poem (B) Roman history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Saturnalia is Roman history.\\nAncient Romans celebrated Saturn, the god of agriculture, each December during a weeklong period of uninhibited revelry.\\nThe allusion Saturnalia means an indulgent festival. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16444\",\n    \"image\": \"16444\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month has the lowest average precipitation in London?\\nContext: Use the graph to answer the question below.\\nOptions: (A) November (B) July (C) February\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in London, look at the graph.\\nChoice \\\"Feb\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Nov\\\" is incorrect.\\nJuly has an average monthly precipitation of about 45 millimeters. This is lower than in any other month. So, July has the lowest average precipitation. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16446\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nBrian plays basketball.\\nContext: Hint: Playing basketball takes practice.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to play basketball. Instead, some people learn how to play basketball. Playing the sport takes practice. So, playing basketball is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16456\",\n    \"image\": \"16456\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) neither; the samples have the same temperature (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in the two samples has the same mass, but the particles in sample B have a higher average speed than the particles in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16459\",\n    \"image\": \"16459\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Pennsylvania (B) New Jersey (C) New York (D) Maryland\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16469\",\n    \"image\": \"16469\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nThe word \\\"antebellum\\\" means ().\\nContext: The time period in United States history between 1820 and 1861 is often called the antebellum period. During the antebellum period, the North and South became more divided. In the following questions, you learn more about the changes that happened during the antebellum period.\\nThe following table shows other words that use the Latin root words ante and bellum. Look at the table. Then complete the text below.\\nOptions: (A) after the long peace (B) before the war (C) after the election (D) before the feast\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the underlined parts of the table.\\nAll the words that use the root \\\"ante\\\" mean to come before something else. So, the root ante means \\\"before.\\\"\\nAll the words that use the root \\\"bellum\\\" mean to fight or cause war.So, the root bellum means \\\"war.\\\"\\nSo, the word \\\"antebellum\\\" means \\\"before the war.\\\" The antebellum period is named for the war that followed it: the Civil War. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16470\",\n    \"image\": \"16470\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the great egret.\\nContext: This organism is a great egret. Its scientific name is Ardea alba.\\nOptions: (A) Tyto alba (B) Caprimulgus europaeus (C) Ardea alba\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A great egret's scientific name is Ardea alba. The first word of its scientific name is Ardea.\\nThis organism and the great egret are in the same genus and the same species! Both organisms have the same scientific name, Ardea alba.\\nCaprimulgus europaeus is in the genus Caprimulgus. The first word of its scientific name is Caprimulgus. So, Caprimulgus europaeus and Ardea alba are not in the same genus.\\nTyto alba and Ardea alba are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Tyto alba and Ardea alba have the same species name within their genus, alba. But the first words of their scientific names are different. Tyto alba is in the genus Tyto, and Ardea alba is in the genus Ardea. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16471\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a salt shaker?\\nContext: Select the better estimate.\\nOptions: (A) 45 milliliters (B) 45 liters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a salt shaker is 45 milliliters.\\n45 liters is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16476\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a bowl of soup?\\nContext: Select the better estimate.\\nOptions: (A) 285 liters (B) 285 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a bowl of soup is 285 milliliters.\\n285 liters is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16477\",\n    \"image\": \"16477\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nThe Thingvellir Rift Valley formed at a () boundary.\\nContext: Read the passage and look at the picture.\\nIn Iceland, parts of the Mid-Atlantic Ridge are above sea level. The Thingvellir Rift Valley is one example. This rift valley began to form as the North American Plate and the Eurasian Plate moved away from each other. In this picture, you can see the gap that formed during a major plate movement along the rift. Gaps such as this form when the two plates move apart, creating a large crack in the crust. The last time this happened in the Thingvellir Rift Valley was in the spring of 1789. Since then, a walking path was built along the rift valley to allow park visitors to walk along the rift.\\nOptions: (A) divergent (B) convergent (C) transform\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The outer layer of Earth is broken up into many pieces called tectonic plates, or simply plates. The breaks between plates are called plate boundaries. Plate boundaries are classified by the way the plates are moving relative to each other:\\nAt a transform boundary, two plates are sliding past each other.\\nAt a convergent boundary, two plates are moving toward each other.\\nAt a divergent boundary, two plates are moving away from each other.\\ndivergent plate boundary\\nWhen plates at a divergent boundary move apart, cracks form in the crust along the boundary. Melted rock rises from below the crust to fill these cracks. As the melted rock cools and hardens, it becomes new oceanic crust.\\nNewer oceanic crust weighs less than older oceanic crust. So, the crust on either side of the boundary rises up higher than the older crust that is farther from the boundary. This difference in elevation creates a mid-ocean ridge, or underwater mountain chain. Between the two plates, there may be a deep rift valley. To figure out what type of plate boundary formed the Thingvellir Rift Valley, you need to know how the tectonic plates interacted. To find this out, read the passage carefully.\\nIn Iceland, parts of the Mid-Atlantic Ridge are above sea level. The Thingvellir Rift Valley is one example. This rift valley began to form as the North American Plate and the Eurasian Plate moved away from each other. In this picture, you can see the gap that formed during a major plate movement along the rift. Gaps such as this form when the two plates move apart, creating a large crack in the crust. The last time this happened in the Thingvellir Rift Valley was in the spring of 1789. Since then, a walking path was built along the rift valley to allow park visitors to walk along the rift.\\nThe underlined part of the passage explains that the Thingvellir Rift Valley formed as the two plates moved away from each other, or diverged. So, the Thingvellir Rift Valley formed at a divergent boundary. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16485\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which body part lets you think?\\nContext: N/A\\nOptions: (A) brain (B) muscles (C) heart\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16493\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the simile in this text suggest?\\nNora rubbed coconut oil on her hands, which were like the parched earth during a drought.\\nContext: N/A\\nOptions: (A) Nora's hands were dry and cracked. (B) Nora was baking something.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night. The text includes a simile, using like or as to compare two things that are not actually alike.\\nThe simile like the parched earth during a drought suggests that Nora's hands were dry and cracked. A drought is a period without rain; the ground during a drought can become hard and cracked. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16496\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word frame on a dictionary page with the following guide words?\\nfeast - foreign\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince frame is not between the guide words feast - foreign, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16499\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) twin (B) reach (C) beach\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the ip sound.\\nThe words lake and make rhyme. They both end with the ake sound.\\nThe words tip and lake don't rhyme. They end with different sounds. The words beach and reach rhyme. They both end with the each sound.\\nThe word twin does not rhyme. It ends with a different sound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16501\",\n    \"image\": \"16501\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the continuum scale, about how much heavier are emu eggs than hummingbird eggs?\\nContext: This continuum scale compares the average weights of the eggs of several birds.\\nOptions: (A) around 60 grams (B) around 600 grams\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A graphic organizer is a chart or picture that shows how ideas, facts, or topics are related to one another.\\nWhen you read, look for graphic organizers included in the text. You can use these images to find key information. You can also create your own graphic organizers with information that you've read. Doing this can help you think about the ideas in the text and easily review them.\\nWhen you write, you can use graphic organizers to organize your thoughts and plan your writing. A continuum scale compares things by ordering them along a line. This continuum scale compares the average weights of the eggs of several birds.\\nHummingbird is shown close to the left end of the scale, labeled 0 g. This tells you that hummingbird eggs weigh close to 0 grams. Emu is shown close to the right end of the scale, labeled 600 g. This tells you that emu eggs weigh close to 600 grams. So, emu eggs are around 600 grams heavier than hummingbird eggs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16505\",\n    \"image\": \"16505\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged in the snow?\\nContext: es live in the cold Arctic tundra. The is adapted to be camouflaged in the snow.\\nFigure: Arctic fox.\\nOptions: (A) camel (B) short-tailed weasel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the Arctic fox.\\nDuring the winter, the Arctic fox has white fur covering its body. It is adapted to be camouflaged in the snow. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nDuring the winter, the short-tailed weasel has white fur covering its body. It is adapted to be camouflaged in the snow.\\nThe camel has sand-colored fur covering its skin. It is not adapted to be camouflaged in the snow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16506\",\n    \"image\": \"16506\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Duncan's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nDuncan was an aerospace engineer who was developing a parachute for a spacecraft that would land on Mars. He needed to add a vent at the center of the parachute so the spacecraft would land smoothly. However, the spacecraft would have to travel at a high speed before landing. If the vent was too big or too small, the parachute might swing wildly at this speed. The movement could damage the spacecraft.\\nSo, to help decide how big the vent should be, Duncan put a parachute with a 1 m vent in a wind tunnel. The wind tunnel made it seem like the parachute was moving at 200 km per hour. He observed the parachute to see how much it swung.\\nFigure: a spacecraft's parachute in a wind tunnel.\\nOptions: (A) whether a parachute with a 1 m vent would swing too much at 400 km per hour (B) if the spacecraft was damaged when using a parachute with a 1 m vent going 200 km per hour (C) how steady a parachute with a 1 m vent was at 200 km per hour\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16510\",\n    \"image\": \"16510\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) flexible (B) hard (C) scratchy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA scratchy object is rough and itchy against your skin. All three objects are scratchy.\\nA flexible object can be folded or bent without breaking easily. The potato sack is flexible, but the log is not.\\nA hard object does not change shape when pressed or squeezed. The log is hard, but the potato sack is not.\\nThe property that all three objects have in common is scratchy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16522\",\n    \"image\": \"16522\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is Rhizophora mangle made up of many cells?\\nContext: This organism is Rhizophora mangle. It is a member of the plant kingdom.\\nRhizophora mangle is commonly called a red mangrove. Red mangrove trees grow in or near water. They have strong roots that help prop, or hold, them up. These roots are also aerial, which means that they can grow above the ground. So, the red mangrove roots are called aerial prop roots.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Rhizophora mangle is a plant. Plants are made up of many cells. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16528\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is this a run-on sentence?\\nRoman gladiators consumed more calcium than everyday Roman citizens the source of that calcium may have been the ashes of burned plants.\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA run-on sentence is formed when two sentences are run together, joined by just a comma or by no punctuation at all. If only a comma is used, the run-on is called a comma splice.\\nThe band I'm in has been rehearsing daily, we have a concert in two weeks.\\nThe band I'm in has been rehearsing daily we have a concert in two weeks.\\nThere are several ways to fix a run-on sentence:\\nUse stronger punctuation, such as a period or a semicolon.\\nThe band I'm in has been rehearsing daily. We have a concert in two weeks.\\nThe band I'm in has been rehearsing daily; we have a concert in two weeks.\\nUse a comma and a coordinating conjunction to create a compound sentence. Coordinating conjunctions include and, but, or, and so.\\nThe band I'm in has been rehearsing daily, and we have a concert in two weeks.\\nUse a subordinating conjunction or a relative pronoun to create a complex sentence. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, and whose.\\nThe band I'm in has been rehearsing daily since we have a concert in two weeks. This is a run-on sentence. It is formed from two sentences run together, joined without punctuation.\\nRoman gladiators consumed more calcium than everyday Roman citizens the source of that calcium may have been the ashes of burned plants.\\nHere is one way to fix the run-on sentence:\\nRoman gladiators consumed more calcium than everyday Roman citizens; the source of that calcium may have been the ashes of burned plants. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16534\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nChloe submitted her suggestions to Dylan; now the ball is in his court.\\nContext: N/A\\nOptions: (A) Dylan needs to act next. (B) Dylan has some difficult work to do.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom the ball is in his court suggests that Dylan needs to act next. In tennis, when the ball is in a player's court, it is that person's turn. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16535\",\n    \"image\": \"16535\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is smaller in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16536\",\n    \"image\": \"16536\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which months have average temperatures of 30\\u00b0C or higher in Dubai?\\nContext: Use the graph to answer the question below.\\nOptions: (A) January through May (B) May through September (C) July through November\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"To describe the average temperature trends in Dubai, look at the graph.\\nChoice \\\"May\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Sep\\\" is incorrect.\\nChoice \\\"Nov\\\" is incorrect.\\nChoice \\\"Jan\\\" is incorrect.\\nThe average temperatures in May, June, July, August, and September are all 30\\u00b0C or higher. So, May through September have average temperatures of 30\\u00b0C or higher. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16542\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) mosquito (B) Christmas tree worm (C) moon jellyfish (D) bald eagle\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A mosquito is an insect. Like other insects, a mosquito is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nLike other jellyfishes, a moon jellyfish is an invertebrate. It does not have a backbone. It has a soft body.\\nA Christmas tree worm is a worm. Like other worms, a Christmas tree worm is an invertebrate. It does not have a backbone. It has a soft body.\\nA bald eagle is a bird. Like other birds, a bald eagle is a vertebrate. It has a backbone. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16544\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a sunflower seed?\\nContext: Select the best estimate.\\nOptions: (A) 15 millimeters (B) 15 meters (C) 15 centimeters (D) 15 kilometers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a sunflower seed is 15 millimeters.\\n15 centimeters, 15 meters, and 15 kilometers are all too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16546\",\n    \"image\": \"16546\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution B has more green particles per milliliter. So, Solution B has a higher concentration of green particles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16557\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nJeremiah campaigned tirelessly in support of his neighbor's bid for elective office.\\nContext: N/A\\nOptions: (A) exclamatory (B) interrogative (C) declarative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement and always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn imperative sentence makes a request or a demand and usually ends with a period. If a demand shows strong feeling, it can end with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn interrogative sentence asks a question and always ends with a question mark.\\nGiven the recent critiques of her new strategic plan, do you think the CEO will reconsider the company's direction?\\nAn exclamatory sentence is a statement that shows surprise or strong feeling. An exclamation always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence is a statement and ends with a period. It is a declarative sentence. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16566\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a pair of boots?\\nContext: Select the best estimate.\\nOptions: (A) 4 tons (B) 4 pounds (C) 4 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a pair of boots is 4 pounds.\\n4 ounces is too light and 4 tons is too heavy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16574\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Captain's phenotype for the cheek color trait?\\nContext: In a group of cockatiels, some individuals have bright orange cheeks and others have pale orange cheeks. In this group, the gene for the cheek color trait has two alleles. The allele for bright orange cheeks (R) is dominant over the allele for pale orange cheeks (r).\\nCaptain is a cockatiel from this group. Captain has the heterozygous genotype Rr for the cheek color gene.\\nOptions: (A) bright orange cheeks (B) pale orange cheeks\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine Captain's phenotype for the cheek color trait. First, consider the alleles in Captain's genotype for the cheek color gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for bright orange cheeks (R) is dominant over the allele for pale orange cheeks (r). This means R is a dominant allele, and r is a recessive allele.\\nCaptain's genotype of Rr has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Captain's phenotype for the cheek color trait must be bright orange cheeks. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16578\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a carton of orange juice?\\nContext: Select the best estimate.\\nOptions: (A) 65 cups (B) 65 fluid ounces (C) 65 gallons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a carton of orange juice is 65 fluid ounces.\\n65 cups and 65 gallons are both too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16580\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Shane decides to go on the super starship. Which result would be a cost?\\nContext: Shane is deciding which ride to go on at the fair. He can go on either the super starship or the Ferris wheel. He wants to have as much fun as possible at the fair.\\nOptions: (A) Shane will spend more ride tickets on the super starship than he would have spent on the Ferris wheel. (B) Shane will have more fun on the super starship than he would have had on the Ferris wheel.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Shane wants or needs:\\nShane will spend more ride tickets on the super starship than he would have spent on the Ferris wheel. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16581\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a full box of cereal?\\nContext: Select the better estimate.\\nOptions: (A) 460 grams (B) 460 kilograms\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of a full box of cereal is 460 grams.\\n460 kilograms is too heavy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16585\",\n    \"image\": \"16585\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Tennessee?\\nContext: N/A\\nOptions: (A) Knoxville (B) Richmond (C) Charlotte (D) Nashville\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Nashville is the capital of Tennessee. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16586\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Last year, 50,000 people lived in the city of Milford. But since then, 8,000 people have moved away. What probably happened to the overall supply of houses for sale in Milford?\\nContext: N/A\\nOptions: (A) The supply probably went down. (B) The supply probably went up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. The population of Milford fell by 8,000 people. Many of the people who have left are probably trying to sell their houses. Since more people are trying to sell their houses, the number of suppliers of houses for sale in Milford has gone up. So, the supply of houses for sale probably went up, too. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16592\",\n    \"image\": \"16592\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Atlantic Ocean (B) the Pacific Ocean (C) the Arctic Ocean (D) the Southern Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Atlantic Ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16593\",\n    \"image\": \"16593\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Washington?\\nContext: N/A\\nOptions: (A) Helena (B) Olympia (C) Spokane (D) Seattle\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Olympia is the capital of Washington. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16595\",\n    \"image\": \"16595\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following fossils is older? Select the more likely answer.\\nContext: This diagram shows fossils in an undisturbed sedimentary rock sequence.\\nOptions: (A) fern (B) insect\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fossil is the preserved evidence of an ancient organism. Some fossils are formed from body parts such as bones or shells. Other fossils, such as footprints or burrows, are formed from traces of an organism's activities.\\nFossils are typically found in sedimentary rocks. Sedimentary rocks usually form in layers. Over time, new layers are added on top of old layers in a series called a rock sequence. The layers in an undisturbed rock sequence are in the same order as when they formed. So, the deeper layers are older than the shallower layers.\\nThe relative ages of fossils can be determined from their positions in an undisturbed rock sequence. Older fossils are usually in deeper layers, and younger fossils are usually in shallower layers. Look again at the fossils in the rock sequence diagram.\\nCompare the positions of these fossils to determine which one is older:\\nThe insect fossil is in a deeper layer in the rock sequence than the fern fossil. So, the insect fossil is most likely older than the fern fossil. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16599\",\n    \"image\": \"16599\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) West Virginia (B) South Carolina (C) Virginia (D) North Carolina\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Virginia.\\nThe Virginia Colony included land that would later become part of the state of West Virginia. West Virginia was never its own colony. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16601\",\n    \"image\": \"16601\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's limbs are also adapted for climbing trees?\\nContext: Chimpanzees live in the forests of Central Africa. Their limbs are adapted for climbing trees.\\nFigure: chimpanzee.\\nOptions: (A) California sea lion (B) lar gibbon\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nArms, legs, flippers, and wings are different types of limbs. The type of limbs an animal has is an example of an adaptation. Animals' limbs can be adapted in different ways. For example, long legs might help an animal run fast. Flippers might help an animal swim. Wings might help an animal fly. Look at the picture of the chimpanzee.\\nThe chimpanzee uses its long limbs to reach branches while climbing. It uses its fingers and toes to grab the branches.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe lar gibbon has long limbs with fingers and toes. Its limbs are adapted for climbing trees.\\nThe California sea lion has flippers. Its limbs are not adapted for climbing trees. The California sea lion uses its flippers to swim underwater. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16606\",\n    \"image\": \"16606\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the reticulated python.\\nContext: This organism is a reticulated python. Its scientific name is Python reticulatus.\\nOptions: (A) Python reticulatus (B) Nerodia cyclopion (C) Morelia viridis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A reticulated python's scientific name is Python reticulatus.\\nPython reticulatus has the same scientific name as a reticulated python. So, these organisms are in the same species.\\nNerodia cyclopion does not have the same scientific name as a reticulated python. So, Python reticulatus and Nerodia cyclopion are not in the same species.\\nMorelia viridis does not have the same scientific name as a reticulated python. So, Python reticulatus and Morelia viridis are not in the same species. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16608\",\n    \"image\": \"16608\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the air inside a soccer ball a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a solid (B) a gas (C) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. The air inside a soccer ball is a gas. A gas expands to fill a space.\\nThe air fills all the space inside the soccer ball. If air leaks out, it will expand into the space around the ball. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16610\",\n    \"image\": \"16610\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) fuzzy (B) smooth (C) transparent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nYou can see clearly through a transparent object. None of the objects are transparent.\\nA smooth object is not scratchy or rough. All three objects are smooth.\\nA fuzzy object is covered in soft hair. None of the objects are fuzzy.\\nThe property that all three objects have in common is smooth. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16622\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Pepe's phenotype for the ear type trait?\\nContext: This passage describes the ear type trait in rats:\\n\\nIn a group of rats, some individuals have normal ears and others have dumbo ears. In this group, the gene for the ear type trait has two alleles. The allele for dumbo ears (e) is recessive to the allele for normal ears (E).\\nPepe is a rat from this group. Pepe has the homozygous genotype EE for the ear type gene.\\nOptions: (A) dumbo ears (B) normal ears\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Pepe's genotype for the ear type gene is EE. Pepe's genotype of EE has only E allelles. The E allele is for normal ears. So, Pepe's phenotype for the ear type trait must be normal ears.\\nTo check this answer, consider whether Pepe's alleles are dominant or recessive. The allele for dumbo ears (e) is recessive to the allele for normal ears (E). This means E is a dominant allele, and e is a recessive allele.\\nPepe's genotype of EE has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Pepe's phenotype for the ear type trait must be normal ears. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16623\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nPebbles are left behind by a fast-flowing river.\\nContext: N/A\\nOptions: (A) drought (B) deposition (C) landslide\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16626\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nJayce can play the viola.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to play the viola. Instead, some people learn how to play. So, playing the viola is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16629\",\n    \"image\": \"16629\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) neither; the samples have the same temperature (C) sample B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in the two samples has the same mass, and the particles in both samples have the same average speed. So, the particles in both samples have the same average kinetic energy.\\nBecause the particles in both samples have the same average kinetic energy, the samples must have the same temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16630\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word postage on a dictionary page with the following guide words?\\npave - primary\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince postage is between the guide words pave - primary, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16639\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Honey's phenotype for the fur length trait?\\nContext: In a group of Syrian hamsters, some individuals have short fur and others have long fur. In this group, the gene for the fur length trait has two alleles. The allele F is for short fur, and the allele f is for long fur.\\nHoney, a Syrian hamster from this group, has long fur. Honey has two alleles for long fur.\\nOptions: (A) ff (B) long fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Honey's observable version of the fur length trait is long fur. So, Honey's phenotype for the fur length trait is long fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16642\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a bottle of cough syrup?\\nContext: Select the best estimate.\\nOptions: (A) 10 cups (B) 10 fluid ounces (C) 10 gallons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a bottle of cough syrup is 10 fluid ounces.\\n10 cups and 10 gallons are both too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16649\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Flopsy's phenotype for the fur length trait?\\nContext: In a group of Syrian hamsters, some individuals have short fur and others have long fur. In this group, the gene for the fur length trait has two alleles. The allele F is for short fur, and the allele f is for long fur.\\nFlopsy, a Syrian hamster from this group, has long fur. Flopsy has two alleles for long fur.\\nOptions: (A) ff (B) long fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Flopsy's observable version of the fur length trait is long fur. So, Flopsy's phenotype for the fur length trait is long fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16651\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nIn 2013, former vice president Al Gore decided to give up eating all animal products, including meat, dairy, and eggs.\\nContext: N/A\\nOptions: (A) declarative (B) interrogative (C) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells about something, and it ends with a period. It is a declarative sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16658\",\n    \"image\": \"16658\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bird's beak is also adapted to tear through meat?\\nContext: Turkey vultures are scavengers. They find and eat the bodies of dead animals. The shape of the 's beak is adapted to tear through meat.\\nFigure: turkey vulture.\\nOptions: (A) bateleur (B) roseate spoonbill\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of a bird's beak is one example of an adaptation. Birds' beaks can be adapted in different ways. For example, a sharp hooked beak might help a bird tear through meat easily. A short, thick beak might help a bird break through a seed's hard shell. Birds that eat similar food often have similar beaks. Look at the picture of the turkey vulture.\\nThe turkey vulture has a sharp hooked beak. Its beak is adapted to tear through meat. The sharp hook can help the turkey vulture cut the meat into pieces it can swallow.\\nNow look at each bird. Figure out which bird has a similar adaptation.\\nThe bateleur has a sharp hooked beak. Its beak is adapted to tear through meat.\\nThe roseate spoonbill has a long spoon-shaped beak. Its beak is not adapted to tear through meat. The roseate spoonbill uses its beak to filter through mud for invertebrates and small fish. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16659\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this fruit fly's phenotype for the antenna type trait?\\nContext: This passage describes the antenna type trait in fruit flies:\\n\\nIn a group of fruit flies, some individuals have mutated antennae and others have normal antennae. In this group, the gene for the antenna type trait has two alleles. The allele A is for mutated antennae, and the allele a is for normal antennae.\\nA certain fruit fly from this group has mutated antennae. This fly has one allele for mutated antennae and one allele for normal antennae.\\nOptions: (A) Aa (B) mutated antennae\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. The fruit fly's observable version of the antenna type trait is mutated antennae. So, the fly's phenotype for the antenna type trait is mutated antennae. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16660\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the most thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 150-gram glass of orange juice at a temperature of 26\\u00b0C (B) a 150-gram glass of orange juice at a temperature of 7\\u00b0C (C) a 150-gram glass of orange juice at a temperature of 6\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. All three glasses of orange juice have the same mass but different temperatures. Since the 26\\u00b0C glass of orange juice is the hottest, it has the most thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16662\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nForced to choose between Scylla and Charybdis, Ezra threw up his hands in dismay.\\nContext: N/A\\nOptions: (A) the Bible (B) Greek mythology\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Scylla and Charybdis is Greek mythology.\\nIn Greek mythology, Scylla and Charybdis were two sea monsters located on either side of a narrow strait in the Mediterranean Sea.\\nThe allusion Scylla and Charybdis means a pair of distasteful alternatives. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16665\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal that does not have a backbone.\\nContext: Hint: Insects, spiders, and worms do not have backbones.\\nOptions: (A) bess beetle (B) minnow\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some animals have a backbone. The backbone is made of many bones in an animal's back. An animal's backbone helps connect the different parts of its body. In the drawings below, each animal's backbone is colored orange.\\nOther animals do not have a backbone. In fact, these animals don't have any bones! Some animals without backbones have a hard outer cover. Other animals have a soft body. A minnow is a fish. Like other fish, a minnow has a backbone.\\nA bess beetle is an insect. Like other insects, a bess beetle does not have a backbone. It has a hard outer cover. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16673\",\n    \"image\": \"16673\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk. A giraffe is an example of a mammal.\\nOptions: (A) eastern newt (B) black howler\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. An eastern newt is an amphibian. It has moist skin and begins its life in water.\\nSome newts live in water. Other newts live on land but lay their eggs in water.\\nA black howler is a mammal. It has hair and feeds its young milk.\\nHowler monkeys have loud calls, or howls. Their calls can be heard over three miles away! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16678\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na penny tarnishing\\na dinosaur bone turning into rock over millions of years\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are only physical changes. (C) Both are chemical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nMetal turning less shiny over time is called tarnishing. A penny tarnishing is a chemical change. When air touches the penny, the surface of the penny changes into a different type of matter. This matter makes the penny dull.\\nA dinosaur bone turning into rock is a chemical change. The matter that made up the bone when it was alive begins to break down. Over a long time, a different type of matter starts forming inside small gaps in the bone. The matter is made of minerals from the earth.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16680\",\n    \"image\": \"16680\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) South America (C) Asia (D) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Europe. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16683\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Julia inherited this trait?\\nContext: Read the description of a trait.\\nJulia has straight hair.\\nOptions: (A) Julia's biological parents have red hair. Julia also has red hair. (B) Julia's neighbor also has straight hair. (C) Julia's biological mother often wears her straight hair in a ponytail.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16685\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nCindy thinks Mr. Ferguson is a Luddite because he doesn't own a cell phone.\\nContext: N/A\\nOptions: (A) Roman history (B) British history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Luddite is British history.\\nIn the early nineteenth century, factories were replacing the jobs of craftsmen. Some of these craftsmen banded together to destroy the new machinery; those who did so were called Luddites.\\nThe allusion Luddite means a person opposed to new technology. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16689\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Sofia acquired this trait?\\nContext: Read the description of a trait.\\nSofia is good at identifying birds from their calls.\\nOptions: (A) Sofia was not born knowing how to identify different bird calls. She had to learn this skill. (B) Sofia likes to photograph birds at the zoo.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16693\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe hum of the computer concerned Jacob. Was the problem with the power supply or the hard drive?\\nContext: N/A\\nOptions: (A) onomatopoeia (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses onomatopoeia, a word that expresses a sound.\\nHum represents the sound the computer was making. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16695\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a movie?\\nContext: N/A\\nOptions: (A) \\\"What Love Is For\\\" (B) ***What Love Is For***\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A movie should be in italics.\\nThe correct title is **What Love Is For**. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16699\",\n    \"image\": \"16699\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these organisms contains matter that was once part of the kelp?\\nContext: Below is a food web from an ocean ecosystem in Monterey Bay, off the coast of California.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) plainfin midshipman (B) sea cucumber (C) zooplankton\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows that starts from the kelp.There is one path matter can take from the kelp to the sea otter: kelp  sea urchin  sea otter. There is one path matter can take from the kelp to the sea cucumber: kelp  sea urchin  sea otter  orca  sea cucumber. zooplankton. The only arrow pointing to the zooplankton starts from the phytoplankton. No arrow points to the phytoplankton. So, in this food web, matter does not move from the kelp to the zooplankton.. plainfin midshipman. There are two arrows pointing to the plainfin midshipman. These start from the phytoplankton and the zooplankton. The only arrow pointing to the zooplankton starts from the phytoplankton. No arrow points to the phytoplankton. So, in this food web, matter does not move from the kelp to the plainfin midshipman.. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16708\",\n    \"image\": \"16708\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Tuvalu (B) Tonga (C) Fiji (D) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Tonga. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16720\",\n    \"image\": \"16720\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alaska?\\nContext: N/A\\nOptions: (A) Fairbanks (B) Salt Lake City (C) Juneau (D) Anchorage\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Juneau is the capital of Alaska. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16723\",\n    \"image\": \"16723\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nOxygen is ().\\nContext: The model below represents a molecule of oxygen. Billions of pounds of oxygen are produced in factories each year. ver half of this oxygen is used to help produce steel.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. Use the model to determine whether oxygen is an elementary substance or a compound.\\nStep 1: Interpret the model.\\nIn the ball-and-stick model shown above, both of the balls are the same color:\\n. The legend shows that red represents the chemical element with the atomic symbol O. So, the model shows you that a molecule of oxygen is composed of one chemical element.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that oxygen is composed of only one chemical element. So, oxygen is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16725\",\n    \"image\": \"16725\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oklahoma?\\nContext: N/A\\nOptions: (A) New York City (B) Louisville (C) Tulsa (D) Oklahoma City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oklahoma City is the capital of Oklahoma. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16727\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the air on a cold, rainy day?\\nContext: Select the better estimate.\\nOptions: (A) 43\\u00b0C (B) 43\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the air on a cold, rainy day is 43\\u00b0F.\\n43\\u00b0C is too hot. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16728\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) Over the summer, my cousin Ling visited many times. (B) She sings our favorite song, we clap for her.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. She sings our favorite song, we clap for her is a run-on sentence. It has two sentences that are joined by just a comma: She sings our favorite song and We clap for her. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16731\",\n    \"image\": \"16731\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16733\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the amphibian.\\nContext: N/A\\nOptions: (A) hippopotamus (B) California toad (C) bald eagle (D) fruit bat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Amphibians have moist skin and begin their lives in water. A fruit bat is a mammal. It has hair and feeds its young milk.\\nFruit bats eat fruit and drink nectar from flowers. They have special teeth to help them bite through fruit skins.\\nA bald eagle is a bird. It has feathers, two wings, and a beak.\\nBald eagles live in trees near water. They build nests that can be up to 13 feet wide!\\nA hippopotamus is a mammal. It has hair and feeds its young milk.\\nHippopotamuses keep cool by lying in mud or water.\\nA California toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16737\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) \\\"This morning, it said that Megan Williamson won the mayoral election in Belmont,\\\" Eddie remarked to his sister. (B) \\\"This morning, the newspaper said that Megan Williamson won the mayoral election in Belmont,\\\" Eddie remarked to his sister.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it is used without its antecedent.\\nThe first answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the newspaper.\\n\\\"This morning, the newspaper said that Megan Williamson won the mayoral election in Belmont,\\\" Eddie remarked to his sister. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16738\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Read the following excerpt from a student essay. How can the writer best improve his or her narrative voice?\\nDuring our last game, our pitcher Wyatt suddenly grabbed his wrist after throwing a fastball. Coach Carey asked him if he was OK, and Wyatt said that it hurt. None of us knew what was wrong with him and he was whisked off to the doctor, who ultimately diagnosed a forearm strain and wrist tendinitis. After three weeks of rehabilitation, Wyatt finally returned. Coach Carey said he was glad Wyatt was back, and Wyatt said he was happy and relieved.\\nContext: N/A\\nOptions: (A) by adding dialogue (B) by using active voice (C) by removing biased language\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"During peer review, you read and respond to a fellow student's writing. While there are many methods and strategies that you can use for reviewing a text, it is generally helpful to frame your suggestions in concrete and constructive ways and to consider the following areas for revision:\\nIdeas and development: Does the writer express a clear idea and develop it with evidence, examples, or analysis?\\nOrganization: Does the writer order ideas in a clear, logical way so that they build on one another and are easy to follow?\\nVoice: Does the writer maintain an appropriate voice, such as a formal and objective voice in an academic essay or an engaging and expressive voice in a narrative essay?\\nSentence fluency: Does the writer use sentences that vary in structure and length to create a sense of rhythm and flow within and between sentences, or does the writing sound choppy, rambling, or repetitive?\\nWord choice: Does the writer use words accurately and precisely to create clear, effective, and engaging writing?\\nGrammar and mechanics: Does the writer follow appropriate conventions, using accurate spelling, punctuation, and grammar to create writing that is correct and easy to read? The writer could best improve his or her narrative voice by adding dialogue.\\nFor example, the writer could replace the underlined sentences with exchanges between Coach Carey and Wyatt.\\nDuring our last game, our pitcher Wyatt suddenly grabbed his wrist after throwing a fastball. Coach Carey asked him if he was OK, and Wyatt said that it hurt. None of us knew what was wrong with him and he was whisked off to the doctor, who ultimately diagnosed a forearm strain and wrist tendinitis. After three weeks of rehabilitation, Wyatt finally returned. Coach Carey said he was glad Wyatt was back, and Wyatt said he was happy and relieved. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16744\",\n    \"image\": \"16744\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) South Carolina (B) Massachusetts (C) New Jersey (D) Georgia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New Jersey. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16746\",\n    \"image\": \"16746\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following fossils is younger? Select the more likely answer.\\nContext: This diagram shows fossils in an undisturbed sedimentary rock sequence.\\nOptions: (A) palm leaf (B) feather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fossil is the preserved evidence of an ancient organism. Some fossils are formed from body parts such as bones or shells. Other fossils, such as footprints or burrows, are formed from traces of an organism's activities.\\nFossils are typically found in sedimentary rocks. Sedimentary rocks usually form in layers. Over time, new layers are added on top of old layers in a series called a rock sequence. The layers in an undisturbed rock sequence are in the same order as when they formed. So, the deeper layers are older than the shallower layers.\\nThe relative ages of fossils can be determined from their positions in an undisturbed rock sequence. Older fossils are usually in deeper layers, and younger fossils are usually in shallower layers. Look again at the fossils in the rock sequence diagram.\\nCompare the positions of these fossils to determine which one is younger:\\nThe palm leaf fossil is in a shallower layer in the rock sequence than the feather fossil. So, the palm leaf fossil is most likely younger than the feather fossil. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16751\",\n    \"image\": \"16751\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Indiana?\\nContext: N/A\\nOptions: (A) Indianapolis (B) Jefferson City (C) Newport (D) Frankfort\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Indianapolis is the capital of Indiana. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16754\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the least thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a meatball at a temperature of 22\\u00b0C (B) a meatball at a temperature of 27\\u00b0C (C) a meatball at a temperature of 20\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. All three meatballs have the same mass but different temperatures. Since the 20\\u00b0C meatball is the coldest, it has the least thermal energy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16756\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nSeth's Falstaffian nature makes him stand out at a party.\\nContext: N/A\\nOptions: (A) Shakespeare (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Falstaffian is Shakespeare.\\nSir John Falstaff, a comical character in several of William Shakespeare's plays, is known for his cheerful sociability and sometimes off-color humor.\\nThe allusion Falstaffian means characterized by joviality and enjoyment of food and drink. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16762\",\n    \"image\": \"16762\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oklahoma?\\nContext: N/A\\nOptions: (A) Oklahoma City (B) Tulsa (C) Raleigh (D) Columbia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oklahoma City is the capital of Oklahoma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16772\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Nutmeg's phenotype for the fur color trait?\\nContext: In a group of rock pocket mice, some individuals have dark fur and others have light fur. In this group, the gene for the fur color trait has two alleles. The allele F is for dark fur, and the allele f is for light fur.\\nNutmeg, a rock pocket mouse from this group, has dark fur. Nutmeg has two alleles for dark fur.\\nOptions: (A) dark fur (B) FF\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Nutmeg's observable version of the fur color trait is dark fur. So, Nutmeg's phenotype for the fur color trait is dark fur. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16773\",\n    \"image\": \"16773\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) California (B) Washington (C) Colorado (D) Hawaii\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Washington. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16777\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) The muffins and sticky buns at Midtown Bakery are delicious. (B) The muffins and sticky buns at Midtown Bakery are to die for.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses an idiom (to die for).\\nThe first sentence uses formal language in place of the idiom, so it is more formal overall. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16784\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nSandra is good at knitting hats.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to knit. Instead, many people learn how to knit. Knitting well takes practice. So, knitting well is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16788\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which would stretch the most?\\nContext: N/A\\nOptions: (A) gold crown (B) plastic water pitcher (C) cotton head band\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Stretchy is a property. A stretchy material gets longer when you pull on it.\\nLook at each picture, one at a time. Imagine pulling on the material shown in each picture.\\nOf the choices, the cotton head band would stretch the most. If you pull the ends of a cotton headband, it will get longer. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16797\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Wayne acquired this trait?\\nContext: Read the description of a trait.\\nWayne has a scar on his left knee.\\nOptions: (A) Wayne's scar is on his left knee. His mother also has a scar on her left knee. (B) Wayne's scar was caused by an accident. He cut his leg when he fell off his skateboard. (C) Wayne's brother has scars on both of his knees.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16802\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the bowl's motion?\\nContext: A steaming bowl of tomato soup is sitting motionless on a table to cool.\\nOptions: (A) The bowl is accelerating. (B) The bowl has a constant velocity.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's velocity describes its speed and its direction.\\nAn object has a constant velocity when neither its speed nor its direction is changing. So, an object has a constant velocity when the object is:\\nmoving in a straight line at a constant speed, or\\nremaining motionless.\\nIf an object does not have a constant velocity, the object is accelerating. An object is accelerating when either its speed or its direction is changing. So, an object is accelerating when the object is:\\nspeeding up,\\nslowing down, or\\nchanging direction. The bowl is remaining motionless. So, the bowl has a constant velocity. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16806\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a leather belt?\\nContext: Select the best estimate.\\nOptions: (A) 31 inches (B) 31 feet (C) 31 miles (D) 31 yards\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a leather belt is 31 inches.\\n31 feet, 31 yards, and 31 miles are all too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16810\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nJeanette insisted that her dog wasn't fat; she said that he was merely well-fed.\\nContext: N/A\\nOptions: (A) euphemism (B) paradox\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nWell-fed is an indirect way of saying overweight. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16811\",\n    \"image\": \"16811\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16812\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this fruit fly's genotype for the eye color gene?\\nContext: In a group of fruit flies, some individuals have red eyes and others have brown eyes. In this group, the gene for the eye color trait has two alleles. The allele E is for red eyes, and the allele e is for brown eyes.\\nA certain fruit fly from this group has red eyes. This fly has one allele for red eyes and one allele for brown eyes.\\nOptions: (A) Ee (B) red eyes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. The fruit fly has one allele for red eyes (E) and one allele for brown eyes (e). So, the fly's genotype for the eye color gene is Ee. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16816\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear grandma lucy, (B) Dear Grandma Lucy,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Grandma Lucy is capitalized because it is a proper noun. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16818\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nAll of my friends are coming to my birthday party. If Kira doesn't, she might as well tell me that she doesn't like me.\\nContext: N/A\\nOptions: (A) false causation: the assumption that because two things happened together, one caused the other (B) false dichotomy: an argument that presents only two choices when more options exist\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that if Kira doesn't go to the speaker's birthday party, it means that she hates the speaker. However, there may be a number of reasons why Kira wouldn't go to the party. This illustrates a type of logical fallacy known as a false dichotomy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16822\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a bench?\\nContext: Select the better estimate.\\nOptions: (A) 10 feet (B) 10 yards\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 8 long. You might be thinking, 8 what? Is the pencil 8 inches long? 8 feet? 8 miles?\\nThe number 8 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are inches. So, the length of the pencil is 8 inches.\\nThere are 12 inches in 1 foot. So, 1 inch is much shorter than 1 foot.\\nThere are 3 feet in 1 yard. So, 1 foot is shorter than 1 yard. The better estimate for the length of a bench is 10 feet.\\n10 yards is too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16824\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nMobile, Alabama, had high humidity over the weekend.\\nContext: N/A\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nMobile, Alabama, had high humidity over the weekend.\\nHumidity is the amount of water in the air.\\nThis passage tells you about the humidity in Mobile last weekend. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16827\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) With Love,\\nRon (B) With love,\\nRon\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16836\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The city of Fairfax has been one of the world's biggest makers of cough drops for many years. But last month, Fairfax's cough drop factories were destroyed by floods. What will probably happen to the overall supply of cough drops?\\nContext: N/A\\nOptions: (A) The supply will probably go down. (B) The supply will probably go up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. Floods destroyed the cough drop factories in Fairfax. The number of producers of cough drops went down. So, the supply of cough drops will probably go down. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16837\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the most thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a crayon at a temperature of 15\\u00b0C (B) a crayon at a temperature of 11\\u00b0C (C) a crayon at a temperature of 8\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. All three crayons have the same mass but different temperatures. Since the 15\\u00b0C crayon is the hottest, it has the most thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16840\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this plant's phenotype for the pod color trait?\\nContext: In a group of pea plants, some individuals have green pods and others have yellow pods. In this group, the gene for the pod color trait has two alleles. The allele for yellow pods (d) is recessive to the allele for green pods (D).\\nA certain pea plant from this group has the homozygous genotype DD for the pod color gene.\\nOptions: (A) yellow pods (B) green pods\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. The pea plant's genotype for the pod color gene is DD. The pea plant's genotype of DD has only D allelles. The D allele is for green pods. So, the pea plant's phenotype for the pod color trait must be green pods.\\nTo check this answer, consider whether the pea plant's alleles are dominant or recessive. The allele for yellow pods (d) is recessive to the allele for green pods (D). This means D is a dominant allele, and d is a recessive allele.\\nThe pea plant's genotype of DD has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, the pea plant's phenotype for the pod color trait must be green pods. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16841\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) There are seven continents on earth, South America is one of them. (B) The cook always wears an apron.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. There are seven continents on earth, South America is one of them is a run-on sentence. It has two sentences that are joined by just a comma: There are seven continents on earth and South America is one of them. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16852\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a sentence fragment?\\nContext: N/A\\nOptions: (A) Gives the baby a bath. (B) The bird has a sharp beak.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Gives the baby a bath is a sentence fragment. It is missing a subject. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16854\",\n    \"image\": \"16854\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the great egret.\\nContext: This organism is a great egret. Its scientific name is Ardea alba.\\nOptions: (A) Ardea alba (B) Diodon nicthemerus (C) Tyto alba\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A great egret's scientific name is Ardea alba. The first word of its scientific name is Ardea.\\nTyto alba and Ardea alba are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Tyto alba and Ardea alba have the same species name within their genus, alba. But the first words of their scientific names are different. Tyto alba is in the genus Tyto, and Ardea alba is in the genus Ardea.\\nThis organism and the great egret are in the same genus and the same species! Both organisms have the same scientific name, Ardea alba.\\nDiodon nicthemerus is in the genus Diodon. The first word of its scientific name is Diodon. So, Diodon nicthemerus and Ardea alba are not in the same genus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16855\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nSilver is ().\\nContext: Silver is a precious metal that is used to make many items, such as jewelry and coins. The chemical formula for silver is Ag.\\nOptions: (A) an elementary substance (B) a compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. You can tell whether silver is an elementary substance or a compound by counting the number of symbols in its chemical formula. A symbol contains either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for silver is Ag. This formula contains one symbol: Ag. So, the formula tells you that silver is made of one chemical element.\\nSubstances made of only one chemical element are elementary substances. So, silver is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16861\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nHear the sledges with the bells,\\nSilver bells!\\n. . . . . . . . .\\nHow they tinkle, tinkle, tinkle,\\nIn the icy air of night!\\n\\u2014Edgar Allan Poe, \\\"The Bells\\\"\\nContext: N/A\\nOptions: (A) verbal irony (B) onomatopoeia\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses onomatopoeia, a word that expresses a sound.\\nTinkle, tinkle, tinkle represents the sound of sleigh bells. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16868\",\n    \"image\": \"16868\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) West Virginia (B) Maryland (C) Washington, D.C. (D) Massachusetts\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Maryland. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16873\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Vijay decides to make vegetable soup. Which result would be a cost?\\nContext: Vijay is deciding whether to make vegetable soup or egg drop soup for dinner. He wants dinner to be as tasty as possible. But he is also hungry and wants to eat soon.\\nOptions: (A) Vijay will spend more time making the vegetable soup than he would have spent making the egg drop soup. (B) The vegetable soup will be tastier than the egg drop soup would have been.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Vijay wants or needs:\\nVijay will spend more time making the vegetable soup than he would have spent making the egg drop soup. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16878\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) thank you,\\nDavid (B) Thank you,\\nDavid\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16879\",\n    \"image\": \"16879\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Oregon?\\nContext: N/A\\nOptions: (A) Salem (B) Portland (C) Phoenix (D) Salt Lake City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salem is the capital of Oregon. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16881\",\n    \"image\": \"16881\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Joey and Darell trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nJoey and Darell open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Joey wanted broccoli in his lunch and Darell was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Joey can trade his tomatoes for Darell's sandwich. (B) Darell can trade his broccoli for Joey's oranges. (C) Darell can trade his almonds for Joey's tomatoes. (D) Joey can trade his tomatoes for Darell's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Joey wanted broccoli in his lunch and Darell was hoping for tomatoes. Look at the labeled part of the images.\\nJoey has tomatoes. Darell has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16883\",\n    \"image\": \"16883\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Texas (B) New Hampshire (C) New York (D) Wisconsin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. Texas is farthest south. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16886\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Ringo's phenotype for the fur color trait?\\nContext: In a group of rabbits, some individuals have black fur and others have brown fur. In this group, the gene for the fur color trait has two alleles. The allele for brown fur (f) is recessive to the allele for black fur (F).\\nRingo is a rabbit from this group. Ringo has the homozygous genotype ff for the fur color gene.\\nOptions: (A) black fur (B) brown fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Ringo's genotype for the fur color gene is ff. Ringo's genotype of ff has only f alleles. The f allele is for brown fur. So, Ringo's phenotype for the fur color trait must be brown fur.\\nTo check this answer, consider whether Ringo's alleles are dominant or recessive. The allele for brown fur (f) is recessive to the allele for black fur (F). This means F is a dominant allele, and f is a recessive allele.\\nRingo's genotype of ff has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Ringo's phenotype for the fur color trait must be brown fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16903\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has less thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a bowl of oatmeal at a temperature of 35\\u00b0C (B) a bowl of oatmeal at a temperature of 40\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. The two bowls of oatmeal have the same mass but different temperatures. Since the 35\\u00b0C bowl of oatmeal is colder than the 40\\u00b0C bowl of oatmeal, it has less thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16917\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the euphemism in this text suggest?\\nAva is between jobs right now, so she's selling some of her old jewelry to help pay the bills.\\nContext: N/A\\nOptions: (A) Ava is short on cash. (B) Ava is unemployed.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe euphemism between jobs means that Ava is unemployed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16930\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Did Ken and his brother look through the user manual before trying to fix his computer? (B) Did Ken and his brother look through the user manual before trying to fix Ken's computer?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun his could refer to Ken's or his brother's.\\nThe first answer choice shows a possible correction for the vague pronoun reference. His has been replaced with Ken's.\\nDid Ken and his brother look through the user manual before trying to fix Ken's computer? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16932\",\n    \"image\": \"16932\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Sperm cells are found inside pollen. What kind of cells are sperm?\\nContext: This diagram shows the life cycle of an apple tree.\\nOptions: (A) female cells (B) male cells\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Flowering plants, called angiosperms, use their flowers for sexual reproduction.\\nFlowers can have male parts, female parts, or both! The male part is called the stamen, and the female part is called the pistil.\\nBoth the male and female parts are needed for sexual reproduction. The female part produces eggs, and the male part produces pollen. Pollen contains cells that become sperm.\\nPollination happens when pollen lands on top of the pistil. Self-pollination happens when a plant with both male and female parts pollinates itself. Cross-pollination happens when pollen from one plant lands on the pistil of a flower on a different plant. Animals, including birds and insects, can be pollinators. Many pollinators come to flowers to get food. As a pollinator feeds, it moves pollen from one flower to another.\\nAfter pollination, sperm from the pollen fuse with eggs. This is called fertilization. The fertilized eggs then grow into seeds. When a seed lands on the ground, it can germinate and grow into a new plant.\\nThe new plant can grow flowers and begin the angiosperm plant life cycle again. Sperm are male cells. Cells that become sperm are found inside the pollen.\\nEggs are female cells. The eggs are produced and stored in the ovary. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16935\",\n    \"image\": \"16935\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) translucent (B) colorful\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA colorful object has one or more bright colors. The pinwheel is colorful.\\nA translucent object lets light through. But you cannot see clearly through a translucent object. The pinwheel is not translucent. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16936\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) It is like pulling teeth to convince patients to make lifestyle changes that will improve their health. (B) It can be difficult to convince patients to make lifestyle changes that will improve their health.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses an idiom (like pulling teeth).\\nThe second sentence uses formal language in place of the idiom, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16939\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Chance's phenotype for the fur texture trait?\\nContext: In a group of dachshund dogs, some individuals have rough fur and others have soft fur. In this group, the gene for the fur texture trait has two alleles. The allele for rough fur (F) is dominant over the allele for soft fur (f).\\nChance is a dachshund dog from this group. Chance has the heterozygous genotype Ff for the fur texture gene.\\nOptions: (A) soft fur (B) rough fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. You need to determine Chance's phenotype for the fur texture trait. First, consider the alleles in Chance's genotype for the fur texture gene. Then, decide whether these alleles are dominant or recessive.\\nThe allele for rough fur (F) is dominant over the allele for soft fur (f). This means F is a dominant allele, and f is a recessive allele.\\nChance's genotype of Ff has one dominant allele and one recessive allele. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Chance's phenotype for the fur texture trait must be rough fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16947\",\n    \"image\": \"16947\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 2. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is stronger in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 2 are closer together than the magnets in Pair 1. So, the magnetic force is stronger in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16951\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following parts does an animal cell have?\\nContext: N/A\\nOptions: (A) chromosomes (B) cell wall (C) chloroplasts\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plant and animal cells have many parts in common, but not all. This table shows some of their similarities and differences.\\nCell part | Plant cell | Animal cell\\ncell wall | yes | no\\ncell membrane | yes | yes\\ncytoplasm | yes | yes\\nmitochondria | yes | yes\\nvacuole | yes | yes\\nchloroplasts | yes | no\\nnucleus | yes | yes\\nchromosomes | yes | yes\\nThink about how plant and animal cells are different:\\nPlant cells have a cell wall, but animal cells do not. The cell wall helps plant cells keep a fixed shape. Most animal cells do not have a fixed shape.\\nPlant cells have chloroplasts, but animal cells do not. Chloroplasts make sugar that plants cells can use as food. Animal cells cannot make their own food.\\n The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16967\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Harper decides to see the grizzly bears. Which result would be a cost?\\nContext: Harper is deciding whether to see the grizzly bears or the gorillas at the zoo. She wants to see lots of animals, but the zoo is closing soon.\\nOptions: (A) Harper will spend more time walking to the grizzly bears. They are on the other side of the zoo, but the gorillas are close by. (B) Harper will enjoy seeing the grizzly bears more than she would have enjoyed seeing the gorillas.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Harper wants or needs:\\nHarper will spend more time walking to the grizzly bears. They are on the other side of the zoo, but the gorillas are close by. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16977\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) Dad remembered to buy groceries, but he forgot the grape jelly. (B) The nervous swimmer steps onto the diving platform.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction but.\\nDad remembered to buy groceries, but he forgot the grape jelly. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16986\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Was there a surplus or a shortage of videogames?\\nContext: A store had 100 copies of a new videogame for sale. The game cost $50. At that price, there were 150 people who wanted to buy a copy of the game.\\nOptions: (A) surplus (B) shortage\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There is a surplus if there is too much for sale at a given price.\\nThere is a shortage if there is not enough for sale at a given price.\\nSurpluses and shortages usually happen when people who are selling goods or services charge too much or too little.\\nWhen the price is too high, consumers will not want to buy much of the good or service. The quantity demanded will be less than the quantity supplied. So, there will be a surplus.\\nWhen the price is too low, too many consumers will want to buy the good or service. The quantity demanded will be more than the quantity supplied. So, there will be a shortage. At the current price, there were not enough copies of the videogame for sale. There were 100 copies for sale, but 150 people wanted to buy one.\\nSo, there was a shortage of copies. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16992\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird.\\nContext: N/A\\nOptions: (A) anchovy (B) porcupinefish (C) fruit bat (D) flamingo\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds have feathers, two wings, and a beak. An anchovy is a fish. It lives underwater. It has fins, not limbs.\\nAn anchovy is a small fish that lives in the ocean. Like some other types of fish, anchovies swim in large groups called schools.\\nA porcupinefish is a fish. It lives underwater. It has fins, not limbs.\\nPorcupinefish can puff up their bodies with air or water to scare off predators.\\nA flamingo is a bird. It has feathers, two wings, and a beak.\\nFlamingos live in large groups. These groups are called flocks.\\nA fruit bat is a mammal. It has hair and feeds its young milk.\\nFruit bats eat fruit and drink nectar from flowers. They have special teeth to help them bite through fruit skins. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16995\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nBridgeport, Connecticut, had cool temperatures over the weekend.\\nContext: N/A\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nBridgeport, Connecticut, had cool temperatures over the weekend.\\nThis passage tells you about the temperature in Bridgeport over the weekend. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"16996\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nTake care to get what you like or you will be forced to like what you get.\\n\\u2014George Bernard Shaw, Man and Superman\\nContext: N/A\\nOptions: (A) chiasmus (B) paradox\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses chiasmus, an expression in which the second half parallels the first but reverses the order of words.\\nThe second half of the sentence reverses the order of the words get and like relative to the first half. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17004\",\n    \"image\": \"17004\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a Syrian hamster produced by this cross will have wavy fur?\\nContext: In a group of Syrian hamsters, some individuals have straight fur and others have wavy fur. In this group, the gene for the fur texture trait has two alleles. The allele for straight fur (F) is dominant over the allele for wavy fur (f).\\nThis Punnett square shows a cross between two Syrian hamsters.\\nOptions: (A) 3/4 (B) 2/4 (C) 4/4 (D) 0/4 (E) 1/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is E.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17014\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a car?\\nContext: Select the best estimate.\\nOptions: (A) 4 miles (B) 4 feet (C) 4 inches (D) 4 yards\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a car is 4 yards.\\n4 inches and 4 feet are too short. 4 miles is too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17015\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nSuzie has a scar on her right leg.\\nContext: Hint: Most scars are caused by accidents during a person's life.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17017\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\npasture - polish\\nContext: N/A\\nOptions: (A) pinch (B) purpose\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince pinch is between the guide words pasture - polish, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17039\",\n    \"image\": \"17039\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) hard (B) rough (C) fragile\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA rough object feels scratchy when you touch it. The bracelet, the apple seeds, and the sunglasses are not rough.\\nA fragile object will break into pieces if you drop it. The clay flower pot is fragile, but the apple seeds are not.\\nA hard object does not change shape when pressed or squeezed. All four objects are hard.\\nThe property that all four objects have in common is hard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17042\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) Michelle blows big bubbles, Victor pops them. (B) Darkness comes quickly on long winter nights.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Michelle blows big bubbles, Victor pops them is a run-on sentence. It has two sentences that are joined by just a comma: Michelle blows big bubbles and Victor pops them. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17044\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Adapted from J. R. Dos Passos, \\\"The Bridge\\\" and from Walt Whitman, \\\"Salut au Monde!\\\"\\nContext: N/A\\nOptions: (A) The lonely bridge cuts dark across the marsh\\nWhose long pools glow with the light\\nOf a flaming summer sunset.\\nAt this end limp bushes overhang,\\nPalely reflected in the amber-colored water. (B) I see the tracks of the railroads of the earth;\\nI see them welding State to State, city to city, through North America;\\nI see them in Great Britain, I see them in Europe;\\nI see them in Asia and in Africa.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Poetry is a special kind of writing. It has many elements that make it different from ordinary writing. Knowing these elements can help you talk about poetry, understand it better, and enjoy it more.\\nA poem rhymes when it has a pattern of words that end in the same sound.\\nEnd rhyme is when the rhymes appear at the end of a poem's lines.\\nLittle Betty Blue,\\nLost her holiday shoe.\\n\\u2014From Mother Goose\\nInternal rhyme is when at least one of the rhyming words appears inside the poem's lines.\\nSweet dreams of pleasant streams.\\n\\u2014From William Blake, \\\"A Cradle Song\\\"\\nRhythm is the pattern of strong and weak syllables, or stress, in a poem. You can recognize rhythm in a poem by listening to how it sounds. Poems with regular rhythm have a beat, like in music.\\nHe watches from his mountain walls,\\nAnd like a thunderbolt he falls.\\n\\u2014From Alfred, Lord Tennyson, \\\"The Eagle\\\"\\nThe syllables in bold are strong. We say them with more force than the other syllables. In this poem, every weak syllable is followed by a strong syllable. Each line sounds like da-DUM da-DUM da-DUM da-DUM. To better hear the rhythm, try reading it aloud while clapping on each strong syllable.\\nFree verse is when a poem has neither a regular rhythm nor a rhyme pattern.\\nThe old bridge has a wrinkled face.\\nHe bends his back\\nFor us to go over.\\n\\u2014From Hilda Conkling, \\\"The Old Bridge\\\"\\nThe syllables in bold are strong. You can see this poem does not have a regular rhythm. It also doesn't have a rhyme pattern.\\nRepetition is when words, phrases, or whole lines are repeated.\\nThe dainty flying squirrel\\nIn vest of shining white,\\nIn coat of silver gray,\\nAnd vest of shining white.\\n\\u2014Adapted from Mary E. Burt, \\\"The Flying Squirrel\\\"\\nAlliteration is when beginning consonant sounds are repeated in words that are close together.\\nWhere the wild men watched and waited\\nWolves in the forest, and bears in the bush.\\n\\u2014From Bayard Taylor, \\\"A Night with a Wolf\\\"\\nOnomatopoeia is when language sounds like what it talks about.\\nSometimes the onomatopoeia uses made-up words:\\nTlot-tlot! tlot-tlot! Had they heard it? The horse hoofs ringing clear.\\n\\u2014From Alfred Noyes, \\\"The Highwayman\\\"\\nSometimes the onomatopoeia uses real words:\\nHark! the honey bee is humming.\\n\\u2014From Mary Howitt, \\\"The Voice of Spring\\\" This poem uses repetition. It repeats words, phrases, or lines.\\nI see them in Asia and in Africa. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17045\",\n    \"image\": \"17045\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's legs are also adapted for wading?\\nContext: Gray herons live near marshes, rivers, and lakes. They eat frogs and fish that live in shallow water. Gray herons hunt their prey by walking through water, or wading.\\nThe 's legs are adapted for wading. They are lightweight and keep the bird's body above the water.\\nFigure: gray heron.\\nOptions: (A) demoiselle crane (B) African penguin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nArms, legs, flippers, and wings are different types of limbs. The type of limbs an animal has is an example of an adaptation. Animals' limbs can be adapted in different ways. For example, long legs might help an animal run fast. Flippers might help an animal swim. Wings might help an animal fly. Look at the picture of the gray heron.\\nLong legs help the gray heron keep its body above the surface of the water while wading. Thin legs are easier to move through the water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe demoiselle crane has long, thin legs. Its legs are adapted for wading.\\nThe African penguin has short legs. Its legs are not adapted for wading. The African penguin uses its legs to walk and swim. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17048\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nThe platypus has venom-producing glands, which are rare among mammals, but its venom is not generally lethal to humans.\\nContext: N/A\\nOptions: (A) simple (B) compound-complex (C) compound (D) complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is compound-complex. It is made up of two independent clauses and a dependent clause. The dependent clause begins with the relative pronoun which.\\nThe platypus has venom-producing glands, which are rare among mammals, but its venom is not generally lethal to humans. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17052\",\n    \"image\": \"17052\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New Jersey (B) Virginia (C) North Carolina (D) South Carolina\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Virginia.\\nThe Virginia Colony included land that would later become part of the state of West Virginia. West Virginia was never its own colony. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17055\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nWhat is the likelihood that we will encounter bears and other wildlife in Alaska?\\nContext: N/A\\nOptions: (A) imperative (B) declarative (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement and always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn imperative sentence makes a request or a demand and usually ends with a period. If a demand shows strong feeling, it can end with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn interrogative sentence asks a question and always ends with a question mark.\\nGiven the recent critiques of her new strategic plan, do you think the CEO will reconsider the company's direction?\\nAn exclamatory sentence is a statement that shows surprise or strong feeling. An exclamation always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence asks a question and ends with a question mark. It is an interrogative sentence. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17056\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nThe friends will visit Frank in Middletown.\\nContext: N/A\\nOptions: (A) future tense (B) past tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, visit. The verb tells you about something that is going to happen. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17061\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe hum of the computer concerned David. Was the problem with the power supply or the hard drive?\\nContext: N/A\\nOptions: (A) simile (B) onomatopoeia\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses onomatopoeia, a word that expresses a sound.\\nHum represents the sound the computer was making. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17069\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Elijah's phenotype for the Thomsen disease trait?\\nContext: This passage describes the Thomsen disease trait in humans:\\n\\nIn a group of humans, some individuals have Thomsen disease and others do not. In this group, the gene for the Thomsen disease trait has two alleles. The allele for having Thomsen disease (M) is dominant over the allele for not having Thomsen disease (m).\\nElijah is a human from this group. Elijah has the homozygous genotype mm for the Thomsen disease gene.\\nOptions: (A) having Thomsen disease (B) not having Thomsen disease\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Elijah's genotype for the Thomsen disease gene is mm. Elijah's genotype of mm has only m alleles. The m allele is for not having Thomsen disease. So, Elijah's phenotype for the Thomsen disease trait must be not having Thomsen disease.\\nTo check this answer, consider whether Elijah's alleles are dominant or recessive. The allele for having Thomsen disease (M) is dominant over the allele for not having Thomsen disease (m). This means M is a dominant allele, and m is a recessive allele.\\nElijah's genotype of mm has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Elijah's phenotype for the Thomsen disease trait must be not having Thomsen disease. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17070\",\n    \"image\": \"17070\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: San Francisco.\\nSan Francisco is located on the coast of California. On December 30, 1856, the temperature fell to 36\\u00b0F.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nSan Francisco is located on the coast of California. On December 30, 1856, the temperature fell to 36\\u00b0F.\\nThe underlined part of the passage tells you about the temperature in San Francisco on a certain day in 1856. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17078\",\n    \"image\": \"17078\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs. A manta ray is an example of a fish.\\nOptions: (A) bison (B) salmon\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A salmon is a fish. It lives underwater. It has fins, not limbs.\\nA bison is a mammal. It has fur and feeds its young milk. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17085\",\n    \"image\": \"17085\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maine?\\nContext: N/A\\nOptions: (A) Augusta (B) Boston (C) Topeka (D) Green Bay\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Augusta is the capital of Maine. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17096\",\n    \"image\": \"17096\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a koi fish produced by this cross will have Bekko patterning?\\nContext: This passage describes the Bekko patterning trait in koi fish:\\nThe Bekko pattern is a pattern of colors found on the bodies of some koi fish. A koi fish with Bekko patterning has black patches all over its body. A koi fish without Bekko patterning does not have these patches.\\nIn a group of koi fish, some individuals have Bekko patterning and others do not. In this group, the gene for the Bekko patterning trait has two alleles. The allele for having Bekko patterning (B) is dominant over the allele for not having Bekko patterning (b).\\nThis Punnett square shows a cross between two koi fish.\\nOptions: (A) 4/4 (B) 3/4 (C) 2/4 (D) 0/4 (E) 1/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17098\",\n    \"image\": \"17098\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this push?\\nContext: A girl uses a stick to hit a pi\\u00f1ata. She pushes the pi\\u00f1ata with the stick. So, the pi\\u00f1ata swings.\\nOptions: (A) toward the stick (B) away from the stick\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"One object can make another object move with a push or a pull.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The girl pushes the pi\\u00f1ata away from the stick, and the pi\\u00f1ata swings. The direction of the push is away from the stick. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17100\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of an article?\\nContext: N/A\\nOptions: (A) Would I Let My Son Play Football? (B) \\\"Would I Let My Son Play Football?\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" An article should be in quotation marks.\\nThe correct title is \\\"Would I Let My Son Play Football?\\\" The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17103\",\n    \"image\": \"17103\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the Steller's jay.\\nContext: This organism is a Steller's jay. Its scientific name is Cyanocitta stelleri.\\nOptions: (A) Larus livens (B) Larus michahellis (C) Cyanocitta cristata\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A Steller's jay's scientific name is Cyanocitta stelleri. The first word of its scientific name is Cyanocitta.\\nCyanocitta cristata is in the genus Cyanocitta. The first word of its scientific name is Cyanocitta. So, Cyanocitta cristata and Cyanocitta stelleri are in the same genus.\\nLarus michahellis is in the genus Larus. The first word of its scientific name is Larus. So, Larus michahellis and Cyanocitta stelleri are not in the same genus.\\nLarus livens is in the genus Larus. The first word of its scientific name is Larus. So, Larus livens and Cyanocitta stelleri are not in the same genus. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17106\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nfeather - fling\\nContext: N/A\\nOptions: (A) fabulous (B) fix\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince fix is between the guide words feather - fling, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17110\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Champ's genotype for the coat color gene?\\nContext: In a group of cows, some individuals have a black coat and others have a red coat. In this group, the gene for the coat color trait has two alleles. The allele L is for a black coat, and the allele l is for a red coat.\\nChamp, a cow from this group, has a red coat. Champ has two alleles for a red coat.\\nOptions: (A) ll (B) a red coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Champ has two alleles for a red coat (l). So, Champ's genotype for the coat color gene is ll. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17115\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the antelope's motion?\\nContext: An antelope is running faster and faster away from a hungry lion.\\nOptions: (A) The antelope has a constant velocity. (B) The antelope is accelerating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's velocity describes its speed and its direction.\\nAn object has a constant velocity when neither its speed nor its direction is changing. So, an object has a constant velocity when the object is:\\nmoving in a straight line at a constant speed, or\\nremaining motionless.\\nIf an object does not have a constant velocity, the object is accelerating. An object is accelerating when either its speed or its direction is changing. So, an object is accelerating when the object is:\\nspeeding up,\\nslowing down, or\\nchanging direction. The antelope is speeding up. So, the antelope is accelerating. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17119\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a kitchen table?\\nContext: Select the best estimate.\\nOptions: (A) 7 yards (B) 7 inches (C) 7 feet (D) 7 miles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a kitchen table is 7 feet.\\n7 inches is too short. 7 yards and 7 miles are too long. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17125\",\n    \"image\": \"17125\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Ling and Maria trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nLing and Maria open their lunch boxes in the school cafeteria. Neither Ling nor Maria got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nLing's lunch Maria's lunch\\nOptions: (A) Maria can trade her almonds for Ling's tomatoes. (B) Ling can trade her tomatoes for Maria's broccoli. (C) Ling can trade her tomatoes for Maria's carrots. (D) Maria can trade her broccoli for Ling's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nLing wants broccoli. Maria wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17135\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the most thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 2-kilogram brick at a temperature of 458\\u00b0F (B) a 2-kilogram brick at a temperature of 430\\u00b0F (C) a 2-kilogram brick at a temperature of 453\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. All three bricks have the same mass but different temperatures. Since the 458\\u00b0F brick is the hottest, it has the most thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17136\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nVoss is a city in Norway. One winter, the snow there was two meters deep!\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nVoss is a city in Norway. One winter, the snow there was two meters deep!\\nThis passage tells you about the precipitation in Voss one winter. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17140\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nNolan persisted despite his friends' attempts to tell him that this was a Gordian knot.\\nContext: N/A\\nOptions: (A) a song (B) ancient legend\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Gordian knot is ancient legend.\\nAccording to legend, Alexander the Great used his sword to slash an intricate knot by which a chariot was tied to a pole in the city of Gordium.\\nThe allusion Gordian knot means a highly complex problem. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17153\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) Dillon liked the sea otters, but the jellyfish were his favorite. (B) The artist prepared a canvas for a new oil painting.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The second sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction but.\\nDillon liked the sea otters, but the jellyfish were his favorite. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17155\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Nina investigate with an experiment?\\nContext: Nina has a small vegetable garden, which includes a compost pile of food scraps. She notices that some of the squash plants growing next to the compost pile grow differently than squash plants that are farther away. She wonders what factors affect how her squash plants grow. So, she decides to design an experiment. She has the following supplies available:\\none type of squash seeds\\nfour large clay pots\\nsoil\\na compost pile\\nwater\\nOptions: (A) If squash seeds and tomato seeds are planted with compost, which type of plant grows larger? (B) Do squash plants grow larger if the seeds are planted with compost or without compost? (C) Do squash plants grow larger if the seeds are planted in small pots or in large pots?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17156\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Sofia investigate with an experiment?\\nContext: Sofia likes to skip rocks at the river. She notices that some of the rocks she throws skip off the surface of the water many times, while others skip once and then sink. She wonders what factors affect how well rocks skip on the water. So, she decides to design an experiment. She has the following supplies available:\\n10 small flat rocks\\n10 large flat rocks\\naccess to the river by her school\\nOptions: (A) Do rocks skip more times when thrown across a river or across a pond? (B) Do small rocks or large rocks skip more times when thrown across the river? (C) Do round rocks or flat rocks skip more times when thrown across the river?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17171\",\n    \"image\": \"17171\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nDistance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17176\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The city of Newport has been one of the world's biggest makers of cough drops for many years. But last month, Newport's cough drop factories were destroyed by floods. What will probably happen to the overall supply of cough drops?\\nContext: N/A\\nOptions: (A) The supply will probably go up. (B) The supply will probably go down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. Floods destroyed the cough drop factories in Newport. The number of producers of cough drops went down. So, the supply of cough drops will probably go down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17178\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word literally in its traditional sense?\\nContext: N/A\\nOptions: (A) Destiny adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally hundreds of years old. (B) Destiny adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally a million years old.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses literally in its traditional sense: in a factual, non-exaggerated way.\\nDestiny adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally hundreds of years old.\\nThe second text uses literally in its nontraditional sense: nearly or in effect (often exaggerated). The bridge is old, but it is not actually a million years old.\\nDestiny adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally a million years old.\\nMost style guides recommend to avoid using the nontraditional sense of the word literally because it is generally considered incorrect. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17183\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Whitney investigate with an experiment?\\nContext: Whitney has a small vegetable garden, which includes a compost pile of food scraps. She notices that some of the squash plants growing next to the compost pile grow differently than squash plants that are farther away. She wonders what factors affect how her squash plants grow. So, she decides to design an experiment. She has the following supplies available:\\none type of squash seeds\\nfour large clay pots\\nsoil\\na compost pile\\nwater\\nOptions: (A) Do squash plants grow larger if the seeds are planted in small pots or in large pots? (B) If squash seeds and tomato seeds are planted with compost, which type of plant grows larger? (C) Do squash plants grow larger if the seeds are planted with compost or without compost?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17189\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Krysta investigate with an experiment?\\nContext: Krysta has a garden that is sometimes visited by deer. She notices that the deer eat some plants in her garden more than others. She wonders what factors affect which plants the deer eat. So, she decides to design an experiment. She has the following supplies available:\\na garlic spray used to keep garden pests away\\nfour tomato plants\\nfour bean plants\\nOptions: (A) Do the deer eat more leaves from tomato plants or from squash plants? (B) Do the deer eat fewer leaves from bean plants sprayed with coffee spray than from unsprayed bean plants? (C) Do the deer eat fewer leaves from bean plants sprayed with garlic spray than from unsprayed bean plants?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17204\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the solid.\\nContext: N/A\\nOptions: (A) grape juice (B) spoon (C) rain\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid and liquid are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17206\",\n    \"image\": \"17206\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does Myrmarachne maxillosa have cells that have a nucleus?\\nContext: This organism is Myrmarachne maxillosa. It is a member of the animal kingdom.\\nMyrmarachne maxillosa is a spider. But its body shape mimics, or copies, the shape of an ant. Mimicking an ant helps M. maxillosa avoid predators that eat spiders. You can tell that M. maxillosa is a spider by counting its legs. Spiders have eight legs, and ants have just six.\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Myrmarachne maxillosa is an animal. Animal cells have a nucleus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17209\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\ndeep-frying chicken\\nburning a marshmallow over a campfire\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are chemical changes. (C) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nDeep-frying chicken is a chemical change. The heat causes the matter in the chicken to change. Cooked chicken and raw chicken are different types of matter.\\nBurning a marshmallow is a chemical change. The heat from the fire causes the type of matter in the marshmallow to change. The marshmallow becomes black and crispy.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBoth changes are caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17211\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nMegan has a scar on her right leg.\\nContext: Hint: Most scars are caused by accidents during a person's life.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17214\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Answer the riddle.\\nI am made of paper.\\nI tell a story.\\nA teacher may read me out loud.\\nWhat am I?\\nContext: N/A\\nOptions: (A) a picture (B) a book\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A book is made of paper.\\nA book tells a story.\\nA teacher may read a book out loud. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17215\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nBaking cookies is a ().\\nContext: N/A\\nOptions: (A) physical change (B) chemical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two ways matter can change.\\nIn a chemical change, the type of matter changes.\\nBurning a piece of paper is a chemical change. The paper changes into ash and smoke.\\nIn a physical change, the type of matter stays the same.\\nCutting a piece of paper is a physical change. The cut pieces are still made of paper.\\nIce melting is also a physical change. When ice melts, it changes from a solid to a liquid. But both ice and liquid water are made of the same type of matter: water! This kind of change is called a change of state. Baking cookies is a chemical change. Cookies are made from cookie dough. Baking turns the cookie dough into cookies. The cookies are a different type of matter than the dough. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17218\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nSummer is usually the hottest time of the year in Des Moines, Iowa.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nSummer is usually the hottest time of the year in Des Moines, Iowa.\\nThis passage tells you about the usual temperature pattern in Des Moines. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17219\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na piece of apple turning brown\\ncompost rotting\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by cooling. (C) Both are caused by heating. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA piece of apple turning brown is a chemical change. The apple reacts with oxygen in the air and turns into a different type of matter.\\nIf you scrape off the brown layer of the apple, the inside is still white. The inside hasn't touched the air. So the chemical change didn't happen to that part of the apple.\\nCompost forms from the remains of plants and animals, such as vegetable scraps and egg shells. Compost rotting is a chemical change. As the compost rots, it breaks down and turns into a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17222\",\n    \"image\": \"17222\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is paper a mineral?\\nContext: Paper has the following properties:\\nmade in a paper mill\\nnot a pure substance\\nno fixed crystal structure\\nsolid\\nOptions: (A) yes (B) no\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Paper does not have all the properties of a mineral. So, paper is not a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17226\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two cars. Which car was moving at a lower speed?\\nContext: N/A\\nOptions: (A) a car that moved 445miles in 10hours (B) a car that moved 170miles in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving slower will go a shorter distance in that time. It is moving at a lower speed. Look at the distance each car moved and the time it took to move that distance.\\nOne car moved 170 miles in 10 hours.\\nThe other car moved 445 miles in 10 hours.\\nNotice that each car spent the same amount of time moving. The car that moved 170 miles moved a shorter distance in that time. So, that car must have moved at a lower speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17227\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word suitcase on a dictionary page with the following guide words?\\nsalute - squirrel\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince suitcase is not between the guide words salute - squirrel, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17228\",\n    \"image\": \"17228\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two identical greenhouses were next to each other. There were solar panels on the roof of one greenhouse but not on the roof of the other greenhouse. This table shows how the temperature of each greenhouse changed over 2hours.\\nOptions: (A) each greenhouse . . . the surroundings (B) the surroundings . . . each greenhouse\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each greenhouse increased, which means that the thermal energy of each greenhouse increased. So, thermal energy was transferred from the surroundings to each greenhouse. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17233\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which pot of spaghetti sauce has a higher temperature?\\nContext: Two pots of spaghetti sauce are identical except for their thermal energies.\\nOptions: (A) the pot of spaghetti sauce with more thermal energy (B) the pot of spaghetti sauce with less thermal energy\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two pots of spaghetti sauce are made of the same material and have the same mass. So, the pot of spaghetti sauce with more thermal energy has a higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17250\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complete sentence?\\nContext: N/A\\nOptions: (A) Kayla draws an arrow it points up. (B) Coach Sharma talked to her team before the game.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Coach Sharma talked to her team before the game is a complete sentence. The subject is Coach Sharma, and the verb is talked. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17254\",\n    \"image\": \"17254\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) Oregon (B) Wyoming (C) New Mexico (D) North Dakota\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. North Dakota is farthest east. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17258\",\n    \"image\": \"17258\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for digging?\\nContext: s are found in parts of North America. They live in burrows and eat other animals that also live in burrows. The feet of the are adapted for digging.\\nFigure: American badger.\\nOptions: (A) groundhog (B) bottlenose dolphin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the American badger.\\nThe American badger has long, straight claws. Its feet are adapted for digging. The American badger uses its claws to break up soil and move it out of the way.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe groundhog has long, straight claws. Its feet are adapted for digging.\\nThe bottlenose dolphin has flippers for feet. Its feet are not adapted for digging. The bottlenose dolphin uses its flippers to swim. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17267\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nherring - hue\\nContext: N/A\\nOptions: (A) hot (B) haunt\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince hot is between the guide words herring - hue, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17268\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Gavin inherited this trait?\\nContext: Read the description of a trait.\\nGavin has naturally brown hair.\\nOptions: (A) Gavin and his biological father have short hair. (B) Gavin's biological mother often wears her naturally brown hair in a bun. (C) Gavin and his siblings all have naturally straight hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17269\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that the skydiver's mass did not change.\\nThe gravitational potential energy stored between the skydiver and Earth () as she drifted toward the flat ground.\\nContext: Read the text about a person in motion.\\nA skydiver jumped out of a plane. After thirty seconds, she opened up her parachute and drifted toward the flat ground.\\nOptions: (A) increased (B) decreased (C) stayed the same\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between the skydiver and the center of Earth changed.\\nThe ground was lower than the point where the skydiver opened up her parachute. As she drifted toward the ground, the distance between the skydiver and the center of Earth decreased. So, the gravitational potential energy stored between the skydiver and Earth decreased as she drifted toward the flat ground. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17273\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Tanvi investigate with an experiment?\\nContext: Tanvi leaves some chocolates in her jacket pocket. When she finds the chocolates later, she notices that some of them have melted. She wonders what factors affect how quickly chocolate melts. So, she decides to design an experiment. She has the following supplies available:\\none bar of milk chocolate\\none bar of dark chocolate\\na stove\\na pot\\nOptions: (A) Does milk chocolate or dark chocolate melt faster when heated on the stove? (B) Does dark chocolate or white chocolate melt faster when heated on the stove? (C) Does milk chocolate melt faster when heated in a microwave or on a stove?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17278\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nIn the morning, Mrs. Harper shoveled the snow.\\nContext: N/A\\nOptions: (A) present tense (B) future tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in past tense. You can tell because it uses a past-tense verb, shoveled. The verb ends in -ed and tells you about something that has already happened. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17285\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nA Good Samaritan jumped in when my grocery bag broke and the contents spilled all over the sidewalk.\\nContext: N/A\\nOptions: (A) the Bible (B) British history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Good Samaritan is the Bible.\\nIn a biblical parable, a Samaritan selflessly stops to help an enemy who has been beaten and stranded on the side of a road.\\nThe allusion Good Samaritan means a person who goes out of the way to help another. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17295\",\n    \"image\": \"17295\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Mexico?\\nContext: N/A\\nOptions: (A) Louisville (B) Harrisburg (C) Santa Fe (D) Albuquerque\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Santa Fe is the capital of New Mexico. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17296\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of an eyedropper?\\nContext: Select the better estimate.\\nOptions: (A) 3 liters (B) 3 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of an eyedropper is 3 milliliters.\\n3 liters is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17304\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nRust forming on a bicycle frame is a ().\\nContext: N/A\\nOptions: (A) chemical change (B) physical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form new molecules. The types of molecules in matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then relink and form different molecules. For example, carbon dioxide molecules are created when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. For example, water vaporizing is a physical change. Liquid water and water vapor are made of the same type of matter: water. Rust forming on a bicycle frame is a chemical change. Oxygen in the air reacts with iron in the bicycle frame. The outside of the frame turns into a different type of matter called rust. Rust is reddish-brown and falls apart easily. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17317\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a sentence fragment?\\nDeveloped in 1973, GPS is a satellite-based navigation system. Also known as Global Positioning System.\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA sentence fragment is a group of words that does not express a complete thought.\\nRehearsing daily because we have a concert in two weeks.\\nThis fragment is missing a subject. It doesn't tell who is rehearsing.\\nThe band I'm in.\\nThis fragment is missing a verb. It doesn't tell what the band I'm in is doing.\\nBecause we have a concert in two weeks.\\nThis fragment is missing an independent clause. It doesn't tell what happened because of the concert. There is a sentence fragment that does not express a complete thought.\\nDeveloped in 1973, GPS is a satellite-based navigation system. Also known as Global Positioning System.\\nHere is one way to fix the sentence fragment:\\nDeveloped in 1973, GPS\\u2014also known as Global Positioning System\\u2014is a satellite-based navigation system. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17319\",\n    \"image\": \"17319\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Solomon Islands (B) Australia (C) Nauru (D) Papua New Guinea\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Australia.\\nIs Australia a country or a continent?\\nBoth! Australia is a country in Oceania, a region made up of many lands and islands in the Pacific Ocean. Many people say that Australia is the world's smallest continent. But some people call Oceania a continent instead. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17324\",\n    \"image\": \"17324\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Ohio (B) New Hampshire (C) Maryland (D) Connecticut\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. Ohio is farthest west. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17328\",\n    \"image\": \"17328\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) the Marshall Islands (B) Vanuatu (C) Nauru (D) New Zealand\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Nauru. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17329\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a rock.\\nContext: N/A\\nOptions: (A) A sunflower seed is made by a living thing. It is formed in nature. (B) Gabbro is not made by living things. It is not a pure substance. (C) Gneiss is not a pure substance. It is not made by living things.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rocks are made of minerals. Here are some properties of rocks:\\nThey are solid.\\nThey are formed in nature.\\nThey are not made by living things.\\nThey are not pure substances. Compare the properties of each substance to the properties of rocks. Select the substance whose properties do not match those of rocks.\\nGabbro is a rock.\\nA sunflower seed is made by a living thing. But rocks are not made by living things.\\nSo, a sunflower seed is not a rock.\\nGneiss is a rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17339\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the invertebrate.\\nContext: Hint: Insects, spiders, and worms are invertebrates.\\nOptions: (A) leaf-tailed gecko (B) bess beetle (C) magpie goose (D) domestic pig\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A bess beetle is an insect. Like other insects, a bess beetle is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA domestic pig is a mammal. Like other mammals, a domestic pig is a vertebrate. It has a backbone.\\nA magpie goose is a bird. Like other birds, a magpie goose is a vertebrate. It has a backbone.\\nA leaf-tailed gecko is a reptile. Like other reptiles, a leaf-tailed gecko is a vertebrate. It has a backbone. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17343\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Assume all other forces on Dylan are balanced. Which statement describes the forces on Dylan?\\nContext: Dylan is standing on a diving board at the pool. Earth's gravity is pulling down on Dylan with a force of 400N. The diving board is pushing up on Dylan with a force of 400N.\\nOptions: (A) The forces are balanced, so there is no net force on Dylan. (B) The forces are unbalanced, so there is a net force on Dylan.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Every force has a direction and a magnitude, or strength. If two forces act on an object in opposite directions, the forces are called opposing forces.\\nWhen opposing forces have the same magnitude, they are balanced. If all the forces on an object are balanced, there is no net force on the object.\\nWhen opposing forces have different magnitudes, the forces are unbalanced. If any forces on an object are unbalanced, there is a net force on the object. To determine if there is a net force on Dylan, look at the forces:\\nEarth's gravity is pulling Dylan down with a force of 400 N.\\nThe diving board is pushing Dylan up with a force of 400 N.\\nThe forces are in opposite directions, and the forces have the same magnitude: 400 N. This means that the forces are balanced, so there is no net force on Dylan. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17351\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a sentence fragment?\\nWhich U.S. cities are doing the most to reduce greenhouse gas emissions? Tonight's news report has the details.\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA sentence fragment is a group of words that does not express a complete thought.\\nRehearsing daily because we have a concert in two weeks.\\nThis fragment is missing a subject. It doesn't tell who is rehearsing.\\nThe band I'm in.\\nThis fragment is missing a verb. It doesn't tell what the band I'm in is doing.\\nBecause we have a concert in two weeks.\\nThis fragment is missing an independent clause. It doesn't tell what happened because of the concert. There is not a sentence fragment. These are complete sentences because they express complete thoughts.\\nWhich U.S. cities are doing the most to reduce greenhouse gas emissions? Tonight's news report has the details. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17354\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nMia has a lot on her plate: she is attending college, has a full-time job as a waitress, and volunteers at the animal shelter.\\nContext: N/A\\nOptions: (A) Mia has worked up an appetite. (B) Mia has many responsibilities.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom a lot on her plate suggests that Mia has many responsibilities. If you have a lot on your plate, you are busy with many different obligations. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17366\",\n    \"image\": \"17366\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Caden's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nCaden was a mechanical engineer who was designing to record temperature, precipitation, and wind speed. The weather station would be used in a town where the highest recorded temperature was 40\\u00b0C. Caden wanted to make sure the weather station would work even in unusually warm weather.\\nSo, he set an indoor test chamber to 50\\u00b0C with low moisture and no wind. He left the weather station in the chamber overnight. The next day, he checked to see if the weather station displayed accurate measurements after 24 hours at 50\\u00b0C.\\nFigure: a weather station.\\nOptions: (A) how well the weather station would work when it was windy (B) if the weather station would work when the temperature was 50\\u00b0C\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17372\",\n    \"image\": \"17372\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Baja California.\\nBaja California is a state in Mexico. It was not raining anywhere in the state during the first week of February.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nBaja California is a state in Mexico. It was not raining anywhere in the state during the first week of February.\\nThe underlined part of the passage tells you about the amount of rain that fell in Baja California during the first week of February. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17380\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nThe Swifts will stay at an inn on the island.\\nContext: N/A\\nOptions: (A) present tense (B) future tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, stay. The verb tells you about something that is going to happen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17385\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nIn the darkness, Amelia strained her eyes.\\nContext: N/A\\nOptions: (A) past tense (B) future tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in past tense. You can tell because it uses a past-tense verb, strained. The verb ends in -ed and tells you about something that has already happened. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17387\",\n    \"image\": \"17387\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Vermont (B) Connecticut (C) Maine (D) New Hampshire\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is New Hampshire. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17390\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a mineral.\\nContext: N/A\\nOptions: (A) Gypsum is formed in nature. It is a pure substance. (B) Malachite is formed in nature. It is a solid. (C) Wool is made by living things. It is not a pure substance.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Compare the properties of each substance to the properties of minerals. Select the substance whose properties do not match those of minerals.\\nGypsum is a mineral.\\nWool is not a pure substance. But all minerals are pure substances.\\nWool is made by living things. But minerals are not made by living things.\\nSo, wool is not a mineral.\\nMalachite is a mineral. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17391\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nA can of soda fizzing over is a ().\\nContext: N/A\\nOptions: (A) chemical change (B) physical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form new molecules. The types of molecules in matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then relink and form different molecules. For example, carbon dioxide molecules are created when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. For example, water vaporizing is a physical change. Liquid water and water vapor are made of the same type of matter: water. A can of soda fizzing over is a physical change. The soda fizzes because the gas trapped inside of it comes out very quickly. But the types of matter the soda and gas are made of do not change. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17398\",\n    \"image\": \"17398\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New York?\\nContext: N/A\\nOptions: (A) New York City (B) Albany (C) Buffalo (D) Honolulu\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Albany is the capital of New York. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17400\",\n    \"image\": \"17400\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Vanuatu (B) Kiribati (C) Papua New Guinea (D) Nauru\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Nauru. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17406\",\n    \"image\": \"17406\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) Europe (C) South America (D) Antarctica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is South America. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17408\",\n    \"image\": \"17408\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is smaller in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17422\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a bottle of nail polish?\\nContext: Select the better estimate.\\nOptions: (A) 15 milliliters (B) 15 liters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a bottle of nail polish is 15 milliliters.\\n15 liters is too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17424\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nThree key pieces of evidence prove that my client is innocent. First, she has not done anything wrong. Second, she is not guilty. And third, she is free from all criminal behaviors, dispositions, or inclinations.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) false dichotomy: an argument that presents only two choices when more options exist (C) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that the client is innocent. However, the \\\"key pieces of evidence\\\" are simply three different ways of saying that the client is innocent. This illustrates a type of logical fallacy known as circular reasoning. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17425\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nI feel like a completely new person now that my fever has broken!\\nContext: N/A\\nOptions: (A) interrogative (B) declarative (C) exclamatory\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement, and it always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn interrogative sentence is a question, and it always ends with a question mark.\\nDo you have any plans for the upcoming weekend?\\nAn imperative sentence is a command. It makes a request or tells someone to do something, and it usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence tells about something, but it shows strong feeling and ends with an exclamation point. It is an exclamatory sentence. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17430\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which letter opening is more formal?\\nContext: N/A\\nOptions: (A) Dear Andy, (B) Dear Mr. Warren,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The first letter opening is more formal. It uses the recipient's personal title and last name. The other opening uses the recipient's first name, suggesting a more familiar relationship. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17431\",\n    \"image\": \"17431\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of North Carolina?\\nContext: N/A\\nOptions: (A) Concord (B) Raleigh (C) Jefferson City (D) Charlotte\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Raleigh is the capital of North Carolina. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17435\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nusing polish to remove tarnish from a silver spoon\\na dinosaur bone turning into rock over millions of years\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are only physical changes. (C) Both are caused by cooling. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA tarnished silver spoon is one that has become less shiny over time. Polishing the spoon makes it look shiny again.\\nThe polish changes the tarnish into a different type of matter that can be easily wiped away. So, using polish to remove tarnish from silver is a chemical change.\\nA dinosaur bone turning into rock is a chemical change. The matter that made up the bone when it was alive begins to break down. Over a long time, a different type of matter starts forming inside small gaps in the bone. The matter is made of minerals from the earth.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17436\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ncasual - coffee\\nContext: N/A\\nOptions: (A) crackle (B) clutch\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince clutch is between the guide words casual - coffee, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17438\",\n    \"image\": \"17438\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the north pole of the other magnet. Poles that are different attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17439\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThis movie is so predictable that I'm likely to die of boredom if I keep watching it.\\nContext: N/A\\nOptions: (A) euphemism (B) hyperbole\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nDie of boredom is an exaggeration, since it is clear that the speaker is not actually in danger of dying due to boredom. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17441\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which drop of dish soap has less thermal energy?\\nContext: Two drops of dish soap are identical except for their temperatures.\\nOptions: (A) the colder drop of dish soap (B) the hotter drop of dish soap\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two drops of dish soap are made of the same material and have the same mass. So, the colder drop of dish soap has less thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17459\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which phrase has a more negative connotation?\\nContext: N/A\\nOptions: (A) a nosy person (B) an interested person\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Connotation is the feeling or idea that goes along with a word or phrase. Some words are close in meaning but have different connotations.\\nFor example, think about the words eager and impatient. They both mean wanting something to happen, but they have different connotations.\\nEager has a positive connotation. It is a nice word. An eager person is happy and excited.\\nImpatient has a negative connotation. It is not a nice word. An impatient person is often pushy and demanding. A nosy person has a more negative connotation. A nosy person is not polite. Nosy people are too interested in things that are not their business. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17464\",\n    \"image\": \"17464\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Solomon Islands (B) Kiribati (C) the Federated States of Micronesia (D) the Marshall Islands\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Federated States of Micronesia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17485\",\n    \"image\": \"17485\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the Burmese python.\\nContext: This organism is a Burmese python. Its scientific name is Python bivittatus.\\nOptions: (A) Melanoplus bivittatus (B) Lithobates palustris (C) Python bivittatus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A Burmese python's scientific name is Python bivittatus. The first word of its scientific name is Python.\\nThis organism and the Burmese python are in the same genus and the same species! Both organisms have the same scientific name, Python bivittatus.\\nLithobates palustris is in the genus Lithobates. The first word of its scientific name is Lithobates. So, Lithobates palustris and Python bivittatus are not in the same genus.\\nMelanoplus bivittatus and Python bivittatus are not in the same genus.\\nThese organisms are not in the same genus, but part of their scientific names is the same. Melanoplus bivittatus and Python bivittatus have the same species name within their genus, bivittatus. But the first words of their scientific names are different. Melanoplus bivittatus is in the genus Melanoplus, and Python bivittatus is in the genus Python. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17488\",\n    \"image\": \"17488\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nNeptune's volume is more than 50 times as great as that of Earth.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. To determine if this statement is true, calculate the value of 50 times the volume of Earth.\\nThen compare the result to the volume of Neptune. The volume of Neptune is 62,530 billion km^3, which is more than 54,500 billion km^3. So, Neptune's volume is more than 50 times as great as that of Earth. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17493\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the cold desert ecosystem.\\nContext: N/A\\nOptions: (A) This ecosystem has:\\na small amount of rain or snow\\ndry, thin soil\\nlong, cold winters (B) This ecosystem has:\\nwarm, wet summers and cold, wet winters\\nsoil that is rich in nutrients\\nonly a few types of trees (C) This ecosystem has:\\nwarm summers and warm winters\\na rainy season and a dry season\\nsoil that is poor in nutrients\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A cold desert is a type of ecosystem. It has a small amount of rain or snow, dry, thin soil, and long, cold winters.\\nChoice 1 is a cold desert ecosystem. It is dry and has long, cold winters. It has a thin layer of soil covering bedrock.\\nChoice 2 is a savanna grassland ecosystem. It is covered in grasses and has a dry season and a wet season.\\nChoice 3 is a temperate deciduous forest ecosystem. It has warm, wet summers and cold, wet winters. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17496\",\n    \"image\": \"17496\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is weaker in Pair 1. (B) The magnetic force is weaker in Pair 2. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17500\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nLoose pieces of rock are blown away by wind.\\nContext: N/A\\nOptions: (A) drought (B) deposition (C) erosion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17501\",\n    \"image\": \"17501\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Wisconsin (B) South Carolina (C) Alabama (D) Vermont\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is South Carolina. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17503\",\n    \"image\": \"17503\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which specific humidity level was measured within the outlined area shown?\\nContext: The map below shows humidity in the lower atmosphere on August 1, 2016. The map shows specific humidity, a measurement of the amount of water vapor in the air. The outlined area shows an air mass that influenced weather in South America on that day.\\nLook at the map. Then, answer the question below.\\nData source: United States National Oceanic and Atmospheric Administration/Earth System Research Laboratory, Physical Sciences Division\\nOptions: (A) 12 grams of water vapor per kilogram of air (B) 14 grams of water vapor per kilogram of air (C) 21 grams of water vapor per kilogram of air\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"To study air masses, scientists can use maps that show conditions within Earth's atmosphere. For example, the map below uses color to show specific humidity, a measurement of the amount of water vapor in the air.\\nThe map's legend tells you the specific humidity level that each color represents. Colors on the left in the legend represent lower specific humidity levels than colors on the right. For example, areas on the map that are the darkest shade of purple have a specific humidity from zero grams per kilogram (g/kg) up to two g/kg. Areas that are the next darkest shade of purple have a specific humidity from two g/kg up to four g/kg. Look at the colors shown within the outlined area. Then, use the legend to determine which specific humidity levels those colors represent.\\nThe legend tells you that this air mass contained air with specific humidity levels between 18 and 24 grams of water vapor per kilogram of air.\\n21 grams of water vapor per kilogram of air is within this range.\\n12 and 14 grams of water vapor per kilogram of air are outside of this range. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17508\",\n    \"image\": \"17508\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with climbing growth to offspring with bush growth? Choose the most likely ratio.\\nContext: This passage describes the growth pattern trait in rose plants:\\nClimbing growth and bush growth are different growth patterns in rose plants. Rose plants with climbing growth have long, bendable stems that act like vines. These plants may grow upward to cover fences or walls. Rose plants with bush growth stay near the ground. These plants form low bushes or shrubs.\\nIn a group of rose plants, some individuals have climbing growth and others have bush growth. In this group, the gene for the growth pattern trait has two alleles. The allele for bush growth (g) is recessive to the allele for climbing growth (G).\\nThis Punnett square shows a cross between two rose plants.\\nOptions: (A) 2:2 (B) 0:4 (C) 1:3 (D) 3:1 (E) 4:0\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with climbing growth or bush growth, consider whether each phenotype is the dominant or recessive allele's version of the growth pattern trait. The question tells you that the g allele, which is for bush growth, is recessive to the G allele, which is for climbing growth.\\nClimbing growth is the dominant allele's version of the growth pattern trait. A rose plant with the dominant version of the growth pattern trait must have at least one dominant allele for the growth pattern gene. So, offspring with climbing growth must have the genotype GG or Gg.\\nThere are 2 boxes in the Punnett square with the genotype GG or Gg. These boxes are highlighted below.\\nBush growth is the recessive allele's version of the growth pattern trait. A rose plant with the recessive version of the growth pattern trait must have only recessive alleles for the growth pattern gene. So, offspring with bush growth must have the genotype gg.\\nThere are 2 boxes in the Punnett square with the genotype gg. These boxes are highlighted below.\\nSo, the expected ratio of offspring with climbing growth to offspring with bush growth is 2:2. This means that, on average, this cross will produce 2 offspring with climbing growth for every 2 offspring with bush growth. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17514\",\n    \"image\": \"17514\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Missouri?\\nContext: N/A\\nOptions: (A) Saint Louis (B) Jefferson City (C) Columbus (D) Kansas City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jefferson City is the capital of Missouri. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17515\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nLatrell lives in a town with hot summers and freezing cold winters.\\nContext: N/A\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nLatrell lives in a town with hot summers and freezing cold winters.\\nThis passage tells you about the usual temperatures where Latrell lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17517\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a passenger helicopter?\\nContext: Select the best estimate.\\nOptions: (A) 3 ounces (B) 3 tons (C) 3 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a passenger helicopter is 3 tons.\\n3 ounces and 3 pounds are both too light. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17523\",\n    \"image\": \"17523\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Kaeng Krachan National Park ecosystem?\\nContext: Figure: Kaeng Krachan National Park.\\nKaeng Krachan National Park is a tropical rain forest ecosystem in western Thailand. It is Thailand's largest national park and has many animals, including elephants.\\nOptions: (A) It has soil that is poor in nutrients. (B) It has mostly small plants.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A tropical rain forest is a type of ecosystem. Tropical rain forests have the following features: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. So, the following statements describe the Kaeng Krachan National Park ecosystem: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. It has soil that is poor in nutrients. It has many different types of organisms. The following statement does not describe Kaeng Krachan National Park: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. It has mostly small plants. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17534\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which organ pulls on bones to move the body?\\nContext: N/A\\nOptions: (A) skeleton (B) skin (C) large intestines (D) muscles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17537\",\n    \"image\": \"17537\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's common name?\\nContext: This organism is Gymnothorax funebris. It is also called a green moray eel.\\nOptions: (A) Gymnothorax funebris (B) green moray eel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Gymnothorax funebris is written in italics. The first word is capitalized, and the second word is not. So, it is the scientific name.\\nGymnothorax funebris is the organism's scientific name. So, you know that green moray eel is the common name. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17543\",\n    \"image\": \"17543\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which rhetorical appeal is primarily used in this ad?\\nContext: N/A\\nOptions: (A) ethos (character) (B) pathos (emotion) (C) logos (reason)\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The purpose of an advertisement is to persuade people to do something. To accomplish this purpose, advertisements use three types of persuasive strategies, or appeals.\\nAppeals to ethos, or character, show the writer or speaker as trustworthy, authoritative, or sharing important values with the audience. An ad that appeals to ethos might do one of the following:\\nsay that a brand has been trusted for many years\\ninclude an endorsement from a respected organization, such as the American Dental Association\\nfeature a testimonial from a \\\"real person\\\" who shares the audience's values\\nuse an admired celebrity or athlete as a spokesperson\\nAppeals to logos, or reason, use logic and verifiable evidence. An ad that appeals to logos might do one of the following:\\nuse graphs or charts to display information\\ncite results of clinical trials or independently conducted studies\\nexplain the science behind a product or service\\nemphasize that the product is a financially wise choice\\nanticipate and refute potential counterclaims\\nAppeals to pathos, or emotion, use feelings rather than facts to persuade the audience. An ad that appeals to pathos might do one of the following:\\ntrigger a fear, such as the fear of embarrassment\\nappeal to a desire, such as the desire to appear attractive\\nlink the product to a positive feeling, such as adventure, love, or luxury The ad appeals to logos, or reason, by emphasizing the practical benefits users can expect from the car. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17553\",\n    \"image\": \"17553\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Maine (B) Rhode Island (C) Wisconsin (D) North Dakota\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. North Dakota is farthest west. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17555\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does the sentence use a simile or a metaphor?\\nFrom across the room, Uncle Josh's laughter was booming thunder.\\nContext: N/A\\nOptions: (A) metaphor (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. From across the room, Uncle Josh's laughter was booming thunder.\\nThe words laughter and thunder are compared without the word like or as. So, the sentence uses a metaphor. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17556\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word nauseous in its traditional sense?\\nContext: N/A\\nOptions: (A) The avant-garde artist deftly used neon colors and geometric patterns to create nauseous spirals that forced many viewers to look away after only a few minutes. (B) The avant-garde artist deftly used neon colors and geometric patterns to create disorienting spirals so intense that they caused some viewers to become nauseous just from looking at them.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses nauseous in its traditional sense: causing disgust or nausea.\\nThe avant-garde artist deftly used neon colors and geometric patterns to create nauseous spirals that forced many viewers to look away after only a few minutes.\\nThe second text uses nauseous in its nontraditional sense: feeling disgusted or nauseated.\\nThe avant-garde artist deftly used neon colors and geometric patterns to create disorienting spirals so intense that they caused some viewers to become nauseous just from looking at them.\\nMost style guides recommend to use the traditional sense of the word nauseous because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17558\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word unique in its traditional sense?\\nContext: N/A\\nOptions: (A) Each vase and bowl in Kiera's collection of handmade pottery is unique. The colors and designs reflect both her cultural heritage and her individual artistic style. (B) Kiera's collection of handmade pottery was featured in last week's edition of the Springtown Journal, which identified her as \\\"one of the most unique young artists to debut this year.\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses unique in its traditional sense: being the only one of its kind.\\nEach vase and bowl in Kiera's collection of handmade pottery is unique. The colors and designs reflect both her cultural heritage and her individual artistic style.\\nThe second text uses unique in its nontraditional sense: interesting or unusual. Kiera is a distinctive artist, but might not be one of a kind. It may be helpful to remember that if unique is modified by an adverb\\u2014as in most unique, very unique, or quite unique\\u2014it is probably being used nontraditionally.\\nKiera's collection of handmade pottery was featured in last week's edition of the Springtown Journal, which identified her as \\\"one of the most unique young artists to debut this year.\\\"\\nMost style guides recommend to use the traditional sense of the word unique because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17559\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\n\\\"That fits you well,\\\" Tony remarked after Bonnie's cap fell over her eyes for the tenth time.\\nContext: N/A\\nOptions: (A) The cap was too big. (B) The cap was a good fit.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nFits you well ironically suggests that the cap was too big. The cap was falling over Bonnie's eyes, so it didn't fit her well at all. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17565\",\n    \"image\": \"17565\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nGold is ().\\nContext: The model below represents gold. Gold is a precious metal that is often used to make jewelry.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a space-filling model. The space-filling model below represents the elementary substance zirconium.\\nIn a space-filling model, the balls represent atoms that are bonded together. The color of a ball represents a specific chemical element. The atomic symbol for that chemical element is shown in the legend. Use the model to determine whether gold is an elementary substance or a compound.\\nStep 1: Interpret the model.\\nIn the space-filling model shown above, all of the balls are the same color:\\n. The legend shows that yellow represents the chemical element with the atomic symbol Au. So, the model shows you that gold is composed of one chemical element.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that gold is composed of only one chemical element. So, gold is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17568\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Choose the poem that uses anaphora.\\nContext: From Alexander Posey, \\\"Autumn\\\" and from Leonora Speyer, \\\"Enigma\\\"\\nOptions: (A) It would be easy to forgive,\\nIf I could but remember;\\nIf I could hear, lost love of mine,\\nThe music of your cruelties. (B) In the dreamy silence\\nOf the afternoon, a\\nCloth of gold is woven\\nOver wood and prairie.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Poets often use the sounds of words to create interesting effects and to express moods and emotions. Understanding these elements of poetry can help you better interpret and appreciate poetic forms.\\nAnaphora is the repetition of words or sequences of words at the beginning of multiple phrases, sentences, or lines.\\nOut of the cradle endlessly rocking,\\nOut of the mocking-bird's throat, the musical shuttle,\\nOut of the Ninth-month midnight\\n\\u2014From Walt Whitman, \\\"Out of the Cradle Endlessly Rocking\\\"\\nOnomatopoeia is when language sounds like what it talks about.\\nSometimes the onomatopoeia uses made-up words:\\nTlot-tlot! tlot-tlot! Had they heard it? The horse hoofs ringing clear.\\n\\u2014From Alfred Noyes, \\\"The Highwayman\\\"\\nSometimes the onomatopoeia uses real words:\\nHark! the honey bee is humming.\\n\\u2014From Mary Howitt, \\\"The Voice of Spring\\\"\\nAlliteration is when beginning consonant sounds are repeated in words that are close together.\\nWhere the wild men watched and waited\\nWolves in the forest, and bears in the bush.\\n\\u2014From Bayard Taylor, \\\"A Night with a Wolf\\\"\\nAssonance is the repetition of vowel sounds. Often, assonance can create rhymes or near-rhymes within lines.\\nI wandered lonely as a Cloud\\nThat floats on high o'er Vales and Hills,\\nWhen all at once I saw a crowd,\\nA host of golden Daffodils.\\n\\u2014From William Wordsworth, \\\"I Wandered Lonely as a Cloud\\\"\\nMeter is a poem's rhythm, or the pattern of strong and weak syllables. Strong syllables are stressed, while weak syllables are unstressed.\\nA poem has an iambic meter when the beat sounds like da-DUM. A weak syllable is followed by a strong syllable. Occasionally, a line may begin with a strong syllable.\\nHe watches from his mountain walls,\\nAnd like a thunderbolt he falls.\\n\\u2014From Alfred, Lord Tennyson, \\\"The Eagle\\\"\\nA poem has a trochaic meter when the beat sounds like DUM-da. A strong syllable is followed by a weak syllable. Occasionally, a line may end in a strong syllable.\\nBack into the chamber turning, all my soul within me burning,\\nSoon again I heard a tapping somewhat louder than before.\\n\\u2014From Edgar Allen Poe, \\\"The Raven\\\"\\nFree verse is when a poem has neither a regular rhythm nor a rhyme pattern.\\nThe old bridge has a wrinkled face.\\nHe bends his back\\nFor us to go over.\\n\\u2014From Hilda Conkling, \\\"The Old Bridge\\\"\\nThe syllables in bold are strong. You can see this poem does not have a regular rhythm. It also doesn't have a rhyme pattern. This poem uses anaphora. It repeats the same word or words at the beginning of multiple lines or phrases.\\nThe music of your cruelties. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17570\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nThe summers are hot in Kissimmee, Florida.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nThe summers are hot in Kissimmee, Florida.\\nThis passage tells you about the usual summer temperatures in Kissimmee. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17577\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nI must have eaten too much of Toby's homemade chili, because now I'm so full I could explode!\\nContext: N/A\\nOptions: (A) paradox (B) hyperbole\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nSo full I could explode is an exaggeration, since it is clear that the speaker is not actually in danger of exploding. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17578\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Remy's phenotype for the fur length trait?\\nContext: In a group of Syrian hamsters, some individuals have short fur and others have long fur. In this group, the gene for the fur length trait has two alleles. The allele F is for short fur, and the allele f is for long fur.\\nRemy, a Syrian hamster from this group, has short fur. Remy has two alleles for short fur.\\nOptions: (A) FF (B) short fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Remy's observable version of the fur length trait is short fur. So, Remy's phenotype for the fur length trait is short fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17595\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Tiny's genotype for the eye color gene?\\nContext: In a group of guinea pigs, some individuals have brown eyes and others have red eyes. In this group, the gene for the eye color trait has two alleles. The allele E is for brown eyes, and the allele e is for red eyes.\\nTiny, a guinea pig from this group, has red eyes. Tiny has two alleles for red eyes.\\nOptions: (A) red eyes (B) ee\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Tiny has two alleles for red eyes (e). So, Tiny's genotype for the eye color gene is ee. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17599\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Bill went on to calculus after studying trigonometry, but he never fully comprehended it. (B) Bill went on to calculus after studying trigonometry, but he never fully comprehended calculus.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it could refer to calculus or trigonometry.\\nThe first answer choice shows a possible correction for the vague pronoun reference. It has been replaced with calculus.\\nBill went on to calculus after studying trigonometry, but he never fully comprehended calculus. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17600\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the most thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a cherry pie at a temperature of 41\\u00b0C (B) a cherry pie at a temperature of 34\\u00b0C (C) a cherry pie at a temperature of 48\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. All three cherry pies have the same mass but different temperatures. Since the 48\\u00b0C pie is the hottest, it has the most thermal energy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17601\",\n    \"image\": \"17601\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can happen to a sperm and an egg?\\nContext: This diagram shows the life cycle of a moss.\\nOptions: (A) They can turn into spores. (B) They can fuse and form fertilized eggs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Moss plants reproduce using both asexual reproduction and sexual reproduction.\\nMoss plants use their male and female parts for sexual reproduction. The male parts produce sperm. Moss live in damp environments, and moss sperm can travel through water to the female parts.\\nThe sperm fuse with eggs in the female part. This is called fertilization. Self-fertilization happens when a sperm from a moss plant fertilizes an egg from the same plant. Cross-fertilization happens when a sperm from one moss plant fertilizes an egg from a different moss plant.\\nThe fertilized egg grows into a thin brown stalk on top of the female part. Each stalk has a small spore capsule at the top. Moss plants use asexual reproduction to make small spores in the capsules. When the capsules open, the spores are released.\\nWhen the spores land on the ground, they may germinate and grow into a new moss plant. This new moss plant can produce eggs and sperm and begin the moss life cycle again. A sperm and an egg can fuse to form a fertilized egg. The fertilized egg then grows into a thin brown stalk on top of the female part.\\nThe new stalk may make spores, but the sperm and the egg do not turn into spores. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17607\",\n    \"image\": \"17607\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is stronger in Pair 1. (C) The magnetic force is stronger in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17609\",\n    \"image\": \"17609\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Nauru (B) the Marshall Islands (C) Kiribati (D) Vanuatu\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Nauru. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17611\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nmelting wax\\nrain forming in a cloud\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are chemical changes. (C) Both are caused by cooling. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nMelting wax is a change of state. So, it is a physical change. The wax changes from solid to liquid. But it is still made of the same type of matter.\\nRain forming in a cloud is a change of state. So, it is a physical change. Water vapor in the air condenses into tiny droplets of liquid water. These droplets make up a cloud. When there is enough water in the air, the droplets will fall as rain.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nWax melting is caused by heating. But rain forming in a cloud is not.\\nBoth are caused by cooling.\\nRain begins to form when water vapor in the air becomes liquid water. This is caused by cooling. But melting wax is not. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17613\",\n    \"image\": \"17613\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17617\",\n    \"image\": \"17617\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak. A pelican is an example of a bird.\\nOptions: (A) western toad (B) barn owl\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A barn owl is a bird. It has feathers, two wings, and a beak.\\nA western toad is an amphibian. It has moist skin and begins its life in water. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17622\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a car key?\\nContext: Select the best estimate.\\nOptions: (A) 3 miles (B) 3 inches (C) 3 feet (D) 3 yards\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a car key is 3 inches.\\n3 feet, 3 yards, and 3 miles are all too long. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17637\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nLucy needs a new pair of shoes.\\nContext: N/A\\nOptions: (A) past tense (B) present tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, needs. The verb ends in -s and tells you about something that is true or happening now. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17646\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Kurt decides to plant the magnolia tree. Which result would be a cost?\\nContext: Kurt is deciding whether to plant lilacs or a magnolia tree in his backyard. He wants to make his backyard more beautiful. But he also wants to leave space for doing fun things.\\nOptions: (A) Kurt will get to look at the magnolia tree. He thinks it will look more beautiful than the lilacs would have looked. (B) The magnolia tree will use up more space than the lilacs would have used up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Kurt wants or needs:\\nThe magnolia tree will use up more space than the lilacs would have used up. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17652\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this fruit fly's phenotype for the eye color trait?\\nContext: In a group of fruit flies, some individuals have red eyes and others have brown eyes. In this group, the gene for the eye color trait has two alleles. The allele E is for red eyes, and the allele e is for brown eyes.\\nA certain fruit fly from this group has brown eyes. This fly has two alleles for brown eyes.\\nOptions: (A) ee (B) brown eyes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. The fruit fly's observable version of the eye color trait is brown eyes. So, the fly's phenotype for the eye color trait is brown eyes. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17654\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nThis is the most beautiful scenery I've ever seen!\\nContext: N/A\\nOptions: (A) exclamatory (B) declarative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence tells about something, but it shows surprise and ends with an exclamation point. It is an exclamatory sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17658\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Madelyn acquired this trait?\\nContext: Read the description of a trait.\\nMadelyn knows how to fly a plane.\\nOptions: (A) Madelyn can fly a plane on cloudy days and at night. (B) A pilot taught Madelyn how to fly a plane. (C) Madelyn is in the Air Force. She flies a plane almost every day.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17665\",\n    \"image\": \"17665\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the north pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17667\",\n    \"image\": \"17667\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Hawaii?\\nContext: N/A\\nOptions: (A) Burlington (B) Indianapolis (C) Honolulu (D) Little Rock\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Honolulu is the capital of Hawaii. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17668\",\n    \"image\": \"17668\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Arizona?\\nContext: N/A\\nOptions: (A) Tallahassee (B) Cheyenne (C) Honolulu (D) Phoenix\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Phoenix is the capital of Arizona. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17672\",\n    \"image\": \"17672\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17679\",\n    \"image\": \"17679\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) sample A (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample B has more mass than each particle in sample A. The particles in sample B also have a higher average speed than the particles in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17686\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nAccording to the Third Amendment, the government cannot force people to keep () in their houses during a time of peace.\\nContext: N/A\\nOptions: (A) cameras (B) soldiers (C) weapons (D) food\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The Third Amendment says that the government can't force people to keep soldiers in their homes during a time of peace. The amendment says that no soldier shall be \\\"quartered in any house.\\\" In this case, \\\"quartered\\\" means \\\"given a place to stay.\\\" The complete text of the Third Amendment is below. Are there any times when an American might have to let a soldier stay in his or her house? No soldier shall, in time of peace be quartered in any house, without the consent of the owner, nor in time of war, but in a manner to be prescribed by law. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17687\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nJustine's sweater shrank just a bit. It fits her baby sister now.\\nContext: N/A\\nOptions: (A) understatement (B) apostrophe\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses understatement, which involves deliberately representing something as less serious or important than it really is.\\nShrank just a bit is an understatement, since the baby is presumably much smaller than Justine. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17688\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nSnowflakes forming in a cloud is a ().\\nContext: N/A\\nOptions: (A) physical change (B) chemical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form new molecules. The types of molecules in matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then relink and form different molecules. For example, carbon dioxide molecules are created when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. For example, water vaporizing is a physical change. Liquid water and water vapor are made of the same type of matter: water. Snowflakes forming in a cloud is a change of state. So, it is a physical change. Liquid water freezes and becomes solid, but it is still made of water. A different type of matter is not formed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17689\",\n    \"image\": \"17689\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Ohio?\\nContext: N/A\\nOptions: (A) Montgomery (B) Cleveland (C) Cincinnati (D) Columbus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbus is the capital of Ohio. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17692\",\n    \"image\": \"17692\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Florida?\\nContext: N/A\\nOptions: (A) Tallahassee (B) Orlando (C) Tampa (D) Oklahoma City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Tallahassee is the capital of Florida. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17693\",\n    \"image\": \"17693\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nSilver is ().\\nContext: The model below represents silver. Silver is a precious metal that is used to make many items, such as jewelry and coins.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a space-filling model. The space-filling model below represents the elementary substance zirconium.\\nIn a space-filling model, the balls represent atoms that are bonded together. The color of a ball represents a specific chemical element. The atomic symbol for that chemical element is shown in the legend. Use the model to determine whether silver is an elementary substance or a compound.\\nStep 1: Interpret the model.\\nIn the space-filling model shown above, all of the balls are the same color:\\n. The legend shows that light blue represents the chemical element with the atomic symbol Ag. So, the model shows you that silver is composed of one chemical element.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that silver is composed of only one chemical element. So, silver is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17695\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) The encyclopedia says that chalk is a soft sedimentary rock formed from the skeletons of marine plankton. (B) It says that chalk is a soft sedimentary rock formed from the skeletons of marine plankton.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun it is used without its antecedent.\\nThe second answer choice shows a possible correction for the vague pronoun reference. It has been replaced with the encyclopedia.\\nThe encyclopedia says that chalk is a soft sedimentary rock formed from the skeletons of marine plankton. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17696\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Robert showed them the error on his receipt, and he received a refund. (B) Robert showed the customer service representatives the error on his receipt, and he received a refund.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun them is used without its antecedent.\\nThe first answer choice shows a possible correction for the vague pronoun reference. Them has been replaced with the customer service representatives.\\nRobert showed the customer service representatives the error on his receipt, and he received a refund. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17698\",\n    \"image\": \"17698\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"After the Akkadian Empire ended, many cities and empires tried to control Mesopotamia. Around the 1790s BCE, which empire started controlling Mesopotamia?\\nContext: Look at the table. Then answer the question below.\\nOptions: (A) the Elamite Empire (B) the Neo-Sumerian Empire (C) the Babylonian Empire (D) the Akkadian Empire\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table.\\nThe abbreviation \\\"ca.\\\" stands for the Latin word, circa. Circa means \\\"about.\\\" It indicates when a date is estimated. So, around 1792 BCE, the Babylonian Empire started controlling Mesopotamia.\\nThe Babylonian (ba-bih-LOH-nee-in) Empire came after the Akkadian and Neo-Sumerian empires. The capital of the Babylonian Empire was the city of Babylon (BA-bih-lahn). The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17703\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear Aunt Laura, (B) dear Aunt Laura,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Aunt Laura is capitalized because it is a proper noun. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17707\",\n    \"image\": \"17707\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for swimming?\\nContext: s spend much of their lives at sea. They eat mostly fish, which they catch while swimming and diving. The feet of the are adapted for swimming.\\nFigure: Atlantic puffin.\\nOptions: (A) African crowned eagle (B) California gull\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the Atlantic puffin.\\nThe Atlantic puffin has webbed feet. Its feet are adapted for swimming. As it swims, the Atlantic puffin uses its webbed feet to push itself through water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe California gull has small claws and webbed feet. Its feet are adapted for swimming.\\nThe African crowned eagle has long toes with sharp claws. Its feet are not adapted for swimming. The African crowned eagle uses its feet to grab prey. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17713\",\n    \"image\": \"17713\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Asia (B) Antarctica (C) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Asia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17721\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nMary's Boutique claims to have \\\"something for everyone,\\\" but it is generally understood that their target market is women of a certain age.\\nContext: N/A\\nOptions: (A) euphemism (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nOf a certain age is an indirect and generally more polite way of referring to older people. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17723\",\n    \"image\": \"17723\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 2 attract. The magnets in Pair 1 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17726\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) The explorers nervously entered the dark cave. (B) Bert borrowed my book he enjoyed it.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Bert borrowed my book he enjoyed it is a run-on sentence. It has two sentences that are joined without end punctuation: Bert borrowed my book and He enjoyed it. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17727\",\n    \"image\": \"17727\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the south pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17752\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence uses a simile?\\nContext: N/A\\nOptions: (A) Hakim's eyes are bright green emeralds. (B) Hakim's eyes are as green as emeralds.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Similes and metaphors are figures of speech that compare two things that are not actually alike.\\nA simile compares two things by saying that one is like the other. Similes often use the words like and as.\\nMy sister runs like a cheetah.\\nThe sister's running and a cheetah's running are compared using the word like.\\nA cheetah is known for running fast, so the simile means that the sister also runs fast.\\nThe cat's fur was as dark as the night.\\nThe cat's fur and the night are compared using the word as.\\nThe night is dark, so the simile means that the cat's fur is also dark.\\nA metaphor compares two things by saying that one of them is the other. Unlike similes, metaphors don't use the word like or as.\\nThe snow formed a blanket over the town.\\nThe snow and a blanket are compared without the word like or as.\\nA blanket is a large piece of cloth that completely covers a bed. The metaphor makes the reader imagine that the snow becomes a blanket, covering the town completely.\\nUsing similes and metaphors in your writing can help you create an interesting picture for the reader. This sentence uses a simile:\\nHakim's eyes are as green as emeralds.\\nThe words eyes and emeralds are compared using the word as.\\nThis sentence uses a metaphor:\\nHakim's eyes are bright green emeralds.\\nThe words eyes and emeralds are compared without the word like or as. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17753\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nA dinosaur bone turning into rock over millions of years is a ().\\nContext: N/A\\nOptions: (A) chemical change (B) physical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form new molecules. The types of molecules in matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then relink and form different molecules. For example, carbon dioxide molecules are created when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. For example, water vaporizing is a physical change. Liquid water and water vapor are made of the same type of matter: water. A dinosaur bone turning into rock is a chemical change. The matter that made up the bone when it was alive begins to break down. Over a long time, a different type of matter starts forming inside small gaps in the bone. The matter is made of minerals from the earth. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17754\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nJennifer submitted her suggestions to Dave; now the ball is in his court.\\nContext: N/A\\nOptions: (A) Dave has some difficult work to do. (B) Dave needs to act next.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom the ball is in his court suggests that Dave needs to act next. In tennis, when the ball is in a player's court, it is that person's turn. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17757\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Fred's brother Paul wondered whether Fred ran fast enough to qualify for the Boston Marathon. (B) Fred's brother Paul wondered whether he ran fast enough to qualify for the Boston Marathon.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun he could refer to Fred or Paul.\\nThe second answer choice shows a possible correction for the vague pronoun reference. He has been replaced with Fred.\\nFred's brother Paul wondered whether Fred ran fast enough to qualify for the Boston Marathon. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17763\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the simile in this text suggest?\\nWhen Lee Mellon finished the apple he smacked his lips together like a pair of cymbals.\\n\\u2014Richard Brautigan, A Confederate General from Big Sur\\nContext: N/A\\nOptions: (A) Lee Mellon made a loud noise with his lips. (B) Lee Mellon was a musician.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night. The text includes a simile, using like or as to compare two things that are not actually alike.\\nThe simile like a pair of cymbals suggests that Lee Mellon made a loud noise with his lips. When cymbals are banged together, they make a loud crashing noise. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17780\",\n    \"image\": \"17780\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak. A penguin is an example of a bird.\\nOptions: (A) sea otter (B) white stork\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A sea otter is a mammal. It has fur and feeds its young milk.\\nSea otters have very thick fur. Their fur keeps them warm in cold water.\\nA white stork is a bird. It has feathers, two wings, and a beak.\\nStorks wade in shallow water to look for food. Storks eat fish, insects, worms, and other small animals. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17784\",\n    \"image\": \"17784\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 2. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is stronger in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17785\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird.\\nContext: N/A\\nOptions: (A) seahorse (B) Hermann's tortoise (C) loon (D) salmon\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds have feathers, two wings, and a beak. A seahorse is a fish. It lives underwater. It has fins, not limbs.\\nSeahorses live in shallow, warm water. They can use their tails to hold on to plants.\\nA loon is a bird. It has feathers, two wings, and a beak.\\nLoons usually live near lakes. They dive in the water to hunt for food.\\nA salmon is a fish. It lives underwater. It has fins, not limbs.\\nUnlike most other fish, salmon can live in both fresh water and salt water.\\nA Hermann's tortoise is a reptile. It has scaly, waterproof skin.\\nA tortoise's shell protects it from predators. When a tortoise feels threatened, it can pull its head and legs inside its shell. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17790\",\n    \"image\": \"17790\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Poles that are different attract. So, these magnets will attract each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17793\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\n\\\"Luca's personality is very Jekyll and Hyde,\\\" Kari told her brother.\\nContext: N/A\\nOptions: (A) literature (B) U.S. history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Jekyll and Hyde is literature.\\nRobert Louis Stevenson's popular Victorian novella Dr. Jekyll and Mr. Hyde tells the story of a man with two distinct personalities. Known to the world as a kind and highly respected doctor, at night he transforms into a monstrous person.\\nThe allusion Jekyll and Hyde means kind then cruel. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17797\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nSodium chloride is ().\\nContext: Sodium chloride, commonly known as table salt, is used to prevent roads from getting icy. The chemical formula for sodium chloride is NaCl.\\nOptions: (A) an elementary substance (B) a compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nThe atomic symbol for each chemical element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one atomic symbol.\\nThe atomic symbol in a chemical formula may be followed by a small number written lower than the symbol. This number is called a subscript. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript shows how many atoms are in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen, O2, has a subscript of 2. This subscript shows that the atomic symbol O represents two atoms. The elementary substance O2 and the chemical element represented by the atomic symbol O are both named oxygen. So, the formula tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple atomic symbols.\\nThe chemical elements in a compound are bonded together in a fixed ratio. This ratio is shown in a compound's chemical formula.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. So, the ratio of beryllium atoms to fluorine atoms is 1 to 2. This ratio is shown in the chemical formula for beryllium fluoride, BeF2. There is no subscript following the atomic symbol Be because that symbol represents one atom. The subscript 2 follows the atomic symbol F to show that the symbol represents two atoms. You can tell whether sodium chloride is an elementary substance or a compound by counting the number of atomic symbols in its chemical formula. An atomic symbol consists of either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for sodium chloride, NaCl, contains two atomic symbols: Na for sodium and Cl for chlorine. So, the formula tells you that sodium chloride is composed of two chemical elements bonded together.\\nSince sodium chloride is composed of multiple chemical elements bonded together, sodium chloride is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17800\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Tyler decides to take a trip to Arkansas. Which result would be a cost?\\nContext: Tyler is deciding whether to take a trip to Alabama or Arkansas. He wants to enjoy his trip. But he is also trying to save money.\\nOptions: (A) Tyler will save some money. Plane tickets for Tyler to get to Arkansas are less expensive than tickets to Alabama. (B) Tyler will give up the chance to go to Alabama. He would have enjoyed a trip to Alabama more than Arkansas.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Tyler wants or needs:\\nTyler will give up the chance to go to Alabama. He would have enjoyed a trip to Alabama more than Arkansas. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17810\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to the passage, which statement is true?\\nContext: The Legislative Branch is described in Article I of the United States Constitution. Read Section 1 of Article I. Then answer the question.\\nAll legislative powers herein granted shall be vested in a Congress of the United States, which shall consist of a Senate and House of Representatives.\\nlegislative: law-making\\nvested in: given to\\nconsist: be made up of\\nOptions: (A) The Congress of the United States makes laws. (B) Congress does not have legislative power.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17818\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word peruse in its traditional sense?\\nContext: N/A\\nOptions: (A) Edmond perused a clothing catalog as he waited for his appointment, flipping through the pages distractedly. (B) Edmond perused a catalog from his wife's favorite clothing store, searching for the perfect birthday gift.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses peruse in its traditional sense: to examine in detail.\\nEdmond perused a catalog from his wife's favorite clothing store, searching for the perfect birthday gift.\\nThe first text uses peruse in its nontraditional sense: to look through in a casual manner.\\nEdmond perused a clothing catalog as he waited for his appointment, flipping through the pages distractedly.\\nMost style guides recommend to use the traditional sense of the word peruse because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17819\",\n    \"image\": \"17819\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What grows in a fertilized cone?\\nContext: This diagram shows the life cycle of a pine tree.\\nOptions: (A) pollen (B) seeds\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gymnosperms are plants that have seeds but not flowers. Conifers are a type of a gymnosperm. Instead of flowers, conifers have cones. Conifers use their cones for sexual reproduction.\\nMost conifer trees have both male and female cones. The male cones produce pollen. The female cones produce eggs and a sticky substance on the edge of the cone.\\nMale cones release pollen into the wind. Pollination happens when pollen lands on and sticks to the female cones. Self-pollination happens when pollen sticks to a female cone on the same tree. Cross-pollination happens when pollen sticks to a female cone on a different tree.\\nAfter pollination, sperm from the pollen fuse with eggs at the base of the female cone's scales. This is called fertilization.\\nThe fertilized eggs grow into seeds inside the female cone. Conifer seeds are released from the fertilized cones. Many conifer seeds have wing-like structures. They can be carried long distances by the wind. When a seed lands on the ground, it can germinate and grow into a new plant.\\nThe new plant can grow cones and begin the conifer life cycle again. Fertilized eggs grow into seeds inside a fertilized cone.\\nPollen grows inside male cones, not fertilized cones. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17829\",\n    \"image\": \"17829\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) sticky (B) stretchy (C) slippery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA stretchy object gets longer when you pull on it. The chocolate milkshake is not stretchy.\\nA sticky object can attach or stick to other things. All four objects are sticky.\\nA slippery object is hard to hold onto or stand on. The tape is not slippery.\\nThe property that all four objects have in common is sticky. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17830\",\n    \"image\": \"17830\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Mandy and Troy trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nMandy and Troy open their lunch boxes in the school cafeteria. Neither Mandy nor Troy got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nMandy's lunch Troy's lunch\\nOptions: (A) Troy can trade his broccoli for Mandy's oranges. (B) Mandy can trade her tomatoes for Troy's carrots. (C) Troy can trade his almonds for Mandy's tomatoes. (D) Mandy can trade her tomatoes for Troy's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nMandy wants broccoli. Troy wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17832\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nI will pack my clothes this afternoon.\\nContext: N/A\\nOptions: (A) future tense (B) past tense (C) present tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, pack. The verb tells you about something that is going to happen. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17833\",\n    \"image\": \"17833\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food chain, the California sea slug is a consumer. Why?\\nContext: This diagram shows a food chain from Monterey Bay, an ocean ecosystem on the coast of California.\\nOptions: (A) It eats another living thing. (B) It makes its own food.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every living thing needs food to stay alive. Living things get their food in different ways. A food chain shows how living things in an ecosystem get their food.\\nProducers make their own food. Many producers use carbon dioxide, water, and sunlight to make sugar. This sugar is food for the producer.\\nConsumers eat other living things. Consumers cannot make their own food. In this food chain, the California sea slug is a consumer because it eats another living thing. The California sea slug in this food chain eats the kelp. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17841\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word bit on a dictionary page with the following guide words?\\nbark - belief\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince bit is not between the guide words bark - belief, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17845\",\n    \"image\": \"17845\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which three months have over 200millimeters of precipitation in Singapore?\\nContext: Use the graph to answer the question below.\\nOptions: (A) May, June, and July (B) August, September, and October (C) November, December, and January\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average precipitation for each month. The average precipitation can be used to describe the climate of a location.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Singapore, look at the graph.\\nChoice \\\"Jan\\\" is incorrect.\\nChoice \\\"May\\\" is incorrect.\\nChoice \\\"Jun\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Aug\\\" is incorrect.\\nChoice \\\"Sep\\\" is incorrect.\\nChoice \\\"Oct\\\" is incorrect.\\nChoice \\\"Nov\\\" is incorrect.\\nChoice \\\"Dec\\\" is incorrect.\\nNovember, December, and January each have over 200 millimeters of precipitation. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17846\",\n    \"image\": \"17846\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this experiment, which were part of a control group?\\nContext: The passage below describes an experiment.\\n\\nOn winter mornings, Lucia had to scrape the ice off of the windshield and side mirrors of her car. Her friend told her that she should cover her side mirrors with plastic bags overnight to stop ice from forming.\\nOne winter night, Lucia secured a plastic bag over one of the side mirrors on her car. She left the other side mirror uncovered. In the morning, she checked the percentage of each mirror that was covered by ice. Lucia repeated this test every night for one week, alternating which mirror she covered each night.\\nFigure: a side mirror covered in ice.\\nOptions: (A) the uncovered side mirrors (B) the covered side mirrors\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to investigate whether changing a variable between different groups has a specific outcome.\\nFor example, imagine you want to find out whether adding fertilizer to soil affects the height of pea plants. You could investigate this question with the following experiment:\\nYou grow one group of pea plants in soil with fertilizer and measure the height of the plants. This group shows you what happens when fertilizer is added to soil. Since fertilizer is the variable whose effect you are investigating, this group is an experimental group.\\nYou grow another group of pea plants in soil without fertilizer and measure the height of the plants. Since this group shows you what happens when fertilizer is not added to the soil, it is a control group.\\nBy comparing the results from the experimental group to the results from the control group, you can conclude whether adding fertilizer to the soil affects pea plant height. In this experiment, Lucia investigated whether covering side mirrors with plastic bags affects how much ice forms on the mirrors. There were no bags on the uncovered side mirrors. So, they were part of a control group. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17857\",\n    \"image\": \"17857\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is smaller when there is a greater distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a greater distance between magnets, the magnitude of the magnetic force between them is smaller.\\nThere is a greater distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17860\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the euphemism in this text suggest?\\nDwayne is big-boned, so despite being in middle school, he often shops in the men's department.\\nContext: N/A\\nOptions: (A) Dwayne is tall for his age. (B) Dwayne is overweight.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe euphemism big-boned suggests that Dwayne is overweight. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17867\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear ms. peterson, (B) Dear Ms. Peterson,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Ms. Peterson is capitalized because it is a proper noun. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17882\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ntease - tomb\\nContext: N/A\\nOptions: (A) tunnel (B) thirteen\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince thirteen is between the guide words tease - tomb, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17887\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nRed velvet cupcakes were Deb's Achilles's heel when she was trying to eat more healthily.\\nContext: N/A\\nOptions: (A) Greek mythology (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Achilles's heel is Greek mythology.\\nIn Greek mythology, Achilles's mother dips him in a river that protects his body wherever it touches. His heel does not get wet, so it is the one part of his body left unprotected. During the Trojan War, an arrow hits Achilles in the heel and kills him.\\nThe allusion Achilles's heel means a sole weakness. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17899\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\n\\\"Speak of the devil!\\\" Tessa declared when Patrick strolled into the room.\\nContext: N/A\\nOptions: (A) Tessa didn't trust Patrick. (B) Tessa had just been speaking about Patrick.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom speak of the devil suggests that Tessa had just been speaking about Patrick. People say this when the person they've just been speaking about coincidentally arrives, as if summoned. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17901\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbending a paper clip\\ncutting your fingernails\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are caused by cooling. (C) Both are chemical changes. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBending a paper clip is a physical change. After you bend it, the paper clip has a different shape. But it is still made of the same type of matter.\\nCutting your fingernails is a physical change. Your fingernails are shorter after you cut them. But the pieces are still made of the same type of matter as the uncut fingernails.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17903\",\n    \"image\": \"17903\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 1. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Both magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17907\",\n    \"image\": \"17907\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Africa (B) Asia (C) Australia (D) North America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is North America. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17908\",\n    \"image\": \"17908\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following fossils is older? Select the more likely answer.\\nContext: This diagram shows fossils in an undisturbed sedimentary rock sequence.\\nOptions: (A) wood (B) palm leaf\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fossil is the preserved evidence of an ancient organism. Some fossils are formed from body parts such as bones or shells. Other fossils, such as footprints or burrows, are formed from traces of an organism's activities.\\nFossils are typically found in sedimentary rocks. Sedimentary rocks usually form in layers. Over time, new layers are added on top of old layers in a series called a rock sequence. The layers in an undisturbed rock sequence are in the same order as when they formed. So, the deeper layers are older than the shallower layers.\\nThe relative ages of fossils can be determined from their positions in an undisturbed rock sequence. Older fossils are usually in deeper layers, and younger fossils are usually in shallower layers. Look again at the fossils in the rock sequence diagram.\\nCompare the positions of these fossils to determine which one is older:\\nThe wood fossil is in a deeper layer in the rock sequence than the palm leaf fossil. So, the wood fossil is most likely older than the palm leaf fossil. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17912\",\n    \"image\": \"17912\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a stuffed hippo a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a gas (B) a liquid (C) a solid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. A stuffed hippo is a solid. A solid has a size and shape of its own.\\nWhen you hold a stuffed hippo in your hands, the stuffed hippo still has a size and shape of its own. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17918\",\n    \"image\": \"17918\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Great Victoria Desert ecosystem?\\nContext: Figure: Great Victoria Desert.\\nThe Great Victoria Desert is a hot desert ecosystem located in Western Australia and South Australia.\\nOptions: (A) It has a small amount of rain. It also has soil that is frozen year-round. (B) It has a small amount of rain. It also has dry, thin soil.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A hot desert is a type of ecosystem. Hot deserts have the following features: a small amount of rain, dry, thin soil, and many different types of organisms. So, the Great Victoria Desert has a small amount of rain. It also has dry, thin soil. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17929\",\n    \"image\": \"17929\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Delaware (B) Kentucky (C) New York (D) Vermont\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New York.\\nDuring the colonial era, New Hampshire and New York both claimed the territory that would later become the state of Vermont. Vermont was never its own colony. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17930\",\n    \"image\": \"17930\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is plagioclase a mineral or a rock?\\nContext: Plagioclase has the following properties:\\nwhite streak\\nfixed crystal structure\\npure substance\\nnaturally occurring\\nnot made by organisms\\nsolid\\nOptions: (A) rock (B) mineral\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Plagioclase has all the properties of a mineral. So, plagioclase is a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17936\",\n    \"image\": \"17936\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) soft (B) fragile\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA fragile object will break into pieces if you drop it. The glass is fragile.\\nA soft object changes shape when pressed or squeezed. The glass is not soft. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17937\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\nAccording to Mr. Joyce's kids, his snoring is as quiet as a jackhammer.\\nContext: N/A\\nOptions: (A) The snoring is loud. (B) The snoring is subtle.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAs quiet as a jackhammer suggests that the snoring is loud. A jackhammer is not quiet, and neither is Mr. Joyce's snoring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17943\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nSo, in a nutshell, that's the story of my monthlong trip to Iceland.\\nContext: N/A\\nOptions: (A) literature (B) U.S. history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion in a nutshell is literature.\\nThe ancient Roman scholar Pliny the Elder relayed an unbelievable story in which The Iliad (a poem hundreds of pages long) was written on parchment paper and inserted into the shell of a walnut. William Shakespeare later referenced this story when his character Hamlet uses the phrase \\\"in a nutshell\\\" to describe something that is compact.\\nThe allusion in a nutshell means in a concise way. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17952\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the elementary substance.\\nContext: N/A\\nOptions: (A) krypton (Kr) (B) potassium nitrate (KNO3) (C) sulfur dioxide (SO2)\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. Look at the chemical formula for each substance, and count the number of symbols in the formula. Then, decide if the substance is an elementary substance. The chemical formula for sulfur dioxide contains two symbols: S for sulfur and O for oxygen. So, sulfur dioxide is made of two chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, sulfur dioxide is a compound, not an elementary substance. The chemical formula for krypton contains one symbol: Kr. So, krypton is made of one chemical element. Substances that are made of one chemical element are elementary substances. So, krypton is an elementary substance. The chemical formula for potassium nitrate contains three symbols: K for potassium, N for nitrogen, and O for oxygen. So, potassium nitrate is made of three chemical elements bonded together. Substances that are made of two or more chemical elements bonded together are compounds. So, potassium nitrate is a compound, not an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17960\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a cement truck?\\nContext: Select the best estimate.\\nOptions: (A) 22 pounds (B) 22 tons (C) 22 ounces\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a cement truck is 22 tons.\\n22 ounces and 22 pounds are both too light. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17969\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word unique in its traditional sense?\\nContext: N/A\\nOptions: (A) Pedro custom ordered his unique coffee table from a master craftsman in Oakdale. (B) Pedro bought his unique coffee table from a factory outlet store in Oakdale.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses unique in its traditional sense: being the only one of its kind.\\nPedro custom ordered his unique coffee table from a master craftsman in Oakdale.\\nThe second text uses unique in its nontraditional sense: interesting or unusual. Pedro's coffee table is an interesting style, but it was made in a factory and is probably not actually one of a kind.\\nPedro bought his unique coffee table from a factory outlet store in Oakdale.\\nMost style guides recommend to use the traditional sense of the word unique because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17970\",\n    \"image\": \"17970\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) sour (B) bumpy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Look at the object.\\nThink about each property.\\nA lemon has a sour taste. The popcorn is not sour.\\nA bumpy object is covered in lumps and bumps. The popcorn is bumpy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17976\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a blender?\\nContext: Select the better estimate.\\nOptions: (A) 1 liter (B) 1 milliliter\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a blender is 1 liter.\\n1 milliliter is too little. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17977\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) The Rocky Mountains stretch from New Mexico to Montana. (B) The prettiest parts of the Rocky Mountains are in the state of Wyoming.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true. Facts can be proved by observing, measuring, or studying information.\\nThe flag of the United States has 13 stripes.\\nThis is a fact. It can be proved by looking at the flag and counting the number of stripes.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nThe flag of the United States is easy to draw.\\nThis is an opinion. People may have different opinions about what makes a flag \\\"easy\\\" to draw. The first sentence states a fact.\\nThe Rocky Mountains stretch from New Mexico to Montana.\\nIt can be proved by checking a map of the United States.\\nThe second sentence states an opinion.\\nThe prettiest parts of the Rocky Mountains are in the state of Wyoming.\\nPrettiest shows what a person believes, thinks, or feels. Another person might have a different opinion about where the prettiest parts of the Rocky Mountains are. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17979\",\n    \"image\": \"17979\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Hawaii?\\nContext: N/A\\nOptions: (A) Honolulu (B) Buffalo (C) Annapolis (D) Saint Louis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Honolulu is the capital of Hawaii. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17985\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Rose decides to join the Theater Club. Which result would be a cost?\\nContext: Rose is deciding whether to join the Photography Club or the Theater Club at school. She wants the club she joins to be fun. But she doesn't want it to take up too much time.\\nOptions: (A) Rose will give up the chance to be in the Photography Club. She would have had more fun in the Photography Club than in the Theater Club. (B) Rose will save some time. She would have spent more time in the Photography Club than in the Theater Club.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Rose wants or needs:\\nRose will give up the chance to be in the Photography Club. She would have had more fun in the Photography Club than in the Theater Club. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17988\",\n    \"image\": \"17988\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Idaho (B) Wyoming (C) Colorado (D) Nevada\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Wyoming. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17990\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Bruce decides to bake banana muffins. Which result would be a cost?\\nContext: Bruce is deciding whether to bake chocolate muffins or banana muffins. He wants the muffins to be tasty. But he also wants to make a lot of muffins.\\nOptions: (A) Bruce will give up the chance to eat chocolate muffins. He thinks chocolate muffins are tastier than banana muffins. (B) Bruce will get to eat more muffins. He can make more banana muffins than chocolate muffins.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Bruce wants or needs:\\nBruce will give up the chance to eat chocolate muffins. He thinks chocolate muffins are tastier than banana muffins. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17992\",\n    \"image\": \"17992\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Pedro and Oliver trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nPedro and Oliver open their lunch boxes in the school cafeteria. Neither Pedro nor Oliver got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nPedro's lunch Oliver's lunch\\nOptions: (A) Oliver can trade his almonds for Pedro's tomatoes. (B) Oliver can trade his broccoli for Pedro's oranges. (C) Pedro can trade his tomatoes for Oliver's carrots. (D) Pedro can trade his tomatoes for Oliver's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nPedro wants broccoli. Oliver wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17994\",\n    \"image\": \"17994\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged in the snow?\\nContext: es live in the cold Arctic tundra. The is adapted to be camouflaged in the snow.\\nFigure: Arctic fox.\\nOptions: (A) naked mole rat (B) ptarmigan\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the Arctic fox.\\nDuring the winter, the Arctic fox has white fur covering its body. It is adapted to be camouflaged in the snow. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nDuring the winter, the ptarmigan has white feathers covering its body. It is adapted to be camouflaged in the snow.\\nThe naked mole rat has thin pink skin. It is not adapted to be camouflaged in the snow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"17995\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) The park rangers explained to the audience that a muskrat looks like a small beaver with a rat-like tail. (B) They explained to the audience that a muskrat looks like a small beaver with a rat-like tail.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun they is used without its antecedent.\\nThe first answer choice shows a possible correction for the vague pronoun reference. They has been replaced with the park rangers.\\nThe park rangers explained to the audience that a muskrat looks like a small beaver with a rat-like tail. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18003\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMayor Armstrong wants to create more bicycle lanes in Lakeside. However, many citizens of Lakeside live far from work. It would not be realistic to force us to give up our cars and bike everywhere.\\nContext: N/A\\nOptions: (A) appeal to nature: the assumption that natural things are always good (B) straw man: a misrepresentation of an opponent's position that makes it easier to argue against (C) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Mayor Armstrong wants people to give up their cars. However, this misrepresents Mayor Armstrong's argument. Mayor Armstrong only wants to create more bike lanes. This illustrates a type of logical fallacy known as a straw man. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18010\",\n    \"image\": \"18010\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Idaho?\\nContext: N/A\\nOptions: (A) Olympia (B) Saint Louis (C) Cincinnati (D) Boise\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boise is the capital of Idaho. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18019\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word volley on a dictionary page with the following guide words?\\nvain - violet\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince volley is not between the guide words vain - violet, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18021\",\n    \"image\": \"18021\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Missouri?\\nContext: N/A\\nOptions: (A) Juneau (B) Chicago (C) Jefferson City (D) Madison\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jefferson City is the capital of Missouri. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18029\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a soda bottle cap?\\nContext: Select the better estimate.\\nOptions: (A) 11 liters (B) 11 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a soda bottle cap is 11 milliliters.\\n11 liters is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18030\",\n    \"image\": \"18030\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of New Mexico?\\nContext: N/A\\nOptions: (A) Helena (B) Colorado Springs (C) Santa Fe (D) Albuquerque\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Santa Fe is the capital of New Mexico. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18036\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\ncrushing a mineral into powder\\ndry ice sublimating and becoming a gas\\nContext: N/A\\nOptions: (A) Both are only physical changes. (B) Both are caused by heating. (C) Both are chemical changes. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nCrushing a mineral into powder is a physical change. The mineral breaks into tiny pieces. But it is still made of the same type of matter.\\nDry ice is solid carbon dioxide. When dry ice gets warm, it changes state and becomes carbon dioxide gas. This change of state, from solid to gas, is called sublimation.\\nDry ice becoming a gas is a physical change. A change of state does not form a different type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nDry ice sublimating is caused by heating. But crushing a mineral is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18045\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the reptile.\\nContext: N/A\\nOptions: (A) Mojave rattlesnake (B) rabbit (C) American bullfrog (D) ocean sunfish\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Reptiles have scaly, waterproof skin. Most reptiles live on land. A rabbit is a mammal. It has fur and feeds its young milk.\\nRabbits live underground in burrows. A group of rabbit burrows is called a warren.\\nA Mojave rattlesnake is a reptile. It has scaly, waterproof skin.\\nRattlesnakes have fangs they can use to inject venom into their prey.\\nAn ocean sunfish is a fish. It lives underwater. It has fins, not limbs.\\nOcean sunfish have a flat body and wide fins. They sometimes swim to the ocean's surface to rest in the sun.\\nAn American bullfrog is an amphibian. It has moist skin and begins its life in water.\\nFrogs live near water or in damp places. Most frogs lay their eggs in water. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18048\",\n    \"image\": \"18048\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for digging?\\nContext: s are found in many parts of Europe. They dig and live in burrows. These moles eat earthworms and nuts, which they find in the soil. The feet of the are adapted for digging.\\nFigure: European mole.\\nOptions: (A) tokay gecko (B) groundhog\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the European mole.\\nThe European mole has long, straight claws. Its feet are adapted for digging. The European mole uses its claws to break up soil and move it out of the way.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe groundhog has long, straight claws. Its feet are adapted for digging.\\nThe tokay gecko has wide, sticky toes. Its feet are not adapted for digging. The tokay gecko uses its feet to climb trees and walk on leaves. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18053\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Betty acquired this trait?\\nContext: Read the description of a trait.\\nBetty is good at identifying insects.\\nOptions: (A) Betty learned to identify insects by reading many books about insects. (B) Betty likes to look at butterflies and beetles.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18055\",\n    \"image\": \"18055\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is better adapted as a warning sign to ward off predators?\\nContext: Strawberry poison frogs have poisonous glands in their brightly colored skin. The bright colors serve as a warning sign that the animal is poisonous. The 's skin is adapted to ward off predators.\\nFigure: strawberry poison frog.\\nOptions: (A) gray tree frog (B) Spanish shawl nudibranch\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the strawberry poison frog.\\nThe strawberry poison frog has poisonous glands in its brightly colored skin. Its skin is adapted to ward off predators. The bright colors serve as a warning sign that the strawberry poison frog is poisonous.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe Spanish shawl nudibranch has stinging cells in its brightly colored skin. Its skin is adapted to ward off predators.\\nThe gray tree frog has gray-brown skin. Its skin is not adapted to be a warning sign that wards off predators. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18064\",\n    \"image\": \"18064\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Pennsylvania?\\nContext: N/A\\nOptions: (A) Trenton (B) Philadelphia (C) Harrisburg (D) Albany\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Harrisburg is the capital of Pennsylvania. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18068\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\ncash - crayon\\nContext: N/A\\nOptions: (A) cunning (B) compose\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince compose is between the guide words cash - crayon, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18069\",\n    \"image\": \"18069\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Africa (B) Asia (C) Antarctica (D) South America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is South America. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18072\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nBeating an egg is a ().\\nContext: N/A\\nOptions: (A) chemical change (B) physical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form new molecules. The types of molecules in matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then relink and form different molecules. For example, carbon dioxide molecules are created when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. For example, water vaporizing is a physical change. Liquid water and water vapor are made of the same type of matter: water. Beating an egg is a physical change. Beating an egg mixes together the egg white, egg yolk, and some air. But mixing them together does not form a different type of matter. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18073\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Angie inherited this trait?\\nContext: Read the description of a trait.\\nAngie has naturally black hair.\\nOptions: (A) Some people use a hair dryer to straighten their hair. But Angie and her brothers have naturally straight hair. (B) Both of Angie's biological parents have naturally black hair. (C) When she was younger, Angie wore ribbons in her naturally black hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18077\",\n    \"image\": \"18077\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following was a dependent variable in this experiment?\\nContext: The passage below describes an experiment. Read the passage and think about the variables that are described.\\n\\nKamal noticed that some of the footballs his team used during practice were not fully inflated. He wondered whether fully inflated footballs would travel farther than footballs with a lower air pressure.\\nTo find out, Kamal collected 20 standard footballs. He fully inflated ten of them to an air pressure of 13 pounds per square inch. He inflated the remaining ten to an air pressure of 10 pounds per square inch. Kamal used to launch a ball across a football field. He measured the distance the football traveled and then launched the next ball. Kamal repeated this with all 20 balls.\\nHint: An independent variable is a variable whose effect you are investigating. A dependent variable is a variable that you measure.\\nFigure: a football launcher.\\nOptions: (A) the distance the footballs traveled (B) the air pressure in the footballs\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to find out how one variable affects another variable. For example, imagine that you want to find out if fertilizer affects the number of tomatoes a tomato plant grows. To answer this question, you decide to set up two equal groups of tomato plants. Then, you add fertilizer to the soil of the plants in one group but not in the other group. Later, you measure the effect of the fertilizer by counting the number of tomatoes on each plant.\\nIn this experiment, the amount of fertilizer added to the soil and the number of tomatoes were both variables.\\nThe amount of fertilizer added to the soil was an independent variable because it was the variable whose effect you were investigating. This type of variable is called independent because its value does not depend on what happens after the experiment begins. Instead, you decided to give fertilizer to some plants and not to others.\\nThe number of tomatoes was a dependent variable because it was the variable you were measuring. This type of variable is called dependent because its value can depend on what happens in the experiment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18078\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the mammal traits listed above.\\nContext: Mammals are a group of animals with similar traits. The following traits can be used to identify mammals:\\nThey feed their offspring milk.\\nThey have fur or hair. Observe the animals and read the descriptions.\\nOptions: (A) Gray tree frogs hatch from eggs without shells. They live underwater when they are tadpoles. They move onto land when they become adults. The moist skin of adult gray tree frogs can be green or gray. The color of their skin helps them hide on rocks or plants. (B) Bengal tigers are one of the world's largest living cats. They have black, white, and orange fur. Female Bengal tigers feed their offspring milk. Male Bengal tigers can be almost twice as large as females!\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nMammals have the following traits:\\nThey feed their offspring milk.\\nThey have fur or hair.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA Bengal tiger has the following traits:\\nIt feeds its offspring milk.\\nIt has hair.\\nA Bengal tiger has the traits of a mammal. A Bengal tiger is a mammal.\\nA gray tree frog has the following traits:\\nIt spends part of its life in water and part on land.\\nIt has moist skin.\\nIt makes eggs with no shells.\\nA gray tree frog does not have all of the traits of a mammal. A gray tree frog is an amphibian. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18086\",\n    \"image\": \"18086\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Cerrado ecosystem?\\nContext: Figure: Cerrado.\\nThe Cerrado is a savanna grassland ecosystem in Brazil.\\nOptions: (A) It has warm summers and warm winters. It also has year-round rain. (B) It has a rainy season and a dry season. It also has soil that is poor in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A savanna grassland is a type of ecosystem. Savanna grasslands have the following features: warm summers and warm winters, a rainy season and a dry season, and soil that is poor in nutrients. So, the Cerrado has a rainy season and a dry season. It also has soil that is poor in nutrients. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18088\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Richard investigate with an experiment?\\nContext: Richard enjoys feeding the squirrels in his backyard. He notices that they spend a lot of time collecting seeds and nuts. He wonders about what factors affect which foods squirrels choose to collect. So, he decides to design an experiment. He has the following supplies available:\\ntwo identical squirrel feeders\\na bag of sunflower seeds\\na bag of walnuts\\na tree to hang the feeders from\\nOptions: (A) Do the squirrels eat walnuts from large feeders more often than from small feeders? (B) Which type of tree do the squirrels feed from most often? (C) Do the squirrels select sunflower seeds or walnuts more often?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18095\",\n    \"image\": \"18095\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the chemical formula for this molecule.\\nContext: N/A\\nOptions: (A) H3S2 (B) He2S2 (C) H2S (D) H2SN\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made up of atoms. Atoms can link together to form molecules. The links between atoms in a molecule are called chemical bonds. Different molecules are made up of different chemical elements, or types of atoms, bonded together.\\nScientists use both ball-and-stick models and chemical formulas to represent molecules.\\nA ball-and-stick model of a molecule is shown below.\\nThe balls represent atoms. The sticks represent the chemical bonds between the atoms.\\nNotice how each ball is labeled with a symbol made of one or more letters. The symbol is an abbreviation for a chemical element. The ball represents one atom of that element.\\nEvery chemical element is represented by its own symbol. For some elements, that symbol is one capital letter. For other elements, it is one capital letter followed by one lowercase letter. For example, the symbol for the element boron is B and the symbol for the element chlorine is Cl.\\nThe molecule shown above has one boron atom and three chlorine atoms. A chemical bond links each chlorine atom to the boron atom.\\nThe chemical formula for a molecule contains the symbol for each chemical element in the molecule. Many chemical formulas use subscripts. A subscript is text that is smaller and placed lower than the normal line of text.\\nIn chemical formulas, the subscripts are numbers. The subscript is always written after the symbol for an element. The subscript tells you how many atoms that symbol represents. If the symbol represents just one atom, then no subscript is included.\\nThe symbols in the chemical formula for a molecule match the symbols in the ball-and-stick model for that molecule. The ball-and-stick model shown before and the chemical formula shown above represent the same substance. H is the symbol for hydrogen. S is the symbol for sulfur. This ball-and-stick model shows a molecule with two hydrogen atoms and one sulfur atom.\\nThe chemical formula will contain the symbols H and S. There are two hydrogen atoms, so H will have a subscript of 2. There is one sulfur atom, so S will not have a subscript.\\nThe correct formula is H2 S.\\nThe diagram below shows how each part of the chemical formula matches with each part of the model above. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18101\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the euphemism in this text suggest?\\nPerhaps we have been guilty of some terminological inexactitudes.\\n\\u2014attributed to Winston Churchill\\nContext: N/A\\nOptions: (A) They made some grammatical errors. (B) They used false or misleading language.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe euphemism terminological inexactitudes suggests that they used false or misleading language. Terminological inexactitudes is an indirect way of referring to language that is purposefully inaccurate or deceptive. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18104\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a mustard bottle?\\nContext: Select the best estimate.\\nOptions: (A) 10 fluid ounces (B) 10 gallons (C) 10 cups\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using customary units, volume may be written in units of fluid ounces, cups, or gallons.\\nAs the diagram shows, there are 8 fluid ounces in 1 cup and 16 cups in 1 gallon. So, 1 fluid ounce is less than 1 cup and much less than 1 gallon.\\nA glass of milk has a volume of about 8 fluid ounces, or 1 cup. A jug of milk has a volume of 1 gallon. The best estimate for the volume of a mustard bottle is 10 fluid ounces.\\n10 cups and 10 gallons are both too much. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18105\",\n    \"image\": \"18105\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Missouri?\\nContext: N/A\\nOptions: (A) Madison (B) Albuquerque (C) Jefferson City (D) Kansas City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jefferson City is the capital of Missouri. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18124\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the gas.\\nContext: N/A\\nOptions: (A) air from a hair dryer (B) tortoise shell (C) caramel sauce (D) pair of dice\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. The air from a hair dryer is a gas. A gas expands to fill a space. A hair dryer uses a fan to blow warm air out. When the air leaves the hair dryer, the air expands to fill a much large space.\\nA tortoise shell is a solid. A solid has a size and shape of its own. A tortoise shell is made of a solid called keratin, just like your fingernails!\\nA pair of dice is a solid. A solid has a size and shape of its own. When you roll a pair of dice, the dice have a shape of their own. They are still cubes when they stop rolling.\\nCaramel sauce is a liquid. A liquid takes the shape of any container it is in. If you pour caramel sauce into a container, the caramel sauce will take the shape of that container. But the caramel sauce will still take up the same amount of space. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18127\",\n    \"image\": \"18127\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this pull?\\nContext: A student opens her desk drawer. She uses a force to pull out the drawer.\\nOptions: (A) toward her hand (B) away from her hand\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to another. Every force has a direction.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The student pulls open her desk drawer. The direction of the pull is toward her hand. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18128\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) The California Gold Rush began after gold was discovered in 1848. (B) People who moved to California for gold were greedy.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true. Facts can be proved by observing, measuring, or studying information.\\nThe flag of the United States has 13 stripes.\\nThis is a fact. It can be proved by looking at the flag and counting the number of stripes.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nThe flag of the United States is easy to draw.\\nThis is an opinion. People may have different opinions about what makes a flag \\\"easy\\\" to draw. The first sentence states a fact.\\nThe California Gold Rush began after gold was discovered in 1848.\\nIt can be proved by reading a book about the California Gold Rush.\\nThe second sentence states an opinion.\\nPeople who moved to California for gold were greedy.\\nGreedy shows what a person believes, thinks, or feels. Another person might have a different opinion about what makes someone greedy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18129\",\n    \"image\": \"18129\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Michigan?\\nContext: N/A\\nOptions: (A) Lansing (B) Providence (C) San Francisco (D) Wilmington\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lansing is the capital of Michigan. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18130\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nlever - loan\\nContext: N/A\\nOptions: (A) lamb (B) liquid\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince liquid is between the guide words lever - loan, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18131\",\n    \"image\": \"18131\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the peregrine falcon.\\nContext: This organism is a peregrine falcon. Its scientific name is Falco peregrinus.\\nOptions: (A) Falco peregrinus (B) Strix uralensis (C) Ardea cinerea\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A peregrine falcon's scientific name is Falco peregrinus.\\nArdea cinerea does not have the same scientific name as a peregrine falcon. So, Falco peregrinus and Ardea cinerea are not in the same species.\\nStrix uralensis does not have the same scientific name as a peregrine falcon. So, Falco peregrinus and Strix uralensis are not in the same species.\\nFalco peregrinus has the same scientific name as a peregrine falcon. So, these organisms are in the same species. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18133\",\n    \"image\": \"18133\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nMagnesium is ().\\nContext: The model below represents magnesium. Magnesium burns easily in air, so it is often used as a fire starter.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a space-filling model. The space-filling model below represents the elementary substance zirconium.\\nIn a space-filling model, the balls represent atoms that are bonded together. The color of a ball represents a specific chemical element. The atomic symbol for that chemical element is shown in the legend. Use the model to determine whether magnesium is an elementary substance or a compound.\\nStep 1: Interpret the model.\\nIn the space-filling model shown above, all of the balls are the same color:\\n. The legend shows that green represents the chemical element with the atomic symbol Mg. So, the model shows you that magnesium is composed of one chemical element.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that magnesium is composed of only one chemical element. So, magnesium is an elementary substance. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18134\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nYou should never let someone borrow something from you. If you do, then everyone will just start taking your things without asking!\\nContext: N/A\\nOptions: (A) guilt by association: a negative association intended to discredit someone or something (B) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences (C) ad hominem: an attack against the person making the argument, rather than the argument itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that letting one person borrow something from you means that everyone will take your things without asking. However, just because you let one person borrow something from you, it does not necessarily mean everyone will change their behavior toward you. This illustrates a type of logical fallacy known as the slippery slope fallacy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18136\",\n    \"image\": \"18136\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes and shapes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 2 than in Pair 1. So, the magnitude of the magnetic force is greater in Pair 2 than in Pair 1. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18138\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nIt was windy last night at the Northern Kentucky Airport. The wind was blowing in from the southeast.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nIt was windy last night at the Northern Kentucky Airport. The wind was blowing in from the southeast.\\nThis passage tells you about the wind direction at the Kentucky airport last night. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18146\",\n    \"image\": \"18146\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Mississippi (B) North Carolina (C) Arkansas (D) Louisiana\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Arkansas. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18149\",\n    \"image\": \"18149\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same species as the moon jellyfish.\\nContext: This organism is a moon jellyfish. Its scientific name is Aurelia aurita.\\nOptions: (A) Aequorea victoria (B) Aurelia aurita (C) Cyanea capillata\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A moon jellyfish's scientific name is Aurelia aurita.\\nAurelia aurita has the same scientific name as a moon jellyfish. So, these organisms are in the same species.\\nCyanea capillata does not have the same scientific name as a moon jellyfish. So, Aurelia aurita and Cyanea capillata are not in the same species.\\nAequorea victoria does not have the same scientific name as a moon jellyfish. So, Aurelia aurita and Aequorea victoria are not in the same species. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18152\",\n    \"image\": \"18152\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution A (B) Solution B (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution B has more green particles per milliliter. So, Solution B has a higher concentration of green particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18159\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this tomato plant's phenotype for the leaf type trait?\\nContext: This passage describes the leaf type trait in tomato plants:\\n\\nIn a group of tomato plants, some individuals have regular leaves and others have potato leaves. In this group, the gene for the leaf type trait has two alleles. The allele L is for regular leaves, and the allele l is for potato leaves.\\nA certain tomato plant from this group has potato leaves. This plant has two alleles for potato leaves.\\nOptions: (A) potato leaves (B) ll\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. The tomato plant's observable version of the leaf type trait is potato leaves. So, the plant's phenotype for the leaf type trait is potato leaves. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18166\",\n    \"image\": \"18166\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's mouth is also adapted for gnawing?\\nContext: Marmots eat plant matter, such as leaves, stems, and seeds. They eat by biting off small pieces at a time, or gnawing. The 's mouth is adapted for gnawing.\\nFigure: marmot.\\nOptions: (A) Damara mole rat (B) aardvark\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the marmot.\\nThe marmot has large front teeth. Its mouth is adapted for gnawing. The large front teeth can help the marmot break off pieces of food that it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe Damara mole rat has large front teeth. Its mouth is adapted for gnawing.\\nThe aardvark has a long tube-shaped mouth and a few, small teeth. Its mouth is not adapted for gnawing. The aardvark uses its mouth to get insects out of holes and burrows. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18167\",\n    \"image\": \"18167\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Kermadec Arc ecosystem?\\nContext: Figure: Kermadec Arc.\\nThe Kermadec Arc is a deep sea ecosystem in the southern Pacific Ocean.\\nOptions: (A) It has bright sunlight. It also has organisms that crawl or stick to the ground. (B) It has water at the bottom of the ocean. It also has no sunlight.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there The deep sea is a type of ecosystem. Deep sea ecosystems have the following features: water at the bottom of the ocean, no sunlight, and organisms that crawl or stick to the ground. So, the Kermadec Arc has water at the bottom of the ocean. It also has no sunlight. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18173\",\n    \"image\": \"18173\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Martina and Kiera's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nMartina and Kiera were making batches of concrete for a construction project. To make the concrete, they mixed together dry cement powder, gravel, and water. Then, they checked if each batch was firm enough using a test called a slump test.\\nThey poured some of the fresh concrete into an upside-down metal cone. They left the concrete in the metal cone for 30 seconds. Then, they lifted the cone to see if the concrete stayed in a cone shape or if it collapsed. If the concrete in a batch collapsed, they would know the batch should not be used.\\nFigure: preparing a concrete slump test.\\nOptions: (A) if a new batch of concrete was firm enough to use (B) if the concrete from each batch took the same amount of time to dry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18184\",\n    \"image\": \"18184\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of blue particles?\\nContext: The diagram below is a model of two solutions. Each blue ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution B (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the blue particles represent the solute. To figure out which solution has a higher concentration of blue particles, look at both the number of blue particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of blue particles per milliliter.\\nSolution B has more blue particles per milliliter. So, Solution B has a higher concentration of blue particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18187\",\n    \"image\": \"18187\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the mouflon.\\nContext: This organism is a mouflon. Its scientific name is Ovis orientalis.\\nOptions: (A) Hystrix cristata (B) Alouatta palliata (C) Ovis aries\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A mouflon's scientific name is Ovis orientalis. The first word of its scientific name is Ovis.\\nAlouatta palliata is in the genus Alouatta. The first word of its scientific name is Alouatta. So, Alouatta palliata and Ovis orientalis are not in the same genus.\\nOvis aries is in the genus Ovis. The first word of its scientific name is Ovis. So, Ovis aries and Ovis orientalis are in the same genus.\\nHystrix cristata is in the genus Hystrix. The first word of its scientific name is Hystrix. So, Hystrix cristata and Ovis orientalis are not in the same genus. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18194\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\npaint - post\\nContext: N/A\\nOptions: (A) peak (B) principal\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince peak is between the guide words paint - post, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18196\",\n    \"image\": \"18196\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Poles that are different attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18197\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word is not like the others?\\nContext: N/A\\nOptions: (A) clown (B) room (C) king (D) teacher\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some words are alike. They go together in a group.\\nRed, blue, and green go together. They are colors.\\nMom, dad, grandma, and grandpa go together. They are people in a family. Teacher, clown, and king go together. They are people. Room is not a person, so it is not like the other words. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18202\",\n    \"image\": \"18202\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is weaker in Pair 2. (C) The magnetic force is weaker in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18212\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nThe number of off-leash dogs I've seen in Salem is completely unacceptable. Let's make our streets safe again by addressing this dog problem, before our city becomes a haven for criminals.\\nContext: N/A\\nOptions: (A) circular reasoning: an argument that supports a claim with the claim itself (B) red herring: the use of a completely unrelated topic or idea\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that off-leash dogs would somehow cause an increase in crime in Salem. However, these two ideas aren't related. This illustrates a type of logical fallacy known as a red herring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18241\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which piece of rope has less thermal energy?\\nContext: Two 20-gram pieces of rope are identical except for their temperatures.\\nOptions: (A) the colder piece of rope (B) the hotter piece of rope\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two pieces of rope are made of the same material and have the same mass. So, the colder piece of rope has less thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18245\",\n    \"image\": \"18245\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait did Ichthyornis have? Select the trait you can observe in the drawing.\\nContext: This drawing shows the skeleton of an ancient animal called Ichthyornis. This drawing was made by looking at the animal's fossils.\\nOptions: (A) fur (B) a long neck\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The way an organism looks or acts is called a trait. Scientists use fossils to learn more about the traits of ancient organisms.\\nFossils can preserve the remains of body parts and activities. A fossil of a body part, such as a tail or a wing, can tell you what an organism looked like. A fossil of an organism's activities, such as a burrow or a footprint, can tell you about the organism's behavior.\\nHere are three examples of fossils and the traits that you can observe from them:\\nThis is a fossil of an animal. This fossil tells you that the animal had a spiral-shaped shell.\\nThis is a fossil of a plant. This fossil tells you that the plant had small leaves arranged in a branched pattern.\\nThis is a fossil of an animal's footprint. This fossil tells you that the animal could walk on land.\\nAn organism's fossil may not show all of the organism's traits. This is because most body parts are destroyed during fossil formation. When an organism's body turns into a fossil, only a few body parts are usually preserved. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18250\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a diving board?\\nContext: Select the best estimate.\\nOptions: (A) 10 yards (B) 10 miles (C) 10 feet (D) 10 inches\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a diving board is 10 feet.\\n10 inches is too short. 10 yards and 10 miles are too long. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18257\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the least thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a cherry pie at a temperature of 77\\u00b0F (B) a cherry pie at a temperature of 106\\u00b0F (C) a cherry pie at a temperature of 113\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. All three cherry pies have the same mass but different temperatures. Since the 77\\u00b0F pie is the coldest, it has the least thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18258\",\n    \"image\": \"18258\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the arrows, which of the following organisms is a decomposer?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) earthworm (B) bilberry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Decomposers help break down dead organisms into simpler matter, such as nutrients. These nutrients can then help plants and other organisms grow. In a food web, there is an arrow pointing from another organism to a decomposer. There are no arrows pointing from a decomposer to another organism.\\nThe earthworm does not have arrows pointing from it to other organisms. So, the earthworm is a decomposer.\\nThe bilberry has arrows pointing from it. So, the bilberry is not a decomposer. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18263\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to peel a banana?\\nContext: Select the better estimate.\\nOptions: (A) 11 minutes (B) 11 seconds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to peel a banana is 11 seconds.\\n11 minutes is too slow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18272\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Perry inherited this trait?\\nContext: Read the description of a trait.\\nPerry has naturally brown hair.\\nOptions: (A) Perry and his biological father have short hair. (B) Perry's biological mother often wears her naturally brown hair in a bun. (C) Perry and his siblings all have naturally straight hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18273\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word literally in its traditional sense?\\nContext: N/A\\nOptions: (A) Jayce's new kitten\\u2014barely three weeks old\\u2014was literally the size of a softball; it could just about fit in the palm of his hand. (B) Jayce's new kitten\\u2014barely three weeks old\\u2014was literally just a ball of fluff in the palm of his hand.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses literally in its traditional sense: in a factual, non-exaggerated way.\\nJayce's new kitten\\u2014barely three weeks old\\u2014was literally the size of a softball; it could just about fit in the palm of his hand.\\nThe first text uses literally in its nontraditional sense: nearly or in effect (often exaggerated). Jayce's new kitten is not actually just a ball of fluff.\\nJayce's new kitten\\u2014barely three weeks old\\u2014was literally just a ball of fluff in the palm of his hand.\\nMost style guides recommend to avoid using the nontraditional sense of the word literally because it is generally considered incorrect. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18275\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nwalnut - who\\nContext: N/A\\nOptions: (A) wink (B) weary\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince weary is between the guide words walnut - who, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18277\",\n    \"image\": \"18277\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wisconsin?\\nContext: N/A\\nOptions: (A) Annapolis (B) Lansing (C) Madison (D) Green Bay\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Madison is the capital of Wisconsin. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18278\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nIt was 24\\u00b0C downtown this afternoon.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nIt was 24\\u00b0C downtown this afternoon.\\nThis passage tells you about the temperature downtown this afternoon. It describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18284\",\n    \"image\": \"18284\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Pacific Ocean (B) the Atlantic Ocean (C) the Arctic Ocean (D) the Southern Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Arctic Ocean. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18288\",\n    \"image\": \"18288\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Iowa (B) Arizona (C) Kansas (D) Delaware\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. Iowa is farthest north. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18291\",\n    \"image\": \"18291\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for swimming?\\nContext: s spend much of their lives at sea. They eat mostly fish, which they catch while swimming and diving. The feet of the are adapted for swimming.\\nFigure: Atlantic puffin.\\nOptions: (A) platypus (B) spectral tarsier\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the Atlantic puffin.\\nThe Atlantic puffin has webbed feet. Its feet are adapted for swimming. As it swims, the Atlantic puffin uses its webbed feet to push itself through water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe platypus has webbed feet. Its feet are adapted for swimming.\\nThe spectral tarsier has long fingers. Its feet are not adapted for swimming. The spectral tarsier uses its feet for climbing trees. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18294\",\n    \"image\": \"18294\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent was involved in the Seven Years' War?\\nContext: The French and Indian War took place in North America in the 1750s and 1760s. That war was part of a much larger conflict known as the Seven Years' War. The map below highlights the countries and territories that fought in the Seven Years' War. Use the map to answer the question below.\\nOptions: (A) Asia (B) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the map.\\nThe map shows that the conflict involved countries and territories throughout Asia, South America, North America, Europe, and Africa. The only continents not involved were Australia, where no Europeans had settled, and Antarctica, where no humans lived.\\nThe French and Indian War was part of a global war between rival empires. An empire is a group of places ruled by a central power. At the time, several empires were fighting to become the most powerful in the world. Many historians call this global war the Seven Years' War.\\nThe French and Indian War was the part of the Seven Years' War fought in North America. This war led to big changes in the relationship between the Thirteen Colonies and Great Britain. Historians often consider these changes important causes of the American Revolution, which started less than 20 years later. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18296\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nIn this election, we've seen the highest voter turnout ever recorded. If you have any doubts about Brad Lloyd's qualifications, just look at how many people have come out to vote for him.\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) red herring: the use of a completely unrelated topic or idea\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Brad Lloyd is the most qualified candidate, because so many voters turned out to vote. However, even though many people voted for him, that doesn't necessarily mean that Brad Lloyd is the most qualified candidate. This illustrates a type of logical fallacy known as the bandwagon fallacy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18303\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nIn this chemical reaction, zinc oxide is a ().\\nContext: This passage describes a chemical reaction. Read the passage. Then, follow the instructions below.\\nMany watches are powered by small, flat batteries called button cells. One common type of button cell contains the metal zinc. When zinc in the battery combines with oxygen in the air, zinc oxide forms. This process generates the electricity that powers the watch.\\nOptions: (A) product (B) reactant\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A chemical change occurs when new substances are formed from existing substances. This process is called a chemical reaction.\\nIn a chemical reaction, one or more substances change into one or more different substances. During the reaction, the atoms of the original substances are rearranged to form other substances.\\nThe original substances in a chemical reaction are called reactants. These substances react, or go through a chemical change.\\nThe substances that are formed in a chemical reaction are called products. These substances are produced by the chemical reaction.\\nSo, in a chemical reaction, reactants go through a chemical change to form products. Read the underlined text carefully. Look for information about what happens to zinc oxide in this chemical reaction.\\nMany watches are powered by small, flat batteries called button cells. One common type of button cell contains the metal zinc. When zinc in the battery combines with oxygen in the air, zinc oxide forms. This process generates the electricity that powers the watch.\\nThe underlined text tells you that zinc oxide forms when zinc combines with oxygen. Because zinc oxide is produced by this chemical reaction, zinc oxide is a product. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18306\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nLeon must not have enjoyed the casserole, or he would have asked for a second serving.\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) appeal to nature: the assumption that natural things are always good (C) false dichotomy: an argument that presents only two choices when more options exist\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that if Leon enjoyed the casserole, then he would have eaten more. However, Leon could have enjoyed the casserole without wanting a second serving. This illustrates a type of logical fallacy known as a false dichotomy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18310\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Hobbes's genotype for the fur type gene?\\nContext: In a group of cats, some individuals have straight fur and others have curly fur. In this group, the gene for the fur type trait has two alleles. The allele F is for straight fur, and the allele f is for curly fur.\\nHobbes, a cat from this group, has straight fur. Hobbes has two alleles for straight fur.\\nOptions: (A) straight fur (B) FF\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Hobbes has two alleles for straight fur (F). So, Hobbes's genotype for the fur type gene is FF. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18311\",\n    \"image\": \"18311\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is weaker in Pair 2. (C) The magnetic force is weaker in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is weaker when the magnets are farther apart. Distance affects the strength of the magnetic force. When magnets are farther apart, the magnetic force between them is weaker.\\nThe magnets in Pair 1 are farther apart than the magnets in Pair 2. So, the magnetic force is weaker in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18322\",\n    \"image\": \"18322\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) Nebraska (B) Kentucky (C) Arkansas (D) New Mexico\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. Kentucky is farthest east. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18328\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the solid.\\nContext: N/A\\nOptions: (A) clothespin (B) wet paint (C) grape juice\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid and liquid are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18334\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) your nephew,\\nFinn (B) Your nephew,\\nFinn\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18336\",\n    \"image\": \"18336\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Ohio?\\nContext: N/A\\nOptions: (A) Columbus (B) Cleveland (C) Des Moines (D) Springfield\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbus is the capital of Ohio. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18338\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nJen gave me flowers for no reason.\\nContext: N/A\\nOptions: (A) declarative (B) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence tells about something, and it ends with a period. It is a declarative sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18344\",\n    \"image\": \"18344\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) New York City (B) San Antonio (C) Denver (D) St. Louis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is St. Louis, Missouri. San Antonio, New York City, and Denver are marked with gray circles on the map below. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18349\",\n    \"image\": \"18349\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is better adapted for protection against a predator with sharp teeth?\\nContext: Giant pangolins are adapted to defend their bodies against a predator with sharp teeth. They have hard scales covering much of their skin. When frightened, the can roll into a ball to protect the soft parts of its body.\\nFigure: giant pangolin.\\nOptions: (A) Grant's gazelle (B) nine-banded armadillo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the giant pangolin.\\nThe giant pangolin has hard scales on its skin. Its skin is adapted for protection against a predator with sharp teeth. The scales make it difficult for predators to hurt or kill the giant pangolin.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe nine-banded armadillo has hard scales on its skin. Its skin is adapted for protection against a predator with sharp teeth.\\nThe Grant's gazelle has short fur covering its skin. Its skin is not adapted for protection against predators with sharp teeth. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18357\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Layla decides to make tomato soup. Which result would be a cost?\\nContext: Layla is deciding whether to make tomato soup or beef barley soup for dinner. She wants dinner to be as tasty as possible. But she is also hungry and wants to eat soon.\\nOptions: (A) The tomato soup will be tastier than the beef barley soup would have been. (B) Layla will spend more time making the tomato soup than she would have spent making the beef barley soup.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Layla wants or needs:\\nLayla will spend more time making the tomato soup than she would have spent making the beef barley soup. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18362\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Boxer's genotype for the coat color gene?\\nContext: In a group of horses, some individuals have a black coat and others have a reddish-brown coat. In this group, the gene for the coat color trait has two alleles. The allele L is for a black coat, and the allele l is for a reddish-brown coat.\\nBoxer, a horse from this group, has a black coat. Boxer has one allele for a black coat and one allele for a reddish-brown coat.\\nOptions: (A) Ll (B) a black coat\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Boxer has one allele for a black coat (L) and one allele for a reddish-brown coat (l). So, Boxer's genotype for the coat color gene is Ll. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18372\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Richard decides to plant the palm tree. Which result would be a cost?\\nContext: Richard is deciding whether to plant marigolds or a palm tree in his backyard. He wants to make his backyard more beautiful. But he also wants to leave space for doing fun things.\\nOptions: (A) The palm tree will use up more space than the marigolds would have used up. (B) Richard will get to look at the palm tree. He thinks it will look more beautiful than the marigolds would have looked.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Richard wants or needs:\\nThe palm tree will use up more space than the marigolds would have used up. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18382\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word can in its traditional sense?\\nContext: N/A\\nOptions: (A) Grace can type using a keyboard with a QWERTY layout, but she prefers the Dvorak layout. The two keyboards have different arrangements of letters and symbols. (B) If Grace prefers a keyboard with the Dvorak layout, she can use mine. In my opinion, it's faster than typing on a keyboard with a QWERTY layout.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses can in its traditional sense: to have the ability to.\\nGrace can type using a keyboard with a QWERTY layout, but she prefers the Dvorak layout. The two keyboards have different arrangements of letters and symbols.\\nThe second text uses can in its nontraditional sense: to have permission to.\\nIf Grace prefers a keyboard with the Dvorak layout, she can use mine. In my opinion, it's faster than typing on a keyboard with a QWERTY layout.\\nMost style guides recommend to use the traditional sense of the word can because it is considered more standard. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18387\",\n    \"image\": \"18387\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"A baby blue whale is as big as ().\\nContext: Read the first part of the passage about blue whales.\\nA blue whale is big. It is the biggest animal in the world.\\nWhen a blue whale is a new baby, it is as big as a car. When it is older, it is even bigger. It is as long as two school buses put together.\\nComplete the sentence.\\nOptions: (A) an adult whale (B) a car (C) two buses\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The passage says a blue whale is big. The passage says that when a blue whale is a new baby, it is as big as a car. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18389\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Sushi's phenotype for the body color trait?\\nContext: In a group of guppies, some individuals have a gray body and others have a golden body. In this group, the gene for the body color trait has two alleles. The allele B is for a gray body, and the allele b is for a golden body.\\nSushi, a guppy from this group, has a golden body. Sushi has two alleles for a golden body.\\nOptions: (A) a golden body (B) bb\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Sushi's observable version of the body color trait is a golden body. So, Sushi's phenotype for the body color trait is a golden body. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18395\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two bats. Which bat was moving at a lower speed?\\nContext: N/A\\nOptions: (A) a bat that moved 40kilometers in 10hours (B) a bat that moved 225kilometers in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the kilometer.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving slower will go a shorter distance in that time. It is moving at a lower speed. Look at the distance each bat moved and the time it took to move that distance.\\nOne bat moved 40 kilometers in 10 hours.\\nThe other bat moved 225 kilometers in 10 hours.\\nNotice that each bat spent the same amount of time moving. The bat that moved 40 kilometers moved a shorter distance in that time. So, that bat must have moved at a lower speed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18396\",\n    \"image\": \"18396\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this experiment, which were part of a control group?\\nContext: The passage below describes an experiment.\\n\\nJason and his neighbors wanted to attract more woodpeckers to their yards. They read that woodpeckers often eat sunflower seeds. The neighbors wanted to find out if filling their bird feeders with sunflower seeds would increase the number of woodpeckers that visited their yards.\\nSo, four of the neighbors filled their feeders with sunflower seeds. Another four neighbors left their feeders empty. Every morning for a month, the neighbors counted the number of woodpeckers they saw in their yards.\\nFigure: a woodpecker at a bird feeder.\\nOptions: (A) the yards with empty feeders (B) the yards with feeders filled with sunflower seeds\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to investigate whether changing a variable between different groups has a specific outcome.\\nFor example, imagine you want to find out whether adding fertilizer to soil affects the height of pea plants. You could investigate this question with the following experiment:\\nYou grow one group of pea plants in soil with fertilizer and measure the height of the plants. This group shows you what happens when fertilizer is added to soil. Since fertilizer is the variable whose effect you are investigating, this group is an experimental group.\\nYou grow another group of pea plants in soil without fertilizer and measure the height of the plants. Since this group shows you what happens when fertilizer is not added to the soil, it is a control group.\\nBy comparing the results from the experimental group to the results from the control group, you can conclude whether adding fertilizer to the soil affects pea plant height. In this experiment, Jason and his neighbors investigated whether adding sunflower seeds to bird feeders affects how many woodpeckers visit yards. The yards with empty feeders did not get sunflower seeds. So, they were part of a control group. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18405\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two bowhead whales. Which bowhead whale was moving at a lower speed?\\nContext: N/A\\nOptions: (A) a bowhead whale that moved 25miles in 10hours (B) a bowhead whale that moved 60miles in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving slower will go a shorter distance in that time. It is moving at a lower speed. Look at the distance each bowhead whale moved and the time it took to move that distance.\\nOne bowhead whale moved 25 miles in 10 hours.\\nThe other bowhead whale moved 60 miles in 10 hours.\\nNotice that each bowhead whale spent the same amount of time moving. The bowhead whale that moved 25 miles moved a shorter distance in that time. So, that bowhead whale must have moved at a lower speed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18407\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nThere are usually more days with low air pressure than high air pressure where Diane lives.\\nContext: N/A\\nOptions: (A) climate (B) weather\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nThere are usually more days with low air pressure than high air pressure where Diane lives.\\nAir pressure is caused by the weight of the air in the atmosphere. When the air pressure is low, the sky is usually cloudy. When the air pressure is high, the sky is usually clear.\\nThis passage tells you about the usual pattern of air pressure where Diane lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18412\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the liquid.\\nContext: N/A\\nOptions: (A) plate (B) gold bracelet (C) apple juice (D) tortoise shell\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. A tortoise shell is a solid. A solid has a size and shape of its own. A tortoise shell is made of a solid called keratin, just like your fingernails!\\nApple juice is a liquid. A liquid takes the shape of any container it is in. If you pour apple juice into a different container, the apple juice will take the shape of that container. But the apple juice will still take up the same amount of space.\\nA plate is a solid. If someone drops a plate, it may break into pieces. But each piece will still have a size and shape of its own.\\nA gold bracelet is a solid. You can wrap a gold bracelet around your wrist. But the bracelet will still have a size and shape of its own. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18420\",\n    \"image\": \"18420\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maine?\\nContext: N/A\\nOptions: (A) Dover (B) Augusta (C) Albany (D) Portland\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Augusta is the capital of Maine. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18421\",\n    \"image\": \"18421\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is greater when there is a smaller distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a smaller distance between magnets, the magnitude of the magnetic force between them is greater.\\nThere is a smaller distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18424\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\neasel - enamel\\nContext: N/A\\nOptions: (A) event (B) elegant\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince elegant is between the guide words easel - enamel, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18426\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Ramadan is a special time of year in which religion?\\nContext: N/A\\nOptions: (A) Islam (B) Christianity (C) Judaism (D) Buddhism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Ramadan is a special time of year in the religion of Islam. People who practice Islam are called Muslims. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18427\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a hiking trail?\\nContext: Select the better estimate.\\nOptions: (A) 1 yard (B) 1 mile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 8 long. You might be thinking, 8 what? Is the pencil 8 inches long? 8 feet? 8 miles?\\nThe number 8 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are inches. So, the length of the pencil is 8 inches.\\nThere are 12 inches in 1 foot. So, 1 inch is much shorter than 1 foot.\\nThere are 3 feet in 1 yard. So, 1 foot is shorter than 1 yard. The better estimate for the length of a hiking trail is 1 mile.\\n1 yard is too short. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18429\",\n    \"image\": \"18429\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is a ballet shoe a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a solid (B) a gas (C) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. A ballet shoe is a solid. A solid has a size and shape of its own.\\nWhen a dancer wears a ballet shoe, it may bend a little. But the ballet shoe still has a size and shape of its own. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18436\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The city of Norwood has been one of the world's biggest makers of cough drops for many years. But last month, Norwood's cough drop factories were destroyed by floods. What will probably happen to the overall supply of cough drops?\\nContext: N/A\\nOptions: (A) The supply will probably go down. (B) The supply will probably go up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. Floods destroyed the cough drop factories in Norwood. The number of producers of cough drops went down. So, the supply of cough drops will probably go down. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18440\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of two mountain bikers. Which mountain biker was moving at a lower speed?\\nContext: N/A\\nOptions: (A) a mountain biker who moved 95miles in 5hours (B) a mountain biker who moved 65miles in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about two objects moving for the same amount of time. The object that is moving slower will go a shorter distance in that time. It is moving at a lower speed. Look at the distance each mountain biker moved and the time it took to move that distance.\\nOne mountain biker moved 65 miles in 5 hours.\\nThe other mountain biker moved 95 miles in 5 hours.\\nNotice that each mountain biker spent the same amount of time moving. The mountain biker who moved 65 miles moved a shorter distance in that time. So, that mountain biker must have moved at a lower speed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18446\",\n    \"image\": \"18446\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Antigua and Barbuda (B) Jamaica (C) Saint Lucia (D) Saint Kitts and Nevis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Kitts and Nevis. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18454\",\n    \"image\": \"18454\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Scientists in a laboratory were working with insulin, a protein often used to treat diabetes. They left two identical vials of insulin in different places. This table shows how the temperature of each vial changed over 15minutes.\\nOptions: (A) each vial . . . the surroundings (B) the surroundings . . . each vial\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each vial increased, which means that the thermal energy of each vial increased. So, thermal energy was transferred from the surroundings to each vial. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18472\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of the air on a cold, rainy day?\\nContext: Select the better estimate.\\nOptions: (A) 44\\u00b0F (B) 44\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of the air on a cold, rainy day is 44\\u00b0F.\\n44\\u00b0C is too hot. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18483\",\n    \"image\": \"18483\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maryland?\\nContext: N/A\\nOptions: (A) Birmingham (B) Frankfort (C) Annapolis (D) Baltimore\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Annapolis is the capital of Maryland. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18487\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence so that it uses personification.\\nThe car engine () as Mr. Harvey tried to start it in the freezing cold.\\nContext: N/A\\nOptions: (A) coughed (B) failed\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Personification is giving human characteristics to nonhuman things. It is a figure of speech that can be used to make writing more interesting or to emphasize a point.\\nThe trees danced in the wind.\\nThe word danced describes the trees as if they were people. Unlike people, however, trees can't actually dance. Instead, the personification suggests that the trees are moving. Complete the sentence with the word coughed. It describes the engine as if it were a person who is sick. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18492\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Carly looks almost identical to her twin sister Jenny, but she has pierced ears. (B) Carly has pierced ears, but otherwise she looks almost identical to her twin sister Jenny.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun she could refer to Carly or Jenny.\\nCarly looks almost identical to her twin sister Jenny, but she has pierced ears.\\nThe second answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nCarly has pierced ears, but otherwise she looks almost identical to her twin sister Jenny. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18494\",\n    \"image\": \"18494\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk.\\nMammals are warm-blooded. Warm-blooded animals can control their body temperature.\\nA giraffe is an example of a mammal.\\nOptions: (A) bull shark (B) yak (C) shoebill (D) eastern newt\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A bull shark is a fish. It lives underwater. It has fins, not limbs.\\nBull sharks can live in both fresh and salt water. They are found in rivers and in shallow parts of the ocean.\\nA shoebill is a bird. It has feathers, two wings, and a beak.\\nShoebills live in tropical East Africa. Shoebills get their name from their shoe-shaped beaks.\\nA yak is a mammal. It has hair and feeds its young milk.\\nYaks live in cold places. Their long hair helps keep them warm.\\nAn eastern newt is an amphibian. It has moist skin and begins its life in water.\\nSome newts live in water. Other newts live on land but lay their eggs in water. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18499\",\n    \"image\": \"18499\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Brody's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nBrody put one two-inch steel nail into each of six test tubes. He added water to three of the test tubes and vinegar to the other three. In each test tube, he completely covered the nail with the same volume of liquid. Brody checked the nails for rust at the same time every day. He recorded how many days it took each nail to become completely covered in rust. Then, he compared the number of days it took nails to rust in water to the number of days it took nails to rust in vinegar.\\nFigure: a new steel nail on a pile of rusty nails.\\nOptions: (A) Do steel nails rust in fewer days when submerged in a large volume of liquid compared to a small volume? (B) Do steel nails take fewer days to rust in water compared to vinegar?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18503\",\n    \"image\": \"18503\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can happen to spores after they are released?\\nContext: This diagram shows the life cycle of a fern.\\nOptions: (A) They can fuse and form a fertilized egg. (B) They can grow into a heart-shaped plant.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Fern plants reproduce using both asexual reproduction and sexual reproduction.\\nMature ferns have flat leaves called fronds. Ferns have structures that look like small dots on the underside of their fronds. These structures are called spore cases. The mature ferns use asexual reproduction to make spores. When the spore cases open, the spores are released.\\nWhen a spore lands on the ground and germinates, it grows into a small heart-shaped plant. The heart-shaped plant begins the fern's sexual reproduction stage by making eggs and sperm. Ferns live in damp environments, and sperm can swim though small water drops. Self-fertilization happens when a sperm swims to an egg on the same heart-shaped plant. Cross-fertilization happens when the sperm swims to an egg on a nearby plant.\\nFertilization happens when a sperm and an egg fuse. The fertilized egg germinates and grows into a mature fern.\\nThe mature fern can make spores and begin the fern life cycle again. Unlike sperm and eggs, spores do not fuse.\\nAfter they are released, spores can land on the ground and germinate. When a spore germinates, it grows into a heart-shaped plant. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18506\",\n    \"image\": \"18506\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18516\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nelectric - ever\\nContext: N/A\\nOptions: (A) envelope (B) earnest\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince envelope is between the guide words electric - ever, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18547\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three bicycles. Which bicycle was moving at the highest speed?\\nContext: N/A\\nOptions: (A) a bicycle that moved 80miles west in 5hours (B) a bicycle that moved 85miles south in 5hours (C) a bicycle that moved 145miles north in 5hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the fastest will go the farthest distance in that time. It is moving at the highest speed. Look at the distance each bicycle moved and the time it took to move that distance. The direction each bicycle moved does not affect its speed.\\nNotice that each bicycle moved for 5 hours. The bicycle that moved 145 miles moved the farthest distance in that time. So, that bicycle must have moved at the highest speed. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18550\",\n    \"image\": \"18550\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a sheep produced by this cross will be homozygous dominant for the wool color gene?\\nContext: In a group of sheep, some individuals have white wool and others have black wool. In this group, the gene for the wool color trait has two alleles. The allele for white wool (L) is dominant over the allele for black wool (l).\\nThis Punnett square shows a cross between two sheep.\\nOptions: (A) 2/4 (B) 1/4 (C) 0/4 (D) 3/4 (E) 4/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring genotypes: homozygous or heterozygous?\\nHow do you determine whether an organism is homozygous or heterozygous for a gene? Look at the alleles in the organism's genotype for that gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene.\\nIf both alleles are dominant, the organism is homozygous dominant for the gene.\\nIf both alleles are recessive, the organism is homozygous recessive for the gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. \\nBecause there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4 The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18559\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the word. Does it have a closed syllable or an open syllable?\\nno\\nContext: N/A\\nOptions: (A) open (B) closed\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words are made up of syllables. Two kinds of syllables are closed and open.\\nA closed syllable has one vowel and ends with a consonant. It usually has a short vowel sound.\\ndesk: short e\\nkit / ten: short i / short e\\nAn open syllable ends with one vowel. It usually has a long vowel sound.\\ngo: long o\\nhe / ro: long e / long o\\nSome open syllables end with y. The y makes a long e sound or a long i sound.\\nsky: long i\\nba / by: long a / long e The word no ends with a vowel and has a long vowel sound. So, it has an open syllable. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18560\",\n    \"image\": \"18560\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) Asia (C) Africa (D) North America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Africa. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18562\",\n    \"image\": \"18562\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these continents does the equator intersect?\\nContext: N/A\\nOptions: (A) Australia (B) Europe (C) Africa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lines of latitude and lines of longitude are imaginary lines drawn on some globes and maps. They can help you find places on globes and maps.\\nLines of latitude show how far north or south a place is. We use units called degrees to describe how far a place is from the equator. The equator is the line located at 0\\u00b0 latitude. We start counting degrees from there.\\nLines north of the equator are labeled N for north. Lines south of the equator are labeled S for south. Lines of latitude are also called parallels because each line is parallel to the equator.\\nLines of longitude are also called meridians. They show how far east or west a place is. We use degrees to help describe how far a place is from the prime meridian. The prime meridian is the line located at 0\\u00b0 longitude. Lines west of the prime meridian are labeled W. Lines east of the prime meridian are labeled E. Meridians meet at the north and south poles.\\nThe equator goes all the way around the earth, but the prime meridian is different. It only goes from the North Pole to the South Pole on one side of the earth. On the opposite side of the globe is another special meridian. It is labeled both 180\\u00b0E and 180\\u00b0W.\\nTogether, lines of latitude and lines of longitude form a grid. You can use this grid to find the exact location of a place. The equator is the line at 0\\u00b0 latitude. It intersects Africa. It does not intersect Australia or Europe. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18565\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which block of concrete has less thermal energy?\\nContext: Two 5-kilogram blocks of concrete are identical except for their temperatures.\\nOptions: (A) the colder block of concrete (B) the hotter block of concrete\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature.\\nWhat happens if the amount of matter changes? A 1-kilogram brick at 70\\u00b0F has half as much thermal energy as a 2-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the smaller brick has half as many atoms. So, it has half as much thermal energy. The two blocks of concrete are made of the same material and have the same mass. So, the colder block of concrete has less thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18571\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Read the following excerpt from a student essay. How can the writer best improve his or her ideas and development?\\nWhy is smoking cigarettes bad for your health? Cigarettes contain poisonous substances like carbon monoxide and tar, which can harm every part of your body. Smoking causes heart disease and damages your blood vessels. Eating a diet high in fat, sugar, and salt can also lead to heart disease. A lack of exercise contributes to heart disease, too. Smoking damages your lungs and can cause breathing problems or lung cancer. In fact, it can cause cancer in any organ in your body.\\nContext: N/A\\nOptions: (A) by stating the main idea clearly (B) by focusing on one main idea\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"During peer review, you read and respond to a fellow student's writing. While there are many methods and strategies that you can use for reviewing a text, it is generally helpful to frame your suggestions in concrete and constructive ways and to consider the following areas for revision:\\nIdeas and development: Does the writer express a clear idea and develop it with evidence, examples, or analysis?\\nOrganization: Does the writer order ideas in a clear, logical way so that they build on one another and are easy to follow?\\nVoice: Does the writer maintain an appropriate voice, such as a formal and objective voice in an academic essay or an engaging and expressive voice in a narrative essay?\\nSentence fluency: Does the writer use sentences that vary in structure and length to create a sense of rhythm and flow within and between sentences, or does the writing sound choppy, rambling, or repetitive?\\nWord choice: Does the writer use words accurately and precisely to create clear, effective, and engaging writing?\\nGrammar and mechanics: Does the writer follow appropriate conventions, using accurate spelling, punctuation, and grammar to create writing that is correct and easy to read? The writer could best improve his or her ideas and development by focusing on one main idea.\\nFor example, the writer could remove the underlined text to focus only on the reasons why smoking cigarettes is bad for your health.\\nWhy is smoking cigarettes bad for your health? Cigarettes contain poisonous substances like carbon monoxide and tar, which can harm every part of your body. Smoking causes heart disease and damages your blood vessels. Eating a diet high in fat, sugar, and salt can also lead to heart disease. A lack of exercise contributes to heart disease, too. Smoking damages your lungs and can cause breathing problems or lung cancer. In fact, it can cause cancer in any organ in your body. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18572\",\n    \"image\": \"18572\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is stronger in Pair 1. (C) The magnetic force is stronger in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18576\",\n    \"image\": \"18576\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe smallest planet is made mainly of rock.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\n To decide which planet is the smallest, look at the volumes shown in the table and compare the exponents. Mercury's volume has an exponent of 10, which is the smallest out of all the planets.\\nMercury is made mainly of rock. So, the smallest planet is made mainly of rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18586\",\n    \"image\": \"18586\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the New England Seamount Chain ecosystem?\\nContext: Figure: New England Seamount Chain.\\nThe New England Seamount Chain is a deep sea ecosystem in the northern Atlantic Ocean.\\nOptions: (A) It has water at the bottom of the ocean. It also has no sunlight. (B) It has shallow water. It also has organisms that crawl or stick to the ground.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there The deep sea is a type of ecosystem. Deep sea ecosystems have the following features: water at the bottom of the ocean, no sunlight, and organisms that crawl or stick to the ground. So, the New England Seamount Chain has water at the bottom of the ocean. It also has no sunlight. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18588\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nMaria throws the ball into the hoop.\\nContext: N/A\\nOptions: (A) present tense (B) future tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, throws. The verb ends in -s and tells you about something that is true or happening now. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18609\",\n    \"image\": \"18609\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nJupiter's volume is more than 1,000 times that of Earth.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, first compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\nTo multiply a number written in scientific notation by a power of 10, write the multiple of 10 as 10 raised to an exponent. Then, add the exponents. For example:\\n1.43 x 10^15 \\u00b7 1000\\n= 1.43 x 10^15 \\u00b7 10^3\\n= 1.43 x 10^(15 + 3)\\n= 1.43 x 10^18\\n To determine if this statement is true, calculate the value of 1,000 times the volume of Earth.\\nThen compare the result to the volume of Jupiter. The volume of Jupiter is 1.43 x 10^15 km^3, which is more than 1.08 x 10^15 km^3. So, Jupiter's volume is more than 1,000 times that of Earth. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18617\",\n    \"image\": \"18617\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Vermont (B) Maine (C) Alabama (D) Pennsylvania\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18627\",\n    \"image\": \"18627\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak. A peregrine falcon is an example of a bird.\\nOptions: (A) red-tailed hawk (B) tiger shark\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A tiger shark is a fish. It lives underwater. It has fins, not limbs.\\nTiger sharks are nocturnal. This means that they are active mostly at night.\\nA red-tailed hawk is a bird. It has feathers, two wings, and a beak.\\nRed-tailed hawks use their sharp beaks to hunt small mammals, birds, fish, and reptiles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18632\",\n    \"image\": \"18632\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) salty (B) stretchy (C) transparent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA stretchy object gets longer when you pull on it. The potato chips and the pretzel are not stretchy.\\nPotato chips have a salty taste. All four objects are salty.\\nYou can see clearly through a transparent object. The potato chips, the pretzel, and the fries are not transparent.\\nThe property that all four objects have in common is salty. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18651\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) don't Let the Turkeys Get You Down (B) Don't Let the Turkeys Get You Down\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The word the is not important, so it should not be capitalized.\\nThe correct title is Don't Let the Turkeys Get You Down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18658\",\n    \"image\": \"18658\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of South Carolina?\\nContext: N/A\\nOptions: (A) Lincoln (B) Springfield (C) Biloxi (D) Columbia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbia is the capital of South Carolina. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18659\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nmelt - myself\\nContext: N/A\\nOptions: (A) maple (B) midnight\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince midnight is between the guide words melt - myself, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18660\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word travesty in its traditional sense?\\nContext: N/A\\nOptions: (A) Doug realized that his essay about the Space Race was a bit inaccurate, but he still thought it a travesty that such an entertaining essay should receive a poor grade. (B) Doug's ill-researched essay about the Space Race received a poor grade because it presented such a travesty of the actual historical events.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses travesty in its traditional sense: a ridiculous imitation; a parody.\\nDoug's ill-researched essay about the Space Race received a poor grade because it presented such a travesty of the actual historical events.\\nThe second text uses travesty in its nontraditional sense: a disappointment or a tragedy.\\nDoug realized that his essay about the Space Race was a bit inaccurate, but he still thought it a travesty that such an entertaining essay should receive a poor grade.\\nMost style guides recommend to use the traditional sense of the word travesty because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18662\",\n    \"image\": \"18662\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these cities is marked on the map?\\nContext: N/A\\nOptions: (A) New York City (B) Washington, D.C. (C) Philadelphia (D) Boston\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The city is Philadelphia, Pennsylvania. New York City, Boston, and Washington, D.C., are marked with gray circles on the map below. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18673\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the allusion in this text suggest?\\nWith the gutters clogged and water rising in the streets, Marcy, who was watching the storm from her window, commented, \\\"We're going to need an ark to get out of here.\\\"\\nContext: N/A\\nOptions: (A) Marcy thinks the storm will cause major flooding. (B) Marcy wants to protect her possessions.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked. The text uses an allusion, a brief reference to someone or something well known.\\nThe allusion to an ark suggests that Marcy thinks the storm will cause major flooding. In the Bible, it rains for forty days and forty nights; Noah, his family, and animals of every species survive the great flood in an ark that he builds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18675\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the amphibian traits listed above.\\nContext: Amphibians are a group of animals with similar traits. The following traits can be used to identify amphibians:\\nThey spend part of their lives in water and part on land.\\nThey have moist skin.\\nThey make eggs with no shells. Observe the animals and read the descriptions.\\nOptions: (A) Chinese alligators live in lakes and streams in eastern China. They lay eggs with shells and live in underground burrows in the winter. Chinese alligators have scaly, waterproof skin. (B) Green toads have moist skin and hatch from eggs with no shells. The tadpoles begin their lives underwater, while adult toads live on land. Some adult green toads live in dry places such as deserts. They stay underground until it rains so their skin won't dry out.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nAmphibians have the following traits:\\nThey spend part of their lives in water and part on land.\\nThey have moist skin.\\nThey make eggs with no shells.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA green toad has the following traits:\\nIt spends part of its life in water and part on land.\\nIt has moist skin.\\nIt makes eggs with no shells.\\nA green toad has the traits of an amphibian. A green toad is an amphibian.\\nA Chinese alligator has the following traits:\\nIt has scaly, waterproof skin.\\nIt makes eggs with shells.\\nA Chinese alligator does not have all of the traits of an amphibian. A Chinese alligator is a reptile. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18682\",\n    \"image\": \"18682\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Maryland (B) North Carolina (C) Delaware (D) Virginia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Virginia.\\nThe Virginia Colony included land that would later become part of the state of West Virginia. West Virginia was never its own colony. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18686\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Damon inherited this trait?\\nContext: Read the description of a trait.\\nDamon has blue eyes.\\nOptions: (A) Damon likes to wear a blue sweater to match his blue eyes. (B) Damon's mother has blue eyes. She passed this trait down to Damon.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18687\",\n    \"image\": \"18687\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs. A catfish is an example of a fish.\\nOptions: (A) European green toad (B) great white shark\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A great white shark is a fish. It lives underwater. It has fins, not limbs.\\nGreat white sharks can live for up to 70 years.\\nA European green toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18689\",\n    \"image\": \"18689\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nSaturn's volume is more than 50% of Jupiter's volume.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. To determine if this statement is true, calculate the value of 50% of Jupiter's volume by multiplying Jupiter's volume by 0.5.\\nThen compare the result to the volume of Saturn. The volume of Saturn is 827,130 billion km^3, which is more than 715,640 billion km^3. So, Saturn's volume is more than 50% of Jupiter's volume. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18703\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAs Herman sat down on the rickety old chair, it abruptly collapsed beneath him.\\nContext: N/A\\nOptions: (A) compound (B) complex (C) simple (D) compound-complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is complex. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction as.\\nAs Herman sat down on the rickety old chair, it abruptly collapsed beneath him. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18707\",\n    \"image\": \"18707\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the tide pool ecosystems in Monta\\u00f1a De Oro State Park?\\nContext: Figure: Monta\\u00f1a De Oro State Park.\\nMonta\\u00f1a De Oro State Park is in California. The park is on the coast of the Pacific Ocean. It has many tide pool ecosystems.\\nOptions: (A) It has daily flooding and draining of seawater. It also has water that is rich in nutrients. (B) It has no sunlight. It also has daily flooding and draining of seawater.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A tide pool is a type of ecosystem. Tide pool ecosystems have the following features: daily flooding and draining of seawater, water that is rich in nutrients, and many different types of organisms. So, the tide pool ecosystems in Monta\\u00f1a De Oro State Park have daily flooding and draining of seawater. They also have water that is rich in nutrients. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18714\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nRaymond reads an exciting mystery story.\\nContext: N/A\\nOptions: (A) present tense (B) future tense (C) past tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, reads. The verb ends in -s and tells you about something that is true or happening now. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18716\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a mineral.\\nContext: N/A\\nOptions: (A) Native gold is not made by living things. It is a pure substance. (B) Galena is not made by living things. It is formed in nature. (C) Soap is made in a factory. It is a solid.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Compare the properties of each substance to the properties of minerals. Select the substance whose properties do not match those of minerals.\\nSoap is made in a factory. But all minerals are formed in nature.\\nSo, soap is not a mineral.\\nGalena is a mineral.\\nNative gold is a mineral. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18718\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal.\\nContext: N/A\\nOptions: (A) Sheep eat plants. (B) Chili peppers have green leaves. (C) Fir trees have green leaves. (D) Tulips have a green stem.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plants and animals are living things. Living things are called organisms.\\nPlants come in many shapes and sizes. Most plants grow in the ground. They might grow leaves, flowers, and fruit. Plants cannot move around on their own like animals can.\\nAnimals also come in many shapes and sizes. Most animals can move around. Animals might run, swim, jump, or fly. Animals eat plants or other organisms for food. A fir tree is a plant. It has green leaves.\\nThe leaves of fir trees are called needles.\\nA chili pepper is a plant. It has many green leaves.\\nChili peppers give food a spicy flavor.\\nA sheep is an animal. It eats plants.\\nPeople raise sheep for their fur, meat, and milk.\\nA tulip is a plant. It has a green stem.\\nTulips grow best in cool, dry places. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18722\",\n    \"image\": \"18722\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's neck is also adapted for reaching high branches?\\nContext: Giraffes eat leaves and twigs. The 's neck is adapted for reaching branches that are high above the ground.\\nFigure: giraffe.\\nOptions: (A) black-tailed jackrabbit (B) gerenuk\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's neck is one example of an adaptation. Animals' necks can be adapted in different ways. For example, a large frilled neck might help an animal appear dangerous to its predators. A long neck might help an animal get food from tall trees. Look at the picture of the giraffe.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe gerenuk has a long neck. Its neck is adapted for reaching high branches.\\nThis black-tailed jackrabbit has a short neck. Its neck is not adapted for reaching high branches. The black-tailed jackrabbit eats mostly grasses and shrubs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18723\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word gravy on a dictionary page with the following guide words?\\ngale - giraffe\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince gravy is not between the guide words gale - giraffe, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18739\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nIn the darkness, Kimi strained her eyes.\\nContext: N/A\\nOptions: (A) past tense (B) present tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in past tense. You can tell because it uses a past-tense verb, strained. The verb ends in -ed and tells you about something that has already happened. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18743\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word factoid in its traditional sense?\\nContext: N/A\\nOptions: (A) As a geneticist, Janet enjoys watching science documentaries and sharing various factoids she's learned with her colleagues. (B) As a geneticist, Janet dislikes many popular sci-fi movies because they often present audiences with factoids that misrepresent her field.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses factoid in its traditional sense: something made up presented as a true fact.\\nAs a geneticist, Janet dislikes many popular sci-fi movies because they often present audiences with factoids that misrepresent her field.\\nThe second text uses factoid in its nontraditional sense: a trivial but true fact.\\nAs a geneticist, Janet enjoys watching science documentaries and sharing various factoids she's learned with her colleagues.\\nMost style guides recommend to use the traditional sense of the word factoid because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18752\",\n    \"image\": \"18752\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Bella and Darnell trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nBella and Darnell open their lunch boxes in the school cafeteria. Neither Bella nor Darnell got everything that they wanted. The table below shows which items they each wanted:\\n\\nLook at the images of their lunches. Then answer the question below.\\nBella's lunch Darnell's lunch\\nOptions: (A) Darnell can trade his broccoli for Bella's oranges. (B) Darnell can trade his almonds for Bella's tomatoes. (C) Bella can trade her tomatoes for Darnell's carrots. (D) Bella can trade her tomatoes for Darnell's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the table and images.\\nBella wants broccoli. Darnell wants tomatoes. They can trade tomatoes for broccoli to both get what they want. Trading other things would not help both people get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18753\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a sentence fragment?\\nContext: N/A\\nOptions: (A) Devin's favorite season is fall it is cool outside. (B) Goes on a big adventure.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Goes on a big adventure is a sentence fragment. It is missing a subject. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18763\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\n\\\"Mateo's personality is very Jekyll and Hyde,\\\" Julia told her brother.\\nContext: N/A\\nOptions: (A) literature (B) a song\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Jekyll and Hyde is literature.\\nRobert Louis Stevenson's popular Victorian novella Dr. Jekyll and Mr. Hyde tells the story of a man with two distinct personalities. Known to the world as a kind and highly respected doctor, at night he transforms into a monstrous person.\\nThe allusion Jekyll and Hyde means kind then cruel. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18765\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Mabel's phenotype for the xeroderma pigmentosum trait?\\nContext: This passage describes the xeroderma pigmentosum trait in humans:\\n\\nIn a group of humans, some individuals have xeroderma pigmentosum and others do not. In this group, the gene for the xeroderma pigmentosum trait has two alleles. The allele E is for not having xeroderma pigmentosum, and the allele e is for having xeroderma pigmentosum.\\nMabel, a human from this group, has xeroderma pigmentosum. Mabel has two alleles for having xeroderma pigmentosum.\\nOptions: (A) having xeroderma pigmentosum (B) ee\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Mabel's observable version of the xeroderma pigmentosum trait is having xeroderma pigmentosum. So, Mabel's phenotype for the xeroderma pigmentosum trait is having xeroderma pigmentosum. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18775\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word jeep on a dictionary page with the following guide words?\\njar - jut\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince jeep is between the guide words jar - jut, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18779\",\n    \"image\": \"18779\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Asia (B) Africa (C) Antarctica (D) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is Africa. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18786\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThe Murray family is going to spend two weeks in Ocean City, but for Kyle it will be a working vacation, since he'll be checking in with the office every day.\\nContext: N/A\\nOptions: (A) euphemism (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nWorking vacation is a contradiction, because going on a vacation implies that you are taking a break from work. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18787\",\n    \"image\": \"18787\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Indiana?\\nContext: N/A\\nOptions: (A) Norfolk (B) Columbus (C) Topeka (D) Indianapolis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Indianapolis is the capital of Indiana. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18792\",\n    \"image\": \"18792\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these continents does the prime meridian intersect?\\nContext: N/A\\nOptions: (A) South America (B) Asia (C) Africa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lines of latitude and lines of longitude are imaginary lines drawn on some globes and maps. They can help you find places on globes and maps.\\nLines of latitude show how far north or south a place is. We use units called degrees to describe how far a place is from the equator. The equator is the line located at 0\\u00b0 latitude. We start counting degrees from there.\\nLines north of the equator are labeled N for north. Lines south of the equator are labeled S for south. Lines of latitude are also called parallels because each line is parallel to the equator.\\nLines of longitude are also called meridians. They show how far east or west a place is. We use degrees to help describe how far a place is from the prime meridian. The prime meridian is the line located at 0\\u00b0 longitude. Lines west of the prime meridian are labeled W. Lines east of the prime meridian are labeled E. Meridians meet at the north and south poles.\\nThe equator goes all the way around the earth, but the prime meridian is different. It only goes from the North Pole to the South Pole on one side of the earth. On the opposite side of the globe is another special meridian. It is labeled both 180\\u00b0E and 180\\u00b0W.\\nTogether, lines of latitude and lines of longitude form a grid. You can use this grid to find the exact location of a place. The prime meridian is the line at 0\\u00b0 longitude. It intersects Africa. It does not intersect Asia or South America. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18795\",\n    \"image\": \"18795\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) colorful (B) transparent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nYou can see clearly through a transparent object. The water is transparent.\\nA colorful object has one or more bright colors. The water is not colorful. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18796\",\n    \"image\": \"18796\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Colette and Alexandra's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nColette and Alexandra were making batches of concrete for a construction project. To make the concrete, they mixed together dry cement powder, gravel, and water. Then, they checked if each batch was firm enough using a test called a slump test.\\nThey poured some of the fresh concrete into an upside-down metal cone. They left the concrete in the metal cone for 30 seconds. Then, they lifted the cone to see if the concrete stayed in a cone shape or if it collapsed. If the concrete in a batch collapsed, they would know the batch should not be used.\\nFigure: preparing a concrete slump test.\\nOptions: (A) if a new batch of concrete was firm enough to use (B) if the concrete from each batch took the same amount of time to dry\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18803\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is there a surplus or a shortage of new cars?\\nContext: A car dealership has 20 brand-new cars. Each car costs $28,000. At that price, there are 40 people who want to buy one.\\nOptions: (A) surplus (B) shortage\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There is a surplus if there is too much for sale at a given price.\\nThere is a shortage if there is not enough for sale at a given price.\\nSurpluses and shortages usually happen when people who are selling goods or services charge too much or too little.\\nWhen the price is too high, consumers will not want to buy much of the good or service. The quantity demanded will be less than the quantity supplied. So, there will be a surplus.\\nWhen the price is too low, too many consumers will want to buy the good or service. The quantity demanded will be more than the quantity supplied. So, there will be a shortage. At the current price, there are not enough cars for sale. There are 20 cars for sale, but 40 people want to buy one.\\nSo, there is a shortage of cars. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18812\",\n    \"image\": \"18812\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Tennessee (B) North Carolina (C) Rhode Island (D) Georgia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Rhode Island. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18814\",\n    \"image\": \"18814\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Laramie (B) Cheyenne (C) Denver (D) Salt Lake City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18816\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In which place are cows, horses, and other livestock more common?\\nContext: N/A\\nOptions: (A) a rural area (B) a suburban area\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People around the world live in three main kinds of places: urban areas, suburban areas, and rural areas.\\nAn urban area is a city. It has many people and businesses. The buildings are close to each other. The buildings are often tall and have many floors. Since there are so many people, traffic is usually bad. People will walk or take the bus, train, or subway to avoid traffic.\\nA suburban area, or suburb, is near a city. It is quieter and less crowded than an urban area. People usually live in houses with yards. Most people drive to get places.\\nA rural area is less crowded than both urban and suburban areas. Houses are much more spread out. People usually have to drive to get places. People in rural areas often live on farms or ranches.\\nSome places, like small towns, don't really fit into any of the types. A small town does not have as many people as an urban area, but it has more people than a rural area. It is not near a city, so it is not called a suburb. Cows, horses, and other livestock are more common in rural areas. They need a lot of open space. Rural areas have a lot of open space. There aren't many buildings or people. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18822\",\n    \"image\": \"18822\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Australia (B) Asia (C) North America (D) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Australia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18841\",\n    \"image\": \"18841\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Audrey's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nPeople with diabetes sometimes take a medicine made from insulin. Insulin can be made by a special type of bacteria. Audrey was a bioengineer who wanted to increase the amount of insulin that the bacteria produced by 20%. She read that giving the bacteria more nutrients could affect the amount of insulin they produced. So, Audrey gave extra nutrients to some of the bacteria. Then, she measured how much insulin those bacteria produced compared to bacteria that did not get extra nutrients.\\nFigure: studying bacteria in a laboratory.\\nOptions: (A) whether different types of bacteria would need different nutrients to produce insulin (B) whether producing more insulin would help the bacteria grow faster (C) whether she added enough nutrients to help the bacteria produce 20% more insulin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18846\",\n    \"image\": \"18846\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alaska?\\nContext: N/A\\nOptions: (A) Salem (B) Helena (C) Anchorage (D) Juneau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Juneau is the capital of Alaska. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18858\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Queenie's phenotype for the cheek color trait?\\nContext: In a group of cockatiels, some individuals have bright orange cheeks and others have pale orange cheeks. In this group, the gene for the cheek color trait has two alleles. The allele R is for bright orange cheeks, and the allele r is for pale orange cheeks.\\nQueenie, a cockatiel from this group, has bright orange cheeks. Queenie has two alleles for bright orange cheeks.\\nOptions: (A) bright orange cheeks (B) RR\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Queenie's observable version of the cheek color trait is bright orange cheeks. So, Queenie's phenotype for the cheek color trait is bright orange cheeks. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18864\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) dear Reggie, (B) Dear Reggie,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Reggie is capitalized because it is a proper noun. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18873\",\n    \"image\": \"18873\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Dominican Republic.\\nThe Dominican Republic has lush, green forests and beautiful beaches. A biologist studying insects noticed that it was cooler in the forest than at the beach for most of last week.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nThe Dominican Republic has lush, green forests and beautiful beaches. A biologist studying insects noticed that it was cooler in the forest than at the beach for most of last week.\\nThe underlined part of the passage tells you about last week's temperature in the Dominican Republic. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18876\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Erin inherited this trait?\\nContext: Read the description of a trait.\\nErin has brown eyes.\\nOptions: (A) Erin's hair is the same color as her brown eyes. (B) Erin's father has brown eyes. He passed this trait down to Erin.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18885\",\n    \"image\": \"18885\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Cape Breton Highlands National Park ecosystem?\\nContext: Figure: Cape Breton Highlands National Park.\\nCape Breton Highlands National Park is a taiga ecosystem in eastern Canada.\\nOptions: (A) It has short, cool summers. It also has soil that is rich in nutrients. (B) It has many evergreen trees. It also has soil that is poor in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A taiga is a type of ecosystem. Taigas have the following features: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. So, Cape Breton Highlands National Park has many evergreen trees. It also has soil that is poor in nutrients. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18889\",\n    \"image\": \"18889\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 1. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Both magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18892\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\ncutting an apple\\na sidewalk heating up in the sun\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by cooling. (C) Both are caused by heating. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nCutting an apple is a physical change. The apple gets a different shape. But it is still made of the same type of matter as the uncut apple.\\nA sidewalk heating up in the sun is a physical change. The temperature of the sidewalk goes up, but the sidewalk is still made of the same type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nA sidewalk getting warm in the sun is caused by heating. But cutting an apple is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18895\",\n    \"image\": \"18895\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's feet are also adapted for swimming?\\nContext: Black-bellied whistling ducks live near lakes and streams in North America. They find most of their food in shallow water. The feet of the are adapted for swimming.\\nFigure: black-bellied whistling duck.\\nOptions: (A) spectral tarsier (B) common guillemot\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the black-bellied whistling duck.\\nThe black-bellied whistling duck has webbed feet. Its feet are adapted for swimming. As it swims, the black-bellied whistling duck uses its webbed feet to push itself through water.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe common guillemot has webbed feet. Its feet are adapted for swimming.\\nThe spectral tarsier has long fingers. Its feet are not adapted for swimming. The spectral tarsier uses its feet for climbing trees. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18896\",\n    \"image\": \"18896\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these two objects have in common?\\nContext: Select the better answer.\\nOptions: (A) bouncy (B) colorful\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells.\\nDifferent objects can have the same properties. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA colorful object has one or more bright colors. The spring is not colorful.\\nA bouncy object will bounce back from the floor if you drop it. Both objects are bouncy.\\nThe property that both objects have in common is bouncy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18906\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAnita and Finn had met before through mutual friends, but they had never been alone together until their first date.\\nContext: N/A\\nOptions: (A) hyperbole (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nAlone together is a contradiction, because being alone means by yourself, but together means with someone else. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18907\",\n    \"image\": \"18907\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on the event chain, which was written first?\\nContext: This event chain shows some main events from the American Revolution.\\nOptions: (A) the Declaration of Independence (B) the Constitution\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A graphic organizer is a chart or picture that shows how ideas, facts, or topics are related to one another.\\nWhen you read, look for graphic organizers included in the text. You can use these images to find key information. You can also create your own graphic organizers with information that you've read. Doing this can help you think about the ideas in the text and easily review them.\\nWhen you write, you can use graphic organizers to organize your thoughts and plan your writing. An event chain uses arrows to show the order of events. This event chain shows some main events from the American Revolution.\\nFollow the arrows to see the order of events. The second box says The Declaration of Independence is written and the fourth box says The Constitution is written. So, the Declaration of Independence was written first. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18915\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Imagine you are the ruler of Spain. You are determined to trade in the Indian Ocean, but the Portuguese are blocking you from sending expeditions around Africa. What would be the best solution to this problem?\\nContext: While the Portuguese were working their way around the coast of Africa, other European countries, such as Spain, also wanted to trade in the Indian Ocean. But Portugal already controlled sea trade along the West African coast. In fact, the rulers of Spain had signed a treaty agreeing not to trade there.\\nOptions: (A) break the treaty and start an expensive war (B) give up and focus instead on trade in Europe (C) look for other routes to the Indian Ocean\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The Portuguese blocked Spanish expeditions by preventing them from sailing around Africa. For the ruler of Spain, the best solution to this problem would be to look for other routes to the Indian Ocean. Going to war with Portugal's strong navy would be costly and risky. Giving up would mean that Spain would lose out on the opportunity to become wealthy from the spice trade.\\nThis map shows the ports that Portugal controlled in Africa by 1492. Portugal made sailing around Africa a real challenge for other Europeans! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18919\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word rampart on a dictionary page with the following guide words?\\nreach - risk\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince rampart is not between the guide words reach - risk, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18920\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this common carp's genotype for the scale type gene?\\nContext: This passage describes the scale type trait in common carp:\\n\\nIn a group of common carp, some individuals have normal scales and others have mirror scales. In this group, the gene for the scale type trait has two alleles. The allele A is for normal scales, and the allele a is for mirror scales.\\nA certain common carp from this group has normal scales. This carp has one allele for normal scales and one allele for mirror scales.\\nOptions: (A) normal scales (B) Aa\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. The common carp has one allele for normal scales (A) and one allele for mirror scales (a). So, the carp's genotype for the scale type gene is Aa. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18935\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nLast night's play-off in the semifinals proved to be the team's Waterloo.\\nContext: N/A\\nOptions: (A) a song (B) history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Waterloo is history.\\nIn 1815, French emperor Napoleon suffered a devastating defeat in the Battle of Waterloo, which would prove to be his final battle before he abdicated the throne.\\nThe allusion Waterloo means a final defeat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18936\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Linda inherited this trait?\\nContext: Read the description of a trait.\\nLinda has green eyes.\\nOptions: (A) Linda and her biological father wear sunglasses when they go outside. (B) Linda's neighbor has green eyes. (C) Linda has green eyes like her biological mother.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18937\",\n    \"image\": \"18937\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution B has more green particles per milliliter. So, Solution B has a higher concentration of green particles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18949\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Zelda's phenotype for the coat pattern trait?\\nContext: In a group of cows, some individuals have solid coloring and others have white spots. In this group, the gene for the coat pattern trait has two alleles. The allele for solid coloring (A) is dominant over the allele for white spots (a).\\nZelda is a cow from this group. Zelda has the homozygous genotype aa for the coat pattern gene.\\nOptions: (A) solid coloring (B) white spots\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Zelda's genotype for the coat pattern gene is aa. Zelda's genotype of aa has only a alleles. The a allele is for white spots. So, Zelda's phenotype for the coat pattern trait must be white spots.\\nTo check this answer, consider whether Zelda's alleles are dominant or recessive. The allele for solid coloring (A) is dominant over the allele for white spots (a). This means A is a dominant allele, and a is a recessive allele.\\nZelda's genotype of aa has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Zelda's phenotype for the coat pattern trait must be white spots. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18973\",\n    \"image\": \"18973\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Death Valley ecosystem?\\nContext: Figure: Death Valley.\\nDeath Valley is a desert ecosystem in eastern California.\\nOptions: (A) It has dry, thin soil. It also has many different types of organisms. (B) It has a small amount of rain. It also has only a few types of organisms.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A desert is a type of ecosystem. Deserts have the following features: a small amount of rain, dry, thin soil, and many different types of organisms. So, Death Valley has dry, thin soil. It also has many different types of organisms. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18985\",\n    \"image\": \"18985\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Saint Kitts and Nevis (B) Saint Lucia (C) Trinidad and Tobago (D) Antigua and Barbuda\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Kitts and Nevis. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"18994\",\n    \"image\": \"18994\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by changing the distance between them. The magnitude of the magnetic force is smaller when there is a greater distance between the magnets. Distance affects the magnitude of the magnetic force. When there is a greater distance between magnets, the magnitude of the magnetic force between them is smaller.\\nThere is a greater distance between the magnets in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19002\",\n    \"image\": \"19002\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wyoming?\\nContext: N/A\\nOptions: (A) Salem (B) Olympia (C) Laramie (D) Cheyenne\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Cheyenne is the capital of Wyoming. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19016\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) Freedom of speech and trial by jury are two important rights in the United States Constitution. (B) First, Trent planted the geraniums in a clay pot, and then he placed the pot on a sunny windowsill in his kitchen.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the compound sentence. It is made up of two independent clauses joined by the coordinating conjunction and.\\nFirst, Trent planted the geraniums in a clay pot, and then he placed the pot on a sunny windowsill in his kitchen. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19017\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Tyler acquired this trait?\\nContext: Read the description of a trait.\\nTyler knows how to build a fire.\\nOptions: (A) Tyler can cook food over a fire. (B) Tyler learned how to build a fire at summer camp.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19022\",\n    \"image\": \"19022\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is slate a mineral?\\nContext: Slate has the following properties:\\nnaturally occurring\\nsolid\\nnot a pure substance\\nnot made by organisms\\nno fixed crystal structure\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Slate does not have all the properties of a mineral. So, slate is not a mineral. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19023\",\n    \"image\": \"19023\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the bird below.\\nContext: Birds have feathers, two wings, and a beak. A painted stork is an example of a bird.\\nOptions: (A) tiger shark (B) bald eagle\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A bald eagle is a bird. It has feathers, two wings, and a beak.\\nA tiger shark is a fish. It lives underwater. It has fins, not limbs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19029\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to Newton's third law, what other force must be happening?\\nContext: Isaac Newton was born in the 1600s and studied how objects move. He discovered three fundamental laws about forces and motion. According to Newton's third law, for every force, there is an equal and opposite force.\\nConsider the following force:\\nColton is pushing on his friend's wheelchair.\\nOptions: (A) The wheelchair is pushing on Colton. (B) The wheelchair is pulling on Colton.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to Newton's third law, for every force, there is an equal and opposite force. This means that if one object is applying a force on a second object, the second object must also be applying a force on the first object, but in the opposite direction.\\nFor example, if your hand is pushing down on a table, the table is also pushing up on your hand. Or, if you are pulling forward on a rope, the rope is also pulling back on you. Colton is pushing on the wheelchair. So, Newton's third law tells you that the wheelchair is pushing on Colton. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19034\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is scratchier?\\nContext: N/A\\nOptions: (A) bark (B) rubber ball\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Scratchy is a property. A scratchy material is rough and itchy against your skin.\\nLook at each picture, one at a time. Imagine touching the material shown in each picture.\\nOf the choices, the bark is scratchier. If you could touch this tree bark, it would feel rough and itchy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19036\",\n    \"image\": \"19036\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Brendan and Isaac trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nBrendan and Isaac open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Brendan wanted broccoli in his lunch and Isaac was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Isaac can trade his broccoli for Brendan's oranges. (B) Isaac can trade his almonds for Brendan's tomatoes. (C) Brendan can trade his tomatoes for Isaac's broccoli. (D) Brendan can trade his tomatoes for Isaac's sandwich.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Brendan wanted broccoli in his lunch and Isaac was hoping for tomatoes. Look at the labeled part of the images.\\nBrendan has tomatoes. Isaac has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19042\",\n    \"image\": \"19042\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nThe smallest planet is made mainly of rock.\\nContext: Use the data to answer the question below.\\nOptions: (A) false (B) true\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice. The table tells you that the smallest planet is Mercury and that Mercury is made mainly of rock. So, the smallest planet is made mainly of rock. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19043\",\n    \"image\": \"19043\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is Nerium oleander made up of many cells?\\nContext: This organism is Nerium oleander. It is a member of the plant kingdom.\\nNerium oleander is commonly called an oleander plant. Oleander plants are toxic to many animals. Oleander plants contain a poison that can make animals sick. This poison helps protect oleander plants from being eaten by animals.\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Nerium oleander is a plant. Plants are made up of many cells. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19045\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMr. Goodman argues that we need to do more to prevent workplace injuries and fatalities. I doubt that someone so socially awkward would know a thing about office safety.\\nContext: N/A\\nOptions: (A) ad hominem: a personal attack against one's opponent (B) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that being socially awkward determines knowledge of workplace safety. This is a personal attack that isn't relevant to Mr. Goodman's desire to prevent workplace injuries. This illustrates a type of logical fallacy known as ad hominem. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19049\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nWhen Shivani first joined the track team, she was afraid of jumping, but she got over that hurdle.\\nContext: N/A\\nOptions: (A) pun (B) verbal irony\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses a pun, a word or phrase that humorously suggests more than one meaning.\\nHurdle refers to an obstacle that one must overcome. It also refers to an object that a runner jumps over. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19055\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a bowl of ice cream?\\nContext: Select the better estimate.\\nOptions: (A) 36\\u00b0F (B) 36\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a bowl of ice cream is 36\\u00b0F.\\n36\\u00b0C is too hot. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19060\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Eric felt better about collaborating on the research project after Greg talked with him about it. (B) After Greg talked with Eric about the research project, he felt better about collaborating on it.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun he could refer to Greg or Eric.\\nAfter Greg talked with Eric about the research project, he felt better about collaborating on it.\\nThe second answer choice shows a possible correction for the vague pronoun reference. The text has been rewritten so that the meaning is clear.\\nEric felt better about collaborating on the research project after Greg talked with him about it. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19063\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nVictor has naturally brown hair.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Humans do not choose their natural hair color. Some people dye their hair. But this does not change their natural hair color.\\nChildren get their natural hair color from their parents. So, Victor's hair color is an inherited trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19070\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Eli decides to see the polar bears. Which result would be a cost?\\nContext: Eli is deciding whether to see the tamarins or the polar bears at the zoo. He wants to see lots of animals, but the zoo is closing soon.\\nOptions: (A) Eli will save some time. The polar bears are close by, but he would have had to walk to the the other side of the zoo to see the tamarins. (B) Eli will give up the chance to see the tamarins. He would have enjoyed seeing them more than the polar bears.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Eli wants or needs:\\nEli will give up the chance to see the tamarins. He would have enjoyed seeing them more than the polar bears. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19075\",\n    \"image\": \"19075\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Mississippi?\\nContext: N/A\\nOptions: (A) Jackson (B) Atlanta (C) Portland (D) Tallahassee\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Jackson is the capital of Mississippi. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19078\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a hammer?\\nContext: Select the best estimate.\\nOptions: (A) 17 kilometers (B) 17 millimeters (C) 17 meters (D) 17 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a hammer is 17 centimeters.\\n17 millimeters is too short. 17 meters and 17 kilometers are too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19080\",\n    \"image\": \"19080\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Logan's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nLogan was . At the plant, an expensive filter was used to remove disease-causing bacteria from the water. But over time, the filter would become clogged with bacteria. If the filter became clogged, the water would not move through quickly enough. Logan had to decide when the filter was too clogged and needed to be replaced. So, during his inspection, Logan checked the filter by measuring how quickly water moved through it.\\nFigure: an engineer at a water treatment plant.\\nOptions: (A) whether the filter was clogged (B) the amount of bacteria in the water before it was filtered (C) whether an inexpensive filter would become clogged more often\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19086\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of an elephant?\\nContext: Select the better estimate.\\nOptions: (A) 5,725 grams (B) 5,725 kilograms\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using metric units, mass may be written with units of grams or kilograms.\\nThere are 1,000 grams in 1 kilogram. So, 1 gram is much less than 1 kilogram.\\nA paper clip has a mass of about 1 gram, while a textbook has a mass of about 1 kilogram. The better estimate for the mass of an elephant is 5,725 kilograms.\\n5,725 grams is too light. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19090\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nPlease don't be upset with me.\\nContext: N/A\\nOptions: (A) interrogative (B) imperative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement. It tells about something. A declarative sentence always ends with a period.\\nI have an older brother and a younger sister.\\nAn interrogative sentence is a question. It asks something. An interrogative sentence always ends with a question mark.\\nHow tall are you?\\nAn imperative sentence is a command. It makes a request or tells someone to do something. An imperative sentence usually ends with a period. If the command shows strong feeling, it ends with an exclamation point.\\nRead the first chapter by next week.\\nLook out for that car!\\nAn exclamatory sentence is like a statement, but it shows surprise or strong feeling. An exclamatory sentence always ends with an exclamation point.\\nSome whales are over ninety feet long!\\nI can't wait until tomorrow! The sentence makes a request, so it is an imperative sentence. Here, it ends with a period. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19093\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that the sled's mass did not change.\\nThe gravitational potential energy stored between the sled and Earth () as Rose rode down the hill.\\nContext: Read the text about an object in motion.\\nOn a snowy day, Rose rode her sled down a big hill.\\nOptions: (A) decreased (B) increased (C) stayed the same\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between the sled and the center of Earth changed.\\nThe bottom of the hill was lower than the point where Rose started sledding. As Rose rode toward the bottom of the hill, the distance between the sled and the center of Earth decreased. So, the gravitational potential energy stored between the sled and Earth decreased as Rose rode down the hill. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19112\",\n    \"image\": \"19112\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this clothes hanger made of?\\nContext: N/A\\nOptions: (A) cardboard (B) wood\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the clothes hanger.\\nThe clothes hanger is made of two different materials. The hook is made of metal. The rest of the hanger is made of wood. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19115\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Nibbles's phenotype for the body size trait?\\nContext: In a group of rats, some individuals have a normal-sized body and others have a dwarf body. In this group, the gene for the body size trait has two alleles. The allele for a normal-sized body (B) is dominant over the allele for a dwarf body (b).\\nNibbles is a rat from this group. Nibbles has the homozygous genotype BB for the body size gene.\\nOptions: (A) a normal-sized body (B) a dwarf body\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Nibbles's genotype for the body size gene is BB. Nibbles's genotype of BB has only B allelles. The B allele is for a normal-sized body. So, Nibbles's phenotype for the body size trait must be a normal-sized body.\\nTo check this answer, consider whether Nibbles's alleles are dominant or recessive. The allele for a normal-sized body (B) is dominant over the allele for a dwarf body (b). This means B is a dominant allele, and b is a recessive allele.\\nNibbles's genotype of BB has two dominant alleles. An organism with at least one dominant allele for a gene will have the dominant allele's version of the trait. So, Nibbles's phenotype for the body size trait must be a normal-sized body. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19117\",\n    \"image\": \"19117\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nevada?\\nContext: N/A\\nOptions: (A) Las Vegas (B) Carson City (C) Phoenix (D) Tulsa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Carson City is the capital of Nevada. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19118\",\n    \"image\": \"19118\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Preston's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nPreston put one two-inch steel nail into each of six test tubes. He added water to three of the test tubes and vinegar to the other three. In each test tube, he completely covered the nail with the same volume of liquid. Preston checked the nails for rust at the same time every day. He recorded how many days it took each nail to become completely covered in rust. Then, he compared the number of days it took nails to rust in water to the number of days it took nails to rust in vinegar.\\nFigure: a new steel nail on a pile of rusty nails.\\nOptions: (A) Do steel nails take fewer days to rust in water compared to vinegar? (B) Do steel nails rust in fewer days when submerged in a large volume of liquid compared to a small volume?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19122\",\n    \"image\": \"19122\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of North Carolina?\\nContext: N/A\\nOptions: (A) Milwaukee (B) Raleigh (C) Boise (D) Jackson\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Raleigh is the capital of North Carolina. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19133\",\n    \"image\": \"19133\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Southern Ocean (B) the Pacific Ocean (C) the Atlantic Ocean (D) the Indian Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Pacific Ocean. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19134\",\n    \"image\": \"19134\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is weaker in Pair 1. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is weaker in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is weaker when the magnets are farther apart. Distance affects the strength of the magnetic force. When magnets are farther apart, the magnetic force between them is weaker.\\nThe magnets in Pair 1 are farther apart than the magnets in Pair 2. So, the magnetic force is weaker in Pair 1 than in Pair 2. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19136\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAt twenty-one, Jonathan felt overwhelmed with adult responsibilities and wished he could fly off to Neverland.\\nContext: N/A\\nOptions: (A) allusion (B) simile\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses an allusion, a brief reference to someone or something well known.\\nNeverland alludes to the story of Peter Pan, a boy who lived in Neverland and never grew up. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19139\",\n    \"image\": \"19139\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these oceans does the prime meridian intersect?\\nContext: N/A\\nOptions: (A) the Atlantic Ocean (B) the Indian Ocean (C) the Pacific Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lines of latitude and lines of longitude are imaginary lines drawn on some globes and maps. They can help you find places on globes and maps.\\nLines of latitude show how far north or south a place is. We use units called degrees to describe how far a place is from the equator. The equator is the line located at 0\\u00b0 latitude. We start counting degrees from there.\\nLines north of the equator are labeled N for north. Lines south of the equator are labeled S for south. Lines of latitude are also called parallels because each line is parallel to the equator.\\nLines of longitude are also called meridians. They show how far east or west a place is. We use degrees to help describe how far a place is from the prime meridian. The prime meridian is the line located at 0\\u00b0 longitude. Lines west of the prime meridian are labeled W. Lines east of the prime meridian are labeled E. Meridians meet at the north and south poles.\\nThe equator goes all the way around the earth, but the prime meridian is different. It only goes from the North Pole to the South Pole on one side of the earth. On the opposite side of the globe is another special meridian. It is labeled both 180\\u00b0E and 180\\u00b0W.\\nTogether, lines of latitude and lines of longitude form a grid. You can use this grid to find the exact location of a place. The prime meridian is the line at 0\\u00b0 longitude. It intersects the Atlantic Ocean. It does not intersect the Pacific Ocean or the Indian Ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19142\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nDr. Clayton is unhappy with her new assistant because simple tasks, like fetching coffee, take him years to finish.\\nContext: N/A\\nOptions: (A) hyperbole (B) euphemism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nTake him years to finish is an exaggeration, since it probably does not take him entire years to fetch coffee. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19143\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\na piece of avocado turning brown\\nboiling sugar to make caramel\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are only physical changes. (C) Both are chemical changes. (D) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nA piece of avocado turning brown is a chemical change. The avocado reacts with oxygen in the air to form a different type of matter.\\nIf you scrape off the brown part of the avocado, the inside will still be green. The inside hasn't touched the air. So the chemical change hasn't happened to that part of the avocado.\\nBoiling sugar to make caramel is a chemical change. The heat causes the sugar to change into a different type of matter. Unlike sugar, the new matter is brown and sticky.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBoiling sugar is caused by heating. But a piece of avocado turning brown is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19150\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is washing cars a good or a service?\\nContext: N/A\\nOptions: (A) a good (B) a service\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Everything you can buy is either a good or a service.\\nA good is something you can touch or hold in your hands. For example, a hammer is a good.\\nA service is a job you pay someone else to do. For example, cooking food in a restaurant is a service. To decide whether washing cars is a good or a service, ask these questions:\\nIs washing cars something you can touch? No.\\nIs washing cars a job you might pay someone else to do? Yes.\\nSo, washing cars is a service. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19155\",\n    \"image\": \"19155\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is fluorite a mineral or a rock?\\nContext: Fluorite has the following properties:\\nfound in nature\\nsolid\\npure substance\\nnot made by living things\\nfixed crystal structure\\nglassy luster\\nOptions: (A) rock (B) mineral\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Fluorite has all the properties of a mineral. So, fluorite is a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19156\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that the hockey puck's mass did not change.\\nThe gravitational potential energy stored between the hockey puck and Earth () as the puck slid toward the goal.\\nContext: Read the text about an object in motion.\\nQuincy and Roger were playing air hockey on a level table. When Quincy hit the hockey puck, it slid quickly toward Roger's goal.\\nOptions: (A) increased (B) stayed the same (C) decreased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between the hockey puck and the center of Earth changed.\\nBecause the table was level, each point on the table was the same distance from the center of Earth. As the hockey puck slid toward the goal, the distance between the puck and the center of Earth stayed the same. So, the gravitational potential energy stored between the hockey puck and Earth stayed the same as the puck slid toward the goal. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19158\",\n    \"image\": \"19158\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Connecticut?\\nContext: N/A\\nOptions: (A) New Haven (B) Saint Louis (C) Bridgeport (D) Hartford\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Hartford is the capital of Connecticut. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19161\",\n    \"image\": \"19161\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) translucent (B) hard (C) soft\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA hard object does not change shape when pressed or squeezed. All three objects are hard.\\nA translucent object lets light through. But you cannot see clearly through a translucent object. The apple seeds and the canoe are not translucent.\\nA soft object changes shape when pressed or squeezed. None of the objects are soft.\\nThe property that all three objects have in common is hard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19163\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a garden snail?\\nContext: Select the best estimate.\\nOptions: (A) 42 centimeters (B) 42 meters (C) 42 millimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a garden snail is 42 millimeters.\\n42 centimeters and 42 meters are both too long. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19164\",\n    \"image\": \"19164\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Saint Lucia (B) Cuba (C) Trinidad and Tobago (D) Jamaica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Cuba.\\nDoes Cuba have any territorial disputes?\\nCuba claims to own Guantanamo Bay Naval Base, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nThe United States controls the area and uses it as a military base and prison. A treaty in 1903 gave the U.S. the right to rent the land from Cuba. But today, Cuba says that it had no choice but to accept the treaty. It wants the United States to leave the area and does not accept the rent money sent by the United States each year. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19165\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nYou may be impressed by Senator Larsen's work with low-income communities, but the fact remains that he graduated from an elite university. He couldn't possibly empathize with low-income constituents.\\nContext: N/A\\nOptions: (A) guilt by association: a negative association intended to discredit someone or something (B) circular reasoning: an argument that supports a claim with the claim itself (C) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Senator Larsen can't empathize with his low-income constituents because he went to an elite university. However, going to an elite university doesn't necessarily mean you're out of touch. This illustrates a type of logical fallacy known as guilt by association. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19167\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) thanks,\\nTrudy (B) Thanks,\\nTrudy\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19176\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to mow the lawn?\\nContext: Select the better estimate.\\nOptions: (A) 40 hours (B) 40 minutes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to mow the lawn is 40 minutes.\\n40 hours is too slow. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19182\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Scratches's phenotype for the fur type trait?\\nContext: In a group of cats, some individuals have straight fur and others have curly fur. In this group, the gene for the fur type trait has two alleles. The allele F is for straight fur, and the allele f is for curly fur.\\nScratches, a cat from this group, has curly fur. Scratches has two alleles for curly fur.\\nOptions: (A) ff (B) curly fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Scratches's observable version of the fur type trait is curly fur. So, Scratches's phenotype for the fur type trait is curly fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19187\",\n    \"image\": \"19187\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Antarctica (B) South America (C) Africa (D) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Africa. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19197\",\n    \"image\": \"19197\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which i in column 2?\\nContext: N/A\\nOptions: (A) the pond (B) the fast-food restaurant (C) the police department (D) the grocery store\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A grid is made up of lines of squares. They are organized in rows and columns. A grid can help you use a map.\\nA row is a line of squares that goes from side to side. Rows are marked with letters.\\nA column is a line of squares that goes up and down. Columns are marked with numbers. The fast-food restaurant is in column 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19204\",\n    \"image\": \"19204\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Hawaii?\\nContext: N/A\\nOptions: (A) Santa Fe (B) Honolulu (C) Hilo (D) Phoenix\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Honolulu is the capital of Hawaii. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19206\",\n    \"image\": \"19206\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Iowa?\\nContext: N/A\\nOptions: (A) Cedar Rapids (B) Des Moines (C) Springfield (D) Saint Paul\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Des Moines is the capital of Iowa. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19213\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complete sentence?\\nContext: N/A\\nOptions: (A) The river flooded the town during the storm. (B) The state's rocky and windy coastal beaches.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. The river flooded the town during the storm is a complete sentence. The subject is the river, and the verb is flooded. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19217\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word unique in its traditional sense?\\nContext: N/A\\nOptions: (A) Ashley's collection of handmade pottery was featured in last week's edition of the Weston Journal, which identified her as \\\"one of the most unique young artists to debut this year.\\\" (B) Each vase and bowl in Ashley's collection of handmade pottery is unique. The colors and designs reflect both her cultural heritage and her individual artistic style.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The second text uses unique in its traditional sense: being the only one of its kind.\\nEach vase and bowl in Ashley's collection of handmade pottery is unique. The colors and designs reflect both her cultural heritage and her individual artistic style.\\nThe first text uses unique in its nontraditional sense: interesting or unusual. Ashley is a distinctive artist, but might not be one of a kind. It may be helpful to remember that if unique is modified by an adverb\\u2014as in most unique, very unique, or quite unique\\u2014it is probably being used nontraditionally.\\nAshley's collection of handmade pottery was featured in last week's edition of the Weston Journal, which identified her as \\\"one of the most unique young artists to debut this year.\\\"\\nMost style guides recommend to use the traditional sense of the word unique because it is considered more standard. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19220\",\n    \"image\": \"19220\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this pull?\\nContext: A tow truck moves a car. A force from the truck pulls the car down the road.\\nOptions: (A) away from the tow truck (B) toward the tow truck\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to another. Every force has a direction.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The tow truck pulls the car. The direction of the pull is toward the tow truck. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19223\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Brittany decides to plant the maple tree. Which result would be a cost?\\nContext: Brittany is deciding whether to plant poppies or a maple tree in her backyard. She wants to make her backyard more beautiful. But she also wants to leave space for doing fun things.\\nOptions: (A) Brittany will get to look at the maple tree. She thinks it will look more beautiful than the poppies would have looked. (B) The maple tree will use up more space than the poppies would have used up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Brittany wants or needs:\\nThe maple tree will use up more space than the poppies would have used up. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19225\",\n    \"image\": \"19225\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Indian Ocean (B) the Southern Ocean (C) the Arctic Ocean (D) the Atlantic Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Indian Ocean. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19227\",\n    \"image\": \"19227\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with white spots to offspring with solid coloring? Choose the most likely ratio.\\nContext: In a group of cows, some individuals have solid coloring and others have white spots. In this group, the gene for the coat pattern trait has two alleles. The allele for white spots (a) is recessive to the allele for solid coloring (A).\\nThis Punnett square shows a cross between two cows.\\nOptions: (A) 4:0 (B) 3:1 (C) 1:3 (D) 2:2 (E) 0:4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with white spots or solid coloring, consider whether each phenotype is the dominant or recessive allele's version of the coat pattern trait. The question tells you that the a allele, which is for white spots, is recessive to the A allele, which is for solid coloring.\\nWhite spots is the recessive allele's version of the coat pattern trait. A cow with the recessive version of the coat pattern trait must have only recessive alleles for the coat pattern gene. So, offspring with white spots must have the genotype aa.\\nThere are 0 boxes in the Punnett square with the genotype aa.\\nSolid coloring is the dominant allele's version of the coat pattern trait. A cow with the dominant version of the coat pattern trait must have at least one dominant allele for the coat pattern gene. So, offspring with solid coloring must have the genotype AA or Aa.\\nAll 4 boxes in the Punnett square have the genotype AA or Aa.\\nSo, the expected ratio of offspring with white spots to offspring with solid coloring is 0:4. This means that, based on the Punnett square, this cross will never produce offspring with white spots. Instead, this cross is expected to always produce offspring with solid coloring. The answer is E.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19232\",\n    \"image\": \"19232\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is an icicle a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a solid (B) a liquid (C) a gas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids are thicker than others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. The oxygen you breathe is a gas. The helium in a balloon is also a gas. An icicle is a solid. An icicle can melt. But when an icicle is frozen, it has a size and shape of its own. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19237\",\n    \"image\": \"19237\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) sample A (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19239\",\n    \"image\": \"19239\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) bouncy (B) blue (C) fragile\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nBlue is a color.\\nThis color is blue. The basketball and the pogo stick are not blue.\\nA bouncy object will bounce back from the floor if you drop it. All three objects are bouncy.\\nA fragile object will break into pieces if you drop it. None of the objects are fragile.\\nThe property that all three objects have in common is bouncy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19244\",\n    \"image\": \"19244\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged among green leaves?\\nContext: Leaf-mimic katydids are insects that live in places like tropical forests. This katydid is adapted to be camouflaged among green leaves.\\nFigure: leaf-mimic katydid.\\nOptions: (A) blue poison dart frog (B) shield mantis\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the leaf-mimic katydid.\\nThe leaf-mimic katydid has a green leaf-shaped body. It is adapted to be camouflaged among green leaves. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe shield mantis has a green leaf-shaped body. It is adapted to be camouflaged among green leaves.\\nThe blue poison dart frog has brightly colored skin. It is not adapted to be camouflaged among green leaves. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19248\",\n    \"image\": \"19248\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted for climbing trees?\\nContext: s live in rain forests on the island of Sumatra in Asia. They climb trees to find food and shelter. The orangutan's hands and feet are adapted for climbing trees.\\nFigure: Sumatran orangutan.\\nOptions: (A) Grevy's zebra (B) bare-eared squirrel monkey\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's feet is one example of an adaptation. Animals' feet can be adapted in different ways. For example, webbed feet might help an animal swim. Feet with thick fur might help an animal walk on cold, snowy ground. Look at the picture of the Sumatran orangutan.\\nThe Sumatran orangutan has long fingers and toes. It is adapted for climbing trees. The Sumatran orangutan uses its long fingers and toes to hold on to branches while climbing.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe bare-eared squirrel monkey has long fingers and toes. It is adapted for climbing trees.\\nThe Grevy's zebra has four hoofed feet. It is not adapted for climbing trees. The Grevy's zebra uses its feet to walk and run. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19253\",\n    \"image\": \"19253\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Rhode Island?\\nContext: N/A\\nOptions: (A) Newport (B) Providence (C) Hartford (D) Concord\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Providence is the capital of Rhode Island. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19257\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the bird traits listed above.\\nContext: Birds are a group of animals with similar traits. The following traits can be used to identify birds:\\nThey have feathers.\\nThey have wings.\\nThey have a beak.\\nThey make eggs with shells. Observe the animals and read the descriptions.\\nOptions: (A) Minnows live underwater and have fins to help them swim. They have scaly skin and lay eggs with no shells. Many fishermen use minnows as bait to catch other fish. (B) Barn owls live on every continent except Antarctica. They have feathers, two wings, and a beak. They hatch from eggs with shells.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nBirds have the following traits:\\nThey have feathers.\\nThey have wings.\\nThey have a beak.\\nThey make eggs with shells.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA minnow has the following traits:\\nIt has fins, not limbs.\\nIt makes eggs with no shells.\\nA minnow does not have all of the traits of a bird. A minnow is a fish.\\nA barn owl has the following traits:\\nIt has feathers.\\nIt has wings.\\nIt has a beak.\\nIt makes eggs with shells.\\nA barn owl has the traits of a bird. A barn owl is a bird. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19259\",\n    \"image\": \"19259\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19260\",\n    \"image\": \"19260\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Mount Rainier National Park ecosystem?\\nContext: Figure: Mount Rainier National Park.\\nMount Rainier National Park is a taiga ecosystem in Washington State.\\nOptions: (A) It has long, cold winters. It also has soil that is poor in nutrients. (B) It has short, cool summers. It also has soil that is rich in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A taiga is a type of ecosystem. Taigas have the following features: long, cold winters and short, cool summers, many evergreen trees, and soil that is poor in nutrients. So, Mount Rainier National Park has long, cold winters. It also has soil that is poor in nutrients. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19263\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Poseidon's phenotype for the iridescent scales trait?\\nContext: This passage describes the iridescent scales trait in bettas:\\n\\nIn a group of bettas, some individuals have mostly iridescent scales and others have mostly plain scales. In this group, the gene for the iridescent scales trait has two alleles. The allele for mostly iridescent scales (I) is dominant over the allele for mostly plain scales (i).\\nPoseidon is a betta from this group. Poseidon has the homozygous genotype ii for the iridescent scales gene.\\nOptions: (A) mostly plain scales (B) mostly iridescent scales\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Poseidon's genotype for the iridescent scales gene is ii. Poseidon's genotype of ii has only i alleles. The i allele is for mostly plain scales. So, Poseidon's phenotype for the iridescent scales trait must be mostly plain scales.\\nTo check this answer, consider whether Poseidon's alleles are dominant or recessive. The allele for mostly iridescent scales (I) is dominant over the allele for mostly plain scales (i). This means I is a dominant allele, and i is a recessive allele.\\nPoseidon's genotype of ii has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Poseidon's phenotype for the iridescent scales trait must be mostly plain scales. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19271\",\n    \"image\": \"19271\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Virginia?\\nContext: N/A\\nOptions: (A) Topeka (B) Atlanta (C) Richmond (D) Nashville\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Richmond is the capital of Virginia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19274\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nLexi plays basketball.\\nContext: Hint: Playing basketball takes practice.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to play basketball. Instead, some people learn how to play basketball. Playing the sport takes practice. So, playing basketball is an acquired trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19278\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) You might be excited by all of the people and activity in Tokyo, or it might be a bit overwhelming. (B) The package includes some old letters from my grandma to my dad and a broken pocket watch.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the compound sentence. It is made up of two independent clauses joined by the coordinating conjunction or.\\nYou might be excited by all of the people and activity in Tokyo, or it might be a bit overwhelming. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19287\",\n    \"image\": \"19287\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) New Jersey (B) Pennsylvania (C) Virginia (D) New York\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19292\",\n    \"image\": \"19292\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Kansas?\\nContext: N/A\\nOptions: (A) Nashville (B) Wichita (C) Topeka (D) Kansas City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Topeka is the capital of Kansas. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19293\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) thanks,\\nAnne (B) Thanks,\\nAnne\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19296\",\n    \"image\": \"19296\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: California's Central Valley.\\nMany crops are grown in California's Central Valley. Thick fog often fills the valley during the cold winter months.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) climate (B) weather\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nMany crops are grown in California's Central Valley. Thick fog often fills the valley during the cold winter months.\\nThe underlined part of the passage tells you about the usual pattern of cloud cover in the Central Valley. This passage does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19303\",\n    \"image\": \"19303\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Steve's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nSteve was . At the plant, an expensive filter was used to remove disease-causing bacteria from the water. But over time, the filter would become clogged with bacteria. If the filter became clogged, the water would not move through quickly enough. Steve had to decide when the filter was too clogged and needed to be replaced. So, during his inspection, Steve checked the filter by measuring how quickly water moved through it.\\nFigure: an engineer at a water treatment plant.\\nOptions: (A) the amount of bacteria in the water before it was filtered (B) whether an inexpensive filter would become clogged more often (C) whether the filter was clogged\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19305\",\n    \"image\": \"19305\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following statement about our solar system true or false?\\nEarth is the largest planet that is made mainly of rock.\\nContext: Use the data to answer the question below.\\nOptions: (A) true (B) false\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A planet's volume tells you the size of the planet.\\nThe primary composition of a planet is what the planet is made mainly of. In our solar system, planets are made mainly of rock, gas, or ice.\\nThe volume of a planet is a very large quantity. Large quantities such as this are often written in scientific notation.\\nFor example, the volume of Jupiter is 1,430,000,000,000,000 km^3. In scientific notation, Jupiter's volume is written as 1.43 x 10^15 km^3.\\nTo compare two numbers written in scientific notation, compare their exponents. The bigger the exponent is, the bigger the number is. For example:\\n1.43 x 10^15 is larger than 1.43 x 10^12\\nIf their exponents are equal, compare the first numbers. For example:\\n1.43 x 10^15 is larger than 1.25 x 10^15\\n The table tells you that Mercury, Venus, Earth, and Mars are the planets made mainly of rock. Of these planets, Earth has the volume with the largest exponent. So, Earth is the largest planet that is made mainly of rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19310\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the living thing.\\nContext: N/A\\nOptions: (A) hockey puck (B) yeast (C) snowman (D) swing set\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All living things are made up of cells. Plants, animals, and some fungi have many cells. Other living things are made up of just one cell.\\nAll living things need food and water. Water helps living things break down food and remove waste. Food gives living things energy. They use energy from food to grow and change.\\nAll living things sense changes in their environment. Living things might sense changes by seeing, smelling, hearing, or feeling. Living things can respond to the changes they sense. A hockey puck is not a living thing.\\nHockey pucks do not have all of the traits of living things. They do not grow or respond to their environment. They do not need food or water.\\nA yeast is a living thing.\\nYeasts grow and respond to their environment. They need food and water.\\nEach yeast is made up of just one cell. Some types of yeast cells are round. Other yeast cells have a long, thin shape.\\nA snowman is not a living thing.\\nA snowman does not have all the traits of a living thing. It is shaped like a person. But it does not need food.\\nA swing set is not a living thing.\\nSwing sets do not have all of the traits of living things. They do not grow or respond to their environment. They do not need food or water. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19318\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which drop of honey has less thermal energy?\\nContext: Two drops of honey are identical except for their temperatures.\\nOptions: (A) the hotter drop of honey (B) the colder drop of honey\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two drops of honey are made of the same material and have the same mass. So, the colder drop of honey has less thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19323\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which change best matches the sentence?\\nA glacier scrapes pieces of rock off a mountain and carries them downhill.\\nContext: N/A\\nOptions: (A) landslide (B) drought (C) erosion\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19324\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nMr. and Mrs. Chandler usually see eye to eye, but not when it comes to the controversial mayoral race.\\nContext: N/A\\nOptions: (A) Mr. and Mrs. Chandler look each other in the eye. (B) Mr. and Mrs. Chandler usually agree.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom see eye to eye suggests that Mr. and Mrs. Chandler usually agree. When you see eye to eye with someone, you share their opinion. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19327\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is the Nile River?\\nContext: Select the better estimate.\\nOptions: (A) 6,850 kilometers (B) 6,850 centimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of the Nile River is 6,850 kilometers.\\n6,850 centimeters is too short. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19333\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which greeting is correct for a letter?\\nContext: N/A\\nOptions: (A) Dear dr. sutton, (B) Dear Dr. Sutton,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second greeting is correct:\\nIts first word is capitalized, and it ends with a comma. Dr. Sutton is capitalized because it is a proper noun. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19334\",\n    \"image\": \"19334\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is candle wax a mineral?\\nContext: Candle wax has the following properties:\\nno fixed crystal structure\\nmade in a factory\\nmixture of different fats\\nsolid\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Properties are used to identify different substances. Minerals have the following properties:\\nIt is a solid.\\nIt is formed in nature.\\nIt is not made by organisms.\\nIt is a pure substance.\\nIt has a fixed crystal structure.\\nIf a substance has all five of these properties, then it is a mineral.\\nLook closely at the last three properties:\\nA mineral is not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals.\\nHumans are organisms too. So, substances that humans make by hand or in factories cannot be minerals.\\nA mineral is a pure substance.\\nA pure substance is made of only one type of matter. All minerals are pure substances.\\nA mineral has a fixed crystal structure.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms or molecules in different pieces of the same type of mineral are always arranged the same way.\\n Candle wax does not have all the properties of a mineral. So, candle wax is not a mineral. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19351\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The city of Milford has been one of the world's biggest makers of cough drops for many years. But last month, Milford's cough drop factories were destroyed by floods. What will probably happen to the overall supply of cough drops?\\nContext: N/A\\nOptions: (A) The supply will probably go up. (B) The supply will probably go down.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. Floods destroyed the cough drop factories in Milford. The number of producers of cough drops went down. So, the supply of cough drops will probably go down. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19353\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nTed has a scar on his right knee.\\nContext: Hint: Most scars are caused by accidents during a person's life.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Children do not inherit their parent's scars. Instead, scars are caused by the environment. People can get scars after they get hurt. So, having a scar is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19355\",\n    \"image\": \"19355\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Harold's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nHarold was a mechanical engineer who was designing to record temperature, precipitation, and wind speed. The weather station would be used in a town where the highest recorded temperature was 40\\u00b0C. Harold wanted to make sure the weather station would work even in unusually warm weather.\\nSo, he set an indoor test chamber to 50\\u00b0C with low moisture and no wind. He left the weather station in the chamber overnight. The next day, he checked to see if the weather station displayed accurate measurements after 24 hours at 50\\u00b0C.\\nFigure: a weather station.\\nOptions: (A) if the weather station would work when the temperature was 50\\u00b0C (B) how well the weather station would work when it was windy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19367\",\n    \"image\": \"19367\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of relationship is formed when an Alcon blue caterpillar lives in a Myrmica ant nest?\\nContext: Read the passage. Then answer the question.\\n\\nAlcon blue butterflies spend the first part of their lives as caterpillars that live with Myrmica ants. When a caterpillar lives with the ants, it mimics, or pretends to be, an ant. The caterpillar can mimic the ants by copying their smell. The caterpillar can also make noises that make it sound like a queen ant. Queen ants receive more food and better protection than any other ants in the nest.\\nSo, when the caterpillar mimics an ant, the ants feed and protect the caterpillar instead of other ants in the nest.\\nFigure: a Myrmica ant caring for an Alcon blue caterpillar.\\nOptions: (A) parasitic (B) mutualistic (C) commensal\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When two organisms of different species interact in a way that affects one or both organisms, they form a symbiotic relationship. The word symbiosis comes from a Greek word that means living together. Scientists define types of symbiotic relationships based on how each organism is affected.\\nThis table lists three common types of symbiotic relationships. It shows how each organism is affected in each type of symbiotic relationship.\\nType of symbiotic relationship | Organism of one species... | Organism of the other species...\\nCommensal | benefits | is not significantly affected\\nMutualistic | benefits | benefits\\nParasitic | benefits | is harmed (but not usually killed) When an Alcon blue caterpillar lives in a Myrmica ant nest, the caterpillar gets food and protection. So, the caterpillar benefits from its relationship with the ants.\\nThe ants feed and protect the caterpillar instead of other ants in the nest. So, the ants are harmed by their relationship with the caterpillar.\\nSince the caterpillar benefits and the ants are harmed, a parasitic relationship is formed when an Alcon blue caterpillar lives in a Myrmica ant nest. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19375\",\n    \"image\": \"19375\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) Solution B (B) Solution A (C) neither; their concentrations are the same\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution B has more green particles per milliliter. So, Solution B has a higher concentration of green particles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19381\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nDon't be deceived by Emma Hammond's articles on rural, blue-collar workers. Her husband is a fancy investment banker, so she can't possibly understand their situation.\\nContext: N/A\\nOptions: (A) guilt by association: a negative association intended to discredit someone or something (B) straw man: a misrepresentation of an opponent's position that makes it easier to argue against (C) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Emma Hammond can't understand rural, blue-collar workers because she is associated with an urban newspaper. However, where Emma works doesn't necessarily indicate anything about her ability to empathize. This illustrates a type of logical fallacy known as guilt by association. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19386\",\n    \"image\": \"19386\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the picture. Which word best describes the sound these birds make?\\nContext: N/A\\nOptions: (A) chirping (B) quacking (C) popping\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When you write, you can use sensory details. These sense words help your reader understand what something looks, sounds, tastes, smells, or feels like.\\nSensory Category | Description\\nSight | These are words like bright, clean, and purple. A reader can imagine looking at these details.\\nSound | These are words like hissing, buzzing, and ringing. A reader can imagine hearing these details.\\nTaste | These are words like juicy, sweet, and burnt. A reader can imagine tasting these details.\\nSmell | These are words like fruity, sweet, and stinky. A reader can imagine smelling these details.\\nTouch | These are words like fuzzy, wet, and soft. A reader can imagine feeling these details.\\nMany sense words can describe more than one sense. For example, soft can describe a touch or a sound. And sweet can describe a taste or a smell.\\n Look at the picture.\\nThe word chirping describes the sound these birds make.\\nQuacking and popping can also describe sounds. But they do not describe the sounds these birds make. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19397\",\n    \"image\": \"19397\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal is also adapted to be camouflaged in a sandy desert?\\nContext: s live in the deserts of southern Africa. The is adapted to be camouflaged in a sandy desert.\\nFigure: Namaqua chameleon.\\nOptions: (A) horned viper (B) European green lizard\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the Namaqua chameleon.\\nThe Namaqua chameleon has sand-colored scales covering its body. It is adapted to be camouflaged in a sandy desert. The word camouflage means to blend in.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe horned viper has sand-colored scales covering its body. It is adapted to be camouflaged in a sandy desert.\\nThe European green lizard has a green, brown, and yellow body. It is not adapted to be camouflaged in a sandy desert. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19401\",\n    \"image\": \"19401\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Virginia?\\nContext: N/A\\nOptions: (A) Richmond (B) Baton Rouge (C) Kansas City (D) Salt Lake City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Richmond is the capital of Virginia. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19405\",\n    \"image\": \"19405\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following was an independent variable in this experiment?\\nContext: The passage below describes an experiment. Read the passage and think about the variables that are described.\\n\\nDuncan grew ten on his back porch. He grew each plant in its own pot, and each pot was the same size and shape. Duncan noticed that his plants did not grow many leaves, and he wanted to see if earthworms could help them grow more. To test this idea, Duncan divided his ten plants into two equal groups. For one group, he added three earthworms to the soil in each pot. He did not add any earthworms to pots in the other group.\\nTwo months later, Duncan counted the number of leaves on each of the ten plants. He compared the number of leaves on the plants in each group.\\nHint: An independent variable is a variable whose effect you are investigating. A dependent variable is a variable that you measure.\\nFigure: mint plants.\\nOptions: (A) the number of earthworms (B) the number of leaves\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to find out how one variable affects another variable. For example, imagine that you want to find out if fertilizer affects the number of tomatoes a tomato plant grows. To answer this question, you decide to set up two equal groups of tomato plants. Then, you add fertilizer to the soil of the plants in one group but not in the other group. Later, you measure the effect of the fertilizer by counting the number of tomatoes on each plant.\\nIn this experiment, the amount of fertilizer added to the soil and the number of tomatoes were both variables.\\nThe amount of fertilizer added to the soil was an independent variable because it was the variable whose effect you were investigating. This type of variable is called independent because its value does not depend on what happens after the experiment begins. Instead, you decided to give fertilizer to some plants and not to others.\\nThe number of tomatoes was a dependent variable because it was the variable you were measuring. This type of variable is called dependent because its value can depend on what happens in the experiment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19408\",\n    \"image\": \"19408\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19430\",\n    \"image\": \"19430\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs.\\nFish are cold-blooded. The body temperature of cold-blooded animals depends on their environment.\\nA Banggai cardinalfish is an example of a fish.\\nOptions: (A) water buffalo (B) seahorse (C) western toad (D) tokay gecko\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A tokay gecko is a reptile. It has scaly, waterproof skin.\\nMany geckos have special pads on their toes. The pads help them climb up plants and rocks.\\nA water buffalo is a mammal. It has hair and feeds its young milk.\\nWater buffaloes live in Asia. Some people raise water buffaloes for their milk.\\nA western toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole.\\nA seahorse is a fish. It lives underwater. It has fins, not limbs.\\nSeahorses live in shallow, warm water. They can use their tails to hold on to plants. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19442\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is this a run-on sentence?\\nAccording to a 2008 study, hog farms across five counties in eastern North Carolina produce more than fifteen million tons of manure every year, creating a waste management challenge of epic proportions for county officials.\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that expresses a complete thought.\\nThe band I'm in has been rehearsing daily because we have a concert in two weeks.\\nA run-on sentence is formed when two sentences are run together, joined by just a comma or by no punctuation at all. If only a comma is used, the run-on is called a comma splice.\\nThe band I'm in has been rehearsing daily, we have a concert in two weeks.\\nThe band I'm in has been rehearsing daily we have a concert in two weeks.\\nThere are several ways to fix a run-on sentence:\\nUse stronger punctuation, such as a period or a semicolon.\\nThe band I'm in has been rehearsing daily. We have a concert in two weeks.\\nThe band I'm in has been rehearsing daily; we have a concert in two weeks.\\nUse a comma and a coordinating conjunction to create a compound sentence. Coordinating conjunctions include and, but, or, and so.\\nThe band I'm in has been rehearsing daily, and we have a concert in two weeks.\\nUse a subordinating conjunction or a relative pronoun to create a complex sentence. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, and whose.\\nThe band I'm in has been rehearsing daily since we have a concert in two weeks. This is not a run-on sentence. It is not formed from two sentences that have been run together without appropriate punctuation.\\nAccording to a 2008 study, hog farms across five counties in eastern North Carolina produce more than fifteen million tons of manure every year, creating a waste management challenge of epic proportions for county officials. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19444\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nequal - everyday\\nContext: N/A\\nOptions: (A) escape (B) elevator\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince escape is between the guide words equal - everyday, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19456\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Keith acquired this trait?\\nContext: Read the description of a trait.\\nKeith knows how to knit sweaters.\\nOptions: (A) Keith learned how to knit in an after school program. (B) Keith knits sweaters using cotton, wool, and other types of yarn.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19457\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) The famous French photographer Henri Cartier-Bresson was known for his photographs of ordinary daily life. (B) The famous French photographer Henri Cartier-Bresson took pictures of a bunch of random people doing everyday things.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses conversational language (a bunch of, random).\\nThe first sentence uses formal language in place of the conversational language, so it is more formal overall. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19460\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Finn investigate with an experiment?\\nContext: Finn has a pet lizard. Finn notices that on some days, the lizard is active and runs around the tank. On other days, the lizard hardly moves at all. Finn wonders what factors affect how active his lizard is. So, he decides to design an experiment. He has the following supplies available:\\none pet lizard\\nlive crickets\\nlive mealworms\\none heating lamp\\nOptions: (A) Is the pet lizard more active when its tank is heated with one heating lamp or with two heating lamps? (B) Is the pet lizard more active when it is fed insects or lettuce? (C) Is the pet lizard more active when it is fed crickets or mealworms?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19470\",\n    \"image\": \"19470\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of blue particles?\\nContext: The diagram below is a model of two solutions. Each blue ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution B (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the blue particles represent the solute. To figure out which solution has a higher concentration of blue particles, look at both the number of blue particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of blue particles per milliliter.\\nSolution A and Solution B have the same number of blue particles per milliliter. So, their concentrations are the same. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19473\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a bathtub?\\nContext: Select the better estimate.\\nOptions: (A) 320 liters (B) 320 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a bathtub is 320 liters.\\n320 milliliters is too little. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19476\",\n    \"image\": \"19476\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Massachusetts?\\nContext: N/A\\nOptions: (A) Plymouth (B) Cambridge (C) Montpelier (D) Boston\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Boston is the capital of Massachusetts. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19477\",\n    \"image\": \"19477\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is the same in both pairs. (B) The magnitude of the magnetic force is greater in Pair 2. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19479\",\n    \"image\": \"19479\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is stronger in Pair 1. (C) The magnetic force is stronger in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19484\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Cassie investigate with an experiment?\\nContext: Cassie is making a fruit salad. She mixes some apple slices with orange and pineapple slices, and leaves the rest of the apple slices on the counter. A few minutes later, she notices that the apple slices on the counter have turned brown. She wonders what factors affect how quickly sliced fruit turns brown. So, she decides to design an experiment. She has the following supplies available:\\ntwo apples\\ntwo bananas\\norange juice\\na kitchen knife\\nOptions: (A) Do apple slices dipped in orange juice turn brown more slowly than plain apple slices? (B) Do apple slices turn brown more quickly if they are dipped in sugar or in orange juice? (C) Do slices of pear turn brown more quickly than slices of banana?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19493\",\n    \"image\": \"19493\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The United States has a federal system. Based on these definitions, which of these statements would most likely be made by a person who lives under a federal system?\\nContext: Think about the name of the United States of America. As the name shows, the country has both a united national government and a collection of state governments. In the following questions, you will learn about the relationship between the national government and state governments. You will also learn about how state and local governments work.\\nMany countries have both a national government and state governments. However, these countries divide power differently between the national and state governments. The table below describes three different systems for dividing power. Look at the table. Then answer the question below.\\nOptions: (A) I only pay attention to state politics since the national government has almost no power. (B) My national government officials decide most issues that come up. (C) Both my state and national government officials have power over important issues.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19494\",\n    \"image\": \"19494\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Virginia (B) Massachusetts (C) Rhode Island (D) Maryland\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Rhode Island. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19496\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal that does not have a backbone.\\nContext: Hint: Insects, spiders, and worms do not have backbones.\\nOptions: (A) comet moth (B) tokay gecko\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some animals have a backbone. The backbone is made of many bones in an animal's back. An animal's backbone helps connect the different parts of its body. In the drawings below, each animal's backbone is colored orange.\\nOther animals do not have a backbone. In fact, these animals don't have any bones! Some animals without backbones have a hard outer cover. Other animals have a soft body. A comet moth is an insect. Like other insects, a comet moth does not have a backbone. It has a hard outer cover.\\nA tokay gecko is a reptile. Like other reptiles, a tokay gecko has a backbone. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19500\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nJoe must not have enjoyed the casserole, or he would have asked for a second serving.\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) false dichotomy: an argument that presents only two choices when more options exist (C) guilt by association: a negative association intended to discredit someone or something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that if Joe enjoyed the casserole, then he would have eaten more. However, Joe could have enjoyed the casserole without wanting a second serving. This illustrates a type of logical fallacy known as a false dichotomy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19501\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nNorma never lies. She told me herself, so it must be true.\\nContext: N/A\\nOptions: (A) hasty generalization: a very broad claim based on very little evidence (B) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Norma is telling the truth because she says she never lies. However, the \\\"evidence\\\" is just a restatement of the claim itself. This illustrates a type of logical fallacy known as circular reasoning. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19508\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nMarshall has five fingers on each hand.\\nContext: Hint: Marshall was born with five fingers on each hand.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Most humans are born with five fingers on each hand. So, having five fingers is an inherited trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19515\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the mammal traits listed above.\\nContext: Mammals are a group of animals with similar traits. The following traits can be used to identify mammals:\\nThey feed their offspring milk.\\nThey have fur or hair. Observe the animals and read the descriptions.\\nOptions: (A) Harvest mice use their tails and feet to climb on plants and rocks. These mice have fur and feed their offspring milk. (B) Minnows live underwater and have fins to help them swim. They have scaly skin and lay eggs with no shells. Many fishermen use minnows as bait to catch other fish.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nMammals have the following traits:\\nThey feed their offspring milk.\\nThey have fur or hair.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA minnow has the following traits:\\nIt has fins, not limbs.\\nIt makes eggs with no shells.\\nA minnow does not have all of the traits of a mammal. A minnow is a fish.\\nA harvest mouse has the following traits:\\nIt feeds its offspring milk.\\nIt has fur.\\nA harvest mouse has the traits of a mammal. A harvest mouse is a mammal. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19520\",\n    \"image\": \"19520\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Leon's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nLeon mixed bacteria into a nutrient-rich liquid where the bacteria could grow. He poured four ounces of the mixture into each of ten glass flasks. In five of the ten flasks, he also added one teaspoon of cinnamon. He allowed the bacteria in the flasks to grow overnight in a 37\\u00b0C room. Then, Leon used a microscope to count the number of bacteria in a small sample from each flask. He compared the amount of bacteria in the liquid with cinnamon to the amount of bacteria in the liquid without cinnamon.\\nFigure: flasks of liquid for growing bacteria.\\nOptions: (A) Do more bacteria grow in liquid with cinnamon than in liquid without cinnamon? (B) Does temperature affect how much bacteria can grow in liquid?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19524\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Anita acquired this trait?\\nContext: Read the description of a trait.\\nAnita knows how to knit sweaters.\\nOptions: (A) Anita knits sweaters using cotton, wool, and other types of yarn. (B) Anita learned how to knit in an after school program.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19525\",\n    \"image\": \"19525\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's neck is also adapted for hunting prey while keeping the rest of its body still?\\nContext: Great egrets live near wetlands and lakes. They eat mostly fish.\\nThe 's neck helps it grab fish while keeping the rest of its body still. If the egret had to move its body, it might scare the fish away.\\nFigure: great egret.\\nOptions: (A) frigatebird (B) great blue heron\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's neck is one example of an adaptation. Animals' necks can be adapted in different ways. For example, a large frilled neck might help an animal appear dangerous to its predators. A long neck might help an animal get food from tall trees. Look at the picture of the great egret.\\nThe great egret has a long neck. Its neck is adapted for hunting prey while keeping the rest of its body still. This allows the great egret to grab the prey without scaring it away.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe great blue heron has a long neck. Its neck is adapted for hunting prey while keeping the rest of its body still.\\nThe frigatebird has a short neck. Its neck is not adapted for hunting prey while keeping the rest of its body still. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19531\",\n    \"image\": \"19531\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement best describes the average monthly precipitation in Atlanta?\\nContext: Use the graph to answer the question below.\\nOptions: (A) February is wetter than March. (B) Atlanta has a rainy season and a dry season. (C) Precipitation does not change much from month to month in Atlanta.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average precipitation for each month. The average precipitation can be used to describe the climate of a location.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Atlanta, look at the graph.\\nChoice \\\"Feb\\\" is incorrect.\\nChoice \\\"Mar\\\" is incorrect.\\nChoice \\\"Atlanta has a rainy season and a dry season.\\\" is incorrect.\\nThe average monthly precipitation does not change much throughout the year. Every month has rain, and there is no dry season.\\nChoice \\\"February is wetter than March.\\\" is incorrect.\\nWetter months have a higher average precipitation than drier months. February has a slightly lower average monthly precipitation than March. So, February is not wetter than March.\\nChoice \\\"Precipitation does not change much from month to month in Atlanta.\\\" is incorrect.\\nThe average monthly precipitation changes only slightly throughout the year. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19532\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Biscotti's phenotype for the fur texture trait?\\nContext: In a group of Syrian hamsters, some individuals have straight fur and others have wavy fur. In this group, the gene for the fur texture trait has two alleles. The allele for straight fur (F) is dominant over the allele for wavy fur (f).\\nBiscotti is a Syrian hamster from this group. Biscotti has the homozygous genotype ff for the fur texture gene.\\nOptions: (A) wavy fur (B) straight fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Biscotti's genotype for the fur texture gene is ff. Biscotti's genotype of ff has only f alleles. The f allele is for wavy fur. So, Biscotti's phenotype for the fur texture trait must be wavy fur.\\nTo check this answer, consider whether Biscotti's alleles are dominant or recessive. The allele for straight fur (F) is dominant over the allele for wavy fur (f). This means F is a dominant allele, and f is a recessive allele.\\nBiscotti's genotype of ff has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Biscotti's phenotype for the fur texture trait must be wavy fur. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19533\",\n    \"image\": \"19533\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Austen's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nAusten divided 40 evenly among eight paper bags and sealed the bags. He poked 20 small holes in four of the bags and left the other four without holes. He kept the bags at room temperature for three days. Then, Austen opened the bags and counted the number of brown spots on each banana. He compared the average number of brown spots on bananas from bags with holes to the average number of brown spots on bananas from bags without holes.\\nFigure: unripe bananas.\\nOptions: (A) Do bananas develop more brown spots if they are kept in bags with holes compared to bags without holes? (B) Do bananas develop more brown spots when they are kept at room temperature compared to in a cold refrigerator?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19535\",\n    \"image\": \"19535\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which i in column 4?\\nContext: N/A\\nOptions: (A) the theater (B) the fire department (C) the pond (D) the shopping mall\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A grid is made up of lines of squares. They are organized in rows and columns. A grid can help you use a map.\\nA row is a line of squares that goes from side to side. Rows are marked with letters.\\nA column is a line of squares that goes up and down. Columns are marked with numbers. The shopping mall is in column 4. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19538\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of an article?\\nContext: N/A\\nOptions: (A) \\\"To Help a Shy Child, Listen\\\" (B) To Help a Shy Child, Listen\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, or article should be in quotation marks.\\n\\\"You Are My Sunshine\\\" An article should be in quotation marks.\\nThe correct title is \\\"To Help a Shy Child, Listen.\\\" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19545\",\n    \"image\": \"19545\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Kiribati (B) the Federated States of Micronesia (C) Samoa (D) Palau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Palau. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19546\",\n    \"image\": \"19546\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Ohio?\\nContext: N/A\\nOptions: (A) Charleston (B) Columbus (C) Lincoln (D) Fargo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Columbus is the capital of Ohio. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19548\",\n    \"image\": \"19548\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the amphibian below.\\nContext: Amphibians have moist skin and begin their lives in water. An American bullfrog is an example of an amphibian.\\nOptions: (A) white stork (B) red-eyed tree frog\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A red-eyed tree frog is an amphibian. It has moist skin and begins its life in water.\\nA white stork is a bird. It has feathers, two wings, and a beak. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19549\",\n    \"image\": \"19549\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Jaylen's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nJaylen was . At the plant, an expensive filter was used to remove disease-causing bacteria from the water. But over time, the filter would become clogged with bacteria. If the filter became clogged, the water would not move through quickly enough. Jaylen had to decide when the filter was too clogged and needed to be replaced. So, during his inspection, Jaylen checked the filter by measuring how quickly water moved through it.\\nFigure: an engineer at a water treatment plant.\\nOptions: (A) whether the filter was clogged (B) whether an inexpensive filter would become clogged more often (C) the amount of bacteria in the water before it was filtered\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19550\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the most thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 150-gram baked potato at a temperature of 43\\u00b0C (B) a 150-gram baked potato at a temperature of 40\\u00b0C (C) a 150-gram baked potato at a temperature of 26\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. All three baked potatoes have the same mass but different temperatures. Since the 43\\u00b0C potato is the hottest, it has the most thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19558\",\n    \"image\": \"19558\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) transparent (B) soft (C) bumpy\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nYou can see clearly through a transparent object. None of the objects are transparent.\\nA soft object changes shape when pressed or squeezed. None of the objects are soft.\\nA bumpy object is covered in lumps and bumps. All three objects are bumpy.\\nThe property that all three objects have in common is bumpy. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19592\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) Hop on pop (B) Hop on Pop\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The word on is not important, so it should not be capitalized.\\nThe correct title is Hop on Pop. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19595\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nI must have eaten too much of Bernard's homemade chili, because now I'm so full I could explode!\\nContext: N/A\\nOptions: (A) hyperbole (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses hyperbole, an obvious exaggeration that is not meant to be taken literally.\\nSo full I could explode is an exaggeration, since it is clear that the speaker is not actually in danger of exploding. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19601\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nperfect - polo\\nContext: N/A\\nOptions: (A) platform (B) press\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince platform is between the guide words perfect - polo, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19602\",\n    \"image\": \"19602\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 2. (B) The magnetic force is stronger in Pair 1. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19618\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nshaking up salad dressing\\nbreaking a piece of glass\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are caused by cooling. (C) Both are only physical changes. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nShaking up salad dressing is a physical change. The different parts mix together, but they are still made of the same type of matter.\\nBreaking a piece of glass is a physical change. The glass gets broken into pieces. But each piece is still made of the same type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19620\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nWinston can ride a bicycle.\\nContext: N/A\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to ride a bicycle. Instead, many people learn how to ride. So, riding a bicycle is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19625\",\n    \"image\": \"19625\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) fragile (B) transparent (C) sweet\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA fragile object will break into pieces if you drop it. All four objects are fragile.\\nYou can see clearly through a transparent object. The fish bowl and the glass flask are transparent, but the ceramic tea cup is not.\\nSugar has a sweet taste. The ceramic tea cup and the icicle are not sweet.\\nThe property that all four objects have in common is fragile. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19629\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a poem?\\nContext: N/A\\nOptions: (A) \\\"Mother to Son\\\" (B) \\\"mother to son\\\"\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The word to is not important, so it should not be capitalized.\\nThe correct title is \\\"Mother to Son.\\\" The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19632\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a simple sentence?\\nContext: N/A\\nOptions: (A) Unless Judith can leave work early, she'll miss the beginning of the play. (B) The thermometer and the cough syrup are in the medicine cabinet next to the cotton balls.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The first sentence is the simple sentence. It is a single independent clause.\\nThe thermometer and the cough syrup are in the medicine cabinet next to the cotton balls. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19634\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nAnthony has five toes on each foot.\\nContext: Hint: Anthony was born with five toes on each foot.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Most humans are born with five toes on each foot. So, having five toes is an inherited trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19638\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word nimble on a dictionary page with the following guide words?\\nnation - next\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince nimble is not between the guide words nation - next, it would not be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19641\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a sentence fragment?\\nContext: N/A\\nOptions: (A) Aunt Clare's heavy baggage. (B) Preston and his friends completed the puzzle in less than an hour.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA sentence fragment is a group of words that does not express a complete thought. It is usually missing a subject or a verb.\\nKnows the answer.\\nThis is a sentence fragment. It is missing a subject.\\nWho knows the answer? She knows the answer.\\nThe bright red car.\\nThis is a sentence fragment. It is missing a verb.\\nWhat did the bright red car do? The bright red car stopped.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. Aunt Clare's heavy baggage is a sentence fragment. It is missing a verb. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19642\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nAndrew described the situation he was facing with his boss as a catch-22.\\nContext: N/A\\nOptions: (A) a song (B) literature\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion catch-22 is literature.\\nJoseph Heller coined the term \\\"catch-22\\\" in his 1961 novel of the same name. In the novel, if an army pilot wants to avoid dangerous missions, he must be deemed mentally unfit; however, his desire to stay safe proves his sanity, so he can never be excused from a mission. Heller called this sort of predicament or dilemma a catch-22.\\nThe allusion catch-22 means a no-win situation. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19658\",\n    \"image\": \"19658\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How do jumping spiders catch their food?\\nContext: Read the first part of the passage about jumping spiders.\\nJumping spiders are fast. They can also jump far.\\nMost spiders make webs to catch bugs. Then, they eat the bugs. But jumping spiders catch their food in another way. They jump onto flies and other bugs.\\nOptions: (A) They catch bugs in a web. (B) They jump onto bugs. (C) They run fast to get bugs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The passage says that jumping spiders catch their food in a different way. They jump onto flies and other bugs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19659\",\n    \"image\": \"19659\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Manny's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nManny was an aerospace engineer who was developing a parachute for a spacecraft that would land on Mars. He needed to add a vent at the center of the parachute so the spacecraft would land smoothly. However, the spacecraft would have to travel at a high speed before landing. If the vent was too big or too small, the parachute might swing wildly at this speed. The movement could damage the spacecraft.\\nSo, to help decide how big the vent should be, Manny put a parachute with a 1 m vent in a wind tunnel. The wind tunnel made it seem like the parachute was moving at 200 km per hour. He observed the parachute to see how much it swung.\\nFigure: a spacecraft's parachute in a wind tunnel.\\nOptions: (A) if the spacecraft was damaged when using a parachute with a 1 m vent going 200 km per hour (B) how steady a parachute with a 1 m vent was at 200 km per hour (C) whether a parachute with a 1 m vent would swing too much at 400 km per hour\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19665\",\n    \"image\": \"19665\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Illinois (B) Ohio (C) Arkansas (D) South Carolina\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. Arkansas is farthest west. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19676\",\n    \"image\": \"19676\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Buffalo Gap National Grassland ecosystem?\\nContext: Figure: Buffalo Gap National Grassland.\\nBuffalo Gap National Grassland is a prairie grassland ecosystem in southwestern South Dakota. It is home to the endangered black-footed ferret. This is the only kind of ferret that is native to North America.\\nOptions: (A) It has heavy rain. (B) It has a medium amount of rain. (C) It has cold winters and cool summers.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A prairie grassland is a type of ecosystem. Prairie grasslands have the following features: hot summers and cool winters, a medium amount of rain, and soil that is rich in nutrients. So, the following statement describes the Buffalo Gap National Grassland ecosystem: hot summers and cool winters, a medium amount of rain, and soil that is rich in nutrients. It has a medium amount of rain. The following statements do not describe Buffalo Gap National Grassland: hot summers and cool winters, a medium amount of rain, and soil that is rich in nutrients. It has cold winters and cool summers. It has heavy rain. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19678\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is smoother?\\nContext: N/A\\nOptions: (A) rock wall (B) glass marbles\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Smooth is a property. A smooth material is not rough or bumpy.\\nLook at each picture, one at a time. Imagine touching the material shown in each picture.\\nOf the choices, the glass marbles are smoother. Glass marbles do not feel rough or bumpy when you touch them. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19681\",\n    \"image\": \"19681\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) acetaldehyde (B) chloroform (C) oxygen\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19691\",\n    \"image\": \"19691\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nCarbon tetrachloride is ().\\nContext: The model below represents a molecule of carbon tetrachloride. Carbon tetrachloride was once used in fire extinguishers. It is no longer used because it is poisonous.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. Use the model to determine whether carbon tetrachloride is an elementary substance or a compound.\\nStep 1: Interpret the model.\\n.\\nUse the legend to determine the chemical element represented by each color. The colors and atomic symbols from the legend are shown in the table below. The table also includes the names of the chemical elements represented in the model.\\nYou can see from the model that a molecule of carbon tetrachloride is composed of one carbon atom and four chlorine atoms bonded together.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that carbon tetrachloride is composed of two chemical elements: carbon and chlorine. Since carbon tetrachloride is composed of multiple chemical elements bonded together, carbon tetrachloride is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19695\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nJamie's Falstaffian nature makes him stand out at a party.\\nContext: N/A\\nOptions: (A) Shakespeare (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\nThe protean nature of the disease makes it difficult to diagnose.\\nThe word protean is an allusion to the sea god Proteus in Greek mythology. Because the sea is constantly changing, to describe something as protean suggests that it is variable or in flux. The source of the allusion Falstaffian is Shakespeare.\\nSir John Falstaff, a comical character in several of William Shakespeare's plays, is known for his cheerful sociability and sometimes off-color humor.\\nThe allusion Falstaffian means characterized by joviality and enjoyment of food and drink. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19697\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) The greatest benefit of Parkour training is that it teaches people to see obstacles and challenges as opportunities. (B) Parkour is a physical discipline that involves getting from one point to another while navigating obstacles along the way.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved by research or observation.\\nNapoleon Bonaparte was shorter than King Louis XVI.\\nThe statement above is a fact. The statement can be proved by researching the height of each man and comparing them.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved.\\nNapoleon Bonaparte was a better leader than King Louis XVI.\\nThe statement above is an opinion. People can have different ideas about what makes someone a \\\"better\\\" leader, so the statement cannot be proved. The second sentence states a fact.\\nParkour is a physical discipline that involves getting from one point to another while navigating obstacles along the way.\\nIt can be proved by reading an article about Parkour.\\nThe first sentence states an opinion.\\nThe greatest benefit of Parkour training is that it teaches people to see obstacles and challenges as opportunities.\\nThe greatest benefit shows what a person believes, thinks, or feels. Another person might have a different opinion about whether this is Parkour's most important or greatest benefit. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19720\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Before Jake decided on a double major in history and Russian literature, he talked to them about the requirements for each major. (B) Before Jake decided on a double major in history and Russian literature, he talked to academic advisers about the requirements for each major.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The first answer choice contains a vague pronoun reference. The pronoun them is used without its antecedent.\\nThe second answer choice shows a possible correction for the vague pronoun reference. Them has been replaced with academic advisers.\\nBefore Jake decided on a double major in history and Russian literature, he talked to academic advisers about the requirements for each major. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19723\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the word. Does it have a closed syllable or an open syllable?\\nso\\nContext: N/A\\nOptions: (A) open (B) closed\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words are made up of syllables. Two kinds of syllables are closed and open.\\nA closed syllable has one vowel and ends with a consonant. It usually has a short vowel sound.\\ndesk: short e\\nkit / ten: short i / short e\\nAn open syllable ends with one vowel. It usually has a long vowel sound.\\ngo: long o\\nhe / ro: long e / long o\\nSome open syllables end with y. The y makes a long e sound or a long i sound.\\nsky: long i\\nba / by: long a / long e The word so ends with a vowel and has a long vowel sound. So, it has an open syllable. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19725\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nPropane is ().\\nContext: Propane is used as fuel for heaters, engines, and outdoor grills. The chemical formula for propane is C3H8.\\nOptions: (A) an elementary substance (B) a compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. You can tell whether propane is an elementary substance or a compound by counting the number of symbols in its chemical formula. A symbol contains either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for propane is C3 H8. This formula contains two symbols: C for carbon and H for hydrogen. So, the formula tells you that propane is made of two chemical elements bonded together.\\nSubstances made of two or more chemical elements bonded together are compounds. So, propane is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19726\",\n    \"image\": \"19726\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) fragile (B) bouncy (C) hard\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA hard object does not change shape when pressed or squeezed. All three objects are hard.\\nA fragile object will break into pieces if you drop it. The diamond is not fragile.\\nA bouncy object will bounce back from the floor if you drop it. The fossil is not bouncy.\\nThe property that all three objects have in common is hard. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19730\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the verbal irony in this text suggest?\\nAccording to Mr. Burton's kids, his snoring is as quiet as a jackhammer.\\nContext: N/A\\nOptions: (A) The snoring is loud. (B) The snoring occurs in bursts.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses verbal irony, which involves saying one thing but implying something very different.\\nAs quiet as a jackhammer suggests that the snoring is loud. A jackhammer is not quiet, and neither is Mr. Burton's snoring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19731\",\n    \"image\": \"19731\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) Africa (C) Asia (D) South America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Africa. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19736\",\n    \"image\": \"19736\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is quartz a mineral or a rock?\\nContext: Quartz has the following properties:\\nsolid\\nnot made by living things\\nnaturally occurring\\nwhite streak\\nfixed crystal structure\\nmade of a pure substance called silica\\nOptions: (A) mineral (B) rock\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Quartz has all the properties of a mineral. So, quartz is a mineral. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19756\",\n    \"image\": \"19756\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\n\\nHint: Magnets that attract pull together. Magnets that repel push apart.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles, called north and south.\\nHere are some examples of magnets. The north pole of each magnet is marked N, and the south pole is marked S.\\nIf different poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n Will these magnets attract or repel? To find out, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Poles that are the same repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19759\",\n    \"image\": \"19759\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these continents does the prime meridian intersect?\\nContext: N/A\\nOptions: (A) Antarctica (B) North America (C) South America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Lines of latitude and lines of longitude are imaginary lines drawn on some globes and maps. They can help you find places on globes and maps.\\nLines of latitude show how far north or south a place is. We use units called degrees to describe how far a place is from the equator. The equator is the line located at 0\\u00b0 latitude. We start counting degrees from there.\\nLines north of the equator are labeled N for north. Lines south of the equator are labeled S for south. Lines of latitude are also called parallels because each line is parallel to the equator.\\nLines of longitude are also called meridians. They show how far east or west a place is. We use degrees to help describe how far a place is from the prime meridian. The prime meridian is the line located at 0\\u00b0 longitude. Lines west of the prime meridian are labeled W. Lines east of the prime meridian are labeled E. Meridians meet at the north and south poles.\\nThe equator goes all the way around the earth, but the prime meridian is different. It only goes from the North Pole to the South Pole on one side of the earth. On the opposite side of the globe is another special meridian. It is labeled both 180\\u00b0E and 180\\u00b0W.\\nTogether, lines of latitude and lines of longitude form a grid. You can use this grid to find the exact location of a place. The prime meridian is the line at 0\\u00b0 longitude. It intersects Antarctica. It does not intersect South America or North America. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19764\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Clarence inherited this trait?\\nContext: Read the description of a trait.\\nClarence has wavy hair.\\nOptions: (A) Clarence's biological parents have wavy hair. (B) Clarence uses a headband to keep his wavy hair out of his face. (C) Clarence's biological mother has long hair. Clarence also has long hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19778\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the solid.\\nContext: N/A\\nOptions: (A) hair clip (B) water in a fishbowl (C) air inside a raft (D) helium\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. The water in a fishbowl is a liquid. A liquid takes the shape of any container it is in. If you pour water from a fishbowl into a different container, the water will take the shape of that container. But the water will still take up the same amount of space.\\nA hair clip is a solid. A solid has a size and shape of its own. You can use a hair clip to keep your hair out of your face because the hair clip keeps its shape.\\nThe air inside a raft is a gas. A gas expands to fill a space. The air in a raft expands to fill all the space inside the raft. If air leaks out, it will expand into the space around the raft.\\nHelium is a gas. A gas expands to fill a space. Helium is lighter than air. So, if you fill a balloon with helium, the balloon will rise. If helium leaks out of the balloon, the helium will expand into the space around the balloon. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19782\",\n    \"image\": \"19782\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is weaker in Pair 1. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is weaker in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is weaker when the magnets are farther apart. Distance affects the strength of the magnetic force. When magnets are farther apart, the magnetic force between them is weaker.\\nThe magnets in Pair 2 are farther apart than the magnets in Pair 1. So, the magnetic force is weaker in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19787\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Mary investigate with an experiment?\\nContext: Mary is outside with her friend on a sunny day. Mary is wearing a light-colored shirt, and she notices that she feels colder than her friend, who is wearing a dark shirt. She wonders what factors affect how fabric warms an object. So, she decides to design an experiment. She has the following supplies available:\\na black cotton shirt\\na white cotton shirt\\ntwo identical empty glass jars\\ntwo thermometers\\nOptions: (A) When placed in the sun, does a glass jar wrapped in cotton heat up more than a glass jar wrapped in wool? (B) When wrapped in a cotton shirt and placed in the sun, does a large jar or a small jar heat up more? (C) When placed in the sun, does a glass jar wrapped in a black cotton shirt heat up more than a glass jar wrapped in a white cotton shirt?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19788\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a mineral.\\nContext: N/A\\nOptions: (A) Chrysotile is a solid. It is formed in nature. (B) Fluorite is a solid. It is formed in nature. (C) Cheese is not a pure substance. It is made by humans.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Compare the properties of each substance to the properties of minerals. Select the substance whose properties do not match those of minerals.\\nCheese is not a pure substance. But all minerals are pure substances.\\nCheese is made by humans. But minerals are not made by living things.\\nSo, cheese is not a mineral.\\nFluorite is a mineral.\\nChrysotile is a mineral. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19789\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Alvin's phenotype for the eye color trait?\\nContext: In a group of guinea pigs, some individuals have brown eyes and others have red eyes. In this group, the gene for the eye color trait has two alleles. The allele E is for brown eyes, and the allele e is for red eyes.\\nAlvin, a guinea pig from this group, has brown eyes. Alvin has two alleles for brown eyes.\\nOptions: (A) brown eyes (B) EE\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Alvin's observable version of the eye color trait is brown eyes. So, Alvin's phenotype for the eye color trait is brown eyes. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19791\",\n    \"image\": \"19791\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Virginia (B) Florida (C) South Carolina (D) Maryland\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Virginia.\\nThe Virginia Colony included land that would later become part of the state of West Virginia. West Virginia was never its own colony. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19793\",\n    \"image\": \"19793\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Akira's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nWind turbines use wind power to produce electricity. Akira was a materials engineer who designed wind turbines. She wanted to design a new turbine that would produce 10% more electricity than older wind turbines. She thought that a turbine made from lightweight material would turn more easily and produce more electricity. So, Akira created a computer model of a turbine made from lightweight material. Then she used the model to calculate how much more electricity the new turbine could produce compared to the older turbines.\\nFigure: studying a wind turbine computer model.\\nOptions: (A) how much the new turbine would weigh (B) whether the new turbine could produce 10% more electricity (C) if the new turbine could turn easily\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19798\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the liquid.\\nContext: N/A\\nOptions: (A) chocolate syrup (B) ballet shoes (C) tortoise shell (D) hair clip\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. A hair clip is a solid. A solid has a size and shape of its own. You can use a hair clip to keep your hair out of your face because the hair clip keeps its shape.\\nA ballet shoe is a solid. A solid has a size and shape of its own. When a dancer wears a ballet shoe, it may bend a little. But the ballet shoe still has a size and shape of its own.\\nChocolate syrup is a liquid. A liquid takes the shape of any container it is in. If you pour chocolate syrup into a container, the chocolate syrup will take the shape of that container. But the chocolate syrup will still take up the same amount of space.\\nA tortoise shell is a solid. A solid has a size and shape of its own. A tortoise shell is made of a solid called keratin, just like your fingernails! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19807\",\n    \"image\": \"19807\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's mouth is also adapted to eat plant matter?\\nContext: Cows are herbivores, or plant eaters. They eat grass and leaves. The 's mouth is adapted to grind up and eat plant matter.\\nFigure: cow.\\nOptions: (A) zebra (B) silky anteater\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the cow.\\nThe cow has long jaws and flat teeth. Its mouth is adapted to eat plant matter. The long jaws can help the cow reach leaves and grass. The flat teeth can help it cut and grind up the food into soft pieces it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe zebra has long jaws and flat teeth. Its mouth is adapted to eat plant matter.\\nThe silky anteater has a long tube-shaped mouth and no teeth. Its mouth is not adapted to eat plant matter. The silky anteater uses its mouth to get insects out of holes and burrows. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19818\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbaking an apple pie\\nmaking jam\\nContext: N/A\\nOptions: (A) Both are only physical changes. (B) Both are caused by cooling. (C) Both are caused by heating.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBaking an apple pie is a chemical change. The type of matter in the pie changes when it is baked. The crust turns brown, and the apples become soft.\\nMaking jam is a chemical change. It involves mixing fruit, sugar, and a substance called pectin.\\nWhen these ingredients are mixed and cooked, the chemical bonds in their molecules are broken. The atoms then link together to form different molecules that make up the jam.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBoth changes are caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19819\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal that has a backbone.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians all have backbones.\\nOptions: (A) weaver ant (B) common toad\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some animals have a backbone. The backbone is made of many bones in an animal's back. An animal's backbone helps connect the different parts of its body. In the drawings below, each animal's backbone is colored orange.\\nOther animals do not have a backbone. In fact, these animals don't have any bones! Some animals without backbones have a hard outer cover. Other animals have a soft body. A common toad is an amphibian. Like other amphibians, a common toad has a backbone.\\nA weaver ant is an insect. Like other insects, a weaver ant does not have a backbone. It has a hard outer cover. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19824\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a simple sentence?\\nContext: N/A\\nOptions: (A) Larry picked raspberries in the field until his fingertips were stained red. (B) Henry Bacon's design of the Lincoln Memorial in Washington, D.C., won him a gold medal from the American Institute of Architects.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The first sentence is the simple sentence. It is a single independent clause.\\nHenry Bacon's design of the Lincoln Memorial in Washington, D.C., won him a gold medal from the American Institute of Architects. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19830\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the idiom in this text suggest?\\nIn such an unfamiliar environment, Brody was a fish out of water.\\nContext: N/A\\nOptions: (A) Brody felt out of place. (B) Brody didn't have any friends.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake. The text uses an idiom, an expression that cannot be understood literally.\\nThe idiom a fish out of water suggests that Brody felt out of place. A fish out of water is someone out of his or her usual, comfortable environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19850\",\n    \"image\": \"19850\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the south pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19860\",\n    \"image\": \"19860\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Scientists in a laboratory were working with insulin, a protein often used to treat diabetes. They left two identical vials of insulin in different places. This table shows how the temperature of each vial changed over 15minutes.\\nOptions: (A) each vial . . . the surroundings (B) the surroundings . . . each vial\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each vial increased, which means that the thermal energy of each vial increased. So, thermal energy was transferred from the surroundings to each vial. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19867\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Matt acquired this trait?\\nContext: Read the description of a trait.\\nMatt knows a lot about biology.\\nOptions: (A) Matt is most interested in human biology. (B) Matt learned biology by reading, observing, and experimenting.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19872\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the allusion in this text suggest?\\nWhen Lauren claimed she had loaded the dishwasher before turning on Dancing with the Stars, her mother replied, \\\"Your nose is growing!\\\"\\nContext: N/A\\nOptions: (A) Lauren was lying. (B) Lauren was goofy.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked. The text uses an allusion, a brief reference to someone or something well known.\\nThe allusion nose is growing suggests that Lauren was lying. In the story of Pinocchio, when Pinocchio lies, his nose grows longer. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19877\",\n    \"image\": \"19877\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's common name?\\nContext: This organism is a marine file snake. It is also called Acrochordus granulatus.\\nOptions: (A) marine file snake (B) Acrochordus granulatus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Acrochordus granulatus is written in italics. The first word is capitalized, and the second word is not. So, it is the scientific name.\\nAcrochordus granulatus is the organism's scientific name. So, you know that marine file snake is the common name. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19879\",\n    \"image\": \"19879\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) repel (B) attract\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe south pole of one magnet is closest to the south pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19882\",\n    \"image\": \"19882\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on other magnets without touching them. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes are called magnetic forces.\\nMagnetic forces are strongest at the magnets' poles, or ends. Every magnet has two poles: a north pole (N) and a south pole (S).\\nHere are some examples of magnets. Their poles are shown in different colors and labeled.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel. To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the north pole of the other magnet. Like poles repel. So, these magnets will repel each other. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19883\",\n    \"image\": \"19883\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following best describes a community in the Southern Ocean?\\nContext: Read the passage. Then answer the question below.\\n\\nAntarctic krill is a species of swimming crustacean, similar to shrimp, that is about 5 centimeters long. Krill eat the algae that grow on the underside of sea ice in the Southern Ocean around Antarctica.\\nPods of humpback whales swim to the Southern Ocean every summer. Humpback whales and other animals, such as emperor penguins and leopard seals, eat Antarctic krill. In fact, Antarctic krill are eaten by almost every animal in Antarctica!\\nFigure: humpback whales in the Southern Ocean.\\nOptions: (A) the algae, the sea ice, and the seawater (B) the Antarctic krill, the emperor penguins, and the leopard seals (C) a pod of humpback whales\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In an environment, organisms interact with each other and with their nonliving surroundings. To help describe these interactions, ecologists use specific terms for different types of groups.\\nA single organism is an individual. Individuals of the same species that live in the same place are part of a population.\\nMultiple populations of different species that live in the same place are part of a community.\\nTogether, communities of living organisms and the nonliving parts of their environment make up an ecosystem. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19886\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Austin inherited this trait?\\nContext: Read the description of a trait.\\nAustin has hazel eyes.\\nOptions: (A) Austin wears glasses and so do his sisters. (B) Austin's biological father wears contacts in his hazel eyes. (C) Austin's friend also has hazel eyes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19888\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word does not rhyme?\\nContext: N/A\\nOptions: (A) hurl (B) curl (C) gull\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rhyming words are words that end with the same sound.\\nThe words tip and slip rhyme. They both end with the same sound.\\nThe words meet and treat also rhyme. They both end with the same sound, even though the sound has two different spellings.\\nThe words tip and meet don't rhyme. They end with different sounds. The words curl and hurl rhyme. They both end with the url sound.\\nThe word gull does not rhyme. It ends with a different sound. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19889\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which kind of place usually has taller buildings?\\nContext: N/A\\nOptions: (A) an urban area (B) a suburban area\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People around the world live in three main kinds of places: urban areas, suburban areas, and rural areas.\\nAn urban area is a city. It has many people and businesses. The buildings are close to each other. The buildings are often tall and have many floors. Since there are so many people, traffic is usually bad. People will walk or take the bus, train, or subway to avoid traffic.\\nA suburban area, or suburb, is near a city. It is quieter and less crowded than an urban area. People usually live in houses with yards. Most people drive to get places.\\nA rural area is less crowded than both urban and suburban areas. Houses are much more spread out. People usually have to drive to get places. People in rural areas often live on farms or ranches.\\nSome places, like small towns, don't really fit into any of the types. A small town does not have as many people as an urban area, but it has more people than a rural area. It is not near a city, so it is not called a suburb. Since there are more people in urban areas, the buildings are usually taller. Tall buildings can hold more people. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19894\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) The cold, sunless winter months in Dry Valleys, Antarctica, are unbearable. (B) Dry Valleys, Antarctica, is the driest place on Earth, followed by Arica, Chile.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Statements of fact make claims that are based on research, observation, or experimentation. Facts can be proved with evidence.\\nNapoleon Bonaparte was shorter than King Louis XVI.\\nThis statement is a fact. The statement can be verified by researching and comparing the height of each man.\\nStatements of opinion make claims that are based on personal judgments or perspectives. Opinions can be supported by evidence, but they cannot be definitively proved.\\nNapoleon Bonaparte was a better leader than King Louis XVI.\\nThis statement is an opinion. People can have different ideas about what makes someone a \\\"better\\\" leader, so the statement cannot be proved. The first sentence states a fact. It can be verified by comparing places with the lowest annual rainfall.\\nDry Valleys, Antarctica, is the driest place on Earth, followed by Arica, Chile.\\nThe second sentence states an opinion. Unbearable indicates a personal judgment.\\nThe cold, sunless winter months in Dry Valleys, Antarctica, are unbearable. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19899\",\n    \"image\": \"19899\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) transparent (B) smooth (C) flexible\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA flexible object can be folded or bent without breaking easily. The pool toy is flexible, but the ice hockey rink is not.\\nA smooth object is not scratchy or rough. All four objects are smooth.\\nYou can see clearly through a transparent object. The bucket and the slide are not transparent.\\nThe property that all four objects have in common is smooth. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19903\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nMuch to our shock, Marshall chose to turn the other cheek when Sadie insulted him in a meeting.\\nContext: N/A\\nOptions: (A) U.S. history (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion turn the other cheek is the Bible.\\nIn the Bible, Jesus counsels his followers to resist retaliation. He says that if they are struck on the right cheek, they shouldn't lash out; instead, they should turn the other cheek toward their attacker.\\nThe allusion turn the other cheek means to respond without aggression. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19904\",\n    \"image\": \"19904\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which trait did Meiolania have? Select the trait you can observe on the fossil.\\nContext: This picture shows a fossil of an ancient animal called Meiolania. An adult Meiolania was about eight feet long.\\nOptions: (A) long, thin antennae (B) toes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The way an organism looks or acts is called a trait. Scientists use fossils to learn more about the traits of ancient organisms.\\nFossils can preserve the remains of body parts and activities. A fossil of a body part, such as a tail or a wing, can tell you what an organism looked like. A fossil of an organism's activities, such as a burrow or a footprint, can tell you about the organism's behavior.\\nHere are three examples of fossils and the traits that you can observe from them:\\nThis is a fossil of an animal. This fossil tells you that the animal had a spiral-shaped shell.\\nThis is a fossil of a plant. This fossil tells you that the plant had small leaves arranged in a branched pattern.\\nThis is a fossil of an animal's footprint. This fossil tells you that the animal could walk on land.\\nAn organism's fossil may not show all of the organism's traits. This is because most body parts are destroyed during fossil formation. When an organism's body turns into a fossil, only a few body parts are usually preserved. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19905\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nPotassium nitrate is ().\\nContext: Potassium nitrate can be combined with fuels to make powerful explosions. So, it is often used in gunpowder and fireworks. The chemical formula for potassium nitrate is KNO3.\\nOptions: (A) a compound (B) an elementary substance\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every substance around you is made of one or more chemical elements, or types of atoms. Substances that are made of only one chemical element are elementary substances. Substances that are made of two or more chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own symbol. For some elements, the symbol is one capital letter. For other elements, the symbol is one capital letter and one lowercase letter. For example, the symbol for the element fluorine is F, and the symbol for the element beryllium is Be.\\nThe symbol for each element in a substance is shown in the substance's chemical formula.\\nAn elementary substance is represented by a chemical formula that contains only one symbol.\\nThe symbol may be followed by a subscript. A subscript is text that is smaller and placed lower than the normal line of text. A subscript is included when the atoms in the elementary substance are bonded to form molecules. The subscript tells you the number of atoms in each molecule.\\nFor example, the chemical formula for the elementary substance oxygen is O2. The formula has a subscript of 2. This subscript tells you that there are two atoms in the molecule represented by this chemical formula.\\nThe chemical element represented by the symbol O is also called oxygen. So, the formula O2 tells you that each molecule of O2 contains two oxygen atoms.\\nA compound is represented by a chemical formula that contains multiple symbols.\\nFor example, in the compound beryllium fluoride, there is one beryllium atom for every two fluorine atoms. This combination is shown in the compound's chemical formula, BeF2. In the formula, the symbol Be represents one beryllium atom. The symbol F followed by the subscript 2 represents two fluorine atoms. You can tell whether potassium nitrate is an elementary substance or a compound by counting the number of symbols in its chemical formula. A symbol contains either one capital letter or a capital letter followed by one or two lowercase letters.\\nThe chemical formula for potassium nitrate is KNO3. This formula contains three symbols: K for potassium, N for nitrogen, and O for oxygen. So, the formula tells you that potassium nitrate is made of three chemical elements bonded together.\\nSubstances made of two or more chemical elements bonded together are compounds. So, potassium nitrate is a compound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19908\",\n    \"image\": \"19908\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Washington?\\nContext: N/A\\nOptions: (A) Spokane (B) Olympia (C) Springfield (D) Seattle\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Olympia is the capital of Washington. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19912\",\n    \"image\": \"19912\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Barry and Mona trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nBarry and Mona open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Barry wanted broccoli in his lunch and Mona was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Mona can trade her almonds for Barry's tomatoes. (B) Mona can trade her broccoli for Barry's oranges. (C) Barry can trade his tomatoes for Mona's sandwich. (D) Barry can trade his tomatoes for Mona's broccoli.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Barry wanted broccoli in his lunch and Mona was hoping for tomatoes. Look at the labeled part of the images.\\nBarry has tomatoes. Mona has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19913\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to Newton's third law, what other force must be happening?\\nContext: Isaac Newton was born in the 1600s and studied how objects move. He discovered three fundamental laws about forces and motion. According to Newton's third law, for every force, there is an equal and opposite force.\\nConsider the following force:\\nSebastian is pulling on a full suitcase.\\nOptions: (A) The suitcase is pushing on Sebastian. (B) The suitcase is pulling on Sebastian.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to Newton's third law, for every force, there is an equal and opposite force. This means that if one object is applying a force on a second object, the second object must also be applying a force on the first object, but in the opposite direction.\\nFor example, if your hand is pushing down on a table, the table is also pushing up on your hand. Or, if you are pulling forward on a rope, the rope is also pulling back on you. Sebastian is pulling on the suitcase. So, Newton's third law tells you that the suitcase is pulling on Sebastian. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19922\",\n    \"image\": \"19922\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Maine?\\nContext: N/A\\nOptions: (A) Portland (B) Hartford (C) Augusta (D) Athens\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Augusta is the capital of Maine. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19926\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Chandler decides to get the caramel swirl ice cream. Which result would be a cost?\\nContext: Chandler is deciding whether to get praline pecan ice cream or caramel swirl ice cream. He likes praline pecan more than caramel swirl. But a scoop of caramel swirl ice cream comes with a free waffle cone.\\nOptions: (A) Chandler will give up the chance to eat the praline pecan ice cream. He likes this flavor more than caramel swirl. (B) Chandler will get a free waffle cone. He will enjoy the waffle cone.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Chandler wants or needs:\\nChandler will give up the chance to eat the praline pecan ice cream. He likes this flavor more than caramel swirl. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19928\",\n    \"image\": \"19928\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Darnell's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nDarnell was . At the plant, an expensive filter was used to remove disease-causing bacteria from the water. But over time, the filter would become clogged with bacteria. If the filter became clogged, the water would not move through quickly enough. Darnell had to decide when the filter was too clogged and needed to be replaced. So, during his inspection, Darnell checked the filter by measuring how quickly water moved through it.\\nFigure: an engineer at a water treatment plant.\\nOptions: (A) whether an inexpensive filter would become clogged more often (B) whether the filter was clogged (C) the amount of bacteria in the water before it was filtered\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19934\",\n    \"image\": \"19934\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) North America (B) Australia (C) Antarctica (D) South America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Australia. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19937\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) The trek across New Zealand's South Island is exhausting, but the gorgeous views make it worth the effort. (B) At the auction, several paintings by famous artists were for sale, including one by Pablo Picasso.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the compound sentence. It is made up of two independent clauses joined by the coordinating conjunction but.\\nThe trek across New Zealand's South Island is exhausting, but the gorgeous views make it worth the effort. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19948\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word won on a dictionary page with the following guide words?\\nwhite - win\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince won is not between the guide words white - win, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19952\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nYesterday's tennis match was a classic David and Goliath story, with Michael playing against his former team captain, Erik.\\nContext: N/A\\nOptions: (A) a poem (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion David and Goliath is the Bible.\\nIn the Bible, a young man named David slays Goliath, a giant and champion warrior, using nothing more than a sling and a stone.\\nThe allusion David and Goliath means involving unequal rivals. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19955\",\n    \"image\": \"19955\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Kiribati (B) Nauru (C) the Federated States of Micronesia (D) the Marshall Islands\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is the Marshall Islands.\\nDoes the Marshall Islands have any territorial disputes?\\nThe Marshall Islands claims to own Wake Island, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nThe United States claimed Wake Island in 1899 and has controlled it since then. But the Marshall Islands considers the island part of its territory. It says that its people have traveled to the island to gather food and resources for many years. Today, the island is mainly used by the U.S. Air Force. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19963\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\n\\\"Frank's personality is very Jekyll and Hyde,\\\" Kristen told her brother.\\nContext: N/A\\nOptions: (A) literature (B) a song\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Jekyll and Hyde is literature.\\nRobert Louis Stevenson's popular Victorian novella Dr. Jekyll and Mr. Hyde tells the story of a man with two distinct personalities. Known to the world as a kind and highly respected doctor, at night he transforms into a monstrous person.\\nThe allusion Jekyll and Hyde means kind then cruel. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19981\",\n    \"image\": \"19981\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Montana?\\nContext: N/A\\nOptions: (A) Helena (B) Carson City (C) Nampa (D) Boise\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Helena is the capital of Montana. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19984\",\n    \"image\": \"19984\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food chain, the brown trout is a secondary consumer. Why?\\nContext: This diagram shows a food chain from the River Frome, a freshwater ecosystem in England.\\nOptions: (A) It eats a secondary consumer. (B) It eats a primary consumer. (C) It eats a producer.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every organism needs food to stay alive. Organisms get their food in different ways. A food chain shows how organisms in an ecosystem get their food.\\nThe food chain begins with the producer. A producer can change matter that is not food into food. Many producers use carbon dioxide, water, and sunlight to make sugar. Carbon dioxide and water are not food, but sugar is food for the producer.\\nConsumers eat other organisms. There can be several kinds of consumers in a food chain:\\nA primary consumer eats producers. The word primary tells you that this is the first consumer in a food chain.\\nA secondary consumer eats primary consumers. The word secondary tells you that this is the second consumer in a food chain.\\nA tertiary consumer eats secondary consumers. The word tertiary tells you that this is the third consumer in a food chain.\\nA top consumer is the animal at the top of a food chain. Food chains can have different numbers of organisms. For example, when there are four organisms in the chain, the top consumer is the tertiary consumer. But if there are five organisms in the chain, the top consumer eats the tertiary consumer! In this food chain, the brown trout is a secondary consumer because it eats a primary consumer. The primary consumer in this food chain is the midge larva. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19990\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the solid.\\nContext: N/A\\nOptions: (A) slide (B) air inside a bubble (C) air inside a soccer ball (D) rain\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. Rain is a liquid. A liquid takes the shape of any container it is in. If you put rainwater into a bucket, the rainwater will take the shape of the bucket. But the rainwater will still take up the same amount of space.\\nThe air inside a soccer ball is a gas. A gas expands to fill a space. The air fills all the space inside the soccer ball. If air leaks out, it will expand into the space around the ball.\\nThe air inside a bubble is a gas. A gas expands to fill a space. The air inside a bubble fills all the space in the bubble. If the bubble pops, the air will expand to fill a much larger space.\\nA slide is a solid. A solid has a size and shape of its own. A slide has a size and shape of its own, even when you sit on it. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"19998\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Kline Electronics has a reputation for responding real quick to customer concerns and questions. (B) Kline Electronics has a reputation for responding quickly to all customer concerns and questions.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses conversational language (real quick).\\nThe first sentence uses formal language in place of the conversational language, so it is more formal overall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20001\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nYou've reached Steven Crawford's voice mail. Please leave a detailed message at the beep, and I will return your call at my earliest convenience.\\nContext: N/A\\nOptions: (A) verbal irony (B) onomatopoeia\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses onomatopoeia, a word that expresses a sound.\\nBeep represents the sound that tells the caller to start recording a message. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20002\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Pablo investigate with an experiment?\\nContext: Pablo and his classmates are growing tomato plants in the school garden. He wonders what factors affect how tomato plants grow. So, he decides to design an experiment. He has the following supplies available:\\nthree different types of tomato seeds\\none bag of potting soil\\nfive identical clay pots\\nwater\\nOptions: (A) Which of the three types of tomato seeds sprouts the fastest? (B) Which type of soil will cause a certain kind of tomato plant to grow the most fruit? (C) Does a certain kind of tomato plant grow taller when planted in a clay pot or in a plastic pot?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20003\",\n    \"image\": \"20003\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Utah?\\nContext: N/A\\nOptions: (A) Denver (B) Provo (C) Salt Lake City (D) Orlando\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Salt Lake City is the capital of Utah. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20007\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) Peterson Electronics has a reputation for responding quickly to all customer concerns and questions. (B) Peterson Electronics has a reputation for responding real quick to customer concerns and questions.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The second sentence is less formal. You can tell because it uses conversational language (real quick).\\nThe first sentence uses formal language in place of the conversational language, so it is more formal overall. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20009\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long does it take to fly across the United States in an airplane?\\nContext: Select the better estimate.\\nOptions: (A) 5 minutes (B) 5 hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that the bus leaves in 7. You might be thinking, 7 what? Does the bus leave in 7 minutes? 7 seconds?\\nThe number 7 on its own does not give you much information about when the bus is leaving. That is because the units are missing.\\nTime is usually measured in units of seconds, minutes, or hours. It takes about 1 second to sneeze and 1 minute to get dressed in the morning. It takes about 1 hour to bake a pie in the oven.\\nThere are 60 seconds in 1 minute. So, 1 second is much less than 1 minute.\\nThere are 60 minutes in 1 hour. So, 1 minute is much less than 1 hour. The better estimate for how long it takes to fly across the United States in an airplane is 5 hours.\\n5 minutes is too fast. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20011\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In what part of the United States did Rosa Parks grow up?\\nContext: N/A\\nOptions: (A) the Midwest (B) the Northeast (C) the West (D) the South\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rosa Parks grew up in the South.\\nRosa Parks grew up in the state of Alabama. Alabama is in the South. Look at the map below. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20020\",\n    \"image\": \"20020\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is also adapted for survival in cold places?\\nContext: Caribou live in Canada and the northern United States. The 's skin is adapted to help the animal survive in cold places.\\nFigure: caribou.\\nOptions: (A) naked mole rat (B) snowy owl\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the caribou.\\nDuring the winter, the caribou has thick fur covering its skin. Its skin is adapted for survival in cold places. The caribou uses its fur to keep warm in cold weather.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe snowy owl has a thick coat of feathers covering its skin. Its skin is adapted for survival in cold places.\\nThe naked mole rat has thin skin covering its body. Its skin is not adapted for survival in cold places. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20021\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which wax candle has more thermal energy?\\nContext: Two 14-gram wax candles are identical except for their temperatures.\\nOptions: (A) the hotter wax candle (B) the colder wax candle\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two wax candles are made of the same material and have the same mass. So, the hotter wax candle has more thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20024\",\n    \"image\": \"20024\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alaska?\\nContext: N/A\\nOptions: (A) Bismarck (B) Juneau (C) Nampa (D) Santa Fe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Juneau is the capital of Alaska. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20036\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Trisha acquired this trait?\\nContext: Read the description of a trait.\\nTrisha knows how to make chili.\\nOptions: (A) When Trisha was young, her grandmother taught her how to cut chili peppers. (B) Trisha learned how to make chili from a recipe book. (C) Trisha's friends like to make chili with her.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20040\",\n    \"image\": \"20040\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's common name?\\nContext: This organism is Carcharodon carcharias. It is also called a great white shark.\\nOptions: (A) great white shark (B) Carcharodon carcharias\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Carcharodon carcharias is written in italics. The first word is capitalized, and the second word is not. So, it is the scientific name.\\nCarcharodon carcharias is the organism's scientific name. So, you know that great white shark is the common name. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20041\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nLester is good at baking.\\nContext: Hint: Baking well takes practice.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to bake. Instead, many people learn how to bake. So, baking is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20043\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) Best Regards,\\nRoy (B) Best regards,\\nRoy\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The second closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20046\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nBrenda has five toes on each foot.\\nContext: Hint: Brenda was born with five toes on each foot.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Most humans are born with five toes on each foot. So, having five toes is an inherited trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20051\",\n    \"image\": \"20051\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nevada?\\nContext: N/A\\nOptions: (A) Reno (B) Carson City (C) Olympia (D) Austin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Carson City is the capital of Nevada. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20062\",\n    \"image\": \"20062\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following fossils is younger? Select the more likely answer.\\nContext: This diagram shows fossils in an undisturbed sedimentary rock sequence.\\nOptions: (A) feather (B) ginkgo leaf\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fossil is the preserved evidence of an ancient organism. Some fossils are formed from body parts such as bones or shells. Other fossils, such as footprints or burrows, are formed from traces of an organism's activities.\\nFossils are typically found in sedimentary rocks. Sedimentary rocks usually form in layers. Over time, new layers are added on top of old layers in a series called a rock sequence. The layers in an undisturbed rock sequence are in the same order as when they formed. So, the deeper layers are older than the shallower layers.\\nThe relative ages of fossils can be determined from their positions in an undisturbed rock sequence. Older fossils are usually in deeper layers, and younger fossils are usually in shallower layers. Look again at the fossils in the rock sequence diagram.\\nCompare the positions of these fossils to determine which one is younger:\\nThe feather fossil is in a shallower layer in the rock sequence than the ginkgo leaf fossil. So, the feather fossil is most likely younger than the ginkgo leaf fossil. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20065\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that Herman's mass did not change.\\nThe gravitational potential energy stored between Herman and Earth () as he hiked toward the summit.\\nContext: Read the text about a person in motion.\\nHerman hiked up a tall mountain. He followed a trail all the way to the summit.\\nOptions: (A) increased (B) stayed the same (C) decreased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between Herman and the center of Earth changed.\\nThe summit of the mountain was higher than the point where Herman started hiking. As he hiked toward the summit, the distance between Herman and the center of Earth increased. So, the gravitational potential energy stored between Herman and Earth increased as he hiked toward the summit. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20075\",\n    \"image\": \"20075\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of green particles?\\nContext: The diagram below is a model of two solutions. Each green ball represents one particle of solute.\\nOptions: (A) neither; their concentrations are the same (B) Solution A (C) Solution B\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the green particles represent the solute. To figure out which solution has a higher concentration of green particles, look at both the number of green particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of green particles per milliliter.\\nSolution A has more green particles per milliliter. So, Solution A has a higher concentration of green particles. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20081\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a simple sentence?\\nContext: N/A\\nOptions: (A) Lorenzo will read the script on his own, and then we'll practice our lines together. (B) Shelby and her sisters drew a map of the United States and hung it on the wall.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought. It can stand alone as a sentence. A dependent clause is not a complete thought. It cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw a flash of lightning, and seconds later we heard the rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause usually begins with a subordinating conjunction such as after, although, as, because, before, if, since, unless, until, when, or while.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids. The second sentence is the simple sentence. It is a single independent clause.\\nShelby and her sisters drew a map of the United States and hung it on the wall. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20095\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a mineral.\\nContext: N/A\\nOptions: (A) Muscovite is a pure substance. It is not made by living things. (B) A shark's tooth is made by a living thing. It is not a pure substance. (C) Chrysotile is a solid. It is a pure substance.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Compare the properties of each substance to the properties of minerals. Select the substance whose properties do not match those of minerals.\\nMuscovite is a mineral.\\nA shark's tooth is made by a living thing. But minerals are not made by living things.\\nA shark's tooth is not a pure substance. But all minerals are pure substances.\\nSo, a shark's tooth is not a mineral.\\nChrysotile is a mineral. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20115\",\n    \"image\": \"20115\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is this spatula made of?\\nContext: N/A\\nOptions: (A) cotton (B) wood\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the spatula.\\nThe spatula is made of two different materials. The handle is made of wood, and the head is made of rubber. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20116\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a rock.\\nContext: N/A\\nOptions: (A) A marble is made by humans. It is a solid. (B) Dolerite is a solid. It is not made by living things. (C) Marble is not made by living things. It is formed in nature.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Rocks are made of minerals. Here are some properties of rocks:\\nThey are solid.\\nThey are formed in nature.\\nThey are not made by living things.\\nThey are not pure substances. Compare the properties of each substance to the properties of rocks. Select the substance whose properties do not match those of rocks.\\nA marble is made by humans. But rocks are not made by living things.\\nSo, a marble is not a rock.\\nMarble is a rock.\\nDolerite is a rock. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20117\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\nlike - lumber\\nContext: N/A\\nOptions: (A) lamb (B) looked\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince looked is between the guide words like - lumber, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20119\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nAaron can ride a motorcycle.\\nContext: Hint: Riding a motorcycle well takes practice.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to ride a motorcycle. Instead, many people learn how to ride. So, riding a motorcycle is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20120\",\n    \"image\": \"20120\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which animal's skin is also adapted for survival in cold places?\\nContext: Arctic wolves live in the Canadian Arctic and Greenland. The 's skin is adapted to help the animal survive in cold places.\\nFigure: Arctic wolf.\\nOptions: (A) Amazon milk frog (B) Eurasian lynx\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe color, texture, and covering of an animal's skin are examples of adaptations. Animals' skins can be adapted in different ways. For example, skin with thick fur might help an animal stay warm. Skin with sharp spines might help an animal defend itself against predators. Look at the picture of the Arctic wolf.\\nThe Arctic wolf has thick fur covering its skin. Its skin is adapted for survival in cold places. The Arctic wolf uses its fur to keep warm in cold weather.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nDuring the winter, the Eurasian lynx has thick fur covering its skin. Its skin is adapted for survival in cold places.\\nThe Amazon milk frog has thin, moist skin. Its skin is not adapted for survival in cold places. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20121\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Fernando acquired this trait?\\nContext: Read the description of a trait.\\nFernando knows a lot about history.\\nOptions: (A) Fernando learned history by reading. (B) Fernando is most interested in American history.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20132\",\n    \"image\": \"20132\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is stronger in Pair 1. (B) The strength of the magnetic force is the same in both pairs. (C) The magnetic force is stronger in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is stronger when the magnets are closer together. Distance affects the strength of the magnetic force. When magnets are closer together, the magnetic force between them is stronger.\\nThe magnets in Pair 2 are closer together than the magnets in Pair 1. So, the magnetic force is stronger in Pair 2 than in Pair 1. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20134\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nwater freezing into ice\\nbending a paper clip\\nContext: N/A\\nOptions: (A) Both are caused by heating. (B) Both are caused by cooling. (C) Both are only physical changes. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nWater freezing into ice is a change of state. So, it is a physical change. The water changes from solid to liquid. But the ice is still made of the same type of matter as the liquid water.\\nBending a paper clip is a physical change. After you bend it, the paper clip has a different shape. But it is still made of the same type of matter.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nWater freezing is caused by cooling. But bending a paper clip is not. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20135\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nTwo hawks rest in the tree.\\nContext: N/A\\nOptions: (A) present tense (B) past tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in present tense. You can tell because it uses a present-tense verb, rest. The verb tells you about something that is true or happening now. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20145\",\n    \"image\": \"20145\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with a gray body to offspring with a golden body? Choose the most likely ratio.\\nContext: In a group of guppies, some individuals have a gray body and others have a golden body. In this group, the gene for the body color trait has two alleles. The allele for a golden body (b) is recessive to the allele for a gray body (B).\\nThis Punnett square shows a cross between two guppies.\\nOptions: (A) 1:3 (B) 2:2 (C) 3:1 (D) 0:4 (E) 4:0\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with a gray body or a golden body, consider whether each phenotype is the dominant or recessive allele's version of the body color trait. The question tells you that the b allele, which is for a golden body, is recessive to the B allele, which is for a gray body.\\nA gray body is the dominant allele's version of the body color trait. A guppy with the dominant version of the body color trait must have at least one dominant allele for the body color gene. So, offspring with a gray body must have the genotype BB or Bb.\\nThere are 3 boxes in the Punnett square with the genotype BB or Bb. These boxes are highlighted below.\\nA golden body is the recessive allele's version of the body color trait. A guppy with the recessive version of the body color trait must have only recessive alleles for the body color gene. So, offspring with a golden body must have the genotype bb.\\nThere is 1 box in the Punnett square with the genotype bb. This box is highlighted below.\\nSo, the expected ratio of offspring with a gray body to offspring with a golden body is 3:1. This means that, on average, this cross will produce 3 offspring with a gray body for every 1 offspring with a golden body. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20148\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Zane inherited this trait?\\nContext: Read the description of a trait.\\nZane has naturally brown hair.\\nOptions: (A) Zane's biological mother often wears her naturally brown hair in a bun. (B) Zane and his siblings all have naturally straight hair. (C) Zane and his biological father have short hair.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20159\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nIsaac returned to the parking lot to find his car somewhat destroyed. Apparently someone had crashed into it while he was working and had broken the entire front windshield.\\nContext: N/A\\nOptions: (A) oxymoron (B) euphemism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nSomewhat destroyed is a contradiction, because somewhat means partially or moderately, and destroyed implies totally wrecked. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20161\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the liquid.\\nContext: N/A\\nOptions: (A) screwdriver (B) air inside a balloon (C) hammer (D) grape juice\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. The air inside a balloon is a gas. A gas expands to fill a space. The air inside a balloon expands to fill all the space in the balloon. If the balloon pops, the air will expand to fill a much larger space.\\nGrape juice is a liquid. A liquid takes the shape of any container it is in. If you pour grape juice into a different container, the grape juice will take the shape of that container. But the grape juice will still take up the same amount of space.\\nA screwdriver is a solid. A solid has a size and shape of its own. This screwdriver has a metal blade and a plastic handle. Both metal and plastic are solids.\\nA hammer is a solid. A solid has a size and shape of its own. A hammer is made of iron and wood. Both iron and wood are solids. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20166\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Digby's genotype for the fur length gene?\\nContext: In a group of dogs, some individuals have short fur and others have long fur. In this group, the gene for the fur length trait has two alleles. The allele F is for short fur, and the allele f is for long fur.\\nDigby, a dog from this group, has short fur. Digby has two alleles for short fur.\\nOptions: (A) short fur (B) FF\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. Digby has two alleles for short fur (F). So, Digby's genotype for the fur length gene is FF. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20170\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"According to Newton's third law, what other force must be happening?\\nContext: Isaac Newton was born in the 1600s and studied how objects move. He discovered three fundamental laws about forces and motion. According to Newton's third law, for every force, there is an equal and opposite force.\\nConsider the following force:\\nHelen's foot is pushing on her car's gas pedal.\\nOptions: (A) The gas pedal is pulling on Helen's foot. (B) The gas pedal is pushing on Helen's foot.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"According to Newton's third law, for every force, there is an equal and opposite force. This means that if one object is applying a force on a second object, the second object must also be applying a force on the first object, but in the opposite direction.\\nFor example, if your hand is pushing down on a table, the table is also pushing up on your hand. Or, if you are pulling forward on a rope, the rope is also pulling back on you. Helen's foot is pushing on the gas pedal. So, Newton's third law tells you that the gas pedal is pushing on Helen's foot. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20172\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nYou think Todd should be class president? I just can't see it. He reads romance novels for fun.\\nContext: N/A\\nOptions: (A) bandwagon fallacy: the assumption that the popular choice is automatically correct (B) ad hominem: an attack against the person making the argument, rather than the argument itself (C) circular reasoning: an argument that supports a claim with the claim itself\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Todd shouldn't be class president because he reads romance novels for fun. This is a personal attack on Todd that isn't relevant to whether he would be a good class president. This illustrates a type of logical fallacy known as ad hominem. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20173\",\n    \"image\": \"20173\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which fish's mouth is also adapted for tearing through meat?\\nContext: Barracudas often hunt large fish for food. The 's mouth is adapted to tear through meat.\\nFigure: barracuda.\\nOptions: (A) seahorse (B) starry moray\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of an animal's mouth is one example of an adaptation. Animals' mouths can be adapted in different ways. For example, a large mouth with sharp teeth might help an animal tear through meat. A long, thin mouth might help an animal catch insects that live in holes. Animals that eat similar food often have similar mouths. Look at the picture of the barracuda.\\nThe barracuda has a large mouth and sharp teeth. Its mouth is adapted for tearing through meat. The baracuda uses its teeth to cut up meat into pieces it can swallow.\\nNow look at each animal. Figure out which animal has a similar adaptation.\\nThe starry moray has a large mouth and sharp teeth. Its mouth is adapted for tearing through meat.\\nThe seahorse a long, narrow mouth. Its mouth is not adapted for tearing through meat. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20174\",\n    \"image\": \"20174\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Catoctin Mountain Park ecosystem?\\nContext: Figure: Catoctin Mountain Park.\\nCatoctin Mountain Park is a temperate deciduous forest ecosystem in Maryland. Most of this forest was cut down for its wood in the early 1900s. But since the 1940s, conservation efforts have allowed the forest to return to much of this park.\\nOptions: (A) It has many different types of trees. (B) It has soil that is rich in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A temperate deciduous forest is a type of ecosystem. Temperate deciduous forests have the following features: warm, wet summers and cold, wet winters, soil that is rich in nutrients, and only a few types of trees. So, the following statements describe the Catoctin Mountain Park ecosystem: warm, wet summers and cold, wet winters, soil that is rich in nutrients, and only a few types of trees. It has warm, wet summers and cold, wet winters. It has soil that is rich in nutrients. The following statement does not describe Catoctin Mountain Park: warm, wet summers and cold, wet winters, soil that is rich in nutrients, and only a few types of trees. It has many different types of trees. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20176\",\n    \"image\": \"20176\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Utah (B) Minnesota (C) Kentucky (D) Mississippi\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. Minnesota is farthest north. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20180\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Mike inherited this trait?\\nContext: Read the description of a trait.\\nMike has freckles.\\nOptions: (A) Mike has freckles on his nose and shoulders. (B) Mike and his biological mother have pale skin. (C) Mike's biological parents have freckles on their noses just as Mike does.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20184\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) Birds are the only living animals that have feathers. (B) Peacock feathers can make any room look fancy.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true.\\nThe month of July has more days than the month of June.\\nThis is a fact. It can be proved by looking at a calendar and counting the number of days in each month.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nJuly is a better month than June for camping.\\nThis is an opinion. People may have different opinions about which month is \\\"better\\\" for camping. The first sentence states a fact.\\nBirds are the only living animals that have feathers.\\nIt can be proved by reading a book about birds.\\nThe second sentence states an opinion.\\nPeacock feathers can make any room look fancy.\\nFancy shows what a person believes, thinks, or feels. Another person might have a different opinion about what makes something look fancy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20187\",\n    \"image\": \"20187\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) fragile (B) stretchy (C) sour\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA fragile object will break into pieces if you drop it. The rubber band is not fragile.\\nA stretchy object gets longer when you pull on it. All four objects are stretchy.\\nA lemon has a sour taste. The melted marshmallow is not sour.\\nThe property that all four objects have in common is stretchy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20189\",\n    \"image\": \"20189\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is Nerium oleander made up of one cell?\\nContext: This organism is Nerium oleander. It is a member of the plant kingdom.\\nNerium oleander is commonly called an oleander plant. Oleander plants are toxic to many animals. Oleander plants contain a poison that can make animals sick. This poison helps protect oleander plants from being eaten by animals.\\nOptions: (A) no (B) yes\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In the past, scientists classified living organisms into two groups: plants and animals. Over the past 300 years, scientists have discovered many more types of organisms. Today, many scientists classify organisms into six broad groups, called kingdoms.\\nOrganisms in each kingdom have specific traits. The table below shows some traits used to describe each kingdom.\\n | Bacteria | Archaea | Protists | Fungi | Animals | Plants\\nHow many cells do they have? | one | one | one or many | one or many | many | many\\nDo their cells have a nucleus? | no | no | yes | yes | yes | yes\\nCan their cells make food? | some species can | some species can | some species can | no | no | yes Nerium oleander is a plant. Plants are made up of many cells. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20192\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish.\\nContext: N/A\\nOptions: (A) cane toad (B) gray tree frog (C) ocean sunfish (D) spotted dolphin\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Fish live underwater. They have fins, not limbs. A spotted dolphin is a mammal. It has hair and feeds its young milk.\\nDolphins may look like sharks or other fish, but they are mammals! When a baby dolphin is born, it has hair around its jaw. This hair falls out as the dolphin grows.\\nA gray tree frog is an amphibian. It has moist skin and begins its life in water.\\nThere are many kinds of tree frogs. Most tree frogs are very small. They can walk on thin branches.\\nAn ocean sunfish is a fish. It lives underwater. It has fins, not limbs.\\nOcean sunfish have a flat body and wide fins. They sometimes swim to the ocean's surface to rest in the sun.\\nA cane toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20203\",\n    \"image\": \"20203\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which statement describes the Kaeng Krachan National Park ecosystem?\\nContext: Figure: Kaeng Krachan National Park.\\nKaeng Krachan National Park is a tropical rain forest ecosystem in western Thailand. It is Thailand's largest national park and has many animals, including elephants.\\nOptions: (A) It has many different types of organisms. (B) It has mostly small plants. (C) It has soil that is rich in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An environment includes all of the biotic, or living, and abiotic, or nonliving, things in an area. An ecosystem is created by the relationships that form among the biotic and abiotic parts of an environment.\\nThere are many different types of terrestrial, or land-based, ecosystems. Here are some ways in which terrestrial ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil\\nthe organisms that live there A tropical rain forest is a type of ecosystem. Tropical rain forests have the following features: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. So, the following statement describes the Kaeng Krachan National Park ecosystem: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. It has many different types of organisms. The following statements do not describe Kaeng Krachan National Park: year-round rain and warm temperatures, soil that is poor in nutrients, and many different types of organisms. It has soil that is rich in nutrients. It has mostly small plants. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20208\",\n    \"image\": \"20208\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nevada?\\nContext: N/A\\nOptions: (A) Reno (B) Las Vegas (C) Carson City (D) Bismarck\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Carson City is the capital of Nevada. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20215\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the animal that does not have a backbone.\\nContext: Hint: Insects, spiders, and worms do not have backbones.\\nOptions: (A) ladybug (B) porcupine\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Some animals have a backbone. The backbone is made of many bones in an animal's back. An animal's backbone helps connect the different parts of its body. In the drawings below, each animal's backbone is colored orange.\\nOther animals do not have a backbone. In fact, these animals don't have any bones! Some animals without backbones have a hard outer cover. Other animals have a soft body. A ladybug is an insect. Like other insects, a ladybug does not have a backbone. It has a hard outer cover.\\nA porcupine is a mammal. Like other mammals, a porcupine has a backbone. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20217\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nAs Dale sat down on the rickety old chair, it abruptly collapsed beneath him.\\nContext: N/A\\nOptions: (A) compound-complex (B) complex (C) simple (D) compound\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is complex. It is made up of an independent clause and a dependent clause. The dependent clause begins with the subordinating conjunction as.\\nAs Dale sat down on the rickety old chair, it abruptly collapsed beneath him. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20219\",\n    \"image\": \"20219\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) New Mexico (B) Ohio (C) New Hampshire (D) Delaware\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. New Hampshire is farthest east. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20221\",\n    \"image\": \"20221\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alaska?\\nContext: N/A\\nOptions: (A) Juneau (B) Boston (C) Fairbanks (D) Honolulu\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Juneau is the capital of Alaska. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20224\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAfter spending weeks in New York City, Helen was a bit unnerved by the deafening silence of her small hometown.\\nContext: N/A\\nOptions: (A) oxymoron (B) euphemism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses an oxymoron, a joining of two seemingly contradictory terms.\\nDeafening silence is a contradiction, because deafening describes something extremely loud, and silence is the absence of sound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20226\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a leather belt?\\nContext: Select the best estimate.\\nOptions: (A) 30 yards (B) 30 miles (C) 30 feet (D) 30 inches\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a leather belt is 30 inches.\\n30 feet, 30 yards, and 30 miles are all too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20231\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nKnitting yarn into a scarf is a ().\\nContext: N/A\\nOptions: (A) chemical change (B) physical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form new molecules. The types of molecules in matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then relink and form different molecules. For example, carbon dioxide molecules are created when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. For example, water vaporizing is a physical change. Liquid water and water vapor are made of the same type of matter: water. Knitting yarn into a scarf is a physical change. The yarn gets a different shape, but it is still made of the same type of matter. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20239\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the temperature shown by this thermometer.\\nContext: N/A\\nOptions: (A) 110\\u00b0F (B) 125\\u00b0F (C) 95\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A thermometer is a tool that measures temperature. Temperature can be measured in degrees. The symbol for degrees is \\u00b0.\\nSome thermometers measure temperature in degrees Fahrenheit (\\u00b0F). Fahrenheit is one scale used to measure temperature.\\nThis is a tube thermometer. It has a tube filled with a red liquid.\\nThere is a Fahrenheit scale along the right side of the tube. The top of the red liquid lines up with the number 80 on the scale. So, the temperature shown by this thermometer is 80\\u00b0F. Find the top of the red liquid.\\nNow look at the scale to the right. The top of the red liquid lines up with 110. So, the temperature is 110\\u00b0F. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20241\",\n    \"image\": \"20241\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Louisiana?\\nContext: N/A\\nOptions: (A) Baton Rouge (B) Anchorage (C) Charleston (D) Juneau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Baton Rouge is the capital of Louisiana. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20244\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nThroughout the ages, human beings have pondered the many mysteries of the moon.\\nContext: N/A\\nOptions: (A) alliteration (B) verbal irony\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAlliteration is the repetition of sounds at the beginning of nearby words.\\nWhat a lucky little lady you are!\\nAn allusion is a brief reference to something or someone well known, often from history or literature.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nAn idiom is an expression that cannot be understood literally. Its meaning must be learned.\\nThe assignment was a piece of cake.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night.\\nA metaphor compares two things that are not actually alike without using like or as.\\nThe snow formed a blanket over the town.\\nOnomatopoeia involves using a word that expresses a sound.\\nThe scrambled eggs hit the floor with a splat.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind.\\nA pun involves using a word or phrase in a humorous way that suggests more than one meaning.\\nA great new broom is sweeping the nation.\\nVerbal irony involves saying one thing but implying something very different. People often use verbal irony when they are being sarcastic.\\nOlivia seems thrilled that her car keeps breaking down.\\nEach breakdown is as enjoyable as a punch to the face. The text uses alliteration, the repetition of sounds at the beginning of nearby words.\\nMany mysteries of the moon repeats the m sound. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20245\",\n    \"image\": \"20245\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample A (B) sample B (C) neither; the samples have the same temperature\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample B has more mass than each particle in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20256\",\n    \"image\": \"20256\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest north?\\nContext: N/A\\nOptions: (A) Arizona (B) Mississippi (C) Oklahoma (D) Wyoming\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the north arrow is pointing. Wyoming is farthest north. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20262\",\n    \"image\": \"20262\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these organisms contains matter that was once part of the bilberry?\\nContext: Below is a food web from a tundra ecosystem in Nunavut, a territory in Northern Canada.\\nA food web models how the matter eaten by organisms moves through an ecosystem. The arrows in a food web represent how matter moves between organisms in an ecosystem.\\nOptions: (A) collared lemming (B) earthworm (C) lichen (D) bear sedge\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A food web is a model.\\nA food web shows where organisms in an ecosystem get their food. Models can make things in nature easier to understand because models can represent complex things in a simpler way. If a food web showed every organism in an ecosystem, the food web would be hard to understand. So, each food web shows how some organisms in an ecosystem can get their food.\\nArrows show how matter moves.\\nA food web has arrows that point from one organism to another. Each arrow shows the direction that matter moves when one organism eats another organism. An arrow starts from the organism that is eaten. The arrow points to the organism that is doing the eating.\\nAn organism in a food web can have more than one arrow pointing from it. This shows that the organism is eaten by more than one other organism in the food web.\\nAn organism in a food web can also have more than one arrow pointing to it. This shows that the organism eats more than one other organism in the food web. Use the arrows to follow how matter moves through this food web. For each answer choice, try to find a path of arrows that starts from the bilberry.\\nNo arrow points to the lichen. So, in this food web, matter does not move from the bilberry to the lichen.\\nNo arrow points to the bear sedge. So, in this food web, matter does not move from the bilberry to the bear sedge.\\nThere are two arrows pointing to the collared lemming. One arrow starts from the bear sedge, and the other arrow starts from the lichen. Neither the bear sedge nor the lichen has an arrow pointing to it. So, in this food web, matter does not move from the bilberry to the collared lemming. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20268\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one substance that is not a mineral.\\nContext: N/A\\nOptions: (A) Quartz is not made by living things. It is a solid. (B) Chalcopyrite is a solid. It is not made by living things. (C) A shark's tooth is not a pure substance. It is a solid.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Minerals are the building blocks of rocks. A rock can be made of one or more minerals.\\nMinerals and rocks have the following properties:\\nProperty | Mineral | Rock\\nIt is a solid. | Yes | Yes\\nIt is formed in nature. | Yes | Yes\\nIt is not made by organisms. | Yes | Yes\\nIt is a pure substance. | Yes | No\\nIt has a fixed crystal structure. | Yes | No\\nYou can use these properties to tell whether a substance is a mineral, a rock, or neither.\\nLook closely at the last three properties:\\nMinerals and rocks are not made by organisms.\\nOrganisms make their own body parts. For example, snails and clams make their shells. Because they are made by organisms, body parts cannot be minerals or rocks.\\nHumans are organisms too. So, substances that humans make by hand or in factories are not minerals or rocks.\\nA mineral is a pure substance, but a rock is not.\\nA pure substance is made of only one type of matter. Minerals are pure substances, but rocks are not. Instead, all rocks are mixtures.\\nA mineral has a fixed crystal structure, but a rock does not.\\nThe crystal structure of a substance tells you how the atoms or molecules in the substance are arranged. Different types of minerals have different crystal structures, but all minerals have a fixed crystal structure. This means that the atoms and molecules in different pieces of the same type of mineral are always arranged the same way.\\nHowever, rocks do not have a fixed crystal structure. So, the arrangement of atoms or molecules in different pieces of the same type of rock may be different! Compare the properties of each substance to the properties of minerals. Select the substance whose properties do not match those of minerals.\\nChalcopyrite is a mineral.\\nQuartz is a mineral.\\nA shark's tooth is not a pure substance. But all minerals are pure substances.\\nSo, a shark's tooth is not a mineral. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20280\",\n    \"image\": \"20280\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nevada?\\nContext: N/A\\nOptions: (A) Boise (B) Pierre (C) Carson City (D) Portland\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Carson City is the capital of Nevada. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20283\",\n    \"image\": \"20283\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a cockatiel produced by this cross will have bright orange cheeks?\\nContext: In a group of cockatiels, some individuals have bright orange cheeks and others have pale orange cheeks. In this group, the gene for the cheek color trait has two alleles. The allele for bright orange cheeks (R) is dominant over the allele for pale orange cheeks (r).\\nThis Punnett square shows a cross between two cockatiels.\\nOptions: (A) 2/4 (B) 1/4 (C) 4/4 (D) 0/4 (E) 3/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20303\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nDustin will read his book before bed.\\nContext: N/A\\nOptions: (A) present tense (B) past tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, read. The verb tells you about something that is going to happen. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20320\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a drinking straw?\\nContext: Select the best estimate.\\nOptions: (A) 25 centimeters (B) 25 kilometers (C) 25 meters (D) 25 millimeters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of a drinking straw is 25 centimeters.\\n25 millimeters is too short. 25 meters and 25 kilometers are too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20323\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nTori's Bistro used to be a great place to go for a delicious and carefully prepared dinner, but nobody goes there anymore: it's too crowded.\\nContext: N/A\\nOptions: (A) paradox (B) oxymoron\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a paradox, a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nNobody goes there anymore: it's too crowded at first appears to be contradictory, because if no one goes to the restaurant, then the restaurant should be empty, not crowded. However, it contains some truth: if a restaurant is frequently perceived to be too crowded, many people will no longer want to go there. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20334\",\n    \"image\": \"20334\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Virginia (B) New Jersey (C) Kentucky (D) Massachusetts\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Massachusetts.\\nThe Massachusetts Colony included land that would later become the state of Maine. Maine was never its own colony. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20337\",\n    \"image\": \"20337\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Connecticut?\\nContext: N/A\\nOptions: (A) Hartford (B) Burlington (C) Boston (D) Harrisburg\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Hartford is the capital of Connecticut. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20339\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The movers lift the boxes at the same speed. Which box is lifted with a larger force?\\nContext: Two movers are putting heavy boxes into their truck. The boxes are the same shape and size. Each mover lifts one box up into the truck at a time.\\nOptions: (A) a box holding 40 pounds (B) a box holding 30 pounds\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull.\\nA force can make an object start moving or stop an object that is moving. A force can also make an object speed up, slow down, or change direction.\\nForces can be different sizes.\\nThink about trying to move a heavy object and a light object. Imagine you want to move them at the same speed. You will need to use a larger force to move the heavy object. Look for the box that is heavier.\\nA box holding 40 pounds is heavier than a box holding 30 pounds. So, the box holding 40 pounds needs a larger force to start moving upward at the same speed as the other box. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20340\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the motion of three bicycles. Which bicycle was moving at the lowest speed?\\nContext: N/A\\nOptions: (A) a bicycle that moved 115miles east in 10hours (B) a bicycle that moved 120miles west in 10hours (C) a bicycle that moved 280miles north in 10hours\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object's speed tells you how fast the object is moving. Speed depends on both distance and time.\\nDistance tells you how far the object has moved. One unit used to measure distance is the mile.\\nTime tells you how long the object has spent moving. One unit used to measure time is the hour.\\nThink about objects moving for the same amount of time. The object that is moving the slowest will go the shortest distance in that time. It is moving at the lowest speed. Look at the distance each bicycle moved and the time it took to move that distance. The direction each bicycle moved does not affect its speed.\\nNotice that each bicycle moved for 10 hours. The bicycle that moved 115 miles moved the shortest distance in that time. So, that bicycle must have moved at the lowest speed. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20347\",\n    \"image\": \"20347\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which term matches the picture?\\nContext: Read the text.\\nAll animals that live on land have some sort of skeletal system. Some animals have what is called an endoskeleton. They have a system of connected bones inside their bodies. This skeleton grows as the animal grows. This helps to support a larger body. Other animals have what is called an exoskeleton. An exoskeleton is a hard covering on the outside of an animal's body. Exoskeletons do not change size, so they must be shed and replaced as an animal grows.\\nOptions: (A) endoskeleton (B) exoskeleton\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An exoskeleton is a skeleton that is outside of an animal's body. Insects, like dragonflies, have exoskeletons. When they grow, they molt and shed their exoskeletons. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20349\",\n    \"image\": \"20349\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is greater in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Both magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20351\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) The modern sport of golf developed in Scotland in the late 1400s. (B) Golf is possibly the dumbest sport that was ever invented.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved to be true.\\nThe month of July has more days than the month of June.\\nThis is a fact. It can be proved by looking at a calendar and counting the number of days in each month.\\nAn opinion is something that a person believes, thinks, or feels. An opinion cannot be proved true.\\nJuly is a better month than June for camping.\\nThis is an opinion. People may have different opinions about which month is \\\"better\\\" for camping. The second sentence states a fact.\\nThe modern sport of golf developed in Scotland in the late 1400 s.\\nIt can be proved by reading a book about the history of golf.\\nThe first sentence states an opinion.\\nGolf is possibly the dumbest sport that was ever invented.\\nDumbest shows what a person believes, thinks, or feels. Another person might have a different opinion about what is dumb. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20368\",\n    \"image\": \"20368\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnetic force is weaker in Pair 2. (B) The magnetic force is weaker in Pair 1. (C) The strength of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Distance affects the strength of the magnetic force. But the distance between the magnets in Pair 1 and in Pair 2 is the same.\\nSo, the strength of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20381\",\n    \"image\": \"20381\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The strength of the magnetic force is the same in both pairs. (B) The magnetic force is weaker in Pair 1. (C) The magnetic force is weaker in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nThese pulls and pushes between magnets are called magnetic forces. The stronger the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the strength of a magnetic force between two magnets by changing the distance between them. The magnetic force is weaker when the magnets are farther apart. Distance affects the strength of the magnetic force. When magnets are farther apart, the magnetic force between them is weaker.\\nThe magnets in Pair 1 are farther apart than the magnets in Pair 2. So, the magnetic force is weaker in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20382\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbreaking a plate\\ncutting your fingernails\\nContext: N/A\\nOptions: (A) Both are chemical changes. (B) Both are caused by heating. (C) Both are only physical changes. (D) Both are caused by cooling.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBreaking a plate is a physical change. The plate gets broken into pieces. But each piece is still made of the same type of matter.\\nCutting your fingernails is a physical change. Your fingernails are shorter after you cut them. But the pieces are still made of the same type of matter as the uncut fingernails.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20383\",\n    \"image\": \"20383\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Virginia (B) Rhode Island (C) Mississippi (D) Minnesota\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. Minnesota is farthest west. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20384\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has the most thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a fish tank at a temperature of 76\\u00b0F (B) a fish tank at a temperature of 52\\u00b0F (C) a fish tank at a temperature of 66\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter move faster, the temperature goes up. The matter now has both more thermal energy and a higher temperature. All three fish tanks have the same mass but different temperatures. Since the 76\\u00b0F fish tank is the hottest, it has the most thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20399\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the living thing.\\nContext: N/A\\nOptions: (A) crayon (B) swing set (C) butterfly (D) rain\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All living things are made up of cells. Plants, animals, and some fungi have many cells. Other living things are made up of just one cell.\\nAll living things need food and water. Water helps living things break down food and remove waste. Food gives living things energy. They use energy from food to grow and change.\\nAll living things sense changes in their environment. Living things might sense changes by seeing, smelling, hearing, or feeling. Living things can respond to the changes they sense. Rain is not a living thing.\\nRain is made of water. It helps living things survive. But it does not have all the traits of a living thing. Rain does not grow or need food.\\nA butterfly is a living thing.\\nButterflies grow and respond to their environment. They need food and water. Butterflies are made up of many cells.\\nButterflies are animals. They get their energy from nectar.\\nA crayon is not a living thing.\\nCrayons do not have all of the traits of living things. They do not grow or respond to their environment. They do not need food or water.\\nA swing set is not a living thing.\\nSwing sets do not have all of the traits of living things. They do not grow or respond to their environment. They do not need food or water. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20407\",\n    \"image\": \"20407\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk.\\nMammals are warm-blooded. Warm-blooded animals can control their body temperature.\\nA gray wolf is an example of a mammal.\\nOptions: (A) red howler (B) box turtle (C) flamingo (D) cassowary\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. Scientists sort animals into each group based on traits they have in common. This process is called classification.\\nClassification helps scientists learn about how animals live. Classification also helps scientists compare similar animals. A box turtle is a reptile. It has scaly, waterproof skin.\\nBox turtles can live to be over 100 years old!\\nA red howler is a mammal. It has hair and feeds its young milk.\\nHowler monkeys have loud calls, or howls. Their calls can be heard over three miles away!\\nA flamingo is a bird. It has feathers, two wings, and a beak.\\nFlamingos live in large groups. These groups are called flocks.\\nA cassowary is a bird. It has feathers, two wings, and a beak.\\nCassowaries have wings, but they cannot fly! They can run very fast. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20413\",\n    \"image\": \"20413\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Washington?\\nContext: N/A\\nOptions: (A) Olympia (B) Seattle (C) Spokane (D) Topeka\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Olympia is the capital of Washington. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20416\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Keith inherited this trait?\\nContext: Read the description of a trait.\\nKeith has blond hair.\\nOptions: (A) Keith's parents have blond hair. They passed down this trait to Keith. (B) Keith's mother cuts his hair every month.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20421\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nLast year, the city of Lanberry allocated more money to public parks. This year, however, littering increased, so the increase in park funding must have been responsible.\\nContext: N/A\\nOptions: (A) false causation: the assumption that because two things happened together, one caused the other (B) appeal to nature: the assumption that natural things are always good\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that increased park funding was responsible for an increase in littering. However, even though littering increased after funding to parks was increased, that doesn't necessarily mean that the funding was responsible. This illustrates a type of logical fallacy known as false causation. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20427\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a compound sentence?\\nContext: N/A\\nOptions: (A) The artist prepared a canvas for a new oil painting. (B) The baker split the cookie in half, and crumbs fell to the floor.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A simple sentence is a sentence with only one subject and predicate.\\nThe pitcher threw the ball to first base.\\nA compound sentence is two simple sentences joined by a comma and a conjunction such as and, but, or, or so.\\nThe pitcher threw the ball, and the batter hit it.\\nSome simple sentences have a compound subject or a compound predicate, but they are not compound sentences.\\nAnna and James will watch the fireworks tonight.\\nThis simple sentence has a compound subject, Anna and James.\\nThe singers bowed and walked off the stage.\\nThis simple sentence has a compound predicate, bowed and walked off the stage.\\nSome simple sentences have introductory phrases, but they are not compound sentences. The introductory phrase is part of the predicate.\\nIn the winter, Farmer Ben wears his heavy coat.\\nThis is a simple sentence. There is one subject, Farmer Ben, and one predicate, wears his heavy coat in the winter. The first sentence is the compound sentence. It is made up of two simple sentences joined by a comma and the conjunction and.\\nThe baker split the cookie in half, and crumbs fell to the floor. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20430\",\n    \"image\": \"20430\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Look at the models of molecules below. Select the elementary substance.\\nContext: N/A\\nOptions: (A) fluoromethanol (B) dichloromethane (C) chlorine\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element boron is B, and the atomic symbol for the chemical element chlorine is Cl.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a ball-and-stick model. The ball-and-stick model below represents a molecule of the compound boron trichloride.\\nIn a ball-and-stick model, the balls represent atoms, and the sticks represent bonds. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20438\",\n    \"image\": \"20438\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Wisconsin?\\nContext: N/A\\nOptions: (A) Madison (B) Green Bay (C) Milwaukee (D) Jefferson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Madison is the capital of Wisconsin. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20440\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nEd picked up his pace on the trail as his spidey sense began to tingle.\\nContext: N/A\\nOptions: (A) a song (B) a comic book\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion spidey sense is a comic book.\\nThe comic book superhero Spider-Man possesses a spidey sense that warns him of impending trouble.\\nThe allusion spidey sense means a sense of danger coming. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20441\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a run-on sentence?\\nContext: N/A\\nOptions: (A) Coach Armstrong talked to her team before the game. (B) We danced for hours we were tired.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. We danced for hours we were tired is a run-on sentence. It has two sentences that are joined without end punctuation: We danced for hours and We were tired. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20470\",\n    \"image\": \"20470\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which letter marks ancient Egypt?\\nContext: Ancient Egypt was one of the first civilizations. Civilizations are complex societies with organized communities and governments. Many of the first civilizations started around big rivers. Look at the map of early river civilizations. Then answer the question below.\\nOptions: (A) B (B) C (C) D (D) A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Look at the map. It labels ancient Egypt and other ancient civilizations.\\nAncient Egyptian civilization started along the Nile River. Other ancient civilizations also started near rivers. For example, ancient Mesopotamian civilizations started along the Tigris and Euphrates Rivers, ancient Indus Valley civilizations started along the Indus River, and ancient Chinese civilization began between the Yellow and Yangtze Rivers. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20471\",\n    \"image\": \"20471\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Florida?\\nContext: N/A\\nOptions: (A) Richmond (B) Minneapolis (C) Tallahassee (D) Orlando\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Tallahassee is the capital of Florida. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20475\",\n    \"image\": \"20475\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"During this time, thermal energy was transferred from () to ().\\nContext: Two identical refrigerators in a restaurant kitchen lost power. The door of one fridge was slightly open, and the door of the other fridge was closed. This table shows how the temperature of each refrigerator changed over 10minutes.\\nOptions: (A) the surroundings . . . each refrigerator (B) each refrigerator . . . the surroundings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A change in an object's temperature indicates a change in the object's thermal energy:\\nAn increase in temperature shows that the object's thermal energy increased. So, thermal energy was transferred into the object from its surroundings.\\nA decrease in temperature shows that the object's thermal energy decreased. So, thermal energy was transferred out of the object to its surroundings. The temperature of each refrigerator increased, which means that the thermal energy of each refrigerator increased. So, thermal energy was transferred from the surroundings to each refrigerator. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20490\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a dose of cough syrup?\\nContext: Select the better estimate.\\nOptions: (A) 5 liters (B) 5 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a dose of cough syrup is 5 milliliters.\\n5 liters is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20495\",\n    \"image\": \"20495\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is this organism's scientific name?\\nContext: This organism is a diving beetle. It is also called Cybister sugillatus.\\nOptions: (A) diving beetle (B) Cybister sugillatus\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's common name is the name that people normally call the organism. Common names often contain words you know.\\nAn organism's scientific name is the name scientists use to identify the organism. Scientific names often contain words that are not used in everyday English.\\nScientific names are written in italics, but common names are usually not. The first word of the scientific name is capitalized, and the second word is not. For example, the common name of the animal below is giant panda. Its scientific name is Ailuropoda melanoleuca. Cybister sugillatus is written in italics. The first word is capitalized, and the second word is not.\\nSo, Cybister sugillatus is the scientific name. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20498\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nAn increasing number of people are keeping ferrets as pets, so they must make wonderful companion animals.\\nContext: N/A\\nOptions: (A) hasty generalization: a very broad claim based on very little evidence (B) bandwagon fallacy: the assumption that the popular choice is automatically correct\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that ferrets make good pets, because many people are getting them. However, even though many people have ferrets, that doesn't necessarily mean that ferrets make good pets. This illustrates a type of logical fallacy known as the bandwagon fallacy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20500\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nErica has five toes on each foot.\\nContext: Hint: Erica was born with five toes on each foot.\\nOptions: (A) inherited (B) acquired\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Most humans are born with five toes on each foot. So, having five toes is an inherited trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20503\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a book?\\nContext: N/A\\nOptions: (A) \\\"The Wizard of Oz\\\" (B) ***The Wizard of Oz***\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The title of a book, movie, play, TV show, magazine, or newspaper should be in italics. If you write it by hand, it can be underlined instead.\\nA Midsummer Night's Dream\\nThe title of a poem, song, article, or short story should be in quotation marks.\\n\\\"You Are My Sunshine\\\" A book should be in italics.\\nThe correct title is **The Wizard of Oz**. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20505\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nsawing a log in half\\nstretching a rubber band\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are only physical changes. (C) Both are caused by heating. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nSawing a log in half is a physical change. The log splits into two pieces. But the pieces are still made of the same type of matter.\\nStretching a rubber band is a physical change. The rubber band gets longer. But it is still made of the same type of matter as before.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are physical changes. No new matter is created.\\nBoth are chemical changes.\\nBoth changes are physical changes. They are not chemical changes.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20506\",\n    \"image\": \"20506\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following statements is true?\\nContext: Look at the images and read the text. Then, answer the question.\\n\\nFigure 1: a photograph of bryum moss.\\nThis image is a photograph of a plant called bryum moss. The photograph was taken with an ordinary camera. It shows what you would see if you looked at bryum moss closely.\\n\\nFigure 2: a micrograph of bryum moss.\\nThis image also shows bryum moss. The image is a micrograph, which is a magnified picture taken with the aid of a microscope. The magnified image shows a section of the plant that is only 0.37 millimeters long!\\nThe micrograph shows that the plant is made up of small, similarly shaped units. In this image, each unit looks like it has six sides and is surrounded by a white border. These units are called cells.\\nOptions: (A) Each bryum moss cell is over 0.37 millimeters long. (B) The organism shown in the micrograph is made up of cells, but the organism in the photograph is not. (C) Bryum moss plants are made up of tiny units called cells.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20507\",\n    \"image\": \"20507\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Illinois (B) New Jersey (C) Tennessee (D) Maryland\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is New Jersey. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20514\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nHazel can ride a bicycle.\\nContext: Hint: Riding a bike well takes practice.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. People are not born knowing how to ride a bicycle. Instead, many people learn how to ride. So, riding a bicycle is an acquired trait. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20518\",\n    \"image\": \"20518\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 2. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is smaller in Pair 1.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is smaller when the magnets are smaller. Magnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The smaller the magnets, the smaller the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is smaller in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is smaller in Pair 1 than in Pair 2. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20522\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a school bus?\\nContext: Select the better estimate.\\nOptions: (A) 14 meters (B) 14 kilometers\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nImagine being told that a pencil is 16 long. You might be thinking, 16 what? Is the pencil 16 centimeters long? 16 meters? 16 kilometers?\\nThe number 16 on its own does not give you much information about the length of the pencil. That is because the units are missing.\\nNow look at the drawing of the pencil and the ruler. The ruler shows that the units are centimeters. So, the length of the pencil is 16 centimeters.\\nThere are 100 centimeters in 1 meter. So, 1 centimeter is much shorter than 1 meter.\\nThere are 1,000 meters in 1 kilometer. So, 1 meter is much shorter than 1 kilometer. The better estimate for the length of a school bus is 14 meters.\\n14 kilometers is too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20527\",\n    \"image\": \"20527\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alabama?\\nContext: N/A\\nOptions: (A) Jefferson City (B) Wichita (C) Oklahoma City (D) Montgomery\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Montgomery is the capital of Alabama. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20535\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the part whose main job is to give strength and stiffness to a plant cell.\\nContext: N/A\\nOptions: (A) cytoplasm (B) chromosomes (C) cell wall (D) Golgi\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Plant cells are made up of many different parts. Each cell part has a function that helps the cell survive and grow.\\nSome cell parts are called organelles. Organelles are cell structures that are surrounded by their own membranes. Here are some of the organelles in plant cells:\\nChloroplasts and mitochondria work together to help the cell get the energy it needs. The chloroplasts use photosynthesis to make sugar. The mitochondria break down this sugar and release energy that the cell can use for all of its activities.\\nThe nucleus directs cell activities by sending instructions to different parts of the cell. The nucleus contains structures called chromosomes. The chromosomes are made mostly of hereditary material called DNA. DNA contains information that the cell uses for growth and activities. These instructions tell ribosomes how to build molecules called proteins, which make up cell structures and help chemical reactions happen in the cell.\\nThe endoplasmic reticulum is an organelle that helps ribosomes build proteins. The nucleus sends instructions for making proteins to ribosomes. Ribosomes can attach to the endoplamic reticulum. The endoplasmic reticulum and ribosomes use these instructions to make proteins that the cell needs to survive and grow.\\nAfter proteins are made in the endoplasmic reticulum, they can be transferred to the Golgi. The Golgi is an organelle made up of flat, stacked membranes. The Golgi sorts and packages proteins and other substances. Then, the Golgi sends these substances to different parts of the cell. Some of these substances are sent to the cell membrane and released from the cell.\\nIn plant cells, the vacuole stores waste, water, and nutrients such as sugar. Most plant cells have one vacuole.\\nOther cell parts are not surrounded by their own membranes. These cell parts are not organelles.\\nThe cell wall is the cell's tough outer covering. It gives the cell strength and stiffness and helps the cell keep its shape.\\nOn the inside of the cell wall is a thin layer called the cell membrane. This layer is a membrane, but it does not have a membrane surrounding it, so it is not an organelle. The cell membrane controls which substances enter and leave the cell.\\nThe cytoplasm is a thick liquid that fills the space inside the cell. The cytoplasm also helps the cell keep its shape and supports the other cell parts. The cell wall is the outer layer of a plant cell. It gives the cell strength and stiffness, which helps the cell keep its shape. The cell wall also supports and protects the cell. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20539\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is an ice skate?\\nContext: Select the best estimate.\\nOptions: (A) 34 centimeters (B) 34 kilometers (C) 34 meters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using metric units, length can be written with units of millimeters, centimeters, meters, or kilometers. One meter contains 100 centimeters or 1,000 millimeters. So, 1 meter is larger than 1 centimeter, and 1 centimeter is larger than 1 millimeter.\\nThe tip of the pencil shown here is only 1 millimeter wide, but the pencil is about 16 centimeters long.\\nA red fox is about 1 meter long. The Sydney Harbour Bridge in Australia is about 1,000 meters, or 1 kilometer, in length. The best estimate for the length of an ice skate is 34 centimeters.\\n34 meters and 34 kilometers are both too long. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20542\",\n    \"image\": \"20542\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) stretchy (B) hard (C) fragile\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA hard object does not change shape when pressed or squeezed. None of the objects are hard.\\nA stretchy object gets longer when you pull on it. All three objects are stretchy.\\nA fragile object will break into pieces if you drop it. None of the objects are fragile.\\nThe property that all three objects have in common is stretchy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20552\",\n    \"image\": \"20552\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) rough (B) soft\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA soft object changes shape when pressed or squeezed. The apron is soft.\\nA rough object feels scratchy when you touch it. The apron is not rough. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20554\",\n    \"image\": \"20554\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the probability that a rose plant produced by this cross will have dark yellow flowers?\\nContext: In a group of rose plants, some individuals have light yellow flowers and others have dark yellow flowers. In this group, the gene for the flower color trait has two alleles. The allele for light yellow flowers (F) is dominant over the allele for dark yellow flowers (f).\\nThis Punnett square shows a cross between two rose plants.\\nOptions: (A) 3/4 (B) 4/4 (C) 0/4 (D) 1/4 (E) 2/4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nIn a Punnett square, each box represents a different outcome, or result. Each of the four outcomes is equally likely to happen. Each box represents one way the parents' alleles can combine to form an offspring's genotype. Because there are four boxes in the Punnett square, there are four possible outcomes.\\nAn event is a set of one or more outcomes. The probability of an event is a measure of how likely the event is to happen. This probability is a number between 0 and 1, and it can be written as a fraction:\\nprobability of an event = number of ways the event can happen / number of equally likely outcomes\\nYou can use a Punnett square to calculate the probability that a cross will produce certain offspring. For example, the Punnett square below has two boxes with the genotype Ff. It has one box with the genotype FF and one box with the genotype ff. This means there are two ways the parents' alleles can combine to form Ff. There is one way they can combine to form FF and one way they can combine to form ff.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nConsider an event in which this cross produces an offspring with the genotype ff. The probability of this event is given by the following fraction:\\nnumber of ways the event can happen / number of equally likely outcomes = number of boxes with the genotype ff / total number of boxes = 1 / 4. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20559\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Suppose Sidney decides to eat the string cheese. Which result would be a cost?\\nContext: Sidney is deciding whether to eat string cheese or vanilla custard for an afternoon snack. She would like to eat something tasty, but she is also trying to be healthier.\\nOptions: (A) Sidney will get to eat the string cheese. The string cheese will be healthier than the vanilla custard would have been. (B) Sidney will give up the chance to eat the vanilla custard. Sidney thinks vanilla custard would have tasted better than string cheese will.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Before you decide to do something, it is often helpful to list costs and benefits.\\nCosts are what you give up or spend when you decide to do something. Costs involve giving up things that you want or need.\\nBenefits are what you gain or save when you decide to do something. Benefits involve gaining something that you want or need. This result is a cost. It involves giving up or spending something that Sidney wants or needs:\\nSidney will give up the chance to eat the vanilla custard. Sidney thinks vanilla custard would have tasted better than string cheese will. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20561\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Read the following excerpt from a student essay. How can the writer best improve his or her grammar and mechanics?\\nWhen I'm asked to name my favorite teacher, I immediately think of Mr. Sweeney. In fifth grade, Mr. Sweeney taught us all about architecture he had the class start by learning to measure things very accurately. We studied environmentally friendly building methods, and we designed and built our own homes of the future. Mr. Sweeney was always fun and interesting, he believed that we could do more than we thought we could do. He helped me break boundaries in my life, he was a positive influence on me and will always be one of the most inspirational people in my life.\\nContext: N/A\\nOptions: (A) by using correct verb tenses (B) by fixing run-on sentences\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"During peer review, you read and respond to a fellow student's writing. While there are many methods and strategies that you can use for reviewing a text, it is generally helpful to frame your suggestions in concrete and constructive ways and to consider the following areas for revision:\\nIdeas and development: Does the writer express a clear idea and develop it with evidence, examples, or analysis?\\nOrganization: Does the writer order ideas in a clear, logical way so that they build on one another and are easy to follow?\\nVoice: Does the writer maintain an appropriate voice, such as a formal and objective voice in an academic essay or an engaging and expressive voice in a narrative essay?\\nSentence fluency: Does the writer use sentences that vary in structure and length to create a sense of rhythm and flow within and between sentences, or does the writing sound choppy, rambling, or repetitive?\\nWord choice: Does the writer use words accurately and precisely to create clear, effective, and engaging writing?\\nGrammar and mechanics: Does the writer follow appropriate conventions, using accurate spelling, punctuation, and grammar to create writing that is correct and easy to read? The writer could best improve his or her grammar and mechanics by fixing run-on sentences.\\nFor example, the writer could divide each of the underlined run-on sentences into two complete sentences.\\nWhen I'm asked to name my favorite teacher, I immediately think of Mr. Sweeney. In fifth grade, Mr. Sweeney taught us all about architecture he had the class start by learning to measure things very accurately. We studied environmentally friendly building methods, and we designed and built our own homes of the future. Mr. Sweeney was always fun and interesting, he believed that we could do more than we thought we could do. He helped me break boundaries in my life, he was a positive influence on me and will always be one of the most inspirational people in my life. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20565\",\n    \"image\": \"20565\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is an empty cup a solid or a liquid?\\nContext: N/A\\nOptions: (A) a solid (B) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid and liquid are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid. An empty cup is a solid. A solid has a size and shape of its own.\\nWhen you fill a cup with water, the cup still has its own shape. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20567\",\n    \"image\": \"20567\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) sample B (B) neither; the samples have the same temperature (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. Each particle in sample B has more mass than each particle in sample A. The particles in sample B also have a higher average speed than the particles in sample A. So, the particles in sample B have a higher average kinetic energy than the particles in sample A.\\nBecause the particles in sample B have the higher average kinetic energy, sample B must have the higher temperature. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20568\",\n    \"image\": \"20568\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nevada?\\nContext: N/A\\nOptions: (A) Tallahassee (B) Carson City (C) Phoenix (D) Juneau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Carson City is the capital of Nevada. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20574\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nI never thought I'd enjoy the opera so much!\\nContext: N/A\\nOptions: (A) exclamatory (B) declarative (C) interrogative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement and always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn imperative sentence makes a request or a demand and usually ends with a period. If a demand shows strong feeling, it can end with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn interrogative sentence asks a question and always ends with a question mark.\\nGiven the recent critiques of her new strategic plan, do you think the CEO will reconsider the company's direction?\\nAn exclamatory sentence is a statement that shows surprise or strong feeling. An exclamation always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence is a statement that shows surprise and ends with an exclamation point. It is an exclamatory sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20582\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Why do people form governments?\\nContext: N/A\\nOptions: (A) to help people work together (B) to get rid of all rules (C) so that no one has to work\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People form governments for two main reasons.\\nGovernments come up with laws, or rules, for a community. Laws help keep people safe. For example, traffic laws make it safer to drive.\\nLaws can tell people how to work together and settle disagreements. How? Think about a team sport like soccer. The rules tell the players how to play together. For example, rules say which team should get the ball when it goes out of bounds. Laws work the same way in a community. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20584\",\n    \"image\": \"20584\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Rhode Island (B) South Carolina (C) Pennsylvania (D) Tennessee\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Pennsylvania. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20592\",\n    \"image\": \"20592\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Ashley's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nAshley built an electric circuit: she used wires to connect a battery to a light bulb, the light bulb to a small piece of copper, and the copper back to the battery. When the circuit was complete, the light turned on. Ashley observed the brightness of the light for five seconds. She then replaced the copper with a piece of iron of equal size and noted whether the light became brighter or dimmer. Ashley built three more of the same type of circuit. She repeated the tests with each circuit. Ashley recorded whether the circuits produced brighter light when the circuit included copper or when the circuit included iron.\\nFigure: a circuit with a battery, a light bulb, and a piece of copper.\\nOptions: (A) Do circuits that include iron produce dimmer light than circuits that include copper? (B) Can light bulbs stay lit longer when circuits include copper or when circuits include iron?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20600\",\n    \"image\": \"20600\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is chalk a solid or a liquid?\\nContext: N/A\\nOptions: (A) a solid (B) a liquid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid and liquid are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a shape of its own.\\nSome solids can be bent or broken easily. Others are hard to bend or break.\\nA glass cup is a solid. A sock is also a solid.\\nWhen matter is a liquid, it takes the shape of its container.\\nThink about pouring a liquid from a cup into a bottle. The shape of the liquid is different in the cup than in the bottle. But the liquid still takes up the same amount of space.\\nJuice is a liquid. Honey is also a liquid. Chalk is a solid. You can easily break chalk into pieces. But each piece will still have a size and shape of its own. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20602\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nWhere Darnel lives, winter is the rainiest season of the year.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nWhere Darnel lives, winter is the rainiest season of the year.\\nThis passage tells you about the usual precipitation where Darnel lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20604\",\n    \"image\": \"20604\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest south?\\nContext: N/A\\nOptions: (A) Maine (B) Virginia (C) Arkansas (D) Oregon\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the south arrow is pointing. Arkansas is farthest south. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20632\",\n    \"image\": \"20632\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Arizona?\\nContext: N/A\\nOptions: (A) Phoenix (B) Baton Rouge (C) Fort Wayne (D) Juneau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Phoenix is the capital of Arizona. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20634\",\n    \"image\": \"20634\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can a pine seed grow into?\\nContext: Pine seeds grow inside of pinecones.\\nOptions: (A) a female cone (B) a new plant (C) a male cone\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Conifers are plants that grow cones. Conifers use their cones to reproduce, or make new plants like themselves. How do conifers use their cones to reproduce?\\nConifers can grow male and female cones. Male cones make pollen, and female cones make eggs. Pollination is what happens when wind blows pollen from male cones onto female cones. After pollination, sperm from the pollen can combine with eggs. This is called fertilization. The fertilized eggs grow into seeds.\\nThe seeds can fall out of the cones and land on the ground. When a seed lands on the ground, it can germinate, or start to grow into a new plant. A seed can germinate and grow into a new plant.\\nThe new plant can grow male and female cones. But a seed does not grow into a male cone or a female cone. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20636\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the simile in this text suggest?\\nEmma rubbed coconut oil on her hands, which were like the parched earth during a drought.\\nContext: N/A\\nOptions: (A) Emma's hands were hot. (B) Emma's hands were dry and cracked.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA simile uses like or as to compare two things that are not actually alike.\\nThe cat's fur was as dark as the night. The text includes a simile, using like or as to compare two things that are not actually alike.\\nThe simile like the parched earth during a drought suggests that Emma's hands were dry and cracked. A drought is a period without rain; the ground during a drought can become hard and cracked. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20643\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nI want to shake off the dust of this one-horse town. I want to explore the world. I want to watch TV in a different time zone. I want to visit strange, exotic malls. I'm sick of eating hoagies! I want a grinder, a sub, a foot-long hero!\\n\\u2014Homer Simpson, The Simpsons\\nContext: N/A\\nOptions: (A) anaphora (B) chiasmus\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses anaphora, the repetition of the same word or words at the beginning of several phrases or clauses.\\nHomer repeats the words I want at the beginning of each sentence. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20647\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the amphibian traits listed above.\\nContext: Amphibians are a group of animals with similar traits. The following traits can be used to identify amphibians:\\nThey spend part of their lives in water and part on land.\\nThey have moist skin.\\nThey make eggs with no shells. Observe the animals and read the descriptions.\\nOptions: (A) Rough-skinned newts release poison from their moist skin. The poison has a strong smell that keeps predators away. Rough-skinned newts hatch from eggs with no shells. They live underwater for the first part of their lives. As adults, they live mostly on land. (B) Bengal tigers are one of the world's largest living cats. They have black, white, and orange fur. Female Bengal tigers feed their offspring milk. Male Bengal tigers can be almost twice as large as females!\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nAmphibians have the following traits:\\nThey spend part of their lives in water and part on land.\\nThey have moist skin.\\nThey make eggs with no shells.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA rough-skinned newt has the following traits:\\nIt spends part of its life in water and part on land.\\nIt has moist skin.\\nIt makes eggs with no shells.\\nA rough-skinned newt has the traits of an amphibian. A rough-skinned newt is an amphibian.\\nA Bengal tiger has the following traits:\\nIt feeds its offspring milk.\\nIt has hair.\\nA Bengal tiger does not have all of the traits of an amphibian. A Bengal tiger is a mammal. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20648\",\n    \"image\": \"20648\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk. A giraffe is an example of a mammal.\\nOptions: (A) barn owl (B) sea otter\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A sea otter is a mammal. It has fur and feeds its young milk.\\nA barn owl is a bird. It has feathers, two wings, and a beak. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20666\",\n    \"image\": \"20666\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these three objects have in common?\\nContext: Select the best answer.\\nOptions: (A) bumpy (B) bouncy (C) shiny\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Look at each object.\\nFor each object, decide if it has that property.\\nA bouncy object will bounce back from the floor if you drop it. The popcorn and the tree bark are not bouncy.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. None of the objects are shiny.\\nA bumpy object is covered in lumps and bumps. All three objects are bumpy.\\nThe property that all three objects have in common is bumpy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20669\",\n    \"image\": \"20669\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property do these four objects have in common?\\nContext: Select the best answer.\\nOptions: (A) stretchy (B) shiny (C) transparent\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it.\\nDifferent objects can have properties in common. You can use these properties to put objects into groups. Grouping objects by their properties is called classification. Look at each object.\\nFor each object, decide if it has that property.\\nA stretchy object gets longer when you pull on it. All four objects are stretchy.\\nYou can see clearly through a transparent object. None of the objects are transparent.\\nA shiny object reflects a lot of light. You can usually see your reflection in a shiny object. The wool hat is not shiny.\\nThe property that all four objects have in common is stretchy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20674\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nAlthough Fred hasn't worked in years, his mother prefers to say that he's between jobs right now.\\nContext: N/A\\nOptions: (A) paradox (B) euphemism\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected. The text uses a euphemism, a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nBetween jobs is an indirect way of saying unemployed. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20675\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which figure of speech is used in this text?\\nO wind, rend open the heat,\\nCut apart the heat,\\nRend it to tatters.\\n\\u2014H. D., \\\"Garden\\\"\\nContext: N/A\\nOptions: (A) apostrophe (B) anaphora\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nAnaphora is the repetition of the same word or words at the beginning of several phrases or clauses.\\nWe are united. We are powerful. We are winners.\\nAntithesis involves contrasting opposing ideas within a parallel grammatical structure.\\nI want to help, not to hurt.\\nApostrophe is a direct address to an absent person or a nonhuman entity.\\nOh, little bird, what makes you sing so beautifully?\\nAssonance is the repetition of a vowel sound in a series of nearby words.\\nTry to light the fire.\\nChiasmus is an expression in which the second half parallels the first but reverses the order of words.\\nNever let a fool kiss you or a kiss fool you.\\nA euphemism is a polite or indirect expression that is used to de-emphasize an unpleasant topic.\\nThe head of Human Resources would never refer to firing people, only to laying them off.\\nHyperbole is an obvious exaggeration that is not meant to be taken literally.\\nI ate so much that I think I might explode!\\nAn oxymoron is a joining of two seemingly contradictory terms.\\nSome reviewers are calling this book a new classic.\\nA paradox is a statement that might at first appear to be contradictory, but that may in fact contain some truth.\\nAlways expect the unexpected.\\nUnderstatement involves deliberately representing something as less serious or important than it really is.\\nAs you know, it can get a little cold in the Antarctic. The text uses apostrophe, a direct address to an absent person or a nonhuman entity.\\nO wind is a direct address to the wind, a nonhuman entity. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20677\",\n    \"image\": \"20677\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which better describes the Pantanal ecosystem?\\nContext: Figure: Pantanal.\\nThe Pantanal is a wetland ecosystem located mostly in Brazil.\\nOptions: (A) It has soil that is poor in nutrients. It also has only a few types of organisms. (B) It has land that is covered with water during most of the year. It also has soil that is rich in nutrients.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An ecosystem is formed when living and nonliving things interact in an environment. There are many types of ecosystems. Here are some ways in which ecosystems can differ from each other:\\nthe pattern of weather, or climate\\nthe type of soil or water\\nthe organisms that live there A wetland is a type of ecosystem. Wetlands have the following features: land that is covered with water during most of the year, soil that is rich in nutrients, and other water ecosystems nearby. So, the Pantanal has land that is covered with water during most of the year. It also has soil that is rich in nutrients. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20690\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nThe Shahs argue we should eat our pizza with a fork and knife because it's less messy, but what do they know? Have you seen their house? It's a disaster!\\nContext: N/A\\nOptions: (A) ad hominem: an attack against the person making the argument, rather than the argument itself (B) bandwagon fallacy: the assumption that the popular choice is automatically correct (C) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that the Shahs' opinion on eating pizza is invalid because their house is messy. This is a personal attack that isn't relevant to whether the argument is valid. This illustrates a type of logical fallacy known as ad hominem. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20694\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which tense does the sentence use?\\nLester will join the bike race.\\nContext: N/A\\nOptions: (A) present tense (B) past tense (C) future tense\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Present tense verbs tell you about something that is happening now.\\nMost present-tense verbs are regular. They have no ending, or they end in -s or -es.\\nTwo verbs are irregular in the present tense, to be and to have. You must remember their forms.\\nPast tense verbs tell you about something that has already happened.\\nMost past-tense verbs are regular. They end in -ed.\\nSome verbs are irregular in the past tense. You must remember their past-tense forms.\\nFuture tense verbs tell you about something that is going to happen.\\nAll future-tense verbs use the word will.\\nPresent | Past | Future\\nwalk, walks | walked | will walk\\ngo, goes | went | will go The sentence is in future tense. You can tell because it uses will before the main verb, join. The verb tells you about something that is going to happen. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20699\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word bit on a dictionary page with the following guide words?\\nbase - bury\\nContext: N/A\\nOptions: (A) yes (B) no\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince bit is between the guide words base - bury, it would be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20701\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Rick acquired this trait?\\nContext: Read the description of a trait.\\nRick knows how to knit sweaters.\\nOptions: (A) Rick knits sweaters using cotton, wool, and other types of yarn. (B) Rick learned how to knit in an after school program.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20703\",\n    \"image\": \"20703\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Africa (B) North America (C) South America (D) Europe\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Africa. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20709\",\n    \"image\": \"20709\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Montana?\\nContext: N/A\\nOptions: (A) Plymouth (B) Boise (C) Helena (D) Billings\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Helena is the capital of Montana. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20710\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"How long is a paintbrush?\\nContext: Select the best estimate.\\nOptions: (A) 12 yards (B) 12 feet (C) 12 miles (D) 12 inches\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nWhen you are using customary units, length may be written with units of inches, feet, yards, or miles.\\nThere are 12 inches in 1 foot, and 3 feet in 1 yard. There are 5,280 feet in 1 mile.\\nA football is about 1 foot long. A football field is 100 yards long. The best estimate for the length of a paintbrush is 12 inches.\\n12 feet, 12 yards, and 12 miles are all too long. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20712\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Choose the poem that uses end rhyme.\\nContext: From Robert Frost, \\\"In the Home Stretch\\\" and from Amy Lowell, \\\"Climbing\\\"\\nOptions: (A) She stood against the kitchen sink, and looked\\nOver the sink out through a dusty window\\nAt weeds the water from the sink made tall.\\nShe wore her cape; her hat was in her hand. (B) High up in the apple tree climbing I go,\\nWith the sky above me, the earth below.\\nEach branch is the step of a wonderful stair\\nWhich leads to the town I see shining up there.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Poetry is a special kind of writing. It has many elements that make it different from ordinary writing. Knowing these elements can help you talk about poetry, understand it better, and enjoy it more.\\nA poem rhymes when it has a pattern of words that end in the same sound.\\nEnd rhyme is when the rhymes appear at the end of a poem's lines.\\nLittle Betty Blue,\\nLost her holiday shoe.\\n\\u2014From Mother Goose\\nInternal rhyme is when at least one of the rhyming words appears inside the poem's lines.\\nSweet dreams of pleasant streams.\\n\\u2014From William Blake, \\\"A Cradle Song\\\"\\nRhythm is the pattern of strong and weak syllables, or stress, in a poem. You can recognize rhythm in a poem by listening to how it sounds. Poems with regular rhythm have a beat, like in music.\\nHe watches from his mountain walls,\\nAnd like a thunderbolt he falls.\\n\\u2014From Alfred, Lord Tennyson, \\\"The Eagle\\\"\\nThe syllables in bold are strong. We say them with more force than the other syllables. In this poem, every weak syllable is followed by a strong syllable. Each line sounds like da-DUM da-DUM da-DUM da-DUM. To better hear the rhythm, try reading it aloud while clapping on each strong syllable.\\nFree verse is when a poem has neither a regular rhythm nor a rhyme pattern.\\nThe old bridge has a wrinkled face.\\nHe bends his back\\nFor us to go over.\\n\\u2014From Hilda Conkling, \\\"The Old Bridge\\\"\\nThe syllables in bold are strong. You can see this poem does not have a regular rhythm. It also doesn't have a rhyme pattern.\\nRepetition is when words, phrases, or whole lines are repeated.\\nThe dainty flying squirrel\\nIn vest of shining white,\\nIn coat of silver gray,\\nAnd vest of shining white.\\n\\u2014Adapted from Mary E. Burt, \\\"The Flying Squirrel\\\"\\nAlliteration is when beginning consonant sounds are repeated in words that are close together.\\nWhere the wild men watched and waited\\nWolves in the forest, and bears in the bush.\\n\\u2014From Bayard Taylor, \\\"A Night with a Wolf\\\"\\nOnomatopoeia is when language sounds like what it talks about.\\nSometimes the onomatopoeia uses made-up words:\\nTlot-tlot! tlot-tlot! Had they heard it? The horse hoofs ringing clear.\\n\\u2014From Alfred Noyes, \\\"The Highwayman\\\"\\nSometimes the onomatopoeia uses real words:\\nHark! the honey bee is humming.\\n\\u2014From Mary Howitt, \\\"The Voice of Spring\\\" This poem uses end rhyme. Its rhymes come at the end of its lines.\\nWith the sky above me, the earth below.\\nWhich leads to the town I see shining up there. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20721\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence is more formal?\\nContext: N/A\\nOptions: (A) The student council requested that more lockers be installed ASAP to accommodate the incoming freshman class. (B) The student council requested that more lockers be installed immediately to accommodate the incoming freshman class.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Formal writing is used for essays, business letters, and reports. The following types of informal language should be avoided in formal writing:\\nType | Examples\\nslang | cool, awesome\\nidioms | knock your socks off\\nconversational language | gonna, kinda, yeah\\nabbreviated language | ASAP, FYI\\noverly simple or imprecise language | he got some stuff at the store\\ncontractions | can't, won't\\nContractions are not as informal as the other types, but they should be used sparingly in formal writing.\\nCompare the following sentences. The first is informal. The second is formal.\\nInformal: Yeah, ostriches can't fly, but they're awesome runners.\\nFormal: Though ostriches are flightless, they are remarkably adept runners.\\n The first sentence is less formal. You can tell because it uses abbreviated language (ASAP).\\nThe second sentence does not use abbreviated language, so it is more formal. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20722\",\n    \"image\": \"20722\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Will these magnets attract or repel each other?\\nContext: Two magnets are placed as shown.\\nOptions: (A) attract (B) repel\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart.\\nWhether a magnet attracts or repels other magnets depends on the positions of its poles, or ends. Every magnet has two poles: north and south.\\nHere are some examples of magnets. The north pole of each magnet is labeled N, and the south pole is labeled S.\\nIf opposite poles are closest to each other, the magnets attract. The magnets in the pair below attract.\\nIf the same, or like, poles are closest to each other, the magnets repel. The magnets in both pairs below repel.\\n To predict if these magnets will attract or repel, look at which poles are closest to each other.\\nThe north pole of one magnet is closest to the south pole of the other magnet. Opposite poles attract. So, these magnets will attract each other. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20729\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nFrom the look on her face, Diana is carrying an albatross around her neck.\\nContext: N/A\\nOptions: (A) a poem (B) Egyptian history\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion an albatross around her neck is a poem.\\nIn Samuel Taylor Coleridge's poem \\\"The Rime of the Ancient Mariner,\\\" a sailor shoots and kills an albatross, an action that curses the ship and crew. As his crew members die, the Ancient Mariner feels his guilt hanging like the albatross around his neck.\\nThe allusion an albatross around her neck means a burden a person must bear. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20732\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which correctly shows the title of a magazine?\\nContext: N/A\\nOptions: (A) Better homes and Gardens (B) Better Homes and Gardens\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"In a title, capitalize the first word, the last word, and every important word in between.\\nThe Wind in the Willows James and the Giant Peach\\nThese words are not important in titles:\\nArticles, a, an, the\\nShort prepositions, such as at, by, for, in, of, on, to, up\\nCoordinating conjunctions, such as and, but, or Capitalize the first word, the last word, and every important word in between. The word and is not important, so it should not be capitalized.\\nThe correct title is Better Homes and Gardens. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20734\",\n    \"image\": \"20734\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Texas (B) Oklahoma (C) Virginia (D) Georgia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Virginia. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20742\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which object has less thermal energy?\\nContext: The objects are identical except for their temperatures.\\nOptions: (A) a 125-gram glass of grape juice at a temperature of 15\\u00b0C (B) a 125-gram glass of grape juice at a temperature of 25\\u00b0C\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All solids, liquids, and gases are made of matter. Matter is made up of tiny particles that are always moving. The energy from the motion of these particles is called thermal energy.\\nTemperature measures how hot or cold matter is. If the particles in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature. The two glasses of grape juice have the same mass but different temperatures. Since the 15\\u00b0C glass of grape juice is colder than the 25\\u00b0C glass of grape juice, it has less thermal energy. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20745\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the mass of a cement truck?\\nContext: Select the best estimate.\\nOptions: (A) 24 pounds (B) 24 ounces (C) 24 tons\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nMass is a measurement of how much matter something contains.\\nThere are many different units of mass. When you are using customary units, mass may be written with units of ounces, pounds, or tons.\\nThere are 16 ounces in 1 pound and 2,000 pounds in 1 ton.\\nSo, 1 ounce is less than 1 pound and much less than 1 ton.\\nA slice of bread has a mass of about 1 ounce, while a can of beans has a mass of about 1 pound. A small car has a mass of about 1 ton. The best estimate for the mass of a cement truck is 24 tons.\\n24 ounces and 24 pounds are both too light. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20747\",\n    \"image\": \"20747\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which part of the tomato plant makes the seeds?\\nContext: A tomato plant can grow seeds.\\nOptions: (A) the fruit (B) the flowers\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Many plants have flowers. These plants can use their flowers to reproduce, or make new plants like themselves. How do plants use their flowers to reproduce?\\nFirst, the male part of the flower makes pollen, and the female part makes eggs. Animals, wind, or water can move pollen. Pollination is what happens when pollen is moved to the female part of the flower.\\nAfter pollination, sperm from the pollen can combine with the eggs. This is called fertilization. The fertilized eggs grow into seeds. The fruit grows around the seeds. Later, a seed can fall out of the fruit. It can germinate, or start to grow into a new plant. Flowers make seeds. After a flower is pollinated, male cells from the pollen combine with eggs. This is called fertilization. The fertilized eggs grow into seeds.\\nThe fruit can grow around the seeds. But the fruit does not make seeds. Both the fruit and the seeds grow from parts of the flower. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20749\",\n    \"image\": \"20749\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk. A human is an example of a mammal.\\nOptions: (A) painted stork (B) red kangaroo\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A painted stork is a bird. It has feathers, two wings, and a beak.\\nStorks wade in shallow water to look for food. Storks eat fish, insects, worms, and other small animals.\\nA red kangaroo is a mammal. It has fur and feeds its young milk.\\nKangaroos hop to move around. They use their large tails for balance while hopping. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20751\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Peter inherited this trait?\\nContext: Read the description of a trait.\\nPeter has straight hair.\\nOptions: (A) Peter and his father both have short hair. (B) Peter's parents were born with straight hair. They passed down this trait to Peter.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20758\",\n    \"image\": \"20758\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following could Kenny's test show?\\nContext: People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design.\\nThe passage below describes how the engineering-design process was used to test a solution to a problem. Read the passage. Then answer the question below.\\n\\nKenny was a landscape architect who was hired to design a new city park. The city council wanted the park to have space for outdoor concerts and to have at least 20% of the park shaded by trees. Kenny thought the concert area should be at least 150 meters from the road so traffic noise didn't interrupt the music. He developed three possible designs for the park with the concert area in a different location in each design. Then, he tested each design by measuring the distance between the road and the concert area.\\nFigure: studying an architect's design.\\nOptions: (A) if at least 20% of the park would be shaded by trees in each design (B) which design would have the greatest distance between the concert area and the road (C) which design would have the least traffic noise in the concert area\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"People can use the engineering-design process to develop solutions to problems. One step in the process is testing if a potential solution meets the requirements of the design. How can you determine what a test can show? You need to figure out what was tested and what was measured.\\nImagine an engineer needs to design a bridge for a windy location. She wants to make sure the bridge will not move too much in high wind. So, she builds a smaller prototype, or model, of a bridge. Then, she exposes the prototype to high winds and measures how much the bridge moves.\\nFirst, identify what was tested. A test can examine one design, or it may compare multiple prototypes to each other. In the test described above, the engineer tested a prototype of a bridge in high wind.\\nThen, identify what the test measured. One of the criteria for the bridge was that it not move too much in high winds. The test measured how much the prototype bridge moved.\\nTests can show how well one or more designs meet the criteria. The test described above can show whether the bridge would move too much in high winds. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20762\",\n    \"image\": \"20762\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"In this food chain, the amphipod is a consumer. Why?\\nContext: This diagram shows a food chain from Lake Superior, a freshwater ecosystem on the border of the United States and Canada.\\nOptions: (A) It eats another living thing. (B) It makes its own food.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every living thing needs food to stay alive. Living things get their food in different ways. A food chain shows how living things in an ecosystem get their food.\\nProducers make their own food. Many producers use carbon dioxide, water, and sunlight to make sugar. This sugar is food for the producer.\\nConsumers eat other living things. Consumers cannot make their own food. In this food chain, the amphipod is a consumer because it eats another living thing. The amphipod in this food chain eats the algae. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20770\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Boba's phenotype for the fur color trait?\\nContext: In a group of rock pocket mice, some individuals have dark fur and others have light fur. In this group, the gene for the fur color trait has two alleles. The allele for dark fur (F) is dominant over the allele for light fur (f).\\nBoba is a rock pocket mouse from this group. Boba has the homozygous genotype ff for the fur color gene.\\nOptions: (A) dark fur (B) light fur\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait.\\nSome traits, like flower color in pea plants, are controlled by a single gene. Most plants and animals have a genotype made up of two alleles for these traits. These two alleles determine whether an organism is homozygous or heterozygous for the gene.\\nAn organism with two identical alleles for a gene is homozygous for that gene. A pea plant with the genotype FF or ff is homozygous for the flower color gene.\\nAn organism with two different alleles for a gene is heterozygous for that gene. A pea plant with the genotype Ff is heterozygous for the flower color gene.\\nThe types of alleles in an organism's genotype determine the organism's phenotype. Some alleles have types called dominant and recessive. These two types can cause different versions of a trait to appear as the organism's phenotype.\\nA dominant allele causes its version of the trait to appear even when the organism also has a recessive allele for the gene. In pea plants, the F allele, which causes purple flowers, is dominant over the f allele. A pea plant with at least one F allele will have the F allele's version of the flower color trait. So, a plant with the genotype FF or Ff will have purple flowers.\\nA recessive allele causes its version of the trait to appear only when the organism does not have any dominant alleles for the gene. In pea plants, the f allele, which causes white flowers, is recessive to the F allele. A pea plant with only f alleles will have the f allele's version of the flower color trait. So, a plant with the genotype ff will have white flowers. Boba's genotype for the fur color gene is ff. Boba's genotype of ff has only f alleles. The f allele is for light fur. So, Boba's phenotype for the fur color trait must be light fur.\\nTo check this answer, consider whether Boba's alleles are dominant or recessive. The allele for dark fur (F) is dominant over the allele for light fur (f). This means F is a dominant allele, and f is a recessive allele.\\nBoba's genotype of ff has only recessive alleles. An organism with only recessive alleles for a gene will have the recessive allele's version of the trait. So, Boba's phenotype for the fur color trait must be light fur. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20779\",\n    \"image\": \"20779\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the organism in the same genus as the palmate newt.\\nContext: This organism is a palmate newt. Its scientific name is Lissotriton helveticus.\\nOptions: (A) Taricha torosa (B) Ambystoma opacum (C) Lissotriton vulgaris\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists use scientific names to identify organisms. Scientific names are made of two words.\\nThe first word in an organism's scientific name tells you the organism's genus. A genus is a group of organisms that share many traits.\\nA genus is made up of one or more species. A species is a group of very similar organisms. The second word in an organism's scientific name tells you its species within its genus.\\nTogether, the two parts of an organism's scientific name identify its species. For example Ursus maritimus and Ursus americanus are two species of bears. They are part of the same genus, Ursus. But they are different species within the genus. Ursus maritimus has the species name maritimus. Ursus americanus has the species name americanus.\\nBoth bears have small round ears and sharp claws. But Ursus maritimus has white fur and Ursus americanus has black fur.\\n A palmate newt's scientific name is Lissotriton helveticus. The first word of its scientific name is Lissotriton.\\nLissotriton vulgaris is in the genus Lissotriton. The first word of its scientific name is Lissotriton. So, Lissotriton vulgaris and Lissotriton helveticus are in the same genus.\\nTaricha torosa is in the genus Taricha. The first word of its scientific name is Taricha. So, Taricha torosa and Lissotriton helveticus are not in the same genus.\\nAmbystoma opacum is in the genus Ambystoma. The first word of its scientific name is Ambystoma. So, Ambystoma opacum and Lissotriton helveticus are not in the same genus. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20782\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Louie's phenotype for the cheek color trait?\\nContext: In a group of cockatiels, some individuals have bright orange cheeks and others have pale orange cheeks. In this group, the gene for the cheek color trait has two alleles. The allele R is for bright orange cheeks, and the allele r is for pale orange cheeks.\\nLouie, a cockatiel from this group, has pale orange cheeks. Louie has two alleles for pale orange cheeks.\\nOptions: (A) pale orange cheeks (B) rr\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Louie's observable version of the cheek color trait is pale orange cheeks. So, Louie's phenotype for the cheek color trait is pale orange cheeks. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20788\",\n    \"image\": \"20788\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the expected ratio of offspring with vestigial wings to offspring with normal wings? Choose the most likely ratio.\\nContext: This passage describes the wing type trait in fruit flies:\\nSome scientists breed fruit flies to learn how traits are inherited. These scientists often use flies with vestigial wings, which are shorter and stubbier than normal wings. Fruit flies with vestigial wings cannot fly, so they are easier for scientists to handle and study.\\nIn a group of fruit flies, some individuals have normal wings and others have vestigial wings. In this group, the gene for the wing type trait has two alleles. The allele for vestigial wings (n) is recessive to the allele for normal wings (N).\\nThis Punnett square shows a cross between two fruit flies.\\nOptions: (A) 1:3 (B) 4:0 (C) 3:1 (D) 2:2 (E) 0:4\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Offspring phenotypes: dominant or recessive?\\nHow do you determine an organism's phenotype for a trait? Look at the combination of alleles in the organism's genotype for the gene that affects that trait. Some alleles have types called dominant and recessive. These two types can cause different versions of the trait to appear as the organism's phenotype.\\nIf an organism's genotype has at least one dominant allele for a gene, the organism's phenotype will be the dominant allele's version of the gene's trait.\\nIf an organism's genotype has only recessive alleles for a gene, the organism's phenotype will be the recessive allele's version of the gene's trait.\\nA Punnett square shows what types of offspring a cross can produce. The expected ratio of offspring types compares how often the cross produces each type of offspring, on average. To write this ratio, count the number of boxes in the Punnett square representing each type.\\nFor example, consider the Punnett square below.\\n | F | f\\nF | FF | Ff\\nf | Ff | ff\\nThere is 1 box with the genotype FF and 2 boxes with the genotype Ff. So, the expected ratio of offspring with the genotype FF to those with Ff is 1:2.\\n To determine how many boxes in the Punnett square represent offspring with vestigial wings or normal wings, consider whether each phenotype is the dominant or recessive allele's version of the wing type trait. The question tells you that the n allele, which is for vestigial wings, is recessive to the N allele, which is for normal wings.\\nVestigial wings is the recessive allele's version of the wing type trait. A fruit fly with the recessive version of the wing type trait must have only recessive alleles for the wing type gene. So, offspring with vestigial wings must have the genotype nn.\\nThere are 2 boxes in the Punnett square with the genotype nn. These boxes are highlighted below.\\nNormal wings is the dominant allele's version of the wing type trait. A fruit fly with the dominant version of the wing type trait must have at least one dominant allele for the wing type gene. So, offspring with normal wings must have the genotype NN or Nn.\\nThere are 2 boxes in the Punnett square with the genotype NN or Nn. These boxes are highlighted below.\\nSo, the expected ratio of offspring with vestigial wings to offspring with normal wings is 2:2. This means that, on average, this cross will produce 2 offspring with vestigial wings for every 2 offspring with normal wings. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20794\",\n    \"image\": \"20794\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What can Ethan and Irma trade to each get what they want?\\nContext: Trade happens when people agree to exchange goods and services. People give up something to get something else. Sometimes people barter, or directly exchange one good or service for another.\\nEthan and Irma open their lunch boxes in the school cafeteria. Both of them could be happier with their lunches. Ethan wanted broccoli in his lunch and Irma was hoping for tomatoes. Look at the images of their lunches. Then answer the question below.\\nOptions: (A) Ethan can trade his tomatoes for Irma's sandwich. (B) Irma can trade her almonds for Ethan's tomatoes. (C) Ethan can trade his tomatoes for Irma's broccoli. (D) Irma can trade her broccoli for Ethan's oranges.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Ethan wanted broccoli in his lunch and Irma was hoping for tomatoes. Look at the labeled part of the images.\\nEthan has tomatoes. Irma has broccoli. They can trade tomatoes for broccoli to both be happier. Trading other things would not help either person get more items they want. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20802\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which closing is correct for a letter?\\nContext: N/A\\nOptions: (A) With love,\\nJosh (B) with love,\\nJosh\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A letter starts with a greeting and ends with a closing. For each one, capitalize the first word and end with a comma. You should also capitalize proper nouns, such as Aunt Sue.\\nDear Aunt Sue,\\nI'm glad you could come to my party, and\\nthank you for the birthday gift. I could not have\\nasked for a better one! Every time I see it, I think\\nof you.\\nWith love,\\nRory The first closing is correct:\\nIts first word is capitalized, and it ends with a comma. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20806\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Would you find the word parent on a dictionary page with the following guide words?\\npresident - public\\nContext: N/A\\nOptions: (A) no (B) yes\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on.\\nIf one word is shorter, and there are no more letters to compare, then the shorter word comes first in alphabetical order. For example, be comes before bed. Put the words in alphabetical order.\\nSince parent is not between the guide words president - public, it would not be found on that page. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20815\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nphotosynthesis\\na penny tarnishing\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are caused by heating. (C) Both are chemical changes. (D) Both are only physical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of very small particles called atoms. Atoms can be linked together by chemical bonds. When two or more atoms link together, they form a molecule.\\nIn a chemical change, the chemical bonds in the molecules break. The atoms then link together to form different molecules. The types of molecules in matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. As paper burns, paper molecules react with oxygen molecules in the air. This reaction breaks the chemical bonds in the molecules. The atoms then link together in a different way to form different molecules. For example, carbon dioxide molecules are formed when paper burns.\\nIn a physical change, chemical bonds do not break. The types of molecules in matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, water vaporizing is a physical change that can be caused by heating. Liquid water and water vapor are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nPhotosynthesis is a chemical change. Plants make sugar using carbon dioxide, water, and energy from sunlight.\\nMetal turning less shiny over time is called tarnishing. A penny tarnishing is a chemical change. When air touches the penny, the surface of the penny changes into a different type of matter. This matter makes the penny dull.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nNeither change is caused by heating.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20820\",\n    \"image\": \"20820\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different shapes.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 1. (B) The magnitude of the magnetic force is the same in both pairs. (C) The magnitude of the magnetic force is smaller in Pair 2.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Both magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20829\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Mabel acquired this trait?\\nContext: Read the description of a trait.\\nMabel has a scar on her left leg.\\nOptions: (A) Some scars fade more quickly than others. (B) Mabel's scar was caused by an accident. She cut her leg when she was climbing a tree.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20842\",\n    \"image\": \"20842\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Alaska?\\nContext: N/A\\nOptions: (A) Lexington (B) Sacramento (C) Salt Lake City (D) Juneau\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Juneau is the capital of Alaska. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20848\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the following trait inherited or acquired?\\nShelby has naturally blond hair.\\nContext: Hint: Some people dye their hair. But this does not change their natural hair color.\\nOptions: (A) acquired (B) inherited\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Children do not inherit their parents' acquired traits. Humans do not choose their natural hair color. Instead, children get their natural hair color from their parents. So, Shelby's hair color is an inherited trait. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20849\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one animal that has all of the mammal traits listed above.\\nContext: Mammals are a group of animals with similar traits. The following traits can be used to identify mammals:\\nThey feed their offspring milk.\\nThey have fur or hair. Observe the animals and read the descriptions.\\nOptions: (A) Barn owls live on every continent except Antarctica. They have feathers, two wings, and a beak. They hatch from eggs with shells. (B) Florida manatees have hairs on their bodies that are similar to whiskers. These hairs help the manatees feel the water moving around them. Female manatees feed their offspring milk.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists sort animals with similar traits into groups. This is called classification. Classification helps scientists learn about how animals live.\\nHow do scientists classify animals? First, they make observations about an animal. Scientists observe the animal's traits, including its body parts and behavior. Then, scientists compare the animal's traits to other animals' traits. Scientists classify animals with similar traits into a group. To decide if an animal is part of a group, look at the traits of the group.\\nMammals have the following traits:\\nThey feed their offspring milk.\\nThey have fur or hair.\\nCompare each animal's traits to the group's traits. Select the animal with traits similar to the group's traits.\\nA Florida manatee has the following traits:\\nIt feeds its offspring milk.\\nIt has hair.\\nA Florida manatee has the traits of a mammal. A Florida manatee is a mammal.\\nA barn owl has the following traits:\\nIt has feathers.\\nIt has wings.\\nIt has a beak.\\nIt makes eggs with shells.\\nA barn owl does not have all of the traits of a mammal. A barn owl is a bird. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20851\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which brick has less thermal energy?\\nContext: Two 2-kilogram bricks are identical except for their temperatures.\\nOptions: (A) the hotter brick (B) the colder brick\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Matter is made of tiny particles called atoms. Atoms are always moving.\\nThe energy of moving atoms is called thermal energy. The total amount of thermal energy in matter depends on three things: the type of matter, the amount of matter, and how fast the atoms are moving.\\nTemperature measures how hot or cold matter is. If the atoms in matter slow down, the temperature goes down. The matter now has both less thermal energy and a lower temperature.\\nWhat happens if the amount of matter changes? A 2-kilogram brick at 70\\u00b0F has twice as much thermal energy as a 1-kilogram brick at 70\\u00b0F. The two bricks have the same temperature, but the larger brick has twice as many atoms. So, it has twice as much thermal energy. The two bricks are made of the same material and have the same mass. So, the colder brick has less thermal energy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20854\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What does the personification in this text suggest?\\nKeith tried to ignore his unfinished essay, but it glared at him from across the room.\\nContext: N/A\\nOptions: (A) It bothered Keith that the essay wasn't finished. (B) The essay was printed in large type.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Figures of speech are words or phrases that use language in a nonliteral or unusual way. They can make writing more expressive.\\nPersonification is giving human characteristics to nonhuman things.\\nThe trees danced in the wind. The text uses personification, giving human characteristics to nonhuman things.\\nGlared at him suggests that it bothered Keith that the essay wasn't finished. The essay is like a person who is bothering Keith. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20860\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the one true statement.\\nContext: N/A\\nOptions: (A) Lysosomes contain the master plan for all cell activities and cell development in animal cells. (B) Plant cells can have mitochondria but do not have vacuoles. (C) The cell membrane controls which substances enter and leave a plant cell.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \" The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20864\",\n    \"image\": \"20864\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement.\\nCalcium oxide is ().\\nContext: The model below represents calcium oxide. Calcium oxide is used to make cement and steel.\\nOptions: (A) an elementary substance (B) a compound\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are more than 100 different chemical elements, or types of atoms. Chemical elements make up all of the substances around you.\\nA substance may be composed of one chemical element or multiple chemical elements. Substances that are composed of only one chemical element are elementary substances. Substances that are composed of multiple chemical elements bonded together are compounds.\\nEvery chemical element is represented by its own atomic symbol. An atomic symbol may consist of one capital letter, or it may consist of a capital letter followed by a lowercase letter. For example, the atomic symbol for the chemical element fluorine is F, and the atomic symbol for the chemical element beryllium is Be.\\nScientists use different types of models to represent substances whose atoms are bonded in different ways. One type of model is a space-filling model. The space-filling model below represents the compound rubidium bromide.\\nIn a space-filling model, the balls represent atoms that are bonded together. Notice that the balls in the model above are not all the same color. Each color represents a different chemical element. The legend shows the color and the atomic symbol for each chemical element in the substance. Use the model to determine whether calcium oxide is an elementary substance or a compound.\\nStep 1: Interpret the model.\\n.\\nUse the legend to determine the chemical element represented by each color. The colors and atomic symbols from the legend are shown in the table below. The table also includes the names of the chemical elements represented in the model.\\nYou can see from the model that calcium oxide is composed of oxygen atoms and calcium atoms bonded together.\\nStep 2: Determine whether the substance is an elementary substance or a compound.\\nYou know from Step 1 that calcium oxide is composed of two chemical elements: oxygen and calcium. Since calcium oxide is composed of multiple chemical elements bonded together, calcium oxide is a compound. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20866\",\n    \"image\": \"20866\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What type of rock is phyllite?\\nContext: This is a piece of phyllite. The word phyllite comes from the Greek word for leaf. The rock usually has a greenish color.\\nPhyllite can form when a metamorphic rock called slate is changed by high temperature and pressure. Phyllite is made of minerals such as quartz and mica.\\nOptions: (A) igneous (B) sedimentary (C) metamorphic\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Igneous rock is formed when melted rock cools and hardens into solid rock. This type of change can occur at Earth's surface or below it.\\nSedimentary rock is formed when layers of sediment are pressed together, or compacted, to make rock. This type of change occurs below Earth's surface.\\nMetamorphic rock is formed when a rock is changed by very high temperature and pressure. This type of change often occurs deep below Earth's surface. Over time, the old rock becomes a new rock with different properties. Phyllite is a metamorphic rock. Like other metamorphic rocks, it forms when a rock is changed by high temperature and pressure.\\nHeat and pressure can change the type and arrangement of minerals in a rock. This change forms a new rock with different properties. Phyllite can form when other metamorphic rocks are changed by heat and pressure. Slate is a rock that can change into phyllite. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20883\",\n    \"image\": \"20883\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Montana?\\nContext: N/A\\nOptions: (A) Nampa (B) Missoula (C) Honolulu (D) Helena\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Helena is the capital of Montana. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20887\",\n    \"image\": \"20887\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which bird's beak is also adapted to catch fish?\\nContext: Common loons live near lakes, rivers, and oceans. They can dive 60 meters below the surface to catch fish.\\nFigure: common loon.\\nOptions: (A) common kingfisher (B) European robin\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An adaptation is an inherited trait that helps an organism survive or reproduce. Adaptations can include both body parts and behaviors.\\nThe shape of a bird's beak is one example of an adaptation. Birds' beaks can be adapted in different ways. For example, a sharp hooked beak might help a bird tear through meat easily. A short, thick beak might help a bird break through a seed's hard shell. Birds that eat similar food often have similar beaks. Look at the picture of the common loon.\\nThe common loon has a long, straight beak with a sharp tip. Its beak is adapted to catch fish. The common loon can use its beak to grab the slippery body of a fish underwater. It can also catch a fish by stabbing it with its beak.\\nNow look at each bird. Figure out which bird has a similar adaptation.\\nThe common kingfisher has a long, straight beak with a sharp tip. Its beak is adapted to catch fish.\\nThe European robin has a short, thin beak. Its beak is not adapted to catch fish. The European robin uses its beak to eat insects and other small invertebrates. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20888\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nOn average, the coldest month in Hof, Iceland, is January.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nOn average, the coldest month in Hof, Iceland, is January.\\nThis passage tells you about the usual temperature pattern in Hof. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20889\",\n    \"image\": \"20889\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Africa (B) Australia (C) Antarctica (D) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Antarctica. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20890\",\n    \"image\": \"20890\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the Steller's jay's scientific name?\\nContext: The Steller's jay lives throughout North America. Georg Wilhelm Steller collected plant and animal specimens in Alaska. He identified the Steller's jay in 1741. The bird's scientific name refers to Georg Wilhelm Steller.\\nOptions: (A) Cyanocitta stelleri (B) Cyanocitta cristata\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When a scientist identifies a new organism, he or she chooses its scientific name.\\nSometimes, an organism is named after the place where it was first found. Other times, an organism is named after the scientist who first identified it. Or, the scientific name might describe the organism's physical traits.\\nMany of the words that make up scientific names are based on words from old languages, like Latin and classical Greek. Sometimes, English words are changed to make them sound more like Latin or Greek. The new words are then used in an organism's scientific name. This organism's scientific name refers to Georg Wilhelm Steller.\\nThe word stelleri refers to Georg Wilhelm Steller. So, the Steller's jay's scientific name is Cyanocitta stelleri. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20891\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which announcement is more formal?\\nContext: N/A\\nOptions: (A) The Riverside Law Firm is so happy to tell you . . . (B) The Riverside Law Firm is pleased to announce . . .\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The second announcement is more formal. It uses more elevated language (pleased to announce). The other announcement sounds more conversational (so happy). The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20907\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which text uses the word literally in its traditional sense?\\nContext: N/A\\nOptions: (A) Jasmine adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally hundreds of years old. (B) Jasmine adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally a million years old.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Words change in meaning when speakers begin using them in new ways. For example, the word peruse once only meant to examine in detail, but it's now also commonly used to mean to look through in a casual manner.\\nWhen a word changes in meaning, its correct usage is often debated. Although a newer sense of the word may be more commonly used, many people consider a word's traditional definition to be the correct usage. Being able to distinguish the different uses of a word can help you use it appropriately for different audiences.\\nBritney perused her notes, carefully preparing for her exam.\\nThe traditional usage above is considered more standard.\\nDavid perused the magazine, absentmindedly flipping through the pages.\\nThe nontraditional usage above is now commonly used, but traditional style guides generally advise against it. The first text uses literally in its traditional sense: in a factual, non-exaggerated way.\\nJasmine adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally hundreds of years old.\\nThe second text uses literally in its nontraditional sense: nearly or in effect (often exaggerated). The bridge is old, but it is not actually a million years old.\\nJasmine adores the classic Renaissance style of the Rialto Bridge in Venice. She was surprised to learn that the bridge remains functional even though it is literally a million years old.\\nMost style guides recommend to avoid using the nontraditional sense of the word literally because it is generally considered incorrect. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20908\",\n    \"image\": \"20908\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which property matches this object?\\nContext: Select the better answer.\\nOptions: (A) scratchy (B) fragile\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An object has different properties. A property of an object can tell you how it looks, feels, tastes, or smells. Properties can also tell you how an object will behave when something happens to it. Look at the object.\\nThink about each property.\\nA scratchy object is rough and itchy against your skin. The ceramic plate is not scratchy.\\nA fragile object will break into pieces if you drop it. The ceramic plate is fragile. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20915\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nGrilling a hamburger is a ().\\nContext: N/A\\nOptions: (A) physical change (B) chemical change\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nBurning a piece of paper is a chemical change. When paper gets hot enough, it reacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nCutting a piece of paper is a physical change. The cut pieces are still made of paper.\\nA change of state is a type of physical change. For example, ice melting is a physical change. Ice and liquid water are made of the same type of matter: water. Grilling a hamburger is a chemical change. Heat from the grill causes the matter in the meat to change. Cooked meat and raw meat are different types of matter. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20916\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) moon jellyfish (B) fireworm (C) common ostrich (D) castor bean tick\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. Like other jellyfishes, a moon jellyfish is an invertebrate. It does not have a backbone. It has a soft body.\\nA castor bean tick is an insect. Like other insects, a castor bean tick is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA fireworm is a worm. Like other worms, a fireworm is an invertebrate. It does not have a backbone. It has a soft body.\\nA common ostrich is a bird. Like other birds, a common ostrich is a vertebrate. It has a backbone. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20917\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which letter opening is more formal?\\nContext: N/A\\nOptions: (A) Dear Dave, (B) Dear Mr. Oliver,\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Informal writing is typically used in casual situations or when communicating with someone you know well. Informal language often expresses familiarity and tends to sound more like speech. It uses more conversational language, such as slang, idioms, abbreviations, imprecise language, and contractions.\\nFormal writing is typically used in academic and business writing or when writing directly to an authority figure. It tends to be more courteous and impersonal, avoiding overly familiar or conversational language.\\nCompare the following sentences.\\nInformal: Yeah, ostriches can't fly, but I think they're awesome.\\nMore formal: Ostriches may be flightless, but they're remarkable runners.\\nMost formal: Though flightless, ostriches are remarkable runners. The second letter opening is more formal. It uses the recipient's personal title and last name. The other opening uses the recipient's first name, suggesting a more familiar relationship. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20922\",\n    \"image\": \"20922\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Compare the average kinetic energies of the particles in each sample. Which sample has the higher temperature?\\nContext: The diagrams below show two pure samples of gas in identical closed, rigid containers. Each colored ball represents one gas particle. Both samples have the same number of particles.\\nOptions: (A) neither; the samples have the same temperature (B) sample B (C) sample A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The temperature of a substance depends on the average kinetic energy of the particles in the substance. The higher the average kinetic energy of the particles, the higher the temperature of the substance.\\nThe kinetic energy of a particle is determined by its mass and speed. For a pure substance, the greater the mass of each particle in the substance and the higher the average speed of the particles, the higher their average kinetic energy. The particles in both samples have the same average speed, but each particle in sample A has more mass than each particle in sample B. So, the particles in sample A have a higher average kinetic energy than the particles in sample B.\\nBecause the particles in sample A have the higher average kinetic energy, sample A must have the higher temperature. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20924\",\n    \"image\": \"20924\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which material is these shoes made of?\\nContext: N/A\\nOptions: (A) ceramic (B) rubber\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nSome objects are made of just one material.\\nMost nails are made of metal.\\nOther objects are made of more than one material.\\nThis hammer is made of metal and wood. Look at the picture of the shoes.\\nThe shoes are made of two different materials. The tops are made of leather, and the soles are made of rubber. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20926\",\n    \"image\": \"20926\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Haiti (B) Cuba (C) the Dominican Republic (D) The Bahamas\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Haiti.\\nDoes Haiti have any territorial disputes?\\nHaiti claims to own Navassa Island, which is a disputed territory. In other words, multiple countries or groups claim that the area rightfully belongs to them.\\nNavassa Island is also claimed by the United States. The United States claimed the island in 1857 and has controlled it since then. But Haiti considers the island part of its territory and has protested the United States' claim since this time. No one lives on the island. Today, it is a nature preserve. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20947\",\n    \"image\": \"20947\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Camilla's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nCamilla glued lids onto 16 cardboard shoe boxes of equal size. She painted eight of the boxes black and eight of the boxes white. Camilla made a small hole in the side of each box and then stuck a thermometer partially into each hole so she could measure the temperatures inside the boxes. She placed the boxes in direct sunlight in her backyard. Two hours later, she measured the temperature inside each box. Camilla compared the average temperature inside the black boxes to the average temperature inside the white boxes.\\nFigure: a shoebox painted black.\\nOptions: (A) Do the temperatures inside boxes depend on the sizes of the boxes? (B) Do the insides of white boxes get hotter than the insides of black boxes when the boxes are left in the sun?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20948\",\n    \"image\": \"20948\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of California?\\nContext: N/A\\nOptions: (A) Los Angeles (B) Sacramento (C) Olympia (D) Trenton\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Sacramento is the capital of California. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20949\",\n    \"image\": \"20949\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which solution has a higher concentration of blue particles?\\nContext: The diagram below is a model of two solutions. Each blue ball represents one particle of solute.\\nOptions: (A) Solution B (B) neither; their concentrations are the same (C) Solution A\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A solution is made up of two or more substances that are completely mixed. In a solution, solute particles are mixed into a solvent. The solute cannot be separated from the solvent by a filter. For example, if you stir a spoonful of salt into a cup of water, the salt will mix into the water to make a saltwater solution. In this case, the salt is the solute. The water is the solvent.\\nThe concentration of a solute in a solution is a measure of the ratio of solute to solvent. Concentration can be described in terms of particles of solute per volume of solvent.\\nconcentration = particles of solute / volume of solvent In Solution A and Solution B, the blue particles represent the solute. To figure out which solution has a higher concentration of blue particles, look at both the number of blue particles and the volume of the solvent in each container.\\nUse the concentration formula to find the number of blue particles per milliliter.\\nSolution B has more blue particles per milliliter. So, Solution B has a higher concentration of blue particles. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20950\",\n    \"image\": \"20950\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which month is the wettest on average in Cairo?\\nContext: Use the graph to answer the question below.\\nOptions: (A) July (B) January (C) September\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Scientists record climate data from places around the world. Precipitation, or rain and snow, is one type of climate data. Scientists collect data over many years. They can use this data to calculate the average precipitation for each month. The average precipitation can be used to describe the climate of a location.\\nA bar graph can be used to show the average amount of precipitation each month. Months with taller bars have more precipitation on average. To describe the average precipitation trends in Cairo, look at the graph.\\nChoice \\\"Jan\\\" is incorrect.\\nChoice \\\"Jul\\\" is incorrect.\\nChoice \\\"Sep\\\" is incorrect.\\nJanuary has an average monthly precipitation of about 15 millimeters. This is higher than in any other month. So, January is the wettest month on average. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20952\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the invertebrate.\\nContext: Hint: Insects, spiders, and worms are invertebrates.\\nOptions: (A) fly (B) yak (C) peafowl (D) Surinam horned frog\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A yak is a mammal. Like other mammals, a yak is a vertebrate. It has a backbone.\\nA fly is an insect. Like other insects, a fly is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nA peafowl is a bird. Like other birds, a peafowl is a vertebrate. It has a backbone.\\nA Surinam horned frog is an amphibian. Like other amphibians, a Surinam horned frog is a vertebrate. It has a backbone. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20953\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nDon't ever get a ride from Erin. Her brother has been driving for only six months, and he's already gotten three speeding tickets.\\nContext: N/A\\nOptions: (A) false dichotomy: an argument that presents only two choices when more options exist (B) guilt by association: a negative association intended to discredit someone or something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | a personal attack meant to discredit one's opponent\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nred herring | the use of a completely unrelated topic in support of a claim\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a very broad claim based on very little evidence\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that Erin must be a reckless driver, because her brother is a reckless driver. However, even though Erin's brother is reckless, that doesn't necessarily mean that Erin is, too. This illustrates a type of logical fallacy known as guilt by association. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20967\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the temperature of a warm swimming pool?\\nContext: Select the better estimate.\\nOptions: (A) 25\\u00b0C (B) 25\\u00b0F\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nTemperature can be written with units of degrees Fahrenheit (\\u00b0F) or Celsius (\\u00b0C). Use the list below to compare the two units.\\n212\\u00b0F | Water boils | 100\\u00b0C\\n98.6\\u00b0F | Body temperature | 37\\u00b0C\\n68\\u00b0F | Room temperature | 20\\u00b0C\\n32\\u00b0F | Water freezes | 0\\u00b0C\\n The better estimate for the temperature of a warm swimming pool is 25\\u00b0C.\\n25\\u00b0F is too cold. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20970\",\n    \"image\": \"20970\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which ocean is highlighted?\\nContext: N/A\\nOptions: (A) the Pacific Ocean (B) the Southern Ocean (C) the Atlantic Ocean (D) the Indian Ocean\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Oceans are huge bodies of salt water. The world has five oceans. All of the oceans are connected, making one world ocean. This is the Atlantic Ocean. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20979\",\n    \"image\": \"20979\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material.\\nOptions: (A) The magnitude of the magnetic force is smaller in Pair 1. (B) The magnitude of the magnetic force is smaller in Pair 2. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other. Both magnet sizes and distance affect the magnitude of the magnetic force. The sizes of the magnets in Pair 1 are the same as in Pair 2. The distance between the magnets is also the same.\\nSo, the magnitude of the magnetic force is the same in both pairs. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20982\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"The city of Silvergrove has been one of the world's biggest makers of cough drops for many years. But last month, Silvergrove's cough drop factories were destroyed by floods. What will probably happen to the overall supply of cough drops?\\nContext: N/A\\nOptions: (A) The supply will probably go down. (B) The supply will probably go up.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Overall supply is the total amount of a good or service that producers make and sell. There are several things that can make overall supply go up or down. The table below shows how changes to these things might affect overall supply.\\n | Resources | Number of producers or suppliers | Expected change in demand\\nSupply goes up | when resources cost less or are easier to get | when there are more producers or suppliers | when demand is expected to go up\\nSupply goes down | when resources cost more or are harder to get | when there are fewer producers or suppliers | when demand is expected to go down\\nProducers are people or companies that make goods or provide services. Suppliers are people or companies that sell goods or services. New inventions or technologies can also help workers produce goods and services more quickly. As a result of these changes, the supply of a good or service will often go up. Floods destroyed the cough drop factories in Silvergrove. The number of producers of cough drops went down. So, the supply of cough drops will probably go down. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20984\",\n    \"image\": \"20984\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Delaware?\\nContext: N/A\\nOptions: (A) Baton Rouge (B) Salem (C) Wilmington (D) Dover\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Dover is the capital of Delaware. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20988\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the source of the allusion in the sentence below?\\nHunter's Falstaffian nature makes him stand out at a party.\\nContext: N/A\\nOptions: (A) Shakespeare (B) the Bible\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An allusion is a brief mention of something or someone well known, often from mythology, history, or literature. An allusion lets you reference ideas from an entire story in just a few words.\\n\\\"I'd better get home before I turn into a pumpkin!\\\" Lila remarked.\\nHere, Lila alludes to the fairy tale \\\"Cinderella,\\\" in which Cinderella must leave the ball before the coach that brought her transforms into a pumpkin. The allusion shows that Lila must depart immediately. The source of the allusion Falstaffian is Shakespeare.\\nSir John Falstaff, a comical character in several of William Shakespeare's plays, is known for his cheerful sociability and sometimes off-color humor.\\nThe allusion Falstaffian means characterized by joviality and enjoyment of food and drink. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20994\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Using only these supplies, which question can Ryan investigate with an experiment?\\nContext: Ryan enjoys feeding the squirrels in his backyard. He notices that they spend a lot of time collecting seeds and nuts. He wonders about what factors affect which foods squirrels choose to collect. So, he decides to design an experiment. He has the following supplies available:\\ntwo identical squirrel feeders\\na bag of sunflower seeds\\na bag of walnuts\\na tree to hang the feeders from\\nOptions: (A) Which type of tree do the squirrels feed from most often? (B) Do the squirrels select sunflower seeds or walnuts more often? (C) Do the squirrels eat walnuts from large feeders more often than from small feeders?\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. When designing an experiment, you must identify the supplies that are necessary to answer your question. In order to do this, you need to figure out what will be tested and what will be measured during the experiment.\\nImagine that you are wondering if plants grow to different heights when planted in different types of soil. How might you decide what supplies are necessary to conduct this experiment?\\nFirst, you need to identify the part of the experiment that will be tested, which is the independent variable. This is usually the part of the experiment that is different or changed. In this case, you would like to know how plants grow in different types of soil. So, you must have different types of soil available.\\nNext, you need to identify the part of the experiment that will be measured or observed, which is the dependent variable. In this experiment, you would like to know if some plants grow taller than others. So, you must be able to compare the plants' heights. To do this, you can observe which plants are taller by looking at them, or you can measure their exact heights with a meterstick.\\nSo, if you have different types of soil and can observe or measure the heights of your plants, then you have the supplies you need to investigate your question with an experiment! The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20995\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Peter acquired this trait?\\nContext: Read the description of a trait.\\nPeter knows how to fly a kite.\\nOptions: (A) Peter likes to fly a kite with his younger brother. (B) Peter's friend taught him how to fly a kite. (C) Peter's neighbor taught him how to repair a kite.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down from biological parents to their offspring through genes. Genes are pieces of hereditary material that contain the instructions that affect inherited traits. Offspring receive their genes, and therefore gain their inherited traits, from their biological parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. Parents do not pass acquired traits down to their offspring. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20997\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is Bingo's phenotype for the wool color trait?\\nContext: In a group of sheep, some individuals have white wool and others have black wool. In this group, the gene for the wool color trait has two alleles. The allele L is for white wool, and the allele l is for black wool.\\nBingo, a sheep from this group, has black wool. Bingo has two alleles for black wool.\\nOptions: (A) black wool (B) ll\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's phenotype for a trait is its observable version of that trait. Bingo's observable version of the wool color trait is black wool. So, Bingo's phenotype for the wool color trait is black wool. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"20998\",\n    \"image\": \"20998\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Identify the question that Sasha's experiment can best answer.\\nContext: The passage below describes an experiment. Read the passage and then follow the instructions below.\\n\\nSasha cut tomato and broccoli plant leaves into one-inch squares. In each of 12 containers, she placed six leaf squares: three tomato-leaf squares and three broccoli-leaf squares. She put one slug from her garden into each container. After two days, Sasha measured the amount of each leaf square that had been eaten by the slugs. She compared the amount that had been eaten from the tomato-leaf squares to the amount that had been eaten from the broccoli-leaf squares.\\nFigure: a slug on a leaf.\\nOptions: (A) Do slugs weigh more after eating tomato leaves or broccoli leaves? (B) Do slugs eat more from tomato leaves or broccoli leaves?\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments can be designed to answer specific questions. How can you identify the questions that a certain experiment can answer? In order to do this, you need to figure out what was tested and what was measured during the experiment.\\nImagine an experiment with two groups of daffodil plants. One group of plants was grown in sandy soil, and the other was grown in clay soil. Then, the height of each plant was measured.\\nFirst, identify the part of the experiment that was tested. The part of an experiment that is tested usually involves the part of the experimental setup that is different or changed. In the experiment described above, each group of plants was grown in a different type of soil. So, the effect of growing plants in different soil types was tested.\\nThen, identify the part of the experiment that was measured. The part of the experiment that is measured may include measurements and calculations. In the experiment described above, the heights of the plants in each group were measured.\\nExperiments can answer questions about how the part of the experiment that is tested affects the part that is measured. So, the experiment described above can answer questions about how soil type affects plant height.\\nExamples of questions that this experiment can answer include:\\nDoes soil type affect the height of daffodil plants?\\nDo daffodil plants in sandy soil grow taller than daffodil plants in clay soil?\\nAre daffodil plants grown in sandy soil shorter than daffodil plants grown in clay soil? The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21000\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following contains a vague pronoun reference?\\nContext: N/A\\nOptions: (A) Dave went on to calculus after studying trigonometry, but he never fully comprehended calculus. (B) Dave went on to calculus after studying trigonometry, but he never fully comprehended it.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"When writing, make sure to avoid vague pronoun references. A vague pronoun reference occurs when a pronoun could refer to more than one possible antecedent.\\nWhen Lisa and Kim finally landed, she breathed a sigh of relief.\\nThe pronoun she could refer to either Lisa or Kim, so the meaning of the sentence is unclear.\\nVague pronoun references can be corrected in one of two ways:\\n1. Replace the pronoun with its correct antecedent:\\nWhen Lisa and Kim finally landed, Lisa breathed a sigh of relief.\\n2. Rewrite the sentence:\\nLisa breathed a sigh of relief when she and Kim finally landed.\\nA vague pronoun reference also occurs when they, them, their, theirs, it, or its is used without its antecedent.\\nThey say that this nail polish dries in less than five minutes.\\nThe pronoun they is used without its antecedent, so the meaning of the sentence is unclear.\\nThis problem can be fixed by replacing the pronoun with its missing antecedent.\\nThe advertisements say that this nail polish dries in less than five minutes. The second answer choice contains a vague pronoun reference. The pronoun it could refer to calculus or trigonometry.\\nThe first answer choice shows a possible correction for the vague pronoun reference. It has been replaced with calculus.\\nDave went on to calculus after studying trigonometry, but he never fully comprehended calculus. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21001\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which would stretch more?\\nContext: N/A\\nOptions: (A) nylon shorts (B) glass bowl\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Every object is made of one or more materials. A material is a type of matter. Wood, glass, metal, and plastic are common materials.\\nA material has different properties. A material's properties tell you how it looks, feels, tastes, or smells. Some examples of properties are shiny, hard, fragile, and stretchy.\\nFor example, a shiny material reflects a lot of light. A fragile material breaks when you drop it. Stretchy is a property. A stretchy material gets longer when you pull on it.\\nLook at each picture, one at a time. Imagine pulling on the material shown in each picture.\\nOf the choices, the nylon shorts would stretch more. If you pull the leg opening on a pair of nylon shorts, it will get wider. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21006\",\n    \"image\": \"21006\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which term matches the picture?\\nContext: Read the text.\\nFiltration and centrifugation are two techniques used to separate different materials from a mixture. Filtration involves straining unwanted materials, sometimes with the help of gravity. For example, you can pour a liquid mixture through a funnel lined with filter paper that collects unwanted solids.\\nCentrifugation, on the other hand, uses centrifugal force to separate materials. For example, vials of mixtures can be placed at an angle in special machines that spin at high speed. The spinning causes denser substances to move and collect at the bottom of the vial.\\nOptions: (A) filtration (B) centrifugation\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Filtration uses gravity to separate solid substances from a liquid as it passes through a funnel. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21009\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the volume of a soda bottle cap?\\nContext: Select the better estimate.\\nOptions: (A) 12 liters (B) 12 milliliters\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Measurements are written with both a number and a unit. The unit comes after the number. The unit shows what the number means.\\nVolume is a measurement of how much space something takes up.\\nThere are many different units of volume. When you are using metric units, volume may be written in units of milliliters or liters.\\nThere are 1,000 milliliters in 1 liter. So, 1 milliliter is much less than 1 liter.\\nA raindrop has a volume of about 20 milliliters, while a large soda bottle has a volume of 2 liters. The flask shown here measures volumes up to 500 milliliters. The better estimate for the volume of a soda bottle cap is 12 milliliters.\\n12 liters is too much. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21014\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Based on this information, what is this cucumber plant's genotype for the fruit texture gene?\\nContext: In a group of cucumber plants, some individuals have bumpy fruit and others have smooth fruit. In this group, the gene for the fruit texture trait has two alleles. The allele F is for bumpy fruit, and the allele f is for smooth fruit.\\nA certain cucumber plant from this group has bumpy fruit. This plant has two alleles for bumpy fruit.\\nOptions: (A) FF (B) bumpy fruit\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"All organisms have pieces of hereditary material called genes, which are passed from parents to offspring. Genes contain instructions for building the parts of an organism. An organism's genes affect its observable traits, including its appearance, its behavior, and which diseases it may have. Genes may have different alleles, or forms, that can cause different versions of a trait.\\nFor example, flower color is a trait in pea plants. The gene for this trait has two possible alleles. Each allele is represented by an uppercase or lowercase letter. The allele F is for purple flowers, and the allele f is for white flowers. Each pea plant has two alleles for the flower color gene\\u2014one allele inherited from each parent.\\nAn organism's genotype for a gene is its combination of alleles for that gene. So, a pea plant may have a genotype of FF, Ff, or ff for the flower color gene.\\nAn organism's phenotype for a trait is its observable version of that trait, which depends on the organism's combination of alleles. A pea plant may have a phenotype of purple flowers or white flowers for the flower color trait. An organism's genotype for a gene is its combination of alleles for that gene. The cucumber plant has two alleles for bumpy fruit (F). So, the plant's genotype for the fruit texture gene is FF. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21019\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the vertebrate.\\nContext: Hint: Mammals, birds, fish, reptiles, and amphibians are vertebrates.\\nOptions: (A) giant octopus (B) saturn butterfly (C) earthworm (D) robin\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Vertebrates and invertebrates are both groups of animals.\\nA vertebrate has a backbone. The backbone is made of many bones in an animal's back. A vertebrate's backbone helps connect the different parts of its body. In the drawings below, each vertebrate's backbone is colored orange.\\nAn invertebrate does not have a backbone. In fact, invertebrates do not have any bones! Some invertebrates have an outer cover on their body called an exoskeleton. Other invertebrates have a soft body. A saturn butterfly is an insect. Like other insects, a saturn butterfly is an invertebrate. It does not have a backbone. It has an exoskeleton.\\nAn earthworm is a worm. Like other worms, an earthworm is an invertebrate. It does not have a backbone. It has a soft body.\\nLike other octopuses, a giant octopus is an invertebrate. It does not have a backbone. It has a soft body.\\nA robin is a bird. Like other birds, a robin is a vertebrate. It has a backbone. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21020\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which sentence states a fact?\\nContext: N/A\\nOptions: (A) It is hard to understand Australian people's accents. (B) Australia is a continent in the Southern Hemisphere.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A fact is something that can be proved true by research or observation.\\nGeorge Washington became president of the United States in 1789.\\nThis statement is a fact. It can be proved by researching what year George Washington was inaugurated president.\\nAn opinion is something that a person believes, thinks, or feels. An opinion can be supported by evidence, but it cannot be proved true.\\nGeorge Washington was a better president than Thomas Jefferson.\\nThis statement is an opinion. People can have different ideas about what makes someone a \\\"better\\\" president, so the statement cannot be proved. The second sentence states a fact.\\nAustralia is a continent in the Southern Hemisphere.\\nIt can be proved by finding Australia on a globe.\\nThe first sentence states an opinion.\\nIt is hard to understand Australian people's accents.\\nHard shows what a person believes, thinks, or feels. Another person might have a different opinion about what makes an accent hard to understand. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21025\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is picking apples a good or a service?\\nContext: N/A\\nOptions: (A) a good (B) a service\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Everything you can buy is either a good or a service.\\nA good is something you can touch or hold in your hands. For example, a hammer is a good.\\nA service is a job you pay someone else to do. For example, cooking food in a restaurant is a service. To decide whether picking apples is a good or a service, ask these questions:\\nIs picking apples something you can touch? No.\\nIs picking apples a job you might pay someone else to do? Yes.\\nSo, picking apples is a service. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21041\",\n    \"image\": \"21041\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the name of the colony shown?\\nContext: N/A\\nOptions: (A) Virginia (B) Delaware (C) Georgia (D) West Virginia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The colony is Virginia.\\nThe Virginia Colony included land that would later become part of the state of West Virginia. West Virginia was never its own colony. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21044\",\n    \"image\": \"21044\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Louisiana?\\nContext: N/A\\nOptions: (A) Atlanta (B) Frankfort (C) New Orleans (D) Baton Rouge\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Baton Rouge is the capital of Louisiana. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21048\",\n    \"image\": \"21048\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of the following was a dependent variable in this experiment?\\nContext: The passage below describes an experiment. Read the passage and think about the variables that are described.\\n\\nEvery day at work, Valentina poured a large cup of tea that she drank throughout the morning. She wondered how much bacteria might be growing in her cup of tea as the morning went on.\\nTo find out, Valentina filled three identical cups with tea and placed them on her desk for three hours. After the first hour, she placed a drop of the tea from each cup on a separate microscope slide and counted the number of bacteria in the drop. Valentina repeated this with each cup of tea after the second hour, and again after the third hour.\\nHint: An independent variable is a variable whose effect you are investigating. A dependent variable is a variable that you measure.\\nFigure: using a microscope to count bacteria on a slide.\\nOptions: (A) the number of bacteria in a drop of tea (B) the amount of time that the tea sat on the desk\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Experiments have variables, or parts that change. You can design an experiment to find out how one variable affects another variable. For example, imagine that you want to find out if fertilizer affects the number of tomatoes a tomato plant grows. To answer this question, you decide to set up two equal groups of tomato plants. Then, you add fertilizer to the soil of the plants in one group but not in the other group. Later, you measure the effect of the fertilizer by counting the number of tomatoes on each plant.\\nIn this experiment, the amount of fertilizer added to the soil and the number of tomatoes were both variables.\\nThe amount of fertilizer added to the soil was an independent variable because it was the variable whose effect you were investigating. This type of variable is called independent because its value does not depend on what happens after the experiment begins. Instead, you decided to give fertilizer to some plants and not to others.\\nThe number of tomatoes was a dependent variable because it was the variable you were measuring. This type of variable is called dependent because its value can depend on what happens in the experiment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21052\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Answer the riddle.\\nI smell good.\\nI can come in many colors.\\nI grow in a garden.\\nWhat am I?\\nContext: N/A\\nOptions: (A) a flower (B) a bird\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A flower smells good.\\nA flower can come in many colors.\\nA flower grows in a garden. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21053\",\n    \"image\": \"21053\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the sentence.\\nThe mutation in the () affected the structure and function of the ().\\nContext: The following passage describes the effects of a gene mutation, which is a permanent change in a gene. Read the passage and then follow the instructions below.\\n\\nKeratins are strong proteins that provide structure and protection for many tissues in the human body. For example, the tissue on the inside of the mouth, called epithelium (ep-i-THEEL-i-um), is protected by a tough layer made of many types of keratin proteins connected together. One type of keratin protein is encoded by the KRT13 gene.\\nA certain person had a mutation in the KRT13 gene. Compared to the KRT13 gene without a mutation, the mutated KRT13 gene encoded a form of the keratin protein with a different structure.\\nThis different form of the keratin protein could not connect to other keratin proteins.The person with the mutation had mouth epithelium that was easily damaged by simple activities like eating and brushing teeth.\\nFigure: strands of connected keratin proteins, seen through a high-powered microscope.\\nOptions: (A) KRT13 gene . . . keratin protein (B) keratin protein . . . KRT13 gene\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"An organism's genes contain information about its proteins. Each gene encodes, or contains the instructions for making, one protein or a group of proteins.\\nA permanent change in a gene is called a mutation. Because a mutation changes a gene, the mutation may change the structure of the protein encoded by that gene.\\nThe function of a protein depends on its structure. So, if a mutation in a gene changes a protein's structure, the mutation may also change the protein's function.\\nAn organism's observable traits are affected by the functions of its proteins. So, a gene mutation that affects a protein's function may also affect an organism's observable traits. A mutation in a gene may affect the protein it encodes.\\nSo, the mutation in the KRT13 gene affected the structure and function of the keratin protein. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21062\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nMost students who take the school's Advanced Computer Science class go on to major in computer science. Clearly, the course must be the reason why students major in computer science.\\nContext: N/A\\nOptions: (A) guilt by association: a negative association intended to discredit someone or something (B) slippery slope fallacy: the false assumption that a small first step will lead to extreme consequences (C) false causation: the assumption that because two things happened together, one caused the other\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that the school's Advanced Computer Science class is the reason students choose to major in computer science. The text states that most of the students who take that class continue on with the major. However, the class isn't necessarily the reason they do so. For example, the students who take the advanced class may already be interested in majoring in computer science. This illustrates a type of logical fallacy known as false causation. The answer is C.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21063\",\n    \"image\": \"21063\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) the Dominican Republic (B) Saint Lucia (C) Grenada (D) Dominica\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Dominica. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21064\",\n    \"image\": \"21064\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Nevada?\\nContext: N/A\\nOptions: (A) Carson City (B) Reno (C) Las Vegas (D) Cheyenne\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Carson City is the capital of Nevada. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21070\",\n    \"image\": \"21070\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Europe (B) Africa (C) Asia (D) North America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Africa. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21076\",\n    \"image\": \"21076\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the fish below.\\nContext: Fish live underwater. They have fins, not limbs. A manta ray is an example of a fish.\\nOptions: (A) goldfish (B) European green toad\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A European green toad is an amphibian. It has moist skin and begins its life in water.\\nToads do not have teeth! They swallow their food whole.\\nA goldfish is a fish. It lives underwater. It has fins, not limbs.\\nGoldfish are popular as pets in many countries today. They were first kept as pets by people in ancient China. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21083\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What kind of sentence is this?\\nHow does the new mayor intend to fulfill his campaign promise to bring new jobs to the city?\\nContext: N/A\\nOptions: (A) declarative (B) interrogative (C) imperative\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"There are four kinds of sentences.\\nA declarative sentence is a statement and always ends with a period.\\nThe nurse told Mr. Abrams to roll up his sleeve so that she could check his blood pressure.\\nAn imperative sentence makes a request or a demand and usually ends with a period. If a demand shows strong feeling, it can end with an exclamation point.\\nFor this assignment, use references to support your claims.\\nDon't drive so quickly in the construction zone!\\nAn interrogative sentence asks a question and always ends with a question mark.\\nGiven the recent critiques of her new strategic plan, do you think the CEO will reconsider the company's direction?\\nAn exclamatory sentence is a statement that shows surprise or strong feeling. An exclamation always ends with an exclamation point.\\nI can't wait to travel through Europe this summer! The sentence asks a question and ends with a question mark. It is an interrogative sentence. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21087\",\n    \"image\": \"21087\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest east?\\nContext: N/A\\nOptions: (A) Ohio (B) New Jersey (C) Kansas (D) South Carolina\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the east arrow is pointing. New Jersey is farthest east. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21090\",\n    \"image\": \"21090\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Barbados (B) Saint Kitts and Nevis (C) Jamaica (D) Antigua and Barbuda\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Antigua and Barbuda. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21117\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What information supports the conclusion that Kaylee inherited this trait?\\nContext: Read the description of a trait.\\nKaylee has red hair.\\nOptions: (A) Kaylee's parents have red hair. They passed down this trait to Kaylee. (B) Kaylee and her mother both wear their hair in braids.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Organisms, including people, have both inherited and acquired traits. Inherited and acquired traits are gained in different ways.\\nInherited traits are passed down through families. Children gain these traits from their parents. Inherited traits do not need to be learned.\\nAcquired traits are gained during a person's life. Some acquired traits, such as riding a bicycle, are gained by learning. Other acquired traits, such as scars, are caused by the environment. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21121\",\n    \"image\": \"21121\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Washington?\\nContext: N/A\\nOptions: (A) Orlando (B) Spokane (C) Seattle (D) Olympia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Olympia is the capital of Washington. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21128\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nWhere Nicole lives, winter is the rainiest season of the year.\\nContext: Hint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the text carefully.\\nWhere Nicole lives, winter is the rainiest season of the year.\\nThis passage tells you about the usual precipitation where Nicole lives. It does not describe what the weather is like on a particular day. So, this passage describes the climate. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21133\",\n    \"image\": \"21133\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is the helium in balloons a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a gas (B) a liquid (C) a solid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids are thicker than others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. The oxygen you breathe is a gas. The helium in a balloon is also a gas. The helium in balloons is a gas. A gas expands to fill a space.\\nThe helium in balloons expands to fill all the space inside the balloons. If a balloon pops, the helium will expand to fill a much larger space. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21135\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Assume all other forces on Kimi are balanced. Which statement describes the forces on Kimi?\\nContext: Kimi is sitting on a roller coaster cart as it reaches the bottom of a big loop. Earth's gravity is pulling down on Kimi with a force of 600N. The seat of the cart is pushing up on Kimi with a force of 1,200N.\\nOptions: (A) The forces are unbalanced, so there is a net force on Kimi. (B) The forces are balanced, so there is no net force on Kimi.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that acts on an object. Every force has a direction and a magnitude, or strength. If two forces act on an object in opposite directions, the forces are called opposing forces.\\nWhen opposing forces have the same magnitude, they are balanced. If all the forces on an object are balanced, there is no net force on the object.\\nWhen opposing forces have different magnitudes, the forces are unbalanced. If any forces on an object are unbalanced, there is a net force on the object. To determine if there is a net force on Kimi, look at the forces:\\nEarth's gravity is pulling Kimi down with a force of 600 N.\\nThe seat of the cart is pushing Kimi up with a force of 1,200 N.\\nThe forces are in opposite directions, and the forces have different magnitudes: 600 N and 1,200 N. This means that the forces are unbalanced, so there is a net force on Kimi. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21136\",\n    \"image\": \"21136\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Think about the magnetic force between the magnets in each pair. Which of the following statements is true?\\nContext: The images below show two pairs of magnets. The magnets in different pairs do not affect each other. All the magnets shown are made of the same material, but some of them are different sizes.\\nOptions: (A) The magnitude of the magnetic force is greater in Pair 2. (B) The magnitude of the magnetic force is greater in Pair 1. (C) The magnitude of the magnetic force is the same in both pairs.\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Magnets can pull or push on each other without touching. When magnets attract, they pull together. When magnets repel, they push apart. These pulls and pushes between magnets are called magnetic forces.\\nThe strength of a force is called its magnitude. The greater the magnitude of the magnetic force between two magnets, the more strongly the magnets attract or repel each other.\\nYou can change the magnitude of a magnetic force between two magnets by using magnets of different sizes. The magnitude of the magnetic force is greater when the magnets are larger. The magnets in Pair 1 attract. The magnets in Pair 2 repel. But whether the magnets attract or repel affects only the direction of the magnetic force. It does not affect the magnitude of the magnetic force.\\nMagnet sizes affect the magnitude of the magnetic force. Imagine magnets that are the same shape and made of the same material. The larger the magnets, the greater the magnitude of the magnetic force between them.\\nMagnet A is the same size in both pairs. But Magnet B is larger in Pair 1 than in Pair 2. So, the magnitude of the magnetic force is greater in Pair 1 than in Pair 2. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21137\",\n    \"image\": \"21137\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the capital of Texas?\\nContext: N/A\\nOptions: (A) Dallas (B) Austin (C) Houston (D) Jefferson City\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Austin is the capital of Texas. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21140\",\n    \"image\": \"21140\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Select the mammal below.\\nContext: Mammals have hair or fur and feed their young milk. A kangaroo is an example of a mammal.\\nOptions: (A) rabbit (B) red-eyed tree frog\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Birds, mammals, fish, reptiles, and amphibians are groups of animals. The animals in each group have traits in common.\\nScientists sort animals into groups based on traits they have in common. This process is called classification. A red-eyed tree frog is an amphibian. It has moist skin and begins its life in water.\\nA rabbit is a mammal. It has fur and feeds its young milk. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21144\",\n    \"image\": \"21144\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Does this passage describe the weather or the climate?\\nContext: Figure: Croatia.\\nIt was clear and sunny yesterday on the Croatian coast.\\nHint: Weather is what the atmosphere is like at a certain place and time. Climate is the pattern of weather in a certain place.\\nOptions: (A) weather (B) climate\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"The atmosphere is the layer of air that surrounds Earth. Both weather and climate tell you about the atmosphere.\\nWeather is what the atmosphere is like at a certain place and time. Weather can change quickly. For example, the temperature outside your house might get higher throughout the day.\\nClimate is the pattern of weather in a certain place. For example, summer temperatures in New York are usually higher than winter temperatures. Read the passage carefully.\\nIt was clear and sunny yesterday on the Croatian coast.\\nThis passage tells you about yesterday's cloud cover on the coast of Croatia. This passage describes the atmosphere at a certain place and time. So, this passage describes the weather. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21146\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What do these two changes have in common?\\nbaking cookies\\nrust forming on a metal gate\\nContext: N/A\\nOptions: (A) Both are caused by cooling. (B) Both are caused by heating. (C) Both are only physical changes. (D) Both are chemical changes.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Chemical changes and physical changes are two common ways matter can change.\\nIn a chemical change, the type of matter changes. The types of matter before and after a chemical change are always different.\\nSome chemical changes are caused by heating or cooling. For example, burning a piece of paper is a chemical change caused by heating. When paper gets hot enough, it re\\u00adacts with oxygen in the air and burns. The paper and oxygen change into ash and smoke.\\nIn a physical change, the type of matter stays the same. The types of matter before and after a physical change are always the same.\\nA change of state is a type of physical change. Changes of state can be caused by heating or cooling. For example, ice melting is a physical change that can be caused by heating. Ice and liquid water are made of the same type of matter: water.\\nThe law of conservation of mass says that all physical and chemical changes conserve mass. Conserve means to keep the same. So, the total mass before a physical or chemical change is equal to the total mass after the change. Step 1: Think about each change.\\nBaking cookies is a chemical change. Cookies are made from cookie dough. Baking turns the cookie dough into cookies. The cookies are a different type of matter than the dough.\\nRust forming on a metal gate is a chemical change. As the gate rusts, the metal turns into a different type of matter called rust. Rust is reddish-brown and falls apart easily.\\nStep 2: Look at each answer choice.\\nBoth are only physical changes.\\nBoth changes are chemical changes. They are not physical changes.\\nBoth are chemical changes.\\nBoth changes are chemical changes. The type of matter before and after each change is different.\\nBoth are caused by heating.\\nBaking is caused by heating. But rust forming on a metal gate is not.\\nBoth are caused by cooling.\\nNeither change is caused by cooling. The answer is D.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21147\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which logical fallacy is used in the text?\\nI don't give tests to my students because good students will study the material regardless, and bad students won't study the material even for a test.\\nContext: N/A\\nOptions: (A) false causation: the assumption that because two things happened together, one caused the other (B) false dichotomy: an argument that presents only two choices when more options exist (C) guilt by association: a negative association intended to discredit someone or something\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A strong argument uses valid reasoning and logic in support of a claim. When an argument or claim introduces irrelevant information or misrepresents the issues at hand, it may be committing a logical fallacy. Logical fallacies can hurt a writer's credibility and can lead readers to draw false conclusions.\\nA logical fallacy may present irrelevant information:\\nFallacy | Description\\nad hominem | an attack against the person making the argument, rather than the argument itself\\nappeal to nature | an argument that assumes the natural choice is always the best choice\\nbandwagon fallacy | an argument that assumes the popular choice is always the best choice\\ncircular reasoning | an argument that supports a claim with the claim itself\\nguilt by association | an unfair negative association with another person or group that is intended to discredit someone or something\\nA logical fallacy may misrepresent the issues at hand:\\nFallacy | Description\\nfalse causation | the assumption that because two things happened together, one caused the other\\nfalse dichotomy | an argument that presents only two choices when more options exist\\nhasty generalization | a broad claim based on too few observations\\nslippery slope fallacy | the false assumption that a small first step will necessarily lead to extreme consequences\\nstraw man | a misrepresentation of an opponent's position that makes it easier to argue against\\n The text argues that there are two types of students: good students who will study without the incentive of a test, and bad students who won't study even with the incentive of the test. However, this argument artificially restricts the types of students to just two extremes. For example, there may be some students who would study if they had a test, but who wouldn't study if they didn't have a test. This illustrates a type of logical fallacy known as a false dichotomy. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21149\",\n    \"image\": \"21149\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which state is highlighted?\\nContext: N/A\\nOptions: (A) Ohio (B) Indiana (C) Michigan (D) Iowa\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This state is Ohio. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21153\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Complete the statement. Assume that the water balloon's mass did not change.\\nThe gravitational potential energy stored between the water balloon and Earth () as the water balloon fell toward Dale.\\nContext: Read the text about an object in motion.\\nKimi dropped a water balloon off a balcony. The water balloon fell toward her friend Dale, who was standing below the balcony.\\nOptions: (A) decreased (B) stayed the same (C) increased\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Gravitational potential energy is stored between any two objects. So, for every object on or near Earth, there is gravitational potential energy stored between the object and Earth.\\nThe amount of gravitational potential energy stored between an object and Earth depends on the mass of the object. The amount of gravitational potential energy also depends on the distance between the object and the center of Earth. This distance increases when the object moves higher and decreases when the object moves lower.\\nIf the distance between an object and the center of Earth changes, the gravitational potential energy stored between the object and Earth will change. The table below shows how this change can happen.\\nWhen an object's mass stays the same and its distance from the center of Earth... | Gravitational potential energy stored between the object and Earth...\\nincreases | increases\\ndecreases | decreases\\nstays the same | stays the same Think about how the distance between the water balloon and the center of Earth changed.\\nDale was lower than the balcony. As the water balloon fell toward Dale, the distance between the water balloon and the center of Earth decreased. So, the gravitational potential energy stored between the water balloon and Earth decreased as the water balloon fell toward Dale. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21159\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which type of sentence is this?\\nJoel took several incredible panoramic photographs of the sweeping view from the top of Table Mountain.\\nContext: N/A\\nOptions: (A) simple (B) compound (C) complex (D) compound-complex\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A clause is a group of words that contains both a subject and a predicate.\\nAn independent clause is a complete thought that can stand alone as a sentence. A dependent clause (or subordinate clause) is not a complete thought and cannot stand alone as a sentence.\\nthe oranges on our tree are ripe\\nThe clause can stand alone. It is independent.\\nafter we pick up Kevin from work\\nThe clause cannot stand alone. It is dependent.\\nA simple sentence is made up of a single independent clause.\\nBen and I spent all day relaxing by the pool.\\nSome simple sentences have introductory phrases, but the introductory phrase is part of the predicate.\\nIn the winter, Ben usually wears his heavy coat.\\nBen usually wears his heavy coat in the winter.\\nA compound sentence is made up of two independent clauses joined by a coordinating conjunction such as and, but, or, or so.\\nWe saw the flash of lightning, and seconds later we heard a rumble of thunder.\\nA complex sentence is made up of an independent clause and a dependent clause. The dependent clause in a complex sentence usually begins with a subordinating conjunction or relative pronoun. Subordinating conjunctions include after, although, as, because, before, if, since, unless, until, when, and while. Relative pronouns include that, which, who, whom, or whose.\\nIf she ever gets the chance, Terri would love to visit the Egyptian pyramids.\\nDuring his trip to Italy, Tony visited the Trevi Fountain, which is in Rome.\\nA compound-complex sentence is made up of two or more independent clauses and one or more dependent clauses.\\nAfter Samantha left work, she stopped at the bank, and then she went to the gym.\\nSometimes a dependent clause in a complex or compound-complex sentence can interrupt an independent clause.\\nOrcas that are kept in captivity often have bent dorsal fins. The sentence is simple. It is a single independent clause.\\nJoel took several incredible panoramic photographs of the sweeping view from the top of Table Mountain. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21166\",\n    \"image\": \"21166\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Is chocolate syrup a solid, a liquid, or a gas?\\nContext: N/A\\nOptions: (A) a gas (B) a liquid (C) a solid\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Solid, liquid, and gas are states of matter. Matter is anything that takes up space. Matter can come in different states, or forms.\\nWhen matter is a solid, it has a definite volume and a definite shape. So, a solid has a size and shape of its own.\\nSome solids can be easily folded, bent, or broken. A piece of paper is a solid. Also, some solids are very small. A grain of sand is a solid.\\nWhen matter is a liquid, it has a definite volume but not a definite shape. So, a liquid has a size of its own, but it does not have a shape of its own. Think about pouring juice from a bottle into a cup. The juice still takes up the same amount of space, but it takes the shape of the bottle.\\nSome liquids do not pour as easily as others. Honey and milk are both liquids. But pouring honey takes more time than pouring milk.\\nWhen matter is a gas, it does not have a definite volume or a definite shape. A gas expands, or gets bigger, until it completely fills a space. A gas can also get smaller if it is squeezed into a smaller space.\\nMany gases are invisible. Air is a gas. Chocolate syrup is a liquid. A liquid takes the shape of any container it is in.\\nIf you pour chocolate syrup into a container, the chocolate syrup will take the shape of that container. But the chocolate syrup will still take up the same amount of space. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21189\",\n    \"image\": \"21189\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which country is highlighted?\\nContext: N/A\\nOptions: (A) Antigua and Barbuda (B) Saint Kitts and Nevis (C) Grenada (D) Saint Lucia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"This country is Saint Kitts and Nevis. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21191\",\n    \"image\": \"21191\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) North America (B) South America (C) Antarctica (D) Australia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the seven largest areas of land on earth. This continent is North America. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21192\",\n    \"image\": \"21192\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Africa (B) South America (C) North America (D) Asia\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is South America. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21195\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which word would you find on a dictionary page with the following guide words?\\npad - poison\\nContext: N/A\\nOptions: (A) president (B) peach\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Guide words appear on each page of a dictionary. They tell you the first word and last word on the page. The other words on the page come between the guide words in alphabetical order.\\nTo put words in alphabetical order, put them in order by their first letters. If the first letters are the same, look at the second letters. If the second letters are the same, look at the third letters, and so on. Put the words in alphabetical order.\\nSince peach is between the guide words pad - poison, it would be found on that page. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21196\",\n    \"image\": \"21196\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which of these states is farthest west?\\nContext: N/A\\nOptions: (A) Alabama (B) Illinois (C) South Carolina (D) Connecticut\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"Maps have four cardinal directions, or main directions. Those directions are north, south, east, and west.\\nA compass rose is a set of arrows that point to the cardinal directions. A compass rose usually shows only the first letter of each cardinal direction.\\nThe north arrow points to the North Pole. On most maps, north is at the top of the map. To find the answer, look at the compass rose. Look at which way the west arrow is pointing. Illinois is farthest west. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21199\",\n    \"image\": \"21199\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which continent is highlighted?\\nContext: N/A\\nOptions: (A) Asia (B) Europe (C) Australia (D) North America\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A continent is one of the major land masses on the earth. Most people say there are seven continents. This continent is Europe. The answer is B.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21200\",\n    \"image\": \"21200\\\\image.png\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"What is the direction of this push?\\nContext: A bulldozer clears a path for a new road. A force from the bulldozer pushes loose dirt out of the way.\\nOptions: (A) away from the bulldozer (B) toward the bulldozer\\n<image>\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A force is a push or a pull that one object applies to another. Every force has a direction.\\nThe direction of a push is away from the object that is pushing.\\nThe direction of a pull is toward the object that is pulling. The bulldozer pushes the loose dirt. The direction of the push is away from the bulldozer. The answer is A.\"\n      }\n    ]\n  },\n  {\n    \"id\": \"21206\",\n    \"conversations\": [\n      {\n        \"from\": \"human\",\n        \"value\": \"Which is a complete sentence?\\nContext: N/A\\nOptions: (A) Amy is from Greenwood now she lives in Wildgrove. (B) This book explains the difference between cattle and buffalo.\"\n      },\n      {\n        \"from\": \"gpt\",\n        \"value\": \"A sentence is a group of words that forms a complete thought. It has both a subject and a verb.\\nMy friends walk along the path.\\nA run-on sentence is made up of two sentences that are joined without end punctuation or with just a comma.\\nI knocked on the door it opened.\\nIt started raining, we ran inside.\\nTo fix a run-on sentence, separate it into two sentences. Add end punctuation after the first sentence, and capitalize the second sentence.\\nI knocked on the door. It opened.\\nIt started raining. We ran inside.\\nYou can also fix a run-on sentence by rewriting it as a compound sentence. A compound sentence is two sentences joined by a comma and a conjunction such as and, but, or, or so.\\nI knocked on the door, and it opened.\\nIt started raining, so we ran inside. This book explains the difference between cattle and buffalo is a complete sentence. The subject is this book, and the verb is explains. The answer is B.\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "model/univi/eval/questions/video_qa/activitynet_a_list.json",
    "content": "[\n  \"no\",\n  \"yes\",\n  \"day\",\n  \"outdoor\",\n  \"good looking\",\n  \"bit dangerous\",\n  \"secondary\",\n  \"simple\",\n  \"much simpler\",\n  \"more difficult\",\n  \"difficulty\",\n  \"low\",\n  \"unsafe\",\n  \"sunny\",\n  \"cloudy\",\n  \"2\",\n  \"1\",\n  \"5\",\n  \"3\",\n  \"4\",\n  \"6\",\n  \"11\",\n  \"7\",\n  \"8\",\n  \"female\",\n  \"male\",\n  \"indoor\",\n  \"shopkeepers and customers\",\n  \"friend\",\n  \"brother\",\n  \"bath towel\",\n  \"tie rope\",\n  \"combat training\",\n  \"play football on table\",\n  \"chipping potatoes\",\n  \"dishwashing\",\n  \"skateboard with water\",\n  \"defoliation\",\n  \"brush ones teeth\",\n  \"baton tennis\",\n  \"play ball\",\n  \"performing martial arts\",\n  \"play\",\n  \"dance\",\n  \"gargle\",\n  \"slider\",\n  \"wine dressing\",\n  \"rowing\",\n  \"pacify horse\",\n  \"drum\",\n  \"cook dish\",\n  \"do floor exercises\",\n  \"match\",\n  \"gymnastics in parallel bars\",\n  \"be referee\",\n  \"dishware\",\n  \"skin care\",\n  \"train\",\n  \"hammer throw\",\n  \"draw eyes shadow\",\n  \"wash horse\",\n  \"car wash\",\n  \"play musical instrument\",\n  \"kayaking\",\n  \"skiing\",\n  \"make cake\",\n  \"sweep snow for cars\",\n  \"paracentesis\",\n  \"drink\",\n  \"practice martial arts\",\n  \"make cold dishes\",\n  \"contain water\",\n  \"put shot\",\n  \"bathe horse\",\n  \"making cocktails\",\n  \"clean room\",\n  \"wipe glass\",\n  \"shovel snow\",\n  \"make spaghetti\",\n  \"dig up soil\",\n  \"cut tomato\",\n  \"tattoo\",\n  \"boxing\",\n  \"bodybuilding\",\n  \"sailing competition\",\n  \"hopping hula hoop\",\n  \"somersault\",\n  \"paint fingernails\",\n  \"make sandwich\",\n  \"introduce tool\",\n  \"walk dog\",\n  \"make ice cream\",\n  \"manicure\",\n  \"make hair\",\n  \"brushing horse\",\n  \"wrapping paper\",\n  \"play game\",\n  \"wear shoe\",\n  \"play with sand\",\n  \"chopping wood\",\n  \"smear sunscreen\",\n  \"weightlifting\",\n  \"do some washing\",\n  \"assemble bicycle\",\n  \"bathe dog\",\n  \"shoe polish\",\n  \"fire\",\n  \"sharpening\",\n  \"wear contact lenses\",\n  \"parade\",\n  \"brush shoes\",\n  \"cleaning deciduous leaves\",\n  \"wash clothes\",\n  \"play tennis\",\n  \"clink with dog\",\n  \"tires dismantling\",\n  \"snow removal\",\n  \"squeezed juice\",\n  \"play table tennis\",\n  \"run\",\n  \"diving\",\n  \"decorating christmas tree\",\n  \"shooting\",\n  \"pruning branches\",\n  \"javelin throw\",\n  \"shuttlecock\",\n  \"wallpaper\",\n  \"practice stick method\",\n  \"control remote control ship\",\n  \"assembling tires\",\n  \"sweeping snow\",\n  \"sailing\",\n  \"cut nails for cat\",\n  \"assembly slate\",\n  \"push ice pot\",\n  \"physical exercise\",\n  \"assemble christmas tree\",\n  \"hair removal\",\n  \"surfing\",\n  \"making lollipops\",\n  \"bungee jumping\",\n  \"weed\",\n  \"handcraft\",\n  \"clean glass\",\n  \"loading chain\",\n  \"play magic cube\",\n  \"landscaping\",\n  \"play volleyball\",\n  \"play harmonica\",\n  \"cooking\",\n  \"shave legs\",\n  \"taking something\",\n  \"perform\",\n  \"drinking\",\n  \"play weeding machine\",\n  \"clean desk\",\n  \"make drink\",\n  \"peeling sweet potatoes\",\n  \"licensing\",\n  \"pole vault\",\n  \"bowling\",\n  \"skip lattices\",\n  \"introduction of lawn mower\",\n  \"hula hoop\",\n  \"play bounce shoes\",\n  \"yoga teaching\",\n  \"throwing discus\",\n  \"balance beam\",\n  \"flute\",\n  \"fly kite\",\n  \"leaping\",\n  \"finger guessing game\",\n  \"blow sax\",\n  \"comb ones hair\",\n  \"make face\",\n  \"weave hair\",\n  \"chat\",\n  \"sunscreen\",\n  \"photograph\",\n  \"trailing ground\",\n  \"iron clothes\",\n  \"chipping\",\n  \"ride camel\",\n  \"demonstrating\",\n  \"riding\",\n  \"make light\",\n  \"paint fence\",\n  \"making sandwiches\",\n  \"discus throwing\",\n  \"gymnastics on horizontal bar\",\n  \"water gliding\",\n  \"shot put\",\n  \"kicking sand\",\n  \"fertilizer application\",\n  \"strap rope skipping\",\n  \"play baseball\",\n  \"interview\",\n  \"sit on ground\",\n  \"be pulled forward\",\n  \"shave\",\n  \"teaching\",\n  \"play computer games\",\n  \"play football\",\n  \"teaching martial arts\",\n  \"play jumper\",\n  \"help to cut hair\",\n  \"table tennis\",\n  \"play bumper car\",\n  \"skateboard\",\n  \"bike ride\",\n  \"paddle\",\n  \"tire repair\",\n  \"long jump\",\n  \"swimming\",\n  \"shine shoes\",\n  \"broadcast news\",\n  \"scavenging leaves\",\n  \"sail\",\n  \"training dog\",\n  \"use of vacuum cleaner\",\n  \"wrist wrestling\",\n  \"blow ones hair\",\n  \"field shooting\",\n  \"ride on bicycle\",\n  \"rock climbing\",\n  \"play slide\",\n  \"high jump\",\n  \"drive car\",\n  \"brush wall\",\n  \"skateboarding\",\n  \"slippery pulley\",\n  \"playing harmonica\",\n  \"cook\",\n  \"play beach volleyball\",\n  \"explain ice hockey\",\n  \"pray\",\n  \"play basketball\",\n  \"tug of war\",\n  \"dismantling gifts\",\n  \"football match\",\n  \"laying tile\",\n  \"explain\",\n  \"play with smarthphone\",\n  \"hair care\",\n  \"spruce up\",\n  \"gift of gift\",\n  \"throwing darts\",\n  \"play tai chi\",\n  \"play parallel bars\",\n  \"turn magic cube\",\n  \"draw\",\n  \"watch tv\",\n  \"dog\",\n  \"dog and cat\",\n  \"competition archery\",\n  \"throwing javelin\",\n  \"bicycle race\",\n  \"throw hammer\",\n  \"throwing discuses\",\n  \"training\",\n  \"mountain bike ride\",\n  \"ice curling\",\n  \"exercise gymnastics\",\n  \"water polo\",\n  \"turn somersault\",\n  \"gymnastics\",\n  \"throw ball\",\n  \"wrestling\",\n  \"enhanced collaboration\",\n  \"black\",\n  \"yellow\",\n  \"dodgeball\",\n  \"eat ice cream\",\n  \"haystack\",\n  \"kindling wood\",\n  \"smoking\",\n  \"tree planting\",\n  \"curly\",\n  \"make skis\",\n  \"play violin\",\n  \"grooming\",\n  \"shoes polish\",\n  \"cut persons head\",\n  \"by cable car\",\n  \"wire walking\",\n  \"do yoga\",\n  \"masonry wall\",\n  \"clean dog\",\n  \"push car\",\n  \"rope skipping\",\n  \"leather shoes\",\n  \"measurement length\",\n  \"car repair tires\",\n  \"pruning trees\",\n  \"tread on stilts\",\n  \"paint chair\",\n  \"tilling\",\n  \"dance hip hop\",\n  \"drink beer\",\n  \"dive to feed fish\",\n  \"windsurfing\",\n  \"boxing practice\",\n  \"haircut\",\n  \"ride bicycle\",\n  \"do shape packing\",\n  \"play piano\",\n  \"play hockey\",\n  \"eat something\",\n  \"rubbing feet\",\n  \"sleep\",\n  \"play with phone\",\n  \"light roof\",\n  \"ride bike\",\n  \"wash hands\",\n  \"play guitar\",\n  \"shoe rope\",\n  \"throw spear\",\n  \"fight\",\n  \"play music\",\n  \"prepare for dive\",\n  \"singing\",\n  \"tread\",\n  \"face\",\n  \"hockey game\",\n  \"helmet\",\n  \"hat\",\n  \"play billiards\",\n  \"knit sweater\",\n  \"make salad\",\n  \"use stick\",\n  \"skiing leather ring\",\n  \"light cigarette\",\n  \"tree pruning\",\n  \"tire change\",\n  \"performing gymnastics\",\n  \"play roller skating\",\n  \"wheel change\",\n  \"dance tai chi sword\",\n  \"wrists\",\n  \"be manicure\",\n  \"make sandwich biscuits\",\n  \"reaction capacity\",\n  \"gray\",\n  \"blue\",\n  \"green\",\n  \"red\",\n  \"white\",\n  \"black and white\",\n  \"orange\",\n  \"pink\",\n  \"purple\",\n  \"brown\",\n  \"golden\",\n  \"dynamic bicycle\",\n  \"white glove\",\n  \"glove\",\n  \"rest\",\n  \"lying on ground\",\n  \"introduce people\",\n  \"motorcycle jump\",\n  \"jump up\",\n  \"take cell phone\",\n  \"play with mud\",\n  \"and then drums\",\n  \"audience left\",\n  \"audience came to court\",\n  \"raise hand to celebrate\",\n  \"cheer\",\n  \"throw snowball\",\n  \"to ground\",\n  \"video end\",\n  \"audience applauded\",\n  \"then shovel snow\",\n  \"jump into sand pit\",\n  \"talk to passer by\",\n  \"run up\",\n  \"serve\",\n  \"take ball\",\n  \"go on court\",\n  \"introduction of products\",\n  \"drink drink\",\n  \"clean horse\",\n  \"lens shaky\",\n  \"end of demonstration\",\n  \"wash hair\",\n  \"start\",\n  \"add ice\",\n  \"prepare for start\",\n  \"shedding rope\",\n  \"check rope\",\n  \"take skates\",\n  \"get ready\",\n  \"coach guidance\",\n  \"referee throws the ball\",\n  \"cat peppermint\",\n  \"prepare starting\",\n  \"shoulder shoulder\",\n  \"showcase wine\",\n  \"blower\",\n  \"blow up drum\",\n  \"squat\",\n  \"almost hit by car\",\n  \"production process\",\n  \"button button\",\n  \"be interviewed\",\n  \"go out\",\n  \"down\",\n  \"all down\",\n  \"christmas tree fell down\",\n  \"hole\",\n  \"diver\",\n  \"plain white cloth\",\n  \"national flag\",\n  \"hair drier\",\n  \"white woman\",\n  \"wall column\",\n  \"visual acuity chart\",\n  \"shovel\",\n  \"wall\",\n  \"sofa\",\n  \"living room\",\n  \"tree\",\n  \"grassland\",\n  \"iron block\",\n  \"house\",\n  \"automobile\",\n  \"mirror\",\n  \"ground\",\n  \"billboard\",\n  \"enclosure\",\n  \"television\",\n  \"window\",\n  \"blue plastic film\",\n  \"hair stylist\",\n  \"wooden doors\",\n  \"small house\",\n  \"table\",\n  \"shelf\",\n  \"coloured lights\",\n  \"small window\",\n  \"fountain\",\n  \"audience\",\n  \"glass\",\n  \"blue screen\",\n  \"spectator seats\",\n  \"guardrail net\",\n  \"screen\",\n  \"cabinet\",\n  \"kitchen\",\n  \"wood\",\n  \"door\",\n  \"vehicle\",\n  \"christmas tree\",\n  \"chair\",\n  \"yellow bag\",\n  \"glass cabinet\",\n  \"two pieces of exhibition board\",\n  \"fish\",\n  \"goods shelves\",\n  \"treadmill\",\n  \"window curtains\",\n  \"snow mountain\",\n  \"mountain\",\n  \"car\",\n  \"stand\",\n  \"practice basketball\",\n  \"experimentalize\",\n  \"guitar\",\n  \"table football\",\n  \"bread\",\n  \"rope\",\n  \"men in white\",\n  \"microphone\",\n  \"poker\",\n  \"computer\",\n  \"disk\",\n  \"judges\",\n  \"ball net\",\n  \"drum kit\",\n  \"cobra\",\n  \"ball table\",\n  \"stone\",\n  \"sand\",\n  \"shoal of fish\",\n  \"white coat man\",\n  \"pool\",\n  \"road\",\n  \"water\",\n  \"tennis table\",\n  \"railing\",\n  \"tea table\",\n  \"cat\",\n  \"flower receptacle\",\n  \"fire pile\",\n  \"men in blue\",\n  \"cake\",\n  \"bowling pin\",\n  \"floor\",\n  \"hillside\",\n  \"white man\",\n  \"ironing table\",\n  \"basketball box\",\n  \"man in blue\",\n  \"table tennis table\",\n  \"food\",\n  \"network\",\n  \"red clothes\",\n  \"cruise\",\n  \"light pole\",\n  \"sound\",\n  \"agitation machine\",\n  \"man in camouflage\",\n  \"kitchen sink\",\n  \"two cattles\",\n  \"court\",\n  \"football field\",\n  \"man in white\",\n  \"wine bottle\",\n  \"basket\",\n  \"piano\",\n  \"beer\",\n  \"timer\",\n  \"counter\",\n  \"wash basin\",\n  \"bottle\",\n  \"ball\",\n  \"wrist watch\",\n  \"trash\",\n  \"steel pipe\",\n  \"model\",\n  \"row of tires\",\n  \"bunker\",\n  \"switch\",\n  \"stool\",\n  \"swimming pool\",\n  \"bracelet\",\n  \"spoon\",\n  \"milk\",\n  \"knife\",\n  \"surround masses\",\n  \"auditorium\",\n  \"silverware cadets\",\n  \"piano frame\",\n  \"fence\",\n  \"man in a suit\",\n  \"table and chair\",\n  \"horse\",\n  \"guardrail\",\n  \"referee\",\n  \"glass table\",\n  \"sea\",\n  \"wine glass\",\n  \"material science\",\n  \"seasoning\",\n  \"card\",\n  \"ice cream\",\n  \"tool\",\n  \"bowl\",\n  \"down by sally gardens\",\n  \"spray painting\",\n  \"club signs\",\n  \"help man shave\",\n  \"relax\",\n  \"decompression\",\n  \"physical fitness\",\n  \"exercise muscles\",\n  \"relieve stress\",\n  \"laugh\",\n  \"put on shoes\",\n  \"lingual nail\",\n  \"cut roof tin\",\n  \"gymnastic mat\",\n  \"siberian husky\",\n  \"poodle\",\n  \"cooking noodles\",\n  \"make egg roll\",\n  \"collar exercises\",\n  \"transparent\",\n  \"much much safer\",\n  \"much higher\",\n  \"christmas\",\n  \"s\",\n  \"e\",\n  \"exercise bike\",\n  \"skate\",\n  \"lawn\",\n  \"cement floor\",\n  \"horizontal bar\",\n  \"surf board\",\n  \"circular site\",\n  \"woman in white\",\n  \"water basin\",\n  \"trampoline\",\n  \"rim\",\n  \"volleyball court\",\n  \"blue dress man\",\n  \"garden\",\n  \"carrot\",\n  \"pads\",\n  \"vacuum cleaner\",\n  \"cooking bench\",\n  \"notes\",\n  \"juicer\",\n  \"blanket\",\n  \"bathing pool\",\n  \"curling runway\",\n  \"wheel\",\n  \"bar counter\",\n  \"protective net\",\n  \"opponent\",\n  \"contestant\",\n  \"hopping viaduct\",\n  \"pool table\",\n  \"curly hair\",\n  \"pet dog\",\n  \"hairstylist\",\n  \"coach\",\n  \"nail polish\",\n  \"make up\",\n  \"take exercise\",\n  \"play darts\",\n  \"water spray\",\n  \"tell about\",\n  \"phone\",\n  \"gymnastics competition\",\n  \"show turns eye\",\n  \"guard net\",\n  \"ski\",\n  \"drawing board\",\n  \"welding\",\n  \"buoy\",\n  \"watch\",\n  \"hair hoop\",\n  \"headset\",\n  \"flying discses\",\n  \"gambling\",\n  \"explain games rule\",\n  \"high\",\n  \"security\",\n  \"danger\",\n  \"volleyball\",\n  \"long distance run\",\n  \"twenty one points\",\n  \"tennis sports\",\n  \"ice hockey movement\",\n  \"parallel bars movement\",\n  \"three step jump\",\n  \"ice hockey\",\n  \"705\",\n  \"mouthpiece\",\n  \"budweiser\",\n  \"wrench\",\n  \"ceiling\",\n  \"sky\",\n  \"parallel bars exercise\",\n  \"boxing match\",\n  \"wiping cupboard\",\n  \"seal carpets\",\n  \"poweriser\",\n  \"hair rope\",\n  \"wash socks\",\n  \"toilet paper\",\n  \"braided hair\",\n  \"pastry master\",\n  \"charlie adams\",\n  \"decorator\",\n  \"colleague\",\n  \"partner\",\n  \"master and servant\",\n  \"mother and daughter\",\n  \"teammate\",\n  \"whole family\",\n  \"family\",\n  \"spouse\",\n  \"smoke friend\",\n  \"doctor patient relationship\",\n  \"teaching relationship\",\n  \"father and son\",\n  \"father and daughter\",\n  \"lovers\",\n  \"classmate\",\n  \"dancing partner\",\n  \"video player\",\n  \"row of fences\",\n  \"lower\",\n  \"low grade\",\n  \"higher\",\n  \"much more dangerous\",\n  \"bit safe\",\n  \"protect head\",\n  \"commonly\",\n  \"winter\",\n  \"circular\",\n  \"cylinder\",\n  \"trapezoid\",\n  \"square\",\n  \"rectangle\",\n  \"t shirt\",\n  \"long\",\n  \"snow\",\n  \"roof\",\n  \"runway\",\n  \"introduction equipment\",\n  \"clear\",\n  \"preside over program\",\n  \"hand drums\",\n  \"fitness equipment\",\n  \"archery\",\n  \"relatives\",\n  \"in repair\",\n  \"practice ball\",\n  \"make biscuits\",\n  \"how to wear contact lenses\",\n  \"introduction of cutting tools\",\n  \"how to set up cars\",\n  \"billiard game\",\n  \"rules of playing cards\",\n  \"food program\",\n  \"yoga mat\",\n  \"coaster\",\n  \"board\",\n  \"paper\",\n  \"lake\",\n  \"stage\",\n  \"inverted reflection in water\",\n  \"rubber runway\",\n  \"hovercraft\",\n  \"necklace\",\n  \"labrador\",\n  \"short\",\n  \"blue jeans\",\n  \"jeans\",\n  \"jump\",\n  \"jumping project\",\n  \"gym shoes\",\n  \"boots\",\n  \"artistic gymnastics\",\n  \"night\",\n  \"bar\",\n  \"home\",\n  \"basketball court\",\n  \"gym\",\n  \"hockey field\",\n  \"suburb\",\n  \"barber shop\",\n  \"beach\",\n  \"natatorium\",\n  \"casino\",\n  \"in street\",\n  \"snow land\",\n  \"bedroom\",\n  \"grass\",\n  \"parking lot\",\n  \"toilet\",\n  \"studio\",\n  \"park\",\n  \"hall\",\n  \"dancing room\",\n  \"playground\",\n  \"street\",\n  \"hotel\",\n  \"tattoo shop\",\n  \"shower room\",\n  \"sandy beach\",\n  \"room\",\n  \"rooftop\",\n  \"cave\",\n  \"stadium\",\n  \"plain\",\n  \"desk\",\n  \"ski field\",\n  \"tennis court\",\n  \"baseball field\",\n  \"lakeside\",\n  \"laboratory\",\n  \"church\",\n  \"amusement park\",\n  \"racetrack\",\n  \"horse yard\",\n  \"training ground\",\n  \"supermarket\",\n  \"office\",\n  \"market\",\n  \"tennis room\",\n  \"bowling room\",\n  \"manicure shop\",\n  \"game place\",\n  \"seaside\",\n  \"aquatic\",\n  \"chess and card room\",\n  \"left\",\n  \"left hand\",\n  \"black man\",\n  \"stimulate\",\n  \"reduce drag\",\n  \"give yourself inertia\",\n  \"increase jump distance\",\n  \"poor balance\",\n  \"for beauty\",\n  \"avoid injury\",\n  \"for sake of beauty\",\n  \"beautiful\",\n  \"anti damage\",\n  \"avoid hurt somenon\",\n  \"beauty\",\n  \"keep health\",\n  \"entertainment\",\n  \"convenient\",\n  \"wonderful performance\",\n  \"prevent drowning\",\n  \"woman\",\n  \"cylindrical\",\n  \"triangle\",\n  \"ellipse\",\n  \"round\",\n  \"dragon boat\",\n  \"hard to catch fire\",\n  \"2 people\",\n  \"skiing air cushion\",\n  \"sedan\",\n  \"good\",\n  \"wooden house\",\n  \"scuba diving\",\n  \"sunglasses\",\n  \"drifting\",\n  \"braid of double twist\",\n  \"out of flatness\",\n  \"slipper\",\n  \"stripe\",\n  \"suit\",\n  \"lattice\",\n  \"cleanser\",\n  \"cutting machine\",\n  \"air conditioner\",\n  \"two little funny birds\",\n  \"sapling\",\n  \"blonde\",\n  \"spider man toy\",\n  \"vest\",\n  \"tango\",\n  \"villa\",\n  \"wooden boat\",\n  \"springboard\",\n  \"slide\",\n  \"cardboard\",\n  \"protective pad\",\n  \"tigers head\",\n  \"plastic bag\",\n  \"onion\",\n  \"introduction of bullfighting\",\n  \"painting\",\n  \"game\",\n  \"take step\",\n  \"do aerobics\",\n  \"learn diving\",\n  \"soup spoon\",\n  \"english\",\n  \"banana\",\n  \"sax\",\n  \"workbench\",\n  \"drifting air cushion\",\n  \"pedal\",\n  \"bridge frame\",\n  \"sponge pad\",\n  \"child seat\",\n  \"bicycle\",\n  \"earth\",\n  \"seaweed\",\n  \"sealing layer\",\n  \"marble\",\n  \"bed\",\n  \"lifting jack\",\n  \"brand\",\n  \"sailboat\",\n  \"ponytail\",\n  \"dress\",\n  \"take deep breath\",\n  \"pommeled horse\",\n  \"shoulder hair\",\n  \"butterfly\",\n  \"peaked cap\",\n  \"sweet canister\",\n  \"new type lawn mower\",\n  \"fixator\",\n  \"scientific research ship\",\n  \"sandals\",\n  \"leather boots\",\n  \"blue shorts\",\n  \"funny video\",\n  \"b\",\n  \"pvc material\",\n  \"roast fish\",\n  \"basketball match\",\n  \"sitting\",\n  \"summer\",\n  \"cheerleading\",\n  \"spider\",\n  \"evening\",\n  \"afternoon\",\n  \"axe\",\n  \"movement type\",\n  \"racing moto\",\n  \"remote control boat\",\n  \"2012\",\n  \"halloween\",\n  \"casinos\",\n  \"carpet\",\n  \"track\",\n  \"field\",\n  \"park path\",\n  \"bread machine\",\n  \"yard\",\n  \"workshop\",\n  \"meadow\",\n  \"circle\",\n  \"railway bridge\",\n  \"river\",\n  \"restaurant\",\n  \"doorway\",\n  \"opera\",\n  \"track and field ground\",\n  \"sports meeting\",\n  \"subway\",\n  \"bullring\",\n  \"head\",\n  \"cudgel court\",\n  \"bathroom\",\n  \"bicycle shop\",\n  \"guide room\",\n  \"prairie track\",\n  \"snowfield\",\n  \"camel\",\n  \"seabed\",\n  \"aged\",\n  \"tropic\",\n  \"japan\",\n  \"srb\",\n  \"left eye\",\n  \"right eye\",\n  \"thumb\",\n  \"ones right hand\",\n  \"right\",\n  \"right hand\",\n  \"ger\",\n  \"leather gloves\",\n  \"second dives\",\n  \"left foot\",\n  \"her father\",\n  \"india\",\n  \"silverware\",\n  \"red jersey\",\n  \"blonde man\",\n  \"ring finger\",\n  \"catch fish\",\n  \"dive\",\n  \"pregnant\",\n  \"to throw far away\",\n  \"motion\",\n  \"sparring\",\n  \"to throw shot\",\n  \"be happy with drum\",\n  \"happy\",\n  \"get rid of blues\",\n  \"in washing up\",\n  \"some water on hands\",\n  \"wear jump shoes\",\n  \"in fight\",\n  \"someones good at skipping rope\",\n  \"for entertainment\",\n  \"win\",\n  \"easy to shave\",\n  \"make darts\",\n  \"labor saving\",\n  \"darts are easy to targets\",\n  \"express happiness\",\n  \"score\",\n  \"win in gambling\",\n  \"be covered by people\",\n  \"blindfolded eyes\",\n  \"to challenge themselves\",\n  \"prevent skidding\",\n  \"express joy\",\n  \"speed up javelin\",\n  \"more beautiful\",\n  \"give discus inertia\",\n  \"to express courtesy\",\n  \"guide children\",\n  \"blower is too heavy\",\n  \"greeting\",\n  \"cold prevention\",\n  \"end\",\n  \"be more beautiful\",\n  \"decorating house\",\n  \"trees are not neat\",\n  \"protect\",\n  \"protect eye\",\n  \"hungry\",\n  \"avoid messing\",\n  \"thanks to audience\",\n  \"easy eat\",\n  \"arm force\",\n  \"take part\",\n  \"do public welfare\",\n  \"reduce friction\",\n  \"increase difficulty\",\n  \"keep healthy\",\n  \"burning fire\",\n  \"convenient weeding\",\n  \"express victory\",\n  \"to dive\",\n  \"scoop water\",\n  \"record results\",\n  \"speed up\",\n  \"jump far\",\n  \"unsteadiness of gravity\",\n  \"curettage\",\n  \"protect waist\",\n  \"eatting\",\n  \"make car light\",\n  \"make manicure easier\",\n  \"squeezing apple\",\n  \"test light bulb\",\n  \"car dirty\",\n  \"mouth leaking\",\n  \"clothing leveling\",\n  \"be attacked\",\n  \"interest\",\n  \"easy blow\",\n  \"fixed thread\",\n  \"farther of the jump\",\n  \"angry\",\n  \"have personality\",\n  \"avoid freezing hands\",\n  \"protect teeth\",\n  \"pick up speed\",\n  \"safety guarantee\",\n  \"you can jump farther\",\n  \"others car broke down\",\n  \"because long jump\",\n  \"to blow sax\",\n  \"put on hat\",\n  \"reduce center of gravity\",\n  \"hamper ball\",\n  \"decorate\",\n  \"acne treatment\",\n  \"encouragement\",\n  \"balance\",\n  \"challenging\",\n  \"bullet dodging\",\n  \"interesting\",\n  \"cheerful mood\",\n  \"bring eggs together\",\n  \"imbalance of body\",\n  \"satisfy greed\",\n  \"thank\",\n  \"put child down\",\n  \"drink green liquid\",\n  \"let people pass through\",\n  \"pursuit of stimulation\",\n  \"better growth\",\n  \"excitement\",\n  \"to win\",\n  \"ball inertia\",\n  \"halloween decoration\",\n  \"active atmosphere\",\n  \"keep clean\",\n  \"protect their heads\",\n  \"good growth of plants\",\n  \"almost power\",\n  \"maintain level\",\n  \"dinner\",\n  \"encourage each other\",\n  \"increase speed of shot\",\n  \"irritation\",\n  \"tire broken\",\n  \"work\",\n  \"art of display\",\n  \"healthy\",\n  \"prevent cramps\",\n  \"fear tree be frozen\",\n  \"convenient engraving\",\n  \"clean\",\n  \"ranking\",\n  \"teaching video\",\n  \"dress up\",\n  \"test\",\n  \"record video\",\n  \"video recording\",\n  \"improve skills\",\n  \"recording time\",\n  \"stick wallpaper\",\n  \"accident prevention\",\n  \"clean and beautiful\",\n  \"convenient imitation\",\n  \"convenient viewing\",\n  \"greeting new year\",\n  \"beautify environment\",\n  \"well done\",\n  \"art\",\n  \"keep weight\",\n  \"prevent being injury\",\n  \"to be beautiful\",\n  \"sport project\",\n  \"competition\",\n  \"make cake tasty\",\n  \"bowl is dirty\",\n  \"for sunscreen\",\n  \"for safety\",\n  \"dirty\",\n  \"filter out water\",\n  \"grass is too high\",\n  \"anger\",\n  \"to express comfort\",\n  \"game lost\",\n  \"strengthen proficiency\",\n  \"record performance\",\n  \"fear of hindering people\",\n  \"curling\",\n  \"challenge stimulus\",\n  \"tired out\",\n  \"more practice\",\n  \"inertia\",\n  \"end performance\",\n  \"brain is damaged\",\n  \"guessing victory\",\n  \"escape\",\n  \"because of smoking\",\n  \"because of tattoo pain\",\n  \"large density\",\n  \"strong body\",\n  \"because its done\",\n  \"experience\",\n  \"goal\",\n  \"celebrate victory\",\n  \"express excitement\",\n  \"because you want to dive\",\n  \"fixed ceramic tile\",\n  \"easy understand\",\n  \"avoid enzyme change\",\n  \"for eatting\",\n  \"convenient for walking\",\n  \"prevent fall\",\n  \"accelerate\",\n  \"air rotation\",\n  \"back somersault\",\n  \"take oil\",\n  \"table collapsed\",\n  \"assembled rear tire\",\n  \"tie up hair\",\n  \"open your hands\",\n  \"shave sideburns\",\n  \"upside up\",\n  \"turn head\",\n  \"step back\",\n  \"chilli powder\",\n  \"stride left foot\",\n  \"straighten back\",\n  \"cut off\",\n  \"anjali mudra\",\n  \"look at effect\",\n  \"active wrist\",\n  \"toys have been raised\",\n  \"waving\",\n  \"teaching by step\",\n  \"pulp\",\n  \"grasp rope\",\n  \"be pulled down\",\n  \"nearly fall\",\n  \"hand in hand\",\n  \"stand up\",\n  \"wave\",\n  \"pine\",\n  \"return to place\",\n  \"fell to ground\",\n  \"wear sunglasses\",\n  \"skiing down hill\",\n  \"wash dishes\",\n  \"and put it back again\",\n  \"fall on air cushion\",\n  \"lose ball\",\n  \"close scissors\",\n  \"changing right hand\",\n  \"rotary handlebar\",\n  \"turn on light\",\n  \"put sweet potato in bowls\",\n  \"electrified\",\n  \"vomit\",\n  \"fall\",\n  \"help him cut his hair\",\n  \"fall into water\",\n  \"bend\",\n  \"stretch leg\",\n  \"take off gloves\",\n  \"put into water tank\",\n  \"start dancing\",\n  \"well cooked\",\n  \"unable to stand firmly\",\n  \"slide down slope\",\n  \"put on leg\",\n  \"black pants swimmers\",\n  \"go on running\",\n  \"kicking doll\",\n  \"be cuddle\",\n  \"go out of room\",\n  \"puff out smoke\",\n  \"start of the game\",\n  \"control by foot\",\n  \"celebrate\",\n  \"pick up\",\n  \"stir\",\n  \"tissue\",\n  \"bartender\",\n  \"automative lighting\",\n  \"audiences stand\",\n  \"star shaped toy\",\n  \"water sled\",\n  \"red cloth\",\n  \"curtain\",\n  \"safety net\",\n  \"pumpkin shed\",\n  \"oxygen bottle\",\n  \"big bottle\",\n  \"spider man\",\n  \"desert\",\n  \"personal information\",\n  \"painted wall\",\n  \"red curtain\",\n  \"both hands\",\n  \"lot of boxes\",\n  \"steps\",\n  \"bookcase\",\n  \"oven\",\n  \"shed\",\n  \"telegraph pole\",\n  \"ornament\",\n  \"white walls\",\n  \"performers\",\n  \"dresser\",\n  \"water tap\",\n  \"magic cube\",\n  \"pot\",\n  \"toaster oven\",\n  \"tennis\",\n  \"bullfighting field\",\n  \"bet\",\n  \"grinder machine\",\n  \"scoreboard\",\n  \"machine\",\n  \"pull rope\",\n  \"launch\",\n  \"boiler\",\n  \"potted plant\",\n  \"photo\",\n  \"minions\",\n  \"ring\",\n  \"blue sneakers\",\n  \"big tree\",\n  \"refrigerator\",\n  \"line\",\n  \"yellow paint\",\n  \"iron chain\",\n  \"patch\",\n  \"glasses\",\n  \"dolly\",\n  \"hu la hoop\",\n  \"safety hat\",\n  \"plastic flowers\",\n  \"lamp\",\n  \"curling brush\",\n  \"bushes\",\n  \"long hair man\",\n  \"child\",\n  \"saw\",\n  \"plate\",\n  \"yellow basin\",\n  \"men in black\",\n  \"street lamp\",\n  \"spare tire\",\n  \"tattoo artist\",\n  \"dry powder plate\",\n  \"black hair woman\",\n  \"barbell\",\n  \"earring\",\n  \"parallel bar\",\n  \"large building\",\n  \"ceramic tile\",\n  \"person wearing a hat\",\n  \"pond\",\n  \"row of clothes\",\n  \"iron\",\n  \"masonry\",\n  \"ladder\",\n  \"cameraman\",\n  \"canvas\",\n  \"shrimp meat\",\n  \"hand washing box\",\n  \"awning\",\n  \"stairs\",\n  \"american flag\",\n  \"socket\",\n  \"cosmetics\",\n  \"clothes\",\n  \"romaine lettuce\",\n  \"make body pliable\",\n  \"rabbit\",\n  \"red baffle\",\n  \"horse running yard\",\n  \"personnel\",\n  \"banana tree\",\n  \"british flag\",\n  \"very excited\",\n  \"red ball\",\n  \"shore\",\n  \"release pressure\",\n  \"purify air\",\n  \"exercise balance\",\n  \"9\",\n  \"exercise\",\n  \"make report\",\n  \"yelling\",\n  \"eradicator\",\n  \"mat cloth\",\n  \"chopping block\",\n  \"stone and water grass\",\n  \"seawater\",\n  \"crew cut\",\n  \"cold\",\n  \"red and black\",\n  \"wash milk\",\n  \"height\",\n  \"clockwise\",\n  \"anti clockwise\",\n  \"forward\",\n  \"up and down\",\n  \"front\",\n  \"5000 meters\",\n  \"oxygen mask\",\n  \"blue shirt\",\n  \"very good\",\n  \"supply lemon juice\",\n  \"clean and tidy\",\n  \"fixed hairstyle\",\n  \"straw\",\n  \"front rollover\",\n  \"cry sadly\",\n  \"very angry\",\n  \"smile\",\n  \"more fair\",\n  \"its pretty\",\n  \"eager\",\n  \"fat\",\n  \"a\",\n  \"w\",\n  \"t\",\n  \"c\",\n  \"cucumber\",\n  \"woodiness\",\n  \"mustache\",\n  \"chopped wood\",\n  \"ball frame\",\n  \"target\",\n  \"gambling table\",\n  \"bag\",\n  \"cross bar\",\n  \"equip them with modern machines\",\n  \"rock\",\n  \"craft\",\n  \"wood pile\",\n  \"protective effect\",\n  \"do horizontal bar gymnastics\",\n  \"do homework\",\n  \"main committee\",\n  \"origami\",\n  \"asymmetrical bars\",\n  \"bob\",\n  \"shoulder length hair\",\n  \"single cauda\",\n  \"short hair\",\n  \"lime\",\n  \"electromagnetic furnace\",\n  \"clerk\",\n  \"athletes\",\n  \"reporter\",\n  \"p\",\n  \"pumpkin\",\n  \"matador\",\n  \"barber\",\n  \"cooker\",\n  \"fitness coach\",\n  \"decorating umbrella\",\n  \"basin\",\n  \"group of children\",\n  \"twinkle\",\n  \"gymnastic performance\",\n  \"beautiful arched eyebrows\",\n  \"hosting news\",\n  \"variety of wine\",\n  \"sandwich\",\n  \"skateboard of water skiing\",\n  \"sing\",\n  \"hold girl\",\n  \"exercise weight lifting\",\n  \"mowing lawn\",\n  \"drift\",\n  \"shoeshine\",\n  \"cross country race\",\n  \"women in red clothes\",\n  \"rag\",\n  \"ride cross country motorcycle\",\n  \"bullfight\",\n  \"broadcast\",\n  \"black hair girl\",\n  \"1154\",\n  \"female host\",\n  \"how to cut potatoes\",\n  \"very pleased\",\n  \"ballet dancer\",\n  \"long rod\",\n  \"four thousand and six hundred\",\n  \"first\",\n  \"korea\",\n  \"walk\",\n  \"recreational machines\",\n  \"29\",\n  \"1951\",\n  \"330\",\n  \"1144\",\n  \"knock toy\",\n  \"spinning\",\n  \"mans head\",\n  \"cut tree\",\n  \"standing\",\n  \"party\",\n  \"brush\",\n  \"practice water sled\",\n  \"package book\",\n  \"ski slope\",\n  \"teach hair\",\n  \"camera\",\n  \"apple juice\",\n  \"short hair baby\",\n  \"half squat\",\n  \"hold right leg\",\n  \"squatting\",\n  \"lead singer\",\n  \"doctor\",\n  \"trainer\",\n  \"safe of car\",\n  \"life buoy\",\n  \"sandbag\",\n  \"woven goods\",\n  \"pepper\",\n  \"companion\",\n  \"partnership\",\n  \"stranger\",\n  \"competitor\",\n  \"shopkeepers and shopkeepers\",\n  \"brother and sister\",\n  \"shopkeeper and customer\",\n  \"masses and journalists\",\n  \"boss and the customer\",\n  \"referee and player\",\n  \"row of cars\",\n  \"hemp rope\",\n  \"forest\",\n  \"green brush\",\n  \"casement window\",\n  \"black hat man\",\n  \"poisoning\",\n  \"much much higher\",\n  \"much safer\",\n  \"removal of bubbles\",\n  \"fixed hair\",\n  \"natural lashes\",\n  \"control direction\",\n  \"10\",\n  \"floating ice\",\n  \"colorful\",\n  \"red and white\",\n  \"silver\",\n  \"ballet\",\n  \"take off shoes\",\n  \"lift her up\",\n  \"shaving cutter head\",\n  \"scissors\",\n  \"carding\",\n  \"take off long rope\",\n  \"round to other side\",\n  \"stop\",\n  \"hand ring\",\n  \"photo display\",\n  \"pull dog down\",\n  \"two circles of rotation\",\n  \"rolling skin\",\n  \"feed bread\",\n  \"drumstick\",\n  \"pocket knife\",\n  \"take off your shirt\",\n  \"appearance of name\",\n  \"press ceramic tile\",\n  \"flexibility\",\n  \"team consciousness\",\n  \"throw away tissue\",\n  \"scarf\",\n  \"basketball\",\n  \"hairpin\",\n  \"branches and leaves fell\",\n  \"release white smoke\",\n  \"rugby\",\n  \"prayers\",\n  \"make phone\",\n  \"gymnastics suit\",\n  \"right handed rod\",\n  \"lift truck\",\n  \"unload barbell\",\n  \"feathered pat\",\n  \"physical energy\",\n  \"plug igniter\",\n  \"pen\",\n  \"straw hat\",\n  \"training skills\",\n  \"harmonica\",\n  \"plastic track\",\n  \"flat shovel\",\n  \"enjoy\",\n  \"life jacket\",\n  \"pine soil\",\n  \"movement of hand\",\n  \"wristwatch\",\n  \"hands on ability\",\n  \"needle\",\n  \"obstacle\",\n  \"vaulting horse\",\n  \"podium\",\n  \"yellow ironing cloth\",\n  \"achievement is effective\",\n  \"coordination\",\n  \"man in green\",\n  \"avoid opponents ball\",\n  \"wear ballet shoes\",\n  \"clap hands\",\n  \"hold together\",\n  \"continue down\",\n  \"embrace\",\n  \"shoeshine surface\",\n  \"black container\",\n  \"put cup down\",\n  \"vertical thumb\",\n  \"dog catches the plate\",\n  \"then training\",\n  \"running\",\n  \"clapping\",\n  \"listen to coach\",\n  \"twist and a smile\",\n  \"pinch with perturbed\",\n  \"fixed with adhesive paper\",\n  \"boy comes down\",\n  \"snow fall\",\n  \"do bike ride\",\n  \"mans hand\",\n  \"ball goal net\",\n  \"need some help to correct\",\n  \"cup was removed\",\n  \"ball is bounced back\",\n  \"camel came over\",\n  \"pulverized people lead\",\n  \"fly back to roof\",\n  \"stop timing\",\n  \"blow dry\",\n  \"play with toys\",\n  \"change tire\",\n  \"fixed tire\",\n  \"remove rubber ring\",\n  \"drink milk tea\",\n  \"go to black dog\",\n  \"bow\",\n  \"shoelace\",\n  \"powdery base\",\n  \"cup fell into water\",\n  \"blue team serve\",\n  \"get home\",\n  \"blood flow\",\n  \"car scrubbing\",\n  \"take out chips\",\n  \"smooth and smooth\",\n  \"treatment of chili\",\n  \"start training\",\n  \"discus collision\",\n  \"perm hand\",\n  \"tutoring cadets\",\n  \"eat ball\",\n  \"dog planer\",\n  \"wine precipitation\",\n  \"start skiing\",\n  \"wash ones face\",\n  \"clenching fist\",\n  \"assemble cake\",\n  \"clip eyelash\",\n  \"push people\",\n  \"brace with feet\",\n  \"take off faucet\",\n  \"grab ball\",\n  \"lay by small tree\",\n  \"stop roller skating\",\n  \"do edge decoration\",\n  \"nail clipper\",\n  \"look at blade\",\n  \"evade automatically\",\n  \"snowball\",\n  \"slide out of site\",\n  \"punching\",\n  \"open ones eyes\",\n  \"go down table\",\n  \"blonde womens car wash\",\n  \"splash\",\n  \"look computer desktop\",\n  \"board stands up\",\n  \"inserting needle\",\n  \"keep shaving\",\n  \"leave\",\n  \"take out gun\",\n  \"turn around\",\n  \"be pulled by ship\",\n  \"tapping bucket\",\n  \"cilping some lemon slices\",\n  \"bow to lens\",\n  \"eat up\",\n  \"tie shoelaces\",\n  \"throw ball out\",\n  \"shoes getting clean\",\n  \"throw it to wall\",\n  \"regulating nozzle\",\n  \"start tug of war\",\n  \"frying eggs\",\n  \"adhesive tape\",\n  \"blow up\",\n  \"go back to walk\",\n  \"shot switching\",\n  \"continue to grind knife\",\n  \"hit each other\",\n  \"hand down\",\n  \"grey team celebrates\",\n  \"draw rubber rafts\",\n  \"push left dolls\",\n  \"dog ran away\",\n  \"wait for\",\n  \"speak\",\n  \"block gliding\",\n  \"walk away\",\n  \"put slice of lemon\",\n  \"look javelin distance\",\n  \"cooling\",\n  \"eliminated\",\n  \"smoothly\",\n  \"water is flooded\",\n  \"get up to pay\",\n  \"change pair of shoes\",\n  \"go ashore\",\n  \"flushing razor\",\n  \"emotional excitement\",\n  \"throw snow on edge\",\n  \"pour out washing powder\",\n  \"start bungee jumping\",\n  \"takeoff\",\n  \"packing\",\n  \"got third\",\n  \"darkened\",\n  \"drink water\",\n  \"caterpillar wallpaper\",\n  \"lose match\",\n  \"cow fell down\",\n  \"inside car\",\n  \"lid pressure\",\n  \"throw barbell\",\n  \"screwing nut\",\n  \"fabric line\",\n  \"hold child\",\n  \"cook noodles\",\n  \"continue to split wood\",\n  \"clean horses hind leg\",\n  \"very happy\",\n  \"man jump down\",\n  \"cutting wallpaper\",\n  \"wear good left eye\",\n  \"start jumping\",\n  \"punches\",\n  \"speech\",\n  \"exhibition\",\n  \"garden cart\",\n  \"dismantling light bulb\",\n  \"go to diver\",\n  \"step by step\",\n  \"sit down on your knees\",\n  \"preparation materials\",\n  \"get off car\",\n  \"let curling round legs\",\n  \"wear gloves\",\n  \"fermation\",\n  \"shaving cutter\",\n  \"put down saw\",\n  \"pony fell down\",\n  \"raise ones hands\",\n  \"turn two laps\",\n  \"open ones mouth\",\n  \"explanation usage\",\n  \"pull hand brake\",\n  \"floating on water\",\n  \"open sound\",\n  \"cut cake\",\n  \"air pressure\",\n  \"go to woman\",\n  \"introduce\",\n  \"prepare weapon\",\n  \"sweep floor\",\n  \"prepare bar\",\n  \"dipping pigment\",\n  \"count\",\n  \"pull hands back\",\n  \"tidy wire\",\n  \"hold harmonica\",\n  \"floating in water\",\n  \"bet on\",\n  \"introduction of pang ball\",\n  \"display ornaments\",\n  \"explanation skills\",\n  \"stand straight\",\n  \"erect canvas\",\n  \"dipping shoe oil\",\n  \"fooling around\",\n  \"measuring distance\",\n  \"display tools\",\n  \"nail nail\",\n  \"rotate\",\n  \"pre match preparation\",\n  \"wearing frog shoe\",\n  \"pose\",\n  \"smear shaving blister\",\n  \"send message\",\n  \"select curler\",\n  \"stake\",\n  \"prepare tools\",\n  \"cement\",\n  \"become biscuit\",\n  \"display product\",\n  \"display front door\",\n  \"showcase\",\n  \"water preparation\",\n  \"open mouth and sing\",\n  \"fall down\",\n  \"go fishing\",\n  \"gargle with fat man\",\n  \"spray liquid\",\n  \"on tree\",\n  \"cobra attack\",\n  \"feet shaking\",\n  \"bubble\",\n  \"use long stick\",\n  \"with boat overhead\",\n  \"camel stopped\",\n  \"replacement\",\n  \"prepare pigments\",\n  \"raise your right hand\",\n  \"blow out cigarette smoke\",\n  \"hand clenched fist\",\n  \"support body with two hands\",\n  \"frictional runway\",\n  \"scraping\",\n  \"clap with your teammates\",\n  \"talk to others\",\n  \"dry it\",\n  \"hand over nose\",\n  \"turn to landscape\",\n  \"horst hula hoop\",\n  \"ball hit the knee\",\n  \"steady and steady\",\n  \"swing\",\n  \"release pole\",\n  \"press button\",\n  \"wear glasses\",\n  \"start pruning trees\",\n  \"roll forward\",\n  \"spray cleaning solution\",\n  \"middle of tyres\",\n  \"selfie\",\n  \"tease hair\",\n  \"talk to screen\",\n  \"standing bow\",\n  \"climb up\",\n  \"stalemate\",\n  \"take down darts\",\n  \"high five\",\n  \"tidy\",\n  \"put down magic cube\",\n  \"scratching nose\",\n  \"dispel crowd\",\n  \"toothpaste\",\n  \"waving hand\",\n  \"bright smile\",\n  \"dogs before him\",\n  \"fixed toy\",\n  \"low down barycenter\",\n  \"warm up exercise\",\n  \"run forward\",\n  \"group photo\",\n  \"throw drumbeat\",\n  \"land on ground\",\n  \"lens conversion\",\n  \"satisfactory smile\",\n  \"erect violin\",\n  \"handshake\",\n  \"orange clothes male clenched fist\",\n  \"open\",\n  \"add two kites\",\n  \"weigh it down\",\n  \"kite flew high\",\n  \"pull off tires\",\n  \"black clothes people waved\",\n  \"test ball\",\n  \"rush to red cloth\",\n  \"hit himself\",\n  \"get blow out\",\n  \"kick off cushion\",\n  \"fish bite\",\n  \"bite frisbee\",\n  \"lift dog\",\n  \"applause\",\n  \"children shook hands\",\n  \"handstand\",\n  \"shake hand\",\n  \"picture change\",\n  \"try again\",\n  \"clap hand to celebrate\",\n  \"role pause\",\n  \"do somersault\",\n  \"pirouette\",\n  \"raise hand\",\n  \"carry out performance\",\n  \"pendulum poss\",\n  \"eat noodles\",\n  \"dry powder\",\n  \"drive to right\",\n  \"pick up phone\",\n  \"weeds are gone\",\n  \"right man stands up\",\n  \"stop recording\",\n  \"amuse dog\",\n  \"adults chipping potatoes\",\n  \"loose soil\",\n  \"trot\",\n  \"ship opened\",\n  \"put in plate\",\n  \"jump into pool\",\n  \"string string\",\n  \"draw on pumpkin\",\n  \"white male nodding\",\n  \"height of grass\",\n  \"pass ball\",\n  \"stop rowing\",\n  \"single hand support\",\n  \"hold down\",\n  \"go to machine\",\n  \"set up shelf\",\n  \"start weeding\",\n  \"wear hoop\",\n  \"tune stringed instrument\",\n  \"tape\",\n  \"be blocked\",\n  \"assembly of steel\",\n  \"relax with mobile phone\",\n  \"horse is moving\",\n  \"swivel\",\n  \"big mother\",\n  \"turn and half squat down\",\n  \"piled to corner\",\n  \"audience cheered\",\n  \"others come on field\",\n  \"lens deflection\",\n  \"put ball\",\n  \"in dialogue\",\n  \"aim\",\n  \"go through last\",\n  \"fist\",\n  \"putting camera\",\n  \"wiping car with foam\",\n  \"dance together\",\n  \"grasp parallel bars\",\n  \"squat down\",\n  \"shut down machine\",\n  \"climb stairs\",\n  \"washing spoon\",\n  \"dive preparation\",\n  \"touch lens\",\n  \"shake table\",\n  \"be smashed in drum\",\n  \"anchor jump rope\",\n  \"hit masses\",\n  \"see undersea biology\",\n  \"fall into river\",\n  \"cut sandwiches\",\n  \"horse nodding\",\n  \"put down flute\",\n  \"wash face\",\n  \"put on bread\",\n  \"display shoes\",\n  \"touch liquid\",\n  \"immerse in it\",\n  \"sit on sofa\",\n  \"leave court\",\n  \"to everyone ju gong\",\n  \"display finger\",\n  \"throw out again\",\n  \"turn picture back\",\n  \"middle finger\",\n  \"pressing on player\",\n  \"pick up racket\",\n  \"get up slowly\",\n  \"pick up cup\",\n  \"lose to opponent\",\n  \"backward dodge\",\n  \"concealed cards\",\n  \"get first\",\n  \"roll in sky\",\n  \"start car wash\",\n  \"grab railing\",\n  \"twist butt\",\n  \"demo bicycles\",\n  \"throw long pole\",\n  \"lift barbell\",\n  \"cross leg\",\n  \"wear socks\",\n  \"wipe hands\",\n  \"site\",\n  \"hold black clothes man\",\n  \"hit ball\",\n  \"kick ball out\",\n  \"skater surfers\",\n  \"continue to weave sweater\",\n  \"put cards in box\",\n  \"fiddle with hair\",\n  \"go away\",\n  \"refresh\",\n  \"psychological adjustment\",\n  \"join noodles\",\n  \"fall off stage\",\n  \"skidding\",\n  \"stir by spatula\",\n  \"someone is parachuting\",\n  \"fall off air cushion\",\n  \"finish up job\",\n  \"chasing people\",\n  \"spaghetti\",\n  \"bump into pot\",\n  \"continue knocking\",\n  \"ask for note\",\n  \"bow hairstyle\",\n  \"two people dance\",\n  \"cross hand\",\n  \"ball landed\",\n  \"dog chases plate\",\n  \"dog came back with something\",\n  \"be gone\",\n  \"attack\",\n  \"swing rod\",\n  \"raise your left hand\",\n  \"plaything\",\n  \"touch ones head\",\n  \"stand on bench\",\n  \"rouge lips\",\n  \"original takeoff\",\n  \"rinse\",\n  \"straighten rod\",\n  \"ironing sleeves\",\n  \"squating\",\n  \"start riding\",\n  \"open mouth ventilation\",\n  \"support yourself\",\n  \"dark bigger\",\n  \"light\",\n  \"mice\",\n  \"smear oil\",\n  \"lacquer\",\n  \"coated hair cream\",\n  \"throw away\",\n  \"dog jumped up\",\n  \"counterclockwise running\",\n  \"back to lens\",\n  \"push leaves off\",\n  \"shallow sea\",\n  \"long hair\",\n  \"straight\",\n  \"short sleeve\",\n  \"double fold eyelids\",\n  \"trousers\",\n  \"ripe\",\n  \"older\",\n  \"long sleeves\",\n  \"take off skirt\",\n  \"white men fall in water\",\n  \"marvellous\",\n  \"leg clip\",\n  \"tortoise\",\n  \"vigny\",\n  \"play drifting air cushion\",\n  \"parade in desert\",\n  \"wood brush\",\n  \"pulley slippery\",\n  \"musical instrument\",\n  \"noodle\",\n  \"skating canoe\",\n  \"diving in sea\",\n  \"street performance\",\n  \"street dance\",\n  \"tackle rubber rafts\",\n  \"dunk\",\n  \"on toilet\",\n  \"prepare for skiing\",\n  \"climb escalator\",\n  \"polo\",\n  \"uneven bars\",\n  \"play lacrosse\",\n  \"pruning shrubs\",\n  \"clean up garbage\",\n  \"sports competition\",\n  \"sliding skateboard\",\n  \"good afforested environment\",\n  \"displacement pressure\",\n  \"braid\",\n  \"play toy\",\n  \"chips\",\n  \"discus\",\n  \"air cushion\",\n  \"operation guidance\",\n  \"riding unicycle\",\n  \"rt\",\n  \"bids gun\",\n  \"gatekeepers\",\n  \"fork\",\n  \"paring knife\",\n  \"touch back of brain\",\n  \"shave dog\",\n  \"practice fencing\",\n  \"fencing training\",\n  \"press media\",\n  \"fencing\",\n  \"play bungee jumping\",\n  \"need to connect wire\",\n  \"hair of bun\",\n  \"sports boat\",\n  \"shoe polisher\",\n  \"white person\",\n  \"decorate some boxes\",\n  \"pet beauty\",\n  \"practice ballet\",\n  \"apple\",\n  \"many people are looking\",\n  \"shower\",\n  \"body coordination\",\n  \"advertisement\",\n  \"blue and green\",\n  \"blue and red\",\n  \"small stool\",\n  \"motorcycle\",\n  \"big\",\n  \"shirt\",\n  \"tourism advertisement\",\n  \"kelp\",\n  \"sea anemone\",\n  \"autumn\",\n  \"harmful\",\n  \"clever\",\n  \"very nice\",\n  \"jump down\",\n  \"narrow\",\n  \"shadow\",\n  \"much more difficult\",\n  \"ten meters\",\n  \"6 centimeters\",\n  \"more proficient\",\n  \"pretty good\",\n  \"adept\",\n  \"13\",\n  \"two\",\n  \"sixth\",\n  \"9.75\",\n  \"350\",\n  \"walking\",\n  \"standard\",\n  \"superb\",\n  \"torrential\",\n  \"skilled\",\n  \"wear exposure\",\n  \"sing in earnest\",\n  \"strong\",\n  \"cool\",\n  \"high and low\",\n  \"lovely\",\n  \"concise and clear\",\n  \"they hurt\",\n  \"skating rink\",\n  \"2011\",\n  \"usa\",\n  \"tie\",\n  \"small scale\"\n]"
  },
  {
    "path": "model/univi/eval/questions/video_qa/activitynet_qa.json",
    "content": "[\n  {\n    \"question\": \"is the athlete wearing trousers\",\n    \"video_name\": \"1QIUV7WYKXg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the girl in black clothes have long hair\",\n    \"video_name\": \"9eniCub7u60\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man wearing long sleeves\",\n    \"video_name\": \"FADShG5lyB8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man in black outdoors\",\n    \"video_name\": \"5k2Ot6-wOgc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white a man\",\n    \"video_name\": \"mV07bEBkIcM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white a man\",\n    \"video_name\": \"X_K7Aa3Aa-E\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white a man\",\n    \"video_name\": \"X2toGKgWMpE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in yellow clothes a man\",\n    \"video_name\": \"98ukqD62X5s\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person first appears in the video outdoor\",\n    \"video_name\": \"4LF0hL-mgks\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black have short hair\",\n    \"video_name\": \"mUmSJps9WJI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black have short hair\",\n    \"video_name\": \"12Nafz_Yet4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black have short hair\",\n    \"video_name\": \"NvRH4SoF09c\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black have short hair\",\n    \"video_name\": \"nhQTxZlzG1Q\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black have short hair\",\n    \"video_name\": \"A0b_pqaKCX8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black t-shirt have long hair\",\n    \"video_name\": \"CDecXoRSpIc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black t-shirt plaing outdoors\",\n    \"video_name\": \"Znb6Y9m_PsQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black t-shirt plaing outdoors\",\n    \"video_name\": \"Znb6Y9m_PsQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue have short hair\",\n    \"video_name\": \"26U3SkeZU6M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue have short hair\",\n    \"video_name\": \"vQ82ItCG1x4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in green have long hair\",\n    \"video_name\": \"-vY2uUmv6Dk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in green have short hair\",\n    \"video_name\": \"Y_nyVFn70Lk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in green have short hair\",\n    \"video_name\": \"-vY2uUmv6Dk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in green pants have short hair\",\n    \"video_name\": \"OlR9S70AA74\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing long sleeves\",\n    \"video_name\": \"aNsj5OrEGLY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in orange clothes have long hair\",\n    \"video_name\": \"a2IvS0xbNGQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in purple have short hair\",\n    \"video_name\": \"gOnp3DZxeKU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in purple have short hair\",\n    \"video_name\": \"nGKc2t-NMYc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white clothes have long hair\",\n    \"video_name\": \"AguxVxEWEs0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white clothes have long hair\",\n    \"video_name\": \"nYl_tYmijlM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white clothes have long hair\",\n    \"video_name\": \"YMOYyt3kSOs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white trouser\",\n    \"video_name\": \"afMQA352X_A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white clothes a man\",\n    \"video_name\": \"AguxVxEWEs0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white clothes have short hair\",\n    \"video_name\": \"vzUeFzhVYLg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white clothes have short hair\",\n    \"video_name\": \"N5Dt3ycaun4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white clothes have short hair\",\n    \"video_name\": \"30hcRe-5_3M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing long sleeves\",\n    \"video_name\": \"W2Mh01F3K5c\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white trouser a woman \",\n    \"video_name\": \"A8RQcVFtovg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in yellow clothes have long hair\",\n    \"video_name\": \"mxn6WcmdNpA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in yellow clothes have long hair\",\n    \"video_name\": \"98ukqD62X5s\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in yellow clothes have short hair\",\n    \"video_name\": \"mxn6WcmdNpA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white clothes have long hair\",\n    \"video_name\": \"_jV5sAOOHLk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white clothes have long hair\",\n    \"video_name\": \"_QBTD1bLSI0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white clothes have short hair\",\n    \"video_name\": \"_QBTD1bLSI0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete indoors\",\n    \"video_name\": \"JR9LosQmMvg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete indoors\",\n    \"video_name\": \"Jix3poZOeZA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete in the video indoors\",\n    \"video_name\": \"jEOtcfk220s\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete in the video indoors\",\n    \"video_name\": \"4LpqPUWHH5k\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete in the video indoors\",\n    \"video_name\": \"JH9qiuPCkY4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete in the video indoors\",\n    \"video_name\": \"5UZ2ft8Y3sI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete in the video indoors\",\n    \"video_name\": \"5dN-MpXG9OE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete in the video indoors\",\n    \"video_name\": \"jibbgUBuuSA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"JR9LosQmMvg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"s6fEIuHPJ4Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"Jix3poZOeZA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"sRNqK_QZbMs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"svNcNLEPKMc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"snhPrCNubYA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"sEcXR5b8HyY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"St1RRi-aeNM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"sPK-sbHIb3w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete playing indoors\",\n    \"video_name\": \"3Nd3Aai1bVA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue clothes a man\",\n    \"video_name\": \"nciIPwJTok8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man in the video outdoors\",\n    \"video_name\": \"jbCQY7V7O1s\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man in the video outdoors\",\n    \"video_name\": \"5oyenoaVB-w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in orange clothes outdoors\",\n    \"video_name\": \"mixxaL3Bdv8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black pants indoors\",\n    \"video_name\": \"JB-ynj70saA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black pants outdoors\",\n    \"video_name\": \"JB-ynj70saA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the game indoors\",\n    \"video_name\": \"SJ7jk5XAjng\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the game outdoors\",\n    \"video_name\": \"SJ7jk5XAjng\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video a chinese\",\n    \"video_name\": \"-crpjVnFv0U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video a chinese\",\n    \"video_name\": \"d_A-ylxNbFU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video a chinese\",\n    \"video_name\": \"cVFVREeD6hM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video a chinese\",\n    \"video_name\": \"cTxVTEzQDr8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person on the court indoors\",\n    \"video_name\": \"JGPhQX97OSE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person on the court outdoors\",\n    \"video_name\": \"JGPhQX97OSE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person standing outdoors\",\n    \"video_name\": \"rSGboODhu04\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person standing outdoors\",\n    \"video_name\": \"RXDVJlb97OI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person standing outdoors\",\n    \"video_name\": \"kD_EJjQCLoY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person standing outdoors\",\n    \"video_name\": \"jhy6npIdn5o\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the player indoors\",\n    \"video_name\": \"SjlILJ2st-I\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person playing dodgeball outdoors\",\n    \"video_name\": \"2CegApogJd4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are there many people in the ski resort\",\n    \"video_name\": \"fbr7v8RMkf8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are there many people in the stands\",\n    \"video_name\": \"fh21bbDSVmA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are they indoors\",\n    \"video_name\": \"dGT_KGb0gyw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it day or night in the video\",\n    \"video_name\": \"chmegNbBTNc\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"is the person in black wearing a hat\",\n    \"video_name\": \"40BPDWojssc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue wearing a hat\",\n    \"video_name\": \"mXqmRAUsn9U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue wearing a hat\",\n    \"video_name\": \"ys4_S3JHQjs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue wearing a hat\",\n    \"video_name\": \"DUi-hLMpQQo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue wearing a watch\",\n    \"video_name\": \"AguxVxEWEs0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue wearing a watch\",\n    \"video_name\": \"62M1FRXsUiM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in gray wearing a hat\",\n    \"video_name\": \"xMNmGr96O9U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in gray wearing a hat\",\n    \"video_name\": \"dN8LBey17O8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in gray wearing a hat\",\n    \"video_name\": \"Ye_uVlSo1HI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in pink wearing a hat\",\n    \"video_name\": \"AjizhJc_reI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red wearing a hat\",\n    \"video_name\": \"ZAX6OojMg38\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person wearing a hat have a long beard\",\n    \"video_name\": \"_V62aT_K8Zw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in gray wearing a hat\",\n    \"video_name\": \"TXSOSSGJYO0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat\",\n    \"video_name\": \"U2cCOj3LiAA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete wearing shorts\",\n    \"video_name\": \"LWt2FuU0uC4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete wearing shorts\",\n    \"video_name\": \"LzPppxSWYNY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete wearing pant\",\n    \"video_name\": \"LWt2FuU0uC4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete wearing pant\",\n    \"video_name\": \"LzPppxSWYNY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the man wear sunglasses\",\n    \"video_name\": \"EDDbcCBnTQM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a black t-shirt wearing hat\",\n    \"video_name\": \"GSrBZXLSwWI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a black vest playing outdoors\",\n    \"video_name\": \"1YU4MSK80cQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a black vest playing outdoors\",\n    \"video_name\": \"1YU4MSK80cQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man in black wearing a hat \",\n    \"video_name\": \"4_jDgRsOGvY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man in black wearing glasses\",\n    \"video_name\": \"28WDlVOgslg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man in black wearing glasses\",\n    \"video_name\": \"40BPDWojssc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man in black wearing glasses\",\n    \"video_name\": \"otMw5GJWYWs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man in black wearing glasses\",\n    \"video_name\": \"ojTFTIwsa_c\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man in black wearing glasses\",\n    \"video_name\": \"gsQ-OEvrxjo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man in black wearing glasses\",\n    \"video_name\": \"_kmjpSZb3OI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man in black wearing glasses\",\n    \"video_name\": \"X6CBZwwRdQQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black wear a hat\",\n    \"video_name\": \"ojTFTIwsa_c\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black wear a hat\",\n    \"video_name\": \"xMNmGr96O9U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black wear a hat\",\n    \"video_name\": \"xND_kp-aYXw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black wear a hat\",\n    \"video_name\": \"X6CBZwwRdQQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue wearing earrings\",\n    \"video_name\": \"96vBhCFBbQk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue wearing earrings\",\n    \"video_name\": \"16czjUF1AA4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue wearing glasses\",\n    \"video_name\": \"mXqmRAUsn9U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue wearing glasses\",\n    \"video_name\": \"DUi-hLMpQQo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue wearing shoes\",\n    \"video_name\": \"uJ4OZfCjViM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue wearing sunglasses\",\n    \"video_name\": \"pVoM_kUQ4_E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue wear a watch on his right hand\",\n    \"video_name\": \"TGffgRXc1eQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in gray wearing glasses\",\n    \"video_name\": \"xMNmGr96O9U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in gray wearing glasses\",\n    \"video_name\": \"Ye_uVlSo1HI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in gray wearing long sleeves\",\n    \"video_name\": \"mkGUacg0GRc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in gray wearing long sleeves\",\n    \"video_name\": \"LYTWYSqsTCE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in gray wearing short sleeves\",\n    \"video_name\": \"mkGUacg0GRc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in gray wearing short sleeves\",\n    \"video_name\": \"LYTWYSqsTCE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in purple wearing trousers\",\n    \"video_name\": \"0w4OkBenR_k\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in purple wearing trousers\",\n    \"video_name\": \"nP1Bk-vJgVg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red wearing a hat\",\n    \"video_name\": \"hxErUs42bBI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red wearing earrings\",\n    \"video_name\": \"mSR-HpiJ0No\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red wearing earrings\",\n    \"video_name\": \"0q9yZPTBbus\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red wearing glasses\",\n    \"video_name\": \"9k19UUJtldg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red wearing glasses\",\n    \"video_name\": \"x6pYeqq3O08\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red wearing glasses\",\n    \"video_name\": \"XxW4XWySzOw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red wearing glasses\",\n    \"video_name\": \"ZAX6OojMg38\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red wearing a hat\",\n    \"video_name\": \"mSR-HpiJ0No\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red wearing a hat\",\n    \"video_name\": \"390iVq_urQM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red wearing a hat\",\n    \"video_name\": \"x6pYeqq3O08\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red wearing t-shirt\",\n    \"video_name\": \"p1QGn0IzfW0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"cYvFlrAnlzA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"-eJT11AuOa0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing glasses\",\n    \"video_name\": \"X52XHYKeLiE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing glasses\",\n    \"video_name\": \"nYl_tYmijlM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing glasses\",\n    \"video_name\": \"NDq29HQJVP0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing gloves\",\n    \"video_name\": \"xizEiQZfJa4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing gloves\",\n    \"video_name\": \"X52XHYKeLiE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"1494UwmvAJM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"NDq29HQJVP0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"mnNgZ-D5cKc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing long sleeves\",\n    \"video_name\": \"lUmjnFf7IPQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing short sleeves\",\n    \"video_name\": \"lUmjnFf7IPQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing a watch\",\n    \"video_name\": \"Oh3-DvDCpZ4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing a watch\",\n    \"video_name\": \"836UrVGw6GI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing a watch\",\n    \"video_name\": \"y0ca-LbQErY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing glasses\",\n    \"video_name\": \"QIUxLD27NuI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing glasses\",\n    \"video_name\": \"i5qTK0mInTc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in yellow wearing a hat\",\n    \"video_name\": \"hQqoh0YxJYs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in yellow wearing a hat\",\n    \"video_name\": \"zYjLA99koBk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing glasses\",\n    \"video_name\": \"udSHsodv3gY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing glasses\",\n    \"video_name\": \"d_A-ylxNbFU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing glasses\",\n    \"video_name\": \"aPI0nPvzJlE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a black t-shirt wearing a hat\",\n    \"video_name\": \"QXN6odBnVmI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a black t-shirt wearing a hat\",\n    \"video_name\": \"Znb6Y9m_PsQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a white t-shirt wearing a hat\",\n    \"video_name\": \"qgUHRwC3194\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a white t-shirt wearing a hat\",\n    \"video_name\": \"ZLG1Exv8HrY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do the skier have any safety measure\",\n    \"video_name\": \"-pK2JheWido\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"_jIXs7AFTxw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in the video wearing glasses\",\n    \"video_name\": \"Db9VWkgMpbE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do both hands been used when wearing the contact lenses\",\n    \"video_name\": \"v6DdLg_Xnkg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the computer been used when reparing the bicycle\",\n    \"video_name\": \"iZT4XgzUHm4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the pen been used during packing the book\",\n    \"video_name\": \"V9mLJJn8Lvw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the pen been used during fight\",\n    \"video_name\": \"iAes5SVj_Fg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the pen been used during diving\",\n    \"video_name\": \"vBOFzuS-Djo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the pen been used during skateboarding\",\n    \"video_name\": \"i_LT0ef1n-Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does packing book need paper\",\n    \"video_name\": \"V9mLJJn8Lvw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does fighting need arm strength\",\n    \"video_name\": \"iAes5SVj_Fg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white shaking hands outdoors\",\n    \"video_name\": \"G25py7yEVyo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white shaking hands outdoors\",\n    \"video_name\": \"G25py7yEVyo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does fishing need arm strength\",\n    \"video_name\": \"8_fjIZkNHms\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does fishing need arm strength\",\n    \"video_name\": \"7vcihMnmssI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does makeup need arm strength\",\n    \"video_name\": \"7LbBmVX33I4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a ring on the left hand\",\n    \"video_name\": \"qObVIn_GI10\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a watch with the left hand\",\n    \"video_name\": \"uLphvdhunTY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a watch with the left hand\",\n    \"video_name\": \"0jdSl5-lMpY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the boating scene take place indoors or outdoors\",\n    \"video_name\": \"zYjLA99koBk\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"does this sport need leg strength \",\n    \"video_name\": \"7IwHwDuQdyU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in green wearing a hat\",\n    \"video_name\": \"QX5e5Mla660\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red wearing a hat\",\n    \"video_name\": \"hxErUs42bBI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"0e7d39SwHCA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in yellow wearing glasses\",\n    \"video_name\": \"QIUxLD27NuI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in yellow wearing glasses\",\n    \"video_name\": \"i5qTK0mInTc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in yellow wearing a hat\",\n    \"video_name\": \"hQqoh0YxJYs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a microphone\",\n    \"video_name\": \"TnP6coXzbLY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing shoes\",\n    \"video_name\": \"Y05GAiavfOg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"how about the dance in the video\",\n    \"video_name\": \"Ynvd8OuXKGw\",\n    \"answer\": \"good looking\"\n  },\n  {\n    \"question\": \"how dangerous is the sport of kayaking\",\n    \"video_name\": \"SGAUpoTMSnA\",\n    \"answer\": \"bit dangerous\"\n  },\n  {\n    \"question\": \"how difficult is to dive\",\n    \"video_name\": \"5LGh56euaZs\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the operation\",\n    \"video_name\": \"9snScUyE8_4\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the operation\",\n    \"video_name\": \"9SIPJd4Hls4\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the activity in the video\",\n    \"video_name\": \"sRNqK_QZbMs\",\n    \"answer\": \"much simpler\"\n  },\n  {\n    \"question\": \"how difficult is the activity of flying a kite in the video\",\n    \"video_name\": \"SidTquTAtyk\",\n    \"answer\": \"more difficult\"\n  },\n  {\n    \"question\": \"how difficult is to pile sand\",\n    \"video_name\": \"StGxFfLiYNU\",\n    \"answer\": \"much simpler\"\n  },\n  {\n    \"question\": \"how difficult is the activity in the video\",\n    \"video_name\": \"RlRrktN5iH4\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the operation\",\n    \"video_name\": \"nbOsU2Vmp1U\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the operation\",\n    \"video_name\": \"40BPDWojssc\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video\",\n    \"video_name\": \"16czjUF1AA4\",\n    \"answer\": \"difficulty\"\n  },\n  {\n    \"question\": \"how safe is the activity of skateboarding\",\n    \"video_name\": \"UzmsAb15Bso\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"how safe is the activity of swimming\",\n    \"video_name\": \"8kaQq1mR2ys\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is the activity of swimming\",\n    \"video_name\": \"e0yu4WgiZUM\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is the activity in the video \",\n    \"video_name\": \"ETbbYC0OhL0\",\n    \"answer\": \"unsafe\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"rrpEOrMpBuE\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"JR9LosQmMvg\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"jDlvGWOdcqU\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"rsU73H6VyG8\",\n    \"answer\": \"cloudy\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"Jhcis4S2Vsg\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"JY9oOSfjj_E\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"lUil9HfTzJ0\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"K1OsjA-f17E\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"Jix3poZOeZA\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"jBlG0L_M96g\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"rWfQj0X8WU4\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"RXT17X7lRoQ\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"K1LiXUpoSmI\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"kBTqTp0SKq8\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what weather is it in the video\",\n    \"video_name\": \"jWODw4vy45M\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"how many athletes are there\",\n    \"video_name\": \"s6fEIuHPJ4Y\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many athletes are there in the video\",\n    \"video_name\": \"jibbgUBuuSA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many athletes are there in the video\",\n    \"video_name\": \"svNcNLEPKMc\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many people in black are there in the video\",\n    \"video_name\": \"V90CMuokf0c\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people in black are there in the video\",\n    \"video_name\": \"vHnZ3NrZER0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many blonde women are in the video\",\n    \"video_name\": \"7BUr2cN8CLs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many blonde women are in the video\",\n    \"video_name\": \"IclzwpxVvIk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many blonde women are in the video\",\n    \"video_name\": \"ikUNgSw4Gys\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people in blue are there in the video\",\n    \"video_name\": \"XI7qJHE61zo\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are riding camels in video\",\n    \"video_name\": \"sfbgZOHLkII\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many parking lots are there in the video\",\n    \"video_name\": \"dN8LBey17O8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many parking lots are there in the video\",\n    \"video_name\": \"BBKSKU6dGGk\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many cats are there in the video\",\n    \"video_name\": \"ZAX6OojMg38\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many chairs are there in video\",\n    \"video_name\": \"FKtYeu2bJpA\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in video\",\n    \"video_name\": \"26U3SkeZU6M\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in video\",\n    \"video_name\": \"mvRoVXRGVGw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in video\",\n    \"video_name\": \"96vBhCFBbQk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in video\",\n    \"video_name\": \"9MN6GNhvwzA\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in video\",\n    \"video_name\": \"9ZVWD0ZKXZg\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in video\",\n    \"video_name\": \"mZYWfmsYQPA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many children are playing\",\n    \"video_name\": \"Ki1bs5X_S5k\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many children are there in the video\",\n    \"video_name\": \"4JmFOPoKluM\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many children are there in the video\",\n    \"video_name\": \"k3WPc9HmtLM\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many children are there in the video\",\n    \"video_name\": \"J9KjpzKM8oc\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many children are there in the video\",\n    \"video_name\": \"H2fG7JRRMAs\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many children are there in the video\",\n    \"video_name\": \"5mWZY2XkWSQ\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many coaches are there\",\n    \"video_name\": \"rMj2JWNJzkw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many coaches are there\",\n    \"video_name\": \"k6pN0WRr2Ws\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many coaches have appeared in the video\",\n    \"video_name\": \"4LpqPUWHH5k\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many coaches have appeared in the video\",\n    \"video_name\": \"LjPKKqe-VO0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many coaches have appeared in the video\",\n    \"video_name\": \"sRNqK_QZbMs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many disabled people are in the video\",\n    \"video_name\": \"8kaQq1mR2ys\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many disabled people are in the video\",\n    \"video_name\": \"0lbv0AE5gJQ\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are diving in the video\",\n    \"video_name\": \"vzUeFzhVYLg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are diving in the video\",\n    \"video_name\": \"HJWwqjLf1I4\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many dogs are there in the video\",\n    \"video_name\": \"hQqoh0YxJYs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many dogs are there in the video\",\n    \"video_name\": \"8_fjIZkNHms\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many dogs are there in the video\",\n    \"video_name\": \"hIHeMA1oRrY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many dogs are there in the video\",\n    \"video_name\": \"1xtKGlUp4Vg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many dogs are there in the video\",\n    \"video_name\": \"IGT0dIKDGCw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many dogs are there in the video\",\n    \"video_name\": \"1vTHJMMPZN0\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many dogs are there in the video\",\n    \"video_name\": \"jWODw4vy45M\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many dogs are there in the video\",\n    \"video_name\": \"uJAL31wAD2A\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many ducks are there in the video\",\n    \"video_name\": \"28LdZLfdmMQ\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many goalkeepers are there in the video\",\n    \"video_name\": \"v6P6bBPBXYw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people with hats are there in the video\",\n    \"video_name\": \"VFC-V06hVj0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many horses are there\",\n    \"video_name\": \"K5jY2chByPw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many hosts are there in the video\",\n    \"video_name\": \"hvrKRg166eQ\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many houses are there in the video\",\n    \"video_name\": \"HWFosaUWoSI\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many judges are there in the video\",\n    \"video_name\": \"paRAKx8svJ8\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many knives are there in the video\",\n    \"video_name\": \"mVAP-WyEc7w\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many men are there in the video\",\n    \"video_name\": \"IMMoglaJ3RY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many men are there in the video\",\n    \"video_name\": \"7vcihMnmssI\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many men are there in the video\",\n    \"video_name\": \"xuvp0jKMqRU\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many men are there in the video\",\n    \"video_name\": \"V08Q-DbT0GQ\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many men are there in the video\",\n    \"video_name\": \"8teo_0gxzgk\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many men are there in the video\",\n    \"video_name\": \"6VXQoPNphgI\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many men are there in the video\",\n    \"video_name\": \"V2UitlmX7Uo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many men are there in the video\",\n    \"video_name\": \"8tCRp3NKtkI\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many men are wearing hats in the video\",\n    \"video_name\": \"uWfQcDvel84\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many mowers are there in the video\",\n    \"video_name\": \"4UdxT6Zmero\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many pairs of gloves are there in the video\",\n    \"video_name\": \"UNKf15ALDh8\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many pairs of gloves are there in the video\",\n    \"video_name\": \"J1QB1y3vXLY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are dancing in the video\",\n    \"video_name\": \"Ynvd8OuXKGw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are dancing in the video\",\n    \"video_name\": \"PTwe2IIo3To\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many people are dancing on the stage\",\n    \"video_name\": \"1kkc9hDshP4\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are diving in the video\",\n    \"video_name\": \"IIPKxzPjrWg\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are playing rubiks in the video\",\n    \"video_name\": \"QIUxLD27NuI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"3uaQ0cULMgc\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are playing games in the video\",\n    \"video_name\": \"QImpWj3AJcY\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are playing in the video\",\n    \"video_name\": \"FkbpD1zWdPw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are playing in the video\",\n    \"video_name\": \"7H1KylJRii8\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are playing in the video\",\n    \"video_name\": \"K1LiXUpoSmI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are playing tai chi in the video\",\n    \"video_name\": \"1PNjVTM0Zto\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are playing the piano in the video\",\n    \"video_name\": \"m731tx8N5-Y\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are playing the piano in the video\",\n    \"video_name\": \"ZxCdhz4ep0s\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are skiing\",\n    \"video_name\": \"JY9oOSfjj_E\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are surfing in the video\",\n    \"video_name\": \"6xBh3vzhgo4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are surfing in the video\",\n    \"video_name\": \"LvTwJTvluHE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there at the beginning of the video\",\n    \"video_name\": \"lUmjnFf7IPQ\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the match\",\n    \"video_name\": \"sEcXR5b8HyY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in total\",\n    \"video_name\": \"p54LLMnyg54\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in total\",\n    \"video_name\": \"OysON6LbF6Y\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are wearing blue clothes\",\n    \"video_name\": \"46NS8dT15Hw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are wearing red clothes\",\n    \"video_name\": \"an1R4BP97JY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the bathroom\",\n    \"video_name\": \"er5jUsRr4y0\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the beginning of the video\",\n    \"video_name\": \"atGMJc-DZ7w\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the field\",\n    \"video_name\": \"JsPIzRsUtlE\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the room\",\n    \"video_name\": \"-Fk62y-1WHo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the room\",\n    \"video_name\": \"DIVaPURJHPo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Gfu8e6R6jUU\",\n    \"answer\": \"11\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"-eJT11AuOa0\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"-YwrMtiqHKg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"qGtUXGG78tM\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"uw9x69DT8_g\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"j81ndpMC9gI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"0w4OkBenR_k\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Pv4FwH2TC6Y\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"SJ7jk5XAjng\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"rSGboODhu04\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"JbW8efAOOt0\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"lU6DMCif3eE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"mMm1LfVb8Pg\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"NjD6iWI3NvM\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"I9ficvPdpZg\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"03c6QhTMDSs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"FADShG5lyB8\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"_V62aT_K8Zw\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"5dN-MpXG9OE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"cYvFlrAnlzA\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"lPw_BRbPw5s\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"1dDAcUliXrQ\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"RlRrktN5iH4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"H_IfIsKQ3Zw\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"PJ7HOHdOdy4\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"mek9Zodu8LM\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"v6DdLg_Xnkg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"gsQ-OEvrxjo\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Npj77L31bhw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"xizEiQZfJa4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"SB0dU5oDvaE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"AguxVxEWEs0\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"2ShsRSJ9cqE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"zPQodcasmSA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"K49OCArHjXI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"blbaWHbtqTI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Y_nyVFn70Lk\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"A0b_pqaKCX8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"g1na24Bd5Rs\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"w4pO-1-FG5w\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"QXN6odBnVmI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"s84PG-JfEwc\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"oMtB-y49Yo8\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"mUmSJps9WJI\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"RtF6TGqwa7Y\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"SNja9iUdAiI\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"T3mcQnlsmq4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"WPYQ27GjFKc\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"qaml4eEk9hY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"T3A88zsRuVs\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"sH_716hH_rY\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"7dXqXFoju2M\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"H9PaZiWLgXU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"gWTndmDHZQc\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"nDM4E9CD_y0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"F7K2oT7ADkk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"diY-XBT5cD4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"sPK-sbHIb3w\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"0e5zwJywyqk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"aAz3YL2RMr4\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"fh9d3gpT-8I\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"fMVuGUBs2cs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"uLphvdhunTY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"gNUCdXGxp0w\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"U2cCOj3LiAA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"0q9yZPTBbus\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"FEOdYNR4gls\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Feq-2NIDl94\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"4LoAbHdHWqM\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"0k6GFx2ZCg8\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"F-Z17rHI_ms\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"jt-Vnap5KP4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"SPjv6P5fxug\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"YHqFNnhaFAY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"1lwG-y_QCkc\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"nbOsU2Vmp1U\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"RXDVJlb97OI\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"rnI9vGr5V1k\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"qZtdMXkHRXw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Gs79qz286QE\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"V6Sy8zpJSuc\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"nYl_tYmijlM\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"wcxEkMoOmBk\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"CKSlgK_2FP4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"X2toGKgWMpE\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"MDsJa6Yitwc\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"zxpQHLwZCug\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"GgnM5RGNtDE\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"OYEKKzQjaJI\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Y05GAiavfOg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"SGAUpoTMSnA\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"CFbkVO5b2g0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Dd5yTxwKzXw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"dGT_KGb0gyw\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"udSHsodv3gY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"ryFSf08mrkA\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"zEttEkAdHts\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"EXPYu9bfNcE\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"fhOmyyI0eQE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"VSsZZZHn1L0\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"a2IvS0xbNGQ\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"uJ4OZfCjViM\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"U2eN4DbVLfE\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"4_jDgRsOGvY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"I16FTpQQiic\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"JcAAwYpJhm8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"JB-ynj70saA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"bRgvAHL3dJk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"oT6WUU8-dgs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"IxaBEVd2PZM\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"jhy6npIdn5o\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"LYTWYSqsTCE\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"8lMncYsbrWw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"rApbE1VkEjE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"mV07bEBkIcM\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"nbHBjdE8oNo\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"4MwnHtlaEUY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"S6Sg1l78IW0\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"cCDffwsJvsY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"7CM2OYr-Csw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"TtewPltwuXw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Pjnuoa4o55c\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"AB480dHyDeM\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"9snScUyE8_4\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"8IrulONeC28\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"d4sX1jnL4BY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"DOI6tsATsE4\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"7UwRRkgQSj4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"qObVIn_GI10\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"WGUzmra3h_w\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"ojTFTIwsa_c\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"gkwLhml3mnA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"jbCQY7V7O1s\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"sqv3M6MPKjQ\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"ZLJ2BmBkLJg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Z-sWZUYL0ZU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"mLFjww64sX8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Z2gpcqXWNek\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"yGTIEmZ7S2w\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"kD_EJjQCLoY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"T0nCDJuikuA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"HPKHDze6XfA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Son8UiVlzu0\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"62M1FRXsUiM\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"ZnKB0U96ZI4\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"NZskwwovSZI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"uM7QSskmloo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"QJ5xv6oj1sk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"qGLRri_c6n8\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"_CIoHeD7KQc\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Jix3poZOeZA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"tgPD2SZo_DY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"4uKoAk5NCkI\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"cVFVREeD6hM\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"pYaZLHpl_Ww\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"n9EdHGz7ArI\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"ufrTSC3Dewg\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"_zqj6daJo9U\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"qgUHRwC3194\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"TnP6coXzbLY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"HX6BeHLQh5s\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Aen-RfnlK3A\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"z8x3wUZYOaM\",\n    \"answer\": \"7\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"MonWdYi3a0I\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"y0ca-LbQErY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"0jdSl5-lMpY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"i5qTK0mInTc\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"WNgI2qBvPrY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"X_K7Aa3Aa-E\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Uae2MWoldTU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"NvRH4SoF09c\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"SidTquTAtyk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"nhQTxZlzG1Q\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"sk_pnoqXxhs\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"b0qGo-HT5iQ\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"04qggWACGWk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"pKOy4HJwCqo\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"zYjLA99koBk\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"5c5PFa8GR-A\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"4z0meF-_b1I\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"w10Nr_wOh8g\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"rCLGy2NA0aE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"HtG-i1CG2Qs\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"JvPVYSb_5o8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"_kmjpSZb3OI\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"09ocXmGF-T4\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"YMOYyt3kSOs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"9SIPJd4Hls4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"GOhmWfR8QBM\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"_a527xEzhkw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"JGxf-jke0e8\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Woelo4XJkHE\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"4LF0hL-mgks\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"3JBUWRKezUI\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"GxDNGtoVjS0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"hRsn4nesCQo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"W2Mh01F3K5c\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Aj5ncX5G_2w\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Db2Dnt2OOo0\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"hxErUs42bBI\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"RgiVa9GMYxE\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"2UhbDOd43zU\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"ZJnXQw84xvo\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"zTHkqpNFGno\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"a4gI4LC1rJk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"BjjN_aq_wq4\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"4j_LRkB4T6c\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"yCpdDJAW-jU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"dHKeNK1uWUg\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Yg03CCu9GMo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"YRGiRmcHdUY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"yUvSujxnFE0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"_QBTD1bLSI0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"rGOOlcdpfLg\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"C5SXR9nMY3I\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"teffBaLEZQg\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"cnMvMvVBXiI\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Of2Umm79Kxg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"H0dG_1Vgw4Q\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"-CqVpCRxwTY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"R-hsYQNtnn0\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"HTYzbAFUghU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"z6pmp8TrAVo\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"i6wR9_tkg6A\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"p1QGn0IzfW0\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"8A4cZXyDrkU\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"LPRLV0eVgfY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"YaC68rE4lwA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"jBlG0L_M96g\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"G0VWk5WqDp0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"zO5JMTzLDHw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"qiTQ02NDSlQ\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"7LbBmVX33I4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"2bQx5igckJc\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"v0azz4XzW_s\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"xND_kp-aYXw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"GSrBZXLSwWI\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"MAYrBia9Xnw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Df7AnfIEhYw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"Nb6AQxxrihA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"9eniCub7u60\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"X6CBZwwRdQQ\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video\",\n    \"video_name\": \"jDlvGWOdcqU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are on the stage in the video\",\n    \"video_name\": \"HDt5z5Y0opo\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there on board\",\n    \"video_name\": \"vQ82ItCG1x4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are on the battle ring\",\n    \"video_name\": \"ETbbYC0OhL0\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are wearing green clothes in the video\",\n    \"video_name\": \"MDWaKr7Gu5Q\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are wearing red hats\",\n    \"video_name\": \"qKp2QCheLwU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are wearing red hats\",\n    \"video_name\": \"cTxVTEzQDr8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the ring\",\n    \"video_name\": \"qWgF9hxNbP8\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the ring\",\n    \"video_name\": \"qSP3_C7QWpU\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people in red are there in the video\",\n    \"video_name\": \"_SJOVswvGRc\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are smoking in the video\",\n    \"video_name\": \"Y7aacWy3WDo\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many people walk the dogs in video\",\n    \"video_name\": \"TiQcZKml5Bs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many pictures are there in the video\",\n    \"video_name\": \"6JZVpl2S2Mg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many pumpkins are there\",\n    \"video_name\": \"JKJ_EvP7JwQ\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people in red are there in the video\",\n    \"video_name\": \"VJh9W3Gcpmo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many men in red are there in the video\",\n    \"video_name\": \"i_LT0ef1n-Y\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many men in red are there in the video\",\n    \"video_name\": \"iqyc2JM0uIU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many men in red pants are there in the video\",\n    \"video_name\": \"Vhn4SuPhu-0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many women in red are there in the video\",\n    \"video_name\": \"vBOFzuS-Djo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many women in red are there in the video\",\n    \"video_name\": \"uty4eGb_vvU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many judges are there\",\n    \"video_name\": \"jEOtcfk220s\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many judges are there\",\n    \"video_name\": \"RLBfyIVpocE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many judges are there in the video\",\n    \"video_name\": \"TGffgRXc1eQ\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many judges are there in the video\",\n    \"video_name\": \"0mNZfG6CL74\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many judges are there in the video\",\n    \"video_name\": \"LzPppxSWYNY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many judges are there on the court\",\n    \"video_name\": \"CfqnHsp6olc\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many sails are there on the sailboat\",\n    \"video_name\": \"dFGS7YCDk3Y\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many seconds does the logo continue at the beginning of the video\",\n    \"video_name\": \"2k-qlZxc9l4\",\n    \"answer\": \"7\"\n  },\n  {\n    \"question\": \"how many seconds does the logo continue in the video\",\n    \"video_name\": \"0XTAq_xvquw\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many athletes are there in the video\",\n    \"video_name\": \"snhPrCNubYA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many athletes are there in the video\",\n    \"video_name\": \"St1RRi-aeNM\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many surfers are there in the video\",\n    \"video_name\": \"uktUeF3Fy7o\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many teams are involved in the evasive ball game\",\n    \"video_name\": \"2CegApogJd4\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many teams are playing in the video\",\n    \"video_name\": \"IDuoF51IMJ8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many towels are there in the video\",\n    \"video_name\": \"8vDSV9ruYlc\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people in white are there in the vide\",\n    \"video_name\": \"Oh3-DvDCpZ4\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many women in white have appeared in the video\",\n    \"video_name\": \"utgRhyBvtRU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many women are there in the video\",\n    \"video_name\": \"6LsvBNqJuJY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many women are there in the video\",\n    \"video_name\": \"BFChXuwZ4wo\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many women are there in the video\",\n    \"video_name\": \"EQrcCmgraa8\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many women are there in the video\",\n    \"video_name\": \"3kxP8qOtym8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"does the long hair girl have black hair\",\n    \"video_name\": \"32vYs9wKXE8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the man in the red coat have long hair\",\n    \"video_name\": \"fh9d3gpT-8I\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the man in the red coat have long hair\",\n    \"video_name\": \"df5rlVZD0Zc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the man in black clothes have long hair\",\n    \"video_name\": \"DOI6tsATsE4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the man in black clothes have short hair\",\n    \"video_name\": \"DOI6tsATsE4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the man in a gray coat have long hair\",\n    \"video_name\": \"faqijFZWQlo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with a hat a man\",\n    \"video_name\": \"Npj77L31bhw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the man in the red jacket have short hair\",\n    \"video_name\": \"fh9d3gpT-8I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the man in the red jacket have short hair\",\n    \"video_name\": \"df5rlVZD0Zc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in red coat have long hair\",\n    \"video_name\": \"FFMugev85IY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in red coat have short hair\",\n    \"video_name\": \"FFMugev85IY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in white coat have long hair\",\n    \"video_name\": \"DIVaPURJHPo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in black clothes have short hair\",\n    \"video_name\": \"WPYQ27GjFKc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in red clothes have long hair\",\n    \"video_name\": \"xuvp0jKMqRU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in white coat have short hair\",\n    \"video_name\": \"DIVaPURJHPo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing orange clothes a man\",\n    \"video_name\": \"a2IvS0xbNGQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video a man\",\n    \"video_name\": \"_CIoHeD7KQc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have curly hair\",\n    \"video_name\": \"MQ9Ojge7CyA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black a man or a woman\",\n    \"video_name\": \"28WDlVOgslg\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"is the person in black a man or a woman\",\n    \"video_name\": \"xND_kp-aYXw\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"is playing table football dangerous \",\n    \"video_name\": \"R-hsYQNtnn0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is playing water polo dangerous \",\n    \"video_name\": \"0iqx7o5WYW8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does leg strength been used in skateboarding\",\n    \"video_name\": \"UzmsAb15Bso\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the pen been used during tattooing\",\n    \"video_name\": \"IToczVhbOc0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the pen been used during tattooing\",\n    \"video_name\": \"J1QB1y3vXLY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it snowing in the video\",\n    \"video_name\": \"-pkfcMUIEMo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have long hair\",\n    \"video_name\": \"MpeN-IVIBc4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is smoking harmful to health\",\n    \"video_name\": \"blbaWHbtqTI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is smoking harmful to health\",\n    \"video_name\": \"Bgi2Y85Mbwk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the animal in the video a donkey\",\n    \"video_name\": \"wnNiWoJxfSQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the animal in the video a horse\",\n    \"video_name\": \"wnNiWoJxfSQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete indoors\",\n    \"video_name\": \"sEcXR5b8HyY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete indoors\",\n    \"video_name\": \"JvPVYSb_5o8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete indoors\",\n    \"video_name\": \"s6fEIuHPJ4Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete indoors\",\n    \"video_name\": \"sRNqK_QZbMs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete indoors\",\n    \"video_name\": \"svNcNLEPKMc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete indoors\",\n    \"video_name\": \"K7iw2_1BrIk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete indoors\",\n    \"video_name\": \"St1RRi-aeNM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete indoors\",\n    \"video_name\": \"snhPrCNubYA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete indoors\",\n    \"video_name\": \"sPK-sbHIb3w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"jEOtcfk220s\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"4LpqPUWHH5k\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"JH9qiuPCkY4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"5UZ2ft8Y3sI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"5dN-MpXG9OE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"jibbgUBuuSA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"JvPVYSb_5o8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete outdoors\",\n    \"video_name\": \"K7iw2_1BrIk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the athlete playing outdoors\",\n    \"video_name\": \"3Nd3Aai1bVA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the barber indoors\",\n    \"video_name\": \"mLFjww64sX8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the barber outdoors\",\n    \"video_name\": \"mLFjww64sX8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the boy have long hair\",\n    \"video_name\": \"WINtiw-_3vg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the boy have short hair\",\n    \"video_name\": \"WINtiw-_3vg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the child holding a stick indoors\",\n    \"video_name\": \"kBTqTp0SKq8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the child holding a stick outdoors\",\n    \"video_name\": \"kBTqTp0SKq8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the car indoors\",\n    \"video_name\": \"jDlvGWOdcqU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the car outdoors\",\n    \"video_name\": \"jDlvGWOdcqU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the child indoors\",\n    \"video_name\": \"K1LiXUpoSmI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the child indoors\",\n    \"video_name\": \"JcAAwYpJhm8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the child indoors\",\n    \"video_name\": \"sqv3M6MPKjQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the child indoors\",\n    \"video_name\": \"rM02KWikOo8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the child indoors\",\n    \"video_name\": \"sk_pnoqXxhs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the child indoors\",\n    \"video_name\": \"RXT17X7lRoQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the child outdoors\",\n    \"video_name\": \"sqv3M6MPKjQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the child outdoors\",\n    \"video_name\": \"sk_pnoqXxhs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the child outdoors\",\n    \"video_name\": \"K1LiXUpoSmI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the child outdoors\",\n    \"video_name\": \"JcAAwYpJhm8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the child outdoors\",\n    \"video_name\": \"rM02KWikOo8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the child outdoors\",\n    \"video_name\": \"RXT17X7lRoQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the coach indoors\",\n    \"video_name\": \"k6pN0WRr2Ws\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the coach outdoors\",\n    \"video_name\": \"k6pN0WRr2Ws\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the color of the boat red\",\n    \"video_name\": \"DHjoAOus3xM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the color of the boat white\",\n    \"video_name\": \"DHjoAOus3xM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the player playing dodgeball indoors\",\n    \"video_name\": \"2CegApogJd4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is play basketball difficult\",\n    \"video_name\": \"ZgdMnfTqblw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is playing guitar difficult\",\n    \"video_name\": \"gWTndmDHZQc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is playing piano difficult\",\n    \"video_name\": \"ZxCdhz4ep0s\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the dog indoors\",\n    \"video_name\": \"jWODw4vy45M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the dog outdoors\",\n    \"video_name\": \"jWODw4vy45M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the game in the video difficult\",\n    \"video_name\": \"gsQ-OEvrxjo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the game in the video difficult\",\n    \"video_name\": \"QImpWj3AJcY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the game in the video difficult\",\n    \"video_name\": \"R74yolowFPs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the girl in the video have long hair\",\n    \"video_name\": \"d09u-0k3LdE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the girl in the video have long hair\",\n    \"video_name\": \"Dd5yTxwKzXw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the girl in the video have long hair\",\n    \"video_name\": \"_G4EVIG9YaE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the girl in the video have short hair\",\n    \"video_name\": \"d09u-0k3LdE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the girl in the video have short hair\",\n    \"video_name\": \"Dd5yTxwKzXw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the kite colorful\",\n    \"video_name\": \"7CM2OYr-Csw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the lady in the video have long hair\",\n    \"video_name\": \"W97fdJ2Rn9g\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the lady in the video have short hair\",\n    \"video_name\": \"W97fdJ2Rn9g\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the lady wearing black clothes\",\n    \"video_name\": \"Pv4FwH2TC6Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the lady wearing red clothes\",\n    \"video_name\": \"BMy7CBVxH5M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the lady wearing white clothes\",\n    \"video_name\": \"Pv4FwH2TC6Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the bald man outdoors\",\n    \"video_name\": \"SPjv6P5fxug\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the long haired girl wearing a necklace\",\n    \"video_name\": \"32vYs9wKXE8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person holding the rope indoors\",\n    \"video_name\": \"s84PG-JfEwc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man holding the rope outdoors\",\n    \"video_name\": \"s84PG-JfEwc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a plaid shirt wearing a hat\",\n    \"video_name\": \"Q5HdVXF390c\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a white shirt wearing a hat\",\n    \"video_name\": \"ZlVydB9uUe4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a white shirt wearing a hat\",\n    \"video_name\": \"zqxzFxya6T8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing black clothes a man\",\n    \"video_name\": \"PkRvgIFREJU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing black clothes a man\",\n    \"video_name\": \"pmmQuksmTvw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing black clothes a man\",\n    \"video_name\": \"cnMvMvVBXiI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black indoors\",\n    \"video_name\": \"5k2Ot6-wOgc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue a man or a woman\",\n    \"video_name\": \"72_9wLYUDGM\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"is the person in blue a man or a woman\",\n    \"video_name\": \"16czjUF1AA4\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"is the perosn in blue chopping wood indoors\",\n    \"video_name\": \"zxpQHLwZCug\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue indoors\",\n    \"video_name\": \"rrpEOrMpBuE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in gray clothes a man\",\n    \"video_name\": \"pVuuVHA3RVw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red a man or a woman\",\n    \"video_name\": \"xS4twW2gXqc\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"is the person in red a man or a woman\",\n    \"video_name\": \"XxW4XWySzOw\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"is the person wearing a hat indoors\",\n    \"video_name\": \"5c5PFa8GR-A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a hat indoors\",\n    \"video_name\": \"4z0meF-_b1I\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a hat outdoors\",\n    \"video_name\": \"5c5PFa8GR-A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a hat outdoors\",\n    \"video_name\": \"4z0meF-_b1I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the bald person indoors\",\n    \"video_name\": \"SPjv6P5fxug\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in plaid clothes indoors\",\n    \"video_name\": \"rnI9vGr5V1k\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in plaid clothes outdoors\",\n    \"video_name\": \"rnI9vGr5V1k\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with a microphone wearing a hat\",\n    \"video_name\": \"ZsVfa3JIUNU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in purple a man\",\n    \"video_name\": \"paRAKx8svJ8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video a man\",\n    \"video_name\": \"AB5cWhlQ0Kk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a scarf\",\n    \"video_name\": \"mvRoVXRGVGw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"FADShG5lyB8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"jbCQY7V7O1s\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"5oyenoaVB-w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the man in the video have long hair\",\n    \"video_name\": \"CFbkVO5b2g0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the man in the video have long hair\",\n    \"video_name\": \"CwImmV7q1MY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man in the video outdoors\",\n    \"video_name\": \"FADShG5lyB8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the man in the video have short hair\",\n    \"video_name\": \"CFbkVO5b2g0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the man in the video have short hair\",\n    \"video_name\": \"CwImmV7q1MY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white wear a scarf\",\n    \"video_name\": \"mnNgZ-D5cKc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man in a black coat wearing glasses\",\n    \"video_name\": \"F9FPK6mfh88\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black clothes a man\",\n    \"video_name\": \"A9VCuZ53ObQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black clothes a man\",\n    \"video_name\": \"AjqnGUbsduw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black clothes a man\",\n    \"video_name\": \"aGvpDyMNATI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a gray vest wearing a hat\",\n    \"video_name\": \"qZMcbBsQorE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a gray t-shirt wearing a hat\",\n    \"video_name\": \"pzTqZWPubk8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a gray t-shirt wearing a hat\",\n    \"video_name\": \"ZnKB0U96ZI4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man wearing a hat\",\n    \"video_name\": \"dKJMP8EmZjw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man wearing a hat\",\n    \"video_name\": \"-pkfcMUIEMo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man wearing a hat\",\n    \"video_name\": \"fhOmyyI0eQE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a hat a woman\",\n    \"video_name\": \"_V62aT_K8Zw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing red clothes a man\",\n    \"video_name\": \"PFeerDZbGn8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a tie outdoors\",\n    \"video_name\": \"sNTOUuE7ZfM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man in the video wearing a white coat\",\n    \"video_name\": \"bYxVbXzQToI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white clothes a man\",\n    \"video_name\": \"P5D9S9NzQ28\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white clothes a man\",\n    \"video_name\": \"pop8YCGQpWk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white clothes a man\",\n    \"video_name\": \"pKOy4HJwCqo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man at the beginning of the video wearing long sleeves \",\n    \"video_name\": \"1vTHJMMPZN0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man at the beginning of the video wearing short sleeves \",\n    \"video_name\": \"1vTHJMMPZN0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video a woman \",\n    \"video_name\": \"Aen-RfnlK3A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person who appeared at the beginning of the video indoors\",\n    \"video_name\": \"4LF0hL-mgks\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black dancing indoors\",\n    \"video_name\": \"lPw_BRbPw5s\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black clothes have black hair\",\n    \"video_name\": \"Ynvd8OuXKGw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black clothes have black hair\",\n    \"video_name\": \"z8x3wUZYOaM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black clothes have black hair\",\n    \"video_name\": \"AjqnGUbsduw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black clothes have black hair\",\n    \"video_name\": \"87F9xGaMwCw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black indoors\",\n    \"video_name\": \"SidTquTAtyk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black indoors\",\n    \"video_name\": \"T62XjoKbN8M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black indoors\",\n    \"video_name\": \"Son8UiVlzu0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black indoors\",\n    \"video_name\": \"RLBfyIVpocE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black outdoors\",\n    \"video_name\": \"SidTquTAtyk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black outdoors\",\n    \"video_name\": \"T62XjoKbN8M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black outdoors\",\n    \"video_name\": \"Son8UiVlzu0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black outdoors\",\n    \"video_name\": \"RLBfyIVpocE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red indoors\",\n    \"video_name\": \"T3A88zsRuVs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red outdoors\",\n    \"video_name\": \"T3A88zsRuVs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue have curly hair\",\n    \"video_name\": \"26U3SkeZU6M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue outdoors\",\n    \"video_name\": \"rrpEOrMpBuE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video a boy\",\n    \"video_name\": \"nbOsU2Vmp1U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video a boy\",\n    \"video_name\": \"NJRrhNrEMsk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video a boy\",\n    \"video_name\": \"NjXCZYO3zwU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video a boy or a gril\",\n    \"video_name\": \"9MN6GNhvwzA\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"is the person in the video a girl \",\n    \"video_name\": \"NJRrhNrEMsk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video a girl \",\n    \"video_name\": \"NjXCZYO3zwU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video a girl \",\n    \"video_name\": \"nbOsU2Vmp1U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video a lady\",\n    \"video_name\": \"CKSlgK_2FP4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video a man\",\n    \"video_name\": \"CKSlgK_2FP4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have black hair\",\n    \"video_name\": \"-YwrMtiqHKg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have black hair\",\n    \"video_name\": \"OYEKKzQjaJI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have black hair\",\n    \"video_name\": \"Y05GAiavfOg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have black hair\",\n    \"video_name\": \"Yg03CCu9GMo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"StGxFfLiYNU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"K5jY2chByPw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"sH_716hH_rY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"MDWaKr7Gu5Q\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"Feq-2NIDl94\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"4LoAbHdHWqM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"5nu47s7JrfY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"SGAUpoTMSnA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"4JmFOPoKluM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"4YF9R3Sz2bA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"6JZVpl2S2Mg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"T0nCDJuikuA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"4uKoAk5NCkI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"k3WPc9HmtLM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"T3mcQnlsmq4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"04qggWACGWk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video indoors\",\n    \"video_name\": \"6H0D8VaIli0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have long hair\",\n    \"video_name\": \"-YwrMtiqHKg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have long hair\",\n    \"video_name\": \"OYEKKzQjaJI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have long hair\",\n    \"video_name\": \"Y05GAiavfOg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have long hair\",\n    \"video_name\": \"nbHBjdE8oNo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have long hair\",\n    \"video_name\": \"n832gDqfWl4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have long hair\",\n    \"video_name\": \"d_A-ylxNbFU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have long hair\",\n    \"video_name\": \"n9EdHGz7ArI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have long hair\",\n    \"video_name\": \"nc_NMp3vAH0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have long hair\",\n    \"video_name\": \"hyMqGr0mOfA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have long hair\",\n    \"video_name\": \"Nb6AQxxrihA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"K5jY2chByPw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"sH_716hH_rY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"Feq-2NIDl94\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"4LoAbHdHWqM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"5nu47s7JrfY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"SGAUpoTMSnA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"4YF9R3Sz2bA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"4JmFOPoKluM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"StGxFfLiYNU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"MDWaKr7Gu5Q\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"T0nCDJuikuA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"T3mcQnlsmq4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"4uKoAk5NCkI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"k3WPc9HmtLM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"6JZVpl2S2Mg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"04qggWACGWk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"6H0D8VaIli0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video outdoors\",\n    \"video_name\": \"Df7AnfIEhYw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have short hair\",\n    \"video_name\": \"nbHBjdE8oNo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have short hair\",\n    \"video_name\": \"n832gDqfWl4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have short hair\",\n    \"video_name\": \"d_A-ylxNbFU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have short hair\",\n    \"video_name\": \"Yg03CCu9GMo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have short hair\",\n    \"video_name\": \"yGTIEmZ7S2w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have short hair\",\n    \"video_name\": \"n9EdHGz7ArI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have short hair\",\n    \"video_name\": \"Aen-RfnlK3A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have short hair\",\n    \"video_name\": \"nc_NMp3vAH0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have short hair\",\n    \"video_name\": \"hyMqGr0mOfA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video have short hair\",\n    \"video_name\": \"Nb6AQxxrihA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have straight hair\",\n    \"video_name\": \"yGTIEmZ7S2w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white a boy or a girl\",\n    \"video_name\": \"87F9xGaMwCw\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"is the person in white indoors\",\n    \"video_name\": \"RgiVa9GMYxE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white indoors\",\n    \"video_name\": \"rWfQj0X8WU4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white outdoors\",\n    \"video_name\": \"RgiVa9GMYxE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white outdoors\",\n    \"video_name\": \"rWfQj0X8WU4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video sitting\",\n    \"video_name\": \"Db2Dnt2OOo0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the black and white coat wearing a hat\",\n    \"video_name\": \"r2H-cnti8GI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a black coat\",\n    \"video_name\": \"dU7jG8G5li0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the black coat indoors\",\n    \"video_name\": \"fe4r2-Y8k1U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the black coat have long hair\",\n    \"video_name\": \"N4qhryre_TE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the black coat have long hair\",\n    \"video_name\": \"Df7AnfIEhYw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the black coat have short hair\",\n    \"video_name\": \"N4qhryre_TE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the black coat have short hair\",\n    \"video_name\": \"Df7AnfIEhYw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the black coat wearing a hat\",\n    \"video_name\": \"QImpWj3AJcY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the black coat wearing a hat\",\n    \"video_name\": \"zTHkqpNFGno\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the black coat wearing a hat\",\n    \"video_name\": \"ZLJ2BmBkLJg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black a lady\",\n    \"video_name\": \"pmmQuksmTvw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black a lady\",\n    \"video_name\": \"PkRvgIFREJU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black a lady\",\n    \"video_name\": \"cnMvMvVBXiI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black a woman\",\n    \"video_name\": \"NvRH4SoF09c\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black have curly hair\",\n    \"video_name\": \"z8x3wUZYOaM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black dancing outdoors\",\n    \"video_name\": \"lPw_BRbPw5s\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing black clothes\",\n    \"video_name\": \"PdwWFueQErM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing black clothes\",\n    \"video_name\": \"Of2Umm79Kxg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing black clothes\",\n    \"video_name\": \"BmL2XGNrxc4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing black clothes\",\n    \"video_name\": \"penDFcEdu7U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black have long hair\",\n    \"video_name\": \"aGvpDyMNATI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black have long hair\",\n    \"video_name\": \"mUmSJps9WJI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black have long hair\",\n    \"video_name\": \"Ynvd8OuXKGw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black have long hair\",\n    \"video_name\": \"mV07bEBkIcM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black have long hair\",\n    \"video_name\": \"nhQTxZlzG1Q\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black have long hair\",\n    \"video_name\": \"A0b_pqaKCX8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black have long hair\",\n    \"video_name\": \"87F9xGaMwCw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black have straight hair\",\n    \"video_name\": \"mV07bEBkIcM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black wearing a hat\",\n    \"video_name\": \"gsQ-OEvrxjo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the black vest indoors\",\n    \"video_name\": \"qWgF9hxNbP8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the black vest outdoors\",\n    \"video_name\": \"qWgF9hxNbP8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the black vest wearing a hat\",\n    \"video_name\": \"qWgF9hxNbP8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the black vest wearing a hat\",\n    \"video_name\": \"ZgdMnfTqblw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the black vest wearing a hat\",\n    \"video_name\": \"G0VWk5WqDp0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a blue coat wearing a hat\",\n    \"video_name\": \"YvPoAOrjX5I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a blue coat wearing a hat\",\n    \"video_name\": \"qiupddjDHDg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a blue coat wearing a hat\",\n    \"video_name\": \"rCLGy2NA0aE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a blue coat wearing a hat\",\n    \"video_name\": \"qiTQ02NDSlQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a blue coat wearing a hat\",\n    \"video_name\": \"oGU7m7rCZ-Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a blue dress a girl\",\n    \"video_name\": \"nciIPwJTok8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a blue dress a girl\",\n    \"video_name\": \"96vBhCFBbQk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue have black hair\",\n    \"video_name\": \"yRQpolWhJ6A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue have black hair\",\n    \"video_name\": \"oMtB-y49Yo8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue have black hair\",\n    \"video_name\": \"62M1FRXsUiM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue have blond hair\",\n    \"video_name\": \"YVqRQDkdA8U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue have curly hair\",\n    \"video_name\": \"MVA568rRjzQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue have curly hair\",\n    \"video_name\": \"62M1FRXsUiM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing blue clothes \",\n    \"video_name\": \"uw9x69DT8_g\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing blue clothes \",\n    \"video_name\": \"TiQcZKml5Bs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing blue clothes \",\n    \"video_name\": \"BmL2XGNrxc4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing blue clothes \",\n    \"video_name\": \"BBKSKU6dGGk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue have long hair\",\n    \"video_name\": \"oMtB-y49Yo8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue have long hair\",\n    \"video_name\": \"XI7qJHE61zo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue have short hair\",\n    \"video_name\": \"yRQpolWhJ6A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue have short hair\",\n    \"video_name\": \"XI7qJHE61zo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue have short hair\",\n    \"video_name\": \"YVqRQDkdA8U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue wearing a necklace\",\n    \"video_name\": \"16czjUF1AA4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue wearing a ring\",\n    \"video_name\": \"16czjUF1AA4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the blue striped clothes have long hair\",\n    \"video_name\": \"N9VOdVOiPNM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the blue striped clothes have short hair\",\n    \"video_name\": \"N9VOdVOiPNM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing clothes\",\n    \"video_name\": \"Nb6AQxxrihA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in gray clothes a lady\",\n    \"video_name\": \"pVuuVHA3RVw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing gray clothes\",\n    \"video_name\": \"0e5zwJywyqk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing gray clothes\",\n    \"video_name\": \"diY-XBT5cD4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing gray clothes a boy or a girl\",\n    \"video_name\": \"xMNmGr96O9U\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"is the person in green coat wearing a hat\",\n    \"video_name\": \"zKYiTA6WBS4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in green coat wearing a hat\",\n    \"video_name\": \"ZJnXQw84xvo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in green coat wearing a hat\",\n    \"video_name\": \"QX5e5Mla660\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in a green swimsuit have black hair\",\n    \"video_name\": \"OUxgs_QlPHE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in a green swimsuit have long hair\",\n    \"video_name\": \"OUxgs_QlPHE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"yCpdDJAW-jU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"mZYWfmsYQPA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"nDM4E9CD_y0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"U2cCOj3LiAA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"oT6WUU8-dgs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"mvRoVXRGVGw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"Z2gpcqXWNek\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"yUvSujxnFE0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"ngMxE3CnGVg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"NJRrhNrEMsk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"HTYzbAFUghU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"z6pmp8TrAVo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a hat \",\n    \"video_name\": \"YaC68rE4lwA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in a hat have blond hair\",\n    \"video_name\": \"Npj77L31bhw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a mask \",\n    \"video_name\": \"yCpdDJAW-jU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a microphone \",\n    \"video_name\": \"TnP6coXzbLY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a necklace \",\n    \"video_name\": \"AB480dHyDeM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a necklace \",\n    \"video_name\": \"ngMxE3CnGVg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in purple a lady\",\n    \"video_name\": \"paRAKx8svJ8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in purple have black hair\",\n    \"video_name\": \"OccEAILrU7M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in purple have long hair\",\n    \"video_name\": \"OccEAILrU7M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in purple have long hair\",\n    \"video_name\": \"nGKc2t-NMYc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in purple wearing a hat\",\n    \"video_name\": \"xfV4V_AOVSM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing red clothes a girl\",\n    \"video_name\": \"nkWMBJC2Qec\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing red clothes a lady\",\n    \"video_name\": \"PFeerDZbGn8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing red clothes a woman\",\n    \"video_name\": \"oKJ1BnvHbbA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have black hair\",\n    \"video_name\": \"YHqFNnhaFAY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have black hair\",\n    \"video_name\": \"Pr5K2Jh2X94\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have black hair\",\n    \"video_name\": \"oKJ1BnvHbbA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red have blond hair\",\n    \"video_name\": \"YHqFNnhaFAY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red have blond hair\",\n    \"video_name\": \"z6l9utYlIrw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have blond hair\",\n    \"video_name\": \"OFTkwnSh-sQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have blond hair\",\n    \"video_name\": \"nvcMYiZhUuo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red have curly hair\",\n    \"video_name\": \"75Tc1nPmZFQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing red clothes\",\n    \"video_name\": \"0e5zwJywyqk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing red clothes\",\n    \"video_name\": \"Ar6TcWqwK-A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing red clothes\",\n    \"video_name\": \"TiQcZKml5Bs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing red clothes\",\n    \"video_name\": \"_zqj6daJo9U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing red clothes\",\n    \"video_name\": \"wh6P2C2avqc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing red clothes\",\n    \"video_name\": \"uw9x69DT8_g\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing red clothes\",\n    \"video_name\": \"PdwWFueQErM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing red clothes\",\n    \"video_name\": \"an1R4BP97JY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have long hair\",\n    \"video_name\": \"xS4twW2gXqc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red have long hair\",\n    \"video_name\": \"VZ5R9goklpo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red have long hair\",\n    \"video_name\": \"z6l9utYlIrw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red have long hair\",\n    \"video_name\": \"aH39BSM0-Ag\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red have long hair\",\n    \"video_name\": \"9ZVWD0ZKXZg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red have long hair\",\n    \"video_name\": \"OFTkwnSh-sQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red have long hair\",\n    \"video_name\": \"XxW4XWySzOw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red have long hair\",\n    \"video_name\": \"XCfrjEJkl3M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red wearing a hat\",\n    \"video_name\": \"g1na24Bd5Rs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have short hair\",\n    \"video_name\": \"xS4twW2gXqc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have short hair\",\n    \"video_name\": \"XCfrjEJkl3M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have short hair\",\n    \"video_name\": \"VZ5R9goklpo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have short hair\",\n    \"video_name\": \"75Tc1nPmZFQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have short hair\",\n    \"video_name\": \"XxW4XWySzOw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have short hair\",\n    \"video_name\": \"nvcMYiZhUuo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red wearing a hat\",\n    \"video_name\": \"g1na24Bd5Rs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red have blond hair\",\n    \"video_name\": \"9ZVWD0ZKXZg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red have blond hair\",\n    \"video_name\": \"Pr5K2Jh2X94\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a ring\",\n    \"video_name\": \"zA2zZPyYLlU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a ring on the right hand\",\n    \"video_name\": \"qObVIn_GI10\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a skirt\",\n    \"video_name\": \"Au4PfoK7hyw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a watch\",\n    \"video_name\": \"nDM4E9CD_y0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a watch\",\n    \"video_name\": \"9MN6GNhvwzA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a watch\",\n    \"video_name\": \"mZYWfmsYQPA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a watch\",\n    \"video_name\": \"YRGiRmcHdUY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a watch on the right hand\",\n    \"video_name\": \"uLphvdhunTY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a watch on the right hand\",\n    \"video_name\": \"0jdSl5-lMpY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a white coat\",\n    \"video_name\": \"dU7jG8G5li0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white coat wearing a hat\",\n    \"video_name\": \"qZtdMXkHRXw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing white clothes a girl\",\n    \"video_name\": \"X2toGKgWMpE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing white clothes a girl\",\n    \"video_name\": \"X_K7Aa3Aa-E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white clothes a girl\",\n    \"video_name\": \"MonWdYi3a0I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white clothes a lady\",\n    \"video_name\": \"P5D9S9NzQ28\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing white clothes a lady\",\n    \"video_name\": \"penDFcEdu7U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white clothes a lady\",\n    \"video_name\": \"pop8YCGQpWk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing white clothes a lady\",\n    \"video_name\": \"pKOy4HJwCqo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person at the beginning of the video wearing white clothes\",\n    \"video_name\": \"prBiREYQ2vQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white have black hair\",\n    \"video_name\": \"YMOYyt3kSOs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white have curly hair\",\n    \"video_name\": \"30hcRe-5_3M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a white clothes\",\n    \"video_name\": \"wh6P2C2avqc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a white clothes\",\n    \"video_name\": \"penDFcEdu7U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a white clothes\",\n    \"video_name\": \"BBKSKU6dGGk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing a white clothes\",\n    \"video_name\": \"an1R4BP97JY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white have long hair\",\n    \"video_name\": \"vzUeFzhVYLg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white clothes wearing a hat\",\n    \"video_name\": \"gkwLhml3mnA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"nnEPsdA0080\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"xizEiQZfJa4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"afMQA352X_A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"gkwLhml3mnA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"Oh3-DvDCpZ4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"836UrVGw6GI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing a hat\",\n    \"video_name\": \"y0ca-LbQErY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white vest wearing a hat\",\n    \"video_name\": \"qSP3_C7QWpU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in yellow clothes a girl\",\n    \"video_name\": \"XCfrjEJkl3M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing yellow clothes\",\n    \"video_name\": \"diY-XBT5cD4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black shorts swimming indoors\",\n    \"video_name\": \"qgUHRwC3194\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black shorts swimming outdoors\",\n    \"video_name\": \"qgUHRwC3194\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing glasses \",\n    \"video_name\": \"YaC68rE4lwA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing glasses \",\n    \"video_name\": \"9MN6GNhvwzA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing glasses \",\n    \"video_name\": \"oT6WUU8-dgs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing glasses \",\n    \"video_name\": \"z6pmp8TrAVo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing glasses \",\n    \"video_name\": \"BmL2XGNrxc4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing gloves \",\n    \"video_name\": \"zEttEkAdHts\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing gloves \",\n    \"video_name\": \"YRGiRmcHdUY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing gloves \",\n    \"video_name\": \"Z2gpcqXWNek\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video wearing jeans \",\n    \"video_name\": \"Au4PfoK7hyw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in orange clothes indoors\",\n    \"video_name\": \"mixxaL3Bdv8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing shoes\",\n    \"video_name\": \"qaml4eEk9hY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video wearing tshirt\",\n    \"video_name\": \"aNsj5OrEGLY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black tshirt have short hair\",\n    \"video_name\": \"CDecXoRSpIc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black have long hair\",\n    \"video_name\": \"_jV5sAOOHLk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person have blond and long hair \",\n    \"video_name\": \"W2eumNilwuI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person have blond and long hair \",\n    \"video_name\": \"45hcc_VI4t4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person have blond and short hair \",\n    \"video_name\": \"W2eumNilwuI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person have blond and short hair \",\n    \"video_name\": \"45hcc_VI4t4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in video have black hair\",\n    \"video_name\": \"z6pmp8TrAVo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the player outdoors\",\n    \"video_name\": \"SjlILJ2st-I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person playing hockey outdoors\",\n    \"video_name\": \"2uUNiV8xmEo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person playing hockey outdoors\",\n    \"video_name\": \"2uUNiV8xmEo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the player with a pole indoors\",\n    \"video_name\": \"rsU73H6VyG8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the player with a pole outdoors\",\n    \"video_name\": \"rsU73H6VyG8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sport of pommel horse dangerous\",\n    \"video_name\": \"0mNZfG6CL74\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the sport of pommel horse dangerous\",\n    \"video_name\": \"huFOZ2BiM_k\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is sliding dangerous\",\n    \"video_name\": \"QPEAp7nf2Tk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is blowing hair with a hair dryer dangerous\",\n    \"video_name\": \"zKYiTA6WBS4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is repairing the roof dangerous\",\n    \"video_name\": \"qiupddjDHDg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is surfing dangerous\",\n    \"video_name\": \"zPQodcasmSA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the game in the video dangerous\",\n    \"video_name\": \"qSP3_C7QWpU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sport in the video dangerous\",\n    \"video_name\": \"pKOy4HJwCqo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sport in the video dangerous\",\n    \"video_name\": \"aPI0nPvzJlE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sport in the video dangerous\",\n    \"video_name\": \"pMtu7fOHdII\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sport in the video dangerous\",\n    \"video_name\": \"P6Oq6C9X0fw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sport in the video dangerous\",\n    \"video_name\": \"-pK2JheWido\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red wearing a scarf\",\n    \"video_name\": \"390iVq_urQM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the video take place indoors or outdoors\",\n    \"video_name\": \"H2fG7JRRMAs\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"does the video take place indoors or outdoors\",\n    \"video_name\": \"Z-sWZUYL0ZU\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"does the video take place indoors or outdoors\",\n    \"video_name\": \"g9lNpSAtHgI\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"does the video take place indoors or outdoors\",\n    \"video_name\": \"g1na24Bd5Rs\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"is the gender of the person in the video male\",\n    \"video_name\": \"3uaQ0cULMgc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the gender of the person in the video female\",\n    \"video_name\": \"3uaQ0cULMgc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the boat in the video green\",\n    \"video_name\": \"zA2zZPyYLlU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person sitting indoors\",\n    \"video_name\": \"RtF6TGqwa7Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person sitting outdoors\",\n    \"video_name\": \"RtF6TGqwa7Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person standing indoors\",\n    \"video_name\": \"rSGboODhu04\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person standing indoors\",\n    \"video_name\": \"RXDVJlb97OI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person standing indoors\",\n    \"video_name\": \"jhy6npIdn5o\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person standing indoors\",\n    \"video_name\": \"kD_EJjQCLoY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the preson in a swimsuit outdoors\",\n    \"video_name\": \"lUil9HfTzJ0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the preson in a swimsuit outdoors\",\n    \"video_name\": \"lUil9HfTzJ0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the video taken indoors\",\n    \"video_name\": \"4UdxT6Zmero\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the video taken outdoors\",\n    \"video_name\": \"4UdxT6Zmero\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the weather in the video sunny or cloudy \",\n    \"video_name\": \"gZB_XrTnDCI\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"is the weather in the video sunny\",\n    \"video_name\": \"qiupddjDHDg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the weather in the video sunny or cloudy \",\n    \"video_name\": \"gNUCdXGxp0w\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"is the weather in the video sunny or cloudy \",\n    \"video_name\": \"Zt9qvbUnNhc\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"is the weather in the video sunny or cloudy \",\n    \"video_name\": \"zpaS2iYrJjk\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"is the weather in the video sunny or cloudy \",\n    \"video_name\": \"Q5HdVXF390c\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"is the weather in the video sunny or cloudy \",\n    \"video_name\": \"qKp2QCheLwU\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"is the woman in the video chinese\",\n    \"video_name\": \"CvbL36Y8hN0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in the video indoors\",\n    \"video_name\": \"6LsvBNqJuJY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman in the video indoors\",\n    \"video_name\": \"j81ndpMC9gI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman in the video indoors\",\n    \"video_name\": \"sfbgZOHLkII\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in the video have long hair\",\n    \"video_name\": \"cYvFlrAnlzA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in the video have long hair\",\n    \"video_name\": \"F7K2oT7ADkk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in the video have long hair\",\n    \"video_name\": \"FEOdYNR4gls\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in the video have long hair\",\n    \"video_name\": \"cQgP0-Id-p4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in the video have long hair\",\n    \"video_name\": \"Db9VWkgMpbE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in the video have long hair\",\n    \"video_name\": \"d4sX1jnL4BY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in the video have long hair\",\n    \"video_name\": \"CuLC5G7yWxA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman in the video outdoors\",\n    \"video_name\": \"6LsvBNqJuJY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in the video outdoors\",\n    \"video_name\": \"j81ndpMC9gI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in the video outdoors\",\n    \"video_name\": \"sfbgZOHLkII\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in the video have short hair\",\n    \"video_name\": \"cYvFlrAnlzA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in the video have short hair\",\n    \"video_name\": \"F7K2oT7ADkk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in the video have short hair\",\n    \"video_name\": \"FEOdYNR4gls\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in the video have short hair\",\n    \"video_name\": \"cQgP0-Id-p4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in the video have short hair\",\n    \"video_name\": \"Db9VWkgMpbE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in the video have short hair\",\n    \"video_name\": \"d4sX1jnL4BY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in the video wearing a black dress\",\n    \"video_name\": \"F7K2oT7ADkk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in the video wearing a black dress\",\n    \"video_name\": \"-CqVpCRxwTY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in the video wearing a white dress\",\n    \"video_name\": \"-CqVpCRxwTY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman wearing a ring on her left hand\",\n    \"video_name\": \"DTI__3fkSzM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a car in the video\",\n    \"video_name\": \"PdwWFueQErM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a car in the video\",\n    \"video_name\": \"4uKoAk5NCkI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a cup on the table\",\n    \"video_name\": \"hvrKRg166eQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a person with hat in the video\",\n    \"video_name\": \"atGMJc-DZ7w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is making sandwichs difficult\",\n    \"video_name\": \"qiTQ02NDSlQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is playing football difficult\",\n    \"video_name\": \"zOI9SjQpc_Q\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is playing table football difficult\",\n    \"video_name\": \"Znb6Y9m_PsQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is playing tai chi difficult\",\n    \"video_name\": \"gkwLhml3mnA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is playing tai chi difficult\",\n    \"video_name\": \"QJ5xv6oj1sk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is playing tennis difficult\",\n    \"video_name\": \"ZnKB0U96ZI4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there a man in the video\",\n    \"video_name\": \"pPt_fygNjtQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a man in the video\",\n    \"video_name\": \"PSB1nM3QXxg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does this sport in the olympic games\",\n    \"video_name\": \"prBiREYQ2vQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does this sport in the olympic games\",\n    \"video_name\": \"P5D9S9NzQ28\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there only one person in the video\",\n    \"video_name\": \"aPI0nPvzJlE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there only one person in the video\",\n    \"video_name\": \"penDFcEdu7U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does this sport in the olympic games\",\n    \"video_name\": \"p1QGn0IzfW0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does this sport in the olympic games\",\n    \"video_name\": \"pop8YCGQpWk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this operation difficult\",\n    \"video_name\": \"9TjPn_ejmFU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the work of tiling dangerous\",\n    \"video_name\": \"p54LLMnyg54\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this person wearing a hat\",\n    \"video_name\": \"li_mry59KCM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this person wearing a hat\",\n    \"video_name\": \"lfbspF18Wrw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is this person wearing glasses\",\n    \"video_name\": \"li_mry59KCM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is this person wearing glasses\",\n    \"video_name\": \"lfbspF18Wrw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the act dangerous\",\n    \"video_name\": \"BkDbDnvoL28\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the act dangerous\",\n    \"video_name\": \"pVoM_kUQ4_E\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the sport difficult\",\n    \"video_name\": \"atGMJc-DZ7w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the activity in the video dangerous\",\n    \"video_name\": \"hIYN8cC3pEA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sport difficult\",\n    \"video_name\": \"p1QGn0IzfW0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"what is the relationshio between the two perple in the video\",\n    \"video_name\": \"Npj77L31bhw\",\n    \"answer\": \"shopkeepers and customers\"\n  },\n  {\n    \"question\": \"what is the relationshio between the two perple in the video\",\n    \"video_name\": \"A9VCuZ53ObQ\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationshio between the two perple in the video\",\n    \"video_name\": \"Y_nyVFn70Lk\",\n    \"answer\": \"brother\"\n  },\n  {\n    \"question\": \"how is the feeling of person in the video \",\n    \"video_name\": \"04qggWACGWk\",\n    \"answer\": \"bath towel\"\n  },\n  {\n    \"question\": \"how is the weather in the video\",\n    \"video_name\": \"sH_716hH_rY\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what are the adults doing in the video\",\n    \"video_name\": \"4LoAbHdHWqM\",\n    \"answer\": \"tie rope\"\n  },\n  {\n    \"question\": \"what are all the people doing in the video\",\n    \"video_name\": \"qlK-c7hRqcA\",\n    \"answer\": \"combat training\"\n  },\n  {\n    \"question\": \"what are all the people doing in the video\",\n    \"video_name\": \"R-hsYQNtnn0\",\n    \"answer\": \"play football on table\"\n  },\n  {\n    \"question\": \"what is person in black doing\",\n    \"video_name\": \"09ocXmGF-T4\",\n    \"answer\": \"chipping potatoes\"\n  },\n  {\n    \"question\": \"what is the kid doing\",\n    \"video_name\": \"JcAAwYpJhm8\",\n    \"answer\": \"dishwashing\"\n  },\n  {\n    \"question\": \"what is the kid doing\",\n    \"video_name\": \"rM02KWikOo8\",\n    \"answer\": \"skateboard with water\"\n  },\n  {\n    \"question\": \"what is the kid doing\",\n    \"video_name\": \"sqv3M6MPKjQ\",\n    \"answer\": \"defoliation\"\n  },\n  {\n    \"question\": \"what is the kid doing\",\n    \"video_name\": \"sk_pnoqXxhs\",\n    \"answer\": \"brush ones teeth\"\n  },\n  {\n    \"question\": \"what is the kid doing\",\n    \"video_name\": \"RXT17X7lRoQ\",\n    \"answer\": \"baton tennis\"\n  },\n  {\n    \"question\": \"what is the kid doing\",\n    \"video_name\": \"K1LiXUpoSmI\",\n    \"answer\": \"play ball\"\n  },\n  {\n    \"question\": \"what is the kid doing\",\n    \"video_name\": \"MAYrBia9Xnw\",\n    \"answer\": \"performing martial arts\"\n  },\n  {\n    \"question\": \"what is the kid doing\",\n    \"video_name\": \"Ki1bs5X_S5k\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what's the girl in black doing in the video\",\n    \"video_name\": \"bWZkD_s1940\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what's the girl in black doing in the video\",\n    \"video_name\": \"VSsZZZHn1L0\",\n    \"answer\": \"gargle\"\n  },\n  {\n    \"question\": \"what is the man in red clothes doing\",\n    \"video_name\": \"i_LT0ef1n-Y\",\n    \"answer\": \"slider\"\n  },\n  {\n    \"question\": \"what is the man in red clothes doing\",\n    \"video_name\": \"iqyc2JM0uIU\",\n    \"answer\": \"wine dressing\"\n  },\n  {\n    \"question\": \"what is the man in red clothes doing\",\n    \"video_name\": \"7BFbmEY3BNw\",\n    \"answer\": \"rowing\"\n  },\n  {\n    \"question\": \"what is the man doing in the video\",\n    \"video_name\": \"BMy7CBVxH5M\",\n    \"answer\": \"pacify horse\"\n  },\n  {\n    \"question\": \"what is the man in white clothes doing\",\n    \"video_name\": \"e-Xf13exY4E\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what is the man in white clothes doing\",\n    \"video_name\": \"ivAvKRQQy1Q\",\n    \"answer\": \"cook dish\"\n  },\n  {\n    \"question\": \"what is the man in white clothes doing\",\n    \"video_name\": \"e0yLhjXQIXI\",\n    \"answer\": \"do floor exercises\"\n  },\n  {\n    \"question\": \"what's the man in blue and black pants doing\",\n    \"video_name\": \"iAes5SVj_Fg\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is the man in blue pants doing\",\n    \"video_name\": \"6Xsfwn5M6qs\",\n    \"answer\": \"gymnastics in parallel bars\"\n  },\n  {\n    \"question\": \"what is the man in white clothes doing\",\n    \"video_name\": \"EQWdo0FcKAo\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what's the person in the black and white striped shirt doing\",\n    \"video_name\": \"b_mWxzi_aps\",\n    \"answer\": \"be referee\"\n  },\n  {\n    \"question\": \"what's the person in the black and white striped shirt doing\",\n    \"video_name\": \"BjjN_aq_wq4\",\n    \"answer\": \"dishware\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"-YwrMtiqHKg\",\n    \"answer\": \"skin care\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Pjnuoa4o55c\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"d09u-0k3LdE\",\n    \"answer\": \"hammer throw\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Pv4FwH2TC6Y\",\n    \"answer\": \"draw eyes shadow\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"sH_716hH_rY\",\n    \"answer\": \"wash horse\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"3uaQ0cULMgc\",\n    \"answer\": \"car wash\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"lU6DMCif3eE\",\n    \"answer\": \"play musical instrument\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"SGAUpoTMSnA\",\n    \"answer\": \"kayaking\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"mvRoVXRGVGw\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"S7CW-si2JjA\",\n    \"answer\": \"make cake\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"yCpdDJAW-jU\",\n    \"answer\": \"sweep snow for cars\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"fMVuGUBs2cs\",\n    \"answer\": \"wine dressing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"AsdsR27UnJ0\",\n    \"answer\": \"brush ones teeth\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"N9VOdVOiPNM\",\n    \"answer\": \"paracentesis\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"d_A-ylxNbFU\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"AguxVxEWEs0\",\n    \"answer\": \"practice martial arts\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"aNsj5OrEGLY\",\n    \"answer\": \"make cold dishes\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"fbr7v8RMkf8\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"-crpjVnFv0U\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"YaC68rE4lwA\",\n    \"answer\": \"contain water\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"eJc8bebOF2A\",\n    \"answer\": \"put shot\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"K5jY2chByPw\",\n    \"answer\": \"bathe horse\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"H9PaZiWLgXU\",\n    \"answer\": \"making cocktails\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"qaml4eEk9hY\",\n    \"answer\": \"clean room\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"p54LLMnyg54\",\n    \"answer\": \"wipe glass\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"nDM4E9CD_y0\",\n    \"answer\": \"shovel snow\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"0e5zwJywyqk\",\n    \"answer\": \"make spaghetti\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"k3WPc9HmtLM\",\n    \"answer\": \"make cake\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"penDFcEdu7U\",\n    \"answer\": \"dig up soil\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"mVAP-WyEc7w\",\n    \"answer\": \"cut tomato\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"aAz3YL2RMr4\",\n    \"answer\": \"tattoo\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"N5Dt3ycaun4\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"uLphvdhunTY\",\n    \"answer\": \"bodybuilding\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"dFGS7YCDk3Y\",\n    \"answer\": \"sailing competition\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"9MN6GNhvwzA\",\n    \"answer\": \"hopping hula hoop\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"U2cCOj3LiAA\",\n    \"answer\": \"bodybuilding\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"N4qhryre_TE\",\n    \"answer\": \"somersault\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"FaP7unySMOs\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Feq-2NIDl94\",\n    \"answer\": \"paint fingernails\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"0k6GFx2ZCg8\",\n    \"answer\": \"make sandwich\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"PTwe2IIo3To\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"5nu47s7JrfY\",\n    \"answer\": \"make sandwich\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"CKSlgK_2FP4\",\n    \"answer\": \"introduce tool\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Ar6TcWqwK-A\",\n    \"answer\": \"dishware\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"TiQcZKml5Bs\",\n    \"answer\": \"walk dog\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"OYEKKzQjaJI\",\n    \"answer\": \"make ice cream\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Y05GAiavfOg\",\n    \"answer\": \"manicure\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Dd5yTxwKzXw\",\n    \"answer\": \"make hair\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"udSHsodv3gY\",\n    \"answer\": \"brushing horse\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"zEttEkAdHts\",\n    \"answer\": \"wrapping paper\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"fLR-b-FDjlM\",\n    \"answer\": \"play game\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Oyycph_Ukfg\",\n    \"answer\": \"wear shoe\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"4YF9R3Sz2bA\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"StGxFfLiYNU\",\n    \"answer\": \"play with sand\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"hG4VsZQQ2_c\",\n    \"answer\": \"chopping wood\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"KsFid_YVsn0\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"AQ3eFWxZ67U\",\n    \"answer\": \"smear sunscreen\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"_zqj6daJo9U\",\n    \"answer\": \"weightlifting\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"nbHBjdE8oNo\",\n    \"answer\": \"do some washing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"4MwnHtlaEUY\",\n    \"answer\": \"assemble bicycle\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"PD-FXR7O9J0\",\n    \"answer\": \"bathe dog\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"n832gDqfWl4\",\n    \"answer\": \"shoe polish\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Db9VWkgMpbE\",\n    \"answer\": \"bodybuilding\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"cCDffwsJvsY\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"YRGiRmcHdUY\",\n    \"answer\": \"sharpening\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"6JZVpl2S2Mg\",\n    \"answer\": \"wear contact lenses\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"stdtUoog49I\",\n    \"answer\": \"parade\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"AB480dHyDeM\",\n    \"answer\": \"brush shoes\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"MDWaKr7Gu5Q\",\n    \"answer\": \"cleaning deciduous leaves\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"atGMJc-DZ7w\",\n    \"answer\": \"wash clothes\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"yUvSujxnFE0\",\n    \"answer\": \"play tennis\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"oT6WUU8-dgs\",\n    \"answer\": \"clink with dog\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"NJRrhNrEMsk\",\n    \"answer\": \"tires dismantling\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"-pkfcMUIEMo\",\n    \"answer\": \"snow removal\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"qObVIn_GI10\",\n    \"answer\": \"squeezed juice\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"mZYWfmsYQPA\",\n    \"answer\": \"play table tennis\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"uw9x69DT8_g\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Z2gpcqXWNek\",\n    \"answer\": \"bathe dog\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"VvsYrfEvvUw\",\n    \"answer\": \"bodybuilding\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"fEBM3nPMen8\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"T0nCDJuikuA\",\n    \"answer\": \"decorating christmas tree\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"fSBX-gjPblw\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"uM7QSskmloo\",\n    \"answer\": \"pruning branches\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"yGTIEmZ7S2w\",\n    \"answer\": \"javelin throw\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"1dDAcUliXrQ\",\n    \"answer\": \"shuttlecock\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"w10Nr_wOh8g\",\n    \"answer\": \"wallpaper\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"4uKoAk5NCkI\",\n    \"answer\": \"practice stick method\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"n9EdHGz7ArI\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"zA2zZPyYLlU\",\n    \"answer\": \"control remote control ship\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"TnP6coXzbLY\",\n    \"answer\": \"assembling tires\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"PdwWFueQErM\",\n    \"answer\": \"sweeping snow\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"OlR9S70AA74\",\n    \"answer\": \"sailing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"W9H2qVnIWXs\",\n    \"answer\": \"bathe dog\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"T3mcQnlsmq4\",\n    \"answer\": \"cut nails for cat\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"0jdSl5-lMpY\",\n    \"answer\": \"assembly slate\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"nc_NMp3vAH0\",\n    \"answer\": \"push ice pot\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"wh6P2C2avqc\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Uae2MWoldTU\",\n    \"answer\": \"assemble christmas tree\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"04qggWACGWk\",\n    \"answer\": \"hair removal\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"pKOy4HJwCqo\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"ngMxE3CnGVg\",\n    \"answer\": \"making lollipops\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"N75m1Z4RqbA\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"1vTHJMMPZN0\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"aPI0nPvzJlE\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"auO4r3De6vc\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"CvbL36Y8hN0\",\n    \"answer\": \"bungee jumping\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"4j_LRkB4T6c\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"dU7jG8G5li0\",\n    \"answer\": \"make cake\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"4UdxT6Zmero\",\n    \"answer\": \"weed\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Aj5ncX5G_2w\",\n    \"answer\": \"handcraft\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"3JBUWRKezUI\",\n    \"answer\": \"clean glass\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"-pK2JheWido\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"CuLC5G7yWxA\",\n    \"answer\": \"wallpaper\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Db2Dnt2OOo0\",\n    \"answer\": \"tattoo\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Of2Umm79Kxg\",\n    \"answer\": \"loading chain\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"NjXCZYO3zwU\",\n    \"answer\": \"play magic cube\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"0lbv0AE5gJQ\",\n    \"answer\": \"wash clothes\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"LL0uQO4q_wY\",\n    \"answer\": \"push ice pot\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"cVFVREeD6hM\",\n    \"answer\": \"landscaping\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"BD9CAqD1Yf8\",\n    \"answer\": \"play volleyball\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"2nDJpvD-eZU\",\n    \"answer\": \"chipping potatoes\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Av0VsTxJd78\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"b_c17BmZCCs\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"CwImmV7q1MY\",\n    \"answer\": \"play harmonica\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"HTYzbAFUghU\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"z6pmp8TrAVo\",\n    \"answer\": \"dishwashing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"diY-XBT5cD4\",\n    \"answer\": \"wear contact lenses\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"2k-qlZxc9l4\",\n    \"answer\": \"shave legs\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"HPKHDze6XfA\",\n    \"answer\": \"taking something\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"BmL2XGNrxc4\",\n    \"answer\": \"chopping wood\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"AB5cWhlQ0Kk\",\n    \"answer\": \"decorating christmas tree\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Au4PfoK7hyw\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"BBKSKU6dGGk\",\n    \"answer\": \"snow removal\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Nb6AQxxrihA\",\n    \"answer\": \"drinking\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"v0azz4XzW_s\",\n    \"answer\": \"play weeding machine\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"Yg03CCu9GMo\",\n    \"answer\": \"wine dressing\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"chmegNbBTNc\",\n    \"answer\": \"clean desk\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"eKdtOKqLMRE\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"nbOsU2Vmp1U\",\n    \"answer\": \"make drink\"\n  },\n  {\n    \"question\": \"what is the person in the video doing\",\n    \"video_name\": \"a4gI4LC1rJk\",\n    \"answer\": \"peeling sweet potatoes\"\n  },\n  {\n    \"question\": \"what does the person in white clothes doing at the beginning of the video\",\n    \"video_name\": \"gsQ-OEvrxjo\",\n    \"answer\": \"licensing\"\n  },\n  {\n    \"question\": \"what does the person in black tshirt  doing at the beginning of the video\",\n    \"video_name\": \"R74yolowFPs\",\n    \"answer\": \"play game\"\n  },\n  {\n    \"question\": \"what is the person in a black and white shirt doing\",\n    \"video_name\": \"r2H-cnti8GI\",\n    \"answer\": \"play magic cube\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"G4-qjGC_3VA\",\n    \"answer\": \"pole vault\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"5k2Ot6-wOgc\",\n    \"answer\": \"bowling\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"lPw_BRbPw5s\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"mUmSJps9WJI\",\n    \"answer\": \"decorating christmas tree\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"pmmQuksmTvw\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"k--dW53UQWs\",\n    \"answer\": \"bodybuilding\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"PkRvgIFREJU\",\n    \"answer\": \"skip lattices\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"Ynvd8OuXKGw\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"eQ0sW4hJ9zU\",\n    \"answer\": \"introduction of lawn mower\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"3nSOFmmA7FU\",\n    \"answer\": \"hula hoop\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"mV07bEBkIcM\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"3PsxzgeMv5w\",\n    \"answer\": \"bowling\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"otMw5GJWYWs\",\n    \"answer\": \"play bounce shoes\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"ojTFTIwsa_c\",\n    \"answer\": \"car wash\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"Son8UiVlzu0\",\n    \"answer\": \"yoga teaching\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"RLBfyIVpocE\",\n    \"answer\": \"throwing discus\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"Z6b4oFjIznU\",\n    \"answer\": \"balance beam\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"NvRH4SoF09c\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"SidTquTAtyk\",\n    \"answer\": \"fly kite\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"nhQTxZlzG1Q\",\n    \"answer\": \"play game\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"4_jDgRsOGvY\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"P6Oq6C9X0fw\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"Ye_uVlSo1HI\",\n    \"answer\": \"leaping\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"YVqRQDkdA8U\",\n    \"answer\": \"play bounce shoes\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"mek9Zodu8LM\",\n    \"answer\": \"finger guessing game\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"wdvQC41PGPk\",\n    \"answer\": \"blow sax\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"aGvpDyMNATI\",\n    \"answer\": \"javelin throw\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"z8x3wUZYOaM\",\n    \"answer\": \"comb ones hair\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"A0b_pqaKCX8\",\n    \"answer\": \"make face\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"xfV4V_AOVSM\",\n    \"answer\": \"weave hair\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"g1na24Bd5Rs\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"xND_kp-aYXw\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"X6CBZwwRdQQ\",\n    \"answer\": \"sunscreen\"\n  },\n  {\n    \"question\": \"what is the person in black doing\",\n    \"video_name\": \"T62XjoKbN8M\",\n    \"answer\": \"push ice pot\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"yRQpolWhJ6A\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"ys4_S3JHQjs\",\n    \"answer\": \"rowing\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"oMtB-y49Yo8\",\n    \"answer\": \"make cake\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"96vBhCFBbQk\",\n    \"answer\": \"play magic cube\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"zxpQHLwZCug\",\n    \"answer\": \"chopping wood\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"XI7qJHE61zo\",\n    \"answer\": \"trailing ground\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"LsVCwr6qPmY\",\n    \"answer\": \"iron clothes\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"MVA568rRjzQ\",\n    \"answer\": \"play tennis\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"pVoM_kUQ4_E\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"FWZ6wgaJ_L4\",\n    \"answer\": \"chipping\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"1px5LTVIR3A\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"rrpEOrMpBuE\",\n    \"answer\": \"ride camel\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"62M1FRXsUiM\",\n    \"answer\": \"play harmonica\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"P8S8PIyPXxY\",\n    \"answer\": \"demonstrating\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"16czjUF1AA4\",\n    \"answer\": \"pole vault\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"nciIPwJTok8\",\n    \"answer\": \"car wash\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"DUi-hLMpQQo\",\n    \"answer\": \"riding\"\n  },\n  {\n    \"question\": \"what is the person in green clothes doing\",\n    \"video_name\": \"i6wR9_tkg6A\",\n    \"answer\": \"make light\"\n  },\n  {\n    \"question\": \"what is the person in purple clothes doing\",\n    \"video_name\": \"0w4OkBenR_k\",\n    \"answer\": \"paint fence\"\n  },\n  {\n    \"question\": \"what is the person in purple clothes doing\",\n    \"video_name\": \"pPt_fygNjtQ\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"what is the person in purple clothes doing\",\n    \"video_name\": \"meNgZdu8tIk\",\n    \"answer\": \"making sandwiches\"\n  },\n  {\n    \"question\": \"what is the person in purple clothes doing\",\n    \"video_name\": \"OccEAILrU7M\",\n    \"answer\": \"discus throwing\"\n  },\n  {\n    \"question\": \"what is the person in purple clothes doing\",\n    \"video_name\": \"paRAKx8svJ8\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is the person in purple clothes doing\",\n    \"video_name\": \"nGKc2t-NMYc\",\n    \"answer\": \"gymnastics on horizontal bar\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"mSR-HpiJ0No\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"390iVq_urQM\",\n    \"answer\": \"water gliding\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"nkWMBJC2Qec\",\n    \"answer\": \"play table tennis\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"VJh9W3Gcpmo\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"GjcRJzPjbRI\",\n    \"answer\": \"shot put\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"x6pYeqq3O08\",\n    \"answer\": \"kicking sand\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"oKJ1BnvHbbA\",\n    \"answer\": \"javelin throw\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"an1R4BP97JY\",\n    \"answer\": \"fertilizer application\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing in the video\",\n    \"video_name\": \"I16FTpQQiic\",\n    \"answer\": \"strap rope skipping\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing in the video\",\n    \"video_name\": \"I1iUbyjWy7k\",\n    \"answer\": \"play baseball\"\n  },\n  {\n    \"question\": \"what is the person in red coat doing\",\n    \"video_name\": \"Z-zG845frso\",\n    \"answer\": \"play volleyball\"\n  },\n  {\n    \"question\": \"what is the person in red coat doing\",\n    \"video_name\": \"zpaS2iYrJjk\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"A9VCuZ53ObQ\",\n    \"answer\": \"sit on ground\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"xizEiQZfJa4\",\n    \"answer\": \"play ball\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"nnEPsdA0080\",\n    \"answer\": \"be pulled forward\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"ghHZ9M-jx0w\",\n    \"answer\": \"play volleyball\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"RgiVa9GMYxE\",\n    \"answer\": \"shave\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"X52XHYKeLiE\",\n    \"answer\": \"riding\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"nYl_tYmijlM\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"P5D9S9NzQ28\",\n    \"answer\": \"teaching\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"kYkvyRKxwfY\",\n    \"answer\": \"play table tennis\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"MonWdYi3a0I\",\n    \"answer\": \"play computer games\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"30hcRe-5_3M\",\n    \"answer\": \"play football\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"2UhbDOd43zU\",\n    \"answer\": \"teaching martial arts\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"rWfQj0X8WU4\",\n    \"answer\": \"play jumper\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"Oh3-DvDCpZ4\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"pop8YCGQpWk\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"YMOYyt3kSOs\",\n    \"answer\": \"shot put\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"lUmjnFf7IPQ\",\n    \"answer\": \"help to cut hair\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"X2toGKgWMpE\",\n    \"answer\": \"table tennis\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"AjizhJc_reI\",\n    \"answer\": \"play bumper car\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"afMQA352X_A\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"836UrVGw6GI\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"y0ca-LbQErY\",\n    \"answer\": \"bike ride\"\n  },\n  {\n    \"question\": \"what is the person in black clothes doing in the video\",\n    \"video_name\": \"V90CMuokf0c\",\n    \"answer\": \"paddle\"\n  },\n  {\n    \"question\": \"what is the person in black clothes doing in the video\",\n    \"video_name\": \"cnMvMvVBXiI\",\n    \"answer\": \"tire repair\"\n  },\n  {\n    \"question\": \"what is the person in black hat doing\",\n    \"video_name\": \"aH39BSM0-Ag\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what is the person in black shorts doing\",\n    \"video_name\": \"NNiJfr_ChH4\",\n    \"answer\": \"long jump\"\n  },\n  {\n    \"question\": \"what is the person in black shorts doing\",\n    \"video_name\": \"qgUHRwC3194\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what is the person in black tshirt doing\",\n    \"video_name\": \"QXN6odBnVmI\",\n    \"answer\": \"shine shoes\"\n  },\n  {\n    \"question\": \"what is the person in black tshirt doing\",\n    \"video_name\": \"GSrBZXLSwWI\",\n    \"answer\": \"make cake\"\n  },\n  {\n    \"question\": \"what is the person in black tshirt doing\",\n    \"video_name\": \"Znb6Y9m_PsQ\",\n    \"answer\": \"play football on table\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing in the video\",\n    \"video_name\": \"TXSOSSGJYO0\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing in the video\",\n    \"video_name\": \"TGffgRXc1eQ\",\n    \"answer\": \"broadcast news\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing in the video\",\n    \"video_name\": \"uJ4OZfCjViM\",\n    \"answer\": \"scavenging leaves\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing in the video\",\n    \"video_name\": \"vQ82ItCG1x4\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"what is the person in blue shoes doing\",\n    \"video_name\": \"Em4ekFj4XIs\",\n    \"answer\": \"training dog\"\n  },\n  {\n    \"question\": \"what is the person in blue shorts doing\",\n    \"video_name\": \"UNXLfqkwKFc\",\n    \"answer\": \"use of vacuum cleaner\"\n  },\n  {\n    \"question\": \"what is the person in dark blue clothes doing\",\n    \"video_name\": \"G_rVqf_hwXw\",\n    \"answer\": \"wrist wrestling\"\n  },\n  {\n    \"question\": \"what is the person in green coat doing\",\n    \"video_name\": \"zKYiTA6WBS4\",\n    \"answer\": \"blow ones hair\"\n  },\n  {\n    \"question\": \"what is the person in green coat doing\",\n    \"video_name\": \"ZJnXQw84xvo\",\n    \"answer\": \"play with sand\"\n  },\n  {\n    \"question\": \"what is the person in green clothes doing\",\n    \"video_name\": \"Y_nyVFn70Lk\",\n    \"answer\": \"dishwashing\"\n  },\n  {\n    \"question\": \"what is the person in green clothes doing\",\n    \"video_name\": \"9UvVeUYQLgA\",\n    \"answer\": \"field shooting\"\n  },\n  {\n    \"question\": \"what is the person in green clothes doing\",\n    \"video_name\": \"mMm1LfVb8Pg\",\n    \"answer\": \"weed\"\n  },\n  {\n    \"question\": \"what is the person in green clothes doing\",\n    \"video_name\": \"d6gGZFQOxOg\",\n    \"answer\": \"weightlifting\"\n  },\n  {\n    \"question\": \"what is the person in green clothes doing\",\n    \"video_name\": \"gZB_XrTnDCI\",\n    \"answer\": \"ride on bicycle\"\n  },\n  {\n    \"question\": \"what is the person in green clothes doing\",\n    \"video_name\": \"prBiREYQ2vQ\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is the person in green clothes doing in the video\",\n    \"video_name\": \"-vY2uUmv6Dk\",\n    \"answer\": \"rock climbing\"\n  },\n  {\n    \"question\": \"what is the person in green clothes doing in the video\",\n    \"video_name\": \"ufrTSC3Dewg\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the person in green clothes doing in the video\",\n    \"video_name\": \"uLsq6gQXQPM\",\n    \"answer\": \"play slide\"\n  },\n  {\n    \"question\": \"what is the person in gray clothes doing in the video\",\n    \"video_name\": \"WGUzmra3h_w\",\n    \"answer\": \"high jump\"\n  },\n  {\n    \"question\": \"what is the person in gray clothes doing in the video\",\n    \"video_name\": \"brJIpRGcBFU\",\n    \"answer\": \"drive car\"\n  },\n  {\n    \"question\": \"what is the person in gray clothes doing in the video\",\n    \"video_name\": \"MDsJa6Yitwc\",\n    \"answer\": \"brush wall\"\n  },\n  {\n    \"question\": \"what is the person in orange coat doing in the video\",\n    \"video_name\": \"uIHWHnItois\",\n    \"answer\": \"skateboarding\"\n  },\n  {\n    \"question\": \"what is the person in pink clothes doing\",\n    \"video_name\": \"qGLRri_c6n8\",\n    \"answer\": \"slippery pulley\"\n  },\n  {\n    \"question\": \"what is the person in pink clothes doing in the video\",\n    \"video_name\": \"OysON6LbF6Y\",\n    \"answer\": \"playing harmonica\"\n  },\n  {\n    \"question\": \"what is the person in purple coat doing\",\n    \"video_name\": \"gOnp3DZxeKU\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"xS4twW2gXqc\",\n    \"answer\": \"high jump\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"PFeerDZbGn8\",\n    \"answer\": \"training dog\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"75Tc1nPmZFQ\",\n    \"answer\": \"play beach volleyball\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"T3A88zsRuVs\",\n    \"answer\": \"explain ice hockey\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"z6l9utYlIrw\",\n    \"answer\": \"pray\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"XxW4XWySzOw\",\n    \"answer\": \"rowing\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"XCfrjEJkl3M\",\n    \"answer\": \"play basketball\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"gr53ih2aFkE\",\n    \"answer\": \"tug of war\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"AjqnGUbsduw\",\n    \"answer\": \"wrist wrestling\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"GOhmWfR8QBM\",\n    \"answer\": \"dismantling gifts\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"OQEKZXv6jSw\",\n    \"answer\": \"long jump\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"Pr5K2Jh2X94\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"YHqFNnhaFAY\",\n    \"answer\": \"skateboarding\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing in the video\",\n    \"video_name\": \"TtewPltwuXw\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing in the video\",\n    \"video_name\": \"tRFK1BMKaRo\",\n    \"answer\": \"weightlifting\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing in the video\",\n    \"video_name\": \"p1QGn0IzfW0\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing in the video\",\n    \"video_name\": \"VZ5R9goklpo\",\n    \"answer\": \"play game\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing in the video\",\n    \"video_name\": \"hxErUs42bBI\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the person in red pants doing in the video\",\n    \"video_name\": \"i8hNrK3r_MY\",\n    \"answer\": \"assemble bicycle\"\n  },\n  {\n    \"question\": \"what is the person in red pants doing in the video\",\n    \"video_name\": \"Co_cpZWbzFk\",\n    \"answer\": \"football match\"\n  },\n  {\n    \"question\": \"what is the person in red shorts doing\",\n    \"video_name\": \"ZnKB0U96ZI4\",\n    \"answer\": \"play tennis\"\n  },\n  {\n    \"question\": \"what is the person in black tshirt doing in the video\",\n    \"video_name\": \"CDecXoRSpIc\",\n    \"answer\": \"tire repair\"\n  },\n  {\n    \"question\": \"what is the person in a tshirt doing\",\n    \"video_name\": \"_2txWbQfJrY\",\n    \"answer\": \"laying tile\"\n  },\n  {\n    \"question\": \"what is the person in sunglasses doing\",\n    \"video_name\": \"cTxVTEzQDr8\",\n    \"answer\": \"skateboarding\"\n  },\n  {\n    \"question\": \"what is the person in sunglasses doing in the video\",\n    \"video_name\": \"b6QSzGwI9m4\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is the person in white clothes doing\",\n    \"video_name\": \"vzUeFzhVYLg\",\n    \"answer\": \"play with smarthphone\"\n  },\n  {\n    \"question\": \"what is the person in white clothes doing\",\n    \"video_name\": \"WPYQ27GjFKc\",\n    \"answer\": \"licensing\"\n  },\n  {\n    \"question\": \"what is the person in white clothes doing\",\n    \"video_name\": \"0q9yZPTBbus\",\n    \"answer\": \"hair care\"\n  },\n  {\n    \"question\": \"what is the person in white clothes doing\",\n    \"video_name\": \"W2Mh01F3K5c\",\n    \"answer\": \"spruce up\"\n  },\n  {\n    \"question\": \"what is the person in white clothes doing\",\n    \"video_name\": \"0e7d39SwHCA\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what is the person in white clothes doing\",\n    \"video_name\": \"C5SXR9nMY3I\",\n    \"answer\": \"gift of gift\"\n  },\n  {\n    \"question\": \"what is the person in white clothes doing\",\n    \"video_name\": \"hyMqGr0mOfA\",\n    \"answer\": \"throwing darts\"\n  },\n  {\n    \"question\": \"what is the person in white pants doing\",\n    \"video_name\": \"A8RQcVFtovg\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what is the person in white tshirt doing\",\n    \"video_name\": \"gkwLhml3mnA\",\n    \"answer\": \"play tai chi\"\n  },\n  {\n    \"question\": \"what is the person in white tshirt doing\",\n    \"video_name\": \"ZLG1Exv8HrY\",\n    \"answer\": \"play parallel bars\"\n  },\n  {\n    \"question\": \"what is the person in yellow clothes doing\",\n    \"video_name\": \"OFTkwnSh-sQ\",\n    \"answer\": \"long jump\"\n  },\n  {\n    \"question\": \"what is the person in yellow clothes doing\",\n    \"video_name\": \"1PNjVTM0Zto\",\n    \"answer\": \"play tai chi\"\n  },\n  {\n    \"question\": \"what is the person in yellow clothes doing\",\n    \"video_name\": \"zYjLA99koBk\",\n    \"answer\": \"rowing\"\n  },\n  {\n    \"question\": \"what is the person in yellow clothes doing in the video\",\n    \"video_name\": \"QIUxLD27NuI\",\n    \"answer\": \"turn magic cube\"\n  },\n  {\n    \"question\": \"what is the person in yellow clothes doing in the video\",\n    \"video_name\": \"hRsn4nesCQo\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is the person in yellow clothes doing in the video\",\n    \"video_name\": \"i5qTK0mInTc\",\n    \"answer\": \"watch tv\"\n  },\n  {\n    \"question\": \"what kind of animal is in the video\",\n    \"video_name\": \"a2IvS0xbNGQ\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what kind of animal is in the video\",\n    \"video_name\": \"Oyycph_Ukfg\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what kind of animal is in the video\",\n    \"video_name\": \"Z2gpcqXWNek\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what kind of animal is in the video\",\n    \"video_name\": \"ZAX6OojMg38\",\n    \"answer\": \"dog and cat\"\n  },\n  {\n    \"question\": \"what is the animal in the video\",\n    \"video_name\": \"Znb6Y9m_PsQ\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"FkbpD1zWdPw\",\n    \"answer\": \"competition archery\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"sEcXR5b8HyY\",\n    \"answer\": \"play table tennis\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"1QIUV7WYKXg\",\n    \"answer\": \"throwing javelin\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"JR9LosQmMvg\",\n    \"answer\": \"bicycle race\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"3Nd3Aai1bVA\",\n    \"answer\": \"bicycle race\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"M2Y2Cw2kwDo\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"s6fEIuHPJ4Y\",\n    \"answer\": \"throw hammer\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"Jix3poZOeZA\",\n    \"answer\": \"play tennis\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"LWt2FuU0uC4\",\n    \"answer\": \"put shot\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"K7iw2_1BrIk\",\n    \"answer\": \"play football\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"St1RRi-aeNM\",\n    \"answer\": \"throwing discuses\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"tzP0lKSUv_o\",\n    \"answer\": \"weightlifting\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"snhPrCNubYA\",\n    \"answer\": \"high jump\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"JvPVYSb_5o8\",\n    \"answer\": \"weightlifting\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"LzPppxSWYNY\",\n    \"answer\": \"long jump\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"sRNqK_QZbMs\",\n    \"answer\": \"training\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"sPK-sbHIb3w\",\n    \"answer\": \"training\"\n  },\n  {\n    \"question\": \"what is the athlete doing\",\n    \"video_name\": \"svNcNLEPKMc\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what is the athlete doing in the video\",\n    \"video_name\": \"jEOtcfk220s\",\n    \"answer\": \"play volleyball\"\n  },\n  {\n    \"question\": \"what is the athlete doing in the video\",\n    \"video_name\": \"4LpqPUWHH5k\",\n    \"answer\": \"weightlifting\"\n  },\n  {\n    \"question\": \"what is the athlete doing in the video\",\n    \"video_name\": \"JH9qiuPCkY4\",\n    \"answer\": \"mountain bike ride\"\n  },\n  {\n    \"question\": \"what is the athlete doing in the video\",\n    \"video_name\": \"5UZ2ft8Y3sI\",\n    \"answer\": \"ice curling\"\n  },\n  {\n    \"question\": \"what is the athlete doing in the video\",\n    \"video_name\": \"5dN-MpXG9OE\",\n    \"answer\": \"exercise gymnastics\"\n  },\n  {\n    \"question\": \"what is the athlete doing in the video\",\n    \"video_name\": \"jibbgUBuuSA\",\n    \"answer\": \"high jump\"\n  },\n  {\n    \"question\": \"what is the athlete doing on the water\",\n    \"video_name\": \"rMj2JWNJzkw\",\n    \"answer\": \"water polo\"\n  },\n  {\n    \"question\": \"what is the athlete in green clothes doing\",\n    \"video_name\": \"lOZ9bfzq89o\",\n    \"answer\": \"turn somersault\"\n  },\n  {\n    \"question\": \"what is the athlete in white clothes doing in the video\",\n    \"video_name\": \"u0Dc0ZtudXY\",\n    \"answer\": \"gymnastics\"\n  },\n  {\n    \"question\": \"what is the athlete in white clothes doing in the video\",\n    \"video_name\": \"WdtytUagoJs\",\n    \"answer\": \"javelin throw\"\n  },\n  {\n    \"question\": \"what is the bald person doing in the video\",\n    \"video_name\": \"3Rzyta8op6s\",\n    \"answer\": \"throw ball\"\n  },\n  {\n    \"question\": \"what is the bald person doing\",\n    \"video_name\": \"SPjv6P5fxug\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are the benefits of the activity\",\n    \"video_name\": \"W2eumNilwuI\",\n    \"answer\": \"enhanced collaboration\"\n  },\n  {\n    \"question\": \"what is the boy in blue clothes doing\",\n    \"video_name\": \"vBaiedxy1Uw\",\n    \"answer\": \"finger guessing game\"\n  },\n  {\n    \"question\": \"what is the boy doing in the video\",\n    \"video_name\": \"WINtiw-_3vg\",\n    \"answer\": \"blow sax\"\n  },\n  {\n    \"question\": \"what is the color of the pants of the person in blue clothes\",\n    \"video_name\": \"T62XjoKbN8M\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the pants of the person in blue clothes\",\n    \"video_name\": \"kBTqTp0SKq8\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the pants of the person in green clothes\",\n    \"video_name\": \"meNgZdu8tIk\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what are the competitors doing\",\n    \"video_name\": \"2CegApogJd4\",\n    \"answer\": \"dodgeball\"\n  },\n  {\n    \"question\": \"what is the girl doing\",\n    \"video_name\": \"EBw5-KVV_PU\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the girl in the video doing\",\n    \"video_name\": \"5mWZY2XkWSQ\",\n    \"answer\": \"eat ice cream\"\n  },\n  {\n    \"question\": \"what is the girl in the video doing\",\n    \"video_name\": \"_G4EVIG9YaE\",\n    \"answer\": \"haystack\"\n  },\n  {\n    \"question\": \"what is the girl in black doing\",\n    \"video_name\": \"9eniCub7u60\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the girl with blonde hair doing\",\n    \"video_name\": \"9snScUyE8_4\",\n    \"answer\": \"dishware\"\n  },\n  {\n    \"question\": \"what is the kid doing in the video\",\n    \"video_name\": \"dZsk5Dp_5FE\",\n    \"answer\": \"kindling wood\"\n  },\n  {\n    \"question\": \"what is the woman in jeans doing\",\n    \"video_name\": \"F9FPK6mfh88\",\n    \"answer\": \"shoe polish\"\n  },\n  {\n    \"question\": \"what is the woman with long hair doing\",\n    \"video_name\": \"8kaQq1mR2ys\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what is the woman with long hair doing\",\n    \"video_name\": \"7dXqXFoju2M\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is the woman with long hair doing\",\n    \"video_name\": \"UNKf15ALDh8\",\n    \"answer\": \"tree planting\"\n  },\n  {\n    \"question\": \"what is the woman with long hair doing\",\n    \"video_name\": \"7LbBmVX33I4\",\n    \"answer\": \"curly\"\n  },\n  {\n    \"question\": \"what is the man in video doing\",\n    \"video_name\": \"0XTAq_xvquw\",\n    \"answer\": \"make skis\"\n  },\n  {\n    \"question\": \"what is the man in video doing\",\n    \"video_name\": \"CFbkVO5b2g0\",\n    \"answer\": \"play violin\"\n  },\n  {\n    \"question\": \"what is the man in video doing\",\n    \"video_name\": \"5oyenoaVB-w\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is the man in video doing\",\n    \"video_name\": \"0xBP-TSsqb0\",\n    \"answer\": \"grooming\"\n  },\n  {\n    \"question\": \"what is the man in video doing\",\n    \"video_name\": \"jbCQY7V7O1s\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what is the man in video doing\",\n    \"video_name\": \"HX6BeHLQh5s\",\n    \"answer\": \"shoes polish\"\n  },\n  {\n    \"question\": \"what is the man in black doing\",\n    \"video_name\": \"fQ1OuD7x3to\",\n    \"answer\": \"wipe glass\"\n  },\n  {\n    \"question\": \"what is the person with hat doing\",\n    \"video_name\": \"_V62aT_K8Zw\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is the person with hat doing\",\n    \"video_name\": \"1lwG-y_QCkc\",\n    \"answer\": \"weed\"\n  },\n  {\n    \"question\": \"what is the person with hat doing\",\n    \"video_name\": \"5c5PFa8GR-A\",\n    \"answer\": \"cut persons head\"\n  },\n  {\n    \"question\": \"what is the person with hat doing\",\n    \"video_name\": \"Npj77L31bhw\",\n    \"answer\": \"tattoo\"\n  },\n  {\n    \"question\": \"what is the person with hat doing\",\n    \"video_name\": \"JbW8efAOOt0\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the person with hat doing\",\n    \"video_name\": \"IYLJU87AkOg\",\n    \"answer\": \"throwing darts\"\n  },\n  {\n    \"question\": \"what is the person appears at the beginning of the video doing \",\n    \"video_name\": \"4LF0hL-mgks\",\n    \"answer\": \"dishwashing\"\n  },\n  {\n    \"question\": \"what is the person with a red hat doing in the video\",\n    \"video_name\": \"VpZzLvzU7_k\",\n    \"answer\": \"by cable car\"\n  },\n  {\n    \"question\": \"what is the person in black pants doing\",\n    \"video_name\": \"JB-ynj70saA\",\n    \"answer\": \"wire walking\"\n  },\n  {\n    \"question\": \"what is the person in black pants doing\",\n    \"video_name\": \"OcL7ZhBCkxQ\",\n    \"answer\": \"skateboarding\"\n  },\n  {\n    \"question\": \"what is the person in black pants doing\",\n    \"video_name\": \"RlRrktN5iH4\",\n    \"answer\": \"do yoga\"\n  },\n  {\n    \"question\": \"what is the person in gray clothes doing\",\n    \"video_name\": \"LYTWYSqsTCE\",\n    \"answer\": \"masonry wall\"\n  },\n  {\n    \"question\": \"what is the person in gray clothes doing\",\n    \"video_name\": \"xMNmGr96O9U\",\n    \"answer\": \"bowling\"\n  },\n  {\n    \"question\": \"what is the person in gray clothes doing\",\n    \"video_name\": \"mkGUacg0GRc\",\n    \"answer\": \"play bumper car\"\n  },\n  {\n    \"question\": \"what is the person in gray clothes doing\",\n    \"video_name\": \"1xtKGlUp4Vg\",\n    \"answer\": \"clean dog\"\n  },\n  {\n    \"question\": \"what is the person in gray clothes doing\",\n    \"video_name\": \"pVuuVHA3RVw\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what is the person in gray clothes doing\",\n    \"video_name\": \"nvcMYiZhUuo\",\n    \"answer\": \"push car\"\n  },\n  {\n    \"question\": \"what is the person in orange clothes doing\",\n    \"video_name\": \"a2IvS0xbNGQ\",\n    \"answer\": \"play bounce shoes\"\n  },\n  {\n    \"question\": \"what is the person in orange clothes doing\",\n    \"video_name\": \"mixxaL3Bdv8\",\n    \"answer\": \"play jumper\"\n  },\n  {\n    \"question\": \"what is the person in orange pants doing\",\n    \"video_name\": \"vnZmsOgWs0o\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the person in red pants doing\",\n    \"video_name\": \"KZ1NEffR2Qg\",\n    \"answer\": \"rope skipping\"\n  },\n  {\n    \"question\": \"what is the person in red pants doing\",\n    \"video_name\": \"vFO70WwrQgE\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the person in black clothes doing\",\n    \"video_name\": \"_kmjpSZb3OI\",\n    \"answer\": \"brush wall\"\n  },\n  {\n    \"question\": \"what is the person in black clothes doing\",\n    \"video_name\": \"40BPDWojssc\",\n    \"answer\": \"leather shoes\"\n  },\n  {\n    \"question\": \"what is the person in black clothes doing\",\n    \"video_name\": \"vHnZ3NrZER0\",\n    \"answer\": \"measurement length\"\n  },\n  {\n    \"question\": \"what is the person in black clothes doing\",\n    \"video_name\": \"_jV5sAOOHLk\",\n    \"answer\": \"car repair tires\"\n  },\n  {\n    \"question\": \"what is the person in black clothes doing\",\n    \"video_name\": \"12Nafz_Yet4\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"what is the person in black clothes doing\",\n    \"video_name\": \"87F9xGaMwCw\",\n    \"answer\": \"bodybuilding\"\n  },\n  {\n    \"question\": \"what is the person in black coat doing\",\n    \"video_name\": \"ZLJ2BmBkLJg\",\n    \"answer\": \"shave\"\n  },\n  {\n    \"question\": \"what is the person in black coat doing\",\n    \"video_name\": \"QImpWj3AJcY\",\n    \"answer\": \"play game\"\n  },\n  {\n    \"question\": \"what is the person in black coat doing\",\n    \"video_name\": \"QdmcjM2fluo\",\n    \"answer\": \"pruning trees\"\n  },\n  {\n    \"question\": \"what is the person in black coat doing\",\n    \"video_name\": \"zTHkqpNFGno\",\n    \"answer\": \"comb ones hair\"\n  },\n  {\n    \"question\": \"what is the person in black coat doing\",\n    \"video_name\": \"zO5JMTzLDHw\",\n    \"answer\": \"tread on stilts\"\n  },\n  {\n    \"question\": \"what is the person in black swimsuit doing\",\n    \"video_name\": \"F-Z17rHI_ms\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what is the person in blue apron doing\",\n    \"video_name\": \"g9lNpSAtHgI\",\n    \"answer\": \"paint chair\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"26U3SkeZU6M\",\n    \"answer\": \"rope skipping\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"mXqmRAUsn9U\",\n    \"answer\": \"skateboarding\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"YvPoAOrjX5I\",\n    \"answer\": \"play tennis\"\n  },\n  {\n    \"question\": \"what is the person in blue clothes doing\",\n    \"video_name\": \"tgPD2SZo_DY\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what is the person in blue coat doing\",\n    \"video_name\": \"qiupddjDHDg\",\n    \"answer\": \"tilling\"\n  },\n  {\n    \"question\": \"what is the person in blue coat doing\",\n    \"video_name\": \"rCLGy2NA0aE\",\n    \"answer\": \"eat ice cream\"\n  },\n  {\n    \"question\": \"what is the person in blue coat doing\",\n    \"video_name\": \"qiTQ02NDSlQ\",\n    \"answer\": \"make sandwich\"\n  },\n  {\n    \"question\": \"what is the person in blue coat doing\",\n    \"video_name\": \"oGU7m7rCZ-Y\",\n    \"answer\": \"blow sax\"\n  },\n  {\n    \"question\": \"what is the person with blue hat doing\",\n    \"video_name\": \"teffBaLEZQg\",\n    \"answer\": \"dance hip hop\"\n  },\n  {\n    \"question\": \"what is the person in the plaid shirt doing\",\n    \"video_name\": \"Q5HdVXF390c\",\n    \"answer\": \"drink beer\"\n  },\n  {\n    \"question\": \"what is the person in the diving suit doing\",\n    \"video_name\": \"2DCHbuwZNSs\",\n    \"answer\": \"dive to feed fish\"\n  },\n  {\n    \"question\": \"what is the person in the game doing\",\n    \"video_name\": \"SJ7jk5XAjng\",\n    \"answer\": \"wrist wrestling\"\n  },\n  {\n    \"question\": \"what is the person in green clothes doing\",\n    \"video_name\": \"zPQodcasmSA\",\n    \"answer\": \"windsurfing\"\n  },\n  {\n    \"question\": \"what is the person in gray vest doing\",\n    \"video_name\": \"3kxP8qOtym8\",\n    \"answer\": \"boxing practice\"\n  },\n  {\n    \"question\": \"what is the person in the plaid shirt doing\",\n    \"video_name\": \"rnI9vGr5V1k\",\n    \"answer\": \"sharpening\"\n  },\n  {\n    \"question\": \"what is the person in the plaid shirt doing\",\n    \"video_name\": \"1IbkFHNA7fg\",\n    \"answer\": \"haircut\"\n  },\n  {\n    \"question\": \"what is the person in red clothes doing\",\n    \"video_name\": \"ldAHwbF8uWI\",\n    \"answer\": \"wrist wrestling\"\n  },\n  {\n    \"question\": \"what is the person in striped clothes doing\",\n    \"video_name\": \"03c6QhTMDSs\",\n    \"answer\": \"ride bicycle\"\n  },\n  {\n    \"question\": \"what is the person in striped shirt doing\",\n    \"video_name\": \"pYaZLHpl_Ww\",\n    \"answer\": \"do shape packing\"\n  },\n  {\n    \"question\": \"what is the person in striped shirt doing\",\n    \"video_name\": \"ZxCdhz4ep0s\",\n    \"answer\": \"play piano\"\n  },\n  {\n    \"question\": \"what is the person in suit doing\",\n    \"video_name\": \"Y7aacWy3WDo\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is the person in swim suit doing\",\n    \"video_name\": \"lUil9HfTzJ0\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"NDq29HQJVP0\",\n    \"answer\": \"play hockey\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"1494UwmvAJM\",\n    \"answer\": \"eat something\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"8lMncYsbrWw\",\n    \"answer\": \"iron clothes\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"_jIXs7AFTxw\",\n    \"answer\": \"rubbing feet\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"Vhn4SuPhu-0\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"NZskwwovSZI\",\n    \"answer\": \"play with phone\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"0jdSl5-lMpY\",\n    \"answer\": \"light roof\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"mnNgZ-D5cKc\",\n    \"answer\": \"ride bike\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"_QBTD1bLSI0\",\n    \"answer\": \"wash hands\"\n  },\n  {\n    \"question\": \"what is the person in white doing\",\n    \"video_name\": \"X_K7Aa3Aa-E\",\n    \"answer\": \"play guitar\"\n  },\n  {\n    \"question\": \"what is the person in white shirt doing\",\n    \"video_name\": \"ZlVydB9uUe4\",\n    \"answer\": \"pruning trees\"\n  },\n  {\n    \"question\": \"what is the person in white shirt doing\",\n    \"video_name\": \"QJ5xv6oj1sk\",\n    \"answer\": \"play tai chi\"\n  },\n  {\n    \"question\": \"what is the person in white uniform doing\",\n    \"video_name\": \"ZBP_mLWROZU\",\n    \"answer\": \"weave hair\"\n  },\n  {\n    \"question\": \"what is the person in yellow clothes doing\",\n    \"video_name\": \"mxn6WcmdNpA\",\n    \"answer\": \"shoe rope\"\n  },\n  {\n    \"question\": \"what is the person in yellow clothes doing\",\n    \"video_name\": \"98ukqD62X5s\",\n    \"answer\": \"throw spear\"\n  },\n  {\n    \"question\": \"what is the person in yellow clothes doing\",\n    \"video_name\": \"Nc9yr4urskA\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is the person on the field doing\",\n    \"video_name\": \"JGPhQX97OSE\",\n    \"answer\": \"play music\"\n  },\n  {\n    \"question\": \"what is the person on the field doing\",\n    \"video_name\": \"pMtu7fOHdII\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is the person on the platform doing\",\n    \"video_name\": \"f2DS_AVorrY\",\n    \"answer\": \"prepare for dive\"\n  },\n  {\n    \"question\": \"what is the person on the stage doing\",\n    \"video_name\": \"ds3mAmUPxYA\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what is the person on the stage doing in the video\",\n    \"video_name\": \"BkDbDnvoL28\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is the person on the stage doing in the video\",\n    \"video_name\": \"BhgcXqWQhkQ\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is the person on the stage doing in the video\",\n    \"video_name\": \"P2xT7dlyX8Y\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are the people on the court doing\",\n    \"video_name\": \"BdRH3lpopLQ\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is the person in gray tshirt doing\",\n    \"video_name\": \"pzTqZWPubk8\",\n    \"answer\": \"brush ones teeth\"\n  },\n  {\n    \"question\": \"what is the person in helmet doing\",\n    \"video_name\": \"iZT4XgzUHm4\",\n    \"answer\": \"ride on bicycle\"\n  },\n  {\n    \"question\": \"what is the person in plaid shirt doing in the video\",\n    \"video_name\": \"Bgi2Y85Mbwk\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is the person in white shirt doing in the video\",\n    \"video_name\": \"C7yd6yEkxXE\",\n    \"answer\": \"ride bike\"\n  },\n  {\n    \"question\": \"what is the person with blond hair doing\",\n    \"video_name\": \"LjPKKqe-VO0\",\n    \"answer\": \"exercise gymnastics\"\n  },\n  {\n    \"question\": \"what is the person with goggles doing\",\n    \"video_name\": \"K49OCArHjXI\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what is the person with blond hair doing\",\n    \"video_name\": \"45hcc_VI4t4\",\n    \"answer\": \"tread\"\n  },\n  {\n    \"question\": \"what is the person with blond hair doing\",\n    \"video_name\": \"bRgvAHL3dJk\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is the player doing\",\n    \"video_name\": \"0Um-HgjcnXY\",\n    \"answer\": \"bicycle race\"\n  },\n  {\n    \"question\": \"what is the player doing\",\n    \"video_name\": \"SjlILJ2st-I\",\n    \"answer\": \"bicycle race\"\n  },\n  {\n    \"question\": \"what is the player doing\",\n    \"video_name\": \"2uUNiV8xmEo\",\n    \"answer\": \"hockey game\"\n  },\n  {\n    \"question\": \"what is the athlete doing with the pole\",\n    \"video_name\": \"rsU73H6VyG8\",\n    \"answer\": \"high jump\"\n  },\n  {\n    \"question\": \"what is on the athlete's head\",\n    \"video_name\": \"rMj2JWNJzkw\",\n    \"answer\": \"helmet\"\n  },\n  {\n    \"question\": \"what is on the athlete's head\",\n    \"video_name\": \"Jix3poZOeZA\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what is the second appeared person in the video doing\",\n    \"video_name\": \"3oy4P1gyU4k\",\n    \"answer\": \"play billiards\"\n  },\n  {\n    \"question\": \"what is the man with short hair in video doing\",\n    \"video_name\": \"BWAedc31WdY\",\n    \"answer\": \"shave\"\n  },\n  {\n    \"question\": \"what is the man with short hair in video doing\",\n    \"video_name\": \"6VXQoPNphgI\",\n    \"answer\": \"gymnastics\"\n  },\n  {\n    \"question\": \"what is the sitting man doing\",\n    \"video_name\": \"RtF6TGqwa7Y\",\n    \"answer\": \"knit sweater\"\n  },\n  {\n    \"question\": \"what is the standing person doing\",\n    \"video_name\": \"rSGboODhu04\",\n    \"answer\": \"make salad\"\n  },\n  {\n    \"question\": \"what is the standing person doing\",\n    \"video_name\": \"RXDVJlb97OI\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the standing person doing\",\n    \"video_name\": \"jhy6npIdn5o\",\n    \"answer\": \"decorating christmas tree\"\n  },\n  {\n    \"question\": \"what is the standing person doing\",\n    \"video_name\": \"kD_EJjQCLoY\",\n    \"answer\": \"assemble bicycle\"\n  },\n  {\n    \"question\": \"what are the two people doing in the video\",\n    \"video_name\": \"Df7AnfIEhYw\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the woman in purple doing\",\n    \"video_name\": \"8_fjIZkNHms\",\n    \"answer\": \"use stick\"\n  },\n  {\n    \"question\": \"what is the woman in purple doing\",\n    \"video_name\": \"iuc48VIWLJY\",\n    \"answer\": \"skiing leather ring\"\n  },\n  {\n    \"question\": \"what are they doing\",\n    \"video_name\": \"FmfAB-ppHBs\",\n    \"answer\": \"light cigarette\"\n  },\n  {\n    \"question\": \"what are they doing\",\n    \"video_name\": \"Flm_SCK10GQ\",\n    \"answer\": \"wrist wrestling\"\n  },\n  {\n    \"question\": \"what are they doing in the video\",\n    \"video_name\": \"_fLhtWSCaSo\",\n    \"answer\": \"tree pruning\"\n  },\n  {\n    \"question\": \"what is the guy in jeans doing\",\n    \"video_name\": \"jDlvGWOdcqU\",\n    \"answer\": \"tire change\"\n  },\n  {\n    \"question\": \"what is the woman doing in the video\",\n    \"video_name\": \"6LsvBNqJuJY\",\n    \"answer\": \"tattoo\"\n  },\n  {\n    \"question\": \"what is the woman doing in the video\",\n    \"video_name\": \"j81ndpMC9gI\",\n    \"answer\": \"cut nails for cat\"\n  },\n  {\n    \"question\": \"what is the woman doing in the video\",\n    \"video_name\": \"hIHeMA1oRrY\",\n    \"answer\": \"sunscreen\"\n  },\n  {\n    \"question\": \"what is the woman doing in the video\",\n    \"video_name\": \"cYvFlrAnlzA\",\n    \"answer\": \"table tennis\"\n  },\n  {\n    \"question\": \"what is the woman doing in the video\",\n    \"video_name\": \"F7K2oT7ADkk\",\n    \"answer\": \"wash clothes\"\n  },\n  {\n    \"question\": \"what is the woman doing in the video\",\n    \"video_name\": \"FEOdYNR4gls\",\n    \"answer\": \"performing gymnastics\"\n  },\n  {\n    \"question\": \"what is the woman doing in the video\",\n    \"video_name\": \"d4sX1jnL4BY\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what is the woman doing in the video\",\n    \"video_name\": \"-CqVpCRxwTY\",\n    \"answer\": \"play roller skating\"\n  },\n  {\n    \"question\": \"what is the woman doing in the video\",\n    \"video_name\": \"sfbgZOHLkII\",\n    \"answer\": \"ride camel\"\n  },\n  {\n    \"question\": \"what is the woman in white clothes doing\",\n    \"video_name\": \"vezvHLPR3P0\",\n    \"answer\": \"throw hammer\"\n  },\n  {\n    \"question\": \"what is the woman in white clothes doing\",\n    \"video_name\": \"8A4cZXyDrkU\",\n    \"answer\": \"wheel change\"\n  },\n  {\n    \"question\": \"what is the woman in black clothes doing\",\n    \"video_name\": \"DTI__3fkSzM\",\n    \"answer\": \"knit sweater\"\n  },\n  {\n    \"question\": \"what is the woman in red clothes doing\",\n    \"video_name\": \"_SJOVswvGRc\",\n    \"answer\": \"play football\"\n  },\n  {\n    \"question\": \"what is the woman in red clothes doing\",\n    \"video_name\": \"8IrulONeC28\",\n    \"answer\": \"play game\"\n  },\n  {\n    \"question\": \"what is the woman in red clothes doing\",\n    \"video_name\": \"uty4eGb_vvU\",\n    \"answer\": \"dance tai chi sword\"\n  },\n  {\n    \"question\": \"what is the woman in white clothes doing\",\n    \"video_name\": \"cQgP0-Id-p4\",\n    \"answer\": \"wrists\"\n  },\n  {\n    \"question\": \"what is the woman with purple hair doing\",\n    \"video_name\": \"ETbbYC0OhL0\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what is the person doing in the video\",\n    \"video_name\": \"a_EqAwUOxpM\",\n    \"answer\": \"be manicure\"\n  },\n  {\n    \"question\": \"what is the person doing in the video\",\n    \"video_name\": \"Aen-RfnlK3A\",\n    \"answer\": \"make sandwich biscuits\"\n  },\n  {\n    \"question\": \"what benefit can this exercise bring\",\n    \"video_name\": \"mZYWfmsYQPA\",\n    \"answer\": \"reaction capacity\"\n  },\n  {\n    \"question\": \"what color of the clothes does the man wear in the video\",\n    \"video_name\": \"CwImmV7q1MY\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person with hat wear\",\n    \"video_name\": \"V6Sy8zpJSuc\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color of the pants does the person in yellow clothes wear\",\n    \"video_name\": \"oKJ1BnvHbbA\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the pants does the person in white clothes wear\",\n    \"video_name\": \"YMOYyt3kSOs\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the pants does the person in white clothes wear\",\n    \"video_name\": \"y0ca-LbQErY\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color of the clothes does the athlete wear\",\n    \"video_name\": \"1QIUV7WYKXg\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color of the clothes does the athlete wear\",\n    \"video_name\": \"2-AMrzL7V-U\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color of the clothes does the man wear\",\n    \"video_name\": \"EDDbcCBnTQM\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color of the clothes does the man wear\",\n    \"video_name\": \"OysON6LbF6Y\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the clothes does the man wear in the video\",\n    \"video_name\": \"0XTAq_xvquw\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person wear in the video\",\n    \"video_name\": \"lU6DMCif3eE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person wear in the video\",\n    \"video_name\": \"mZYWfmsYQPA\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person wear in the video\",\n    \"video_name\": \"nbOsU2Vmp1U\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person wear in the video\",\n    \"video_name\": \"1PNjVTM0Zto\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person wear in the video\",\n    \"video_name\": \"nbHBjdE8oNo\",\n    \"answer\": \"black and white\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person wear in the video\",\n    \"video_name\": \"n832gDqfWl4\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person wear in the video\",\n    \"video_name\": \"d_A-ylxNbFU\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person wear in the video\",\n    \"video_name\": \"ngMxE3CnGVg\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person with blond hair wear\",\n    \"video_name\": \"45hcc_VI4t4\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color of the clothes does the cook wear\",\n    \"video_name\": \"3i3SUPsyZtA\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color of the clothes does the dancer wear\",\n    \"video_name\": \"1px5LTVIR3A\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color of the clothes does the woman wear\",\n    \"video_name\": \"FEOdYNR4gls\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person wear\",\n    \"video_name\": \"li_mry59KCM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person wear\",\n    \"video_name\": \"laU1Hvm5Dis\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person wear\",\n    \"video_name\": \"lfbspF18Wrw\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color of the clothes does the athlete wear\",\n    \"video_name\": \"FkbpD1zWdPw\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what color of the hat does the person in white clothes wear\",\n    \"video_name\": \"836UrVGw6GI\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color of the hat does the person in blue clothes wear\",\n    \"video_name\": \"mXqmRAUsn9U\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the dog\",\n    \"video_name\": \"PD-FXR7O9J0\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the dog\",\n    \"video_name\": \"uJAL31wAD2A\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the clothes that the woman is making\",\n    \"video_name\": \"DTI__3fkSzM\",\n    \"answer\": \"black and white\"\n  },\n  {\n    \"question\": \"what color is the ball\",\n    \"video_name\": \"Pjnuoa4o55c\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what color is the bowl in the video\",\n    \"video_name\": \"oMtB-y49Yo8\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the bowl in the video\",\n    \"video_name\": \"a4gI4LC1rJk\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the bucket\",\n    \"video_name\": \"atGMJc-DZ7w\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the car in the video\",\n    \"video_name\": \"8teo_0gxzgk\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the car in the video\",\n    \"video_name\": \"A_Sr0mCX2rI\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the carpet in the video\",\n    \"video_name\": \"qaml4eEk9hY\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color is the chair in the video\",\n    \"video_name\": \"OQEKZXv6jSw\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color of the clothes does the person with red hat wear\",\n    \"video_name\": \"qKp2QCheLwU\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the comb\",\n    \"video_name\": \"32vYs9wKXE8\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what color is the comb in the video\",\n    \"video_name\": \"z8x3wUZYOaM\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the cup in the video\",\n    \"video_name\": \"nbHBjdE8oNo\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the dart\",\n    \"video_name\": \"hyMqGr0mOfA\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what color is the dog's fur\",\n    \"video_name\": \"hIHeMA1oRrY\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the clothes of the blonde woman\",\n    \"video_name\": \"ikUNgSw4Gys\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what color is the clothes of the woman with long hair\",\n    \"video_name\": \"UvOEuhS0V3E\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the clothes of the woman with long hair\",\n    \"video_name\": \"7dXqXFoju2M\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the clothes of the woman with hat\",\n    \"video_name\": \"VFC-V06hVj0\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the floor\",\n    \"video_name\": \"FADShG5lyB8\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the floor\",\n    \"video_name\": \"3PsxzgeMv5w\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the flute\",\n    \"video_name\": \"TtewPltwuXw\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the english caption appearing at the beginning of the video\",\n    \"video_name\": \"RXT17X7lRoQ\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the girl's clothes\",\n    \"video_name\": \"kMtjk1KFvXQ\",\n    \"answer\": \"black and white\"\n  },\n  {\n    \"question\": \"what color is the girl's clothes\",\n    \"video_name\": \"e4kS-n7_LRU\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the hair of the boy in blue clothes\",\n    \"video_name\": \"vBaiedxy1Uw\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the dog's fur\",\n    \"video_name\": \"1xtKGlUp4Vg\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in red clothes\",\n    \"video_name\": \"XxW4XWySzOw\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in red clothes\",\n    \"video_name\": \"x6pYeqq3O08\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in white clothes\",\n    \"video_name\": \"1494UwmvAJM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in black coat\",\n    \"video_name\": \"ZLJ2BmBkLJg\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in black coat\",\n    \"video_name\": \"QdmcjM2fluo\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in black coat\",\n    \"video_name\": \"zTHkqpNFGno\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in black clothes\",\n    \"video_name\": \"otMw5GJWYWs\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in black clothes\",\n    \"video_name\": \"xND_kp-aYXw\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in black clothes\",\n    \"video_name\": \"X6CBZwwRdQQ\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in black vest\",\n    \"video_name\": \"qWgF9hxNbP8\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in blue coat\",\n    \"video_name\": \"qiupddjDHDg\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in blue coat\",\n    \"video_name\": \"qiTQ02NDSlQ\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in blue clothes\",\n    \"video_name\": \"zxpQHLwZCug\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in gray tshirt\",\n    \"video_name\": \"pzTqZWPubk8\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in gray vest\",\n    \"video_name\": \"qZMcbBsQorE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in green clothes\",\n    \"video_name\": \"zPQodcasmSA\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in green clothes\",\n    \"video_name\": \"zKYiTA6WBS4\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in green clothes\",\n    \"video_name\": \"ZJnXQw84xvo\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in purple clothes\",\n    \"video_name\": \"xfV4V_AOVSM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in purple clothes\",\n    \"video_name\": \"nGKc2t-NMYc\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in red coat\",\n    \"video_name\": \"Z-zG845frso\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in red coat\",\n    \"video_name\": \"zpaS2iYrJjk\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in red clothes\",\n    \"video_name\": \"gr53ih2aFkE\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in red clothes\",\n    \"video_name\": \"GOhmWfR8QBM\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in white clothes\",\n    \"video_name\": \"qZtdMXkHRXw\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in white clothes\",\n    \"video_name\": \"ghHZ9M-jx0w\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in white clothes\",\n    \"video_name\": \"G25py7yEVyo\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in white clothes\",\n    \"video_name\": \"X52XHYKeLiE\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in black tshirt\",\n    \"video_name\": \"Znb6Y9m_PsQ\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the hat of the person in black clothes\",\n    \"video_name\": \"aGvpDyMNATI\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hat of the person in black clothes\",\n    \"video_name\": \"ys4_S3JHQjs\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the hat of the person in red clothes\",\n    \"video_name\": \"ZAX6OojMg38\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the hat of the person in black clothes\",\n    \"video_name\": \"ojTFTIwsa_c\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hat of the person in black vest\",\n    \"video_name\": \"GsPE54bMFwE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hat of the person in white clothes\",\n    \"video_name\": \"CKSlgK_2FP4\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the horse in the video\",\n    \"video_name\": \"BMy7CBVxH5M\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the coat of the lady\",\n    \"video_name\": \"P5D9S9NzQ28\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what color is the hair of the man in the video\",\n    \"video_name\": \"d4sX1jnL4BY\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color are the pants of the man with hat\",\n    \"video_name\": \"uWfQcDvel84\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color are the pants of the man in yellow clothes\",\n    \"video_name\": \"8IrulONeC28\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in black tshirt\",\n    \"video_name\": \"QXN6odBnVmI\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in gray tshirt\",\n    \"video_name\": \"ZnKB0U96ZI4\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in white clothes\",\n    \"video_name\": \"nYl_tYmijlM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in white tshirt\",\n    \"video_name\": \"ZLG1Exv8HrY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the nail polish\",\n    \"video_name\": \"Feq-2NIDl94\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color are the trousers of the diving man\",\n    \"video_name\": \"woI_zP55qWo\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"uLphvdhunTY\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"uM7QSskmloo\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"Of2Umm79Kxg\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"Yg03CCu9GMo\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the person's coat in the video\",\n    \"video_name\": \"udSHsodv3gY\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the person's coat in the video\",\n    \"video_name\": \"zEttEkAdHts\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"YaC68rE4lwA\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"U2cCOj3LiAA\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"Y05GAiavfOg\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"oT6WUU8-dgs\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"TnP6coXzbLY\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"Uae2MWoldTU\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"yUvSujxnFE0\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the person's clothes in the video\",\n    \"video_name\": \"z6pmp8TrAVo\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color are the gloves of the person in white clothes\",\n    \"video_name\": \"W2Mh01F3K5c\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in plaid shirt\",\n    \"video_name\": \"Q5HdVXF390c\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in striped shirt\",\n    \"video_name\": \"pYaZLHpl_Ww\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in striped shirt\",\n    \"video_name\": \"ZxCdhz4ep0s\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in red clothes\",\n    \"video_name\": \"vFO70WwrQgE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in red shorts\",\n    \"video_name\": \"Zt9qvbUnNhc\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the person's hair in the video\",\n    \"video_name\": \"3uaQ0cULMgc\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the person's hair in the video\",\n    \"video_name\": \"9MN6GNhvwzA\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the person's hair in the video\",\n    \"video_name\": \"mvRoVXRGVGw\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the person's hair in the video\",\n    \"video_name\": \"n9EdHGz7ArI\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the person's hair in the video\",\n    \"video_name\": \"04qggWACGWk\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the person's hair in the video\",\n    \"video_name\": \"ngMxE3CnGVg\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in white clothes\",\n    \"video_name\": \"Vhn4SuPhu-0\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in white clothes\",\n    \"video_name\": \"X_K7Aa3Aa-E\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the person's hat in the video\",\n    \"video_name\": \"yCpdDJAW-jU\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what color is the person's hat in the video\",\n    \"video_name\": \"nDM4E9CD_y0\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the person's hat in the video\",\n    \"video_name\": \"HTYzbAFUghU\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in black coat\",\n    \"video_name\": \"zO5JMTzLDHw\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in black clothes\",\n    \"video_name\": \"xMNmGr96O9U\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in blue clothes\",\n    \"video_name\": \"AguxVxEWEs0\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in white shirt\",\n    \"video_name\": \"ZlVydB9uUe4\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in white shirt\",\n    \"video_name\": \"zqxzFxya6T8\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in red clothes\",\n    \"video_name\": \"VJh9W3Gcpmo\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color is the person's pants in the video\",\n    \"video_name\": \"YRGiRmcHdUY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the person's pants in the video\",\n    \"video_name\": \"yGTIEmZ7S2w\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the shoes of the person in black clothes\",\n    \"video_name\": \"_jV5sAOOHLk\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the shoes of the person in green clothes\",\n    \"video_name\": \"d6gGZFQOxOg\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the person's shoes in the video\",\n    \"video_name\": \"Ar6TcWqwK-A\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the plate in the video\",\n    \"video_name\": \"Oh3-DvDCpZ4\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the pool\",\n    \"video_name\": \"vzUeFzhVYLg\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the quilt in the video\",\n    \"video_name\": \"A9VCuZ53ObQ\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the referee's clothes\",\n    \"video_name\": \"TGffgRXc1eQ\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the ship in the video\",\n    \"video_name\": \"XxW4XWySzOw\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the ship in the video\",\n    \"video_name\": \"zA2zZPyYLlU\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the sofa in the video\",\n    \"video_name\": \"0xBP-TSsqb0\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the sportsman's coat\",\n    \"video_name\": \"f1d7_TKXNYQ\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the table\",\n    \"video_name\": \"vQ82ItCG1x4\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the table in the video\",\n    \"video_name\": \"_CIoHeD7KQc\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the table in the video\",\n    \"video_name\": \"V9mLJJn8Lvw\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the towel in the video\",\n    \"video_name\": \"8vDSV9ruYlc\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the towel in the video\",\n    \"video_name\": \"ojTFTIwsa_c\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the toy in the video\",\n    \"video_name\": \"46NS8dT15Hw\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the tree in the video\",\n    \"video_name\": \"Ynvd8OuXKGw\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the tree in the video\",\n    \"video_name\": \"YVqRQDkdA8U\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the vacuum cleaner in the video\",\n    \"video_name\": \"UNXLfqkwKFc\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the sponge pad in the video\",\n    \"video_name\": \"Z6b4oFjIznU\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the wall in the video\",\n    \"video_name\": \"-YwrMtiqHKg\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the mower\",\n    \"video_name\": \"v0azz4XzW_s\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the woman wearing in the video\",\n    \"video_name\": \"CuLC5G7yWxA\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the woman's hair\",\n    \"video_name\": \"Pv4FwH2TC6Y\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the woman's hair in the video\",\n    \"video_name\": \"-CqVpCRxwTY\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the woman's hair in the video\",\n    \"video_name\": \"FPf7mAgdy0I\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the woman's hair in the video\",\n    \"video_name\": \"W97fdJ2Rn9g\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color are the pants of the woman in white clothes\",\n    \"video_name\": \"vezvHLPR3P0\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the woman in white clothes\",\n    \"video_name\": \"utgRhyBvtRU\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is this car\",\n    \"video_name\": \"8A4cZXyDrkU\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color are the pants of the man wearing\",\n    \"video_name\": \"fh9d3gpT-8I\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the man wearing\",\n    \"video_name\": \"fhOmyyI0eQE\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color are the pants of the man wearing\",\n    \"video_name\": \"fh21bbDSVmA\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in black clothes\",\n    \"video_name\": \"_kmjpSZb3OI\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in red clothes\",\n    \"video_name\": \"mSR-HpiJ0No\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the pants does the woman wear\",\n    \"video_name\": \"FFMugev85IY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of the pants does the woman wear\",\n    \"video_name\": \"penDFcEdu7U\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the shoes of the person in black clothes\",\n    \"video_name\": \"87F9xGaMwCw\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what does the person in white wear\",\n    \"video_name\": \"Oh3-DvDCpZ4\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what does the person in white wear\",\n    \"video_name\": \"y0ca-LbQErY\",\n    \"answer\": \"dynamic bicycle\"\n  },\n  {\n    \"question\": \"what does the person in black wear on the hand\",\n    \"video_name\": \"mek9Zodu8LM\",\n    \"answer\": \"white glove\"\n  },\n  {\n    \"question\": \"what does the person in black wear on the hand\",\n    \"video_name\": \"SB0dU5oDvaE\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what happened after the billiards\",\n    \"video_name\": \"X2toGKgWMpE\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what happened after playing volleyball\",\n    \"video_name\": \"75Tc1nPmZFQ\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happened after skiing\",\n    \"video_name\": \"mvRoVXRGVGw\",\n    \"answer\": \"lying on ground\"\n  },\n  {\n    \"question\": \"what happened after stepping on the skateboard\",\n    \"video_name\": \"836UrVGw6GI\",\n    \"answer\": \"introduce people\"\n  },\n  {\n    \"question\": \"what happened after the athlete went uphill\",\n    \"video_name\": \"JH9qiuPCkY4\",\n    \"answer\": \"motorcycle jump\"\n  },\n  {\n    \"question\": \"what happened after the athlete went uphill\",\n    \"video_name\": \"JR9LosQmMvg\",\n    \"answer\": \"jump up\"\n  },\n  {\n    \"question\": \"what happened after playing ball\",\n    \"video_name\": \"xizEiQZfJa4\",\n    \"answer\": \"take cell phone\"\n  },\n  {\n    \"question\": \"what happened after the boating\",\n    \"video_name\": \"XxW4XWySzOw\",\n    \"answer\": \"play with mud\"\n  },\n  {\n    \"question\": \"what happened after the dance\",\n    \"video_name\": \"mSR-HpiJ0No\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happened after the drumming\",\n    \"video_name\": \"xND_kp-aYXw\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happened after the drumming\",\n    \"video_name\": \"mV07bEBkIcM\",\n    \"answer\": \"and then drums\"\n  },\n  {\n    \"question\": \"what happened after the game\",\n    \"video_name\": \"K7iw2_1BrIk\",\n    \"answer\": \"audience left\"\n  },\n  {\n    \"question\": \"what happened after the game\",\n    \"video_name\": \"b_c17BmZCCs\",\n    \"answer\": \"audience came to court\"\n  },\n  {\n    \"question\": \"what happened after the game\",\n    \"video_name\": \"dFGS7YCDk3Y\",\n    \"answer\": \"raise hand to celebrate\"\n  },\n  {\n    \"question\": \"what happened after the high jump\",\n    \"video_name\": \"xS4twW2gXqc\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happened after the high jump\",\n    \"video_name\": \"rsU73H6VyG8\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what happened after taking the hula hoop\",\n    \"video_name\": \"9MN6GNhvwzA\",\n    \"answer\": \"hopping hula hoop\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after sweeping the snow\",\n    \"video_name\": \"yCpdDJAW-jU\",\n    \"answer\": \"throw snowball\"\n  },\n  {\n    \"question\": \"what happened after the show\",\n    \"video_name\": \"f6vZaMgqDvQ\",\n    \"answer\": \"to ground\"\n  },\n  {\n    \"question\": \"what happened after the show\",\n    \"video_name\": \"BkDbDnvoL28\",\n    \"answer\": \"video end\"\n  },\n  {\n    \"question\": \"what happened after the show\",\n    \"video_name\": \"7rwDYzqfGgU\",\n    \"answer\": \"audience applauded\"\n  },\n  {\n    \"question\": \"what happened after shoveling the snow\",\n    \"video_name\": \"nDM4E9CD_y0\",\n    \"answer\": \"then shovel snow\"\n  },\n  {\n    \"question\": \"what happened after the athlete started running\",\n    \"video_name\": \"pmmQuksmTvw\",\n    \"answer\": \"pole vault\"\n  },\n  {\n    \"question\": \"what happened after the athlete started running\",\n    \"video_name\": \"Pr5K2Jh2X94\",\n    \"answer\": \"jump into sand pit\"\n  },\n  {\n    \"question\": \"what happened after walking the dog\",\n    \"video_name\": \"-eJT11AuOa0\",\n    \"answer\": \"talk to passer by\"\n  },\n  {\n    \"question\": \"what happened to the person in black before throwing the javelin\",\n    \"video_name\": \"aGvpDyMNATI\",\n    \"answer\": \"run up\"\n  },\n  {\n    \"question\": \"what happened before playing tennis\",\n    \"video_name\": \"MVA568rRjzQ\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what happened before the ball game\",\n    \"video_name\": \"16bJAOf1SJI\",\n    \"answer\": \"take ball\"\n  },\n  {\n    \"question\": \"what happened before the dance\",\n    \"video_name\": \"N75m1Z4RqbA\",\n    \"answer\": \"go on court\"\n  },\n  {\n    \"question\": \"what happened before drinking\",\n    \"video_name\": \"n9EdHGz7ArI\",\n    \"answer\": \"introduction of products\"\n  },\n  {\n    \"question\": \"what happened before drinking\",\n    \"video_name\": \"Nb6AQxxrihA\",\n    \"answer\": \"drink drink\"\n  },\n  {\n    \"question\": \"what happened before the end of the video\",\n    \"video_name\": \"BMy7CBVxH5M\",\n    \"answer\": \"clean horse\"\n  },\n  {\n    \"question\": \"what happened before the end of the video\",\n    \"video_name\": \"JKJ_EvP7JwQ\",\n    \"answer\": \"lens shaky\"\n  },\n  {\n    \"question\": \"what happened before the end of the video\",\n    \"video_name\": \"PSB1nM3QXxg\",\n    \"answer\": \"end of demonstration\"\n  },\n  {\n    \"question\": \"what happened before the hair was made up\",\n    \"video_name\": \"32vYs9wKXE8\",\n    \"answer\": \"comb ones hair\"\n  },\n  {\n    \"question\": \"what happened before the hair was made up\",\n    \"video_name\": \"xfV4V_AOVSM\",\n    \"answer\": \"wash hair\"\n  },\n  {\n    \"question\": \"what happened before the high jump\",\n    \"video_name\": \"WGUzmra3h_w\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what happened before the jumper's takeoff\",\n    \"video_name\": \"snhPrCNubYA\",\n    \"answer\": \"run up\"\n  },\n  {\n    \"question\": \"what happened before the person in the video mopped the floor\",\n    \"video_name\": \"Yg03CCu9GMo\",\n    \"answer\": \"add ice\"\n  },\n  {\n    \"question\": \"what happened before the pole vault\",\n    \"video_name\": \"16czjUF1AA4\",\n    \"answer\": \"prepare for start\"\n  },\n  {\n    \"question\": \"what happened before the rope skipping\",\n    \"video_name\": \"26U3SkeZU6M\",\n    \"answer\": \"shedding rope\"\n  },\n  {\n    \"question\": \"what happened before the rope skipping\",\n    \"video_name\": \"DIVaPURJHPo\",\n    \"answer\": \"check rope\"\n  },\n  {\n    \"question\": \"what happened before the skating\",\n    \"video_name\": \"390iVq_urQM\",\n    \"answer\": \"take skates\"\n  },\n  {\n    \"question\": \"what happened before the skating\",\n    \"video_name\": \"28LdZLfdmMQ\",\n    \"answer\": \"get ready\"\n  },\n  {\n    \"question\": \"what happened before the start of the game\",\n    \"video_name\": \"rMj2JWNJzkw\",\n    \"answer\": \"coach guidance\"\n  },\n  {\n    \"question\": \"what happened before the start of the game\",\n    \"video_name\": \"RXT17X7lRoQ\",\n    \"answer\": \"referee throws the ball\"\n  },\n  {\n    \"question\": \"what happened before the man in the video cut the cat's nails\",\n    \"video_name\": \"T3mcQnlsmq4\",\n    \"answer\": \"cat peppermint\"\n  },\n  {\n    \"question\": \"what happened before throwing the javelin\",\n    \"video_name\": \"98ukqD62X5s\",\n    \"answer\": \"prepare starting\"\n  },\n  {\n    \"question\": \"what happened before throwing the javelin\",\n    \"video_name\": \"WdtytUagoJs\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what happened before the man in the striped short sleeve washed his hands\",\n    \"video_name\": \"vFO70WwrQgE\",\n    \"answer\": \"shoulder shoulder\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before drinking\",\n    \"video_name\": \"d_A-ylxNbFU\",\n    \"answer\": \"showcase wine\"\n  },\n  {\n    \"question\": \"what happened after bathing the dog\",\n    \"video_name\": \"W9H2qVnIWXs\",\n    \"answer\": \"blower\"\n  },\n  {\n    \"question\": \"what happened after the man explained\",\n    \"video_name\": \"fh9d3gpT-8I\",\n    \"answer\": \"blow up drum\"\n  },\n  {\n    \"question\": \"what happened after the man explained\",\n    \"video_name\": \"fhOmyyI0eQE\",\n    \"answer\": \"pruning trees\"\n  },\n  {\n    \"question\": \"what happened to the man in a sweater before falling down\",\n    \"video_name\": \"UzmsAb15Bso\",\n    \"answer\": \"squat\"\n  },\n  {\n    \"question\": \"what happened before the person in blue turned\",\n    \"video_name\": \"AguxVxEWEs0\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what happened before the person in blue turned\",\n    \"video_name\": \"P8S8PIyPXxY\",\n    \"answer\": \"demonstrating\"\n  },\n  {\n    \"question\": \"what happened after the person in red went downhill\",\n    \"video_name\": \"YHqFNnhaFAY\",\n    \"answer\": \"almost hit by car\"\n  },\n  {\n    \"question\": \"what happened to the person in the red clothes before jumping\",\n    \"video_name\": \"OQEKZXv6jSw\",\n    \"answer\": \"run up\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after the dance\",\n    \"video_name\": \"-crpjVnFv0U\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before eating the ice cream\",\n    \"video_name\": \"OYEKKzQjaJI\",\n    \"answer\": \"production process\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before playing\",\n    \"video_name\": \"wdvQC41PGPk\",\n    \"answer\": \"button button\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before playing the ball\",\n    \"video_name\": \"yUvSujxnFE0\",\n    \"answer\": \"throw ball\"\n  },\n  {\n    \"question\": \"what happened before the person in yellow jumped\",\n    \"video_name\": \"OFTkwnSh-sQ\",\n    \"answer\": \"run up\"\n  },\n  {\n    \"question\": \"what happened after the success of the athlete's attempt\",\n    \"video_name\": \"jibbgUBuuSA\",\n    \"answer\": \"be interviewed\"\n  },\n  {\n    \"question\": \"hat happened after the man in white got the ball\",\n    \"video_name\": \"ghHZ9M-jx0w\",\n    \"answer\": \"go out\"\n  },\n  {\n    \"question\": \"what happened when the bowling pin is thrown out of bowling balls\",\n    \"video_name\": \"3PsxzgeMv5w\",\n    \"answer\": \"down\"\n  },\n  {\n    \"question\": \"what happened when the bowling pin is thrown out of bowling balls\",\n    \"video_name\": \"5k2Ot6-wOgc\",\n    \"answer\": \"all down\"\n  },\n  {\n    \"question\": \"what happened when the person in red stood up\",\n    \"video_name\": \"GOhmWfR8QBM\",\n    \"answer\": \"christmas tree fell down\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after picking up the tool\",\n    \"video_name\": \"CKSlgK_2FP4\",\n    \"answer\": \"sharpening\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after picking up the tool\",\n    \"video_name\": \"BmL2XGNrxc4\",\n    \"answer\": \"chopping wood\"\n  },\n  {\n    \"question\": \"what is the bald person doing\",\n    \"video_name\": \"7vcihMnmssI\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is above the pool\",\n    \"video_name\": \"vzUeFzhVYLg\",\n    \"answer\": \"diver\"\n  },\n  {\n    \"question\": \"what's behind the person in the black coat \",\n    \"video_name\": \"ZLJ2BmBkLJg\",\n    \"answer\": \"plain white cloth\"\n  },\n  {\n    \"question\": \"what's behind the person in the black coat \",\n    \"video_name\": \"zO5JMTzLDHw\",\n    \"answer\": \"national flag\"\n  },\n  {\n    \"question\": \"what is behind the child\",\n    \"video_name\": \"sqv3M6MPKjQ\",\n    \"answer\": \"hair drier\"\n  },\n  {\n    \"question\": \"what is behind the child\",\n    \"video_name\": \"sk_pnoqXxhs\",\n    \"answer\": \"white woman\"\n  },\n  {\n    \"question\": \"what is behind the lady\",\n    \"video_name\": \"Pv4FwH2TC6Y\",\n    \"answer\": \"wall column\"\n  },\n  {\n    \"question\": \"what is behind the lady\",\n    \"video_name\": \"b0qGo-HT5iQ\",\n    \"answer\": \"visual acuity chart\"\n  },\n  {\n    \"question\": \"what is behind the person\",\n    \"video_name\": \"-pkfcMUIEMo\",\n    \"answer\": \"shovel\"\n  },\n  {\n    \"question\": \"what is behind the man in black\",\n    \"video_name\": \"4_jDgRsOGvY\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the man in the video\",\n    \"video_name\": \"0xBP-TSsqb0\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is behind the man in the video\",\n    \"video_name\": \"CwImmV7q1MY\",\n    \"answer\": \"living room\"\n  },\n  {\n    \"question\": \"what's behind the person in the white shirt\",\n    \"video_name\": \"ZlVydB9uUe4\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what's behind the person in orange\",\n    \"video_name\": \"mixxaL3Bdv8\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is behind the athletes\",\n    \"video_name\": \"St1RRi-aeNM\",\n    \"answer\": \"iron block\"\n  },\n  {\n    \"question\": \"what is behind the audience\",\n    \"video_name\": \"Co_cpZWbzFk\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is behind the audience\",\n    \"video_name\": \"JsPIzRsUtlE\",\n    \"answer\": \"automobile\"\n  },\n  {\n    \"question\": \"what is behind the man in black\",\n    \"video_name\": \"e-Xf13exY4E\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is behind the man in black\",\n    \"video_name\": \"W2eumNilwuI\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the man in black pants\",\n    \"video_name\": \"YVqRQDkdA8U\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is behind the boy\",\n    \"video_name\": \"w4pO-1-FG5w\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is behind the boy\",\n    \"video_name\": \"WINtiw-_3vg\",\n    \"answer\": \"billboard\"\n  },\n  {\n    \"question\": \"what is behind the chair\",\n    \"video_name\": \"cCimLg-8Dy4\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what is behind the child\",\n    \"video_name\": \"MAYrBia9Xnw\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is behind the christmas tree\",\n    \"video_name\": \"jhy6npIdn5o\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is behind the christmas tree\",\n    \"video_name\": \"Uae2MWoldTU\",\n    \"answer\": \"blue plastic film\"\n  },\n  {\n    \"question\": \"what is behind the person who appears first\",\n    \"video_name\": \"blbaWHbtqTI\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the girl in the video\",\n    \"video_name\": \"Dd5yTxwKzXw\",\n    \"answer\": \"hair stylist\"\n  },\n  {\n    \"question\": \"what is behind the horse\",\n    \"video_name\": \"udSHsodv3gY\",\n    \"answer\": \"wooden doors\"\n  },\n  {\n    \"question\": \"what is behind the horse\",\n    \"video_name\": \"sH_716hH_rY\",\n    \"answer\": \"small house\"\n  },\n  {\n    \"question\": \"what is behind the lawn\",\n    \"video_name\": \"dN8LBey17O8\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is behind the man in a purple clothes\",\n    \"video_name\": \"xfV4V_AOVSM\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is behind the man in a purple clothes\",\n    \"video_name\": \"pPt_fygNjtQ\",\n    \"answer\": \"shelf\"\n  },\n  {\n    \"question\": \"what is behind the man in a striped clothes\",\n    \"video_name\": \"pYaZLHpl_Ww\",\n    \"answer\": \"coloured lights\"\n  },\n  {\n    \"question\": \"what is behind the person in black\",\n    \"video_name\": \"lPw_BRbPw5s\",\n    \"answer\": \"small window\"\n  },\n  {\n    \"question\": \"what is behind the person in black\",\n    \"video_name\": \"mUmSJps9WJI\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is behind the person in black\",\n    \"video_name\": \"Ynvd8OuXKGw\",\n    \"answer\": \"fountain\"\n  },\n  {\n    \"question\": \"what is behind the person in black\",\n    \"video_name\": \"3nSOFmmA7FU\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is behind the person in black\",\n    \"video_name\": \"mV07bEBkIcM\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in blue\",\n    \"video_name\": \"96vBhCFBbQk\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is behind the person in blue\",\n    \"video_name\": \"MVA568rRjzQ\",\n    \"answer\": \"glass\"\n  },\n  {\n    \"question\": \"what is behind the person in blue\",\n    \"video_name\": \"1px5LTVIR3A\",\n    \"answer\": \"blue screen\"\n  },\n  {\n    \"question\": \"what is behind the person in blue\",\n    \"video_name\": \"62M1FRXsUiM\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in blue\",\n    \"video_name\": \"16czjUF1AA4\",\n    \"answer\": \"spectator seats\"\n  },\n  {\n    \"question\": \"what is behind the person in blue\",\n    \"video_name\": \"kBTqTp0SKq8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in red\",\n    \"video_name\": \"xS4twW2gXqc\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is behind the person in red\",\n    \"video_name\": \"T3A88zsRuVs\",\n    \"answer\": \"guardrail net\"\n  },\n  {\n    \"question\": \"what is behind the person in red\",\n    \"video_name\": \"gr53ih2aFkE\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is behind the person in red\",\n    \"video_name\": \"4j_LRkB4T6c\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is behind the person in blue\",\n    \"video_name\": \"26U3SkeZU6M\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in blue\",\n    \"video_name\": \"TGffgRXc1eQ\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is behind the person in a blue hat\",\n    \"video_name\": \"teffBaLEZQg\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"what is behind the man in the video\",\n    \"video_name\": \"jbCQY7V7O1s\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in yellow\",\n    \"video_name\": \"Y7aacWy3WDo\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is behind the person in yellow\",\n    \"video_name\": \"prBiREYQ2vQ\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is behind the person in black pants\",\n    \"video_name\": \"JB-ynj70saA\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is behind the people in red clothes\",\n    \"video_name\": \"hIYN8cC3pEA\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is behind the people in red clothes\",\n    \"video_name\": \"GOhmWfR8QBM\",\n    \"answer\": \"christmas tree\"\n  },\n  {\n    \"question\": \"what is behind the people in black clothes\",\n    \"video_name\": \"40BPDWojssc\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is behind the people in black clothes\",\n    \"video_name\": \"V90CMuokf0c\",\n    \"answer\": \"yellow bag\"\n  },\n  {\n    \"question\": \"what is behind the people in green clothes\",\n    \"video_name\": \"MDWaKr7Gu5Q\",\n    \"answer\": \"blower\"\n  },\n  {\n    \"question\": \"what is behind the people in green clothes\",\n    \"video_name\": \"i6wR9_tkg6A\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"what is behind the people in the green clothes\",\n    \"video_name\": \"i8hNrK3r_MY\",\n    \"answer\": \"glass cabinet\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"lU6DMCif3eE\",\n    \"answer\": \"two pieces of exhibition board\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"fEBM3nPMen8\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"YaC68rE4lwA\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"0e5zwJywyqk\",\n    \"answer\": \"shelf\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"uLphvdhunTY\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"9MN6GNhvwzA\",\n    \"answer\": \"goods shelves\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"U2cCOj3LiAA\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"0k6GFx2ZCg8\",\n    \"answer\": \"window curtains\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"OYEKKzQjaJI\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"Y05GAiavfOg\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"n832gDqfWl4\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"6JZVpl2S2Mg\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"mvRoVXRGVGw\",\n    \"answer\": \"snow mountain\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"aPI0nPvzJlE\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"NjXCZYO3zwU\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"HTYzbAFUghU\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"Au4PfoK7hyw\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is behind the people in white clothes\",\n    \"video_name\": \"-eJT11AuOa0\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is behind the people in white clothes\",\n    \"video_name\": \"cYvFlrAnlzA\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is behind the people in white clothes\",\n    \"video_name\": \"RgiVa9GMYxE\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what's behind the field\",\n    \"video_name\": \"u0Dc0ZtudXY\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is behind the sitting person\",\n    \"video_name\": \"RtF6TGqwa7Y\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is behind the sitting person\",\n    \"video_name\": \"JvPVYSb_5o8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the standing person\",\n    \"video_name\": \"V2UitlmX7Uo\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is he doing\",\n    \"video_name\": \"FKtYeu2bJpA\",\n    \"answer\": \"practice basketball\"\n  },\n  {\n    \"question\": \"what is he doing\",\n    \"video_name\": \"FtRGOgg0Qh8\",\n    \"answer\": \"ride on bicycle\"\n  },\n  {\n    \"question\": \"what is he doing in the video\",\n    \"video_name\": \"MQ9Ojge7CyA\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what is he doing in the video\",\n    \"video_name\": \"_CIoHeD7KQc\",\n    \"answer\": \"experimentalize\"\n  },\n  {\n    \"question\": \"what is in front of the person in a black coat\",\n    \"video_name\": \"ZBP_mLWROZU\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is in front of the person in a black coat\",\n    \"video_name\": \"QdmcjM2fluo\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is in front of the person in a black shirt\",\n    \"video_name\": \"gWTndmDHZQc\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is in front of the person in a black tshirt\",\n    \"video_name\": \"Znb6Y9m_PsQ\",\n    \"answer\": \"table football\"\n  },\n  {\n    \"question\": \"what is in front of the person in a blue apron\",\n    \"video_name\": \"g9lNpSAtHgI\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is in front of the person in a blue coat\",\n    \"video_name\": \"qiTQ02NDSlQ\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is in front of the child\",\n    \"video_name\": \"rM02KWikOo8\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is in front of the person in gray\",\n    \"video_name\": \"Z-sWZUYL0ZU\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"what is in front of the lady in jeans\",\n    \"video_name\": \"F9FPK6mfh88\",\n    \"answer\": \"men in white\"\n  },\n  {\n    \"question\": \"what is in front of the man\",\n    \"video_name\": \"CFbkVO5b2g0\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what's in front of the person in black\",\n    \"video_name\": \"QImpWj3AJcY\",\n    \"answer\": \"glass\"\n  },\n  {\n    \"question\": \"what's in front of the person in black\",\n    \"video_name\": \"H2fG7JRRMAs\",\n    \"answer\": \"poker\"\n  },\n  {\n    \"question\": \"what is in front of the man in a black hat\",\n    \"video_name\": \"faqijFZWQlo\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is in front of the person in a gray vest\",\n    \"video_name\": \"qZMcbBsQorE\",\n    \"answer\": \"disk\"\n  },\n  {\n    \"question\": \"what is in front of the person in a gray coat\",\n    \"video_name\": \"U2eN4DbVLfE\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in purple clothes\",\n    \"video_name\": \"OccEAILrU7M\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is in front of the person in purple clothes\",\n    \"video_name\": \"paRAKx8svJ8\",\n    \"answer\": \"judges\"\n  },\n  {\n    \"question\": \"what is in front of the person in red coat\",\n    \"video_name\": \"Z-zG845frso\",\n    \"answer\": \"ball net\"\n  },\n  {\n    \"question\": \"what is in front of the person in red coat\",\n    \"video_name\": \"fh9d3gpT-8I\",\n    \"answer\": \"drum kit\"\n  },\n  {\n    \"question\": \"what is in front of the person in red coat\",\n    \"video_name\": \"dHKeNK1uWUg\",\n    \"answer\": \"cobra\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"mSR-HpiJ0No\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"nkWMBJC2Qec\",\n    \"answer\": \"ball table\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"0q9yZPTBbus\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"9ZVWD0ZKXZg\",\n    \"answer\": \"stone\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"x6pYeqq3O08\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is in front of the person in a red hat\",\n    \"video_name\": \"qKp2QCheLwU\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the front of the man wearing a diving suit\",\n    \"video_name\": \"2DCHbuwZNSs\",\n    \"answer\": \"shoal of fish\"\n  },\n  {\n    \"question\": \"what is in front of the person in a white hat\",\n    \"video_name\": \"R74yolowFPs\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is in front of the man in black clothes\",\n    \"video_name\": \"DOI6tsATsE4\",\n    \"answer\": \"white coat man\"\n  },\n  {\n    \"question\": \"what is in front of the person in blue clothes\",\n    \"video_name\": \"zxpQHLwZCug\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is in front of the person in blue clothes\",\n    \"video_name\": \"FWZ6wgaJ_L4\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is in front of the person in blue clothes\",\n    \"video_name\": \"mXqmRAUsn9U\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is in front of the person in blue clothes\",\n    \"video_name\": \"nciIPwJTok8\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is in front of the man in green clothes\",\n    \"video_name\": \"u_vLZxgO9Rw\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is in front of the person in gray clothes\",\n    \"video_name\": \"xMNmGr96O9U\",\n    \"answer\": \"bowling\"\n  },\n  {\n    \"question\": \"what is in front of the person in gray clothes\",\n    \"video_name\": \"A8RQcVFtovg\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is in front of the person in gray clothes\",\n    \"video_name\": \"Ye_uVlSo1HI\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in gray clothes\",\n    \"video_name\": \"g1na24Bd5Rs\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"XxW4XWySzOw\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"9k19UUJtldg\",\n    \"answer\": \"tennis table\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"z6l9utYlIrw\",\n    \"answer\": \"railing\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"TtewPltwuXw\",\n    \"answer\": \"tea table\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"YHqFNnhaFAY\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"oKJ1BnvHbbA\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is in front of the person in red clothes\",\n    \"video_name\": \"ZAX6OojMg38\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"1494UwmvAJM\",\n    \"answer\": \"flower receptacle\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"X_K7Aa3Aa-E\",\n    \"answer\": \"fire pile\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"mnNgZ-D5cKc\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is in front of the person in black clothes\",\n    \"video_name\": \"ys4_S3JHQjs\",\n    \"answer\": \"men in blue\"\n  },\n  {\n    \"question\": \"what is in front of the person in black clothes\",\n    \"video_name\": \"oMtB-y49Yo8\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what is in front of the person in black clothes\",\n    \"video_name\": \"3PsxzgeMv5w\",\n    \"answer\": \"bowling pin\"\n  },\n  {\n    \"question\": \"what is in front of the person in black clothes\",\n    \"video_name\": \"otMw5GJWYWs\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is in front of the person in black clothes\",\n    \"video_name\": \"ojTFTIwsa_c\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is in front of the person in black clothes\",\n    \"video_name\": \"z8x3wUZYOaM\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in black clothes\",\n    \"video_name\": \"NvRH4SoF09c\",\n    \"answer\": \"hillside\"\n  },\n  {\n    \"question\": \"what is in front of the person in black clothes\",\n    \"video_name\": \"AjqnGUbsduw\",\n    \"answer\": \"white man\"\n  },\n  {\n    \"question\": \"what is in front of the person in black clothes\",\n    \"video_name\": \"A0b_pqaKCX8\",\n    \"answer\": \"glass\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"8lMncYsbrWw\",\n    \"answer\": \"ironing table\"\n  },\n  {\n    \"question\": \"what is in front of the person in a black vest\",\n    \"video_name\": \"ZgdMnfTqblw\",\n    \"answer\": \"basketball box\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"gsQ-OEvrxjo\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"xizEiQZfJa4\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"AguxVxEWEs0\",\n    \"answer\": \"man in blue\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"X52XHYKeLiE\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"nYl_tYmijlM\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"kYkvyRKxwfY\",\n    \"answer\": \"table tennis table\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"X2toGKgWMpE\",\n    \"answer\": \"ball table\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"Oh3-DvDCpZ4\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"YMOYyt3kSOs\",\n    \"answer\": \"network\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"AjizhJc_reI\",\n    \"answer\": \"red clothes\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"y0ca-LbQErY\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"nvcMYiZhUuo\",\n    \"answer\": \"cruise\"\n  },\n  {\n    \"question\": \"what is in front of the person in striped clothes\",\n    \"video_name\": \"PkRvgIFREJU\",\n    \"answer\": \"light pole\"\n  },\n  {\n    \"question\": \"what is in front of the person in pink clothes\",\n    \"video_name\": \"1kkc9hDshP4\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what is in front of the sitting person at the beginning\",\n    \"video_name\": \"k3WPc9HmtLM\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in a white coat\",\n    \"video_name\": \"qZtdMXkHRXw\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is in front of the woman in the video\",\n    \"video_name\": \"MpeN-IVIBc4\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is in front of the woman in the video\",\n    \"video_name\": \"Aen-RfnlK3A\",\n    \"answer\": \"agitation machine\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"afMQA352X_A\",\n    \"answer\": \"man in camouflage\"\n  },\n  {\n    \"question\": \"what is in front of the person in green clothes\",\n    \"video_name\": \"Y_nyVFn70Lk\",\n    \"answer\": \"kitchen sink\"\n  },\n  {\n    \"question\": \"what is in front of the audience\",\n    \"video_name\": \"2_H3lxMWvPo\",\n    \"answer\": \"two cattles\"\n  },\n  {\n    \"question\": \"what is in front of the audience\",\n    \"video_name\": \"4LpqPUWHH5k\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is in front of the audience\",\n    \"video_name\": \"JGPhQX97OSE\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is in front of the audience\",\n    \"video_name\": \"5UZ2ft8Y3sI\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is in front of the audience\",\n    \"video_name\": \"JR9LosQmMvg\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is in front of the audience\",\n    \"video_name\": \"Jhcis4S2Vsg\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is in front of the audience\",\n    \"video_name\": \"BkDbDnvoL28\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what is in front of the audience\",\n    \"video_name\": \"K7iw2_1BrIk\",\n    \"answer\": \"football field\"\n  },\n  {\n    \"question\": \"what is in front of the person in black clothes\",\n    \"video_name\": \"A9VCuZ53ObQ\",\n    \"answer\": \"man in white\"\n  },\n  {\n    \"question\": \"what is in front of the child\",\n    \"video_name\": \"JcAAwYpJhm8\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is in front of the child\",\n    \"video_name\": \"Ki1bs5X_S5k\",\n    \"answer\": \"wine bottle\"\n  },\n  {\n    \"question\": \"what is in front of the person in a plaid shirt\",\n    \"video_name\": \"1IbkFHNA7fg\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what is in front of the little girl\",\n    \"video_name\": \"f8SWWURHV1M\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is in front of the person in a plaid shirt\",\n    \"video_name\": \"Q5HdVXF390c\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"what is in front of the person in yellow clothes\",\n    \"video_name\": \"QIUxLD27NuI\",\n    \"answer\": \"timer\"\n  },\n  {\n    \"question\": \"what is in front of the person in yellow clothes\",\n    \"video_name\": \"mxn6WcmdNpA\",\n    \"answer\": \"counter\"\n  },\n  {\n    \"question\": \"what is in front of the person in yellow clothes\",\n    \"video_name\": \"i5qTK0mInTc\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the standing person\",\n    \"video_name\": \"rSGboODhu04\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in white clothes\",\n    \"video_name\": \"_QBTD1bLSI0\",\n    \"answer\": \"wash basin\"\n  },\n  {\n    \"question\": \"what is on the cupboard\",\n    \"video_name\": \"v-UmNR5yeDc\",\n    \"answer\": \"wine bottle\"\n  },\n  {\n    \"question\": \"what is on the cupboard\",\n    \"video_name\": \"OysON6LbF6Y\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is on the ground\",\n    \"video_name\": \"VZ5R9goklpo\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what's on the head of the person in blue\",\n    \"video_name\": \"lPw_BRbPw5s\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what does the player in the video wear on his head\",\n    \"video_name\": \"JH9qiuPCkY4\",\n    \"answer\": \"helmet\"\n  },\n  {\n    \"question\": \"what does the player in the video wear on his head\",\n    \"video_name\": \"4H9MMsj4mcM\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what is on the left hand of the standing person\",\n    \"video_name\": \"kD_EJjQCLoY\",\n    \"answer\": \"wrist watch\"\n  },\n  {\n    \"question\": \"what is on the left of the man\",\n    \"video_name\": \"eiN5XPmwcEM\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is on the left of the person in blue\",\n    \"video_name\": \"rCLGy2NA0aE\",\n    \"answer\": \"trash\"\n  },\n  {\n    \"question\": \"what is on the left of the person in a hat\",\n    \"video_name\": \"2ShsRSJ9cqE\",\n    \"answer\": \"steel pipe\"\n  },\n  {\n    \"question\": \"what is on the left of the person in blue clothes\",\n    \"video_name\": \"P8S8PIyPXxY\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is on the left of the person in gray clothes\",\n    \"video_name\": \"mkGUacg0GRc\",\n    \"answer\": \"row of tires\"\n  },\n  {\n    \"question\": \"what is on the left of the person in white clothes\",\n    \"video_name\": \"0jdSl5-lMpY\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is on the left of the person in yellow clothes\",\n    \"video_name\": \"PTwe2IIo3To\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is on the left of the person in black coat\",\n    \"video_name\": \"zTHkqpNFGno\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is on the left of the person in white clothes\",\n    \"video_name\": \"30hcRe-5_3M\",\n    \"answer\": \"spectator seats\"\n  },\n  {\n    \"question\": \"what is on the left of the atelete\",\n    \"video_name\": \"1QIUV7WYKXg\",\n    \"answer\": \"bunker\"\n  },\n  {\n    \"question\": \"what is on the left of the chair\",\n    \"video_name\": \"C5SXR9nMY3I\",\n    \"answer\": \"christmas tree\"\n  },\n  {\n    \"question\": \"what is on the left of the door\",\n    \"video_name\": \"vHnZ3NrZER0\",\n    \"answer\": \"switch\"\n  },\n  {\n    \"question\": \"what is on the left of the person in the video\",\n    \"video_name\": \"nDM4E9CD_y0\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is on the left of the person in the video\",\n    \"video_name\": \"nc_NMp3vAH0\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is on the left of the person in the video\",\n    \"video_name\": \"_zqj6daJo9U\",\n    \"answer\": \"stool\"\n  },\n  {\n    \"question\": \"what is on the left of the road\",\n    \"video_name\": \"8tCRp3NKtkI\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is on the left side of the person in white shirt\",\n    \"video_name\": \"qgUHRwC3194\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"what is on the person's hand in the video\",\n    \"video_name\": \"yCpdDJAW-jU\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what is on the person's hand in the video\",\n    \"video_name\": \"aNsj5OrEGLY\",\n    \"answer\": \"bracelet\"\n  },\n  {\n    \"question\": \"what is on the person's hand in the video\",\n    \"video_name\": \"OYEKKzQjaJI\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"what is on the person's hand in the video\",\n    \"video_name\": \"-YwrMtiqHKg\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what is on the person's hand in the video\",\n    \"video_name\": \"YRGiRmcHdUY\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is on the right of the person in red clothes\",\n    \"video_name\": \"hxErUs42bBI\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is on the right of the person in gray clothes\",\n    \"video_name\": \"1xtKGlUp4Vg\",\n    \"answer\": \"hair drier\"\n  },\n  {\n    \"question\": \"what is on the right of the person in gray clothes\",\n    \"video_name\": \"pVuuVHA3RVw\",\n    \"answer\": \"surround masses\"\n  },\n  {\n    \"question\": \"what is on the right of the person in black clothes\",\n    \"video_name\": \"T62XjoKbN8M\",\n    \"answer\": \"auditorium\"\n  },\n  {\n    \"question\": \"what is on the right of the person in black clothes\",\n    \"video_name\": \"Son8UiVlzu0\",\n    \"answer\": \"silverware cadets\"\n  },\n  {\n    \"question\": \"what is on the right of the person in black clothes\",\n    \"video_name\": \"87F9xGaMwCw\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is on the right of the person in black clothes\",\n    \"video_name\": \"xND_kp-aYXw\",\n    \"answer\": \"piano frame\"\n  },\n  {\n    \"question\": \"what is on the right of the person in black clothes\",\n    \"video_name\": \"X6CBZwwRdQQ\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is on the right of the person in green clothes\",\n    \"video_name\": \"mMm1LfVb8Pg\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what is on the right of the person in green clothes\",\n    \"video_name\": \"ufrTSC3Dewg\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is on the right of the person in a green coat\",\n    \"video_name\": \"zKYiTA6WBS4\",\n    \"answer\": \"hair drier\"\n  },\n  {\n    \"question\": \"what is on the right of the person in a green coat\",\n    \"video_name\": \"QX5e5Mla660\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is on the right of the person in a  hat\",\n    \"video_name\": \"_V62aT_K8Zw\",\n    \"answer\": \"man in a suit\"\n  },\n  {\n    \"question\": \"what is on the right of the person in white clothes\",\n    \"video_name\": \"2UhbDOd43zU\",\n    \"answer\": \"table and chair\"\n  },\n  {\n    \"question\": \"what is on the right of the person in white shirt\",\n    \"video_name\": \"zqxzFxya6T8\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is on the right of the woman in black clothes\",\n    \"video_name\": \"DTI__3fkSzM\",\n    \"answer\": \"guardrail\"\n  },\n  {\n    \"question\": \"what is on the right of the woman in black clothes\",\n    \"video_name\": \"eLh51DwDp-E\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is on the right of the athlete\",\n    \"video_name\": \"tzP0lKSUv_o\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is on the right of the athlete\",\n    \"video_name\": \"LzPppxSWYNY\",\n    \"answer\": \"referee\"\n  },\n  {\n    \"question\": \"what is on the right of the person in the video\",\n    \"video_name\": \"TiQcZKml5Bs\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is on the right of the person in the video\",\n    \"video_name\": \"2k-qlZxc9l4\",\n    \"answer\": \"glass table\"\n  },\n  {\n    \"question\": \"what is the right side of the field\",\n    \"video_name\": \"HQVSLlKhupk\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is the right side of the field\",\n    \"video_name\": \"I1iUbyjWy7k\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is on the right side of the stage\",\n    \"video_name\": \"qWgF9hxNbP8\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is on the right side of the stage\",\n    \"video_name\": \"qSP3_C7QWpU\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is on the round table\",\n    \"video_name\": \"bYxVbXzQToI\",\n    \"answer\": \"wine glass\"\n  },\n  {\n    \"question\": \"what is on the shelf\",\n    \"video_name\": \"Bgi2Y85Mbwk\",\n    \"answer\": \"material science\"\n  },\n  {\n    \"question\": \"what does the standing person have on the hand\",\n    \"video_name\": \"JY9oOSfjj_E\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what is on the table\",\n    \"video_name\": \"bRgvAHL3dJk\",\n    \"answer\": \"seasoning\"\n  },\n  {\n    \"question\": \"what is on the table\",\n    \"video_name\": \"WPYQ27GjFKc\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"what is on the table\",\n    \"video_name\": \"Woelo4XJkHE\",\n    \"answer\": \"ice cream\"\n  },\n  {\n    \"question\": \"what is on the table\",\n    \"video_name\": \"CDecXoRSpIc\",\n    \"answer\": \"tool\"\n  },\n  {\n    \"question\": \"what is on the table\",\n    \"video_name\": \"chmegNbBTNc\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is she doing in the video\",\n    \"video_name\": \"_a527xEzhkw\",\n    \"answer\": \"down by sally gardens\"\n  },\n  {\n    \"question\": \"what is she doing in the video\",\n    \"video_name\": \"MpeN-IVIBc4\",\n    \"answer\": \"spray painting\"\n  },\n  {\n    \"question\": \"what is behind the man in black\",\n    \"video_name\": \"fe4r2-Y8k1U\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is behind the person in red clothes\",\n    \"video_name\": \"df5rlVZD0Zc\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is behind the person in striped clothes\",\n    \"video_name\": \"03c6QhTMDSs\",\n    \"answer\": \"club signs\"\n  },\n  {\n    \"question\": \"what is behind the bald man\",\n    \"video_name\": \"mLFjww64sX8\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is behind the person in a green coat\",\n    \"video_name\": \"ZJnXQw84xvo\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"FaP7unySMOs\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person who appears at the beginning of the video\",\n    \"video_name\": \"-pK2JheWido\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is the barber doing\",\n    \"video_name\": \"mLFjww64sX8\",\n    \"answer\": \"help man shave\"\n  },\n  {\n    \"question\": \"what's the benefit of this activity\",\n    \"video_name\": \"WINtiw-_3vg\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what's the benefit of this activity\",\n    \"video_name\": \"wdvQC41PGPk\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what's the benefit of this activity\",\n    \"video_name\": \"VpZzLvzU7_k\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what's the benefit of this activity\",\n    \"video_name\": \"vqyQF-1Zc_E\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what's the benefit of this activity\",\n    \"video_name\": \"Co_cpZWbzFk\",\n    \"answer\": \"decompression\"\n  },\n  {\n    \"question\": \"what's the benefit of this activity\",\n    \"video_name\": \"wh6P2C2avqc\",\n    \"answer\": \"physical fitness\"\n  },\n  {\n    \"question\": \"what's the benefit of this activity\",\n    \"video_name\": \"VvsYrfEvvUw\",\n    \"answer\": \"exercise muscles\"\n  },\n  {\n    \"question\": \"what's the benefit of this activity\",\n    \"video_name\": \"wnNiWoJxfSQ\",\n    \"answer\": \"relieve stress\"\n  },\n  {\n    \"question\": \"what's the benefit of this activity\",\n    \"video_name\": \"TiQcZKml5Bs\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is the woman with blond hair doing\",\n    \"video_name\": \"iQnnCZTl_7U\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is the woman with blond hair doing\",\n    \"video_name\": \"7UwRRkgQSj4\",\n    \"answer\": \"put on shoes\"\n  },\n  {\n    \"question\": \"what is the woman with blond hair doing\",\n    \"video_name\": \"ikUNgSw4Gys\",\n    \"answer\": \"lingual nail\"\n  },\n  {\n    \"question\": \"what is the woman with blond hair doing\",\n    \"video_name\": \"7CM2OYr-Csw\",\n    \"answer\": \"fly kite\"\n  },\n  {\n    \"question\": \"what is the man with blond hair doing\",\n    \"video_name\": \"IsV1n_kLpvs\",\n    \"answer\": \"cut roof tin\"\n  },\n  {\n    \"question\": \"what is the man with blond hair doing\",\n    \"video_name\": \"er5jUsRr4y0\",\n    \"answer\": \"gargle\"\n  },\n  {\n    \"question\": \"what is the man with blond hair doing\",\n    \"video_name\": \"8tCRp3NKtkI\",\n    \"answer\": \"skip lattices\"\n  },\n  {\n    \"question\": \"what's under the dog\",\n    \"video_name\": \"-8SgY4vW4xM\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what's under the parallel bars\",\n    \"video_name\": \"6Xsfwn5M6qs\",\n    \"answer\": \"gymnastic mat\"\n  },\n  {\n    \"question\": \"what's under the ship\",\n    \"video_name\": \"DHjoAOus3xM\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the boy with a stick doing\",\n    \"video_name\": \"kBTqTp0SKq8\",\n    \"answer\": \"play game\"\n  },\n  {\n    \"question\": \"what is the breed of the dog\",\n    \"video_name\": \"hQqoh0YxJYs\",\n    \"answer\": \"siberian husky\"\n  },\n  {\n    \"question\": \"what is the breed of the dog\",\n    \"video_name\": \"1xtKGlUp4Vg\",\n    \"answer\": \"poodle\"\n  },\n  {\n    \"question\": \"what is the cat doing in the video\",\n    \"video_name\": \"ZAX6OojMg38\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what is the chef doing\",\n    \"video_name\": \"MAGeYoFuCgo\",\n    \"answer\": \"cooking noodles\"\n  },\n  {\n    \"question\": \"what is the chef doing\",\n    \"video_name\": \"3i3SUPsyZtA\",\n    \"answer\": \"make egg roll\"\n  },\n  {\n    \"question\": \"what is the coach doing\",\n    \"video_name\": \"k6pN0WRr2Ws\",\n    \"answer\": \"collar exercises\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in black\",\n    \"video_name\": \"Son8UiVlzu0\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the shoes of the woman with blond hair\",\n    \"video_name\": \"7UwRRkgQSj4\",\n    \"answer\": \"black and white\"\n  },\n  {\n    \"question\": \"what color is the cat\",\n    \"video_name\": \"j81ndpMC9gI\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the kid's clothes\",\n    \"video_name\": \"sqv3M6MPKjQ\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the cow in the video\",\n    \"video_name\": \"2_H3lxMWvPo\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the dog\",\n    \"video_name\": \"SB0dU5oDvaE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the dog in the video\",\n    \"video_name\": \"Z2gpcqXWNek\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the gloves of the woman with long hair\",\n    \"video_name\": \"UNKf15ALDh8\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the clothes of the bald person\",\n    \"video_name\": \"m731tx8N5-Y\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what color is the clothes of the bald person\",\n    \"video_name\": \"SPjv6P5fxug\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in white clothes\",\n    \"video_name\": \"MDWaKr7Gu5Q\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the clothes of the person with a hat\",\n    \"video_name\": \"4z0meF-_b1I\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in white\",\n    \"video_name\": \"A8RQcVFtovg\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in yellow\",\n    \"video_name\": \"hQqoh0YxJYs\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in white clothes\",\n    \"video_name\": \"XCfrjEJkl3M\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in orange clothes\",\n    \"video_name\": \"WXH-Tj0-g4w\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in black clothes\",\n    \"video_name\": \"RLBfyIVpocE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in red\",\n    \"video_name\": \"eg2s5lOfKGI\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in red\",\n    \"video_name\": \"uty4eGb_vvU\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the badminton\",\n    \"video_name\": \"1dDAcUliXrQ\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the nail polish\",\n    \"video_name\": \"CDncYtx6Lwc\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the athlete's pants in the video\",\n    \"video_name\": \"5dN-MpXG9OE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the ball\",\n    \"video_name\": \"16bJAOf1SJI\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the ball\",\n    \"video_name\": \"VZ5R9goklpo\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the table\",\n    \"video_name\": \"X2toGKgWMpE\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what is the color of the table\",\n    \"video_name\": \"nkWMBJC2Qec\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what is the color of the cabinet door in the video\",\n    \"video_name\": \"IYLJU87AkOg\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the cake\",\n    \"video_name\": \"S7CW-si2JjA\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what is the color of the car\",\n    \"video_name\": \"Woelo4XJkHE\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the car\",\n    \"video_name\": \"nciIPwJTok8\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the chair in the video\",\n    \"video_name\": \"NjXCZYO3zwU\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the chef's clothes\",\n    \"video_name\": \"MAGeYoFuCgo\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the chopping board\",\n    \"video_name\": \"mVAP-WyEc7w\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the coach's clothes\",\n    \"video_name\": \"k6pN0WRr2Ws\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the cup\",\n    \"video_name\": \"nbOsU2Vmp1U\",\n    \"answer\": \"transparent\"\n  },\n  {\n    \"question\": \"what is the color of the curtains\",\n    \"video_name\": \"RXDVJlb97OI\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the helmet\",\n    \"video_name\": \"SNja9iUdAiI\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the helmet\",\n    \"video_name\": \"-vY2uUmv6Dk\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the horizontal bar\",\n    \"video_name\": \"72_9wLYUDGM\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the horizontal bar\",\n    \"video_name\": \"nGKc2t-NMYc\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the life jacket\",\n    \"video_name\": \"rM02KWikOo8\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in black clothes\",\n    \"video_name\": \"mUmSJps9WJI\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in black clothes\",\n    \"video_name\": \"xND_kp-aYXw\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what is the color of the people wearing glasses\",\n    \"video_name\": \"rnI9vGr5V1k\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the clothes of the person in black pants\",\n    \"video_name\": \"RlRrktN5iH4\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what is the color of the person's clothes in the video\",\n    \"video_name\": \"T3mcQnlsmq4\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the person's clothes in the video\",\n    \"video_name\": \"4uKoAk5NCkI\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the person's hair in the video\",\n    \"video_name\": \"NJRrhNrEMsk\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the person's hair in the video\",\n    \"video_name\": \"OYEKKzQjaJI\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the person's hair in the video\",\n    \"video_name\": \"6JZVpl2S2Mg\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the person's hair in the video\",\n    \"video_name\": \"Nb6AQxxrihA\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the person's pants in the video\",\n    \"video_name\": \"K5jY2chByPw\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the person's pants in the video\",\n    \"video_name\": \"sH_716hH_rY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the pot\",\n    \"video_name\": \"5nu47s7JrfY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the referee's clothes\",\n    \"video_name\": \"jEOtcfk220s\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the referee's clothes\",\n    \"video_name\": \"LzPppxSWYNY\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what color are the shoes of the person in red clothes\",\n    \"video_name\": \"xS4twW2gXqc\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the sitting person's clothes\",\n    \"video_name\": \"JvPVYSb_5o8\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the sitting person's clothes at the beginning\",\n    \"video_name\": \"k3WPc9HmtLM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the sportsman's clothes\",\n    \"video_name\": \"jibbgUBuuSA\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the sportsman's clothes\",\n    \"video_name\": \"svNcNLEPKMc\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the sportsman's clothes\",\n    \"video_name\": \"snhPrCNubYA\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the sportsman's clothes\",\n    \"video_name\": \"St1RRi-aeNM\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the springboard\",\n    \"video_name\": \"M2Y2Cw2kwDo\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what is the color of the standing man's clothes\",\n    \"video_name\": \"JY9oOSfjj_E\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the standing person's clothes\",\n    \"video_name\": \"rSGboODhu04\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the standing person's clothes\",\n    \"video_name\": \"kD_EJjQCLoY\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what is the color of the table\",\n    \"video_name\": \"n9EdHGz7ArI\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the towel\",\n    \"video_name\": \"nciIPwJTok8\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color are the socks of the person in white clothes\",\n    \"video_name\": \"mnNgZ-D5cKc\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the wall\",\n    \"video_name\": \"JKJ_EvP7JwQ\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the weeding machine\",\n    \"video_name\": \"mMm1LfVb8Pg\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the weeding machine\",\n    \"video_name\": \"brJIpRGcBFU\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in black clothes\",\n    \"video_name\": \"SidTquTAtyk\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in black clothes\",\n    \"video_name\": \"lUmjnFf7IPQ\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of fencing\",\n    \"video_name\": \"SNja9iUdAiI\",\n    \"answer\": \"much much safer\"\n  },\n  {\n    \"question\": \"how difficult is the activity\",\n    \"video_name\": \"N4qhryre_TE\",\n    \"answer\": \"difficulty\"\n  },\n  {\n    \"question\": \"how difficult is the activity\",\n    \"video_name\": \"96vBhCFBbQk\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the activity\",\n    \"video_name\": \"nDM4E9CD_y0\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the the dance\",\n    \"video_name\": \"sNTOUuE7ZfM\",\n    \"answer\": \"much simpler\"\n  },\n  {\n    \"question\": \"how difficult is the the dance\",\n    \"video_name\": \"RXDVJlb97OI\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the the dance\",\n    \"video_name\": \"4j_LRkB4T6c\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the the dance\",\n    \"video_name\": \"lPw_BRbPw5s\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the activity of decorating a christmas tree\",\n    \"video_name\": \"T0nCDJuikuA\",\n    \"answer\": \"much simpler\"\n  },\n  {\n    \"question\": \"how difficult is to build a wall\",\n    \"video_name\": \"LYTWYSqsTCE\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is to play the musical instrument\",\n    \"video_name\": \"S6Sg1l78IW0\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is to ride a horse\",\n    \"video_name\": \"4H9MMsj4mcM\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"jEOtcfk220s\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"rMj2JWNJzkw\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"rsU73H6VyG8\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"s6fEIuHPJ4Y\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"s9PkkDEl6aY\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"Jhcis4S2Vsg\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"RLBfyIVpocE\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"jibbgUBuuSA\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"k6pN0WRr2Ws\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"s84PG-JfEwc\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"RXT17X7lRoQ\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"rM02KWikOo8\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"30hcRe-5_3M\",\n    \"answer\": \"difficulty\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"28LdZLfdmMQ\",\n    \"answer\": \"difficulty\"\n  },\n  {\n    \"question\": \"how difficult is the play \",\n    \"video_name\": \"xND_kp-aYXw\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the play \",\n    \"video_name\": \"62M1FRXsUiM\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"MQ9Ojge7CyA\",\n    \"answer\": \"difficulty\"\n  },\n  {\n    \"question\": \"how difficult is the sport in the video \",\n    \"video_name\": \"87F9xGaMwCw\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the activity in the video \",\n    \"video_name\": \"sPK-sbHIb3w\",\n    \"answer\": \"more difficult\"\n  },\n  {\n    \"question\": \"how difficult is the operation in the video \",\n    \"video_name\": \"WXH-Tj0-g4w\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the operation in the video \",\n    \"video_name\": \"NjXCZYO3zwU\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the operation in the video \",\n    \"video_name\": \"n832gDqfWl4\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the operation in the video \",\n    \"video_name\": \"MpeN-IVIBc4\",\n    \"answer\": \"difficulty\"\n  },\n  {\n    \"question\": \"how difficult is the operation in the video \",\n    \"video_name\": \"nciIPwJTok8\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"what is the dog doing in the video\",\n    \"video_name\": \"hQqoh0YxJYs\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what festival is in the video\",\n    \"video_name\": \"Uae2MWoldTU\",\n    \"answer\": \"christmas\"\n  },\n  {\n    \"question\": \"what is the first letter of the first sentence at the beginning of the video\",\n    \"video_name\": \"vnZmsOgWs0o\",\n    \"answer\": \"s\"\n  },\n  {\n    \"question\": \"what is the first letter of the first sentence at the beginning of the video\",\n    \"video_name\": \"V6Sy8zpJSuc\",\n    \"answer\": \"s\"\n  },\n  {\n    \"question\": \"what is the first letter of the first sentence at the beginning of the video\",\n    \"video_name\": \"V08Q-DbT0GQ\",\n    \"answer\": \"e\"\n  },\n  {\n    \"question\": \"what is the person who first appears in the video doing\",\n    \"video_name\": \"blbaWHbtqTI\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is the fitness equipment in the video\",\n    \"video_name\": \"wh6P2C2avqc\",\n    \"answer\": \"exercise bike\"\n  },\n  {\n    \"question\": \"what is under the feet of the person in red\",\n    \"video_name\": \"390iVq_urQM\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is under the feet of the man with a hat\",\n    \"video_name\": \"uWfQcDvel84\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is under the feet of the person in black clothes\",\n    \"video_name\": \"nhQTxZlzG1Q\",\n    \"answer\": \"cement floor\"\n  },\n  {\n    \"question\": \"what is under the feet of the person in purple clothes\",\n    \"video_name\": \"nGKc2t-NMYc\",\n    \"answer\": \"horizontal bar\"\n  },\n  {\n    \"question\": \"what is under the feet of the person in white clothes\",\n    \"video_name\": \"pKOy4HJwCqo\",\n    \"answer\": \"surf board\"\n  },\n  {\n    \"question\": \"what is under the feet of the woman in white clothes\",\n    \"video_name\": \"vezvHLPR3P0\",\n    \"answer\": \"circular site\"\n  },\n  {\n    \"question\": \"what is under the feet of the woman in white clothes\",\n    \"video_name\": \"utgRhyBvtRU\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is under the feet of the person in the video\",\n    \"video_name\": \"ikUNgSw4Gys\",\n    \"answer\": \"woman in white\"\n  },\n  {\n    \"question\": \"what is in front of the woman\",\n    \"video_name\": \"F7K2oT7ADkk\",\n    \"answer\": \"water basin\"\n  },\n  {\n    \"question\": \"what is in front of the woman\",\n    \"video_name\": \"Feq-2NIDl94\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the athlete\",\n    \"video_name\": \"svNcNLEPKMc\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is in front of the athlete\",\n    \"video_name\": \"snhPrCNubYA\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is in front of the athlete\",\n    \"video_name\": \"sPK-sbHIb3w\",\n    \"answer\": \"rim\"\n  },\n  {\n    \"question\": \"what is in front of the audience\",\n    \"video_name\": \"jEOtcfk220s\",\n    \"answer\": \"volleyball court\"\n  },\n  {\n    \"question\": \"what is in front of the bald person\",\n    \"video_name\": \"SPjv6P5fxug\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what is in front of the camel\",\n    \"video_name\": \"VFC-V06hVj0\",\n    \"answer\": \"blue dress man\"\n  },\n  {\n    \"question\": \"what is in front of the chef\",\n    \"video_name\": \"MAGeYoFuCgo\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is in front of the girl in the video\",\n    \"video_name\": \"_G4EVIG9YaE\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is in front of the horse\",\n    \"video_name\": \"BMy7CBVxH5M\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is in front of the house\",\n    \"video_name\": \"ryFSf08mrkA\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what is in front of the house\",\n    \"video_name\": \"uM7QSskmloo\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is in front of the house\",\n    \"video_name\": \"4UdxT6Zmero\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is in front of the boy\",\n    \"video_name\": \"09ocXmGF-T4\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"what is in front of the player with a long pole\",\n    \"video_name\": \"rsU73H6VyG8\",\n    \"answer\": \"pads\"\n  },\n  {\n    \"question\": \"what is in front of the pavilion\",\n    \"video_name\": \"rMj2JWNJzkw\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"YRGiRmcHdUY\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"Pjnuoa4o55c\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"3uaQ0cULMgc\",\n    \"answer\": \"automobile\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"qaml4eEk9hY\",\n    \"answer\": \"vacuum cleaner\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"5nu47s7JrfY\",\n    \"answer\": \"cooking bench\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"nbOsU2Vmp1U\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"a4gI4LC1rJk\",\n    \"answer\": \"kitchen sink\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"zEttEkAdHts\",\n    \"answer\": \"notes\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"nbHBjdE8oNo\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"AB480dHyDeM\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"oT6WUU8-dgs\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"qObVIn_GI10\",\n    \"answer\": \"juicer\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"mZYWfmsYQPA\",\n    \"answer\": \"table tennis table\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"Z2gpcqXWNek\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"yGTIEmZ7S2w\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"AB5cWhlQ0Kk\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"T3mcQnlsmq4\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"n9EdHGz7ArI\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"04qggWACGWk\",\n    \"answer\": \"bathing pool\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"ngMxE3CnGVg\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"LL0uQO4q_wY\",\n    \"answer\": \"curling runway\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"Aj5ncX5G_2w\",\n    \"answer\": \"tool\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"yCpdDJAW-jU\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"Of2Umm79Kxg\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"z6pmp8TrAVo\",\n    \"answer\": \"kitchen sink\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"BBKSKU6dGGk\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"v0azz4XzW_s\",\n    \"answer\": \"stone\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"Yg03CCu9GMo\",\n    \"answer\": \"bar counter\"\n  },\n  {\n    \"question\": \"what is in front of the person in the video\",\n    \"video_name\": \"Nb6AQxxrihA\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the athlete at the beginning of the video\",\n    \"video_name\": \"s6fEIuHPJ4Y\",\n    \"answer\": \"protective net\"\n  },\n  {\n    \"question\": \"what is in front of the playing field\",\n    \"video_name\": \"f6vZaMgqDvQ\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is in front of the person in red\",\n    \"video_name\": \"ldAHwbF8uWI\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is in front of the referee\",\n    \"video_name\": \"RLBfyIVpocE\",\n    \"answer\": \"guardrail net\"\n  },\n  {\n    \"question\": \"what is in front of the referee\",\n    \"video_name\": \"b_mWxzi_aps\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"what is in front of the runner when he starts\",\n    \"video_name\": \"pop8YCGQpWk\",\n    \"answer\": \"bunker\"\n  },\n  {\n    \"question\": \"what is in front of the runner when he starts\",\n    \"video_name\": \"pmmQuksmTvw\",\n    \"answer\": \"hopping viaduct\"\n  },\n  {\n    \"question\": \"what is in front of the second person appears in the video\",\n    \"video_name\": \"3oy4P1gyU4k\",\n    \"answer\": \"pool table\"\n  },\n  {\n    \"question\": \"what is in front of the boat in the video\",\n    \"video_name\": \"zA2zZPyYLlU\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is in front of the field\",\n    \"video_name\": \"hQqoh0YxJYs\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the girl doing\",\n    \"video_name\": \"kMtjk1KFvXQ\",\n    \"answer\": \"balance beam\"\n  },\n  {\n    \"question\": \"what is behind the goal\",\n    \"video_name\": \"v6P6bBPBXYw\",\n    \"answer\": \"billboard\"\n  },\n  {\n    \"question\": \"what is the hairstyle of the person in red clothes\",\n    \"video_name\": \"x6pYeqq3O08\",\n    \"answer\": \"curly hair\"\n  },\n  {\n    \"question\": \"what is the role of the dog\",\n    \"video_name\": \"PD-FXR7O9J0\",\n    \"answer\": \"pet dog\"\n  },\n  {\n    \"question\": \"what is the job of the person in blue clothes\",\n    \"video_name\": \"P8S8PIyPXxY\",\n    \"answer\": \"hairstylist\"\n  },\n  {\n    \"question\": \"what is the job of the person in blue clothes\",\n    \"video_name\": \"sPK-sbHIb3w\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what is the job of the person in yellow clothes\",\n    \"video_name\": \"CfqnHsp6olc\",\n    \"answer\": \"referee\"\n  },\n  {\n    \"question\": \"what is the lady doing in the video\",\n    \"video_name\": \"w4pO-1-FG5w\",\n    \"answer\": \"haircut\"\n  },\n  {\n    \"question\": \"what is the lady doing in the video\",\n    \"video_name\": \"CDncYtx6Lwc\",\n    \"answer\": \"nail polish\"\n  },\n  {\n    \"question\": \"what is the lady doing in the video\",\n    \"video_name\": \"W97fdJ2Rn9g\",\n    \"answer\": \"make up\"\n  },\n  {\n    \"question\": \"what is on the left of the river\",\n    \"video_name\": \"uktUeF3Fy7o\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is on the left of the river\",\n    \"video_name\": \"uJAL31wAD2A\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is the little boy in the video doing\",\n    \"video_name\": \"NjD6iWI3NvM\",\n    \"answer\": \"take exercise\"\n  },\n  {\n    \"question\": \"what is the little boy in the video doing\",\n    \"video_name\": \"raxeBxPQqlk\",\n    \"answer\": \"play darts\"\n  },\n  {\n    \"question\": \"what is the little boy in the video doing\",\n    \"video_name\": \"Woelo4XJkHE\",\n    \"answer\": \"eat ice cream\"\n  },\n  {\n    \"question\": \"what is the little girl doing\",\n    \"video_name\": \"e4kS-n7_LRU\",\n    \"answer\": \"eat ice cream\"\n  },\n  {\n    \"question\": \"what is the little girl in the video doing\",\n    \"video_name\": \"f8SWWURHV1M\",\n    \"answer\": \"play piano\"\n  },\n  {\n    \"question\": \"what is the man doing\",\n    \"video_name\": \"eiN5XPmwcEM\",\n    \"answer\": \"shave\"\n  },\n  {\n    \"question\": \"what is the man doing\",\n    \"video_name\": \"EDDbcCBnTQM\",\n    \"answer\": \"water spray\"\n  },\n  {\n    \"question\": \"what is the man doing\",\n    \"video_name\": \"KXcVYfMuUGw\",\n    \"answer\": \"training dog\"\n  },\n  {\n    \"question\": \"what is the man doing in the video\",\n    \"video_name\": \"FADShG5lyB8\",\n    \"answer\": \"bodybuilding\"\n  },\n  {\n    \"question\": \"what is the man doing in the video\",\n    \"video_name\": \"dKJMP8EmZjw\",\n    \"answer\": \"sailing\"\n  },\n  {\n    \"question\": \"what is the man doing in the video\",\n    \"video_name\": \"dskswWtslKc\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what is the man doing in the video\",\n    \"video_name\": \"e0yu4WgiZUM\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what is the man in a black coat doing\",\n    \"video_name\": \"fe4r2-Y8k1U\",\n    \"answer\": \"tell about\"\n  },\n  {\n    \"question\": \"what is the man in a blue coat doing\",\n    \"video_name\": \"fhOmyyI0eQE\",\n    \"answer\": \"pruning trees\"\n  },\n  {\n    \"question\": \"what is the person in a gray coat doing\",\n    \"video_name\": \"faqijFZWQlo\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is the man in a red coat doing\",\n    \"video_name\": \"df5rlVZD0Zc\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what is the man in a red coat doing\",\n    \"video_name\": \"fh9d3gpT-8I\",\n    \"answer\": \"blow up drum\"\n  },\n  {\n    \"question\": \"what is the man in a striped shirt doing\",\n    \"video_name\": \"7H1KylJRii8\",\n    \"answer\": \"wine dressing\"\n  },\n  {\n    \"question\": \"what is the man in a white coat doing\",\n    \"video_name\": \"DHjoAOus3xM\",\n    \"answer\": \"rowing\"\n  },\n  {\n    \"question\": \"what is the man in a white coat doing\",\n    \"video_name\": \"fh21bbDSVmA\",\n    \"answer\": \"gymnastics competition\"\n  },\n  {\n    \"question\": \"what is the man in black doing\",\n    \"video_name\": \"fvEaC-fTR4A\",\n    \"answer\": \"play football on table\"\n  },\n  {\n    \"question\": \"what is the man in black doing\",\n    \"video_name\": \"DOI6tsATsE4\",\n    \"answer\": \"show turns eye\"\n  },\n  {\n    \"question\": \"what is in front of this person\",\n    \"video_name\": \"laU1Hvm5Dis\",\n    \"answer\": \"guard net\"\n  },\n  {\n    \"question\": \"what is in front of the video\",\n    \"video_name\": \"0XTAq_xvquw\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is in front of the video\",\n    \"video_name\": \"5oyenoaVB-w\",\n    \"answer\": \"drawing board\"\n  },\n  {\n    \"question\": \"what is the man in a hat doing\",\n    \"video_name\": \"2ShsRSJ9cqE\",\n    \"answer\": \"welding\"\n  },\n  {\n    \"question\": \"what is the man in a red hat doing\",\n    \"video_name\": \"qKp2QCheLwU\",\n    \"answer\": \"play musical instrument\"\n  },\n  {\n    \"question\": \"what is the man in a red hat doing\",\n    \"video_name\": \"9SIPJd4Hls4\",\n    \"answer\": \"make salad\"\n  },\n  {\n    \"question\": \"what is the person in white clothes doing\",\n    \"video_name\": \"kistIwzeQOU\",\n    \"answer\": \"wallpaper\"\n  },\n  {\n    \"question\": \"what is on the right side of the man\",\n    \"video_name\": \"e0yu4WgiZUM\",\n    \"answer\": \"buoy\"\n  },\n  {\n    \"question\": \"what is the person in a hat doing in the video\",\n    \"video_name\": \"uWfQcDvel84\",\n    \"answer\": \"weed\"\n  },\n  {\n    \"question\": \"what is the person in a hat wearing on the right hand\",\n    \"video_name\": \"5c5PFa8GR-A\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is the person with a tie doing\",\n    \"video_name\": \"sNTOUuE7ZfM\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does the man in the video wear on his head\",\n    \"video_name\": \"0xBP-TSsqb0\",\n    \"answer\": \"hair hoop\"\n  },\n  {\n    \"question\": \"what does the man in the video wear on his head\",\n    \"video_name\": \"jbCQY7V7O1s\",\n    \"answer\": \"headset\"\n  },\n  {\n    \"question\": \"what is the person with a hat doing\",\n    \"video_name\": \"IGT0dIKDGCw\",\n    \"answer\": \"flying discses\"\n  },\n  {\n    \"question\": \"what is the person with a hat doing\",\n    \"video_name\": \"IGPZFun1Ok4\",\n    \"answer\": \"gambling\"\n  },\n  {\n    \"question\": \"what is the person with a microphone doing\",\n    \"video_name\": \"FxpP7lqvm30\",\n    \"answer\": \"explain games rule\"\n  },\n  {\n    \"question\": \"how dangerous is this activity in the video\",\n    \"video_name\": \"nvcMYiZhUuo\",\n    \"answer\": \"high\"\n  },\n  {\n    \"question\": \"how dangerous is this activity in the video\",\n    \"video_name\": \"YHqFNnhaFAY\",\n    \"answer\": \"high\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"yRQpolWhJ6A\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"NNiJfr_ChH4\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"Ye_uVlSo1HI\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"AguxVxEWEs0\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"nnEPsdA0080\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"Z6b4oFjIznU\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"a2IvS0xbNGQ\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"oKJ1BnvHbbA\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"aH39BSM0-Ag\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"OQEKZXv6jSw\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"_l251ZuOCYU\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"aGvpDyMNATI\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"YMOYyt3kSOs\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"YVqRQDkdA8U\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"AjizhJc_reI\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"otMw5GJWYWs\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"ys4_S3JHQjs\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"oflwFZj9PNY\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"y0ca-LbQErY\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"nP1Bk-vJgVg\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the name of the ball in video\",\n    \"video_name\": \"BdRH3lpopLQ\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what is the name of the instrument in the video\",\n    \"video_name\": \"X_K7Aa3Aa-E\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is the name of the sport in the video\",\n    \"video_name\": \"prBiREYQ2vQ\",\n    \"answer\": \"long distance run\"\n  },\n  {\n    \"question\": \"what is the name of the sport in the video\",\n    \"video_name\": \"bBRzBh0gAZQ\",\n    \"answer\": \"long jump\"\n  },\n  {\n    \"question\": \"what is the name of the activity in the video\",\n    \"video_name\": \"WPYQ27GjFKc\",\n    \"answer\": \"twenty one points\"\n  },\n  {\n    \"question\": \"what is the name of the activity in the video\",\n    \"video_name\": \"b_mWxzi_aps\",\n    \"answer\": \"wrist wrestling\"\n  },\n  {\n    \"question\": \"what is the name of the activity in the video\",\n    \"video_name\": \"P5D9S9NzQ28\",\n    \"answer\": \"tennis sports\"\n  },\n  {\n    \"question\": \"what is the name of the activity in the video\",\n    \"video_name\": \"pcLGX5qvUcI\",\n    \"answer\": \"ice hockey movement\"\n  },\n  {\n    \"question\": \"what is the name of the activity in the video\",\n    \"video_name\": \"pmmQuksmTvw\",\n    \"answer\": \"pole vault\"\n  },\n  {\n    \"question\": \"what is the name of the activity in the video\",\n    \"video_name\": \"pop8YCGQpWk\",\n    \"answer\": \"long jump\"\n  },\n  {\n    \"question\": \"what is the name of the activity in the video\",\n    \"video_name\": \"p1QGn0IzfW0\",\n    \"answer\": \"parallel bars movement\"\n  },\n  {\n    \"question\": \"what is the name of the activity in the video\",\n    \"video_name\": \"pKOy4HJwCqo\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what is the name of the activity in the video\",\n    \"video_name\": \"-pK2JheWido\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the name of the activity in the video\",\n    \"video_name\": \"Pr5K2Jh2X94\",\n    \"answer\": \"three step jump\"\n  },\n  {\n    \"question\": \"what is the name of the activity in the video\",\n    \"video_name\": \"pMtu7fOHdII\",\n    \"answer\": \"ice hockey\"\n  },\n  {\n    \"question\": \"what is the number of people in red clothes\",\n    \"video_name\": \"xS4twW2gXqc\",\n    \"answer\": \"705\"\n  },\n  {\n    \"question\": \"what is the old man doing in the video\",\n    \"video_name\": \"jt-Vnap5KP4\",\n    \"answer\": \"mouthpiece\"\n  },\n  {\n    \"question\": \"what kind of drink does the person in the video take\",\n    \"video_name\": \"d_A-ylxNbFU\",\n    \"answer\": \"budweiser\"\n  },\n  {\n    \"question\": \"what is the person in the video holding\",\n    \"video_name\": \"Of2Umm79Kxg\",\n    \"answer\": \"wrench\"\n  },\n  {\n    \"question\": \"what is behind the person in the video\",\n    \"video_name\": \"d_A-ylxNbFU\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is on top of the person in the video\",\n    \"video_name\": \"-YwrMtiqHKg\",\n    \"answer\": \"ceiling\"\n  },\n  {\n    \"question\": \"what is on top of the person in the video\",\n    \"video_name\": \"yUvSujxnFE0\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what's the person in a black vest doing in the video\",\n    \"video_name\": \"1YU4MSK80cQ\",\n    \"answer\": \"parallel bars exercise\"\n  },\n  {\n    \"question\": \"what's the person in a black vest doing in the video\",\n    \"video_name\": \"qWgF9hxNbP8\",\n    \"answer\": \"boxing match\"\n  },\n  {\n    \"question\": \"what's the person in a black vest doing in the video\",\n    \"video_name\": \"ZgdMnfTqblw\",\n    \"answer\": \"play basketball\"\n  },\n  {\n    \"question\": \"what's the person in a blue hoodie doing\",\n    \"video_name\": \"G0VWk5WqDp0\",\n    \"answer\": \"throwing javelin\"\n  },\n  {\n    \"question\": \"what's the person in a gray coat doing\",\n    \"video_name\": \"Z-sWZUYL0ZU\",\n    \"answer\": \"wiping cupboard\"\n  },\n  {\n    \"question\": \"what's the person in a gray vest doing\",\n    \"video_name\": \"qZMcbBsQorE\",\n    \"answer\": \"take exercise\"\n  },\n  {\n    \"question\": \"what's the person in a hat doing in the video\",\n    \"video_name\": \"V6Sy8zpJSuc\",\n    \"answer\": \"seal carpets\"\n  },\n  {\n    \"question\": \"what's the person in a white shirt doing\",\n    \"video_name\": \"qZtdMXkHRXw\",\n    \"answer\": \"throwing darts\"\n  },\n  {\n    \"question\": \"what's the person in a white hat doing\",\n    \"video_name\": \"Es3PxD9oi4I\",\n    \"answer\": \"water polo\"\n  },\n  {\n    \"question\": \"what's the person in a white vest doing\",\n    \"video_name\": \"hIYN8cC3pEA\",\n    \"answer\": \"poweriser\"\n  },\n  {\n    \"question\": \"what's the person in a white vest doing\",\n    \"video_name\": \"qSP3_C7QWpU\",\n    \"answer\": \"boxing match\"\n  },\n  {\n    \"question\": \"what is the person in the video wearing on the right hand \",\n    \"video_name\": \"6JZVpl2S2Mg\",\n    \"answer\": \"hair rope\"\n  },\n  {\n    \"question\": \"what is the unclothed person in the video doing\",\n    \"video_name\": \"PJ7HOHdOdy4\",\n    \"answer\": \"wash socks\"\n  },\n  {\n    \"question\": \"what is under the person's foot in the video\",\n    \"video_name\": \"eKdtOKqLMRE\",\n    \"answer\": \"toilet paper\"\n  },\n  {\n    \"question\": \"what is the hairstyle of the person in the video\",\n    \"video_name\": \"K5jY2chByPw\",\n    \"answer\": \"braided hair\"\n  },\n  {\n    \"question\": \"what is the hairstyle of the person in the video\",\n    \"video_name\": \"YaC68rE4lwA\",\n    \"answer\": \"curly hair\"\n  },\n  {\n    \"question\": \"what is the job of the person in the video\",\n    \"video_name\": \"ej_fSoVO0R8\",\n    \"answer\": \"pastry master\"\n  },\n  {\n    \"question\": \"what is the job of the person in the video\",\n    \"video_name\": \"eKdtOKqLMRE\",\n    \"answer\": \"charlie adams\"\n  },\n  {\n    \"question\": \"what is on the right of the player \",\n    \"video_name\": \"SjlILJ2st-I\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the job the person in black clothes\",\n    \"video_name\": \"W2Mh01F3K5c\",\n    \"answer\": \"decorator\"\n  },\n  {\n    \"question\": \"what is the person doing\",\n    \"video_name\": \"-Fk62y-1WHo\",\n    \"answer\": \"play musical instrument\"\n  },\n  {\n    \"question\": \"what is behind the person\",\n    \"video_name\": \"FtRGOgg0Qh8\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is behind the athlete\",\n    \"video_name\": \"FkbpD1zWdPw\",\n    \"answer\": \"spectator seats\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"H_IfIsKQ3Zw\",\n    \"answer\": \"colleague\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"I3tqWc5wG78\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the person and the dog\",\n    \"video_name\": \"auO4r3De6vc\",\n    \"answer\": \"partner\"\n  },\n  {\n    \"question\": \"what is the relationship of the woman and the black dog\",\n    \"video_name\": \"idkQqlwyff8\",\n    \"answer\": \"master and servant\"\n  },\n  {\n    \"question\": \"what is the relationship of the players in the video\",\n    \"video_name\": \"4LpqPUWHH5k\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"JbW8efAOOt0\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the person in white and the person in red\",\n    \"video_name\": \"AjizhJc_reI\",\n    \"answer\": \"mother and daughter\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in green\",\n    \"video_name\": \"HQVSLlKhupk\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"sk_pnoqXxhs\",\n    \"answer\": \"whole family\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"RgiVa9GMYxE\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"j81ndpMC9gI\",\n    \"answer\": \"spouse\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"jbCQY7V7O1s\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"blbaWHbtqTI\",\n    \"answer\": \"smoke friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"jhy6npIdn5o\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"rGOOlcdpfLg\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"b0qGo-HT5iQ\",\n    \"answer\": \"doctor patient relationship\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"JcAAwYpJhm8\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"PBYg9ekd86w\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"JGxf-jke0e8\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in white\",\n    \"video_name\": \"NDq29HQJVP0\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in white\",\n    \"video_name\": \"nc_NMp3vAH0\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship of the players\",\n    \"video_name\": \"pVuuVHA3RVw\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship of the players\",\n    \"video_name\": \"pop8YCGQpWk\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship of the players\",\n    \"video_name\": \"pmmQuksmTvw\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship of the players\",\n    \"video_name\": \"Pr5K2Jh2X94\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship of the four people in the video\",\n    \"video_name\": \"cYvFlrAnlzA\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"P5D9S9NzQ28\",\n    \"answer\": \"teaching relationship\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"wcxEkMoOmBk\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"i5qTK0mInTc\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"BMy7CBVxH5M\",\n    \"answer\": \"colleague\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"WNgI2qBvPrY\",\n    \"answer\": \"mother and daughter\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"Woelo4XJkHE\",\n    \"answer\": \"father and son\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"I16FTpQQiic\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"4UdxT6Zmero\",\n    \"answer\": \"whole family\"\n  },\n  {\n    \"question\": \"what is the relationship of the people on the stage\",\n    \"video_name\": \"P2xT7dlyX8Y\",\n    \"answer\": \"partner\"\n  },\n  {\n    \"question\": \"what is the relationship of the seven people in the video\",\n    \"video_name\": \"uIHWHnItois\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the three people in the video\",\n    \"video_name\": \"uJ4OZfCjViM\",\n    \"answer\": \"brother\"\n  },\n  {\n    \"question\": \"what is the relationship of the three people in the video\",\n    \"video_name\": \"uktUeF3Fy7o\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the three people in the video\",\n    \"video_name\": \"PJ7HOHdOdy4\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two girls in the video\",\n    \"video_name\": \"EXPYu9bfNcE\",\n    \"answer\": \"colleague\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people\",\n    \"video_name\": \"VSsZZZHn1L0\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people\",\n    \"video_name\": \"9ZVWD0ZKXZg\",\n    \"answer\": \"partner\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people\",\n    \"video_name\": \"_fLhtWSCaSo\",\n    \"answer\": \"colleague\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people\",\n    \"video_name\": \"Df7AnfIEhYw\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"zH1MiuiTsx8\",\n    \"answer\": \"father and son\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"ZJnXQw84xvo\",\n    \"answer\": \"mother and daughter\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the game\",\n    \"video_name\": \"b_mWxzi_aps\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"cQgP0-Id-p4\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"teffBaLEZQg\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"er5jUsRr4y0\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"afMQA352X_A\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"4LoAbHdHWqM\",\n    \"answer\": \"father and daughter\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"TtewPltwuXw\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"d4sX1jnL4BY\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"AB5cWhlQ0Kk\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"ufrTSC3Dewg\",\n    \"answer\": \"father and son\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"MonWdYi3a0I\",\n    \"answer\": \"lovers\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"W2Mh01F3K5c\",\n    \"answer\": \"colleague\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in the video\",\n    \"video_name\": \"8IrulONeC28\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two teams on the field\",\n    \"video_name\": \"BdRH3lpopLQ\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship of the people\",\n    \"video_name\": \"FaP7unySMOs\",\n    \"answer\": \"classmate\"\n  },\n  {\n    \"question\": \"what is the relationship of the people\",\n    \"video_name\": \"ds3mAmUPxYA\",\n    \"answer\": \"partner\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people\",\n    \"video_name\": \"09ocXmGF-T4\",\n    \"answer\": \"father and son\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people\",\n    \"video_name\": \"DOI6tsATsE4\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people\",\n    \"video_name\": \"9eniCub7u60\",\n    \"answer\": \"dancing partner\"\n  },\n  {\n    \"question\": \"what is the relationship of the two people in red\",\n    \"video_name\": \"iAes5SVj_Fg\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is on the right of the man in the video\",\n    \"video_name\": \"cQgP0-Id-p4\",\n    \"answer\": \"video player\"\n  },\n  {\n    \"question\": \"what is on the right of the woman in the video\",\n    \"video_name\": \"CuLC5G7yWxA\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is on the right of the woman in the video\",\n    \"video_name\": \"sfbgZOHLkII\",\n    \"answer\": \"row of fences\"\n  },\n  {\n    \"question\": \"what is on the right of the person in green clothes\",\n    \"video_name\": \"d6gGZFQOxOg\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is on the right of the person in white clothes\",\n    \"video_name\": \"penDFcEdu7U\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of archery\",\n    \"video_name\": \"AwcM25G1h-g\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of gymnastics \",\n    \"video_name\": \"LjPKKqe-VO0\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of gymnastics \",\n    \"video_name\": \"u0Dc0ZtudXY\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of playing football\",\n    \"video_name\": \"TGffgRXc1eQ\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of rope skipping\",\n    \"video_name\": \"DIVaPURJHPo\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of running\",\n    \"video_name\": \"tgPD2SZo_DY\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of running\",\n    \"video_name\": \"TXSOSSGJYO0\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of skiing\",\n    \"video_name\": \"hxErUs42bBI\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of skiing\",\n    \"video_name\": \"fbr7v8RMkf8\",\n    \"answer\": \"low grade\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of surfing\",\n    \"video_name\": \"dskswWtslKc\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of surfing\",\n    \"video_name\": \"1vTHJMMPZN0\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how dangerous is the sport in the video\",\n    \"video_name\": \"3Nd3Aai1bVA\",\n    \"answer\": \"higher\"\n  },\n  {\n    \"question\": \"how dangerous is the competition in the video\",\n    \"video_name\": \"Df7AnfIEhYw\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"how dangerous is the game in the video\",\n    \"video_name\": \"dGT_KGb0gyw\",\n    \"answer\": \"low grade\"\n  },\n  {\n    \"question\": \"how dangerous is the sport in the video\",\n    \"video_name\": \"-vY2uUmv6Dk\",\n    \"answer\": \"higher\"\n  },\n  {\n    \"question\": \"how dangerous is the sport in the video\",\n    \"video_name\": \"wE9sQbGdeAk\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of surfing\",\n    \"video_name\": \"uktUeF3Fy7o\",\n    \"answer\": \"high\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of throwing a javelin\",\n    \"video_name\": \"1QIUV7WYKXg\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of weightlifting \",\n    \"video_name\": \"tzP0lKSUv_o\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of weightlifting \",\n    \"video_name\": \"tRFK1BMKaRo\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"how dangerous is the activity in the video\",\n    \"video_name\": \"JB-ynj70saA\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of cycling\",\n    \"video_name\": \"SjlILJ2st-I\",\n    \"answer\": \"much more dangerous\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of drifting\",\n    \"video_name\": \"lYP05IRcOPE\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how dangerous is the sport in the video\",\n    \"video_name\": \"JR9LosQmMvg\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how dangerous is the sport in the video\",\n    \"video_name\": \"K49OCArHjXI\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how dangerous is the sport in the video\",\n    \"video_name\": \"JvPVYSb_5o8\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"how dangerous is the activity in the video\",\n    \"video_name\": \"SJ7jk5XAjng\",\n    \"answer\": \"bit safe\"\n  },\n  {\n    \"question\": \"how dangerous is the activity of wrestling\",\n    \"video_name\": \"SPjv6P5fxug\",\n    \"answer\": \"much more dangerous\"\n  },\n  {\n    \"question\": \"what is the role of wearing hat\",\n    \"video_name\": \"C7yd6yEkxXE\",\n    \"answer\": \"protect head\"\n  },\n  {\n    \"question\": \"how safe is this activity of archery\",\n    \"video_name\": \"V-46E7jMm-Y\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this activity of boxing\",\n    \"video_name\": \"afMQA352X_A\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this activity of diving\",\n    \"video_name\": \"f2DS_AVorrY\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this activity of diving\",\n    \"video_name\": \"d4sX1jnL4BY\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this activity of gymnastics\",\n    \"video_name\": \"FEOdYNR4gls\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"how safe is this activity of playing football\",\n    \"video_name\": \"_SJOVswvGRc\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this activity of long jump\",\n    \"video_name\": \"ut1AoOzqL4k\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this activity of skiing\",\n    \"video_name\": \"vnZmsOgWs0o\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this game in the video\",\n    \"video_name\": \"OcL7ZhBCkxQ\",\n    \"answer\": \"commonly\"\n  },\n  {\n    \"question\": \"how safe is this game in the video\",\n    \"video_name\": \"OlR9S70AA74\",\n    \"answer\": \"commonly\"\n  },\n  {\n    \"question\": \"how safe is this game in the video\",\n    \"video_name\": \"OFTkwnSh-sQ\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this game in the video\",\n    \"video_name\": \"OUxgs_QlPHE\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this activity of skateboarding\",\n    \"video_name\": \"cTxVTEzQDr8\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this game in the video\",\n    \"video_name\": \"9UvVeUYQLgA\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this game in the video\",\n    \"video_name\": \"FxpP7lqvm30\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this game in the video\",\n    \"video_name\": \"390iVq_urQM\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this game in the video\",\n    \"video_name\": \"nhQTxZlzG1Q\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this game in the video\",\n    \"video_name\": \"9G172wz5Yqo\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"9FQ-VLkCZo8\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"xS4twW2gXqc\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"26U3SkeZU6M\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"mSR-HpiJ0No\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"nGKc2t-NMYc\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"mXqmRAUsn9U\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"75Tc1nPmZFQ\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"xizEiQZfJa4\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"nkWMBJC2Qec\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"9k19UUJtldg\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"N5Dt3ycaun4\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"54TIARWo-S8\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"9MN6GNhvwzA\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"72_9wLYUDGM\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"MVA568rRjzQ\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"12Nafz_Yet4\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"xMNmGr96O9U\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"XCfrjEJkl3M\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"30hcRe-5_3M\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"9ZVWD0ZKXZg\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"836UrVGw6GI\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"mZYWfmsYQPA\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"NDq29HQJVP0\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"98ukqD62X5s\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"nc_NMp3vAH0\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"mnNgZ-D5cKc\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"16czjUF1AA4\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"mvRoVXRGVGw\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"XxW4XWySzOw\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"NjD6iWI3NvM\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"87F9xGaMwCw\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"28LdZLfdmMQ\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this sport in the video\",\n    \"video_name\": \"9eniCub7u60\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is this activity in the video\",\n    \"video_name\": \"NJRrhNrEMsk\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this activity in the video\",\n    \"video_name\": \"N9VOdVOiPNM\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this activity in the video\",\n    \"video_name\": \"mVAP-WyEc7w\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is this activity of tug-of-war\",\n    \"video_name\": \"6O4S2CpRB0A\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this activity of weightlifting\",\n    \"video_name\": \"_zqj6daJo9U\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is this activity of weightlifting\",\n    \"video_name\": \"iuXjatyFcwo\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the season in the video\",\n    \"video_name\": \"P6Oq6C9X0fw\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"what is the season in the video\",\n    \"video_name\": \"jhy6npIdn5o\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"what is the season in the video\",\n    \"video_name\": \"-pkfcMUIEMo\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"what is the season in the video\",\n    \"video_name\": \"yCpdDJAW-jU\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"what is the season in the video\",\n    \"video_name\": \"PdwWFueQErM\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"what is the season in the video\",\n    \"video_name\": \"-pK2JheWido\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"what is the season in the video\",\n    \"video_name\": \"BBKSKU6dGGk\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"yGTIEmZ7S2w\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the barber\",\n    \"video_name\": \"mLFjww64sX8\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person with a camel\",\n    \"video_name\": \"rrpEOrMpBuE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the kid\",\n    \"video_name\": \"sqv3M6MPKjQ\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the kid\",\n    \"video_name\": \"K1LiXUpoSmI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the kid holding a stick\",\n    \"video_name\": \"kBTqTp0SKq8\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the coach\",\n    \"video_name\": \"k6pN0WRr2Ws\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the coach\",\n    \"video_name\": \"LjPKKqe-VO0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the coach\",\n    \"video_name\": \"sRNqK_QZbMs\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the coach\",\n    \"video_name\": \"sPK-sbHIb3w\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the player\",\n    \"video_name\": \"2CegApogJd4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the doctor\",\n    \"video_name\": \"b0qGo-HT5iQ\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the host\",\n    \"video_name\": \"TGffgRXc1eQ\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the cheerleader\",\n    \"video_name\": \"SYh-j9bK_ls\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in striped closthes\",\n    \"video_name\": \"03c6QhTMDSs\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person with a tie\",\n    \"video_name\": \"sNTOUuE7ZfM\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the bald person\",\n    \"video_name\": \"m731tx8N5-Y\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in jeans\",\n    \"video_name\": \"jDlvGWOdcqU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in blue clothes\",\n    \"video_name\": \"LsVCwr6qPmY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in blue clothes\",\n    \"video_name\": \"LYTWYSqsTCE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in red clothes\",\n    \"video_name\": \"-vY2uUmv6Dk\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in red clothes\",\n    \"video_name\": \"T3A88zsRuVs\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in red clothes\",\n    \"video_name\": \"m73Cod-PmMQ\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in red clothes\",\n    \"video_name\": \"4j_LRkB4T6c\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black and white coat\",\n    \"video_name\": \"r2H-cnti8GI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black and white coat\",\n    \"video_name\": \"QdmcjM2fluo\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black and white coat\",\n    \"video_name\": \"QImpWj3AJcY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black and white coat\",\n    \"video_name\": \"N4qhryre_TE\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black and white coat\",\n    \"video_name\": \"ZLJ2BmBkLJg\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black and white coat\",\n    \"video_name\": \"zTHkqpNFGno\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black and white coat\",\n    \"video_name\": \"eg2s5lOfKGI\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black and white coat\",\n    \"video_name\": \"zO5JMTzLDHw\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"SidTquTAtyk\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"mek9Zodu8LM\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"mUmSJps9WJI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"Ynvd8OuXKGw\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"mV07bEBkIcM\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"3PsxzgeMv5w\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"4_jDgRsOGvY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"Son8UiVlzu0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"RLBfyIVpocE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"nhQTxZlzG1Q\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"YVqRQDkdA8U\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"wdvQC41PGPk\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"W2Mh01F3K5c\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"z8x3wUZYOaM\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"X6CBZwwRdQQ\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black hat\",\n    \"video_name\": \"0iqx7o5WYW8\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black shirt\",\n    \"video_name\": \"gWTndmDHZQc\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black vest\",\n    \"video_name\": \"1YU4MSK80cQ\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black vest\",\n    \"video_name\": \"qWgF9hxNbP8\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black vest\",\n    \"video_name\": \"ZgdMnfTqblw\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a blue apron\",\n    \"video_name\": \"g9lNpSAtHgI\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a blue coat\",\n    \"video_name\": \"qiupddjDHDg\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a blue coat\",\n    \"video_name\": \"rCLGy2NA0aE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a blue coat\",\n    \"video_name\": \"oGU7m7rCZ-Y\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a blue coat\",\n    \"video_name\": \"YvPoAOrjX5I\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a blue coat\",\n    \"video_name\": \"qiTQ02NDSlQ\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in blue clothes\",\n    \"video_name\": \"XI7qJHE61zo\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in blue clothes\",\n    \"video_name\": \"zxpQHLwZCug\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in blue clothes\",\n    \"video_name\": \"MVA568rRjzQ\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in blue clothes\",\n    \"video_name\": \"T62XjoKbN8M\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in blue clothes\",\n    \"video_name\": \"yRQpolWhJ6A\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in blue clothes\",\n    \"video_name\": \"lPw_BRbPw5s\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a dark blue coat\",\n    \"video_name\": \"G_rVqf_hwXw\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in gray clothes\",\n    \"video_name\": \"brJIpRGcBFU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in gray clothes\",\n    \"video_name\": \"g1na24Bd5Rs\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in gray clothes\",\n    \"video_name\": \"mkGUacg0GRc\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in gray clothes\",\n    \"video_name\": \"1xtKGlUp4Vg\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a gray tshirt\",\n    \"video_name\": \"ZnKB0U96ZI4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a gray tshirt\",\n    \"video_name\": \"pzTqZWPubk8\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a gray vest\",\n    \"video_name\": \"qZMcbBsQorE\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a gray vest\",\n    \"video_name\": \"GjcRJzPjbRI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a green coat\",\n    \"video_name\": \"zKYiTA6WBS4\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a green coat\",\n    \"video_name\": \"zPQodcasmSA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a green coat\",\n    \"video_name\": \"ZJnXQw84xvo\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a green coat\",\n    \"video_name\": \"QX5e5Mla660\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in green clothes\",\n    \"video_name\": \"mMm1LfVb8Pg\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in green clothes\",\n    \"video_name\": \"meNgZdu8tIk\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in green clothes\",\n    \"video_name\": \"OFTkwnSh-sQ\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in green clothes\",\n    \"video_name\": \"gZB_XrTnDCI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a green vest\",\n    \"video_name\": \"gNUCdXGxp0w\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a gray coat\",\n    \"video_name\": \"Z-sWZUYL0ZU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a hat\",\n    \"video_name\": \"SJ7jk5XAjng\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a hat\",\n    \"video_name\": \"1lwG-y_QCkc\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a hat\",\n    \"video_name\": \"4z0meF-_b1I\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in plaid clothes\",\n    \"video_name\": \"rnI9vGr5V1k\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a plaid coat\",\n    \"video_name\": \"rGOOlcdpfLg\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a plaid shirt\",\n    \"video_name\": \"Q5HdVXF390c\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a pink coat\",\n    \"video_name\": \"qGLRri_c6n8\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a plaid shirt\",\n    \"video_name\": \"1IbkFHNA7fg\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in purple clothes\",\n    \"video_name\": \"gOnp3DZxeKU\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in purple clothes\",\n    \"video_name\": \"OccEAILrU7M\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in purple clothes\",\n    \"video_name\": \"nGKc2t-NMYc\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a red coat\",\n    \"video_name\": \"Z-zG845frso\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a red coat\",\n    \"video_name\": \"zpaS2iYrJjk\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a red hat\",\n    \"video_name\": \"qKp2QCheLwU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a white tshirt\",\n    \"video_name\": \"gkwLhml3mnA\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a striped shirt\",\n    \"video_name\": \"pYaZLHpl_Ww\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a striped shirt\",\n    \"video_name\": \"ZxCdhz4ep0s\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a colorful swimsuit\",\n    \"video_name\": \"lUil9HfTzJ0\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a colorful swimsuit\",\n    \"video_name\": \"SPjv6P5fxug\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a white coat\",\n    \"video_name\": \"qZtdMXkHRXw\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"NZskwwovSZI\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"XCfrjEJkl3M\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"gsQ-OEvrxjo\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"nc_NMp3vAH0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"YMOYyt3kSOs\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"ghHZ9M-jx0w\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"SGAUpoTMSnA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"N5Dt3ycaun4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"1494UwmvAJM\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"xizEiQZfJa4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"836UrVGw6GI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"2UhbDOd43zU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"NDq29HQJVP0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"X52XHYKeLiE\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"0jdSl5-lMpY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"mnNgZ-D5cKc\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"lUmjnFf7IPQ\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"RgiVa9GMYxE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"G25py7yEVyo\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person with a white hat\",\n    \"video_name\": \"Es3PxD9oi4I\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a white shirt\",\n    \"video_name\": \"ZlVydB9uUe4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a white shirt\",\n    \"video_name\": \"QJ5xv6oj1sk\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a white shirt\",\n    \"video_name\": \"zqxzFxya6T8\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a white suit\",\n    \"video_name\": \"ZBP_mLWROZU\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a white vest\",\n    \"video_name\": \"qSP3_C7QWpU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in yellow clothes\",\n    \"video_name\": \"1PNjVTM0Zto\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in yellow clothes\",\n    \"video_name\": \"gr53ih2aFkE\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in yellow clothes\",\n    \"video_name\": \"zYjLA99koBk\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in orange clothes\",\n    \"video_name\": \"WXH-Tj0-g4w\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black pants\",\n    \"video_name\": \"RlRrktN5iH4\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black tshirt\",\n    \"video_name\": \"QXN6odBnVmI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a black tshirt\",\n    \"video_name\": \"Znb6Y9m_PsQ\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in green clothes\",\n    \"video_name\": \"ufrTSC3Dewg\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in green clothes\",\n    \"video_name\": \"uLsq6gQXQPM\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in green clothes\",\n    \"video_name\": \"i6wR9_tkg6A\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in green pants\",\n    \"video_name\": \"2vrR_5u2buU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in orange clothes\",\n    \"video_name\": \"mixxaL3Bdv8\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in red clothes\",\n    \"video_name\": \"mSR-HpiJ0No\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in red clothes\",\n    \"video_name\": \"x6pYeqq3O08\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in red clothes\",\n    \"video_name\": \"i8hNrK3r_MY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in red clothes\",\n    \"video_name\": \"Co_cpZWbzFk\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a blue tshirt\",\n    \"video_name\": \"H0dG_1Vgw4Q\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a white tshirt\",\n    \"video_name\": \"qgUHRwC3194\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a white tshirt\",\n    \"video_name\": \"ZLG1Exv8HrY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in yellow pants\",\n    \"video_name\": \"P8S8PIyPXxY\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a hat\",\n    \"video_name\": \"JbW8efAOOt0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in a hat\",\n    \"video_name\": \"IYLJU87AkOg\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person with blond hair\",\n    \"video_name\": \"2bQx5igckJc\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person with blond hair\",\n    \"video_name\": \"45hcc_VI4t4\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the tattooist\",\n    \"video_name\": \"6LsvBNqJuJY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white\",\n    \"video_name\": \"_jIXs7AFTxw\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of all the people in the video\",\n    \"video_name\": \"H_IfIsKQ3Zw\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of all the people in the video\",\n    \"video_name\": \"i5qTK0mInTc\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"4LoAbHdHWqM\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete\",\n    \"video_name\": \"1QIUV7WYKXg\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete\",\n    \"video_name\": \"tzP0lKSUv_o\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete\",\n    \"video_name\": \"rMj2JWNJzkw\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete\",\n    \"video_name\": \"M2Y2Cw2kwDo\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete\",\n    \"video_name\": \"s6fEIuHPJ4Y\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete\",\n    \"video_name\": \"Jix3poZOeZA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete\",\n    \"video_name\": \"svNcNLEPKMc\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete\",\n    \"video_name\": \"snhPrCNubYA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete\",\n    \"video_name\": \"St1RRi-aeNM\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete\",\n    \"video_name\": \"JvPVYSb_5o8\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete in the video\",\n    \"video_name\": \"jEOtcfk220s\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete in the video\",\n    \"video_name\": \"4LpqPUWHH5k\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete in the video\",\n    \"video_name\": \"5dN-MpXG9OE\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete in the video\",\n    \"video_name\": \"jibbgUBuuSA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete in the video\",\n    \"video_name\": \"2-AMrzL7V-U\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete holding a pole\",\n    \"video_name\": \"rsU73H6VyG8\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black clothes\",\n    \"video_name\": \"vHnZ3NrZER0\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in red clothes\",\n    \"video_name\": \"VJh9W3Gcpmo\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in white clothes\",\n    \"video_name\": \"Vhn4SuPhu-0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in red shorts\",\n    \"video_name\": \"Zt9qvbUnNhc\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete in green clothes\",\n    \"video_name\": \"lOZ9bfzq89o\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the kid\",\n    \"video_name\": \"JcAAwYpJhm8\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the kid\",\n    \"video_name\": \"MAYrBia9Xnw\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the dancer in the video\",\n    \"video_name\": \"teffBaLEZQg\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the drummer\",\n    \"video_name\": \"JGPhQX97OSE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person\",\n    \"video_name\": \"wh6P2C2avqc\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person\",\n    \"video_name\": \"VvsYrfEvvUw\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the first person\",\n    \"video_name\": \"StGxFfLiYNU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the first person\",\n    \"video_name\": \"jbCQY7V7O1s\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the first person in the video\",\n    \"video_name\": \"3oy4P1gyU4k\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the old person in the video\",\n    \"video_name\": \"jt-Vnap5KP4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the owner of the dog\",\n    \"video_name\": \"1vTHJMMPZN0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black\",\n    \"video_name\": \"_kmjpSZb3OI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in gray clothes\",\n    \"video_name\": \"0e5zwJywyqk\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in gray clothes\",\n    \"video_name\": \"MDsJa6Yitwc\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in gray clothes\",\n    \"video_name\": \"hGPCJb2g1tQ\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"1dDAcUliXrQ\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person playing the game\",\n    \"video_name\": \"R-hsYQNtnn0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the sitting person at the beginning\",\n    \"video_name\": \"k3WPc9HmtLM\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person playing the hula hoop\",\n    \"video_name\": \"3nSOFmmA7FU\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in black\",\n    \"video_name\": \"nkWMBJC2Qec\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in blue\",\n    \"video_name\": \"mXqmRAUsn9U\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"-YwrMtiqHKg\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"uw9x69DT8_g\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"Of2Umm79Kxg\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"PJ7HOHdOdy4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"yUvSujxnFE0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"K5jY2chByPw\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"sH_716hH_rY\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"nDM4E9CD_y0\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"Z2gpcqXWNek\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"uLphvdhunTY\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"U2cCOj3LiAA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"z6pmp8TrAVo\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"Ar6TcWqwK-A\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"uJ4OZfCjViM\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"0q9yZPTBbus\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"4MwnHtlaEUY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"6JZVpl2S2Mg\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"0xBP-TSsqb0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"T0nCDJuikuA\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"HPKHDze6XfA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"uM7QSskmloo\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"T3mcQnlsmq4\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"TnP6coXzbLY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"tgPD2SZo_DY\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"04qggWACGWk\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"ngMxE3CnGVg\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"lU6DMCif3eE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"udSHsodv3gY\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"Uae2MWoldTU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"v0azz4XzW_s\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"hxErUs42bBI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"HTYzbAFUghU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the video\",\n    \"video_name\": \"diY-XBT5cD4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in yellow\",\n    \"video_name\": \"H9PaZiWLgXU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in yellow\",\n    \"video_name\": \"H_JLBvfP88U\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the jumping person\",\n    \"video_name\": \"hIYN8cC3pEA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person performing on the stage\",\n    \"video_name\": \"HDt5z5Y0opo\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person at the beginning of the video\",\n    \"video_name\": \"4LF0hL-mgks\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in yellow\",\n    \"video_name\": \"hQqoh0YxJYs\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in yellow\",\n    \"video_name\": \"QIUxLD27NuI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in yellow\",\n    \"video_name\": \"mxn6WcmdNpA\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person in yellow\",\n    \"video_name\": \"Nc9yr4urskA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in yellow\",\n    \"video_name\": \"98ukqD62X5s\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person playing football\",\n    \"video_name\": \"HQVSLlKhupk\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the referee\",\n    \"video_name\": \"SjlILJ2st-I\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the referee\",\n    \"video_name\": \"LWt2FuU0uC4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the referee\",\n    \"video_name\": \"LzPppxSWYNY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the sitting person\",\n    \"video_name\": \"RtF6TGqwa7Y\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the standing person\",\n    \"video_name\": \"rSGboODhu04\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the standing person\",\n    \"video_name\": \"RXDVJlb97OI\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the standing person\",\n    \"video_name\": \"kD_EJjQCLoY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the standing person\",\n    \"video_name\": \"JY9oOSfjj_E\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the surfer in the video\",\n    \"video_name\": \"uktUeF3Fy7o\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the two person in the video\",\n    \"video_name\": \"TtewPltwuXw\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person putting up wallpapers\",\n    \"video_name\": \"w10Nr_wOh8g\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the weightlifter \",\n    \"video_name\": \"bYNQ0GrCt64\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the weightlifter \",\n    \"video_name\": \"tRFK1BMKaRo\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the shape of the tennis ball in the video\",\n    \"video_name\": \"YvPoAOrjX5I\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the ball in the video\",\n    \"video_name\": \"_SJOVswvGRc\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the ball in the video\",\n    \"video_name\": \"yUvSujxnFE0\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the barrel in the video\",\n    \"video_name\": \"ojTFTIwsa_c\",\n    \"answer\": \"cylinder\"\n  },\n  {\n    \"question\": \"what is the shape of the cup \",\n    \"video_name\": \"Woelo4XJkHE\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the curling \",\n    \"video_name\": \"nc_NMp3vAH0\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the platform \",\n    \"video_name\": \"vzUeFzhVYLg\",\n    \"answer\": \"trapezoid\"\n  },\n  {\n    \"question\": \"what is the shape of the platform \",\n    \"video_name\": \"woI_zP55qWo\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what is the shape of the diving board \",\n    \"video_name\": \"OUxgs_QlPHE\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what is the shape of the table\",\n    \"video_name\": \"1494UwmvAJM\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the table\",\n    \"video_name\": \"n9EdHGz7ArI\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what is the shape of the table\",\n    \"video_name\": \"VZ5R9goklpo\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what is the shape of the table\",\n    \"video_name\": \"chmegNbBTNc\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what is the shape of the table in the video\",\n    \"video_name\": \"Ye_uVlSo1HI\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what is the shape of the sponge cushion in the video\",\n    \"video_name\": \"Z6b4oFjIznU\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what kind of hat does the person in red wear\",\n    \"video_name\": \"AjizhJc_reI\",\n    \"answer\": \"t shirt\"\n  },\n  {\n    \"question\": \"what is the hairstyle of the woman in the video\",\n    \"video_name\": \"-CqVpCRxwTY\",\n    \"answer\": \"long\"\n  },\n  {\n    \"question\": \"what is the top of the roof\",\n    \"video_name\": \"3dWw9GLcOeA\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is the under the person in a blue coat\",\n    \"video_name\": \"qiupddjDHDg\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is the under the person in a white shirt\",\n    \"video_name\": \"QXN6odBnVmI\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is the under the person in a white shirt\",\n    \"video_name\": \"QJ5xv6oj1sk\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is the under the person in black clothes\",\n    \"video_name\": \"SidTquTAtyk\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is the under the person in black clothes\",\n    \"video_name\": \"aGvpDyMNATI\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is the under the person in gray clothes\",\n    \"video_name\": \"aH39BSM0-Ag\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is the under the person in red clothes\",\n    \"video_name\": \"75Tc1nPmZFQ\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is the under the person in red clothes\",\n    \"video_name\": \"m73Cod-PmMQ\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is the under the person in the video\",\n    \"video_name\": \"4uKoAk5NCkI\",\n    \"answer\": \"pads\"\n  },\n  {\n    \"question\": \"what is the under the athlete in the video\",\n    \"video_name\": \"5dN-MpXG9OE\",\n    \"answer\": \"balance beam\"\n  },\n  {\n    \"question\": \"what happed in the video\",\n    \"video_name\": \"hGPCJb2g1tQ\",\n    \"answer\": \"introduction equipment\"\n  },\n  {\n    \"question\": \"what is the weather in the video\",\n    \"video_name\": \"DHjoAOus3xM\",\n    \"answer\": \"clear\"\n  },\n  {\n    \"question\": \"what is the weather in the video\",\n    \"video_name\": \"mkGUacg0GRc\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather in the video\",\n    \"video_name\": \"mMm1LfVb8Pg\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather in the video\",\n    \"video_name\": \"4YF9R3Sz2bA\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather in the video\",\n    \"video_name\": \"uWfQcDvel84\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather in the video\",\n    \"video_name\": \"6G8m-vsGTA8\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather in the video\",\n    \"video_name\": \"EDDbcCBnTQM\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather in the video\",\n    \"video_name\": \"stdtUoog49I\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather in the video\",\n    \"video_name\": \"m73Cod-PmMQ\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is the weather in the video\",\n    \"video_name\": \"6H0D8VaIli0\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather like in the video\",\n    \"video_name\": \"GjcRJzPjbRI\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather like in the video\",\n    \"video_name\": \"Erje-PwY9hE\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather outdoors\",\n    \"video_name\": \"fe4r2-Y8k1U\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the woman in a white coat doing\",\n    \"video_name\": \"DIVaPURJHPo\",\n    \"answer\": \"rope skipping\"\n  },\n  {\n    \"question\": \"what is the woman in a hat doing\",\n    \"video_name\": \"VFC-V06hVj0\",\n    \"answer\": \"ride camel\"\n  },\n  {\n    \"question\": \"what is the woman in red clothes doing\",\n    \"video_name\": \"xuvp0jKMqRU\",\n    \"answer\": \"preside over program\"\n  },\n  {\n    \"question\": \"what is the woman in a red coat doing\",\n    \"video_name\": \"FFMugev85IY\",\n    \"answer\": \"hand drums\"\n  },\n  {\n    \"question\": \"what's in front of the woman in the video\",\n    \"video_name\": \"Db9VWkgMpbE\",\n    \"answer\": \"fitness equipment\"\n  },\n  {\n    \"question\": \"what is the woman with a white hat doing\",\n    \"video_name\": \"8AUTKSqcmiM\",\n    \"answer\": \"archery\"\n  },\n  {\n    \"question\": \"what is the relationship of the people in the video\",\n    \"video_name\": \"nbHBjdE8oNo\",\n    \"answer\": \"relatives\"\n  },\n  {\n    \"question\": \"what is this person doing\",\n    \"video_name\": \"li_mry59KCM\",\n    \"answer\": \"in repair\"\n  },\n  {\n    \"question\": \"what is this person doing\",\n    \"video_name\": \"laU1Hvm5Dis\",\n    \"answer\": \"practice ball\"\n  },\n  {\n    \"question\": \"what is this person doing\",\n    \"video_name\": \"lfbspF18Wrw\",\n    \"answer\": \"make biscuits\"\n  },\n  {\n    \"question\": \"what is this video about\",\n    \"video_name\": \"6JZVpl2S2Mg\",\n    \"answer\": \"how to wear contact lenses\"\n  },\n  {\n    \"question\": \"what is this video about\",\n    \"video_name\": \"rnI9vGr5V1k\",\n    \"answer\": \"introduction of cutting tools\"\n  },\n  {\n    \"question\": \"what is this video about\",\n    \"video_name\": \"kD_EJjQCLoY\",\n    \"answer\": \"how to set up cars\"\n  },\n  {\n    \"question\": \"what is this video about\",\n    \"video_name\": \"3oy4P1gyU4k\",\n    \"answer\": \"billiard game\"\n  },\n  {\n    \"question\": \"what is this woman doing\",\n    \"video_name\": \"kpOAGEYHts8\",\n    \"answer\": \"rules of playing cards\"\n  },\n  {\n    \"question\": \"what is this woman doing\",\n    \"video_name\": \"kkji9hespu0\",\n    \"answer\": \"food program\"\n  },\n  {\n    \"question\": \"what is under the person in the video\",\n    \"video_name\": \"_CIoHeD7KQc\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is under the person in black clothes\",\n    \"video_name\": \"12Nafz_Yet4\",\n    \"answer\": \"yoga mat\"\n  },\n  {\n    \"question\": \"what is under the person in black pants\",\n    \"video_name\": \"RlRrktN5iH4\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"what is under the cup\",\n    \"video_name\": \"PBYg9ekd86w\",\n    \"answer\": \"coaster\"\n  },\n  {\n    \"question\": \"what is under the feet of the person in blue\",\n    \"video_name\": \"XI7qJHE61zo\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is under the feet of the person in red\",\n    \"video_name\": \"XCfrjEJkl3M\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is under the hand of the person in the video\",\n    \"video_name\": \"a_EqAwUOxpM\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is under the person in orange clothes\",\n    \"video_name\": \"a2IvS0xbNGQ\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is under the person in white clothes\",\n    \"video_name\": \"nnEPsdA0080\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what is under the person in white clothes\",\n    \"video_name\": \"gkwLhml3mnA\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is under the person in white clothes\",\n    \"video_name\": \"836UrVGw6GI\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is under the person in yellow clothes\",\n    \"video_name\": \"1PNjVTM0Zto\",\n    \"answer\": \"inverted reflection in water\"\n  },\n  {\n    \"question\": \"what is under the person in yellow clothes\",\n    \"video_name\": \"98ukqD62X5s\",\n    \"answer\": \"rubber runway\"\n  },\n  {\n    \"question\": \"what is under the person in yellow clothes\",\n    \"video_name\": \"zYjLA99koBk\",\n    \"answer\": \"hovercraft\"\n  },\n  {\n    \"question\": \"what does standing person wear on the neck\",\n    \"video_name\": \"rSGboODhu04\",\n    \"answer\": \"necklace\"\n  },\n  {\n    \"question\": \"what kind of animal is in the video\",\n    \"video_name\": \"nvcMYiZhUuo\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what kind of animal is in the video\",\n    \"video_name\": \"X52XHYKeLiE\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what kind of animal is in the video\",\n    \"video_name\": \"oT6WUU8-dgs\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what kind of dog is it in the video\",\n    \"video_name\": \"W9H2qVnIWXs\",\n    \"answer\": \"labrador\"\n  },\n  {\n    \"question\": \"what hairstyle is the person in the video\",\n    \"video_name\": \"3uaQ0cULMgc\",\n    \"answer\": \"short\"\n  },\n  {\n    \"question\": \"what is the material of the bowl in the video\",\n    \"video_name\": \"-YwrMtiqHKg\",\n    \"answer\": \"glass\"\n  },\n  {\n    \"question\": \"what kind of pants does the person wear in the video \",\n    \"video_name\": \"3uaQ0cULMgc\",\n    \"answer\": \"blue jeans\"\n  },\n  {\n    \"question\": \"what kind of pants does the person in white wear\",\n    \"video_name\": \"_jIXs7AFTxw\",\n    \"answer\": \"jeans\"\n  },\n  {\n    \"question\": \"what color of shoes does the person in black wear\",\n    \"video_name\": \"40BPDWojssc\",\n    \"answer\": \"leather shoes\"\n  },\n  {\n    \"question\": \"what kind of sport is this activity\",\n    \"video_name\": \"pop8YCGQpWk\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what kind of sport is this activity\",\n    \"video_name\": \"Pr5K2Jh2X94\",\n    \"answer\": \"jumping project\"\n  },\n  {\n    \"question\": \"what kind of pants does the person in black clothes wear\",\n    \"video_name\": \"4_jDgRsOGvY\",\n    \"answer\": \"jeans\"\n  },\n  {\n    \"question\": \"what kind of pants does the person in black clothes wear\",\n    \"video_name\": \"mV07bEBkIcM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of pants does the person in white clothes wear\",\n    \"video_name\": \"30hcRe-5_3M\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what kind of pants does the person in blue clothes wear\",\n    \"video_name\": \"XI7qJHE61zo\",\n    \"answer\": \"jeans\"\n  },\n  {\n    \"question\": \"what kind of pants does the person in blue clothes wear\",\n    \"video_name\": \"mXqmRAUsn9U\",\n    \"answer\": \"jeans\"\n  },\n  {\n    \"question\": \"what kind of pants does the person in red clothes wear\",\n    \"video_name\": \"YHqFNnhaFAY\",\n    \"answer\": \"jeans\"\n  },\n  {\n    \"question\": \"what season does video occur\",\n    \"video_name\": \"3dWw9GLcOeA\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"what kind of shoes does the person in black clothes wear\",\n    \"video_name\": \"aGvpDyMNATI\",\n    \"answer\": \"gym shoes\"\n  },\n  {\n    \"question\": \"what kind of shoes does the person in white clothes wear\",\n    \"video_name\": \"X52XHYKeLiE\",\n    \"answer\": \"boots\"\n  },\n  {\n    \"question\": \"what time is it in video\",\n    \"video_name\": \"JKJ_EvP7JwQ\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what time is it in video\",\n    \"video_name\": \"jWODw4vy45M\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"which sport type does this activity belong to\",\n    \"video_name\": \"p1QGn0IzfW0\",\n    \"answer\": \"artistic gymnastics\"\n  },\n  {\n    \"question\": \"when is the video been taken\",\n    \"video_name\": \"blbaWHbtqTI\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"when is the video been taken\",\n    \"video_name\": \"X_K7Aa3Aa-E\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"where does the person in the video play\",\n    \"video_name\": \"3Rzyta8op6s\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"A0b_pqaKCX8\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where do the athletes play dodgeball\",\n    \"video_name\": \"2CegApogJd4\",\n    \"answer\": \"basketball court\"\n  },\n  {\n    \"question\": \"where is the man in the video\",\n    \"video_name\": \"NvRH4SoF09c\",\n    \"answer\": \"hillside\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"NjD6iWI3NvM\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"Nb6AQxxrihA\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the blonde woman\",\n    \"video_name\": \"ikUNgSw4Gys\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the dancing place in video\",\n    \"video_name\": \"teffBaLEZQg\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"U2cCOj3LiAA\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"uLphvdhunTY\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"9FQ-VLkCZo8\",\n    \"answer\": \"hockey field\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"HX6BeHLQh5s\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"H_IfIsKQ3Zw\",\n    \"answer\": \"suburb\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"brJIpRGcBFU\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"w4pO-1-FG5w\",\n    \"answer\": \"barber shop\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"hIHeMA1oRrY\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"vzUeFzhVYLg\",\n    \"answer\": \"natatorium\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"WPYQ27GjFKc\",\n    \"answer\": \"casino\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"wnNiWoJxfSQ\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"HQVSLlKhupk\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"bWZkD_s1940\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"WINtiw-_3vg\",\n    \"answer\": \"in street\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"Vxw3yFCV2iA\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"-vY2uUmv6Dk\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"HTSxgkgecS0\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"woI_zP55qWo\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"VpZzLvzU7_k\",\n    \"answer\": \"snow land\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"hG4VsZQQ2_c\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"VSsZZZHn1L0\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"HJWwqjLf1I4\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"W2eumNilwuI\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"wh6P2C2avqc\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"hQqoh0YxJYs\",\n    \"answer\": \"grass\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"0q9yZPTBbus\",\n    \"answer\": \"barber shop\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"hIYN8cC3pEA\",\n    \"answer\": \"parking lot\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"vSv1qMMt4Bk\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"bYNQ0GrCt64\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"WGUzmra3h_w\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"VvsYrfEvvUw\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"HPKHDze6XfA\",\n    \"answer\": \"parking lot\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"vqyQF-1Zc_E\",\n    \"answer\": \"snow land\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"huFOZ2BiM_k\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"wE9sQbGdeAk\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"HtG-i1CG2Qs\",\n    \"answer\": \"toilet\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"H33jSILKmfI\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"vQ82ItCG1x4\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"CfqnHsp6olc\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"Woelo4XJkHE\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"CaeZoHNHul0\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"hRsn4nesCQo\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"wdvQC41PGPk\",\n    \"answer\": \"in street\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"VZ5R9goklpo\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"wLXty2wzuJg\",\n    \"answer\": \"natatorium\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"HTYzbAFUghU\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"hGPCJb2g1tQ\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"where is the place in the video\",\n    \"video_name\": \"chmegNbBTNc\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the game played in the video\",\n    \"video_name\": \"ufrTSC3Dewg\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"Pv4FwH2TC6Y\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"B4Zp5XN97Gc\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"BdRH3lpopLQ\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"Pjnuoa4o55c\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"AsdsR27UnJ0\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"PFeerDZbGn8\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"aNsj5OrEGLY\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"75Tc1nPmZFQ\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"-p7aui3nAnc\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"96vBhCFBbQk\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"mVAP-WyEc7w\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"prBiREYQ2vQ\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"9k19UUJtldg\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"pPt_fygNjtQ\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"amgpZtvd9h0\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"PTwe2IIo3To\",\n    \"answer\": \"dancing room\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"PD-FXR7O9J0\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"Au4PfoK7hyw\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"72_9wLYUDGM\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"PBYg9ekd86w\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"BkDbDnvoL28\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"nbHBjdE8oNo\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"n832gDqfWl4\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"XCfrjEJkl3M\",\n    \"answer\": \"basketball court\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"PkRvgIFREJU\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"pVoM_kUQ4_E\",\n    \"answer\": \"grass\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"aPI0nPvzJlE\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"9snScUyE8_4\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"62M1FRXsUiM\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"an1R4BP97JY\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"pop8YCGQpWk\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"n9EdHGz7ArI\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"PSB1nM3QXxg\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"pVuuVHA3RVw\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"26U3SkeZU6M\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"9SIPJd4Hls4\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"PdwWFueQErM\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"atGMJc-DZ7w\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"Nc9yr4urskA\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"Pr5K2Jh2X94\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"BD9CAqD1Yf8\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"b_c17BmZCCs\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"nbOsU2Vmp1U\",\n    \"answer\": \"hotel\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"Av0VsTxJd78\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"BFChXuwZ4wo\",\n    \"answer\": \"tattoo shop\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"87F9xGaMwCw\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"nciIPwJTok8\",\n    \"answer\": \"car wash\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"penDFcEdu7U\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"where is the video taken\",\n    \"video_name\": \"pmmQuksmTvw\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"where is the woman with long hair\",\n    \"video_name\": \"7dXqXFoju2M\",\n    \"answer\": \"shower room\"\n  },\n  {\n    \"question\": \"where is the person in red clothes\",\n    \"video_name\": \"mSR-HpiJ0No\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the person in red clothes\",\n    \"video_name\": \"VJh9W3Gcpmo\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"where is the person in red clothes\",\n    \"video_name\": \"x6pYeqq3O08\",\n    \"answer\": \"sandy beach\"\n  },\n  {\n    \"question\": \"where does the person with a hat speak\",\n    \"video_name\": \"_V62aT_K8Zw\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"where does the person with a hat speak\",\n    \"video_name\": \"_V62aT_K8Zw\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"where is the person in white clothes\",\n    \"video_name\": \"A8RQcVFtovg\",\n    \"answer\": \"grass\"\n  },\n  {\n    \"question\": \"where is the person in black clothes\",\n    \"video_name\": \"Ynvd8OuXKGw\",\n    \"answer\": \"rooftop\"\n  },\n  {\n    \"question\": \"where is the person in black clothes\",\n    \"video_name\": \"ojTFTIwsa_c\",\n    \"answer\": \"car wash\"\n  },\n  {\n    \"question\": \"where is the person in black clothes\",\n    \"video_name\": \"AjqnGUbsduw\",\n    \"answer\": \"wrists\"\n  },\n  {\n    \"question\": \"where is the person in black clothes\",\n    \"video_name\": \"aGvpDyMNATI\",\n    \"answer\": \"javelin throw\"\n  },\n  {\n    \"question\": \"where is the person in black clothes\",\n    \"video_name\": \"nvcMYiZhUuo\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"where is the person in blue clothes\",\n    \"video_name\": \"yRQpolWhJ6A\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"where is the person in red clothes\",\n    \"video_name\": \"OFTkwnSh-sQ\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"where is the person in red clothes\",\n    \"video_name\": \"oKJ1BnvHbbA\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"where is the person in red clothes\",\n    \"video_name\": \"OQEKZXv6jSw\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"where is the person in red clothes\",\n    \"video_name\": \"YHqFNnhaFAY\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"where is the person in black clothes\",\n    \"video_name\": \"vHnZ3NrZER0\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the person in black clothes in the video\",\n    \"video_name\": \"V90CMuokf0c\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"oMtB-y49Yo8\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"YaC68rE4lwA\",\n    \"answer\": \"shower room\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"aAz3YL2RMr4\",\n    \"answer\": \"tattoo shop\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"AB5cWhlQ0Kk\",\n    \"answer\": \"living room\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"Ar6TcWqwK-A\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"Y05GAiavfOg\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"OYEKKzQjaJI\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"_zqj6daJo9U\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"oT6WUU8-dgs\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"_jIXs7AFTxw\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"yGTIEmZ7S2w\",\n    \"answer\": \"grass\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"Aen-RfnlK3A\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"A_Sr0mCX2rI\",\n    \"answer\": \"plain\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"Yg03CCu9GMo\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"Aj5ncX5G_2w\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"hxErUs42bBI\",\n    \"answer\": \"ski field\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"yUvSujxnFE0\",\n    \"answer\": \"tennis court\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"otMw5GJWYWs\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"_kmjpSZb3OI\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"Of2Umm79Kxg\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"where is the person in the video\",\n    \"video_name\": \"v0azz4XzW_s\",\n    \"answer\": \"grass\"\n  },\n  {\n    \"question\": \"where is the person in white clothes\",\n    \"video_name\": \"Oh3-DvDCpZ4\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where are the sandwiches been made in the video\",\n    \"video_name\": \"0k6GFx2ZCg8\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the dog walk in the video\",\n    \"video_name\": \"TiQcZKml5Bs\",\n    \"answer\": \"in street\"\n  },\n  {\n    \"question\": \"where is the place to play baseball in the video\",\n    \"video_name\": \"I1iUbyjWy7k\",\n    \"answer\": \"baseball field\"\n  },\n  {\n    \"question\": \"where is the place to play football in the video\",\n    \"video_name\": \"TGffgRXc1eQ\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the running taken place in the video\",\n    \"video_name\": \"TXSOSSGJYO0\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"where is the running taken place in the video\",\n    \"video_name\": \"tgPD2SZo_DY\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where does the scene taken in the video \",\n    \"video_name\": \"G4-qjGC_3VA\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"where does the scene taken in the video \",\n    \"video_name\": \"WdtytUagoJs\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"where is the person skateboarding in the video\",\n    \"video_name\": \"uIHWHnItois\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"where is the training taken place in the video\",\n    \"video_name\": \"UJGK_TKrl4E\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"ys4_S3JHQjs\",\n    \"answer\": \"lakeside\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"_CIoHeD7KQc\",\n    \"answer\": \"laboratory\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"nYl_tYmijlM\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"z6l9utYlIrw\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"Z2gpcqXWNek\",\n    \"answer\": \"shower room\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"NZskwwovSZI\",\n    \"answer\": \"tattoo shop\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"Z6b4oFjIznU\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"YVqRQDkdA8U\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"AjizhJc_reI\",\n    \"answer\": \"amusement park\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"yCpdDJAW-jU\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"_QBTD1bLSI0\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"z6pmp8TrAVo\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"MQ9Ojge7CyA\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"09ocXmGF-T4\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"54TIARWo-S8\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"MonWdYi3a0I\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"mnNgZ-D5cKc\",\n    \"answer\": \"racetrack\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"MpeN-IVIBc4\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"a4gI4LC1rJk\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"bRgvAHL3dJk\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"EQWdo0FcKAo\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the man in white\",\n    \"video_name\": \"Vhn4SuPhu-0\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"X52XHYKeLiE\",\n    \"answer\": \"horse yard\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"32vYs9wKXE8\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"A9VCuZ53ObQ\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"xfV4V_AOVSM\",\n    \"answer\": \"barber shop\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"mvRoVXRGVGw\",\n    \"answer\": \"snow mountain\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"N9VOdVOiPNM\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"nGKc2t-NMYc\",\n    \"answer\": \"training ground\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"nnEPsdA0080\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"390iVq_urQM\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"mUmSJps9WJI\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"N5Dt3ycaun4\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"1494UwmvAJM\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"9MN6GNhvwzA\",\n    \"answer\": \"supermarket\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"28WDlVOgslg\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"40BPDWojssc\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"mxn6WcmdNpA\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"MVA568rRjzQ\",\n    \"answer\": \"tennis room\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"mV07bEBkIcM\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"xMNmGr96O9U\",\n    \"answer\": \"bowling room\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"a_EqAwUOxpM\",\n    \"answer\": \"manicure shop\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"16bJAOf1SJI\",\n    \"answer\": \"game place\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"mZYWfmsYQPA\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"NDq29HQJVP0\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"N4qhryre_TE\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"30hcRe-5_3M\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"98ukqD62X5s\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"X_K7Aa3Aa-E\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"nhQTxZlzG1Q\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"N75m1Z4RqbA\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"_fLhtWSCaSo\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"X2toGKgWMpE\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"NjXCZYO3zwU\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"X6CBZwwRdQQ\",\n    \"answer\": \"seaside\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"xizEiQZfJa4\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"836UrVGw6GI\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"28LdZLfdmMQ\",\n    \"answer\": \"aquatic\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"nDM4E9CD_y0\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the woman\",\n    \"video_name\": \"kpOAGEYHts8\",\n    \"answer\": \"chess and card room\"\n  },\n  {\n    \"question\": \"where does the game take place\",\n    \"video_name\": \"dFGS7YCDk3Y\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"where is the video taken \",\n    \"video_name\": \"4LF0hL-mgks\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"which hand of the person in plaid clothes wears a watch\",\n    \"video_name\": \"1IbkFHNA7fg\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"which hand of the person in black wears a watch\",\n    \"video_name\": \"cnMvMvVBXiI\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"which hand of the person in the video wears a watch\",\n    \"video_name\": \"lU6DMCif3eE\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"which hand of the person in black wears a watch\",\n    \"video_name\": \"Son8UiVlzu0\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"who wins the game\",\n    \"video_name\": \"FaP7unySMOs\",\n    \"answer\": \"black man\"\n  },\n  {\n    \"question\": \"why does the person like skiing\",\n    \"video_name\": \"vnZmsOgWs0o\",\n    \"answer\": \"stimulate\"\n  },\n  {\n    \"question\": \"why does the athlete raise hand\",\n    \"video_name\": \"M2Y2Cw2kwDo\",\n    \"answer\": \"reduce drag\"\n  },\n  {\n    \"question\": \"why does the athlete run up \",\n    \"video_name\": \"snhPrCNubYA\",\n    \"answer\": \"give yourself inertia\"\n  },\n  {\n    \"question\": \"why does the athlete run up \",\n    \"video_name\": \"LzPppxSWYNY\",\n    \"answer\": \"increase jump distance\"\n  },\n  {\n    \"question\": \"why does the athlete wear a helmet\",\n    \"video_name\": \"3Nd3Aai1bVA\",\n    \"answer\": \"protect head\"\n  },\n  {\n    \"question\": \"why does the athlete wear a helmet\",\n    \"video_name\": \"JR9LosQmMvg\",\n    \"answer\": \"protect head\"\n  },\n  {\n    \"question\": \"why does the person in the video do aerobics\",\n    \"video_name\": \"k6pN0WRr2Ws\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"why does the person in black pants fall down\",\n    \"video_name\": \"JB-ynj70saA\",\n    \"answer\": \"poor balance\"\n  },\n  {\n    \"question\": \"why does the person in the video clean up the fallen leaves\",\n    \"video_name\": \"MDWaKr7Gu5Q\",\n    \"answer\": \"for beauty\"\n  },\n  {\n    \"question\": \"why does the person in the video run\",\n    \"video_name\": \"uw9x69DT8_g\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"why does the person in the video wear a helmet\",\n    \"video_name\": \"SGAUpoTMSnA\",\n    \"answer\": \"avoid injury\"\n  },\n  {\n    \"question\": \"why does the person make up\",\n    \"video_name\": \"rGOOlcdpfLg\",\n    \"answer\": \"for sake of beauty\"\n  },\n  {\n    \"question\": \"why does the person in black comb the hair\",\n    \"video_name\": \"zTHkqpNFGno\",\n    \"answer\": \"for sake of beauty\"\n  },\n  {\n    \"question\": \"why does the person put up wallpapers\",\n    \"video_name\": \"vHnZ3NrZER0\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"why does the person cut nail for the cat\",\n    \"video_name\": \"j81ndpMC9gI\",\n    \"answer\": \"anti damage\"\n  },\n  {\n    \"question\": \"why does the person cut nail for the cat\",\n    \"video_name\": \"T3mcQnlsmq4\",\n    \"answer\": \"avoid hurt somenon\"\n  },\n  {\n    \"question\": \"why does the person have a haircut\",\n    \"video_name\": \"6G8m-vsGTA8\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"why does the person have a haircut\",\n    \"video_name\": \"5c5PFa8GR-A\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"why does the person play game\",\n    \"video_name\": \"fLR-b-FDjlM\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why does the person give bath to the dog\",\n    \"video_name\": \"W9H2qVnIWXs\",\n    \"answer\": \"keep health\"\n  },\n  {\n    \"question\": \"why does the person play ball\",\n    \"video_name\": \"16bJAOf1SJI\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"why does the person trim the bushes\",\n    \"video_name\": \"ryFSf08mrkA\",\n    \"answer\": \"for sake of beauty\"\n  },\n  {\n    \"question\": \"why does the person weed\",\n    \"video_name\": \"4z0meF-_b1I\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"why does the person wear contact lenses\",\n    \"video_name\": \"v6DdLg_Xnkg\",\n    \"answer\": \"convenient\"\n  },\n  {\n    \"question\": \"why does the audience applaud\",\n    \"video_name\": \"7rwDYzqfGgU\",\n    \"answer\": \"wonderful performance\"\n  },\n  {\n    \"question\": \"why does the person in black shave the beard\",\n    \"video_name\": \"ZLJ2BmBkLJg\",\n    \"answer\": \"for sake of beauty\"\n  },\n  {\n    \"question\": \"why does the player wear a helmet\",\n    \"video_name\": \"SjlILJ2st-I\",\n    \"answer\": \"protect head\"\n  },\n  {\n    \"question\": \"why does the person wear a life jacket\",\n    \"video_name\": \"rM02KWikOo8\",\n    \"answer\": \"prevent drowning\"\n  },\n  {\n    \"question\": \"what is the gender of the skateboarder in the video\",\n    \"video_name\": \"uIHWHnItois\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person who performs street dance in the video\",\n    \"video_name\": \"6H0D8VaIli0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person on the left side of the woman\",\n    \"video_name\": \"j81ndpMC9gI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of all the people in red\",\n    \"video_name\": \"gCHo9vxfEzM\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the adult next to the basin\",\n    \"video_name\": \"JGxf-jke0e8\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the player 9\",\n    \"video_name\": \"zOI9SjQpc_Q\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing green swimming trunks\",\n    \"video_name\": \"LvTwJTvluHE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person who wears dark green short sleeves\",\n    \"video_name\": \"R74yolowFPs\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the adult in the water\",\n    \"video_name\": \"rM02KWikOo8\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete in the video\",\n    \"video_name\": \"JH9qiuPCkY4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person who films\",\n    \"video_name\": \"sk_pnoqXxhs\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the chef\",\n    \"video_name\": \"MAGeYoFuCgo\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person with disabilities\",\n    \"video_name\": \"0lbv0AE5gJQ\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the first officer\",\n    \"video_name\": \"j6BCgvUusWs\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the first drifting person\",\n    \"video_name\": \"lYP05IRcOPE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the first person who jumps the grid\",\n    \"video_name\": \"PkRvgIFREJU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the first person wearing a hat\",\n    \"video_name\": \"K1OsjA-f17E\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the host on the left\",\n    \"video_name\": \"hvrKRg166eQ\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person standing on the ground at the end of the video\",\n    \"video_name\": \"rWfQj0X8WU4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the middle of the field\",\n    \"video_name\": \"JsPIzRsUtlE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person who pushes the curling pot\",\n    \"video_name\": \"LL0uQO4q_wY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person holding the box\",\n    \"video_name\": \"K7iw2_1BrIk\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person with the rope on his body\",\n    \"video_name\": \"Jdu5AqaWfz8\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person who dances on the stage\",\n    \"video_name\": \"1kkc9hDshP4\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person who is not in the pool\",\n    \"video_name\": \"PBYg9ekd86w\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person who sweeps the snow\",\n    \"video_name\": \"PdwWFueQErM\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person standing on the stage\",\n    \"video_name\": \"s9PkkDEl6aY\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person near the window in the video\",\n    \"video_name\": \"4uKoAk5NCkI\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing black clothes\",\n    \"video_name\": \"G4-qjGC_3VA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing black pants\",\n    \"video_name\": \"JB-ynj70saA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person with blue trousers in the first picture\",\n    \"video_name\": \"Mk7Yjq1U8OI\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing red clothes\",\n    \"video_name\": \"GOhmWfR8QBM\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing blue short sleeves\",\n    \"video_name\": \"GgnM5RGNtDE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing blue swim trunks\",\n    \"video_name\": \"Gs79qz286QE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person in the welding\",\n    \"video_name\": \"2ShsRSJ9cqE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing yellow clothes\",\n    \"video_name\": \"hRsn4nesCQo\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing white clothes on the stage\",\n    \"video_name\": \"I9ficvPdpZg\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person lying on the ground in the video\",\n    \"video_name\": \"mvRoVXRGVGw\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person on the left side of the person with the bald head in the video\",\n    \"video_name\": \"3Rzyta8op6s\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing a blue vest\",\n    \"video_name\": \"G0VWk5WqDp0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing a gymnastics suit\",\n    \"video_name\": \"FnPS6zn5S7M\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing black short sleeves\",\n    \"video_name\": \"GSrBZXLSwWI\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing blue clothes\",\n    \"video_name\": \"HtG-i1CG2Qs\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person with the pigtail\",\n    \"video_name\": \"SNja9iUdAiI\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person who is on the jumper\",\n    \"video_name\": \"jBlG0L_M96g\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the lead dancer\",\n    \"video_name\": \"PTwe2IIo3To\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person who takes off the respirator\",\n    \"video_name\": \"2DCHbuwZNSs\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person who tied the hair\",\n    \"video_name\": \"I16FTpQQiic\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person washing face in the video\",\n    \"video_name\": \"5oyenoaVB-w\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person whose shoes have been cleaned\",\n    \"video_name\": \"KT8DUDFc3Xg\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the gender of the person with curly hair in black clothes\",\n    \"video_name\": \"I3tqWc5wG78\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the security officer on the court\",\n    \"video_name\": \"JR9LosQmMvg\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the skateboarder\",\n    \"video_name\": \"0e7d39SwHCA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the athlete in the prologue\",\n    \"video_name\": \"sEcXR5b8HyY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person on the right of the standing woman\",\n    \"video_name\": \"S6Sg1l78IW0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the villain in the video\",\n    \"video_name\": \"Nb6AQxxrihA\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the winning person in the video\",\n    \"video_name\": \"Jhcis4S2Vsg\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the shape of the red obstacle that the dog has jumped over\",\n    \"video_name\": \"W9H2qVnIWXs\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the sharpening tool in the video\",\n    \"video_name\": \"YRGiRmcHdUY\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what is the shape of the towel\",\n    \"video_name\": \"nciIPwJTok8\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what is the shape of the lollipop\",\n    \"video_name\": \"ngMxE3CnGVg\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the white sharpening board\",\n    \"video_name\": \"CKSlgK_2FP4\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what is the shape of the basin in the video\",\n    \"video_name\": \"AB480dHyDeM\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what is the shape of the bottom of the club\",\n    \"video_name\": \"wnNiWoJxfSQ\",\n    \"answer\": \"cylindrical\"\n  },\n  {\n    \"question\": \"what is the shape of the bowl in the video\",\n    \"video_name\": \"Y_nyVFn70Lk\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the box\",\n    \"video_name\": \"wdvQC41PGPk\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what is the shape of the person wearing red clothes\",\n    \"video_name\": \"z6l9utYlIrw\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the cabinet on the wall\",\n    \"video_name\": \"VSsZZZHn1L0\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what is the shape of the canvas\",\n    \"video_name\": \"vQ82ItCG1x4\",\n    \"answer\": \"triangle\"\n  },\n  {\n    \"question\": \"what is the shape of the chips\",\n    \"video_name\": \"WPYQ27GjFKc\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the cup in the video\",\n    \"video_name\": \"aAz3YL2RMr4\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the wall decorations in the video\",\n    \"video_name\": \"AB5cWhlQ0Kk\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what is the shape of the eyes on the pumpkin\",\n    \"video_name\": \"JKJ_EvP7JwQ\",\n    \"answer\": \"triangle\"\n  },\n  {\n    \"question\": \"what is the shape of the sink in the video\",\n    \"video_name\": \"_QBTD1bLSI0\",\n    \"answer\": \"ellipse\"\n  },\n  {\n    \"question\": \"what is the shape of hockey in the video\",\n    \"video_name\": \"nP1Bk-vJgVg\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the kite\",\n    \"video_name\": \"7CM2OYr-Csw\",\n    \"answer\": \"triangle\"\n  },\n  {\n    \"question\": \"what is the shape of the lights on the christmas tree\",\n    \"video_name\": \"mUmSJps9WJI\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the paint bucket in the video\",\n    \"video_name\": \"Aj5ncX5G_2w\",\n    \"answer\": \"cylinder\"\n  },\n  {\n    \"question\": \"what is the shape of the plate\",\n    \"video_name\": \"KXcVYfMuUGw\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the wheel of the skateboard of the man in black pants\",\n    \"video_name\": \"OcL7ZhBCkxQ\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the smoke that the white-bearded man spit out\",\n    \"video_name\": \"wCexKIuAj3A\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"what is the shape of the things under the feet of the purple dressed person in the video\",\n    \"video_name\": \"OccEAILrU7M\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is the shape of the tiles in the video\",\n    \"video_name\": \"_2txWbQfJrY\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what is the shape of the tiles next to the swimming pool in the video\",\n    \"video_name\": \"ZAX6OojMg38\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what is the shape of the video handle\",\n    \"video_name\": \"fvEaC-fTR4A\",\n    \"answer\": \"cylinder\"\n  },\n  {\n    \"question\": \"what is the shape of the wallpaper\",\n    \"video_name\": \"w10Nr_wOh8g\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what is the boat in the video\",\n    \"video_name\": \"nnEPsdA0080\",\n    \"answer\": \"dragon boat\"\n  },\n  {\n    \"question\": \"what is the shoes' color of the person in the filed with sunglasses\",\n    \"video_name\": \"JsPIzRsUtlE\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what is the short hair baby doing\",\n    \"video_name\": \"vBOFzuS-Djo\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what is the short hair man doing\",\n    \"video_name\": \"IMMoglaJ3RY\",\n    \"answer\": \"weed\"\n  },\n  {\n    \"question\": \"what is the shortcoming of the old-fashioned lawn mower\",\n    \"video_name\": \"eQ0sW4hJ9zU\",\n    \"answer\": \"hard to catch fire\"\n  },\n  {\n    \"question\": \"what is the material of shovel in the video \",\n    \"video_name\": \"ivAvKRQQy1Q\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what's on the side of the pool\",\n    \"video_name\": \"Es3PxD9oi4I\",\n    \"answer\": \"2 people\"\n  },\n  {\n    \"question\": \"how easy is breakfast in the video\",\n    \"video_name\": \"5nu47s7JrfY\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"what is under the skier's foot\",\n    \"video_name\": \"P6Oq6C9X0fw\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what do the people in the video ski with\",\n    \"video_name\": \"E_UkQGk7QAE\",\n    \"answer\": \"skiing air cushion\"\n  },\n  {\n    \"question\": \"what is the skiing person on the right side of the video\",\n    \"video_name\": \"Av0VsTxJd78\",\n    \"answer\": \"sedan\"\n  },\n  {\n    \"question\": \"how good about man's surfing skills\",\n    \"video_name\": \"dskswWtslKc\",\n    \"answer\": \"good\"\n  },\n  {\n    \"question\": \"what is behind the small door in the video\",\n    \"video_name\": \"4JmFOPoKluM\",\n    \"answer\": \"wooden house\"\n  },\n  {\n    \"question\": \"what is the specific name of this sport\",\n    \"video_name\": \"wE9sQbGdeAk\",\n    \"answer\": \"scuba diving\"\n  },\n  {\n    \"question\": \"what type of glasses does the man in green  wear\",\n    \"video_name\": \"-EIsT868Trw\",\n    \"answer\": \"sunglasses\"\n  },\n  {\n    \"question\": \"what is the name of this sport\",\n    \"video_name\": \"HTSxgkgecS0\",\n    \"answer\": \"drifting\"\n  },\n  {\n    \"question\": \"what is the sports equipment in the video\",\n    \"video_name\": \"tgPD2SZo_DY\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is the hairstyle of the athlete in the video\",\n    \"video_name\": \"5dN-MpXG9OE\",\n    \"answer\": \"braid of double twist\"\n  },\n  {\n    \"question\": \"what is the standing woman doing\",\n    \"video_name\": \"S6Sg1l78IW0\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is the state of the wallpaper before applying glue\",\n    \"video_name\": \"8vDSV9ruYlc\",\n    \"answer\": \"out of flatness\"\n  },\n  {\n    \"question\": \"what is the style of the boy's shoes in blue\",\n    \"video_name\": \"46NS8dT15Hw\",\n    \"answer\": \"slipper\"\n  },\n  {\n    \"question\": \"what is the style of the dress that the referee wears in the video\",\n    \"video_name\": \"AjqnGUbsduw\",\n    \"answer\": \"stripe\"\n  },\n  {\n    \"question\": \"what is the style of the referee's clothes\",\n    \"video_name\": \"eJc8bebOF2A\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what is the material of the table in the video\",\n    \"video_name\": \"oT6WUU8-dgs\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is the pattern of the tablecloth on the table in the video\",\n    \"video_name\": \"jt-Vnap5KP4\",\n    \"answer\": \"lattice\"\n  },\n  {\n    \"question\": \"what is the third step shown in the video\",\n    \"video_name\": \"BWAedc31WdY\",\n    \"answer\": \"cleanser\"\n  },\n  {\n    \"question\": \"what is the tool for pruning branches in the video\",\n    \"video_name\": \"uM7QSskmloo\",\n    \"answer\": \"cutting machine\"\n  },\n  {\n    \"question\": \"what is the top of the clock\",\n    \"video_name\": \"eg2s5lOfKGI\",\n    \"answer\": \"air conditioner\"\n  },\n  {\n    \"question\": \"what is the top of the sailing boat\",\n    \"video_name\": \"dKJMP8EmZjw\",\n    \"answer\": \"two little funny birds\"\n  },\n  {\n    \"question\": \"what is the top of the soil\",\n    \"video_name\": \"UNKf15ALDh8\",\n    \"answer\": \"sapling\"\n  },\n  {\n    \"question\": \"what is the top of the staircase\",\n    \"video_name\": \"7UwRRkgQSj4\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is the top of the video at the beginning of the ship\",\n    \"video_name\": \"7BFbmEY3BNw\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"what is the toy in the video\",\n    \"video_name\": \"zA2zZPyYLlU\",\n    \"answer\": \"spider man toy\"\n  },\n  {\n    \"question\": \"what is the gender of the two people who wrestle the wrist\",\n    \"video_name\": \"U2eN4DbVLfE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the type of clothes that people wear in the video\",\n    \"video_name\": \"VvsYrfEvvUw\",\n    \"answer\": \"vest\"\n  },\n  {\n    \"question\": \"what is the type of dance in the video\",\n    \"video_name\": \"KsFid_YVsn0\",\n    \"answer\": \"tango\"\n  },\n  {\n    \"question\": \"what is the type of the house in the video\",\n    \"video_name\": \"HWFosaUWoSI\",\n    \"answer\": \"villa\"\n  },\n  {\n    \"question\": \"what is the underneath of the person in an orange life jacket\",\n    \"video_name\": \"zH1MiuiTsx8\",\n    \"answer\": \"wooden boat\"\n  },\n  {\n    \"question\": \"what is the underneath of the person in the black swimsuit\",\n    \"video_name\": \"F-Z17rHI_ms\",\n    \"answer\": \"springboard\"\n  },\n  {\n    \"question\": \"what is the underneath of the person in the striped pants\",\n    \"video_name\": \"QPEAp7nf2Tk\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is the underneath of the person person wearing a green vest\",\n    \"video_name\": \"gNUCdXGxp0w\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the underneath of the tramp\",\n    \"video_name\": \"lUmjnFf7IPQ\",\n    \"answer\": \"cardboard\"\n  },\n  {\n    \"question\": \"what is the underneath of the contestant\",\n    \"video_name\": \"2uUNiV8xmEo\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is the underneath of the elbow\",\n    \"video_name\": \"b6QSzGwI9m4\",\n    \"answer\": \"protective pad\"\n  },\n  {\n    \"question\": \"what is the upper right corner of the video interface\",\n    \"video_name\": \"RXDVJlb97OI\",\n    \"answer\": \"tigers head\"\n  },\n  {\n    \"question\": \"what is the charge of the igniter\",\n    \"video_name\": \"cCDffwsJvsY\",\n    \"answer\": \"plastic bag\"\n  },\n  {\n    \"question\": \"what is the next vegetable when handling tomatoes\",\n    \"video_name\": \"aNsj5OrEGLY\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is the venue for the video\",\n    \"video_name\": \"SYh-j9bK_ls\",\n    \"answer\": \"basketball court\"\n  },\n  {\n    \"question\": \"what is behind the person who wears red clothes at the beginning of the video \",\n    \"video_name\": \"SB0dU5oDvaE\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \" what do people who wear black shirts at the beginning of the video\",\n    \"video_name\": \"gWTndmDHZQc\",\n    \"answer\": \"play guitar\"\n  },\n  {\n    \"question\": \" what are the people wearing green shirts doing at the beginning of the video\",\n    \"video_name\": \"zqxzFxya6T8\",\n    \"answer\": \"riding\"\n  },\n  {\n    \"question\": \"what is the video talking about\",\n    \"video_name\": \"HowkVy5fOyk\",\n    \"answer\": \"introduction of bullfighting\"\n  },\n  {\n    \"question\": \"what is behind the wall in the video\",\n    \"video_name\": \"diY-XBT5cD4\",\n    \"answer\": \"painting\"\n  },\n  {\n    \"question\": \"what is the weather when sailing\",\n    \"video_name\": \"dKJMP8EmZjw\",\n    \"answer\": \"clear\"\n  },\n  {\n    \"question\": \"how is the weather during the match\",\n    \"video_name\": \"3Nd3Aai1bVA\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather in the place where the two girls perform\",\n    \"video_name\": \"k-I4zLbgdpM\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"how is the weather outside the window\",\n    \"video_name\": \"IxaBEVd2PZM\",\n    \"answer\": \"sunny\"\n  },\n  {\n    \"question\": \"what is the weather outside the cave\",\n    \"video_name\": \"7BFbmEY3BNw\",\n    \"answer\": \"cloudy\"\n  },\n  {\n    \"question\": \"what's on the right wall of the man in white\",\n    \"video_name\": \"hyMqGr0mOfA\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is the woman in white doing in the video\",\n    \"video_name\": \"utgRhyBvtRU\",\n    \"answer\": \"play volleyball\"\n  },\n  {\n    \"question\": \"what is the woman in a pink vest doing\",\n    \"video_name\": \"KMK3_VeODlk\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is the woman in a red skirt doing at the beginning of the vedio\",\n    \"video_name\": \"G25py7yEVyo\",\n    \"answer\": \"take step\"\n  },\n  {\n    \"question\": \"what is the woman in a yellow coat doing\",\n    \"video_name\": \"dGT_KGb0gyw\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the woman in the blue dress doing\",\n    \"video_name\": \"eg2s5lOfKGI\",\n    \"answer\": \"do aerobics\"\n  },\n  {\n    \"question\": \"what is the woman in the blue vest doing\",\n    \"video_name\": \"cAiig_569fI\",\n    \"answer\": \"play volleyball\"\n  },\n  {\n    \"question\": \"what is the woman in the center of the court doing\",\n    \"video_name\": \"7rwDYzqfGgU\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is the woman in the tights doing\",\n    \"video_name\": \"IIPKxzPjrWg\",\n    \"answer\": \"learn diving\"\n  },\n  {\n    \"question\": \"what is the woman wearing in a white coat doing\",\n    \"video_name\": \"DIVaPURJHPo\",\n    \"answer\": \"short\"\n  },\n  {\n    \"question\": \"what is the woman with yellow hair doing\",\n    \"video_name\": \"FPf7mAgdy0I\",\n    \"answer\": \"weave hair\"\n  },\n  {\n    \"question\": \"what does the woman have in her right hand when she is cooking\",\n    \"video_name\": \"kkji9hespu0\",\n    \"answer\": \"soup spoon\"\n  },\n  {\n    \"question\": \"what is the women in a gymnastic suit doing\",\n    \"video_name\": \"FnPS6zn5S7M\",\n    \"answer\": \"gymnastics competition\"\n  },\n  {\n    \"question\": \"what is the word on the cake\",\n    \"video_name\": \"ej_fSoVO0R8\",\n    \"answer\": \"english\"\n  },\n  {\n    \"question\": \"what is the yellow canoe like\",\n    \"video_name\": \"Erje-PwY9hE\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what is their relationship\",\n    \"video_name\": \"Gfu8e6R6jUU\",\n    \"answer\": \"dancing partner\"\n  },\n  {\n    \"question\": \"what is there not far away from the bald man\",\n    \"video_name\": \"KXMZHfCwTO0\",\n    \"answer\": \"small house\"\n  },\n  {\n    \"question\": \"what is this instrument in the video\",\n    \"video_name\": \"oGU7m7rCZ-Y\",\n    \"answer\": \"sax\"\n  },\n  {\n    \"question\": \"what is undef the feet of the person wearing a white dress\",\n    \"video_name\": \"MonWdYi3a0I\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what's under the girl in the jeans\",\n    \"video_name\": \"DUi-hLMpQQo\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what's underneath the athlete\",\n    \"video_name\": \"M2Y2Cw2kwDo\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is under the arm of the man in a grey coat\",\n    \"video_name\": \"G_rVqf_hwXw\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is under the bald woman's left hand\",\n    \"video_name\": \"IToczVhbOc0\",\n    \"answer\": \"pads\"\n  },\n  {\n    \"question\": \"what is under the bathtub\",\n    \"video_name\": \"PD-FXR7O9J0\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is under the black dog\",\n    \"video_name\": \"EXPYu9bfNcE\",\n    \"answer\": \"workbench\"\n  },\n  {\n    \"question\": \"what is under the butts of all the people with helmets in the video\",\n    \"video_name\": \"J9KjpzKM8oc\",\n    \"answer\": \"drifting air cushion\"\n  },\n  {\n    \"question\": \"what is under the feet of the girl with yellow hair\",\n    \"video_name\": \"45hcc_VI4t4\",\n    \"answer\": \"pedal\"\n  },\n  {\n    \"question\": \"what is under the feet of the man in white\",\n    \"video_name\": \"NDq29HQJVP0\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is under the feet of the person in white\",\n    \"video_name\": \"N5Dt3ycaun4\",\n    \"answer\": \"yoga mat\"\n  },\n  {\n    \"question\": \"what is under the feet of the person with the rope at the beginning\",\n    \"video_name\": \"Jdu5AqaWfz8\",\n    \"answer\": \"bridge frame\"\n  },\n  {\n    \"question\": \"what is under the foot of the man\",\n    \"video_name\": \"FADShG5lyB8\",\n    \"answer\": \"fitness equipment\"\n  },\n  {\n    \"question\": \"what is under the foot of the man in blue short sleeves\",\n    \"video_name\": \"GgnM5RGNtDE\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is under the girl in blue\",\n    \"video_name\": \"72_9wLYUDGM\",\n    \"answer\": \"sponge pad\"\n  },\n  {\n    \"question\": \"what is under the girl's body\",\n    \"video_name\": \"e4kS-n7_LRU\",\n    \"answer\": \"child seat\"\n  },\n  {\n    \"question\": \"what is under the hand\",\n    \"video_name\": \"CDncYtx6Lwc\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is under the mirror\",\n    \"video_name\": \"vBaiedxy1Uw\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is under the people in the green clothes\",\n    \"video_name\": \"gZB_XrTnDCI\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is under the people wearing military green clothes\",\n    \"video_name\": \"9UvVeUYQLgA\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what is under the peoson wearing yellow\",\n    \"video_name\": \"HJWwqjLf1I4\",\n    \"answer\": \"seaweed\"\n  },\n  {\n    \"question\": \"what is under the person in black short sleeves\",\n    \"video_name\": \"GsPE54bMFwE\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is under the person with a purple hat\",\n    \"video_name\": \"Gfu8e6R6jUU\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is under the pumpkin\",\n    \"video_name\": \"pVoM_kUQ4_E\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is under the sitting person\",\n    \"video_name\": \"Oyycph_Ukfg\",\n    \"answer\": \"stool\"\n  },\n  {\n    \"question\": \"what is under the swimsuit person\",\n    \"video_name\": \"lUil9HfTzJ0\",\n    \"answer\": \"surf board\"\n  },\n  {\n    \"question\": \"what is under the tape\",\n    \"video_name\": \"V6Sy8zpJSuc\",\n    \"answer\": \"sealing layer\"\n  },\n  {\n    \"question\": \"what is under the uneven bars\",\n    \"video_name\": \"VjMMwpgOCPo\",\n    \"answer\": \"gymnastic mat\"\n  },\n  {\n    \"question\": \"what is under the water tank\",\n    \"video_name\": \"2nDJpvD-eZU\",\n    \"answer\": \"marble\"\n  },\n  {\n    \"question\": \"what is under the white man's body\",\n    \"video_name\": \"Vhn4SuPhu-0\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is underneath the undersupported car\",\n    \"video_name\": \"jDlvGWOdcqU\",\n    \"answer\": \"lifting jack\"\n  },\n  {\n    \"question\": \"what's on the man's neck\",\n    \"video_name\": \"eiN5XPmwcEM\",\n    \"answer\": \"necklace\"\n  },\n  {\n    \"question\": \"what is wearing on the neck of the man beating a drum\",\n    \"video_name\": \"m731tx8N5-Y\",\n    \"answer\": \"brand\"\n  },\n  {\n    \"question\": \"what kind of ship is the man in blue on\",\n    \"video_name\": \"vQ82ItCG1x4\",\n    \"answer\": \"sailboat\"\n  },\n  {\n    \"question\": \"what kind of braid is this\",\n    \"video_name\": \"32vYs9wKXE8\",\n    \"answer\": \"braided hair\"\n  },\n  {\n    \"question\": \"what kind of braid is the man in purple\",\n    \"video_name\": \"pPt_fygNjtQ\",\n    \"answer\": \"ponytail\"\n  },\n  {\n    \"question\": \"what kind of car are the tyres suitable for in the video\",\n    \"video_name\": \"TnP6coXzbLY\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what kind of clothes are the men playing the violin\",\n    \"video_name\": \"CFbkVO5b2g0\",\n    \"answer\": \"stripe\"\n  },\n  {\n    \"question\": \"what kind of clothes are the people on the stage wearing\",\n    \"video_name\": \"1kkc9hDshP4\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what kind of clothes are the second people wearing\",\n    \"video_name\": \"BjjN_aq_wq4\",\n    \"answer\": \"black and white\"\n  },\n  {\n    \"question\": \"what kind of clothes does the lady wear in the video\",\n    \"video_name\": \"CDncYtx6Lwc\",\n    \"answer\": \"dress\"\n  },\n  {\n    \"question\": \"what is the dress of the lady in red\",\n    \"video_name\": \"eg2s5lOfKGI\",\n    \"answer\": \"dress\"\n  },\n  {\n    \"question\": \"what kind of clothes does the girl wear\",\n    \"video_name\": \"VSsZZZHn1L0\",\n    \"answer\": \"vest\"\n  },\n  {\n    \"question\": \"what kind of clothes do the exercisers wear\",\n    \"video_name\": \"wh6P2C2avqc\",\n    \"answer\": \"vest\"\n  },\n  {\n    \"question\": \"what kind of coat is the man wearing the wine in his hand\",\n    \"video_name\": \"dGT_KGb0gyw\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what does the fitness person do before they pull the equipment\",\n    \"video_name\": \"k--dW53UQWs\",\n    \"answer\": \"take deep breath\"\n  },\n  {\n    \"question\": \"what kind of glasses are people wearing white clothes\",\n    \"video_name\": \"cYvFlrAnlzA\",\n    \"answer\": \"sunglasses\"\n  },\n  {\n    \"question\": \"what kind of gymnastics is the game in the video\",\n    \"video_name\": \"0mNZfG6CL74\",\n    \"answer\": \"pommeled horse\"\n  },\n  {\n    \"question\": \"what kind of hair does this woman have\",\n    \"video_name\": \"kpOAGEYHts8\",\n    \"answer\": \"shoulder hair\"\n  },\n  {\n    \"question\": \"what kind of hairpin is the girl wearing pink\",\n    \"video_name\": \"28WDlVOgslg\",\n    \"answer\": \"butterfly\"\n  },\n  {\n    \"question\": \"what kind of hat do girls wear in black\",\n    \"video_name\": \"vqyQF-1Zc_E\",\n    \"answer\": \"peaked cap\"\n  },\n  {\n    \"question\": \"what kind of hat is the man wearing a pair of pulp\",\n    \"video_name\": \"DHjoAOus3xM\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what kind of ice cream does the little girl eat\",\n    \"video_name\": \"e4kS-n7_LRU\",\n    \"answer\": \"sweet canister\"\n  },\n  {\n    \"question\": \"what kind of lawn mower is better\",\n    \"video_name\": \"eQ0sW4hJ9zU\",\n    \"answer\": \"new type lawn mower\"\n  },\n  {\n    \"question\": \"what race is the man\",\n    \"video_name\": \"eiN5XPmwcEM\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what kind of material is the cabinet in the video\",\n    \"video_name\": \"A9VCuZ53ObQ\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what kind of pants do the people wear in a black coat\",\n    \"video_name\": \"fe4r2-Y8k1U\",\n    \"answer\": \"short\"\n  },\n  {\n    \"question\": \"what pants does the blue girl wear\",\n    \"video_name\": \"EETygPQ-j08\",\n    \"answer\": \"jeans\"\n  },\n  {\n    \"question\": \"what kind of race is the woman in pink\",\n    \"video_name\": \"EQrcCmgraa8\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what kind of place is the board in\",\n    \"video_name\": \"li_mry59KCM\",\n    \"answer\": \"fixator\"\n  },\n  {\n    \"question\": \"what kind of ship is the ship that appears in the video\",\n    \"video_name\": \"Ep5LuX_2gfI\",\n    \"answer\": \"scientific research ship\"\n  },\n  {\n    \"question\": \"what kind of shoes do the boys wear\",\n    \"video_name\": \"w4pO-1-FG5w\",\n    \"answer\": \"sandals\"\n  },\n  {\n    \"question\": \"what kind of shoes does the woman with the black hat wear\",\n    \"video_name\": \"vSv1qMMt4Bk\",\n    \"answer\": \"leather boots\"\n  },\n  {\n    \"question\": \"what kind of sport does it belong to\",\n    \"video_name\": \"54TIARWo-S8\",\n    \"answer\": \"three step jump\"\n  },\n  {\n    \"question\": \"what kind of sport is the man wearing a red vest\",\n    \"video_name\": \"eVkp83uGf3Y\",\n    \"answer\": \"throw hammer\"\n  },\n  {\n    \"question\": \"what kind of sports belongs to gymnastics\",\n    \"video_name\": \"huFOZ2BiM_k\",\n    \"answer\": \"pommeled horse\"\n  },\n  {\n    \"question\": \"what kind of trousers are the children in black\",\n    \"video_name\": \"_SJOVswvGRc\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what kind of trousers are the men in black coats wearing\",\n    \"video_name\": \"F9FPK6mfh88\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what kind of trousers does the man wearing yellow clothes look like\",\n    \"video_name\": \"4j_LRkB4T6c\",\n    \"answer\": \"blue shorts\"\n  },\n  {\n    \"question\": \"what kind of trousers do the children in blue and white stripes wear\",\n    \"video_name\": \"9TjPn_ejmFU\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what kind of vest does the man wear on parallel bars\",\n    \"video_name\": \"1YU4MSK80cQ\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what kind of video is this\",\n    \"video_name\": \"eVkp83uGf3Y\",\n    \"answer\": \"funny video\"\n  },\n  {\n    \"question\": \"what letter is the beginning of the word on the wall\",\n    \"video_name\": \"3PsxzgeMv5w\",\n    \"answer\": \"b\"\n  },\n  {\n    \"question\": \"what is the material of the cup worn by the person in black\",\n    \"video_name\": \"A0b_pqaKCX8\",\n    \"answer\": \"glass\"\n  },\n  {\n    \"question\": \"what material is the swimming circle in the video\",\n    \"video_name\": \"OUxgs_QlPHE\",\n    \"answer\": \"pvc material\"\n  },\n  {\n    \"question\": \"what may the man do when he is transferred to a fish\",\n    \"video_name\": \"7vcihMnmssI\",\n    \"answer\": \"roast fish\"\n  },\n  {\n    \"question\": \"what may be playing in the video\",\n    \"video_name\": \"SYh-j9bK_ls\",\n    \"answer\": \"basketball match\"\n  },\n  {\n    \"question\": \"what pants does the girl wear in black clothes\",\n    \"video_name\": \"DUi-hLMpQQo\",\n    \"answer\": \"jeans\"\n  },\n  {\n    \"question\": \"what pants does the man  wear in black clothes\",\n    \"video_name\": \"e-Xf13exY4E\",\n    \"answer\": \"jeans\"\n  },\n  {\n    \"question\": \"what plants can be seen in the desert\",\n    \"video_name\": \"KPRymTsPCC0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"what posture is the person in the video\",\n    \"video_name\": \"Y05GAiavfOg\",\n    \"answer\": \"sitting\"\n  },\n  {\n    \"question\": \"what season is in the video\",\n    \"video_name\": \"GsPE54bMFwE\",\n    \"answer\": \"summer\"\n  },\n  {\n    \"question\": \"what shape is the basketball frame\",\n    \"video_name\": \"WGUzmra3h_w\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what shape is the mirror\",\n    \"video_name\": \"wcxEkMoOmBk\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what shoes does the man wear in the video\",\n    \"video_name\": \"OQEKZXv6jSw\",\n    \"answer\": \"gym shoes\"\n  },\n  {\n    \"question\": \"what shoes does the man wear in white socks\",\n    \"video_name\": \"aH39BSM0-Ag\",\n    \"answer\": \"gym shoes\"\n  },\n  {\n    \"question\": \"what shoes does the man wipe in the video\",\n    \"video_name\": \"n832gDqfWl4\",\n    \"answer\": \"leather shoes\"\n  },\n  {\n    \"question\": \"what shoes do the boy wear in black\",\n    \"video_name\": \"N75m1Z4RqbA\",\n    \"answer\": \"leather shoes\"\n  },\n  {\n    \"question\": \"what sports are there on the playground\",\n    \"video_name\": \"EPsSfOEd3BU\",\n    \"answer\": \"pole vault\"\n  },\n  {\n    \"question\": \"what sports do the news mainly introduce\",\n    \"video_name\": \"hvrKRg166eQ\",\n    \"answer\": \"cheerleading\"\n  },\n  {\n    \"question\": \"what tattoos are there in the neck of people wearing blue stripes\",\n    \"video_name\": \"N9VOdVOiPNM\",\n    \"answer\": \"spider\"\n  },\n  {\n    \"question\": \"what color of clothes do people wear in the video\",\n    \"video_name\": \"NjXCZYO3zwU\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what time does skiing take place\",\n    \"video_name\": \"fbr7v8RMkf8\",\n    \"answer\": \"evening\"\n  },\n  {\n    \"question\": \"what time does this video capture in a day\",\n    \"video_name\": \"eQwLUJ3P7wI\",\n    \"answer\": \"afternoon\"\n  },\n  {\n    \"question\": \"what tools are used in the video\",\n    \"video_name\": \"Dd5yTxwKzXw\",\n    \"answer\": \"hair drier\"\n  },\n  {\n    \"question\": \"what tools do the people use to split the wood in the video\",\n    \"video_name\": \"BmL2XGNrxc4\",\n    \"answer\": \"axe\"\n  },\n  {\n    \"question\": \"what type of bicycle is in the video\",\n    \"video_name\": \"i8hNrK3r_MY\",\n    \"answer\": \"movement type\"\n  },\n  {\n    \"question\": \"what type of play is playing\",\n    \"video_name\": \"fLR-b-FDjlM\",\n    \"answer\": \"racing moto\"\n  },\n  {\n    \"question\": \"what type of ship is it in the video\",\n    \"video_name\": \"zA2zZPyYLlU\",\n    \"answer\": \"remote control boat\"\n  },\n  {\n    \"question\": \"hat is the front of the female athlete at the beginning of the video\",\n    \"video_name\": \"EPsSfOEd3BU\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the person with the camera before the start\",\n    \"video_name\": \"6G8m-vsGTA8\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"when did the woman in blue vest play volleyball\",\n    \"video_name\": \"cAiig_569fI\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"when is the game in the prelude\",\n    \"video_name\": \"sEcXR5b8HyY\",\n    \"answer\": \"2012\"\n  },\n  {\n    \"question\": \"when is the season for the video\",\n    \"video_name\": \"m73Cod-PmMQ\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"when is the skiing period of the day\",\n    \"video_name\": \"E_UkQGk7QAE\",\n    \"answer\": \"afternoon\"\n  },\n  {\n    \"question\": \"when is the watermelon light used in the video\",\n    \"video_name\": \"i6wR9_tkg6A\",\n    \"answer\": \"halloween\"\n  },\n  {\n    \"question\": \"where are the boys in black playing cards\",\n    \"video_name\": \"ECZb_tQZ4Pg\",\n    \"answer\": \"casinos\"\n  },\n  {\n    \"question\": \"where is the man in red sitting\",\n    \"video_name\": \"dHKeNK1uWUg\",\n    \"answer\": \"carpet\"\n  },\n  {\n    \"question\": \"where are the four people playing the game in the video\",\n    \"video_name\": \"cYvFlrAnlzA\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where are the girls in the orange dress\",\n    \"video_name\": \"iKclcQEl4zI\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where are the helmets of the people riding a bicycle\",\n    \"video_name\": \"iZT4XgzUHm4\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"where are the long haired women planting trees\",\n    \"video_name\": \"UNKf15ALDh8\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where does the red man drink\",\n    \"video_name\": \"iqyc2JM0uIU\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where are the people in orange\",\n    \"video_name\": \"a2IvS0xbNGQ\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"where are the people in red kicks playing\",\n    \"video_name\": \"_SJOVswvGRc\",\n    \"answer\": \"grass\"\n  },\n  {\n    \"question\": \"where are the people in red pants skipping\",\n    \"video_name\": \"KZ1NEffR2Qg\",\n    \"answer\": \"park path\"\n  },\n  {\n    \"question\": \"where are the people in red wrenches\",\n    \"video_name\": \"ldAHwbF8uWI\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"where are the people in the video on the skateboard\",\n    \"video_name\": \"UzmsAb15Bso\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"where are the places to be photographed\",\n    \"video_name\": \"WXH-Tj0-g4w\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where did the diver come up from the sea\",\n    \"video_name\": \"Ep5LuX_2gfI\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"where did the man in white put the wall cloth\",\n    \"video_name\": \"kistIwzeQOU\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"where did the man put the tools on board last\",\n    \"video_name\": \"li_mry59KCM\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"where did the participants drop in after their takeoff\",\n    \"video_name\": \"bBRzBh0gAZQ\",\n    \"answer\": \"bunker\"\n  },\n  {\n    \"question\": \"where did the people dance in the video\",\n    \"video_name\": \"-crpjVnFv0U\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"where did the people live in the video\",\n    \"video_name\": \"cCDffwsJvsY\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"where did the people wearing red pants start dancing at the beginning of the video\",\n    \"video_name\": \"vFO70WwrQgE\",\n    \"answer\": \"parking lot\"\n  },\n  {\n    \"question\": \"where did the two people break their wrists in the video\",\n    \"video_name\": \"cQgP0-Id-p4\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where did they put the bread\",\n    \"video_name\": \"Ko7Nt8UDP4Q\",\n    \"answer\": \"bread machine\"\n  },\n  {\n    \"question\": \"where is the man wearing blue shorts lifting weight\",\n    \"video_name\": \"iuXjatyFcwo\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where does the man drink wine in the video\",\n    \"video_name\": \"d_A-ylxNbFU\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where does the man in blue shorts use a vacuum cleaner\",\n    \"video_name\": \"UNXLfqkwKFc\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where does the man in sunglasses play skateboards\",\n    \"video_name\": \"cTxVTEzQDr8\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"where does the man in the video be greening\",\n    \"video_name\": \"cVFVREeD6hM\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"where does the man make wrapping paper in video\",\n    \"video_name\": \"zEttEkAdHts\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where does the man with dark blue pants trim their trees\",\n    \"video_name\": \"qGtUXGG78tM\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where do the bodybuilding people work out\",\n    \"video_name\": \"k--dW53UQWs\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where do the boys swim\",\n    \"video_name\": \"e0yu4WgiZUM\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"where do the children play\",\n    \"video_name\": \"Ki1bs5X_S5k\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"where do the girls dance\",\n    \"video_name\": \"EBw5-KVV_PU\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"where do the girls with the long pigtails dance ballet\",\n    \"video_name\": \"IxaBEVd2PZM\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where do the men play the harmonica in the video\",\n    \"video_name\": \"CwImmV7q1MY\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where do the people in black repair the tires\",\n    \"video_name\": \"cnMvMvVBXiI\",\n    \"answer\": \"workshop\"\n  },\n  {\n    \"question\": \"where do the young men make a cake\",\n    \"video_name\": \"iQnnCZTl_7U\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where do they smoke\",\n    \"video_name\": \"FmfAB-ppHBs\",\n    \"answer\": \"living room\"\n  },\n  {\n    \"question\": \"where does boxing happen\",\n    \"video_name\": \"12Nafz_Yet4\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where does it happen\",\n    \"video_name\": \"er5jUsRr4y0\",\n    \"answer\": \"toilet\"\n  },\n  {\n    \"question\": \"where does the black dress throw the discus\",\n    \"video_name\": \"cK0-WcGXacQ\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"where does the child split the wood\",\n    \"video_name\": \"dZsk5Dp_5FE\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"where does the little girl eat ice cream\",\n    \"video_name\": \"e4kS-n7_LRU\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"where does the man practice the ball\",\n    \"video_name\": \"laU1Hvm5Dis\",\n    \"answer\": \"meadow\"\n  },\n  {\n    \"question\": \"where does the man with a hat fly the frisbee\",\n    \"video_name\": \"IGT0dIKDGCw\",\n    \"answer\": \"grass\"\n  },\n  {\n    \"question\": \"where does the old man sit in the video\",\n    \"video_name\": \"jt-Vnap5KP4\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"where does the sailing take place\",\n    \"video_name\": \"dKJMP8EmZjw\",\n    \"answer\": \"seaside\"\n  },\n  {\n    \"question\": \"where does the short - hair baby dive\",\n    \"video_name\": \"vBOFzuS-Djo\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"where does the sport go on\",\n    \"video_name\": \"Es3PxD9oi4I\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"where does the woman in a pink vest make the game\",\n    \"video_name\": \"KMK3_VeODlk\",\n    \"answer\": \"basketball court\"\n  },\n  {\n    \"question\": \"where does this sports match happen\",\n    \"video_name\": \"FxpP7lqvm30\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"where has this man been around\",\n    \"video_name\": \"laU1Hvm5Dis\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"where is the bungee jumping\",\n    \"video_name\": \"-EIsT868Trw\",\n    \"answer\": \"railway bridge\"\n  },\n  {\n    \"question\": \"where is in the video\",\n    \"video_name\": \"OccEAILrU7M\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"where is she in the video\",\n    \"video_name\": \"_a527xEzhkw\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the bald woman\",\n    \"video_name\": \"IToczVhbOc0\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the bike riding\",\n    \"video_name\": \"FtRGOgg0Qh8\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"where is the black hair girl eating the canister\",\n    \"video_name\": \"iixZLnyLuN8\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the black man wiping the glass in the video\",\n    \"video_name\": \"fQ1OuD7x3to\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the black-and-white dog\",\n    \"video_name\": \"Ki13JIVwMdk\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the blonde man\",\n    \"video_name\": \"IsV1n_kLpvs\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the child wearing blue and white stripes\",\n    \"video_name\": \"9TjPn_ejmFU\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"where is the child with blue and white stripes\",\n    \"video_name\": \"9TjPn_ejmFU\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the closest place to fight in the video\",\n    \"video_name\": \"qlK-c7hRqcA\",\n    \"answer\": \"suburb\"\n  },\n  {\n    \"question\": \"where is the cobra\",\n    \"video_name\": \"dHKeNK1uWUg\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"where is the curly hair woman in the video\",\n    \"video_name\": \"v6DdLg_Xnkg\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the dancing field\",\n    \"video_name\": \"9eniCub7u60\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"where is the drift in the video\",\n    \"video_name\": \"uJAL31wAD2A\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"where is the flute in the video\",\n    \"video_name\": \"TtewPltwuXw\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the football match on the table\",\n    \"video_name\": \"fvEaC-fTR4A\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the girl in the video\",\n    \"video_name\": \"_G4EVIG9YaE\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"where is the grey coat man\",\n    \"video_name\": \"VfhDSTKBwgc\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"where is the light\",\n    \"video_name\": \"L5IbDi09Yb4\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"where is the location of playing football in the video\",\n    \"video_name\": \"Co_cpZWbzFk\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"where is the location of the cocktail\",\n    \"video_name\": \"H9PaZiWLgXU\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the location of the dart in the video\",\n    \"video_name\": \"hyMqGr0mOfA\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"where is the location of the deciduous video in the video\",\n    \"video_name\": \"uJ4OZfCjViM\",\n    \"answer\": \"doorway\"\n  },\n  {\n    \"question\": \"where is the location of the field shooting\",\n    \"video_name\": \"9UvVeUYQLgA\",\n    \"answer\": \"training ground\"\n  },\n  {\n    \"question\": \"where is the location of the horse in the video\",\n    \"video_name\": \"udSHsodv3gY\",\n    \"answer\": \"horse yard\"\n  },\n  {\n    \"question\": \"where is the location of the referee\",\n    \"video_name\": \"v-UmNR5yeDc\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"where is the location of the skateboard in the video\",\n    \"video_name\": \"0e7d39SwHCA\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"where is the location of the skipping rope in the video\",\n    \"video_name\": \"u_vLZxgO9Rw\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the location of the sport\",\n    \"video_name\": \"0iqx7o5WYW8\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"where is the location of the video\",\n    \"video_name\": \"P2xT7dlyX8Y\",\n    \"answer\": \"opera\"\n  },\n  {\n    \"question\": \"where is the location of the weightlifting in the video\",\n    \"video_name\": \"tRFK1BMKaRo\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the location to strap the rope skipping in the video\",\n    \"video_name\": \"I16FTpQQiic\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"where is the long hair girl in the video\",\n    \"video_name\": \"vBaiedxy1Uw\",\n    \"answer\": \"shower room\"\n  },\n  {\n    \"question\": \"where is the long hair man sitting\",\n    \"video_name\": \"8teo_0gxzgk\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"where is the long hair woman smear the lipstick\",\n    \"video_name\": \"UvOEuhS0V3E\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the man in a black vest in the long jump\",\n    \"video_name\": \"ut1AoOzqL4k\",\n    \"answer\": \"track and field ground\"\n  },\n  {\n    \"question\": \"where is the man in a red coat running\",\n    \"video_name\": \"df5rlVZD0Zc\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where is the man in a red vest\",\n    \"video_name\": \"eVkp83uGf3Y\",\n    \"answer\": \"sports meeting\"\n  },\n  {\n    \"question\": \"where is the man in black and white\",\n    \"video_name\": \"VjMMwpgOCPo\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the man in the blue dress\",\n    \"video_name\": \"YvPoAOrjX5I\",\n    \"answer\": \"tennis court\"\n  },\n  {\n    \"question\": \"where is the man in the hat weeding\",\n    \"video_name\": \"uWfQcDvel84\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the man in the striped dress\",\n    \"video_name\": \"Ye_uVlSo1HI\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the man standing\",\n    \"video_name\": \"EDDbcCBnTQM\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"where is the man standing in the video\",\n    \"video_name\": \"V2UitlmX7Uo\",\n    \"answer\": \"subway\"\n  },\n  {\n    \"question\": \"where is the man wearing a black suit\",\n    \"video_name\": \"wCexKIuAj3A\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"where is the man who wears glasses in the video\",\n    \"video_name\": \"V08Q-DbT0GQ\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the man with a hat gambling\",\n    \"video_name\": \"IGPZFun1Ok4\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the man with a stick in bullfighting in the field\",\n    \"video_name\": \"KWpATsiXF_M\",\n    \"answer\": \"bullring\"\n  },\n  {\n    \"question\": \"where is the man's right hand in black\",\n    \"video_name\": \"DOI6tsATsE4\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"where is the number 1 man in the video\",\n    \"video_name\": \"v6P6bBPBXYw\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the old man wearing a black dress in the video\",\n    \"video_name\": \"V-46E7jMm-Y\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where is the person in black pants\",\n    \"video_name\": \"OcL7ZhBCkxQ\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"where is the person in the blue coat\",\n    \"video_name\": \"oGU7m7rCZ-Y\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"where is the person in the green pants\",\n    \"video_name\": \"OlR9S70AA74\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"where is the person in the red and black dress\",\n    \"video_name\": \"oflwFZj9PNY\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the person in the white shirt\",\n    \"video_name\": \"nP1Bk-vJgVg\",\n    \"answer\": \"cudgel court\"\n  },\n  {\n    \"question\": \"where is the person running in the video\",\n    \"video_name\": \"uw9x69DT8_g\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the person wearing a hat in the video\",\n    \"video_name\": \"V6Sy8zpJSuc\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the person wearing a sweater in the video\",\n    \"video_name\": \"V9mLJJn8Lvw\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the person wearing a white hat on the field\",\n    \"video_name\": \"aH39BSM0-Ag\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"where is the person wearing black shorts\",\n    \"video_name\": \"NNiJfr_ChH4\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"where is the person wearing the red and white shoes\",\n    \"video_name\": \"kPn9NzU4W48\",\n    \"answer\": \"basketball court\"\n  },\n  {\n    \"question\": \"where is the place for a dog to take a bath\",\n    \"video_name\": \"W9H2qVnIWXs\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"where is the place for the man to wash the clothes in the video\",\n    \"video_name\": \"0lbv0AE5gJQ\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the place for the party\",\n    \"video_name\": \"I3tqWc5wG78\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the place the white-haired person performing\",\n    \"video_name\": \"I2XqSiNerwg\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"where is the place to assemble the bicycle in the video\",\n    \"video_name\": \"i8hNrK3r_MY\",\n    \"answer\": \"bicycle shop\"\n  },\n  {\n    \"question\": \"where is the place to assemble the christmas tree in the video\",\n    \"video_name\": \"Uae2MWoldTU\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"where is the place to assemble the tyres in the video\",\n    \"video_name\": \"TnP6coXzbLY\",\n    \"answer\": \"bicycle shop\"\n  },\n  {\n    \"question\": \"where is the place to do gymnastics in the video\",\n    \"video_name\": \"u0Dc0ZtudXY\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the place to play the slide in the video\",\n    \"video_name\": \"uLsq6gQXQPM\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"where is the place where a white man is located\",\n    \"video_name\": \"CKSlgK_2FP4\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the place where the host is located\",\n    \"video_name\": \"hvrKRg166eQ\",\n    \"answer\": \"guide room\"\n  },\n  {\n    \"question\": \"where is the place where the man in the green clothes makes the light\",\n    \"video_name\": \"i6wR9_tkg6A\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the place where the people in the yellow clothes look at the tv\",\n    \"video_name\": \"i5qTK0mInTc\",\n    \"answer\": \"living room\"\n  },\n  {\n    \"question\": \"where is the playground\",\n    \"video_name\": \"fLR-b-FDjlM\",\n    \"answer\": \"prairie track\"\n  },\n  {\n    \"question\": \"where is the red dress woman dancing the tai chi sword\",\n    \"video_name\": \"uty4eGb_vvU\",\n    \"answer\": \"lakeside\"\n  },\n  {\n    \"question\": \"where is the short hair man standing\",\n    \"video_name\": \"IMMoglaJ3RY\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"where is the training field in the video\",\n    \"video_name\": \"AtbTioB1_Kw\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"where is the video shot\",\n    \"video_name\": \"3LwQ2yq85LU\",\n    \"answer\": \"seaside\"\n  },\n  {\n    \"question\": \"where is the weightlifting of the people in the video\",\n    \"video_name\": \"d6gGZFQOxOg\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where is the white man in the video\",\n    \"video_name\": \"ivAvKRQQy1Q\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"where is the white woman throwing the hammer\",\n    \"video_name\": \"vezvHLPR3P0\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"where is the woman in a tight suit diving\",\n    \"video_name\": \"IIPKxzPjrWg\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"where is the woman in the blue vest playing volleyball\",\n    \"video_name\": \"cAiig_569fI\",\n    \"answer\": \"sandy beach\"\n  },\n  {\n    \"question\": \"where is the woman in the purple coat\",\n    \"video_name\": \"iuc48VIWLJY\",\n    \"answer\": \"snowfield\"\n  },\n  {\n    \"question\": \"where is the woman in the video\",\n    \"video_name\": \"Db9VWkgMpbE\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"where is the woman in white\",\n    \"video_name\": \"utgRhyBvtRU\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"where is the woman sitting on\",\n    \"video_name\": \"VFC-V06hVj0\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"where is the woman with glasses\",\n    \"video_name\": \"ILmZg0vz0Hg\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"where could the woman be\",\n    \"video_name\": \"DTI__3fkSzM\",\n    \"answer\": \"in street\"\n  },\n  {\n    \"question\": \"where may the diver be\",\n    \"video_name\": \"fEBM3nPMen8\",\n    \"answer\": \"seabed\"\n  },\n  {\n    \"question\": \"what age range is tai chi popular in china\",\n    \"video_name\": \"1PNjVTM0Zto\",\n    \"answer\": \"aged\"\n  },\n  {\n    \"question\": \"which climate zone is the most likely place in the video\",\n    \"video_name\": \"eMgC7I-GcgA\",\n    \"answer\": \"tropic\"\n  },\n  {\n    \"question\": \"which country is the person in black\",\n    \"video_name\": \"nkWMBJC2Qec\",\n    \"answer\": \"japan\"\n  },\n  {\n    \"question\": \"which country won the first place in the rankings\",\n    \"video_name\": \"bBRzBh0gAZQ\",\n    \"answer\": \"srb\"\n  },\n  {\n    \"question\": \"which eye is the person wearing first in the video\",\n    \"video_name\": \"diY-XBT5cD4\",\n    \"answer\": \"left eye\"\n  },\n  {\n    \"question\": \"whose eye is wearing contact lenses\",\n    \"video_name\": \"b0qGo-HT5iQ\",\n    \"answer\": \"right eye\"\n  },\n  {\n    \"question\": \"which finger is the first bag to use\",\n    \"video_name\": \"Feq-2NIDl94\",\n    \"answer\": \"thumb\"\n  },\n  {\n    \"question\": \"which hand does this man ues to throw the plate\",\n    \"video_name\": \"KXcVYfMuUGw\",\n    \"answer\": \"ones right hand\"\n  },\n  {\n    \"question\": \"which hand wears the hand ring on the man in black\",\n    \"video_name\": \"lUmjnFf7IPQ\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"which hand of the man in white is playing table tennis\",\n    \"video_name\": \"kYkvyRKxwfY\",\n    \"answer\": \"ones right hand\"\n  },\n  {\n    \"question\": \"which hand of the man  is the sucker on the hand of spiderman\",\n    \"video_name\": \"3JBUWRKezUI\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"which hand of the man  is tattooed on a grey vest\",\n    \"video_name\": \"BFChXuwZ4wo\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"which hand  is the javelin used by an athlete\",\n    \"video_name\": \"f1d7_TKXNYQ\",\n    \"answer\": \"ones right hand\"\n  },\n  {\n    \"question\": \"which hand of the man is the knife in the video\",\n    \"video_name\": \"YRGiRmcHdUY\",\n    \"answer\": \"ones right hand\"\n  },\n  {\n    \"question\": \"which hand of the lady is wearing a ring\",\n    \"video_name\": \"Pv4FwH2TC6Y\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"which hand is the person wearing the ring in the video\",\n    \"video_name\": \"5nu47s7JrfY\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"which hand is the person with a knife in the video\",\n    \"video_name\": \"a4gI4LC1rJk\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"which hand of the man is unhealthy in the video\",\n    \"video_name\": \"0lbv0AE5gJQ\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"which hand is used with a peeler in the video\",\n    \"video_name\": \"2nDJpvD-eZU\",\n    \"answer\": \"right\"\n  },\n  {\n    \"question\": \"which hand of the man is wearing a ring\",\n    \"video_name\": \"3nSOFmmA7FU\",\n    \"answer\": \"right\"\n  },\n  {\n    \"question\": \"which hand is wearing a watch on the coach\",\n    \"video_name\": \"sRNqK_QZbMs\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"which hand of the chef is wearing a watch\",\n    \"video_name\": \"3i3SUPsyZtA\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"which hand of the people in the green swimming trunks wears a watch\",\n    \"video_name\": \"LvTwJTvluHE\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"which hand of the person in blue is wearing a watch\",\n    \"video_name\": \"LsVCwr6qPmY\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"which hand of the referee is holding a flag\",\n    \"video_name\": \"LWt2FuU0uC4\",\n    \"answer\": \"ones right hand\"\n  },\n  {\n    \"question\": \"which hand is the one with the decorations on\",\n    \"video_name\": \"b6QSzGwI9m4\",\n    \"answer\": \"ones right hand\"\n  },\n  {\n    \"question\": \"which hand of the man on the spot wears a bracelet\",\n    \"video_name\": \"StGxFfLiYNU\",\n    \"answer\": \"right hand\"\n  },\n  {\n    \"question\": \"which hand wears gloves when the blue man performs\",\n    \"video_name\": \"pVoM_kUQ4_E\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"which hand's fingernails have been dyed\",\n    \"video_name\": \"Feq-2NIDl94\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"which is the first country on the list\",\n    \"video_name\": \"pmmQuksmTvw\",\n    \"answer\": \"ger\"\n  },\n  {\n    \"question\": \"what kind of gloves are the first people to wear gloves to wash the dishes\",\n    \"video_name\": \"BjjN_aq_wq4\",\n    \"answer\": \"leather gloves\"\n  },\n  {\n    \"question\": \"which kind of gymnastics is the sport in the video\",\n    \"video_name\": \"u0Dc0ZtudXY\",\n    \"answer\": \"balance beam\"\n  },\n  {\n    \"question\": \"which hand of the man in blue is wearing a watch\",\n    \"video_name\": \"FWZ6wgaJ_L4\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"which one is the second\",\n    \"video_name\": \"kTqt7ry3eVM\",\n    \"answer\": \"second dives\"\n  },\n  {\n    \"question\": \"which one is  the man wearing a wrist watch with a tie\",\n    \"video_name\": \"sNTOUuE7ZfM\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"which pigment used firstlly by the person in white clothes\",\n    \"video_name\": \"I9ficvPdpZg\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"which room is a wallpaper for a woman in the video\",\n    \"video_name\": \"CuLC5G7yWxA\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"which shoe is not a pair of shoelaces for the blonde woman\",\n    \"video_name\": \"7UwRRkgQSj4\",\n    \"answer\": \"right\"\n  },\n  {\n    \"question\": \"which shoes are the shoes that are wiped\",\n    \"video_name\": \"KT8DUDFc3Xg\",\n    \"answer\": \"left foot\"\n  },\n  {\n    \"question\": \"which side of the trousers is hung with the key\",\n    \"video_name\": \"1lwG-y_QCkc\",\n    \"answer\": \"right\"\n  },\n  {\n    \"question\": \"who is playing with the child\",\n    \"video_name\": \"Ki1bs5X_S5k\",\n    \"answer\": \"her father\"\n  },\n  {\n    \"question\": \"who is the man in the video\",\n    \"video_name\": \"dHKeNK1uWUg\",\n    \"answer\": \"india\"\n  },\n  {\n    \"question\": \"who is the person who arrives at the end of the line\",\n    \"video_name\": \"kyx4MMmBr3A\",\n    \"answer\": \"silverware\"\n  },\n  {\n    \"question\": \"who received the ball after the referee's service\",\n    \"video_name\": \"_l251ZuOCYU\",\n    \"answer\": \"red jersey\"\n  },\n  {\n    \"question\": \"who wears glasses\",\n    \"video_name\": \"er5jUsRr4y0\",\n    \"answer\": \"blonde man\"\n  },\n  {\n    \"question\": \"who won the two wrists in the video\",\n    \"video_name\": \"cQgP0-Id-p4\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"whose finger of the left hand wears a ring\",\n    \"video_name\": \"03c6QhTMDSs\",\n    \"answer\": \"ring finger\"\n  },\n  {\n    \"question\": \"why are four men happy in the video\",\n    \"video_name\": \"7vcihMnmssI\",\n    \"answer\": \"catch fish\"\n  },\n  {\n    \"question\": \"why are long hair women's hair wet\",\n    \"video_name\": \"8kaQq1mR2ys\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"why does the man in red have big stomachs\",\n    \"video_name\": \"mSR-HpiJ0No\",\n    \"answer\": \"pregnant\"\n  },\n  {\n    \"question\": \"why are the man running in the video\",\n    \"video_name\": \"yGTIEmZ7S2w\",\n    \"answer\": \"to throw far away\"\n  },\n  {\n    \"question\": \"why are the man shooting in the video\",\n    \"video_name\": \"fSBX-gjPblw\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"why are the man wearing camouflages defended\",\n    \"video_name\": \"afMQA352X_A\",\n    \"answer\": \"sparring\"\n  },\n  {\n    \"question\": \"why are the man wearing red clothes playing drums\",\n    \"video_name\": \"VJh9W3Gcpmo\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why are the man wearing white clothes around\",\n    \"video_name\": \"YMOYyt3kSOs\",\n    \"answer\": \"to throw shot\"\n  },\n  {\n    \"question\": \"why are the man wearing white clothes immersed in it\",\n    \"video_name\": \"nYl_tYmijlM\",\n    \"answer\": \"be happy with drum\"\n  },\n  {\n    \"question\": \"why are the man wrestling in the video\",\n    \"video_name\": \"AguxVxEWEs0\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"why are so many people playing\",\n    \"video_name\": \"9k19UUJtldg\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"why are the long hair women drinking\",\n    \"video_name\": \"7dXqXFoju2M\",\n    \"answer\": \"get rid of blues\"\n  },\n  {\n    \"question\": \"why are the people in green standing in front of the sink\",\n    \"video_name\": \"Y_nyVFn70Lk\",\n    \"answer\": \"in washing up\"\n  },\n  {\n    \"question\": \"why are the people in white wiping their hands\",\n    \"video_name\": \"_QBTD1bLSI0\",\n    \"answer\": \"some water on hands\"\n  },\n  {\n    \"question\": \"why are the people wearing orange rotations in the air\",\n    \"video_name\": \"a2IvS0xbNGQ\",\n    \"answer\": \"wear jump shoes\"\n  },\n  {\n    \"question\": \"why are the two people falling down in the video\",\n    \"video_name\": \"A9VCuZ53ObQ\",\n    \"answer\": \"in fight\"\n  },\n  {\n    \"question\": \"why are the two people in the video pushing the round\",\n    \"video_name\": \"8IrulONeC28\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why are there so many people in the park\",\n    \"video_name\": \"7lxP-hWFA24\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"why are they playing happily\",\n    \"video_name\": \"KZ1NEffR2Qg\",\n    \"answer\": \"someones good at skipping rope\"\n  },\n  {\n    \"question\": \"why does everyone dive in the video \",\n    \"video_name\": \"HJWwqjLf1I4\",\n    \"answer\": \"for entertainment\"\n  },\n  {\n    \"question\": \"why does he laugh in the video\",\n    \"video_name\": \"MQ9Ojge7CyA\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"why does the barber lift the head of the bald headed man\",\n    \"video_name\": \"mLFjww64sX8\",\n    \"answer\": \"easy to shave\"\n  },\n  {\n    \"question\": \"why does the blonde man cut the tin of the roof\",\n    \"video_name\": \"IsV1n_kLpvs\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"why does the man in grey insert needles in the middle of the paper\",\n    \"video_name\": \"VfhDSTKBwgc\",\n    \"answer\": \"make darts\"\n  },\n  {\n    \"question\": \"why grey the hand spin the wood\",\n    \"video_name\": \"dZsk5Dp_5FE\",\n    \"answer\": \"labor saving\"\n  },\n  {\n    \"question\": \"why does the little boy change his dart head\",\n    \"video_name\": \"raxeBxPQqlk\",\n    \"answer\": \"darts are easy to targets\"\n  },\n  {\n    \"question\": \"why does the man in blue shirt get off the pole after winning the game\",\n    \"video_name\": \"R-hsYQNtnn0\",\n    \"answer\": \"express happiness\"\n  },\n  {\n    \"question\": \"why does the man in the black hat pass the ball after the ball\",\n    \"video_name\": \"0iqx7o5WYW8\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"why does the man with a hat shake hands with others\",\n    \"video_name\": \"IGPZFun1Ok4\",\n    \"answer\": \"win in gambling\"\n  },\n  {\n    \"question\": \"why did the video end up\",\n    \"video_name\": \"fQ1OuD7x3to\",\n    \"answer\": \"be covered by people\"\n  },\n  {\n    \"question\": \"why does the woman of the purple coat hit the dog\",\n    \"video_name\": \"8_fjIZkNHms\",\n    \"answer\": \"blindfolded eyes\"\n  },\n  {\n    \"question\": \"why does anyone like diving\",\n    \"video_name\": \"IIPKxzPjrWg\",\n    \"answer\": \"to challenge themselves\"\n  },\n  {\n    \"question\": \"why does anyone like to ride a cross-country motorcycle\",\n    \"video_name\": \"7-UlUnaBjXU\",\n    \"answer\": \"stimulate\"\n  },\n  {\n    \"question\": \"why do the athletes apply dry powder\",\n    \"video_name\": \"0mNZfG6CL74\",\n    \"answer\": \"prevent skidding\"\n  },\n  {\n    \"question\": \"why do the athletes hold their fist after weightlifting\",\n    \"video_name\": \"tzP0lKSUv_o\",\n    \"answer\": \"express joy\"\n  },\n  {\n    \"question\": \"why do the athletes run forward\",\n    \"video_name\": \"1QIUV7WYKXg\",\n    \"answer\": \"speed up javelin\"\n  },\n  {\n    \"question\": \"why do the athletes stand upside down\",\n    \"video_name\": \"svNcNLEPKMc\",\n    \"answer\": \"more beautiful\"\n  },\n  {\n    \"question\": \"why do the athletes turn two laps\",\n    \"video_name\": \"St1RRi-aeNM\",\n    \"answer\": \"give discus inertia\"\n  },\n  {\n    \"question\": \"why do the athletes wearing green clothes take off in situ\",\n    \"video_name\": \"lOZ9bfzq89o\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"why does the black and black helmets shake hands with the man in white\",\n    \"video_name\": \"UJGK_TKrl4E\",\n    \"answer\": \"to express courtesy\"\n  },\n  {\n    \"question\": \"why do you choose children and adults to play in a game\",\n    \"video_name\": \"FxpP7lqvm30\",\n    \"answer\": \"guide children\"\n  },\n  {\n    \"question\": \"why do the children fall down\",\n    \"video_name\": \"sqv3M6MPKjQ\",\n    \"answer\": \"blower is too heavy\"\n  },\n  {\n    \"question\": \"why do the children in blue have to wave\",\n    \"video_name\": \"StGxFfLiYNU\",\n    \"answer\": \"greeting\"\n  },\n  {\n    \"question\": \"why do the children wear hats in purple clothes\",\n    \"video_name\": \"E_UkQGk7QAE\",\n    \"answer\": \"cold prevention\"\n  },\n  {\n    \"question\": \"why do the girls make a salute in the end\",\n    \"video_name\": \"EBw5-KVV_PU\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"why do the long hair men clench their fist\",\n    \"video_name\": \"8teo_0gxzgk\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"why do the long hair women want to smear lipstick\",\n    \"video_name\": \"UvOEuhS0V3E\",\n    \"answer\": \"be more beautiful\"\n  },\n  {\n    \"question\": \"why does the man in white wear a wall cloth\",\n    \"video_name\": \"kistIwzeQOU\",\n    \"answer\": \"decorating house\"\n  },\n  {\n    \"question\": \"why does the man prune trees\",\n    \"video_name\": \"fhOmyyI0eQE\",\n    \"answer\": \"trees are not neat\"\n  },\n  {\n    \"question\": \"why does the man sprinkled water on a wooden fence\",\n    \"video_name\": \"EDDbcCBnTQM\",\n    \"answer\": \"protect\"\n  },\n  {\n    \"question\": \"why does the man wear glasses for swimming\",\n    \"video_name\": \"e0yu4WgiZUM\",\n    \"answer\": \"protect eye\"\n  },\n  {\n    \"question\": \"why does the man wear glasses to cook noodles\",\n    \"video_name\": \"V08Q-DbT0GQ\",\n    \"answer\": \"hungry\"\n  },\n  {\n    \"question\": \"why does the man wear hoops in the video\",\n    \"video_name\": \"0xBP-TSsqb0\",\n    \"answer\": \"avoid messing\"\n  },\n  {\n    \"question\": \"why does the man wearing hats want to weed\",\n    \"video_name\": \"uWfQcDvel84\",\n    \"answer\": \"for sake of beauty\"\n  },\n  {\n    \"question\": \"why does the man bow to the camera in the video\",\n    \"video_name\": \"_zqj6daJo9U\",\n    \"answer\": \"thanks to audience\"\n  },\n  {\n    \"question\": \"why does the man cut sandwiches in the video\",\n    \"video_name\": \"0k6GFx2ZCg8\",\n    \"answer\": \"easy eat\"\n  },\n  {\n    \"question\": \"why does the man fit in with fitness\",\n    \"video_name\": \"k--dW53UQWs\",\n    \"answer\": \"arm force\"\n  },\n  {\n    \"question\": \"why does the man in a suit have to clap their hands\",\n    \"video_name\": \"1IbkFHNA7fg\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"why does the man in black and white wear uneven bars\",\n    \"video_name\": \"VjMMwpgOCPo\",\n    \"answer\": \"take part\"\n  },\n  {\n    \"question\": \"why does the man in black wear haircuts for tramps\",\n    \"video_name\": \"lUmjnFf7IPQ\",\n    \"answer\": \"do public welfare\"\n  },\n  {\n    \"question\": \"why does the man in black wear the runway\",\n    \"video_name\": \"T62XjoKbN8M\",\n    \"answer\": \"reduce friction\"\n  },\n  {\n    \"question\": \"why does the man in black wear three kites\",\n    \"video_name\": \"SidTquTAtyk\",\n    \"answer\": \"increase difficulty\"\n  },\n  {\n    \"question\": \"why does the man in blue clothes iron the collar\",\n    \"video_name\": \"LsVCwr6qPmY\",\n    \"answer\": \"for sake of beauty\"\n  },\n  {\n    \"question\": \"why does the man in blue clothes wash their hands after using the toilet\",\n    \"video_name\": \"HtG-i1CG2Qs\",\n    \"answer\": \"keep healthy\"\n  },\n  {\n    \"question\": \"why does the man in blue cut wood\",\n    \"video_name\": \"zxpQHLwZCug\",\n    \"answer\": \"burning fire\"\n  },\n  {\n    \"question\": \"why does the man in blue open the tires\",\n    \"video_name\": \"mMm1LfVb8Pg\",\n    \"answer\": \"convenient weeding\"\n  },\n  {\n    \"question\": \"why does the man in blue wear clapping with their teammates\",\n    \"video_name\": \"2CegApogJd4\",\n    \"answer\": \"express victory\"\n  },\n  {\n    \"question\": \"why does the man in gray dress to clean their dogs\",\n    \"video_name\": \"1xtKGlUp4Vg\",\n    \"answer\": \"keep health\"\n  },\n  {\n    \"question\": \"why does the man in green swimsuits prepare for diving\",\n    \"video_name\": \"OUxgs_QlPHE\",\n    \"answer\": \"to dive\"\n  },\n  {\n    \"question\": \"why does the man in purple clothes pick up the cup\",\n    \"video_name\": \"PJ7HOHdOdy4\",\n    \"answer\": \"scoop water\"\n  },\n  {\n    \"question\": \"why does the man in purple wear themselves to the fence\",\n    \"video_name\": \"0w4OkBenR_k\",\n    \"answer\": \"record results\"\n  },\n  {\n    \"question\": \"why does the man in red clothes run after striking the ball\",\n    \"video_name\": \"I1iUbyjWy7k\",\n    \"answer\": \"speed up\"\n  },\n  {\n    \"question\": \"why does the man in red shirts want to play volleyball\",\n    \"video_name\": \"Z-zG845frso\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"why does the man in red want to run\",\n    \"video_name\": \"OQEKZXv6jSw\",\n    \"answer\": \"jump far\"\n  },\n  {\n    \"question\": \"why does the man in the purple life jacket fall down\",\n    \"video_name\": \"uktUeF3Fy7o\",\n    \"answer\": \"unsteadiness of gravity\"\n  },\n  {\n    \"question\": \"why does the man in the video apply hair cream\",\n    \"video_name\": \"2k-qlZxc9l4\",\n    \"answer\": \"curettage\"\n  },\n  {\n    \"question\": \"why does the man in the video fasten their belts on their waist\",\n    \"video_name\": \"tRFK1BMKaRo\",\n    \"answer\": \"protect waist\"\n  },\n  {\n    \"question\": \"why does the man in the video make spaghetti\",\n    \"video_name\": \"0e5zwJywyqk\",\n    \"answer\": \"eatting\"\n  },\n  {\n    \"question\": \"why does the man in the video play a weeding machine\",\n    \"video_name\": \"v0azz4XzW_s\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"why does the man in the video remove the snow\",\n    \"video_name\": \"HPKHDze6XfA\",\n    \"answer\": \"make car light\"\n  },\n  {\n    \"question\": \"why does the man in the video suck cat peppermint for the cat\",\n    \"video_name\": \"T3mcQnlsmq4\",\n    \"answer\": \"make manicure easier\"\n  },\n  {\n    \"question\": \"why does the man in the video take the lid to press the apple\",\n    \"video_name\": \"qObVIn_GI10\",\n    \"answer\": \"squeezing apple\"\n  },\n  {\n    \"question\": \"why does the man in the video use the light bulb\",\n    \"video_name\": \"T0nCDJuikuA\",\n    \"answer\": \"test light bulb\"\n  },\n  {\n    \"question\": \"why does the man in the video wash their cars\",\n    \"video_name\": \"3uaQ0cULMgc\",\n    \"answer\": \"car dirty\"\n  },\n  {\n    \"question\": \"why does the man in the video wear submersible glasses\",\n    \"video_name\": \"2DCHbuwZNSs\",\n    \"answer\": \"protect eye\"\n  },\n  {\n    \"question\": \"why does the man in video cover their mouths\",\n    \"video_name\": \"YaC68rE4lwA\",\n    \"answer\": \"mouth leaking\"\n  },\n  {\n    \"question\": \"why does the man in videos need paper money to make wrapping paper\",\n    \"video_name\": \"zEttEkAdHts\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"why does the man in videos need to arrange neatly before dancing\",\n    \"video_name\": \"KsFid_YVsn0\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"why does the man in videos want to scatter something on the curling runway\",\n    \"video_name\": \"LL0uQO4q_wY\",\n    \"answer\": \"reduce friction\"\n  },\n  {\n    \"question\": \"why does the man in white clothes ironing\",\n    \"video_name\": \"8lMncYsbrWw\",\n    \"answer\": \"clothing leveling\"\n  },\n  {\n    \"question\": \"why does the man in white dress attack red players\",\n    \"video_name\": \"2uUNiV8xmEo\",\n    \"answer\": \"be attacked\"\n  },\n  {\n    \"question\": \"why does the man in white shirts want to play tai chi\",\n    \"video_name\": \"QJ5xv6oj1sk\",\n    \"answer\": \"take exercise\"\n  },\n  {\n    \"question\": \"why does the man in white wear bicycles\",\n    \"video_name\": \"mnNgZ-D5cKc\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why does the man in white go roller-skating\",\n    \"video_name\": \"Vhn4SuPhu-0\",\n    \"answer\": \"interest\"\n  },\n  {\n    \"question\": \"why does the man who wear white clothes tie their hair\",\n    \"video_name\": \"0q9yZPTBbus\",\n    \"answer\": \"easy blow\"\n  },\n  {\n    \"question\": \"why does the man who wear white clothes nail a nail before pulling the purple line\",\n    \"video_name\": \"0jdSl5-lMpY\",\n    \"answer\": \"fixed thread\"\n  },\n  {\n    \"question\": \"why does the man who wear white clothes skate on the skateboard\",\n    \"video_name\": \"836UrVGw6GI\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"why does the man in yellow have to run\",\n    \"video_name\": \"OFTkwnSh-sQ\",\n    \"answer\": \"farther of the jump\"\n  },\n  {\n    \"question\": \"why does the man play dolls in the video\",\n    \"video_name\": \"diY-XBT5cD4\",\n    \"answer\": \"angry\"\n  },\n  {\n    \"question\": \"why does the man want to get tattoos\",\n    \"video_name\": \"J1QB1y3vXLY\",\n    \"answer\": \"have personality\"\n  },\n  {\n    \"question\": \"why does the man wear gloves in the video\",\n    \"video_name\": \"T3A88zsRuVs\",\n    \"answer\": \"avoid freezing hands\"\n  },\n  {\n    \"question\": \"why does the man wearing gray shorts brush their teeth\",\n    \"video_name\": \"pzTqZWPubk8\",\n    \"answer\": \"protect teeth\"\n  },\n  {\n    \"question\": \"why does the man in green run before pushing a round plate\",\n    \"video_name\": \"ufrTSC3Dewg\",\n    \"answer\": \"pick up speed\"\n  },\n  {\n    \"question\": \"why does the man wear life jackets during drifting\",\n    \"video_name\": \"HTSxgkgecS0\",\n    \"answer\": \"safety guarantee\"\n  },\n  {\n    \"question\": \"why does the man in red and black want to run\",\n    \"video_name\": \"oflwFZj9PNY\",\n    \"answer\": \"you can jump farther\"\n  },\n  {\n    \"question\": \"why does the man in black fix the tire with someone else\",\n    \"video_name\": \"_jV5sAOOHLk\",\n    \"answer\": \"others car broke down\"\n  },\n  {\n    \"question\": \"why does the man wearing black shorts run\",\n    \"video_name\": \"NNiJfr_ChH4\",\n    \"answer\": \"because long jump\"\n  },\n  {\n    \"question\": \"why does the man wearing black vests play basketball\",\n    \"video_name\": \"ZgdMnfTqblw\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"why does the man wearing blue coats want to install sax\",\n    \"video_name\": \"oGU7m7rCZ-Y\",\n    \"answer\": \"to blow sax\"\n  },\n  {\n    \"question\": \"why does the man wearing camouflage wear glasses\",\n    \"video_name\": \"A_Sr0mCX2rI\",\n    \"answer\": \"put on hat\"\n  },\n  {\n    \"question\": \"why does the man wearing caps put stainless steel shelves\",\n    \"video_name\": \"2ShsRSJ9cqE\",\n    \"answer\": \"welding\"\n  },\n  {\n    \"question\": \"why does the man wearing gray helmets want to rock\",\n    \"video_name\": \"QoRlOa6R1LY\",\n    \"answer\": \"take exercise\"\n  },\n  {\n    \"question\": \"why does the man wearing hats want to weed\",\n    \"video_name\": \"1lwG-y_QCkc\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"why does the man wearing orange wear bow after they slide forward\",\n    \"video_name\": \"uIHWHnItois\",\n    \"answer\": \"reduce center of gravity\"\n  },\n  {\n    \"question\": \"why does the man wearing orange wear helmets\",\n    \"video_name\": \"mixxaL3Bdv8\",\n    \"answer\": \"protect head\"\n  },\n  {\n    \"question\": \"why does the man wearing purple and red clothes try to lift their hair\",\n    \"video_name\": \"1dDAcUliXrQ\",\n    \"answer\": \"hamper ball\"\n  },\n  {\n    \"question\": \"why does the man wearing white short sleeves play the parallel bars\",\n    \"video_name\": \"ZLG1Exv8HrY\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"why does the man wearing yellow cilps some lemon slices after putting the ice\",\n    \"video_name\": \"H9PaZiWLgXU\",\n    \"answer\": \"decorate\"\n  },\n  {\n    \"question\": \"why does the man who wash their faces in the video want to do this\",\n    \"video_name\": \"5oyenoaVB-w\",\n    \"answer\": \"acne treatment\"\n  },\n  {\n    \"question\": \"why does the man who wear purple clothes and white clothes fall down when they fall down\",\n    \"video_name\": \"0e7d39SwHCA\",\n    \"answer\": \"encouragement\"\n  },\n  {\n    \"question\": \"why does the man who wear white vests want to wave after jumping\",\n    \"video_name\": \"hIYN8cC3pEA\",\n    \"answer\": \"balance\"\n  },\n  {\n    \"question\": \"why does the man with green hats want to play fancy skateboarding\",\n    \"video_name\": \"GsPE54bMFwE\",\n    \"answer\": \"challenging\"\n  },\n  {\n    \"question\": \"why does the man with striped shirts wear yellow cloth to squatting down after tires\",\n    \"video_name\": \"qlK-c7hRqcA\",\n    \"answer\": \"bullet dodging\"\n  },\n  {\n    \"question\": \"why do the short-haired babies want to dive\",\n    \"video_name\": \"vBOFzuS-Djo\",\n    \"answer\": \"interesting\"\n  },\n  {\n    \"question\": \"why do the ten perso in black flute on the hillside\",\n    \"video_name\": \"NvRH4SoF09c\",\n    \"answer\": \"cheerful mood\"\n  },\n  {\n    \"question\": \"why do the black-haired women want to make up\",\n    \"video_name\": \"IclzwpxVvIk\",\n    \"answer\": \"more beautiful\"\n  },\n  {\n    \"question\": \"why do the chef knock the handle of the round pot\",\n    \"video_name\": \"3i3SUPsyZtA\",\n    \"answer\": \"bring eggs together\"\n  },\n  {\n    \"question\": \"why do the goalkeepers in white clothes fall down\",\n    \"video_name\": \"HQVSLlKhupk\",\n    \"answer\": \"imbalance of body\"\n  },\n  {\n    \"question\": \"why do the guests in the video gamble\",\n    \"video_name\": \"j6BCgvUusWs\",\n    \"answer\": \"satisfy greed\"\n  },\n  {\n    \"question\": \"why do the little boys in white have to bow\",\n    \"video_name\": \"1px5LTVIR3A\",\n    \"answer\": \"thank\"\n  },\n  {\n    \"question\": \"why does the man in gray go back\",\n    \"video_name\": \"A8RQcVFtovg\",\n    \"answer\": \"put child down\"\n  },\n  {\n    \"question\": \"why does the man in black dress up\",\n    \"video_name\": \"A0b_pqaKCX8\",\n    \"answer\": \"drink green liquid\"\n  },\n  {\n    \"question\": \"why does the man ride the electric car to disperse the crowd\",\n    \"video_name\": \"stdtUoog49I\",\n    \"answer\": \"let people pass through\"\n  },\n  {\n    \"question\": \"why does the man who wear gray coats cut branches\",\n    \"video_name\": \"Jdu5AqaWfz8\",\n    \"answer\": \"pursuit of stimulation\"\n  },\n  {\n    \"question\": \"why does the people who wear gray coats cut branches\",\n    \"video_name\": \"GxDNGtoVjS0\",\n    \"answer\": \"better growth\"\n  },\n  {\n    \"question\": \"why do the players in orange dress swing their fists\",\n    \"video_name\": \"0Um-HgjcnXY\",\n    \"answer\": \"excitement\"\n  },\n  {\n    \"question\": \"why does the short-hair player press his body on the players\",\n    \"video_name\": \"HDt5z5Y0opo\",\n    \"answer\": \"to win\"\n  },\n  {\n    \"question\": \"why does the third player have to turn around two laps\",\n    \"video_name\": \"LWt2FuU0uC4\",\n    \"answer\": \"ball inertia\"\n  },\n  {\n    \"question\": \"why do they carve the face on the pumpkin\",\n    \"video_name\": \"JKJ_EvP7JwQ\",\n    \"answer\": \"halloween decoration\"\n  },\n  {\n    \"question\": \"why do they decorate the box\",\n    \"video_name\": \"ILmZg0vz0Hg\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"why do they play football in the video\",\n    \"video_name\": \"30hcRe-5_3M\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why do they play music before the ball game begins\",\n    \"video_name\": \"JGPhQX97OSE\",\n    \"answer\": \"active atmosphere\"\n  },\n  {\n    \"question\": \"why do they play skateboards\",\n    \"video_name\": \"mXqmRAUsn9U\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"why do they want to do boxing\",\n    \"video_name\": \"N5Dt3ycaun4\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why do they want to do boxing in the video\",\n    \"video_name\": \"12Nafz_Yet4\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why do they want to wash the car\",\n    \"video_name\": \"K1OsjA-f17E\",\n    \"answer\": \"for beauty\"\n  },\n  {\n    \"question\": \"why do they want to wash the dishes\",\n    \"video_name\": \"JcAAwYpJhm8\",\n    \"answer\": \"keep clean\"\n  },\n  {\n    \"question\": \"why do they wear helmets\",\n    \"video_name\": \"JH9qiuPCkY4\",\n    \"answer\": \"protect their heads\"\n  },\n  {\n    \"question\": \"why do they weed the grass\",\n    \"video_name\": \"IMMoglaJ3RY\",\n    \"answer\": \"good growth of plants\"\n  },\n  {\n    \"question\": \"why does the man in white have a standoff with the man in gray\",\n    \"video_name\": \"AjqnGUbsduw\",\n    \"answer\": \"almost power\"\n  },\n  {\n    \"question\": \"why does someone in the video pull the rope before pruning branches\",\n    \"video_name\": \"uM7QSskmloo\",\n    \"answer\": \"maintain level\"\n  },\n  {\n    \"question\": \"why do they have tattoos\",\n    \"video_name\": \"6LsvBNqJuJY\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"why do they have to cut potatoes\",\n    \"video_name\": \"09ocXmGF-T4\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"why does the woman in white high five her teammates\",\n    \"video_name\": \"utgRhyBvtRU\",\n    \"answer\": \"encourage each other\"\n  },\n  {\n    \"question\": \"why do athletes have to turn around\",\n    \"video_name\": \"EPsSfOEd3BU\",\n    \"answer\": \"increase speed of shot\"\n  },\n  {\n    \"question\": \"why does the woman in a life jacket want to surf in the video\",\n    \"video_name\": \"6xBh3vzhgo4\",\n    \"answer\": \"irritation\"\n  },\n  {\n    \"question\": \"why does the woman in red dress want to dance the taiji sword\",\n    \"video_name\": \"uty4eGb_vvU\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"why does the woman in the video make hair\",\n    \"video_name\": \"FPf7mAgdy0I\",\n    \"answer\": \"good looking\"\n  },\n  {\n    \"question\": \"why does the woman in the video wear helmets\",\n    \"video_name\": \"sfbgZOHLkII\",\n    \"answer\": \"protect head\"\n  },\n  {\n    \"question\": \"why does the woman in white have to change tires\",\n    \"video_name\": \"8A4cZXyDrkU\",\n    \"answer\": \"tire broken\"\n  },\n  {\n    \"question\": \"why does the woman in white have to throw the hammer\",\n    \"video_name\": \"vezvHLPR3P0\",\n    \"answer\": \"take part\"\n  },\n  {\n    \"question\": \"why do they adjust the wine\",\n    \"video_name\": \"fMVuGUBs2cs\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"why do they clean up the horse\",\n    \"video_name\": \"K5jY2chByPw\",\n    \"answer\": \"keep clean\"\n  },\n  {\n    \"question\": \"why do they dance on the street\",\n    \"video_name\": \"1kkc9hDshP4\",\n    \"answer\": \"art of display\"\n  },\n  {\n    \"question\": \"why do they do aerobics\",\n    \"video_name\": \"eg2s5lOfKGI\",\n    \"answer\": \"healthy\"\n  },\n  {\n    \"question\": \"why do they do the flipping action\",\n    \"video_name\": \"e0yLhjXQIXI\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"why do they do warm-up exercises\",\n    \"video_name\": \"f2DS_AVorrY\",\n    \"answer\": \"prevent cramps\"\n  },\n  {\n    \"question\": \"why do they give the trees a pile of trees in the video\",\n    \"video_name\": \"_G4EVIG9YaE\",\n    \"answer\": \"fear tree be frozen\"\n  },\n  {\n    \"question\": \"why do they have to draw a picture on the pumpkin\",\n    \"video_name\": \"xuvp0jKMqRU\",\n    \"answer\": \"convenient engraving\"\n  },\n  {\n    \"question\": \"why do they have to wash it\",\n    \"video_name\": \"FWZ6wgaJ_L4\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"why do they look at the distance from the javelin flying\",\n    \"video_name\": \"f1d7_TKXNYQ\",\n    \"answer\": \"ranking\"\n  },\n  {\n    \"question\": \"why do they make hair\",\n    \"video_name\": \"32vYs9wKXE8\",\n    \"answer\": \"teaching video\"\n  },\n  {\n    \"question\": \"why do they need a curl\",\n    \"video_name\": \"7LbBmVX33I4\",\n    \"answer\": \"dress up\"\n  },\n  {\n    \"question\": \"why do they order cigarettes\",\n    \"video_name\": \"FmfAB-ppHBs\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"why do they play an instrument\",\n    \"video_name\": \"-Fk62y-1WHo\",\n    \"answer\": \"record video\"\n  },\n  {\n    \"question\": \"why do they play the harmonica\",\n    \"video_name\": \"62M1FRXsUiM\",\n    \"answer\": \"video recording\"\n  },\n  {\n    \"question\": \"why do they practice basketball\",\n    \"video_name\": \"FKtYeu2bJpA\",\n    \"answer\": \"improve skills\"\n  },\n  {\n    \"question\": \"why do they press your own juice\",\n    \"video_name\": \"qObVIn_GI10\",\n    \"answer\": \"healthy\"\n  },\n  {\n    \"question\": \"why do they ride a bike\",\n    \"video_name\": \"FtRGOgg0Qh8\",\n    \"answer\": \"take exercise\"\n  },\n  {\n    \"question\": \"why do they rinse the dog\",\n    \"video_name\": \"EXPYu9bfNcE\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"why do they shave your beard\",\n    \"video_name\": \"eiN5XPmwcEM\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"why do they throw a javelin\",\n    \"video_name\": \"98ukqD62X5s\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why do they use a timer in the video\",\n    \"video_name\": \"QIUxLD27NuI\",\n    \"answer\": \"recording time\"\n  },\n  {\n    \"question\": \"why do they use glue on the wall\",\n    \"video_name\": \"8vDSV9ruYlc\",\n    \"answer\": \"stick wallpaper\"\n  },\n  {\n    \"question\": \"why do they use vacuum cleaners to clean up the garbage\",\n    \"video_name\": \"UNXLfqkwKFc\",\n    \"answer\": \"convenient\"\n  },\n  {\n    \"question\": \"why do they want to change tires regularly\",\n    \"video_name\": \"jDlvGWOdcqU\",\n    \"answer\": \"accident prevention\"\n  },\n  {\n    \"question\": \"why do they want to clean up the floor glass\",\n    \"video_name\": \"3JBUWRKezUI\",\n    \"answer\": \"clean and beautiful\"\n  },\n  {\n    \"question\": \"why do they want to display the tools before the video starts\",\n    \"video_name\": \"0XTAq_xvquw\",\n    \"answer\": \"convenient imitation\"\n  },\n  {\n    \"question\": \"why do they want to hold the upper half of the person in the black dress\",\n    \"video_name\": \"2UhbDOd43zU\",\n    \"answer\": \"convenient viewing\"\n  },\n  {\n    \"question\": \"why do they want to jump high in red\",\n    \"video_name\": \"xS4twW2gXqc\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why do they want to live in a real battle\",\n    \"video_name\": \"9UvVeUYQLgA\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"why do they want to make a cake\",\n    \"video_name\": \"dU7jG8G5li0\",\n    \"answer\": \"greeting new year\"\n  },\n  {\n    \"question\": \"why do they want to make a carpet\",\n    \"video_name\": \"V6Sy8zpJSuc\",\n    \"answer\": \"beautify environment\"\n  },\n  {\n    \"question\": \"why do they want to make it\",\n    \"video_name\": \"xfV4V_AOVSM\",\n    \"answer\": \"well done\"\n  },\n  {\n    \"question\": \"why do they want to make the table legs in the video\",\n    \"video_name\": \"Aj5ncX5G_2w\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"why do they want to master the rope\",\n    \"video_name\": \"zPQodcasmSA\",\n    \"answer\": \"keep weight\"\n  },\n  {\n    \"question\": \"why do they want to move your wrist before the wrench is on the wrist\",\n    \"video_name\": \"SJ7jk5XAjng\",\n    \"answer\": \"prevent being injury\"\n  },\n  {\n    \"question\": \"why do they want to pick it loose\",\n    \"video_name\": \"ZBP_mLWROZU\",\n    \"answer\": \"to be beautiful\"\n  },\n  {\n    \"question\": \"why do they want to play archery\",\n    \"video_name\": \"FkbpD1zWdPw\",\n    \"answer\": \"sport project\"\n  },\n  {\n    \"question\": \"why do they want to play ping-pong\",\n    \"video_name\": \"nkWMBJC2Qec\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why do they want to play volleyball\",\n    \"video_name\": \"75Tc1nPmZFQ\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why do they want to pull the wrist\",\n    \"video_name\": \"Flm_SCK10GQ\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"why do they want to push the ice pot\",\n    \"video_name\": \"nc_NMp3vAH0\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"why do they want to shave your legs\",\n    \"video_name\": \"2k-qlZxc9l4\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"why do they want to sing\",\n    \"video_name\": \"7OcxT66BxX0\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"why do they want to smear the cream in the cake\",\n    \"video_name\": \"S7CW-si2JjA\",\n    \"answer\": \"make cake tasty\"\n  },\n  {\n    \"question\": \"why do they want to wash the dishes\",\n    \"video_name\": \"4LF0hL-mgks\",\n    \"answer\": \"bowl is dirty\"\n  },\n  {\n    \"question\": \"why do they want to wipe out sunscreen\",\n    \"video_name\": \"X6CBZwwRdQQ\",\n    \"answer\": \"for sunscreen\"\n  },\n  {\n    \"question\": \"why do they wear helmets\",\n    \"video_name\": \"lYP05IRcOPE\",\n    \"answer\": \"protect head\"\n  },\n  {\n    \"question\": \"why do they wear helmets in this competition\",\n    \"video_name\": \"0Um-HgjcnXY\",\n    \"answer\": \"protect head\"\n  },\n  {\n    \"question\": \"why do they wear helmets on a bike\",\n    \"video_name\": \"4MwnHtlaEUY\",\n    \"answer\": \"for safety\"\n  },\n  {\n    \"question\": \"why does the man in black wipe the glass\",\n    \"video_name\": \"fQ1OuD7x3to\",\n    \"answer\": \"dirty\"\n  },\n  {\n    \"question\": \"why does the blonde woman have a big belly\",\n    \"video_name\": \"7UwRRkgQSj4\",\n    \"answer\": \"pregnant\"\n  },\n  {\n    \"question\": \"why does the chef turn the noodles\",\n    \"video_name\": \"MAGeYoFuCgo\",\n    \"answer\": \"filter out water\"\n  },\n  {\n    \"question\": \"why does the man in a black vest hold a fist in his right hand\",\n    \"video_name\": \"ut1AoOzqL4k\",\n    \"answer\": \"excitement\"\n  },\n  {\n    \"question\": \"why does the man in grey make a lawn\",\n    \"video_name\": \"dN8LBey17O8\",\n    \"answer\": \"grass is too high\"\n  },\n  {\n    \"question\": \"why does anyone like archery\",\n    \"video_name\": \"8AUTKSqcmiM\",\n    \"answer\": \"interest\"\n  },\n  {\n    \"question\": \"why does the cow rush to the red cloth\",\n    \"video_name\": \"HowkVy5fOyk\",\n    \"answer\": \"anger\"\n  },\n  {\n    \"question\": \"why does the dog wags its tail\",\n    \"video_name\": \"IGT0dIKDGCw\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"why does the horse nod\",\n    \"video_name\": \"udSHsodv3gY\",\n    \"answer\": \"to express comfort\"\n  },\n  {\n    \"question\": \"why does the man train the dog on the sand\",\n    \"video_name\": \"KXcVYfMuUGw\",\n    \"answer\": \"take part\"\n  },\n  {\n    \"question\": \"why does the number 20 in green dress bow with no head\",\n    \"video_name\": \"9FQ-VLkCZo8\",\n    \"answer\": \"game lost\"\n  },\n  {\n    \"question\": \"why does the player do this in the video\",\n    \"video_name\": \"5dN-MpXG9OE\",\n    \"answer\": \"strengthen proficiency\"\n  },\n  {\n    \"question\": \"why does the referee measure the distance\",\n    \"video_name\": \"2-AMrzL7V-U\",\n    \"answer\": \"record performance\"\n  },\n  {\n    \"question\": \"why does the referee want to dodge\",\n    \"video_name\": \"FnPS6zn5S7M\",\n    \"answer\": \"fear of hindering people\"\n  },\n  {\n    \"question\": \"why does this sport call it\",\n    \"video_name\": \"7BUr2cN8CLs\",\n    \"answer\": \"curling\"\n  },\n  {\n    \"question\": \"why go rock climbing\",\n    \"video_name\": \"9ZVWD0ZKXZg\",\n    \"answer\": \"challenge stimulus\"\n  },\n  {\n    \"question\": \"why does the blonde woman gasp after tying her shoelaces\",\n    \"video_name\": \"7UwRRkgQSj4\",\n    \"answer\": \"tired out\"\n  },\n  {\n    \"question\": \"why does dance so neat\",\n    \"video_name\": \"vFO70WwrQgE\",\n    \"answer\": \"more practice\"\n  },\n  {\n    \"question\": \"why does he skip the rope in the video\",\n    \"video_name\": \"26U3SkeZU6M\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"why does the black man spin after throwing the discus\",\n    \"video_name\": \"cK0-WcGXacQ\",\n    \"answer\": \"inertia\"\n  },\n  {\n    \"question\": \"why is the blonde man bowed\",\n    \"video_name\": \"8tCRp3NKtkI\",\n    \"answer\": \"end performance\"\n  },\n  {\n    \"question\": \"why is the blood flow out\",\n    \"video_name\": \"Y7aacWy3WDo\",\n    \"answer\": \"brain is damaged\"\n  },\n  {\n    \"question\": \"why is the blue boy splashing water on the long hair girl\",\n    \"video_name\": \"vBaiedxy1Uw\",\n    \"answer\": \"guessing victory\"\n  },\n  {\n    \"question\": \"why is the cow running forward\",\n    \"video_name\": \"2_H3lxMWvPo\",\n    \"answer\": \"escape\"\n  },\n  {\n    \"question\": \"why does the human body in the video become that\",\n    \"video_name\": \"Y7aacWy3WDo\",\n    \"answer\": \"because of smoking\"\n  },\n  {\n    \"question\": \"why does the old man in blue knock on the toy\",\n    \"video_name\": \"idkQqlwyff8\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"why does the man who wear hats hold the middle finger\",\n    \"video_name\": \"Npj77L31bhw\",\n    \"answer\": \"because of tattoo pain\"\n  },\n  {\n    \"question\": \"why is the red wine precipitated\",\n    \"video_name\": \"7H1KylJRii8\",\n    \"answer\": \"large density\"\n  },\n  {\n    \"question\": \"why is tai chi popular with many people\",\n    \"video_name\": \"1PNjVTM0Zto\",\n    \"answer\": \"strong body\"\n  },\n  {\n    \"question\": \"why do they show nail art in the video\",\n    \"video_name\": \"a_EqAwUOxpM\",\n    \"answer\": \"because its done\"\n  },\n  {\n    \"question\": \"why is the woman wearing a hat riding a camel\",\n    \"video_name\": \"VFC-V06hVj0\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"why is the women's skiing leather ring\",\n    \"video_name\": \"iuc48VIWLJY\",\n    \"answer\": \"stimulate\"\n  },\n  {\n    \"question\": \"why is the yellow team celebrating\",\n    \"video_name\": \"v6P6bBPBXYw\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"why do the people in gray vests get together\",\n    \"video_name\": \"IDuoF51IMJ8\",\n    \"answer\": \"celebrate victory\"\n  },\n  {\n    \"question\": \"why do the girls in blue vests practice gymnastics\",\n    \"video_name\": \"7IwHwDuQdyU\",\n    \"answer\": \"interest\"\n  },\n  {\n    \"question\": \"why does the man in a sword suit wear a helmet\",\n    \"video_name\": \"3LwQ2yq85LU\",\n    \"answer\": \"avoid injury\"\n  },\n  {\n    \"question\": \"why do the women in red vests wear helmets \",\n    \"video_name\": \"AwcM25G1h-g\",\n    \"answer\": \"protect head\"\n  },\n  {\n    \"question\": \"why does the old man wear black sweaters for archery\",\n    \"video_name\": \"V-46E7jMm-Y\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"why does the man who wear doll clothes roll forward\",\n    \"video_name\": \"2vrR_5u2buU\",\n    \"answer\": \"express excitement\"\n  },\n  {\n    \"question\": \"why do they be equipped with scuba diving equipment\",\n    \"video_name\": \"nvcMYiZhUuo\",\n    \"answer\": \"because you want to dive\"\n  },\n  {\n    \"question\": \"why do they spread cement before laying tiles in the video\",\n    \"video_name\": \"_2txWbQfJrY\",\n    \"answer\": \"fixed ceramic tile\"\n  },\n  {\n    \"question\": \"why do they want to display finished products after the end of green subtitles\",\n    \"video_name\": \"2bQx5igckJc\",\n    \"answer\": \"easy understand\"\n  },\n  {\n    \"question\": \"why do they want to put things in the tank\",\n    \"video_name\": \"2nDJpvD-eZU\",\n    \"answer\": \"avoid enzyme change\"\n  },\n  {\n    \"question\": \"why do they put the things into the oven\",\n    \"video_name\": \"Aen-RfnlK3A\",\n    \"answer\": \"for eatting\"\n  },\n  {\n    \"question\": \"why need they shovel the snow\",\n    \"video_name\": \"SB0dU5oDvaE\",\n    \"answer\": \"convenient for walking\"\n  },\n  {\n    \"question\": \"why does the woman support the children\",\n    \"video_name\": \"sk_pnoqXxhs\",\n    \"answer\": \"prevent fall\"\n  },\n  {\n    \"question\": \"is the container darkened when the liquid in the smoking container is used up in the video\",\n    \"video_name\": \"Bgi2Y85Mbwk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman with yellow hair making hair\",\n    \"video_name\": \"FPf7mAgdy0I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman with yellow hair putting on make-up\",\n    \"video_name\": \"FPf7mAgdy0I\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"what happened before the helmet-wearing person rode their bikes up the hill\",\n    \"video_name\": \"iZT4XgzUHm4\",\n    \"answer\": \"accelerate\"\n  },\n  {\n    \"question\": \"what happened to the person in the orange suit after the bounce\",\n    \"video_name\": \"a2IvS0xbNGQ\",\n    \"answer\": \"air rotation\"\n  },\n  {\n    \"question\": \"what happened to the person in the orange dress after the third jump\",\n    \"video_name\": \"mixxaL3Bdv8\",\n    \"answer\": \"back somersault\"\n  },\n  {\n    \"question\": \"what happened to the person in the orange pants before he fell\",\n    \"video_name\": \"vnZmsOgWs0o\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what happened to the person in purple when he came in\",\n    \"video_name\": \"gOnp3DZxeKU\",\n    \"answer\": \"take oil\"\n  },\n  {\n    \"question\": \"what happened after the person in red jumped\",\n    \"video_name\": \"Ye_uVlSo1HI\",\n    \"answer\": \"table collapsed\"\n  },\n  {\n    \"question\": \"what happened when the person in the red pants assembles the front tire\",\n    \"video_name\": \"i8hNrK3r_MY\",\n    \"answer\": \"assembled rear tire\"\n  },\n  {\n    \"question\": \"what happened to the person in white after he blew his hair\",\n    \"video_name\": \"0q9yZPTBbus\",\n    \"answer\": \"tie up hair\"\n  },\n  {\n    \"question\": \"what happened to the person in white after he retracted his right foot\",\n    \"video_name\": \"gkwLhml3mnA\",\n    \"answer\": \"open your hands\"\n  },\n  {\n    \"question\": \"what happened to the person in white before he bowed his head\",\n    \"video_name\": \"RgiVa9GMYxE\",\n    \"answer\": \"shave sideburns\"\n  },\n  {\n    \"question\": \"what happened to the person in white before he threw the shot put\",\n    \"video_name\": \"YMOYyt3kSOs\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what happened when the person in white shorts jumps on a parallel bar\",\n    \"video_name\": \"ZLG1Exv8HrY\",\n    \"answer\": \"upside up\"\n  },\n  {\n    \"question\": \"what happened to the person in the yellow jacket after he bent over six times\",\n    \"video_name\": \"rApbE1VkEjE\",\n    \"answer\": \"turn head\"\n  },\n  {\n    \"question\": \"what happened to the person after the game with the green clothes\",\n    \"video_name\": \"9FQ-VLkCZo8\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happened when the person in the gray put the kid down\",\n    \"video_name\": \"A8RQcVFtovg\",\n    \"answer\": \"step back\"\n  },\n  {\n    \"question\": \"what happened when the person in gray put the onions in the pot\",\n    \"video_name\": \"0e5zwJywyqk\",\n    \"answer\": \"chilli powder\"\n  },\n  {\n    \"question\": \"what happened when the person in the white coat mowed the ground\",\n    \"video_name\": \"penDFcEdu7U\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what happened to the ink-green short-sleeved person before pushing the disk\",\n    \"video_name\": \"R74yolowFPs\",\n    \"answer\": \"stride left foot\"\n  },\n  {\n    \"question\": \"what happened to the person with the yellow hair after the camera switch\",\n    \"video_name\": \"45hcc_VI4t4\",\n    \"answer\": \"straighten back\"\n  },\n  {\n    \"question\": \"what happened after the white person played hockey\",\n    \"video_name\": \"NDq29HQJVP0\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happened after the person in the video took the scissors\",\n    \"video_name\": \"GxDNGtoVjS0\",\n    \"answer\": \"cut off\"\n  },\n  {\n    \"question\": \"what happened to the person who don't wear flippers after they give out their thumbs\",\n    \"video_name\": \"K49OCArHjXI\",\n    \"answer\": \"anjali mudra\"\n  },\n  {\n    \"question\": \"what happened to the woman in the video after the wallpaper\",\n    \"video_name\": \"CuLC5G7yWxA\",\n    \"answer\": \"look at effect\"\n  },\n  {\n    \"question\": \"what happened to the woman in the game in front of the wrenches\",\n    \"video_name\": \"SJ7jk5XAjng\",\n    \"answer\": \"active wrist\"\n  },\n  {\n    \"question\": \"what happened after the child with the stick hit the toy for the second time\",\n    \"video_name\": \"kBTqTp0SKq8\",\n    \"answer\": \"toys have been raised\"\n  },\n  {\n    \"question\": \"what happened to the girl in black after she was blindfolded\",\n    \"video_name\": \"cCimLg-8Dy4\",\n    \"answer\": \"waving\"\n  },\n  {\n    \"question\": \"what happened when the person in white hands a ball to a girl\",\n    \"video_name\": \"P5D9S9NzQ28\",\n    \"answer\": \"teaching by step\"\n  },\n  {\n    \"question\": \"what happened to the person in green after he cut the watermelon\",\n    \"video_name\": \"i6wR9_tkg6A\",\n    \"answer\": \"pulp\"\n  },\n  {\n    \"question\": \"what happened when the person in the green put his foot in the anklet\",\n    \"video_name\": \"zPQodcasmSA\",\n    \"answer\": \"grasp rope\"\n  },\n  {\n    \"question\": \"what happened to the person in the blue jacket after he left his arm\",\n    \"video_name\": \"G_rVqf_hwXw\",\n    \"answer\": \"be pulled down\"\n  },\n  {\n    \"question\": \"what happened when the person in the video saw the woman\",\n    \"video_name\": \"5oyenoaVB-w\",\n    \"answer\": \"nearly fall\"\n  },\n  {\n    \"question\": \"what happened when the person walks up to a woman\",\n    \"video_name\": \"KsFid_YVsn0\",\n    \"answer\": \"hand in hand\"\n  },\n  {\n    \"question\": \"what happened to the person in the plaid shirts after they left the glass\",\n    \"video_name\": \"Q5HdVXF390c\",\n    \"answer\": \"stand up\"\n  },\n  {\n    \"question\": \"what happened after the person in the white vest jumped\",\n    \"video_name\": \"hIYN8cC3pEA\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what happened when the person in the white suit fixed his hair\",\n    \"video_name\": \"ZBP_mLWROZU\",\n    \"answer\": \"pine\"\n  },\n  {\n    \"question\": \"what happened after the person with the pigtail hit his opponent for the first time\",\n    \"video_name\": \"SNja9iUdAiI\",\n    \"answer\": \"return to place\"\n  },\n  {\n    \"question\": \"what happened after the person in the red vest was lifted\",\n    \"video_name\": \"qSP3_C7QWpU\",\n    \"answer\": \"fell to ground\"\n  },\n  {\n    \"question\": \"what happened when the person in the striped bikini took off his sunglasses\",\n    \"video_name\": \"uJAL31wAD2A\",\n    \"answer\": \"wear sunglasses\"\n  },\n  {\n    \"question\": \"what happened when the person who made the video sat on the air cushion\",\n    \"video_name\": \"4YF9R3Sz2bA\",\n    \"answer\": \"skiing down hill\"\n  },\n  {\n    \"question\": \"what happened after the person who first appeared on the video sat down\",\n    \"video_name\": \"4LF0hL-mgks\",\n    \"answer\": \"wash dishes\"\n  },\n  {\n    \"question\": \"what happened when the person in the video took the gear off\",\n    \"video_name\": \"Of2Umm79Kxg\",\n    \"answer\": \"and put it back again\"\n  },\n  {\n    \"question\": \"what happened when the person in the white coat was picked up\",\n    \"video_name\": \"Df7AnfIEhYw\",\n    \"answer\": \"fall on air cushion\"\n  },\n  {\n    \"question\": \"what happened after the white person hit the ball on the sphere\",\n    \"video_name\": \"kYkvyRKxwfY\",\n    \"answer\": \"lose ball\"\n  },\n  {\n    \"question\": \"what happened when the person in the white shirt stood up\",\n    \"video_name\": \"ZlVydB9uUe4\",\n    \"answer\": \"close scissors\"\n  },\n  {\n    \"question\": \"what happened when the person in a white uniform throws a ball at the net\",\n    \"video_name\": \"nP1Bk-vJgVg\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what happened after the black short-sleeved person wiped five times with his left hand\",\n    \"video_name\": \"QXN6odBnVmI\",\n    \"answer\": \"changing right hand\"\n  },\n  {\n    \"question\": \"what happened to the green person after he jumped\",\n    \"video_name\": \"gZB_XrTnDCI\",\n    \"answer\": \"rotary handlebar\"\n  },\n  {\n    \"question\": \"what happened after the person in the video assembled the christmas tree\",\n    \"video_name\": \"Uae2MWoldTU\",\n    \"answer\": \"turn on light\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after he peeled the potatoes\",\n    \"video_name\": \"a4gI4LC1rJk\",\n    \"answer\": \"put sweet potato in bowls\"\n  },\n  {\n    \"question\": \"what happened when the person in the video hung up the light bulb\",\n    \"video_name\": \"T0nCDJuikuA\",\n    \"answer\": \"electrified\"\n  },\n  {\n    \"question\": \"what happened to the person in black after he drank the green liquid\",\n    \"video_name\": \"A0b_pqaKCX8\",\n    \"answer\": \"vomit\"\n  },\n  {\n    \"question\": \"what happened when the person in black lifted the man in white\",\n    \"video_name\": \"A9VCuZ53ObQ\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what happened when the person in black called the bum\",\n    \"video_name\": \"lUmjnFf7IPQ\",\n    \"answer\": \"help him cut his hair\"\n  },\n  {\n    \"question\": \"what happened to the person in the blue swim trunks when he jumped\",\n    \"video_name\": \"Gs79qz286QE\",\n    \"answer\": \"fall into water\"\n  },\n  {\n    \"question\": \"what happened when the person in the orange slide forward\",\n    \"video_name\": \"uIHWHnItois\",\n    \"answer\": \"bend\"\n  },\n  {\n    \"question\": \"what happened when the person in the long purple sleeves got up\",\n    \"video_name\": \"-vY2uUmv6Dk\",\n    \"answer\": \"stretch leg\"\n  },\n  {\n    \"question\": \"what happened to the person in red when he was explaining it to someone\",\n    \"video_name\": \"T3A88zsRuVs\",\n    \"answer\": \"take off gloves\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after they cut the potatoes\",\n    \"video_name\": \"2nDJpvD-eZU\",\n    \"answer\": \"put into water tank\"\n  },\n  {\n    \"question\": \"what happened when the person in white walked into the line\",\n    \"video_name\": \"4j_LRkB4T6c\",\n    \"answer\": \"start dancing\"\n  },\n  {\n    \"question\": \"what happened after the white person stirred the dish\",\n    \"video_name\": \"Oh3-DvDCpZ4\",\n    \"answer\": \"well cooked\"\n  },\n  {\n    \"question\": \"what happened when the person in white leaves a man's help\",\n    \"video_name\": \"otMw5GJWYWs\",\n    \"answer\": \"unable to stand firmly\"\n  },\n  {\n    \"question\": \"what happened when the person sit on cushions\",\n    \"video_name\": \"fbr7v8RMkf8\",\n    \"answer\": \"slide down slope\"\n  },\n  {\n    \"question\": \"what happened after the person in the video put hair cream on his hand\",\n    \"video_name\": \"04qggWACGWk\",\n    \"answer\": \"put on leg\"\n  },\n  {\n    \"question\": \"what happened to the person in the white short sleeve after he turned around\",\n    \"video_name\": \"qgUHRwC3194\",\n    \"answer\": \"black pants swimmers\"\n  },\n  {\n    \"question\": \"what happened after the person in the video rubbed his eyes with his hands\",\n    \"video_name\": \"uw9x69DT8_g\",\n    \"answer\": \"go on running\"\n  },\n  {\n    \"question\": \"what happened to the person in the video, daiwan, after the contact lenses\",\n    \"video_name\": \"diY-XBT5cD4\",\n    \"answer\": \"kicking doll\"\n  },\n  {\n    \"question\": \"what happened after the fertilizer was put in the soil\",\n    \"video_name\": \"an1R4BP97JY\",\n    \"answer\": \"be cuddle\"\n  },\n  {\n    \"question\": \"what happened to the first person who showed up after he finished talking\",\n    \"video_name\": \"jbCQY7V7O1s\",\n    \"answer\": \"go out of room\"\n  },\n  {\n    \"question\": \"what happened after the person in the grey vest turned and got up\",\n    \"video_name\": \"GjcRJzPjbRI\",\n    \"answer\": \"shot put\"\n  },\n  {\n    \"question\": \"what happened after the person in the video took a sip\",\n    \"video_name\": \"Bgi2Y85Mbwk\",\n    \"answer\": \"puff out smoke\"\n  },\n  {\n    \"question\": \"what happened when the person in the purple posed\",\n    \"video_name\": \"paRAKx8svJ8\",\n    \"answer\": \"start of the game\"\n  },\n  {\n    \"question\": \"what happened after the pumpkin lamp was modeled\",\n    \"video_name\": \"pVoM_kUQ4_E\",\n    \"answer\": \"audience applauded\"\n  },\n  {\n    \"question\": \"what happened when you stick your toothbrush on the back of the beam in the video\",\n    \"video_name\": \"AsdsR27UnJ0\",\n    \"answer\": \"control by foot\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after she won\",\n    \"video_name\": \"cQgP0-Id-p4\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what happened when a woman dropped a prop on the floor\",\n    \"video_name\": \"FEOdYNR4gls\",\n    \"answer\": \"pick up\"\n  },\n  {\n    \"question\": \"what happened when you put the vegetables in\",\n    \"video_name\": \"rSGboODhu04\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is the box on the table in the video\",\n    \"video_name\": \"z8x3wUZYOaM\",\n    \"answer\": \"tissue\"\n  },\n  {\n    \"question\": \"what might a man in red do for a living\",\n    \"video_name\": \"iqyc2JM0uIU\",\n    \"answer\": \"bartender\"\n  },\n  {\n    \"question\": \"what is the woman in the video\",\n    \"video_name\": \"-CqVpCRxwTY\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what is the woman behind the bungee in the video\",\n    \"video_name\": \"CvbL36Y8hN0\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"what is above the car\",\n    \"video_name\": \"brJIpRGcBFU\",\n    \"answer\": \"automative lighting\"\n  },\n  {\n    \"question\": \"what is above the football field\",\n    \"video_name\": \"CfqnHsp6olc\",\n    \"answer\": \"audiences stand\"\n  },\n  {\n    \"question\": \"what is above the main character of the game\",\n    \"video_name\": \"fLR-b-FDjlM\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is above the red boy at the beginning of the video\",\n    \"video_name\": \"idkQqlwyff8\",\n    \"answer\": \"star shaped toy\"\n  },\n  {\n    \"question\": \"what is above the snow\",\n    \"video_name\": \"iuc48VIWLJY\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is above the top of their heads\",\n    \"video_name\": \"9eniCub7u60\",\n    \"answer\": \"ceiling\"\n  },\n  {\n    \"question\": \"what is at the feet of the athletes\",\n    \"video_name\": \"Vxw3yFCV2iA\",\n    \"answer\": \"water sled\"\n  },\n  {\n    \"question\": \"what is behind the camouflage\",\n    \"video_name\": \"A_Sr0mCX2rI\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is behind the curly woman\",\n    \"video_name\": \"v6DdLg_Xnkg\",\n    \"answer\": \"red cloth\"\n  },\n  {\n    \"question\": \"what is behind the fat man\",\n    \"video_name\": \"er5jUsRr4y0\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is behind the girl\",\n    \"video_name\": \"EBw5-KVV_PU\",\n    \"answer\": \"curtain\"\n  },\n  {\n    \"question\": \"what is behind the woman wearing a white hat\",\n    \"video_name\": \"vSv1qMMt4Bk\",\n    \"answer\": \"automobile\"\n  },\n  {\n    \"question\": \"what is behind the person wearing crimson clothes\",\n    \"video_name\": \"LPRLV0eVgfY\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what's behind the man in a red vest\",\n    \"video_name\": \"eVkp83uGf3Y\",\n    \"answer\": \"safety net\"\n  },\n  {\n    \"question\": \"what is behind the man in white\",\n    \"video_name\": \"kistIwzeQOU\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is behind the man running in the video\",\n    \"video_name\": \"f1d7_TKXNYQ\",\n    \"answer\": \"spectator seats\"\n  },\n  {\n    \"question\": \"what is behind the man wearing glasses\",\n    \"video_name\": \"xuvp0jKMqRU\",\n    \"answer\": \"pumpkin shed\"\n  },\n  {\n    \"question\": \"what is behind the man in a black vest\",\n    \"video_name\": \"1YU4MSK80cQ\",\n    \"answer\": \"horizontal bar\"\n  },\n  {\n    \"question\": \"what is behind the person in a white dress\",\n    \"video_name\": \"mek9Zodu8LM\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is behind the woman in tights\",\n    \"video_name\": \"IIPKxzPjrWg\",\n    \"answer\": \"oxygen bottle\"\n  },\n  {\n    \"question\": \"what is behind the woman who stays long\",\n    \"video_name\": \"IxaBEVd2PZM\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the adults in the video\",\n    \"video_name\": \"4LoAbHdHWqM\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is behind the black and white hair dog\",\n    \"video_name\": \"Ki13JIVwMdk\",\n    \"answer\": \"carpet\"\n  },\n  {\n    \"question\": \"what is behind the bald man\",\n    \"video_name\": \"KXMZHfCwTO0\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is behind the bald head\",\n    \"video_name\": \"L5IbDi09Yb4\",\n    \"answer\": \"big bottle\"\n  },\n  {\n    \"question\": \"what is behind the basketball hoop\",\n    \"video_name\": \"IDuoF51IMJ8\",\n    \"answer\": \"spectator seats\"\n  },\n  {\n    \"question\": \"what is behind the brunette girl\",\n    \"video_name\": \"CaeZoHNHul0\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"what is the rear of the brunette woman\",\n    \"video_name\": \"IclzwpxVvIk\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is behind the blonde woman\",\n    \"video_name\": \"J1QB1y3vXLY\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is behind the ship in the video\",\n    \"video_name\": \"zA2zZPyYLlU\",\n    \"answer\": \"spider man\"\n  },\n  {\n    \"question\": \"what is behind the boys wearing glasses\",\n    \"video_name\": \"KPRymTsPCC0\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what is behind the cardboard\",\n    \"video_name\": \"VfhDSTKBwgc\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is behind the contestants\",\n    \"video_name\": \"bBRzBh0gAZQ\",\n    \"answer\": \"personal information\"\n  },\n  {\n    \"question\": \"what is behind the disabled in the video\",\n    \"video_name\": \"0lbv0AE5gJQ\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is behind the diving platform\",\n    \"video_name\": \"woI_zP55qWo\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is behind the fencing person in the second picture\",\n    \"video_name\": \"3LwQ2yq85LU\",\n    \"answer\": \"painted wall\"\n  },\n  {\n    \"question\": \"what is behind the girl in black\",\n    \"video_name\": \"VSsZZZHn1L0\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is behind the glass window on the stage\",\n    \"video_name\": \"I9ficvPdpZg\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is behind the green toy\",\n    \"video_name\": \"VJh9W3Gcpmo\",\n    \"answer\": \"red curtain\"\n  },\n  {\n    \"question\": \"what is behind the head of the blond hair\",\n    \"video_name\": \"2bQx5igckJc\",\n    \"answer\": \"both hands\"\n  },\n  {\n    \"question\": \"what is behind the left-handed injured little girl standing to explain\",\n    \"video_name\": \"k-I4zLbgdpM\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is behind the woman in blue dress\",\n    \"video_name\": \"wcxEkMoOmBk\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is behind the cheerleaders\",\n    \"video_name\": \"SYh-j9bK_ls\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is behind the little boy\",\n    \"video_name\": \"NjD6iWI3NvM\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is behind the person wearing a blue jacket\",\n    \"video_name\": \"oGU7m7rCZ-Y\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is behind the person in a black suit with a blue shirt\",\n    \"video_name\": \"H33jSILKmfI\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is behind the person wearing blue striped clothes\",\n    \"video_name\": \"N9VOdVOiPNM\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is behind the person wearing a plaid jacket\",\n    \"video_name\": \"rGOOlcdpfLg\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in a red shirt\",\n    \"video_name\": \"zpaS2iYrJjk\",\n    \"answer\": \"automobile\"\n  },\n  {\n    \"question\": \"what is behind the person wearing red\",\n    \"video_name\": \"KT8DUDFc3Xg\",\n    \"answer\": \"lot of boxes\"\n  },\n  {\n    \"question\": \"what is behind the person in white\",\n    \"video_name\": \"H_IfIsKQ3Zw\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is behind the person holding the instrument in the video\",\n    \"video_name\": \"6H0D8VaIli0\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person who plays the saxophone\",\n    \"video_name\": \"wdvQC41PGPk\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in blue\",\n    \"video_name\": \"YvPoAOrjX5I\",\n    \"answer\": \"white man\"\n  },\n  {\n    \"question\": \"what is behind the person wearing green pants\",\n    \"video_name\": \"OlR9S70AA74\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is behind the people on the stage\",\n    \"video_name\": \"BhgcXqWQhkQ\",\n    \"answer\": \"steps\"\n  },\n  {\n    \"question\": \"what is behind the person sitting in the office in the video\",\n    \"video_name\": \"AQ3eFWxZ67U\",\n    \"answer\": \"bookcase\"\n  },\n  {\n    \"question\": \"what is behind the person who stood at the beginning of the video\",\n    \"video_name\": \"kD_EJjQCLoY\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"what is behind the person wearing yellow clothes\",\n    \"video_name\": \"H9PaZiWLgXU\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"what is behind the person wearing sunglasses\",\n    \"video_name\": \"K1OsjA-f17E\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is behind the person in red\",\n    \"video_name\": \"I16FTpQQiic\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is behind the person wearing a green swimsuit\",\n    \"video_name\": \"OUxgs_QlPHE\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"what is behind the photo on the table\",\n    \"video_name\": \"UNXLfqkwKFc\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the pumpkin\",\n    \"video_name\": \"JKJ_EvP7JwQ\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the railing\",\n    \"video_name\": \"H_JLBvfP88U\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is behind the red woman\",\n    \"video_name\": \"uty4eGb_vvU\",\n    \"answer\": \"guardrail\"\n  },\n  {\n    \"question\": \"what is behind the person wearing a red hat\",\n    \"video_name\": \"9SIPJd4Hls4\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"what is behind the red sofa\",\n    \"video_name\": \"wCexKIuAj3A\",\n    \"answer\": \"glass\"\n  },\n  {\n    \"question\": \"what is behind the dog in the rubber band\",\n    \"video_name\": \"W9H2qVnIWXs\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the diver\",\n    \"video_name\": \"wE9sQbGdeAk\",\n    \"answer\": \"oxygen bottle\"\n  },\n  {\n    \"question\": \"what is behind a short hair man\",\n    \"video_name\": \"IMMoglaJ3RY\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what is behind the sofa seat\",\n    \"video_name\": \"EETygPQ-j08\",\n    \"answer\": \"railing\"\n  },\n  {\n    \"question\": \"what is behind the bouncer\",\n    \"video_name\": \"rWfQj0X8WU4\",\n    \"answer\": \"stone\"\n  },\n  {\n    \"question\": \"what is behind the volleyball court\",\n    \"video_name\": \"cAiig_569fI\",\n    \"answer\": \"shed\"\n  },\n  {\n    \"question\": \"what is behind the white clothes\",\n    \"video_name\": \"_jIXs7AFTxw\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is behind the white haired person\",\n    \"video_name\": \"I2XqSiNerwg\",\n    \"answer\": \"telegraph pole\"\n  },\n  {\n    \"question\": \"what is behind the woman in the center of the field\",\n    \"video_name\": \"7rwDYzqfGgU\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is behind the woman in the video\",\n    \"video_name\": \"j81ndpMC9gI\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the woman wearing glasses\",\n    \"video_name\": \"ILmZg0vz0Hg\",\n    \"answer\": \"ornament\"\n  },\n  {\n    \"question\": \"what is behind the people of zhangmutou\",\n    \"video_name\": \"hG4VsZQQ2_c\",\n    \"answer\": \"grass\"\n  },\n  {\n    \"question\": \"what is behind the wooden fence\",\n    \"video_name\": \"EDDbcCBnTQM\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is behind the exerciser\",\n    \"video_name\": \"wh6P2C2avqc\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person in black who dances alone\",\n    \"video_name\": \"EQWdo0FcKAo\",\n    \"answer\": \"white walls\"\n  },\n  {\n    \"question\": \"what is below the person in the video\",\n    \"video_name\": \"MQ9Ojge7CyA\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is below the ice\",\n    \"video_name\": \"7vcihMnmssI\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is under the pedal\",\n    \"video_name\": \"8kaQq1mR2ys\",\n    \"answer\": \"swimming pool\"\n  },\n  {\n    \"question\": \"what is the following when the person in red takes off\",\n    \"video_name\": \"p1QGn0IzfW0\",\n    \"answer\": \"springboard\"\n  },\n  {\n    \"question\": \"what is under the girl in a blue vest\",\n    \"video_name\": \"7IwHwDuQdyU\",\n    \"answer\": \"gymnastic mat\"\n  },\n  {\n    \"question\": \"what color is the wall outside the house\",\n    \"video_name\": \"HWFosaUWoSI\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what did drip in the cave\",\n    \"video_name\": \"7BFbmEY3BNw\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is behind the person wearing the sweater chain\",\n    \"video_name\": \"I3tqWc5wG78\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is the front of the child wearing blue and white stripes\",\n    \"video_name\": \"9TjPn_ejmFU\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is the front of the child holding a plastic bag\",\n    \"video_name\": \"-p7aui3nAnc\",\n    \"answer\": \"performers\"\n  },\n  {\n    \"question\": \"what is the front of the long hair girl\",\n    \"video_name\": \"32vYs9wKXE8\",\n    \"answer\": \"dresser\"\n  },\n  {\n    \"question\": \"what is the front of the long hair woman\",\n    \"video_name\": \"UvOEuhS0V3E\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing red and black clothes\",\n    \"video_name\": \"oflwFZj9PNY\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing a yellow scorpion\",\n    \"video_name\": \"rApbE1VkEjE\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing a black tie\",\n    \"video_name\": \"pzTqZWPubk8\",\n    \"answer\": \"water tap\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing the tie\",\n    \"video_name\": \"sNTOUuE7ZfM\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing a black and white shirt\",\n    \"video_name\": \"r2H-cnti8GI\",\n    \"answer\": \"magic cube\"\n  },\n  {\n    \"question\": \"what is the person wearing red and white shoes\",\n    \"video_name\": \"kPn9NzU4W48\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing a white apron\",\n    \"video_name\": \"ej_fSoVO0R8\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing a white helmet\",\n    \"video_name\": \"nP1Bk-vJgVg\",\n    \"answer\": \"ball net\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing a purple shirt\",\n    \"video_name\": \"gOnp3DZxeKU\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is the front of the red girl\",\n    \"video_name\": \"9G172wz5Yqo\",\n    \"answer\": \"snow land\"\n  },\n  {\n    \"question\": \"what is in front of the gray woman\",\n    \"video_name\": \"iQnnCZTl_7U\",\n    \"answer\": \"toaster oven\"\n  },\n  {\n    \"question\": \"what is the front of a woman wearing a gym suit\",\n    \"video_name\": \"FnPS6zn5S7M\",\n    \"answer\": \"referee\"\n  },\n  {\n    \"question\": \"what is the front of the woman in a red shirt\",\n    \"video_name\": \"FFMugev85IY\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what is the front of this person\",\n    \"video_name\": \"fMVuGUBs2cs\",\n    \"answer\": \"wine glass\"\n  },\n  {\n    \"question\": \"what is in front of the person in black\",\n    \"video_name\": \"5k2Ot6-wOgc\",\n    \"answer\": \"bowling pin\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing black glasses\",\n    \"video_name\": \"ZsVfa3JIUNU\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing red shorts\",\n    \"video_name\": \"ZnKB0U96ZI4\",\n    \"answer\": \"tennis\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing white clothes before launching\",\n    \"video_name\": \"SGAUpoTMSnA\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is in front of the audience in the video\",\n    \"video_name\": \"HowkVy5fOyk\",\n    \"answer\": \"bullfighting field\"\n  },\n  {\n    \"question\": \"what is in front of the person who appeared at the beginning of the video\",\n    \"video_name\": \"4LF0hL-mgks\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is the front of the two people\",\n    \"video_name\": \"ds3mAmUPxYA\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is the front of the horse\",\n    \"video_name\": \"K5jY2chByPw\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is in front of the person who started the video at the beginning of the video\",\n    \"video_name\": \"eQwLUJ3P7wI\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing a blue vest\",\n    \"video_name\": \"G0VWk5WqDp0\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what is the front of the red man\",\n    \"video_name\": \"IGPZFun1Ok4\",\n    \"answer\": \"bet\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing red\",\n    \"video_name\": \"OQEKZXv6jSw\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing the blue and white plaid\",\n    \"video_name\": \"16bJAOf1SJI\",\n    \"answer\": \"ball table\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing the plaid clothes\",\n    \"video_name\": \"rnI9vGr5V1k\",\n    \"answer\": \"grinder machine\"\n  },\n  {\n    \"question\": \"what is the man in front of the video\",\n    \"video_name\": \"HX6BeHLQh5s\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing yellow clothes\",\n    \"video_name\": \"OFTkwnSh-sQ\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is in front of the person on the balance beam\",\n    \"video_name\": \"Z6b4oFjIznU\",\n    \"answer\": \"balance beam\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing the hat\",\n    \"video_name\": \"Npj77L31bhw\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what is the person in front of the whistle in his mouth\",\n    \"video_name\": \"ghHZ9M-jx0w\",\n    \"answer\": \"scoreboard\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing a red skirt\",\n    \"video_name\": \"G25py7yEVyo\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing green swimming trunks\",\n    \"video_name\": \"LvTwJTvluHE\",\n    \"answer\": \"sandy beach\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing a gray coat\",\n    \"video_name\": \"GxDNGtoVjS0\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing a yellow vest\",\n    \"video_name\": \"GjcRJzPjbRI\",\n    \"answer\": \"scoreboard\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing black pants\",\n    \"video_name\": \"OcL7ZhBCkxQ\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is the front of the person wearing black short sleeves\",\n    \"video_name\": \"GSrBZXLSwWI\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is the person in front of the video\",\n    \"video_name\": \"NJRrhNrEMsk\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing orange clothes\",\n    \"video_name\": \"GcjzvBatqb4\",\n    \"answer\": \"pull rope\"\n  },\n  {\n    \"question\": \"what is in front of people with goggles\",\n    \"video_name\": \"K49OCArHjXI\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is under the table\",\n    \"video_name\": \"HDt5z5Y0opo\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is in front of the railing\",\n    \"video_name\": \"0w4OkBenR_k\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is in front of the snow sweeper\",\n    \"video_name\": \"PdwWFueQErM\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is in front of the surfers\",\n    \"video_name\": \"eMgC7I-GcgA\",\n    \"answer\": \"launch\"\n  },\n  {\n    \"question\": \"what is the front of the tennis court\",\n    \"video_name\": \"Jix3poZOeZA\",\n    \"answer\": \"guardrail net\"\n  },\n  {\n    \"question\": \"what is the front of the video at the beginning of the woman\",\n    \"video_name\": \"KsFid_YVsn0\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is this woman in front of\",\n    \"video_name\": \"kkji9hespu0\",\n    \"answer\": \"boiler\"\n  },\n  {\n    \"question\": \"what is behind the yard\",\n    \"video_name\": \"C7yd6yEkxXE\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is behind them in the video midfield\",\n    \"video_name\": \"_l251ZuOCYU\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is in the middle of the lawn\",\n    \"video_name\": \"IMMoglaJ3RY\",\n    \"answer\": \"potted plant\"\n  },\n  {\n    \"question\": \"what is the left hand of a person wearing blue shorts\",\n    \"video_name\": \"UNXLfqkwKFc\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is in the middle of the hula hoop on the wall\",\n    \"video_name\": \"IYLJU87AkOg\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what is the nail in the video\",\n    \"video_name\": \"a_EqAwUOxpM\",\n    \"answer\": \"minions\"\n  },\n  {\n    \"question\": \"what is the bird's mouth\",\n    \"video_name\": \"3dWw9GLcOeA\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what pants are worn by people wearing hats\",\n    \"video_name\": \"Npj77L31bhw\",\n    \"answer\": \"lattice\"\n  },\n  {\n    \"question\": \"what pants are the people wearing in the video\",\n    \"video_name\": \"NJRrhNrEMsk\",\n    \"answer\": \"jeans\"\n  },\n  {\n    \"question\": \"what shoes are worn by people wearing red trousers\",\n    \"video_name\": \"KZ1NEffR2Qg\",\n    \"answer\": \"blue sneakers\"\n  },\n  {\n    \"question\": \"what is mr. bean doing in the video\",\n    \"video_name\": \"wLXty2wzuJg\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what is next to the first fixed toothbrush\",\n    \"video_name\": \"AsdsR27UnJ0\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is next to the diving platform\",\n    \"video_name\": \"f2DS_AVorrY\",\n    \"answer\": \"big tree\"\n  },\n  {\n    \"question\": \"what is the number 43 wearing green clothes\",\n    \"video_name\": \"9FQ-VLkCZo8\",\n    \"answer\": \"play hockey\"\n  },\n  {\n    \"question\": \"what are the left and right sides of the river\",\n    \"video_name\": \"elD1P_1oiUk\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is in the hand of the person in the video\",\n    \"video_name\": \"-8SgY4vW4xM\",\n    \"answer\": \"bracelet\"\n  },\n  {\n    \"question\": \"what is the right side of the person who opened the refrigerator\",\n    \"video_name\": \"Ko7Nt8UDP4Q\",\n    \"answer\": \"refrigerator\"\n  },\n  {\n    \"question\": \"what is the right side of the stereo\",\n    \"video_name\": \"JbW8efAOOt0\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what does the black man hold on his hand\",\n    \"video_name\": \"idkQqlwyff8\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what's on the blue car\",\n    \"video_name\": \"qlK-c7hRqcA\",\n    \"answer\": \"yellow paint\"\n  },\n  {\n    \"question\": \"what is above the person wearing blue clothes\",\n    \"video_name\": \"yRQpolWhJ6A\",\n    \"answer\": \"ceiling\"\n  },\n  {\n    \"question\": \"what is the camel\",\n    \"video_name\": \"KPRymTsPCC0\",\n    \"answer\": \"iron chain\"\n  },\n  {\n    \"question\": \"what is the child wearing on the face in the video\",\n    \"video_name\": \"4LoAbHdHWqM\",\n    \"answer\": \"patch\"\n  },\n  {\n    \"question\": \"what is the face of the person driving in the video\",\n    \"video_name\": \"6G8m-vsGTA8\",\n    \"answer\": \"glasses\"\n  },\n  {\n    \"question\": \"what is on the finger\",\n    \"video_name\": \"W97fdJ2Rn9g\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is the front wall of the person in the video\",\n    \"video_name\": \"TnP6coXzbLY\",\n    \"answer\": \"tool\"\n  },\n  {\n    \"question\": \"what does the short-sleeved man have on his hand\",\n    \"video_name\": \"_2txWbQfJrY\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what do you hold on the hands of people wearing crimson clothes\",\n    \"video_name\": \"LPRLV0eVgfY\",\n    \"answer\": \"dolly\"\n  },\n  {\n    \"question\": \"what is the hand of a person dancing in blue\",\n    \"video_name\": \"1px5LTVIR3A\",\n    \"answer\": \"hu la hoop\"\n  },\n  {\n    \"question\": \"what does the person in black have on his hand\",\n    \"video_name\": \"NvRH4SoF09c\",\n    \"answer\": \"wrist watch\"\n  },\n  {\n    \"question\": \"what are the people wearing in the middle of the field\",\n    \"video_name\": \"JsPIzRsUtlE\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what do you take in the hands of people standing in taichung\",\n    \"video_name\": \"ldAHwbF8uWI\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is on the head of a person wearing dark purple clothes\",\n    \"video_name\": \"-vY2uUmv6Dk\",\n    \"answer\": \"safety hat\"\n  },\n  {\n    \"question\": \"what's on the little girl's head\",\n    \"video_name\": \"f8SWWURHV1M\",\n    \"answer\": \"plastic flowers\"\n  },\n  {\n    \"question\": \"what is on the head of a person wearing a purple dress\",\n    \"video_name\": \"wnNiWoJxfSQ\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what is wearing on the head of a person in gray\",\n    \"video_name\": \"LYTWYSqsTCE\",\n    \"answer\": \"glasses\"\n  },\n  {\n    \"question\": \"what is the girl wearing a blue dress on the head\",\n    \"video_name\": \"Ki1bs5X_S5k\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what is the head of the person wearing the hat\",\n    \"video_name\": \"IYLJU87AkOg\",\n    \"answer\": \"lamp\"\n  },\n  {\n    \"question\": \"what is the person wearing the long stick in the field\",\n    \"video_name\": \"KWpATsiXF_M\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what is wearing on the referee's head\",\n    \"video_name\": \"RLBfyIVpocE\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what is the fat woman's left hand\",\n    \"video_name\": \"EXPYu9bfNcE\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is the last blonde woman on the left hand of the video\",\n    \"video_name\": \"7BUr2cN8CLs\",\n    \"answer\": \"curling brush\"\n  },\n  {\n    \"question\": \"what does the person standing on the table wear on his left hand\",\n    \"video_name\": \"s9PkkDEl6aY\",\n    \"answer\": \"wrist watch\"\n  },\n  {\n    \"question\": \"what is the second person on the left hand of the team\",\n    \"video_name\": \"JGPhQX97OSE\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is in the hand of the person on the left side of the bald head in the video\",\n    \"video_name\": \"3Rzyta8op6s\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is the left side of the athlete with a black helmet\",\n    \"video_name\": \"sRNqK_QZbMs\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what is the left side of the person drifting\",\n    \"video_name\": \"lYP05IRcOPE\",\n    \"answer\": \"bushes\"\n  },\n  {\n    \"question\": \"what is the left side of the man wearing a black hat\",\n    \"video_name\": \"7OcxT66BxX0\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is the left side of the person with a purple belt around the waist\",\n    \"video_name\": \"PSB1nM3QXxg\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is the left side of the person wearing a pink shirt\",\n    \"video_name\": \"qGLRri_c6n8\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is the left side of the white man\",\n    \"video_name\": \"8teo_0gxzgk\",\n    \"answer\": \"long hair man\"\n  },\n  {\n    \"question\": \"what is the left side of the woman in a yellow shirt\",\n    \"video_name\": \"dGT_KGb0gyw\",\n    \"answer\": \"man in white\"\n  },\n  {\n    \"question\": \"what is the left side of the woman in light blue clothes\",\n    \"video_name\": \"E_UkQGk7QAE\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is the left side of the gray woman\",\n    \"video_name\": \"-EIsT868Trw\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what is the left side of the person wearing orange clothes\",\n    \"video_name\": \"uIHWHnItois\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is the left side of the 9th player\",\n    \"video_name\": \"zOI9SjQpc_Q\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the left side of the athlete after the shot put\",\n    \"video_name\": \"LWt2FuU0uC4\",\n    \"answer\": \"referee\"\n  },\n  {\n    \"question\": \"what is the left side of the blond-haired person\",\n    \"video_name\": \"LjPKKqe-VO0\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what is the left side of the person who keeps the donkey\",\n    \"video_name\": \"SNja9iUdAiI\",\n    \"answer\": \"basketball box\"\n  },\n  {\n    \"question\": \"what is the left side of the cake at the beginning of the video\",\n    \"video_name\": \"S7CW-si2JjA\",\n    \"answer\": \"saw\"\n  },\n  {\n    \"question\": \"what is the left side of the child\",\n    \"video_name\": \"K1LiXUpoSmI\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what is the left side of the contestant\",\n    \"video_name\": \"2CegApogJd4\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the left side of the dog\",\n    \"video_name\": \"hIHeMA1oRrY\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is on the left side of the door in the video\",\n    \"video_name\": \"bYNQ0GrCt64\",\n    \"answer\": \"shelf\"\n  },\n  {\n    \"question\": \"what is on the left side of the exerciser\",\n    \"video_name\": \"VvsYrfEvvUw\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is the left side of the fork\",\n    \"video_name\": \"V08Q-DbT0GQ\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is the left side of the green basin\",\n    \"video_name\": \"JGxf-jke0e8\",\n    \"answer\": \"yellow basin\"\n  },\n  {\n    \"question\": \"what is the left side of the house in the video\",\n    \"video_name\": \"HWFosaUWoSI\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is the left side of the person wearing a black jacket\",\n    \"video_name\": \"N4qhryre_TE\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the left side of the person wearing blue clothes\",\n    \"video_name\": \"NNiJfr_ChH4\",\n    \"answer\": \"men in black\"\n  },\n  {\n    \"question\": \"what is the left side of the person wearing red pants\",\n    \"video_name\": \"KZ1NEffR2Qg\",\n    \"answer\": \"street lamp\"\n  },\n  {\n    \"question\": \"what is the left side of the person wearing dark blue pants\",\n    \"video_name\": \"qGtUXGG78tM\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is on the left side of the ocean when the video starts\",\n    \"video_name\": \"Ep5LuX_2gfI\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is on the left side of the oven\",\n    \"video_name\": \"CKSlgK_2FP4\",\n    \"answer\": \"seasoning\"\n  },\n  {\n    \"question\": \"what is the left side of the person wearing black clothes\",\n    \"video_name\": \"N75m1Z4RqbA\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the left side of the person wearing white clothes\",\n    \"video_name\": \"NZskwwovSZI\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is on the left side of the playground\",\n    \"video_name\": \"WdtytUagoJs\",\n    \"answer\": \"audiences stand\"\n  },\n  {\n    \"question\": \"what is the left side of the red car\",\n    \"video_name\": \"8A4cZXyDrkU\",\n    \"answer\": \"spare tire\"\n  },\n  {\n    \"question\": \"what is the left side of the ski run\",\n    \"video_name\": \"JY9oOSfjj_E\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is the left side of the slide\",\n    \"video_name\": \"uLsq6gQXQPM\",\n    \"answer\": \"grass\"\n  },\n  {\n    \"question\": \"what is on the left side of the tattooed person\",\n    \"video_name\": \"aAz3YL2RMr4\",\n    \"answer\": \"tattoo artist\"\n  },\n  {\n    \"question\": \"what is the left side of the track\",\n    \"video_name\": \"3Nd3Aai1bVA\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the left side of the uneven bars\",\n    \"video_name\": \"huFOZ2BiM_k\",\n    \"answer\": \"dry powder plate\"\n  },\n  {\n    \"question\": \"what is the left side of the woman facing the mirror in the video\",\n    \"video_name\": \"6VXQoPNphgI\",\n    \"answer\": \"black hair woman\"\n  },\n  {\n    \"question\": \"what is the left side of the purple-haired female\",\n    \"video_name\": \"ETbbYC0OhL0\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is on the little girl's hair\",\n    \"video_name\": \"wLXty2wzuJg\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what is worn on the man wearing a striped shirt\",\n    \"video_name\": \"7H1KylJRii8\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is the man wearing on the screen\",\n    \"video_name\": \"0XTAq_xvquw\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what does the person on the jumper wear\",\n    \"video_name\": \"jBlG0L_M96g\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what is the white man wearing on his hand\",\n    \"video_name\": \"IDuoF51IMJ8\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is above the person wearing blue short sleeves\",\n    \"video_name\": \"H0dG_1Vgw4Q\",\n    \"answer\": \"barbell\"\n  },\n  {\n    \"question\": \"what is wearing on the ear of a person wearing a swimsuit\",\n    \"video_name\": \"SPjv6P5fxug\",\n    \"answer\": \"earring\"\n  },\n  {\n    \"question\": \"what is the woman in the right hand on the stage\",\n    \"video_name\": \"I9ficvPdpZg\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what do black man wear on their right hand\",\n    \"video_name\": \"ECZb_tQZ4Pg\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is the right side of the person in black clothes\",\n    \"video_name\": \"_kmjpSZb3OI\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is the right side of the boy in blue\",\n    \"video_name\": \"46NS8dT15Hw\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is the right side of the child in black\",\n    \"video_name\": \"_SJOVswvGRc\",\n    \"answer\": \"white man\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing blue clothes\",\n    \"video_name\": \"tgPD2SZo_DY\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing a golden coat\",\n    \"video_name\": \"zV08tITKFMM\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing gray clothes\",\n    \"video_name\": \"hRsn4nesCQo\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing a gray vest\",\n    \"video_name\": \"3kxP8qOtym8\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing a striped shirt\",\n    \"video_name\": \"ZxCdhz4ep0s\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the right side of the man wearing gray clothes\",\n    \"video_name\": \"TXSOSSGJYO0\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing purple clothes\",\n    \"video_name\": \"0e7d39SwHCA\",\n    \"answer\": \"haystack\"\n  },\n  {\n    \"question\": \"what is the right side of the man wearing black pants\",\n    \"video_name\": \"iAes5SVj_Fg\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing a blue shirt\",\n    \"video_name\": \"R-hsYQNtnn0\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"what is the right side of the person in green\",\n    \"video_name\": \"zPQodcasmSA\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing blue clothes in the video\",\n    \"video_name\": \"hGPCJb2g1tQ\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing white short sleeves\",\n    \"video_name\": \"ZLG1Exv8HrY\",\n    \"answer\": \"parallel bar\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing sunglasses\",\n    \"video_name\": \"cTxVTEzQDr8\",\n    \"answer\": \"large building\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing short sleeves\",\n    \"video_name\": \"_2txWbQfJrY\",\n    \"answer\": \"ceramic tile\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing the stripe\",\n    \"video_name\": \"_fLhtWSCaSo\",\n    \"answer\": \"person wearing a hat\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing red shorts\",\n    \"video_name\": \"Zt9qvbUnNhc\",\n    \"answer\": \"pond\"\n  },\n  {\n    \"question\": \"what is the right side of the christmas tree\",\n    \"video_name\": \"T0nCDJuikuA\",\n    \"answer\": \"row of clothes\"\n  },\n  {\n    \"question\": \"what is the right side of the person in blue\",\n    \"video_name\": \"LsVCwr6qPmY\",\n    \"answer\": \"iron\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing gray clothes\",\n    \"video_name\": \"LYTWYSqsTCE\",\n    \"answer\": \"masonry\"\n  },\n  {\n    \"question\": \"what is the right side of the car that is opened\",\n    \"video_name\": \"HPKHDze6XfA\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing black clothes\",\n    \"video_name\": \"G4-qjGC_3VA\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is on the right side of the ski resort\",\n    \"video_name\": \"vqyQF-1Zc_E\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is on the right side of the white sign\",\n    \"video_name\": \"bWZkD_s1940\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what is on the right side of the basketball box\",\n    \"video_name\": \"WGUzmra3h_w\",\n    \"answer\": \"pads\"\n  },\n  {\n    \"question\": \"what is the right side of the blue car\",\n    \"video_name\": \"qlK-c7hRqcA\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is on the right side of the off-road motorcycle\",\n    \"video_name\": \"7-UlUnaBjXU\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the right side of the window where the darts are released\",\n    \"video_name\": \"raxeBxPQqlk\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is the right side of the lawn\",\n    \"video_name\": \"1lwG-y_QCkc\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is the right side of the person with blue pants in the first picture\",\n    \"video_name\": \"Mk7Yjq1U8OI\",\n    \"answer\": \"small house\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing blue swimming trunks\",\n    \"video_name\": \"Gs79qz286QE\",\n    \"answer\": \"ladder\"\n  },\n  {\n    \"question\": \"what is the right side of the person wearing gray clothes facing the camera\",\n    \"video_name\": \"MDsJa6Yitwc\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is the right side of the runway\",\n    \"video_name\": \"2vrR_5u2buU\",\n    \"answer\": \"cameraman\"\n  },\n  {\n    \"question\": \"what is above the sailboat\",\n    \"video_name\": \"vQ82ItCG1x4\",\n    \"answer\": \"canvas\"\n  },\n  {\n    \"question\": \"what's on the soup in the video\",\n    \"video_name\": \"Oh3-DvDCpZ4\",\n    \"answer\": \"shrimp meat\"\n  },\n  {\n    \"question\": \"what is the top of the faucet\",\n    \"video_name\": \"HtG-i1CG2Qs\",\n    \"answer\": \"hand washing box\"\n  },\n  {\n    \"question\": \"what is the judge's seat above\",\n    \"video_name\": \"PFeerDZbGn8\",\n    \"answer\": \"awning\"\n  },\n  {\n    \"question\": \"what is above the person in white clothes\",\n    \"video_name\": \"W2Mh01F3K5c\",\n    \"answer\": \"stairs\"\n  },\n  {\n    \"question\": \"what is hanging on the wall behind the person wearing a suit\",\n    \"video_name\": \"H33jSILKmfI\",\n    \"answer\": \"american flag\"\n  },\n  {\n    \"question\": \"what is on the wall to the right of the chair\",\n    \"video_name\": \"w10Nr_wOh8g\",\n    \"answer\": \"socket\"\n  },\n  {\n    \"question\": \"what is on the sink\",\n    \"video_name\": \"BWAedc31WdY\",\n    \"answer\": \"cosmetics\"\n  },\n  {\n    \"question\": \"what is on the white table\",\n    \"video_name\": \"WNgI2qBvPrY\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what might be in this box\",\n    \"video_name\": \"ILmZg0vz0Hg\",\n    \"answer\": \"clothes\"\n  },\n  {\n    \"question\": \"what is the right side of the person in the video\",\n    \"video_name\": \"_a527xEzhkw\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is the green one\",\n    \"video_name\": \"Ko7Nt8UDP4Q\",\n    \"answer\": \"romaine lettuce\"\n  },\n  {\n    \"question\": \"what is the event venue in the video\",\n    \"video_name\": \"fSBX-gjPblw\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what do adults wear on their left hand\",\n    \"video_name\": \"4JmFOPoKluM\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are the benefits of practicing yoga\",\n    \"video_name\": \"RlRrktN5iH4\",\n    \"answer\": \"make body pliable\"\n  },\n  {\n    \"question\": \"what is the animal at the bottom left of the wallpaper\",\n    \"video_name\": \"w10Nr_wOh8g\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what is the animal species that appears in the video\",\n    \"video_name\": \"NjD6iWI3NvM\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is the appearance of the ball\",\n    \"video_name\": \"16bJAOf1SJI\",\n    \"answer\": \"circular\"\n  },\n  {\n    \"question\": \"what is behind the athlete in red clothes in the prologue\",\n    \"video_name\": \"sEcXR5b8HyY\",\n    \"answer\": \"red baffle\"\n  },\n  {\n    \"question\": \"what is the gender of the athletes in the competition pommel horse project\",\n    \"video_name\": \"huFOZ2BiM_k\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is in front of the audience\",\n    \"video_name\": \"4H9MMsj4mcM\",\n    \"answer\": \"horse running yard\"\n  },\n  {\n    \"question\": \"what is behind the dummy\",\n    \"video_name\": \"C27eI-S1Vkw\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person wearing black clothes in the video\",\n    \"video_name\": \"cVFVREeD6hM\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is behind the person holding the toothbrush in the video\",\n    \"video_name\": \"AsdsR27UnJ0\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is the back of the woman at the beginning of the video\",\n    \"video_name\": \"6LsvBNqJuJY\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the yellow-haired woman\",\n    \"video_name\": \"FPf7mAgdy0I\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is behind the basketball box\",\n    \"video_name\": \"jBlG0L_M96g\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is the back of the child in the first photo\",\n    \"video_name\": \"RXT17X7lRoQ\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is behind the coach\",\n    \"video_name\": \"k6pN0WRr2Ws\",\n    \"answer\": \"shelf\"\n  },\n  {\n    \"question\": \"what is behind the judges' seats\",\n    \"video_name\": \"auO4r3De6vc\",\n    \"answer\": \"spectator seats\"\n  },\n  {\n    \"question\": \"what is behind the last row of children\",\n    \"video_name\": \"s9PkkDEl6aY\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the person who stood at the beginning of the video\",\n    \"video_name\": \"RXDVJlb97OI\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is behind the pole\",\n    \"video_name\": \"0iqx7o5WYW8\",\n    \"answer\": \"network\"\n  },\n  {\n    \"question\": \"what is behind the referee\",\n    \"video_name\": \"0mNZfG6CL74\",\n    \"answer\": \"personnel\"\n  },\n  {\n    \"question\": \"what is behind the woman standing\",\n    \"video_name\": \"S6Sg1l78IW0\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what is behind the trees\",\n    \"video_name\": \"fhOmyyI0eQE\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is behind the referee at the beginning of the video\",\n    \"video_name\": \"UJGK_TKrl4E\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is behind the video trainer\",\n    \"video_name\": \"AtbTioB1_Kw\",\n    \"answer\": \"banana tree\"\n  },\n  {\n    \"question\": \"what is behind the weightlifter\",\n    \"video_name\": \"tRFK1BMKaRo\",\n    \"answer\": \"british flag\"\n  },\n  {\n    \"question\": \"what is behind the person wearing white clothes\",\n    \"video_name\": \"9FQ-VLkCZo8\",\n    \"answer\": \"spectator seats\"\n  },\n  {\n    \"question\": \"what is behind the person wearing yellow clothes\",\n    \"video_name\": \"54TIARWo-S8\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what is behind the referee facing the camera\",\n    \"video_name\": \"BdRH3lpopLQ\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the state of the bald head when talking\",\n    \"video_name\": \"L5IbDi09Yb4\",\n    \"answer\": \"very excited\"\n  },\n  {\n    \"question\": \"what is the bald woman doing\",\n    \"video_name\": \"IToczVhbOc0\",\n    \"answer\": \"tattoo\"\n  },\n  {\n    \"question\": \"what is the ball after the yellow ball in the video is replaced\",\n    \"video_name\": \"Es3PxD9oi4I\",\n    \"answer\": \"red ball\"\n  },\n  {\n    \"question\": \"what is the ball trained in the video\",\n    \"video_name\": \"Pjnuoa4o55c\",\n    \"answer\": \"tennis\"\n  },\n  {\n    \"question\": \"what color is the beard of a person wearing a hat\",\n    \"video_name\": \"Npj77L31bhw\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is behind the person who is pulling the rope\",\n    \"video_name\": \"s84PG-JfEwc\",\n    \"answer\": \"shore\"\n  },\n  {\n    \"question\": \"what color is the belt of a person wearing yellow clothes\",\n    \"video_name\": \"Nc9yr4urskA\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is good for ballet dancing\",\n    \"video_name\": \"IxaBEVd2PZM\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"what are the benefits of dancing\",\n    \"video_name\": \"bWZkD_s1940\",\n    \"answer\": \"release pressure\"\n  },\n  {\n    \"question\": \"what are the benefits of lifting a barbell\",\n    \"video_name\": \"bYNQ0GrCt64\",\n    \"answer\": \"exercise muscles\"\n  },\n  {\n    \"question\": \"what is good for planting trees\",\n    \"video_name\": \"UNKf15ALDh8\",\n    \"answer\": \"purify air\"\n  },\n  {\n    \"question\": \"what are the benefits of swimming\",\n    \"video_name\": \"wLXty2wzuJg\",\n    \"answer\": \"relieve stress\"\n  },\n  {\n    \"question\": \"what is the benefit of the curling exercise\",\n    \"video_name\": \"7BUr2cN8CLs\",\n    \"answer\": \"exercise balance\"\n  },\n  {\n    \"question\": \"what are the benefits of this game\",\n    \"video_name\": \"VZ5R9goklpo\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is the largest number that appears after the video background\",\n    \"video_name\": \"paRAKx8svJ8\",\n    \"answer\": \"9\"\n  },\n  {\n    \"question\": \"what are the birds doing\",\n    \"video_name\": \"3dWw9GLcOeA\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what happened to men after they got on fitness equipment\",\n    \"video_name\": \"FADShG5lyB8\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is the man's instrument in black\",\n    \"video_name\": \"e-Xf13exY4E\",\n    \"answer\": \"drum kit\"\n  },\n  {\n    \"question\": \"what are the brunette woman doing in the video\",\n    \"video_name\": \"CaeZoHNHul0\",\n    \"answer\": \"play violin\"\n  },\n  {\n    \"question\": \"what is the brunette woman in the video doing\",\n    \"video_name\": \"vSv1qMMt4Bk\",\n    \"answer\": \"make report\"\n  },\n  {\n    \"question\": \"what are the black and white hair dogs doing\",\n    \"video_name\": \"Ki13JIVwMdk\",\n    \"answer\": \"yelling\"\n  },\n  {\n    \"question\": \"what is the blonde woman doing\",\n    \"video_name\": \"IclzwpxVvIk\",\n    \"answer\": \"make up\"\n  },\n  {\n    \"question\": \"what is the front of the person when the person wearing the hat weeds\",\n    \"video_name\": \"4z0meF-_b1I\",\n    \"answer\": \"eradicator\"\n  },\n  {\n    \"question\": \"what is below the sandwich\",\n    \"video_name\": \"meNgZdu8tIk\",\n    \"answer\": \"mat cloth\"\n  },\n  {\n    \"question\": \"what is below the person\",\n    \"video_name\": \"p54LLMnyg54\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is below the book at the beginning of the video\",\n    \"video_name\": \"V9mLJJn8Lvw\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is under the cake\",\n    \"video_name\": \"dU7jG8G5li0\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is below the height measuring rod\",\n    \"video_name\": \"jibbgUBuuSA\",\n    \"answer\": \"pads\"\n  },\n  {\n    \"question\": \"what is under the knife\",\n    \"video_name\": \"mVAP-WyEc7w\",\n    \"answer\": \"chopping block\"\n  },\n  {\n    \"question\": \"what is there at the bottom of the river\",\n    \"video_name\": \"elD1P_1oiUk\",\n    \"answer\": \"stone and water grass\"\n  },\n  {\n    \"question\": \"what is below the sailboat\",\n    \"video_name\": \"dFGS7YCDk3Y\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is below the surfboard\",\n    \"video_name\": \"1vTHJMMPZN0\",\n    \"answer\": \"seawater\"\n  },\n  {\n    \"question\": \"what are the boys in red dress doing\",\n    \"video_name\": \"9ZVWD0ZKXZg\",\n    \"answer\": \"rock climbing\"\n  },\n  {\n    \"question\": \"what is the boy wearing glasses\",\n    \"video_name\": \"KPRymTsPCC0\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what is the boy's hairstyle\",\n    \"video_name\": \"5mWZY2XkWSQ\",\n    \"answer\": \"crew cut\"\n  },\n  {\n    \"question\": \"what is the reason for people in the video to do this\",\n    \"video_name\": \"04qggWACGWk\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what is the right side of the chef\",\n    \"video_name\": \"3i3SUPsyZtA\",\n    \"answer\": \"refrigerator\"\n  },\n  {\n    \"question\": \"what is the gender of the child in the video\",\n    \"video_name\": \"e4kS-n7_LRU\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what do the chinese team's throwing curlers wear on their left hand\",\n    \"video_name\": \"5UZ2ft8Y3sI\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what is the climate in the video\",\n    \"video_name\": \"5LGh56euaZs\",\n    \"answer\": \"cold\"\n  },\n  {\n    \"question\": \"what color clothes are people wearing curlers\",\n    \"video_name\": \"LL0uQO4q_wY\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color clothes do people wearing red hats wear\",\n    \"video_name\": \"NZskwwovSZI\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the clothes of people wearing black trousers\",\n    \"video_name\": \"JB-ynj70saA\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the bow tie of a person wearing black clothes\",\n    \"video_name\": \"mek9Zodu8LM\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the man clothes for cigarettes\",\n    \"video_name\": \"FmfAB-ppHBs\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the camel person pants\",\n    \"video_name\": \"rrpEOrMpBuE\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the clothes of a child wearing a white hat\",\n    \"video_name\": \"m73Cod-PmMQ\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the dog's tail\",\n    \"video_name\": \"jWODw4vy45M\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the hat of the person driving in the video\",\n    \"video_name\": \"6G8m-vsGTA8\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the facial cleanser in the video\",\n    \"video_name\": \"5oyenoaVB-w\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what is the color of the girl's hair in the video\",\n    \"video_name\": \"5mWZY2XkWSQ\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the girl's shoes wearing striped clothes\",\n    \"video_name\": \"7lxP-hWFA24\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the helmet of a person wearing orange clothes\",\n    \"video_name\": \"mixxaL3Bdv8\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the long-haired woman's glasses\",\n    \"video_name\": \"8kaQq1mR2ys\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of men's clothes in the video\",\n    \"video_name\": \"jbCQY7V7O1s\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color is the top of the person wearing a gray helmet\",\n    \"video_name\": \"QoRlOa6R1LY\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is the color of a man's hair\",\n    \"video_name\": \"eiN5XPmwcEM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the man's hat in green\",\n    \"video_name\": \"i6wR9_tkg6A\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what is the color of the clothes of people wearing jeans\",\n    \"video_name\": \"jDlvGWOdcqU\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of a man in black\",\n    \"video_name\": \"5k2Ot6-wOgc\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the person's hat wearing dark blue pants\",\n    \"video_name\": \"qGtUXGG78tM\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is the color of a person wearing a plaid jacket\",\n    \"video_name\": \"rGOOlcdpfLg\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the person wearing a mask\",\n    \"video_name\": \"ryFSf08mrkA\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what is the color of the hair of a person who didn\\u2019t wear a hat at the beginning of the video\",\n    \"video_name\": \"jhy6npIdn5o\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the air cushion of the person who shoots the video\",\n    \"video_name\": \"4YF9R3Sz2bA\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the clothes of the person riding the electric car\",\n    \"video_name\": \"stdtUoog49I\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the top of the person wearing an orange life jacket\",\n    \"video_name\": \"zH1MiuiTsx8\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the man's hat in a black shirt\",\n    \"video_name\": \"gWTndmDHZQc\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the pants of the person who is repairing the tire\",\n    \"video_name\": \"CDecXoRSpIc\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the person's socks wearing a gold coat\",\n    \"video_name\": \"zV08tITKFMM\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what is the color of the person's socks in the video\",\n    \"video_name\": \"T0nCDJuikuA\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the hat of a person wearing red\",\n    \"video_name\": \"T3A88zsRuVs\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what style is the referee wearing\",\n    \"video_name\": \"v-UmNR5yeDc\",\n    \"answer\": \"black and white\"\n  },\n  {\n    \"question\": \"what is the color of a swimsuit that the person in a swimsuit\",\n    \"video_name\": \"lUil9HfTzJ0\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the shoes of a person wearing a tie\",\n    \"video_name\": \"sNTOUuE7ZfM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the women's clothes in the video\",\n    \"video_name\": \"SJ7jk5XAjng\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the woman's hair in light blue clothes\",\n    \"video_name\": \"E_UkQGk7QAE\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the woman's helmet in the video\",\n    \"video_name\": \"sfbgZOHLkII\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the life jacket worn by women in the video\",\n    \"video_name\": \"6xBh3vzhgo4\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the clothes on the clothes with a number of 16\",\n    \"video_name\": \"BdRH3lpopLQ\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color dress does the person wear in the video\",\n    \"video_name\": \"MpeN-IVIBc4\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the person's hair in the video\",\n    \"video_name\": \"MpeN-IVIBc4\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of table tennis in the prologue\",\n    \"video_name\": \"sEcXR5b8HyY\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the adult clothes on the edge of the basin\",\n    \"video_name\": \"JGxf-jke0e8\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the air cushion in the video\",\n    \"video_name\": \"J9KjpzKM8oc\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the english font color at the beginning of the video\",\n    \"video_name\": \"JbW8efAOOt0\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the final english font color of the video\",\n    \"video_name\": \"JR9LosQmMvg\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the winning person's clothes in the video\",\n    \"video_name\": \"Jhcis4S2Vsg\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color ball is the man wearing red pants\",\n    \"video_name\": \"KMK3_VeODlk\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is the color of the basket\",\n    \"video_name\": \"1IbkFHNA7fg\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the bed\",\n    \"video_name\": \"5c5PFa8GR-A\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the bicycle seat\",\n    \"video_name\": \"4MwnHtlaEUY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the blond man's vest\",\n    \"video_name\": \"IsV1n_kLpvs\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color is the bowl in the video\",\n    \"video_name\": \"OYEKKzQjaJI\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the left hand bracelet of a person wearing blue clothes\",\n    \"video_name\": \"HQVSLlKhupk\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what is the color of the cable car\",\n    \"video_name\": \"VpZzLvzU7_k\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair on the camel\",\n    \"video_name\": \"KPRymTsPCC0\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the car of a person wearing a gray suit\",\n    \"video_name\": \"mkGUacg0GRc\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the car next to the road in the video\",\n    \"video_name\": \"OcL7ZhBCkxQ\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the pushed car\",\n    \"video_name\": \"WXH-Tj0-g4w\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the back of the card in the video\",\n    \"video_name\": \"H2fG7JRRMAs\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the child's clothes\",\n    \"video_name\": \"MAYrBia9Xnw\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what is the color of the child's coat\",\n    \"video_name\": \"K1LiXUpoSmI\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what is the color of the child's hair\",\n    \"video_name\": \"JcAAwYpJhm8\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of clothes the person standing on the platform\",\n    \"video_name\": \"s9PkkDEl6aY\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color of clothes does the coach wear\",\n    \"video_name\": \"LjPKKqe-VO0\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the coach's pants\",\n    \"video_name\": \"sRNqK_QZbMs\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the cow\",\n    \"video_name\": \"H_JLBvfP88U\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the staff's helmet\",\n    \"video_name\": \"lYP05IRcOPE\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the cyclist's clothes\",\n    \"video_name\": \"FtRGOgg0Qh8\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the diving suit in the video\",\n    \"video_name\": \"5LGh56euaZs\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the dog\",\n    \"video_name\": \"NjD6iWI3NvM\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the dog in the video\",\n    \"video_name\": \"MonWdYi3a0I\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the dog in the video\",\n    \"video_name\": \"IGT0dIKDGCw\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the hair on the dog\",\n    \"video_name\": \"KXMZHfCwTO0\",\n    \"answer\": \"black and white\"\n  },\n  {\n    \"question\": \"what color is this dog's hair\",\n    \"video_name\": \"KXcVYfMuUGw\",\n    \"answer\": \"black and white\"\n  },\n  {\n    \"question\": \"what color is the door in the video\",\n    \"video_name\": \"IclzwpxVvIk\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the drawer\",\n    \"video_name\": \"w4pO-1-FG5w\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the hat of the first kayaking person\",\n    \"video_name\": \"SGAUpoTMSnA\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what is the color of the first person wearing a hat\",\n    \"video_name\": \"K1OsjA-f17E\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the first person's hair\",\n    \"video_name\": \"StGxFfLiYNU\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the flag on the sand\",\n    \"video_name\": \"75Tc1nPmZFQ\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the flipper in the video\",\n    \"video_name\": \"IIPKxzPjrWg\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the table\",\n    \"video_name\": \"IGPZFun1Ok4\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the woman hair dancing\",\n    \"video_name\": \"N75m1Z4RqbA\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the blue girl roller skate\",\n    \"video_name\": \"EETygPQ-j08\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the gym mat\",\n    \"video_name\": \"7IwHwDuQdyU\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color gymnastics suit is worn by a woman wearing a gym suit\",\n    \"video_name\": \"FnPS6zn5S7M\",\n    \"answer\": \"black and white\"\n  },\n  {\n    \"question\": \"what is the color of the barber's pants\",\n    \"video_name\": \"mLFjww64sX8\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what is the color of the helmet of the first player\",\n    \"video_name\": \"SjlILJ2st-I\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the ignition\",\n    \"video_name\": \"cCDffwsJvsY\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the clothes of the cheerleaders\",\n    \"video_name\": \"SYh-j9bK_ls\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the pants that the video finally stood on the ground\",\n    \"video_name\": \"rWfQj0X8WU4\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the final athlete's clothes\",\n    \"video_name\": \"JH9qiuPCkY4\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the love border in the video\",\n    \"video_name\": \"4LoAbHdHWqM\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what is the color of the clothes of the person holding the box in his hand\",\n    \"video_name\": \"K7iw2_1BrIk\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the clothes worn by men in the video\",\n    \"video_name\": \"HPKHDze6XfA\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color hat is worn by the person sitting on the boat\",\n    \"video_name\": \"Pho9Hgdvc0g\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what is the color of the knee pads of a person who is stepping on a bouncer\",\n    \"video_name\": \"jBlG0L_M96g\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the person's pants that pull the rope\",\n    \"video_name\": \"s84PG-JfEwc\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the person's pants in white clothes\",\n    \"video_name\": \"I16FTpQQiic\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the sleeves of the person wearing the ankle\",\n    \"video_name\": \"K49OCArHjXI\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the microphone\",\n    \"video_name\": \"CFbkVO5b2g0\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the hair color of the news host\",\n    \"video_name\": \"5UZ2ft8Y3sI\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the dealer's sleeves\",\n    \"video_name\": \"j6BCgvUusWs\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the other side of the pink cloth\",\n    \"video_name\": \"KWpATsiXF_M\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the pants of the street dancers in the video\",\n    \"video_name\": \"6H0D8VaIli0\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the people's clothes in the video\",\n    \"video_name\": \"NJRrhNrEMsk\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color pants are worn by people wearing white clothes\",\n    \"video_name\": \"MVA568rRjzQ\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the clothes on the court\",\n    \"video_name\": \"JGPhQX97OSE\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the clothes of the person holding the mobile phone\",\n    \"video_name\": \"RgiVa9GMYxE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of a person wearing black shorts\",\n    \"video_name\": \"NNiJfr_ChH4\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the pants of a person wearing black clothes\",\n    \"video_name\": \"NvRH4SoF09c\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color pants are the people who push the swing\",\n    \"video_name\": \"LPRLV0eVgfY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the wheel of a skateboarder wearing black pants\",\n    \"video_name\": \"OcL7ZhBCkxQ\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the hair of a person wearing a blue striped dress\",\n    \"video_name\": \"N9VOdVOiPNM\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the color of the athlete's clothes\",\n    \"video_name\": \"Jix3poZOeZA\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the color of the protective net\",\n    \"video_name\": \"s6fEIuHPJ4Y\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what is the color of the clothes worn by the referee\",\n    \"video_name\": \"LWt2FuU0uC4\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the shoes in red\",\n    \"video_name\": \"9ZVWD0ZKXZg\",\n    \"answer\": \"red and black\"\n  },\n  {\n    \"question\": \"what color is the person wearing blue clothes\",\n    \"video_name\": \"XI7qJHE61zo\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color shoes are you wearing in red\",\n    \"video_name\": \"KT8DUDFc3Xg\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the short-haired men's gloves\",\n    \"video_name\": \"J1QB1y3vXLY\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the person's pants sitting\",\n    \"video_name\": \"RtF6TGqwa7Y\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what is the color of the 69th athlete's clothes\",\n    \"video_name\": \"sPK-sbHIb3w\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the athlete's clothes with long poles\",\n    \"video_name\": \"rsU73H6VyG8\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the staff's clothes\",\n    \"video_name\": \"Jdu5AqaWfz8\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what is the color of the woman's clothes standing\",\n    \"video_name\": \"S6Sg1l78IW0\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the road cone in the video\",\n    \"video_name\": \"OFTkwnSh-sQ\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is the color of the tent\",\n    \"video_name\": \"cAiig_569fI\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the pad under the peeled skin\",\n    \"video_name\": \"2nDJpvD-eZU\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the towel in the video\",\n    \"video_name\": \"OUxgs_QlPHE\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what color is the pants for people wearing yellow clothes\",\n    \"video_name\": \"i5qTK0mInTc\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color is the wall of the person wearing the gray clothes\",\n    \"video_name\": \"MDsJa6Yitwc\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the weeder in the video\",\n    \"video_name\": \"IMMoglaJ3RY\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the wine after the adjustment\",\n    \"video_name\": \"fMVuGUBs2cs\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the dress of a woman wearing glasses\",\n    \"video_name\": \"ILmZg0vz0Hg\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the woman's clothes on the stage\",\n    \"video_name\": \"I9ficvPdpZg\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what color is the leather shoes worn by women in the video\",\n    \"video_name\": \"KsFid_YVsn0\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the word on the wall on the right side of the woman wearing a pink vest\",\n    \"video_name\": \"KMK3_VeODlk\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the clothes of the person who started the blue pants\",\n    \"video_name\": \"Mk7Yjq1U8OI\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the color of the pants of a person wearing blue clothes\",\n    \"video_name\": \"LYTWYSqsTCE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what is the composition of this runway\",\n    \"video_name\": \"kyx4MMmBr3A\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what is the cosmetics in the video\",\n    \"video_name\": \"WNgI2qBvPrY\",\n    \"answer\": \"wash milk\"\n  },\n  {\n    \"question\": \"what is the country of the person in the video\",\n    \"video_name\": \"2_H3lxMWvPo\",\n    \"answer\": \"india\"\n  },\n  {\n    \"question\": \"what is the cow in the video doing\",\n    \"video_name\": \"2_H3lxMWvPo\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"how dangerous is the bullfighting competition\",\n    \"video_name\": \"2_H3lxMWvPo\",\n    \"answer\": \"height\"\n  },\n  {\n    \"question\": \"how dangerous is it to performing martial arts indoors\",\n    \"video_name\": \"MAYrBia9Xnw\",\n    \"answer\": \"much more dangerous\"\n  },\n  {\n    \"question\": \"how dangerous is this game\",\n    \"video_name\": \"0Um-HgjcnXY\",\n    \"answer\": \"higher\"\n  },\n  {\n    \"question\": \"how dangerous is the sport of surfing this sport\",\n    \"video_name\": \"lUil9HfTzJ0\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how dangerous is it to throw a discus\",\n    \"video_name\": \"St1RRi-aeNM\",\n    \"answer\": \"much much safer\"\n  },\n  {\n    \"question\": \"how dangerous is surfing\",\n    \"video_name\": \"LvTwJTvluHE\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the difficulty coefficient of bowling\",\n    \"video_name\": \"3PsxzgeMv5w\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how easy is it to blow off the leaves\",\n    \"video_name\": \"sqv3M6MPKjQ\",\n    \"answer\": \"more difficult\"\n  },\n  {\n    \"question\": \"how easy is it to clean up the leaves\",\n    \"video_name\": \"MDWaKr7Gu5Q\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the athlete's diving in the video\",\n    \"video_name\": \"svNcNLEPKMc\",\n    \"answer\": \"more difficult\"\n  },\n  {\n    \"question\": \"how easy is this noodle making\",\n    \"video_name\": \"MAGeYoFuCgo\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is it to step on the pedal\",\n    \"video_name\": \"45hcc_VI4t4\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how easy is the practice of salad in the video\",\n    \"video_name\": \"rSGboODhu04\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is the movement in the video\",\n    \"video_name\": \"K7iw2_1BrIk\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is this game to operate\",\n    \"video_name\": \"16bJAOf1SJI\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is this dance\",\n    \"video_name\": \"N75m1Z4RqbA\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how easy is this entertainment\",\n    \"video_name\": \"X2toGKgWMpE\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is this practice method\",\n    \"video_name\": \"Son8UiVlzu0\",\n    \"answer\": \"much simpler\"\n  },\n  {\n    \"question\": \"how easy is it to change the number of hula hoops at the same time\",\n    \"video_name\": \"3nSOFmmA7FU\",\n    \"answer\": \"high\"\n  },\n  {\n    \"question\": \"what is the direction of the billboard rotation\",\n    \"video_name\": \"WINtiw-_3vg\",\n    \"answer\": \"clockwise\"\n  },\n  {\n    \"question\": \"what is the direction of the black athlete's rotation\",\n    \"video_name\": \"cK0-WcGXacQ\",\n    \"answer\": \"anti clockwise\"\n  },\n  {\n    \"question\": \"what is the direction of the diver when it flips\",\n    \"video_name\": \"vzUeFzhVYLg\",\n    \"answer\": \"forward\"\n  },\n  {\n    \"question\": \"what is the direction of the exercise person moving\",\n    \"video_name\": \"VvsYrfEvvUw\",\n    \"answer\": \"up and down\"\n  },\n  {\n    \"question\": \"the direction of the person shooting in the video\",\n    \"video_name\": \"fSBX-gjPblw\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what is the long distance run\",\n    \"video_name\": \"prBiREYQ2vQ\",\n    \"answer\": \"5000 meters\"\n  },\n  {\n    \"question\": \"what are the doctors in the video doing\",\n    \"video_name\": \"b0qGo-HT5iQ\",\n    \"answer\": \"wear contact lenses\"\n  },\n  {\n    \"question\": \"what is the dog diving in the video\",\n    \"video_name\": \"ZAX6OojMg38\",\n    \"answer\": \"oxygen mask\"\n  },\n  {\n    \"question\": \"what kind of clothes do the people in red clothes wear\",\n    \"video_name\": \"ldAHwbF8uWI\",\n    \"answer\": \"blue shirt\"\n  },\n  {\n    \"question\": \"what is the effect of the wallpaper in the video\",\n    \"video_name\": \"CuLC5G7yWxA\",\n    \"answer\": \"very good\"\n  },\n  {\n    \"question\": \"what is the role of lemon in the video\",\n    \"video_name\": \"aNsj5OrEGLY\",\n    \"answer\": \"supply lemon juice\"\n  },\n  {\n    \"question\": \"what is the role of shaving\",\n    \"video_name\": \"BWAedc31WdY\",\n    \"answer\": \"clean and tidy\"\n  },\n  {\n    \"question\": \"what is the role of the glasses worn by divers\",\n    \"video_name\": \"wE9sQbGdeAk\",\n    \"answer\": \"protect eye\"\n  },\n  {\n    \"question\": \"what is the role of water sprayed after curling\",\n    \"video_name\": \"wcxEkMoOmBk\",\n    \"answer\": \"fixed hairstyle\"\n  },\n  {\n    \"question\": \"what is the final addition to the wine glass\",\n    \"video_name\": \"fMVuGUBs2cs\",\n    \"answer\": \"straw\"\n  },\n  {\n    \"question\": \"what did the green-shirted athlete finally turn to be called\",\n    \"video_name\": \"lOZ9bfzq89o\",\n    \"answer\": \"front rollover\"\n  },\n  {\n    \"question\": \"what happened to this man\",\n    \"video_name\": \"lfbspF18Wrw\",\n    \"answer\": \"cry sadly\"\n  },\n  {\n    \"question\": \"what is the environment of the dog in the video\",\n    \"video_name\": \"jWODw4vy45M\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is the expression when a black and white dog is called\",\n    \"video_name\": \"Ki13JIVwMdk\",\n    \"answer\": \"very angry\"\n  },\n  {\n    \"question\": \"what is the expression of a brunette woman in the makeup process\",\n    \"video_name\": \"IclzwpxVvIk\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is the fairness of guessing this game\",\n    \"video_name\": \"mek9Zodu8LM\",\n    \"answer\": \"more fair\"\n  },\n  {\n    \"question\": \"what kind of feeling does the creature on the sea bottom give\",\n    \"video_name\": \"L5IbDi09Yb4\",\n    \"answer\": \"its pretty\"\n  },\n  {\n    \"question\": \"what is the mood of this person waiting for cookies\",\n    \"video_name\": \"lfbspF18Wrw\",\n    \"answer\": \"eager\"\n  },\n  {\n    \"question\": \"what is the foot of a person wearing yellow clothes\",\n    \"video_name\": \"Nc9yr4urskA\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is the size of the child\",\n    \"video_name\": \"dZsk5Dp_5FE\",\n    \"answer\": \"fat\"\n  },\n  {\n    \"question\": \"what is the initial letter of the red english word at the beginning\",\n    \"video_name\": \"5k2Ot6-wOgc\",\n    \"answer\": \"a\"\n  },\n  {\n    \"question\": \"what is the first letter of the english sentence that appears first in the video\",\n    \"video_name\": \"5nu47s7JrfY\",\n    \"answer\": \"w\"\n  },\n  {\n    \"question\": \"what is the initial letter of white english that appears at the beginning\",\n    \"video_name\": \"4UdxT6Zmero\",\n    \"answer\": \"t\"\n  },\n  {\n    \"question\": \"what is the first letter of the first line of the book cover\",\n    \"video_name\": \"V9mLJJn8Lvw\",\n    \"answer\": \"c\"\n  },\n  {\n    \"question\": \"what is the first person being interviewed doing\",\n    \"video_name\": \"zpaS2iYrJjk\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is the first person in the video to deal with\",\n    \"video_name\": \"aNsj5OrEGLY\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is the initial letter of the english sentence at the beginning of the video\",\n    \"video_name\": \"S7CW-si2JjA\",\n    \"answer\": \"s\"\n  },\n  {\n    \"question\": \"what is the material of the floor\",\n    \"video_name\": \"FEOdYNR4gls\",\n    \"answer\": \"woodiness\"\n  },\n  {\n    \"question\": \"what color is the flower on the table\",\n    \"video_name\": \"H9PaZiWLgXU\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is under the foot of person wearing red clothes\",\n    \"video_name\": \"kyx4MMmBr3A\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is under the blond girl's foot\",\n    \"video_name\": \"7CM2OYr-Csw\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is under the blond man's feet\",\n    \"video_name\": \"IsV1n_kLpvs\",\n    \"answer\": \"ladder\"\n  },\n  {\n    \"question\": \"what is under the dog's foot\",\n    \"video_name\": \"IGT0dIKDGCw\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is under the foot of the person wearing a sweater\",\n    \"video_name\": \"UzmsAb15Bso\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is under the foot of the person who pushes the shot\",\n    \"video_name\": \"eJc8bebOF2A\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what is under the woman\\u2019s foot wearing a life jacket\",\n    \"video_name\": \"6xBh3vzhgo4\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is under the foot of the old man wearing a black sweater\",\n    \"video_name\": \"V-46E7jMm-Y\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is under the girl in orange dress\",\n    \"video_name\": \"iKclcQEl4zI\",\n    \"answer\": \"sponge pad\"\n  },\n  {\n    \"question\": \"what is under the feet of people in orange clothes\",\n    \"video_name\": \"VpZzLvzU7_k\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is under the foot of the person wearing orange pants\",\n    \"video_name\": \"vnZmsOgWs0o\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is under the foot of the person wearing black shorts\",\n    \"video_name\": \"Em4ekFj4XIs\",\n    \"answer\": \"meadow\"\n  },\n  {\n    \"question\": \"what is under the foot of the person wearing purple pants\",\n    \"video_name\": \"28LdZLfdmMQ\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is under the purple trousers girl's feet\",\n    \"video_name\": \"e0yLhjXQIXI\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is the shape of the man's beard after shaving\",\n    \"video_name\": \"eiN5XPmwcEM\",\n    \"answer\": \"mustache\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing the red dress at the most front\",\n    \"video_name\": \"gCHo9vxfEzM\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is in front of a long-haired woman\",\n    \"video_name\": \"7dXqXFoju2M\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is in front of the place where people wearing gray vests enter the store\",\n    \"video_name\": \"BFChXuwZ4wo\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is in front of the wood that has not been smashed\",\n    \"video_name\": \"BmL2XGNrxc4\",\n    \"answer\": \"chopped wood\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing red clothes during the long jump\",\n    \"video_name\": \"2-AMrzL7V-U\",\n    \"answer\": \"bunker\"\n  },\n  {\n    \"question\": \"what is in front of the person who wears white clothes at the beginning of the video\",\n    \"video_name\": \"P5D9S9NzQ28\",\n    \"answer\": \"ball frame\"\n  },\n  {\n    \"question\": \"what is in front of the woman's head\",\n    \"video_name\": \"F7K2oT7ADkk\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is in front of the archery player\",\n    \"video_name\": \"8AUTKSqcmiM\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"what is in front of the basketball hoop\",\n    \"video_name\": \"FKtYeu2bJpA\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is in front of the person in black clothes\",\n    \"video_name\": \"_jV5sAOOHLk\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is in front of the person dancing in the video\",\n    \"video_name\": \"-crpjVnFv0U\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is in front of the fallen leaf pile\",\n    \"video_name\": \"uJ4OZfCjViM\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is in front of the ducks\",\n    \"video_name\": \"HTSxgkgecS0\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is in front of the dealer\",\n    \"video_name\": \"j6BCgvUusWs\",\n    \"answer\": \"gambling table\"\n  },\n  {\n    \"question\": \"what is in front of the fertilizer in the video\",\n    \"video_name\": \"an1R4BP97JY\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"what is in front of the first row of auditoriums\",\n    \"video_name\": \"b_c17BmZCCs\",\n    \"answer\": \"cross bar\"\n  },\n  {\n    \"question\": \"what is in front of the people in the game\",\n    \"video_name\": \"SJ7jk5XAjng\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the bald head in the video\",\n    \"video_name\": \"3Rzyta8op6s\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of this person\",\n    \"video_name\": \"li_mry59KCM\",\n    \"answer\": \"equip them with modern machines\"\n  },\n  {\n    \"question\": \"what is in front of the person wearing a gray helmet\",\n    \"video_name\": \"QoRlOa6R1LY\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is in front of the person taking the towel\",\n    \"video_name\": \"8vDSV9ruYlc\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is in front of the onlookers\",\n    \"video_name\": \"pMtu7fOHdII\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what is the front of the persosn wearing orange-red clothes in the video\",\n    \"video_name\": \"WXH-Tj0-g4w\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what is in front of the person at the beginning of the video\",\n    \"video_name\": \"Ar6TcWqwK-A\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is in front of the person who is being cut\",\n    \"video_name\": \"5c5PFa8GR-A\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the person who wears skates at the beginning of the video\",\n    \"video_name\": \"pcLGX5qvUcI\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what is in front of the stadium\",\n    \"video_name\": \"cK0-WcGXacQ\",\n    \"answer\": \"auditorium\"\n  },\n  {\n    \"question\": \"what is in front of the sand\",\n    \"video_name\": \"StGxFfLiYNU\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is in front of the second person\",\n    \"video_name\": \"BjjN_aq_wq4\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is in front of the ski resort\",\n    \"video_name\": \"fbr7v8RMkf8\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is in front of the surf man\",\n    \"video_name\": \"dskswWtslKc\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is in front of the person who plays the violin on the stage\",\n    \"video_name\": \"P2xT7dlyX8Y\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is in front of the firewood\",\n    \"video_name\": \"dZsk5Dp_5FE\",\n    \"answer\": \"wood pile\"\n  },\n  {\n    \"question\": \"what is in front of the yellow-haired girl\",\n    \"video_name\": \"9snScUyE8_4\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is the role of gym mats\",\n    \"video_name\": \"6Xsfwn5M6qs\",\n    \"answer\": \"protective effect\"\n  },\n  {\n    \"question\": \"what are the girls in blue doing\",\n    \"video_name\": \"72_9wLYUDGM\",\n    \"answer\": \"do horizontal bar gymnastics\"\n  },\n  {\n    \"question\": \"what is the girl wearing purple clothes doing in the video\",\n    \"video_name\": \"WNgI2qBvPrY\",\n    \"answer\": \"do homework\"\n  },\n  {\n    \"question\": \"what are the girls in blue vests doing\",\n    \"video_name\": \"7IwHwDuQdyU\",\n    \"answer\": \"gymnastics\"\n  },\n  {\n    \"question\": \"what is the girl in the video\",\n    \"video_name\": \"d09u-0k3LdE\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what is the right side of this girl\",\n    \"video_name\": \"kMtjk1KFvXQ\",\n    \"answer\": \"main committee\"\n  },\n  {\n    \"question\": \"what is the girl in pink clothes below\",\n    \"video_name\": \"28WDlVOgslg\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are the girls in white short sleeves doing\",\n    \"video_name\": \"iKclcQEl4zI\",\n    \"answer\": \"somersault\"\n  },\n  {\n    \"question\": \"what are the gray men doing\",\n    \"video_name\": \"VfhDSTKBwgc\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what are the gray women doing\",\n    \"video_name\": \"-EIsT868Trw\",\n    \"answer\": \"bungee jumping\"\n  },\n  {\n    \"question\": \"what is this gymnastics performance\",\n    \"video_name\": \"f6vZaMgqDvQ\",\n    \"answer\": \"asymmetrical bars\"\n  },\n  {\n    \"question\": \"what hairstyle does this person leave\",\n    \"video_name\": \"laU1Hvm5Dis\",\n    \"answer\": \"bob\"\n  },\n  {\n    \"question\": \"what is the hairstyle of a child wearing a red trench coat\",\n    \"video_name\": \"4JmFOPoKluM\",\n    \"answer\": \"shoulder length hair\"\n  },\n  {\n    \"question\": \"what is the hairstyle of a female athlete\",\n    \"video_name\": \"EPsSfOEd3BU\",\n    \"answer\": \"ponytail\"\n  },\n  {\n    \"question\": \"what is the hairstyle of a person wearing a black vest\",\n    \"video_name\": \"1YU4MSK80cQ\",\n    \"answer\": \"single cauda\"\n  },\n  {\n    \"question\": \"what is the hair style of the coach in the video\",\n    \"video_name\": \"4LpqPUWHH5k\",\n    \"answer\": \"crew cut\"\n  },\n  {\n    \"question\": \"what is the hairstyle of the person in the video near the window\",\n    \"video_name\": \"4uKoAk5NCkI\",\n    \"answer\": \"single cauda\"\n  },\n  {\n    \"question\": \"what is the hairstyle of a person wearing purple clothes\",\n    \"video_name\": \"xfV4V_AOVSM\",\n    \"answer\": \"curly hair\"\n  },\n  {\n    \"question\": \"what is the hairstyle of a man wearing a black jacket\",\n    \"video_name\": \"N4qhryre_TE\",\n    \"answer\": \"curly hair\"\n  },\n  {\n    \"question\": \"what is the hair style of the second dealer\",\n    \"video_name\": \"j6BCgvUusWs\",\n    \"answer\": \"single cauda\"\n  },\n  {\n    \"question\": \"what is this woman's hairstyle\",\n    \"video_name\": \"kkji9hespu0\",\n    \"answer\": \"short hair\"\n  },\n  {\n    \"question\": \"what is the white color that is difficult to put on the side of the runway\",\n    \"video_name\": \"kyx4MMmBr3A\",\n    \"answer\": \"lime\"\n  },\n  {\n    \"question\": \"what color is the hat worn by people wearing blue clothes\",\n    \"video_name\": \"I1iUbyjWy7k\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what is the heating tool for cooking in the video\",\n    \"video_name\": \"0e5zwJywyqk\",\n    \"answer\": \"electromagnetic furnace\"\n  },\n  {\n    \"question\": \"what material is the goblet in the video\",\n    \"video_name\": \"Yg03CCu9GMo\",\n    \"answer\": \"glass\"\n  },\n  {\n    \"question\": \"what is the relationship between people in the middle of the scene in the video\",\n    \"video_name\": \"6H0D8VaIli0\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the identity of a fat man\",\n    \"video_name\": \"er5jUsRr4y0\",\n    \"answer\": \"clerk\"\n  },\n  {\n    \"question\": \"what is the identity of a person wearing a black shirt when he is young\",\n    \"video_name\": \"fe4r2-Y8k1U\",\n    \"answer\": \"athletes\"\n  },\n  {\n    \"question\": \"what is the identity of a brunette woman\",\n    \"video_name\": \"vSv1qMMt4Bk\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is the identity of the people on the side of the pool\",\n    \"video_name\": \"Es3PxD9oi4I\",\n    \"answer\": \"referee\"\n  },\n  {\n    \"question\": \"what is the initials of the english words on the wall in the video\",\n    \"video_name\": \"jEOtcfk220s\",\n    \"answer\": \"p\"\n  },\n  {\n    \"question\": \"what is the instrument in the hands of men\",\n    \"video_name\": \"OysON6LbF6Y\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is the news in the video\",\n    \"video_name\": \"xuvp0jKMqRU\",\n    \"answer\": \"pumpkin\"\n  },\n  {\n    \"question\": \"what is the occupation of a person wearing gold clothes\",\n    \"video_name\": \"zV08tITKFMM\",\n    \"answer\": \"matador\"\n  },\n  {\n    \"question\": \"what is the occupation of a person wearing a white suit\",\n    \"video_name\": \"ZBP_mLWROZU\",\n    \"answer\": \"barber\"\n  },\n  {\n    \"question\": \"what is the occupation of the person who pushes the shot\",\n    \"video_name\": \"eJc8bebOF2A\",\n    \"answer\": \"athletes\"\n  },\n  {\n    \"question\": \"what is the occupation of a yellow-haired person\",\n    \"video_name\": \"bRgvAHL3dJk\",\n    \"answer\": \"cooker\"\n  },\n  {\n    \"question\": \"what is the occupation of a person who takes a whistle\",\n    \"video_name\": \"qWgF9hxNbP8\",\n    \"answer\": \"referee\"\n  },\n  {\n    \"question\": \"what is the occupation of a man in the video\",\n    \"video_name\": \"HTYzbAFUghU\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the occupation of a man wearing glasses\",\n    \"video_name\": \"IToczVhbOc0\",\n    \"answer\": \"tattoo artist\"\n  },\n  {\n    \"question\": \"what is the position of a person wearing orange clothes\",\n    \"video_name\": \"GcjzvBatqb4\",\n    \"answer\": \"fitness coach\"\n  },\n  {\n    \"question\": \"what is the woman wearing a gray dress in the video\",\n    \"video_name\": \"wcxEkMoOmBk\",\n    \"answer\": \"curly hair\"\n  },\n  {\n    \"question\": \"what is the career of a woman in the video\",\n    \"video_name\": \"w4pO-1-FG5w\",\n    \"answer\": \"barber\"\n  },\n  {\n    \"question\": \"what is the last cup on the video\",\n    \"video_name\": \"7H1KylJRii8\",\n    \"answer\": \"decorating umbrella\"\n  },\n  {\n    \"question\": \"what is the last shot behind the red man\",\n    \"video_name\": \"i_LT0ef1n-Y\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what is the last person in the video\",\n    \"video_name\": \"4MwnHtlaEUY\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is the left hand side of the person in the video\",\n    \"video_name\": \"jt-Vnap5KP4\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is the left side of the little girl who is kneeling\",\n    \"video_name\": \"atGMJc-DZ7w\",\n    \"answer\": \"basin\"\n  },\n  {\n    \"question\": \"what is the left side of the contestant\",\n    \"video_name\": \"0Um-HgjcnXY\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the left side of the athlete before the start\",\n    \"video_name\": \"Pr5K2Jh2X94\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is the left side of the person who first digs the ground with a spade\",\n    \"video_name\": \"B4Zp5XN97Gc\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what is the left side of the man holding the microphone\",\n    \"video_name\": \"FxpP7lqvm30\",\n    \"answer\": \"group of children\"\n  },\n  {\n    \"question\": \"what is the left side of the person who started wearing blue clothes at the beginning of the video\",\n    \"video_name\": \"rrpEOrMpBuE\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what is the level of people making cakes in the video\",\n    \"video_name\": \"dU7jG8G5li0\",\n    \"answer\": \"good\"\n  },\n  {\n    \"question\": \"how safe is the motion in the video\",\n    \"video_name\": \"rWfQj0X8WU4\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the light in the pumpkin\",\n    \"video_name\": \"JKJ_EvP7JwQ\",\n    \"answer\": \"twinkle\"\n  },\n  {\n    \"question\": \"what is the little animal that walks on the grass\",\n    \"video_name\": \"KXMZHfCwTO0\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is the little girl wearing a red dress\",\n    \"video_name\": \"9G172wz5Yqo\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the left-handed injured girl doing\",\n    \"video_name\": \"k-I4zLbgdpM\",\n    \"answer\": \"gymnastic performance\"\n  },\n  {\n    \"question\": \"what animal is the logo of the video\",\n    \"video_name\": \"-eJT11AuOa0\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is the long hair woman in the video doing\",\n    \"video_name\": \"v-UmNR5yeDc\",\n    \"answer\": \"finger guessing game\"\n  },\n  {\n    \"question\": \"what is the shape of the makeup artist's eyebrows\",\n    \"video_name\": \"W97fdJ2Rn9g\",\n    \"answer\": \"beautiful arched eyebrows\"\n  },\n  {\n    \"question\": \"what is the male host doing\",\n    \"video_name\": \"AwcM25G1h-g\",\n    \"answer\": \"hosting news\"\n  },\n  {\n    \"question\": \"what is behind the red man\",\n    \"video_name\": \"iqyc2JM0uIU\",\n    \"answer\": \"variety of wine\"\n  },\n  {\n    \"question\": \"what is behind the white man\",\n    \"video_name\": \"ivAvKRQQy1Q\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is the person who opened the refrigerator doing\",\n    \"video_name\": \"Ko7Nt8UDP4Q\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what are the people who are pulling the rope\",\n    \"video_name\": \"s84PG-JfEwc\",\n    \"answer\": \"skateboard of water skiing\"\n  },\n  {\n    \"question\": \"what is the man wearing a black hat doing\",\n    \"video_name\": \"7OcxT66BxX0\",\n    \"answer\": \"sing\"\n  },\n  {\n    \"question\": \"what is the man wearing a flower shirt doing\",\n    \"video_name\": \"iixZLnyLuN8\",\n    \"answer\": \"hold girl\"\n  },\n  {\n    \"question\": \"what are the people wearing yellow scorpions doing\",\n    \"video_name\": \"rApbE1VkEjE\",\n    \"answer\": \"snow removal\"\n  },\n  {\n    \"question\": \"what are the men in blue shorts doing\",\n    \"video_name\": \"iuXjatyFcwo\",\n    \"answer\": \"exercise weight lifting\"\n  },\n  {\n    \"question\": \"what is in front of the man in black\",\n    \"video_name\": \"fvEaC-fTR4A\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in front of the man wearing blue shorts\",\n    \"video_name\": \"iuXjatyFcwo\",\n    \"answer\": \"barbell\"\n  },\n  {\n    \"question\": \"what is in front of the man holding the paper in his right hand\",\n    \"video_name\": \"hvrKRg166eQ\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are the men in grey clothes doing\",\n    \"video_name\": \"dN8LBey17O8\",\n    \"answer\": \"mowing lawn\"\n  },\n  {\n    \"question\": \"what are the men in light blue shorts doing\",\n    \"video_name\": \"elD1P_1oiUk\",\n    \"answer\": \"drift\"\n  },\n  {\n    \"question\": \"what are the people in red dress doing\",\n    \"video_name\": \"KT8DUDFc3Xg\",\n    \"answer\": \"shoeshine\"\n  },\n  {\n    \"question\": \"what are the people in red dress doing\",\n    \"video_name\": \"kyx4MMmBr3A\",\n    \"answer\": \"cross country race\"\n  },\n  {\n    \"question\": \"what is the person in the golden dress holding in his hand\",\n    \"video_name\": \"zV08tITKFMM\",\n    \"answer\": \"red cloth\"\n  },\n  {\n    \"question\": \"what are the people wearing the ring\",\n    \"video_name\": \"32vYs9wKXE8\",\n    \"answer\": \"weave hair\"\n  },\n  {\n    \"question\": \"what did the person wearing the hat do at the beginning\",\n    \"video_name\": \"4z0meF-_b1I\",\n    \"answer\": \"drive car\"\n  },\n  {\n    \"question\": \"what is the left side of the yellow man at the beginning of the video\",\n    \"video_name\": \"8IrulONeC28\",\n    \"answer\": \"women in red clothes\"\n  },\n  {\n    \"question\": \"what is the left side of the man on the bridge\",\n    \"video_name\": \"Pho9Hgdvc0g\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is on the black man's shoulder\",\n    \"video_name\": \"fQ1OuD7x3to\",\n    \"answer\": \"rag\"\n  },\n  {\n    \"question\": \"what are the men standing in the video\",\n    \"video_name\": \"V2UitlmX7Uo\",\n    \"answer\": \"play guitar\"\n  },\n  {\n    \"question\": \"what is under this person's foot\",\n    \"video_name\": \"KXcVYfMuUGw\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is the man wearing a black vest in the video\",\n    \"video_name\": \"ut1AoOzqL4k\",\n    \"answer\": \"three step jump\"\n  },\n  {\n    \"question\": \"what is the man wearing a sweater in the video\",\n    \"video_name\": \"UzmsAb15Bso\",\n    \"answer\": \"slider\"\n  },\n  {\n    \"question\": \"what is the right hand of a man wearing a gray sweater\",\n    \"video_name\": \"U2eN4DbVLfE\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are the people wearing gray helmets doing\",\n    \"video_name\": \"QoRlOa6R1LY\",\n    \"answer\": \"rock climbing\"\n  },\n  {\n    \"question\": \"what are the men in white helmets doing\",\n    \"video_name\": \"7-UlUnaBjXU\",\n    \"answer\": \"ride cross country motorcycle\"\n  },\n  {\n    \"question\": \"what is ahead of the man who is playing the guitar\",\n    \"video_name\": \"7lxP-hWFA24\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is the man with a beard in the video doing\",\n    \"video_name\": \"wE9sQbGdeAk\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what does the person wearing the hat wear on the right hand\",\n    \"video_name\": \"JbW8efAOOt0\",\n    \"answer\": \"bracelet\"\n  },\n  {\n    \"question\": \"what are the people in the field holding a long stick\",\n    \"video_name\": \"KWpATsiXF_M\",\n    \"answer\": \"bullfight\"\n  },\n  {\n    \"question\": \"what is the person riding with the long stick in the field\",\n    \"video_name\": \"KWpATsiXF_M\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are the men wearing white\",\n    \"video_name\": \"IDuoF51IMJ8\",\n    \"answer\": \"throw ball\"\n  },\n  {\n    \"question\": \"what is the man holding the paper in his right hand in the video\",\n    \"video_name\": \"hvrKRg166eQ\",\n    \"answer\": \"broadcast\"\n  },\n  {\n    \"question\": \"what is on the man's leg wearing a flower shirt\",\n    \"video_name\": \"iixZLnyLuN8\",\n    \"answer\": \"black hair girl\"\n  },\n  {\n    \"question\": \"what is the number of men wearing red vests\",\n    \"video_name\": \"eVkp83uGf3Y\",\n    \"answer\": \"1154\"\n  },\n  {\n    \"question\": \"what is the occupation of a man wearing a striped shirt\",\n    \"video_name\": \"7H1KylJRii8\",\n    \"answer\": \"bartender\"\n  },\n  {\n    \"question\": \"what is the purpose of the men on the bridge\",\n    \"video_name\": \"Pho9Hgdvc0g\",\n    \"answer\": \"walk dog\"\n  },\n  {\n    \"question\": \"what is on the left side of the male host\",\n    \"video_name\": \"AwcM25G1h-g\",\n    \"answer\": \"female host\"\n  },\n  {\n    \"question\": \"what is the material of the table\",\n    \"video_name\": \"chmegNbBTNc\",\n    \"answer\": \"woodiness\"\n  },\n  {\n    \"question\": \"what does english mean when the video starts\",\n    \"video_name\": \"2nDJpvD-eZU\",\n    \"answer\": \"how to cut potatoes\"\n  },\n  {\n    \"question\": \"what does the final gesture of the bullfighter mean in the video\",\n    \"video_name\": \"HowkVy5fOyk\",\n    \"answer\": \"pray\"\n  },\n  {\n    \"question\": \"what is the mood of the little girl when flying a kite\",\n    \"video_name\": \"7CM2OYr-Csw\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"what is the mood of people wearing blue clothes\",\n    \"video_name\": \"kBTqTp0SKq8\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"what is the mood of the woman at the beginning of the video\",\n    \"video_name\": \"6LsvBNqJuJY\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"what is the mood of all the people wearing helmets in the video\",\n    \"video_name\": \"J9KjpzKM8oc\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"what is the mood of the athlete after the success of the high jump\",\n    \"video_name\": \"jibbgUBuuSA\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"what is the mood of the person who receives the prize on the podium\",\n    \"video_name\": \"kTqt7ry3eVM\",\n    \"answer\": \"very pleased\"\n  },\n  {\n    \"question\": \"what is the mood of a person in black after playing bowling\",\n    \"video_name\": \"5k2Ot6-wOgc\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"what is the mood of people driving in the video\",\n    \"video_name\": \"6G8m-vsGTA8\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"what is the mood of a woman wearing glasses\",\n    \"video_name\": \"KPRymTsPCC0\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"what is the mood of the last blonde woman in the video\",\n    \"video_name\": \"7BUr2cN8CLs\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"what is the most likely female occupation in black\",\n    \"video_name\": \"eLh51DwDp-E\",\n    \"answer\": \"ballet dancer\"\n  },\n  {\n    \"question\": \"what is the color of the nail in the video\",\n    \"video_name\": \"a_EqAwUOxpM\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is the name of the sport in the video\",\n    \"video_name\": \"AtbTioB1_Kw\",\n    \"answer\": \"long rod\"\n  },\n  {\n    \"question\": \"what is the safety factor of weightlifting\",\n    \"video_name\": \"d6gGZFQOxOg\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the safety factor for this sport in the video\",\n    \"video_name\": \"OccEAILrU7M\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the name of the barber shop\",\n    \"video_name\": \"xfV4V_AOVSM\",\n    \"answer\": \"four thousand and six hundred\"\n  },\n  {\n    \"question\": \"what is the name of the third person who dive\",\n    \"video_name\": \"kTqt7ry3eVM\",\n    \"answer\": \"first\"\n  },\n  {\n    \"question\": \"what is the nationality of a person wearing green shoes\",\n    \"video_name\": \"W2eumNilwuI\",\n    \"answer\": \"korea\"\n  },\n  {\n    \"question\": \"what is the dog closest to the camera doing\",\n    \"video_name\": \"jWODw4vy45M\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the back row of this woman\",\n    \"video_name\": \"kpOAGEYHts8\",\n    \"answer\": \"recreational machines\"\n  },\n  {\n    \"question\": \"what is the number behind the javelin thrower\",\n    \"video_name\": \"WdtytUagoJs\",\n    \"answer\": \"29\"\n  },\n  {\n    \"question\": \"what is the number of people who can take a cable car\",\n    \"video_name\": \"VpZzLvzU7_k\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"what is the number on the athlete's chest\",\n    \"video_name\": \"f1d7_TKXNYQ\",\n    \"answer\": \"1951\"\n  },\n  {\n    \"question\": \"what is the number on the iron gate in the distance\",\n    \"video_name\": \"wdvQC41PGPk\",\n    \"answer\": \"330\"\n  },\n  {\n    \"question\": \"what is the number on the trainer's clothes\",\n    \"video_name\": \"AtbTioB1_Kw\",\n    \"answer\": \"1144\"\n  },\n  {\n    \"question\": \"what is the item tied to the hair in the video\",\n    \"video_name\": \"C27eI-S1Vkw\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what are the blue old men doing\",\n    \"video_name\": \"idkQqlwyff8\",\n    \"answer\": \"knock toy\"\n  },\n  {\n    \"question\": \"what are the old people in blue sweaters doing\",\n    \"video_name\": \"7F-mVWMP2vM\",\n    \"answer\": \"spinning\"\n  },\n  {\n    \"question\": \"what are the old people wearing black sweaters in the video\",\n    \"video_name\": \"V-46E7jMm-Y\",\n    \"answer\": \"archery\"\n  },\n  {\n    \"question\": \"what is the operator in the video doing\",\n    \"video_name\": \"C27eI-S1Vkw\",\n    \"answer\": \"tie up hair\"\n  },\n  {\n    \"question\": \"what is the spray painting\",\n    \"video_name\": \"MpeN-IVIBc4\",\n    \"answer\": \"mans head\"\n  },\n  {\n    \"question\": \"what color pants are worn by people wearing white clothes\",\n    \"video_name\": \"NDq29HQJVP0\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the pattern of the wallpaper\",\n    \"video_name\": \"8vDSV9ruYlc\",\n    \"answer\": \"grass\"\n  },\n  {\n    \"question\": \"what is behind this person\",\n    \"video_name\": \"lfbspF18Wrw\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"what do people in the video do on the road\",\n    \"video_name\": \"4JmFOPoKluM\",\n    \"answer\": \"tug of war\"\n  },\n  {\n    \"question\": \"what are the people in the gray coat doing\",\n    \"video_name\": \"GxDNGtoVjS0\",\n    \"answer\": \"cut tree\"\n  },\n  {\n    \"question\": \"what is the person on the right side of the black line in the video\",\n    \"video_name\": \"H33jSILKmfI\",\n    \"answer\": \"standing\"\n  },\n  {\n    \"question\": \"what is the person in the video participating in\",\n    \"video_name\": \"I3tqWc5wG78\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what is the person in the video who is taking the shoes\",\n    \"video_name\": \"AB480dHyDeM\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what are the people wearing doll clothes\",\n    \"video_name\": \"2vrR_5u2buU\",\n    \"answer\": \"pole vault\"\n  },\n  {\n    \"question\": \"what are the people wearing gloves in the video\",\n    \"video_name\": \"Vxw3yFCV2iA\",\n    \"answer\": \"practice water sled\"\n  },\n  {\n    \"question\": \"what are the people wearing the gray sweater in the video\",\n    \"video_name\": \"U2eN4DbVLfE\",\n    \"answer\": \"wrist wrestling\"\n  },\n  {\n    \"question\": \"what are the people wearing the gray vest in the video\",\n    \"video_name\": \"BFChXuwZ4wo\",\n    \"answer\": \"tattoo\"\n  },\n  {\n    \"question\": \"what are the people wearing the sweater chain in the video\",\n    \"video_name\": \"I3tqWc5wG78\",\n    \"answer\": \"make salad\"\n  },\n  {\n    \"question\": \"what are the people wearing sweaters in the video\",\n    \"video_name\": \"V9mLJJn8Lvw\",\n    \"answer\": \"package book\"\n  },\n  {\n    \"question\": \"what are the people wearing the vest in the video\",\n    \"video_name\": \"bBRzBh0gAZQ\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what are the people in white aprons doing\",\n    \"video_name\": \"ej_fSoVO0R8\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what are the people wearing white coats in the video\",\n    \"video_name\": \"bYxVbXzQToI\",\n    \"answer\": \"play guitar\"\n  },\n  {\n    \"question\": \"what was the person who shot the video\",\n    \"video_name\": \"4YF9R3Sz2bA\",\n    \"answer\": \"ski slope\"\n  },\n  {\n    \"question\": \"what is the person behind the tattoo in the video\",\n    \"video_name\": \"Db2Dnt2OOo0\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what are the people in the video with goggles doing\",\n    \"video_name\": \"5LGh56euaZs\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what are the people who are taking the card in the video\",\n    \"video_name\": \"amgpZtvd9h0\",\n    \"answer\": \"teach hair\"\n  },\n  {\n    \"question\": \"what is the tool for taking pictures of people wearing black clothes and curls\",\n    \"video_name\": \"I3tqWc5wG78\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what did the person holding the camera do at the beginning\",\n    \"video_name\": \"6G8m-vsGTA8\",\n    \"answer\": \"haircut\"\n  },\n  {\n    \"question\": \"what are the white hair people in the video doing\",\n    \"video_name\": \"I2XqSiNerwg\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is the juice in the video\",\n    \"video_name\": \"qObVIn_GI10\",\n    \"answer\": \"apple juice\"\n  },\n  {\n    \"question\": \"what is the gender of the person taking the microphone\",\n    \"video_name\": \"ZsVfa3JIUNU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing an orange life jacket\",\n    \"video_name\": \"zH1MiuiTsx8\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person who is waving a yellow ribbon\",\n    \"video_name\": \"u_vLZxgO9Rw\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is above the platform\",\n    \"video_name\": \"vBOFzuS-Djo\",\n    \"answer\": \"short hair baby\"\n  },\n  {\n    \"question\": \"what is the starting point of the track\",\n    \"video_name\": \"iZT4XgzUHm4\",\n    \"answer\": \"national flag\"\n  },\n  {\n    \"question\": \"what is the posture of a dog in black and white hair\",\n    \"video_name\": \"Ki13JIVwMdk\",\n    \"answer\": \"half squat\"\n  },\n  {\n    \"question\": \"what is the posture of the blonde woman at the beginning of the video\",\n    \"video_name\": \"J1QB1y3vXLY\",\n    \"answer\": \"hold right leg\"\n  },\n  {\n    \"question\": \"what is the posture of the person in red clothes wiping the shoes\",\n    \"video_name\": \"KT8DUDFc3Xg\",\n    \"answer\": \"squatting\"\n  },\n  {\n    \"question\": \"what might be the position of the bald person in the band\",\n    \"video_name\": \"m731tx8N5-Y\",\n    \"answer\": \"lead singer\"\n  },\n  {\n    \"question\": \"what is the posture of the man playing the piano\",\n    \"video_name\": \"CFbkVO5b2g0\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the position of the person sitting in the office\",\n    \"video_name\": \"AQ3eFWxZ67U\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"what is the occupation of the sparring person\",\n    \"video_name\": \"3kxP8qOtym8\",\n    \"answer\": \"trainer\"\n  },\n  {\n    \"question\": \"what is the purpose of nail polish\",\n    \"video_name\": \"CDncYtx6Lwc\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"what is the purpose of this work\",\n    \"video_name\": \"CDecXoRSpIc\",\n    \"answer\": \"safe of car\"\n  },\n  {\n    \"question\": \"what is the red and white circle\",\n    \"video_name\": \"L5IbDi09Yb4\",\n    \"answer\": \"life buoy\"\n  },\n  {\n    \"question\": \"what is behind the curly-haired woman\",\n    \"video_name\": \"7LbBmVX33I4\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is the rear of the boys\",\n    \"video_name\": \"Flm_SCK10GQ\",\n    \"answer\": \"sandbag\"\n  },\n  {\n    \"question\": \"what is behind the car in the video\",\n    \"video_name\": \"cnMvMvVBXiI\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is the rear of the old man in a blue sweater\",\n    \"video_name\": \"7F-mVWMP2vM\",\n    \"answer\": \"woven goods\"\n  },\n  {\n    \"question\": \"what is the rear of the smoke\",\n    \"video_name\": \"FmfAB-ppHBs\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is behind the two cars side by side\",\n    \"video_name\": \"BD9CAqD1Yf8\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is red in the oil pan\",\n    \"video_name\": \"kkji9hespu0\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is the relationship between men in black and men in white\",\n    \"video_name\": \"e-Xf13exY4E\",\n    \"answer\": \"partner\"\n  },\n  {\n    \"question\": \"what is the relationship between a dog and a purple woman\",\n    \"video_name\": \"8_fjIZkNHms\",\n    \"answer\": \"master and servant\"\n  },\n  {\n    \"question\": \"what is the relationship between the owner of the dog and the two people on the roadside\",\n    \"video_name\": \"-eJT11AuOa0\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between men and brunette girls wearing floral shirts\",\n    \"video_name\": \"iixZLnyLuN8\",\n    \"answer\": \"father and daughter\"\n  },\n  {\n    \"question\": \"what is the relationship between red girls and girls in pink\",\n    \"video_name\": \"e0yLhjXQIXI\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship between yellow-haired girls and those wearing glasses\",\n    \"video_name\": \"9snScUyE8_4\",\n    \"answer\": \"mother and daughter\"\n  },\n  {\n    \"question\": \"what is the relationship between a group of people in the video\",\n    \"video_name\": \"BD9CAqD1Yf8\",\n    \"answer\": \"companion\"\n  },\n  {\n    \"question\": \"what is the relationship between people and dogs\",\n    \"video_name\": \"PFeerDZbGn8\",\n    \"answer\": \"partnership\"\n  },\n  {\n    \"question\": \"what is the relationship between a red man and a black man\",\n    \"video_name\": \"i_LT0ef1n-Y\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between the person wearing the hat and the person being cut\",\n    \"video_name\": \"5c5PFa8GR-A\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between the standing man and the woman sitting\",\n    \"video_name\": \"V2UitlmX7Uo\",\n    \"answer\": \"stranger\"\n  },\n  {\n    \"question\": \"what is the relationship between a woman in red and a short-haired baby\",\n    \"video_name\": \"vBOFzuS-Djo\",\n    \"answer\": \"mother and daughter\"\n  },\n  {\n    \"question\": \"what is the relationship between a woman wearing a hat and a woman behind her\",\n    \"video_name\": \"VFC-V06hVj0\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between adults and children in the video\",\n    \"video_name\": \"k3WPc9HmtLM\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is the relationship between all athletes wearing yellow clothes\",\n    \"video_name\": \"zOI9SjQpc_Q\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship between everyone who throws a shot in the video\",\n    \"video_name\": \"GjcRJzPjbRI\",\n    \"answer\": \"competitor\"\n  },\n  {\n    \"question\": \"what is the relationship between the archers in the video\",\n    \"video_name\": \"8AUTKSqcmiM\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between a blonde woman and a brunette woman\",\n    \"video_name\": \"IclzwpxVvIk\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between a blonde woman and a white woman\",\n    \"video_name\": \"ikUNgSw4Gys\",\n    \"answer\": \"shopkeepers and shopkeepers\"\n  },\n  {\n    \"question\": \"what is the relationship between a blue boy and a long-haired girl\",\n    \"video_name\": \"vBaiedxy1Uw\",\n    \"answer\": \"brother and sister\"\n  },\n  {\n    \"question\": \"what is the relationship between people in blue clothes and people in black clothes\",\n    \"video_name\": \"oMtB-y49Yo8\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between the four men\",\n    \"video_name\": \"7vcihMnmssI\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between green clothes boys\",\n    \"video_name\": \"9FQ-VLkCZo8\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship between a long-haired woman and a short-haired man\",\n    \"video_name\": \"UvOEuhS0V3E\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between black pants men and green pants men\",\n    \"video_name\": \"hIHeMA1oRrY\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between people with orange clothes and green shirts\",\n    \"video_name\": \"uLsq6gQXQPM\",\n    \"answer\": \"father and son\"\n  },\n  {\n    \"question\": \"what is the relationship between the people who appear\",\n    \"video_name\": \"p54LLMnyg54\",\n    \"answer\": \"colleague\"\n  },\n  {\n    \"question\": \"what is the relationship between the person in black and the person behind him\",\n    \"video_name\": \"5k2Ot6-wOgc\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between a person wearing blue and a person wearing white\",\n    \"video_name\": \"YvPoAOrjX5I\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between a person wearing white clothes and a person wearing black clothes\",\n    \"video_name\": \"AjqnGUbsduw\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between a person in white and a person in red\",\n    \"video_name\": \"2uUNiV8xmEo\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between people in the middle of the field\",\n    \"video_name\": \"JsPIzRsUtlE\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between people running in the video\",\n    \"video_name\": \"TXSOSSGJYO0\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between people wearing black hats\",\n    \"video_name\": \"0iqx7o5WYW8\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship between people wearing black ball suits in the video\",\n    \"video_name\": \"nP1Bk-vJgVg\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship between people wearing camouflage and people wearing glasses\",\n    \"video_name\": \"A_Sr0mCX2rI\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between people wearing green clothes in the video\",\n    \"video_name\": \"cVFVREeD6hM\",\n    \"answer\": \"colleague\"\n  },\n  {\n    \"question\": \"what is the relationship between wearing gray clothes and children wearing white clothes\",\n    \"video_name\": \"A8RQcVFtovg\",\n    \"answer\": \"relatives\"\n  },\n  {\n    \"question\": \"what is the relationship between people wearing red clothes on the stage\",\n    \"video_name\": \"gCHo9vxfEzM\",\n    \"answer\": \"dancing partner\"\n  },\n  {\n    \"question\": \"what is the relationship between people wearing white hats on the video\",\n    \"video_name\": \"aH39BSM0-Ag\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship between people wearing white short sleeves\",\n    \"video_name\": \"wLXty2wzuJg\",\n    \"answer\": \"colleague\"\n  },\n  {\n    \"question\": \"what is the relationship between people wearing hats on the bullfighting ground\",\n    \"video_name\": \"H_JLBvfP88U\",\n    \"answer\": \"colleague\"\n  },\n  {\n    \"question\": \"what is the relationship between purple clothes and black sleeves\",\n    \"video_name\": \"0e7d39SwHCA\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between adults and children who play\",\n    \"video_name\": \"K1LiXUpoSmI\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is the relationship between the bald head in the video and the person across the table\",\n    \"video_name\": \"3Rzyta8op6s\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between black clothes person and red clothes person\",\n    \"video_name\": \"oKJ1BnvHbbA\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between black and black helmets and white people\",\n    \"video_name\": \"UJGK_TKrl4E\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between a child and a girl in blue\",\n    \"video_name\": \"Ki1bs5X_S5k\",\n    \"answer\": \"mother and daughter\"\n  },\n  {\n    \"question\": \"what is the relationship between the judges\",\n    \"video_name\": \"paRAKx8svJ8\",\n    \"answer\": \"colleague\"\n  },\n  {\n    \"question\": \"what is the relationship between men and women in the video\",\n    \"video_name\": \"KsFid_YVsn0\",\n    \"answer\": \"dancing partner\"\n  },\n  {\n    \"question\": \"what is the relationship between a black man and a red man opposite\",\n    \"video_name\": \"fvEaC-fTR4A\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between the owner of the dog and the photographer\",\n    \"video_name\": \"eQwLUJ3P7wI\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between the various contestants\",\n    \"video_name\": \"bBRzBh0gAZQ\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between people who are dancing in the video\",\n    \"video_name\": \"vFO70WwrQgE\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between people in orange clothes and white people\",\n    \"video_name\": \"ghHZ9M-jx0w\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship between people on motorboats and people surfing\",\n    \"video_name\": \"eMgC7I-GcgA\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between the people who appeared in the video last time\",\n    \"video_name\": \"cTxVTEzQDr8\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between people who jump in the grid\",\n    \"video_name\": \"PkRvgIFREJU\",\n    \"answer\": \"companion\"\n  },\n  {\n    \"question\": \"what is the relationship between people who skip rope in the video\",\n    \"video_name\": \"u_vLZxgO9Rw\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship between the person holding the box in hand\",\n    \"video_name\": \"K7iw2_1BrIk\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship between the performers\",\n    \"video_name\": \"BkDbDnvoL28\",\n    \"answer\": \"partner\"\n  },\n  {\n    \"question\": \"what is the relationship between the performers on the stage\",\n    \"video_name\": \"BhgcXqWQhkQ\",\n    \"answer\": \"partner\"\n  },\n  {\n    \"question\": \"what is the relationship between a person wearing black clothes and a person on his right\",\n    \"video_name\": \"3PsxzgeMv5w\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between the purple team and the grey team\",\n    \"video_name\": \"IDuoF51IMJ8\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between short hair men and blonde women\",\n    \"video_name\": \"J1QB1y3vXLY\",\n    \"answer\": \"shopkeeper and customer\"\n  },\n  {\n    \"question\": \"what is the relationship between a striped bikini person and a purple bikini person\",\n    \"video_name\": \"uJAL31wAD2A\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between two black women in the video\",\n    \"video_name\": \"6VXQoPNphgI\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between these two boxing people\",\n    \"video_name\": \"12Nafz_Yet4\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between the two performing girls\",\n    \"video_name\": \"k-I4zLbgdpM\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship between the two woman in the video\",\n    \"video_name\": \"pPt_fygNjtQ\",\n    \"answer\": \"teaching relationship\"\n  },\n  {\n    \"question\": \"what is the relationship between the two of them in the video\",\n    \"video_name\": \"aAz3YL2RMr4\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between the two people involved in the competition\",\n    \"video_name\": \"b6QSzGwI9m4\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between the two people playing table tennis\",\n    \"video_name\": \"kYkvyRKxwfY\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between two people wearing suits\",\n    \"video_name\": \"H33jSILKmfI\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between the two men in the wrist of the video\",\n    \"video_name\": \"U2eN4DbVLfE\",\n    \"answer\": \"masses and journalists\"\n  },\n  {\n    \"question\": \"what is the relationship between two people in the video\",\n    \"video_name\": \"NZskwwovSZI\",\n    \"answer\": \"boss and the customer\"\n  },\n  {\n    \"question\": \"what is the relationship between these two teams\",\n    \"video_name\": \"Es3PxD9oi4I\",\n    \"answer\": \"competitor\"\n  },\n  {\n    \"question\": \"what is the relationship between the two teams at both ends of the hemp rope\",\n    \"video_name\": \"6O4S2CpRB0A\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between the two teams in the competition\",\n    \"video_name\": \"b_c17BmZCCs\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between the two teams participating in the competition\",\n    \"video_name\": \"pMtu7fOHdII\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the relationship between two women\",\n    \"video_name\": \"dGT_KGb0gyw\",\n    \"answer\": \"partner\"\n  },\n  {\n    \"question\": \"what is the relationship between the two women in the ring\",\n    \"video_name\": \"ETbbYC0OhL0\",\n    \"answer\": \"competitor\"\n  },\n  {\n    \"question\": \"what is the relationship between white short-sleeved girls and orange-shirt girls\",\n    \"video_name\": \"iKclcQEl4zI\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between a white woman and a black man\",\n    \"video_name\": \"8A4cZXyDrkU\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between the two working people\",\n    \"video_name\": \"KXMZHfCwTO0\",\n    \"answer\": \"colleague\"\n  },\n  {\n    \"question\": \"what is the relationship between people who are yellow strips in the video\",\n    \"video_name\": \"qlK-c7hRqcA\",\n    \"answer\": \"teammate\"\n  },\n  {\n    \"question\": \"what is the relationship between two people wearing blue clothes\",\n    \"video_name\": \"46NS8dT15Hw\",\n    \"answer\": \"father and son\"\n  },\n  {\n    \"question\": \"what is the relationship between women and girls in the video\",\n    \"video_name\": \"5mWZY2XkWSQ\",\n    \"answer\": \"mother and daughter\"\n  },\n  {\n    \"question\": \"what is the relationship between the person wearing yellow clothes and the person wearing pink clothes\",\n    \"video_name\": \"54TIARWo-S8\",\n    \"answer\": \"classmate\"\n  },\n  {\n    \"question\": \"what is the relationship between a young man and a man wearing glasses\",\n    \"video_name\": \"iQnnCZTl_7U\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is the relationship between people with striped clothes and people without shirts\",\n    \"video_name\": \"HDt5z5Y0opo\",\n    \"answer\": \"referee and player\"\n  },\n  {\n    \"question\": \"what is the right side of the bald person\",\n    \"video_name\": \"m731tx8N5-Y\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is the woman's right side when skipping\",\n    \"video_name\": \"DIVaPURJHPo\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is the right side of the hulk\",\n    \"video_name\": \"3JBUWRKezUI\",\n    \"answer\": \"spider man\"\n  },\n  {\n    \"question\": \"what is the right side of the dog closest to the camera\",\n    \"video_name\": \"jWODw4vy45M\",\n    \"answer\": \"grass\"\n  },\n  {\n    \"question\": \"what is the right side of the parade\",\n    \"video_name\": \"stdtUoog49I\",\n    \"answer\": \"row of cars\"\n  },\n  {\n    \"question\": \"what is the right side of the tug-of-war athlete's waist when tug-of-war\",\n    \"video_name\": \"6O4S2CpRB0A\",\n    \"answer\": \"hemp rope\"\n  },\n  {\n    \"question\": \"what is the right side of the little girl with curly hair\",\n    \"video_name\": \"Erje-PwY9hE\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what is the right side of the man in a white shirt\",\n    \"video_name\": \"fh21bbDSVmA\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the right side of the person who makes the fire\",\n    \"video_name\": \"cCDffwsJvsY\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what is the right hand side of the person wearing beige clothes\",\n    \"video_name\": \"PJ7HOHdOdy4\",\n    \"answer\": \"green brush\"\n  },\n  {\n    \"question\": \"what is the woman's right side\",\n    \"video_name\": \"FEOdYNR4gls\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is the right side of the girl in the video\",\n    \"video_name\": \"5mWZY2XkWSQ\",\n    \"answer\": \"casement window\"\n  },\n  {\n    \"question\": \"what is the right side of the man who is wearing a white shirt\",\n    \"video_name\": \"faqijFZWQlo\",\n    \"answer\": \"black hat man\"\n  },\n  {\n    \"question\": \"what is the right side of the score\",\n    \"video_name\": \"-Fk62y-1WHo\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is the risk factor for diving\",\n    \"video_name\": \"fEBM3nPMen8\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"what is the risk factor for ironing clothes\",\n    \"video_name\": \"LsVCwr6qPmY\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"what is the risk factor for making skis\",\n    \"video_name\": \"0XTAq_xvquw\",\n    \"answer\": \"higher\"\n  },\n  {\n    \"question\": \"what is the risk factor for playing volleyball\",\n    \"video_name\": \"cAiig_569fI\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the risk factor for trimming trees\",\n    \"video_name\": \"fhOmyyI0eQE\",\n    \"answer\": \"low grade\"\n  },\n  {\n    \"question\": \"what is the risk factor for running on a treadmill\",\n    \"video_name\": \"uw9x69DT8_g\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"what is the risk factor for sports dance\",\n    \"video_name\": \"teffBaLEZQg\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the risk factor for pushing the curling machine\",\n    \"video_name\": \"LL0uQO4q_wY\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"what is the risk factor for this fitness\",\n    \"video_name\": \"FADShG5lyB8\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"what is the risk factor for walking a wooden bridge\",\n    \"video_name\": \"hGPCJb2g1tQ\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the risk factor for fencing\",\n    \"video_name\": \"UJGK_TKrl4E\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the risk factor for drumming\",\n    \"video_name\": \"FFMugev85IY\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"what is the risk factor for the pole vault\",\n    \"video_name\": \"2vrR_5u2buU\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the risk factor for pommel horses\",\n    \"video_name\": \"fh21bbDSVmA\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the risk factor for practicing car technology\",\n    \"video_name\": \"C7yd6yEkxXE\",\n    \"answer\": \"higher\"\n  },\n  {\n    \"question\": \"what is the risk factor for running\",\n    \"video_name\": \"df5rlVZD0Zc\",\n    \"answer\": \"low grade\"\n  },\n  {\n    \"question\": \"what is the risk factor for skiing in the video\",\n    \"video_name\": \"m73Cod-PmMQ\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"what is the risk factor for taekwondo\",\n    \"video_name\": \"H33jSILKmfI\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the risk factor of brush railing\",\n    \"video_name\": \"0w4OkBenR_k\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"what is the risk factor for drifting\",\n    \"video_name\": \"uJAL31wAD2A\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"what is the risk factor for fitness\",\n    \"video_name\": \"U2cCOj3LiAA\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the risk factor for the speed hydrofoil competition\",\n    \"video_name\": \"dFGS7YCDk3Y\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the risk factor for parallel bars exercise\",\n    \"video_name\": \"1YU4MSK80cQ\",\n    \"answer\": \"poisoning\"\n  },\n  {\n    \"question\": \"what is the risk factor for skipping this sport\",\n    \"video_name\": \"u_vLZxgO9Rw\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"what is the risk factor for the slide\",\n    \"video_name\": \"uLsq6gQXQPM\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the risk factor for the wrist wrench\",\n    \"video_name\": \"U2eN4DbVLfE\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"what is the risk factor for swinging this game\",\n    \"video_name\": \"LPRLV0eVgfY\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"what is the risk factor for the uneven bars\",\n    \"video_name\": \"f6vZaMgqDvQ\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the risk factor of the program performed by white-haired people\",\n    \"video_name\": \"I2XqSiNerwg\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"what is the risk factor for this sport in the video\",\n    \"video_name\": \"VpZzLvzU7_k\",\n    \"answer\": \"much much higher\"\n  },\n  {\n    \"question\": \"what is the risk factor for this sport in the video\",\n    \"video_name\": \"vqyQF-1Zc_E\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the risk factor for throwing darts\",\n    \"video_name\": \"hyMqGr0mOfA\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the risk factor for water skiing\",\n    \"video_name\": \"Vxw3yFCV2iA\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"how dangerous is the game of bumper cars\",\n    \"video_name\": \"mkGUacg0GRc\",\n    \"answer\": \"much safer\"\n  },\n  {\n    \"question\": \"what is the danger of diving\",\n    \"video_name\": \"M2Y2Cw2kwDo\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"what is the danger of high jump\",\n    \"video_name\": \"snhPrCNubYA\",\n    \"answer\": \"much more dangerous\"\n  },\n  {\n    \"question\": \"how dangerous is it to playing a bouncer in the video\",\n    \"video_name\": \"mixxaL3Bdv8\",\n    \"answer\": \"much more dangerous\"\n  },\n  {\n    \"question\": \"how dangerous is it to playing table tennis\",\n    \"video_name\": \"sEcXR5b8HyY\",\n    \"answer\": \"much safer\"\n  },\n  {\n    \"question\": \"what is the danger of the long jump sport\",\n    \"video_name\": \"LzPppxSWYNY\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how dangerous is this activity in the video\",\n    \"video_name\": \"J9KjpzKM8oc\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the role of the brush\",\n    \"video_name\": \"w10Nr_wOh8g\",\n    \"answer\": \"removal of bubbles\"\n  },\n  {\n    \"question\": \"what is the role of the cotton swab\",\n    \"video_name\": \"CDncYtx6Lwc\",\n    \"answer\": \"nail polish\"\n  },\n  {\n    \"question\": \"what is the role of the operator's card issuance\",\n    \"video_name\": \"C27eI-S1Vkw\",\n    \"answer\": \"fixed hair\"\n  },\n  {\n    \"question\": \"what is the role of the rope\",\n    \"video_name\": \"-vY2uUmv6Dk\",\n    \"answer\": \"protect\"\n  },\n  {\n    \"question\": \"what is the role of brush mascara\",\n    \"video_name\": \"W97fdJ2Rn9g\",\n    \"answer\": \"natural lashes\"\n  },\n  {\n    \"question\": \"what is the role of the sail in the video\",\n    \"video_name\": \"OlR9S70AA74\",\n    \"answer\": \"control direction\"\n  },\n  {\n    \"question\": \"what is the safety factor for wearing contact lenses\",\n    \"video_name\": \"v6DdLg_Xnkg\",\n    \"answer\": \"high\"\n  },\n  {\n    \"question\": \"what is the safety factor of riding a cross-country motorcycle\",\n    \"video_name\": \"7-UlUnaBjXU\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the safety factor for boating\",\n    \"video_name\": \"V90CMuokf0c\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the safety factor for bungee jumping\",\n    \"video_name\": \"-EIsT868Trw\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the safety factor of the cycling competition in the video\",\n    \"video_name\": \"iZT4XgzUHm4\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"what is the safety factor for diving\",\n    \"video_name\": \"IIPKxzPjrWg\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the safety factor of smoking\",\n    \"video_name\": \"wCexKIuAj3A\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the safety factor for tattoos\",\n    \"video_name\": \"IToczVhbOc0\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"what is the safety factor for bungee jumping\",\n    \"video_name\": \"CvbL36Y8hN0\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"what is the hair safety factor\",\n    \"video_name\": \"7LbBmVX33I4\",\n    \"answer\": \"higher\"\n  },\n  {\n    \"question\": \"what is the safety factor for flipping\",\n    \"video_name\": \"e0yLhjXQIXI\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the safety factor of the hammer thrower in the video\",\n    \"video_name\": \"d09u-0k3LdE\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"what is the safety factor for throwing a needle\",\n    \"video_name\": \"VfhDSTKBwgc\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"what is the safety factor of skateboarding\",\n    \"video_name\": \"6xBh3vzhgo4\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the safety factor of the ski apron\",\n    \"video_name\": \"iuc48VIWLJY\",\n    \"answer\": \"much higher\"\n  },\n  {\n    \"question\": \"what is the safety factor of the flip\",\n    \"video_name\": \"iKclcQEl4zI\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the safety factor of taking the subway\",\n    \"video_name\": \"V2UitlmX7Uo\",\n    \"answer\": \"high\"\n  },\n  {\n    \"question\": \"what is the safety factor of a purple woman using a stick\",\n    \"video_name\": \"8_fjIZkNHms\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"what is the safety factor for this type of gymnastics\",\n    \"video_name\": \"6VXQoPNphgI\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the safety factor for throwing a hammer\",\n    \"video_name\": \"vezvHLPR3P0\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the score of the woman who first shot the arrow\",\n    \"video_name\": \"FkbpD1zWdPw\",\n    \"answer\": \"10\"\n  },\n  {\n    \"question\": \"what is in the video on the sea\",\n    \"video_name\": \"5LGh56euaZs\",\n    \"answer\": \"floating ice\"\n  },\n  {\n    \"question\": \"which season is the video happening\",\n    \"video_name\": \"Mk7Yjq1U8OI\",\n    \"answer\": \"summer\"\n  },\n  {\n    \"question\": \"what is the season in which the events in the video occur\",\n    \"video_name\": \"rApbE1VkEjE\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"what is the safety factor of the trimming machine in the video\",\n    \"video_name\": \"IsV1n_kLpvs\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what is the gender of a child wearing a red trench coat\",\n    \"video_name\": \"4JmFOPoKluM\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the child sitting in the penultimate photo\",\n    \"video_name\": \"RXT17X7lRoQ\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of a child holding a plastic bag\",\n    \"video_name\": \"-p7aui3nAnc\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person who throws the dart\",\n    \"video_name\": \"hyMqGr0mOfA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a dog walking\",\n    \"video_name\": \"TiQcZKml5Bs\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the fencing person\",\n    \"video_name\": \"3LwQ2yq85LU\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a blindfolded girl who helps black clothes\",\n    \"video_name\": \"cCimLg-8Dy4\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of people doing gymnastics\",\n    \"video_name\": \"u0Dc0ZtudXY\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person using the lawn mower in the video\",\n    \"video_name\": \"4UdxT6Zmero\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person who is dressed as batman\",\n    \"video_name\": \"3JBUWRKezUI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person pulling the rope\",\n    \"video_name\": \"s84PG-JfEwc\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing a yellow scorpion\",\n    \"video_name\": \"rApbE1VkEjE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of zhangmutou\",\n    \"video_name\": \"hG4VsZQQ2_c\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person who does not wear an ankle\",\n    \"video_name\": \"K49OCArHjXI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the news host\",\n    \"video_name\": \"5UZ2ft8Y3sI\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of a person dancing in blue\",\n    \"video_name\": \"1px5LTVIR3A\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing crimson clothes\",\n    \"video_name\": \"LPRLV0eVgfY\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing a gray coat\",\n    \"video_name\": \"GxDNGtoVjS0\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing white clothes\",\n    \"video_name\": \"HWFosaUWoSI\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing white short sleeves\",\n    \"video_name\": \"GsPE54bMFwE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing white clothes in the video\",\n    \"video_name\": \"sfbgZOHLkII\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person riding the electric car\",\n    \"video_name\": \"stdtUoog49I\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing black and white clothes\",\n    \"video_name\": \"VjMMwpgOCPo\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing a black suit and a black helmet\",\n    \"video_name\": \"UJGK_TKrl4E\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what gender is the person wearing a golden coat\",\n    \"video_name\": \"zV08tITKFMM\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing a gray helmet\",\n    \"video_name\": \"QoRlOa6R1LY\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing the mask\",\n    \"video_name\": \"ryFSf08mrkA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person wearing pink shoes in the video\",\n    \"video_name\": \"TXSOSSGJYO0\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing red and black clothes\",\n    \"video_name\": \"oflwFZj9PNY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person who started wearing red clothes at the beginning of the video\",\n    \"video_name\": \"SB0dU5oDvaE\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing white clothes\",\n    \"video_name\": \"MDWaKr7Gu5Q\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing dark blue pants\",\n    \"video_name\": \"qGtUXGG78tM\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of a person wearing striped pants\",\n    \"video_name\": \"QPEAp7nf2Tk\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person who did not wear a hat at the beginning of the video\",\n    \"video_name\": \"jhy6npIdn5o\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the sparring person\",\n    \"video_name\": \"3kxP8qOtym8\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of a person who makes a sandwich\",\n    \"video_name\": \"0k6GFx2ZCg8\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is the gender of the person with goggles in the video\",\n    \"video_name\": \"5LGh56euaZs\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the person who is sunscreen\",\n    \"video_name\": \"hIHeMA1oRrY\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is the gender of the fallen player\",\n    \"video_name\": \"2uUNiV8xmEo\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what color is the juicer in the video\",\n    \"video_name\": \"qObVIn_GI10\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the line of the kite\",\n    \"video_name\": \"7CM2OYr-Csw\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the blond woman's clothes at the end of the video\",\n    \"video_name\": \"7BUr2cN8CLs\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the leaves shown\",\n    \"video_name\": \"-pkfcMUIEMo\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the life jacket worn by people in the video\",\n    \"video_name\": \"HTSxgkgecS0\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the life jacket worn by the person in white clothes\",\n    \"video_name\": \"nnEPsdA0080\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the lift truck\",\n    \"video_name\": \"_fLhtWSCaSo\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what color is the girl's swimsuit\",\n    \"video_name\": \"wLXty2wzuJg\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the logo at the beginning of the video\",\n    \"video_name\": \"2k-qlZxc9l4\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the lower layer of the cake\",\n    \"video_name\": \"dU7jG8G5li0\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the man wearing\",\n    \"video_name\": \"dKJMP8EmZjw\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the clothes of the man tongue out\",\n    \"video_name\": \"i_LT0ef1n-Y\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the hair of the man in blue shorts\",\n    \"video_name\": \"iuXjatyFcwo\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the clothes the man wearing in the video\",\n    \"video_name\": \"cQgP0-Id-p4\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the man's clothes wearing glasses in the video\",\n    \"video_name\": \"V08Q-DbT0GQ\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the beard of the man wearing a hat\",\n    \"video_name\": \"_V62aT_K8Zw\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the clothes of the man with white hat\",\n    \"video_name\": \"IDuoF51IMJ8\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what color is the hair of the man standing in the video\",\n    \"video_name\": \"V2UitlmX7Uo\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the pants of the person wearing a black jacket\",\n    \"video_name\": \"QImpWj3AJcY\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color is the pants of the person wearing a black vest\",\n    \"video_name\": \"ZgdMnfTqblw\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the glasses of the man in red clothes\",\n    \"video_name\": \"7BFbmEY3BNw\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the pants of the man wearing sweatshirt in the video\",\n    \"video_name\": \"UzmsAb15Bso\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the mark in the middle of the twine\",\n    \"video_name\": \"6O4S2CpRB0A\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the motorcycle\",\n    \"video_name\": \"fLR-b-FDjlM\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the mower in the video\",\n    \"video_name\": \"4UdxT6Zmero\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the pants of the number 2 player\",\n    \"video_name\": \"CfqnHsp6olc\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the pants of the number 9 player\",\n    \"video_name\": \"zOI9SjQpc_Q\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color are the glasses of the old man in blue clothes in the video\",\n    \"video_name\": \"idkQqlwyff8\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the spray paint in the video\",\n    \"video_name\": \"g9lNpSAtHgI\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the paint on the leg of the table\",\n    \"video_name\": \"Aj5ncX5G_2w\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color are the pants of the wood cutter\",\n    \"video_name\": \"hG4VsZQQ2_c\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the parachutist's parachute\",\n    \"video_name\": \"3LwQ2yq85LU\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what color are the clothes of the person throwing the rope\",\n    \"video_name\": \"W2eumNilwuI\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color was the ball played by the man in the white ha\",\n    \"video_name\": \"aH39BSM0-Ag\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the clothes of the person wearing umbrellas\",\n    \"video_name\": \"yRQpolWhJ6A\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the clothes of the person wearing orange pants\",\n    \"video_name\": \"vnZmsOgWs0o\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the coat of the man in the white shirt\",\n    \"video_name\": \"R-hsYQNtnn0\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the cameraman's clothes\",\n    \"video_name\": \"sk_pnoqXxhs\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the clothes of the man with the toothbrush in his hand\",\n    \"video_name\": \"AsdsR27UnJ0\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in a dark gray coat\",\n    \"video_name\": \"G_rVqf_hwXw\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person wearing the pink coat\",\n    \"video_name\": \"qGLRri_c6n8\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in striped pants\",\n    \"video_name\": \"QPEAp7nf2Tk\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person holding the microphone\",\n    \"video_name\": \"ZsVfa3JIUNU\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hat of the person in the welding\",\n    \"video_name\": \"2ShsRSJ9cqE\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color are the pants of the person in the green coat\",\n    \"video_name\": \"QX5e5Mla660\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the shoes of the person in black\",\n    \"video_name\": \"nhQTxZlzG1Q\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the shoes of a man in striped clothes\",\n    \"video_name\": \"03c6QhTMDSs\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the dog's plate\",\n    \"video_name\": \"PFeerDZbGn8\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the radio in the video\",\n    \"video_name\": \"y0ca-LbQErY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the bracelet of the person in the red\",\n    \"video_name\": \"iqyc2JM0uIU\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hat of the man in red in the video\",\n    \"video_name\": \"pVuuVHA3RVw\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the roof of the house in the video\",\n    \"video_name\": \"Co_cpZWbzFk\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the rope that fixes the goal\",\n    \"video_name\": \"DIVaPURJHPo\",\n    \"answer\": \"colorful\"\n  },\n  {\n    \"question\": \"what color is the rubber band on the girl's hair\",\n    \"video_name\": \"amgpZtvd9h0\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the rubber band that the girl in black is sitting on\",\n    \"video_name\": \"vqyQF-1Zc_E\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the ruler\",\n    \"video_name\": \"dN8LBey17O8\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the sailboat with green pants\",\n    \"video_name\": \"OlR9S70AA74\",\n    \"answer\": \"black and white\"\n  },\n  {\n    \"question\": \"what color are the sails of the sailboat\",\n    \"video_name\": \"dFGS7YCDk3Y\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color is the sandwich tray\",\n    \"video_name\": \"0k6GFx2ZCg8\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the saucepan used by the person in white\",\n    \"video_name\": \"ivAvKRQQy1Q\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the discus thrower's shoes\",\n    \"video_name\": \"cK0-WcGXacQ\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color are the shoes of the person in red and black\",\n    \"video_name\": \"oflwFZj9PNY\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color are the shorts of the man in the red coat\",\n    \"video_name\": \"df5rlVZD0Zc\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the shovel of the man who shovels snow\",\n    \"video_name\": \"vSv1qMMt4Bk\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the field for cross-country biking\",\n    \"video_name\": \"7-UlUnaBjXU\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the skateboard of the last surfer in the video\",\n    \"video_name\": \"1vTHJMMPZN0\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color hat does the skier wear\",\n    \"video_name\": \"hxErUs42bBI\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the pommel horse's sports equipment\",\n    \"video_name\": \"huFOZ2BiM_k\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the stick of the person wearing black gloves\",\n    \"video_name\": \"Vxw3yFCV2iA\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color are the diving suits\",\n    \"video_name\": \"fEBM3nPMen8\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the sunshade in the video\",\n    \"video_name\": \"AQ3eFWxZ67U\",\n    \"answer\": \"red and white\"\n  },\n  {\n    \"question\": \"what color is the surface of the air cushion\",\n    \"video_name\": \"Df7AnfIEhYw\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the lamp in the video\",\n    \"video_name\": \"_jIXs7AFTxw\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the thread woven in the video\",\n    \"video_name\": \"7F-mVWMP2vM\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color are the clothes of the three men with the white lights on their backs\",\n    \"video_name\": \"I2XqSiNerwg\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the tie of the person in a black suit\",\n    \"video_name\": \"wCexKIuAj3A\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what color are the tools used to punch holes\",\n    \"video_name\": \"7vcihMnmssI\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the towel on the head of the person in red\",\n    \"video_name\": \"0q9yZPTBbus\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the toy in the black hair girl's hand\",\n    \"video_name\": \"iixZLnyLuN8\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the trademark of the person in black\",\n    \"video_name\": \"DOI6tsATsE4\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color are the underpants worn by the athletes\",\n    \"video_name\": \"f2DS_AVorrY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the watch of the blond person\",\n    \"video_name\": \"8tCRp3NKtkI\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color are the wings on the little girl's back\",\n    \"video_name\": \"WNgI2qBvPrY\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the hair of the woman in red\",\n    \"video_name\": \"xuvp0jKMqRU\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the clothes worn by the lady with short curls\",\n    \"video_name\": \"bYxVbXzQToI\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color are the purple woman's pants\",\n    \"video_name\": \"iuc48VIWLJY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the wrapping paper\",\n    \"video_name\": \"C5SXR9nMY3I\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what color is the wrist guard on the hands of a man in blue pants\",\n    \"video_name\": \"6Xsfwn5M6qs\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color are the young man's clothes\",\n    \"video_name\": \"iQnnCZTl_7U\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is nails of the girl in the pink\",\n    \"video_name\": \"28WDlVOgslg\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what color is pants of the person\",\n    \"video_name\": \"MQ9Ojge7CyA\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the pants of the man wearing in the red vest\",\n    \"video_name\": \"eVkp83uGf3Y\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the pants of the boy with the pink dress wear\",\n    \"video_name\": \"54TIARWo-S8\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is pants of the person in blue\",\n    \"video_name\": \"LsVCwr6qPmY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the pants of the person in red and black\",\n    \"video_name\": \"12Nafz_Yet4\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the pants of the athlete in green\",\n    \"video_name\": \"lOZ9bfzq89o\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the pants does the woman wear in the video\",\n    \"video_name\": \"Db9VWkgMpbE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the pants of the man in the hat\",\n    \"video_name\": \"1lwG-y_QCkc\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the first dancer\",\n    \"video_name\": \"EQWdo0FcKAo\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the shoes of the hula hoop man\",\n    \"video_name\": \"3nSOFmmA7FU\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the shoes of the person in blue\",\n    \"video_name\": \"26U3SkeZU6M\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what color is the shoes of the person in red\",\n    \"video_name\": \"98ukqD62X5s\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the shoes of the bodybuilder\",\n    \"video_name\": \"k--dW53UQWs\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the socks of the person in white\",\n    \"video_name\": \"xizEiQZfJa4\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color towel is hanging on the faucet\",\n    \"video_name\": \"FWZ6wgaJ_L4\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the pants does the person in red wear\",\n    \"video_name\": \"dHKeNK1uWUg\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color is the pants of the surfer man\",\n    \"video_name\": \"dskswWtslKc\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the watch of the person in blue\",\n    \"video_name\": \"96vBhCFBbQk\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"what color is the chair of the person in the black coat\",\n    \"video_name\": \"fe4r2-Y8k1U\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color are the clothes of the person playing the violins\",\n    \"video_name\": \"P2xT7dlyX8Y\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the pants of the man in red\",\n    \"video_name\": \"9k19UUJtldg\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what kind of dance are the woman doing\",\n    \"video_name\": \"EBw5-KVV_PU\",\n    \"answer\": \"ballet\"\n  },\n  {\n    \"question\": \"what does the man with the striped shirt do when he arrived near the tire\",\n    \"video_name\": \"qlK-c7hRqcA\",\n    \"answer\": \"squat\"\n  },\n  {\n    \"question\": \"what does woman wearing black clothes do after wearing shoes\",\n    \"video_name\": \"eLh51DwDp-E\",\n    \"answer\": \"take off shoes\"\n  },\n  {\n    \"question\": \"what did purple hair women do before falling down on purple dress woman\",\n    \"video_name\": \"ETbbYC0OhL0\",\n    \"answer\": \"lift her up\"\n  },\n  {\n    \"question\": \"what did she change when she shaved her dog's body in the video\",\n    \"video_name\": \"-8SgY4vW4xM\",\n    \"answer\": \"shaving cutter head\"\n  },\n  {\n    \"question\": \"what thing is the she use to repair the dog's hairstyle in the video\",\n    \"video_name\": \"-8SgY4vW4xM\",\n    \"answer\": \"scissors\"\n  },\n  {\n    \"question\": \"what did she do  to pick up the dog's tail in the video\",\n    \"video_name\": \"-8SgY4vW4xM\",\n    \"answer\": \"carding\"\n  },\n  {\n    \"question\": \"what did the people do after they won the tug-of-war\",\n    \"video_name\": \"4JmFOPoKluM\",\n    \"answer\": \"take off long rope\"\n  },\n  {\n    \"question\": \"what happened when the barber raised the head of the bald person\",\n    \"video_name\": \"mLFjww64sX8\",\n    \"answer\": \"round to other side\"\n  },\n  {\n    \"question\": \"what does the blond man do after he steps on a grid\",\n    \"video_name\": \"8tCRp3NKtkI\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what did the boy do when seeing the building\",\n    \"video_name\": \"KPRymTsPCC0\",\n    \"answer\": \"stop\"\n  },\n  {\n    \"question\": \"what does the first player wear on his left hand\",\n    \"video_name\": \"s6fEIuHPJ4Y\",\n    \"answer\": \"hand ring\"\n  },\n  {\n    \"question\": \"what does the girl do after she finished her hair in the video\",\n    \"video_name\": \"Dd5yTxwKzXw\",\n    \"answer\": \"photo display\"\n  },\n  {\n    \"question\": \"what does the long hair man do before the video ended\",\n    \"video_name\": \"eQwLUJ3P7wI\",\n    \"answer\": \"pull dog down\"\n  },\n  {\n    \"question\": \"what does he do after the bike ride\",\n    \"video_name\": \"FtRGOgg0Qh8\",\n    \"answer\": \"lying on ground\"\n  },\n  {\n    \"question\": \"what does the man do before the shot put\",\n    \"video_name\": \"eJc8bebOF2A\",\n    \"answer\": \"two circles of rotation\"\n  },\n  {\n    \"question\": \"what does this person do before putting a cake on an orange skin\",\n    \"video_name\": \"ej_fSoVO0R8\",\n    \"answer\": \"rolling skin\"\n  },\n  {\n    \"question\": \"what does the person in the blue jacket do after he took the bread\",\n    \"video_name\": \"qiTQ02NDSlQ\",\n    \"answer\": \"feed bread\"\n  },\n  {\n    \"question\": \"what did the man in yellow clothes wear on his head\",\n    \"video_name\": \"Ko7Nt8UDP4Q\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what did the man throw away after the show\",\n    \"video_name\": \"eKdtOKqLMRE\",\n    \"answer\": \"drumstick\"\n  },\n  {\n    \"question\": \"what does the person wearing a floral dress wear\",\n    \"video_name\": \"Y7aacWy3WDo\",\n    \"answer\": \"earring\"\n  },\n  {\n    \"question\": \"what does the person in blue wear\",\n    \"video_name\": \"oMtB-y49Yo8\",\n    \"answer\": \"glasses\"\n  },\n  {\n    \"question\": \"what does the person who opened the refrigerator take with his right hand when he danced\",\n    \"video_name\": \"Ko7Nt8UDP4Q\",\n    \"answer\": \"pocket knife\"\n  },\n  {\n    \"question\": \"what's on the wall behind the man in the white shoes\",\n    \"video_name\": \"EQrcCmgraa8\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what did the person in the video do after turning on the lights\",\n    \"video_name\": \"Ar6TcWqwK-A\",\n    \"answer\": \"make face\"\n  },\n  {\n    \"question\": \"what did the person in the video do before he go on the stage\",\n    \"video_name\": \"eKdtOKqLMRE\",\n    \"answer\": \"take off your shirt\"\n  },\n  {\n    \"question\": \"what does the person wearing a gray dress touch when he touched the lens\",\n    \"video_name\": \"MDsJa6Yitwc\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what does the person wearing green clothes wear in their left hand\",\n    \"video_name\": \"QIUxLD27NuI\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what happened to the screen after the table football match ended in the video\",\n    \"video_name\": \"fvEaC-fTR4A\",\n    \"answer\": \"appearance of name\"\n  },\n  {\n    \"question\": \"what does the red vest man do before throwing the hammer\",\n    \"video_name\": \"eVkp83uGf3Y\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what does the short sleeves person do after laying down the tiles\",\n    \"video_name\": \"_2txWbQfJrY\",\n    \"answer\": \"press ceramic tile\"\n  },\n  {\n    \"question\": \"\\nwhat are the benefits of skateboarding\",\n    \"video_name\": \"UzmsAb15Bso\",\n    \"answer\": \"flexibility\"\n  },\n  {\n    \"question\": \"\\nwhat are the benefits of the tug of war\",\n    \"video_name\": \"6O4S2CpRB0A\",\n    \"answer\": \"team consciousness\"\n  },\n  {\n    \"question\": \"what happened after the person wiped the cup in the video\",\n    \"video_name\": \"Ar6TcWqwK-A\",\n    \"answer\": \"throw away tissue\"\n  },\n  {\n    \"question\": \"what does the person at the beginning of the video wear after wearing the car\",\n    \"video_name\": \"5oyenoaVB-w\",\n    \"answer\": \"scarf\"\n  },\n  {\n    \"question\": \"what does the woman in the center do\",\n    \"video_name\": \"7rwDYzqfGgU\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what shape does the woman make the cake\",\n    \"video_name\": \"ej_fSoVO0R8\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does the blond woman take before the hair\",\n    \"video_name\": \"FPf7mAgdy0I\",\n    \"answer\": \"hairpin\"\n  },\n  {\n    \"question\": \"what happened after they pruned leaves in the video\",\n    \"video_name\": \"_fLhtWSCaSo\",\n    \"answer\": \"branches and leaves fell\"\n  },\n  {\n    \"question\": \"what do they do after they had cigarettes\",\n    \"video_name\": \"FmfAB-ppHBs\",\n    \"answer\": \"release white smoke\"\n  },\n  {\n    \"question\": \"what does the person throw at the man in light blue shorts before drifting\",\n    \"video_name\": \"elD1P_1oiUk\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"what does the woman with the hairpin have on her hand\",\n    \"video_name\": \"amgpZtvd9h0\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what does the long hair woman do when planting trees\",\n    \"video_name\": \"UNKf15ALDh8\",\n    \"answer\": \"squat\"\n  },\n  {\n    \"question\": \"what does the man in red do\",\n    \"video_name\": \"z6l9utYlIrw\",\n    \"answer\": \"prayers\"\n  },\n  {\n    \"question\": \"what does the person in white clothes do at the beginning\",\n    \"video_name\": \"H_IfIsKQ3Zw\",\n    \"answer\": \"make phone\"\n  },\n  {\n    \"question\": \"what does the person in the video use to see the time\",\n    \"video_name\": \"4MwnHtlaEUY\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what clothes do two girls wear\",\n    \"video_name\": \"k-I4zLbgdpM\",\n    \"answer\": \"gymnastics suit\"\n  },\n  {\n    \"question\": \"what does the staff have on their hand\",\n    \"video_name\": \"Jdu5AqaWfz8\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what does the tattoo artist have on his hand\",\n    \"video_name\": \"6LsvBNqJuJY\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what do two men in the video have in common\",\n    \"video_name\": \"8IrulONeC28\",\n    \"answer\": \"right handed rod\"\n  },\n  {\n    \"question\": \"what do they take in the video\",\n    \"video_name\": \"_fLhtWSCaSo\",\n    \"answer\": \"lift truck\"\n  },\n  {\n    \"question\": \"what does the woman do before putting the barbell on the shelf\",\n    \"video_name\": \"EQrcCmgraa8\",\n    \"answer\": \"unload barbell\"\n  },\n  {\n    \"question\": \"what's in the hands of those in pink\",\n    \"video_name\": \"1dDAcUliXrQ\",\n    \"answer\": \"feathered pat\"\n  },\n  {\n    \"question\": \"\\nwhat are the benefits of playing volleyball\",\n    \"video_name\": \"utgRhyBvtRU\",\n    \"answer\": \"physical energy\"\n  },\n  {\n    \"question\": \"what kind of equipment does the fitness person have on the left\",\n    \"video_name\": \"k--dW53UQWs\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what do you need to do before you start a new mower\",\n    \"video_name\": \"eQ0sW4hJ9zU\",\n    \"answer\": \"plug igniter\"\n  },\n  {\n    \"question\": \"what does he tread on while skiing\",\n    \"video_name\": \"-pK2JheWido\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what do you use to paint the nail in the video\",\n    \"video_name\": \"a_EqAwUOxpM\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what clothes do the girls in glasses wear\",\n    \"video_name\": \"ECZb_tQZ4Pg\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what does the person with the phone have on his hand \",\n    \"video_name\": \"RgiVa9GMYxE\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what does the person with the rope have on his hand\",\n    \"video_name\": \"s84PG-JfEwc\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what was on the hands of the person who was sitting at beginning\",\n    \"video_name\": \"k3WPc9HmtLM\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what does the person with the camel wear on his head\",\n    \"video_name\": \"rrpEOrMpBuE\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what does the person wearing a mask wear on his head\",\n    \"video_name\": \"ryFSf08mrkA\",\n    \"answer\": \"headset\"\n  },\n  {\n    \"question\": \"what does the person in purple wear on his head\",\n    \"video_name\": \"0w4OkBenR_k\",\n    \"answer\": \"straw hat\"\n  },\n  {\n    \"question\": \"what's on the head of the trainer\",\n    \"video_name\": \"3kxP8qOtym8\",\n    \"answer\": \"hair hoop\"\n  },\n  {\n    \"question\": \"what does the standing woman have on her left hand\",\n    \"video_name\": \"S6Sg1l78IW0\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what does the person wearing a plaid dress wear on his right hand\",\n    \"video_name\": \"rnI9vGr5V1k\",\n    \"answer\": \"wrist watch\"\n  },\n  {\n    \"question\": \"what does the person wearing sunglasses wear on his wrist\",\n    \"video_name\": \"b6QSzGwI9m4\",\n    \"answer\": \"wrist watch\"\n  },\n  {\n    \"question\": \"what does the blue shoe trainer do before the dog was trained to take the frisbee\",\n    \"video_name\": \"Em4ekFj4XIs\",\n    \"answer\": \"training skills\"\n  },\n  {\n    \"question\": \"what are the benefits of taichi sword\",\n    \"video_name\": \"uty4eGb_vvU\",\n    \"answer\": \"physical energy\"\n  },\n  {\n    \"question\": \"what does the man with the black hat have on his left hand\",\n    \"video_name\": \"7OcxT66BxX0\",\n    \"answer\": \"harmonica\"\n  },\n  {\n    \"question\": \"what is the foot of a man in a black vest when he ran\",\n    \"video_name\": \"ut1AoOzqL4k\",\n    \"answer\": \"plastic track\"\n  },\n  {\n    \"question\": \"what's in the right hand when the man in white is putting up the wall cloth\",\n    \"video_name\": \"kistIwzeQOU\",\n    \"answer\": \"flat shovel\"\n  },\n  {\n    \"question\": \"what is the expression of someone wearing a white jacket while playing the guitar\",\n    \"video_name\": \"bYxVbXzQToI\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what's the benefit of archery\",\n    \"video_name\": \"8AUTKSqcmiM\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"what is wearing on all the people wearing helmets in the video\",\n    \"video_name\": \"J9KjpzKM8oc\",\n    \"answer\": \"life jacket\"\n  },\n  {\n    \"question\": \"what's the benefit of the competition\",\n    \"video_name\": \"iAes5SVj_Fg\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"what do you need to go uphill\",\n    \"video_name\": \"7-UlUnaBjXU\",\n    \"answer\": \"accelerate\"\n  },\n  {\n    \"question\": \"what does the bald man do\",\n    \"video_name\": \"KXMZHfCwTO0\",\n    \"answer\": \"pine soil\"\n  },\n  {\n    \"question\": \"what did the athlete do after throwing the javelin\",\n    \"video_name\": \"f1d7_TKXNYQ\",\n    \"answer\": \"movement of hand\"\n  },\n  {\n    \"question\": \"what does the athlete wear on his left hand\",\n    \"video_name\": \"JvPVYSb_5o8\",\n    \"answer\": \"wristwatch\"\n  },\n  {\n    \"question\": \"what's under the balance beam\",\n    \"video_name\": \"kMtjk1KFvXQ\",\n    \"answer\": \"protective pad\"\n  },\n  {\n    \"question\": \"what are the benefits of weaving\",\n    \"video_name\": \"7F-mVWMP2vM\",\n    \"answer\": \"hands on ability\"\n  },\n  {\n    \"question\": \"what are the needs of the weaving\",\n    \"video_name\": \"7F-mVWMP2vM\",\n    \"answer\": \"needle\"\n  },\n  {\n    \"question\": \"what hairstyle does the girl do in the video\",\n    \"video_name\": \"Dd5yTxwKzXw\",\n    \"answer\": \"curly\"\n  },\n  {\n    \"question\": \"what are the benefits of parallel bars gymnastics\",\n    \"video_name\": \"6Xsfwn5M6qs\",\n    \"answer\": \"physical exercise\"\n  },\n  {\n    \"question\": \"what does the person who wears blue in the video do\",\n    \"video_name\": \"DUi-hLMpQQo\",\n    \"answer\": \"scissors\"\n  },\n  {\n    \"question\": \"what does the person in black cross over\",\n    \"video_name\": \"otMw5GJWYWs\",\n    \"answer\": \"obstacle\"\n  },\n  {\n    \"question\": \"what does the person in blue behind the girl do\",\n    \"video_name\": \"kMtjk1KFvXQ\",\n    \"answer\": \"vaulting horse\"\n  },\n  {\n    \"question\": \"what are the person standing in the red swimsuit when they receive the prize\",\n    \"video_name\": \"kTqt7ry3eVM\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"what does this person take when he take out of soda dry\",\n    \"video_name\": \"lfbspF18Wrw\",\n    \"answer\": \"yellow ironing cloth\"\n  },\n  {\n    \"question\": \"what does the person on the right side of the person who shot the video wear\",\n    \"video_name\": \"4YF9R3Sz2bA\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what does a flipper wear on his head\",\n    \"video_name\": \"K49OCArHjXI\",\n    \"answer\": \"scarf\"\n  },\n  {\n    \"question\": \"what does the referee mean when he raises the white flag\",\n    \"video_name\": \"Pr5K2Jh2X94\",\n    \"answer\": \"achievement is effective\"\n  },\n  {\n    \"question\": \"what are the benefits of skateboarding\",\n    \"video_name\": \"i_LT0ef1n-Y\",\n    \"answer\": \"coordination\"\n  },\n  {\n    \"question\": \"what do he need to use the roof when changing wheel\",\n    \"video_name\": \"8A4cZXyDrkU\",\n    \"answer\": \"lifting jack\"\n  },\n  {\n    \"question\": \"what is the right side of the purple woman in the video\",\n    \"video_name\": \"8_fjIZkNHms\",\n    \"answer\": \"man in green\"\n  },\n  {\n    \"question\": \"what does the woman in a pink tank do in addition to playing\",\n    \"video_name\": \"KMK3_VeODlk\",\n    \"answer\": \"avoid opponents ball\"\n  },\n  {\n    \"question\": \"what does this video teach us\",\n    \"video_name\": \"eLh51DwDp-E\",\n    \"answer\": \"wear ballet shoes\"\n  },\n  {\n    \"question\": \"what is wearing on the face of the person wearing a hat at the beginning of the video\",\n    \"video_name\": \"4z0meF-_b1I\",\n    \"answer\": \"glasses\"\n  },\n  {\n    \"question\": \"what kind of environment does a camel live in\",\n    \"video_name\": \"sfbgZOHLkII\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what kind of gymnastics does the man do\",\n    \"video_name\": \"fh21bbDSVmA\",\n    \"answer\": \"pommeled horse\"\n  },\n  {\n    \"question\": \"what happens to the person in a suit after the brick\",\n    \"video_name\": \"1IbkFHNA7fg\",\n    \"answer\": \"clap hands\"\n  },\n  {\n    \"question\": \"what happens after the group of people at the beginning of the video appeared\",\n    \"video_name\": \"BD9CAqD1Yf8\",\n    \"answer\": \"play volleyball\"\n  },\n  {\n    \"question\": \"what happens after a team played the ball\",\n    \"video_name\": \"BdRH3lpopLQ\",\n    \"answer\": \"hold together\"\n  },\n  {\n    \"question\": \"what happens after wiping a window\",\n    \"video_name\": \"p54LLMnyg54\",\n    \"answer\": \"continue down\"\n  },\n  {\n    \"question\": \"what happens after boxing\",\n    \"video_name\": \"N5Dt3ycaun4\",\n    \"answer\": \"embrace\"\n  },\n  {\n    \"question\": \"what happens when the red man wiped the inside of his shoe\",\n    \"video_name\": \"KT8DUDFc3Xg\",\n    \"answer\": \"shoeshine surface\"\n  },\n  {\n    \"question\": \"what happens after digging pits in people wearing gray clothes and hats\",\n    \"video_name\": \"hGPCJb2g1tQ\",\n    \"answer\": \"black container\"\n  },\n  {\n    \"question\": \"what happens after diving\",\n    \"video_name\": \"MQ9Ojge7CyA\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happens after drinking water\",\n    \"video_name\": \"FaP7unySMOs\",\n    \"answer\": \"put cup down\"\n  },\n  {\n    \"question\": \"what happens after eating\",\n    \"video_name\": \"1494UwmvAJM\",\n    \"answer\": \"vertical thumb\"\n  },\n  {\n    \"question\": \"what happens after everyone in the video got into the water\",\n    \"video_name\": \"HJWwqjLf1I4\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what happens after the man threw out the plate\",\n    \"video_name\": \"KXcVYfMuUGw\",\n    \"answer\": \"dog catches the plate\"\n  },\n  {\n    \"question\": \"what happens to purple clothes after practicing horizontal bar gymnastics\",\n    \"video_name\": \"nGKc2t-NMYc\",\n    \"answer\": \"then training\"\n  },\n  {\n    \"question\": \"what happens after hitting the ball\",\n    \"video_name\": \"wnNiWoJxfSQ\",\n    \"answer\": \"running\"\n  },\n  {\n    \"question\": \"what happens after playing football\",\n    \"video_name\": \"30hcRe-5_3M\",\n    \"answer\": \"clapping\"\n  },\n  {\n    \"question\": \"what happens after playing basketball\",\n    \"video_name\": \"XCfrjEJkl3M\",\n    \"answer\": \"listen to coach\"\n  },\n  {\n    \"question\": \"what happens after using the computer\",\n    \"video_name\": \"MonWdYi3a0I\",\n    \"answer\": \"bathe dog\"\n  },\n  {\n    \"question\": \"what happens after playing the guitar\",\n    \"video_name\": \"X_K7Aa3Aa-E\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what happens after playing the piano\",\n    \"video_name\": \"f8SWWURHV1M\",\n    \"answer\": \"twist and a smile\"\n  },\n  {\n    \"question\": \"what happens after putting the note in the bow\",\n    \"video_name\": \"Feq-2NIDl94\",\n    \"answer\": \"pinch with perturbed\"\n  },\n  {\n    \"question\": \"what happens after placing the banknote on the gift\",\n    \"video_name\": \"zEttEkAdHts\",\n    \"answer\": \"fixed with adhesive paper\"\n  },\n  {\n    \"question\": \"what happens after putting the soap back on the stage\",\n    \"video_name\": \"F7K2oT7ADkk\",\n    \"answer\": \"wash clothes\"\n  },\n  {\n    \"question\": \"what happens after rock climbing\",\n    \"video_name\": \"9ZVWD0ZKXZg\",\n    \"answer\": \"boy comes down\"\n  },\n  {\n    \"question\": \"what happens after shoveling snow\",\n    \"video_name\": \"vSv1qMMt4Bk\",\n    \"answer\": \"snow fall\"\n  },\n  {\n    \"question\": \"what happens after sitting on fitness equipment\",\n    \"video_name\": \"wh6P2C2avqc\",\n    \"answer\": \"do bike ride\"\n  },\n  {\n    \"question\": \"what happens after sitting on the rubber band\",\n    \"video_name\": \"vqyQF-1Zc_E\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what happens after surfing halfway\",\n    \"video_name\": \"dskswWtslKc\",\n    \"answer\": \"mans hand\"\n  },\n  {\n    \"question\": \"what happens after the number 9 player kicked the ball\",\n    \"video_name\": \"zOI9SjQpc_Q\",\n    \"answer\": \"ball goal net\"\n  },\n  {\n    \"question\": \"what happens after the air cushion stuck on the stone\",\n    \"video_name\": \"J9KjpzKM8oc\",\n    \"answer\": \"need some help to correct\"\n  },\n  {\n    \"question\": \"what happens after the ball entered the cup\",\n    \"video_name\": \"QImpWj3AJcY\",\n    \"answer\": \"cup was removed\"\n  },\n  {\n    \"question\": \"what happens after playing the ball\",\n    \"video_name\": \"Pjnuoa4o55c\",\n    \"answer\": \"ball is bounced back\"\n  },\n  {\n    \"question\": \"what happens after waving\",\n    \"video_name\": \"rrpEOrMpBuE\",\n    \"answer\": \"camel came over\"\n  },\n  {\n    \"question\": \"what happens after the start of the biking\",\n    \"video_name\": \"kyx4MMmBr3A\",\n    \"answer\": \"pulverized people lead\"\n  },\n  {\n    \"question\": \"what happens after the bird first slid off the roof\",\n    \"video_name\": \"3dWw9GLcOeA\",\n    \"answer\": \"fly back to roof\"\n  },\n  {\n    \"question\": \"what happens to the black and white jacket when the rubik's cube was placed on the table\",\n    \"video_name\": \"r2H-cnti8GI\",\n    \"answer\": \"stop timing\"\n  },\n  {\n    \"question\": \"what happens after the black dog was flushed\",\n    \"video_name\": \"EXPYu9bfNcE\",\n    \"answer\": \"blow dry\"\n  },\n  {\n    \"question\": \"what happens to the brunette girl after eating the cone\",\n    \"video_name\": \"iixZLnyLuN8\",\n    \"answer\": \"play with toys\"\n  },\n  {\n    \"question\": \"what happens to the person in black clothes after they removed the tires\",\n    \"video_name\": \"_jV5sAOOHLk\",\n    \"answer\": \"change tire\"\n  },\n  {\n    \"question\": \"what happens to the person wearing black clothes after pushing the car\",\n    \"video_name\": \"cnMvMvVBXiI\",\n    \"answer\": \"fixed tire\"\n  },\n  {\n    \"question\": \"what happens to the person in black clothes putting the tire on the machine\",\n    \"video_name\": \"CDecXoRSpIc\",\n    \"answer\": \"remove rubber ring\"\n  },\n  {\n    \"question\": \"what happens after the person in black sat down\",\n    \"video_name\": \"g1na24Bd5Rs\",\n    \"answer\": \"drink milk tea\"\n  },\n  {\n    \"question\": \"what happens after the black and white dog barked\",\n    \"video_name\": \"Ki13JIVwMdk\",\n    \"answer\": \"go to black dog\"\n  },\n  {\n    \"question\": \"what happens after the blond woman opened her mouth\",\n    \"video_name\": \"J1QB1y3vXLY\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what happens after the blond man jumped the grid\",\n    \"video_name\": \"8tCRp3NKtkI\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"what happens to blond women wearing good shoes\",\n    \"video_name\": \"7UwRRkgQSj4\",\n    \"answer\": \"shoelace\"\n  },\n  {\n    \"question\": \"what happens to the blond woman after she finished her eyes\",\n    \"video_name\": \"IclzwpxVvIk\",\n    \"answer\": \"powdery base\"\n  },\n  {\n    \"question\": \"what happens after the blue cup fell into the pool\",\n    \"video_name\": \"JcAAwYpJhm8\",\n    \"answer\": \"cup fell into water\"\n  },\n  {\n    \"question\": \"what happens after the blue man came down from the chair\",\n    \"video_name\": \"rCLGy2NA0aE\",\n    \"answer\": \"turn head\"\n  },\n  {\n    \"question\": \"what happens after the blue team scored\",\n    \"video_name\": \"jEOtcfk220s\",\n    \"answer\": \"blue team serve\"\n  },\n  {\n    \"question\": \"what happens after a boater in black\",\n    \"video_name\": \"ys4_S3JHQjs\",\n    \"answer\": \"get home\"\n  },\n  {\n    \"question\": \"what happens after the boy changed his dart head\",\n    \"video_name\": \"raxeBxPQqlk\",\n    \"answer\": \"throwing darts\"\n  },\n  {\n    \"question\": \"what happens after the brain .is cut\",\n    \"video_name\": \"Y7aacWy3WDo\",\n    \"answer\": \"blood flow\"\n  },\n  {\n    \"question\": \"what happens after the car wash\",\n    \"video_name\": \"nciIPwJTok8\",\n    \"answer\": \"car scrubbing\"\n  },\n  {\n    \"question\": \"what happens after the card was issued\",\n    \"video_name\": \"WPYQ27GjFKc\",\n    \"answer\": \"take out chips\"\n  },\n  {\n    \"question\": \"what happens after the cement was painted on the wall\",\n    \"video_name\": \"W2Mh01F3K5c\",\n    \"answer\": \"smooth and smooth\"\n  },\n  {\n    \"question\": \"what happens after the tomatoes are diced\",\n    \"video_name\": \"aNsj5OrEGLY\",\n    \"answer\": \"treatment of chili\"\n  },\n  {\n    \"question\": \"what happens after the coach's demonstration\",\n    \"video_name\": \"sRNqK_QZbMs\",\n    \"answer\": \"start training\"\n  },\n  {\n    \"question\": \"what happens after the contestant launched the discus in the video\",\n    \"video_name\": \"Jhcis4S2Vsg\",\n    \"answer\": \"discus collision\"\n  },\n  {\n    \"question\": \"what happens after the participants got together\",\n    \"video_name\": \"pMtu7fOHdII\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what happens after the person in the black jacket curled hair\",\n    \"video_name\": \"zKYiTA6WBS4\",\n    \"answer\": \"perm hand\"\n  },\n  {\n    \"question\": \"what happens to the person wearing black clothes after the demonstration \",\n    \"video_name\": \"Son8UiVlzu0\",\n    \"answer\": \"tutoring cadets\"\n  },\n  {\n    \"question\": \"what happens after the disabled finished washing a white dress\",\n    \"video_name\": \"0lbv0AE5gJQ\",\n    \"answer\": \"wash clothes\"\n  },\n  {\n    \"question\": \"what happens to the dog in the video after jumping to the desk\",\n    \"video_name\": \"Znb6Y9m_PsQ\",\n    \"answer\": \"eat ball\"\n  },\n  {\n    \"question\": \"what happens to the dog in the video after jumping to the desk\",\n    \"video_name\": \"ZAX6OojMg38\",\n    \"answer\": \"dog planer\"\n  },\n  {\n    \"question\": \"what happens after pouring wine in the cup\",\n    \"video_name\": \"7H1KylJRii8\",\n    \"answer\": \"wine precipitation\"\n  },\n  {\n    \"question\": \"what happens after taking the elevator\",\n    \"video_name\": \"9G172wz5Yqo\",\n    \"answer\": \"start skiing\"\n  },\n  {\n    \"question\": \"what happens at the end of the game\",\n    \"video_name\": \"WNgI2qBvPrY\",\n    \"answer\": \"wash ones face\"\n  },\n  {\n    \"question\": \"what happens after the weightlifting of the athletes\",\n    \"video_name\": \"tzP0lKSUv_o\",\n    \"answer\": \"clenching fist\"\n  },\n  {\n    \"question\": \"what happens after the english word is engraved\",\n    \"video_name\": \"dU7jG8G5li0\",\n    \"answer\": \"assemble cake\"\n  },\n  {\n    \"question\": \"what happens after you put your eyelashes on\",\n    \"video_name\": \"W97fdJ2Rn9g\",\n    \"answer\": \"clip eyelash\"\n  },\n  {\n    \"question\": \"what happens after the fight\",\n    \"video_name\": \"Nc9yr4urskA\",\n    \"answer\": \"push people\"\n  },\n  {\n    \"question\": \"what happens after passing the first corner of the game in the first place\",\n    \"video_name\": \"3Nd3Aai1bVA\",\n    \"answer\": \"brace with feet\"\n  },\n  {\n    \"question\": \"what happens after winning the front whee\",\n    \"video_name\": \"kD_EJjQCLoY\",\n    \"answer\": \"take off faucet\"\n  },\n  {\n    \"question\": \"what happens after the game starts\",\n    \"video_name\": \"VZ5R9goklpo\",\n    \"answer\": \"grab ball\"\n  },\n  {\n    \"question\": \"what happens after they draw up the stack in video\",\n    \"video_name\": \"_G4EVIG9YaE\",\n    \"answer\": \"lay by small tree\"\n  },\n  {\n    \"question\": \"what happens after the girl stand at the starting point\",\n    \"video_name\": \"-pK2JheWido\",\n    \"answer\": \"start skiing\"\n  },\n  {\n    \"question\": \"what happens after the blue girl help the sofa chair\",\n    \"video_name\": \"EETygPQ-j08\",\n    \"answer\": \"stop roller skating\"\n  },\n  {\n    \"question\": \"what happens after landscaping in the video\",\n    \"video_name\": \"cVFVREeD6hM\",\n    \"answer\": \"do edge decoration\"\n  },\n  {\n    \"question\": \"what happens to the gray hair person after combing the dog\",\n    \"video_name\": \"1xtKGlUp4Vg\",\n    \"answer\": \"nail clipper\"\n  },\n  {\n    \"question\": \"what happens to the person in the plaid dress after wore the knife\",\n    \"video_name\": \"rnI9vGr5V1k\",\n    \"answer\": \"look at blade\"\n  },\n  {\n    \"question\": \"what happens when the hand goes down\",\n    \"video_name\": \"b_mWxzi_aps\",\n    \"answer\": \"start of the game\"\n  },\n  {\n    \"question\": \"what happens after playing the harmonica\",\n    \"video_name\": \"62M1FRXsUiM\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what happens to the mower after it hit an obstacle\",\n    \"video_name\": \"brJIpRGcBFU\",\n    \"answer\": \"evade automatically\"\n  },\n  {\n    \"question\": \"what happens after the person in the video get on a huge ice floe\",\n    \"video_name\": \"5LGh56euaZs\",\n    \"answer\": \"snowball\"\n  },\n  {\n    \"question\": \"what happens after the skates put down the hockey stick\",\n    \"video_name\": \"pcLGX5qvUcI\",\n    \"answer\": \"slide out of site\"\n  },\n  {\n    \"question\": \"what happens after the man in the gray suit stand on his head\",\n    \"video_name\": \"F-Z17rHI_ms\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what happens after the kicker kicked his leg\",\n    \"video_name\": \"H33jSILKmfI\",\n    \"answer\": \"punching\"\n  },\n  {\n    \"question\": \"what happens after the woman closed her eyes\",\n    \"video_name\": \"b0qGo-HT5iQ\",\n    \"answer\": \"open ones eyes\"\n  },\n  {\n    \"question\": \"what happens after the woman finishes her eye shadow\",\n    \"video_name\": \"Pv4FwH2TC6Y\",\n    \"answer\": \"video end\"\n  },\n  {\n    \"question\": \"what happens after the woman riding a wheelbarrow\",\n    \"video_name\": \"Pho9Hgdvc0g\",\n    \"answer\": \"be interviewed\"\n  },\n  {\n    \"question\": \"what happens after the leader at the station ended\",\n    \"video_name\": \"s9PkkDEl6aY\",\n    \"answer\": \"go down table\"\n  },\n  {\n    \"question\": \"what happened after the man with long hair clenches his fist\",\n    \"video_name\": \"8teo_0gxzgk\",\n    \"answer\": \"blonde womens car wash\"\n  },\n  {\n    \"question\": \"what happens to the long-haired woman after diving\",\n    \"video_name\": \"8kaQq1mR2ys\",\n    \"answer\": \"splash\"\n  },\n  {\n    \"question\": \"what happens after the rubik's cube\",\n    \"video_name\": \"96vBhCFBbQk\",\n    \"answer\": \"look computer desktop\"\n  },\n  {\n    \"question\": \"what happens after the man finish the plate\",\n    \"video_name\": \"li_mry59KCM\",\n    \"answer\": \"board stands up\"\n  },\n  {\n    \"question\": \"what happens when the man in gray folded his paper\",\n    \"video_name\": \"VfhDSTKBwgc\",\n    \"answer\": \"inserting needle\"\n  },\n  {\n    \"question\": \"what happens after the man teased the dog\",\n    \"video_name\": \"1vTHJMMPZN0\",\n    \"answer\": \"drive car\"\n  },\n  {\n    \"question\": \"what happens after the guy in the black jacket touched the shaving bubble\",\n    \"video_name\": \"ZLJ2BmBkLJg\",\n    \"answer\": \"keep shaving\"\n  },\n  {\n    \"question\": \"what happens after the man in the black hat put down the microphone\",\n    \"video_name\": \"7OcxT66BxX0\",\n    \"answer\": \"leave\"\n  },\n  {\n    \"question\": \"what happens after the person wearing the blue vest got another shovel\",\n    \"video_name\": \"qiupddjDHDg\",\n    \"answer\": \"tilling\"\n  },\n  {\n    \"question\": \"what happens after the guy in the plaid coat twisted over the clothespin\",\n    \"video_name\": \"rGOOlcdpfLg\",\n    \"answer\": \"take out gun\"\n  },\n  {\n    \"question\": \"what happens after the man in the pink shirt raise his hands\",\n    \"video_name\": \"qGLRri_c6n8\",\n    \"answer\": \"turn around\"\n  },\n  {\n    \"question\": \"what happens after the man in white pulled the rope\",\n    \"video_name\": \"nnEPsdA0080\",\n    \"answer\": \"be pulled by ship\"\n  },\n  {\n    \"question\": \"what happens after the person in the white jacket lowered his head\",\n    \"video_name\": \"qZtdMXkHRXw\",\n    \"answer\": \"throwing darts\"\n  },\n  {\n    \"question\": \"what happens after the man in the white jacket turned the bucket upside down\",\n    \"video_name\": \"ZJnXQw84xvo\",\n    \"answer\": \"tapping bucket\"\n  },\n  {\n    \"question\": \"what happens to the man in the yellow dress after putting ice in the cup\",\n    \"video_name\": \"H9PaZiWLgXU\",\n    \"answer\": \"cilping some lemon slices\"\n  },\n  {\n    \"question\": \"what happens after successful weight lifting in the video\",\n    \"video_name\": \"_zqj6daJo9U\",\n    \"answer\": \"bow to lens\"\n  },\n  {\n    \"question\": \"what happens to the man who stepped on the jumper after he scores\",\n    \"video_name\": \"jBlG0L_M96g\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what happens after this guy took the cookie out \",\n    \"video_name\": \"lfbspF18Wrw\",\n    \"answer\": \"eat up\"\n  },\n  {\n    \"question\": \"what happens when a man puts his shoes on his feet\",\n    \"video_name\": \"Oyycph_Ukfg\",\n    \"answer\": \"tie shoelaces\"\n  },\n  {\n    \"question\": \"what happens after this man turns six laps\",\n    \"video_name\": \"laU1Hvm5Dis\",\n    \"answer\": \"throw ball out\"\n  },\n  {\n    \"question\": \"what happens after the man wiped his shoes\",\n    \"video_name\": \"HX6BeHLQh5s\",\n    \"answer\": \"shoes getting clean\"\n  },\n  {\n    \"question\": \"what happens to the man wearing a hat after throwing darts for the first time\",\n    \"video_name\": \"IYLJU87AkOg\",\n    \"answer\": \"throw it to wall\"\n  },\n  {\n    \"question\": \"what happens after the man with the camera cut his head\",\n    \"video_name\": \"6G8m-vsGTA8\",\n    \"answer\": \"drive car\"\n  },\n  {\n    \"question\": \"what happens after the man stopped spraying water\",\n    \"video_name\": \"EDDbcCBnTQM\",\n    \"answer\": \"regulating nozzle\"\n  },\n  {\n    \"question\": \"what happens to the person who took the microphone after the interview\",\n    \"video_name\": \"ZsVfa3JIUNU\",\n    \"answer\": \"start tug of war\"\n  },\n  {\n    \"question\": \"what happens after spreading catnip\",\n    \"video_name\": \"j81ndpMC9gI\",\n    \"answer\": \"cut nails for cat\"\n  },\n  {\n    \"question\": \"what happens after paint nails\",\n    \"video_name\": \"28WDlVOgslg\",\n    \"answer\": \"nail polish\"\n  },\n  {\n    \"question\": \"what happens after pouring oil into the pan\",\n    \"video_name\": \"5nu47s7JrfY\",\n    \"answer\": \"frying eggs\"\n  },\n  {\n    \"question\": \"what happens after origami\",\n    \"video_name\": \"V9mLJJn8Lvw\",\n    \"answer\": \"adhesive tape\"\n  },\n  {\n    \"question\": \"what happens after playing table tennis\",\n    \"video_name\": \"nkWMBJC2Qec\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happens to the people in the video after assembling the tires\",\n    \"video_name\": \"TnP6coXzbLY\",\n    \"answer\": \"blow up\"\n  },\n  {\n    \"question\": \"what happens after the man in the black jacket salut\",\n    \"video_name\": \"zO5JMTzLDHw\",\n    \"answer\": \"go back to walk\"\n  },\n  {\n    \"question\": \"what happens after the person wearing black shoes clapping\",\n    \"video_name\": \"Gfu8e6R6jUU\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what happens after the man in the video pull the rope\",\n    \"video_name\": \"U2cCOj3LiAA\",\n    \"answer\": \"stretch leg\"\n  },\n  {\n    \"question\": \"what happens after the performers stopped performing\",\n    \"video_name\": \"-p7aui3nAnc\",\n    \"answer\": \"shot switching\"\n  },\n  {\n    \"question\": \"what happens after the man in the video grinds his knife\",\n    \"video_name\": \"YRGiRmcHdUY\",\n    \"answer\": \"continue to grind knife\"\n  },\n  {\n    \"question\": \"what happens after the orange guy pulled four times\",\n    \"video_name\": \"GcjzvBatqb4\",\n    \"answer\": \"stop\"\n  },\n  {\n    \"question\": \"what happens to the man in red after he play the ball\",\n    \"video_name\": \"I1iUbyjWy7k\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what happens after the person wearing the vest threw the ball out\",\n    \"video_name\": \"KMK3_VeODlk\",\n    \"answer\": \"hit each other\"\n  },\n  {\n    \"question\": \"what happens after the man in the video pull the rope\",\n    \"video_name\": \"uLphvdhunTY\",\n    \"answer\": \"hand down\"\n  },\n  {\n    \"question\": \"what happens after the man in the sweater chain pours the sauce\",\n    \"video_name\": \"I3tqWc5wG78\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what happens after the man wearing the white head was hit by the ball\",\n    \"video_name\": \"IDuoF51IMJ8\",\n    \"answer\": \"grey team celebrates\"\n  },\n  {\n    \"question\": \"what happens after the person wearing the white hair change his direction\",\n    \"video_name\": \"HTSxgkgecS0\",\n    \"answer\": \"draw rubber rafts\"\n  },\n  {\n    \"question\": \"what happens to the person in the pink after he push the right swing\",\n    \"video_name\": \"LPRLV0eVgfY\",\n    \"answer\": \"push left dolls\"\n  },\n  {\n    \"question\": \"what happens to the purple lady after she hit the dog\",\n    \"video_name\": \"8_fjIZkNHms\",\n    \"answer\": \"dog ran away\"\n  },\n  {\n    \"question\": \"what happens after pushing curling\",\n    \"video_name\": \"nc_NMp3vAH0\",\n    \"answer\": \"wait for\"\n  },\n  {\n    \"question\": \"what happens after the man in red stop playing the flute\",\n    \"video_name\": \"TtewPltwuXw\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what happens after the red woman push a round block\",\n    \"video_name\": \"8IrulONeC28\",\n    \"answer\": \"block gliding\"\n  },\n  {\n    \"question\": \"what happens after the man in the red hat salut\",\n    \"video_name\": \"qKp2QCheLwU\",\n    \"answer\": \"walk away\"\n  },\n  {\n    \"question\": \"what happens after the man in the red pour the finished wine into the cup\",\n    \"video_name\": \"iqyc2JM0uIU\",\n    \"answer\": \"put slice of lemon\"\n  },\n  {\n    \"question\": \"what happens to the person in the purple on the bike\",\n    \"video_name\": \"pPt_fygNjtQ\",\n    \"answer\": \"speed up\"\n  },\n  {\n    \"question\": \"what happens after the player start\",\n    \"video_name\": \"pop8YCGQpWk\",\n    \"answer\": \"jump into sand pit\"\n  },\n  {\n    \"question\": \"what happens after the man who is running throw the javelin\",\n    \"video_name\": \"f1d7_TKXNYQ\",\n    \"answer\": \"look javelin distance\"\n  },\n  {\n    \"question\": \"what happens after mixing salad\",\n    \"video_name\": \"9SIPJd4Hls4\",\n    \"answer\": \"cooling\"\n  },\n  {\n    \"question\": \"what happens after kicking the sand\",\n    \"video_name\": \"x6pYeqq3O08\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happens after the second video player appear after playing billiards\",\n    \"video_name\": \"3oy4P1gyU4k\",\n    \"answer\": \"eliminated\"\n  },\n  {\n    \"question\": \"what happens after the ship in the video sailed\",\n    \"video_name\": \"zA2zZPyYLlU\",\n    \"answer\": \"smoothly\"\n  },\n  {\n    \"question\": \"what happens to the boat in the video after it slip backwards\",\n    \"video_name\": \"zYjLA99koBk\",\n    \"answer\": \"water is flooded\"\n  },\n  {\n    \"question\": \"what happens after tied shoe rope\",\n    \"video_name\": \"mxn6WcmdNpA\",\n    \"answer\": \"get up to pay\"\n  },\n  {\n    \"question\": \"what happens after wipe shoes\",\n    \"video_name\": \"n832gDqfWl4\",\n    \"answer\": \"change pair of shoes\"\n  },\n  {\n    \"question\": \"what happens after the short hair baby dive \",\n    \"video_name\": \"vBOFzuS-Djo\",\n    \"answer\": \"go ashore\"\n  },\n  {\n    \"question\": \"what happens to the short hair man after trimming the beard\",\n    \"video_name\": \"BWAedc31WdY\",\n    \"answer\": \"flushing razor\"\n  },\n  {\n    \"question\": \"what happens after the ball in the video is throw\",\n    \"video_name\": \"3Rzyta8op6s\",\n    \"answer\": \"emotional excitement\"\n  },\n  {\n    \"question\": \"what happens after shoveling into snow\",\n    \"video_name\": \"BBKSKU6dGGk\",\n    \"answer\": \"throw snow on edge\"\n  },\n  {\n    \"question\": \"what happens after the somersault\",\n    \"video_name\": \"N4qhryre_TE\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what happens to the little girl who was sitting on her clothes\",\n    \"video_name\": \"atGMJc-DZ7w\",\n    \"answer\": \"pour out washing powder\"\n  },\n  {\n    \"question\": \"what happens after the staff put down the rope\",\n    \"video_name\": \"Jdu5AqaWfz8\",\n    \"answer\": \"start bungee jumping\"\n  },\n  {\n    \"question\": \"what happens after the standing man pulled the rope\",\n    \"video_name\": \"JY9oOSfjj_E\",\n    \"answer\": \"start skiing\"\n  },\n  {\n    \"question\": \"what happens after the rope start\",\n    \"video_name\": \"W2eumNilwuI\",\n    \"answer\": \"takeoff\"\n  },\n  {\n    \"question\": \"what happens after the stones were throw\",\n    \"video_name\": \"PkRvgIFREJU\",\n    \"answer\": \"skip lattices\"\n  },\n  {\n    \"question\": \"what happens to the man in the striped shirt after he take out the bottle\",\n    \"video_name\": \"pYaZLHpl_Ww\",\n    \"answer\": \"packing\"\n  },\n  {\n    \"question\": \"what happens after the person in the red swimsuit finished jumping water\",\n    \"video_name\": \"kTqt7ry3eVM\",\n    \"answer\": \"got third\"\n  },\n  {\n    \"question\": \"what happens after the table leg was burned in the video\",\n    \"video_name\": \"Aj5ncX5G_2w\",\n    \"answer\": \"darkened\"\n  },\n  {\n    \"question\": \"what happens after the table tennis ball was thrown into the cup\",\n    \"video_name\": \"PBYg9ekd86w\",\n    \"answer\": \"drink water\"\n  },\n  {\n    \"question\": \"what happens when the towel holder finishes the glue\",\n    \"video_name\": \"8vDSV9ruYlc\",\n    \"answer\": \"caterpillar wallpaper\"\n  },\n  {\n    \"question\": \"what happens after the children and adults tug of war\",\n    \"video_name\": \"4JmFOPoKluM\",\n    \"answer\": \"lose match\"\n  },\n  {\n    \"question\": \"what happens after they win the tug of war\",\n    \"video_name\": \"gr53ih2aFkE\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what happens after the man in gold spun twice\",\n    \"video_name\": \"zV08tITKFMM\",\n    \"answer\": \"cow fell down\"\n  },\n  {\n    \"question\": \"what happens when the person in video open the trunk\",\n    \"video_name\": \"3uaQ0cULMgc\",\n    \"answer\": \"inside car\"\n  },\n  {\n    \"question\": \"what happens when people in video put the apple in the juicer\",\n    \"video_name\": \"qObVIn_GI10\",\n    \"answer\": \"lid pressure\"\n  },\n  {\n    \"question\": \"what happens when pour water on the rag\",\n    \"video_name\": \"F9FPK6mfh88\",\n    \"answer\": \"shoe polish\"\n  },\n  {\n    \"question\": \"what happens after the players lifted weights in video\",\n    \"video_name\": \"4LpqPUWHH5k\",\n    \"answer\": \"throw barbell\"\n  },\n  {\n    \"question\": \"what happens after the white woman looked at the manual\",\n    \"video_name\": \"8A4cZXyDrkU\",\n    \"answer\": \"screwing nut\"\n  },\n  {\n    \"question\": \"what happens when tie the white line\",\n    \"video_name\": \"7F-mVWMP2vM\",\n    \"answer\": \"fabric line\"\n  },\n  {\n    \"question\": \"what happens to the water after the woman cleaned her baby\",\n    \"video_name\": \"sk_pnoqXxhs\",\n    \"answer\": \"hold child\"\n  },\n  {\n    \"question\": \"what happens to the woman after the water was boiling\",\n    \"video_name\": \"kkji9hespu0\",\n    \"answer\": \"cook noodles\"\n  },\n  {\n    \"question\": \"what happens to the wood splitter after he helped the wood\",\n    \"video_name\": \"hG4VsZQQ2_c\",\n    \"answer\": \"continue to split wood\"\n  },\n  {\n    \"question\": \"what happens when the person with the yellow brush washes the front leg of the horse\",\n    \"video_name\": \"sH_716hH_rY\",\n    \"answer\": \"clean horses hind leg\"\n  },\n  {\n    \"question\": \"what happens when the yellow streak in the video goes into the ball\",\n    \"video_name\": \"_l251ZuOCYU\",\n    \"answer\": \"very happy\"\n  },\n  {\n    \"question\": \"what happens after the yellow team scored\",\n    \"video_name\": \"v6P6bBPBXYw\",\n    \"answer\": \"hold together\"\n  },\n  {\n    \"question\": \"what happens to the vlond girl after talking\",\n    \"video_name\": \"9snScUyE8_4\",\n    \"answer\": \"dishware\"\n  },\n  {\n    \"question\": \"what happens after the third subtitle appears\",\n    \"video_name\": \"QoRlOa6R1LY\",\n    \"answer\": \"man jump down\"\n  },\n  {\n    \"question\": \"what happens after you post two wallpaper\",\n    \"video_name\": \"w10Nr_wOh8g\",\n    \"answer\": \"cutting wallpaper\"\n  },\n  {\n    \"question\": \"what happens after washing\",\n    \"video_name\": \"nbHBjdE8oNo\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what happens after wearing the contact lens of the right eye\",\n    \"video_name\": \"v6DdLg_Xnkg\",\n    \"answer\": \"wear good left eye\"\n  },\n  {\n    \"question\": \"what happens after wearing a jumper\",\n    \"video_name\": \"rWfQj0X8WU4\",\n    \"answer\": \"start jumping\"\n  },\n  {\n    \"question\": \"what happens after the umpire begins\",\n    \"video_name\": \"v-UmNR5yeDc\",\n    \"answer\": \"punches\"\n  },\n  {\n    \"question\": \"what happens to the wrist of the person wearing a gray sweater\",\n    \"video_name\": \"U2eN4DbVLfE\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what happens before the person wearing the gray vest stand up\",\n    \"video_name\": \"qZMcbBsQorE\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what happens to the person in the red dress before throwing the javelin\",\n    \"video_name\": \"oKJ1BnvHbbA\",\n    \"answer\": \"run up\"\n  },\n  {\n    \"question\": \"what happens before playing bowling\",\n    \"video_name\": \"xMNmGr96O9U\",\n    \"answer\": \"take ball\"\n  },\n  {\n    \"question\": \"what happens before boxing\",\n    \"video_name\": \"12Nafz_Yet4\",\n    \"answer\": \"exhibition\"\n  },\n  {\n    \"question\": \"what happens before you clean up the garbage\",\n    \"video_name\": \"WXH-Tj0-g4w\",\n    \"answer\": \"garden cart\"\n  },\n  {\n    \"question\": \"what happens before the christmas tree\",\n    \"video_name\": \"mUmSJps9WJI\",\n    \"answer\": \"dismantling light bulb\"\n  },\n  {\n    \"question\": \"what happens before diving\",\n    \"video_name\": \"woI_zP55qWo\",\n    \"answer\": \"go to diver\"\n  },\n  {\n    \"question\": \"what happens before the exercise\",\n    \"video_name\": \"eg2s5lOfKGI\",\n    \"answer\": \"step by step\"\n  },\n  {\n    \"question\": \"what happens before yoga\",\n    \"video_name\": \"RlRrktN5iH4\",\n    \"answer\": \"sit down on your knees\"\n  },\n  {\n    \"question\": \"what happens before making lollipops\",\n    \"video_name\": \"ngMxE3CnGVg\",\n    \"answer\": \"preparation materials\"\n  },\n  {\n    \"question\": \"what happens before opening the door\",\n    \"video_name\": \"HPKHDze6XfA\",\n    \"answer\": \"snow removal\"\n  },\n  {\n    \"question\": \"what happens before the man in blue cut wood\",\n    \"video_name\": \"zxpQHLwZCug\",\n    \"answer\": \"bend\"\n  },\n  {\n    \"question\": \"what happens before skateboarding \",\n    \"video_name\": \"mXqmRAUsn9U\",\n    \"answer\": \"get off car\"\n  },\n  {\n    \"question\": \"what happens before the third roll of curling\",\n    \"video_name\": \"LL0uQO4q_wY\",\n    \"answer\": \"let curling round legs\"\n  },\n  {\n    \"question\": \"what happens before weeding weeds into garbage bags\",\n    \"video_name\": \"IMMoglaJ3RY\",\n    \"answer\": \"weed\"\n  },\n  {\n    \"question\": \"what happens before riding\",\n    \"video_name\": \"mnNgZ-D5cKc\",\n    \"answer\": \"garden cart\"\n  },\n  {\n    \"question\": \"what happens before riding\",\n    \"video_name\": \"X52XHYKeLiE\",\n    \"answer\": \"wear gloves\"\n  },\n  {\n    \"question\": \"what happens before she plays the harmonica in video\",\n    \"video_name\": \"_a527xEzhkw\",\n    \"answer\": \"fermation\"\n  },\n  {\n    \"question\": \"what happens before she shaved the dog in the video\",\n    \"video_name\": \"-8SgY4vW4xM\",\n    \"answer\": \"shaving cutter\"\n  },\n  {\n    \"question\": \"what happens before you stop shooting\",\n    \"video_name\": \"ryFSf08mrkA\",\n    \"answer\": \"put down saw\"\n  },\n  {\n    \"question\": \"what happens before the archery competition\",\n    \"video_name\": \"FkbpD1zWdPw\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happens to the athlete before he get off the horse\",\n    \"video_name\": \"4H9MMsj4mcM\",\n    \"answer\": \"pony fell down\"\n  },\n  {\n    \"question\": \"what happens before the athlete lift the barbell completely\",\n    \"video_name\": \"JvPVYSb_5o8\",\n    \"answer\": \"take deep breath\"\n  },\n  {\n    \"question\": \"what happens before the athlete throw the discus\",\n    \"video_name\": \"RLBfyIVpocE\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what happens before the athlete throw the hammer\",\n    \"video_name\": \"s6fEIuHPJ4Y\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what happens before the athlete jump into the water\",\n    \"video_name\": \"M2Y2Cw2kwDo\",\n    \"answer\": \"raise ones hands\"\n  },\n  {\n    \"question\": \"what happens before the athletes throw the discus\",\n    \"video_name\": \"St1RRi-aeNM\",\n    \"answer\": \"turn two laps\"\n  },\n  {\n    \"question\": \"what happens before the black man knock\",\n    \"video_name\": \"e-Xf13exY4E\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what happens before the blond woman's tongue is caught\",\n    \"video_name\": \"ikUNgSw4Gys\",\n    \"answer\": \"open ones mouth\"\n  },\n  {\n    \"question\": \"what happens to a blond man climbing up a ladder\",\n    \"video_name\": \"IsV1n_kLpvs\",\n    \"answer\": \"explanation usage\"\n  },\n  {\n    \"question\": \"what happens to the blue boy before he throw water at the girl with long hair\",\n    \"video_name\": \"vBaiedxy1Uw\",\n    \"answer\": \"finger guessing game\"\n  },\n  {\n    \"question\": \"what happens before the boy come to the table\",\n    \"video_name\": \"5mWZY2XkWSQ\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what happens before the car is supported\",\n    \"video_name\": \"jDlvGWOdcqU\",\n    \"answer\": \"pull hand brake\"\n  },\n  {\n    \"question\": \"what happens to the kid before he go skateboarding\",\n    \"video_name\": \"rM02KWikOo8\",\n    \"answer\": \"floating on water\"\n  },\n  {\n    \"question\": \"what happens before the coach do the aerobics\",\n    \"video_name\": \"k6pN0WRr2Ws\",\n    \"answer\": \"open sound\"\n  },\n  {\n    \"question\": \"what happens before the cream is wiped\",\n    \"video_name\": \"S7CW-si2JjA\",\n    \"answer\": \"cut cake\"\n  },\n  {\n    \"question\": \"what happens before the tire is removed\",\n    \"video_name\": \"NJRrhNrEMsk\",\n    \"answer\": \"air pressure\"\n  },\n  {\n    \"question\": \"what happens to the dog before it is touch\",\n    \"video_name\": \"JGxf-jke0e8\",\n    \"answer\": \"go to woman\"\n  },\n  {\n    \"question\": \"what happens before making a drink\",\n    \"video_name\": \"nbOsU2Vmp1U\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what happens before the field shooting\",\n    \"video_name\": \"9UvVeUYQLgA\",\n    \"answer\": \"prepare weapon\"\n  },\n  {\n    \"question\": \"what happens before we mop the floor\",\n    \"video_name\": \"XI7qJHE61zo\",\n    \"answer\": \"sweep floor\"\n  },\n  {\n    \"question\": \"what happens before the horizontal bar gymnastics\",\n    \"video_name\": \"72_9wLYUDGM\",\n    \"answer\": \"prepare bar\"\n  },\n  {\n    \"question\": \"what happens to the athlete before he jump\",\n    \"video_name\": \"LzPppxSWYNY\",\n    \"answer\": \"run up\"\n  },\n  {\n    \"question\": \"what happens before the kid in the blue and white stripes paint the board\",\n    \"video_name\": \"9TjPn_ejmFU\",\n    \"answer\": \"dipping pigment\"\n  },\n  {\n    \"question\": \"what happens before the lady in gray stops\",\n    \"video_name\": \"PTwe2IIo3To\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what happens before the gray woman jumps\",\n    \"video_name\": \"-EIsT868Trw\",\n    \"answer\": \"squat\"\n  },\n  {\n    \"question\": \"what happens before the little girl licks the ice cream\",\n    \"video_name\": \"e4kS-n7_LRU\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what happens before the magic cube is completed\",\n    \"video_name\": \"NjXCZYO3zwU\",\n    \"answer\": \"count\"\n  },\n  {\n    \"question\": \"what happens before the blue vest is thrown out\",\n    \"video_name\": \"G0VWk5WqDp0\",\n    \"answer\": \"pull hands back\"\n  },\n  {\n    \"question\": \"what happened before the man in the gray vest kicked his foot\",\n    \"video_name\": \"3kxP8qOtym8\",\n    \"answer\": \"punches\"\n  },\n  {\n    \"question\": \"what happened before the man in the hat pushed the weeder\",\n    \"video_name\": \"uWfQcDvel84\",\n    \"answer\": \"tidy wire\"\n  },\n  {\n    \"question\": \"what happened to the man in the video playing the harmonica\",\n    \"video_name\": \"CwImmV7q1MY\",\n    \"answer\": \"hold harmonica\"\n  },\n  {\n    \"question\": \"what happened before the man pulling the rope began to draw water\",\n    \"video_name\": \"s84PG-JfEwc\",\n    \"answer\": \"floating in water\"\n  },\n  {\n    \"question\": \"what happened before the man in the hat shook hands\",\n    \"video_name\": \"IGPZFun1Ok4\",\n    \"answer\": \"bet on\"\n  },\n  {\n    \"question\": \"what happened before playing table tennis\",\n    \"video_name\": \"mZYWfmsYQPA\",\n    \"answer\": \"introduction of pang ball\"\n  },\n  {\n    \"question\": \"what happened before the piercings\",\n    \"video_name\": \"N9VOdVOiPNM\",\n    \"answer\": \"display ornaments\"\n  },\n  {\n    \"question\": \"what happened before practicing basketball\",\n    \"video_name\": \"FKtYeu2bJpA\",\n    \"answer\": \"explanation skills\"\n  },\n  {\n    \"question\": \"what happened before the red woman dance tai chi sword\",\n    \"video_name\": \"uty4eGb_vvU\",\n    \"answer\": \"stand straight\"\n  },\n  {\n    \"question\": \"what happened to the sailboat before driving\",\n    \"video_name\": \"vQ82ItCG1x4\",\n    \"answer\": \"erect canvas\"\n  },\n  {\n    \"question\": \"what happened before the shoeshine\",\n    \"video_name\": \"40BPDWojssc\",\n    \"answer\": \"dipping shoe oil\"\n  },\n  {\n    \"question\": \"what happened to female athletes before shot put out\",\n    \"video_name\": \"EPsSfOEd3BU\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what happened before the third player threw the shot\",\n    \"video_name\": \"LWt2FuU0uC4\",\n    \"answer\": \"fooling around\"\n  },\n  {\n    \"question\": \"what happened before cutting tomatoes\",\n    \"video_name\": \"mVAP-WyEc7w\",\n    \"answer\": \"sharpening\"\n  },\n  {\n    \"question\": \"what happened before the tug of war started\",\n    \"video_name\": \"JsPIzRsUtlE\",\n    \"answer\": \"measuring distance\"\n  },\n  {\n    \"question\": \"what happened before the bartending\",\n    \"video_name\": \"fMVuGUBs2cs\",\n    \"answer\": \"step by step\"\n  },\n  {\n    \"question\": \"what happened before the video is shown\",\n    \"video_name\": \"0XTAq_xvquw\",\n    \"answer\": \"display tools\"\n  },\n  {\n    \"question\": \"what happened to the person in white before he pulled the purple line\",\n    \"video_name\": \"0jdSl5-lMpY\",\n    \"answer\": \"nail nail\"\n  },\n  {\n    \"question\": \"what happened before the white woman threw the hammer\",\n    \"video_name\": \"vezvHLPR3P0\",\n    \"answer\": \"rotate\"\n  },\n  {\n    \"question\": \"what happened to the woman with the glasses before she decorated the box\",\n    \"video_name\": \"ILmZg0vz0Hg\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what happened before pulled wrist\",\n    \"video_name\": \"Flm_SCK10GQ\",\n    \"answer\": \"pre match preparation\"\n  },\n  {\n    \"question\": \"what happened to the girl in the tights before she went diving\",\n    \"video_name\": \"IIPKxzPjrWg\",\n    \"answer\": \"wearing frog shoe\"\n  },\n  {\n    \"question\": \"what happened after the beginning of the woman's tattoo in the video\",\n    \"video_name\": \"6LsvBNqJuJY\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what happened behind the weeding machine screen\",\n    \"video_name\": \"B4Zp5XN97Gc\",\n    \"answer\": \"display tools\"\n  },\n  {\n    \"question\": \"what happened to the man before shaving his beard\",\n    \"video_name\": \"eiN5XPmwcEM\",\n    \"answer\": \"smear shaving blister\"\n  },\n  {\n    \"question\": \"what happened before the audience appeared\",\n    \"video_name\": \"P2xT7dlyX8Y\",\n    \"answer\": \"play violin\"\n  },\n  {\n    \"question\": \"what happened before decorating the christmas tree\",\n    \"video_name\": \"jhy6npIdn5o\",\n    \"answer\": \"send message\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before pruning branches\",\n    \"video_name\": \"uM7QSskmloo\",\n    \"answer\": \"pull rope\"\n  },\n  {\n    \"question\": \"what happened before curling hair\",\n    \"video_name\": \"wcxEkMoOmBk\",\n    \"answer\": \"select curler\"\n  },\n  {\n    \"question\": \"what happened to the man in green before he pushed the plate round\",\n    \"video_name\": \"ufrTSC3Dewg\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what happened before the licensing of girls wearing glasses\",\n    \"video_name\": \"ECZb_tQZ4Pg\",\n    \"answer\": \"stake\"\n  },\n  {\n    \"question\": \"what happened before rubbing sunscreen \",\n    \"video_name\": \"X6CBZwwRdQQ\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what happened before tattoo in the video\",\n    \"video_name\": \"Db2Dnt2OOo0\",\n    \"answer\": \"prepare tools\"\n  },\n  {\n    \"question\": \"what happened before the person in the short sleeves tiled the tile\",\n    \"video_name\": \"_2txWbQfJrY\",\n    \"answer\": \"cement\"\n  },\n  {\n    \"question\": \"what happened to the red person after the rotation\",\n    \"video_name\": \"gCHo9vxfEzM\",\n    \"answer\": \"squat\"\n  },\n  {\n    \"question\": \"what happened after the people in the video held their hands\",\n    \"video_name\": \"JbW8efAOOt0\",\n    \"answer\": \"start dancing\"\n  },\n  {\n    \"question\": \"what happens when she puts it in the oven at video\",\n    \"video_name\": \"Aen-RfnlK3A\",\n    \"answer\": \"become biscuit\"\n  },\n  {\n    \"question\": \"what happened after the green subtitles in the video\",\n    \"video_name\": \"2bQx5igckJc\",\n    \"answer\": \"display product\"\n  },\n  {\n    \"question\": \"what happens after the pictures in video show the garage\",\n    \"video_name\": \"HWFosaUWoSI\",\n    \"answer\": \"display front door\"\n  },\n  {\n    \"question\": \"what happened after the person in the video wiped the leg of the horse\",\n    \"video_name\": \"K5jY2chByPw\",\n    \"answer\": \"pacify horse\"\n  },\n  {\n    \"question\": \"what happened after the manicure in the video\",\n    \"video_name\": \"a_EqAwUOxpM\",\n    \"answer\": \"showcase\"\n  },\n  {\n    \"question\": \"what happened in the video before he did the experiment\",\n    \"video_name\": \"_CIoHeD7KQc\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what happened before they dive in the video\",\n    \"video_name\": \"nvcMYiZhUuo\",\n    \"answer\": \"water preparation\"\n  },\n  {\n    \"question\": \"what happened to the bald man after he got his head close to the microphone\",\n    \"video_name\": \"m731tx8N5-Y\",\n    \"answer\": \"open mouth and sing\"\n  },\n  {\n    \"question\": \"what happens after the bald man rides another man\",\n    \"video_name\": \"SPjv6P5fxug\",\n    \"answer\": \"fall down\"\n  },\n  {\n    \"question\": \"what happened to the bald man after he made the hole\",\n    \"video_name\": \"7vcihMnmssI\",\n    \"answer\": \"go fishing\"\n  },\n  {\n    \"question\": \"what happened to blond man after using mouthwash\",\n    \"video_name\": \"er5jUsRr4y0\",\n    \"answer\": \"gargle with fat man\"\n  },\n  {\n    \"question\": \"what happened to the curly hair woman before clipping her hair\",\n    \"video_name\": \"7LbBmVX33I4\",\n    \"answer\": \"spray liquid\"\n  },\n  {\n    \"question\": \"what happened to the man in the red jacket before running\",\n    \"video_name\": \"df5rlVZD0Zc\",\n    \"answer\": \"on tree\"\n  },\n  {\n    \"question\": \"what happened to the man in the red dress blowing a musical instrument\",\n    \"video_name\": \"dHKeNK1uWUg\",\n    \"answer\": \"cobra attack\"\n  },\n  {\n    \"question\": \"what happened when the man in the black vest lifted his feet over the parallel bars\",\n    \"video_name\": \"1YU4MSK80cQ\",\n    \"answer\": \"feet shaking\"\n  },\n  {\n    \"question\": \"what happened to the man in the hat before he played the guitar\",\n    \"video_name\": \"7lxP-hWFA24\",\n    \"answer\": \"bubble\"\n  },\n  {\n    \"question\": \"what happened to the person with the stick when the cow ran over him\",\n    \"video_name\": \"KWpATsiXF_M\",\n    \"answer\": \"use long stick\"\n  },\n  {\n    \"question\": \"what happened to the red man after he spit out his tongue\",\n    \"video_name\": \"i_LT0ef1n-Y\",\n    \"answer\": \"slider\"\n  },\n  {\n    \"question\": \"what happened to the red kayaker before he went in the water\",\n    \"video_name\": \"SGAUpoTMSnA\",\n    \"answer\": \"with boat overhead\"\n  },\n  {\n    \"question\": \"what happened after the woman played skating in the video\",\n    \"video_name\": \"-CqVpCRxwTY\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what happened to the woman in the hat before she got off the camel\",\n    \"video_name\": \"VFC-V06hVj0\",\n    \"answer\": \"camel stopped\"\n  },\n  {\n    \"question\": \"what happened to the woman in the red vest before she shot\",\n    \"video_name\": \"AwcM25G1h-g\",\n    \"answer\": \"helmet\"\n  },\n  {\n    \"question\": \"what happened to the woman in the white hat after she shot the arrow\",\n    \"video_name\": \"8AUTKSqcmiM\",\n    \"answer\": \"replacement\"\n  },\n  {\n    \"question\": \"what happened to the boy in the pink suit after his first long jump\",\n    \"video_name\": \"54TIARWo-S8\",\n    \"answer\": \"long jump\"\n  },\n  {\n    \"question\": \"what happened before her spray painting\",\n    \"video_name\": \"MpeN-IVIBc4\",\n    \"answer\": \"prepare pigments\"\n  },\n  {\n    \"question\": \"what happened to the man in the video before the floating sea\",\n    \"video_name\": \"d4sX1jnL4BY\",\n    \"answer\": \"raise your right hand\"\n  },\n  {\n    \"question\": \"what happened to the white beard man after he smoked\",\n    \"video_name\": \"wCexKIuAj3A\",\n    \"answer\": \"blow out cigarette smoke\"\n  },\n  {\n    \"question\": \"what happened to the man in the black vest after the long jump\",\n    \"video_name\": \"ut1AoOzqL4k\",\n    \"answer\": \"hand clenched fist\"\n  },\n  {\n    \"question\": \"what happened to the man in blue pants before he landed\",\n    \"video_name\": \"6Xsfwn5M6qs\",\n    \"answer\": \"somersault\"\n  },\n  {\n    \"question\": \"what happened to mr. bean after he saw the swim trunks\",\n    \"video_name\": \"wLXty2wzuJg\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what happened to the person in black before he turned\",\n    \"video_name\": \"QX5e5Mla660\",\n    \"answer\": \"support body with two hands\"\n  },\n  {\n    \"question\": \"what happened to the person in black before he started pushing the ice pot\",\n    \"video_name\": \"T62XjoKbN8M\",\n    \"answer\": \"frictional runway\"\n  },\n  {\n    \"question\": \"what happens when the person in black shorts cramps into a chocolate sauce\",\n    \"video_name\": \"GSrBZXLSwWI\",\n    \"answer\": \"scraping\"\n  },\n  {\n    \"question\": \"what happened to the person in blue after the game\",\n    \"video_name\": \"2CegApogJd4\",\n    \"answer\": \"clap with your teammates\"\n  },\n  {\n    \"question\": \"what happened after the person in the blue went to the bathroom\",\n    \"video_name\": \"HtG-i1CG2Qs\",\n    \"answer\": \"wash hands\"\n  },\n  {\n    \"question\": \"what happened to the person in red and black before the long jump\",\n    \"video_name\": \"oflwFZj9PNY\",\n    \"answer\": \"run up\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after he played the organ\",\n    \"video_name\": \"jt-Vnap5KP4\",\n    \"answer\": \"talk to others\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after they reached the top of the mountain\",\n    \"video_name\": \"fe4r2-Y8k1U\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what happened after the person in the video showered the dog\",\n    \"video_name\": \"Z2gpcqXWNek\",\n    \"answer\": \"dry it\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after they installed the christmas tree\",\n    \"video_name\": \"AB5cWhlQ0Kk\",\n    \"answer\": \"decorating christmas tree\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before he drank water\",\n    \"video_name\": \"oT6WUU8-dgs\",\n    \"answer\": \"clink with dog\"\n  },\n  {\n    \"question\": \"what happened to the person in black and white before he hit the ground\",\n    \"video_name\": \"VjMMwpgOCPo\",\n    \"answer\": \"somersault\"\n  },\n  {\n    \"question\": \"what happened to the person in black after the dance\",\n    \"video_name\": \"lPw_BRbPw5s\",\n    \"answer\": \"hand over nose\"\n  },\n  {\n    \"question\": \"what happened to the person in black after he played the flute\",\n    \"video_name\": \"NvRH4SoF09c\",\n    \"answer\": \"turn to landscape\"\n  },\n  {\n    \"question\": \"what happened when the person in black went skiing\",\n    \"video_name\": \"P6Oq6C9X0fw\",\n    \"answer\": \"fall down\"\n  },\n  {\n    \"question\": \"what happened to the person in black before he baked the cake\",\n    \"video_name\": \"oMtB-y49Yo8\",\n    \"answer\": \"make cake\"\n  },\n  {\n    \"question\": \"what happened to the person in black before the hula hoop\",\n    \"video_name\": \"3nSOFmmA7FU\",\n    \"answer\": \"horst hula hoop\"\n  },\n  {\n    \"question\": \"what happened to the person in the black jacket after he got down\",\n    \"video_name\": \"QdmcjM2fluo\",\n    \"answer\": \"pruning trees\"\n  },\n  {\n    \"question\": \"what happened after the person in the black shorts hit the ball\",\n    \"video_name\": \"ZnKB0U96ZI4\",\n    \"answer\": \"ball hit the knee\"\n  },\n  {\n    \"question\": \"what happened to the person in black shorts before the long jump\",\n    \"video_name\": \"NNiJfr_ChH4\",\n    \"answer\": \"run up\"\n  },\n  {\n    \"question\": \"what happened when the person in the black pants ran down the hill\",\n    \"video_name\": \"OcL7ZhBCkxQ\",\n    \"answer\": \"steady and steady\"\n  },\n  {\n    \"question\": \"what happened to the person in the black vest before he threw the ball\",\n    \"video_name\": \"ZgdMnfTqblw\",\n    \"answer\": \"jump up\"\n  },\n  {\n    \"question\": \"what happened to the person in blue after he had swept the leaves\",\n    \"video_name\": \"uJ4OZfCjViM\",\n    \"answer\": \"swing\"\n  },\n  {\n    \"question\": \"what happened to the person in the blue jacket before he played the saxophone\",\n    \"video_name\": \"oGU7m7rCZ-Y\",\n    \"answer\": \"sax\"\n  },\n  {\n    \"question\": \"what happened after the person in blue shirt won the game\",\n    \"video_name\": \"R-hsYQNtnn0\",\n    \"answer\": \"release pole\"\n  },\n  {\n    \"question\": \"what happened to the person in blue shorts before he pushed the vacuum\",\n    \"video_name\": \"UNXLfqkwKFc\",\n    \"answer\": \"press button\"\n  },\n  {\n    \"question\": \"what happens when the person in camouflage wears a hat\",\n    \"video_name\": \"A_Sr0mCX2rI\",\n    \"answer\": \"wear glasses\"\n  },\n  {\n    \"question\": \"what happens when the guy in the dark blue pants looks at the camera\",\n    \"video_name\": \"qGtUXGG78tM\",\n    \"answer\": \"start pruning trees\"\n  },\n  {\n    \"question\": \"what happened to the man in the puppet suit before he walked off the mat\",\n    \"video_name\": \"2vrR_5u2buU\",\n    \"answer\": \"roll forward\"\n  },\n  {\n    \"question\": \"what happened to the person in the gray jacket after he got the towel wet\",\n    \"video_name\": \"Z-sWZUYL0ZU\",\n    \"answer\": \"spray cleaning solution\"\n  },\n  {\n    \"question\": \"what happened to the person in the gray vest when he first came in\",\n    \"video_name\": \"BFChXuwZ4wo\",\n    \"answer\": \"make face\"\n  },\n  {\n    \"question\": \"what happened to the person in the green pants after the sailboat\",\n    \"video_name\": \"OlR9S70AA74\",\n    \"answer\": \"turn around\"\n  },\n  {\n    \"question\": \"what happens to the person in green trunks when they first surf\",\n    \"video_name\": \"LvTwJTvluHE\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what happened to the car of the person in the gray suit after the game\",\n    \"video_name\": \"mkGUacg0GRc\",\n    \"answer\": \"middle of tyres\"\n  },\n  {\n    \"question\": \"what happened to the person in the purple after the paint\",\n    \"video_name\": \"0w4OkBenR_k\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"what happened to the person in purple before he threw the discus\",\n    \"video_name\": \"OccEAILrU7M\",\n    \"answer\": \"rotate\"\n  },\n  {\n    \"question\": \"what happened to the person wearing purple clothes after scoring for the second time\",\n    \"video_name\": \"1dDAcUliXrQ\",\n    \"answer\": \"tease hair\"\n  },\n  {\n    \"question\": \"what happened to the person in the red and white shoes before he started boxing\",\n    \"video_name\": \"kPn9NzU4W48\",\n    \"answer\": \"talk to screen\"\n  },\n  {\n    \"question\": \"what happened to the person in the red pants after he got the ball\",\n    \"video_name\": \"Co_cpZWbzFk\",\n    \"answer\": \"throw ball\"\n  },\n  {\n    \"question\": \"what happens to the person in red shorts before they flip over\",\n    \"video_name\": \"Zt9qvbUnNhc\",\n    \"answer\": \"run up\"\n  },\n  {\n    \"question\": \"what happened to the person in the striped shirt after he played the piano\",\n    \"video_name\": \"ZxCdhz4ep0s\",\n    \"answer\": \"standing bow\"\n  },\n  {\n    \"question\": \"what happened to the person wearing striped pants after sliding down the slide\",\n    \"video_name\": \"QPEAp7nf2Tk\",\n    \"answer\": \"climb up\"\n  },\n  {\n    \"question\": \"what happened after the person in the white suit hit someone\",\n    \"video_name\": \"AjizhJc_reI\",\n    \"answer\": \"stalemate\"\n  },\n  {\n    \"question\": \"what happened to the person in white after he threw the darts\",\n    \"video_name\": \"hyMqGr0mOfA\",\n    \"answer\": \"take down darts\"\n  },\n  {\n    \"question\": \"what happened after the person in white won the game\",\n    \"video_name\": \"cYvFlrAnlzA\",\n    \"answer\": \"high five\"\n  },\n  {\n    \"question\": \"what happened after the person in white ironed his suit\",\n    \"video_name\": \"8lMncYsbrWw\",\n    \"answer\": \"tidy\"\n  },\n  {\n    \"question\": \"what happens after the person in white rides a spinning bike\",\n    \"video_name\": \"y0ca-LbQErY\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what happened to the person in the white shirt before he rode\",\n    \"video_name\": \"zqxzFxya6T8\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what happened to the person wearing the white short sleeves after crossing the slope\",\n    \"video_name\": \"C7yd6yEkxXE\",\n    \"answer\": \"forward\"\n  },\n  {\n    \"question\": \"what happened to the person wearing yellow clothes after spelling rubik's cube\",\n    \"video_name\": \"QIUxLD27NuI\",\n    \"answer\": \"put down magic cube\"\n  },\n  {\n    \"question\": \"what happened to the person in yellow before he threw the plate\",\n    \"video_name\": \"hQqoh0YxJYs\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what happened to the person with the yellow glasses after he unplugged the oxygen tank\",\n    \"video_name\": \"wE9sQbGdeAk\",\n    \"answer\": \"take off shoes\"\n  },\n  {\n    \"question\": \"what happened after the person in the purple clothes and the person in the white clothes fell\",\n    \"video_name\": \"0e7d39SwHCA\",\n    \"answer\": \"hand in hand\"\n  },\n  {\n    \"question\": \"what happened to the person who was being cut off before the gesture\",\n    \"video_name\": \"5c5PFa8GR-A\",\n    \"answer\": \"scratching nose\"\n  },\n  {\n    \"question\": \"what happened to the person who rode the electric car before the parade passed\",\n    \"video_name\": \"stdtUoog49I\",\n    \"answer\": \"dispel crowd\"\n  },\n  {\n    \"question\": \"what happened to the person with a black tie after brushing his teeth\",\n    \"video_name\": \"pzTqZWPubk8\",\n    \"answer\": \"toothpaste\"\n  },\n  {\n    \"question\": \"what happened to the person in the purple life jacket after he first put it on his shoulder\",\n    \"video_name\": \"uktUeF3Fy7o\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what happened at the beginning of the third piece of surfing\",\n    \"video_name\": \"lUil9HfTzJ0\",\n    \"answer\": \"waving hand\"\n  },\n  {\n    \"question\": \"what happens after the tattoo artist has tattooed on the hand of someone\",\n    \"video_name\": \"aAz3YL2RMr4\",\n    \"answer\": \"bright smile\"\n  },\n  {\n    \"question\": \"what happened to the bald person after he worked\",\n    \"video_name\": \"KXMZHfCwTO0\",\n    \"answer\": \"dogs before him\"\n  },\n  {\n    \"question\": \"what happened to the person before the child hit love\",\n    \"video_name\": \"4LoAbHdHWqM\",\n    \"answer\": \"pull rope\"\n  },\n  {\n    \"question\": \"what happened to the adult in blue after the boy hit the toy\",\n    \"video_name\": \"46NS8dT15Hw\",\n    \"answer\": \"fixed toy\"\n  },\n  {\n    \"question\": \"what happened to the athlete's body size after the tug of war started\",\n    \"video_name\": \"6O4S2CpRB0A\",\n    \"answer\": \"low down barycenter\"\n  },\n  {\n    \"question\": \"what happened to the athlete before jumping\",\n    \"video_name\": \"f2DS_AVorrY\",\n    \"answer\": \"warm up exercise\"\n  },\n  {\n    \"question\": \"what happened to the athlete before he threw the javelin\",\n    \"video_name\": \"1QIUV7WYKXg\",\n    \"answer\": \"run forward\"\n  },\n  {\n    \"question\": \"what happened to the athlete in white before he hit the ground\",\n    \"video_name\": \"u0Dc0ZtudXY\",\n    \"answer\": \"back somersault\"\n  },\n  {\n    \"question\": \"what happened to the bald woman  behind the tattoo\",\n    \"video_name\": \"IToczVhbOc0\",\n    \"answer\": \"group photo\"\n  },\n  {\n    \"question\": \"what happened after the naked man finally finished playing the drum set\",\n    \"video_name\": \"4_jDgRsOGvY\",\n    \"answer\": \"throw drumbeat\"\n  },\n  {\n    \"question\": \"what happened to batman after spider-man landed \",\n    \"video_name\": \"3JBUWRKezUI\",\n    \"answer\": \"land on ground\"\n  },\n  {\n    \"question\": \"what happened after the long distance run started\",\n    \"video_name\": \"prBiREYQ2vQ\",\n    \"answer\": \"lens conversion\"\n  },\n  {\n    \"question\": \"what happened to the person in black after he painted it\",\n    \"video_name\": \"_kmjpSZb3OI\",\n    \"answer\": \"satisfactory smile\"\n  },\n  {\n    \"question\": \"what happened to the brunette woman before she played the piano\",\n    \"video_name\": \"CaeZoHNHul0\",\n    \"answer\": \"erect violin\"\n  },\n  {\n    \"question\": \"what happened when the person in the black helmet raised his hat\",\n    \"video_name\": \"UJGK_TKrl4E\",\n    \"answer\": \"handshake\"\n  },\n  {\n    \"question\": \"what happened to the person in black after making a fist\",\n    \"video_name\": \"7BUr2cN8CLs\",\n    \"answer\": \"orange clothes male clenched fist\"\n  },\n  {\n    \"question\": \"what happened to the person in the black suit after he had finished reading the cards\",\n    \"video_name\": \"gsQ-OEvrxjo\",\n    \"answer\": \"open\"\n  },\n  {\n    \"question\": \"what happened to the person in the black after the kite first landed\",\n    \"video_name\": \"SidTquTAtyk\",\n    \"answer\": \"add two kites\"\n  },\n  {\n    \"question\": \"what happened to the athlete in black when he catch the ball\",\n    \"video_name\": \"sEcXR5b8HyY\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what happened to the person with the black shirt after he got the guitar\",\n    \"video_name\": \"gWTndmDHZQc\",\n    \"answer\": \"weigh it down\"\n  },\n  {\n    \"question\": \"what happened to the blond girl after putting on the long line\",\n    \"video_name\": \"7CM2OYr-Csw\",\n    \"answer\": \"kite flew high\"\n  },\n  {\n    \"question\": \"what happened to the person in blue suit weed cutter approaching the tires\",\n    \"video_name\": \"mMm1LfVb8Pg\",\n    \"answer\": \"pull off tires\"\n  },\n  {\n    \"question\": \"what happened to the person in blue shirt when the scissors operated\",\n    \"video_name\": \"DUi-hLMpQQo\",\n    \"answer\": \"black clothes people waved\"\n  },\n  {\n    \"question\": \"what happens when the person in blue shorts raises the pole to the top of his head\",\n    \"video_name\": \"iuXjatyFcwo\",\n    \"answer\": \"stand up\"\n  },\n  {\n    \"question\": \"what happened to the boy after playing saxophone\",\n    \"video_name\": \"WINtiw-_3vg\",\n    \"answer\": \"turn around\"\n  },\n  {\n    \"question\": \"what happened to the little boy in blue before he hit the ball\",\n    \"video_name\": \"9k19UUJtldg\",\n    \"answer\": \"test ball\"\n  },\n  {\n    \"question\": \"what happened to the camel after the woman sat down\",\n    \"video_name\": \"sfbgZOHLkII\",\n    \"answer\": \"stand up\"\n  },\n  {\n    \"question\": \"what happens to the cow when it sees a red cloth\",\n    \"video_name\": \"HowkVy5fOyk\",\n    \"answer\": \"rush to red cloth\"\n  },\n  {\n    \"question\": \"what happened after the kid's second serve\",\n    \"video_name\": \"K1LiXUpoSmI\",\n    \"answer\": \"hit himself\"\n  },\n  {\n    \"question\": \"what happened to the child after he posed\",\n    \"video_name\": \"MAYrBia9Xnw\",\n    \"answer\": \"get blow out\"\n  },\n  {\n    \"question\": \"what happened to the kid in blue when he saw the camera\",\n    \"video_name\": \"StGxFfLiYNU\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what happened to the coach after the blond man jumped on the pole\",\n    \"video_name\": \"LjPKKqe-VO0\",\n    \"answer\": \"kick off cushion\"\n  },\n  {\n    \"question\": \"what happened to the cow after it was brought up\",\n    \"video_name\": \"2_H3lxMWvPo\",\n    \"answer\": \"run forward\"\n  },\n  {\n    \"question\": \"what happened to the dancing girl after she threw the stick \",\n    \"video_name\": \"bWZkD_s1940\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what happened before the discus thrower threw the discus\",\n    \"video_name\": \"cK0-WcGXacQ\",\n    \"answer\": \"rotate\"\n  },\n  {\n    \"question\": \"what happened to the diving person before the diving\",\n    \"video_name\": \"vzUeFzhVYLg\",\n    \"answer\": \"takeoff\"\n  },\n  {\n    \"question\": \"what happened after the diver got into the water\",\n    \"video_name\": \"fEBM3nPMen8\",\n    \"answer\": \"fish bite\"\n  },\n  {\n    \"question\": \"what happened after the person in the video took the dog\",\n    \"video_name\": \"TiQcZKml5Bs\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what happened to the dog after the man in the hat threw the frisbee\",\n    \"video_name\": \"IGT0dIKDGCw\",\n    \"answer\": \"bite frisbee\"\n  },\n  {\n    \"question\": \"what happened after flushing the dog\",\n    \"video_name\": \"PD-FXR7O9J0\",\n    \"answer\": \"lift dog\"\n  },\n  {\n    \"question\": \"what happened at the end of the skiing\",\n    \"video_name\": \"E_UkQGk7QAE\",\n    \"answer\": \"applause\"\n  },\n  {\n    \"question\": \"what happened after the game\",\n    \"video_name\": \"FxpP7lqvm30\",\n    \"answer\": \"children shook hands\"\n  },\n  {\n    \"question\": \"what happens after the harmonica is over\",\n    \"video_name\": \"OysON6LbF6Y\",\n    \"answer\": \"clapping\"\n  },\n  {\n    \"question\": \"what happened after the run\",\n    \"video_name\": \"pVuuVHA3RVw\",\n    \"answer\": \"video end\"\n  },\n  {\n    \"question\": \"what happened before the first athlete dived\",\n    \"video_name\": \"svNcNLEPKMc\",\n    \"answer\": \"handstand\"\n  },\n  {\n    \"question\": \"what happened to the first person to feed the fish in the video after they fed the fish\",\n    \"video_name\": \"2DCHbuwZNSs\",\n    \"answer\": \"shake hand\"\n  },\n  {\n    \"question\": \"what happened after the first person appeared washing dishes\",\n    \"video_name\": \"BjjN_aq_wq4\",\n    \"answer\": \"picture change\"\n  },\n  {\n    \"question\": \"what happened after the first person wearing the red hat fell\",\n    \"video_name\": \"cTxVTEzQDr8\",\n    \"answer\": \"try again\"\n  },\n  {\n    \"question\": \"what happened to the first firewood when the video started\",\n    \"video_name\": \"dZsk5Dp_5FE\",\n    \"answer\": \"fall down\"\n  },\n  {\n    \"question\": \"what happened after the game\",\n    \"video_name\": \"dGT_KGb0gyw\",\n    \"answer\": \"clap hand to celebrate\"\n  },\n  {\n    \"question\": \"what happened after the game was over\",\n    \"video_name\": \"fLR-b-FDjlM\",\n    \"answer\": \"role pause\"\n  },\n  {\n    \"question\": \"what happened to this girl before the balance beam\",\n    \"video_name\": \"kMtjk1KFvXQ\",\n    \"answer\": \"do somersault\"\n  },\n  {\n    \"question\": \"what happened to the girl in the video before the chain ball was thrown\",\n    \"video_name\": \"d09u-0k3LdE\",\n    \"answer\": \"pirouette\"\n  },\n  {\n    \"question\": \"what happened to the girl in the blue vest after she made a move\",\n    \"video_name\": \"7IwHwDuQdyU\",\n    \"answer\": \"raise hand\"\n  },\n  {\n    \"question\": \"what happened after the little girl with the injured middle finger explained\",\n    \"video_name\": \"k-I4zLbgdpM\",\n    \"answer\": \"carry out performance\"\n  },\n  {\n    \"question\": \"what happened to the girls before they danced\",\n    \"video_name\": \"EBw5-KVV_PU\",\n    \"answer\": \"pendulum poss\"\n  },\n  {\n    \"question\": \"what happened after the person with glasses drank with the boys in black\",\n    \"video_name\": \"V08Q-DbT0GQ\",\n    \"answer\": \"eat noodles\"\n  },\n  {\n    \"question\": \"what happened to the goalkeeper after the ball flew to the goal\",\n    \"video_name\": \"HQVSLlKhupk\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what happened to the gymnast after the wrestling\",\n    \"video_name\": \"0mNZfG6CL74\",\n    \"answer\": \"dry powder\"\n  },\n  {\n    \"question\": \"what happened to the hull after the man in black paddled on the left side\",\n    \"video_name\": \"V90CMuokf0c\",\n    \"answer\": \"drive to right\"\n  },\n  {\n    \"question\": \"what happened to the woman after she drank the water\",\n    \"video_name\": \"CDncYtx6Lwc\",\n    \"answer\": \"pick up phone\"\n  },\n  {\n    \"question\": \"what happened when the woman in the video took out her shaving irons\",\n    \"video_name\": \"w4pO-1-FG5w\",\n    \"answer\": \"shave\"\n  },\n  {\n    \"question\": \"what happened to the person using the lawn mower after finishing the grass\",\n    \"video_name\": \"4UdxT6Zmero\",\n    \"answer\": \"weeds are gone\"\n  },\n  {\n    \"question\": \"what happened when the left half of the squad got up\",\n    \"video_name\": \"SYh-j9bK_ls\",\n    \"answer\": \"right man stands up\"\n  },\n  {\n    \"question\": \"what happened to the boy after eating an ice cream\",\n    \"video_name\": \"Woelo4XJkHE\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what happened after the little boy played\",\n    \"video_name\": \"-Fk62y-1WHo\",\n    \"answer\": \"stop recording\"\n  },\n  {\n    \"question\": \"what happened before the boy did the exercise\",\n    \"video_name\": \"NjD6iWI3NvM\",\n    \"answer\": \"amuse dog\"\n  },\n  {\n    \"question\": \"what happened to the boy before he touched the potato \",\n    \"video_name\": \"09ocXmGF-T4\",\n    \"answer\": \"adults chipping potatoes\"\n  },\n  {\n    \"question\": \"what happened to the little boy in the white suit before he left\",\n    \"video_name\": \"1px5LTVIR3A\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"what happened to the woman with long hair before planting trees\",\n    \"video_name\": \"UNKf15ALDh8\",\n    \"answer\": \"loose soil\"\n  },\n  {\n    \"question\": \"what happened to the long hair woman after she smoked a cigarette\",\n    \"video_name\": \"7dXqXFoju2M\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what happened to the woman with the long braid before she went to ballet\",\n    \"video_name\": \"IxaBEVd2PZM\",\n    \"answer\": \"trot\"\n  },\n  {\n    \"question\": \"what happened after the man got on the boat\",\n    \"video_name\": \"dKJMP8EmZjw\",\n    \"answer\": \"ship opened\"\n  },\n  {\n    \"question\": \"what happened after the white man finished cooking\",\n    \"video_name\": \"ivAvKRQQy1Q\",\n    \"answer\": \"put in plate\"\n  },\n  {\n    \"question\": \"what happened after the man came to the pool\",\n    \"video_name\": \"AQ3eFWxZ67U\",\n    \"answer\": \"jump into pool\"\n  },\n  {\n    \"question\": \"what happened to this man before he played the instrument\",\n    \"video_name\": \"CFbkVO5b2g0\",\n    \"answer\": \"string string\"\n  },\n  {\n    \"question\": \"what happened to the man before the pumpkin carving\",\n    \"video_name\": \"xuvp0jKMqRU\",\n    \"answer\": \"draw on pumpkin\"\n  },\n  {\n    \"question\": \"what happened to the man in black before the show\",\n    \"video_name\": \"DOI6tsATsE4\",\n    \"answer\": \"white male nodding\"\n  },\n  {\n    \"question\": \"what happened after the person in blue shook hands\",\n    \"video_name\": \"yRQpolWhJ6A\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"what happened to the person in gray before he mowed the lawn\",\n    \"video_name\": \"dN8LBey17O8\",\n    \"answer\": \"height of grass\"\n  },\n  {\n    \"question\": \"what happened to the man in the black hat after he left\",\n    \"video_name\": \"iuc48VIWLJY\",\n    \"answer\": \"skiing leather ring\"\n  },\n  {\n    \"question\": \"what happened when the person in the black hat grabbed the ball\",\n    \"video_name\": \"0iqx7o5WYW8\",\n    \"answer\": \"pass ball\"\n  },\n  {\n    \"question\": \"what happened after the person in the blue jacket drew the paddle\",\n    \"video_name\": \"zH1MiuiTsx8\",\n    \"answer\": \"stop rowing\"\n  },\n  {\n    \"question\": \"what happened after the person in blue sent the ball\",\n    \"video_name\": \"YvPoAOrjX5I\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what happened after the person wearing a blue hat fell\",\n    \"video_name\": \"teffBaLEZQg\",\n    \"answer\": \"single hand support\"\n  },\n  {\n    \"question\": \"what happened when the person in a gray jacket entered the house\",\n    \"video_name\": \"faqijFZWQlo\",\n    \"answer\": \"haircut\"\n  },\n  {\n    \"question\": \"what happened before the man in green jumped rope\",\n    \"video_name\": \"u_vLZxgO9Rw\",\n    \"answer\": \"squat\"\n  },\n  {\n    \"question\": \"what happened to the man in gray after he lifted his feet\",\n    \"video_name\": \"TXSOSSGJYO0\",\n    \"answer\": \"raise hand\"\n  },\n  {\n    \"question\": \"what happened to the person in the hat after he smoked\",\n    \"video_name\": \"_V62aT_K8Zw\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what happened after the person in the hat laid out the carpet\",\n    \"video_name\": \"V6Sy8zpJSuc\",\n    \"answer\": \"hold down\"\n  },\n  {\n    \"question\": \"what happened to the person in the hat before the engine\",\n    \"video_name\": \"1lwG-y_QCkc\",\n    \"answer\": \"go to machine\"\n  },\n  {\n    \"question\": \"what happened before the person in the hat soldered it\",\n    \"video_name\": \"2ShsRSJ9cqE\",\n    \"answer\": \"set up shelf\"\n  },\n  {\n    \"question\": \"what happened when the person in the hat got out\",\n    \"video_name\": \"4z0meF-_b1I\",\n    \"answer\": \"start weeding\"\n  },\n  {\n    \"question\": \"what happened to the person in the red jacket before he hit the ball\",\n    \"video_name\": \"Z-zG845frso\",\n    \"answer\": \"jump up\"\n  },\n  {\n    \"question\": \"what happened to the man in the video after combing his hair\",\n    \"video_name\": \"0xBP-TSsqb0\",\n    \"answer\": \"wear hoop\"\n  },\n  {\n    \"question\": \"what happened to the person in the white coat after he sat down\",\n    \"video_name\": \"bYxVbXzQToI\",\n    \"answer\": \"tune stringed instrument\"\n  },\n  {\n    \"question\": \"what happened to the person in the white coat after he wrapped the wrapping paper\",\n    \"video_name\": \"C5SXR9nMY3I\",\n    \"answer\": \"tape\"\n  },\n  {\n    \"question\": \"what happened when the person in the white threw a punch at the man in front of him\",\n    \"video_name\": \"afMQA352X_A\",\n    \"answer\": \"be blocked\"\n  },\n  {\n    \"question\": \"what happened to the person in white after the phone call\",\n    \"video_name\": \"H_IfIsKQ3Zw\",\n    \"answer\": \"assembly of steel\"\n  },\n  {\n    \"question\": \"what happens to the person in white after get tattoos\",\n    \"video_name\": \"NZskwwovSZI\",\n    \"answer\": \"relax with mobile phone\"\n  },\n  {\n    \"question\": \"what happened to the person in the tie after the dance\",\n    \"video_name\": \"sNTOUuE7ZfM\",\n    \"answer\": \"make face\"\n  },\n  {\n    \"question\": \"what happened to the person in the green vest after he mentioned the bridle\",\n    \"video_name\": \"gNUCdXGxp0w\",\n    \"answer\": \"horse is moving\"\n  },\n  {\n    \"question\": \"what happened when the man swam to the wall\",\n    \"video_name\": \"e0yu4WgiZUM\",\n    \"answer\": \"swivel\"\n  },\n  {\n    \"question\": \"what happened to the person who opened the refrigerator after he had finished eating sandwich\",\n    \"video_name\": \"Ko7Nt8UDP4Q\",\n    \"answer\": \"big mother\"\n  },\n  {\n    \"question\": \"what happens when the person in the black scarf shows up in front of the camera\",\n    \"video_name\": \"m73Cod-PmMQ\",\n    \"answer\": \"turn and half squat down\"\n  },\n  {\n    \"question\": \"what happened after the person wearing a white helmet accelerated up the slope\",\n    \"video_name\": \"7-UlUnaBjXU\",\n    \"answer\": \"motorcycle jump\"\n  },\n  {\n    \"question\": \"what happened after the person shoveled the snow\",\n    \"video_name\": \"-pkfcMUIEMo\",\n    \"answer\": \"piled to corner\"\n  },\n  {\n    \"question\": \"what happened after the matador show \",\n    \"video_name\": \"HowkVy5fOyk\",\n    \"answer\": \"audience cheered\"\n  },\n  {\n    \"question\": \"what happened after the gymnastic performance of the man in the white\",\n    \"video_name\": \"fh21bbDSVmA\",\n    \"answer\": \"others come on field\"\n  },\n  {\n    \"question\": \"what happened to the man in yellow after the flip\",\n    \"video_name\": \"iAes5SVj_Fg\",\n    \"answer\": \"audience applauded\"\n  },\n  {\n    \"question\": \"what happened after the dog closest to the camera walked \",\n    \"video_name\": \"jWODw4vy45M\",\n    \"answer\": \"lens deflection\"\n  },\n  {\n    \"question\": \"what happened to the number 10 player before he played football\",\n    \"video_name\": \"CfqnHsp6olc\",\n    \"answer\": \"put ball\"\n  },\n  {\n    \"question\": \"what happened to the old person before he danced with the man in white\",\n    \"video_name\": \"EQWdo0FcKAo\",\n    \"answer\": \"in dialogue\"\n  },\n  {\n    \"question\": \"what happened to the old person in the black suit before he shot\",\n    \"video_name\": \"V-46E7jMm-Y\",\n    \"answer\": \"aim\"\n  },\n  {\n    \"question\": \"what happened to the operator after the hair was tied up\",\n    \"video_name\": \"C27eI-S1Vkw\",\n    \"answer\": \"go through last\"\n  },\n  {\n    \"question\": \"what happened after the orange player won\",\n    \"video_name\": \"0Um-HgjcnXY\",\n    \"answer\": \"fist\"\n  },\n  {\n    \"question\": \"what happened after the contestants started running\",\n    \"video_name\": \"bBRzBh0gAZQ\",\n    \"answer\": \"takeoff\"\n  },\n  {\n    \"question\": \"what happened to the person in black before he cut the paper\",\n    \"video_name\": \"vHnZ3NrZER0\",\n    \"answer\": \"measurement length\"\n  },\n  {\n    \"question\": \"what happened to the person in black before he danced\",\n    \"video_name\": \"Ynvd8OuXKGw\",\n    \"answer\": \"putting camera\"\n  },\n  {\n    \"question\": \"what happened to the person in black before the car wash\",\n    \"video_name\": \"ojTFTIwsa_c\",\n    \"answer\": \"wiping car with foam\"\n  },\n  {\n    \"question\": \"what happened after the person with the black pants came down the second time\",\n    \"video_name\": \"JB-ynj70saA\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what happened to the person in purple when he came by\",\n    \"video_name\": \"1kkc9hDshP4\",\n    \"answer\": \"dance together\"\n  },\n  {\n    \"question\": \"what happened to the person in red when he jumped\",\n    \"video_name\": \"p1QGn0IzfW0\",\n    \"answer\": \"grasp parallel bars\"\n  },\n  {\n    \"question\": \"what happened to the person in the white short sleeves before the rotation\",\n    \"video_name\": \"GsPE54bMFwE\",\n    \"answer\": \"squat down\"\n  },\n  {\n    \"question\": \"what happened after the person wearing black clothes for fitness\",\n    \"video_name\": \"87F9xGaMwCw\",\n    \"answer\": \"shut down machine\"\n  },\n  {\n    \"question\": \"what happened to the the person in green after he played the slide\",\n    \"video_name\": \"uLsq6gQXQPM\",\n    \"answer\": \"climb stairs\"\n  },\n  {\n    \"question\": \"what happened to the person in green after they washed the dishes\",\n    \"video_name\": \"Y_nyVFn70Lk\",\n    \"answer\": \"washing spoon\"\n  },\n  {\n    \"question\": \"what happened to the person in the green bathing suit before he went in the dive\",\n    \"video_name\": \"OUxgs_QlPHE\",\n    \"answer\": \"dive preparation\"\n  },\n  {\n    \"question\": \"what happened to the person in gray after he painted the wall\",\n    \"video_name\": \"MDsJa6Yitwc\",\n    \"answer\": \"touch lens\"\n  },\n  {\n    \"question\": \"what happened to the person in the orange suit after he went on the court\",\n    \"video_name\": \"b6QSzGwI9m4\",\n    \"answer\": \"shake table\"\n  },\n  {\n    \"question\": \"what happened to the person in red after he played the drums\",\n    \"video_name\": \"VJh9W3Gcpmo\",\n    \"answer\": \"be smashed in drum\"\n  },\n  {\n    \"question\": \"what happened to the person in red before he jumped\",\n    \"video_name\": \"I16FTpQQiic\",\n    \"answer\": \"anchor jump rope\"\n  },\n  {\n    \"question\": \"what happened to the person in the red jacket after the interview with the crowd\",\n    \"video_name\": \"zpaS2iYrJjk\",\n    \"answer\": \"hit masses\"\n  },\n  {\n    \"question\": \"what happened to the person wearing diving suits after going to sea\",\n    \"video_name\": \"L5IbDi09Yb4\",\n    \"answer\": \"see undersea biology\"\n  },\n  {\n    \"question\": \"what happened to the person in the video while he was surfing\",\n    \"video_name\": \"aPI0nPvzJlE\",\n    \"answer\": \"fall into river\"\n  },\n  {\n    \"question\": \"what happened when the person in the video finished adding the material\",\n    \"video_name\": \"0k6GFx2ZCg8\",\n    \"answer\": \"cut sandwiches\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after the practice\",\n    \"video_name\": \"4uKoAk5NCkI\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"what happened after the person in the video brushed his horse\",\n    \"video_name\": \"udSHsodv3gY\",\n    \"answer\": \"horse nodding\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after the perform\",\n    \"video_name\": \"Au4PfoK7hyw\",\n    \"answer\": \"put down flute\"\n  },\n  {\n    \"question\": \"what happened after the person in the video did the skin care\",\n    \"video_name\": \"-YwrMtiqHKg\",\n    \"answer\": \"wash face\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after they finished the cream\",\n    \"video_name\": \"k3WPc9HmtLM\",\n    \"answer\": \"put on bread\"\n  },\n  {\n    \"question\": \"what happened after the person in the video washed his shoes\",\n    \"video_name\": \"AB480dHyDeM\",\n    \"answer\": \"display shoes\"\n  },\n  {\n    \"question\": \"what happened after the person in the video washed the dishes\",\n    \"video_name\": \"z6pmp8TrAVo\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before he wiped the table\",\n    \"video_name\": \"chmegNbBTNc\",\n    \"answer\": \"touch liquid\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before the javelin was thrown\",\n    \"video_name\": \"yGTIEmZ7S2w\",\n    \"answer\": \"run up\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before he covered his mouth\",\n    \"video_name\": \"YaC68rE4lwA\",\n    \"answer\": \"mouth leaking\"\n  },\n  {\n    \"question\": \"what happened to the person in white after he played the drums\",\n    \"video_name\": \"nYl_tYmijlM\",\n    \"answer\": \"immerse in it\"\n  },\n  {\n    \"question\": \"what happened after the person in yellow turned on the tv\",\n    \"video_name\": \"i5qTK0mInTc\",\n    \"answer\": \"sit on sofa\"\n  },\n  {\n    \"question\": \"what happened after the person on the field played\",\n    \"video_name\": \"JGPhQX97OSE\",\n    \"answer\": \"leave court\"\n  },\n  {\n    \"question\": \"what happened to the person in the red pants after he jumped the rope\",\n    \"video_name\": \"KZ1NEffR2Qg\",\n    \"answer\": \"to everyone ju gong\"\n  },\n  {\n    \"question\": \"what happened to the person in the blue short sleeves after he stepped on the rope\",\n    \"video_name\": \"GgnM5RGNtDE\",\n    \"answer\": \"start dancing\"\n  },\n  {\n    \"question\": \"what happened after the person in the video had his nails manicured\",\n    \"video_name\": \"Y05GAiavfOg\",\n    \"answer\": \"display finger\"\n  },\n  {\n    \"question\": \"what happened to the person in the white hat after he picked up the ball\",\n    \"video_name\": \"aH39BSM0-Ag\",\n    \"answer\": \"throw out again\"\n  },\n  {\n    \"question\": \"what happened to the person in the white coat after he painted the paint\",\n    \"video_name\": \"I9ficvPdpZg\",\n    \"answer\": \"turn picture back\"\n  },\n  {\n    \"question\": \"what happened after the person wearing a hat tattooed\",\n    \"video_name\": \"Npj77L31bhw\",\n    \"answer\": \"middle finger\"\n  },\n  {\n    \"question\": \"what happened to the person with the short hair and the guy with the long hair\",\n    \"video_name\": \"HDt5z5Y0opo\",\n    \"answer\": \"pressing on player\"\n  },\n  {\n    \"question\": \"what happened after the player hit the first goal\",\n    \"video_name\": \"Jix3poZOeZA\",\n    \"answer\": \"pick up racket\"\n  },\n  {\n    \"question\": \"what happened to the athlete before shooting\",\n    \"video_name\": \"sPK-sbHIb3w\",\n    \"answer\": \"throw ball out\"\n  },\n  {\n    \"question\": \"what happened before the athlete wearing a red trousers fell to the ground\",\n    \"video_name\": \"huFOZ2BiM_k\",\n    \"answer\": \"handstand\"\n  },\n  {\n    \"question\": \"what happened to the athlete after he caught the rope\",\n    \"video_name\": \"Vxw3yFCV2iA\",\n    \"answer\": \"get up slowly\"\n  },\n  {\n    \"question\": \"what happened when person in the purple walked up to the bathroom table\",\n    \"video_name\": \"PJ7HOHdOdy4\",\n    \"answer\": \"pick up cup\"\n  },\n  {\n    \"question\": \"what happened to the boy in red before the old person in blue knocked on the toy\",\n    \"video_name\": \"idkQqlwyff8\",\n    \"answer\": \"takeoff\"\n  },\n  {\n    \"question\": \"what happened to the person in red after he pulled his wrist\",\n    \"video_name\": \"ldAHwbF8uWI\",\n    \"answer\": \"lose to opponent\"\n  },\n  {\n    \"question\": \"what happened when the person in red got out of the cave\",\n    \"video_name\": \"7BFbmEY3BNw\",\n    \"answer\": \"rowing\"\n  },\n  {\n    \"question\": \"what happened to the referee after the first long jum\",\n    \"video_name\": \"2-AMrzL7V-U\",\n    \"answer\": \"measuring distance\"\n  },\n  {\n    \"question\": \"what happened to the judge before the woman in the gym suit hit the ground\",\n    \"video_name\": \"FnPS6zn5S7M\",\n    \"answer\": \"backward dodge\"\n  },\n  {\n    \"question\": \"what happens when the card shaper gets a good card\",\n    \"video_name\": \"H2fG7JRRMAs\",\n    \"answer\": \"concealed cards\"\n  },\n  {\n    \"question\": \"what happened to the second person who showed up smoking\",\n    \"video_name\": \"blbaWHbtqTI\",\n    \"answer\": \"puff out smoke\"\n  },\n  {\n    \"question\": \"what happened to the second player on the left when the game started\",\n    \"video_name\": \"SjlILJ2st-I\",\n    \"answer\": \"get first\"\n  },\n  {\n    \"question\": \"what happens to the man with short hair every time they land\",\n    \"video_name\": \"6VXQoPNphgI\",\n    \"answer\": \"roll in sky\"\n  },\n  {\n    \"question\": \"what happened before the snow sweeper picked up his tools\",\n    \"video_name\": \"PdwWFueQErM\",\n    \"answer\": \"sweeping snow\"\n  },\n  {\n    \"question\": \"what happened to the staff after stopped the car\",\n    \"video_name\": \"K1OsjA-f17E\",\n    \"answer\": \"start car wash\"\n  },\n  {\n    \"question\": \"what happened to the standing person playing the guitar\",\n    \"video_name\": \"V2UitlmX7Uo\",\n    \"answer\": \"grab railing\"\n  },\n  {\n    \"question\": \"what happened to the person who stood after twist\",\n    \"video_name\": \"RXDVJlb97OI\",\n    \"answer\": \"twist butt\"\n  },\n  {\n    \"question\": \"what happened to the standing woman after playing\",\n    \"video_name\": \"S6Sg1l78IW0\",\n    \"answer\": \"put down flute\"\n  },\n  {\n    \"question\": \"what happened after the hip hop contest in the video\",\n    \"video_name\": \"6H0D8VaIli0\",\n    \"answer\": \"handshake\"\n  },\n  {\n    \"question\": \"what happened to the person wearing striped clothes after the explanation was over\",\n    \"video_name\": \"03c6QhTMDSs\",\n    \"answer\": \"demo bicycles\"\n  },\n  {\n    \"question\": \"what happened to the girl in a striped dress after pouring mouthwash\",\n    \"video_name\": \"VSsZZZHn1L0\",\n    \"answer\": \"gargle\"\n  },\n  {\n    \"question\": \"what happened to the surfers after the flips\",\n    \"video_name\": \"eMgC7I-GcgA\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what happened after the trainer ran a certain distance\",\n    \"video_name\": \"AtbTioB1_Kw\",\n    \"answer\": \"throw long pole\"\n  },\n  {\n    \"question\": \"what happened to the weight lifter after he held the barbell\",\n    \"video_name\": \"bYNQ0GrCt64\",\n    \"answer\": \"lift barbell\"\n  },\n  {\n    \"question\": \"what happened to the weight lifter lifting the barbell\",\n    \"video_name\": \"tRFK1BMKaRo\",\n    \"answer\": \"cross leg\"\n  },\n  {\n    \"question\": \"what happened to the person in the white suit after he wiped his feet\",\n    \"video_name\": \"_jIXs7AFTxw\",\n    \"answer\": \"wear socks\"\n  },\n  {\n    \"question\": \"what happened to the person in white after he washed his hands\",\n    \"video_name\": \"_QBTD1bLSI0\",\n    \"answer\": \"wipe hands\"\n  },\n  {\n    \"question\": \"what happened to the person in white after he flipped\",\n    \"video_name\": \"e0yLhjXQIXI\",\n    \"answer\": \"site\"\n  },\n  {\n    \"question\": \"what happened to the person in white and the gray man after the wrench\",\n    \"video_name\": \"AjqnGUbsduw\",\n    \"answer\": \"stalemate\"\n  },\n  {\n    \"question\": \"what happened to the person in white before the person in black practiced for the first time\",\n    \"video_name\": \"2UhbDOd43zU\",\n    \"answer\": \"hold black clothes man\"\n  },\n  {\n    \"question\": \"what happened to the person in white before the person in black practiced for the first time\",\n    \"video_name\": \"Vhn4SuPhu-0\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what happened to the person in white shirt after he lifted his hand for the fourth time\",\n    \"video_name\": \"QJ5xv6oj1sk\",\n    \"answer\": \"turn around\"\n  },\n  {\n    \"question\": \"what happened to the girl in  white sleeves before the last flip\",\n    \"video_name\": \"iKclcQEl4zI\",\n    \"answer\": \"run up\"\n  },\n  {\n    \"question\": \"what happened to the woman in the blue vest after she jumped\",\n    \"video_name\": \"cAiig_569fI\",\n    \"answer\": \"hit ball\"\n  },\n  {\n    \"question\": \"what happened to the woman in red when she caught the ball\",\n    \"video_name\": \"_SJOVswvGRc\",\n    \"answer\": \"kick ball out\"\n  },\n  {\n    \"question\": \"what happened to the woman in the video before she drank water\",\n    \"video_name\": \"Db9VWkgMpbE\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what happened to the woman in white before she lay down for the second time\",\n    \"video_name\": \"utgRhyBvtRU\",\n    \"answer\": \"clapping\"\n  },\n  {\n    \"question\": \"what happened to the woman in the life jacket after the speedboat started\",\n    \"video_name\": \"6xBh3vzhgo4\",\n    \"answer\": \"skater surfers\"\n  },\n  {\n    \"question\": \"what happened to the girl who turned\",\n    \"video_name\": \"DTI__3fkSzM\",\n    \"answer\": \"continue to weave sweater\"\n  },\n  {\n    \"question\": \"what happened to the person in yellow clothes before moving his feet for the first time\",\n    \"video_name\": \"1PNjVTM0Zto\",\n    \"answer\": \"raise hand\"\n  },\n  {\n    \"question\": \"what happened to the person in young after he finished the cake\",\n    \"video_name\": \"iQnnCZTl_7U\",\n    \"answer\": \"clapping\"\n  },\n  {\n    \"question\": \"what happened to the woman before the deal\",\n    \"video_name\": \"kpOAGEYHts8\",\n    \"answer\": \"put cards in box\"\n  },\n  {\n    \"question\": \"what happened to the person in the black coat after he combed the bangs\",\n    \"video_name\": \"zTHkqpNFGno\",\n    \"answer\": \"fiddle with hair\"\n  },\n  {\n    \"question\": \"what happened to the person in gray after the third wall\",\n    \"video_name\": \"LYTWYSqsTCE\",\n    \"answer\": \"go away\"\n  },\n  {\n    \"question\": \"what happened to the woman in the video after she put on her sunscreen\",\n    \"video_name\": \"hIHeMA1oRrY\",\n    \"answer\": \"refresh\"\n  },\n  {\n    \"question\": \"what happened to the woman in the video before the bungee jump\",\n    \"video_name\": \"CvbL36Y8hN0\",\n    \"answer\": \"psychological adjustment\"\n  },\n  {\n    \"question\": \"what happens when the blond person fry shrimp and clams\",\n    \"video_name\": \"bRgvAHL3dJk\",\n    \"answer\": \"join noodles\"\n  },\n  {\n    \"question\": \"what happened to the person in undressed after they were thrown to the ground\",\n    \"video_name\": \"qWgF9hxNbP8\",\n    \"answer\": \"fall off stage\"\n  },\n  {\n    \"question\": \"what happened after getting off the cable car\",\n    \"video_name\": \"VpZzLvzU7_k\",\n    \"answer\": \"skidding\"\n  },\n  {\n    \"question\": \"what happened after the person in red waved his hand\",\n    \"video_name\": \"hxErUs42bBI\",\n    \"answer\": \"forward\"\n  },\n  {\n    \"question\": \"what happened when the person in the video put the egg liquid into the pot\",\n    \"video_name\": \"HTYzbAFUghU\",\n    \"answer\": \"stir by spatula\"\n  },\n  {\n    \"question\": \"what happened to the swordsman fencing on the battlements\",\n    \"video_name\": \"3LwQ2yq85LU\",\n    \"answer\": \"someone is parachuting\"\n  },\n  {\n    \"question\": \"what happened to the second person drifted to the front of the staff\",\n    \"video_name\": \"lYP05IRcOPE\",\n    \"answer\": \"fall off air cushion\"\n  },\n  {\n    \"question\": \"what happened when the person on the balance beam came down from the balance beam\",\n    \"video_name\": \"Z6b4oFjIznU\",\n    \"answer\": \"finish up job\"\n  },\n  {\n    \"question\": \"what happened after the cow came out of the door\",\n    \"video_name\": \"H_JLBvfP88U\",\n    \"answer\": \"chasing people\"\n  },\n  {\n    \"question\": \"what happened after the chef poured the eggs into the round pan\",\n    \"video_name\": \"3i3SUPsyZtA\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what happened to the chef after he poured the noodles into the filter bucket\",\n    \"video_name\": \"MAGeYoFuCgo\",\n    \"answer\": \"spaghetti\"\n  },\n  {\n    \"question\": \"what happened when the child approached the flower bed\",\n    \"video_name\": \"sqv3M6MPKjQ\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what happened after the curling was thrown out\",\n    \"video_name\": \"5UZ2ft8Y3sI\",\n    \"answer\": \"bump into pot\"\n  },\n  {\n    \"question\": \"what happened when the drums stopped\",\n    \"video_name\": \"FFMugev85IY\",\n    \"answer\": \"continue knocking\"\n  },\n  {\n    \"question\": \"what happened after the first dealer finished the card\",\n    \"video_name\": \"j6BCgvUusWs\",\n    \"answer\": \"ask for note\"\n  },\n  {\n    \"question\": \"what happened after the hair of girl was braided\",\n    \"video_name\": \"amgpZtvd9h0\",\n    \"answer\": \"bow hairstyle\"\n  },\n  {\n    \"question\": \"what happened when the last person raised his baton\",\n    \"video_name\": \"ds3mAmUPxYA\",\n    \"answer\": \"play musical instrument\"\n  },\n  {\n    \"question\": \"what happened after the little boy ran out\",\n    \"video_name\": \"9eniCub7u60\",\n    \"answer\": \"two people dance\"\n  },\n  {\n    \"question\": \"what happened after someone lifted up the window\",\n    \"video_name\": \"Av0VsTxJd78\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what happened after the person in blue jumped\",\n    \"video_name\": \"YVqRQDkdA8U\",\n    \"answer\": \"fall down\"\n  },\n  {\n    \"question\": \"what happened when the person in blue raised his hand \",\n    \"video_name\": \"TGffgRXc1eQ\",\n    \"answer\": \"cross hand\"\n  },\n  {\n    \"question\": \"what happened to the person who started playing blue pants for the fifth time\",\n    \"video_name\": \"Mk7Yjq1U8OI\",\n    \"answer\": \"ball landed\"\n  },\n  {\n    \"question\": \"what happened after the person threw out the plate\",\n    \"video_name\": \"PFeerDZbGn8\",\n    \"answer\": \"dog chases plate\"\n  },\n  {\n    \"question\": \"what happened after the owner dropped the plate\",\n    \"video_name\": \"auO4r3De6vc\",\n    \"answer\": \"dog came back with something\"\n  },\n  {\n    \"question\": \"what happened after the person wearing red clothes got up\",\n    \"video_name\": \"z6l9utYlIrw\",\n    \"answer\": \"be gone\"\n  },\n  {\n    \"question\": \"what happened to the person in gray after he turned around\",\n    \"video_name\": \"hRsn4nesCQo\",\n    \"answer\": \"dipping pigment\"\n  },\n  {\n    \"question\": \"what happened when the person on the stage stooped down to say thank you\",\n    \"video_name\": \"BhgcXqWQhkQ\",\n    \"answer\": \"video end\"\n  },\n  {\n    \"question\": \"what happened to the person who was sitting with his head up\",\n    \"video_name\": \"RtF6TGqwa7Y\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what happened to the player in white after he fell\",\n    \"video_name\": \"2uUNiV8xmEo\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what happened after the person in white took out the pole\",\n    \"video_name\": \"I2XqSiNerwg\",\n    \"answer\": \"swing rod\"\n  },\n  {\n    \"question\": \"what happened after the woman waved in the middle\",\n    \"video_name\": \"hvrKRg166eQ\",\n    \"answer\": \"raise your left hand\"\n  },\n  {\n    \"question\": \"what happened after the player in the video jumped forward\",\n    \"video_name\": \"5dN-MpXG9OE\",\n    \"answer\": \"back somersault\"\n  },\n  {\n    \"question\": \"what happened after the kid hit the bottle with a stick\",\n    \"video_name\": \"Ki1bs5X_S5k\",\n    \"answer\": \"plaything\"\n  },\n  {\n    \"question\": \"what happens when people in video do not turn on the switch\",\n    \"video_name\": \"v0azz4XzW_s\",\n    \"answer\": \"touch ones head\"\n  },\n  {\n    \"question\": \"what happened before the man wearing white clothes put on a wall cloth\",\n    \"video_name\": \"kistIwzeQOU\",\n    \"answer\": \"stand on bench\"\n  },\n  {\n    \"question\": \"what happens to a long hair woman before a short hair man eats something\",\n    \"video_name\": \"UvOEuhS0V3E\",\n    \"answer\": \"rouge lips\"\n  },\n  {\n    \"question\": \"what happened to the athlete in green before he doubled over\",\n    \"video_name\": \"lOZ9bfzq89o\",\n    \"answer\": \"original takeoff\"\n  },\n  {\n    \"question\": \"what happened to the person wearing blue clothes after cutting things out\",\n    \"video_name\": \"FWZ6wgaJ_L4\",\n    \"answer\": \"rinse\"\n  },\n  {\n    \"question\": \"what happened before the person in black jumped up\",\n    \"video_name\": \"G4-qjGC_3VA\",\n    \"answer\": \"straighten rod\"\n  },\n  {\n    \"question\": \"what happened after the person in blue ironed his collar\",\n    \"video_name\": \"LsVCwr6qPmY\",\n    \"answer\": \"ironing sleeves\"\n  },\n  {\n    \"question\": \"what happens when the person in blue shorts picks up a barbell\",\n    \"video_name\": \"H0dG_1Vgw4Q\",\n    \"answer\": \"squating\"\n  },\n  {\n    \"question\": \"what happened after the person in the video assembled the bicycle\",\n    \"video_name\": \"4MwnHtlaEUY\",\n    \"answer\": \"start riding\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after blowing the first paragraph\",\n    \"video_name\": \"lU6DMCif3eE\",\n    \"answer\": \"open mouth ventilation\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after holding the parallel bars\",\n    \"video_name\": \"VvsYrfEvvUw\",\n    \"answer\": \"support yourself\"\n  },\n  {\n    \"question\": \"what happened when the person in the video put the pupil on\",\n    \"video_name\": \"6JZVpl2S2Mg\",\n    \"answer\": \"dark bigger\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after he took out the ignition\",\n    \"video_name\": \"cCDffwsJvsY\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what happened to the person in the video after the first turn\",\n    \"video_name\": \"qaml4eEk9hY\",\n    \"answer\": \"mice\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before he baked the sandwich\",\n    \"video_name\": \"meNgZdu8tIk\",\n    \"answer\": \"smear oil\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before he painted the chair\",\n    \"video_name\": \"g9lNpSAtHgI\",\n    \"answer\": \"lacquer\"\n  },\n  {\n    \"question\": \"what happened to the person in the video before shaving hair of his legs\",\n    \"video_name\": \"2k-qlZxc9l4\",\n    \"answer\": \"coated hair cream\"\n  },\n  {\n    \"question\": \"what happened when the person in white took the flowers\",\n    \"video_name\": \"G25py7yEVyo\",\n    \"answer\": \"handshake\"\n  },\n  {\n    \"question\": \"what happens after the person in black play games\",\n    \"video_name\": \"nhQTxZlzG1Q\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what happened to the person wearing black clothes after pulling hair\",\n    \"video_name\": \"z8x3wUZYOaM\",\n    \"answer\": \"throw away\"\n  },\n  {\n    \"question\": \"what happened after the person in black shoveled the snow\",\n    \"video_name\": \"SB0dU5oDvaE\",\n    \"answer\": \"dog jumped up\"\n  },\n  {\n    \"question\": \"what happened to the person in blue after he ran off with the needle\",\n    \"video_name\": \"tgPD2SZo_DY\",\n    \"answer\": \"counterclockwise running\"\n  },\n  {\n    \"question\": \"what happened to the person in the dark green suit facing the camera\",\n    \"video_name\": \"pKOy4HJwCqo\",\n    \"answer\": \"back to lens\"\n  },\n  {\n    \"question\": \"what happens to the person in green when they blow away the fallen leaves\",\n    \"video_name\": \"MDWaKr7Gu5Q\",\n    \"answer\": \"push leaves off\"\n  },\n  {\n    \"question\": \"what happened to the person in green before he lifted the weight\",\n    \"video_name\": \"d6gGZFQOxOg\",\n    \"answer\": \"squat\"\n  },\n  {\n    \"question\": \"does the boy in black teach the boy to peel potatoes\",\n    \"video_name\": \"09ocXmGF-T4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person on the right win\",\n    \"video_name\": \"Flm_SCK10GQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the boy with glasses come here alone\",\n    \"video_name\": \"KPRymTsPCC0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the bubble in the pool big\",\n    \"video_name\": \"F7K2oT7ADkk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the cake on the table\",\n    \"video_name\": \"S7CW-si2JjA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the cake under the table\",\n    \"video_name\": \"S7CW-si2JjA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does it necessary to hold a camel during the ride\",\n    \"video_name\": \"VFC-V06hVj0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the car in the video run\",\n    \"video_name\": \"e4kS-n7_LRU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the car introduced in the video convenient for people\",\n    \"video_name\": \"brJIpRGcBFU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the chair in the video made of wood\",\n    \"video_name\": \"g9lNpSAtHgI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the chef cook noodles in the room\",\n    \"video_name\": \"MAGeYoFuCgo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the chef cook noodles outside\",\n    \"video_name\": \"MAGeYoFuCgo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the chef wear a black watch in his left hand\",\n    \"video_name\": \"3i3SUPsyZtA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the chef wear a white watch in his left hand\",\n    \"video_name\": \"3i3SUPsyZtA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the child hold a flower\",\n    \"video_name\": \"Ki1bs5X_S5k\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the child hold a stick\",\n    \"video_name\": \"Ki1bs5X_S5k\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the child perform martial arts indoors\",\n    \"video_name\": \"MAYrBia9Xnw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the child perform martial arts outdoors\",\n    \"video_name\": \"MAYrBia9Xnw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the child's clothes light gray\",\n    \"video_name\": \"dZsk5Dp_5FE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is putting christmas tree in first then decorating in the video\",\n    \"video_name\": \"AB5cWhlQ0Kk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the cloth that wipes the table blue\",\n    \"video_name\": \"chmegNbBTNc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the cloth that wipes the table white\",\n    \"video_name\": \"chmegNbBTNc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the clothes with the number 19 color white\",\n    \"video_name\": \"BdRH3lpopLQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the girl playing in the archery\",\n    \"video_name\": \"FkbpD1zWdPw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the complexity of brushing teeth high\",\n    \"video_name\": \"pzTqZWPubk8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the contestant indoors in the video\",\n    \"video_name\": \"Jhcis4S2Vsg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the contestant outdoors in the video\",\n    \"video_name\": \"Jhcis4S2Vsg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the cow fight in the video indoors\",\n    \"video_name\": \"2_H3lxMWvPo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the cow fight in the video outdoors\",\n    \"video_name\": \"2_H3lxMWvPo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the crocodile appear in the video\",\n    \"video_name\": \"Erje-PwY9hE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the cup black\",\n    \"video_name\": \"PBYg9ekd86w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the cup red\",\n    \"video_name\": \"PBYg9ekd86w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use cups for measuring length\",\n    \"video_name\": \"vHnZ3NrZER0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the cyclist an adult\",\n    \"video_name\": \"FtRGOgg0Qh8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the dance girl's dance successful\",\n    \"video_name\": \"bWZkD_s1940\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the dessert delicious in the video\",\n    \"video_name\": \"1494UwmvAJM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the somersault in the video difficult\",\n    \"video_name\": \"Zt9qvbUnNhc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the fertilizer application in the video difficult\",\n    \"video_name\": \"an1R4BP97JY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the playing the parallel bars in the video difficult\",\n    \"video_name\": \"ZLG1Exv8HrY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the playing a magic cube in a video game in the video difficult\",\n    \"video_name\": \"r2H-cnti8GI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this martial art in the video difficult\",\n    \"video_name\": \"2UhbDOd43zU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the disc in the video roll out with a stick\",\n    \"video_name\": \"R74yolowFPs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the diver in the deep sea or in the shallow sea\",\n    \"video_name\": \"Ep5LuX_2gfI\",\n    \"answer\": \"shallow sea\"\n  },\n  {\n    \"question\": \"does the doctor wear glasses\",\n    \"video_name\": \"b0qGo-HT5iQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the dog black\",\n    \"video_name\": \"-8SgY4vW4xM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the dog in the video all pure color\",\n    \"video_name\": \"auO4r3De6vc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the dog red\",\n    \"video_name\": \"eQwLUJ3P7wI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does dog listen to you in the shower\",\n    \"video_name\": \"PD-FXR7O9J0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the dog white\",\n    \"video_name\": \"-8SgY4vW4xM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the long-haired lady wear black clothes\",\n    \"video_name\": \"v-UmNR5yeDc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the middle wear purple clothes\",\n    \"video_name\": \"PJ7HOHdOdy4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the middle wear purple clothes\",\n    \"video_name\": \"PJ7HOHdOdy4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the number 19 on the clothes color black\",\n    \"video_name\": \"BdRH3lpopLQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does brunette girl wear long sleeves or short sleeves\",\n    \"video_name\": \"CaeZoHNHul0\",\n    \"answer\": \"t shirt\"\n  },\n  {\n    \"question\": \"does the long-haired lady wear white clothes\",\n    \"video_name\": \"v-UmNR5yeDc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person that is bathing dog wearing red\",\n    \"video_name\": \"W9H2qVnIWXs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the black-haired girl's eyes closed when she plays the piano\",\n    \"video_name\": \"CaeZoHNHul0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the female presiding long hair\",\n    \"video_name\": \"vSv1qMMt4Bk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the fence at the edge of the site green\",\n    \"video_name\": \"HQVSLlKhupk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the fence at the edge of the site yellow\",\n    \"video_name\": \"HQVSLlKhupk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the number on the back of a skater's shirt 23\",\n    \"video_name\": \"pcLGX5qvUcI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the number behind the skater's shirt 32\",\n    \"video_name\": \"pcLGX5qvUcI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the first person wearing black\",\n    \"video_name\": \"BjjN_aq_wq4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the first person wearing a yellow clothes\",\n    \"video_name\": \"BjjN_aq_wq4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the first person wearing shorts\",\n    \"video_name\": \"blbaWHbtqTI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the first person wearing trousers\",\n    \"video_name\": \"blbaWHbtqTI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the fitness person standing\",\n    \"video_name\": \"k--dW53UQWs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the game in the video a basketball match\",\n    \"video_name\": \"3oy4P1gyU4k\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the game in the video a billiard game\",\n    \"video_name\": \"3oy4P1gyU4k\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the gift holder standing or sitting\",\n    \"video_name\": \"C5SXR9nMY3I\",\n    \"answer\": \"sitting\"\n  },\n  {\n    \"question\": \"does the blindfolded girl hit the toy\",\n    \"video_name\": \"cCimLg-8Dy4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl dancing long hair\",\n    \"video_name\": \"N75m1Z4RqbA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl in black doing swivel movement\",\n    \"video_name\": \"e0yLhjXQIXI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the girl in pink clothes curly hair\",\n    \"video_name\": \"28WDlVOgslg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the girl in purple clothes long hair\",\n    \"video_name\": \"WNgI2qBvPrY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this girl participating in the competition\",\n    \"video_name\": \"kMtjk1KFvXQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl in the video around the tree pile\",\n    \"video_name\": \"_G4EVIG9YaE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl in the video beautiful\",\n    \"video_name\": \"Dd5yTxwKzXw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl in the video chinese\",\n    \"video_name\": \"d09u-0k3LdE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the girl in the video indoors\",\n    \"video_name\": \"5mWZY2XkWSQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl in the video outdoors\",\n    \"video_name\": \"5mWZY2XkWSQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the girl in the video wearing a black coat\",\n    \"video_name\": \"_G4EVIG9YaE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the girl in the video wearing a camouflage coat\",\n    \"video_name\": \"_G4EVIG9YaE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl wearing a black dress in the video long hair\",\n    \"video_name\": \"bWZkD_s1940\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl with the headband wearing a striped dress\",\n    \"video_name\": \"VSsZZZHn1L0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the girl with the headband wearing black clothes\",\n    \"video_name\": \"VSsZZZHn1L0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl wearing a striped dress\",\n    \"video_name\": \"amgpZtvd9h0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the dress of the girl standing on the equipment yellow\",\n    \"video_name\": \"hGPCJb2g1tQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the little girl with the injured middle finger performing gymnastics\",\n    \"video_name\": \"k-I4zLbgdpM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl with black clothes in the hands of sugar\",\n    \"video_name\": \"cCimLg-8Dy4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the girl with black clothes long hair or short hair\",\n    \"video_name\": \"cCimLg-8Dy4\",\n    \"answer\": \"long hair\"\n  },\n  {\n    \"question\": \"is the girl with pink clothes yellow hair\",\n    \"video_name\": \"28WDlVOgslg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl with yellow hair straight\",\n    \"video_name\": \"9snScUyE8_4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl's action standard in the video\",\n    \"video_name\": \"d09u-0k3LdE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl's dress black\",\n    \"video_name\": \"EBw5-KVV_PU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the blue girl's protective gear pink\",\n    \"video_name\": \"EETygPQ-j08\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the glove pure color\",\n    \"video_name\": \"Oyycph_Ukfg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the goal on the water\",\n    \"video_name\": \"rMj2JWNJzkw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the goalkeeper wrestling in the video\",\n    \"video_name\": \"_l251ZuOCYU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the grass green\",\n    \"video_name\": \"_fLhtWSCaSo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person next to the slide in the video wearing a green dress\",\n    \"video_name\": \"AQ3eFWxZ67U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the gray person using a machine to mow the grass\",\n    \"video_name\": \"brJIpRGcBFU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person waist up wearing a t - shirt\",\n    \"video_name\": \"-eJT11AuOa0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"did you use a hairdryer to make the cake in the video\",\n    \"video_name\": \"GSrBZXLSwWI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the hair of a dummy long or short\",\n    \"video_name\": \"C27eI-S1Vkw\",\n    \"answer\": \"long\"\n  },\n  {\n    \"question\": \"is the hair of a dummy red\",\n    \"video_name\": \"C27eI-S1Vkw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the hair of a dummy straight or curly hair\",\n    \"video_name\": \"C27eI-S1Vkw\",\n    \"answer\": \"straight\"\n  },\n  {\n    \"question\": \"is the hair of a person wearing a gray vest tied up\",\n    \"video_name\": \"qZMcbBsQorE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the hair of a weightlifter black\",\n    \"video_name\": \"tRFK1BMKaRo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the dummy's hair yellow\",\n    \"video_name\": \"C27eI-S1Vkw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the weight of the person's hair yellow\",\n    \"video_name\": \"tRFK1BMKaRo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person with the hairpin wear a striped suit\",\n    \"video_name\": \"amgpZtvd9h0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the hat in green clothes black\",\n    \"video_name\": \"ufrTSC3Dewg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the hat in green clothes white\",\n    \"video_name\": \"ufrTSC3Dewg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the bald head in the video wear a watch\",\n    \"video_name\": \"3Rzyta8op6s\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the helmet used during the skiing\",\n    \"video_name\": \"vnZmsOgWs0o\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the helmet used during the sliding\",\n    \"video_name\": \"UzmsAb15Bso\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the high jumper wearing long sleeves or short sleeves\",\n    \"video_name\": \"WGUzmra3h_w\",\n    \"answer\": \"short sleeve\"\n  },\n  {\n    \"question\": \"is the instrument in the video the same\",\n    \"video_name\": \"BhgcXqWQhkQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the kite black\",\n    \"video_name\": \"7CM2OYr-Csw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the lady wearing a bracelet in the video\",\n    \"video_name\": \"CDncYtx6Lwc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the lady wearing a purple dress\",\n    \"video_name\": \"BMy7CBVxH5M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the lady wearing a ring in the video\",\n    \"video_name\": \"CDncYtx6Lwc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the lady working with gloves\",\n    \"video_name\": \"penDFcEdu7U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"did the blonde hair woman at the end of the video clench\",\n    \"video_name\": \"7BUr2cN8CLs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"did the blonde hair woman at the end of the video angry\",\n    \"video_name\": \"7BUr2cN8CLs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the left wrist worn by a person in blue\",\n    \"video_name\": \"zxpQHLwZCug\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the light on the stage always on\",\n    \"video_name\": \"eKdtOKqLMRE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the little boy in the video curly hair\",\n    \"video_name\": \"NjD6iWI3NvM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the little boy in the video straight hair \",\n    \"video_name\": \"NjD6iWI3NvM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the little boy long hair\",\n    \"video_name\": \"Woelo4XJkHE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the little boy short hair\",\n    \"video_name\": \"Woelo4XJkHE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the little girl black\",\n    \"video_name\": \"e4kS-n7_LRU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the little girl injured in her left middle finger dancing\",\n    \"video_name\": \"k-I4zLbgdpM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the little girl long hair\",\n    \"video_name\": \"f8SWWURHV1M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the little girl playing the piano to the score\",\n    \"video_name\": \"f8SWWURHV1M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the little girl playing the piano indoors\",\n    \"video_name\": \"f8SWWURHV1M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the little girl short hair\",\n    \"video_name\": \"f8SWWURHV1M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the little girl white\",\n    \"video_name\": \"e4kS-n7_LRU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the little girl's hair golden\",\n    \"video_name\": \"f8SWWURHV1M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the long hair woman looking in the mirror\",\n    \"video_name\": \"7dXqXFoju2M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman with long hair taking pictures\",\n    \"video_name\": \"7dXqXFoju2M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the long jump game played indoors\",\n    \"video_name\": \"2-AMrzL7V-U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the long jump game played doors\",\n    \"video_name\": \"2-AMrzL7V-U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the machine that mages the lawn red\",\n    \"video_name\": \"dN8LBey17O8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the machine that mages the lawn white\",\n    \"video_name\": \"dN8LBey17O8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the makeup person a single eyelid or a double eyelid\",\n    \"video_name\": \"W97fdJ2Rn9g\",\n    \"answer\": \"double fold eyelids\"\n  },\n  {\n    \"question\": \"is the person in a black and white coat playing the magic cube in one hand\",\n    \"video_name\": \"r2H-cnti8GI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a black and white coat playing the magic cube in the room\",\n    \"video_name\": \"r2H-cnti8GI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a black coat an old person\",\n    \"video_name\": \"fe4r2-Y8k1U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black shirt shaving his beard\",\n    \"video_name\": \"ZLJ2BmBkLJg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a black coat wearing trousers\",\n    \"video_name\": \"F9FPK6mfh88\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a black coat young\",\n    \"video_name\": \"fe4r2-Y8k1U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the black shirt wearing a hat\",\n    \"video_name\": \"gWTndmDHZQc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a black vest with a hat\",\n    \"video_name\": \"GsPE54bMFwE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a blue coat eating biscuits\",\n    \"video_name\": \"rCLGy2NA0aE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a gold coat wearing a hat\",\n    \"video_name\": \"zV08tITKFMM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the gray jacket cutting trees outside\",\n    \"video_name\": \"GxDNGtoVjS0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the gray coat wearing a hat\",\n    \"video_name\": \"GxDNGtoVjS0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a green coat surfing in the sea\",\n    \"video_name\": \"zPQodcasmSA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a green suit surfing in the river\",\n    \"video_name\": \"zPQodcasmSA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a pink coat wearing a hat\",\n    \"video_name\": \"qGLRri_c6n8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a red hat a man\",\n    \"video_name\": \"NZskwwovSZI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a red hat wearing a glove\",\n    \"video_name\": \"qKp2QCheLwU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a red vest throwing a throw away\",\n    \"video_name\": \"eVkp83uGf3Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a striped shirt playing the piano indoors\",\n    \"video_name\": \"ZxCdhz4ep0s\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a striped shirt playing the piano outside\",\n    \"video_name\": \"ZxCdhz4ep0s\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a striped shirt wearing a hat\",\n    \"video_name\": \"ZxCdhz4ep0s\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a white coat a lady\",\n    \"video_name\": \"C5SXR9nMY3I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a white coat a person\",\n    \"video_name\": \"C5SXR9nMY3I\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a yellow coat wearing a hat\",\n    \"video_name\": \"rApbE1VkEjE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black without a beard\",\n    \"video_name\": \"A9VCuZ53ObQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue a referee\",\n    \"video_name\": \"gr53ih2aFkE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue black\",\n    \"video_name\": \"XI7qJHE61zo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue dancing on the grass\",\n    \"video_name\": \"1px5LTVIR3A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue in the first frame outdoors\",\n    \"video_name\": \"Mk7Yjq1U8OI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue jacket making sandwiches outside\",\n    \"video_name\": \"qiTQ02NDSlQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue pants in the first frame indoors\",\n    \"video_name\": \"Mk7Yjq1U8OI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in brown clothes making a sandwich\",\n    \"video_name\": \"Ko7Nt8UDP4Q\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in brown clothes making salad\",\n    \"video_name\": \"Ko7Nt8UDP4Q\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in dark blue writhing his wrist indoors\",\n    \"video_name\": \"G_rVqf_hwXw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in pink clothes a boy\",\n    \"video_name\": \"-pK2JheWido\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in pink dancing on the grass\",\n    \"video_name\": \"1kkc9hDshP4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red tug-of-war outside\",\n    \"video_name\": \"gr53ih2aFkE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red on the stage holding something in his hand\",\n    \"video_name\": \"gCHo9vxfEzM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red pants somersault outside\",\n    \"video_name\": \"Zt9qvbUnNhc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red playing\",\n    \"video_name\": \"kyx4MMmBr3A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red shorts doing a somersault indoors\",\n    \"video_name\": \"Zt9qvbUnNhc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the blue shirt using the shovel to lift the tile\",\n    \"video_name\": \"qiupddjDHDg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the gray coat scrubbing the cupboard with a brush\",\n    \"video_name\": \"Z-sWZUYL0ZU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the grey shirt wiping the cupboard with a towel\",\n    \"video_name\": \"Z-sWZUYL0ZU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the plaid jacket outside\",\n    \"video_name\": \"rGOOlcdpfLg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the camera all the time\",\n    \"video_name\": \"OysON6LbF6Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the plaid shirt drinking beer in a bottle\",\n    \"video_name\": \"Q5HdVXF390c\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the plaid shirt drinking beer in a glass\",\n    \"video_name\": \"Q5HdVXF390c\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the plaid standing in the haircut\",\n    \"video_name\": \"1IbkFHNA7fg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the purple pants wearing a hat\",\n    \"video_name\": \"28LdZLfdmMQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the red shirt wearing white socks\",\n    \"video_name\": \"df5rlVZD0Zc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the tattoo a man\",\n    \"video_name\": \"aAz3YL2RMr4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video with a beard\",\n    \"video_name\": \"0xBP-TSsqb0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white a referee\",\n    \"video_name\": \"N5Dt3ycaun4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white knitting his own hair\",\n    \"video_name\": \"ZBP_mLWROZU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the white suit knitting someone else's hair\",\n    \"video_name\": \"ZBP_mLWROZU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in yellow a hovercraft\",\n    \"video_name\": \"zYjLA99koBk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in yellow a lady\",\n    \"video_name\": \"PTwe2IIo3To\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in yellow a wooden boat\",\n    \"video_name\": \"zYjLA99koBk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person on the air cushion wearing a helmet\",\n    \"video_name\": \"lYP05IRcOPE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person on the air cushion wearing a mask\",\n    \"video_name\": \"lYP05IRcOPE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person on the balance wood black hair\",\n    \"video_name\": \"Z6b4oFjIznU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person on the balance wood long hair\",\n    \"video_name\": \"Z6b4oFjIznU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person on the jumper indoors\",\n    \"video_name\": \"jBlG0L_M96g\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person on the sand a gladiator\",\n    \"video_name\": \"HowkVy5fOyk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person on the sand a matador\",\n    \"video_name\": \"HowkVy5fOyk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person on the side of the bridge wearing a green clothes\",\n    \"video_name\": \"Pho9Hgdvc0g\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person on the side of the bridge wearing a white clothes\",\n    \"video_name\": \"Pho9Hgdvc0g\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person playing indoors\",\n    \"video_name\": \"fh21bbDSVmA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person pushing the shot\",\n    \"video_name\": \"eJc8bebOF2A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the running path of the person in the red jacket straight\",\n    \"video_name\": \"df5rlVZD0Zc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person standing up to the blow\",\n    \"video_name\": \"fh9d3gpT-8I\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person surfing far away from the shore\",\n    \"video_name\": \"dskswWtslKc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person swimming crawl\",\n    \"video_name\": \"e0yu4WgiZUM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a blue and white grid wearing a ring\",\n    \"video_name\": \"16bJAOf1SJI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person playing the piano wearing a suit or a t-shirt\",\n    \"video_name\": \"CFbkVO5b2g0\",\n    \"answer\": \"t shirt\"\n  },\n  {\n    \"question\": \"is the person wearing a gray helmet climbing indoors\",\n    \"video_name\": \"QoRlOa6R1LY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a gray vest practising outside\",\n    \"video_name\": \"3kxP8qOtym8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a green dress wearing a mask\",\n    \"video_name\": \"9UvVeUYQLgA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a green dress wearing a watch\",\n    \"video_name\": \"9UvVeUYQLgA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a grey helmet climbing outside\",\n    \"video_name\": \"QoRlOa6R1LY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the gray vest practicing indoors\",\n    \"video_name\": \"3kxP8qOtym8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a hat a boy or a girl\",\n    \"video_name\": \"9SIPJd4Hls4\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"is the person wearing a hat an old person\",\n    \"video_name\": \"_V62aT_K8Zw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a hat in white\",\n    \"video_name\": \"kistIwzeQOU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a hat wearing jeans\",\n    \"video_name\": \"_fLhtWSCaSo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the long black sleeves dive\",\n    \"video_name\": \"F-Z17rHI_ms\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a red hat a male or a female\",\n    \"video_name\": \"elD1P_1oiUk\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"is the person wearing a short sleeve\",\n    \"video_name\": \"fh9d3gpT-8I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a tie indoors\",\n    \"video_name\": \"sNTOUuE7ZfM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a watch on the left hand of the video\",\n    \"video_name\": \"0XTAq_xvquw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a watch on the right hand in the video\",\n    \"video_name\": \"0XTAq_xvquw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in white a man\",\n    \"video_name\": \"afMQA352X_A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white wearing glasses\",\n    \"video_name\": \"kistIwzeQOU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the yellow jacket removing snow with a broom\",\n    \"video_name\": \"rApbE1VkEjE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the yellow suit a person\",\n    \"video_name\": \"PTwe2IIo3To\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in orange short sleeves tug-of-war\",\n    \"video_name\": \"ZsVfa3JIUNU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing an orange short sleeve playing ball\",\n    \"video_name\": \"ZsVfa3JIUNU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the diving person a person\",\n    \"video_name\": \"f2DS_AVorrY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with a hat blindfolded\",\n    \"video_name\": \"IYLJU87AkOg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with a hat in the room\",\n    \"video_name\": \"JbW8efAOOt0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with a hat not blindfolded\",\n    \"video_name\": \"IYLJU87AkOg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with a hat outdoors\",\n    \"video_name\": \"JbW8efAOOt0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with the purple belt around his waist a boy\",\n    \"video_name\": \"PSB1nM3QXxg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with a stick riding on a cow in the field\",\n    \"video_name\": \"KWpATsiXF_M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with a stick riding on a horse in the field\",\n    \"video_name\": \"KWpATsiXF_M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with black clothes behind the red clothes\",\n    \"video_name\": \"oKJ1BnvHbbA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the grey person use his hands to mow the grass\",\n    \"video_name\": \"brJIpRGcBFU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person holding his face combed\",\n    \"video_name\": \"z8x3wUZYOaM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with long hair a person\",\n    \"video_name\": \"eQwLUJ3P7wI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with the rope in the room\",\n    \"video_name\": \"Jdu5AqaWfz8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with the rope outside\",\n    \"video_name\": \"Jdu5AqaWfz8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with white hair standing or sitting\",\n    \"video_name\": \"bWZkD_s1940\",\n    \"answer\": \"sitting\"\n  },\n  {\n    \"question\": \"is the person with yellow hair a man\",\n    \"video_name\": \"bRgvAHL3dJk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person's beard black\",\n    \"video_name\": \"eiN5XPmwcEM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person's beard long\",\n    \"video_name\": \"eiN5XPmwcEM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do people on stage have their hair tied up\",\n    \"video_name\": \"gCHo9vxfEzM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person's pants in a yellow life jacket black\",\n    \"video_name\": \"uktUeF3Fy7o\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person's pants in a yellow life jacket white\",\n    \"video_name\": \"uktUeF3Fy7o\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person's sunglasses red\",\n    \"video_name\": \"EDDbcCBnTQM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the meadow black\",\n    \"video_name\": \"_fLhtWSCaSo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the meadow green in the video\",\n    \"video_name\": \"_l251ZuOCYU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the men not with a tie in the video\",\n    \"video_name\": \"HX6BeHLQh5s\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the men with a tie in the video\",\n    \"video_name\": \"HX6BeHLQh5s\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the method of spray painting in video frequency complex\",\n    \"video_name\": \"g9lNpSAtHgI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it necessary to use a computer to get a microphone\",\n    \"video_name\": \"7OcxT66BxX0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the action in video difficult\",\n    \"video_name\": \"GcjzvBatqb4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the neck of the duck black\",\n    \"video_name\": \"HTSxgkgecS0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the neck of the duck white\",\n    \"video_name\": \"HTSxgkgecS0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the news program live\",\n    \"video_name\": \"xuvp0jKMqRU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the no. 10 player playing football\",\n    \"video_name\": \"CfqnHsp6olc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the no. 10 player playing the ball\",\n    \"video_name\": \"CfqnHsp6olc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the operation safe for the smoke\",\n    \"video_name\": \"FmfAB-ppHBs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the orange red dress person long hair in the video\",\n    \"video_name\": \"WXH-Tj0-g4w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the pants in the working people wearing white\",\n    \"video_name\": \"w10Nr_wOh8g\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the parade outdoors\",\n    \"video_name\": \"stdtUoog49I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the pedal of the sports equipment black\",\n    \"video_name\": \"FADShG5lyB8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the pen used in the process of lingual nail\",\n    \"video_name\": \"ikUNgSw4Gys\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the people in blue with oxygen cans\",\n    \"video_name\": \"HJWwqjLf1I4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the people in blue without any oxygen cans\",\n    \"video_name\": \"HJWwqjLf1I4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the perforpersonce difficult in the video\",\n    \"video_name\": \"BkDbDnvoL28\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the performer the same person\",\n    \"video_name\": \"f6vZaMgqDvQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the performer wearing the same color\",\n    \"video_name\": \"f6vZaMgqDvQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person a boy\",\n    \"video_name\": \"KXcVYfMuUGw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person a girl\",\n    \"video_name\": \"KXcVYfMuUGw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person holding the camera in the room at the beginning\",\n    \"video_name\": \"6G8m-vsGTA8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a black coat shears\",\n    \"video_name\": \"ZLJ2BmBkLJg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a blue apron a golden hair\",\n    \"video_name\": \"g9lNpSAtHgI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a blue coat eating ice cream\",\n    \"video_name\": \"rCLGy2NA0aE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a blue swimsuit wearing a hat\",\n    \"video_name\": \"Gs79qz286QE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a gray vest playing basketball\",\n    \"video_name\": \"GjcRJzPjbRI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a gray vest throwing a shot\",\n    \"video_name\": \"GjcRJzPjbRI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a red hat wearing a long sleeve\",\n    \"video_name\": \"NZskwwovSZI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in a white dress wearing a necklace\",\n    \"video_name\": \"MonWdYi3a0I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a white shirt cut out of the tree outside\",\n    \"video_name\": \"ZlVydB9uUe4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black wearing a necklace\",\n    \"video_name\": \"N4qhryre_TE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in pink dancing on the stage\",\n    \"video_name\": \"1kkc9hDshP4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red dispersontling gifts in the room\",\n    \"video_name\": \"GOhmWfR8QBM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red in a good mood\",\n    \"video_name\": \"g1na24Bd5Rs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the black dress curly hair\",\n    \"video_name\": \"12Nafz_Yet4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the blue coat eating the ice cream outside\",\n    \"video_name\": \"rCLGy2NA0aE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the braid indoors\",\n    \"video_name\": \"SNja9iUdAiI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the field outside\",\n    \"video_name\": \"JsPIzRsUtlE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the filed in the room\",\n    \"video_name\": \"JsPIzRsUtlE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the green skirt holding a wine\",\n    \"video_name\": \"H2fG7JRRMAs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the pink dress sitting\",\n    \"video_name\": \"OysON6LbF6Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the pink dress standing\",\n    \"video_name\": \"OysON6LbF6Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the purple coat cooking in the room\",\n    \"video_name\": \"gOnp3DZxeKU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the screen with a shovel dug the same\",\n    \"video_name\": \"B4Zp5XN97Gc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the tattoo long hair\",\n    \"video_name\": \"aAz3YL2RMr4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video a disabled person\",\n    \"video_name\": \"0lbv0AE5gJQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video a fat person\",\n    \"video_name\": \"eKdtOKqLMRE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video a thin person\",\n    \"video_name\": \"eKdtOKqLMRE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video cut the skin of the sweet potato with a knife\",\n    \"video_name\": \"a4gI4LC1rJk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video cut the skin of the sweet potato with scissors\",\n    \"video_name\": \"a4gI4LC1rJk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video fencing indoors\",\n    \"video_name\": \"3LwQ2yq85LU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video fencing outdoors\",\n    \"video_name\": \"3LwQ2yq85LU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video in the water\",\n    \"video_name\": \"fEBM3nPMen8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video shaving in the bathtub\",\n    \"video_name\": \"2k-qlZxc9l4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video shaving on the sofa\",\n    \"video_name\": \"2k-qlZxc9l4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video tattooed in black\",\n    \"video_name\": \"Db2Dnt2OOo0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video tattooed in white\",\n    \"video_name\": \"Db2Dnt2OOo0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video used to ski with a car\",\n    \"video_name\": \"Av0VsTxJd78\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video white hair\",\n    \"video_name\": \"AB5cWhlQ0Kk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the yellow dress curly hair\",\n    \"video_name\": \"Nc9yr4urskA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the yellow dress straight hair\",\n    \"video_name\": \"Nc9yr4urskA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in yellow clothes without necklaces\",\n    \"video_name\": \"H_JLBvfP88U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in yellow clothes with necklaces\",\n    \"video_name\": \"H_JLBvfP88U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person not wearing a hat in the video\",\n    \"video_name\": \"HTYzbAFUghU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person of the yellow dress a boy or a girl\",\n    \"video_name\": \"75Tc1nPmZFQ\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"is the person on number 14 wearing a dark blue dress\",\n    \"video_name\": \"pMtu7fOHdII\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person on number 14 wearing a white dress\",\n    \"video_name\": \"pMtu7fOHdII\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video on the racetrack alone\",\n    \"video_name\": \"4H9MMsj4mcM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person on the video on the shore\",\n    \"video_name\": \"fEBM3nPMen8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person playing an instrument indoors in the video\",\n    \"video_name\": \"lU6DMCif3eE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person playing badminton indoors in the video\",\n    \"video_name\": \"1dDAcUliXrQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person playing badminton outside in the video\",\n    \"video_name\": \"1dDAcUliXrQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person playing the instrument outside in the video\",\n    \"video_name\": \"lU6DMCif3eE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person polishing shoes a man\",\n    \"video_name\": \"KT8DUDFc3Xg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person polishing shoes a woman\",\n    \"video_name\": \"KT8DUDFc3Xg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person sitting on the air cushion indoors\",\n    \"video_name\": \"JY9oOSfjj_E\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person sitting on the air cushion outside\",\n    \"video_name\": \"JY9oOSfjj_E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person standing on the platform outside\",\n    \"video_name\": \"s9PkkDEl6aY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person standing on the table in the room\",\n    \"video_name\": \"s9PkkDEl6aY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with the braid outside\",\n    \"video_name\": \"SNja9iUdAiI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person stepping on the jumper outside\",\n    \"video_name\": \"jBlG0L_M96g\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person tattooed in the video whole body\",\n    \"video_name\": \"Db2Dnt2OOo0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person using a non electric toothbrush in the video\",\n    \"video_name\": \"AsdsR27UnJ0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person using an electric toothbrush in the video\",\n    \"video_name\": \"AsdsR27UnJ0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white clothes without glasses\",\n    \"video_name\": \"H_IfIsKQ3Zw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person weaing white with glasses\",\n    \"video_name\": \"H_IfIsKQ3Zw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black and white coat playing the magic cube in two hands\",\n    \"video_name\": \"r2H-cnti8GI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a black clothes poling vault in the indoor \",\n    \"video_name\": \"G4-qjGC_3VA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a black clothes poling vault in the outdoor \",\n    \"video_name\": \"G4-qjGC_3VA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black coat combing his hair in the room\",\n    \"video_name\": \"zTHkqpNFGno\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black coat combing the hair outside\",\n    \"video_name\": \"zTHkqpNFGno\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a black coat doing a game indoors\",\n    \"video_name\": \"QImpWj3AJcY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the black jacket playing games outside\",\n    \"video_name\": \"QImpWj3AJcY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the black jacket walking on stilts indoors\",\n    \"video_name\": \"zO5JMTzLDHw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the black jacket walking on stilts outside\",\n    \"video_name\": \"zO5JMTzLDHw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black coat wearing gloves\",\n    \"video_name\": \"QdmcjM2fluo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black coat with his hat\",\n    \"video_name\": \"zO5JMTzLDHw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a black dress acting indoors\",\n    \"video_name\": \"3nSOFmmA7FU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black dress guessing the punch in the room\",\n    \"video_name\": \"mek9Zodu8LM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black dress guessing the punch outside\",\n    \"video_name\": \"mek9Zodu8LM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a black dress not wearing a hat\",\n    \"video_name\": \"gsQ-OEvrxjo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black dress performing outdoors\",\n    \"video_name\": \"3nSOFmmA7FU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a black shirt not wearing a hat\",\n    \"video_name\": \"gWTndmDHZQc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black shirt playing the guitar in the room\",\n    \"video_name\": \"gWTndmDHZQc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in black short-sleeved in the room polishing shoes\",\n    \"video_name\": \"QXN6odBnVmI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black swimsuit female\",\n    \"video_name\": \"F-Z17rHI_ms\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the black bathing suit diving indoor\",\n    \"video_name\": \"F-Z17rHI_ms\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black swimsuit male\",\n    \"video_name\": \"F-Z17rHI_ms\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a black vest not wearing a hat\",\n    \"video_name\": \"G0VWk5WqDp0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black vest playing basketball indoors\",\n    \"video_name\": \"ZgdMnfTqblw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a black vest playing basketball outdoors\",\n    \"video_name\": \"ZgdMnfTqblw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a blue apron black hair\",\n    \"video_name\": \"g9lNpSAtHgI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a blue clothes short hair\",\n    \"video_name\": \"MVA568rRjzQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a blue coat wearing glasses\",\n    \"video_name\": \"oGU7m7rCZ-Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a blue dress dancing on the stage\",\n    \"video_name\": \"1px5LTVIR3A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a blue dress wearing glasses\",\n    \"video_name\": \"P8S8PIyPXxY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a blue dress with a watch\",\n    \"video_name\": \"P8S8PIyPXxY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a blue jacket using a knife to lift the tile\",\n    \"video_name\": \"qiupddjDHDg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a camouflage suit long hair\",\n    \"video_name\": \"A_Sr0mCX2rI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a camouflage wearing a hat\",\n    \"video_name\": \"A_Sr0mCX2rI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a christmas hat in the video\",\n    \"video_name\": \"Uae2MWoldTU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the sunglasses wearing white clothes\",\n    \"video_name\": \"b6QSzGwI9m4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the broken dress blonde hair\",\n    \"video_name\": \"Y7aacWy3WDo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the broken dress curly hair\",\n    \"video_name\": \"Y7aacWy3WDo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a gray dress wearing a slipper\",\n    \"video_name\": \"A8RQcVFtovg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a gray short sleeve brushing his teeth in the room\",\n    \"video_name\": \"pzTqZWPubk8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a gray suit live in the studio\",\n    \"video_name\": \"zV08tITKFMM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a gray suit live outside\",\n    \"video_name\": \"zV08tITKFMM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a gray suit wearing a hat\",\n    \"video_name\": \"Pjnuoa4o55c\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a gray vest with hair dishevelled \",\n    \"video_name\": \"qZMcbBsQorE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the grey vest doing exercise indoors\",\n    \"video_name\": \"qZMcbBsQorE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a green coat blowing his hair indoors\",\n    \"video_name\": \"zKYiTA6WBS4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a green coat in the video\",\n    \"video_name\": \"p54LLMnyg54\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a green coat playing with sand in the room\",\n    \"video_name\": \"ZJnXQw84xvo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a green coat playing with sand outside\",\n    \"video_name\": \"ZJnXQw84xvo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a green dress in the video long hair\",\n    \"video_name\": \"cVFVREeD6hM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a green dress in the video short hair\",\n    \"video_name\": \"cVFVREeD6hM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a green suit wearing a helmet\",\n    \"video_name\": \"gZB_XrTnDCI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a green vest not wearing a hat\",\n    \"video_name\": \"gNUCdXGxp0w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a green vest riding indoors\",\n    \"video_name\": \"gNUCdXGxp0w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a green vest wearing a hat\",\n    \"video_name\": \"gNUCdXGxp0w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a green vest wearing glasses\",\n    \"video_name\": \"gNUCdXGxp0w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a grey coat wearing gloves\",\n    \"video_name\": \"Z-sWZUYL0ZU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a hand chain in the video\",\n    \"video_name\": \"AB480dHyDeM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a hat in blue\",\n    \"video_name\": \"Pjnuoa4o55c\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a hat in the outdoor welding\",\n    \"video_name\": \"2ShsRSJ9cqE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a hat welds in the room\",\n    \"video_name\": \"2ShsRSJ9cqE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a plaid shirt drinking beer outside\",\n    \"video_name\": \"Q5HdVXF390c\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a leaky backpack in the video\",\n    \"video_name\": \"Au4PfoK7hyw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a mask outdoors\",\n    \"video_name\": \"ryFSf08mrkA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the pink jacket sliding a pulley indoors\",\n    \"video_name\": \"qGLRri_c6n8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the pink jacket sliding a pulley outside\",\n    \"video_name\": \"qGLRri_c6n8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the purple jacket wearing an apron\",\n    \"video_name\": \"gOnp3DZxeKU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a purple dress wearing a helmet\",\n    \"video_name\": \"nP1Bk-vJgVg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a purple dress wearing a necklace\",\n    \"video_name\": \"xfV4V_AOVSM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in red and black hair blond\",\n    \"video_name\": \"oflwFZj9PNY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a red and black dress short hair\",\n    \"video_name\": \"oflwFZj9PNY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a red and white shoe wearing a boxing glove\",\n    \"video_name\": \"kPn9NzU4W48\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a red and white shoe wearing a hat\",\n    \"video_name\": \"kPn9NzU4W48\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a red swimsuit a tie of hair\",\n    \"video_name\": \"kTqt7ry3eVM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a red coat in the video\",\n    \"video_name\": \"p54LLMnyg54\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a red coat interviewed indoors\",\n    \"video_name\": \"zpaS2iYrJjk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a red coat interviewed outdoors\",\n    \"video_name\": \"zpaS2iYrJjk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a red coat playing volleyball in the room\",\n    \"video_name\": \"Z-zG845frso\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a red coat playing volleyball outside\",\n    \"video_name\": \"Z-zG845frso\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a red coat wearing shoes\",\n    \"video_name\": \"Z-zG845frso\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a red dress jumps first\",\n    \"video_name\": \"Ye_uVlSo1HI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a red suit a match\",\n    \"video_name\": \"kyx4MMmBr3A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a red swimsuit left short hair\",\n    \"video_name\": \"kTqt7ry3eVM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a skirt or a pair of pants in the video\",\n    \"video_name\": \"C5SXR9nMY3I\",\n    \"answer\": \"trousers\"\n  },\n  {\n    \"question\": \"is the man in the striped shirt packing outside\",\n    \"video_name\": \"pYaZLHpl_Ww\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man in the striped shirt packing indoors\",\n    \"video_name\": \"pYaZLHpl_Ww\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a striped shirt wearing a ring\",\n    \"video_name\": \"pYaZLHpl_Ww\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man in the sunglasses wearing red\",\n    \"video_name\": \"b6QSzGwI9m4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a white apron a teacher\",\n    \"video_name\": \"ej_fSoVO0R8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a white apron a woman\",\n    \"video_name\": \"ej_fSoVO0R8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a white clothes in a good mood\",\n    \"video_name\": \"G25py7yEVyo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a white coat a lady in the video\",\n    \"video_name\": \"bYxVbXzQToI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a white coat throwing dart in the room\",\n    \"video_name\": \"qZtdMXkHRXw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a white dress a boy\",\n    \"video_name\": \"MonWdYi3a0I\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a white dress playing volleyball in the room\",\n    \"video_name\": \"ghHZ9M-jx0w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a white shirt taking a horse\",\n    \"video_name\": \"zqxzFxya6T8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a white shirt playing tai chi in the room\",\n    \"video_name\": \"QJ5xv6oj1sk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a white shirt playing tai chi outside\",\n    \"video_name\": \"QJ5xv6oj1sk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a white shirt riding a horse outside\",\n    \"video_name\": \"zqxzFxya6T8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the white shirt taking a cow\",\n    \"video_name\": \"zqxzFxya6T8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a white vest playing a game indoors\",\n    \"video_name\": \"qSP3_C7QWpU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a white vest playing a game outdoors\",\n    \"video_name\": \"qSP3_C7QWpU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a yellow dress at the beginning of the video\",\n    \"video_name\": \"prBiREYQ2vQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a yellow dress in the video long hair\",\n    \"video_name\": \"-crpjVnFv0U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a yellow dress in the video short hair\",\n    \"video_name\": \"-crpjVnFv0U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a yellow dress wearing shoes\",\n    \"video_name\": \"gr53ih2aFkE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a yellow hair in the video wearing a watch\",\n    \"video_name\": \"45hcc_VI4t4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing a yellow jacket with a shovel in the snow\",\n    \"video_name\": \"rApbE1VkEjE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a yellow suit a very slow punch\",\n    \"video_name\": \"1PNjVTM0Zto\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing a yellow suit punching fast\",\n    \"video_name\": \"1PNjVTM0Zto\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing an orange life jacket wearing a hat\",\n    \"video_name\": \"zH1MiuiTsx8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing black pants in the video\",\n    \"video_name\": \"Of2Umm79Kxg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing green swimming trunks indoors\",\n    \"video_name\": \"LvTwJTvluHE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing green swimming trunksoutdoors\",\n    \"video_name\": \"LvTwJTvluHE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing green trousers a blonde hair\",\n    \"video_name\": \"OlR9S70AA74\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the orange suit sitting and playing sports\",\n    \"video_name\": \"GcjzvBatqb4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the orange suit doing sports standing up\",\n    \"video_name\": \"GcjzvBatqb4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing pink clothes a girl\",\n    \"video_name\": \"-pK2JheWido\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing the purple pants wearing the wristband\",\n    \"video_name\": \"28LdZLfdmMQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing the red down jacket  indoor at the beginning of the video\",\n    \"video_name\": \"m73Cod-PmMQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing the red down jacket outdoor at the beginning of the video \",\n    \"video_name\": \"m73Cod-PmMQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing trousers in the video\",\n    \"video_name\": \"Oyycph_Ukfg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white clothes long hair\",\n    \"video_name\": \"N5Dt3ycaun4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with a blonde hair  short hair\",\n    \"video_name\": \"2bQx5igckJc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person diving a woman\",\n    \"video_name\": \"f2DS_AVorrY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wapping a gift  long hair or short hair\",\n    \"video_name\": \"C5SXR9nMY3I\",\n    \"answer\": \"long\"\n  },\n  {\n    \"question\": \"is the person with a goggle on the water\",\n    \"video_name\": \"K49OCArHjXI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with a golden hair long hair\",\n    \"video_name\": \"2bQx5igckJc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with a purple belt on the waist a girl\",\n    \"video_name\": \"PSB1nM3QXxg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with a purple hat dancing in the room\",\n    \"video_name\": \"Gfu8e6R6jUU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with a red hat long hair\",\n    \"video_name\": \"VpZzLvzU7_k\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with a red hat short hair\",\n    \"video_name\": \"VpZzLvzU7_k\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with the goggle under water\",\n    \"video_name\": \"K49OCArHjXI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with whistle in the video the referee\",\n    \"video_name\": \"ghHZ9M-jx0w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with white hair wearing a white clothes\",\n    \"video_name\": \"I2XqSiNerwg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with white hair wearing a yellow clothes\",\n    \"video_name\": \"I2XqSiNerwg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with yellow hair a woman\",\n    \"video_name\": \"bRgvAHL3dJk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue clothes have black hair\",\n    \"video_name\": \"MVA568rRjzQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person's pants on the sports equipment black\",\n    \"video_name\": \"0mNZfG6CL74\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person's pants on the sports equipment white\",\n    \"video_name\": \"0mNZfG6CL74\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person's pose sitting on the boat dangerous\",\n    \"video_name\": \"Pho9Hgdvc0g\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the pianist wearing short sleeves\",\n    \"video_name\": \"P2xT7dlyX8Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the piano in the left shoulder or the right shoulder\",\n    \"video_name\": \"CaeZoHNHul0\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"is the place to be shot fixed\",\n    \"video_name\": \"fSBX-gjPblw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the pole jump difficult\",\n    \"video_name\": \"G4-qjGC_3VA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the pumpkin in the room\",\n    \"video_name\": \"JKJ_EvP7JwQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the pumpkin outside\",\n    \"video_name\": \"JKJ_EvP7JwQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the racetrack indoors\",\n    \"video_name\": \"4H9MMsj4mcM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing red dress on the side of the slide in the video\",\n    \"video_name\": \"AQ3eFWxZ67U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the red dress very strong\",\n    \"video_name\": \"ldAHwbF8uWI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"except the lead dancer, are all other ladies \",\n    \"video_name\": \"PTwe2IIo3To\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the right wrist worn by the person wearing blue clothes\",\n    \"video_name\": \"zxpQHLwZCug\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the sliding pulley dangerous\",\n    \"video_name\": \"qGLRri_c6n8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the rowing wooden boat dangerous\",\n    \"video_name\": \"zH1MiuiTsx8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the cutting trees with scissors dangerous\",\n    \"video_name\": \"ZlVydB9uUe4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is riding horse dangerous\",\n    \"video_name\": \"zqxzFxya6T8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the pruning trees dangrous\",\n    \"video_name\": \"QdmcjM2fluo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the swimming dangerous\",\n    \"video_name\": \"qgUHRwC3194\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the using the vacuum cleaner dangerous\",\n    \"video_name\": \"qaml4eEk9hY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the wrist wrestling dangerous\",\n    \"video_name\": \"G_rVqf_hwXw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the river polluted\",\n    \"video_name\": \"Erje-PwY9hE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the river very deep\",\n    \"video_name\": \"elD1P_1oiUk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the rope connected to the board of the surfboard red\",\n    \"video_name\": \"dskswWtslKc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the rope holding a dog orange\",\n    \"video_name\": \"-eJT11AuOa0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the sail of a sailboat red\",\n    \"video_name\": \"dKJMP8EmZjw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the scarf worn by women in black clothes red\",\n    \"video_name\": \"DTI__3fkSzM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the scarf worn by women in black clothes white\",\n    \"video_name\": \"DTI__3fkSzM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the scene appearing in the video indoors or outdoors\",\n    \"video_name\": \"G0VWk5WqDp0\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"is the shark appearing in the video\",\n    \"video_name\": \"6xBh3vzhgo4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the ship in the video red\",\n    \"video_name\": \"zA2zZPyYLlU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the shirt of a striped shirt complex\",\n    \"video_name\": \"pYaZLHpl_Ww\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the shirt of the male host blue\",\n    \"video_name\": \"AwcM25G1h-g\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the shirt of the male host white\",\n    \"video_name\": \"AwcM25G1h-g\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the shore of the sea flat\",\n    \"video_name\": \"dFGS7YCDk3Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the short hair man not wearing a coat\",\n    \"video_name\": \"6VXQoPNphgI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the short sleeved worn by a little boy grey\",\n    \"video_name\": \"raxeBxPQqlk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the shot black\",\n    \"video_name\": \"EPsSfOEd3BU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the shot yellow\",\n    \"video_name\": \"EPsSfOEd3BU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the size of the two ships the same\",\n    \"video_name\": \"DHjoAOus3xM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the skateboard in the video thrown out with a hand\",\n    \"video_name\": \"R74yolowFPs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person on the slide in the middle age\",\n    \"video_name\": \"QPEAp7nf2Tk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the socks black\",\n    \"video_name\": \"Oyycph_Ukfg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the socks white\",\n    \"video_name\": \"Oyycph_Ukfg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the speaker interviewing outdoors\",\n    \"video_name\": \"ZsVfa3JIUNU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sport in the video playing basketball\",\n    \"video_name\": \"ghHZ9M-jx0w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the sport in the video playing volleyball\",\n    \"video_name\": \"ghHZ9M-jx0w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sportsman wearing a blue clothes\",\n    \"video_name\": \"tzP0lKSUv_o\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sportsman wearing a yellow clothes\",\n    \"video_name\": \"tzP0lKSUv_o\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the standard pose for throwing a javelin by a person in a blue vest\",\n    \"video_name\": \"G0VWk5WqDp0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the standing woman indoors\",\n    \"video_name\": \"S6Sg1l78IW0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sweet potato raw or ripe in the video\",\n    \"video_name\": \"a4gI4LC1rJk\",\n    \"answer\": \"ripe\"\n  },\n  {\n    \"question\": \"is the table leg black in the video\",\n    \"video_name\": \"Aj5ncX5G_2w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the table leg in the video white\",\n    \"video_name\": \"Aj5ncX5G_2w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the tattoo pattern in the video good\",\n    \"video_name\": \"Db2Dnt2OOo0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the tile in the video white\",\n    \"video_name\": \"_2txWbQfJrY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the time during the day or at night in the video\",\n    \"video_name\": \"CDecXoRSpIc\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"is the tomato red in the video\",\n    \"video_name\": \"mVAP-WyEc7w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the tomato yellow in the video\",\n    \"video_name\": \"mVAP-WyEc7w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the tool for skiing a rubber band\",\n    \"video_name\": \"vqyQF-1Zc_E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the tool used by people a lighter\",\n    \"video_name\": \"cCDffwsJvsY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the tortoise appearing in the video\",\n    \"video_name\": \"Erje-PwY9hE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the toy hanging on the tree\",\n    \"video_name\": \"46NS8dT15Hw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the tree next to the deciduous tree\",\n    \"video_name\": \"fbr7v8RMkf8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the tug of war difficult\",\n    \"video_name\": \"gr53ih2aFkE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the tug of war dangerous\",\n    \"video_name\": \"ZsVfa3JIUNU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the two player in the game fixed\",\n    \"video_name\": \"b_mWxzi_aps\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the two player in the game not fixed\",\n    \"video_name\": \"b_mWxzi_aps\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the video first explained after the experiment\",\n    \"video_name\": \"_CIoHeD7KQc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the video indoors at the beginning\",\n    \"video_name\": \"4MwnHtlaEUY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the video outdoors at the beginning\",\n    \"video_name\": \"4MwnHtlaEUY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is playing badminton on the beach in the video\",\n    \"video_name\": \"BD9CAqD1Yf8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is playing volleyball on the beach in the video\",\n    \"video_name\": \"BD9CAqD1Yf8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the wallpaper green\",\n    \"video_name\": \"8vDSV9ruYlc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the wallpaper red\",\n    \"video_name\": \"8vDSV9ruYlc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the water in the water tank in the video cloudy\",\n    \"video_name\": \"2nDJpvD-eZU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the water in the water tank transparent in the video\",\n    \"video_name\": \"2nDJpvD-eZU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the water polo green in the video\",\n    \"video_name\": \"0iqx7o5WYW8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the water polo in the video orange\",\n    \"video_name\": \"0iqx7o5WYW8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the weather cold in the video\",\n    \"video_name\": \"BBKSKU6dGGk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the weather in the surfing a rainy day\",\n    \"video_name\": \"dskswWtslKc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the weather rainy during the game\",\n    \"video_name\": \"dFGS7YCDk3Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the weather sunny at this time\",\n    \"video_name\": \"fhOmyyI0eQE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the weather sunny in surfing\",\n    \"video_name\": \"dskswWtslKc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the weather sunny in the game\",\n    \"video_name\": \"dFGS7YCDk3Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the white man young or old\",\n    \"video_name\": \"CKSlgK_2FP4\",\n    \"answer\": \"older\"\n  },\n  {\n    \"question\": \"is the white shirt long sleeved or short sleeved\",\n    \"video_name\": \"WNgI2qBvPrY\",\n    \"answer\": \"long sleeves\"\n  },\n  {\n    \"question\": \"is the rectification in the bar\",\n    \"video_name\": \"fMVuGUBs2cs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the winner of a guessing game a man or a lady\",\n    \"video_name\": \"v-UmNR5yeDc\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"is the winner wearing the white dress\",\n    \"video_name\": \"b_mWxzi_aps\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman acting outdoors\",\n    \"video_name\": \"FEOdYNR4gls\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman behind the girl a lady\",\n    \"video_name\": \"amgpZtvd9h0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman chinese in the video\",\n    \"video_name\": \"-CqVpCRxwTY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in a pink vest gather and watch\",\n    \"video_name\": \"KMK3_VeODlk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in a pink vest playing games\",\n    \"video_name\": \"KMK3_VeODlk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman in a pink vest playing with both hands\",\n    \"video_name\": \"KMK3_VeODlk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in black dress  middle hair\",\n    \"video_name\": \"WPYQ27GjFKc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman in the video with only herself in the gym\",\n    \"video_name\": \"Db9VWkgMpbE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in the video growing up\",\n    \"video_name\": \"CuLC5G7yWxA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in the video scared before jumping\",\n    \"video_name\": \"CvbL36Y8hN0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman knocking on the drum\",\n    \"video_name\": \"FFMugev85IY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman standing outside\",\n    \"video_name\": \"S6Sg1l78IW0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman wearing a black dress with a scarf\",\n    \"video_name\": \"eLh51DwDp-E\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman wearing a hand chain in the right hand of the video\",\n    \"video_name\": \"hIHeMA1oRrY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman who holds the competitor's hands in the video a lady\",\n    \"video_name\": \"b_mWxzi_aps\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a band in a shop\",\n    \"video_name\": \"Bgi2Y85Mbwk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a bell on the neck of a dog\",\n    \"video_name\": \"Oyycph_Ukfg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a bookshelf in the room\",\n    \"video_name\": \"eLh51DwDp-E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a burning smoke in the video\",\n    \"video_name\": \"Bgi2Y85Mbwk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a candle on the table\",\n    \"video_name\": \"7F-mVWMP2vM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does anyone in the video have coaching\",\n    \"video_name\": \"Db9VWkgMpbE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a collar on the dog's neck\",\n    \"video_name\": \"-eJT11AuOa0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a dress in the video\",\n    \"video_name\": \"PkRvgIFREJU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a dry leaf on the lawn\",\n    \"video_name\": \"1lwG-y_QCkc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there  fish on the bottom of the sea\",\n    \"video_name\": \"Ep5LuX_2gfI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there fruit on the table\",\n    \"video_name\": \"7H1KylJRii8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a hat for a girl's cloth\",\n    \"video_name\": \"amgpZtvd9h0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a helicopter in the video\",\n    \"video_name\": \"Av0VsTxJd78\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is dancing difficult for all people on the stage\",\n    \"video_name\": \"gCHo9vxfEzM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the playing volleyball difficult\",\n    \"video_name\": \"Z-zG845frso\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the stilt walking difficult\",\n    \"video_name\": \"zO5JMTzLDHw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a high risk factor for chopping wood\",\n    \"video_name\": \"hG4VsZQQ2_c\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the climbing dangerous \",\n    \"video_name\": \"QoRlOa6R1LY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the action dangerous for the green clothing person to ride a bike\",\n    \"video_name\": \"gZB_XrTnDCI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a lady among the dog trainers in the video\",\n    \"video_name\": \"auO4r3De6vc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a lavender in the video\",\n    \"video_name\": \"an1R4BP97JY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are there a lot of pedestrians outside\",\n    \"video_name\": \"DTI__3fkSzM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are there many people on the beach\",\n    \"video_name\": \"1vTHJMMPZN0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a microwave on the table\",\n    \"video_name\": \"Ar6TcWqwK-A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a pattern on a man's white clothes\",\n    \"video_name\": \"e-Xf13exY4E\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there a person wearing beige pants in the video\",\n    \"video_name\": \"AtbTioB1_Kw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a person wearing sunglasses in the video\",\n    \"video_name\": \"BD9CAqD1Yf8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a piece of ice in the wine\",\n    \"video_name\": \"fMVuGUBs2cs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a pull on the zipper for men's clothes\",\n    \"video_name\": \"-pkfcMUIEMo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there a purple car in the video\",\n    \"video_name\": \"BD9CAqD1Yf8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there a red flower on the woman's head in the video\",\n    \"video_name\": \"KsFid_YVsn0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a red item on the table\",\n    \"video_name\": \"7F-mVWMP2vM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a running program at the olympic games\",\n    \"video_name\": \"pVuuVHA3RVw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a saddle on the horse's back\",\n    \"video_name\": \"BMy7CBVxH5M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there a scissors in the hand of the person with a gray coat\",\n    \"video_name\": \"GxDNGtoVjS0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a sign on the person's clothes who pushs the shot\",\n    \"video_name\": \"eJc8bebOF2A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a siwmming pool in the house in the video\",\n    \"video_name\": \"HWFosaUWoSI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there snow in the tree in the video\",\n    \"video_name\": \"BBKSKU6dGGk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a tattoo on the no shirt person \",\n    \"video_name\": \"4_jDgRsOGvY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a tattoo on the right shoulder of the person spliting firewood\",\n    \"video_name\": \"hG4VsZQQ2_c\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a tool in the hand of a doctor\",\n    \"video_name\": \"b0qGo-HT5iQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a tv on the table\",\n    \"video_name\": \"7H1KylJRii8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there a very serious pollution in the sea area\",\n    \"video_name\": \"eMgC7I-GcgA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there a watch on the left hand of the person wearing yellow\",\n    \"video_name\": \"H9PaZiWLgXU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a watch on the right hand of the person wearing yellow\",\n    \"video_name\": \"H9PaZiWLgXU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there a wathch on the hand of the dealer\",\n    \"video_name\": \"H2fG7JRRMAs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a white haired old man in the video\",\n    \"video_name\": \"eQ0sW4hJ9zU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a woman in the video\",\n    \"video_name\": \"elD1P_1oiUk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a yellow disk in the video\",\n    \"video_name\": \"R74yolowFPs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a yellow flower on the woman's head in the video\",\n    \"video_name\": \"KsFid_YVsn0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there judges appearing black hair\",\n    \"video_name\": \"paRAKx8svJ8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there a child in the video\",\n    \"video_name\": \"H2fG7JRRMAs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there not sunglasses on the head of the grey vest person\",\n    \"video_name\": \"BFChXuwZ4wo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there any waste paper on the lawn\",\n    \"video_name\": \"1lwG-y_QCkc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there anyone on the side of the team being protected\",\n    \"video_name\": \"BkDbDnvoL28\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there anything that has not been cut on the left side of the blue dress person\",\n    \"video_name\": \"FWZ6wgaJ_L4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there green grass on the roof\",\n    \"video_name\": \"BMy7CBVxH5M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there no child in the video\",\n    \"video_name\": \"H2fG7JRRMAs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there no leaves on the small tree\",\n    \"video_name\": \"KXMZHfCwTO0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there no one on the side of each team\",\n    \"video_name\": \"BkDbDnvoL28\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there no picture of shovel digging in the video\",\n    \"video_name\": \"B4Zp5XN97Gc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there no scissors in the hand of the person with a gray coat\",\n    \"video_name\": \"GxDNGtoVjS0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there no swimming pool in the house in the video\",\n    \"video_name\": \"HWFosaUWoSI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there no tools in the hands of the doctor\",\n    \"video_name\": \"b0qGo-HT5iQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there no waterweeds on the bottom of the sea\",\n    \"video_name\": \"Ep5LuX_2gfI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there only a white haired old person in the video\",\n    \"video_name\": \"eQ0sW4hJ9zU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there only one person dancing in the video\",\n    \"video_name\": \"QX5e5Mla660\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there some leaves on a small tree\",\n    \"video_name\": \"KXMZHfCwTO0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there this sport at the winter olympics\",\n    \"video_name\": \"pMtu7fOHdII\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are there three person in the video\",\n    \"video_name\": \"aPI0nPvzJlE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is this dog  big \",\n    \"video_name\": \"Em4ekFj4XIs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is this dog a black and white\",\n    \"video_name\": \"Em4ekFj4XIs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this activity dangerous for close combating\",\n    \"video_name\": \"qlK-c7hRqcA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this area very shallow\",\n    \"video_name\": \"eMgC7I-GcgA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this competition a great difficulty factor\",\n    \"video_name\": \"paRAKx8svJ8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this dog a thin dog\",\n    \"video_name\": \"eQwLUJ3P7wI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is this girl practicing\",\n    \"video_name\": \"kMtjk1KFvXQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the difficulty of the sport high\",\n    \"video_name\": \"pcLGX5qvUcI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this lady sitting or standing\",\n    \"video_name\": \"CDncYtx6Lwc\",\n    \"answer\": \"sitting\"\n  },\n  {\n    \"question\": \"is this person a boy\",\n    \"video_name\": \"laU1Hvm5Dis\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is this person a girl\",\n    \"video_name\": \"laU1Hvm5Dis\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this performance a great difficulty factor\",\n    \"video_name\": \"PFeerDZbGn8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this sport appearing at the winter olympics\",\n    \"video_name\": \"pcLGX5qvUcI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this sport helpful for physical exercise\",\n    \"video_name\": \"prBiREYQ2vQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this sport used to use sweaters\",\n    \"video_name\": \"7IwHwDuQdyU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is this woman cooking dumplings\",\n    \"video_name\": \"kkji9hespu0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is this woman cooking noodles\",\n    \"video_name\": \"kkji9hespu0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this woman wearing a red coat\",\n    \"video_name\": \"kpOAGEYHts8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is this woman wearing a white coat\",\n    \"video_name\": \"kpOAGEYHts8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is this woman wearing an ear nail on her ear\",\n    \"video_name\": \"w4pO-1-FG5w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is this woman wearing earrings on her ears\",\n    \"video_name\": \"w4pO-1-FG5w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is wrestling dengerous\",\n    \"video_name\": \"HDt5z5Y0opo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"isn't the person in the video a disabled person\",\n    \"video_name\": \"0lbv0AE5gJQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black  black\",\n    \"video_name\": \"40BPDWojssc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"please guess where the events happened in the video\",\n    \"video_name\": \"eJc8bebOF2A\",\n    \"answer\": \"sports meeting\"\n  },\n  {\n    \"question\": \"please tell me where the time in the video took place.\",\n    \"video_name\": \"EQrcCmgraa8\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"is the black man cleaning the glass\",\n    \"video_name\": \"fQ1OuD7x3to\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"what happened when the person in white dress lost the guessing game. \",\n    \"video_name\": \"mek9Zodu8LM\",\n    \"answer\": \"take off skirt\"\n  },\n  {\n    \"question\": \"which hand does the man holds stick in\",\n    \"video_name\": \"SNja9iUdAiI\",\n    \"answer\": \"right hand\"\n  },\n  {\n    \"question\": \"is everyone in the video man\",\n    \"video_name\": \"FaP7unySMOs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"which hand does the man wears a ring on\",\n    \"video_name\": \"meNgZdu8tIk\",\n    \"answer\": \"ones right hand\"\n  },\n  {\n    \"question\": \"what the relationship between the girl in soft red and the girl in red\",\n    \"video_name\": \"9G172wz5Yqo\",\n    \"answer\": \"mother and daughter\"\n  },\n  {\n    \"question\": \"what happened after the two ships approached\",\n    \"video_name\": \"DHjoAOus3xM\",\n    \"answer\": \"white men fall in water\"\n  },\n  {\n    \"question\": \"what is the news about\",\n    \"video_name\": \"AwcM25G1h-g\",\n    \"answer\": \"archery\"\n  },\n  {\n    \"question\": \"how is the difficulty of this activity\",\n    \"video_name\": \"2bQx5igckJc\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"what is the hairstyle of the person who removed the respirator\",\n    \"video_name\": \"2DCHbuwZNSs\",\n    \"answer\": \"long\"\n  },\n  {\n    \"question\": \"how about their performance\",\n    \"video_name\": \"ds3mAmUPxYA\",\n    \"answer\": \"marvellous\"\n  },\n  {\n    \"question\": \"what action does the black man in the shirtless jacket use\",\n    \"video_name\": \"iAes5SVj_Fg\",\n    \"answer\": \"leg clip\"\n  },\n  {\n    \"question\": \"what two animals appeare before the birdhouse appeared in the river\",\n    \"video_name\": \"Erje-PwY9hE\",\n    \"answer\": \"tortoise\"\n  },\n  {\n    \"question\": \"what animals are imitated by three people carrying white lights\",\n    \"video_name\": \"I2XqSiNerwg\",\n    \"answer\": \"spider\"\n  },\n  {\n    \"question\": \"what animation is on the kite\",\n    \"video_name\": \"7CM2OYr-Csw\",\n    \"answer\": \"vigny\"\n  },\n  {\n    \"question\": \"what is the man beside the basin doing\",\n    \"video_name\": \"JGxf-jke0e8\",\n    \"answer\": \"wash clothes\"\n  },\n  {\n    \"question\": \"what are everyone in red doing on the stage \",\n    \"video_name\": \"gCHo9vxfEzM\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are everyone wearing helmets doing in video\",\n    \"video_name\": \"J9KjpzKM8oc\",\n    \"answer\": \"play drifting air cushion\"\n  },\n  {\n    \"question\": \"what are all athletes doing in video\",\n    \"video_name\": \"zOI9SjQpc_Q\",\n    \"answer\": \"play football\"\n  },\n  {\n    \"question\": \"what is swimming around everyone in the video\",\n    \"video_name\": \"HJWwqjLf1I4\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what it is in front of the black boy\",\n    \"video_name\": \"ECZb_tQZ4Pg\",\n    \"answer\": \"gambling table\"\n  },\n  {\n    \"question\": \"what is the boy in pink doing\",\n    \"video_name\": \"54TIARWo-S8\",\n    \"answer\": \"long jump\"\n  },\n  {\n    \"question\": \"what is the guy with glasses doing\",\n    \"video_name\": \"KPRymTsPCC0\",\n    \"answer\": \"parade in desert\"\n  },\n  {\n    \"question\": \"what is the kid in blue and white stripes doing\",\n    \"video_name\": \"9TjPn_ejmFU\",\n    \"answer\": \"wood brush\"\n  },\n  {\n    \"question\": \"what is the girl in black doing in video\",\n    \"video_name\": \"cCimLg-8Dy4\",\n    \"answer\": \"play game\"\n  },\n  {\n    \"question\": \"what is the girl in blue doing\",\n    \"video_name\": \"EETygPQ-j08\",\n    \"answer\": \"pulley slippery\"\n  },\n  {\n    \"question\": \"what is the girl in black doing in video\",\n    \"video_name\": \"vqyQF-1Zc_E\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the man doing on the high platform in the video\",\n    \"video_name\": \"woI_zP55qWo\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what's the man in red doing\",\n    \"video_name\": \"dHKeNK1uWUg\",\n    \"answer\": \"musical instrument\"\n  },\n  {\n    \"question\": \"what's a man in white shoes doing\",\n    \"video_name\": \"EQrcCmgraa8\",\n    \"answer\": \"weightlifting\"\n  },\n  {\n    \"question\": \"what is the man wearing glasses doing in video\",\n    \"video_name\": \"V08Q-DbT0GQ\",\n    \"answer\": \"noodle\"\n  },\n  {\n    \"question\": \"what is the man in green doing in the vide\",\n    \"video_name\": \"u_vLZxgO9Rw\",\n    \"answer\": \"rope skipping\"\n  },\n  {\n    \"question\": \"what is the man in yellow t-shirt doing\",\n    \"video_name\": \"Erje-PwY9hE\",\n    \"answer\": \"skating canoe\"\n  },\n  {\n    \"question\": \"what is the man with the white beard doing in the video\",\n    \"video_name\": \"wCexKIuAj3A\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is the man standing at the table doing\",\n    \"video_name\": \"j6BCgvUusWs\",\n    \"answer\": \"gambling\"\n  },\n  {\n    \"question\": \"what are the people in wetsuits doing\",\n    \"video_name\": \"Ep5LuX_2gfI\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what is the man in wetsuits doing\",\n    \"video_name\": \"L5IbDi09Yb4\",\n    \"answer\": \"diving in sea\"\n  },\n  {\n    \"question\": \"what's the man doing in the middle of the road\",\n    \"video_name\": \"-p7aui3nAnc\",\n    \"answer\": \"street performance\"\n  },\n  {\n    \"question\": \"what's the man doing in the middle of the place in video\",\n    \"video_name\": \"6H0D8VaIli0\",\n    \"answer\": \"street dance\"\n  },\n  {\n    \"question\": \"what are people doing in the pool in video\",\n    \"video_name\": \"0iqx7o5WYW8\",\n    \"answer\": \"water polo\"\n  },\n  {\n    \"question\": \"what are people doing in the ground in video\",\n    \"video_name\": \"v6P6bBPBXYw\",\n    \"answer\": \"play football\"\n  },\n  {\n    \"question\": \"what's the man in the yellow life jacket doing in the video\",\n    \"video_name\": \"uktUeF3Fy7o\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what is the guy in red shorts doing at the start of the video\",\n    \"video_name\": \"Zt9qvbUnNhc\",\n    \"answer\": \"turn somersault\"\n  },\n  {\n    \"question\": \"what is the guy in white short sleeves doing at the start of the video\",\n    \"video_name\": \"QX5e5Mla660\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the guy in white hats sleeves doing in the video\",\n    \"video_name\": \"HTSxgkgecS0\",\n    \"answer\": \"tackle rubber rafts\"\n  },\n  {\n    \"question\": \"what's the guy doing with the jumpers\",\n    \"video_name\": \"jBlG0L_M96g\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"what are the people doing on the grass in the video\",\n    \"video_name\": \"6O4S2CpRB0A\",\n    \"answer\": \"tug of war\"\n  },\n  {\n    \"question\": \"what is the man on the stage undress doing in the video\",\n    \"video_name\": \"HDt5z5Y0opo\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what's a guy doing on a surfboard\",\n    \"video_name\": \"eMgC7I-GcgA\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what's the guy doing with the ping-pong ball in the video\",\n    \"video_name\": \"PBYg9ekd86w\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"what is the man in blue doing in the video\",\n    \"video_name\": \"HJWwqjLf1I4\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"what is the man in blue doing in the video\",\n    \"video_name\": \"HtG-i1CG2Qs\",\n    \"answer\": \"on toilet\"\n  },\n  {\n    \"question\": \"what is the man in blue t-shirt doing\",\n    \"video_name\": \"GgnM5RGNtDE\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the man in red doing\",\n    \"video_name\": \"LPRLV0eVgfY\",\n    \"answer\": \"swing\"\n  },\n  {\n    \"question\": \"what is the man in green doing in the video\",\n    \"video_name\": \"HQVSLlKhupk\",\n    \"answer\": \"play football\"\n  },\n  {\n    \"question\": \"what is the man in red doing\",\n    \"video_name\": \"m73Cod-PmMQ\",\n    \"answer\": \"prepare for skiing\"\n  },\n  {\n    \"question\": \"what is the man in white doing in video\",\n    \"video_name\": \"HWFosaUWoSI\",\n    \"answer\": \"climb escalator\"\n  },\n  {\n    \"question\": \"what is the man in white doing on the stage\",\n    \"video_name\": \"I9ficvPdpZg\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is the man in yellow doing in video\",\n    \"video_name\": \"H_JLBvfP88U\",\n    \"answer\": \"bullfight\"\n  },\n  {\n    \"question\": \"what is the man standing on the platform doing\",\n    \"video_name\": \"s9PkkDEl6aY\",\n    \"answer\": \"collar exercises\"\n  },\n  {\n    \"question\": \"what's the guy in purple number 2 doing in the video\",\n    \"video_name\": \"wnNiWoJxfSQ\",\n    \"answer\": \"polo\"\n  },\n  {\n    \"question\": \"what's the person in black and white doing\",\n    \"video_name\": \"VjMMwpgOCPo\",\n    \"answer\": \"uneven bars\"\n  },\n  {\n    \"question\": \"what's the man in the dark blue pants doing\",\n    \"video_name\": \"qGtUXGG78tM\",\n    \"answer\": \"pruning trees\"\n  },\n  {\n    \"question\": \"what's the guy in green shoes doing\",\n    \"video_name\": \"W2eumNilwuI\",\n    \"answer\": \"rope skipping\"\n  },\n  {\n    \"question\": \"what's the guy in the green swimming trunks doing\",\n    \"video_name\": \"LvTwJTvluHE\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what's the guy in the green uniform doing\",\n    \"video_name\": \"nP1Bk-vJgVg\",\n    \"answer\": \"play lacrosse\"\n  },\n  {\n    \"question\": \"what's the guy in the green vest doing\",\n    \"video_name\": \"gNUCdXGxp0w\",\n    \"answer\": \"riding\"\n  },\n  {\n    \"question\": \"what's the man in the mask doing\",\n    \"video_name\": \"ryFSf08mrkA\",\n    \"answer\": \"pruning shrubs\"\n  },\n  {\n    \"question\": \"what's the guy in orange doing in video\",\n    \"video_name\": \"WXH-Tj0-g4w\",\n    \"answer\": \"clean up garbage\"\n  },\n  {\n    \"question\": \"what's the guy in red and black doing\",\n    \"video_name\": \"oflwFZj9PNY\",\n    \"answer\": \"long jump\"\n  },\n  {\n    \"question\": \"what's the guy in red and white shoes doing\",\n    \"video_name\": \"kPn9NzU4W48\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"what's the guy in red shoes doing in video\",\n    \"video_name\": \"bYNQ0GrCt64\",\n    \"answer\": \"weightlifting\"\n  },\n  {\n    \"question\": \"what's the guy in red suit doing\",\n    \"video_name\": \"2-AMrzL7V-U\",\n    \"answer\": \"sports competition\"\n  },\n  {\n    \"question\": \"what's the man in the striped bikini doing in the video\",\n    \"video_name\": \"uJAL31wAD2A\",\n    \"answer\": \"drift\"\n  },\n  {\n    \"question\": \"what's the guy in green hat doing\",\n    \"video_name\": \"GsPE54bMFwE\",\n    \"answer\": \"sliding skateboard\"\n  },\n  {\n    \"question\": \"what's the guy in purple belt doing\",\n    \"video_name\": \"PSB1nM3QXxg\",\n    \"answer\": \"demonstrating\"\n  },\n  {\n    \"question\": \"what's the guy in purple hat doing\",\n    \"video_name\": \"Gfu8e6R6jUU\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the grown-ups on the side of the basin wearing on their hands\",\n    \"video_name\": \"JGxf-jke0e8\",\n    \"answer\": \"bracelet\"\n  },\n  {\n    \"question\": \"what are the advantages of this house\",\n    \"video_name\": \"HWFosaUWoSI\",\n    \"answer\": \"good afforested environment\"\n  },\n  {\n    \"question\": \"what is the athlete wearing red pants doing in the video\",\n    \"video_name\": \"huFOZ2BiM_k\",\n    \"answer\": \"gymnastics\"\n  },\n  {\n    \"question\": \"what are the benefits of diving\",\n    \"video_name\": \"woI_zP55qWo\",\n    \"answer\": \"relieve stress\"\n  },\n  {\n    \"question\": \"what are the benefits of water sled movement\",\n    \"video_name\": \"Vxw3yFCV2iA\",\n    \"answer\": \"displacement pressure\"\n  },\n  {\n    \"question\": \"what's the guy in the black suit doing with the tires\",\n    \"video_name\": \"_jV5sAOOHLk\",\n    \"answer\": \"blow up\"\n  },\n  {\n    \"question\": \"what's the black athlete doing\",\n    \"video_name\": \"cK0-WcGXacQ\",\n    \"answer\": \"discus throwing\"\n  },\n  {\n    \"question\": \"what's the blonde doing\",\n    \"video_name\": \"2bQx5igckJc\",\n    \"answer\": \"braid\"\n  },\n  {\n    \"question\": \"what's the boy in yellow doing\",\n    \"video_name\": \"7lxP-hWFA24\",\n    \"answer\": \"ride bicycle\"\n  },\n  {\n    \"question\": \"what's the boy in blue doing\",\n    \"video_name\": \"9k19UUJtldg\",\n    \"answer\": \"play table tennis\"\n  },\n  {\n    \"question\": \"what's the boy in blue doing\",\n    \"video_name\": \"46NS8dT15Hw\",\n    \"answer\": \"play toy\"\n  },\n  {\n    \"question\": \"what are the round ones\",\n    \"video_name\": \"kpOAGEYHts8\",\n    \"answer\": \"chips\"\n  },\n  {\n    \"question\": \"what is the color of the hair of the man in the green swimming trunks\",\n    \"video_name\": \"LvTwJTvluHE\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what are the contestants doing in the video\",\n    \"video_name\": \"Jhcis4S2Vsg\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are the curls in the video doing\",\n    \"video_name\": \"v6DdLg_Xnkg\",\n    \"answer\": \"wear contact lenses\"\n  },\n  {\n    \"question\": \"what's at the feet of two men\",\n    \"video_name\": \"Df7AnfIEhYw\",\n    \"answer\": \"air cushion\"\n  },\n  {\n    \"question\": \"what's the girl in pink doing\",\n    \"video_name\": \"28WDlVOgslg\",\n    \"answer\": \"manicure\"\n  },\n  {\n    \"question\": \"what is the girl on the right side of video doing\",\n    \"video_name\": \"CvbL36Y8hN0\",\n    \"answer\": \"operation guidance\"\n  },\n  {\n    \"question\": \"what's the girl with the glasses doing\",\n    \"video_name\": \"ECZb_tQZ4Pg\",\n    \"answer\": \"licensing\"\n  },\n  {\n    \"question\": \"what's a woman with a long braid doing\",\n    \"video_name\": \"IxaBEVd2PZM\",\n    \"answer\": \"ballet\"\n  },\n  {\n    \"question\": \"what are the instruments played by a little boy\",\n    \"video_name\": \"-Fk62y-1WHo\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what's the lady in white doing\",\n    \"video_name\": \"Pho9Hgdvc0g\",\n    \"answer\": \"riding unicycle\"\n  },\n  {\n    \"question\": \"what are the cheerleaders doing\",\n    \"video_name\": \"SYh-j9bK_ls\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what's the blonde at the end of the video doing\",\n    \"video_name\": \"7BUr2cN8CLs\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is the letter that appears at the beginning of the video\",\n    \"video_name\": \"3dWw9GLcOeA\",\n    \"answer\": \"rt\"\n  },\n  {\n    \"question\": \"what is the long-haired woman doing in the video\",\n    \"video_name\": \"UvOEuhS0V3E\",\n    \"answer\": \"rouge lips\"\n  },\n  {\n    \"question\": \"what's the guy with long hair doing\",\n    \"video_name\": \"eQwLUJ3P7wI\",\n    \"answer\": \"walk dog\"\n  },\n  {\n    \"question\": \"what's the guy doing with the microphone\",\n    \"video_name\": \"ZsVfa3JIUNU\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is the man in the bullfight doing\",\n    \"video_name\": \"HowkVy5fOyk\",\n    \"answer\": \"bullfight\"\n  },\n  {\n    \"question\": \"what is the man running in the video doing\",\n    \"video_name\": \"f1d7_TKXNYQ\",\n    \"answer\": \"bids gun\"\n  },\n  {\n    \"question\": \"what is player 1 doing in the video\",\n    \"video_name\": \"CfqnHsp6olc\",\n    \"answer\": \"gatekeepers\"\n  },\n  {\n    \"question\": \"what is the number on the clothes worn by people in red pants\",\n    \"video_name\": \"Co_cpZWbzFk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"what are the other functions of the car in the video\",\n    \"video_name\": \"brJIpRGcBFU\",\n    \"answer\": \"pruning branches\"\n  },\n  {\n    \"question\": \"what's the man doing on the air cushion\",\n    \"video_name\": \"JY9oOSfjj_E\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is the person holding the fork in the video doing\",\n    \"video_name\": \"B4Zp5XN97Gc\",\n    \"answer\": \"fork\"\n  },\n  {\n    \"question\": \"what is the man with a dog doing\",\n    \"video_name\": \"-eJT11AuOa0\",\n    \"answer\": \"walk dog\"\n  },\n  {\n    \"question\": \"what is the man in black doing in the snow\",\n    \"video_name\": \"SB0dU5oDvaE\",\n    \"answer\": \"shovel snow\"\n  },\n  {\n    \"question\": \"what's the guy with the blue pants doing in the first picture\",\n    \"video_name\": \"Mk7Yjq1U8OI\",\n    \"answer\": \"play volleyball\"\n  },\n  {\n    \"question\": \"what does the blue guy use to peel it\",\n    \"video_name\": \"FWZ6wgaJ_L4\",\n    \"answer\": \"paring knife\"\n  },\n  {\n    \"question\": \"what's the guy in camouflage doing\",\n    \"video_name\": \"A_Sr0mCX2rI\",\n    \"answer\": \"touch back of brain\"\n  },\n  {\n    \"question\": \"what's the man in orange doing\",\n    \"video_name\": \"GcjzvBatqb4\",\n    \"answer\": \"take exercise\"\n  },\n  {\n    \"question\": \"what's the guy in pink suit doing\",\n    \"video_name\": \"-8SgY4vW4xM\",\n    \"answer\": \"shave dog\"\n  },\n  {\n    \"question\": \"what's the guy in purple pants doing\",\n    \"video_name\": \"28LdZLfdmMQ\",\n    \"answer\": \"water gliding\"\n  },\n  {\n    \"question\": \"what is the man in blue shorts doing in the video\",\n    \"video_name\": \"H0dG_1Vgw4Q\",\n    \"answer\": \"weightlifting\"\n  },\n  {\n    \"question\": \"what's the guy in black jacket doing\",\n    \"video_name\": \"H2fG7JRRMAs\",\n    \"answer\": \"scoreboard\"\n  },\n  {\n    \"question\": \"what's the man in the blue and white grid doing\",\n    \"video_name\": \"16bJAOf1SJI\",\n    \"answer\": \"play ball\"\n  },\n  {\n    \"question\": \"what's the guy in the blue swimming trunks doing\",\n    \"video_name\": \"Gs79qz286QE\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what's the man in the sword suit doing\",\n    \"video_name\": \"3LwQ2yq85LU\",\n    \"answer\": \"practice fencing\"\n  },\n  {\n    \"question\": \"what's the man doing in the middle of the field\",\n    \"video_name\": \"JsPIzRsUtlE\",\n    \"answer\": \"tug of war\"\n  },\n  {\n    \"question\": \"what's the man in the gold coat doing\",\n    \"video_name\": \"zV08tITKFMM\",\n    \"answer\": \"bullfight\"\n  },\n  {\n    \"question\": \"what's the man in the green suit doing\",\n    \"video_name\": \"OUxgs_QlPHE\",\n    \"answer\": \"dive preparation\"\n  },\n  {\n    \"question\": \"what's the man in the in the plaid coat doing at first\",\n    \"video_name\": \"rGOOlcdpfLg\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what's the guy in the orange life jacket doing\",\n    \"video_name\": \"zH1MiuiTsx8\",\n    \"answer\": \"rowing\"\n  },\n  {\n    \"question\": \"what's the guy with the pigtails doing\",\n    \"video_name\": \"SNja9iUdAiI\",\n    \"answer\": \"fencing training\"\n  },\n  {\n    \"question\": \"what do people in purple and beige wash\",\n    \"video_name\": \"PJ7HOHdOdy4\",\n    \"answer\": \"shoelace\"\n  },\n  {\n    \"question\": \"what's the man in the red bathing suit doing\",\n    \"video_name\": \"kTqt7ry3eVM\",\n    \"answer\": \"diving\"\n  },\n  {\n    \"question\": \"who's in the arm-wrestling ring\",\n    \"video_name\": \"ldAHwbF8uWI\",\n    \"answer\": \"press media\"\n  },\n  {\n    \"question\": \"what's the guy in striped pants doing\",\n    \"video_name\": \"QPEAp7nf2Tk\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what's the bald guy doing in the video\",\n    \"video_name\": \"m731tx8N5-Y\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what is the man on the mattress doing\",\n    \"video_name\": \"lYP05IRcOPE\",\n    \"answer\": \"drift\"\n  },\n  {\n    \"question\": \"what's on the right wall of the guy in the video\",\n    \"video_name\": \"uw9x69DT8_g\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what is the man on the sports equipment doing in the video\",\n    \"video_name\": \"0mNZfG6CL74\",\n    \"answer\": \"gymnastics\"\n  },\n  {\n    \"question\": \"what does the sitting man wear around his neck\",\n    \"video_name\": \"RtF6TGqwa7Y\",\n    \"answer\": \"necklace\"\n  },\n  {\n    \"question\": \"what's the man in black helmets and suit on video doing\",\n    \"video_name\": \"UJGK_TKrl4E\",\n    \"answer\": \"fencing\"\n  },\n  {\n    \"question\": \"what is the foot of the person wearing the red pants at the beginning of the video\",\n    \"video_name\": \"vFO70WwrQgE\",\n    \"answer\": \"parking lot\"\n  },\n  {\n    \"question\": \"what's the skater doing\",\n    \"video_name\": \"pcLGX5qvUcI\",\n    \"answer\": \"ice hockey\"\n  },\n  {\n    \"question\": \"what is the person with the rope on his back doing\",\n    \"video_name\": \"Jdu5AqaWfz8\",\n    \"answer\": \"play bungee jumping\"\n  },\n  {\n    \"question\": \"what is the performer doing in the video\",\n    \"video_name\": \"f6vZaMgqDvQ\",\n    \"answer\": \"artistic gymnastics\"\n  },\n  {\n    \"question\": \"what are the athletes doing at first in the video\",\n    \"video_name\": \"4H9MMsj4mcM\",\n    \"answer\": \"riding\"\n  },\n  {\n    \"question\": \"what's in front of the athlete in green\",\n    \"video_name\": \"lOZ9bfzq89o\",\n    \"answer\": \"pads\"\n  },\n  {\n    \"question\": \"what is the shape of the curtains in the video\",\n    \"video_name\": \"nYl_tYmijlM\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what is the shape of the obstacle in the video\",\n    \"video_name\": \"otMw5GJWYWs\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what's the man with the short hair doing\",\n    \"video_name\": \"J1QB1y3vXLY\",\n    \"answer\": \"tattoo\"\n  },\n  {\n    \"question\": \"what are the disadvantages of the new lawn mower\",\n    \"video_name\": \"eQ0sW4hJ9zU\",\n    \"answer\": \"need to connect wire\"\n  },\n  {\n    \"question\": \"what are the staff doing\",\n    \"video_name\": \"K1OsjA-f17E\",\n    \"answer\": \"car wash\"\n  },\n  {\n    \"question\": \"what are the hairstyles of sumo wrestlers in the video\",\n    \"video_name\": \"yRQpolWhJ6A\",\n    \"answer\": \"hair of bun\"\n  },\n  {\n    \"question\": \"what does the surfer use to connect to the motorboat\",\n    \"video_name\": \"eMgC7I-GcgA\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what are the tools used for waterskiing\",\n    \"video_name\": \"Vxw3yFCV2iA\",\n    \"answer\": \"sports boat\"\n  },\n  {\n    \"question\": \"what tools are used in this sports competition\",\n    \"video_name\": \"FxpP7lqvm30\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is the tool for brushing shoes\",\n    \"video_name\": \"HX6BeHLQh5s\",\n    \"answer\": \"shoe polisher\"\n  },\n  {\n    \"question\": \"what's the man with the towel doing\",\n    \"video_name\": \"8vDSV9ruYlc\",\n    \"answer\": \"wallpaper\"\n  },\n  {\n    \"question\": \"what is the trainer in video doing\",\n    \"video_name\": \"AtbTioB1_Kw\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what's underneath the two men in the video\",\n    \"video_name\": \"d4sX1jnL4BY\",\n    \"answer\": \"seabed\"\n  },\n  {\n    \"question\": \"what is the mat on the grass when the two girls perform\",\n    \"video_name\": \"k-I4zLbgdpM\",\n    \"answer\": \"gymnastic mat\"\n  },\n  {\n    \"question\": \"what are the types of pants of the man repairing tires\",\n    \"video_name\": \"CDecXoRSpIc\",\n    \"answer\": \"jeans\"\n  },\n  {\n    \"question\": \"what are the female athletes doing\",\n    \"video_name\": \"EPsSfOEd3BU\",\n    \"answer\": \"put shot\"\n  },\n  {\n    \"question\": \"what kind of race is a woman with purple hair\",\n    \"video_name\": \"ETbbYC0OhL0\",\n    \"answer\": \"white person\"\n  },\n  {\n    \"question\": \"what is the woman on the stage doing\",\n    \"video_name\": \"1kkc9hDshP4\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the woman wearing glasses doing\",\n    \"video_name\": \"ILmZg0vz0Hg\",\n    \"answer\": \"decorate some boxes\"\n  },\n  {\n    \"question\": \"what are they doing in the middle of the video\",\n    \"video_name\": \"_l251ZuOCYU\",\n    \"answer\": \"play hockey\"\n  },\n  {\n    \"question\": \"what are two blondes doing\",\n    \"video_name\": \"8teo_0gxzgk\",\n    \"answer\": \"car wash\"\n  },\n  {\n    \"question\": \"what's the girl in the light blue dress doing\",\n    \"video_name\": \"E_UkQGk7QAE\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what's the girl in the light purple doing\",\n    \"video_name\": \"EXPYu9bfNcE\",\n    \"answer\": \"pet beauty\"\n  },\n  {\n    \"question\": \"what are the women in black doing at the beginning\",\n    \"video_name\": \"eLh51DwDp-E\",\n    \"answer\": \"practice ballet\"\n  },\n  {\n    \"question\": \"what is the woman wearing a life jacket in video doing\",\n    \"video_name\": \"6xBh3vzhgo4\",\n    \"answer\": \"skater surfers\"\n  },\n  {\n    \"question\": \"what is the brand of computer in the video\",\n    \"video_name\": \"CuLC5G7yWxA\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"what's in the audience\",\n    \"video_name\": \"KWpATsiXF_M\",\n    \"answer\": \"many people are looking\"\n  },\n  {\n    \"question\": \"what might the man in the video be doing while shaving his legs\",\n    \"video_name\": \"2k-qlZxc9l4\",\n    \"answer\": \"shower\"\n  },\n  {\n    \"question\": \"what can swimming do for exercise\",\n    \"video_name\": \"8kaQq1mR2ys\",\n    \"answer\": \"physical energy\"\n  },\n  {\n    \"question\": \"what does this exercise do for exercise\",\n    \"video_name\": \"6VXQoPNphgI\",\n    \"answer\": \"body coordination\"\n  },\n  {\n    \"question\": \"what could this video be\",\n    \"video_name\": \"eQ0sW4hJ9zU\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"which category of sports does this sport belong to\",\n    \"video_name\": \"pKOy4HJwCqo\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what color is all bicycles\",\n    \"video_name\": \"iZT4XgzUHm4\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the man's pants in a black vest\",\n    \"video_name\": \"ut1AoOzqL4k\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is most of the cups on the table in the video\",\n    \"video_name\": \"Ye_uVlSo1HI\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the dress that helps the blindfold\",\n    \"video_name\": \"cCimLg-8Dy4\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the dancer's clothes\",\n    \"video_name\": \"EQWdo0FcKAo\",\n    \"answer\": \"black and white\"\n  },\n  {\n    \"question\": \"what color is the girl's shoes\",\n    \"video_name\": \"EBw5-KVV_PU\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the tattoo of the tattoo worker\",\n    \"video_name\": \"BFChXuwZ4wo\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the gym mat in video\",\n    \"video_name\": \"VjMMwpgOCPo\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the icon appear at the beginning of video\",\n    \"video_name\": \"3dWw9GLcOeA\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the pants worn by high jumpers\",\n    \"video_name\": \"WGUzmra3h_w\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the costumes of the performers on the stage\",\n    \"video_name\": \"BhgcXqWQhkQ\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the shoes of person wearing a white vest\",\n    \"video_name\": \"qSP3_C7QWpU\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the stools in the video\",\n    \"video_name\": \"_zqj6daJo9U\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what color is the trousers of the man in red\",\n    \"video_name\": \"4j_LRkB4T6c\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"hat color is the team uniform of the two teams in the competition\",\n    \"video_name\": \"b_c17BmZCCs\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color bag does the man in yellow carry\",\n    \"video_name\": \"mxn6WcmdNpA\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color of swimming trunks does the man wear\",\n    \"video_name\": \"e0yu4WgiZUM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color bucket does spiderman carry\",\n    \"video_name\": \"3JBUWRKezUI\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what colour hat does the man in purple pants wear\",\n    \"video_name\": \"28LdZLfdmMQ\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what color does the lead man wear\",\n    \"video_name\": \"PTwe2IIo3To\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color dress does the yellow hair girl wear\",\n    \"video_name\": \"9snScUyE8_4\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what colour of clothes does the person being taught wear\",\n    \"video_name\": \"2UhbDOd43zU\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color clothes does the person who took the photo on his mobile phone wear\",\n    \"video_name\": \"pVoM_kUQ4_E\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color dresses does women wear in the video\",\n    \"video_name\": \"2CegApogJd4\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color does the first wrestler wear\",\n    \"video_name\": \"0Um-HgjcnXY\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color dress does the grandfather in wheelchair wear\",\n    \"video_name\": \"fSBX-gjPblw\",\n    \"answer\": \"red and white\"\n  },\n  {\n    \"question\": \"what color of clothes do the people wearing doll clothes wear\",\n    \"video_name\": \"2vrR_5u2buU\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color clothes does the guy who started hitting wear\",\n    \"video_name\": \"pMtu7fOHdII\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color clothes do the boys in grey wear\",\n    \"video_name\": \"PSB1nM3QXxg\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color clothes do the elderly wear in the video\",\n    \"video_name\": \"jt-Vnap5KP4\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color clothes do the girls wear in the video\",\n    \"video_name\": \"d09u-0k3LdE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color clothes do the people in the white dress wear across the fields\",\n    \"video_name\": \"kYkvyRKxwfY\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color clothes do the people on the left side of the bald dress wear\",\n    \"video_name\": \"3Rzyta8op6s\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color clothes do the fallen players wear\",\n    \"video_name\": \"2uUNiV8xmEo\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color of clothes does the person giving the awards wear\",\n    \"video_name\": \"kTqt7ry3eVM\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color jacket does the little girl wear\",\n    \"video_name\": \"f8SWWURHV1M\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what colour does the man in purple paint the fence\",\n    \"video_name\": \"0w4OkBenR_k\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color does the boy wear\",\n    \"video_name\": \"FKtYeu2bJpA\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color dog does the black-and-white dog rush to\",\n    \"video_name\": \"Ki13JIVwMdk\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color earrings do people in yellow wear\",\n    \"video_name\": \"mxn6WcmdNpA\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color gloves do people in a submersible suit wear \",\n    \"video_name\": \"2DCHbuwZNSs\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color gloves does person in red clothes wear in red clothes\",\n    \"video_name\": \"390iVq_urQM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color gloves does person in grey clothes wear\",\n    \"video_name\": \"N9VOdVOiPNM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color hair do women wear hair\",\n    \"video_name\": \"2bQx5igckJc\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color hat is worn on the 24th wearing white\",\n    \"video_name\": \"9FQ-VLkCZo8\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color hat does the man in blue wear\",\n    \"video_name\": \"lPw_BRbPw5s\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color hat does the man in black wear\",\n    \"video_name\": \"fQ1OuD7x3to\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color hat does the man in bblack coat wear\",\n    \"video_name\": \"FaP7unySMOs\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color helmet does the athlete who fell in the end of the video wear\",\n    \"video_name\": \"3Nd3Aai1bVA\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color horse does the person in blue ride\",\n    \"video_name\": \"DUi-hLMpQQo\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the fingernails of a woman with curly hair\",\n    \"video_name\": \"7LbBmVX33I4\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what color is the suit of the man in the black hat\",\n    \"video_name\": \"7OcxT66BxX0\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the glasses of a man with a beard\",\n    \"video_name\": \"wE9sQbGdeAk\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what color is the musical instrument\",\n    \"video_name\": \"-Fk62y-1WHo\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is a ruler\",\n    \"video_name\": \"vHnZ3NrZER0\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is her hair in the video\",\n    \"video_name\": \"_a527xEzhkw\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the air gun in the video\",\n    \"video_name\": \"0jdSl5-lMpY\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the apron worn by the person wearing yellow clothes\",\n    \"video_name\": \"hRsn4nesCQo\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the archery site\",\n    \"video_name\": \"8AUTKSqcmiM\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the athlete's socks\",\n    \"video_name\": \"tzP0lKSUv_o\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is behind the table\",\n    \"video_name\": \"40BPDWojssc\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the background wall\",\n    \"video_name\": \"Au4PfoK7hyw\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the bag in front of the fertilizer\",\n    \"video_name\": \"an1R4BP97JY\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the bag behind the black man in the video\",\n    \"video_name\": \"V90CMuokf0c\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the bag on the ground\",\n    \"video_name\": \"WINtiw-_3vg\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what color is the basin in the video\",\n    \"video_name\": \"AB480dHyDeM\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the basin in which the person in the video washes clothes\",\n    \"video_name\": \"0lbv0AE5gJQ\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the bath liquid\",\n    \"video_name\": \"W9H2qVnIWXs\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what colour is the beard of the man in black\",\n    \"video_name\": \"nvcMYiZhUuo\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what colour is the beaten dog\",\n    \"video_name\": \"8_fjIZkNHms\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the boy's clothes in the video\",\n    \"video_name\": \"Flm_SCK10GQ\",\n    \"answer\": \"red and white\"\n  },\n  {\n    \"question\": \"what color is the cabinet in video\",\n    \"video_name\": \"Z-sWZUYL0ZU\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the cake before it is coated with orange skin\",\n    \"video_name\": \"ej_fSoVO0R8\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the car rided by the person in red\",\n    \"video_name\": \"AjizhJc_reI\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the car parked on the road in video\",\n    \"video_name\": \"YHqFNnhaFAY\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the car driving in the video\",\n    \"video_name\": \"hIYN8cC3pEA\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the chip out\",\n    \"video_name\": \"WPYQ27GjFKc\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what colour is the dress of the baby with short hair\",\n    \"video_name\": \"vBOFzuS-Djo\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what color is the clothes of the man with a tie\",\n    \"video_name\": \"HX6BeHLQh5s\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the coat of the man wearing blue black trousers\",\n    \"video_name\": \"iAes5SVj_Fg\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the collar of the person in white\",\n    \"video_name\": \"_QBTD1bLSI0\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is the color of the dresser's clothes at the beginning of the video\",\n    \"video_name\": \"rMj2JWNJzkw\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the contact lens box\",\n    \"video_name\": \"diY-XBT5cD4\",\n    \"answer\": \"blue and green\"\n  },\n  {\n    \"question\": \"what color is the curler used by the lady wearing a gray dress\",\n    \"video_name\": \"wcxEkMoOmBk\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the decorating umbrella on the cup\",\n    \"video_name\": \"7H1KylJRii8\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the decoration on the wall in the video\",\n    \"video_name\": \"AB5cWhlQ0Kk\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the dog behind the little boy\",\n    \"video_name\": \"raxeBxPQqlk\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the dog in the first race\",\n    \"video_name\": \"auO4r3De6vc\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the dog under the table in the video\",\n    \"video_name\": \"raxeBxPQqlk\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the dress for the man with short hair\",\n    \"video_name\": \"BWAedc31WdY\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color is the dress in the video\",\n    \"video_name\": \"Aen-RfnlK3A\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what is the color of the clothes for brunette girls\",\n    \"video_name\": \"CaeZoHNHul0\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color does the people who cook wear\",\n    \"video_name\": \"bRgvAHL3dJk\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the curly woman's clothes in the video\",\n    \"video_name\": \"v6DdLg_Xnkg\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the person wearing a dog\",\n    \"video_name\": \"TiQcZKml5Bs\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the female athlete's clothes\",\n    \"video_name\": \"EPsSfOEd3BU\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the dress of the weightlifting person\",\n    \"video_name\": \"bYNQ0GrCt64\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what color is the dress of the woman with a long braid\",\n    \"video_name\": \"IxaBEVd2PZM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the dress of the man with no.7 two in the video\",\n    \"video_name\": \"v6P6bBPBXYw\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the drum of the person who is on the upper body\",\n    \"video_name\": \"4_jDgRsOGvY\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the dustpan that a red dress man carries\",\n    \"video_name\": \"uJ4OZfCjViM\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the electric drill in the video\",\n    \"video_name\": \"hGPCJb2g1tQ\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the glasses of the man in red\",\n    \"video_name\": \"x6pYeqq3O08\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the noodles cooked by this woman\",\n    \"video_name\": \"kkji9hespu0\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the first athlete wearing in the video\",\n    \"video_name\": \"4LpqPUWHH5k\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color dress does the first person wear at the beginning of the video\",\n    \"video_name\": \"Av0VsTxJd78\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the clothes of the first person to appear in the video\",\n    \"video_name\": \"3oy4P1gyU4k\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the flag on the flagpole\",\n    \"video_name\": \"9UvVeUYQLgA\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the flag raised by the referee before the game starts\",\n    \"video_name\": \"0mNZfG6CL74\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the floor tile in the video\",\n    \"video_name\": \"z6l9utYlIrw\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the flower in the bottle\",\n    \"video_name\": \"EXPYu9bfNcE\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what color is the frying pan in the video\",\n    \"video_name\": \"0e5zwJywyqk\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"what color is the girl's glove in the video\",\n    \"video_name\": \"_G4EVIG9YaE\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what color is the girl's pants in orange\",\n    \"video_name\": \"iKclcQEl4zI\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the dancing girl's pants\",\n    \"video_name\": \"bWZkD_s1940\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what color is the glove worn by the person in green\",\n    \"video_name\": \"Y_nyVFn70Lk\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the glove worn by the white man\",\n    \"video_name\": \"afMQA352X_A\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the glove worn by the person wearing black shoes\",\n    \"video_name\": \"kPn9NzU4W48\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in grey coat\",\n    \"video_name\": \"-EIsT868Trw\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the grey coat of the man's hair\",\n    \"video_name\": \"VfhDSTKBwgc\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the ground in the center of the site\",\n    \"video_name\": \"7rwDYzqfGgU\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the hair clip of the person in blue\",\n    \"video_name\": \"16czjUF1AA4\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the hair of the girl in purple pants\",\n    \"video_name\": \"e0yLhjXQIXI\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the hair of the hostess\",\n    \"video_name\": \"AwcM25G1h-g\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the little boy\",\n    \"video_name\": \"09ocXmGF-T4\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the hair of the man throwing javelin\",\n    \"video_name\": \"WdtytUagoJs\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the hair of the man with glasses\",\n    \"video_name\": \"IToczVhbOc0\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the model\",\n    \"video_name\": \"P8S8PIyPXxY\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in black vest\",\n    \"video_name\": \"H0dG_1Vgw4Q\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person wearing black and white coat\",\n    \"video_name\": \"r2H-cnti8GI\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person wearing broken flower\",\n    \"video_name\": \"Y7aacWy3WDo\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person wearing gray helmet\",\n    \"video_name\": \"QoRlOa6R1LY\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person wearing red hat\",\n    \"video_name\": \"9SIPJd4Hls4\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the hair of the person wearing white sleeve\",\n    \"video_name\": \"qgUHRwC3194\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person wearing white shirt\",\n    \"video_name\": \"QJ5xv6oj1sk\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person wearing white suit\",\n    \"video_name\": \"ZBP_mLWROZU\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the rose - red girl\",\n    \"video_name\": \"9G172wz5Yqo\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the man in white \",\n    \"video_name\": \"e-Xf13exY4E\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in blue short sleeves\",\n    \"video_name\": \"GgnM5RGNtDE\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person in the blue swimsuit\",\n    \"video_name\": \"Gs79qz286QE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hair of the person wearing a black clothes\",\n    \"video_name\": \"G4-qjGC_3VA\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person wearing a red dress\",\n    \"video_name\": \"OccEAILrU7M\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the tattoo artist's hair\",\n    \"video_name\": \"aAz3YL2RMr4\",\n    \"answer\": \"golden\"\n  },\n  {\n    \"question\": \"what color is the hair of the person who appeared at the beginning of the video\",\n    \"video_name\": \"4LF0hL-mgks\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hairdresser wear\",\n    \"video_name\": \"faqijFZWQlo\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the handle in the video\",\n    \"video_name\": \"fvEaC-fTR4A\",\n    \"answer\": \"blue and red\"\n  },\n  {\n    \"question\": \"what color is the handle of the chopper for chopping wood\",\n    \"video_name\": \"dZsk5Dp_5FE\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what color is the hat of the boy in black clothes\",\n    \"video_name\": \"ECZb_tQZ4Pg\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hat of the person in yellow\",\n    \"video_name\": \"zYjLA99koBk\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hat of the man in the blue coat\",\n    \"video_name\": \"oGU7m7rCZ-Y\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hat of the man in red pants\",\n    \"video_name\": \"i8hNrK3r_MY\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hat of the old man wearing a black sweater in the video\",\n    \"video_name\": \"V-46E7jMm-Y\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the hat worn by a man in a blue coat\",\n    \"video_name\": \"YvPoAOrjX5I\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the hat worn by white short sleeves\",\n    \"video_name\": \"C7yd6yEkxXE\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what color is the helmet of the man in red uniform\",\n    \"video_name\": \"nP1Bk-vJgVg\",\n    \"answer\": \"white\"\n  },\n  {\n    \"question\": \"what color is the hair hoop worn on the head of the sparring person\",\n    \"video_name\": \"3kxP8qOtym8\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the horse's leg on which the person wearing no. 3 black clothes sits\",\n    \"video_name\": \"wnNiWoJxfSQ\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what color is the horse riding on the video\",\n    \"video_name\": \"4H9MMsj4mcM\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the human nail in pink\",\n    \"video_name\": \"-8SgY4vW4xM\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what color is the human surfboard in the video\",\n    \"video_name\": \"aPI0nPvzJlE\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what color is the ice cream that people eat in blue clothes\",\n    \"video_name\": \"rCLGy2NA0aE\",\n    \"answer\": \"black\"\n  },\n  {\n    \"question\": \"what color is the indoor gymnastic mat in the video\",\n    \"video_name\": \"6VXQoPNphgI\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what color is the ironing table\",\n    \"video_name\": \"8lMncYsbrWw\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"is the bet used during gambling\",\n    \"video_name\": \"IGPZFun1Ok4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"what is the color of the first one's dress who digs shovel to wear\",\n    \"video_name\": \"B4Zp5XN97Gc\",\n    \"answer\": \"red\"\n  },\n  {\n    \"question\": \"what does the man with the shoe put his foot on\",\n    \"video_name\": \"KT8DUDFc3Xg\",\n    \"answer\": \"small stool\"\n  },\n  {\n    \"question\": \"how dangrous is assembling steel houses\",\n    \"video_name\": \"H_IfIsKQ3Zw\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"how dangerous is playing baseball\",\n    \"video_name\": \"I1iUbyjWy7k\",\n    \"answer\": \"lower\"\n  },\n  {\n    \"question\": \"what's under the athletes' butts in the game\",\n    \"video_name\": \"JH9qiuPCkY4\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"are all dancers dancing together\",\n    \"video_name\": \"EQWdo0FcKAo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are all men smoking\",\n    \"video_name\": \"Bgi2Y85Mbwk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are all the people in video men\",\n    \"video_name\": \"PBYg9ekd86w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are all the contestants men\",\n    \"video_name\": \"bBRzBh0gAZQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are all the men playing football on the table in the video\",\n    \"video_name\": \"fvEaC-fTR4A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are all the participants women\",\n    \"video_name\": \"bBRzBh0gAZQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are all the people in the video women\",\n    \"video_name\": \"FaP7unySMOs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are all the people in the video skiing in a car\",\n    \"video_name\": \"Av0VsTxJd78\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are all the people on the stage wearing black clothes\",\n    \"video_name\": \"ds3mAmUPxYA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are all the people on the stage wearing white clothes\",\n    \"video_name\": \"ds3mAmUPxYA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are all the people running in the video\",\n    \"video_name\": \"TXSOSSGJYO0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are all the people wearing short sleeves in the video\",\n    \"video_name\": \"Pjnuoa4o55c\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are all the people with helmets in the video indoors\",\n    \"video_name\": \"J9KjpzKM8oc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are all the people with helmets outdoors in the video\",\n    \"video_name\": \"J9KjpzKM8oc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are all the rafts of the same color\",\n    \"video_name\": \"elD1P_1oiUk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are all the people in the video women\",\n    \"video_name\": \"BjjN_aq_wq4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are all the women playing football on the table in the video\",\n    \"video_name\": \"fvEaC-fTR4A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are all two of them sitting\",\n    \"video_name\": \"DOI6tsATsE4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are all women in the screen\",\n    \"video_name\": \"elD1P_1oiUk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are athletes wearing green clothes trained indoors\",\n    \"video_name\": \"lOZ9bfzq89o\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are athletes wearing green clothes trained outdoors\",\n    \"video_name\": \"lOZ9bfzq89o\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are athletes wearing red pants with their wristbands\",\n    \"video_name\": \"huFOZ2BiM_k\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are athletes wearing shorts\",\n    \"video_name\": \"1QIUV7WYKXg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the black athlete have long hair\",\n    \"video_name\": \"cK0-WcGXacQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the boy wearing glasses have long hair\",\n    \"video_name\": \"WGUzmra3h_w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the boy wearing glasses have short hair\",\n    \"video_name\": \"WGUzmra3h_w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the child wearing plastic bags dressed in black\",\n    \"video_name\": \"-p7aui3nAnc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are children wearing plastic bags dressed in white\",\n    \"video_name\": \"-p7aui3nAnc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are cyclists children\",\n    \"video_name\": \"FtRGOgg0Qh8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are girls in black clothes doing somersault\",\n    \"video_name\": \"e0yLhjXQIXI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the girl in black clothes have yellow hair\",\n    \"video_name\": \"9eniCub7u60\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are girls wearing black clothes short hair\",\n    \"video_name\": \"bWZkD_s1940\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the girl with long hair have curly hair\",\n    \"video_name\": \"32vYs9wKXE8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are javelin throwers wearing short sleeves or long sleeves\",\n    \"video_name\": \"WdtytUagoJs\",\n    \"answer\": \"short sleeve\"\n  },\n  {\n    \"question\": \"is the man in white shoes strong\",\n    \"video_name\": \"EQrcCmgraa8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man wearing black pants\",\n    \"video_name\": \"-pkfcMUIEMo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does theman wearing white clothes have long hair\",\n    \"video_name\": \"d6gGZFQOxOg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the man wearing white clothes have short hair\",\n    \"video_name\": \"d6gGZFQOxOg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man wearing white pants\",\n    \"video_name\": \"-pkfcMUIEMo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue short sleeves weightlifting indoors\",\n    \"video_name\": \"H0dG_1Vgw4Q\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing green clothes chinese\",\n    \"video_name\": \"d6gGZFQOxOg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in green short sleeves skating outside\",\n    \"video_name\": \"GsPE54bMFwE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the guy wearing red clothes a boy\",\n    \"video_name\": \"nkWMBJC2Qec\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are people in the video drinking from the container\",\n    \"video_name\": \"Bgi2Y85Mbwk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are people in the video smoking in the video\",\n    \"video_name\": \"Bgi2Y85Mbwk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the video using a vacuum cleaner to clean the ground\",\n    \"video_name\": \"qaml4eEk9hY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in white clothes wearing shoes\",\n    \"video_name\": \"GOhmWfR8QBM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing black coats trimming trees with machines\",\n    \"video_name\": \"QdmcjM2fluo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing black coats trimming trees with scissors\",\n    \"video_name\": \"QdmcjM2fluo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing black short sleeves playing shoes for others\",\n    \"video_name\": \"QXN6odBnVmI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing black short sleeves polishing their shoes\",\n    \"video_name\": \"QXN6odBnVmI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wearing blue clothes have long hair\",\n    \"video_name\": \"vQ82ItCG1x4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing sunglasses wearing black clothes\",\n    \"video_name\": \"cTxVTEzQDr8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing sunglasses wearing grey clothes\",\n    \"video_name\": \"cTxVTEzQDr8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing gray clothes wearing shoes\",\n    \"video_name\": \"F-Z17rHI_ms\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wearing green clothes have blonde hair\",\n    \"video_name\": \"Y_nyVFn70Lk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing green short sleeves skating indoors\",\n    \"video_name\": \"GsPE54bMFwE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do perple wearing helmets in the video games\",\n    \"video_name\": \"b_c17BmZCCs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing orange exercising indoors\",\n    \"video_name\": \"GcjzvBatqb4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing red clothes wearing long sleeves\",\n    \"video_name\": \"p1QGn0IzfW0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing red pants in the video\",\n    \"video_name\": \"hIYN8cC3pEA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wearing red pants have long hair\",\n    \"video_name\": \"Co_cpZWbzFk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wearing red pants have short hair\",\n    \"video_name\": \"Co_cpZWbzFk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing red shoes wearing long sleeves\",\n    \"video_name\": \"bYNQ0GrCt64\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing red shoes wearing short sleeves\",\n    \"video_name\": \"bYNQ0GrCt64\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing red shorts playing tennis indoors\",\n    \"video_name\": \"ZnKB0U96ZI4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing red shorts playing tennis outdoors\",\n    \"video_name\": \"ZnKB0U96ZI4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wear sports headbands in the video\",\n    \"video_name\": \"yUvSujxnFE0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white blouses throwing dart on his feet\",\n    \"video_name\": \"qZtdMXkHRXw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white blouses throwing dart with their hands\",\n    \"video_name\": \"qZtdMXkHRXw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing white clothes wearing short sleeves\",\n    \"video_name\": \"W2Mh01F3K5c\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white shirts trimming trees with machines\",\n    \"video_name\": \"ZlVydB9uUe4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing white shirts trimming trees with scissors\",\n    \"video_name\": \"ZlVydB9uUe4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white short sleeves playing on the horizontal bar\",\n    \"video_name\": \"ZLG1Exv8HrY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person wearing white short sleeves playing on the parallel bars\",\n    \"video_name\": \"ZLG1Exv8HrY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white short sleeves playing tai chi indoors\",\n    \"video_name\": \"gkwLhml3mnA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person with black clothes have white hair\",\n    \"video_name\": \"_kmjpSZb3OI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with red clothes very thin\",\n    \"video_name\": \"ldAHwbF8uWI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with red ties being interviewed\",\n    \"video_name\": \"G25py7yEVyo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are performers all women\",\n    \"video_name\": \"f6vZaMgqDvQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the shooting activity in the daytime or at night\",\n    \"video_name\": \"fSBX-gjPblw\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"does the sportsman in black have short hair\",\n    \"video_name\": \"cK0-WcGXacQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the boy shooting the game\",\n    \"video_name\": \"FkbpD1zWdPw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the dress that the boy wears long sleeves or short sleeves\",\n    \"video_name\": \"WINtiw-_3vg\",\n    \"answer\": \"long sleeves\"\n  },\n  {\n    \"question\": \"is it a child who plays an instrument\",\n    \"video_name\": \"-Fk62y-1WHo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the cigarettes smoked in the video are traditional cigarettes\",\n    \"video_name\": \"blbaWHbtqTI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are the cookies baked before the sandwich\",\n    \"video_name\": \"Aen-RfnlK3A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the crouching little girl playing\",\n    \"video_name\": \"atGMJc-DZ7w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the crouching little girl washing clothes\",\n    \"video_name\": \"atGMJc-DZ7w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the dancers happy\",\n    \"video_name\": \"1kkc9hDshP4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl standing on the equipment wearing blue clothes\",\n    \"video_name\": \"hGPCJb2g1tQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person with the goggles in the video indoors\",\n    \"video_name\": \"5LGh56euaZs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person with the goggles in video outdoors\",\n    \"video_name\": \"5LGh56euaZs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the hands use during ballet dancing\",\n    \"video_name\": \"IxaBEVd2PZM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the hands used during cutting the roof's tin\",\n    \"video_name\": \"IsV1n_kLpvs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the lady in the jeans have long hair\",\n    \"video_name\": \"F9FPK6mfh88\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the lala player outdoors\",\n    \"video_name\": \"SYh-j9bK_ls\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the lara player indoors\",\n    \"video_name\": \"SYh-j9bK_ls\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the checked coat indoors\",\n    \"video_name\": \"rGOOlcdpfLg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the mask indoors\",\n    \"video_name\": \"ryFSf08mrkA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the video chinese\",\n    \"video_name\": \"CwImmV7q1MY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person of green clothes a boy or a girl\",\n    \"video_name\": \"9UvVeUYQLgA\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"is the man running in the video white\",\n    \"video_name\": \"f1d7_TKXNYQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue wear red pants\",\n    \"video_name\": \"HtG-i1CG2Qs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue wearing yellow pants\",\n    \"video_name\": \"HtG-i1CG2Qs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black wear white pants\",\n    \"video_name\": \"P6Oq6C9X0fw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the guy in the blue shorts wear a hat\",\n    \"video_name\": \"H0dG_1Vgw4Q\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the guy in the blue shorts wear a hat\",\n    \"video_name\": \"H0dG_1Vgw4Q\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in dark red clothes play on the swing outdoors\",\n    \"video_name\": \"LPRLV0eVgfY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in deep red clothes playing on the swing indoors\",\n    \"video_name\": \"LPRLV0eVgfY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in red pants dancing\",\n    \"video_name\": \"KZ1NEffR2Qg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the red pants skipping rope\",\n    \"video_name\": \"KZ1NEffR2Qg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"doesn't the guy in the blue swimming trunks wear glasses\",\n    \"video_name\": \"Gs79qz286QE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in the blue swimming trunks swimming indoors\",\n    \"video_name\": \"Gs79qz286QE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the blue swimming trunks wearing glasses\",\n    \"video_name\": \"Gs79qz286QE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in the orange life jacket rowing a hovercraft\",\n    \"video_name\": \"zH1MiuiTsx8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man in the orange life jacket rowing a wooden boat\",\n    \"video_name\": \"zH1MiuiTsx8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the people in the parade indoors\",\n    \"video_name\": \"stdtUoog49I\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are the people in the video long hair\",\n    \"video_name\": \"4j_LRkB4T6c\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in video pushing the curling iron indoors\",\n    \"video_name\": \"LL0uQO4q_wY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in video pushing the curling iron outdoors\",\n    \"video_name\": \"LL0uQO4q_wY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do people in video have short hair\",\n    \"video_name\": \"4j_LRkB4T6c\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are the people shooting adults and children\",\n    \"video_name\": \"fSBX-gjPblw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person who is bathing the dog in white\",\n    \"video_name\": \"W9H2qVnIWXs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are the performers on the stage wearing suits\",\n    \"video_name\": \"BhgcXqWQhkQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the performers wearing performance costumes\",\n    \"video_name\": \"-p7aui3nAnc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the piano player wearing long sleeves\",\n    \"video_name\": \"P2xT7dlyX8Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the players in the game\",\n    \"video_name\": \"CfqnHsp6olc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the athlete in the competition have long hair \",\n    \"video_name\": \"WdtytUagoJs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the athlete in the competition have short hair \",\n    \"video_name\": \"WdtytUagoJs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the sail of the sailboat white\",\n    \"video_name\": \"dKJMP8EmZjw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the short - haired women standing or sitting\",\n    \"video_name\": \"bYxVbXzQToI\",\n    \"answer\": \"sitting\"\n  },\n  {\n    \"question\": \"are the short sleeves worn by a little boy in red\",\n    \"video_name\": \"raxeBxPQqlk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the staff washing the car\",\n    \"video_name\": \"K1OsjA-f17E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the staff washing motorcycles\",\n    \"video_name\": \"K1OsjA-f17E\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are the three horses riding in the same color\",\n    \"video_name\": \"DUi-hLMpQQo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are the three teams playing in the video\",\n    \"video_name\": \"b_c17BmZCCs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the trainer in the video wearing red shoes\",\n    \"video_name\": \"AtbTioB1_Kw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the trainer in the video wearing white shoes\",\n    \"video_name\": \"AtbTioB1_Kw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are the two fist icons appearing in the video the same color\",\n    \"video_name\": \"ETbbYC0OhL0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are the two people sitting in the video\",\n    \"video_name\": \"cQgP0-Id-p4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the two people wearing glasses in the video\",\n    \"video_name\": \"OysON6LbF6Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the two teams playing in the video\",\n    \"video_name\": \"b_c17BmZCCs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the woman's trousers in black\",\n    \"video_name\": \"-EIsT868Trw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are their smoke props a match\",\n    \"video_name\": \"FmfAB-ppHBs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is there a picture of people skiing with cars in the video\",\n    \"video_name\": \"Av0VsTxJd78\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there a picture of digging the ground with a shovel in the video\",\n    \"video_name\": \"B4Zp5XN97Gc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is there any instruction in video\",\n    \"video_name\": \"eQ0sW4hJ9zU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does someone in green wear appear in the video\",\n    \"video_name\": \"b6QSzGwI9m4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the gray vest have sunglasses on his head\",\n    \"video_name\": \"BFChXuwZ4wo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are there two persons doing the dishes together in the video\",\n    \"video_name\": \"BjjN_aq_wq4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are there two persons on the horse yard in the video\",\n    \"video_name\": \"4H9MMsj4mcM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are they all acting indoors\",\n    \"video_name\": \"f6vZaMgqDvQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are they all male\",\n    \"video_name\": \"ds3mAmUPxYA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are they all outdoors\",\n    \"video_name\": \"f6vZaMgqDvQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are they all women\",\n    \"video_name\": \"Gfu8e6R6jUU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are they outdoors\",\n    \"video_name\": \"F9FPK6mfh88\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are they singing indoors\",\n    \"video_name\": \"ds3mAmUPxYA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person who controls with his feet wearing trousers or shorts\",\n    \"video_name\": \"AsdsR27UnJ0\",\n    \"answer\": \"trousers\"\n  },\n  {\n    \"question\": \"does the person wearing the black dress repair the tire is big or small\",\n    \"video_name\": \"cnMvMvVBXiI\",\n    \"answer\": \"big\"\n  },\n  {\n    \"question\": \"is the person in white wearing black pants\",\n    \"video_name\": \"NNiJfr_ChH4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person wearing white clothes wearing red pants\",\n    \"video_name\": \"NNiJfr_ChH4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in black wearing blue pants\",\n    \"video_name\": \"P6Oq6C9X0fw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in a blue dress wearing a long or short sleeves\",\n    \"video_name\": \"C7yd6yEkxXE\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"is the person in blue wearing black pants\",\n    \"video_name\": \"pVoM_kUQ4_E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in blue wearing white pants\",\n    \"video_name\": \"pVoM_kUQ4_E\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in blue shorts dancing indoors\",\n    \"video_name\": \"GgnM5RGNtDE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in green wearing blue pants blue\",\n    \"video_name\": \"uLsq6gQXQPM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the person in green wearing red pants red\",\n    \"video_name\": \"uLsq6gQXQPM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in purple wearing black pants\",\n    \"video_name\": \"pPt_fygNjtQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the person in purple wearing gray pants\",\n    \"video_name\": \"pPt_fygNjtQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the guy in the striped pants on the slide outdoors\",\n    \"video_name\": \"QPEAp7nf2Tk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the cook have long or short hair\",\n    \"video_name\": \"bRgvAHL3dJk\",\n    \"answer\": \"short hair\"\n  },\n  {\n    \"question\": \"is the basketball player a boy\",\n    \"video_name\": \"FKtYeu2bJpA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"are the trousers worn by people working in black\",\n    \"video_name\": \"w10Nr_wOh8g\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are two blondes wearing a hat\",\n    \"video_name\": \"8teo_0gxzgk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"isn't the woman in black very young\",\n    \"video_name\": \"eLh51DwDp-E\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the woman in black wearing an earring\",\n    \"video_name\": \"eLh51DwDp-E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the woman with the purple hair weak\",\n    \"video_name\": \"ETbbYC0OhL0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"are you writing in the video\",\n    \"video_name\": \"a_EqAwUOxpM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"can the video game be played indoors and outdoors\",\n    \"video_name\": \"R74yolowFPs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"can this video come from\",\n    \"video_name\": \"Erje-PwY9hE\",\n    \"answer\": \"tourism advertisement\"\n  },\n  {\n    \"question\": \"can we see the sunlight from where the divers are\",\n    \"video_name\": \"Ep5LuX_2gfI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"can you find a common food on the bottom of the sea\",\n    \"video_name\": \"Ep5LuX_2gfI\",\n    \"answer\": \"kelp\"\n  },\n  {\n    \"question\": \"can you name the biological name of the video that appears in 36 seconds\",\n    \"video_name\": \"Ep5LuX_2gfI\",\n    \"answer\": \"sea anemone\"\n  },\n  {\n    \"question\": \"can you see the time in the day or in the evening\",\n    \"video_name\": \"C7yd6yEkxXE\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"can you speculate on the season in the video\",\n    \"video_name\": \"Em4ekFj4XIs\",\n    \"answer\": \"autumn\"\n  },\n  {\n    \"question\": \"children wearing blue and white stripes wear bracelets\",\n    \"video_name\": \"9TjPn_ejmFU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does anyone fall down when the audience came on the court\",\n    \"video_name\": \"b_c17BmZCCs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does he wear a watch in the video\",\n    \"video_name\": \"_CIoHeD7KQc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black wear accidents during skiing\",\n    \"video_name\": \"P6Oq6C9X0fw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the barber wear his watch\",\n    \"video_name\": \"faqijFZWQlo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the man in black grow a beard\",\n    \"video_name\": \"ECZb_tQZ4Pg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the boating people wear hats in the video\",\n    \"video_name\": \"ys4_S3JHQjs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the boy in pink jump two times\",\n    \"video_name\": \"54TIARWo-S8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the boy in the blue dress wear an eye mask\",\n    \"video_name\": \"46NS8dT15Hw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the boy in yellow jump two times\",\n    \"video_name\": \"54TIARWo-S8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the christmas tree finally fall down\",\n    \"video_name\": \"GOhmWfR8QBM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the diver take the fish off\",\n    \"video_name\": \"fEBM3nPMen8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the dog get a frisbee\",\n    \"video_name\": \"Em4ekFj4XIs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the dog get all the frisbee\",\n    \"video_name\": \"Em4ekFj4XIs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the fat man look happy after using mouthwash\",\n    \"video_name\": \"er5jUsRr4y0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the girl in blue wear a hairpin\",\n    \"video_name\": \"72_9wLYUDGM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the girl in blue wear a necklace\",\n    \"video_name\": \"72_9wLYUDGM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the girl in blue wear shoes\",\n    \"video_name\": \"72_9wLYUDGM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the girls in red wear a hat\",\n    \"video_name\": \"9G172wz5Yqo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the little boy cut a potato\",\n    \"video_name\": \"09ocXmGF-T4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the little boy in red wear glasses\",\n    \"video_name\": \"9G172wz5Yqo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person come to talk to a woman\",\n    \"video_name\": \"kpOAGEYHts8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black drink the green liquid first and then vomit it\",\n    \"video_name\": \"A0b_pqaKCX8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue short sleeves come down from the rope at last\",\n    \"video_name\": \"GgnM5RGNtDE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue short sleeves not come down from the rope at last\",\n    \"video_name\": \"GgnM5RGNtDE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in dark blue win the wrist at last\",\n    \"video_name\": \"G_rVqf_hwXw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the blue and white lattice wear a watch\",\n    \"video_name\": \"16bJAOf1SJI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the blue hat hit the goal\",\n    \"video_name\": \"Es3PxD9oi4I\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the dark blue pants wear a hat\",\n    \"video_name\": \"qGtUXGG78tM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the gray coat win the wrist at last\",\n    \"video_name\": \"G_rVqf_hwXw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the red hat wear a necklace\",\n    \"video_name\": \"9SIPJd4Hls4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the striped pants wear a hat\",\n    \"video_name\": \"QPEAp7nf2Tk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the white hat hit the goal\",\n    \"video_name\": \"Es3PxD9oi4I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white wear a hat\",\n    \"video_name\": \"0e7d39SwHCA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white win\",\n    \"video_name\": \"AjqnGUbsduw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the men in the video wear oxygen cylinders on the bottom of the sea\",\n    \"video_name\": \"d4sX1jnL4BY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the number 9 wear a hat\",\n    \"video_name\": \"zOI9SjQpc_Q\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the yellow dress wear shoes\",\n    \"video_name\": \"Nc9yr4urskA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white wear a life jacket\",\n    \"video_name\": \"nnEPsdA0080\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person sitting in the car with the video start wearing a hat\",\n    \"video_name\": \"Av0VsTxJd78\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the pink dress wear a necklace\",\n    \"video_name\": \"AjizhJc_reI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the purple jackets add ketchup to the cooking process\",\n    \"video_name\": \"gOnp3DZxeKU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the referee wear sunglasses in the video\",\n    \"video_name\": \"aGvpDyMNATI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the tattoo in the video wear a hat\",\n    \"video_name\": \"Db2Dnt2OOo0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in the gymnastic suit fail\",\n    \"video_name\": \"FnPS6zn5S7M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in the gymnastic suit succeed\",\n    \"video_name\": \"FnPS6zn5S7M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman wear a hat\",\n    \"video_name\": \"FFMugev85IY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in pink be knocked down by a chain\",\n    \"video_name\": \"eVkp83uGf3Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in the pink dress fall down\",\n    \"video_name\": \"eVkp83uGf3Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the yacht appear in the video\",\n    \"video_name\": \"6xBh3vzhgo4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"doesn't the christmas tree finally fall down\",\n    \"video_name\": \"GOhmWfR8QBM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the adult in blue wear an eye mask\",\n    \"video_name\": \"46NS8dT15Hw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do all the people in red dance outdoors\",\n    \"video_name\": \"gCHo9vxfEzM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do all the people in red dress dance indoors\",\n    \"video_name\": \"gCHo9vxfEzM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does anyone in orange wear a hat\",\n    \"video_name\": \"uIHWHnItois\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does anyone wear glasses in the video\",\n    \"video_name\": \"Flm_SCK10GQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the athlete in red pants don't wear wristbands\",\n    \"video_name\": \"huFOZ2BiM_k\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the athlete in white wear hair\",\n    \"video_name\": \"u0Dc0ZtudXY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the athlete in white wear no hair\",\n    \"video_name\": \"u0Dc0ZtudXY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the boy in black clothes wear short sleeved clothes\",\n    \"video_name\": \"ECZb_tQZ4Pg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the girl in black hair wear glasses\",\n    \"video_name\": \"CaeZoHNHul0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the girl in black haired wear sunglasses\",\n    \"video_name\": \"CaeZoHNHul0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the child wear red clothes\",\n    \"video_name\": \"dZsk5Dp_5FE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does everyone wear an eye mask in the video\",\n    \"video_name\": \"qlK-c7hRqcA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the girl in red wear gloves\",\n    \"video_name\": \"9G172wz5Yqo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the girl wear long sleeved clothes\",\n    \"video_name\": \"EBw5-KVV_PU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the woman in grey clothes wear pants\",\n    \"video_name\": \"-EIsT868Trw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue pants have hats\",\n    \"video_name\": \"6Xsfwn5M6qs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in gray clothes wear hats\",\n    \"video_name\": \"TXSOSSGJYO0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video keep the nails\",\n    \"video_name\": \"0xBP-TSsqb0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white wear white shoes\",\n    \"video_name\": \"F9FPK6mfh88\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person wear glasses in the video\",\n    \"video_name\": \"CwImmV7q1MY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do not wear a watch in the video\",\n    \"video_name\": \"3Rzyta8op6s\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black clothes wear hats\",\n    \"video_name\": \"G4-qjGC_3VA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black dress dance neatly\",\n    \"video_name\": \"EQWdo0FcKAo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black have bicycles\",\n    \"video_name\": \"pPt_fygNjtQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black have safety measures\",\n    \"video_name\": \"P6Oq6C9X0fw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black pants tie the hair\",\n    \"video_name\": \"RlRrktN5iH4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black pants wear glasses\",\n    \"video_name\": \"OcL7ZhBCkxQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black pants wear hair\",\n    \"video_name\": \"RlRrktN5iH4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black pants wear hats\",\n    \"video_name\": \"OcL7ZhBCkxQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black short sleeves not wear hats\",\n    \"video_name\": \"GSrBZXLSwWI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black wear bracelets\",\n    \"video_name\": \"xND_kp-aYXw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black wear masks\",\n    \"video_name\": \"3PsxzgeMv5w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black wear red shoes\",\n    \"video_name\": \"9k19UUJtldg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black wear white shoes\",\n    \"video_name\": \"9k19UUJtldg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue clothes not wear hats\",\n    \"video_name\": \"I1iUbyjWy7k\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue clothes wear hats\",\n    \"video_name\": \"I1iUbyjWy7k\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue coats make sandwiches indoors\",\n    \"video_name\": \"qiTQ02NDSlQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue cut fast\",\n    \"video_name\": \"FWZ6wgaJ_L4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue wear a microphone\",\n    \"video_name\": \"tgPD2SZo_DY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue wear glasses in the video\",\n    \"video_name\": \"CvbL36Y8hN0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue wear gloves\",\n    \"video_name\": \"ys4_S3JHQjs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue wear long sleeves\",\n    \"video_name\": \"LsVCwr6qPmY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue wear make a picture for people\",\n    \"video_name\": \"P8S8PIyPXxY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue wear short sleeves\",\n    \"video_name\": \"LsVCwr6qPmY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue wear watches\",\n    \"video_name\": \"96vBhCFBbQk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in blue wear wear glasses\",\n    \"video_name\": \"YvPoAOrjX5I\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in dark blue pants use machines to prune trees\",\n    \"video_name\": \"qGtUXGG78tM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in gray clothes wear earrings in the left ear\",\n    \"video_name\": \"MDsJa6Yitwc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in gray clothes wear earrings in the right ear\",\n    \"video_name\": \"MDsJa6Yitwc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in gray sweaters wear something on the left wrist\",\n    \"video_name\": \"G_rVqf_hwXw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in gray wear a ring in the left hand\",\n    \"video_name\": \"1xtKGlUp4Vg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in green blouses blow the hair into curly hair\",\n    \"video_name\": \"zKYiTA6WBS4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in green blouses blow the hair into straight hair\",\n    \"video_name\": \"zKYiTA6WBS4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in green coats dance indoors or outdoors\",\n    \"video_name\": \"QX5e5Mla660\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"does the person in green pants wear long sleeves\",\n    \"video_name\": \"2vrR_5u2buU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in green pants wear short sleeves\",\n    \"video_name\": \"2vrR_5u2buU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in green wear a flat road\",\n    \"video_name\": \"gZB_XrTnDCI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in green wear bicycles outdoors\",\n    \"video_name\": \"gZB_XrTnDCI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in green wear long sleeves\",\n    \"video_name\": \"mMm1LfVb8Pg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in green wear short sleeves\",\n    \"video_name\": \"mMm1LfVb8Pg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in green wear wear a hat\",\n    \"video_name\": \"i6wR9_tkg6A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in pink clothes stand in the first row\",\n    \"video_name\": \"Gfu8e6R6jUU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in pink clothes stand in the second row\",\n    \"video_name\": \"Gfu8e6R6jUU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in purple wear long sleeves\",\n    \"video_name\": \"meNgZdu8tIk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in purple wear short sleeves\",\n    \"video_name\": \"meNgZdu8tIk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in purple wear shorts\",\n    \"video_name\": \"0w4OkBenR_k\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red caps play musical instruments indoors\",\n    \"video_name\": \"qKp2QCheLwU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red caps play musical instruments outdoors\",\n    \"video_name\": \"qKp2QCheLwU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red dress wear indoors at the beginning of the video\",\n    \"video_name\": \"SB0dU5oDvaE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red hats wear earrings\",\n    \"video_name\": \"9SIPJd4Hls4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red pants wear a hat\",\n    \"video_name\": \"i8hNrK3r_MY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red shorts wear shoes\",\n    \"video_name\": \"Zt9qvbUnNhc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red wear sunglasses\",\n    \"video_name\": \"aH39BSM0-Ag\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red wear the wristwatches in the right hand\",\n    \"video_name\": \"TtewPltwuXw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in short sleeves kneel on the floor to lay the tiles\",\n    \"video_name\": \"_2txWbQfJrY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in skate shoes knock down the ball\",\n    \"video_name\": \"pcLGX5qvUcI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in skates do safety measures\",\n    \"video_name\": \"pcLGX5qvUcI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in striped bikini don't wear sunglasses\",\n    \"video_name\": \"uJAL31wAD2A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in striped bikini wear sunglasses\",\n    \"video_name\": \"uJAL31wAD2A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in striped clothes ride sports bicycles indoors\",\n    \"video_name\": \"03c6QhTMDSs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video clean the floor with brooms\",\n    \"video_name\": \"qaml4eEk9hY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video clean up the floor glass in the building\",\n    \"video_name\": \"3JBUWRKezUI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video clean up the floor glass outdoors the building\",\n    \"video_name\": \"3JBUWRKezUI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video don't wear christmas caps\",\n    \"video_name\": \"Uae2MWoldTU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video don't wear earrings\",\n    \"video_name\": \"0k6GFx2ZCg8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video have hair\",\n    \"video_name\": \"mVAP-WyEc7w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video not wear gloves\",\n    \"video_name\": \"HPKHDze6XfA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video wear a hat\",\n    \"video_name\": \"BBKSKU6dGGk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video wear blue clothes\",\n    \"video_name\": \"_zqj6daJo9U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video wear gloves\",\n    \"video_name\": \"HPKHDze6XfA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video wear grey pants\",\n    \"video_name\": \"hIYN8cC3pEA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video wear white clothes\",\n    \"video_name\": \"Ar6TcWqwK-A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in video use paper money to make wrapping paper\",\n    \"video_name\": \"zEttEkAdHts\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in videos use white paper to make wrapping paper\",\n    \"video_name\": \"zEttEkAdHts\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white dress teach martial arts indoors\",\n    \"video_name\": \"2UhbDOd43zU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white dress teach martial arts outdoors\",\n    \"video_name\": \"2UhbDOd43zU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white pants wear glasses\",\n    \"video_name\": \"A8RQcVFtovg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white wear watches\",\n    \"video_name\": \"1494UwmvAJM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in yellow wear a ring in the left hand\",\n    \"video_name\": \"hRsn4nesCQo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in yellow wear red hats\",\n    \"video_name\": \"_l251ZuOCYU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in yellow wear watch\",\n    \"video_name\": \"mxn6WcmdNpA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person not wear earrings with a sweater chain\",\n    \"video_name\": \"I3tqWc5wG78\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person sitting on the ship do safety measures\",\n    \"video_name\": \"Pho9Hgdvc0g\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wear earrings in the video\",\n    \"video_name\": \"0k6GFx2ZCg8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person wear earrings with a sweater chain\",\n    \"video_name\": \"I3tqWc5wG78\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person wear grey short sleeves brush the teeth outdoors\",\n    \"video_name\": \"pzTqZWPubk8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wear long pants in white clothes\",\n    \"video_name\": \"kYkvyRKxwfY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wear ornaments in both hands in the video\",\n    \"video_name\": \"Au4PfoK7hyw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wear short sleeved tiles on the floor\",\n    \"video_name\": \"_2txWbQfJrY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wear shorts in white clothes\",\n    \"video_name\": \"kYkvyRKxwfY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person wear submersible glasses in a submersible suit\",\n    \"video_name\": \"2DCHbuwZNSs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person wear sunglasses in the video\",\n    \"video_name\": \"v0azz4XzW_s\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person wearing black and white checked glasses wear glasses\",\n    \"video_name\": \"-crpjVnFv0U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wearing gray vests perform high degree of difficulty\",\n    \"video_name\": \"qZMcbBsQorE\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"does the person wearing green coats perform high degree of difficulty\",\n    \"video_name\": \"QX5e5Mla660\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person wearing grey clothes have high difficulty in diving\",\n    \"video_name\": \"F-Z17rHI_ms\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wearing red clothes outdoors at the beginning of the video\",\n    \"video_name\": \"SB0dU5oDvaE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person wearing striped clothes ride sports bicycles outdoors\",\n    \"video_name\": \"03c6QhTMDSs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person with a yellow ribbon wear glasses\",\n    \"video_name\": \"u_vLZxgO9Rw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person with hair spray on video wear sunglasses\",\n    \"video_name\": \"AQ3eFWxZ67U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person with potted plants in the video wear glasses\",\n    \"video_name\": \"B4Zp5XN97Gc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does men in short hair not wear pants\",\n    \"video_name\": \"6VXQoPNphgI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the skier wear the same clothes\",\n    \"video_name\": \"fbr7v8RMkf8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the surfer have safety measures\",\n    \"video_name\": \"pKOy4HJwCqo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the black-and-white dogs not like black dogs\",\n    \"video_name\": \"Ki13JIVwMdk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the boy with glasses come with a group\",\n    \"video_name\": \"KPRymTsPCC0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the clothes they wear are the same color\",\n    \"video_name\": \"FaP7unySMOs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the commentators have girls\",\n    \"video_name\": \"FkbpD1zWdPw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the dancers wear the upper color shoes\",\n    \"video_name\": \"9eniCub7u60\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the demonstrations wear shoes\",\n    \"video_name\": \"PSB1nM3QXxg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the exercisers wear black clothes\",\n    \"video_name\": \"VvsYrfEvvUw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the exercisers wear white clothes\",\n    \"video_name\": \"VvsYrfEvvUw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the hairdressers wear glasses in the video\",\n    \"video_name\": \"Dd5yTxwKzXw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the men enjoy the play when they play the harmonica in the video\",\n    \"video_name\": \"CwImmV7q1MY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the men running in the video wear black shoes\",\n    \"video_name\": \"f1d7_TKXNYQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black wear glasses\",\n    \"video_name\": \"_jV5sAOOHLk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black wear the wristwatches on the left wrists\",\n    \"video_name\": \"g1na24Bd5Rs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in orange wear a hat\",\n    \"video_name\": \"GcjzvBatqb4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the dress wear anything in the video\",\n    \"video_name\": \"AQ3eFWxZ67U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the lattices sit in the haircut\",\n    \"video_name\": \"1IbkFHNA7fg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the shot put in black clothes\",\n    \"video_name\": \"eJc8bebOF2A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the striped clothes not wear gloves on the platform\",\n    \"video_name\": \"HDt5z5Y0opo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the striped clothes wear gloves on the platform\",\n    \"video_name\": \"HDt5z5Y0opo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video throw the bowl out and let the dog hold it back\",\n    \"video_name\": \"auO4r3De6vc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video throw the dishes out and let the dogs hold them back\",\n    \"video_name\": \"auO4r3De6vc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white run before the long jump\",\n    \"video_name\": \"NNiJfr_ChH4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white wear watch\",\n    \"video_name\": \"_jIXs7AFTxw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person pruning the branches does not wear glasses\",\n    \"video_name\": \"uM7QSskmloo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the performers does the same number of people\",\n    \"video_name\": \"-p7aui3nAnc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the performers on the stage wear glasses\",\n    \"video_name\": \"BhgcXqWQhkQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in red clothes not tie up the hair\",\n    \"video_name\": \"I16FTpQQiic\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red clothes tie up the hair\",\n    \"video_name\": \"I16FTpQQiic\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in white clothes not wear a hat on the stage\",\n    \"video_name\": \"I9ficvPdpZg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in white clothes wear a hat on the stage\",\n    \"video_name\": \"I9ficvPdpZg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the trainers wear pants in the video\",\n    \"video_name\": \"auO4r3De6vc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman who wear the guessing game wear long sleeves or short sleeves\",\n    \"video_name\": \"v-UmNR5yeDc\",\n    \"answer\": \"short sleeve\"\n  },\n  {\n    \"question\": \"does the workers with tattoo tattoos wear glasses\",\n    \"video_name\": \"BFChXuwZ4wo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do they all wear pants on the video midfield\",\n    \"video_name\": \"_l251ZuOCYU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do they all wear shorts on the video midfield\",\n    \"video_name\": \"_l251ZuOCYU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do those wearing sunglasses have ornaments on the wrists during the competition\",\n    \"video_name\": \"b6QSzGwI9m4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do those who prune the branches wear glasses\",\n    \"video_name\": \"uM7QSskmloo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do those who wear dark blue pants use scissors to prune trees\",\n    \"video_name\": \"qGtUXGG78tM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does two blondes wear sunglasses\",\n    \"video_name\": \"8teo_0gxzgk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does video playing scenes take place indoors or outdoors\",\n    \"video_name\": \"gsQ-OEvrxjo\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"does we use thrust in the process of using vacuum cleaner\",\n    \"video_name\": \"UNXLfqkwKFc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in blue wear black pants\",\n    \"video_name\": \"eg2s5lOfKGI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in the video wear earrings\",\n    \"video_name\": \"CuLC5G7yWxA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you don't use a computer for make-up\",\n    \"video_name\": \"7LbBmVX33I4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you have any safety measures at work\",\n    \"video_name\": \"p54LLMnyg54\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you have drums in the performance\",\n    \"video_name\": \"-p7aui3nAnc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you have more clothes for the woman\",\n    \"video_name\": \"F7K2oT7ADkk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you have much fish in the water\",\n    \"video_name\": \"fEBM3nPMen8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you have parsley when mixing the cold dishes\",\n    \"video_name\": \"aNsj5OrEGLY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you need to rotate the chassis in the process of making the cake\",\n    \"video_name\": \"ej_fSoVO0R8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you sit in the course of the drums\",\n    \"video_name\": \"VJh9W3Gcpmo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you think the surf is happy\",\n    \"video_name\": \"eMgC7I-GcgA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use a basket in the course of playing volleyball\",\n    \"video_name\": \"utgRhyBvtRU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a chair in the course of cooking\",\n    \"video_name\": \"ivAvKRQQy1Q\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a chair in the course of skiing\",\n    \"video_name\": \"vnZmsOgWs0o\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a chair in the process of lifting weight\",\n    \"video_name\": \"iuXjatyFcwo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a hammer in the process of carpeting\",\n    \"video_name\": \"V6Sy8zpJSuc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use a knife in the process of making a cake\",\n    \"video_name\": \"iQnnCZTl_7U\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a knife in the process of mixing wine\",\n    \"video_name\": \"iqyc2JM0uIU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a knife in the process of weeding\",\n    \"video_name\": \"uWfQcDvel84\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a mirror in the process of lipstick\",\n    \"video_name\": \"UvOEuhS0V3E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use a pen in the process of guessing the punch\",\n    \"video_name\": \"vBaiedxy1Uw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pen in the process of knocking\",\n    \"video_name\": \"idkQqlwyff8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pen in the process of noodles\",\n    \"video_name\": \"V08Q-DbT0GQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pen in the process of origami\",\n    \"video_name\": \"VfhDSTKBwgc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pen in the process of paddling\",\n    \"video_name\": \"V90CMuokf0c\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pen in the process of playing with a toy\",\n    \"video_name\": \"iixZLnyLuN8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pen in the process of pulling the uneven bars\",\n    \"video_name\": \"VjMMwpgOCPo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pen in the process of somersault\",\n    \"video_name\": \"iKclcQEl4zI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pen in the process of throwing the hammer\",\n    \"video_name\": \"vezvHLPR3P0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pen in the process of using the vacuum cleaner\",\n    \"video_name\": \"UNXLfqkwKFc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pot in the process of playing football\",\n    \"video_name\": \"v6P6bBPBXYw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pot in the process of playing the guitar\",\n    \"video_name\": \"V2UitlmX7Uo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a pot in the process of wearing contact lenses\",\n    \"video_name\": \"v6DdLg_Xnkg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a rope for swimming\",\n    \"video_name\": \"8kaQq1mR2ys\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a ruler in measuring the length\",\n    \"video_name\": \"vHnZ3NrZER0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use a somersault in the process of pulling the uneven bars\",\n    \"video_name\": \"VjMMwpgOCPo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use a swimsuit in the course of diving\",\n    \"video_name\": \"vBOFzuS-Djo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use a teapot to ride a motorcycle\",\n    \"video_name\": \"7-UlUnaBjXU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use a towel to play the guitar\",\n    \"video_name\": \"7lxP-hWFA24\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use an arm to ride a motorcycle\",\n    \"video_name\": \"7-UlUnaBjXU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use arm strength during knocking\",\n    \"video_name\": \"idkQqlwyff8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use arm strength in the process of playing with toys\",\n    \"video_name\": \"iixZLnyLuN8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use arm strength in the process of tongue nail\",\n    \"video_name\": \"ikUNgSw4Gys\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use arm strength in the tug of war\",\n    \"video_name\": \"6O4S2CpRB0A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use arms in the course of cooking\",\n    \"video_name\": \"ivAvKRQQy1Q\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use arms in the process of lifting weights\",\n    \"video_name\": \"iuXjatyFcwo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use arms to wear shoes\",\n    \"video_name\": \"7UwRRkgQSj4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use basketball in the tug of war\",\n    \"video_name\": \"6O4S2CpRB0A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use biscuits in the process of lipstick\",\n    \"video_name\": \"UvOEuhS0V3E\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use both hands in the course of archery\",\n    \"video_name\": \"V-46E7jMm-Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use both hands in the process of folding paper\",\n    \"video_name\": \"VfhDSTKBwgc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use both hands in the process of paddling\",\n    \"video_name\": \"V90CMuokf0c\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use both hands in the process of playing the guitar\",\n    \"video_name\": \"V2UitlmX7Uo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use gloves in the process of planting trees\",\n    \"video_name\": \"UNKf15ALDh8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use inertia in the process of throwing the hammer\",\n    \"video_name\": \"vezvHLPR3P0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use leg strength in the process of weeding\",\n    \"video_name\": \"uWfQcDvel84\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use the arm strength for the microphone\",\n    \"video_name\": \"7OcxT66BxX0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use the arm strength to play the guitar\",\n    \"video_name\": \"7lxP-hWFA24\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use the bread for ironing\",\n    \"video_name\": \"8lMncYsbrWw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you use the irons for ironing\",\n    \"video_name\": \"8lMncYsbrWw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use your hand in the skateboard\",\n    \"video_name\": \"i_LT0ef1n-Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use your hands in the process of drinking\",\n    \"video_name\": \"iqyc2JM0uIU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use your hands in the process of making a cake\",\n    \"video_name\": \"iQnnCZTl_7U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use your legs in the course of playing football\",\n    \"video_name\": \"v6P6bBPBXYw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you use your right hand in the process of guessing the punch\",\n    \"video_name\": \"vBaiedxy1Uw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you want to clap your hands in the process of dancing\",\n    \"video_name\": \"vFO70WwrQgE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you want to jump in the process of dancing tai chi\",\n    \"video_name\": \"uty4eGb_vvU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you want to kick the leg in the process of dancing the tai chi sword\",\n    \"video_name\": \"uty4eGb_vvU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you want to sing in the long jump\",\n    \"video_name\": \"ut1AoOzqL4k\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you want to take a car in the process of dancing\",\n    \"video_name\": \"vFO70WwrQgE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you want to use a desk lamp for wearing shoes\",\n    \"video_name\": \"7UwRRkgQSj4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you wear a watch in the left hand of a blue shirt\",\n    \"video_name\": \"R-hsYQNtnn0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you wear earphones in the process of roller skating\",\n    \"video_name\": \"Vhn4SuPhu-0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you wear glasses during the roller skating process\",\n    \"video_name\": \"Vhn4SuPhu-0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"do you wear rings in the hands of purple clothes\",\n    \"video_name\": \"gOnp3DZxeKU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"do you wipe the glass outdoors the house\",\n    \"video_name\": \"p54LLMnyg54\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a fitness man kneel in one leg\",\n    \"video_name\": \"k--dW53UQWs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a gymnastic stick use a cup\",\n    \"video_name\": \"7rwDYzqfGgU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a gymnastic stick use arm strength\",\n    \"video_name\": \"7rwDYzqfGgU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a lady get her hair curly\",\n    \"video_name\": \"Pv4FwH2TC6Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a man in a blue hat wear a hand ring in his left hand\",\n    \"video_name\": \"teffBaLEZQg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a man in a blue hat wear a hand ring in his right hand\",\n    \"video_name\": \"teffBaLEZQg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a man in a gray sweater wear a watch in his left hand\",\n    \"video_name\": \"U2eN4DbVLfE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a man in a gray sweater wear a watch in the right hand\",\n    \"video_name\": \"U2eN4DbVLfE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a man in blue pants have a wristband\",\n    \"video_name\": \"6Xsfwn5M6qs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a man in blue wear a watch in his left hand\",\n    \"video_name\": \"TGffgRXc1eQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a man in grey wear a ring in his right hand\",\n    \"video_name\": \"1xtKGlUp4Vg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a man in red wear a watch in his left hand\",\n    \"video_name\": \"TtewPltwuXw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a man play a pianist with a beard\",\n    \"video_name\": \"P2xT7dlyX8Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a man split a wood with tattoos on the most shoulder\",\n    \"video_name\": \"hG4VsZQQ2_c\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a man with a fire use a match\",\n    \"video_name\": \"cCDffwsJvsY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a person in a blue shirt wear a watch in the right hand\",\n    \"video_name\": \"R-hsYQNtnn0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a person in a yellow dress wear a ring in the right hand\",\n    \"video_name\": \"hRsn4nesCQo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a person in black dress not dance well\",\n    \"video_name\": \"EQWdo0FcKAo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a person in black wear a black helmet hold a sword in his left hand\",\n    \"video_name\": \"UJGK_TKrl4E\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a person in black wear a black helmet hold a sword in the right hand\",\n    \"video_name\": \"UJGK_TKrl4E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a person wear a hat in a submersible suit\",\n    \"video_name\": \"2DCHbuwZNSs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a person wear a red and white shoe as an opponent\",\n    \"video_name\": \"kPn9NzU4W48\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a red coat have an oar\",\n    \"video_name\": \"7BFbmEY3BNw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a red man have bread\",\n    \"video_name\": \"7BFbmEY3BNw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a short hair man have a fat figure\",\n    \"video_name\": \"BWAedc31WdY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a white man wear a vest\",\n    \"video_name\": \"e-Xf13exY4E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a the woman in black have long hair\",\n    \"video_name\": \"eLh51DwDp-E\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a the woman wear a hand chain in the left hand of the video\",\n    \"video_name\": \"hIHeMA1oRrY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a the woman with a yellow hair first take a hairpin or make a hair first\",\n    \"video_name\": \"FPf7mAgdy0I\",\n    \"answer\": \"hairpin\"\n  },\n  {\n    \"question\": \"does archery use a computer\",\n    \"video_name\": \"8AUTKSqcmiM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does archery use hand power\",\n    \"video_name\": \"8AUTKSqcmiM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does fishing use a brush\",\n    \"video_name\": \"7vcihMnmssI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does fishing use the teacup\",\n    \"video_name\": \"8_fjIZkNHms\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does it take a lot of strength to split the wood\",\n    \"video_name\": \"BmL2XGNrxc4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does it use the force of the hand\",\n    \"video_name\": \"8IrulONeC28\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does it use the hand strength to change the wheel\",\n    \"video_name\": \"8A4cZXyDrkU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does no. 43 wear a hat in green\",\n    \"video_name\": \"9FQ-VLkCZo8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does swimming use the strength of the leg\",\n    \"video_name\": \"8kaQq1mR2ys\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the athlete dive indoors\",\n    \"video_name\": \"M2Y2Cw2kwDo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the athlete dive outdoors\",\n    \"video_name\": \"M2Y2Cw2kwDo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the camel ride in the process of lying down\",\n    \"video_name\": \"VFC-V06hVj0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the cleaning scene in the video take place indoors or outdoors\",\n    \"video_name\": \"qaml4eEk9hY\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"does the girl with yellow hair wear a necklace\",\n    \"video_name\": \"9snScUyE8_4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the lady wear jewellery in the left hand of the video\",\n    \"video_name\": \"b_mWxzi_aps\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person clean the snow with an electrical tool\",\n    \"video_name\": \"PdwWFueQErM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in black wear a helmet\",\n    \"video_name\": \"otMw5GJWYWs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black wear a watch\",\n    \"video_name\": \"_jV5sAOOHLk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in sax wear a black hat\",\n    \"video_name\": \"wdvQC41PGPk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in sax wear a white hat\",\n    \"video_name\": \"wdvQC41PGPk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person on the ship wear a life jacket\",\n    \"video_name\": \"ys4_S3JHQjs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person swim in the butterfly at the end of the video\",\n    \"video_name\": \"e0yu4WgiZUM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the old man in the video wear dark glasses\",\n    \"video_name\": \"jt-Vnap5KP4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the old man in the video wear sunglasses\",\n    \"video_name\": \"jt-Vnap5KP4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person have a wave in the video\",\n    \"video_name\": \"aPI0nPvzJlE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in a blue vest wear shoes\",\n    \"video_name\": \"G0VWk5WqDp0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in black wear a hat\",\n    \"video_name\": \"_kmjpSZb3OI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in blue cut slow\",\n    \"video_name\": \"FWZ6wgaJ_L4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in red clothes throw the shot outdoors\",\n    \"video_name\": \"GjcRJzPjbRI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video hit the drum indoors\",\n    \"video_name\": \"m731tx8N5-Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video hit the drum outdoors\",\n    \"video_name\": \"m731tx8N5-Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the person in the video leave a beard\",\n    \"video_name\": \"n832gDqfWl4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video pour the ice after the ice\",\n    \"video_name\": \"Yg03CCu9GMo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person in the video wipe the table with the left hand or the right hand\",\n    \"video_name\": \"chmegNbBTNc\",\n    \"answer\": \"left hand\"\n  },\n  {\n    \"question\": \"does the person wearing a gray vest in the standard pose of throwing shots\",\n    \"video_name\": \"GjcRJzPjbRI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the person with the camera start outdoors\",\n    \"video_name\": \"6G8m-vsGTA8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the pruning scene in the video take place indoors or outdoors\",\n    \"video_name\": \"QdmcjM2fluo\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"does the referee wear a tie\",\n    \"video_name\": \"FnPS6zn5S7M\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the round block use the bench\",\n    \"video_name\": \"8IrulONeC28\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the scene of cake making in video happen indoors or outdoors\",\n    \"video_name\": \"GSrBZXLSwWI\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"does the snow scene in the video take place indoors or outdoors\",\n    \"video_name\": \"rApbE1VkEjE\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"does the woman have short hair in the video\",\n    \"video_name\": \"FPf7mAgdy0I\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does the woman in light purple dress cut the white dog\",\n    \"video_name\": \"EXPYu9bfNcE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't anyone in a purple coat wear a apron\",\n    \"video_name\": \"gOnp3DZxeKU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't everyone wear an eye mask in the video\",\n    \"video_name\": \"qlK-c7hRqcA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't the person in black wear a hat\",\n    \"video_name\": \"4_jDgRsOGvY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't the person in black wear a mask\",\n    \"video_name\": \"3PsxzgeMv5w\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"doesn't the person in blue wear a microphone\",\n    \"video_name\": \"tgPD2SZo_DY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't the person in blue wear shoes\",\n    \"video_name\": \"uJ4OZfCjViM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"doesn't the person in green wear hats\",\n    \"video_name\": \"i6wR9_tkg6A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't the person in green wear helmets\",\n    \"video_name\": \"gZB_XrTnDCI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't the person in orange wear a hat\",\n    \"video_name\": \"uIHWHnItois\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't the person in red pants wear a hat\",\n    \"video_name\": \"i8hNrK3r_MY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't the person in red wear earrings\",\n    \"video_name\": \"0q9yZPTBbus\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't the person in red wear pants\",\n    \"video_name\": \"OQEKZXv6jSw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"doesn't the person in yellow wear shoes\",\n    \"video_name\": \"gr53ih2aFkE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't the person wear glasses in the video\",\n    \"video_name\": \"udSHsodv3gY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't the person wear sunglasses in the video\",\n    \"video_name\": \"v0azz4XzW_s\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"doesn't the person with yellow ribbons wear glasses\",\n    \"video_name\": \"u_vLZxgO9Rw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"don't there be a cup on the table\",\n    \"video_name\": \"hvrKRg166eQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does the girl in a striped clothes have a long hair or a short hair\",\n    \"video_name\": \"HX6BeHLQh5s\",\n    \"answer\": \"long hair\"\n  },\n  {\n    \"question\": \"do the people in red not wear shoes\",\n    \"video_name\": \"OQEKZXv6jSw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"first wash the shoes and display the shoes in the video\",\n    \"video_name\": \"AB480dHyDeM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"from the video we can see what the season was then.\",\n    \"video_name\": \"vSv1qMMt4Bk\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"how about gambling\",\n    \"video_name\": \"IGPZFun1Ok4\",\n    \"answer\": \"harmful\"\n  },\n  {\n    \"question\": \"how dangerous is welding this\",\n    \"video_name\": \"2ShsRSJ9cqE\",\n    \"answer\": \"higher\"\n  },\n  {\n    \"question\": \"how about the dog\",\n    \"video_name\": \"IGT0dIKDGCw\",\n    \"answer\": \"clever\"\n  },\n  {\n    \"question\": \"how safe is the gymnastic rod\",\n    \"video_name\": \"7rwDYzqfGgU\",\n    \"answer\": \"high\"\n  },\n  {\n    \"question\": \"how can the athlete's performance be reflected from the video\",\n    \"video_name\": \"WdtytUagoJs\",\n    \"answer\": \"very nice\"\n  },\n  {\n    \"question\": \"how complicated is the process of making a white suit\",\n    \"video_name\": \"ZBP_mLWROZU\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how dangerous is the sport of pushing the ice pot\",\n    \"video_name\": \"T62XjoKbN8M\",\n    \"answer\": \"much safer\"\n  },\n  {\n    \"question\": \"how dangerous is the sport of volleyball\",\n    \"video_name\": \"Mk7Yjq1U8OI\",\n    \"answer\": \"much safer\"\n  },\n  {\n    \"question\": \"how does the person in the gray coat go to the barber shop\",\n    \"video_name\": \"faqijFZWQlo\",\n    \"answer\": \"drive car\"\n  },\n  {\n    \"question\": \"how difficult is it to make sandwiches in video\",\n    \"video_name\": \"meNgZdu8tIk\",\n    \"answer\": \"much simpler\"\n  },\n  {\n    \"question\": \"how do men sprinkled water in the order\",\n    \"video_name\": \"EDDbcCBnTQM\",\n    \"answer\": \"up and down\"\n  },\n  {\n    \"question\": \"how do people in the video get off stage after the performance\",\n    \"video_name\": \"eKdtOKqLMRE\",\n    \"answer\": \"jump down\"\n  },\n  {\n    \"question\": \"how do you describe the cave\",\n    \"video_name\": \"7BFbmEY3BNw\",\n    \"answer\": \"narrow\"\n  },\n  {\n    \"question\": \"how do you evaluate the books that are wrapped up\",\n    \"video_name\": \"V9mLJJn8Lvw\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"how do you speculate on the existence of another person in the video\",\n    \"video_name\": \"eQwLUJ3P7wI\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"how does the game play\",\n    \"video_name\": \"KMK3_VeODlk\",\n    \"answer\": \"hit each other\"\n  },\n  {\n    \"question\": \"how does the operator use the hairpin to kill\",\n    \"video_name\": \"C27eI-S1Vkw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how difficult is it to bathe a horse\",\n    \"video_name\": \"sH_716hH_rY\",\n    \"answer\": \"more difficult\"\n  },\n  {\n    \"question\": \"how difficult is hockey movement\",\n    \"video_name\": \"T3A88zsRuVs\",\n    \"answer\": \"much more difficult\"\n  },\n  {\n    \"question\": \"how difficult is making ice curling\",\n    \"video_name\": \"5UZ2ft8Y3sI\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is weaving sweaters\",\n    \"video_name\": \"RtF6TGqwa7Y\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how difficult is the practice in video\",\n    \"video_name\": \"S7CW-si2JjA\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"how difficult is this musical instrument\",\n    \"video_name\": \"lU6DMCif3eE\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how hard is the difficulty of this game\",\n    \"video_name\": \"390iVq_urQM\",\n    \"answer\": \"difficulty\"\n  },\n  {\n    \"question\": \"how high is the diving platform in the video\",\n    \"video_name\": \"MQ9Ojge7CyA\",\n    \"answer\": \"ten meters\"\n  },\n  {\n    \"question\": \"how high is the grass before pruning\",\n    \"video_name\": \"dN8LBey17O8\",\n    \"answer\": \"6 centimeters\"\n  },\n  {\n    \"question\": \"how difficult is the ballet dancing for the girls\",\n    \"video_name\": \"EBw5-KVV_PU\",\n    \"answer\": \"higher\"\n  },\n  {\n    \"question\": \"how difficult ismaking egg rolls\",\n    \"video_name\": \"3i3SUPsyZtA\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"how difficult isrepairing tires\",\n    \"video_name\": \"cnMvMvVBXiI\",\n    \"answer\": \"more difficult\"\n  },\n  {\n    \"question\": \"how is the girl's mood\",\n    \"video_name\": \"5mWZY2XkWSQ\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"how is the hairdresser's proficiency in shaving\",\n    \"video_name\": \"mLFjww64sX8\",\n    \"answer\": \"more proficient\"\n  },\n  {\n    \"question\": \"how is the little boy's feel before he begins to perform\",\n    \"video_name\": \"MAYrBia9Xnw\",\n    \"answer\": \"happy\"\n  },\n  {\n    \"question\": \"how is the person in the video\",\n    \"video_name\": \"-crpjVnFv0U\",\n    \"answer\": \"pretty good\"\n  },\n  {\n    \"question\": \"how safe is children chopping wood\",\n    \"video_name\": \"dZsk5Dp_5FE\",\n    \"answer\": \"low grade\"\n  },\n  {\n    \"question\": \"how safe is gymnastic movement on the parallel bars\",\n    \"video_name\": \"6Xsfwn5M6qs\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is ironing clothes\",\n    \"video_name\": \"8lMncYsbrWw\",\n    \"answer\": \"higher\"\n  },\n  {\n    \"question\": \"how safe is making a cake\",\n    \"video_name\": \"iQnnCZTl_7U\",\n    \"answer\": \"high\"\n  },\n  {\n    \"question\": \"how safe is playing football\",\n    \"video_name\": \"v6P6bBPBXYw\",\n    \"answer\": \"high\"\n  },\n  {\n    \"question\": \"how safe is pulley slippery\",\n    \"video_name\": \"EETygPQ-j08\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is roller skating\",\n    \"video_name\": \"-CqVpCRxwTY\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"how safe is sailing\",\n    \"video_name\": \"dKJMP8EmZjw\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is sliding plate motion\",\n    \"video_name\": \"i_LT0ef1n-Y\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how safe is stepping on the foot machine\",\n    \"video_name\": \"45hcc_VI4t4\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how safe is the skip game\",\n    \"video_name\": \"8tCRp3NKtkI\",\n    \"answer\": \"high\"\n  },\n  {\n    \"question\": \"how is the security of this activity\",\n    \"video_name\": \"eMgC7I-GcgA\",\n    \"answer\": \"unsafe\"\n  },\n  {\n    \"question\": \"how is this man's skill\",\n    \"video_name\": \"li_mry59KCM\",\n    \"answer\": \"adept\"\n  },\n  {\n    \"question\": \"how many athletes are there in all\",\n    \"video_name\": \"tzP0lKSUv_o\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many athletes are there in the first match\",\n    \"video_name\": \"3Nd3Aai1bVA\",\n    \"answer\": \"7\"\n  },\n  {\n    \"question\": \"how many athletes are there in the high jump\",\n    \"video_name\": \"rsU73H6VyG8\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many balls are there on the ground\",\n    \"video_name\": \"VZ5R9goklpo\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many balls did the people in white wear in the video\",\n    \"video_name\": \"X2toGKgWMpE\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many balls did the people who just wore white clothes lost\",\n    \"video_name\": \"kYkvyRKxwfY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many bamboo sticks are there on the small purple cake\",\n    \"video_name\": \"dU7jG8G5li0\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many barbell pieces at each end of the barbell in the video\",\n    \"video_name\": \"bYNQ0GrCt64\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many basketball is there in the video\",\n    \"video_name\": \"FKtYeu2bJpA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many bicycles are being assembled in the video\",\n    \"video_name\": \"i8hNrK3r_MY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many birds are there in the video\",\n    \"video_name\": \"3dWw9GLcOeA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many black hair girls are there in the video\",\n    \"video_name\": \"iixZLnyLuN8\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many black vests are there in the video\",\n    \"video_name\": \"ut1AoOzqL4k\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many blonde men are there in the video\",\n    \"video_name\": \"IsV1n_kLpvs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many blue shorts are there in the video\",\n    \"video_name\": \"UNXLfqkwKFc\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many boards did this man repair\",\n    \"video_name\": \"li_mry59KCM\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many boats are there in the video\",\n    \"video_name\": \"7BFbmEY3BNw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many books are there in the video\",\n    \"video_name\": \"V9mLJJn8Lvw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many bullfighters are performing in the video\",\n    \"video_name\": \"HowkVy5fOyk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many cars are there flashing the light\",\n    \"video_name\": \"K1OsjA-f17E\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many cars are there under the railway\",\n    \"video_name\": \"-EIsT868Trw\",\n    \"answer\": \"13\"\n  },\n  {\n    \"question\": \"how many cattle are there in a match\",\n    \"video_name\": \"2_H3lxMWvPo\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many chieves are there in the video\",\n    \"video_name\": \"MAGeYoFuCgo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many children are there in a light blue dress\",\n    \"video_name\": \"E_UkQGk7QAE\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many children are there with a stick\",\n    \"video_name\": \"kBTqTp0SKq8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many circles did the athletes turn around in the air\",\n    \"video_name\": \"f2DS_AVorrY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many circles did the people in the white dress rotate\",\n    \"video_name\": \"OlR9S70AA74\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many colors are there in a dog\",\n    \"video_name\": \"PFeerDZbGn8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many colors are there in the hula hoop\",\n    \"video_name\": \"3nSOFmmA7FU\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many colors do the barbell of weightlifting men have\",\n    \"video_name\": \"EQrcCmgraa8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many cooks did this woman cook in all\",\n    \"video_name\": \"kkji9hespu0\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many copies did this woman send the cards\",\n    \"video_name\": \"kpOAGEYHts8\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many countries are there in the list\",\n    \"video_name\": \"bBRzBh0gAZQ\",\n    \"answer\": \"9\"\n  },\n  {\n    \"question\": \"how many cows are there in the video\",\n    \"video_name\": \"H_JLBvfP88U\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many dancers are dancing in the video\",\n    \"video_name\": \"-crpjVnFv0U\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many dart people are there in the video\",\n    \"video_name\": \"hyMqGr0mOfA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many darts are there\",\n    \"video_name\": \"IYLJU87AkOg\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many discus are there for each contestant\",\n    \"video_name\": \"Jhcis4S2Vsg\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many dogs are walking on the meadow\",\n    \"video_name\": \"KXMZHfCwTO0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many drums are there in front of a woman\",\n    \"video_name\": \"FFMugev85IY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many drums are there in the drum\",\n    \"video_name\": \"eKdtOKqLMRE\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many drums did the white men beat\",\n    \"video_name\": \"e-Xf13exY4E\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many drumsticks were held in the person's hand\",\n    \"video_name\": \"fh9d3gpT-8I\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many egg rolls have been made by the chef\",\n    \"video_name\": \"3i3SUPsyZtA\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many electric cars are there in the video\",\n    \"video_name\": \"stdtUoog49I\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many fingers were dyed altogether\",\n    \"video_name\": \"Feq-2NIDl94\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many flags are there on the wall in the video\",\n    \"video_name\": \"e0yLhjXQIXI\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many flying discs are there in the video\",\n    \"video_name\": \"Em4ekFj4XIs\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many ger countries are there in the top three\",\n    \"video_name\": \"pmmQuksmTvw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many girls in blue vest are there in the video\",\n    \"video_name\": \"7IwHwDuQdyU\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many glass is the black man wiped\",\n    \"video_name\": \"fQ1OuD7x3to\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many grey men are there in the video\",\n    \"video_name\": \"VfhDSTKBwgc\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many grey women are there in the video\",\n    \"video_name\": \"iQnnCZTl_7U\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many groups of people who play volleyball in the video are divided into groups\",\n    \"video_name\": \"BD9CAqD1Yf8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many guests are there in front of the first dutch official\",\n    \"video_name\": \"j6BCgvUusWs\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many guitars are there in all\",\n    \"video_name\": \"ds3mAmUPxYA\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many gymnasts are there in the video\",\n    \"video_name\": \"u0Dc0ZtudXY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many hair cards do you use for a woman with yellow hair\",\n    \"video_name\": \"FPf7mAgdy0I\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many hairpins are used\",\n    \"video_name\": \"amgpZtvd9h0\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many handles are there on a table football in the video\",\n    \"video_name\": \"fvEaC-fTR4A\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many hoops do people wear in the video\",\n    \"video_name\": \"0xBP-TSsqb0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many horses are there on the racetrack\",\n    \"video_name\": \"4H9MMsj4mcM\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many houses are there behind the black people\",\n    \"video_name\": \"eQ0sW4hJ9zU\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many individuals are playing the guitar in the video\",\n    \"video_name\": \"7lxP-hWFA24\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many kinds of combs are displayed in the video\",\n    \"video_name\": \"P8S8PIyPXxY\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many kinds of hand gestures are there\",\n    \"video_name\": \"v-UmNR5yeDc\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many kinds of ice pot are there in the game\",\n    \"video_name\": \"5UZ2ft8Y3sI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many laps does the woman in the gym suit turn forward\",\n    \"video_name\": \"FnPS6zn5S7M\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many lifesaving rings are there\",\n    \"video_name\": \"woI_zP55qWo\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many little girls are involved in shooting in the video\",\n    \"video_name\": \"fSBX-gjPblw\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many little girls are performing\",\n    \"video_name\": \"k-I4zLbgdpM\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many lollipops do people do in the video\",\n    \"video_name\": \"ngMxE3CnGVg\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many long hair girls are there in the video\",\n    \"video_name\": \"vBaiedxy1Uw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many long hair women are there in the video\",\n    \"video_name\": \"UvOEuhS0V3E\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many men are there in the video for rope skipping\",\n    \"video_name\": \"u_vLZxgO9Rw\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many men in blue shorts have appeared in the video\",\n    \"video_name\": \"iuXjatyFcwo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many men in red clothes are there in the video\",\n    \"video_name\": \"IGPZFun1Ok4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many men with glasses are there in the video\",\n    \"video_name\": \"IToczVhbOc0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many microphones are there in black hat men\",\n    \"video_name\": \"7OcxT66BxX0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many names does the long jumpers win in the 100 metre race\",\n    \"video_name\": \"2-AMrzL7V-U\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many numbers are there in video games\",\n    \"video_name\": \"R74yolowFPs\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many of the cheerleaders are there at the beginning of the video\",\n    \"video_name\": \"SYh-j9bK_ls\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many old men are there in the video\",\n    \"video_name\": \"EQWdo0FcKAo\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many old people are wearing black sweater in the video\",\n    \"video_name\": \"V-46E7jMm-Y\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many orange frisbee are there in the video\",\n    \"video_name\": \"Em4ekFj4XIs\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many penguins are there in the video\",\n    \"video_name\": \"5LGh56euaZs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people actually appear in the video\",\n    \"video_name\": \"eQwLUJ3P7wI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are around the person riding on the horse\",\n    \"video_name\": \"KWpATsiXF_M\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are holding an instrument in the video\",\n    \"video_name\": \"6H0D8VaIli0\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are in a group of games\",\n    \"video_name\": \"kyx4MMmBr3A\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many people are in red clothes\",\n    \"video_name\": \"CDecXoRSpIc\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are in the counter\",\n    \"video_name\": \"kPn9NzU4W48\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are jumping aerobics\",\n    \"video_name\": \"eg2s5lOfKGI\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are kneeling in the video\",\n    \"video_name\": \"z6l9utYlIrw\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many people are not in the pool\",\n    \"video_name\": \"PBYg9ekd86w\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are on the balance wood in the video\",\n    \"video_name\": \"Z6b4oFjIznU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are on the wall cloth\",\n    \"video_name\": \"kistIwzeQOU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are participating in the competition\",\n    \"video_name\": \"FaP7unySMOs\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are performing the balance wood\",\n    \"video_name\": \"kMtjk1KFvXQ\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are playing ping-pong\",\n    \"video_name\": \"kYkvyRKxwfY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are playing the guitar in the video\",\n    \"video_name\": \"bYxVbXzQToI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are playing the uneven bars in the video\",\n    \"video_name\": \"VjMMwpgOCPo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are playing volleyball in the first picture\",\n    \"video_name\": \"Mk7Yjq1U8OI\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are practicing the ball\",\n    \"video_name\": \"laU1Hvm5Dis\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are sitting in the bench\",\n    \"video_name\": \"KXcVYfMuUGw\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are standing on the edge of the water\",\n    \"video_name\": \"lYP05IRcOPE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are the people in the gym\",\n    \"video_name\": \"k--dW53UQWs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there after the long pole falls to the ground\",\n    \"video_name\": \"AtbTioB1_Kw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there behind the referee\",\n    \"video_name\": \"eJc8bebOF2A\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in a billiard game\",\n    \"video_name\": \"3oy4P1gyU4k\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in each team in the match field\",\n    \"video_name\": \"BdRH3lpopLQ\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many people are there in the blue dress\",\n    \"video_name\": \"1px5LTVIR3A\",\n    \"answer\": \"7\"\n  },\n  {\n    \"question\": \"how many people are there in the blue dress in the video\",\n    \"video_name\": \"I1iUbyjWy7k\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the camels\",\n    \"video_name\": \"rrpEOrMpBuE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the grey clothes in the video\",\n    \"video_name\": \"hGPCJb2g1tQ\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there in the hammer throw\",\n    \"video_name\": \"d09u-0k3LdE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the hat\",\n    \"video_name\": \"d6gGZFQOxOg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the red pants in the video\",\n    \"video_name\": \"vFO70WwrQgE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there in the rope skipping\",\n    \"video_name\": \"W2eumNilwuI\",\n    \"answer\": \"9\"\n  },\n  {\n    \"question\": \"how many people are there in the studio\",\n    \"video_name\": \"wCexKIuAj3A\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many people are there in the third pictures\",\n    \"video_name\": \"RXT17X7lRoQ\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video last studio\",\n    \"video_name\": \"AwcM25G1h-g\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there in the video playing skateboards\",\n    \"video_name\": \"uIHWHnItois\",\n    \"answer\": \"7\"\n  },\n  {\n    \"question\": \"how many people are there in the video that push the curling\",\n    \"video_name\": \"LL0uQO4q_wY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there jumping into the water in the video\",\n    \"video_name\": \"M2Y2Cw2kwDo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there on grey cars\",\n    \"video_name\": \"mkGUacg0GRc\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there on the boat in the video\",\n    \"video_name\": \"nnEPsdA0080\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many people are there on the platform below the platform\",\n    \"video_name\": \"f2DS_AVorrY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there on the skateboard\",\n    \"video_name\": \"rM02KWikOo8\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there on the skiing boat of the little red girl\",\n    \"video_name\": \"9G172wz5Yqo\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there on the table\",\n    \"video_name\": \"s9PkkDEl6aY\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there on the two ships\",\n    \"video_name\": \"DHjoAOus3xM\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are there playing the drums\",\n    \"video_name\": \"JGPhQX97OSE\",\n    \"answer\": \"7\"\n  },\n  {\n    \"question\": \"how many people are there to demonstrate\",\n    \"video_name\": \"PSB1nM3QXxg\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are there to pick up the respirator in video\",\n    \"video_name\": \"2DCHbuwZNSs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are there with white lights in the video\",\n    \"video_name\": \"I2XqSiNerwg\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people are throwing darts in the video\",\n    \"video_name\": \"raxeBxPQqlk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are walking on stilts in the video\",\n    \"video_name\": \"mixxaL3Bdv8\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people are wearing a blue sling vest\",\n    \"video_name\": \"6Xsfwn5M6qs\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are wearing a doll dress in the video\",\n    \"video_name\": \"2vrR_5u2buU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are wearing a red coat\",\n    \"video_name\": \"DHjoAOus3xM\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are wearing a tie in the video\",\n    \"video_name\": \"sNTOUuE7ZfM\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are wearing blue and black pants in the video\",\n    \"video_name\": \"iAes5SVj_Fg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are wearing blue clothes in the video\",\n    \"video_name\": \"T62XjoKbN8M\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are wearing orange in the video\",\n    \"video_name\": \"uLsq6gQXQPM\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are wearing orange pants in the video\",\n    \"video_name\": \"vnZmsOgWs0o\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people are wearing suits in the video\",\n    \"video_name\": \"H33jSILKmfI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people are wrenching their wrists\",\n    \"video_name\": \"Flm_SCK10GQ\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people can each canoe carry\",\n    \"video_name\": \"Erje-PwY9hE\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people does the body fit in\",\n    \"video_name\": \"k--dW53UQWs\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people does the people in the red coat interviewed\",\n    \"video_name\": \"zpaS2iYrJjk\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people do each team compete in the tug of war competition\",\n    \"video_name\": \"6O4S2CpRB0A\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many people do smoke\",\n    \"video_name\": \"FmfAB-ppHBs\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people do the split in the video\",\n    \"video_name\": \"BkDbDnvoL28\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people do the video finally stand on the ground\",\n    \"video_name\": \"rWfQj0X8WU4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people do they wash their faces in the video\",\n    \"video_name\": \"5oyenoaVB-w\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people have been eliminated at the beginning of the video\",\n    \"video_name\": \"3oy4P1gyU4k\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people have chopped wood in the video\",\n    \"video_name\": \"hG4VsZQQ2_c\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people have eaten sandwiches\",\n    \"video_name\": \"Ko7Nt8UDP4Q\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many people have finished the first game in the video\",\n    \"video_name\": \"iZT4XgzUHm4\",\n    \"answer\": \"7\"\n  },\n  {\n    \"question\": \"how many people have jumped the water\",\n    \"video_name\": \"kTqt7ry3eVM\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people have sandwiches in the video\",\n    \"video_name\": \"meNgZdu8tIk\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people have the boxes in the hands\",\n    \"video_name\": \"K7iw2_1BrIk\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people have weightlifting in the video\",\n    \"video_name\": \"tRFK1BMKaRo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people in black and white stripes are there in the video\",\n    \"video_name\": \"PkRvgIFREJU\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people in red clothes do they arrive at the final store\",\n    \"video_name\": \"kyx4MMmBr3A\",\n    \"answer\": \"sixth\"\n  },\n  {\n    \"question\": \"how many people in the parachute are there in the video\",\n    \"video_name\": \"3LwQ2yq85LU\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people in the video cut their hair for a man wearing a checked shirt\",\n    \"video_name\": \"1IbkFHNA7fg\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people play bounce shoes in the video\",\n    \"video_name\": \"YVqRQDkdA8U\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people ride bikes\",\n    \"video_name\": \"FtRGOgg0Qh8\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people shake hands with the person in white\",\n    \"video_name\": \"G25py7yEVyo\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many people take part in the skipping rope\",\n    \"video_name\": \"KZ1NEffR2Qg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people throw the discus\",\n    \"video_name\": \"cK0-WcGXacQ\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people wear the dress in the video\",\n    \"video_name\": \"UzmsAb15Bso\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many people wear white helmets in the video\",\n    \"video_name\": \"7-UlUnaBjXU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many people were there in the grey coat when the man had a haircut\",\n    \"video_name\": \"faqijFZWQlo\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many people's games are the wrenches\",\n    \"video_name\": \"ldAHwbF8uWI\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many performers are there on the stage\",\n    \"video_name\": \"BhgcXqWQhkQ\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many pieces of bread are there in the video\",\n    \"video_name\": \"5nu47s7JrfY\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many pieces of music are there\",\n    \"video_name\": \"-Fk62y-1WHo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many pieces of wood are not chopped at the beginning of the video\",\n    \"video_name\": \"BmL2XGNrxc4\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many players are there in a bicycle race\",\n    \"video_name\": \"0Um-HgjcnXY\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many players are there in a video game\",\n    \"video_name\": \"SjlILJ2st-I\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many players are there in the 100 meter race\",\n    \"video_name\": \"2-AMrzL7V-U\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many players are there on the track\",\n    \"video_name\": \"JH9qiuPCkY4\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many players fell down in the video\",\n    \"video_name\": \"2uUNiV8xmEo\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many points does the girl get\",\n    \"video_name\": \"kMtjk1KFvXQ\",\n    \"answer\": \"9.75\"\n  },\n  {\n    \"question\": \"how many pots are there in the video\",\n    \"video_name\": \"ivAvKRQQy1Q\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many red english words are there in the beginning\",\n    \"video_name\": \"5k2Ot6-wOgc\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many referees are there in the match\",\n    \"video_name\": \"FxpP7lqvm30\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many riders are there in the video\",\n    \"video_name\": \"DUi-hLMpQQo\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many rings are there on the right hand of the make-up\",\n    \"video_name\": \"W97fdJ2Rn9g\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many runways are there in the video\",\n    \"video_name\": \"iuc48VIWLJY\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many seconds does the club sign appear at the beginning of the video\",\n    \"video_name\": \"03c6QhTMDSs\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many seconds does the subtitle appear at the beginning of the video\",\n    \"video_name\": \"lOZ9bfzq89o\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many seconds do the people use to turn the magic cube in the video\",\n    \"video_name\": \"NjXCZYO3zwU\",\n    \"answer\": \"11\"\n  },\n  {\n    \"question\": \"how many shaving potatoes do people put in the water tank in the video\",\n    \"video_name\": \"2nDJpvD-eZU\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many shot putter are there in the video\",\n    \"video_name\": \"LWt2FuU0uC4\",\n    \"answer\": \"8\"\n  },\n  {\n    \"question\": \"how many shots had the female sportsmen pushed\",\n    \"video_name\": \"EPsSfOEd3BU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many single bars are there in the video\",\n    \"video_name\": \"1YU4MSK80cQ\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many sites are converted in the video\",\n    \"video_name\": \"fSBX-gjPblw\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many skiing tracks are there in the video\",\n    \"video_name\": \"4YF9R3Sz2bA\",\n    \"answer\": \"7\"\n  },\n  {\n    \"question\": \"how many staffs are there on the ground\",\n    \"video_name\": \"Jdu5AqaWfz8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many steps are there in the video to introduce the steps of shaving\",\n    \"video_name\": \"BWAedc31WdY\",\n    \"answer\": \"6\"\n  },\n  {\n    \"question\": \"how many sunshade umbrellas on the edge of the swimming pool in the video\",\n    \"video_name\": \"AQ3eFWxZ67U\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many swimmers does the men swim\",\n    \"video_name\": \"e0yu4WgiZUM\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many swimsuits are there in the video\",\n    \"video_name\": \"lUil9HfTzJ0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many tangerine girls are there in the video\",\n    \"video_name\": \"iKclcQEl4zI\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many teams are there in the swimming pool\",\n    \"video_name\": \"Es3PxD9oi4I\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many tennis does the lady make in the video\",\n    \"video_name\": \"P5D9S9NzQ28\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many throws are there in the video\",\n    \"video_name\": \"vezvHLPR3P0\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many times are the javelin throwers in the video\",\n    \"video_name\": \"1QIUV7WYKXg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many times does the man with a hat throw\",\n    \"video_name\": \"IYLJU87AkOg\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many times does the the person in the yellow clothes fight\",\n    \"video_name\": \"Nc9yr4urskA\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many times have the cake been cut\",\n    \"video_name\": \"S7CW-si2JjA\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many times has the person of the white clothes rubbed their feet\",\n    \"video_name\": \"_jIXs7AFTxw\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many times have there been footage controlled by foot\",\n    \"video_name\": \"AsdsR27UnJ0\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many tools are displayed when the tool is displayed\",\n    \"video_name\": \"B4Zp5XN97Gc\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many top are the red and white umbrellas\",\n    \"video_name\": \"wnNiWoJxfSQ\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many toys are there on the tree\",\n    \"video_name\": \"cCimLg-8Dy4\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many trademarks are there on the back of the video\",\n    \"video_name\": \"EQrcCmgraa8\",\n    \"answer\": \"5\"\n  },\n  {\n    \"question\": \"how many volleyball nets are there in the video\",\n    \"video_name\": \"cAiig_569fI\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how many walls are the men in white\",\n    \"video_name\": \"kistIwzeQOU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many wheels are there in a single skate\",\n    \"video_name\": \"EETygPQ-j08\",\n    \"answer\": \"4\"\n  },\n  {\n    \"question\": \"how many white haired seniors are there in the video\",\n    \"video_name\": \"idkQqlwyff8\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many white lines are there in the video\",\n    \"video_name\": \"7F-mVWMP2vM\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many white short sleeves are there\",\n    \"video_name\": \"wLXty2wzuJg\",\n    \"answer\": \"2\"\n  },\n  {\n    \"question\": \"how many women are there in the center of the court\",\n    \"video_name\": \"7rwDYzqfGgU\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many women are there in the video with glasses\",\n    \"video_name\": \"ILmZg0vz0Hg\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how many women are there in white hats\",\n    \"video_name\": \"8AUTKSqcmiM\",\n    \"answer\": \"1\"\n  },\n  {\n    \"question\": \"how much are there on the ship\",\n    \"video_name\": \"L5IbDi09Yb4\",\n    \"answer\": \"3\"\n  },\n  {\n    \"question\": \"how much does this man turn the oven to\",\n    \"video_name\": \"lfbspF18Wrw\",\n    \"answer\": \"350\"\n  },\n  {\n    \"question\": \"how dangerous of badminton\",\n    \"video_name\": \"1dDAcUliXrQ\",\n    \"answer\": \"low\"\n  },\n  {\n    \"question\": \"how safe is the activity in the video\",\n    \"video_name\": \"4YF9R3Sz2bA\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"how does the person in red pants get to the park\",\n    \"video_name\": \"KZ1NEffR2Qg\",\n    \"answer\": \"walking\"\n  },\n  {\n    \"question\": \"how to evaluate the action of a girl wearing a blue vest\",\n    \"video_name\": \"7IwHwDuQdyU\",\n    \"answer\": \"standard\"\n  },\n  {\n    \"question\": \"how to evaluate the culinary art of the white man in the video\",\n    \"video_name\": \"ivAvKRQQy1Q\",\n    \"answer\": \"superb\"\n  },\n  {\n    \"question\": \"how to evaluate the flow of water in video\",\n    \"video_name\": \"V90CMuokf0c\",\n    \"answer\": \"torrential\"\n  },\n  {\n    \"question\": \"how to evaluate the ironing technology of the person wearing white clothes\",\n    \"video_name\": \"8lMncYsbrWw\",\n    \"answer\": \"skilled\"\n  },\n  {\n    \"question\": \"how to evaluate the long hair woman\",\n    \"video_name\": \"7dXqXFoju2M\",\n    \"answer\": \"wear exposure\"\n  },\n  {\n    \"question\": \"how to evaluate the man with a black hat\",\n    \"video_name\": \"7OcxT66BxX0\",\n    \"answer\": \"sing in earnest\"\n  },\n  {\n    \"question\": \"how to evaluate the man's way of dressing the wine in red clothes\",\n    \"video_name\": \"iqyc2JM0uIU\",\n    \"answer\": \"skilled\"\n  },\n  {\n    \"question\": \"how to evaluate the men in the blue shorts in the video\",\n    \"video_name\": \"iuXjatyFcwo\",\n    \"answer\": \"strong\"\n  },\n  {\n    \"question\": \"how to evaluate the roller skating movement\",\n    \"video_name\": \"7lxP-hWFA24\",\n    \"answer\": \"cool\"\n  },\n  {\n    \"question\": \"how to evaluate the safety factor of gymnastics\",\n    \"video_name\": \"7IwHwDuQdyU\",\n    \"answer\": \"secondary\"\n  },\n  {\n    \"question\": \"how to evaluate the skating skills of the men in blue clothes\",\n    \"video_name\": \"7lxP-hWFA24\",\n    \"answer\": \"skilled\"\n  },\n  {\n    \"question\": \"how to evaluate the skill of the old man in a blue sweater\",\n    \"video_name\": \"7F-mVWMP2vM\",\n    \"answer\": \"skilled\"\n  },\n  {\n    \"question\": \"how to evaluate the terrain of the track\",\n    \"video_name\": \"iZT4XgzUHm4\",\n    \"answer\": \"high and low\"\n  },\n  {\n    \"question\": \"how to evaluate the two blondes\",\n    \"video_name\": \"8teo_0gxzgk\",\n    \"answer\": \"wear exposure\"\n  },\n  {\n    \"question\": \"how to evaluate this girl with black hair\",\n    \"video_name\": \"iixZLnyLuN8\",\n    \"answer\": \"lovely\"\n  },\n  {\n    \"question\": \"how to evaluate this course\",\n    \"video_name\": \"7LbBmVX33I4\",\n    \"answer\": \"concise and clear\"\n  },\n  {\n    \"question\": \"how to look at the tongue nail\",\n    \"video_name\": \"ikUNgSw4Gys\",\n    \"answer\": \"they hurt\"\n  },\n  {\n    \"question\": \"where is the blue dress girl skating\",\n    \"video_name\": \"EETygPQ-j08\",\n    \"answer\": \"skating rink\"\n  },\n  {\n    \"question\": \"what year could the cake be made\",\n    \"video_name\": \"dU7jG8G5li0\",\n    \"answer\": \"2011\"\n  },\n  {\n    \"question\": \"in which country does the video capture\",\n    \"video_name\": \"LjPKKqe-VO0\",\n    \"answer\": \"usa\"\n  },\n  {\n    \"question\": \"is a child wearing blue and white stripes wearing black hair\",\n    \"video_name\": \"9TjPn_ejmFU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a child wearing blue and white stripes wearing short hair\",\n    \"video_name\": \"9TjPn_ejmFU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a female presiding wearing short hair\",\n    \"video_name\": \"vSv1qMMt4Bk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a girl in purple clothes wearing short hair\",\n    \"video_name\": \"WNgI2qBvPrY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a goggle used during diving\",\n    \"video_name\": \"IIPKxzPjrWg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a group of boys spanning the wrist\",\n    \"video_name\": \"Flm_SCK10GQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a group of girls spanning the wrist\",\n    \"video_name\": \"Flm_SCK10GQ\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a hammer used during cutting the roof's tin\",\n    \"video_name\": \"IsV1n_kLpvs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a knife used during ballet dancing\",\n    \"video_name\": \"IxaBEVd2PZM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a lady in a dark purple skirt long hair\",\n    \"video_name\": \"wCexKIuAj3A\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a lady in a dark purple skirt wearing short hair\",\n    \"video_name\": \"wCexKIuAj3A\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a lady in a red dress long hair\",\n    \"video_name\": \"wcxEkMoOmBk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a lady in a red dress wearing short hair\",\n    \"video_name\": \"wcxEkMoOmBk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a man hair long\",\n    \"video_name\": \"BMy7CBVxH5M\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a man in a high station wearing short hair\",\n    \"video_name\": \"woI_zP55qWo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a man in a red coat wearing a white hat\",\n    \"video_name\": \"dHKeNK1uWUg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a man in a white jacket tied on a tie or a bow\",\n    \"video_name\": \"bYxVbXzQToI\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"is a man in white shoes a fat man\",\n    \"video_name\": \"EQrcCmgraa8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a man wearing a camouflage\",\n    \"video_name\": \"A_Sr0mCX2rI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a man wearing a gray coat wearing short hair\",\n    \"video_name\": \"faqijFZWQlo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"does a man wearing a white coat have long hair\",\n    \"video_name\": \"fh21bbDSVmA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"does a man wearing a white coat have wearing short hair\",\n    \"video_name\": \"fh21bbDSVmA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a man with a beard long hair\",\n    \"video_name\": \"wE9sQbGdeAk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a man with a beard wearing short hair\",\n    \"video_name\": \"wE9sQbGdeAk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a man with long hair on a high platform\",\n    \"video_name\": \"woI_zP55qWo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a pen used during diving\",\n    \"video_name\": \"IIPKxzPjrWg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a pen used in the gambling\",\n    \"video_name\": \"IGPZFun1Ok4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a pen used in the process of planting trees\",\n    \"video_name\": \"UNKf15ALDh8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a person wearing a red and white shoe in the hands of boxing\",\n    \"video_name\": \"kPn9NzU4W48\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a person wearing a white shirt wearing something on his left wrist\",\n    \"video_name\": \"gkwLhml3mnA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a red hat wearing a red hat for a man in red\",\n    \"video_name\": \"dHKeNK1uWUg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a woman in a blue vest long hair\",\n    \"video_name\": \"cAiig_569fI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a woman in a light blue dress wearing a blue hat\",\n    \"video_name\": \"E_UkQGk7QAE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a woman in a light blue dress wearing white pants\",\n    \"video_name\": \"E_UkQGk7QAE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a woman in a light purple dress working\",\n    \"video_name\": \"EXPYu9bfNcE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a woman in a video bungee wearing long hair\",\n    \"video_name\": \"CvbL36Y8hN0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a woman in a video bungee wearing wearing short hair\",\n    \"video_name\": \"CvbL36Y8hN0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a woman in a yellow coat wearing long hair\",\n    \"video_name\": \"dGT_KGb0gyw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a woman in jeans wearing wearing short hair\",\n    \"video_name\": \"F9FPK6mfh88\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a woman wearing short hair\",\n    \"video_name\": \"DTI__3fkSzM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a woman wearing a blue vest wearing short hair\",\n    \"video_name\": \"cAiig_569fI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a woman wearing a red coat long hair\",\n    \"video_name\": \"_SJOVswvGRc\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is a woman wearing a red coat wearing short hair\",\n    \"video_name\": \"_SJOVswvGRc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a woman wearing a red dress wearing short hair\",\n    \"video_name\": \"xuvp0jKMqRU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is a woman wearing a yellow coat wearing short hair\",\n    \"video_name\": \"dGT_KGb0gyw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is an orange man or a woman\",\n    \"video_name\": \"GcjzvBatqb4\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"is any brush used during decorating\",\n    \"video_name\": \"ILmZg0vz0Hg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is any sellotape used during decorating\",\n    \"video_name\": \"ILmZg0vz0Hg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is anyone's body entirely included in the camera\",\n    \"video_name\": \"PD-FXR7O9J0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is cheerleading this sport dangerous\",\n    \"video_name\": \"hvrKRg166eQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is diving dangerous\",\n    \"video_name\": \"HJWwqjLf1I4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is gambling a healthy act\",\n    \"video_name\": \"ECZb_tQZ4Pg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is he black hair in the video\",\n    \"video_name\": \"_CIoHeD7KQc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is her dress gray in the video\",\n    \"video_name\": \"_a527xEzhkw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is her dress white in the video\",\n    \"video_name\": \"_a527xEzhkw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is her hair curly hair in the video\",\n    \"video_name\": \"_a527xEzhkw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is his body entirely included in the camera\",\n    \"video_name\": \"Oyycph_Ukfg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is his hair black in the video\",\n    \"video_name\": \"MQ9Ojge7CyA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is ignition successful\",\n    \"video_name\": \"cCDffwsJvsY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it a champion wearing a black dress\",\n    \"video_name\": \"0Um-HgjcnXY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it a contest between children and adults in tug of war\",\n    \"video_name\": \"FxpP7lqvm30\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it a contest between children and children in tug of war\",\n    \"video_name\": \"FxpP7lqvm30\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it a dog\",\n    \"video_name\": \"Ki13JIVwMdk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it a group of the person practicing basketball\",\n    \"video_name\": \"FKtYeu2bJpA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it a kid on the slide on the video\",\n    \"video_name\": \"QPEAp7nf2Tk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it a lighter which they used to fire cigarette\",\n    \"video_name\": \"FmfAB-ppHBs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it a man to practice basketball\",\n    \"video_name\": \"FKtYeu2bJpA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it a man wearing white short sleeves\",\n    \"video_name\": \"C7yd6yEkxXE\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it a rainy day at this time\",\n    \"video_name\": \"fhOmyyI0eQE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it a rope jumping indoors\",\n    \"video_name\": \"DIVaPURJHPo\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it a time game\",\n    \"video_name\": \"fLR-b-FDjlM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it a woman wearing white short sleeves\",\n    \"video_name\": \"C7yd6yEkxXE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it a zang wolf\",\n    \"video_name\": \"Ki13JIVwMdk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it an adult playing a musical instrument\",\n    \"video_name\": \"-Fk62y-1WHo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it at the party\",\n    \"video_name\": \"fMVuGUBs2cs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it bad for a man with blonde hair to use a mouthwash\",\n    \"video_name\": \"er5jUsRr4y0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it cold\",\n    \"video_name\": \"P6Oq6C9X0fw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it cold for the person in black clothes\",\n    \"video_name\": \"390iVq_urQM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it complex to making a cake in the video\",\n    \"video_name\": \"GSrBZXLSwWI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it dangerous for bullfighting\",\n    \"video_name\": \"H_JLBvfP88U\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it dangerous to brush the wall\",\n    \"video_name\": \"MDsJa6Yitwc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it dangerous to dance tango\",\n    \"video_name\": \"KsFid_YVsn0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it dangerous to exercise\",\n    \"video_name\": \"uLphvdhunTY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it dangerous to skate on the panshan road\",\n    \"video_name\": \"0e7d39SwHCA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it dangerous to spell the magic square\",\n    \"video_name\": \"QIUxLD27NuI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it dangerous to throw darts\",\n    \"video_name\": \"raxeBxPQqlk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it day or night when the woman surf\",\n    \"video_name\": \"6xBh3vzhgo4\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"is it daytime to practice the movement of water sled\",\n    \"video_name\": \"Vxw3yFCV2iA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it going to be a run-up in the long jump\",\n    \"video_name\": \"ut1AoOzqL4k\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it good to draw\",\n    \"video_name\": \"hRsn4nesCQo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it hard for the person in the video\",\n    \"video_name\": \"cVFVREeD6hM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it hard for them to dance\",\n    \"video_name\": \"Gfu8e6R6jUU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it hot water to wash the towel in the video\",\n    \"video_name\": \"BWAedc31WdY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it in the summer in the video\",\n    \"video_name\": \"fbr7v8RMkf8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it in the video\",\n    \"video_name\": \"a_EqAwUOxpM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it in winter in the video\",\n    \"video_name\": \"fbr7v8RMkf8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it lying in the skiing circle\",\n    \"video_name\": \"iuc48VIWLJY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it necessary to use block in the course of playing volleyball\",\n    \"video_name\": \"utgRhyBvtRU\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it needed to use a brush during weeding\",\n    \"video_name\": \"IMMoglaJ3RY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it needed to use a pen during flying discses\",\n    \"video_name\": \"IGT0dIKDGCw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it needed to use a pen to throw a ball\",\n    \"video_name\": \"IDuoF51IMJ8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it needed to use a phone during tattooing\",\n    \"video_name\": \"J1QB1y3vXLY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it needed to use the arm strength to fly discses\",\n    \"video_name\": \"IGT0dIKDGCw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it needed to use the arm strength to throw a ball\",\n    \"video_name\": \"IDuoF51IMJ8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it needed to use the mouth during tattooing\",\n    \"video_name\": \"IToczVhbOc0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it needed to use the thrust during weeding\",\n    \"video_name\": \"IMMoglaJ3RY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it needed yto use a computer during the make-up process\",\n    \"video_name\": \"IclzwpxVvIk\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it needed yto use the arm power during the make-up process\",\n    \"video_name\": \"IclzwpxVvIk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it night when you practise the movement of water sled\",\n    \"video_name\": \"Vxw3yFCV2iA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it possible to buckle wood with a useful rope before splitting the wood\",\n    \"video_name\": \"BmL2XGNrxc4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it possible to change the wheel to the computer\",\n    \"video_name\": \"8A4cZXyDrkU\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it possible to use a container during the process of cooking\",\n    \"video_name\": \"V08Q-DbT0GQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it possible to use a pen in the course of archery\",\n    \"video_name\": \"V-46E7jMm-Y\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it possible to use a pot in the process of carpeting\",\n    \"video_name\": \"V6Sy8zpJSuc\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it wearing short hair in an orange red dress in the video\",\n    \"video_name\": \"WXH-Tj0-g4w\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it standing at the side of the table inside\",\n    \"video_name\": \"j6BCgvUusWs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it standing in the course of the drums\",\n    \"video_name\": \"VJh9W3Gcpmo\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it standing in the course of the skiing circle\",\n    \"video_name\": \"iuc48VIWLJY\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it standing outside the table\",\n    \"video_name\": \"j6BCgvUusWs\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it supposed to wash hands after the toilet\",\n    \"video_name\": \"HtG-i1CG2Qs\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it that three persons are dancing in the video\",\n    \"video_name\": \"N75m1Z4RqbA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it that two persons are dancing in the video\",\n    \"video_name\": \"N75m1Z4RqbA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it the winner of an orange dress\",\n    \"video_name\": \"0Um-HgjcnXY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is it very difficult in dancing\",\n    \"video_name\": \"GgnM5RGNtDE\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it very difficult in weightlifting\",\n    \"video_name\": \"H0dG_1Vgw4Q\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is it very difficult to ride a wheelbarrow\",\n    \"video_name\": \"Pho9Hgdvc0g\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is leg strength used during cycling\",\n    \"video_name\": \"iZT4XgzUHm4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is mr. bean long hair\",\n    \"video_name\": \"wLXty2wzuJg\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is mr. bean wearing short hair\",\n    \"video_name\": \"wLXty2wzuJg\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is no. 43 in green clothes wearing a white hat\",\n    \"video_name\": \"9FQ-VLkCZo8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is no. 9 playing football indoors\",\n    \"video_name\": \"zOI9SjQpc_Q\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is no. 9 playing football outside\",\n    \"video_name\": \"zOI9SjQpc_Q\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is not the same kind of musical instrument in the video\",\n    \"video_name\": \"BhgcXqWQhkQ\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is playing the game in the sky\",\n    \"video_name\": \"fLR-b-FDjlM\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is playing the game on the ground\",\n    \"video_name\": \"fLR-b-FDjlM\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is purple hair color a fat woman\",\n    \"video_name\": \"ETbbYC0OhL0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is rafting dangerous\",\n    \"video_name\": \"HTSxgkgecS0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is running a big risk factor for this sport\",\n    \"video_name\": \"pVuuVHA3RVw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is she curly hair in the video\",\n    \"video_name\": \"MpeN-IVIBc4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is she wearing glasses in the video\",\n    \"video_name\": \"_a527xEzhkw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is wearing short hair a thinner man\",\n    \"video_name\": \"BWAedc31WdY\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is skiing a tool for skiing\",\n    \"video_name\": \"vqyQF-1Zc_E\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is someone falling in the water\",\n    \"video_name\": \"elD1P_1oiUk\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is television working\",\n    \"video_name\": \"Au4PfoK7hyw\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is that bald person wearing a red clothes\",\n    \"video_name\": \"L5IbDi09Yb4\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is that bald person wearing a white clothes\",\n    \"video_name\": \"L5IbDi09Yb4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the adult beside the basin indoors\",\n    \"video_name\": \"JGxf-jke0e8\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the adult beside the basin outside\",\n    \"video_name\": \"JGxf-jke0e8\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the arm power used in the process of somersault\",\n    \"video_name\": \"iKclcQEl4zI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the audience a lady in the video\",\n    \"video_name\": \"P2xT7dlyX8Y\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the ball under water\",\n    \"video_name\": \"rMj2JWNJzkw\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the bathtub blue\",\n    \"video_name\": \"PD-FXR7O9J0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the bathtub red\",\n    \"video_name\": \"PD-FXR7O9J0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the bike large or small\",\n    \"video_name\": \"FtRGOgg0Qh8\",\n    \"answer\": \"small scale\"\n  },\n  {\n    \"question\": \"is the bird on the branch\",\n    \"video_name\": \"3dWw9GLcOeA\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the bird on the roof\",\n    \"video_name\": \"3dWw9GLcOeA\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the black girl holding a stick in her hand\",\n    \"video_name\": \"cCimLg-8Dy4\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the man in black wiping the glass in the daytime or at night\",\n    \"video_name\": \"fQ1OuD7x3to\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"is the man in black with a white hat\",\n    \"video_name\": \"fQ1OuD7x3to\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the blond man indoors\",\n    \"video_name\": \"LjPKKqe-VO0\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the blond man outdoors\",\n    \"video_name\": \"LjPKKqe-VO0\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man with blonde hair wearing a hat\",\n    \"video_name\": \"8tCRp3NKtkI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the man with blonde hair wearing a watch\",\n    \"video_name\": \"8tCRp3NKtkI\",\n    \"answer\": \"yes\"\n  },\n  {\n    \"question\": \"is the girl in blue dress wearing glasses\",\n    \"video_name\": \"EETygPQ-j08\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the pants of the woman in blue dress a short pair of pants\",\n    \"video_name\": \"eg2s5lOfKGI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the boxing man in a black clothes\",\n    \"video_name\": \"H33jSILKmfI\",\n    \"answer\": \"no\"\n  },\n  {\n    \"question\": \"is the boxing man in a white clothes\",\n    \"video_name\": \"H33jSILKmfI\",\n    \"answer\": \"yes\"\n  }\n]"
  },
  {
    "path": "model/univi/eval/questions/video_qa/consistency_qa.json",
    "content": "[{\"Q1\": \"What equipment is visible in the gym where the boy is doing his routine?\", \"Q2\": \"Can you describe the gym where the boy is performing, and what equipment is visible?\", \"A\": \"There is other equipment visible in the gym like a high bar and still rings.\", \"video_name\": \"v_p1QGn0IzfW0\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe what is being played on the indoor volleyball court in the video?\", \"A\": \"The video shows a volleyball game being played on a well-lit indoor court, with spectators celebrating in the background.\", \"video_name\": \"v_UZm05CvtxkA\"}, {\"Q1\": \"What are the men playing on the beach?\", \"Q2\": \"Can you describe the activity of the men near the shore during day time?\", \"A\": \"The men are playing beach volleyball near the shore during daytime.\", \"video_name\": \"v_oR8o_PuKS28\"}, {\"Q1\": \"What is the color of the sweatshirt worn by the girl who combs her friend\\u2019s hair in the video?\", \"Q2\": \"Can you describe the clothes worn by the girls in the video?\", \"A\": \"The girl combing hair is wearing a black sweatshirt, white top, and blue jeans. The other girl is wearing a black sweatshirt.\", \"video_name\": \"v_YIq3Tar9x6s\"}, {\"Q1\": \"What color jersey is the male athlete wearing when he starts the hammer throw?\", \"Q2\": \"Can you describe the athlete\\u2019s outfit before he throws the hammer in the air?\", \"A\": \"The athlete is wearing a blue and red jersey and white and red sports shoes.\", \"video_name\": \"v_U3-MtKZeUXM\"}, {\"Q1\": \"What color ink does the man apply to the woman\\u2019s nail before curing it?\", \"Q2\": \"Can you describe the process of the man painting the woman\\u2019s nail?\", \"A\": \"The man applies black ink to the woman\\u2019s nail using a small brush before curing it and then applies glitter of different colors on the black-painted nail which is then cured under a curing lamp.\", \"video_name\": \"v_q_QR5HoROhI\"}, {\"Q1\": \"What is the man carrying in the throwing circle?\", \"Q2\": \"Can you describe the hammer the man is using in the video?\", \"A\": \"The man is carrying a hammer attached to a handle through a metal string and he is using it as a throwing equipment.\", \"video_name\": \"v_qsEnLQ2UnEA\"}, {\"Q1\": \"What is the man wearing while getting tattooed?\", \"Q2\": \"Can you describe the clothing of the man getting tattooed?\", \"A\": \"The man getting tattooed is wearing a red sleeveless shirt.\", \"video_name\": \"v_ZwK52lXCbhA\"}, {\"Q1\": \"What color are the shorts and gloves of the boxer in the right corner?\", \"Q2\": \"Can you describe the clothing of the boxer in the right corner?\", \"A\": \"The boxer in the right corner is wearing red shorts and red boxing gloves.\", \"video_name\": \"v_Y9d4iPDeigI\"}, {\"Q1\": \"What activity is the woman in the white top and jeans engaged in?\", \"Q2\": \"What is the woman in white watching the washerwoman do?\", \"A\": \"The woman in white is watching the washerwoman wash clothes with a stone on the ground.\", \"video_name\": \"v_qtKa7Lr3URA\"}, {\"Q1\": \"What is the boy doing at the gym?\", \"Q2\": \"Can you describe the equipment present at the gym?\", \"A\": \"The boy is swinging between parallel bars in a well-lit gym with foam mats on the floor under various other equipment.\", \"video_name\": \"v_P7Z4i1gmzjs\"}, {\"Q1\": \"What is happening in the first shot of the video?\", \"Q2\": \"Can you describe the scene in the first shot of the video?\", \"A\": \"In the first shot of the video, a man is sitting in a barber chair, looking through a magazine while draped in a cape, and surrounded by other customers in a salon.\", \"video_name\": \"v_ojIhxWrBM0s\"}, {\"Q1\": \"What kind of cape is draped around the little boy at the saloon?\", \"Q2\": \"Can you describe the design of the cape that the little boy is wearing at the saloon?\", \"A\": \"The little boy is wearing a blue cape with pictures of animated characters on it at the saloon.\", \"video_name\": \"v_w4pO-1-FG5w\"}, {\"Q1\": \"What is the woman wearing while brushing the horse?\", \"Q2\": \"Describe the woman who is brushing the horse?\", \"A\": \"The woman is wearing a black top and jeans.\", \"video_name\": \"v_vo2M4sY0E38\"}, {\"Q1\": \"What is the boy wearing and what is he doing on the armbar?\", \"Q2\": \"Can you describe the scene in the gymnasium with the boy practicing on the armbar?\", \"A\": \"The boy is wearing a white vest and dark blue shorts and is performing different maneuvers on the armbar in a gymnasium with cream color walls, blue mattresses on the floor, windows on the left side, armbars, balance beams, a small wall clock on the left side, trophies kept on the edge of the window and other children practicing around him.\", \"video_name\": \"v_WOUkPgHtt4E\"}, {\"Q1\": \"What game are the teams playing on the basketball court?\", \"Q2\": \"Can you describe the sports activity happening on the basketball court?\", \"A\": \"The teams are playing dodgeball on the basketball court.\", \"video_name\": \"v_RjztFj0Zl40\"}, {\"Q1\": \"Where is the man playing the saxophone?\", \"Q2\": \"In what type of setting is the man playing the saxophone?\", \"A\": \"The man is playing the saxophone in a public place with many people watching his performance from behind and there are many stalls and huge black speakers behind him.\", \"video_name\": \"v_tSNg5rvDvVc\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the weightlifting competition in the grassy field?\", \"A\": \"The video shows a weightlifting competition in a grassy field, with weightlifters lifting big dumbbells on black-colored mats, while applying powder from black buckets. There is an audience watching, officials and a cameraman standing on the left side of the weightlifters, and a jimmy jib camera recording from above. The weightlifters are wearing grey T-shirts, black/red/white shorts and shoes. One weightlifter lifts the dumbbell successfully, while others struggle and drop it, and the video ends with him raising his hand for the audience and walking off the mat.\", \"video_name\": \"v_Y16uL6dYDzQ\"}, {\"Q1\": \"What is the man wearing while mowing the lawn?\", \"Q2\": \"Can you describe the clothing of the man mowing the lawn?\", \"A\": \"The man is wearing a black polo shirt and cargo pants.\", \"video_name\": \"v_wiaZCl-poRw\"}, {\"Q1\": \"What are the children wearing while they play the guitars on the stage?\", \"Q2\": \"Can you describe the uniforms of the children playing guitars on the stage?\", \"A\": \"The children on the stage are wearing red and white uniforms.\", \"video_name\": \"v_qqZLs6j3YII\"}, {\"Q1\": \"What is the man doing in the beginning of the video?\", \"Q2\": \"Can you describe the man in blue shirt doing in the video?\", \"A\": \"In the beginning of the video, the man is getting his shoes shined by a man wearing a blue shirt who is polishing his black shoes with a brush outdoors during the daytime.\", \"video_name\": \"v_IRBrTKrVCxo\"}, {\"Q1\": \"What are the men doing with their shoes in the video?\", \"Q2\": \"Can you describe what the men are doing with beer and their shoes?\", \"A\": \"The men are adding beer to their shoes and drinking from them while the surrounding people cheer for them.\", \"video_name\": \"v_xS5JDBeMxOs\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the game being played in the grassy field?\", \"A\": \"A group of kids are playing a game of soccer in the grassy field surrounded by a metal fence with light poles. They are passing the ball to each other, kicking it, and running across the field.\", \"video_name\": \"v_-uJnucdW6DY\"}, {\"Q1\": \"What is the women are doing in the video?\", \"Q2\": \"Can you describe the activity of the women in the video?\", \"A\": \"The women are gift-wrapping and exchanging wrapped gifts in a well-lit room, and adding gift cards to the wrapped boxes.\", \"video_name\": \"v_PzJsoZT2hXk\"}, {\"Q1\": \"What is the color of the cloth capes worn by the customers in the barbershop?\", \"Q2\": \"Can you describe what the customers are wearing while getting their haircuts in the barbershop?\", \"A\": \"The customers in the barbershop are wearing white cloth capes.\", \"video_name\": \"v_YAMhMB1jdio\"}, {\"Q1\": \"What does the news reporter in the field wear while interviewing people for TACK?\", \"Q2\": \"Describe the clothing worn by the people being interviewed during the TACK event?\", \"A\": \"The news reporter wears a grey full-sleeve top and there are various interviewees wearing a blue jersey, white shirt with black coat and black coat with light blue shirt.\", \"video_name\": \"v_EWNqkVaOfbE\"}, {\"Q1\": \"Who is playing squash in the video?\", \"Q2\": \"What is happening on the blue walled squash court in the video?\", \"A\": \"Four men are playing squash on a blue walled court with polished wooden floors.\", \"video_name\": \"v_Pjnuoa4o55c\"}, {\"Q1\": \"What is the clothing of the person upside down on the parallel bars?\", \"Q2\": \"Can you describe the person who is swinging from the parallel bars?\", \"A\": \"The person is wearing a blue shirt and khaki shorts.\", \"video_name\": \"v_QOsG3BeQeX0\"}, {\"Q1\": \"What is the man wearing and what is he holding in his left hand?\", \"Q2\": \"Can you describe the man standing over the partially cut log in the yard?\", \"A\": \"The man is wearing a blue shirt and jeans and is holding an axe in his left hand while standing over a partially cut log in a yard with plants at the back. There is a fence visible at the back with a tree next to it behind and to the right of the man. A house is visible past the fence.\", \"video_name\": \"v_zxpQHLwZCug\"}, {\"Q1\": \"What is the woman in the middle of the dance floor wearing and what type of shoes is she wearing?\", \"Q2\": \"Can you describe the appearance of the woman in the middle of the dance floor and her footwear?\", \"A\": \"The woman is wearing a pink top and a black skirt with high heels.\", \"video_name\": \"v_uvglcAUnQv0\"}, {\"Q1\": \"What is the man cleaning the shoes with?\", \"Q2\": \"Can you describe the cleaning supplies used by the man to clean the shoes?\", \"A\": \"The man is cleaning the shoes using a hand brush, water, and JASON MARKK cleaning solution.\", \"video_name\": \"v_T7YcO-sOLuU\"}, {\"Q1\": \"What is the man doing with the discus?\", \"Q2\": \"Can you describe what is happening in the video with the discus?\", \"A\": \"The man is spinning the discus to build momentum before releasing it towards the landing area.\", \"video_name\": \"v_OkvWTZ4XLyM\"}, {\"Q1\": \"What is happening in the slow-motion clip at the start of the video?\", \"Q2\": \"Can you describe the drill the players are doing on the court?\", \"A\": \"The players are doing a drill where they dunk the ball into the hoop with a spin.\", \"video_name\": \"v_sPK-sbHIb3w\"}, {\"Q1\": \"What is the woman wearing while getting tattooed in the tattoo parlor?\", \"Q2\": \"Can you describe the appearance of the woman as she gets a tattoo in the parlor?\", \"A\": \"The woman is wearing a white top while she gets tattooed in the tattoo parlor.\", \"video_name\": \"v_TEgPIueNqTI\"}, {\"Q1\": \"What is the woman wearing while she combs her hair?\", \"Q2\": \"Can you describe the woman and her surroundings while she is combing her hair?\", \"A\": \"The woman is wearing a black top and is in a well-lit room with a white wall behind her. There is a desk on her right. She is leaning forward while combing her hair and laughs at something she reads. The video ends as she places the comb at her side and continues to lean forward.\", \"video_name\": \"v_zTHkqpNFGno\"}, {\"Q1\": \"What time of day is it during the video?\", \"Q2\": \"Is the man in the video adding fresh firewood to the flame?\", \"A\": \"The video takes place during the day and the man in the video is adding fresh firewood to the flame.\", \"video_name\": \"v_vska7f8Zm9s\"}, {\"Q1\": \"What is the man wearing while standing on the bungee platform?\", \"Q2\": \"Can you describe the man on the bungee platform?\", \"A\": \"The man is wearing a white shirt with a harness on it and a cap while standing on the bungee platform.\", \"video_name\": \"v_SV3v-nA6hXM\"}, {\"Q1\": \"What are the two girls wearing as they dance?\", \"Q2\": \"Can you describe the clothing of the girls as they perform a Spanish-style dance?\", \"A\": \"One girl is wearing a grey hoodie and pants, while the other is wearing a white and blue shirt and jeans.\", \"video_name\": \"v_w46wkDledek\"}, {\"Q1\": \"What is the man wearing while playing the guitar?\", \"Q2\": \"Can you describe the outfit of the man playing the guitar on the sidewalk?\", \"A\": \"The man is wearing a blue jacket and jeans while playing the guitar on the sidewalk.\", \"video_name\": \"v_TB5AeIdAndA\"}, {\"Q1\": \"What activity is the person in the chef uniform performing?\", \"Q2\": \"Can you describe what the person in the chef uniform is doing?\", \"A\": \"The person in the chef uniform is washing dishes over a well-lit counter using steel wool and handheld kitchen faucet sprayer to rinse them.\", \"video_name\": \"v_sbnF7VVeopM\"}, {\"Q1\": \"What game are the kids playing on the basketball court?\", \"Q2\": \"Can you describe the activity the group of kids is engaged in on the basketball court?\", \"A\": \"The kids are playing dodgeball on an indoor basketball court.\", \"video_name\": \"v_OESjoURo19U\"}, {\"Q1\": \"What is the woman wearing in the video?\", \"Q2\": \"Can you describe the attire of the woman in the examination room?\", \"A\": \"The woman in the video is wearing a black top.\", \"video_name\": \"v_SLHPvKh-_x8\"}, {\"Q1\": \"Where is the man playing the bagpipe located?\", \"Q2\": \"Can you describe the surroundings of the man playing the bagpipe?\", \"A\": \"The man wearing a kilt is playing the bagpipe on the sidewalk in front of a lamp post. Vehicles are passing behind him on the street, buildings are visible in the background, and people drop change in front of him as they walk past.\", \"video_name\": \"v_ypfWA4aDL6k\"}, {\"Q1\": \"What is the man wearing and what is he doing?\", \"Q2\": \"Can you describe the scene and the man\\u2019s activity in the field?\", \"A\": \"The man is wearing a teal T-shirt and black shorts and is starting his discus throw in a throwing circle surrounded by a practice net. He then walks towards the camera and claps his hands. A person in a yellow shirt can be seen jogging on the track behind the practice net.\", \"video_name\": \"v_rpjxjU-mLiw\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the scene in the bathroom?\", \"A\": \"The video shows a toddler in a diaper brushing his teeth with the help of a woman in a white shirt, while a man in a black T-shirt films. There is also a brown dog in the bathroom.\", \"video_name\": \"v_sk_pnoqXxhs\"}, {\"Q1\": \"What are the clothes that the girl recording the video is wearing?\", \"Q2\": \"Describe the outfit worn by the girl recording the video.\", \"A\": \"The girl recording the video is wearing a maroon T-shirt, blue jeans, and red and white sneakers.\", \"video_name\": \"v_YK9BIL9fKA0\"}, {\"Q1\": \"What is the man doing to the cycle?\", \"Q2\": \"Can you describe the repairs being done to the bicycle in the video?\", \"A\": \"The man is repairing the chain bearing of the cycle by tightening its screws and hitting it with a branch and a stone.\", \"video_name\": \"v_GvMep9y7d7c\"}, {\"Q1\": \"What are the gymnasts performing on the balance beam in the video montage?\", \"Q2\": \"Can you describe the movements performed by the gymnasts on the balance beam in the video?\", \"A\": \"The gymnasts are performing various gymnastics movements on the balance beam in the video montage.\", \"video_name\": \"v_ZSdnDVGXU3k\"}, {\"Q1\": \"What is the man wearing while breakdancing in the hallway?\", \"Q2\": \"Can you describe the clothes of the man performing in the hallway with the blue and red floors?\", \"A\": \"The man is wearing a black T-shirt, black pants, and black and white sneakers.\", \"video_name\": \"v_u3XOLSC7lg0\"}, {\"Q1\": \"Who is the person identified as \\\"Justin Harrison\\\" throwing the ball towards the goalpost?\", \"Q2\": \"Can you describe the slow-motion scene of a water polo game where one player wearing a white cap and identified as \\\"Justin Harrison\\\" scores a goal?\", \"A\": \"Justin Harrison, identified as the person in the white cap, successfully throws the ball towards the goalpost and scores a goal.\", \"video_name\": \"v_skk-nX55gvA\"}, {\"Q1\": \"What is the color of the gymnast's track pants?\", \"Q2\": \"Can you describe the outfit the gymnast is wearing on the pommel horse?\", \"A\": \"The gymnast is wearing blue track pants and a white vest with blue and red stripes.\", \"video_name\": \"v_fh21bbDSVmA\"}, {\"Q1\": \"What is placed behind the sofa in the news studio?\", \"Q2\": \"Can you describe the setup of the news studio?\", \"A\": \"There is a TV screen with the word 'Daybreak' behind the sofa, a white coffee table in the middle with coffee cups and a laptop, and five people seated on a sofa in a well-lit studio with a glass window at the back.\", \"video_name\": \"v_wCexKIuAj3A\"}, {\"Q1\": \"What color were the suede shoes that the man cleaned?\", \"Q2\": \"Can you describe the color of the shoes that the man cleaned using the suede block and brush?\", \"A\": \"The man cleaned a pair of red suede shoes and a dark blue suede high-heeled shoe.\", \"video_name\": \"v_tF8Nv-QxbIU\"}, {\"Q1\": \"What nail polish color did the woman apply on her ring finger?\", \"Q2\": \"Which nail did the woman apply pink polish to in the video?\", \"A\": \"The woman applied pink nail polish to her ring finger.\", \"video_name\": \"v_vAHR3iJhBXU\"}, {\"Q1\": \"What is the little girl wearing and where is she playing the violin?\", \"Q2\": \"Can you describe the surroundings of the little girl playing the violin?\", \"A\": \"The girl is wearing a pink outfit and pink headdress while playing the violin in front of a tree by the shore of a lake during the daytime. The trees surrounding the lake are reflected in the water behind her. \", \"video_name\": \"v_tC5eMgePakk\"}, {\"Q1\": \"What is the woman doing in the well-lit bathroom?\", \"Q2\": \"Can you describe what the woman is doing with the razor?\", \"A\": \"The woman is shaving her right leg with a razor and dips it into the toilet bowl during the process.\", \"video_name\": \"v_UtV69uNmzlE\"}, {\"Q1\": \"Who gives the man in the video a haircut?\", \"Q2\": \"What is happening to the man in the orange t-shirt in the beginning of the video?\", \"A\": \"A woman wearing a hoodie gives the man in the orange t-shirt a haircut.\", \"video_name\": \"v_vMcXLYBcHsM\"}, {\"Q1\": \"What is the little boy doing in the gymnasium?\", \"Q2\": \"Can you describe the setting in the gymnasium where the boy is practicing gymnastics?\", \"A\": \"The little boy is practicing on the armbar with his coach in a well-lit gymnasium full of sports equipment and blue mattresses laid on the floor. His coach is wearing a black T-shirt, black track pants, and black sports shoes and there are posters on the wall. Other children are also practicing in the gymnasium, and some are sitting on the boy\\u2019s right side. The video ends with his coach coming to the boy and waving both his hands.\", \"video_name\": \"v_u7THn6D6y5w\"}, {\"Q1\": \"What is the boy wearing while playing the bagpipes?\", \"Q2\": \"Can you describe the boy's attire while playing the bagpipes?\", \"A\": \"The boy is wearing a white shirt, a sleeveless black sweater, and brown pants while playing the bagpipes.\", \"video_name\": \"v_yggwFa68Cp4\"}, {\"Q1\": \"What is the woman wearing in the video?\", \"Q2\": \"Can you describe the woman's outfit in the video?\", \"A\": \"The woman is wearing a pink top and black shorts while practicing stepping on and off an aerobics step in a well-lit studio with white walls and a wood floor.\", \"video_name\": \"v_PwTwGnAVFhQ\"}, {\"Q1\": \"What is the name of the artist performing a live painting event?\", \"Q2\": \"Who is the man starting a live painting performance in the art studio?\", \"A\": \"The artist's name is Jonas Gerard.\", \"video_name\": \"v_QT4d1nTQYSE\"}, {\"Q1\": \"What is the girl wearing while talking in the video?\", \"Q2\": \"Can you describe the room and the girl in detail in the video?\", \"A\": \"The girl is wearing a black T-shirt and a pink full-sleeve top, and the room is well-lit with white walls, a brown door, a red curtain, some boards on the wall, a small blue table, a desktop, a photo, some books, stickers on the left wall, and a stuffed toy on the study table.\", \"video_name\": \"v_Xmp_twSbkAg\"}, {\"Q1\": \"What is the climber wearing?\", \"Q2\": \"Can you describe the outfit of the person climbing the hill?\", \"A\": \"The climber is wearing a white t-shirt and has a rope attached to their utility belt.\", \"video_name\": \"v_zDdD_qA86rg\"}, {\"Q1\": \"Who is getting their leg shaved in the video?\", \"Q2\": \"Can you describe the woman getting her leg shaved in the video?\", \"A\": \"Another woman is having her leg shaved in the video while sitting beside the woman with yellow T-Shirt and multi-colored pajamas. \", \"video_name\": \"v_tt-uDaZQWWc\"}, {\"Q1\": \"What activity is the woman engaged in?\", \"Q2\": \"What is the woman doing in front of the mirror?\", \"A\": \"The woman is applying makeup in front of the mirror.\", \"video_name\": \"v_r6l4mxphtX0\"}, {\"Q1\": \"What is the man doing in the video?\", \"Q2\": \"Can you describe how the man is interacting with the dog in the video?\", \"A\": \"The man is giving the dog a bath using a handheld showerhead and soap. He then towels the dog dry and the video ends with a picture of the dog on a blue towel.\", \"video_name\": \"v_Oskk7eLgerM\"}, {\"Q1\": \"What is the man doing in the cafe?\", \"Q2\": \"Can you describe the man\\u2019s activity in the cafe?\", \"A\": \"The man is drinking from a cup and later seen dancing in the cafe with another cup in his left hand.\", \"video_name\": \"v_T35cHr4pjkc\"}, {\"Q1\": \"What is the color of the athlete\\u2019s outfit?\", \"Q2\": \"Can you describe the athlete\\u2019s outfit color?\", \"A\": \"The athlete is wearing a red outfit.\", \"video_name\": \"v_Pr5K2Jh2X94\"}, {\"Q1\": \"What kind of apparatus is the gymnast getting ready to perform on?\", \"Q2\": \"Which gymnastics equipment does the man put his hands on?\", \"A\": \"The gymnast is getting ready to perform on a pommel horse.\", \"video_name\": \"v_YU-dUWGOoD4\"}, {\"Q1\": \"What is the man wearing?\", \"Q2\": \"Can you describe the man's outfit?\", \"A\": \"The man is wearing a red shirt and trousers along with a tool belt.\", \"video_name\": \"v_zRqJZ0u6f88\"}, {\"Q1\": \"What event is the girl participating in?\", \"Q2\": \"What is the girl doing inside the practice net?\", \"A\": \"The girl is participating in a discus throwing competition and is standing inside the practice net preparing to throw.\", \"video_name\": \"v_QY3q4DuiGq8\"}, {\"Q1\": \"What is the color of the T-shirt worn by the woman playing squash?\", \"Q2\": \"What color are the shorts worn by the man playing squash?\", \"A\": \"The woman is wearing a light green T-shirt and the man is wearing grey shorts.\", \"video_name\": \"v_X9Y-b-SbkIU\"}, {\"Q1\": \"What interrupts the man while he is playing the violin?\", \"Q2\": \"Did something happen while the man was playing the violin?\", \"A\": \"The man is interrupted while playing the violin, then continues playing until he stops and takes a bow.\", \"video_name\": \"v_uub0z8wJfhU\"}, {\"Q1\": \"What is the woman wearing while playing the violin?\", \"Q2\": \"Can you describe the appearance of the woman playing the violin?\", \"A\": \"The woman is wearing a dark blue printed top while playing the violin in a well-lit room with white walls, books, photo frames, and a black table on her right side. There is a dining table set and a chandelier in the other room along with a kitchen having a fridge and a microwave with brown wooden shelves.\", \"video_name\": \"v_X5kj4fZ38rc\"}, {\"Q1\": \"What is the woman wearing in the video?\", \"Q2\": \"Can you describe the woman\\u2019s outfit in the video?\", \"A\": \"The woman is wearing a red and blue checkered shirt over a black top.\", \"video_name\": \"v_rGOOlcdpfLg\"}, {\"Q1\": \"What is the name of the cocktail that the bartender is making in the video?\", \"Q2\": \"Can you describe the drink the bartender is making?\", \"A\": \"The bartender in the video is making a Bloody Mary drink with ice, various ingredients, and garnish.\", \"video_name\": \"v_fMVuGUBs2cs\"}, {\"Q1\": \"What are the boys in the video wearing?\", \"Q2\": \"Can you describe the attire of the boys practicing martial arts?\", \"A\": \"The boys are wearing white martial arts uniforms.\", \"video_name\": \"v_PSB1nM3QXxg\"}, {\"Q1\": \"What happens to one of the boys during the game in the video?\", \"Q2\": \"Can you describe the accident that occurs during the racquetball game in the video?\", \"A\": \"One of the boys accidentally hits another boy in the head while playing racquetball, causing him to fall to the ground and hold his head.\", \"video_name\": \"v_TKgU9QJXw2w\"}, {\"Q1\": \"What kind of competition is the girl participating in?\", \"Q2\": \"Where is the girl when she swings on the high bar?\", \"A\": \"The girl is participating in a gymnastics competition and she swings from a high bar.\", \"video_name\": \"v_WAvz9zHwWo4\"}, {\"Q1\": \"What happens on the stage at the end of the video?\", \"Q2\": \"How does the video end with respect to the performance on the stage?\", \"A\": \"The video ends with the audience applauding and the man walking off the stage.\", \"video_name\": \"v_uIcMgjypbqk\"}, {\"Q1\": \"What is the girl wearing?\", \"Q2\": \"Can you describe the clothing of the girl hopping on the ground?\", \"A\": \"The girl is wearing a white top and black shorts.\", \"video_name\": \"v_vaV6_bxiTLI\"}, {\"Q1\": \"What is the advertisement on the running TV about?\", \"Q2\": \"Can you describe the scene on the running TV?\", \"A\": \"The advertisement on the TV shows a girl wearing white outfit applying white foam on her face with both hands, washing it off carefully with water later.\", \"video_name\": \"v_z-EPAHsmTMA\"}, {\"Q1\": \"What are the color of the dresses worn by ballet dancers at the start of the video?\", \"Q2\": \"Can you describe the attire the ballet dancers are wearing during the opening sequence of the video?\", \"A\": \"The girl is wearing a white ballet dress and the other ballet dancers are wearing black dresses.\", \"video_name\": \"v_pJ3sECWr5Xg\"}, {\"Q1\": \"What does the man do after he misses a hold in his gymnastics routine?\", \"Q2\": \"What does the man apply to his hands after he falls during his routine?\", \"A\": \"The man applies chalk to his hands after missing a hold in his routine.\", \"video_name\": \"v_vI-O6QWIIGU\"}, {\"Q1\": \"What does the woman do with the peach-colored cloth?\", \"Q2\": \"Can you describe the gift-wrapping process shown in the video?\", \"A\": \"The woman uses the peach-colored cloth to gift-wrap a box by folding it and tying a knot. \", \"video_name\": \"v_XPiMnbCr-sc\"}, {\"Q1\": \"What musical instrument is the man playing in the walkway?\", \"Q2\": \"Can you describe what the man is doing in the walkway?\", \"A\": \"The man wearing a Scottish kilt and beret is playing the bagpipe in a walkway.\", \"video_name\": \"v_w_CXbraJr58\"}, {\"Q1\": \"What type of trimmer did the man use to shave his neck?\", \"Q2\": \"Did the man switch between trimmers during his grooming process?\", \"A\": \"The man used two different trimmers and switched between them during his grooming process.\", \"video_name\": \"v_ZLJ2BmBkLJg\"}, {\"Q1\": \"Who starts the exchange on the volleyball court by serving the ball?\", \"Q2\": \"Can you describe the person who serves the ball on the left side of the volleyball court?\", \"A\": \"A man wearing a black sleeveless t-shirt and red shorts starts the exchange on the volleyball court by serving the ball.\", \"video_name\": \"v_Sf27WmcLb2w\"}, {\"Q1\": \"Where is the reporter Jocelyn Maminta reporting from?\", \"Q2\": \"Can you describe the location where Jocelyn Maminta is reporting from?\", \"A\": \"Jocelyn Maminta is reporting from an outdoor location during the nighttime. There are cars parked behind her.\", \"video_name\": \"v_vSv1qMMt4Bk\"}, {\"Q1\": \"What are the window cleaners wearing as they work?\", \"Q2\": \"Can you describe the costumes the window cleaners are wearing?\", \"A\": \"The window cleaners are wearing costumes of the Hulk and Batman.\", \"video_name\": \"v_p9lhwYsBWdc\"}, {\"Q1\": \"What is the woman sitting on the chair doing?\", \"Q2\": \"Can you describe what is happening in the video of the woman sitting on the chair in the store?\", \"A\": \"A woman in a store is getting her ears pierced by another woman wearing transparent gloves. The piercer uses an ear-piercing gun to attach a stud to the woman's earlobe and secures it from behind her ears. The video ends with close-up shots of the pierced ears.\", \"video_name\": \"v_ZrSK-fisXGg\"}, {\"Q1\": \"Who is applying the clear solution to the woman's nails?\", \"Q2\": \"Can you describe the person who is wearing a camouflage pattern shirt and applying the clear solution to the woman's nails?\", \"A\": \"The man wearing a camouflage pattern shirt is applying the clear solution to the woman's nails.\", \"video_name\": \"v_p07Y--q4JQw\"}, {\"Q1\": \"What is the color of the Tai Chi uniform worn by the master?\", \"Q2\": \"What color Tai Chi uniform is worn by the man who is not the master?\", \"A\": \"The master is wearing a black Tai Chi uniform and the other man is wearing a white Tai Chi uniform.\", \"video_name\": \"v_TsHek6oZYXU\"}, {\"Q1\": \"What is the color of the shirt that the girl is wearing while getting a tattoo?\", \"Q2\": \"What clothes is the girl wearing while getting a tattoo and what is the color of her shirt?\", \"A\": \"The girl is wearing a blue shirt over a light blue top while getting the tattoo.\", \"video_name\": \"v_QN-4aLiDhiQ\"}, {\"Q1\": \"What is the man wearing while rock climbing?\", \"Q2\": \"Can you describe the attire of the person rock climbing?\", \"A\": \"The man is wearing dark blue jeans and black & red shoes while rock climbing.\", \"video_name\": \"v_UGWOtDmIcns\"}, {\"Q1\": \"What color wetsuit is the man wearing on the boat?\", \"Q2\": \"Can you describe the attire of the man on the boat?\", \"A\": \"The man on the boat is wearing a blue wetsuit and beanie.\", \"video_name\": \"v_PNuJUYo3Hf8\"}, {\"Q1\": \"What color are the walls in the room where the woman is cleaning the Uggs?\", \"Q2\": \"Can you describe the surroundings of the woman cleaning the Uggs?\", \"A\": \"The room where the woman is cleaning the Uggs has pink walls.\", \"video_name\": \"v_TMAXjnsN0Mk\"}, {\"Q1\": \"What are the people wearing in the video?\", \"Q2\": \"Can you describe the attire of the people seen in the video?\", \"A\": \"The people in the video are wearing orange and red T-shirts.\", \"video_name\": \"v_skr8x0kUVwg\"}, {\"Q1\": \"What is happening in the hockey rink during the daytime?\", \"Q2\": \"Can you describe the drills being performed by the players on the hockey rink?\", \"A\": \"The players on the hockey rink are wearing full gear and doing drills, which include running side to side, diving, and jumping through obstacles placed on the ground while holding a hockey stick in one hand and wearing hockey gloves in the other. There are brown buildings in the back with trees around them.\", \"video_name\": \"v_YnjITZnk6OE\"}, {\"Q1\": \"What is the chef wearing in the video?\", \"Q2\": \"Can you describe the attire of the man standing behind the chef?\", \"A\": \"The chef is wearing a white chef's coat, and the man standing behind him is wearing a red T-shirt.\", \"video_name\": \"v_UNJTM62HyqQ\"}, {\"Q1\": \"What equipment is the man holding at the start of the video?\", \"Q2\": \"Can you describe what the man is doing with the hammer in the practice net?\", \"A\": \"The man is holding a hammer with a handle attached to a string and he is practicing hammer throwing by swinging the hammer around him a few times before spinning and throwing it through the open end of the practice net.\", \"video_name\": \"v_SEVVSei-r6w\"}, {\"Q1\": \"What is the attire of the woman performing ballet in the theatre?\", \"Q2\": \"Can you describe what the woman is wearing while performing ballet in the theatre?\", \"A\": \"The woman is wearing a maroon top, black trousers, pointe shoes, and is performing ballet in a well-lit theatre with huge speakers mounted on both sides of the stage, and chandeliers and lights in the galleries.\", \"video_name\": \"v_UaO7bS5Ky6M\"}, {\"Q1\": \"What is the woman doing as her shoe is being cleaned?\", \"Q2\": \"While the man is cleaning her shoe, what is the woman doing?\", \"A\": \"The woman is dancing as her shoe is being cleaned.\", \"video_name\": \"v_wEehiYq9ttE\"}, {\"Q1\": \"What are the woman and the boy doing in the well-lit room?\", \"Q2\": \"Can you describe the scene in the well-lit room with the woman and the boy?\", \"A\": \"The woman is washing clothes while the little boy tries to help her by pulling clothes from the bucket in the well-lit room.\", \"video_name\": \"v_rklYNAAaI3Y\"}, {\"Q1\": \"What are the women wearing in the video while working out?\", \"Q2\": \"Can you describe the clothing worn by the women while working out in the video?\", \"A\": \"The women are wearing white vests and track pants while working out on aerobics steps in a dimly lit studio with black floor.\", \"video_name\": \"v_ZVjLscGMOs8\"}, {\"Q1\": \"What is the man wearing while washing a plate in the kitchen?\", \"Q2\": \"Can you describe the kitchen and the man washing the plate?\", \"A\": \"The man is wearing a grey T-shirt and glasses, and he is washing a plate in a well-lit kitchen with white walls. There is a refrigerator visible at the back, and a potted plant next to the sink.\", \"video_name\": \"v_z6pmp8TrAVo\"}, {\"Q1\": \"What is happening in the beginning of the video?\", \"Q2\": \"Who is on the second level of the diving platform and what does she do?\", \"A\": \"The video starts with a woman on the second level of a diving platform in an indoor swimming pool with overhead lights. The woman runs to the edge and dives with a tuck and several turns into the pool.\", \"video_name\": \"v_vzUeFzhVYLg\"}, {\"Q1\": \"What game are the two girls playing in the well-lit court wearing white T-shirts and shorts?\", \"Q2\": \"Can you describe the outfits and equipment used by the two girls while playing in the well-lit racquetball court?\", \"A\": \"The two girls are playing racquetball wearing white T-shirts and shorts, and both are wearing safety glasses while playing.\", \"video_name\": \"v_wFVukrQfQhI\"}, {\"Q1\": \"What is the color of the old man's T-shirt?\", \"Q2\": \"Can you describe what the old man is wearing?\", \"A\": \"The old man is wearing a white T-shirt and track pants.\", \"video_name\": \"v_rOtmhurweqo\"}, {\"Q1\": \"What are the colors of the uniforms worn by the girls on the lacrosse team in the video?\", \"Q2\": \"Can you describe the uniforms of the girls on the lacrosse team during their games in the video?\", \"A\": \"The girls on the lacrosse team are wearing black and pink uniforms.\", \"video_name\": \"v_RXT17X7lRoQ\"}, {\"Q1\": \"What is the color of the cap the skateboarder is wearing?\", \"Q2\": \"Could you describe the skateboarder's outfit in the video?\", \"A\": \"The skateboarder is wearing a white t-shirt, a red cap, and a backpack.\", \"video_name\": \"v_YOk1cMsyk88\"}, {\"Q1\": \"What is the man wearing during the discus throw?\", \"Q2\": \"Can you describe the attire of the man when he begins the discus throw?\", \"A\": \"The man is wearing black shorts and is shirtless during the discus throw.\", \"video_name\": \"v_qmHjHk0Hzz8\"}, {\"Q1\": \"What are the colours of the t-shirts worn by the dodgeball teams?\", \"Q2\": \"Which team is wearing blue t-shirts and which team is wearing yellow t-shirts in the dodgeball game?\", \"A\": \"The dodgeball team on the right is wearing blue t-shirts while the team on the left is wearing yellow t-shirts.\", \"video_name\": \"v_rc-DiL5er28\"}, {\"Q1\": \"What color is the vest worn by the first participant in the high jump competition?\", \"Q2\": \"Can you describe the clothing worn by the first participant who attempts the high jump in the competition?\", \"A\": \"The first participant in the high jump competition wears a red and green vest, black shorts, and white sports shoes.\", \"video_name\": \"v_fM5egP_1DvQ\"}, {\"Q1\": \"What ingredients did the man use to make the cocktail?\", \"Q2\": \"Can you describe the process of making the cocktail?\", \"A\": \"The man used gin, other liquors, and fresh-squeezed lemon juice to make the cocktail. He mixed the ingredients in a cocktail mixer with ice, shook it, and poured it into cocktail glasses.\", \"video_name\": \"v_R_JKmGmURvA\"}, {\"Q1\": \"What ingredients are used in the cocktail prepared by the bartender in the video?\", \"Q2\": \"Can you describe the process of making the cocktail shown in the video by the bartender?\", \"A\": \"The cocktail shown in the video is made using Bombay Sapphire Gin, St. Germain liquor, lemon juice, ginger syrup, elderflower syrup, slices of cucumber, egg whites, and ice cubes. The bartender crushes the cucumber using a wooden pestle, shakes the mixture with a cocktail mixer, and completes it by adding ice cubes and a slice of cucumber on a straw.\", \"video_name\": \"v_vIQPDP8jW8A\"}, {\"Q1\": \"What is the man wearing and what is he holding in his hand?\", \"Q2\": \"Can you describe what the man is doing with the shovel?\", \"A\": \"The man is wearing winter clothing and holding a snow shovel. He is demonstrating how to shovel snow by scooping and throwing it to the side.\", \"video_name\": \"v_-pkfcMUIEMo\"}, {\"Q1\": \"What does the man sprinkle on the firewood?\", \"Q2\": \"Can you describe the items the man adds onto the firewood before lighting it?\", \"A\": \"The man sprinkles table salt and white pepper powder on the crumpled pieces of newspaper and firewood before lighting it.\", \"video_name\": \"v_VhdidrZKuTU\"}, {\"Q1\": \"What happens to the man during his pommel horse routine?\", \"Q2\": \"Does the man experience any difficulty while performing on the pommel horse?\", \"A\": \"The man loses balance and slips to the floor during his routine.\", \"video_name\": \"v_W4mJsJGa0CY\"}, {\"Q1\": \"What is happening in the video at the beginning?\", \"Q2\": \"Can you describe the events in the opening scene of the video?\", \"A\": \"A girl is getting her ears pierced by a technician in a well-lit store with jewelry and clothes in the back.\", \"video_name\": \"v_TkhUtx0Eyfw\"}, {\"Q1\": \"What is the boy wearing while dancing?\", \"Q2\": \"Can you describe the clothing of the boy who is dancing in the alley?\", \"A\": \"The boy is wearing a sweater over a shirt, khaki trousers, white gloves, and a white cap.\", \"video_name\": \"v_Q3ZNFGE8PZE\"}, {\"Q1\": \"What are the two girls doing in the video?\", \"Q2\": \"Can you describe the setting of the living room where the two girls are seen combing their hair?\", \"A\": \"The two girls are seen combing their hair in a dimly lit living room with a shut window at the back.\", \"video_name\": \"v_QriYk3MKSnM\"}, {\"Q1\": \"What is the man wearing and where is he standing in the video?\", \"Q2\": \"Can you describe the location and attire of the man in the video?\", \"A\": \"The man is wearing a white and black t-shirt, standing in a well-lit gym with wooden walls and windows at the top. He attempts to lift a barbell and eventually walks towards the camera to speak.\", \"video_name\": \"v_x90zpDHTpjQ\"}, {\"Q1\": \"What event is taking place in the video?\", \"Q2\": \"Can you describe what the athletes are competing in?\", \"A\": \"The video shows athletes participating in pole vaulting competitions during both day and night.\", \"video_name\": \"v_X4J9UBXb0FM\"}, {\"Q1\": \"What color is the t-shirt of the man ironing in the video?\", \"Q2\": \"Can you describe the clothes worn by the man ironing in the video?\", \"A\": \"The man in the video is wearing a striped blue and black t-shirt and shorts, and is ironing a blue and white Hawaiian shirt on an ironing board in a room with visible clothing behind him.\", \"video_name\": \"v_zXHyFBrj5Ag\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the event in the video?\", \"A\": \"The video shows athletes competing in a pole vaulting competition in a track field during the daytime, with replays and observers using binoculars.\", \"video_name\": \"v_PwRqqR1YmPM\"}, {\"Q1\": \"What activities did the girl engage in at the mall?\", \"Q2\": \"Can you describe what the girl did during her visit to the mall?\", \"A\": \"The girl browsed makeup at a shop, got her makeup done at the salon, got her nails painted, and spoke to the camera at various locations including outside the mall and near an escalator.\", \"video_name\": \"v_peiF2E05u8g\"}, {\"Q1\": \"What is happening in the video footage?\", \"Q2\": \"Can you describe the scene of the video?\", \"A\": \"The video shows dirtbikes performing stunts and jumps on a dirt bike track in a forest. The motorcyclists are equipped with off-road gear and helmets.\", \"video_name\": \"v_GChGC-VJZHs\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the volleyball game occurring in the video?\", \"A\": \"In the video, people are playing volleyball during the daytime with thick clouds visible in the sky. There is a woman wearing a blue vest over a red top on the sideline. The game continues with players passing the ball to each other until it ends and a few people enter the frame.\", \"video_name\": \"v_Ur_ToogEkCA\"}, {\"Q1\": \"What type of boats can be seen in the video?\", \"Q2\": \"Can you describe the various boats shown in the video?\", \"A\": \"The video shows a houseboat, a jet-ski, a motorboat, and several kayak boats under a shed.\", \"video_name\": \"v_YAKXrBinGD4\"}, {\"Q1\": \"What is the man wearing who is performing on the parallel bars?\", \"Q2\": \"Can you describe the clothing worn by the man performing on the parallel bars?\", \"A\": \"The man performing on the parallel bars is wearing a dark blue vest and pants.\", \"video_name\": \"v_qU4GmCN2e1Y\"}, {\"Q1\": \"What is the color of the vest that the man is wearing while windsurfing?\", \"Q2\": \"Can you describe what the man is wearing while windsurfing?\", \"A\": \"The man is wearing a dark blue vest and white shorts while windsurfing.\", \"video_name\": \"v_FqYhC6_CMfI\"}, {\"Q1\": \"What is the color of the floor in the basketball court where the Zumba class is conducted?\", \"Q2\": \"What is the color of the walls in the basketball court where the Zumba class is being conducted?\", \"A\": \"The court floor is blue, and the walls are white and brown.\", \"video_name\": \"v_s9PkkDEl6aY\"}, {\"Q1\": \"What is happening on the street in the video?\", \"Q2\": \"Can you describe the scene on the street during the daytime in the video?\", \"A\": \"On the street during the daytime, there are people standing around a black and white mat as a man in a white outfit is breakdancing. Stores are also lining the sidewalk.\", \"video_name\": \"v_ROrLMf0zXko\"}, {\"Q1\": \"What is the man wearing on the tennis field?\", \"Q2\": \"Can you describe the appearance of the man on the tennis court?\", \"A\": \"The man is wearing a grey sleeveless shirt and blue shorts on the tennis field.\", \"video_name\": \"v_W6fPv5eoXC4\"}, {\"Q1\": \"What type of store is featured in the beginning of the video?\", \"Q2\": \"Can you describe the store at the beginning of the video?\", \"A\": \"The video begins with a projecting antique store sign.\", \"video_name\": \"v_zB8knKX0W8Q\"}, {\"Q1\": \"What is the barber using to cut the boy\\u2019s hair?\", \"Q2\": \"Can you describe the tools used by the barber to cut the boy\\u2019s hair?\", \"A\": \"The barber is using scissors and a trimmer to cut the boy\\u2019s hair.\", \"video_name\": \"v_OlykXdYeQOI\"}, {\"Q1\": \"What time of the day was it when the man was shoveling snow?\", \"Q2\": \"Was the man wearing a black sweater and jeans when he was shoveling snow?\", \"A\": \"The man was shoveling snow in the daytime and he was wearing a black sweater and jeans.\", \"video_name\": \"v_PdwWFueQErM\"}, {\"Q1\": \"What is the woman wearing while lawn-mowing?\", \"Q2\": \"Can you describe the lawn-mowing outfit of the woman in the video?\", \"A\": \"The woman is wearing a white vest, grey trousers, and white sports shoes while lawn-mowing.\", \"video_name\": \"v_TZOhIMjwEE8\"}, {\"Q1\": \"What type of workout is the group of women doing in the video?\", \"Q2\": \"What kind of equipment are the women using in the workout?\", \"A\": \"The group of women is doing an aerobic workout using aerobic steps.\", \"video_name\": \"v_GH0Umpw6tME\"}, {\"Q1\": \"What is the woman in the first clip wearing and what is she doing?\", \"Q2\": \"Can you describe the location and activity of the man in the next clip?\", \"A\": \"The woman in the first clip is wearing a white top and applying lipstick in a well-lit room in front of a mirror. The man in the next clip is sitting in front of the same mirror, wearing an olive T-shirt. He removes something from a box and wipes them on his eyebrows one at a time, before eating them.\", \"video_name\": \"v_UvOEuhS0V3E\"}, {\"Q1\": \"What is happening in the beginning of the video?\", \"Q2\": \"Can you describe what the dancer is doing in the opening scene before the stage performance?\", \"A\": \"The video starts with a woman doing ballet in a white room with sunlight streaming from the right.\", \"video_name\": \"v_ZY0cdXr_1MA\"}, {\"Q1\": \"Where does the video start and what is featured at the beginning of the video?\", \"Q2\": \"Can you describe the opening scene of the video?\", \"A\": \"The video starts with a graphic of a web address for mDhil.com.\", \"video_name\": \"v_QOaPQpXemCA\"}, {\"Q1\": \"What activity can be seen in the video?\", \"Q2\": \"What game are they playing in the well-lit venue?\", \"A\": \"They are playing badminton in the well-lit venue.\", \"video_name\": \"v_ZK4Y6nOton8\"}, {\"Q1\": \"What is the color of the vest worn by the male athlete in the video?\", \"Q2\": \"Can you describe what the male athlete is wearing in the video?\", \"A\": \"The male athlete is wearing a blue vest, black shorts, and red sports shoes.\", \"video_name\": \"v_uCvjzcVCtEs\"}, {\"Q1\": \"Who is the boy with long hair in the video and where is he sitting?\", \"Q2\": \"Can you describe the setting of the video and the people in it?\", \"A\": \"The boy's name is Ivan and he is sitting in a well-lit bedroom in front of a table with a computer on it. He is having his hair combed by Oscar, who is standing behind him.\", \"video_name\": \"v_zoWqv-sIdBY\"}, {\"Q1\": \"What is the color of the windsurfing board the man is using?\", \"Q2\": \"Can you describe the windsurfing board the man is surfing on?\", \"A\": \"The man is windsurfing on a red board with an attached sail.\", \"video_name\": \"v_qmfZw9eEpIU\"}, {\"Q1\": \"Who is standing next to the girl wearing the blue shirt?\", \"Q2\": \"Can you describe the two people present with the girl wearing the blue shirt?\", \"A\": \"The girl wearing the blue shirt is standing next to a person wearing a grey sweatshirt, and another person wearing a red top is visible in the mirror, holding up a phone and recording.\", \"video_name\": \"v_tLk0Y04OaCA\"}, {\"Q1\": \"What equipment does the man lift in the gym?\", \"Q2\": \"What does the man do with the barbell and weights in the gym?\", \"A\": \"The man picks up a barbell with weights stacked on either end and lifts it once before dropping it to the ground.\", \"video_name\": \"v_VWGV8I5byKI\"}, {\"Q1\": \"What are the men wearing while playing squash in the well-lit court?\", \"Q2\": \"Can you describe the attire of the players on the well-lit squash court?\", \"A\": \"The men are wearing shorts and sports shoes.\", \"video_name\": \"v_sNJ6_N0j9Ts\"}, {\"Q1\": \"What is the man holding in his hands while standing in the throwing circle?\", \"Q2\": \"What equipment is the man using to practice inside the throwing circle?\", \"A\": \"The man is holding a hammer connected to a handle while practicing inside the throwing circle.\", \"video_name\": \"v_t13MQSYjlas\"}, {\"Q1\": \"What color is the T-shirt of the woman who walks away from the exercise bikes?\", \"Q2\": \"Can you describe the woman who walks away from the exercise bikes?\", \"A\": \"The woman who walks away from the exercise bikes is wearing a grey T-shirt.\", \"video_name\": \"v_syfyM1Pble8\"}, {\"Q1\": \"What are the two boys dressed as and what are they doing in the mall?\", \"Q2\": \"Can you describe the scene in the mall with the two boys?\", \"A\": \"The two boys are dressed as Santa and an Elf and are dancing in the mall. They do backflips, twists, and turns on the floor.\", \"video_name\": \"v_u0A5NIUKEQo\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the diving maneuvers performed in the video?\", \"A\": \"The video shows a man named Michal Navratil performing various diving maneuvers including tucks, twists, forwards dives, etc. in an indoor swimming pool with people visible walking around. He ends the video by doing a forward tuck dive.\", \"video_name\": \"v_-vnSFKJNB94\"}, {\"Q1\": \"What is the attire of the female athlete in the stadium?\", \"Q2\": \"Can you describe what the female athlete is wearing in the stadium?\", \"A\": \"The female athlete in the stadium is wearing a red crop top, red bikini bottoms, and red sports shoes.\", \"video_name\": \"v_Ws12Dt0Ny5Q\"}, {\"Q1\": \"What sport is the woman athlete competing in?\", \"Q2\": \"Can you describe the event the woman athlete is participating in?\", \"A\": \"The woman athlete is participating in a hammer throwing competition in a stadium with spectators.\", \"video_name\": \"v_tY9dmG6IyPo\"}, {\"Q1\": \"What is the man doing in the woodworking shop?\", \"Q2\": \"Can you describe the activities performed by the man in the woodworking shop?\", \"A\": \"The man is waxing and polishing a wooden table using steel wool, a car buffing wheel, and a wet rag.\", \"video_name\": \"v_wJk3KOUAwXA\"}, {\"Q1\": \"What is the woman wearing while lying on the retractable bed in the parlor?\", \"Q2\": \"Can you describe the scene of the woman getting a tattoo on her ear?\", \"A\": \"The woman is wearing a black shirt and lying on a retractable bed with a white sheet in a well-lit parlor while getting a tattoo on her earlobe using a tattoo gun. The technician first cleans her ear and then marks the spot before the tattoo artist begins.\", \"video_name\": \"v_wh4JNeQh9FQ\"}, {\"Q1\": \"What are the two men wearing and how are they seated?\", \"Q2\": \"Can you describe the appearance and position of the men in the video?\", \"A\": \"The man on the left is wearing a black shirt and jeans, while the man on the right is wearing a cap and a red sweater. They are seated on a sofa.\", \"video_name\": \"v_WdJUMmy2ox8\"}, {\"Q1\": \"What color is the helmet worn by the girl in the video?\", \"Q2\": \"Can you describe what the girl is wearing on her head while riding the horse in the video?\", \"A\": \"The girl is wearing a white helmet while riding the horse in the video.\", \"video_name\": \"v_ooFuSspUuVY\"}, {\"Q1\": \"What is the color of the belly dancer dress?\", \"Q2\": \"Can you describe the attire of the belly dancer?\", \"A\": \"The belly dancer is wearing a sparkling turquoise-colored dress.\", \"video_name\": \"v_tXUssW4vT3o\"}, {\"Q1\": \"What type of workout class is shown in the video?\", \"Q2\": \"Can you describe the gym setup and exercise equipment being used in the video?\", \"A\": \"The video shows a cycling class with people on exercise bikes in a well-lit gym with white walls and a grey floor. The instructor is a woman wearing a black t-shirt and a mic in her ear who is calling out instructions, and a man is seen moving a display tower into the class to demonstrate changing the resistance on the exercise bike.\", \"video_name\": \"v_TGIQtaINzCY\"}, {\"Q1\": \"What are the students doing in the ballet studio?\", \"Q2\": \"Can you describe the practice session at the ballet studio?\", \"A\": \"The students are practicing ballet at the studio with a teacher wearing a white t-shirt and pants.\", \"video_name\": \"v_ZUl43hNzGjA\"}, {\"Q1\": \"What is the woman wearing over her red outfit in the video?\", \"Q2\": \"What does the woman do before walking away in the video?\", \"A\": \"The woman is wearing a sweater over her red outfit and looks into the camera before walking away.\", \"video_name\": \"v_sBwUwgTjhAU\"}, {\"Q1\": \"What is the woman wearing and where is she standing?\", \"Q2\": \"Can you describe the setting of the video and the woman?\", \"A\": \"The woman is wearing a grey shirt and standing behind an ironing board in a well-lit room with a wood wall behind her.\", \"video_name\": \"v_WCS8dzRT7Xk\"}, {\"Q1\": \"Where is the referee sitting in the video?\", \"Q2\": \"Can you describe the seating arrangement in the arena?\", \"A\": \"The referee is sitting behind a table at the edge of the court, and there are seats for spectators near the walls.\", \"video_name\": \"v_wjr5M-6qEWI\"}, {\"Q1\": \"What is the female gymnast wearing while performing on the balance beam?\", \"Q2\": \"Can you describe the costume the female gymnast is wearing while performing on the balance beam?\", \"A\": \"The female gymnast is wearing a sparkling red costume while performing on the balance beam.\", \"video_name\": \"v_GOF5guH_kuI\"}, {\"Q1\": \"What color are the cheerleading uniforms worn by the group in the video?\", \"Q2\": \"Can you describe the uniforms of the cheerleading group in the video?\", \"A\": \"The cheerleaders in the video are wearing blue uniforms with white shoes.\", \"video_name\": \"v_uqwf903l5-E\"}, {\"Q1\": \"What are the different colored life vests the kayakers are wearing?\", \"Q2\": \"Can you describe the clothing the kayakers are wearing?\", \"A\": \"The kayakers are wearing red and blue life vests over their shirts while kayaking down the river.\", \"video_name\": \"v_zxr6UZKPDh4\"}, {\"Q1\": \"What is the woman dancing with on her head in the video?\", \"Q2\": \"Can you describe the accessory the woman is wearing on her head as she dances?\", \"A\": \"The woman is dancing with a candelabra on her head.\", \"video_name\": \"v_SNJgJB2PGdI\"}, {\"Q1\": \"What does the boy do after taking selfies with the girl?\", \"Q2\": \"Can you describe what the boy does after the girl leaves?\", \"A\": \"The boy gets up and leaves, and he is later shown knocking on a door and handing a stuffed animal to a girl.\", \"video_name\": \"v_Zhx6BYVb64g\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the scenes that are displayed in the video?\", \"A\": \"The video depicts a man demonstrating various martial arts movements in different locations, such as indoors, outdoors, in front of an audience, and in a well-lit studio.\", \"video_name\": \"v_oncTwYfvCD8\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the scenes shown in the video?\", \"A\": \"The video shows various cricket games being played, including professional matches played in stadiums as well as games played by people at homes and beaches. The video also shows a man rolling up a carpet and a woman in a yellow t-shirt getting ready to bat with others around her fielding or watching. The video ends with a child standing near the cricket stumps and getting ready to bat.\", \"video_name\": \"v_yttmx8mcjGw\"}, {\"Q1\": \"Who is introduced first in the video, and what is she wearing?\", \"Q2\": \"Can you describe the opening scene of the video?\", \"A\": \"Julie, wearing a green sweater, is introduced first in the video while speaking to the camera in a well-lit hair salon, with a round table-top swivel mirror next to her and another woman seated next to her.\", \"video_name\": \"v_wcxEkMoOmBk\"}, {\"Q1\": \"What items are shown in the beginning of the video?\", \"Q2\": \"Can you describe the items shown at the start of the video?\", \"A\": \"The video begins with rolls of gift wrappers stacked on top of each other and a stack of one US dollar notes placed on a white surface with text displayed above and below it.\", \"video_name\": \"v_zEttEkAdHts\"}, {\"Q1\": \"What is the woman wearing and where is she standing?\", \"Q2\": \"Can you describe the woman and her surroundings?\", \"A\": \"The woman is wearing a black hoodie and jeans skirt and standing in front of a stone dipper well with ladles. There is water in a tank at the top of the dipper. She is standing on a stone floor with a roof. Pillars are visible some distance to her left. A yard is visible outside the structure, with a fence at the end. A tree is visible to the left of the yard.\", \"video_name\": \"v_z3MP0yJBtGg\"}, {\"Q1\": \"What colors are on the cloth used to wrap the box?\", \"Q2\": \"Can you describe the cloth used to cover the box in the video?\", \"A\": \"The cloth used to wrap the box is pink on the inside and green on the outside.\", \"video_name\": \"v_Omvg9UtGOes\"}, {\"Q1\": \"What are the two people doing in the ballroom?\", \"Q2\": \"Can you describe the dance performance in the ballroom?\", \"A\": \"A man and a woman waltz and perform various steps in a ballroom as an orchestra plays music.\", \"video_name\": \"v_oni9K1_MCuw\"}, {\"Q1\": \"What are the people in the video smoking?\", \"Q2\": \"Can you describe the activity of people in the video?\", \"A\": \"The people in the video are smoking e-cigarettes.\", \"video_name\": \"v_Rn6_IwckXg4\"}, {\"Q1\": \"What is the woman in the video doing?\", \"Q2\": \"Can you describe the process shown in the video?\", \"A\": \"In the video, a woman is gift-wrapping boxes using gift-wrapping paper and tape.\", \"video_name\": \"v_TNqc2yWZztE\"}, {\"Q1\": \"What colour are the shorts worn by the man in the video?\", \"Q2\": \"Can you describe what the man is wearing?\", \"A\": \"The man in the video is wearing blue shorts.\", \"video_name\": \"v_UNXLfqkwKFc\"}, {\"Q1\": \"What kind of dog is being bathed in the video?\", \"Q2\": \"Can you describe the dog that is being bathed in the video?\", \"A\": \"A golden retriever is being bathed in the video.\", \"video_name\": \"v_W9H2qVnIWXs\"}, {\"Q1\": \"What is the man wearing while climbing the hill?\", \"Q2\": \"Could you describe the man's outfit when he is climbing?\", \"A\": \"The man is wearing a red t-shirt and a belt with a chalk pouch on it.\", \"video_name\": \"v_ZxPF3s_OLDo\"}, {\"Q1\": \"What does the woman use to wrap the box?\", \"Q2\": \"What color is the folded cloth on the table and how does the woman use it to wrap the gift?\", \"A\": \"The woman uses an orange gift wrap to wrap the box and a folded green cloth to tie a knot around it.\", \"video_name\": \"v_Mf3IyeMF8ug\"}, {\"Q1\": \"What does the man holding the pipe from the hookah do with the smoke?\", \"Q2\": \"How does the man use the glass filled with beer after smoking from the pipe?\", \"A\": \"The man blows smoke rings and then blows smoke into the glass filled with beer, before drinking from it.\", \"video_name\": \"v_mNiFmkm5OZA\"}, {\"Q1\": \"What is the woman in the video demonstrating?\", \"Q2\": \"Can you describe the steps of making the furniture polish in the video?\", \"A\": \"The woman is demonstrating how to make furniture polish by mixing olive oil and lemon juice in a spray bottle, shaking it, and then applying it to the surface of a table.\", \"video_name\": \"v_MbjyQGdTtK8\"}, {\"Q1\": \"What are the colors of the jerseys worn by the two teams playing hockey?\", \"Q2\": \"Can you describe the jerseys worn by the two teams playing hockey?\", \"A\": \"One team is wearing maroon jerseys with black shorts and numbers on the back, while the other team is wearing red jerseys with black shorts and numbers on the back.\", \"video_name\": \"v_Gvc1z9qypFQ\"}, {\"Q1\": \"What is the man on the sailboat doing?\", \"Q2\": \"Could you describe the scene on the sailboat?\", \"A\": \"A man in blue t-shirt and glasses is cranking a lever on a sailboat in the sea. The sailboat with maroon sails can be seen sailing in the open sea with cloudy sky. The boat is tilted to one side.\", \"video_name\": \"v_ObrXN_FjVD8\"}, {\"Q1\": \"What are the colors of the clothes the man and woman are wearing?\", \"Q2\": \"What do the man and woman wear when they dance?\", \"A\": \"The man is wearing a black shirt and pants, while the woman is dressed in a black outfit.\", \"video_name\": \"v_N75m1Z4RqbA\"}, {\"Q1\": \"What type of dance are the women performing?\", \"Q2\": \"Can you describe the moves performed by the women in their dance?\", \"A\": \"The women are performing a contemporary ballet with hops, turns, and some synchronized moves.\", \"video_name\": \"v_Ocid5pcnSVY\"}, {\"Q1\": \"What color shirts are the players wearing in the table tennis match at the beginning of the video?\", \"Q2\": \"Can you describe what the players are wearing during the table tennis match at the beginning of the video?\", \"A\": \"The player on the near side is wearing a red t-shirt, while the player on the far end is wearing a blue t-shirt and shorts.\", \"video_name\": \"v_MxvKscpouzY\"}, {\"Q1\": \"What event is the woman participating in the video?\", \"Q2\": \"What activity can be seen in the track field during the daytime?\", \"A\": \"The woman is participating in a long jump competition in the track field during the daytime.\", \"video_name\": \"v_LzPppxSWYNY\"}, {\"Q1\": \"Where do the man and woman go and what do they do once they are there?\", \"Q2\": \"What do the man and woman do at the piano store?\", \"A\": \"The man and woman go to a piano store. The man plays the piano while the woman stands next to him. Later, they move to another piano. In the closed restaurant, a woman wearing a white robe comes to stand near the man. At an orchestra, a man in a brown jacket is watching the orchestra. He later walks towards the stage and gestures like a conductor.\", \"video_name\": \"v_mMebSMn5D0E\"}, {\"Q1\": \"What is the color of the gymnast's costume?\", \"Q2\": \"Can you describe the outfit worn by the female gymnast on the balance beam?\", \"A\": \"The female gymnast on the balance beam is wearing a sparkling dark green and white costume.\", \"video_name\": \"v_FzqZsQx20jY\"}, {\"Q1\": \"What is the man doing in the video?\", \"Q2\": \"Can you describe the activity of the man in the video?\", \"A\": \"The man is washing dishes in a kitchen sink.\", \"video_name\": \"v_-nl4G-00PtA\"}, {\"Q1\": \"What is the man wearing and what is he doing in the meadow?\", \"Q2\": \"Could you describe what you see in the meadow with the man playing the flute?\", \"A\": \"The man is wearing a black shirt, pants and glasses while playing a flute in a meadow with yellow flowered bushes to his right. The sky is cloudy and there is a dirt path stretching up the incline behind him.\", \"video_name\": \"v_NvRH4SoF09c\"}, {\"Q1\": \"What do the men do after hearing the message from the lighter?\", \"Q2\": \"How do the men react after hearing the message from the lighter?\", \"A\": \"The men step away from the electric lighter after hearing the message.\", \"video_name\": \"v_MidLOhRnpnU\"}, {\"Q1\": \"What kind of routine does the cheerleading squad perform after entering the arena?\", \"Q2\": \"Can you describe the cheerleading routine performed by the all-female squad in the arena?\", \"A\": \"The all-female cheerleading squad performs a routine that includes flips, somersaults, basket tosses, and stunts involving fliers, with spotters present near each base. They also perform a dance routine and end by posing lifted up by the bases.\", \"video_name\": \"v_N5LZMH9mZVU\"}, {\"Q1\": \"What time of day is it in the video where the boy is shoveling snow?\", \"Q2\": \"Is it during the day or at night when the boy is shoveling snow in the driveway?\", \"A\": \"The boy is seen shirtless, shoveling snow in a driveway during the daytime.\", \"video_name\": \"v_oD8sGLt2FR0\"}, {\"Q1\": \"What is the surfer doing in the video?\", \"Q2\": \"Can you describe the stunts the surfer performs on his board?\", \"A\": \"The surfer is windsurfing and performing flips, maneuvers, and jumps, including a one-handed burner where he pushes the sail down and jump-twists on his board.\", \"video_name\": \"v_N1_pNhVqG20\"}, {\"Q1\": \"What caused the laptop to fall?\", \"Q2\": \"Why did the laptop fall?\", \"A\": \"The man kicked the laptop while breakdancing causing it to fall.\", \"video_name\": \"v_LuH7I7Rxju8\"}, {\"Q1\": \"What is the man doing with the adhesive eraser in the video?\", \"Q2\": \"Can you describe how the man is cleaning the shoes in the video?\", \"A\": \"The man is using an adhesive eraser to clean the bottom edges and front of the blue and white Nike shoes he is holding in the video.\", \"video_name\": \"v_NojaHuKBagQ\"}, {\"Q1\": \"What type of court are the women playing on during the official warm-up?\", \"Q2\": \"Can you describe the setting of the official warm-up?\", \"A\": \"The women are doing an official warm-up on a sandy beach volleyball court.\", \"video_name\": \"v_Mk7Yjq1U8OI\"}, {\"Q1\": \"What are the colors of the clothes worn by the children in the video?\", \"Q2\": \"Can you describe the attire of the children playing in the video?\", \"A\": \"The children in the video are wearing white, black, pink, and blue clothing.\", \"video_name\": \"v_F9mk2Dn2tFw\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the weightlifting competition shown in the video?\", \"A\": \"The video shows a weightlifting competition with athletes from different countries lifting barbells and dropping them on the ground. The competition is well-lit and there are judges sitting behind desks observing the athletes.\", \"video_name\": \"v_o5F7X-UBETE\"}, {\"Q1\": \"What activity is taking place in the gym in the video?\", \"Q2\": \"Can you describe the surroundings of the girl playing badminton in the video?\", \"A\": \"The video shows a girl playing badminton in a gym with people standing at the edges, a woman taking pictures near the netting, a scoreboard at the top of the wall, an American flag hung vertically, and retracted bleachers to the left.\", \"video_name\": \"v_mShp2gzuPOM\"}, {\"Q1\": \"What kind of sandwich is being made in the video?\", \"Q2\": \"Can you describe the ingredients used in the sandwich being prepared in the video?\", \"A\": \"The sandwich being prepared in the video has boiled potatoes, chopped onions, sliced tomatoes, cheese, bell pepper, butter, and green chutney as its ingredients.\", \"video_name\": \"v_meNgZdu8tIk\"}, {\"Q1\": \"What is the woman wearing while holding the saxophone?\", \"Q2\": \"Can you describe the woman and her surroundings as she plays the saxophone?\", \"A\": \"The woman is wearing a black shirt and black pants while holding a saxophone in a well-lit room with blue and white walls. There is a music stand with sheet music at the back and to her right, a wooden chair to her left and back, and a whiteboard fixed on the back wall.\", \"video_name\": \"v_ERYwCKVUTSQ\"}, {\"Q1\": \"What is the subject of the painting?\", \"Q2\": \"Can you describe what the woman is painting?\", \"A\": \"The woman is painting a peacock.\", \"video_name\": \"v_myGBEXiYGOU\"}, {\"Q1\": \"Where are the riders in the video located?\", \"Q2\": \"On the banks of which river in Mongolia are the riders in the video located?\", \"A\": \"The riders in the video are located on the banks of the Terelj River in Mongolia.\", \"video_name\": \"v_ltlJ2sOx4as\"}, {\"Q1\": \"What is happening in the beauty salon?\", \"Q2\": \"Can you describe the activities taking place in the salon?\", \"A\": \"The girl is getting her hair cut, eyebrows shaped, and sitting in a chair with hair clips, while another woman under a hooded hair dryer reads a magazine.\", \"video_name\": \"v_nywOe9C3ajM\"}, {\"Q1\": \"What is the barber doing while standing on the left of the customer?\", \"Q2\": \"Where is the barber standing in relation to the customer?\", \"A\": \"The barber is using a blade on the customer's head while standing on the left of the customer.\", \"video_name\": \"v_mLFjww64sX8\"}, {\"Q1\": \"What is the color of the wall behind the man playing the harmonica?\", \"Q2\": \"Can you describe the background of the man playing the harmonica?\", \"A\": \"The wall behind the man is cream-colored and there is a lamp visible at his back.\", \"video_name\": \"v_nDHupsLdar0\"}, {\"Q1\": \"What is the name of the diver featured in the video?\", \"Q2\": \"Who is the person introduced in the video with a name graphic?\", \"A\": \"The name of the diver is Thomas Daley and he executes several dives with multiple backward somersaults.\", \"video_name\": \"v_lSVj34-DR0o\"}, {\"Q1\": \"What is the man wearing while playing the bagpipe in the dimly lit room?\", \"Q2\": \"Can you describe the environment in which the man is playing the bagpipe?\", \"A\": \"The man is wearing a black T-shirt and playing the bagpipe in a dimly lit room with posters featuring text and art.\", \"video_name\": \"v_lU6DMCif3eE\"}, {\"Q1\": \"What color T-shirt is the man wearing while dancing?\", \"Q2\": \"Can you describe what the man is wearing while dancing?\", \"A\": \"The man is wearing a turquoise T-shirt, blue jeans, and white shoes while dancing with the woman wearing a black top and blue jeans with black shoes.\", \"video_name\": \"v_gmbC7D6HfuM\"}, {\"Q1\": \"What is the color of the tops that the women on the volleyball court are wearing?\", \"Q2\": \"Can you describe the clothing worn by the women standing on the volleyball court?\", \"A\": \"The women on the volleyball court are wearing white tops with numbers on them.\", \"video_name\": \"v_MWQ9mb_mB8U\"}, {\"Q1\": \"What color T-shirt is the woman wearing while mowing the lawn?\", \"Q2\": \"What is the woman wearing while operating the lawn mower?\", \"A\": \"The woman is wearing a green T-shirt.\", \"video_name\": \"v_mMm1LfVb8Pg\"}, {\"Q1\": \"What are the people around the boy doing?\", \"Q2\": \"Can you describe the scene around the boy?\", \"A\": \"The people around the boy are standing and wearing roller skates, and the skating rink has a well-lit polished wood floor.\", \"video_name\": \"v_Nvf-BZNEGdI\"}, {\"Q1\": \"What is the man wearing in the video?\", \"Q2\": \"Can you describe the appearance of the man in the video?\", \"A\": \"The man is wearing a white lab coat in the video.\", \"video_name\": \"v_-MbZ-W0AbN0\"}, {\"Q1\": \"What teams are playing in the cricket match shown in the beginning of the video?\", \"Q2\": \"Which team is batting in the cricket match shown at the start of the video?\", \"A\": \"Pakistan is batting in the cricket match shown at the beginning of the video.\", \"video_name\": \"v_mY7QdIn51S8\"}, {\"Q1\": \"What musical instrument is the man playing?\", \"Q2\": \"Can you describe what the man is doing?\", \"A\": \"The man wearing a Scottish kilt is playing the bagpipe.\", \"video_name\": \"v_nI6l7BP0odw\"}, {\"Q1\": \"What is the man wearing who is buffing the shoes?\", \"Q2\": \"Can you describe the attire of the shoe shiner?\", \"A\": \"The shoe shiner is wearing a t-shirt and a hat while buffing the customer's shoe.\", \"video_name\": \"v_NwlIZ1T93xE\"}, {\"Q1\": \"What is happening to the girl in the pink top in the well-lit shop?\", \"Q2\": \"Can you describe what the woman with gloves and a dark blue top is doing to the girl in the chair?\", \"A\": \"The girl in the pink top is getting her ear pierced by a woman wearing gloves and a dark blue top in a well-lit shop.\", \"video_name\": \"v_Ntyl5alZXeM\"}, {\"Q1\": \"What kind of competition is taking place in the video?\", \"Q2\": \"Can you describe the event the athletes are participating in?\", \"A\": \"The athletes are participating in an indoor tumbling competition.\", \"video_name\": \"v_N4qhryre_TE\"}, {\"Q1\": \"What are the three men in the video doing?\", \"Q2\": \"Can you describe the scene and activity of the three men in the video?\", \"A\": \"The three men in the video are dressed as characters from the Mario Bros game, smoking hookah, dancing, and interacting with each other in a well-lit room with a yellow sheet backdrop and a man with a guitar poster on the wall.\", \"video_name\": \"v_MgjxjBxGrQU\"}, {\"Q1\": \"What type of clothing is the girl wearing who is not wearing a black vest and boxing in the gym?\", \"Q2\": \"Can you describe the attire of the two girls boxing in the gym?\", \"A\": \"One of the girls is wearing a black vest and the other is wearing a grey t-shirt while boxing in the well-lit gym.\", \"video_name\": \"v_LvaU_4xbxb0\"}, {\"Q1\": \"What game are the people playing in the swimming pool?\", \"Q2\": \"Can you describe the activity of the people in the swimming pool?\", \"A\": \"The people in the swimming pool are playing water polo.\", \"video_name\": \"v_nTY4IaGRFIc\"}, {\"Q1\": \"What is the boy doing on the basketball court?\", \"Q2\": \"Can you describe the drill the boy is practicing on the basketball court?\", \"A\": \"The boy is doing a crisscrossing drill with orange agility cones on a basketball court.\", \"video_name\": \"v_QG2xYcN_bl0\"}, {\"Q1\": \"What are the children wearing in the mall?\", \"Q2\": \"Can you describe the outfit of the little girl and the boy in the mall?\", \"A\": \"The little girl is wearing a black outfit and the little boy is wearing a green shirt while they are sitting on a shoe-shine chair at a shoe-shine station in a well-lit mall with a store visible behind them.\", \"video_name\": \"v_Lshue6AmrIw\"}, {\"Q1\": \"What is the color of the instructor's top?\", \"Q2\": \"Can you describe the outfit worn by the instructor?\", \"A\": \"The instructor is wearing a pink top, black track pants, and sports shoes.\", \"video_name\": \"v_eS-VU_XV1K8\"}, {\"Q1\": \"What happens when the boy jumps over the bar?\", \"Q2\": \"Does the boy successfully clear the bar during his jump?\", \"A\": \"Both the boy and the man successfully clear the bar during their jumps.\", \"video_name\": \"v_NM7Vye5nxj8\"}, {\"Q1\": \"What is the woman wearing while cleaning the sink?\", \"Q2\": \"Can you describe the appearance of the woman cleaning the sink?\", \"A\": \"The woman is wearing a black apron over a T-shirt and jeans.\", \"video_name\": \"v_ghxiG0Dnrt0\"}, {\"Q1\": \"What are the women doing at the beginning of the video?\", \"Q2\": \"How do the women start their dance performance?\", \"A\": \"The women start by entering the stage from the right and facing away from the audience with their right hands up.\", \"video_name\": \"v_hFi6S_guB7I\"}, {\"Q1\": \"What sport is being played in the video?\", \"Q2\": \"Can you describe the game being played in the video?\", \"A\": \"The video shows people playing kickball on a field.\", \"video_name\": \"v_18yZR3NDaXM\"}, {\"Q1\": \"What is happening in the kitchen sink in the video?\", \"Q2\": \"Can you describe the scene in the kitchen sink that is being shown in the video?\", \"A\": \"The woman and the young girl are washing dishes with soap in the kitchen sink.\", \"video_name\": \"v_BjjN_aq_wq4\"}, {\"Q1\": \"What is the man doing with his foot on the rooftop?\", \"Q2\": \"Can you describe the grooming process of the man's leg on the roof?\", \"A\": \"The man is cleaning and shaving his right leg with a razor blade on the rooftop while a woman stands beside him holding a microphone.\", \"video_name\": \"v_DJTvj9lfSWU\"}, {\"Q1\": \"What is the man wearing as clothing while washing dishes?\", \"Q2\": \"Can you describe the outfit of the man who is standing in the kitchen and washing dishes?\", \"A\": \"The man is wearing glasses and a white hoodie while washing dishes in the kitchen.\", \"video_name\": \"v_0BtHd6dvm78\"}, {\"Q1\": \"What color are the sails on the dinghy that is shown after the man in the red wetsuit?\", \"Q2\": \"Can you describe the sails and color of the dinghy that sailors are shown maneuvering?\", \"A\": \"The dinghy shown after the man in the red wetsuit has red and white sails, and the other dinghies have white sails.\", \"video_name\": \"v_dKJMP8EmZjw\"}, {\"Q1\": \"What is the man wearing while polishing his shoes?\", \"Q2\": \"Can you describe the man's attire while polishing his shoes?\", \"A\": \"The man is wearing a dress shirt and has a shoe placed on a black desk mat. He polishes the shoe with a piece of cloth after applying a clear liquid and shoe polish from a tin and glass vile visible on the mat.\", \"video_name\": \"v_kGdxtU3NwWo\"}, {\"Q1\": \"Who brings out the chocolate cake at the end of the video?\", \"Q2\": \"Can you describe the ending of the video?\", \"A\": \"A man wearing a black coat brings out a chocolate cake at the end of the video and the others sing while the man getting the haircut gets his face smeared with chocolate cake.\", \"video_name\": \"v_b4xvXZq5uD8\"}, {\"Q1\": \"What color is the sink in the video?\", \"Q2\": \"Can you describe the sink seen in the video?\", \"A\": \"The sink in the video is mint green and has two basins.\", \"video_name\": \"v_aLb79wtvxoQ\"}, {\"Q1\": \"What is the athlete doing at the start of the video?\", \"Q2\": \"Can you describe the beginning of the athlete\\u2019s routine in the video?\", \"A\": \"At the beginning of the video, the athlete is standing by a pommel horse, wearing a blue outfit, and getting ready to start an artistic gymnastics routine.\", \"video_name\": \"v_KlgrI3Ngwv0\"}, {\"Q1\": \"What are the children in the video doing?\", \"Q2\": \"Can you describe the drills being performed by the children?\", \"A\": \"The children in the video are doing karate drills, including different stances, punch and kick drills, and forward and backward movements.\", \"video_name\": \"v_jN-jnIgzd6k\"}, {\"Q1\": \"What do you see at the bottom when the boy jumps from the bungee platform?\", \"Q2\": \"As the boy jumps from the bungee platform, what comes into view?\", \"A\": \"When the boy jumps, a stream is visible at the bottom.\", \"video_name\": \"v_araMJB23T1s\"}, {\"Q1\": \"What are the steps involved in cleaning the leather sofa in the video?\", \"Q2\": \"Can you describe the process of cleaning the leather sofa?\", \"A\": \"The process of cleaning the leather sofa involves spraying foam cleaner on the brush and cleaning the couch, then degreasing the damaged areas by spraying some cleaner on a towel and wiping the surface of the sofa, sanding rough surfaces using a scrub pad, using color refresh liquid and wiping the couch with a piece of sponge, drying the surface of the sofa with a hair drier, and applying UV protection liquid on the sofa.\", \"video_name\": \"v_dW6OZV43ulU\"}, {\"Q1\": \"What is the little girl washing in the kitchen sink?\", \"Q2\": \"Can you describe the dishwashing activity of the little girl in the kitchen?\", \"A\": \"The little girl is washing dishes in the kitchen sink, including a glass, a spoon, a pot, a plate with Dora the Explorer on it, and a plastic jar.\", \"video_name\": \"v_JcAAwYpJhm8\"}, {\"Q1\": \"What teams are playing against each other in the volleyball match?\", \"Q2\": \"Can you describe the teams playing in the volleyball match?\", \"A\": \"Italy and Latvia are playing against each other, with Italy wearing blue vests and Latvia wearing red vests.\", \"video_name\": \"v_aYxni8ohTfU\"}, {\"Q1\": \"Who can be seen in the background of the video?\", \"Q2\": \"Are there other people visible in the video besides the man on the parallel bar?\", \"A\": \"Yes, two people are visible in the background - one wearing a green shirt and the other in white sportswear.\", \"video_name\": \"v_6Xsfwn5M6qs\"}, {\"Q1\": \"What is the man wearing while cleaning the glass door?\", \"Q2\": \"In the video, what kind of wipers does the man use to clean the glass door?\", \"A\": \"The man is wearing a dark blue shirt and khaki pants and uses a larger and smaller wiper to clean the glass door.\", \"video_name\": \"v_CecqF_uHeOI\"}, {\"Q1\": \"What happens just as the ball lands near the front player in the water polo game?\", \"Q2\": \"Can you describe the incident that occurs as the ball comes near the front player?\", \"A\": \"The front player is pushed into the pool from behind just as the ball lands close to her.\", \"video_name\": \"v_7-taNK5mW8E\"}, {\"Q1\": \"What activity were the men engaged in at the beginning of the video?\", \"Q2\": \"Can you describe what the men were doing when the video started?\", \"A\": \"The men were preparing for a wood-chopping competition, holding axes and standing on blocks of wood.\", \"video_name\": \"v_IcR28Yqt4mY\"}, {\"Q1\": \"What is the attire of the man preparing for the high jump?\", \"Q2\": \"Can you describe the clothes of the man who begins the high jump?\", \"A\": \"The man is wearing a green fluorescent vest with the name tag 'UKHOV'.\", \"video_name\": \"v_B3xMfP_UOt4\"}, {\"Q1\": \"What is happening to the ship in the video?\", \"Q2\": \"Can you describe the position of the ship in the video?\", \"A\": \"The ship is dangerously tilted left and appears to be about to capsize in the daytime sea. \", \"video_name\": \"v_4XnXyKYxnQQ\"}, {\"Q1\": \"What type of workout is being performed in the video?\", \"Q2\": \"Can you describe the activities performed by the people in the video?\", \"A\": \"The video shows a boxing workout where a woman punches punch mitts and kicks pads while a man punches punch mitts and kicks pads.\", \"video_name\": \"v_hq48S65dlyo\"}, {\"Q1\": \"What is the little boy doing at the beginning of the video?\", \"Q2\": \"Can you describe the opening scene in the video featuring the little boy?\", \"A\": \"The little boy is standing in a parking lot holding a juice box, wearing a black t-shirt, with a white van and two skateboards visible in the background.\", \"video_name\": \"v_gWbIoFrpwTY\"}, {\"Q1\": \"What color are the lights shining on the dance floor?\", \"Q2\": \"What is the color of the illumination on the portion of the floor where people are dancing?\", \"A\": \"The lights shining on the dance floor are not described in the given details.\", \"video_name\": \"v_eoSwoeLmeyQ\"}, {\"Q1\": \"What object does the man have in his hand?\", \"Q2\": \"What is the man doing with the hammer attached to a grip by a cable?\", \"A\": \"The man is swinging a hammer attached to a grip by a cable while standing on a circular platform inside a cage.\", \"video_name\": \"v_1d_U_2HIPmY\"}, {\"Q1\": \"What is happening to the girl in the salon?\", \"Q2\": \"Can you describe what is going on in the salon with the crying girl?\", \"A\": \"The girl is getting her hair cut in the salon while crying.\", \"video_name\": \"v_Hz7-mBFGsSs\"}, {\"Q1\": \"Who is the focus of the video as he tries to check the ball from the opposing team?\", \"Q2\": \"Which player wearing a white jersey is focused on in the video as he attempts to check the ball?\", \"A\": \"Cole Flowler, wearing a white jersey, is the focus of the video as he attempts to check the ball from the opposing team.\", \"video_name\": \"v_B_U7vUtoCKY\"}, {\"Q1\": \"What is the woman doing at the start of the video?\", \"Q2\": \"Can you describe what the woman is wearing and what she is doing in the river?\", \"A\": \"The woman is rowing an orange kayak down a rapid river while wearing a life vest and white helmet.\", \"video_name\": \"v_7pfHxav4b0U\"}, {\"Q1\": \"What is the man wearing and doing in the gym?\", \"Q2\": \"Can you describe the woman, the man, and the resistance trainer present in the gym during the video?\", \"A\": \"The man is wearing a black polo shirt, speaking to the camera in the gym, while the woman is standing next to him; they are both behind a resistance trainer in the well-lit gym. The woman climbs onto the resistance trainer, starts pedaling, and adjusts the instrument cluster settings, while the man continues speaking into the camera.\", \"video_name\": \"v_htzAYwoAZkg\"}, {\"Q1\": \"What activity are Kevin Spacey and Rafael Nadal engaged in on stage?\", \"Q2\": \"Can you describe the game that Kevin Spacey and Rafael Nadal play on stage?\", \"A\": \"Kevin Spacey and Rafael Nadal play ping pong on stage.\", \"video_name\": \"v_ijrjRNwZjqQ\"}, {\"Q1\": \"What is the color of the wetsuit worn by the boy windsurfing?\", \"Q2\": \"Can you describe the wetsuit worn by the boy seen windsurfing?\", \"A\": \"The boy seen windsurfing is wearing an orange and black wetsuit.\", \"video_name\": \"v_IhmtmKxEU40\"}, {\"Q1\": \"What is the toddler doing in the video?\", \"Q2\": \"Can you describe the actions of the toddler in the video?\", \"A\": \"The toddler is washing her face with pool water multiple times while sitting on the pool wall while the man holds onto her.\", \"video_name\": \"v_3zpODTqnYLs\"}, {\"Q1\": \"What is the girl doing in the video?\", \"Q2\": \"Can you describe the girl's activity in the video?\", \"A\": \"The girl is shaving her left leg while occasionally talking to the camera person and others in the room.\", \"video_name\": \"v_1KONAdZGdWU\"}, {\"Q1\": \"What is the color of the floors on the stage of the performance?\", \"Q2\": \"Can you describe the stage set up for the saxophonist performance?\", \"A\": \"The performer is wearing a black suit and white shirt, playing his saxophone on a stage with red floors, blue curtains and a staircase in front. The audience can be seen sitting a few feet from the staircase, while backing musicians play various instruments behind the saxophonist. A music stand with transparent top is placed next to the saxophonist, and the video ends with the audience applauding.\", \"video_name\": \"v_DIhyfNJAm-M\"}, {\"Q1\": \"What is the woman wearing and where is she standing?\", \"Q2\": \"Can you describe the surroundings of the woman in the video and what she is wearing?\", \"A\": \"The woman is wearing a grey t-shirt and black track pants, standing in a small gym with other exercise equipment around her. Sunlight is streaming from an open door in front of her. \", \"video_name\": \"v_K6QunmuTZOQ\"}, {\"Q1\": \"What is the man wearing while ironing the dress shirt?\", \"Q2\": \"Can you describe the clothes worn by the man who is ironing the dress shirt?\", \"A\": \"The man is wearing a black sweater vest over a grey shirt while ironing the dress shirt.\", \"video_name\": \"v_l7qSKJyq6mA\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the process shown in the video?\", \"A\": \"In the video, a man is piercing the woman's belly button with a needle piercer, and inserting a jewelry before securing it with a ball. The studio is well-lit and the man has black gloves on. Both of his hands are tattooed and the woman can be seen speaking to the person holding the camera\", \"video_name\": \"v_2VZumBKJuPs\"}, {\"Q1\": \"What were the women doing in the video?\", \"Q2\": \"Can you describe the scene of the video with women dancing?\", \"A\": \"The women were dancing synchronously on the grass under the shadow of a tree to music.\", \"video_name\": \"v_7EeO9V2B574\"}, {\"Q1\": \"What are the characters wearing in the video?\", \"Q2\": \"Can you describe the attire of the man and the woman in the video?\", \"A\": \"The man and woman are dressed like characters from the Street Fighter game.\", \"video_name\": \"v_IgDBDaIoNAM\"}, {\"Q1\": \"What sport are the players in orange uniforms playing on the field?\", \"Q2\": \"Can you describe the game played by the players in orange uniforms on the field?\", \"A\": \"The players in orange uniforms are playing field hockey.\", \"video_name\": \"v_325CAs4hhq8\"}, {\"Q1\": \"Describe the man in the video and his surroundings.\", \"Q2\": \"Can you mention the details of the accordion player and his environment?\", \"A\": \"The man is wearing a grey shirt and is sitting in a dimly lit room with an accordion strapped to him. He is sitting next to a wall with a bookshelf behind him and a door frame visible to his right. There are framed Spanish sayings hung on the wall to his side and behind him. He briefly speaks before starting to play the accordion.\", \"video_name\": \"v_CTJej0rZMiI\"}, {\"Q1\": \"What is the woman doing when the man is playing the piano?\", \"Q2\": \"Can you describe the scene when the woman is singing in the video?\", \"A\": \"The woman starts to sing while the man is playing the piano.\", \"video_name\": \"v_CTyvQHkAKuY\"}, {\"Q1\": \"What do you see in the gymnasium?\", \"Q2\": \"Can you describe the gymnasium in the video?\", \"A\": \"The video shows a gymnastics performance on a balance beam in a well-lit gymnasium with judges, spectators, and a balcony with chairs.\", \"video_name\": \"v_3M290KZV5lo\"}, {\"Q1\": \"What is the man wearing while peeling the banana?\", \"Q2\": \"Can you describe the man's attire when he is peeling the banana?\", \"A\": \"The man is wearing a green sweatshirt and sitting on a red chair while peeling the banana.\", \"video_name\": \"v_itXYuf_Cj_Q\"}, {\"Q1\": \"What is the instrument the boy is playing in the video?\", \"Q2\": \"Can you describe the scene where the boy is playing?\", \"A\": \"The boy is playing the violin in a well-lit room with two pianos at his back and a woman playing one of the pianos.\", \"video_name\": \"v_JspVuT6rsLA\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the scene in the video?\", \"A\": \"The video shows a polo game being played in the daytime, with players riding horses and striking the ball with their mallets as spectators watch from the red seats.\", \"video_name\": \"v_cPIsE2ZCWzM\"}, {\"Q1\": \"What is the man wearing in the video?\", \"Q2\": \"Can you describe the clothing worn by the man in the video?\", \"A\": \"The man in the video is wearing a blue polo shirt.\", \"video_name\": \"v_IL8__uSFpqg\"}, {\"Q1\": \"What is the woman wearing while playing squash?\", \"Q2\": \"Can you describe the attire of the woman in the video while playing squash?\", \"A\": \"The woman is wearing a white t-shirt and shorts while playing squash.\", \"video_name\": \"v_JguRZtFN-Ck\"}, {\"Q1\": \"What kind of dives are being performed in the video?\", \"Q2\": \"Can you describe the different types of dives being performed in the video?\", \"A\": \"Several people are diving off the diving board and performing flips, including backflip dives, front flips, and a horizontal flip dive at the end of the video.\", \"video_name\": \"v_cFOaL4Ir4hg\"}, {\"Q1\": \"Which two teams are playing against each other in the volleyball game?\", \"Q2\": \"Can you name the teams playing the volleyball game?\", \"A\": \"USC and BYU are the two teams playing against each other in the volleyball game.\", \"video_name\": \"v_BdRH3lpopLQ\"}, {\"Q1\": \"What activity is the woman doing on the tennis court?\", \"Q2\": \"Is the woman playing tennis on an outdoor court?\", \"A\": \"The woman is playing tennis on an outdoor court and practicing her serve.\", \"video_name\": \"v_JHKAcpYlxkQ\"}, {\"Q1\": \"What are the colors of the jerseys worn by the two teams playing hockey?\", \"Q2\": \"Can you describe the jerseys worn by the two teams playing hockey?\", \"A\": \"One team is wearing blue jerseys while the other is wearing green jerseys.\", \"video_name\": \"v_1xBdquA6dx8\"}, {\"Q1\": \"What is the action of the man in the black outfit after the man wearing white t-shirt finishes speaking?\", \"Q2\": \"Can you describe the next performance after the man in the white t-shirt speaks?\", \"A\": \"The man in the black outfit steps into a white sheet on the ground and starts to breakdance followed by the man in the white t-shirt who dances and interacts with the crowd.\", \"video_name\": \"v_kdOsmDACtqw\"}, {\"Q1\": \"What is the toddler doing in the beginning of the video?\", \"Q2\": \"Can you describe the scene when the video starts?\", \"A\": \"The toddler is sitting on a vanity table with hair rollers in her hair and surrounded by makeup products and bottles while her mother speaks to her.\", \"video_name\": \"v_kIFHChO_-vg\"}, {\"Q1\": \"What is the color of the shirt worn by the man in the video?\", \"Q2\": \"Can you describe the attire of the man shown in the video?\", \"A\": \"The man in the video is wearing a white shirt.\", \"video_name\": \"v_5P9Tbut04xE\"}, {\"Q1\": \"What are the women wearing in the video?\", \"Q2\": \"Can you describe the clothes of the women in the video?\", \"A\": \"The women are wearing gym clothes.\", \"video_name\": \"v_7gaC3b5nJqs\"}, {\"Q1\": \"What color is the toothbrush in the video?\", \"Q2\": \"Can you describe the toothbrush used in the video?\", \"A\": \"The toothbrush featured in the video is blue.\", \"video_name\": \"v_15yU0R2MBQM\"}, {\"Q1\": \"What color is the kayak that the woman is in?\", \"Q2\": \"Can you describe the woman and her kayak in the video?\", \"A\": \"The woman is in a yellow kayak, wearing a life vest and a white cap. The kayak is in a calm river surrounded by green hills and trees on the right. She shows how to use the paddle to turn by doing a reverse and forward sweep with both paddles.\", \"video_name\": \"v_kgz7c2kb4Rg\"}, {\"Q1\": \"What is the girl doing in the video?\", \"Q2\": \"Can you describe the activities performed by the girl in the video?\", \"A\": \"The girl is performing various gymnastics moves including backflips, front flips, back tucks, standing back-tucks, back handspring tucks, and a tumbling sequence.\", \"video_name\": \"v_0k0xNs8Zjb4\"}, {\"Q1\": \"What time of day did the game take place?\", \"Q2\": \"Was the game played in the daytime or nighttime?\", \"A\": \"The game took place in the daytime.\", \"video_name\": \"v_9pavfCL1HvU\"}, {\"Q1\": \"What is the color of the outfit the woman carrying a flower pot is wearing?\", \"Q2\": \"Can you describe the colors of the outfits worn by the two women who enter the house?\", \"A\": \"One woman is wearing a blue outfit and the other is wearing a pink outfit.\", \"video_name\": \"v_i5qTK0mInTc\"}, {\"Q1\": \"What sport is being played in the pool?\", \"Q2\": \"Can you describe the game that is being played in the swimming pool?\", \"A\": \"Water polo is being played in the swimming pool.\", \"video_name\": \"v_EK7qW-oavQY\"}, {\"Q1\": \"What is the man wearing who instructs the archer on how to grip the bow?\", \"Q2\": \"Can you describe the clothing of the person who teaches the archer how to hold the bow?\", \"A\": \"The man who instructs the archer on how to grip the bow is wearing a blue polo shirt and a grey cap.\", \"video_name\": \"v_jCxQQ9DMpT0\"}, {\"Q1\": \"What is the name of the first jump Stefan Holm performs?\", \"Q2\": \"Can you describe the first jump Stefan Holm performs in the video?\", \"A\": \"Stefan Holm performs the first degree jump in which he runs towards the horizontal bar and successfully jumps over it.\", \"video_name\": \"v_4NPVpI9zUpI\"}, {\"Q1\": \"What is the colour of the outfits worn by the girl and the boy on the track?\", \"Q2\": \"Can you describe the outfits worn by the girl and the boy on the track?\", \"A\": \"The girl and the boy are both wearing black outfits while running on the track.\", \"video_name\": \"v_Ku76zinwWkg\"}, {\"Q1\": \"What color are the hoodies worn over the paintball helmets?\", \"Q2\": \"Can you describe the attire of the people in the paintball park?\", \"A\": \"The people are wearing hoodies over their paintball helmets.\", \"video_name\": \"v_Hy54nZSDxTk\"}, {\"Q1\": \"What color uniform does Jessica Skillings wear in the video?\", \"Q2\": \"Which player is the video following and what color jersey is she wearing?\", \"A\": \"Jessica Skillings wears a dark blue uniform in the video.\", \"video_name\": \"v_KApqxr02rcQ\"}, {\"Q1\": \"What is the man in the blue jacket doing?\", \"Q2\": \"Can you describe the scene in the video?\", \"A\": \"The man in the blue jacket is shoveling snow on a sidewalk surrounded by a snow-covered lawn and a cloudy sky. A tree covered in snow is visible next to him, and snow-covered trees are visible down the street. The man slowly clears snow as he walks forward, and the video ends with him still shoveling snow. An edge of a car is visible behind him.\", \"video_name\": \"v_BBKSKU6dGGk\"}, {\"Q1\": \"What color are the weights on the barbell?\", \"Q2\": \"Can you describe the appearance of the weights on the barbell?\", \"A\": \"The barbell in front of the man has multi-colored weights on it.\", \"video_name\": \"v_-HpCLXdtcas\"}, {\"Q1\": \"What sport is being played in the video?\", \"Q2\": \"Can you describe the activity in the video?\", \"A\": \"The video shows a volleyball game being played in a gym.\", \"video_name\": \"v_9VtxNvLx6zA\"}, {\"Q1\": \"What activity is the man engaged in at the beginning of the video?\", \"Q2\": \"Can you describe the setting at the beginning of the video and what the man is doing?\", \"A\": \"At the beginning of the video, the man is standing in a wooded area chopping wood with an axe. There are trailers visible in the back along with a truck. A tent is set up some distance in the back from the man. A bike is parked in front of it. A foldable table with chairs is visible at the back and right of the man. \", \"video_name\": \"v_AwgGYaV1lT0\"}, {\"Q1\": \"What is the color of the Tai Chi uniform the man is wearing?\", \"Q2\": \"Can you describe the attire of the man practicing Tai Chi in the video?\", \"A\": \"The man is wearing a black Tai Chi uniform while practicing on a concrete floor outdoors.\", \"video_name\": \"v_0X0u_3xUBPE\"}, {\"Q1\": \"What does the man do with the axe and the log?\", \"Q2\": \"Can you describe the actions of the man in the video?\", \"A\": \"The man uses the axe to chop a log, initially causing it to crack slightly before several swings eventually break the log apart, while a dog periodically comes near the man.\", \"video_name\": \"v_iABuDhagUm8\"}, {\"Q1\": \"What is the old man wearing while playing the harmonica?\", \"Q2\": \"Can you describe the old man\\u2019s attire while he plays the harmonica?\", \"A\": \"The old man is wearing winter clothes, a hat, and sunglasses while playing the harmonica.\", \"video_name\": \"v_jt-Vnap5KP4\"}, {\"Q1\": \"What is happening in the background while the man is skateboarding?\", \"Q2\": \"Are there any other people skating in the video besides the man with the skateboard?\", \"A\": \"Other people are visible skating in the background besides the man with the skateboard.\", \"video_name\": \"v_agu58IVL7IQ\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the competition the man is participating in?\", \"A\": \"The man is participating in a disk throw competition, where he spins to build momentum and throws the disk, with a referee marking the spot where the disk landed. The video shows different angles of the man throwing the disk and several clips of the man making different disk throws one after another. There are also hundreds of spectators visible sitting on seats.\", \"video_name\": \"v_9AfQ2Q-96oE\"}, {\"Q1\": \"What is the man doing in the video?\", \"Q2\": \"Can you describe the activity of the man in the video?\", \"A\": \"The man is performing a tai chi practice and instructing on different stances and their positions.\", \"video_name\": \"v_A904-cbaYDw\"}, {\"Q1\": \"What song is the woman dancing to in the beginning of the video?\", \"Q2\": \"Which song plays throughout the video as the dancers perform?\", \"A\": \"The woman is dancing to the song \\\"Let it Go\\\" from the movie \\\"Frozen\\\" and this song continues to play throughout the video while the dancers dance to it.\", \"video_name\": \"v__B7rGFDRIww\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the scene in the basketball court?\", \"A\": \"A boy is dunking the basketball while his coach watches and instructs him in an indoor basketball court with frames on the far wall.\", \"video_name\": \"v_5tFfEA1JWjA\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the scene in the video?\", \"A\": \"A group of dancers perform on stage in front of a projection while silhouettes of people wearing headphones are visible in front of the stage.\", \"video_name\": \"v_AQnp2QAnwI0\"}, {\"Q1\": \"What are the cheerleaders doing before they start their routine?\", \"Q2\": \"Can you describe the entrance of the cheerleaders into the basketball court?\", \"A\": \"The cheerleaders run into the basketball court and wave towards the spectators.\", \"video_name\": \"v_ANaMmXJFE54\"}, {\"Q1\": \"What kind of equipment is in the gym where the man is practicing?\", \"Q2\": \"Can you describe the gym where the man is practicing gymnastics?\", \"A\": \"The gym where the man is practicing gymnastics has overhead lights, several balance beams fixed to the ground with foam pads lining the floor, and numerous flags lining the wall.\", \"video_name\": \"v_7orO93DICYw\"}, {\"Q1\": \"What activity is taking place in the field at the beginning of the video?\", \"Q2\": \"Can you describe the high jump contest at the beginning of the video?\", \"A\": \"At the beginning of the video, a high jump contest is taking place in a field with a horizontal bar, foam pad, people competing, a man with colored flags, and a seated audience.\", \"video_name\": \"v_9hTcvGUnMBs\"}, {\"Q1\": \"What does the boy do before mowing the lawn and what happens when he tries to start it?\", \"Q2\": \"Can you describe how the boy started the lawn mower and his struggles with it?\", \"A\": \"Before mowing the lawn, the boy switched on the mower and moved it forward. He struggles to move it and gets stuck in some patches, eventually pulling the mower back. \", \"video_name\": \"v_60tIsGR0Zzg\"}, {\"Q1\": \"What is the bartender doing in the video?\", \"Q2\": \"Can you describe the process the bartender follows to make a drink?\", \"A\": \"The bartender is making a drink by pouring and mixing different spirits, shaking them with ice, and finally pouring the mixture into a glass with ice. He also runs a lime on the rim of the glass.\", \"video_name\": \"v_IRua6QGP-Ow\"}, {\"Q1\": \"What is the boy wearing and doing in the video?\", \"Q2\": \"Can you describe the setting and actions of the boy in the video?\", \"A\": \"The boy is wearing a dark blue sweatshirt and holding his hand to the side of his head while sitting at a table with a plate in front of him. The background shows a lamp near the wall. The man also appears in a cutaway wearing a white t-shirt and looking at the camera while standing in a room with a packed shelf. The video ends with cutaway shots of the boy looking at the camera and looking away.\", \"video_name\": \"v_DOI6tsATsE4\"}, {\"Q1\": \"What color tights is the man wearing?\", \"Q2\": \"Can you describe what the man is wearing?\", \"A\": \"The man is wearing black tights.\", \"video_name\": \"v_ej9TkJVjK9M\"}, {\"Q1\": \"What is the woman doing in the room with the hopscotch court?\", \"Q2\": \"Can you describe the activity the woman is engaged in while standing near the hopscotch court?\", \"A\": \"The woman is playing hopscotch in the room and completes a pass on the court.\", \"video_name\": \"v_8L1UjGLOCeI\"}, {\"Q1\": \"What is the attire of the man in the aerobics class?\", \"Q2\": \"Can you describe what the man wearing the green t-shirt is doing in the aerobics class?\", \"A\": \"The man wearing a green t-shirt is working out using an aerobics step in the aerobics class.\", \"video_name\": \"v_c7S423zJqPo\"}, {\"Q1\": \"What is the weight loss product being advertised in the video?\", \"Q2\": \"Can you tell me what product the man is promoting for weight loss?\", \"A\": \"The man in the video is promoting a weight loss product and talks about \\\"5 pounds lost in 7 days\\\".\", \"video_name\": \"v_Bkhr72sazvQ\"}, {\"Q1\": \"What items does the man place on the table in the video?\", \"Q2\": \"Can you describe the contents on the table in the video?\", \"A\": \"The man places a bottle of white vinegar and a bottle of olive oil on the table.\", \"video_name\": \"v_d-RYiiPzVKg\"}, {\"Q1\": \"What type of competition is being held in the video?\", \"Q2\": \"Where are the archers shooting arrows in the video?\", \"A\": \"The video shows an indoor archery competition with spectators seated in the stands.\", \"video_name\": \"v_BmLDHLKiIdQ\"}, {\"Q1\": \"What activity are the people engaged in the video?\", \"Q2\": \"What are the people doing in the lawn-covered field?\", \"A\": \"The people are playing and kicking a red ball in the field.\", \"video_name\": \"v_9VflCeoPr9I\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the people and activities in the video?\", \"A\": \"The video shows a man getting his head shaved by a woman while a man records it on his phone in the presence of other people in the room.\", \"video_name\": \"v_1kwIYXB4b8s\"}, {\"Q1\": \"What is the color of the basketball court walls behind the two teens?\", \"Q2\": \"Can you describe the background of the video where the two teens are sparring?\", \"A\": \"The basketball court walls behind the two teens are painted white at the top half and blue at the bottom.\", \"video_name\": \"v_kPn9NzU4W48\"}, {\"Q1\": \"What are the riders doing in the video?\", \"Q2\": \"Can you describe the stunts performed by the two riders in the video?\", \"A\": \"The riders are performing a series of jumps and stunts on a dirt bike track, while being recorded by a person in the middle. They jump over inclines, ride in a circle and jump over a hill at the end.\", \"video_name\": \"v_4iFlM_Zu7xs\"}, {\"Q1\": \"What props are being used on the cheer squad's stage?\", \"Q2\": \"Can you describe the stage setup when the cheer squad performs?\", \"A\": \"The stage has overhead lighting and gobo lighting projections on the wall, and the cheer squad uses multiple bases to throw and lift members during their routine.\", \"video_name\": \"v_Dbas61NkTV0\"}, {\"Q1\": \"What is the girl doing with the luffa?\", \"Q2\": \"Can you describe how the girl is cleaning her face?\", \"A\": \"The girl is washing her face with the luffa by tapping it on her face and then rinsing off the suds with water from the running sink.\", \"video_name\": \"v_j6ElczD-Pw4\"}, {\"Q1\": \"What are the animals shown grazing in the video at the end?\", \"Q2\": \"Can you name the animals grazing towards the end of the video?\", \"A\": \"The animals shown grazing towards the end of the video are ostriches, alpacas, and camels.\", \"video_name\": \"v_e3DB_y78IHc\"}, {\"Q1\": \"What is the boy wearing while climbing the rock?\", \"Q2\": \"Can you describe the clothing of the boy who is climbing the rock?\", \"A\": \"The boy is wearing an orange T-shirt, a harness, and a belay rope is fastened to him.\", \"video_name\": \"v_9ZVWD0ZKXZg\"}, {\"Q1\": \"What color is the badminton court?\", \"Q2\": \"Can you describe the color of the playing surface on the badminton court?\", \"A\": \"The badminton court has a dark blue floor and walls.\", \"video_name\": \"v_1dDAcUliXrQ\"}, {\"Q1\": \"What is the woman wearing in the video while standing beside the black stone kitchen counter?\", \"Q2\": \"Can you describe the appearance of the woman standing beside the black stone kitchen counter?\", \"A\": \"The woman standing beside the black stone kitchen counter is wearing a sweater.\", \"video_name\": \"v_KvtqF0LaWU0\"}, {\"Q1\": \"Where is the girl sitting and what is she doing in the video?\", \"Q2\": \"Can you describe what is happening in the opening scene of the video?\", \"A\": \"The girl is sitting by an open window playing the piano while referencing the sheet music in front of her, and she starts to sing as she plays. Trees and sunlight are visible outside the window and the edge of a bed is visible behind her chair.\", \"video_name\": \"v_3VjaC7wdMso\"}, {\"Q1\": \"What are the players doing in the video?\", \"Q2\": \"Can you describe the activity being performed by the players in the video?\", \"A\": \"The players are performing a point guard drill, running around cones, attacking the basket, getting the ball back from the rebounder machine, dribbling while running, and making a point guard entry pass to attack the basket.\", \"video_name\": \"v_cms1BP4eKOA\"}, {\"Q1\": \"What event is taking place in the video?\", \"Q2\": \"Can you describe the athletic activity happening in the video?\", \"A\": \"The video depicts a woman named Britney Reese performing a high jump into a sand pit during an athletics event while her stats are displayed on a graphic, and is followed by her running in a lane and people sitting in the seating area.\", \"video_name\": \"v_Ivq9_wPFNs4\"}, {\"Q1\": \"What is the boy doing in the video?\", \"Q2\": \"Can you describe the scene in the video where the boy is present?\", \"A\": \"The boy is scrubbing dishes in the kitchen sink while standing on a box, and a woman records him with her phone.\", \"video_name\": \"v_dO01vfB9z4g\"}, {\"Q1\": \"What is the name of the event featured in the video?\", \"Q2\": \"Can you identify the event logo displayed at the beginning of the video?\", \"A\": \"The event featured in the video is Red Bull CROSSWAYS, as indicated by the logo displayed at the beginning of the video.\", \"video_name\": \"v_4-KiAur4dI8\"}, {\"Q1\": \"What is the man wearing while playing the harmonica on the sidewalk?\", \"Q2\": \"Can you describe the appearance of the man playing the harmonica on the sidewalk?\", \"A\": \"The man playing the harmonica on the sidewalk is wearing a white T-shirt and has long hair.\", \"video_name\": \"v_1XNHcfxTqW0\"}, {\"Q1\": \"Where is the video shot?\", \"Q2\": \"What is visible through the divider wall separating the gym from the rest of the hall?\", \"A\": \"The video is shot in a gym with a visible glass door through a divider wall separating the gym from the rest of the hall.\", \"video_name\": \"v_AE2gHOwcV14\"}, {\"Q1\": \"What is the woman wearing while demonstrating how to start a fire?\", \"Q2\": \"Can you describe the woman in the video?\", \"A\": \"The woman is wearing a grey top and is sitting on the ground in the woods while demonstrating how to start a fire.\", \"video_name\": \"v_bphckj0BV5U\"}, {\"Q1\": \"What ingredients does the woman add to the mixing bowl before adding tuna?\", \"Q2\": \"Can you describe the steps taken by the woman to prepare the tuna wraps?\", \"A\": \"Before adding a can of tuna to the mixing bowl, the woman adds mayonnaise, relish, mustard, celery, and chopped onion. She then arranges lettuce leaves on a plate, places a spoonful of the tuna mixture on each leaf and folds them into wraps.\", \"video_name\": \"v_E5YBb4rzV30\"}, {\"Q1\": \"What was the girl shown doing with the axe in the video?\", \"Q2\": \"What task did the man teach the girl to do with the axe in the video?\", \"A\": \"The man taught the girl how to chop wood using an axe.\", \"video_name\": \"v_dRF1C_sBE5M\"}, {\"Q1\": \"What uniform is the boy wearing while practicing training drills in the gym?\", \"Q2\": \"Can you describe the clothes worn by the boy practicing training drills in the gym?\", \"A\": \"The boy is wearing a white martial arts uniform while practicing training drills in the gym.\", \"video_name\": \"v_H33jSILKmfI\"}, {\"Q1\": \"What is the attire of the man and woman in the video?\", \"Q2\": \"Can you describe what the man and woman are wearing in the video?\", \"A\": \"The man is wearing a white t-shirt and the woman is wearing a black coat over a pink top.\", \"video_name\": \"v_JiNcVb97CnA\"}, {\"Q1\": \"What ingredients were used to make the dressing for the Russian salad?\", \"Q2\": \"Can you describe the process of making the Russian salad dressing?\", \"A\": \"The dressing for the Russian salad was made by mixing two T-spoons of cream, two T-spoons of mayonnaise, salt, and pepper in a glass bowl.\", \"video_name\": \"v_lIo8HfzzSNs\"}, {\"Q1\": \"What does the man do before mowing his lawn?\", \"Q2\": \"How does the man measure the length of the grass before and after mowing his lawn?\", \"A\": \"The man measures the length of the grass using a ruler before and after mowing his lawn.\", \"video_name\": \"v_dN8LBey17O8\"}, {\"Q1\": \"What is the man practicing in the field?\", \"Q2\": \"Can you describe what the man is doing in the field?\", \"A\": \"The man is practicing a hammer throw in a field surrounded by trees. He is standing on a round platform holding a handle with a hammer attached to it. He is wearing a red shirt and releases the hammer through the open end of the practice net.\", \"video_name\": \"v_I7slpTgl0jc\"}, {\"Q1\": \"What is the color of the dirt bike with the number 2?\", \"Q2\": \"Can you describe the dirt bike with the number 2?\", \"A\": \"The dirt bike with the number 2 is green.\", \"video_name\": \"v_ks018ZYzrx4\"}, {\"Q1\": \"What are the colors of the costumes that the girls and boys wear when they start dancing?\", \"Q2\": \"Can you describe the outfits that the girls and the boys are wearing during the start of the tango dance?\", \"A\": \"The girls are wearing black dresses, and the boys are wearing red dress shirts and black trousers while dancing.\", \"video_name\": \"v_KsFid_YVsn0\"}, {\"Q1\": \"What happens to the ball hit by the batsman towards the boundary?\", \"Q2\": \"What does the fielder do when the batsman hits the ball towards the boundary?\", \"A\": \"The fielder prevents the ball from touching the boundary rope and falls over it.\", \"video_name\": \"v_hFpSoRlpyMo\"}, {\"Q1\": \"Which ingredients did the man add to the pan first?\", \"Q2\": \"What were the steps taken by the man to prepare the pasta dish?\", \"A\": \"The man added garlic to the pan with oil first and then added chillies. He cooked these two for a minute and later added the cooked pasta and chopped parsley. He added ground pepper and mixed everything before finishing the dish.\", \"video_name\": \"v_aOxRwTlkY80\"}, {\"Q1\": \"What is the common theme in the different cricket games in the video?\", \"Q2\": \"Are multiple games of cricket being played in the video, both during the day and at night?\", \"A\": \"Yes, multiple games of cricket are being played in the video, both during the day and at night.\", \"video_name\": \"v_4VdS1eN3dv4\"}, {\"Q1\": \"What is the boy doing in the video?\", \"Q2\": \"Can you describe the gymnastics routine the boy is doing using the parallel bars?\", \"A\": \"The boy is performing gymnastics on the parallel bar in a track field with blue flooring. He swings, performs a handstand, and repeats this while turning in the other direction. Another person is doing gymnastics on the far right of the field.\", \"video_name\": \"v_EhzHU0gkrzA\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the setting in the video?\", \"A\": \"The video shows a man getting his hair cut in a hair salon while recording himself, with a woman using scissors and trimmers to cut his hair. Other customers can be seen in the salon and the video ends with the man driving in a car wearing a hat and sunglasses.\", \"video_name\": \"v_6G8m-vsGTA8\"}, {\"Q1\": \"What color is the karate uniform of the first boy who performs on the stage?\", \"Q2\": \"Can you describe what the first boy is wearing while performing on stage?\", \"A\": \"The first boy is wearing a black karate uniform with a black belt.\", \"video_name\": \"v_kfO5PGlsMJw\"}, {\"Q1\": \"What makeup products did the woman apply in the video?\", \"Q2\": \"Can you describe the process of the makeup application demonstrated in the video?\", \"A\": \"The woman demonstrated the application of concealer, foundation, bronzer, eyeliner, mascara, lipgloss, and eyebrow mascara in the video.\", \"video_name\": \"v_86Unahb4sJM\"}, {\"Q1\": \"What is the man wearing and what is he carrying in the first clip?\", \"Q2\": \"Describe the appearance and activity of the man in the first clip.\", \"A\": \"The man is wearing a red polo shirt and blue trousers and carrying a vacuum on his back while vacuuming the carpet in an office.\", \"video_name\": \"v_jN2CFk0xKp8\"}, {\"Q1\": \"What is the boy wearing in the video?\", \"Q2\": \"Can you describe the outfit of the boy who starts breakdancing in the beginning of the video?\", \"A\": \"The boy who starts breakdancing in the beginning of the video is wearing a black T-shirt and olive shorts.\", \"video_name\": \"v_JG7T6qtO4jg\"}, {\"Q1\": \"What is the apparatus the gymnast performs on?\", \"Q2\": \"Where is the gymnast performing the different balance poses, jumps, and leaps?\", \"A\": \"The gymnast is performing on a balance beam located on an elevated platform at a gymnastics competition.\", \"video_name\": \"v__ja1fre9OTE\"}, {\"Q1\": \"What is the man wearing while playing the bagpipe at the bar?\", \"Q2\": \"Can you describe the attire of the man playing the bagpipe in the bar?\", \"A\": \"The man is wearing a black jacket while playing the bagpipe at the bar.\", \"video_name\": \"v_82EtiBkAsPg\"}, {\"Q1\": \"What is the man wearing while he sings on stage?\", \"Q2\": \"Can you describe the clothes the man is wearing while playing the harmonica on stage?\", \"A\": \"The man is wearing a black jacket and a black fedora while playing the harmonica on stage.\", \"video_name\": \"v_7OcxT66BxX0\"}, {\"Q1\": \"What are the sailors seen doing in the video?\", \"Q2\": \"Can you describe the activities of the sailors?\", \"A\": \"The sailors are performing capsizing training and sailing dinghies.\", \"video_name\": \"v_aDe5hUB3AdY\"}, {\"Q1\": \"What is happening in the beginning of the video?\", \"Q2\": \"Can you describe the opening scene in the video?\", \"A\": \"The video starts with a black French bulldog standing on a checkered red tablecloth with a cup of coffee placed in front of it. The dog goes to the cup and starts to drink the coffee, while the boy attempts to move the dog away from the cup gently.\", \"video_name\": \"v_5qY9yPt-5Go\"}, {\"Q1\": \"What are the people doing on the couch?\", \"Q2\": \"Can you describe the scene on the couch?\", \"A\": \"Three people are sitting on a curved couch behind a coffee table, with three coffee cups on the table. A woman is sitting in the middle with two men on either side of her.\", \"video_name\": \"v_hvrKRg166eQ\"}, {\"Q1\": \"What is the woman wearing and what is behind her?\", \"Q2\": \"Can you describe the setting of the video and the woman\\u2019s attire?\", \"A\": \"The woman is wearing a green sweater and there is a jeans jacket visible hanging behind her. She is standing in a well-lit room with a window behind her. Behind her, to the left, is a rack of different products. \", \"video_name\": \"v_a_JlhLnJM98\"}, {\"Q1\": \"What type of dance are the couple engaged in?\", \"Q2\": \"Can you describe the type of dance the couple is performing?\", \"A\": \"The couple is doing a tango dance.\", \"video_name\": \"v_9Ufy_JGbnys\"}, {\"Q1\": \"What do you see in the back on the right side of the room?\", \"Q2\": \"Is there a visible door and photo frames on the back wall?\", \"A\": \"Yes, there is a door visible on the back right side of the room and a few photo frames hanging on the wall.\", \"video_name\": \"v_9eniCub7u60\"}, {\"Q1\": \"What are the different activities people engage in throughout the video?\", \"Q2\": \"Can you describe the scenes depicted in the video?\", \"A\": \"The video shows people kayaking in rapids and calm waters, with some scenes of them paddling alone and others in pairs, culminating in a group of people standing around drinking beer with the sunset in the background.\", \"video_name\": \"v_k1GP0cJOXbQ\"}, {\"Q1\": \"What game are the players in orange uniforms playing at the beginning of the video?\", \"Q2\": \"What sport is being played when the third player falls on the field?\", \"A\": \"The players in orange uniforms are celebrating a baseball game, and when the third player falls on the field, handball is being played.\", \"video_name\": \"v_7bwruwic1CI\"}, {\"Q1\": \"What is the man in the white suit doing?\", \"Q2\": \"Can you describe what happens when the man in the white suit and the man in the black tux sit together in the bar?\", \"A\": \"The man in the white suit sits on a chair on a raised platform in a bar and picks up a guitar with a man in a black tux sitting next to him holding a guitar. They start playing while people in the bar watch and drink.\", \"video_name\": \"v_bYxVbXzQToI\"}, {\"Q1\": \"What type of outfits are the two women wearing?\", \"Q2\": \"Can you describe the clothing worn by the two women in the video?\", \"A\": \"The two women in the video are wearing red shirts.\", \"video_name\": \"v_hI11n4_r178\"}, {\"Q1\": \"What is the woman in the white jacket doing in the video?\", \"Q2\": \"Can you describe the second jump made by the woman in the video?\", \"A\": \"The woman in the white jacket is pole vaulting over the bar, using her pole to clear it and landing on the foam mat. This is the second jump she makes in the video.\", \"video_name\": \"v_hP-xRyx88aA\"}, {\"Q1\": \"What instrument is the boy holding in the video?\", \"Q2\": \"Can you describe what the boy is doing in the video?\", \"A\": \"The boy is holding a violin and playing it in a dimly lit living room while people sit and watch. He stops playing at the end and people applaud.\", \"video_name\": \"v_HxrtuZSCwvY\"}, {\"Q1\": \"What color T-shirt is the man wearing who is not tired?\", \"Q2\": \"Describe the clothing worn by the two men playing squash in the video?\", \"A\": \"One man is wearing a white T-shirt and the other is wearing a grey T-shirt.\", \"video_name\": \"v_af05Mqm03Y4\"}, {\"Q1\": \"What is the man wearing and what is he doing?\", \"Q2\": \"Can you describe the appearance and activity of the man in the video?\", \"A\": \"The man, who is wearing a grey dress shirt and glasses, is seen playing a harmonica in front of a painting in a well-lit room with a yellow overhead light. He continues to play until the end of the video.\", \"video_name\": \"v_ddzfgHw_qlU\"}, {\"Q1\": \"What are the two people wearing and what are they doing in the gym?\", \"Q2\": \"Can you describe the gym and the activity the people are engaged in?\", \"A\": \"The man is wearing a black outfit and punch mitts while the woman is wearing a black outfit and boxing gloves. They are practicing kickboxing by using various moves including punching, kicking, and using elbows. The gym is well-lit and has posters on the walls while a multicolor mat covers the floor. Through an open door, a hall with chairs and wooden flooring can be seen.\", \"video_name\": \"v_h_r8gioFi4k\"}, {\"Q1\": \"What event is taking place in the stadium?\", \"Q2\": \"Can you describe the scene at the stadium?\", \"A\": \"A man wearing blue shorts and a vest with the number tag of 2736 is shown performing a high jump at a track and field event hosted at an open-roof stadium with numerous spectators.\", \"video_name\": \"v_EnMS9O1U6E0\"}, {\"Q1\": \"What is the man wearing and holding on the tennis court?\", \"Q2\": \"Can you describe the tennis player and his equipment?\", \"A\": \"The man is wearing a black shirt and black track pants and holding a racket and a tennis ball on an outdoor tennis court.\", \"video_name\": \"v_CeXtKbFnPIQ\"}, {\"Q1\": \"What is the name of the model in the video?\", \"Q2\": \"Who is the subject of the makeup tutorial?\", \"A\": \"Irina Shayk is the model for the makeup tutorial and photoshoot in the video.\", \"video_name\": \"v_K_ia4VP3w2c\"}, {\"Q1\": \"What activity are the people engaged in at the winery?\", \"Q2\": \"Can you describe what the people are doing in the wine cellar?\", \"A\": \"The people are at a winery, where they are shown a bottle of wine and then served wine to drink while seated in a dining room.\", \"video_name\": \"v_IDIALY6Ayk8\"}, {\"Q1\": \"What is the woman wearing while getting her tongue pierced?\", \"Q2\": \"Can you describe the attire of the woman getting her tongue pierced?\", \"A\": \"The woman getting her tongue pierced is wearing a grey hoodie.\", \"video_name\": \"v_ij9czNGMR5I\"}, {\"Q1\": \"What sport is being played?\", \"Q2\": \"Can you describe the scene in the school gymnasium?\", \"A\": \"A women volleyball match is being played in a light wood-floored gymnasium with white walls and bleachers at the bottom. The players on the left wear blue uniforms and a player makes a successful serve while a referee watches over the net. The video ends as the team on the left wins the exchange.\", \"video_name\": \"v_jEOtcfk220s\"}, {\"Q1\": \"What is the color of the outfits worn by the breakdancers in the video?\", \"Q2\": \"Can you describe what the breakdancers are wearing in the video?\", \"A\": \"The breakdancers in the video are wearing black outfits.\", \"video_name\": \"v_j6OcN4OQZVM\"}, {\"Q1\": \"What is the color of the shirt worn by the man in the living room?\", \"Q2\": \"Can you describe the outfit of the man who is vacuuming in the living room?\", \"A\": \"The man is wearing a purple shirt while vacuuming in the living room.\", \"video_name\": \"v_bz4QwqHiVlo\"}, {\"Q1\": \"Where does the woman wearing a black outfit perform the hammer throws?\", \"Q2\": \"In what setting is the woman wearing a black outfit seen performing the hammer throw?\", \"A\": \"The woman wearing a black outfit is performing hammer throws on a field in the daytime.\", \"video_name\": \"v_hPYGgv_75SY\"}, {\"Q1\": \"What is the girl in the video wearing and what is visible behind her?\", \"Q2\": \"Can you describe the appearance of the room and the girl in it?\", \"A\": \"The girl in the video is wearing a hoodie and jeans and sitting on a chair with a closed window behind her. There is various music gear visible around her on the ground and the room is lit by diffuse light from the window.\", \"video_name\": \"v_jWH-2aa1gJY\"}, {\"Q1\": \"What is Chris Hadfield doing while holding a tortilla in his hand?\", \"Q2\": \"Can you describe the scene of Chris Hadfield holding a tortilla?\", \"A\": \"Chris Hadfield is holding a tortilla and squeezing honey on it while floating in the International Space Station.\", \"video_name\": \"v_BAtlo_AGFWs\"}, {\"Q1\": \"What is the man wearing while chopping wood in the woods?\", \"Q2\": \"Can you describe the man and his clothing while he chops wood near a cabin in the woods?\", \"A\": \"The man is wearing a blue jacket and blue jeans while chopping wood near a cabin in the woods.\", \"video_name\": \"v_9lAT3oA9Ixs\"}, {\"Q1\": \"What is Valarie doing in the crowded hall?\", \"Q2\": \"Can you explain what Valarie is demonstrating with the iron?\", \"A\": \"Valarie is using iron-on transfer to imprint a design on a white t-shirt with a Twitter username and blue bird picture, while standing in front of an ironing board holding an iron in the crowded hall.\", \"video_name\": \"v_0rr7iGHamw0\"}, {\"Q1\": \"What is happening in the aerobics studio?\", \"Q2\": \"Can you describe the people and their workout in the aerobics studio?\", \"A\": \"People are working out in a well-lit aerobics studio using aerobic steps with an instructor giving instructions. A man falls down while trying to follow the instructor and receives help from the instructor and some other participants.\", \"video_name\": \"v_6utacRir3uM\"}, {\"Q1\": \"What kinds of kayaks are shown in the video?\", \"Q2\": \"Can you describe the different types of kayaks featured in the video?\", \"A\": \"The video shows various types of kayaks being rowed in different water bodies including rapids, rivers, and the sea. Some have open cockpits while others are closed.\", \"video_name\": \"v_5cijPqKVc84\"}, {\"Q1\": \"What type of outdoor competition is taking place in the video?\", \"Q2\": \"Can you describe the wood-chopping contest with multiple participants and their respective wooden logs?\", \"A\": \"The video shows a wood-chopping contest with participants standing over their respective logs and two sets of competitions - wooden blocks laid horizontally on chopping stands and contestants assembling wooden blocks on horizontal chopping stands. They are wearing black vests and light-colored trousers, and the contest takes place outside in an arena during the daytime.\", \"video_name\": \"v_l5ZUUChppHU\"}, {\"Q1\": \"What event is the woman participating in?\", \"Q2\": \"Can you describe the activity the woman is performing in the video?\", \"A\": \"The woman is doing a long jump in an indoor track and field stadium.\", \"video_name\": \"v_52Xw6TZcysc\"}, {\"Q1\": \"What sport is being played in the video?\", \"Q2\": \"Can you describe the equipment and clothing the boy is wearing and using in the video?\", \"A\": \"The video features the boy playing lacrosse, wearing a red and white jersey, and using a lacrosse stick.\", \"video_name\": \"v_l_0HvMt2tGg\"}, {\"Q1\": \"What is the video mainly about?\", \"Q2\": \"Can you describe the different scenes shown in the video?\", \"A\": \"The video is about Tai chi and its practice by people of different ages and in different settings, including a newsroom, sandy ground outdoors, a hospital, and individuals practicing on their own.\", \"video_name\": \"v_1jgsRbGzCls\"}, {\"Q1\": \"What game is being played in the field?\", \"Q2\": \"Can you describe the sports activity taking place in the field?\", \"A\": \"The game being played in the field is cricket.\", \"video_name\": \"v_kl-2y3jtPNE\"}, {\"Q1\": \"What is the color of the shirt worn by the man picking up the beer can?\", \"Q2\": \"Can you describe the clothing of the man who makes a hole in the beer can?\", \"A\": \"The man wearing the Adidas blue t-shirt makes a hole in the beer can using a key and drinks from it.\", \"video_name\": \"v_j_r7zJWxI8w\"}, {\"Q1\": \"What is the woman doing with the gift wrap?\", \"Q2\": \"Can you describe the process of gift wrapping performed by the woman in the video?\", \"A\": \"The woman is wrapping a brown cardboard box with gift wrap by cutting, folding and taping it, and then placing it on the counter.\", \"video_name\": \"v_l_pp-1qu9Ig\"}, {\"Q1\": \"What sport are the people playing at the beginning of the video?\", \"Q2\": \"Can you describe the opening scene of the video?\", \"A\": \"The people in the video are playing a game of cricket at the beginning.\", \"video_name\": \"v_8r4bF9RF0Kc\"}, {\"Q1\": \"What is the man wearing and where is he located?\", \"Q2\": \"Can you describe the surroundings and the clothing of the man in the video?\", \"A\": \"The man is wearing a brown shirt and a cap, standing in a well-lit bike shop with shelves filled with tools and bike parts. He is fixing a broken chain by attaching a master link on one end and pushing on the pedal to check the fix.\", \"video_name\": \"v_iUiXNXRs4rU\"}, {\"Q1\": \"What is the little boy wearing while he washes his hands?\", \"Q2\": \"Can you describe the attire of the child washing his hands?\", \"A\": \"The little boy is wearing a black polo shirt while washing his hands in the video.\", \"video_name\": \"v_Lf_7RurLgp0\"}, {\"Q1\": \"What are the colors of the T-shirts of the two kids playing squash?\", \"Q2\": \"What colors are the T-shirts of the boys playing squash and who wins the starting-over games?\", \"A\": \"One boy is wearing a blue T-shirt and the other a red T-shirt. The game gets started over when one of them misses their shot. The video ends with the two boys playing and a boy wearing a white t-shirt standing outside the court watching. It doesn\\u2019t mention which boy wins the starting-over games.\", \"video_name\": \"v_34ZxyyFjbHQ\"}, {\"Q1\": \"What is the woman wearing who is learning to use an exercise bike?\", \"Q2\": \"Can you describe the appearance of the woman learning to use an exercise bike?\", \"A\": \"The woman who is learning to use an exercise bike is wearing a black top.\", \"video_name\": \"v_Db9VWkgMpbE\"}, {\"Q1\": \"What is the man doing on the Marble Bridge during the daytime?\", \"Q2\": \"Can you describe the scene and activity of the man on Marble Bridge during daytime?\", \"A\": \"The man is standing on an elevated section of Marble Bridge, playing a flute. He is wearing a black polo shirt and a rice hat. The Palace Museum can be seen at his back. People are walking around Meridian Gate Square, some of whom are walking under an umbrella. He continues playing the flute until the end of the video.\", \"video_name\": \"v_Il9Ara3IqeY\"}, {\"Q1\": \"Who are the two women in the video and what are they doing?\", \"Q2\": \"Could you describe the scene in the video with the two women?\", \"A\": \"The video features two women, one wearing a teal top and the other wearing a white one. The woman in the teal top is a beautician and she is demonstrating how to make a cleansing with baking soda while the woman in the white top, the model, follows the instructions by mixing yogurt and baking soda to apply to her face.\", \"video_name\": \"v_HkbOI7gEtKk\"}, {\"Q1\": \"What do the two men make in the kitchen?\", \"Q2\": \"Can you describe the ingredients used by the two men to make sandwiches?\", \"A\": \"The two men make sandwiches using various ingredients like peanut butter, jelly, lettuce, and ham.\", \"video_name\": \"v_cEa87QoI3Do\"}, {\"Q1\": \"What color are the t-shirts worn by the players on one side of the basketball court?\", \"Q2\": \"What are the players wearing on one side of the basketball court?\", \"A\": \"The players on one side of the basketball court are wearing teal t-shirts.\", \"video_name\": \"v_ARpoJIBF2NM\"}, {\"Q1\": \"What happens to the red ball tossed by a boy?\", \"Q2\": \"Can you describe the play with the red ball in the video?\", \"A\": \"The red ball is thrown by a boy, retrieved by another boy wearing a green shirt who then kicks it. The ball flies through the air and lands near the opposite chain-link fence. A boy wearing a red shirt then runs toward the ball.\", \"video_name\": \"v_H8oehT8eeGc\"}, {\"Q1\": \"What is the man wearing while playing the black wooden Irish flute in the living room?\", \"Q2\": \"Can you describe the man and his surroundings when he plays the black wooden Irish flute?\", \"A\": \"The man is wearing a brown sweater and glasses while playing the black wooden Irish flute in a living room with a television stand behind him and various framed items hung on the wall. Sunlight is coming in from the left side at the back.\", \"video_name\": \"v_jQzBXawu29s\"}, {\"Q1\": \"What is the boy doing in the beginning of the video?\", \"Q2\": \"Can you describe the initial action of the boy in the video?\", \"A\": \"The boy is chopping wood next to a pile of chopped logs while wearing blue jeans and a sweater.\", \"video_name\": \"v_51faGoLPJgM\"}, {\"Q1\": \"What does the man do after removing the insole and laces from the shoe?\", \"Q2\": \"What is the first step the man takes before brushing the shoe?\", \"A\": \"The man first removes the insole and laces from the shoe before putting some cleaning solution on the brush and dipping it in the water bowl to start brushing the shoe.\", \"video_name\": \"v_AB480dHyDeM\"}, {\"Q1\": \"What is the attire of the man and woman dancing in the alley?\", \"Q2\": \"Can you describe what the man and woman are wearing while dancing in the alley?\", \"A\": \"The man is dressed in a blue T-shirt and a blue cap, while the woman is wearing a brown top and blue jeans.\", \"video_name\": \"v_lPw_BRbPw5s\"}, {\"Q1\": \"What are the ingredients used by the chef in making sandwiches?\", \"Q2\": \"Can you describe the process of making a turkey sandwich by the chef?\", \"A\": \"The chef uses bread, butter, sliced turkey, cranberry sauce, and green leaves to make sandwiches. For the turkey sandwich, he spreads butter on the bread, places sliced turkey, adds cranberry sauce and green leaves and covers it with the other slice.\", \"video_name\": \"v_Kofjs0rkwxc\"}, {\"Q1\": \"What are the little kids doing during the ballet practice?\", \"Q2\": \"Can you describe the participation of the little kids in the ballet practice?\", \"A\": \"The little kids are sitting a few feet away from the trio of dancers, mimicking the hand moves and following the movements of the instructor and the other two dancers.\", \"video_name\": \"v_jiM0HUFn0e8\"}, {\"Q1\": \"What color outfit is the gymnast wearing when she starts performing on the balance beam?\", \"Q2\": \"What outfit is the gymnast wearing when she mounts the balance beam?\", \"A\": \"The gymnast is wearing a pink outfit when she mounts the balance beam.\", \"video_name\": \"v_4oi6dXfpJS4\"}, {\"Q1\": \"What happens in the final scene of the video?\", \"Q2\": \"Can you describe the last martial arts demonstration shown in the video?\", \"A\": \"In the final scene of the video, a man wearing a black gi breaks tiles placed on two cinder blocks.\", \"video_name\": \"v_4KMG6lEDSIM\"}, {\"Q1\": \"What is the common theme among all the activities shown in the video?\", \"Q2\": \"What type of activities are people engaged in throughout the video?\", \"A\": \"All people in the video are engaged in different forms of rock climbing activities.\", \"video_name\": \"v_889_kqLFM0E\"}, {\"Q1\": \"What exercises did the woman do in the video?\", \"Q2\": \"Can you describe what the woman did on the outdoor fitness equipment in the park?\", \"A\": \"The woman did exercises like swaying, moving back using her hands, doing the split, and swinging using the bars.\", \"video_name\": \"v_1YU4MSK80cQ\"}, {\"Q1\": \"What is happening in the beginning of the video?\", \"Q2\": \"Where does the video begin and what are the players doing?\", \"A\": \"The video begins on a basketball court where two teams are playing dodgeball.\", \"video_name\": \"v_IDuoF51IMJ8\"}, {\"Q1\": \"What activity are the young boys in the beginning of the video preparing for?\", \"Q2\": \"Can you describe the scene with the group of boys with paintball gear?\", \"A\": \"The young boys are getting ready for a paintball game, and they are seen in a room putting on their gear and taking defensive positions in an arena with various inflatable bunkers used as obstacles.\", \"video_name\": \"v_jkrlHzTRTvo\"}, {\"Q1\": \"What is written on the saxophone case?\", \"Q2\": \"Can you describe the decoration on the saxophone case?\", \"A\": \"'GUNS-N-ROSES' with a rose drawn underneath is written on the decorated saxophone case.\", \"video_name\": \"v_dhsSq0K1xEg\"}, {\"Q1\": \"What is the toddler wearing in the beginning of the video?\", \"Q2\": \"Can you describe the toddler's pajamas in the opening scene?\", \"A\": \"In the beginning of the video, the toddler is seen wearing blue and red pajamas.\", \"video_name\": \"v_0x6ZV9Y8g_c\"}, {\"Q1\": \"What are the people in the beginning of the video doing?\", \"Q2\": \"Can you describe what the people in the beginning of the video are wearing and what they are doing?\", \"A\": \"The people in the beginning of the video are wearing winter clothes and shoveling snow around a car parked in front of a garage in the daytime.\", \"video_name\": \"v_-IMXSEIabMM\"}, {\"Q1\": \"What is the man wearing while lifting the barbell in the gym?\", \"Q2\": \"Can you describe the appearance of the man while he is lifting the barbell in the well-lit gym?\", \"A\": \"The man is wearing a red vest while lifting the barbell in the gym.\", \"video_name\": \"v_dVpHF8tE2qo\"}, {\"Q1\": \"What type of dance are the women in the video performing?\", \"Q2\": \"Can you describe the movements of the women in the video?\", \"A\": \"The women in the video are belly dancing. They move their hands, from side to side, forward and back while turning sideways.\", \"video_name\": \"v_Kic33dtLja8\"}, {\"Q1\": \"What is the number of the player being pointed to by the red arrow?\", \"Q2\": \"Which player in white jersey scored a goal and celebrated with his teammates at the end of the video?\", \"A\": \"The player in the white number 15 jersey is being pointed to by the red arrow and he scored a goal and celebrated with his teammates at the end of the video.\", \"video_name\": \"v_4mRkWNLE66E\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the scene in the video?\", \"A\": \"A man is getting a tattoo on his left arm from a woman in a dimly lit room. The woman is wearing a purple check shirt with black gloves and using a tattoo gun. The man is wearing a black beanie cap, a chain, and blue jeans. There are plants outside the window. The video ends with a close-up shot of the tattoo.\", \"video_name\": \"v_FOZdNPQ7d5Q\"}, {\"Q1\": \"What happens when the man tries to drink the flaming shot?\", \"Q2\": \"Can you describe the sequence of events when the man drinks the flaming shot?\", \"A\": \"The flames from the shot glass stick to his mouth and he throws the glass on the table, which causes the table and a man standing near it to catch fire.\", \"video_name\": \"v_BSwChZlOb0k\"}, {\"Q1\": \"What does the man wearing a red t-shirt do in the gym?\", \"Q2\": \"Can you describe the weightlifting activity performed by the man in the gym?\", \"A\": \"The man lifts a barbell and holds it over his head before dropping it to the floor in a gym with black floors and fixed equipment.\", \"video_name\": \"v_cqxiLraI8uY\"}, {\"Q1\": \"What is the boy doing in the video?\", \"Q2\": \"Can you describe the activity in which the boy is engaged, in the gymnasium?\", \"A\": \"The boy in black tights is practicing gymnastics by balancing and swinging on horizontal bars in the well-lit gymnasium.\", \"video_name\": \"v_d6PdD2O3Yrs\"}, {\"Q1\": \"What is the man on the right holding in the video?\", \"Q2\": \"Can you describe the equipment used by the man standing on the right in the video?\", \"A\": \"The man on the right is holding a racquet in the video.\", \"video_name\": \"v_3V9tzjyr51I\"}, {\"Q1\": \"Where is the man practicing Tai Chi?\", \"Q2\": \"Can you describe the indoor studio where the man is practicing Tai Chi?\", \"A\": \"The man is practicing Tai Chi movements in an indoor studio with well-lit light wood flooring, a mirror covering the wall at his back, and a window covered in purple drapes visible on the right side wall.\", \"video_name\": \"v_di5f5hM05Vw\"}, {\"Q1\": \"What are the men wearing in the video?\", \"Q2\": \"Can you describe the attire of the men in the video?\", \"A\": \"The men are wearing black briefs with the one on the left wearing a grey sweatshirt and the one on the right, a white vest.\", \"video_name\": \"v_JN1wuOpCZvk\"}, {\"Q1\": \"What is the color of the logo on the wall in the dirt bike yard at the beginning of the video?\", \"Q2\": \"Can you describe the wall with the logo in the dirt bike yard at the beginning of the video?\", \"A\": \"There is a wall with a red logo on it in the dirt bike yard at the beginning of the video.\", \"video_name\": \"v_JH9qiuPCkY4\"}, {\"Q1\": \"What is being sprayed in the video?\", \"Q2\": \"Can you describe the bottle being used in the video?\", \"A\": \"The 'Favor' spray bottle is being used in the video.\", \"video_name\": \"v_aQ-F9wr0HQ4\"}, {\"Q1\": \"What drink is Pinky making in the video?\", \"Q2\": \"Can you name the ingredients Pinky uses to make her cocktail?\", \"A\": \"Pinky is making a cocktail called 'GIN E HENDRIX' and she uses a variety of ingredients including cucumber, lime, lemon, basil, and different bottles of alcohol visible behind her on glass shelves.\", \"video_name\": \"v_0UTrTg3DF5g\"}, {\"Q1\": \"What is the color of the labrador retriever in the video?\", \"Q2\": \"Can you describe the appearance of the labrador retriever in the video?\", \"A\": \"The labrador retriever in the video is brown.\", \"video_name\": \"v_Ie09KEAPP2I\"}, {\"Q1\": \"What colour is the bungee jump platform and where is the yellow inflatable boat located?\", \"Q2\": \"Can you describe the scene where the men are standing at the edge of the platform?\", \"A\": \"The bungee jump platform is yellow and the inflatable boat is located to the left near the shore. Three men, with two attendants in green shirts and one jumper wearing a t-shirt and a strap, are standing on the platform during the day. One of the attendants is belaying the bungee cord. After jumping off the platform and being pulled back up, the man is slowly reeled down and drawn to the shore by two attendants.\", \"video_name\": \"v_Jdu5AqaWfz8\"}, {\"Q1\": \"What color are the kayaks tied to the pier and what is the color of the shirt worn by the person kayaking down the river?\", \"Q2\": \"Can you describe the kayaks at the pier and the clothing of the person kayaking down the river?\", \"A\": \"The kayaks at the pier are yellow and the person kayaking down the river is wearing a yellow shirt. \", \"video_name\": \"v_Erje-PwY9hE\"}, {\"Q1\": \"What color uniform is one of the teams wearing in the video?\", \"Q2\": \"Is one of the teams wearing a blue uniform or a white uniform during the hockey game?\", \"A\": \"One of the teams is wearing a blue uniform and the other is wearing white.\", \"video_name\": \"v_HgYuRKZ_V90\"}, {\"Q1\": \"What is Brandt repairing in the video?\", \"Q2\": \"Can you describe the bike repair Brandt is doing?\", \"A\": \"Brandt is repairing a punctured tire on a bicycle by unscrewing the derailleur guard, removing the tire, inserting a new tube, inflating it using a pump, fixing it back to the bicycle with a wrench and reapplying the rear brake.\", \"video_name\": \"v__jV5sAOOHLk\"}, {\"Q1\": \"What color is the rabbit and what is he doing?\", \"Q2\": \"Describe the setting of the video and what action takes place with the rabbit?\", \"A\": \"The rabbit has a reddish coat with dark brown highlights and is grooming himself in a wooden box with a mesh floor. A person reaches in and pets the rabbit.\", \"video_name\": \"v_JDwd6Ec454A\"}, {\"Q1\": \"What is the little girl doing in the video?\", \"Q2\": \"Can you describe the actions of the little girl in the video?\", \"A\": \"The little girl is playing hopscotch on a court drawn on the ground, picking up and throwing a pebble a few times before successfully landing it in a square and hopping to that square.\", \"video_name\": \"v_34SBoGK8mT8\"}, {\"Q1\": \"What is the girl wearing who is making the video?\", \"Q2\": \"Can you describe the room in which the girl is making the video?\", \"A\": \"The girl making the video is wearing a black top and the room has printed walls with a chandelier, dolls, a green sofa, and a big green plant. There is also a white door present.\", \"video_name\": \"v_fNhw7xE3NM8\"}, {\"Q1\": \"What is the color of the carpet on the floor of the dojo?\", \"Q2\": \"Can you describe the flooring in the dojo where the men are sparring?\", \"A\": \"The floor of the dojo is made of blue and red carpet.\", \"video_name\": \"v_83f0iwb8VW8\"}, {\"Q1\": \"What does the girl do after taking a sip of mouthwash?\", \"Q2\": \"What does the girl do right after she gargles the mouthwash?\", \"A\": \"The girl picks up her toothbrush, squeezes toothpaste on it, and starts brushing her teeth.\", \"video_name\": \"v_Lb7Q8qv3MHU\"}, {\"Q1\": \"Where does the video begin?\", \"Q2\": \"Can you describe the setting of the beginning scene?\", \"A\": \"The video begins in a dimly lit bathroom with a bathtub visible in the background. A woman stands in front of a mirror with a drinking glass in one hand and a cigarette in the other.\", \"video_name\": \"v_7dXqXFoju2M\"}, {\"Q1\": \"What is the name written on the banner behind the men playing saxophones?\", \"Q2\": \"Can you describe the banner behind the men playing saxophones?\", \"A\": \"The banner behind the men playing saxophones reads 'TWIN JAZZ'.\", \"video_name\": \"v_A20uQSBtYMs\"}, {\"Q1\": \"Who is present inside the enclosure?\", \"Q2\": \"Can you describe the man present inside the compound?\", \"A\": \"A man wearing a cowboy hat and an orange shirt is standing in the middle of the enclosure and looking at the rider.\", \"video_name\": \"v_9InwA-ajB2M\"}, {\"Q1\": \"What type of dance moves are performed by the person wearing a yellow shirt in the beginning of the video?\", \"Q2\": \"What is the first dance move executed by the person wearing the yellow shirt in the video?\", \"A\": \"The person in the yellow shirt performs the backspin as the first dance move.\", \"video_name\": \"v_2nDbYhgdw2A\"}, {\"Q1\": \"What type of dive did the person perform off the diving board?\", \"Q2\": \"Can you describe how the person entered the water from the diving board?\", \"A\": \"The person performed a reverse somersault dive off the diving board.\", \"video_name\": \"v_eRco7yXc-40\"}, {\"Q1\": \"What drill are the players performing in the video?\", \"Q2\": \"Can you describe the drill that the players are performing in the basketball arena?\", \"A\": \"The players are running across the court in groups of three, while the one in the middle dribbles the ball and shoots it in the basket, and then they repeat the drill with a different player among the three, while the coach watches from outside the court.\", \"video_name\": \"v_IGZvj1J9tNc\"}, {\"Q1\": \"What is the woman doing in the bathroom?\", \"Q2\": \"Can you describe the scene in the bathroom with the woman?\", \"A\": \"The woman is washing a piece of cloth in front of the mirror and sink in a bathroom while wearing a blue top. Toiletries and a bottle of dish soap are on a shelf in front of the mirror and walls are lined with white tiles. As she continues to wash the cloth, she rinses it in the sink, which is filled with dirty water.\", \"video_name\": \"v_49PbyLbrxlE\"}, {\"Q1\": \"What is happening in the video with the girls and the foam platform?\", \"Q2\": \"Can you describe the activity of the girl on the foam platform and the one sitting by the side in the indoor well-lit setup with a poster of cartoon sloth on the wall?\", \"A\": \"The video shows a girl performing multiple backflips on a foam platform indoors while another girl watches. There is a poster of a cartoon sloth on the far wall. The video ends with the girl doing backflips and landing.\", \"video_name\": \"v_4QRRxub6L5Q\"}, {\"Q1\": \"What are the girls doing with the food items in the kitchen?\", \"Q2\": \"Can you describe the activity of the girls in the kitchen?\", \"A\": \"The girls are making a salad in the kitchen with various ingredients like lettuce, tomatoes, and peanuts.\", \"video_name\": \"v_0DFz3sgfda0\"}, {\"Q1\": \"What does the person do to start the fire?\", \"Q2\": \"Can you describe how the person lights the fire?\", \"A\": \"The person lights a piece of chips and then uses it as kindling to light the arranged firewood. They also use a Bic lighter and light a few more pieces of kindling to help the fire light faster.\", \"video_name\": \"v_cCDffwsJvsY\"}, {\"Q1\": \"What activities were the teenagers engaged in?\", \"Q2\": \"Can you describe the scene with the teenagers in the playground?\", \"A\": \"The teenagers were hopping through the hopscotch court and attempting a pull-up from the basketball hoop before walking away from it. They were in a playground with multiple basketball hoops visible in the distance.\", \"video_name\": \"v_11p9goB2rm8\"}, {\"Q1\": \"What is the woman in the video cleaning the coffee table with?\", \"Q2\": \"What is the woman using to clean the coffee table in the video?\", \"A\": \"The woman is using wood polish and a towel to clean the coffee table.\", \"video_name\": \"v_4Gx_8vuxzAk\"}, {\"Q1\": \"What are the men wearing in the kitchen?\", \"Q2\": \"Can you describe the clothing of the men in the well-lit kitchen?\", \"A\": \"The man on the left is wearing a black suit, and the man on the right is Will Smith, the actor wearing a multi-colored shirt.\", \"video_name\": \"v_HMs703DhjQU\"}, {\"Q1\": \"Which team wins the exchange and celebrates?\", \"Q2\": \"What is the outcome of the rally?\", \"A\": \"The team wearing the orange uniform wins the exchange and celebrates.\", \"video_name\": \"v_Jy93pLzV2uw\"}, {\"Q1\": \"What is the bartender doing in the video?\", \"Q2\": \"Can you describe the process of making a cocktail as shown in the video?\", \"A\": \"The bartender is making a cocktail by picking up various bottles of alcohol, adding flavoring agent, ice cubes, and stirring the mixture in a mixing glass. He then empties the cocktail glass of ice and pours the drink into it. The video shows a cutaway of the ingredients for the drink. At the end of the video, the bartender is seen wiping the bar.\", \"video_name\": \"v_6wPVO7I8iIY\"}, {\"Q1\": \"What color clothes is the woman wearing while exercising on the parallel bars in the park?\", \"Q2\": \"Can you describe the attire of the woman while she is exercising on the parallel bars in the park?\", \"A\": \"The woman is wearing a neon green T-shirt, black track pants with white stripes, and white sports shoes.\", \"video_name\": \"v_Fb4X1PWfOvY\"}, {\"Q1\": \"What is the old man wearing while repairing the bicycle?\", \"Q2\": \"Can you describe the old man and his attire as he fixes the bicycle in the well-lit shop?\", \"A\": \"The old man is wearing a black vest over a white shirt while repairing the bicycle in a well-lit shop.\", \"video_name\": \"v_IfugNwywj-k\"}, {\"Q1\": \"What is the boy wearing while chopping wood?\", \"Q2\": \"Can you describe the boy chopping wood in terms of his clothing?\", \"A\": \"The boy is wearing an off-white T-shirt and shorts while chopping wood.\", \"video_name\": \"v_dZsk5Dp_5FE\"}, {\"Q1\": \"What is the color of the woman's outfit in the video?\", \"Q2\": \"Can you describe what the woman is wearing in the basketball court?\", \"A\": \"The woman is wearing black trousers and a black top while holding a bow with a quiver full of arrows.\", \"video_name\": \"v_AL1W3HkjJ2Y\"}, {\"Q1\": \"What is the man wearing who is playing the harmonica, and what is the man next to him doing?\", \"Q2\": \"Can you describe the scene with the two men in the parking lot?\", \"A\": \"The harmonica player is wearing a checkered shirt and has a backpack on. The man next to him in a hoodie is standing with his hands in his pockets, bobbing his head up and down before taking out his phone to record the harmonica player.\", \"video_name\": \"v_j_1kNiGcepU\"}, {\"Q1\": \"What color is the woman's coat and what color is her top?\", \"Q2\": \"Can you describe the woman's outfit in the video?\", \"A\": \"The woman is wearing a white coat over a teal top.\", \"video_name\": \"v_le7JdKQB65I\"}, {\"Q1\": \"What is the man in the video holding in his hand?\", \"Q2\": \"Can you describe what the man is holding in his right hand in the video?\", \"A\": \"The man is holding a disk in his right hand.\", \"video_name\": \"v_-6dz6tBH77I\"}, {\"Q1\": \"What color is the shirt worn by the player who missed the shot?\", \"Q2\": \"Describe the attire of the player who missed the shot.\", \"A\": \"The player who missed the shot is wearing a yellow T-shirt.\", \"video_name\": \"v_BnO8AfQS8yE\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the scene in the video?\", \"A\": \"A man is pouring water from a bucket on a dog standing under an open tap while shaking the water dry in slow motion.\", \"video_name\": \"v_CvbBSwz-9XI\"}, {\"Q1\": \"What is happening in the beginning of the video?\", \"Q2\": \"Can you describe the initial scene of the video?\", \"A\": \"A man is riding a dirt bike in a dirt field with houses visible beyond the field.\", \"video_name\": \"v_-cAcA8dO7kA\"}, {\"Q1\": \"What is the woman doing in the video?\", \"Q2\": \"Is the woman washing dishes in the video?\", \"A\": \"The woman is washing dishes in the well-lit kitchen with a window behind her, while shelves of dishes are visible on one side and a house is visible through the window.\", \"video_name\": \"v_9snScUyE8_4\"}, {\"Q1\": \"What is happening in the scene with the monster truck?\", \"Q2\": \"Can you describe what the monster truck is doing in the video?\", \"A\": \"The monster truck is driving through a mud track and splashing mud as it turns.\", \"video_name\": \"v_96ADEnJy4GU\"}, {\"Q1\": \"What item does the man use to start the fire?\", \"Q2\": \"How does the man light the stack of firewood on fire?\", \"A\": \"The man lights the stack of firewood on fire by striking a fire starter with his knife.\", \"video_name\": \"v_-D1gdv_gQyw\"}, {\"Q1\": \"What musical instrument is the girl holding?\", \"Q2\": \"Can you describe what the girl is holding while sitting in the room?\", \"A\": \"The girl is holding a harmonica.\", \"video_name\": \"v__a527xEzhkw\"}, {\"Q1\": \"What is happening in the video?\", \"Q2\": \"Can you describe the game being played in the video?\", \"A\": \"The video shows a game of water polo being played in a swimming pool with two teams trying to score goals.\", \"video_name\": \"v_cH3H-arDsH4\"}, {\"Q1\": \"What are cameramen doing in the video?\", \"Q2\": \"Can you describe the presence of cameramen with cameras on tripods in the video?\", \"A\": \"Cameramen with cameras on tripods are standing in front of the spectators capturing polo match going on in a polo field.\", \"video_name\": \"v_hvhny4-sI-w\"}, {\"Q1\": \"What is the woman wearing and what is she holding?\", \"Q2\": \"Can you describe the woman in the video and what she is doing?\", \"A\": \"The woman is wearing a red vest and holding a hammer attached to a string. She is standing in a net in a field with a red mat on the ground. She swings the hammer with the string and releases it through the open end of the netting.\", \"video_name\": \"v_d09u-0k3LdE\"}, {\"Q1\": \"What is happening in the background while the couple is dancing?\", \"Q2\": \"Can you describe the surroundings of the couple dancing in the video?\", \"A\": \"Children are running around in the background near the woods, and a man is tending to a barbeque a few feet behind the dancing couple. There is a red truck visible all the way back towards the fence.\", \"video_name\": \"v_B0GCHDqEsRU\"}, {\"Q1\": \"What is the color of the jersey that Samuel Shearin is wearing?\", \"Q2\": \"Can you describe the jersey that Samuel Shearin is wearing, including the number?\", \"A\": \"Samuel Shearin is wearing a blue-green jersey with the number 24.\", \"video_name\": \"v_aH39BSM0-Ag\"}, {\"Q1\": \"What type of class is the man conducting?\", \"Q2\": \"Can you describe the activity the man is leading?\", \"A\": \"The man is leading a Zumba class where people are following his lead and dancing during the daytime and a crowd is gathered to watch.\", \"video_name\": \"v_iqhdqhVttEM\"}, {\"Q1\": \"What are the ingredients shown in the video for the sandwich?\", \"Q2\": \"Can you describe the components used to make the sandwich shown in the video?\", \"A\": \"The ingredients for the sandwich in the video are a French roll, mayonnaise, pizza sauce, tomato slices, shredded lettuce, cheese, and pepperoni.\", \"video_name\": \"v_cECycCDw1Nc\"}, {\"Q1\": \"What is the instructor wearing?\", \"Q2\": \"Can you describe the outfit of the instructor?\", \"A\": \"The instructor is wearing a white shirt and green shorts.\", \"video_name\": \"v_egowZOcbEkI\"}, {\"Q1\": \"What is happening in the outdoor stadium in the video?\", \"Q2\": \"Can you describe the spear-throw competition being held in the outdoor stadium?\", \"A\": \"The video shows a spear-throw competition where athletes holding spears run and throw them in an outdoor stadium filled with spectators. The landing area has numbered lanes, and a man in a suit is seen near the number 70 marker. The scoreboard with names and throw distances is shown towards the end.\", \"video_name\": \"v_HURRgbZGz8Q\"}, {\"Q1\": \"What is the trainer wearing during the kickboxing practice?\", \"Q2\": \"Can you describe the attire of the trainer during the kickboxing practice?\", \"A\": \"The trainer is wearing focus mitts on both hands during the kickboxing practice.\", \"video_name\": \"v_afMQA352X_A\"}, {\"Q1\": \"What are the news anchors wearing?\", \"Q2\": \"Can you describe the attire of the news anchors?\", \"A\": \"The woman anchor is wearing a black top and the man anchor is wearing a black suit.\", \"video_name\": \"v_l8gg9TYh_B0\"}, {\"Q1\": \"What is the weight of the heaviest barbell the man lifts?\", \"Q2\": \"Can you tell the weight of the barbell the man lifts at the end?\", \"A\": \"The man lifts a barbell of 130 kilograms at the end.\", \"video_name\": \"v_Ds2O0-8Labs\"}, {\"Q1\": \"What branded item are the people holding in the beginning of the video?\", \"Q2\": \"What is the woman holding in front of her face with a picture of a man in it?\", \"A\": \"The people at the beginning are holding an Old Spice-branded ping pong paddle, and the woman is holding a paddle in front of her face with a picture of the man she is standing next to on it.\", \"video_name\": \"v_k1QAWLupB-I\"}, {\"Q1\": \"What are some of the structures found in the paintball arena?\", \"Q2\": \"Can you describe some of the objects used for cover in the paintball arena?\", \"A\": \"Cable drums, old tires, weeds, and cinderblocks are used as cover in the paintball arena.\", \"video_name\": \"v_9UvVeUYQLgA\"}, {\"Q1\": \"What time of the day is the man climbing the rock?\", \"Q2\": \"Is the man climbing the rock during the day or night?\", \"A\": \"The man is climbing the rock during daytime.\", \"video_name\": \"v_dEpUIpmBvow\"}, {\"Q1\": \"What is Bethany doing when the video starts?\", \"Q2\": \"Can you describe Bethany's attire and actions?\", \"A\": \"Bethany is shaving her legs while wearing a red T-shirt, black & purple short track pants, white sports shoes, rings on both hands, and a bracelet on her left hand. She is also speaking to the cameraman.\", \"video_name\": \"v_EZyLBq2jJtE\"}, {\"Q1\": \"Who is playing with the two kids in the video?\", \"Q2\": \"Can you describe the people in the video?\", \"A\": \"The video shows an elderly woman playing with a little boy wearing a red shirt and a little girl standing on the side of the porch.\", \"video_name\": \"v_2fzIi1lPd8U\"}, {\"Q1\": \"What are some visible features on the dirt bike track?\", \"Q2\": \"Can you describe the environment surrounding the dirt bike track?\", \"A\": \"The video shows a dirt bike track surrounded by trees and vegetation with a cloudy sky in the background.\", \"video_name\": \"v_C7yd6yEkxXE\"}, {\"Q1\": \"What is the parrot eating from the pink coffee cup on the kitchen counter?\", \"Q2\": \"On what container is the butterfly painted, that the parrot is eating from on the kitchen counter?\", \"A\": \"The parrot is eating cream from a pink coffee cup with a butterfly painted on it.\", \"video_name\": \"v_IN23CO8Kotk\"}, {\"Q1\": \"What did the woman get tattooed on her wrist?\", \"Q2\": \"Can you describe the stencil the woman got on her wrist?\", \"A\": \"The woman got a stencil tattooed on her wrist at the tattoo parlor.\", \"video_name\": \"v_BFChXuwZ4wo\"}, {\"Q1\": \"What is happening in the first part of the video?\", \"Q2\": \"Can you describe the first scene in the video?\", \"A\": \"In the first scene, the boy is playing ping-pong alone in a room.\", \"video_name\": \"v_9k19UUJtldg\"}]"
  },
  {
    "path": "model/univi/eval/questions/video_qa/generic_qa.json",
    "content": "[{\"Q\": \"What is the appearance of the women dancers at the beginning of the video?\", \"A\": \"The women dancers are a group of five, wearing different colored belly-dancing outfits, holding their right hands up and facing away from the audience.\", \"video_name\": \"v_hFi6S_guB7I\"}, {\"Q\": \"Who can be seen scattered throughout the field in the first clip?\", \"A\": \"People can be seen scattered throughout the field in the first clip.\", \"video_name\": \"v_18yZR3NDaXM\"}, {\"Q\": \"What is happening in the kitchen sink in the video?\", \"A\": \"In the first clip, a woman is scrubbing dirty dishes using soap and a board while speaking to the camerawoman. In the second clip, the same woman is seen washing plates with sunlight streaming through the window in front of her and light coming through the side door. In the third clip, a young girl is cleaning dishes in the sink filled with foam while speaking into the camera. The video ends with two girls cleaning dishes in the same kitchen sink.\", \"video_name\": \"v_BjjN_aq_wq4\"}, {\"Q\": \"What is the man doing in the rooftop video clip?\", \"A\": \"The man is cleaning his foot and then shaving his right leg with a razor blade.\", \"video_name\": \"v_DJTvj9lfSWU\"}, {\"Q\": \"What is the man wearing?\", \"A\": \"The man is wearing a white hoodie and glasses while washing dishes.\", \"video_name\": \"v_0BtHd6dvm78\"}, {\"Q\": \"What color sail is the dinghy in the beginning of the video using and what color is the sailor\\u2019s wetsuit?\", \"A\": \"The dinghy in the beginning of the video has white sails and the sailor\\u2019s wetsuit is red.\", \"video_name\": \"v_dKJMP8EmZjw\"}, {\"Q\": \"What is the man doing with the shoe polish tin and glass vile with a clear liquid?\", \"A\": \"The man applies the liquid and the polish to a piece of cloth and polishes the shoe with it.\", \"video_name\": \"v_kGdxtU3NwWo\"}, {\"Q\": \"Who takes the trimmer from the boy and continues trimming the man's hair?\", \"A\": \"Another individual takes the trimmer from the boy and starts trimming the hair of the man.\", \"video_name\": \"v_b4xvXZq5uD8\"}, {\"Q\": \"What color is the sink and how many basins does it have in the video?\", \"A\": \"The sink in the video is mint green and has two basins.\", \"video_name\": \"v_aLb79wtvxoQ\"}, {\"Q\": \"What techniques does the athlete perform during the routine on the pommel horse?\", \"A\": \"The athlete performs a circle around the pommel horse, scissors, a handstand, a routine where he moves the length of the pommel horse, and finishes with a handstand and an upside-down split.\", \"video_name\": \"v_KlgrI3Ngwv0\"}, {\"Q\": \"What type of drills are the children doing in the video?\", \"A\": \"The children are doing different stances, punch and kick drills along with movement.\", \"video_name\": \"v_jN-jnIgzd6k\"}, {\"Q\": \"What is visible at the bottom after the boy jumps from the bungee platform?\", \"A\": \"A stream is visible at the bottom after the boy jumps from the bungee platform.\", \"video_name\": \"v_araMJB23T1s\"}, {\"Q\": \"What does the man use to clean the couch in the video?\", \"A\": \"The man sprays foam cleaner on a brush and uses it to clean the couch.\", \"video_name\": \"v_dW6OZV43ulU\"}, {\"Q\": \"What cartoon character is on the plate that the little girl washes?\", \"A\": \"The little girl washes a plate with Dora the Explorer on it.\", \"video_name\": \"v_JcAAwYpJhm8\"}, {\"Q\": \"What colors of vest are being worn by the opposing teams in the volleyball match?\", \"A\": \"The Italian team is wearing red vests while the Latvian team is wearing blue vests.\", \"video_name\": \"v_aYxni8ohTfU\"}, {\"Q\": \"What routine does the man perform on the parallel bars?\", \"A\": \"The man performs a swinging routine while holding on to both parallel bars with his hands. He also holds a position with his legs parallel to the ground while holding himself up from the bars. Finally, he attempts to land while performing multiple backswings.\", \"video_name\": \"v_6Xsfwn5M6qs\"}, {\"Q\": \"What items did the man use to clean the glass door?\", \"A\": \"The man used a wiper, a smaller wiper, cleaning fluid, and a blue towel to clean the glass door.\", \"video_name\": \"v_CecqF_uHeOI\"}, {\"Q\": \"What happens after the player is pushed into the pool?\", \"A\": \"The ball is snatched by the person who pushed the first player down.\", \"video_name\": \"v_7-taNK5mW8E\"}, {\"Q\": \"What are the contestants holding in their hands and what are they wearing?\", \"A\": \"The contestants are holding axes in their hands and they are all wearing blue polo shirts and white trousers.\", \"video_name\": \"v_IcR28Yqt4mY\"}, {\"Q\": \"What does the man do as he approaches the high jump bar?\", \"A\": \"As he approaches the high jump bar, the man clears it by flopping backward over the bar.\", \"video_name\": \"v_B3xMfP_UOt4\"}, {\"Q\": \"What is visible in the distance at the shore?\", \"A\": \"A hill is visible in the distance at the shore.\", \"video_name\": \"v_4XnXyKYxnQQ\"}, {\"Q\": \"What is the woman wearing and what is she doing in the beginning of the video?\", \"A\": \"The woman is wearing a black outfit and boxing gloves, and she starts punching into a punch mitt worn by a man in the beginning of the video.\", \"video_name\": \"v_hq48S65dlyo\"}, {\"Q\": \"What safety gear is the little boy wearing while skateboarding?\", \"A\": \"The boy is wearing a helmet, kneepads, and elbow guards while skateboarding.\", \"video_name\": \"v_gWbIoFrpwTY\"}, {\"Q\": \"What are the couples doing in the video?\", \"A\": \"The couples are salsa dancing on a well-lit wooden floor.\", \"video_name\": \"v_eoSwoeLmeyQ\"}, {\"Q\": \"What did the man do with the hammer?\", \"A\": \"The man swung the hammer around his body two times and then swung it two more times while turning before releasing it through the open side of the cage.\", \"video_name\": \"v_1d_U_2HIPmY\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"A crying girl sitting on a barber chair is having her hair cut by a woman while other people are visible in the well-lit salon. The girl refuses the lollies brought to her by another woman and cries throughout the video while the barber cuts and combs her hair, sprays water, and does touch-up cuts.\", \"video_name\": \"v_Hz7-mBFGsSs\"}, {\"Q\": \"Who is the main player that the video follows and what is he trying to do?\", \"A\": \"The main player that the video follows is Cole Flowler who is wearing a white jersey. He is attempting to check the ball from the other team members.\", \"video_name\": \"v_B_U7vUtoCKY\"}, {\"Q\": \"What is the woman wearing while rowing down the rapid river?\", \"A\": \"The woman is wearing a life vest and a white helmet.\", \"video_name\": \"v_7pfHxav4b0U\"}, {\"Q\": \"What is visible through the windows in the gym?\", \"A\": \"Parked cars are visible through the windows in the gym.\", \"video_name\": \"v_htzAYwoAZkg\"}, {\"Q\": \"What do the two men do after speaking?\", \"A\": \"They walk over to the other side of the stage.\", \"video_name\": \"v_ijrjRNwZjqQ\"}, {\"Q\": \"What equipment are the people using for surfing in the video?\", \"A\": \"The people in the video are windsurfing using boards and sails.\", \"video_name\": \"v_IhmtmKxEU40\"}, {\"Q\": \"What is the toddler doing when another boy with a towel walks towards her?\", \"A\": \"The toddler is washing her face with pool water while sitting on the pool wall with a man holding onto her. She is laughing and looking at the boy with the towel draped over himself, who then walks towards her for a moment before returning back.\", \"video_name\": \"v_3zpODTqnYLs\"}, {\"Q\": \"What color is the T-shirt that the girl is wearing?\", \"A\": \"The girl is wearing a blue T-shirt.\", \"video_name\": \"v_1KONAdZGdWU\"}, {\"Q\": \"What are some instruments being played by the backing musicians in the video?\", \"A\": \"A cutaway shows various instruments being played by the backing musicians throughout the video.\", \"video_name\": \"v_DIhyfNJAm-M\"}, {\"Q\": \"What type of exercise is the woman practicing in the gym?\", \"A\": \"The woman is practicing the movement patterns of weightlifting.\", \"video_name\": \"v_K6QunmuTZOQ\"}, {\"Q\": \"What is visible on the man's left?\", \"A\": \"A small wooden drawer and a pile of white clothes hangers are visible on the man\\u2019s left.\", \"video_name\": \"v_l7qSKJyq6mA\"}, {\"Q\": \"What is the man wearing while piercing the woman's belly button?\", \"A\": \"The man is wearing black gloves while piercing the woman's belly button.\", \"video_name\": \"v_2VZumBKJuPs\"}, {\"Q\": \"What is the background visible behind the women in the video?\", \"A\": \"Two palm trees and a hedge wall are visible in the background behind the women in the video.\", \"video_name\": \"v_7EeO9V2B574\"}, {\"Q\": \"What is visible behind the man and the woman when they are taking the fighting pose?\", \"A\": \"There is a wall with graffiti behind the man and woman.\", \"video_name\": \"v_IgDBDaIoNAM\"}, {\"Q\": \"What do players from other teams do in the video?\", \"A\": \"In the next clip, several girls from other teams are introduced.\", \"video_name\": \"v_325CAs4hhq8\"}, {\"Q\": \"What instrument is the man playing in the video?\", \"A\": \"The man is playing an accordion.\", \"video_name\": \"v_CTJej0rZMiI\"}, {\"Q\": \"Who is wearing a scarf in the video and what do they do?\", \"A\": \"A woman wearing a scarf walks up to the man playing the piano and speaks to him briefly before beginning to sing.\", \"video_name\": \"v_CTyvQHkAKuY\"}, {\"Q\": \"Who else is visible in the gym besides the girl performing her routine?\", \"A\": \"There are judges sitting by the edge of the padding behind a table and people sitting or standing across the gym. There are also people visible on the balcony looking down towards the gym. There are chairs for people to sit on the balcony.\", \"video_name\": \"v_3M290KZV5lo\"}, {\"Q\": \"What does the man do with the banana peel?\", \"A\": \"The man uses the banana peel to wipe a shoe.\", \"video_name\": \"v_itXYuf_Cj_Q\"}, {\"Q\": \"What instrument is the little boy playing in the video?\", \"A\": \"The little boy is playing the violin.\", \"video_name\": \"v_JspVuT6rsLA\"}, {\"Q\": \"What is the name of the tournament that the team in green polo shirts won?\", \"A\": \"The team in green polo shirts won The Barbour Cup tournament.\", \"video_name\": \"v_cPIsE2ZCWzM\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a blue polo shirt.\", \"video_name\": \"v_IL8__uSFpqg\"}, {\"Q\": \"What is the woman wearing while playing squash in the video?\", \"A\": \"The woman is wearing a white t-shirt and shorts.\", \"video_name\": \"v_JguRZtFN-Ck\"}, {\"Q\": \"What type of dives are shown in the video?\", \"A\": \"Several types of dives are shown in the video, including backflip dives and front flip dives.\", \"video_name\": \"v_cFOaL4Ir4hg\"}, {\"Q\": \"What happened at the end of the volleyball game between USC and BYU?\", \"A\": \"The team on the right got the ball and passed it between themselves four times before passing it to the other team. The other team started celebrating before the game was won. The ball landed near them and they lost the game. The first team, USC, celebrated.\", \"video_name\": \"v_BdRH3lpopLQ\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"A tennis player is starting a serve on an outdoor tennis court while practicing with a basket of tennis balls kept a few feet behind her.\", \"video_name\": \"v_JHKAcpYlxkQ\"}, {\"Q\": \"Which girl's jersey number is shown in the video?\", \"A\": \"The girl in the blue-wearing team with the number ten jersey is shown in the video.\", \"video_name\": \"v_1xBdquA6dx8\"}, {\"Q\": \"What is the man wearing who first appears in the video?\", \"A\": \"The man first seen in the video is wearing a white t-shirt and a backward-turned cap, and he has a backpack.\", \"video_name\": \"v_kdOsmDACtqw\"}, {\"Q\": \"What is the toddler doing in the first clip of the video?\", \"A\": \"The toddler is sitting on a vanity table, with hair rollers on her hair, while listening to her mother.\", \"video_name\": \"v_kIFHChO_-vg\"}, {\"Q\": \"What does the bald man in the white shirt explain in the video?\", \"A\": \"The bald man explains how to use different holes on a harmonica to get different sounds and how to correctly position the harmonica near the mouth and blow.\", \"video_name\": \"v_5P9Tbut04xE\"}, {\"Q\": \"What type of clothes are the women wearing?\", \"A\": \"The women are wearing gym clothes.\", \"video_name\": \"v_7gaC3b5nJqs\"}, {\"Q\": \"What is the girl wearing while brushing her teeth in the video?\", \"A\": \"The girl is wearing a white t-shirt while brushing her teeth in the video.\", \"video_name\": \"v_15yU0R2MBQM\"}, {\"Q\": \"What is the woman in the video wearing?\", \"A\": \"The woman in the video is wearing a life vest and a white cap.\", \"video_name\": \"v_kgz7c2kb4Rg\"}, {\"Q\": \"What moves does the girl perform in the video?\", \"A\": \"The girl performs backflips, standing back-tucks, back handspring tucks, running front flips and a tumbling sequence consisting of backward flips and running front flips.\", \"video_name\": \"v_0k0xNs8Zjb4\"}, {\"Q\": \"What happened after a player threw the ball towards the goal?\", \"A\": \"The throw was intercepted by an opponent.\", \"video_name\": \"v_9pavfCL1HvU\"}, {\"Q\": \"What are the two old women doing at the table?\", \"A\": \"The two old women sitting at the table are drinking coffee and talking to each other. Another woman joins them later.\", \"video_name\": \"v_i5qTK0mInTc\"}, {\"Q\": \"What are the people on the bench wearing and where are they sitting?\", \"A\": \"Some of the spectators on the bench are wearing red shirts and some are wearing swimwear. They are sitting on the poolside.\", \"video_name\": \"v_EK7qW-oavQY\"}, {\"Q\": \"What instructions does the man in the blue polo shirt give to the archer?\", \"A\": \"The man in the blue polo shirt instructs the archer on how to grip the bow.\", \"video_name\": \"v_jCxQQ9DMpT0\"}, {\"Q\": \"What is the fifth-degree jump called and how does Stefan perform it?\", \"A\": \"The fifth-degree jump is called the 'Scissor kick'. Stefan performs it by jumping one leg after another over the bar as several clips are shown in the video.\", \"video_name\": \"v_4NPVpI9zUpI\"}, {\"Q\": \"What are the obstacles the girl jumps over in the video?\", \"A\": \"The girl jumps over obstacles as she makes her way to a sand pit and finally performs a high jump.\", \"video_name\": \"v_Ku76zinwWkg\"}, {\"Q\": \"What is the color of the shirt worn by a person in the video?\", \"A\": \"A person wearing an orange shirt is visible in the video.\", \"video_name\": \"v_Hy54nZSDxTk\"}, {\"Q\": \"What is the name of the player in the dark blue uniform who scores three goals and is the focus of the video?\", \"A\": \"The player in the dark blue uniform who scores three goals and is the focus of the video is named 'Jessica Skillings'.\", \"video_name\": \"v_KApqxr02rcQ\"}, {\"Q\": \"What is the man wearing and what is he doing in the video?\", \"A\": \"The man is wearing a blue jacket and he is shoveling snow on a snowy sidewalk. He is slowly clearing snow as he walks forward.\", \"video_name\": \"v_BBKSKU6dGGk\"}, {\"Q\": \"What is the man doing in the video and what is he wearing?\", \"A\": \"The man is lifting a barbell over his head. He is wearing a black polo shirt and shorts.\", \"video_name\": \"v_-HpCLXdtcas\"}, {\"Q\": \"Who serves the ball first?\", \"A\": \"The girl holding the volleyball serves the ball first.\", \"video_name\": \"v_9VtxNvLx6zA\"}, {\"Q\": \"What objects are visible behind or around the man?\", \"A\": \"There are trailers, a truck, a tent, a bike, a foldable table with chairs, and a log placed upright in front of the man.\", \"video_name\": \"v_AwgGYaV1lT0\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is practicing Tai Chi by slowly moving his hands and feet and going over several stances over a few minutes.\", \"video_name\": \"v_0X0u_3xUBPE\"}, {\"Q\": \"What happens to the log after the man swings the axe for the final time?\", \"A\": \"The log finally breaks apart and falls on the ground.\", \"video_name\": \"v_iABuDhagUm8\"}, {\"Q\": \"What is the old man wearing in the video?\", \"A\": \"The old man is wearing winter clothes, a hat, and sunglasses in the video.\", \"video_name\": \"v_jt-Vnap5KP4\"}, {\"Q\": \"What kind of tricks is the man performing while skating?\", \"A\": \"The man with the skateboard is performing flip tricks while skating.\", \"video_name\": \"v_agu58IVL7IQ\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a man competing in a disk throw competition. He is standing in the middle of a netting with an opening on the side for throwing the disk. Hundreds of spectators are visible sitting on seats. The man begins to spin to build momentum and throws the disk. A referee marks the spot where the disk landed. Replays of the throw are played several times and there are several clips of the man making different disk throws one after another.\", \"video_name\": \"v_9AfQ2Q-96oE\"}, {\"Q\": \"What is the man wearing?\", \"A\": \"The man is wearing all-black clothing.\", \"video_name\": \"v_A904-cbaYDw\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"A woman is doing a pirouette in a few blurry black-and-white frames.\", \"video_name\": \"v__B7rGFDRIww\"}, {\"Q\": \"What is the boy on the left holding and what does he do with it?\", \"A\": \"The boy on the left is holding a basketball and he dunks it through the basket. He catches the ball as it comes through the basket and continuously dunks the ball by jumping high. The boy continues to dunk the ball from either side of the basket while jumping.\", \"video_name\": \"v_5tFfEA1JWjA\"}, {\"Q\": \"What kind of projection is displayed on the screen behind the dancers?\", \"A\": \"The video shows a screen at the back of the stage with a projection on it.\", \"video_name\": \"v_AQnp2QAnwI0\"}, {\"Q\": \"What kind of stunts do the cheerleaders perform?\", \"A\": \"The cheerleaders perform basket tosses where the bases lift and throw flyers into the air, and the flyers perform acrobatic movements before landing back down. They also do flips and form different formations.\", \"video_name\": \"v_ANaMmXJFE54\"}, {\"Q\": \"What kind of moves is the man performing on the balance beam?\", \"A\": \"The man is practicing various gymnastics moves, including a backflip and other balancing techniques.\", \"video_name\": \"v_7orO93DICYw\"}, {\"Q\": \"What is the objective of the people in the field?\", \"A\": \"The objective of the people in the field is to compete in a high jump contest where they attempt to jump over a horizontal bar placed with an elevated foam pad beside it.\", \"video_name\": \"v_9hTcvGUnMBs\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"A boy is mowing the lawn with a lawn mower. He struggles to move it forward, and is seen starting to mow one corner of a yard before moving on to the next patch of lawn. He gets stuck in a subsequent patch and pulls back the mower. There is a black car and a line of houses visible in the background, and a silver sedan parked in the driveway next door.\", \"video_name\": \"v_60tIsGR0Zzg\"}, {\"Q\": \"What method does the bartender use to taste the drink?\", \"A\": \"The bartender dribbles some drink onto the back of his hand using a long spoon to taste the drink.\", \"video_name\": \"v_IRua6QGP-Ow\"}, {\"Q\": \"What is the boy doing in the video?\", \"A\": \"The boy wearing a dark blue sweatshirt is sitting at a table and holding his right hand to the side of his head while looking into the camera.\", \"video_name\": \"v_DOI6tsATsE4\"}, {\"Q\": \"What is the man doing at the beginning of the video?\", \"A\": \"The man is standing behind a barbell.\", \"video_name\": \"v_ej9TkJVjK9M\"}, {\"Q\": \"What does the woman do after completing a pass on the hopscotch court?\", \"A\": \"After completing a pass on the hopscotch court, the woman turns around and hops back to the spot she started from.\", \"video_name\": \"v_8L1UjGLOCeI\"}, {\"Q\": \"Who is the only man in the aerobics class and where is he located?\", \"A\": \"The only man in the aerobics class is wearing a green t-shirt and he is working out next to the mirror.\", \"video_name\": \"v_c7S423zJqPo\"}, {\"Q\": \"What is the man in the video promoting?\", \"A\": \"The man in the video is promoting a weight loss product.\", \"video_name\": \"v_Bkhr72sazvQ\"}, {\"Q\": \"What does the man do after adding a few drops of oil inside the vinegar bottle?\", \"A\": \"The man shakes the vinegar bottle to blend the mixture.\", \"video_name\": \"v_d-RYiiPzVKg\"}, {\"Q\": \"What kind of bow are the archers using?\", \"A\": \"The archers are shooting arrows through a compound bow.\", \"video_name\": \"v_BmLDHLKiIdQ\"}, {\"Q\": \"Who caught the ball after the little boy threw it to the man wearing the red shirt?\", \"A\": \"The man wearing the red shirt caught the ball after the little boy threw it to him.\", \"video_name\": \"v_9VflCeoPr9I\"}, {\"Q\": \"Who is getting their head shaved in the video?\", \"A\": \"A man is getting his head shaved in the video.\", \"video_name\": \"v_1kwIYXB4b8s\"}, {\"Q\": \"What is the color of the walls on the basketball court where the video takes place?\", \"A\": \"The walls on the basketball court are painted white at the top half and blue at the bottom.\", \"video_name\": \"v_kPn9NzU4W48\"}, {\"Q\": \"What type of stunts are performed by the riders in the video?\", \"A\": \"The riders perform a series of jumps on the dirt track.\", \"video_name\": \"v_4iFlM_Zu7xs\"}, {\"Q\": \"What roles do the two men in black outfits play during the cheer squad\\u2019s routine?\", \"A\": \"The two men in black outfits are supervising the stunts being performed by the cheer squad on stage.\", \"video_name\": \"v_Dbas61NkTV0\"}, {\"Q\": \"What is the girl doing with the luffa?\", \"A\": \"She picks up the luffa and taps it on her face. Suds stick to her face. She then washes it off with water.\", \"video_name\": \"v_j6ElczD-Pw4\"}, {\"Q\": \"What animals are shown grazing at the end of the video?\", \"A\": \"The video ends with shots of ostriches, alpacas, and camels grazing one after another.\", \"video_name\": \"v_e3DB_y78IHc\"}, {\"Q\": \"What safety equipment is the boy wearing while climbing?\", \"A\": \"The boy is wearing a harness and a belay rope is fastened to him.\", \"video_name\": \"v_9ZVWD0ZKXZg\"}, {\"Q\": \"What happens to one of the women in the first team during the game?\", \"A\": \"One of the women in the first team walks out of the court and picks up a purse while walking towards the back of the court. She briefly speaks to one of her teammates while walking away.\", \"video_name\": \"v_1dDAcUliXrQ\"}, {\"Q\": \"What is the girl wearing and what is the color of the kitchen counter behind her?\", \"A\": \"The girl is wearing a red outfit and glasses, and the kitchen counter behind her is black stone.\", \"video_name\": \"v_KvtqF0LaWU0\"}, {\"Q\": \"What is the girl doing in the video?\", \"A\": \"The girl is sitting by an open window playing the piano and referencing the sheet music in front of her. She starts to sing as she is playing.\", \"video_name\": \"v_3VjaC7wdMso\"}, {\"Q\": \"What kind of drill are the players performing in the video?\", \"A\": \"The players are performing a point guard drill.\", \"video_name\": \"v_cms1BP4eKOA\"}, {\"Q\": \"What is displayed on the screen when the video starts and who is performing the high jump?\", \"A\": \"When the video starts, a graphic displaying the name and stats of Britney Reese, a woman in sportswear, is displayed. She is the one performing the high jump into a sand pit.\", \"video_name\": \"v_Ivq9_wPFNs4\"}, {\"Q\": \"What is the woman wearing and what is she doing in the video?\", \"A\": \"The woman is wearing a yellow top and recording the boy with her phone.\", \"video_name\": \"v_dO01vfB9z4g\"}, {\"Q\": \"What is the event shown in the video and what brand is sponsoring it?\", \"A\": \"The event shown in the video is a Red Bull CROSSWAYS competition which features kayaking, running, and cycling. The Red Bull brand is sponsoring the event.\", \"video_name\": \"v_4-KiAur4dI8\"}, {\"Q\": \"What is the man doing at the beginning of the video?\", \"A\": \"The man is playing a harmonica while sitting on the sidewalk.\", \"video_name\": \"v_1XNHcfxTqW0\"}, {\"Q\": \"What does the girl do once she reaches the end of the balance beam?\", \"A\": \"Once the girl reaches the end of the balance beam, she turns around and performs a front summersault.\", \"video_name\": \"v_AE2gHOwcV14\"}, {\"Q\": \"What did the woman use to start the fire?\", \"A\": \"The woman used a carbon knife and a Ferro rod to start the fire after breaking up and placing dry leaves and tinder in front of her. She also held up a green Bic lighter and a box of matches during the demonstration.\", \"video_name\": \"v_bphckj0BV5U\"}, {\"Q\": \"What is the woman doing in the opening shot of the video?\", \"A\": \"In the opening shot of the video, the woman is standing in a kitchen behind a counter.\", \"video_name\": \"v_E5YBb4rzV30\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"A man wearing a green jacket is standing near a Dodge truck while trying to dislodge an axe stuck in a log. A dog is standing next to the man. A man in a t-shirt and khaki pants walks to the back of the truck with a bottle of beer.\", \"video_name\": \"v_dRF1C_sBE5M\"}, {\"Q\": \"What is the boy wearing who is performing the training drills in the gym?\", \"A\": \"The boy is wearing a white martial arts uniform while performing the training drills in the well-lit gym with a light wooden floor.\", \"video_name\": \"v_H33jSILKmfI\"}, {\"Q\": \"What kind of clothing are the couple wearing?\", \"A\": \"The man is wearing a white t-shirt and the woman is wearing a black coat over a pink top.\", \"video_name\": \"v_JiNcVb97CnA\"}, {\"Q\": \"What ingredients are added to the dressing?\", \"A\": \"The chef adds two T-spoons of cream and two T-spoons of mayonnaise to a glass bowl. He mixes the two ingredients and adds some salt and pepper to it.\", \"video_name\": \"v_lIo8HfzzSNs\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is mowing his lawn.\", \"video_name\": \"v_dN8LBey17O8\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man in the video is practicing a hammer throw in a field using a handle attached to a hammer, standing on a round platform surrounded by a lawn.\", \"video_name\": \"v_I7slpTgl0jc\"}, {\"Q\": \"What is the boy wearing who is seen pushing a dirtbike?\", \"A\": \"The boy is wearing a black jacket, a cap, and sunglasses.\", \"video_name\": \"v_ks018ZYzrx4\"}, {\"Q\": \"What is the color of the dresses that the girls are wearing in the video?\", \"A\": \"All the girls are wearing black dresses.\", \"video_name\": \"v_KsFid_YVsn0\"}, {\"Q\": \"What happened after the batsman hit the ball through the off side towards the boundary and a fielder tried to prevent it from touching the rope?\", \"A\": \"The fielder prevented the ball from going over the boundary line but fell on the other side. He was able to throw the ball to the wicket player who removed the bails from the stumps, resulting in an appeal for a run out that was ultimately confirmed by the third umpire, resulting in the batsman being out.\", \"video_name\": \"v_hFpSoRlpyMo\"}, {\"Q\": \"What ingredients did the man use to make the pasta dish?\", \"A\": \"The ingredients used in making the pasta dish include parsley, olive oil, garlic, chilies, and dry pasta.\", \"video_name\": \"v_aOxRwTlkY80\"}, {\"Q\": \"Where are the people playing cricket in the beginning of the video?\", \"A\": \"The people are playing cricket in a backyard.\", \"video_name\": \"v_4VdS1eN3dv4\"}, {\"Q\": \"What is the boy wearing while doing gymnastics using a parallel bar in the video?\", \"A\": \"The boy is wearing tights.\", \"video_name\": \"v_EhzHU0gkrzA\"}, {\"Q\": \"Who is getting their hair cut in the video?\", \"A\": \"The man is getting his hair cut in the hair salon.\", \"video_name\": \"v_6G8m-vsGTA8\"}, {\"Q\": \"What type of clothing is the first boy wearing and what is his position on the stage?\", \"A\": \"The first boy is wearing a karate uniform and holding a stance on the stage.\", \"video_name\": \"v_kfO5PGlsMJw\"}, {\"Q\": \"What kind of makeup products does the woman use in the video?\", \"A\": \"The woman uses concealer, foundation, bronzer, eyeliner, mascara, and lipgloss in the video.\", \"video_name\": \"v_86Unahb4sJM\"}, {\"Q\": \"What is the man in the red polo shirt doing in the office in the first clip?\", \"A\": \"In the first clip, the man in the red polo shirt and blue trousers is vacuuming the carpet in the office while carrying a vacuum on his back.\", \"video_name\": \"v_jN2CFk0xKp8\"}, {\"Q\": \"What move does the boy in olive shorts demonstrate?\", \"A\": \"The boy in olive shorts demonstrates the \\\"Zulu Spin\\\" move.\", \"video_name\": \"v_JG7T6qtO4jg\"}, {\"Q\": \"What types of movements did the gymnast perform on the balance beam?\", \"A\": \"The gymnast performed a handstand, a front flip, a back flip, different balance poses, turns, jumps, and leaps on the balance beam.\", \"video_name\": \"v__ja1fre9OTE\"}, {\"Q\": \"What is seen in the background while the man is playing the bagpipe?\", \"A\": \"Glasses and bottles are visible on the shelves behind the man.\", \"video_name\": \"v_82EtiBkAsPg\"}, {\"Q\": \"What item did the man fix back on the stand before walking off?\", \"A\": \"The man fixed the mic back on the stand before walking off.\", \"video_name\": \"v_7OcxT66BxX0\"}, {\"Q\": \"What training are the sailors performing in the video?\", \"A\": \"The sailors are performing capsizing training.\", \"video_name\": \"v_aDe5hUB3AdY\"}, {\"Q\": \"What is happening in the starting scene of the video?\", \"A\": \"A black French bulldog is standing on a checkered red tablecloth while a boy places a cup of coffee in front of it. The dog then starts drinking the coffee and the boy attempts to move the dog away from the cup.\", \"video_name\": \"v_5qY9yPt-5Go\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, there are different clips of people and events. Initially, there are three people sitting on a curved couch behind a coffee table with cups on it. A woman is sitting at the center with two men on either side of her. Next, a man in a suit is speaking to the camera. Then, a teen student is shown giving a presentation in a classroom. Following that, there is a clip of girls in cheerleader outfits sitting on a bench, and then a man in a black T-shirt and a cap giving instructions to cheerleaders in a hall lit by overhead lights. The video also includes multiple cheer squads performing on a stage, including men who are in back spots standing behind the bases. There are also clips of girls watching the stage and walking away crying, cheerleaders training, and finally the cheerleaders celebrating.\", \"video_name\": \"v_hvrKRg166eQ\"}, {\"Q\": \"What is the woman wearing and what is she doing in the video?\", \"A\": \"The woman is wearing a green sweater and is standing behind an ironing board with a shirt and an iron on it. She is ironing a men`s cotton dress shirt while demonstrating the process in a well-lit room with a window behind her.\", \"video_name\": \"v_a_JlhLnJM98\"}, {\"Q\": \"What kind of event is taking place in the video?\", \"A\": \"The video shows a tango performance at an event with tables arranged in a hall and attendees seated watching the dancers.\", \"video_name\": \"v_9Ufy_JGbnys\"}, {\"Q\": \"What is the attire of the man in the video?\", \"A\": \"The man in the video is wearing a checkered shirt.\", \"video_name\": \"v_9eniCub7u60\"}, {\"Q\": \"What is the color of the kayak that the person holding a paddle is standing in front of?\", \"A\": \"The person holding a paddle is standing in front of a yellow kayak.\", \"video_name\": \"v_k1GP0cJOXbQ\"}, {\"Q\": \"What happens in the first clip of the video?\", \"A\": \"Players wearing orange uniforms and blue helmets celebrate on a baseball field.\", \"video_name\": \"v_7bwruwic1CI\"}, {\"Q\": \"What is the outfit of the man sitting on the chair?\", \"A\": \"The man sitting on the chair is wearing a white suit.\", \"video_name\": \"v_bYxVbXzQToI\"}, {\"Q\": \"Who is leading the workout routine and what is he wearing?\", \"A\": \"The leader who is calling out instructions is a man wearing a black outfit.\", \"video_name\": \"v_hI11n4_r178\"}, {\"Q\": \"What details can you provide about the woman's pole-vaulting?\", \"A\": \"The woman is wearing a black outfit while pole vaulting during the daytime in an outdoor field. She plants her pole to go over the bar, landing on the foam mat on the other side. A referee is standing near the bar with a big measuring stick while other people are visible around the bar. In another clip, the same woman is now wearing a white jacket and holds her pole at the starting point. She runs towards the bar and jumps over it, landing on the other side. In both instances, she takes a drink from a bottle of water afterwards.\", \"video_name\": \"v_hP-xRyx88aA\"}, {\"Q\": \"What is the boy holding and what is he wearing?\", \"A\": \"The boy is holding a violin and wearing a sweater vest.\", \"video_name\": \"v_HxrtuZSCwvY\"}, {\"Q\": \"What color T-shirts are the players wearing?\", \"A\": \"One player is wearing a white T-shirt and the other is wearing a grey T-shirt.\", \"video_name\": \"v_af05Mqm03Y4\"}, {\"Q\": \"What color is the dress shirt of the man playing the harmonica?\", \"A\": \"The man is wearing a grey dress shirt.\", \"video_name\": \"v_ddzfgHw_qlU\"}, {\"Q\": \"What type of moves were the woman performing during the kickboxing practice?\", \"A\": \"The woman was practicing punching, kicking and occasionally using her elbows on the man.\", \"video_name\": \"v_h_r8gioFi4k\"}, {\"Q\": \"What number tag is the man wearing on his vest and what color are his shorts?\", \"A\": \"The man is wearing the number tag 2736 on his vest and his shorts are blue.\", \"video_name\": \"v_EnMS9O1U6E0\"}, {\"Q\": \"What is the man wearing and what is he holding?\", \"A\": \"The man is wearing a black shirt and black track pants. He is holding a raquet and a tennis ball.\", \"video_name\": \"v_CeXtKbFnPIQ\"}, {\"Q\": \"What colors of eyeshadow does the makeup artist use on Irina Shayk?\", \"A\": \"The makeup artist uses different colors of eyeshadow on Irina's eyelid.\", \"video_name\": \"v_K_ia4VP3w2c\"}, {\"Q\": \"What is shown in the shot at the end of the video?\", \"A\": \"The shot at the end of the video shows the facade of the winery.\", \"video_name\": \"v_IDIALY6Ayk8\"}, {\"Q\": \"What type of clothing is the man wearing in the video?\", \"A\": \"The man is wearing a black shirt and a black cap.\", \"video_name\": \"v_ij9czNGMR5I\"}, {\"Q\": \"What color uniforms are the players on the left wearing?\", \"A\": \"The players on the left are wearing blue uniforms.\", \"video_name\": \"v_jEOtcfk220s\"}, {\"Q\": \"What type of outfit are the breakdancers wearing in the video?\", \"A\": \"The breakdancers are wearing black outfits.\", \"video_name\": \"v_j6OcN4OQZVM\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"In the video, the man is wearing a purple shirt.\", \"video_name\": \"v_bz4QwqHiVlo\"}, {\"Q\": \"What happens after the woman throws the hammer in the field?\", \"A\": \"In a cutaway shot, a couple on a blanket in the field panics and runs to the side as the hammer attached to a string lands on the blanket they were on.\", \"video_name\": \"v_hPYGgv_75SY\"}, {\"Q\": \"What instrument is the girl holding?\", \"A\": \"The girl is holding a guitar.\", \"video_name\": \"v_jWH-2aa1gJY\"}, {\"Q\": \"What food item is Chris Hadfield holding in the beginning of the video?\", \"A\": \"Chris Hadfield is holding a tortilla in his hand in the beginning of the video.\", \"video_name\": \"v_BAtlo_AGFWs\"}, {\"Q\": \"What is the man doing in the video and what is he wearing?\", \"A\": \"In the video, a man wearing a blue jacket and blue jeans is standing in a wooded area and using an axe to chop wood placed on a tree stump. He is picking up the chopped pieces and stacking them with uniform lengths of wooden logs behind him. After he has chopped the current piece, he picks up another wooden block and places it on the tree stump. The video ends with the man coming back to stand over the block.\", \"video_name\": \"v_9lAT3oA9Ixs\"}, {\"Q\": \"What is Valarie doing with the ironing board and iron?\", \"A\": \"Valarie is using the iron on transfer to imprint a design on a t-shirt that is laying on the ironing board.\", \"video_name\": \"v_0rr7iGHamw0\"}, {\"Q\": \"What happens to the man wearing black in the video?\", \"A\": \"As the instructor issues a new instruction, the man wearing black trips and falls down over his aerobics step.\", \"video_name\": \"v_6utacRir3uM\"}, {\"Q\": \"What types of kayaks are shown in the video?\", \"A\": \"The video shows kayaks being rowed in rapids, in the sea, in different rivers, and with open and closed cockpits.\", \"video_name\": \"v_5cijPqKVc84\"}, {\"Q\": \"What color are the trousers worn by the contestants on the right?\", \"A\": \"The contestants on the right are wearing light-colored trousers.\", \"video_name\": \"v_l5ZUUChppHU\"}, {\"Q\": \"What event is the woman attempting to do in the video?\", \"A\": \"The woman is attempting to do a long jump.\", \"video_name\": \"v_52Xw6TZcysc\"}, {\"Q\": \"What position is the little boy playing in the video and what team is he playing for?\", \"A\": \"The little boy is playing in different positions throughout the video and is shown wearing a red jersey for the Salem lacrosse team. He is also shown wearing a white jersey while doing a face-off at the start of a new game.\", \"video_name\": \"v_l_0HvMt2tGg\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is about people practicing tai chi, a martial art practiced for its health benefits, in different locations including a studio, outdoors, and a hospital. It includes footage of people practicing individually and being taught by others, as well as historical footage of tai chi being taught in 1957.\", \"video_name\": \"v_1jgsRbGzCls\"}, {\"Q\": \"Who is speaking to the camera and what clothes is he wearing?\", \"A\": \"A boy wearing a school uniform is speaking to the camera. He is wearing a white shirt and a green tie.\", \"video_name\": \"v_kl-2y3jtPNE\"}, {\"Q\": \"What brand was the logo on the t-shirt of the man on the left?\", \"A\": \"The logo on the t-shirt of the man on the left was 'Adidas'.\", \"video_name\": \"v_j_r7zJWxI8w\"}, {\"Q\": \"What steps did the woman take to wrap the brown cardboard box?\", \"A\": \"The woman unrolled a roll of wrapping paper, placed the brown cardboard box on it, cut the wrapping paper based on the size of the box, wrapped the box and taped it shut, folded the sides of the box carefully, and folded it using tape. She then turned the wrapped box on every side to show the wrapping.\", \"video_name\": \"v_l_pp-1qu9Ig\"}, {\"Q\": \"What happens after the batsman hits the ball?\", \"A\": \"The batsman and non-striker start running between the wickets while the fielders start looking for the ball.\", \"video_name\": \"v_8r4bF9RF0Kc\"}, {\"Q\": \"What problem is the man fixing in the video?\", \"A\": \"The chain on the bike in front of the man is broken, and he is showing how he is going to fix it.\", \"video_name\": \"v_iUiXNXRs4rU\"}, {\"Q\": \"What color is the jacket that the woman is wearing and what kind of shirt is visible under it?\", \"A\": \"The woman is wearing a green jacket over an olive turtleneck.\", \"video_name\": \"v_Lf_7RurLgp0\"}, {\"Q\": \"What color is the clothing worn by the two boys playing squash on the squash court?\", \"A\": \"One of the boys is wearing a blue t-shirt and the other a red t-shirt while playing squash on the squash court.\", \"video_name\": \"v_34ZxyyFjbHQ\"}, {\"Q\": \"What is the woman wearing while sitting on the elliptic machine?\", \"A\": \"The woman is wearing a green top while sitting on the elliptic machine.\", \"video_name\": \"v_Db9VWkgMpbE\"}, {\"Q\": \"What is the man wearing and what is he doing in the video?\", \"A\": \"The man is wearing a black polo shirt and a rice hat and is playing a flute while standing on an elevated section of the Marble Bridge with the Palace Museum in the background.\", \"video_name\": \"v_Il9Ara3IqeY\"}, {\"Q\": \"What does the beautician instruct the model to mix with the yogurt?\", \"A\": \"The beautician instructs the model to mix baking soda with the yogurt.\", \"video_name\": \"v_HkbOI7gEtKk\"}, {\"Q\": \"What are the two men doing in the video before making sandwiches?\", \"A\": \"The two identical men stand at the entrance to another room.\", \"video_name\": \"v_cEa87QoI3Do\"}, {\"Q\": \"What happened when the game started?\", \"A\": \"A player got hit and fell, but immediately got up. A boy jumped and caught the ball that bounced off the fallen player. A girl a few feet away from the fallen player held her hands to her face.\", \"video_name\": \"v_ARpoJIBF2NM\"}, {\"Q\": \"What happens after the ball is kicked by the boy in green shirt? \", \"A\": \"The ball travels through the air and lands near the opposite chain-link fence, where a boy wearing a red shirt runs towards it.\", \"video_name\": \"v_H8oehT8eeGc\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The video starts with a man holding a black wooden Irish flute and speaking into the camera.\", \"video_name\": \"v_jQzBXawu29s\"}, {\"Q\": \"What is the boy wearing while chopping the wood?\", \"A\": \"The boy is wearing blue jeans and a sweater.\", \"video_name\": \"v_51faGoLPJgM\"}, {\"Q\": \"What cleaning solution does the man use to clean the shoes in the video?\", \"A\": \"The man uses a cleaning product called Jason Markk to clean the shoes.\", \"video_name\": \"v_AB480dHyDeM\"}, {\"Q\": \"What color T-shirt and cap is the man wearing?\", \"A\": \"The man is wearing a blue T-shirt and a blue cap.\", \"video_name\": \"v_lPw_BRbPw5s\"}, {\"Q\": \"What kind of sandwich does the chef make in the video?\", \"A\": \"The chef makes a turkey sandwich in the video, spreading soft butter on both slices of bread, placing sliced turkey on the bread, and adding cranberry sauce and green leaves before covering it with the other slice.\", \"video_name\": \"v_Kofjs0rkwxc\"}, {\"Q\": \"What is happening at the start of the video in the ballet class?\", \"A\": \"At the beginning of the video, the ballet class is starting its practice with hand movements. The instructor is at the front with two students at her back on either side, while little kids are sitting a few feet away from the trio and mimicking their moves.\", \"video_name\": \"v_jiM0HUFn0e8\"}, {\"Q\": \"What is the color of the gymnast\\u2019s outfit in the video?\", \"A\": \"The gymnast is wearing a pink outfit while performing on the balance beam.\", \"video_name\": \"v_4oi6dXfpJS4\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is about different martial arts fights and demonstrations.\", \"video_name\": \"v_4KMG6lEDSIM\"}, {\"Q\": \"In which clip can a group of people be seen rowing past a large rock in the sea?\", \"A\": \"The clip that shows people in a boat rowing past a large rock island in the sea is visible in the video.\", \"video_name\": \"v_889_kqLFM0E\"}, {\"Q\": \"What kind of exercises does the woman do on the bars?\", \"A\": \"The woman does exercises like swaying, moving back using her hands, doing the split, and swinging using the bars.\", \"video_name\": \"v_1YU4MSK80cQ\"}, {\"Q\": \"What happened after the boy in the pink cutoff shirt missed the throw?\", \"A\": \"The boy in the pink cutoff shirt turned around and walked away, while the people who were standing right outside the court rushed the boy in grey and celebrated.\", \"video_name\": \"v_IDuoF51IMJ8\"}, {\"Q\": \"What color shirt is the man wearing in the video?\", \"A\": \"The man in the video is seen wearing a black shirt while speaking to a boy wearing glasses.\", \"video_name\": \"v_jkrlHzTRTvo\"}, {\"Q\": \"What is written on the saxophone case?\", \"A\": \"The words 'GUNS-N-ROSES' is written on the saxophone case with a rose drawn under the text.\", \"video_name\": \"v_dhsSq0K1xEg\"}, {\"Q\": \"What is the toddler wearing?\", \"A\": \"The toddler is wearing blue and red pajamas.\", \"video_name\": \"v_0x6ZV9Y8g_c\"}, {\"Q\": \"What are the people doing behind the car at the beginning of the video?\", \"A\": \"The people are shoveling snow from around the car.\", \"video_name\": \"v_-IMXSEIabMM\"}, {\"Q\": \"What is the man wearing and what does he do with the barbell?\", \"A\": \"The man is wearing a red vest and he lifts the barbell over his head with visible difficulty before dropping it, causing it to bounce on the ground.\", \"video_name\": \"v_dVpHF8tE2qo\"}, {\"Q\": \"What kind of dance are the women doing in the video?\", \"A\": \"The women are belly dancing in the video.\", \"video_name\": \"v_Kic33dtLja8\"}, {\"Q\": \"Who is the player being pointed by the red arrow?\", \"A\": \"The player being pointed by the red arrow is wearing a white number 15 jersey.\", \"video_name\": \"v_4mRkWNLE66E\"}, {\"Q\": \"What kind of clothes is the woman wearing while tattooing the man?\", \"A\": \"The woman is wearing a purple-colored check shirt with blue jeans and a pair of black gloves.\", \"video_name\": \"v_FOZdNPQ7d5Q\"}, {\"Q\": \"What causes the table and a man standing near it catch fire in the video?\", \"A\": \"The alcohol spilled from the shot glass that was lit on fire caused the table and a man standing near it catch fire.\", \"video_name\": \"v_BSwChZlOb0k\"}, {\"Q\": \"What is the man wearing?\", \"A\": \"The man is wearing a red t-shirt.\", \"video_name\": \"v_cqxiLraI8uY\"}, {\"Q\": \"What is the boy doing in the video?\", \"A\": \"The boy in the video is balancing above a pair of horizontal bars.\", \"video_name\": \"v_d6PdD2O3Yrs\"}, {\"Q\": \"What is happening on the tennis court at the beginning of the video?\", \"A\": \"The man with the racquet is standing on the right side of the court, throws the ball in the air, and hits it towards the other end of the court.\", \"video_name\": \"v_3V9tzjyr51I\"}, {\"Q\": \"What type of clothing is the man wearing while performing Tai Chi in the video?\", \"A\": \"The man is wearing a grey Tai Chi uniform.\", \"video_name\": \"v_di5f5hM05Vw\"}, {\"Q\": \"What type of training do the men in the video engage in?\", \"A\": \"The men in the video engage in different types of training such as drills on a small trampoline, doing push-ups, and training for ballet.\", \"video_name\": \"v_JN1wuOpCZvk\"}, {\"Q\": \"What safety gear is the driver wearing in the video?\", \"A\": \"The driver at the end of the video is shown wearing full safety gear while standing outside in the dirt bike yard.\", \"video_name\": \"v_JH9qiuPCkY4\"}, {\"Q\": \"What is the woman in the video doing with the towel?\", \"A\": \"The woman in the video is wiping the top of a stereo with a towel.\", \"video_name\": \"v_aQ-F9wr0HQ4\"}, {\"Q\": \"What drink is Pinky making in the video?\", \"A\": \"Pinky is making a drink called 'GIN E HENDRIX'.\", \"video_name\": \"v_0UTrTg3DF5g\"}, {\"Q\": \"Who is walking with the little boy and what is he wearing?\", \"A\": \"A man is walking with the little boy, he is wearing a blue T-shirt and glasses.\", \"video_name\": \"v_Ie09KEAPP2I\"}, {\"Q\": \"Who is jumping off the bungee jump platform?\", \"A\": \"The person jumping is wearing a t-shirt and is wearing a strap.\", \"video_name\": \"v_Jdu5AqaWfz8\"}, {\"Q\": \"What color are the kayaks the group of people is using in the river?\", \"A\": \"The group of people on kayaks are using yellow kayaks in the river.\", \"video_name\": \"v_Erje-PwY9hE\"}, {\"Q\": \"What happens at the end of the video and how do people react to it?\", \"A\": \"At the end of the video, the girl in number 1 uniform scores a goal and people celebrate.\", \"video_name\": \"v_HgYuRKZ_V90\"}, {\"Q\": \"What is the setting of the video and who introduces himself as a repairman?\", \"A\": \"The video starts with a web address appearing with a background of images of people from a particular university. A man in shorts is riding a bicycle on a path. A green field being watered by sprinklers is visible in the background and people are walking on the path. The man introduces himself as Brandt, standing in front of a bike placed on a table.\", \"video_name\": \"v__jV5sAOOHLk\"}, {\"Q\": \"What is the color of the rabbit's coat?\", \"A\": \"The rabbit has a reddish coat with dark brown highlights.\", \"video_name\": \"v_JDwd6Ec454A\"}, {\"Q\": \"What does the little girl do after running towards the camera?\", \"A\": \"The little girl immediately goes to the hopscotch court drawn on the ground behind her.\", \"video_name\": \"v_34SBoGK8mT8\"}, {\"Q\": \"What color is the top the girl making a video for her friend is wearing?\", \"A\": \"The girl making a video for her friend is wearing a black top.\", \"video_name\": \"v_fNhw7xE3NM8\"}, {\"Q\": \"What type of protective gear are the men wearing?\", \"A\": \"The men are wearing protective gear.\", \"video_name\": \"v_83f0iwb8VW8\"}, {\"Q\": \"What does the girl do after spitting the mouthwash?\", \"A\": \"After spitting the mouthwash by bending forward, the girl starts to beatbox.\", \"video_name\": \"v_Lb7Q8qv3MHU\"}, {\"Q\": \"What is the woman doing in the bathroom at the start of the video?\", \"A\": \"At the start of the video, the woman is in the bathroom holding a drinking glass in one hand and a cigarette in the other. She is standing in front of the mirror and examining herself, tapping the cigarette in front of the mirror.\", \"video_name\": \"v_7dXqXFoju2M\"}, {\"Q\": \"What is written on the banner behind the men playing saxophones?\", \"A\": \"The banner behind the men playing saxophones has the words 'TWIN JAZZ' written on it.\", \"video_name\": \"v_A20uQSBtYMs\"}, {\"Q\": \"How is the woman directing the horse?\", \"A\": \"The woman is using the reins to direct the horse as she slowly rides inside the ranch.\", \"video_name\": \"v_9InwA-ajB2M\"}, {\"Q\": \"Who are the people standing around the breakdancer wearing a yellow shirt?\", \"A\": \"It is not specified who the people standing around the breakdancer are.\", \"video_name\": \"v_2nDbYhgdw2A\"}, {\"Q\": \"What kind of dive did the person perform?\", \"A\": \"The person performed a reverse somersault dive.\", \"video_name\": \"v_eRco7yXc-40\"}, {\"Q\": \"What do the players do in the drill?\", \"A\": \"In the drill shown in the video, the players run across the court while one in the middle dribbles the ball and shoots it into the basket, and then collect the ball and run back to the other side while dribbling. The other two players turn around to block the shooter, and the drill is then repeated with a different group of three players until the end of the video.\", \"video_name\": \"v_IGZvj1J9tNc\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman is standing in a bathroom in front of the mirror, washing a piece of cloth in the sink while wearing a blue top. She looks into the camera once to speak to the cameraman. She rinses the clothing in the sink which is filled with dirty water, and there are toiletries placed on a shelf in front of the mirror including a bottle of dish soap. The bathroom walls are lined with white tiles.\", \"video_name\": \"v_49PbyLbrxlE\"}, {\"Q\": \"What is the background on the far wall in the video?\", \"A\": \"The background on the far wall in the video is a poster of a cartoon sloth.\", \"video_name\": \"v_4QRRxub6L5Q\"}, {\"Q\": \"What ingredients did the girls add to the salad?\", \"A\": \"The girls added various food items to the salad including lettuce, tomatoes, peanuts, oil and salt.\", \"video_name\": \"v_0DFz3sgfda0\"}, {\"Q\": \"What is the person doing at the beginning of the video?\", \"A\": \"At the beginning of the video, the person is holding a piece of chips and lights it like kindling to the camera and then places it on the arranged firewood.\", \"video_name\": \"v_cCDffwsJvsY\"}, {\"Q\": \"What activity are the teenagers doing in the basketball court?\", \"A\": \"The teenagers are hopping through the hopscotch court and attempting to do a pull-up from the basketball hoop.\", \"video_name\": \"v_11p9goB2rm8\"}, {\"Q\": \"What is the woman doing in the video and what is she holding?\", \"A\": \"In the video, the woman is holding a towel in one hand and a bottle of wood polish in the other. She drips some polish on the coffee table and proceeds to wipe it with the towel.\", \"video_name\": \"v_4Gx_8vuxzAk\"}, {\"Q\": \"What clothing is Will Smith wearing in the video?\", \"A\": \"Will Smith is wearing a multi-colored shirt.\", \"video_name\": \"v_HMs703DhjQU\"}, {\"Q\": \"What color t-shirts are the teams wearing and which team starts the game?\", \"A\": \"The team wearing orange t-shirts and knee guards is one of the teams playing and the team wearing the yellow t-shirts is the other team. The team wearing yellow uniform starts the game.\", \"video_name\": \"v_Jy93pLzV2uw\"}, {\"Q\": \"What flavors does the bartender add to the mixing glass?\", \"A\": \"The bartender adds a flavoring agent to the alcohol in the mixing glass.\", \"video_name\": \"v_6wPVO7I8iIY\"}, {\"Q\": \"What is the woman wearing while exercising on the parallel bars?\", \"A\": \"The woman is wearing a neon green T-shirt, black track pants with white stripes, and white sports shoes. She is also wearing glasses and a ring on her left hand.\", \"video_name\": \"v_Fb4X1PWfOvY\"}, {\"Q\": \"What is the man doing at the beginning of the video?\", \"A\": \"The man is repairing a bicycle.\", \"video_name\": \"v_IfugNwywj-k\"}, {\"Q\": \"What is the boy wearing while chopping wood in the woods?\", \"A\": \"The boy is wearing an off-white T-shirt and shorts.\", \"video_name\": \"v_dZsk5Dp_5FE\"}, {\"Q\": \"What is the woman wearing and where is she standing in the beginning of the video?\", \"A\": \"The woman is wearing a black top, black trousers and a quiver with arrows in it. She is standing on an indoor basketball court.\", \"video_name\": \"v_AL1W3HkjJ2Y\"}, {\"Q\": \"What is the man wearing who starts to play the harmonica in the video?\", \"A\": \"The man who starts to play the harmonica in the video is wearing a checkered shirt and a backpack.\", \"video_name\": \"v_j_1kNiGcepU\"}, {\"Q\": \"What is the woman wearing and what items are on the table in front of her when the video starts?\", \"A\": \"The woman is wearing a white coat over a teal top and there are tubes and bottles of makeup on the table in front of her.\", \"video_name\": \"v_le7JdKQB65I\"}, {\"Q\": \"What direction did the man look after throwing the disk?\", \"A\": \"The man looked towards the direction where he threw the disk.\", \"video_name\": \"v_-6dz6tBH77I\"}, {\"Q\": \"What color shirt is the player who missed the shot wearing?\", \"A\": \"The player who missed the shot is wearing a yellow T-shirt.\", \"video_name\": \"v_BnO8AfQS8yE\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"In the next clip, the man is seen filling the blue bucket with water while the dog shakes the water dry in slow motion.\", \"video_name\": \"v_CvbBSwz-9XI\"}, {\"Q\": \"What happens after the biker rides towards the middle of the dirt field?\", \"A\": \"The biker tries to jump over a slight elevation but lands with the front wheel first and crashes. He lands in the dirt.\", \"video_name\": \"v_-cAcA8dO7kA\"}, {\"Q\": \"What did the woman clean before she turned towards the camera?\", \"A\": \"The woman cleaned a tumbler, a spoon, and a fork before turning towards the camera.\", \"video_name\": \"v_9snScUyE8_4\"}, {\"Q\": \"What is the man doing in the first clip of the video?\", \"A\": \"In the first clip of the video, the man is washing his hands in a sink.\", \"video_name\": \"v_96ADEnJy4GU\"}, {\"Q\": \"What is the man wearing and what is his action in the beginning of the video?\", \"A\": \"The man is wearing a yellow t-shirt and holding a knife in his right hand. He kneels down and lights a stack of firewood on fire with a fire starter.\", \"video_name\": \"v_-D1gdv_gQyw\"}, {\"Q\": \"What kind of music was the girl listening to before she started playing the harmonica?\", \"A\": \"The given information doesn't provide any details about the kind of music the girl was listening to before playing the harmonica.\", \"video_name\": \"v__a527xEzhkw\"}, {\"Q\": \"Who scores a goal and what does the goalkeeper do after that in the water polo game in the video?\", \"A\": \"In the water polo game in the video, a player throws the ball to another player, who in turn throws the ball into the goalpost and scores a goal. The goalkeeper then throws the ball outside.\", \"video_name\": \"v_cH3H-arDsH4\"}, {\"Q\": \"What color are the polo shirts of the teams playing the polo match?\", \"A\": \"One team is wearing a white polo shirt and the other team is wearing a red polo shirt.\", \"video_name\": \"v_hvhny4-sI-w\"}, {\"Q\": \"What is the woman wearing and what is she holding?\", \"A\": \"The woman is wearing a red vest and is holding a hammer attached to a string.\", \"video_name\": \"v_d09u-0k3LdE\"}, {\"Q\": \"Who else is visible in the video besides the dancing couple?\", \"A\": \"Other people are visible standing to the side.\", \"video_name\": \"v_B0GCHDqEsRU\"}, {\"Q\": \"What is the color of the jersey of the team Samuel Shearin is playing for?\", \"A\": \"Samuel Shearin is playing for the blue-green team.\", \"video_name\": \"v_aH39BSM0-Ag\"}, {\"Q\": \"What type of class is the man conducting?\", \"A\": \"The man is conducting a Zumba class.\", \"video_name\": \"v_iqhdqhVttEM\"}, {\"Q\": \"What ingredients are in the sandwich that the woman makes in the video?\", \"A\": \"The ingredients of the sandwich shown in the video are French roll, pepperoni, mayonnaise, pizza sauce, cheese, tomato, and shredded lettuce.\", \"video_name\": \"v_cECycCDw1Nc\"}, {\"Q\": \"Who appears on the instructor's right when the camera angle widens?\", \"A\": \"A boy wearing a white t-shirt appears on the instructor's right when the camera angle widens.\", \"video_name\": \"v_egowZOcbEkI\"}, {\"Q\": \"What kind of competition is being shown in the video?\", \"A\": \"The video shows a spear-throw competition.\", \"video_name\": \"v_HURRgbZGz8Q\"}, {\"Q\": \"What type of clothes is the man wearing and what equipment is the other man carrying in the video?\", \"A\": \"The man is wearing a white T-shirt and shorts and is wearing boxing gloves. The other man is wearing a camo gi, focus mitts on both hands, and carrying kick pads in his left hand.\", \"video_name\": \"v_afMQA352X_A\"}, {\"Q\": \"What is the scene shown in the first cutaway?\", \"A\": \"The first cutaway shows two men shoveling snow in front of a house during the daytime.\", \"video_name\": \"v_l8gg9TYh_B0\"}, {\"Q\": \"What is the heaviest weight that the man lifts in the video and what does he do after lifting it?\", \"A\": \"The heaviest weight that the man lifts in the video is a barbell of 130 kilograms. After lifting the barbell above his head, he drops it to the floor.\", \"video_name\": \"v_Ds2O0-8Labs\"}, {\"Q\": \"What is the woman holding in front of her face in a photograph?\", \"A\": \"The woman is holding a paddle with the picture of the man she is standing next to on it in front of her face in a photograph.\", \"video_name\": \"v_k1QAWLupB-I\"}, {\"Q\": \"What type of objects are arranged in the arena for people to hide behind?\", \"A\": \"Cable drums and old tires are arranged in the arena as places for people to hide behind.\", \"video_name\": \"v_9UvVeUYQLgA\"}, {\"Q\": \"What is the man wearing while climbing the rock?\", \"A\": \"The man is wearing a grey west while climbing the rock.\", \"video_name\": \"v_dEpUIpmBvow\"}, {\"Q\": \"What is the woman wearing while she is shaving her legs?\", \"A\": \"The woman is wearing a red T-shirt, black & purple short track pants, and white sports shoes while she is shaving her legs.\", \"video_name\": \"v_EZyLBq2jJtE\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"Two kids and an elderly lady are playing. One of the kids is a little girl who is standing on the side of a porch. A little boy wearing a red shirt is a few feet away, while the woman holds her hands in front of her, first to the girl and to the boy.\", \"video_name\": \"v_2fzIi1lPd8U\"}, {\"Q\": \"What direction are the riders turning after clearing the second ramp?\", \"A\": \"The riders are visible turning left after they clear the second ramp.\", \"video_name\": \"v_C7yd6yEkxXE\"}, {\"Q\": \"What is the color of the coffee cup?\", \"A\": \"The coffee cup is mostly pink and has a butterfly painted on it.\", \"video_name\": \"v_IN23CO8Kotk\"}, {\"Q\": \"What was the tattoo design and where was it placed?\", \"A\": \"The tattoo was a stencil on the girl's wrist.\", \"video_name\": \"v_BFChXuwZ4wo\"}, {\"Q\": \"What venues did the boy play in?\", \"A\": \"The boy played in venues with multiple tables arranged next to each other and with dividers in between. He played against people of different nationalities in various venues.\", \"video_name\": \"v_9k19UUJtldg\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a performance by a group of five women belly dancers, entering the stage from the right and standing facing away from the audience, with their right hands up. They are dressed in different colored belly-dancing outfits, and are on a stage in an auditorium, which is lit from above and has a curtain at the back. Some members of the audience are holding up cameras. As the music begins, the women slowly turn around and start to belly dance. The video continues with the women dancing, and towards the end, as the music slows down, the women turn around and hold up their right hands in the air again.\", \"video_name\": \"v_hFi6S_guB7I\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a man standing in front of a fence, facing the camera. Behind him is a stadium that is lit by floodlights. The camera then cuts to footage of people scattered throughout the field. In the next clip, a person wearing a body cam is running on the kickball field. The camera then cuts to a man throwing the ball underhanded to waiting players, followed by a clip of a player kicking the ball into the air and running some distance. Another clip shows a man kicking a ball while wearing a bodycam. The camera then focuses on a man in a blue t-shirt wearing a bodycam, who is speaking to the cameraman. In the next clip, the same man runs towards the ball. The cameraman then focuses on another man wearing a black t-shirt and a kilt. This is followed by more bodycam footage of a man running on the field playing kickball. The video ends with a man speaking into the camera in a darkened room. Overall, the video seems to be a series of shots of people playing kickball, with some shots utilizing bodycams for a first-person perspective.\", \"video_name\": \"v_18yZR3NDaXM\"}, {\"Q\": \"Can you please describe what happens in the video in detail?\", \"A\": \"In the video, we see a woman standing in front of a kitchen sink with dirty dishes visible in it and a curtained door behind her. She turns on the tap, pours soap on a board, and starts scrubbing while speaking to the camerawoman. In the next clip, the woman is seen washing a plate in the same kitchen sink, with sunlight streaming through the window in front of her and light coming through the door beside her. She continues washing plates and placing the clean ones on the side of the sink. In the following clip, a young girl is shown speaking into the camera while cleaning dishes in the sink. The sink is filled with foam, and she holds up a handful of suds. The video ends with two girls cleaning dishes in the same kitchen sink.\", \"video_name\": \"v_BjjN_aq_wq4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man wearing a grey hoodie is speaking into the camera while holding a microphone in his hand. There is a woman wearing an apron over a black top standing to his right. They both look into a bathroom and start laughing before entering and then immediately stepping back out. The woman is holding a bucket and wiping her tears while they both speak to the camera. In the next clip, the man is standing in front of a closed toilet with a framed poster hung on the wall to the left. A corridor with red walls can be seen down the hallway from the toilet. In the following scene, the man is sitting on a rooftop on a plastic chair with his right foot in a tub with water, cleaning it before switching to shaving his right leg with a razor blade. The woman is standing beside him holding a mic as she speaks to him while the man shaves his leg and she runs her hand over his shaved calf. The video ends with the man walking toward the exit holding the bucket.\", \"video_name\": \"v_DJTvj9lfSWU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man wearing glasses and a white hoodie is seen standing in front of a sink washing dishes. He is in a kitchen surrounded by cupboards and other kitchen implements including a coffee machine. A microwave is mounted on the kitchen cupboard and there is sunlight streaming through a window in front of him. A potted plant can also be seen on the window sill. He is washing a tea strainer and talking to the cameraman, laughing and joking while doing so.\", \"video_name\": \"v_0BtHd6dvm78\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins with a man maneuvering a dinghy with white sails in cloudy daytime weather, with a pier visible in the distance. In the next clip, a dinghy with red and white sails is sailing fast in the sea, with the sailor wearing a red wetsuit. Following this, a dinghy with a white sail is seen sailing fast with the sailor maneuvering it. The video then shows more dinghies sailing fast on the water. In another clip, a man sitting on the hull side of the boat gives a thumbs-up, indicating a successful maneuver. Finally, the video ends with a sailor with red sails leaning flat on his dinghy and maneuvering it. Overall, the video depicts sailors sailing and maneuvering dinghies with different colored sails in varying weather conditions.\", \"video_name\": \"v_dKJMP8EmZjw\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a well-lit room with a man dressed in a shirt sitting behind a wooden desk. On the right side of the man, there is a visible laptop. A black desk mat placed on the desk has a shoe and shoe polish tin, and a glass vile containing a clear liquid. The man applies the liquid and the polish to a piece of cloth and polishes the shoe with it.\", \"video_name\": \"v_kGdxtU3NwWo\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a slideshow of images showing a man in a white shirt and glasses standing in a kitchen. A person's hand holding a phone up to take his picture is visible in one of the shots. The man is getting a haircut, and a boy wearing a grey hoodie and kippah starts trimming his hair with a trimmer, running it slowly in the middle of the man's head. As the boy trims the hair, another person walks behind the man getting a haircut and walks back. Other people also walk in and out of the frame in the background. Another person then takes the trimmer from the boy and continues trimming the man's hair. As the man's haircut ends, a man wearing a black coat brings out a chocolate cake, and the group sings. Finally, an image of the first man's face, smeared with chocolate cake, is shown.\", \"video_name\": \"v_b4xvXZq5uD8\"}, {\"Q\": \"Can you describe the entire process that took place in the video?\", \"A\": \"In the video, we can see a lot of dirty dishes in a mint green sink with two basins. A bottle of dish soap is placed on the sink. A person wearing a mask pours soap into a dirty pot and fills the sink with water. She scrubs the dirty pots inside and out with a scrubber and places the clean pots next to the sink. The woman then proceeds to wash a ladle and keeps it next to the clean pot. She cleans various dishes, rinses them, and places them next to the sink. Next, the woman tears a few pulls of kitchen towels to dry the clean dishes. She hangs them from a hook at the top and drains the sink. Lastly, she wipes the sink and its surroundings with a kitchen towel. Overall, the video shows a person doing a thorough job of cleaning a large pile of dishes with the use of dish soap, a scrubber, and kitchen towels.\", \"video_name\": \"v_aLb79wtvxoQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a man in a blue outfit standing by a well-lit stage with a pommel horse. He begins his routine by gripping the handles and doing a circle around the pommel horse, followed by scissors and a handstand, and other techniques. He then does a routine where he moves the length of the pommel horse in circles. He ends the routine with a handstand and an upside-down split. There is another athlete visible briefly in the background. The video ends as the athlete jumps off the pommel horse and turns towards the spectators.\", \"video_name\": \"v_KlgrI3Ngwv0\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, a group of children are seen wearing karate uniforms facing the instructor on a carpeted floor. They are doing various drills, including punch and kick drills along with movement, and are having difficulty with some of the drills. An instructor walks into the frame, and there is a mirror on the back wall covering the entire wall. The children make different stances, move forward and back while doing the drills. The video ends with the children turning towards the teacher.\", \"video_name\": \"v_jN-jnIgzd6k\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins with a boy wearing a bungee chord standing on a bungee platform with people standing behind him. There are trees visible in the background. The boy jumps to a countdown and a stream is visible at the bottom. The camera then pans to look down through the grate of the bungee platform. In the following clip, a woman is seen wearing a bungee chord and is strapped between two attendants wearing red t-shirts. Misty hills are visible in the distance from the platform. The woman jumps after counting down. Next, a man wearing a yellow t-shirt is seen ready to jump. He is strapped in a harness with two attendants on either side of him. He jumps by holding his hands wide open.\", \"video_name\": \"v_araMJB23T1s\"}, {\"Q\": \"Can you describe the steps taken to clean and restore the damaged leather sofa in the video?\", \"A\": \"The video demonstrates the process of cleaning and restoring a damaged leather sofa. A man can be seen in the video using a foam cleaner and a brush to clean the surface of the sofa. He then proceeds to degrees the damaged areas by spraying some cleaner on a towel and wiping the surface of the sofa. Next, he uses a scrub pad to sand the rough surfaces before applying the color refresh liquid with a sponge. He also uses a hair drier to dry the surface of the sofa. In addition, the man applies UV protection liquid on the sofa to keep it safe from sunlight. Finally, the video ends with a shot of the clean sofa.\", \"video_name\": \"v_dW6OZV43ulU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a little girl is seen in a kitchen washing a glass in the sink filled with water. A white spoon can be seen on the sink adjacent to the girl and a white plastic can is placed on her right side. The little girl is washing the glass under running water when suddenly the spoon falls down, making the girl look down. After finishing washing the glass, a woman wearing a white t-shirt appears and helps the little girl wash other utensils. They can be seen washing a spoon, a pot, and a plate with Dora the Explorer on it. The video ends with the girl washing a plastic jar, showing her learning to do household chores with the help of an elder.\", \"video_name\": \"v_JcAAwYpJhm8\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with a man serving a volleyball on a beach volleyball court. He is one of two players on a team wearing red vests, playing against the opposing team wearing blue vests, which is between Italy and Latvia. The presence of people sitting on seats and referees near the court can also be observed. As the Latvian team serves the ball, the Italian team hits it back, and one of the Latvian team members chases the ball near the boundary, saving it from going out, and then passes it back to their teammate. However, the Latvian team loses a point from the next exchange. In the next few clips, we see the Italian team playing against Brazil, with the latter winning the game. Latvia also plays against Germany and wins. Further, we see Brazil winning the game against Italy. The video ends with Latvia winning against Italy.\", \"video_name\": \"v_aYxni8ohTfU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man in black shorts and t-shirt is seen in a gym with two other people, one wearing a green shirt and another in white sportswear. The man jumps onto the parallel bar and begins his first routine by performing a handstand and swinging from the bars while holding on to both of them with his hands. He completes several maneuvers and finishes with a backflip, landing on a foam mat on the ground. In the next clip, he starts a new routine with another handstand and swinging routine. He then holds a position with his legs parallel to the ground while holding himself up from the bars and performs another handstand, followed by turning using one hand on the bar. He completes several backswings, but fails to stick the landing. He smiles at the camera as the video ends. There are other people visible in the gym, standing to the back and right of the man, throughout the video.\", \"video_name\": \"v_6Xsfwn5M6qs\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a man standing on the deck during daytime. He is wearing a dark blue shirt and khaki pants. There is a glass door framed in wood and the man is wiping it with a wiper. After some time, he picks up a smaller wiper from his right and wipes the glass again, then picks up the larger wiper and repeats the process. Afterwards, he sprays cleaning fluid on the glass and wipes it with a blue towel. Towards the end of the video, the man kneels down to wipe the bottom half of the glass door.\", \"video_name\": \"v_CecqF_uHeOI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video is a slow-motion footage of women playing water polo, as seen from both above and below the water. The shot begins from underwater, where several women can be seen kicking their legs. One player loses the ball and dunks into the water. The camera then moves above to show two other players swimming in place, searching for the ball. Suddenly, the player in front is pushed from behind and falls into the water, while the person who pushed her snatches the ball. Other players are visible on either side of the first two players. Overall, the video shows the intensity of the game as players compete to possess the ball.\", \"video_name\": \"v_7-taNK5mW8E\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"This video is a wood-chopping competition that takes place in a studio with overhead lights and boom mics hovering above. Four men are present, all wearing blue polo shirts and white trousers, holding axes in their hands. The competition consists of the contestants standing on blocks of wood placed on a stand on the ground and chopping the wood they are standing on as fast as they can. Wood chips are seen flying away from the logs, and two men turn around and start chopping the other side. The video ends with the winner, named Lawrence O'Toole, who is the first on the left, bending down to secure his axe after having chopped his wooden block completely and stepped away. Cameramen and other studio personnel can be seen at the back, and individual shots of the contestants are shown. The other contestants finish one after another and congratulate each other.\", \"video_name\": \"v_IcR28Yqt4mY\"}, {\"Q\": \"Can you describe the video of the high jump in detail?\", \"A\": \"The video begins with a man, Ukhov, wearing a green fluorescent vest, preparing for a high jump in an outdoor stadium illuminated by floodlights, as spectators watch from the stands. Ukhov starts off his run towards the high jump bar by running and small hops. Upon reaching the bar, he clears it by flopping backward over it. He then walks towards the side of the bar and away from the field. A clip of a man in the stands watching the jump is shown. The man turns away after the jump. Additionally, a little boy with his hand over his mouth can be seen standing beside him. Finally, the video shows a replay of Ukhov's jump.\", \"video_name\": \"v_B3xMfP_UOt4\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"The video depicts a ship in the sea during the daytime, with a hill visible in the distance at the shore. The ship is dangerously tilted towards the left and appears to be on the verge of capsizing, while all its sails are fully deployed. Another group of people can be seen approaching the ship in a motorboat. The video ends with the camera panning around the motorboat and the surrounding area. There are no visible signs of distress or emergency response. Overall, the video captures a dramatic and potentially hazardous situation on the high seas.\", \"video_name\": \"v_4XnXyKYxnQQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video takes place in a well-lit gym and starts with a woman wearing a black outfit and boxing gloves punching into a punch mitt worn by a man. She then proceeds to kick the kick pads worn by another man, and kicks the focus pads worn by a third person. After repeating these steps a few times, the man who wore the punch mitts is now wearing boxing gloves and starts to practice punching it again. He then kicks the kick pads and focus pads, and returns to the woman wearing the punch mitts. These steps are also repeated a few times. Finally, the video ends with a screen showing the contact information for the club they belong to.\", \"video_name\": \"v_hq48S65dlyo\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with a photo of a little boy standing in a parking lot wearing a black t-shirt and holding a juice box in his left hand. At the back end of a white van behind him, there are two skateboards, and a blue cooler with a can of Red Bull is kept next to the boy. In the next clip, the boy is seen wearing a helmet and skating on a sidewalk during the daytime with parked cars visible on the street to his left. Succulents are planted along a wall on the sidewalk. In the following scenes, the boy is seen skating through a tunnel, jumping down a concrete bench in a skateboarding park, and skating up a ramp. The boy can be seen skateboarding on various ramps while wearing a helmet, kneepads, and elbow guards. However, he also falls in a few instances when he jumps off a ramp and once when he reaches the top of a ramp. The video ends as the boy is skating on a sidewalk and waving at passersby. In the end, there is a photo of the boy smiling with grease stains on his face.\", \"video_name\": \"v_gWbIoFrpwTY\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video features a group of people salsa dancing on a well-lit wooden floor while a person holding a phone records on the left of the camera. The men participating in the dance have a piece of paper with a number on it, attached to their backs, with one man wearing a purple dress shirt with number 3 dancing to the left. Throughout the video, the dance floor is illuminated with spotlights while the rest of the hall appears dark. It is a visually stunning display of graceful movement and excellent choreography.\", \"video_name\": \"v_eoSwoeLmeyQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a man standing on a circular platform within a cage in a field while holding a hammer attached to a grip by a cable. Another man in a blue shirt can be seen walking away from the cage. The man on the platform swings the hammer around his body twice and then swings it two more times while also turning. On the fifth swing, he releases the hammer through the open side of the cage. The video ends with the hammer landing quite far from the cage while a few spectators off-screen applaud. Prior to releasing the hammer, the man on the platform is seen speaking to people out of frame on the other side of the cage, with his back turned to the open end of the cage.\", \"video_name\": \"v_1d_U_2HIPmY\"}, {\"Q\": \"Can you describe the video scene with the crying girl and the people in the salon?\", \"A\": \"In this video, a young girl is seen crying while wrapped in a hairdressing cape and sitting on a barber chair in a well-lit salon. There are other chairs visible around her, with some people sitting in them. The girl refuses lollies brought by a woman and continues crying as the barber begins cutting her hair using a comb and scissors. The woman then sprays water on the girl's hair and moves to the back to cut her hair there. She combs the hair at the back of the girl's head and does some touch-up cuts before the end of the video.\", \"video_name\": \"v_Hz7-mBFGsSs\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video shows a lacrosse game taking place on a field, with two teams playing against each other. Spectators are sitting on lawn chairs outside the area, and there are trees visible in the distance from the field. The camera follows Cole Fowler, who is wearing a white jersey, as he attempts to check the ball from the other team members. Throughout the game, Cole tries various methods to check the ball. Towards the end of the video, Cole can be seen running and avoiding a player from the opposite team. Overall, the video seems to capture the intense and competitive nature of a lacrosse game.\", \"video_name\": \"v_B_U7vUtoCKY\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video is about a woman kayaking down a rapid river during the day. She is wearing a life vest and a white helmet while navigating an orange kayak down the eddy. Trees are visible on either side of the banks. As the woman rows down the eddy, she turns into the turn and stops. She starts speaking to the camera explaining how to make turns while rowing. The video ends as the woman finishes her instructions.\", \"video_name\": \"v_7pfHxav4b0U\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man wearing a black polo shirt is seen speaking to the camera in a well-lit gym, while a woman wearing a grey top stands next to him. Behind them is a resistance trainer and other exercise equipment is visible in the gym. Through a window in the far wall, parked cars can be seen outside. The woman climbs onto the resistance machine and starts pedaling as the man continues speaking into the camera. We also get a close-up view of the instrument cluster on the resistance machine as the woman adjusts the settings. The man then picks up a book from a sofa behind him but continues speaking until the end of the video.\", \"video_name\": \"v_htzAYwoAZkg\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, Kevin Spacey and tennis player Rafael Nadal are on stage wearing tuxedos amidst Bogo lights. As they walk to the other side of the stage, a screen displays an image and three people in white hats bring in a ping pong table with paddles and balls. Nadal serves and Spacey wins the last game. The video ends with a woman garlanding Spacey.\", \"video_name\": \"v_ijrjRNwZjqQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"This video shows windsurfing enthusiasts riding the waves in the sea during the day. The video starts with a view of the sea with several people windsurfing against the waves. Some of the windsurfers are highlighted, including a boy in an orange and black wetsuit. We can also see different colored marker buoys in the vicinity and a person in a white motorboat moving among the surfers. As the video progresses, we see a woman assembling her sailboard on the shore, while in the next clip, a woman is falling into the sea and climbing back onto her sailboard. The sail seems to have fallen into the water too. Throughout the video, we see different people windsurfing, and the camera follows individual surfers one after the other. Also, we can see a large ship in the far back and other structures near the horizon, such as a smokestack of a power plant. Eventually, the video ends with text on a black screen indicating the conclusion.\", \"video_name\": \"v_IhmtmKxEU40\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins by showing a man sitting at the edge of a pool with a toddler sitting on the wall. Other people are visible on the other edge of the pool. A person jumps into the pool, causing a splash. The toddler bends forward and playfully splashes water on her face while the man holds onto her. She appears happy and excited. Meanwhile, a boy with a towel draped over himself walks toward the toddler and stands beside her for a moment, before walking back. In the background, a person wearing a green swim cap can be seen swimming some distance behind the man. As the boy leaves, the toddler, still giggling, again washes her face with pool water. The video ends with the toddler attempting to stand up before sitting back down again, possibly indicating her reluctance to leave the pool.\", \"video_name\": \"v_3zpODTqnYLs\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a young girl sitting on a carpeted floor, surrounded by people lounging on a sofa at the back, who are watching something on a screen. She is wearing a blue T-shirt and is seen shaving her left leg while occasionally speaking to the camera. The room appears to be dark with little light, occasionally lit up by flashing light from the screen. She wipes her razor on a yellow paper and continues to speak with people around the room while shaving. As the video progresses, we see people lounging and chatting around the room. The video ends as she gets up and walks back while everyone else remains seated. \", \"video_name\": \"v_1KONAdZGdWU\"}, {\"Q\": \"Can you describe the video in detail, including the man playing the saxophone, the backing musicians, the stage, the audience, and the shots shown in the video?\", \"A\": \"The video depicts a man wearing a black suit and white shirt playing the saxophone on stage while backed up by other musicians playing various instruments farther back from him. The stage has red floors, a set of stairs in front of him, and a blue-curtained background. There are also a music stand with a transparent top placed next to him. The audience is visible sitting a few feet from the staircase, and the auditorium appears to be full. The video alternates close-ups of the saxophonist with cutaways of the backing musicians playing their instruments. Additionally, a shot of a wide-angle view of the audience sitting on both the ground floor and the balcony is shown. Finally, the video ends with the saxophonist dominating the stage and his performance before the audience shows their appreciation by applauding him.\", \"video_name\": \"v_DIhyfNJAm-M\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a woman in a small gym wearing a grey t-shirt and black track pants. There is sunlight streaming from an open door in front of her and other exercise equipment around her. She is seen holding a bar without weights in her hands and practices the movement patterns of weightlifting by lifting the bar over her head. In the next clip, a barbell with red colored weights is placed in front of her. She then bends down and lifts the barbell, following the movement patterns she practiced before. The gym floor is made of concrete.\", \"video_name\": \"v_K6QunmuTZOQ\"}, {\"Q\": \"Can you describe in detail what is happening in the video?\", \"A\": \"In the video, a man wearing a black sweater vest over a grey shirt is shown ironing a dress shirt on an ironing stand in a well-lit room. On the left side of the man, there is a small wooden drawer with several white clothes hangers piled under it. The man irons one section of the shirt at a time, including both sides of the arm. Once he has finished ironing the shirt, he places it on a clothes hanger before starting to iron another small portion. The man hangs the ironed shirt among the other already ironed shirts.\", \"video_name\": \"v_l7qSKJyq6mA\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, we see a woman lying down in a well-lit studio while a tattooed man pierces her belly button with a needle piercer. He inserts jewelry and secures it with a ball after screwing it on. Throughout the video, the woman can be seen speaking to the person holding the camera. Once the process is finished, the woman gets up.\", \"video_name\": \"v_2VZumBKJuPs\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins with four women standing on the grass outside, with two palm trees visible in the background and a hedge wall. The women start dancing with synchronized moves while listening to music. They are dancing during the daytime under the shadow of a tree. The dance continues until the song ends, and the women finally turn to look at the camera. Overall, the video depicts four women dancing together in a synchronized manner in an outdoor setting with palm trees and a hedge wall in the background.\", \"video_name\": \"v_7EeO9V2B574\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a man and a woman dressed like characters from the Street Fighter game standing under an overpass during the daytime. They take a fighting pose in the shadow of the overpass, with a wall bearing graffiti behind them. They start fighting and move around during the fight, eventually moving away from under the overpass. During the fight, a green field is visible next to the path they are fighting on. The fight continues for the rest of the video with them moving around as they fight. Finally, they take a fighting stance under the underpass again. Throughout the video, there is no audio and the focus is solely on the fight scene.\", \"video_name\": \"v_IgDBDaIoNAM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with players wearing orange uniforms playing field hockey on a hockey field. In the next clip, several players are present on the field, leaning forward and anticipating a player to hit the ball. In the following clip, several girls from other teams are introduced and individual players are speaking into the camera. Then a coach is seen instructing players. The next few clips are of players standing on the field and getting instructions while individual players are being interviewed. A still photo of a team is shown. In the next clip, a play is shown with players on the field chasing a ball, and two teams are visible. The coach is speaking into the camera during the game. The video ends with a goal in the game by a player in an orange uniform.\", \"video_name\": \"v_325CAs4hhq8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a man wearing a grey shirt, sitting in a dimly lit room with an accordion strapped to him. He is seated next to a wall that has framed Spanish sayings on it, and there is a bookshelf visible behind him. To his right is a door frame. The man briefly speaks before starting to play the accordion, and the video continues to show him playing until he finishes.\", \"video_name\": \"v_CTJej0rZMiI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a man in an olive suit playing piano while people stand around the hall listening to him. The hall is illuminated by overhead lights. A woman wears a scarf and walks up to the man to speak to him briefly, and a man in a black jacket dances near the far wall. As soon as the woman starts to sing while the man plays the piano, a man in a white jacket walks behind and to the right of her, and a man in a red shirt holds a coffee cup near the wall to her left. People look at the dancing man and cheer. After he finishes dancing, the video continues with the man playing the piano and the woman singing. The video concludes with both the man and woman completing their performance, and the man getting up to hug the woman.\", \"video_name\": \"v_CTyvQHkAKuY\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video takes place in a well-lit gymnasium with a balance beam surrounded by foam padding on the floor. Judges are situated by the edge of the padding behind a table. There are people visible on the balcony looking down towards the gym, and chairs available for people to sit on the balcony. Other people are sitting or standing across the gym. A girl walks towards the balance beam and begins to perform her routine, which includes a backflip, jumps, balancing, and skips on the beam. She finishes with a running front flip off the balance beam and lands on the ground with a celebratory flourish. At the end of the video, another contestant can be seen getting up to perform, and other people in the gym can be seen clapping.\", \"video_name\": \"v_3M290KZV5lo\"}, {\"Q\": \"Could you describe the video in detail?\", \"A\": \"The video starts by showing a man sitting on a red chair, wearing a green sweatshirt, and peeling a banana. He places a single black dress shoe on each thigh and uses the banana peel to clean one of the shoes thoroughly, wiping all sides before holding it up to the camera. He then throws the used peel to the side. Next to the man is a visible curtain. The video ends with an advertisement for a shoe polish.\", \"video_name\": \"v_itXYuf_Cj_Q\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video features a little boy who starts playing the violin while standing in a well-lit room. Behind him are two pianos and in front of them is a woman with her back facing the camera, playing one of the pianos. The boy continues to play the violin throughout the video, and towards the end, he forcefully finishes the last three notes. Overall, the video showcases an impressive display of classical music performed by a young boy and a woman playing the piano.\", \"video_name\": \"v_JspVuT6rsLA\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins at a polo field where players are seen playing during the daytime. Throughout the video, players are seen striking the ball with their mallets while others ride on horses to catch up with the ball. The spectators can be seen walking down the stairs of the seating area, wearing sunglasses due to the direct sunlight on the seating area. The players from both teams compete to strike the ball while the referee throws the ball to the ground. The trees close together can be seen outside the polo field. The game continues with players fighting for the ball and a group of spectators standing and clapping. The team wearing green polo shirts wins the Barbour Cup and holds a cup below a banner with the same text. A man in a black suit and a white hat holds up the banner while spectators can be seen clapping and congratulating the winners. The video ends with a black screen with the email \\\"BARBOUR.COM\\\".\", \"video_name\": \"v_cPIsE2ZCWzM\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"The video starts with an upside-down view of the mid-section of a bicycle. A person then holds up various bottles to the camera, along with a tool. The man is wearing a blue polo shirt and sits on the bike to tinker with it by removing the crankset. He wipes the grease off of the crankset and bottom bracket using a paper towel and applies a substance from a tube on the bottom bracket, spreading it with his finger. He then reattaches the crankset and tightens the bolt before testing the pedal to end the video.\", \"video_name\": \"v_IL8__uSFpqg\"}, {\"Q\": \"Can you describe the details of what happens in the video?\", \"A\": \"In the video, a woman wearing a white t-shirt and shorts plays squash in an empty, well-lit room with light wooden flooring and white walls on all sides. She strikes the ball on different sections of the walls and follows the ball as it bounces back. The woman makes a few more strikes until she walks to the middle of the hall after a strike and stops.\", \"video_name\": \"v_JguRZtFN-Ck\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video is a series of clips showing several people diving off two diving boards into a swimming pool. There are people sitting near the walls of the pool as they watch the divers. The divers perform various types of dives, including backflips and front flips. One man is seen doing a backflip dive from the edge of the diving board, while another man does a front flip dive. A woman is also seen doing a dive at one end of the pool while some of the other divers perform their flips. The video ends with a man jumping off the diving board and flipping horizontally into the pool. Overall, the video showcases the skill of the divers as they perform various dives in a swimming pool.\", \"video_name\": \"v_cFOaL4Ir4hg\"}, {\"Q\": \"Can you describe what happens in the indoor volleyball game between USC and BYU?\", \"A\": \"In this volleyball game played indoors, two teams - USC and BYU played against each other. The game was watched by a full seating area and spectators. There was also a visible scoreboard high up, and balcony seating that was full of people. During the game, the team on the right got the ball and passed it between themselves four times before passing it to the other team. The other team started celebrating before they had won the game, and then the ball lands by them, leading to their loss. The first team celebrating their victory can be seen at the end of the video.\", \"video_name\": \"v_BdRH3lpopLQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a woman tennis player wearing a white top and teal shorts practicing her serve on an outdoor tennis court. A basket with tennis balls is seen a few feet behind her while a street with a parked truck is visible to the left and trees line the edge of the court. We can also see a man wearing a white t-shirt and black shorts on the right side of the court. As the woman serves, we can see the ball hit the opposite wall and bounce off the black wall. The woman proceeds to practice another serve with another ball which also bounces on the other side of the court before hitting the black wall.\", \"video_name\": \"v_JHKAcpYlxkQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts by showing a hockey field with two teams of girls playing. One of the teams is wearing blue while the other is wearing green. The field is surrounded by parked cars. The video follows a girl in the blue-wearing team who is wearing the number ten jersey as she maneuvers the ball toward the goal. She is briefly intercepted by a girl from the opposing team who is wearing a number nineteen jersey, but manages to regain possession of the ball. The girl runs towards the goal and, after being intercepted again near the end of the video, kicks the ball into the goal. Overall, the video captures a competitive game of field hockey between two teams of young girls.\", \"video_name\": \"v_1xBdquA6dx8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video opens with a black screen displaying the web address for Vandaliss.com. We see a man wearing a white t-shirt and a backward-turned cap, along with a backpack, speaking to a crowd of people. There are other people visible around the man as he speaks. After finishing his speech, a man in a black outfit enters a white sheet on the ground and begins breakdancing, followed by the man in the white t-shirt who also dances for a moment and interacts with the crowd. As this is happening, a family can be seen walking by in the background. The man in the white shirt later enters the dance area with another man, and they perform a head spin. The video concludes with some people addressing the camera.\", \"video_name\": \"v_kdOsmDACtqw\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a toddler is sitting on a vanity table that is filled with different makeup products and bottles, while a hair straightener is plugged into an outlet on the left side of the table. The room is well-lit with a mirror reflecting the toddler's image in the background. Her hair is rolled with hair rollers which were taken off by her mother in the next clip. The mother fluffs the toddler's hair and she herself checks out her hair in the mirror before the video ends.\", \"video_name\": \"v_kIFHChO_-vg\"}, {\"Q\": \"Can you describe the video tutorial on how to play an octave in a harmonica?\", \"A\": \"The video tutorial shows a bald man wearing a white shirt demonstrating how to play an octave in a harmonica. He begins by explaining how different holes on the harmonica can produce different sounds. He shows the correct positioning of the harmonica near the mouth and how to blow on it to produce the desired sounds. The video ends with the man playing an octave and double notes on the harmonica. Overall, the video provides a step-by-step guide on how to play an octave on a harmonica.\", \"video_name\": \"v_5P9Tbut04xE\"}, {\"Q\": \"Can you describe the video content in detail? \", \"A\": \"In the video, there are three women wearing gym clothes standing in a studio with a wood floor. The studio is lit by yellow lights with mirrors on the right wall, and windows visible high up on the left wall. Furthermore, there are punching bags hanging from the ceiling at the back. These three women are standing in a triangle formation and start to dance to music by moving left and right while moving their hands. Their reflection can be seen in a mirror all the way at the back of the gym. The dance involves both slow and fast movements which they continue until the music stops. The lead dancer walks up to the camera as the music ends.\", \"video_name\": \"v_7gaC3b5nJqs\"}, {\"Q\": \"Can you describe the content of the video in detail?\", \"A\": \"The video begins by showing a blue toothbrush in front of the camera in a room with a green wall and a painting of flowers hanging on it. The camera shows an open door at the end of the room and a bed with two white and an orange pillow. Next, a girl wearing a white t-shirt appears, smiling at the camera while brushing her teeth with the blue toothbrush. The camera captures the brushing motion and toothpaste inside her mouth. Finally, she removes the toothbrush from her mouth, still smiling, and the video ends. \", \"video_name\": \"v_15yU0R2MBQM\"}, {\"Q\": \"Can you describe in detail what the woman in the yellow kayak is doing in the video?\", \"A\": \"In the video, a woman in a yellow kayak wearing a life vest and a white cap is demonstrating how to properly use the paddle to turn the kayak. She is stationed in a calm river that is visible during the daytime. The backdrop consists of hills covered with greenery in the far background and a shore on the right with trees. The woman starts by doing a reverse sweep, which involves turning her torso to her left and sweeping the left paddle from back to front. This motion causes the kayak to turn to the left. She repetitively performs this action, after which she switches sides; doing a forward sweep with the left paddle and a reverse sweep with the right paddle. Finally, she repeats this action once more. The video ends with the woman addressing the camera, followed by contact information for 'Expert Village' displayed on the screen.\", \"video_name\": \"v_kgz7c2kb4Rg\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with the words \\\"Grass Tumbling\\\" appearing on a black screen, followed by a negative photo of a girl with the words \\\"Warming Up\\\" in the next shot. The girl, wearing different outfits throughout the video, is seen performing various gymnastics moves such as backflips, back handspring tucks, and running front flips. The surroundings change from a garden with green plants and a hedge visible in the background to a park with trees visible in the background. In the end, the girl performs a tumbling sequence by flipping backward and doing running front flips, while the names of different moves done by the girl are named. Although in some clips, she stumbles or lands unsteadily, her skill and grace are evident throughout the video.\", \"video_name\": \"v_0k0xNs8Zjb4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a group of people playing water polo in a swimming pool during the daytime. Spectators can be seen sitting on bleachers on the poolside watching the game. The players are trying to get the ball at one of the corners of the pool, specifically two players in one instance. A clip of a player throwing the ball towards the goal gets intercepted by an opponent. Afterwards, all the players swim back as the goalkeeper throws the ball back. Another attempt to score a goal is made, but it gets stopped by the goalkeeper at the end. \", \"video_name\": \"v_9pavfCL1HvU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the beginning of the video, an old woman enters a house and proceeds to watch a movie on the sofa. Her daughter enters the living room from a door on the right side and sits next to her. Meanwhile, two women enter the house carrying a flower pot, one wearing a blue outfit and the other wearing pink. The old woman eats popcorn while they are in the room. The following day, the old woman and her daughter are sitting on the sofa conversing. Later in the video, two old women are sitting at a table drinking coffee. One woman wears a dark green sweater while the other wears a blue vest over a yellow outfit. Another woman joins them at the table and they continue to talk until the end of the video. The whole video takes place in a well-lit living room.\", \"video_name\": \"v_i5qTK0mInTc\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video portrays a game of water polo being played in a swimming pool. The pool is well-lit with lights along the top of the walls, and people can be seen standing on the poolside. The players are scattered in the pool and can be seen converging towards a goal post. One of the players makes an attempt to score a goal, but the goalkeeper successfully deflects the ball. The spectators are sitting on a bench alongside the poolside and are wearing red shirts or swimwear. A man dressed in a white outfit is seen blowing a whistle. The game subsequently continues with one of the players retrieving the ball from the edge of the pool, and the game starts again. Players can be seen passing the ball to their teammates, and eventually, one of the teammates near the opposite goalpost scores a goal. The video clip concludes with the players swimming away.\", \"video_name\": \"v_EK7qW-oavQY\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"The video starts with a logo and website for HuntinClub.com. Then, a man wearing a beige shirt and cap on a green lawn golf course draws the string of a compound bow with an arrow notched in it. He shoots the arrow towards trees and shrubs in the far back. In the following clip, he is joined by a man wearing a blue polo shirt and grey cap who is standing a few feet to his right. The archer draws his bow and shoots an arrow before handing the bow to the man with the blue shirt. The man instructs him on how to grip the bow before returning it to the archer who takes aim and releases the arrow again following the instruction. The man in the blue polo shirt walks away at the end of the video after giving the instructions.\", \"video_name\": \"v_jCxQQ9DMpT0\"}, {\"Q\": \"Can you describe in detail what happens in the video of Stefan Holm performing the six degrees of jumping?\", \"A\": \"The video shows Stefan Holm from Karlstad, Sweden, performing six jumps as part of his jumping routine. In the first clip, he successfully jumps over a horizontal bar on an indoor field while being watched by several people. The second clip shows him attempting the California roll, jumping over a pole, but failing and knocking the pole down. He retries the jump and is successful. The third-degree jump, called the 'Holm Roll,' is demonstrated by him rolling over the bar. A cameraman records him as he completes his jump. In the fourth-degree jump, called the 'Stradle,' he jumps with a sideways turn and being parallel to the bar. He repeats the jump, then adjusts the bar to the next level up. The fifth-degree jump, called the 'Scissor kick,' shows Stefan performing this jump by jumping one leg after another over the bar in several clips. The sixth-degree jump, called the 'Fosbury Flop,' has Stefan running towards the bar and jumping over it backward. Overall, the video showcases Stefan Holm's impressive skills in performing these six different types of jumps.\", \"video_name\": \"v_4NPVpI9zUpI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video showcases a girl and a boy both wearing black outfits, running on a track during the daytime. As the girl runs, she jumps over several obstacles before reaching a sand pit where she performs a high jump. In the background, buildings including a smoke stack can be seen. The sky is filled with cloudy weather. The boy also runs on the track, dodging obstacles and finally jumps into the sand pit. The shot of the boy's run is replayed a few times to showcase his jump. Overall, the video portrays the athletic abilities of the two individuals who are determined to perform their best in a challenging context.\", \"video_name\": \"v_Ku76zinwWkg\"}, {\"Q\": \"Can you describe in detail what happens in the paintball park in the video?\", \"A\": \"The video starts with a group of people wearing paintball helmets and carrying paintball guns, standing around in a paintball park with false walls in the back while conversing. The cameraman finishes giving instructions and runs forward while shooting people in the distance. During the shooting, a person wearing an orange shirt is visible. On the shooter\\u2019s right, there is a net separating the park from the outside. The shooter continues to move and shoot, and a few people crouched in front of him hold their hands up and walk back as he approaches. People can be seen walking back towards the exit with their hands up, and the video ends with the shooter still shooting and avoiding being shot. All the people are wearing hoodies over their helmets, giving the video a game-like feel. The video seems to be shot from first-person perspective as the cameraman is actively shooting while moving throughout the park.\", \"video_name\": \"v_Hy54nZSDxTk\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video depicts a women's field hockey match being played in an outdoor hockey rink with green ground, fenced off at the boundary. The field is surrounded by a lawn where people are visible sitting and watching the game. Two teams, one wearing white and the other wearing dark blue are playing against each other. The video follows the gameplay of a single player on the dark blue team named 'Jessica Skillings'. The game begins with Jessica scoring a goal followed by her team's celebration. The clip shows another goal scored by Jessica and her team's celebration. The video ends with Jessica scoring another goal and the team's ecstasy. The digital scoreboard is displayed at the end of the video, showcasing the final score of the match.\", \"video_name\": \"v_KApqxr02rcQ\"}, {\"Q\": \"Can you describe the details in the video of a man shoveling snow?\", \"A\": \"In the video, a man dressed in a blue jacket is seen shoveling snow from a sidewalk. The sidewalk and lawn on two sides are covered with snow, and the sky appears cloudy. A tree covered in snow is seen next to him, while snow-covered trees can be viewed down the street from the man. The man seems to be slowly clearing the snow while walking forward, with the edge of a car visible behind him. This video presents a serene winter scene with a man carefully shoveling snow off the sidewalk.\", \"video_name\": \"v_BBKSKU6dGGk\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In this video, we see a man wearing a black polo shirt and shorts, standing indoors behind a barbell laid on the floor. Behind him, we can see a closed shutter, and a door is visible on his left side. There is a fan installed on the right wall, with pipes running near it. The barbell has multi-colored weights on it. The man bends down and squats to lift the barbell. Then, he lifts the barbell over his head and drops it to the floor. Later, he walks towards the side and turns back. The video ends with another man wearing a white t-shirt who comes into view on the right.\", \"video_name\": \"v_-HpCLXdtcas\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video is shot inside a gym and starts with a girl holding a volleyball. There are two teams playing on a court, and spectators are seen sitting on chairs next to the wall. The wall behind the second team has paw prints as a design, and a digital scoreboard is visible on the top of the same wall. The girl serving from the first team dribbles the ball and serves it to the opposite team. A girl from the opposite team strikes the ball, but the ball goes outside the court. An umpire can be seen standing on a ladder next to the net. The ball is passed back to the first team to serve again, and the same girl serves the ball once more. The video ends with a member of the opposite team hitting the ball outside the court.\", \"video_name\": \"v_9VtxNvLx6zA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The black and white video starts with a man in a wooded area chopping wood with an axe. The man is standing on the grass with a log placed upright in front of him. There are trailers visible in the back along with a truck. A tent with a parked bike in front of it is set up some distance in the back from the man. A foldable table with chairs is visible at the back and right of the man. We see the man strike the log with an axe and the wood breaks into pieces. Finally, the man sticks the axe to the ground in front of him.\", \"video_name\": \"v_AwgGYaV1lT0\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video is about a Tai Chi practitioner in a black uniform practicing Tai Chi outdoors on a concrete floor surrounded by trees. The video opens with a white screen featuring a drawing of a woman in a Tai Chi pose, the yin-yang symbol and the words \\\"TAI CHI CHUAN YANG\\\", and a red screen with the words \\\"Tai Chi Chuan Forma 8\\\". The man goes through several stances by moving his hands and feet slowly over a few minutes, interspersed with short periods of rest, before winding down his practice. There is also a flight of outdoor steps visible with two people sitting on top, a few feet apart. Overall, the video showcases a peaceful and well-controlled Tai Chi practice session in a serene outdoor location.\", \"video_name\": \"v_0X0u_3xUBPE\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins with a shot of a backyard of a house where there is a lawn and a tree by the fence that stretches around the yard. The view beyond the fence includes several trees. Then a man carrying an axe in his right hand walks in slow motion toward a chopping block where a log is placed. As the man swings the axe down on the wooden log, it cracks in the middle. After swinging the axe again, a slight crack appears on the log. Meanwhile, a dog jumps up and down near the man on his right. When the man swings the axe down again, a piece breaks off before the log finally breaks and falls on the ground. The dog then walks closer to the log and runs back just as the axe is coming down. Finally, the video ends with the man throwing the axe in front of him and walking towards the camera.\", \"video_name\": \"v_iABuDhagUm8\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"This video starts with text about the video, followed by an old man wearing winter clothes, a hat, and sunglasses sitting on a mobility scooter outdoors during the daytime. Tables and chairs are arranged neatly near him in rows. He starts to play the harmonica and looks into the camera while playing. As he finishes playing, he laughs and speaks to the camera, ending the video. Overall, this video features an older man showcasing his talent on the harmonica while in an outdoor setting with arranged seating nearby.\", \"video_name\": \"v_jt-Vnap5KP4\"}, {\"Q\": \"Can you describe the details of the video content?\", \"A\": \"The video starts with two men in a playground during the daytime. One man is holding a skateboard while the other is sitting down. Next to them is a fence with a garden in it and people are visible sitting on benches some distance away. Shortly after, the man with the skateboard begins to perform flip tricks while skating. People can be seen skating in the background as he continues to skate and do more flip tricks. The video ends with the man still skating.\", \"video_name\": \"v_agu58IVL7IQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a man participating in a disc throw competition in front of a large crowd of spectators. The man is positioned in the middle of a netted area which has an opening on the side for throwing the disc. He begins by spinning to create momentum and then throws the disc. A referee marks the spot where the disc lands and replays of the throw from different angles are shown. The video also includes several clips of the man making different disc throws in succession.\", \"video_name\": \"v_9AfQ2Q-96oE\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video is titled \\\"Slant Flying\\\" and starts with the text appearing on a black background. The scene then transitions to a man wearing all-black clothing standing on a sunny lawn with trees and other plants in the background. He begins to demonstrate a tai chi practice by showing each stance and instructing on the proper hand and leg positions. He showcases the leg and hand positions by physically demonstrating them himself. The video continues with the man instructing on different hand and leg positions for the duration until the video ends.\", \"video_name\": \"v_A904-cbaYDw\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins with a few blurry black-and-white frames where a woman is doing a pirouette, set to the song 'Let it Go' from the movie Frozen, which continues playing throughout the video. We then see different shots of single and multiple people in different ballet poses. There is a black and white shot of a woman in black clothes dancing inside a large building with a wet floor. Another woman is dancing on a white stage with a white background. The next few shots are of different women continuing to dance. There is a group of dancers in green outfits dancing on stage with a black background and overhead lights. A clip of a girl in a white tutu on a black stage is dancing. Another girl is dancing in front of an empty stage with chairs on it. We also see a clip of a man on a white floor with a plastic background doing a pirouette and jumping in the air. The video continues with shots of the same people from the beginning in various poses. We see a woman in an empty ballet studio practicing different poses in front of a mirror. The video ends with more shots of single and multiple women dancing in different poses.\", \"video_name\": \"v__B7rGFDRIww\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"In this video, there are two people standing on an indoor basketball court, with many frames hanging on the far wall. One of the individuals is a boy holding a basketball and the other is his coach. The coach appears to be instructing the boy as he proceeds to dunk the ball through the basket. The boy catches the ball as it comes through the basket and continuously dunks the ball by jumping high. He successfully dunks the ball from either side of the basket while jumping. Overall, the video captures a coach and his student practicing and perfecting their dunking skills on a basketball court.\", \"video_name\": \"v_5tFfEA1JWjA\"}, {\"Q\": \"Can you describe the video?\", \"A\": \"The video starts in a darkened auditorium, and the lights on the stage turn on to reveal a group of dancers. There is a screen at their back with a projection on it. As the women start dancing, darkened silhouettes of people wearing headphones can be seen sitting in front of the stage. The dancers go through various moves, showcasing their skills before converging for a final bow.\", \"video_name\": \"v_AQnp2QAnwI0\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a team of cheerleaders is seen running into an indoor basketball court and waving towards the spectators as they enter. There are people standing near the team, as well as a photographer and a few judges seated behind a table. The stands are crowded with many people. The cheerleaders start their routine by forming bases and performing a basket toss, where a group of bases lift and throw flyers into the air, who perform various acrobatic moves before landing back down. They then proceed to break apart and stand in formation some distance from each other. They perform flips and reform into bases to start another stunt, throwing several flyers into the air, and executing different poses as they are held up. The cheerleaders continue doing various routines with different formations and stunts until they end with another stunt.\", \"video_name\": \"v_ANaMmXJFE54\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts in a gym that is illuminated by overhead lights. The gym features several balance beams that are fixed to the ground with foam pads lining the floor to provide cushioning. The wall of the gym is adorned with numerous flags. A man walks up to one of the balance beams and mounts it, exhibiting various gymnastics moves with impressive balance, including a backflip and several spins. He concludes his routine with a jump onto a mat, incorporating a flip as part of his landing.\", \"video_name\": \"v_7orO93DICYw\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video takes place in a field where a high jump contest is being held. The scene shows a horizontal bar with an elevated foam pad next to it, and two people standing on each side of the bar while a referee with a notepad is watching the competition from a distance. In the background, we can see a group of people sitting on chairs and on the ground. The competition starts and we see several girls running towards the horizontal bar and attempting to jump over it. The jump either succeeds or fails, and the man standing near the bar holds up a specific color flag depending on the result. As the competition progresses, the height of the bar increases. Finally, the video ends with a girl running towards the bar and jumping over it, but unfortunately knocking it over. Overall, the video is a depiction of a high jump competition where athletes compete to jump over a horizontal bar while gradually increasing its height.\", \"video_name\": \"v_9hTcvGUnMBs\"}, {\"Q\": \"Can you describe what happens in the video with the boy mowing the lawn?\", \"A\": \"In this video, a boy is seen holding the handle of a lawn mower in a yard with a black car visible next to it. The yard is located next to a street from which a line of houses is visible. It appears to be daytime as the boy struggles to move the mower and begins mowing one corner of the yard. Before starting, he switches on the mower and moves it forward. The video then shows the boy starting in the next patch of lawn by moving the mower forward and back. In the process, he gets stuck in a subsequent patch and pulls back the mower while the front end of a silver sedan is visible in the driveway next door. Finally, the video shows a shot of the boy from afar as he starts to mow the lawn from the edge of the yard.\", \"video_name\": \"v_60tIsGR0Zzg\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"The video is a demonstration of a bartender making a cocktail. The bartender is standing behind a well-lit bar with bottles of drinks behind him on shelves. He is wearing a black vest and tie over a white shirt. Using a jigger, he measures quantities of various spirits, mixes them with a tea whisk, then strains them into a mixer with a tea strainer. After tasting, he adds ice cubes to the mixer and shakes it. Lastly, he strains the mixture through a tea strainer into a glass with ice cubes and runs a lime on the rim of the glass before serving.\", \"video_name\": \"v_IRua6QGP-Ow\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a boy, who is wearing a dark blue sweatshirt, sitting at a table with a plate of food in front of him. He holds his right hand to the side of his head while looking at the camera. In the background, there is a lamp visible near the wall. Then, there is a cutaway shot of a man wearing a white t-shirt looking at the camera in a room with a packed shelf in the back. Finally, the video ends with several cutaway shots of the boy looking at and away from the camera. Although there is not much context provided, the video seems to be a simple footage of a boy and a man looking at the camera.\", \"video_name\": \"v_DOI6tsATsE4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a man in black tights standing behind a barbell in a well-lit gym with other exercise equipment visible to his side. He tightens his belt, walks to the barbell, and lifts it above his head before throwing it down. As he walks off to the side of the gym, a man in a green shirt is visible sitting on a red chair. Overall, the video captures a weightlifting exercise performed by a man in a gym with good lighting and other exercise equipment in the background.\", \"video_name\": \"v_ej9TkJVjK9M\"}, {\"Q\": \"Can you describe the activities and contents of the video in detail?\", \"A\": \"The video depicts a woman who is standing inside a room and there is a hopscotch court drawn on the ground. She is positioned near a white wall with a clock hanging on it, and a closed door can be seen behind her. The woman begins to hop on the court and successfully completes a pass. Later, she turns around and hops back to the original starting position. Then, the woman proceeds to open the door and turns to face the camera. Finally, she holds her hands to the side with an expressionless face. \", \"video_name\": \"v_8L1UjGLOCeI\"}, {\"Q\": \"Can you describe in detail what happened in the aerobics class in the video?\", \"A\": \"The video depicts an aerobics class where all participants, except one man wearing a green t-shirt, are women. The studio is brightly lit by overhead lights and wall-mounted fans are positioned on the far wall, with mirrors covering most of the wall to the right of the people. Two air conditioner units can be seen mounted on the wall as well. All the participants are using an aerobics step as they work out. At one point, the first woman on the right appears to struggle to follow the rhythm and eventually steps away from the aerobics step. A woman in the back, wearing a red top, also stops and walks away. Towards the end, the man in the green t-shirt slows down and walks to the back of the class before the music stops.\", \"video_name\": \"v_c7S423zJqPo\"}, {\"Q\": \"Can you describe what happens in the video about the weight loss product?\", \"A\": \"In the video, a man wearing a white shirt is seen drinking coffee from a coffee cup while holding up a sachet of coffee. The date is displayed next to him on the screen. He speaks about a weight loss product and continues to do so as a cutaway image of five pounds of fat is shown. As he speaks, an image of five pounds of muscle is displayed. He holds up the sachet and continues to speak into the camera. Finally, the text \\\"5 pounds lost in 7 days\\\" appears on the screen, and the video ends with the man still speaking about the weight loss product.\", \"video_name\": \"v_Bkhr72sazvQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the beginning of the video, a wooden table is shown along with a man placing a bottle of white vinegar and a bottle of olive oil on it. The man then adds a few drops of oil inside the vinegar bottle and shakes it to blend the mixture. The video then shows a fast forward clip of the man polishing the table with the mixture. In the end, the man speaks while showing the polished table top. Overall, the video demonstrates how one can make a homemade furniture polish using vinegar and oil.\", \"video_name\": \"v_d-RYiiPzVKg\"}, {\"Q\": \"Can you describe the archery competition in detail?\", \"A\": \"The video showcases an archery competition between two competitors in an indoor track and field stadium with well-lit overhead lights. Spectators are seated in the stands as the archers use a compound bow to fire arrows one after another, with the points awarded for each shot appearing on the screen. The video captures the reactions of not only the competitors themselves but also their teammates and the audience in the stands. In the end, the second contender wins the contest, resulting in applause from both the commentators and spectators alike. The video also shows the winner celebrating their victory while the audience cheers and the runner-up congratulates the winner.\", \"video_name\": \"v_BmLDHLKiIdQ\"}, {\"Q\": \"Can you describe in detail what is happening in the video?\", \"A\": \"The video shows a group of people playing with a red ball on a big lawn-covered field surrounded by trees visible outside the fence. A man wearing a red shirt rolls the ball to another person who runs towards the ball, kicks it and passes it to the next waiting person. An old woman in a pink sweater is seen standing in the distance who later runs towards the ball. Children are playing on the swing to the right. When the ball is kicked towards the left side of the field, the old woman runs towards a ring near other people and celebrates by holding her footwear in her hand. She then walks back to the spot where she ran from. The video also shows a man wearing a blue shirt and holding a water bottle pointing in the direction of the man wearing the red shirt while a group of children standing and looking towards them. The video ends when a girl kicks the ball towards a waiting boy who catches it.\", \"video_name\": \"v_9VflCeoPr9I\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video is titled 'DISCOVER Moose Jaw' and begins with this text displayed on a light blue screen with an image of a moose. The scene then shifts to a man sitting on a chair while a woman stands behind him, using a trimmer to shave his head. There is another man in the room who is recording the haircut using a mobile phone. Other individuals can be seen standing around the room, including a person sitting on a sofa towards the back. The man getting his head shaved is speaking to someone in front of a mirror, and there is a close-up shot of the shave behind the man's head. At the end of the video, the lady shaving is done and walks away while the man gives a thumbs up.\", \"video_name\": \"v_1kwIYXB4b8s\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"In the video, the scene opens with a teen walking towards the camera while putting on his boxing gloves in a white and blue-colored basketball court. He is dressed in a black T-shirt and shorts, and there is a basketball hoop mounted on the wall behind him. The video introduces 'Tyler,' who is already in the court wearing a cutoff T-shirt and boxing gloves. Eventually, the first teen is introduced as 'John.' Both John and Tyler touch gloves and begin to spar, starting with kicks and subsequently moving onto punches. They dodge each other's hits while making contact and moving around the court. In the background of the court, there are other people visible. At the end of the video, Tyler keeps pushing John back, and the clip ends.\", \"video_name\": \"v_kPn9NzU4W48\"}, {\"Q\": \"Can you describe the dirt bike video in detail?\", \"A\": \"The video begins on a dirt bike track with a rider jumping over an incline on his bike, with white flat-top buildings visible in the far background. Another scene shows a different biker jumping over another dirt incline. The video continues with a series of stunts performed by two riders taking turns, riding and jumping on the dirt track in a circle. A person holding a camera in the middle of the track can be seen recording the riders. The riders perform a sequence of jumps one after another in a clip. The video ends with the two bikers jumping over a hill one after the other. Overall, the video showcases different stunts and jumps performed by dirt bikers in a track.\", \"video_name\": \"v_4iFlM_Zu7xs\"}, {\"Q\": \"Can you describe the cheerleading routine performed in the video in detail?\", \"A\": \"The video starts with a cheer squad on a well-lit stage, with a wall projected with gobo lighting in different shapes. The squad members then begin their performance in a formation, incorporating impressive acrobatic stunts. During the routine, some members execute backflips, while others are lifted by multiple bases and thrown into the air. The thrown girls twirl and perform flips before landing safely. The routine continues with different formations, with the two men in black outfits supervising the stunts. The squad also performs a dance and ends their performance in a group formation. Overall, the cheerleading routine combines intricate, synchronized choreography and acrobatics, demonstrating a high level of skill and teamwork among the members.\", \"video_name\": \"v_Dbas61NkTV0\"}, {\"Q\": \"Can you describe the scene in the video about the girl leaning toward the sink in the bathroom?\", \"A\": \"In the video, we see a girl wearing a black top leaning down toward a sink in a well-lit bathroom. There is a luffa placed beside the sink, and a mirror is hung on the wall above it. On the girl's left, a maroon towel is hung from a ring on the wall. The water is running in the sink, and an open door is visible behind the girl. She picks up the luffa and taps it on her face, causing the suds to stick to her face. She then washes it off with water to clean her skin.\", \"video_name\": \"v_j6ElczD-Pw4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins by showing a few hoardings advertising \\\"CHEYENNE WYOMING\\\" and other activities, followed by a beige and black building providing fishing information. Next, a wooden cabin located near a flowing stream is shown with a sign pointing towards a fishing pond. The video then shows a red building with a blue thatched room situated near a lake and a sign advertising \\\"Cowboy Country\\\" placed next to a tree. Two men are seen standing near a metal fence and talking to each other, while a horse grazes near the other side of the fence. Moving forward, the video shows horses saddled and tied to the fence, and people riding them near a barn, through a brush, and near a stream walking a path on a green hill. They are followed by shots of three chickens in a coop, a goat eating hay, a horse trying to fit its nose through the netting of a fence, a black bull sitting outside a metal gate, and a brown cow sitting inside a fenced area. Finally, the video concludes with ostriches, alpacas, and camels grazing one after another.\", \"video_name\": \"v_e3DB_y78IHc\"}, {\"Q\": \"Can you describe the video starting from the climbing of the rock?\", \"A\": \"The video starts by showing a young boy wearing a harness and an orange T-shirt climbing up a rock. He had a belay rope fastened to him for safety. After a few moments, he paused to apply chalk to his hands from a bag attached to his back and continued the climb with good visibility during the day. While climbing up, the tree on his right side was also visible. The boy managed to climb up to his right and continued by looking for handholds and applying chalk. He paused a few feet from the top to rest and applied chalk to his hand before continuing the climb. Finally, he reaches the top and looks down. After that, the next clip shows him climbing down the rock. We see another boy holding the belay rope as he descends, and he finally steps down from the rock.\", \"video_name\": \"v_9ZVWD0ZKXZg\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video is an indoor badminton game featuring two teams of three women each. The court has dark blue floors and walls. One of the players from the first team leaves the game briefly to pick up a purse and talks to her teammate. The remaining players keep playing, but occasionally they miss hitting the shuttle. The first team continues to play with only two players. Towards the end, one of the players from the second team misses hitting the shuttle, and the remaining players converge towards the net to talk. \", \"video_name\": \"v_1dDAcUliXrQ\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"The video begins with a credit roll and depicts a girl wearing glasses and a red outfit standing behind a black stone kitchen counter attempting to open a jar. There is a wooden cutting board and a steel bowl on the counter along with shelves visible to the right and back of the girl holding different condiments. A woman wearing a sweater eventually joins her next to the counter as the girl holds up various ingredients to the camera before proceeding to chop cherry tomatoes and adding basil paste and sprinkles some contents from a bottle into the bowl. A man wearing a white shirt later walks next to the girl, tastes some of the mixture with a spoon, and proceeds to speak to the camera. The video ends with a list of ingredients used.\", \"video_name\": \"v_KvtqF0LaWU0\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a girl sitting on a wooden chair next to an open window while playing the piano. The sunlight is streaming through the window, and outside the window, we can see some trees. The edge of a bed is visible behind the chair where the girl is sitting, and she is playing the piano by looking at the sheet music in front of her. After a few seconds, the girl starts to sing softly while continuing to play the piano. \", \"video_name\": \"v_3VjaC7wdMso\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features players from two different teams standing on either side of a basketball court, but not divided according to teams. The drill being performed is a point guard drill and begins with the players running around a cone to attack the basket. After shooting, they retrieve the ball from a rebounding machine under the basket. The players then dribble to the opposite basket to attack, while making a point guard entry pass. The video concludes with the players still executing the drill.\", \"video_name\": \"v_cms1BP4eKOA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features Britney Reese, a woman in sportswear, performing a high jump into a sand pit. The video starts with her leaning forward, followed by a graphic displaying her name and stats on the screen. There are two men sitting on stools next to the sand pit with measuring sticks, while a man sits behind a banner with measurements. After the jump, Reese gets up and is seen running in the lane she ran through while clapping her hands. People can be seen in the seating area, and flags of different countries are hung on the railings. Towards the end of the video, a shot is shown in the spectator's stand where a man in a suit is clapping, while other people are sitting around him.\", \"video_name\": \"v_Ivq9_wPFNs4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a young boy wearing a dark blue t-shirt is seen standing on a box and scrubbing a white bowl in a well-lit kitchen sink. There are other dirty dishes in the sink and a basket of dishes next to it. After scrubbing the bowl clean, he places it in an empty sink and continues scrubbing the rest of the dishes. At one point, a woman wearing a yellow top enters the scene and records the boy while holding up her phone. She then hands the boy a scrubber to use. The video continues until the boy finishes scrubbing all the dishes. In the end, the boy looks back and continues scrubbing.\", \"video_name\": \"v_dO01vfB9z4g\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with an aerial view of a lakeside area with several people carrying their kayaks on the shore. We see several kayaks in the river from an aerial view. A man carrying his kayak and paddle is seen running on the street. The video also shows several people rowing through first a wide river then a narrow stream on their kayaks. There are shots of people running and cycling through the woods, with cyclists struggling to pedal through uphill and raised pathways. Towards the end, a cyclist makes it through the finish line followed by another one. We also see people drinking from red bull cans throughout the video. Overall, the video showcased a Red Bull Crossways event where people were kayaking, running, and cycling through various terrains.\", \"video_name\": \"v_4-KiAur4dI8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"Sure, the video starts off with a long-haired man sitting on a sidewalk playing a harmonica. He is dressed in a white T-shirt and is sitting beside a store with a glass facade. Inside the store, you can see mannequins on display. Behind the man, there is a blue door visible. On the sidewalk, there is a white bag lying a few feet from the man. As people walk by, the man continues to play the harmonica until he stops and holds out his hand to someone, ending the video.\", \"video_name\": \"v_1XNHcfxTqW0\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video takes place in a gym with blue foam padding covering the floor and a balance beam positioned lengthwise in the center of the space. A girl stands near one end of the beam, then mounts it and proceeds to do a series of gymnastic moves. She starts by performing a few balancing acts, then works her way down towards the other end of the beam. Once there, she executes a front summersault before leaning back onto the beam and doing another balancing act. The girl then proceeds to perform a handstand for a moment before landing back on the foam padding. Throughout the video, a divider wall can be seen separating the gym from the rest of the hall, and a glass door is visible in the background.\", \"video_name\": \"v_AE2gHOwcV14\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a woman wearing a grey top who is sitting on the ground in the woods during the daytime. Dry leaves are scattered all around the woman. She starts demonstrating how to start a fire by holding up a green Bic lighter and a box of matches while dry leaves and tinder are placed in front of her. Further, she uses a carbon knife and a Ferro rod to light up the tinder she has gathered. The video ends with the woman holding up the green Bic lighter.\", \"video_name\": \"v_bphckj0BV5U\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"This video features a woman in a well-lit kitchen wearing a light yellow top. The kitchen has bottles of wine and a knife holder visible in the background. The woman is shown scooping some mayonnaise into a mixing bowl and adding relish and mustard to it before mixing it until it becomes smooth. She then adds celery and chopped onion to the mixture and then adds a can of tuna. The woman mixes the ingredients together and then arranges four large lettuce leaves on a plate. She places a spoonful of the tuna mixture in the center of each of the lettuce leaves making wraps of them. Then she folds the lettuce leaves over the mixture and holds them up to the camera. The video ends with an advertisement for the cans of tuna and website information.\", \"video_name\": \"v_E5YBb4rzV30\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"The video starts with information about the video appearing on a black screen. A man wearing a green jacket walks up to an axe that is stuck in a log while standing near a Dodge truck. A dog is standing near the man, wagging his tail. In the scene, another man carrying a bottle of beer in a t-shirt and khaki pants walks to the back of the truck. He removes the cap and throws it to the side. He then opens the back door of the truck, takes a drink of the beer and places the glass in the back of the open truck. He walks back to the man trying to dislodge the axe from the log and yanks it out. He then proceeds to strike the log and cut it in two. The man wearing the green jacket walks a few steps back and watches. The man with the axe picks another log from the ground and places it on the chopping block. He then chops the block with the axe. He chops another log. In the following scene, a woman is holding an axe stuck into a log. The man in the T-shirt is standing a few feet from her. The man demonstrates to the girl how to dislodge the axe from the log and instructs her on how to chop the wood with an axe. The girl then tries to bring the axe down on the log which gets stuck. She tries to tap the end to dislodge it but eventually resorts to yanking it without success. The man then walks over to the log and chops it, after which the girl proceeds to chop another block of wood, splits it and repeats the process with the rest of the blocks. She then moves on to chop a bigger half and places it on the chopping block, which she successfully chops. The video ends with the girl standing back triumphantly.\", \"video_name\": \"v_dRF1C_sBE5M\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a boy wearing a white martial arts uniform practices training drills in a well-lit gym with a light wooden floor. Behind him, an American flag is hung vertically on the far wall. To the left of the boy, a group of boys sit behind a table, while a few men in suits are seated behind tables on the opposite side. They are observing the boy as he performs the drills, moving to the right of the frame. In the background, a young boy stands facing away from the camera and watches the drills. The boy continues to perform the drills until the video ends.\", \"video_name\": \"v_H33jSILKmfI\"}, {\"Q\": \"Can you describe in detail the content of the video?\", \"A\": \"The video starts with a man wearing a white t-shirt and a woman wearing a black coat over a pink top dancing together indoors. They are in a dimly lit living room with wooden flooring and posters hung on the walls. A curtain is visible at the back as they twirl and move around the room. There is a television on a pedestal in the corner and a white sofa visible on the left. The couple mostly does partner twirls as they continue to dance around the room. The video ends with the two still dancing. \", \"video_name\": \"v_JiNcVb97CnA\"}, {\"Q\": \"Can you describe the video in as much detail as possible?\", \"A\": \"The video features a man in an orange chef's uniform speaking to the camera in a well-lit kitchen with walls painted a dark shade of yellow. A cutaway of a Russian salad is shown, followed by the man preparing the salad. A steel stove is visible behind him as he makes the dressing in a glass bowl, adding two teaspoons each of cream and mayonnaise, along with salt and pepper. He then mixes the dressing and adds cooked potatoes, carrots, and peas to a separate bowl along with chopped onion and spring onion, tops them with the dressing, and mixes everything together. The chef then proceeds to circle a glass plate with half-sliced lemons and adds the Russian salad in the middle. To finish, he adds a tomato cut like a rose on top and tastes the salad before the video ends with the chef speaking to the camera. Overall, the focus of the video is on preparing a Russian salad in a step-by-step manner.\", \"video_name\": \"v_lIo8HfzzSNs\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video begins with a shot of a front yard with houses visible across the street. A man's hand is then seen grasping the grass on the lawn, running his fingers through it. He then measures the length of the grass with a ruler before adjusting a lawn mower to cut longer blades of grass, which he does by mowing straight lines across the yard. The man then empties the clippings from the mower and continues to mow, measuring the length of the grass and adjusting the mower settings until the grass is cut to three inches. Throughout the video, cars can be seen moving on the street in the background. Finally, the man measures the length of the lawn's grass with a ruler and displays a panoramic view of his cut lawn.\", \"video_name\": \"v_dN8LBey17O8\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, we see a man wearing a red shirt standing in a practice cage in a field. He is holding a handle with a hammer attached to it and is standing on a round platform with a lawn surrounding it. There are trees visible at the edge of the field. The man then starts to practice a hammer throw during the day by swinging the hammer around himself. After a few swings, he releases the hammer through the open end of the practice net. He waits for the landing of the hammer and turns around to clap in satisfaction. Overall, the video shows a man practicing his hammer throw skills in an open field with the help of a functional practice cage.\", \"video_name\": \"v_I7slpTgl0jc\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"Sure, the video starts with the text 'Arenacross 2012' appearing on a black screen. Then, the video shows a montage filmed from inside a camper van passing through various locations, including a bridge over a river and an intersection. Afterwards, a boy wearing a black jacket, cap, and sunglasses is seen pushing a dirtbike, and a clip of a green dirtbike with the number '2' is shown. Next, the video takes us inside an indoor dirt biking arena filled with spectators, with a jumbotron fixed to the middle of the ceiling. We see bikers riding through berms and turning at the end of the bike path. The camera then shows some clips of different scenes from the camper, such as a little boy in a helmet and safety gear walking around. The video then goes back to the dirt bike arena, showing earth movers preparing the berms, people walking around, and different scenes of bikers. After that, the video shows two boys riding dirt bikes in a field, doing doughnuts and posing in front of the camera. Finally, we see kids racing at the dirt bike arena, and the video ends with an image of two boys posing in front of their dirt bikes.\", \"video_name\": \"v_ks018ZYzrx4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, we see a group of girls wearing black dresses standing outdoors during the daytime with palm trees and buildings visible in the background. They take some deliberate steps and turn around and walk back. Then a few boys wearing red dress shirts and black trousers walk towards the girls and pair up with them. They begin to dance the tango slowly following the music. The scene then changes, and we see the dancers on an indoor basketball court, lit by dim red light. They first stand apart and then start dancing while walking towards each other. The boys and girls continue to dance and stand in a line. Lastly, the video ends with the credits.\", \"video_name\": \"v_KsFid_YVsn0\"}, {\"Q\": \"Can you describe what happens in the cricket match between England and India that is shown in the video?\", \"A\": \"The video displays a cricket match played during the daytime between England and India, with players on the field wearing white uniforms. Two batsmen are on the pitch- one batting and one at the non-striker's end, with an umpire standing behind the wickets on the non-striker's end, and a wicketkeeper a few feet behind the batsman. There are two fielders on the leg side of the wicketkeeper's left. The clip then starts with a bowler bowling a ball to the batsman. The batsman hits the ball through the gap in the off side towards the boundary where a fielder runs towards the ball to prevent it from crossing the boundary, and he falls on the other side of the rope after preventing the ball from touching the rope. The wicket player catches the ball which is thrown to him and removes the bails from the stumps. The batsman then walks to the non-striker's end and the players gather around the pitch. One of the umpires awards the run out to the third umpire with the message 'OUT' displayed on the big screen in the stadium. In the next clip, the fielding team is huddled in a circle on the field, with the batsman coming back onto the field after a break, and a close-up of the wicketkeeper is shown. Subsequently, the bowler bowls a ball and the batsman hits a six, and the video ends with an umpire holding up both hands in the air.\", \"video_name\": \"v_hFpSoRlpyMo\"}, {\"Q\": \"Can you describe the details of the video content in the kitchen?\", \"A\": \"In the video, a man wearing a black T-shirt can be seen standing in a kitchen in front of a chimney. The camera then switches to a cutaway shot of pasta being served on a square plate. The ingredients in the dish are then shown, including parsley, olive oil, garlic, chilies, and dry pasta. The man then starts to cook the dish by adding garlic in a pan with oil, followed by chillies. After a minute of cooking, he adds cooked pasta and chopped parsley, ground pepper, and mixes to finish the dish. Lastly, an end screen appears where the man gives additional information and asks people to subscribe to his other social media accounts.\", \"video_name\": \"v_aOxRwTlkY80\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with people playing a game of cricket in a backyard with the batsman holding the bat in front of the wicket. In another scene, three men are playing cricket in a garage when the batsman hits the ball towards the bowler who is struck in the head. The video then shows the same people playing cricket at night in the backyard under a floodlight, followed by a day game where the batsman hits the ball towards a fence. The video consists of several clips of these games played both during the day and night. Towards the end of the video, a shot of a fluorescent wicket set is shown, and it ends with several still images of the batsman holding the bat.\", \"video_name\": \"v_4VdS1eN3dv4\"}, {\"Q\": \"Can you describe the gymnastics video with the boy in tights and others doing stunts?\", \"A\": \"The video features a boy wearing tights doing gymnastics using a parallel bar. The scene is set in a track field with a blue floor, lit by overhead lights. Other people are visible standing and sitting in various places, including a few sitting behind a table a few feet behind the boy. Another person is visibly doing gymnastics on the far right towards the corner of the hall. The boy starts by swinging and performing stunts, doing a handstand and then swinging back and repeating it while turning in the other direction. In the end, the first gymnast swings using the bars and lands on the foam mat below. The video ends with a person walking across the camera and another doing somersaults. Overall, the video showcases impressive gymnastics skills, with the boy in tights being the primary focus of the video.\", \"video_name\": \"v_EhzHU0gkrzA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins inside a hair salon with a man sitting in a chair holding a camera and recording himself. The salon is well-lit and there are shelves filled with hair products in the background. A woman sprays the man's hair with water using a spray can and combs his hair before beginning to cut it with scissors. The man can be seen waving and gesturing at the camera while other customers receive haircuts in the background. The video shows the haircut process from different angles and the woman switches from scissors to a trimmer. People can be seen walking in the background. The video ends with the man sitting in his car wearing a hat and sunglasses after his haircut, speaking to the camera while driving.\", \"video_name\": \"v_6G8m-vsGTA8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features two boys performing karate on a stage with a black curtain in the back. The stage has red strobe lights on either end, with a speaker mounted on a tripod on the left side. An American flag is placed on the left side of the stage. The first boy, wearing a black belt, starts with a karate stance and moves through different karate moves quickly, after which he bows to the audience and exits the stage on the right. The second boy then enters the stage, takes a bow before his demonstration, and moves through different karate moves quickly. After finishing his demonstration, the first boy enters the stage and high-fives the second boy. The two boys then start a routine with synchronized movements and take a bow as the video ends. Two adults enter the stage from either side.\", \"video_name\": \"v_kfO5PGlsMJw\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"In the video, a woman is seen in a room with a mirror visible behind and to the right of her. She is doing a tutorial on how to apply full makeup. Starting with concealer, she applies it to different areas of her face, then spreads it using her finger. Afterward, she applies foundation using a brush and uses a handheld mirror to look closely while applying it throughout her face. The woman then applies bronzer diagonally on her cheeks using a small brush. She proceeds to apply eyeliner, followed by mascara using a small applier on her eyelashes. Next, she applies lip gloss and darkens her eyebrows with mascara. The video ends with the woman smiling, showing off her earrings to the camera.\", \"video_name\": \"v_86Unahb4sJM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man dressed in a red polo shirt and blue trousers can be seen carrying a vacuum on his back and cleaning the carpet in an office with cubicles on either side. In the next clip, the same man is in a different office with a window that overlooks the outside, which is covered in frost. Outside the window there is a parked truck, and bare trees can be seen. In this second scene, the man is vacuuming the ceiling of the office. Finally, a different man, wearing a backpack vacuum, is shown speaking to the camera while standing sideways in the office.\", \"video_name\": \"v_jN2CFk0xKp8\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, we see a boy break dancing in a garage adorned with tires and rims on the back wall as decorations. The first boy is wearing a black T-shirt and olive shorts. In the following clip, another boy wearing a white hat and black T-shirt is kneeling in the garage and speaking to the camera while the word 'JUNKYARD' can be seen written on the wall. Next, both boys are standing in the middle of the junkyard and speaking to the camera. Later, the boy in the olive shorts begins to demonstrate the 'Zulu Spin' move while the boy with the white cap is standing to the right side and giving instructions. The boy in the olive shorts slowly demonstrates the moves in the Zulu Spin, kneeling on the ground when he is done demonstrating. The video concludes with the boy in olive shorts showing the complete steps of the Zulu spin slowly.\", \"video_name\": \"v_JG7T6qtO4jg\"}, {\"Q\": \"Can you describe the gymnastics competition that is shown in the video in detail?\", \"A\": \"This video shows a gymnastics competition which begins with an overhead shot. A gymnast is seen next to a balance beam on an elevated platform, while judges sit at a table attached to the same platform. Some distance away, there is another platform perpendicular to the first one where people are sitting on chairs. On the left side, another group of judges sits behind a table. The gymnast mounts the balance beam and starts the competition with a handstand, followed by a front flip and back flip. She performs various balance poses, including turns, jumps, and leaps. Finally, she does a dismount with cartwheels and jumps off the balance wheel, poses, and walks off the stage. Two people holding video cameras can be seen recording the gymnast. The video provides an interesting perspective from the point of view of the spectators, and the different shots provide a detailed description of the competition.\", \"video_name\": \"v__ja1fre9OTE\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video is a recording of a man in a black jacket playing the bagpipe in a dimly lit bar. Several people surround the man, cheering and clapping as he performs. There are glasses and bottles visible on the shelves behind the man, and he is standing by a wooden beam with lamps fixed at the top. As he plays, flashes of light periodically illuminate the scene. The video ends with a shaky shot of the man playing the bagpipe, and overall captures the energetic and captivating atmosphere of the moment.\", \"video_name\": \"v_82EtiBkAsPg\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"In the video, a man wearing a black jacket and fedora stands on a stage while playing the harmonica and singing. The light shines from the top of the stage, revealing the audience in the darkened seats. During the performance, the man includes the audience, and at some point, he takes an opportunity to play the harmonica for a few stretches. The song ends with the man fixing the mic back on the stand before walking off to the side.\", \"video_name\": \"v_7OcxT66BxX0\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with three dinghies sailing in the sea. The skies are cloudy, and in the next clip, the sailors are seen performing capsizing training. We can see that a few dinghies are capsized in the sea, and another one is being turned over by its sailors, who then righten it. The subsequent clip shows a boy sailing a dinghy, followed by a shot of several dinghies sailed by multiple people, with a capsized dinghy visible as a boy sails and turns near the boat that the cameraperson is filming from. Finally, the video ends with a story of two boys sitting and sailing on a dinghy. Overall, the video depicts sailors practicing capsizing and honing sailing skills in dinghies, as well as some shots of boys enjoying sailing.\", \"video_name\": \"v_aDe5hUB3AdY\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"The video begins with a black French bulldog standing on a checkered red tablecloth illuminated with sunlight. The table is accompanied by chairs and a window can be seen in the background. A young boy then places a cup of coffee in front of the dog, which proceeds to drink from it. The boy tries to gently move the dog away from the cup but is unsuccessful. \", \"video_name\": \"v_5qY9yPt-5Go\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with a black and white footage of three people, a woman in the middle and two men on either side of her, sitting on a curved couch behind a coffee table with three coffee cups placed on it. Next, a man in a suit is seen speaking to the camera, followed by a teen standing behind a podium in a classroom giving a speech to the class. A whiteboard can be seen behind the teen, and a window is visible on the right wall. The video then shows women sitting on a bench in cheerleader outfits. A man wearing a black T-shirt and a cap is seen giving instructions to girls in a hall which is lit by overhead lights. A cheer squad performs a routine on a stage while men serving as back spots stand behind the bases. Different cheer squads are shown performing on stage, followed by a clip of girls watching the stage and walking away crying. The video then shows cheerleaders training and performing various routines. Finally, cheerleaders celebrating is shown.\", \"video_name\": \"v_hvrKRg166eQ\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"In the video, we see a woman wearing a green sweater standing in a well-lit room with a window behind her. Hanging behind her is a jeans jacket and on the ironing board in front of her is an iron and a men's cotton dress shirt which is being ironed. To the left and behind her is a rack displaying various products. She begins by spraying starch on the shirt and ironing it, so that steam can be seen escaping from the holes of the iron. She then proceeds to iron the sleeve of the shirt, flipping it over once it's done to smooth it into a flat surface and sprays more starch before ironing it again. The woman then irons the ends of the sleeve before flipping the shirt over and continuing the process on the other side.\", \"video_name\": \"v_a_JlhLnJM98\"}, {\"Q\": \"Can you describe what happened in the video in detail?\", \"A\": \"In the video, a man speaking into a mic walks to the middle of a hall which is brightly lit and has tables arranged to make space in the middle. People are seated on chairs turned towards the middle and there are bottles on the tables. A man and a woman enter the middle area, holding hands and stand a distance away from each other. They both are dressed in evening dresses. When the music starts, they walk towards each other and start to tango. The couple moves around while dancing and continues to slowly dance as the other seated guests watch. Flashes of photographs are visible. As the tango progresses, they cover a wide area of the hall. In the end, as the music comes to the end, the dancers walk apart and bow toward the people who are applauding.\", \"video_name\": \"v_9Ufy_JGbnys\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts in a dimly lit wooden room with a man wearing a checkered shirt and a woman dancing. In the right corner of the room, there is a small child who walks into the next room through a door. The wooden floor has a door visible in the back on the right and the back wall has a few photo frames hanging from it. The couple continue dancing and at the end of the video, the man spins the woman several times.\", \"video_name\": \"v_9eniCub7u60\"}, {\"Q\": \"Can you describe the video?\", \"A\": \"The video starts with a man and a woman placing their kayaks on the truckbed of a red Toyota truck while being surrounded by trees. They then get into the truck and drive away. In the following clips, people can be seen kayaking down a narrow and fast-moving body of water, wearing safety gear. There is a shot of a couple kayaking in a two-person kayak and two other kayaks floating next to them. Some clips show kayaking in calm waters with a sunset in the background, while others show kayaking in turbulent and rough waters. The video ends with people drinking beer on land, with a sunset in the background.\", \"video_name\": \"v_k1GP0cJOXbQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with players wearing orange uniforms and blue helmets celebrating on a baseball field. It then switches to a sunny outdoor field where people are playing handball. A player throws the ball towards another player who kicks it; a referee is visible behind. A replay is shown and three positions are marked out with numbers and an \\\"x\\\" on the field while the third player falls. The video then switches back to another baseball game, where a pitcher throws a ball and the batter hits it. The batter starts running while another player catches the ball and throws it towards a base.\", \"video_name\": \"v_7bwruwic1CI\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, a man wearing a white suit makes his way to a raised platform in a bar and sits on a chair. A man in a black tuxedo, holding a guitar, is sitting next to him. They are surrounded by a group of people wearing tuxes who are sitting around a table facing the two men with guitars. The man in the white suit picks up a guitar next to him and starts playing with the man in the black tuxedo. The room is decorated with Chinese lamps and lit with lamps, while other people in the bar are watching and taking a drink from a glass or smoking. The man in the white suit continues playing until the video ends.\", \"video_name\": \"v_bYxVbXzQToI\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video shows three people, two women and a man, doing aerobic movements using an aerobics step in a studio with overhead lighting. They are wearing mics and the leader of the group, who is wearing a black outfit, is calling out instructions as they follow along in a workout routine. In the background, there are white screens with frames, and two screens displaying a rotating green letter 'e' mounted on stands in between the screens. The video continues until partway through when a cutaway starts with a new routine. Additionally, there is a shot in which a Gobo projector is visible as the camera pans.\", \"video_name\": \"v_hI11n4_r178\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, there is a woman wearing a black outfit holding a pole in an outdoor field in the daytime, participating in a pole vaulting competition. She runs toward the bar and plants the pole on the ground to jump over the bar before landing on the foam mat on the other side. A referee with a measuring stick and other people are visible around the bar. The same woman, now wearing a white jacket and standing at the starting point with her pole, gets ready for another jump and jumps over the bar again. A red Toyota banner and two athletes warming up for a run are visible in the background. After the jump, she turns to the side to speak to someone. The video shows her taking a drink from a bottle of water several times. Additionally, we see people walking with their backs to the camera, two men measuring the height of the bar with a measuring stick, and a replay of the pole vault from different angles.\", \"video_name\": \"v_hP-xRyx88aA\"}, {\"Q\": \"Can you describe what is happening in the video in detail?\", \"A\": \"In the video, a boy wearing a sweater vest is standing in a dimly lit living room with a violin. People are sitting on chairs next to him, and there is a lit lamp on a table at the end. Behind the boy, there is a painting hung on the wall, and a man wearing a black shirt is sitting under the painting. Through an open door behind the boy, windows are visible. The boy starts playing the violin and continues until the end of the video when he stops, and the people sitting around him applaud.\", \"video_name\": \"v_HxrtuZSCwvY\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with two men wearing different colored t-shirts playing squash in a squash court. As they continue playing, each of the players misses a shot and they keep playing. They run around the court until they slow down and the man in the white t-shirt seems tired. Despite this, the two men continue to play until they eventually stop and share a handshake. Overall, the video depicts two men engaged in a squash game, displaying their athleticism and sportsmanship throughout the match.\", \"video_name\": \"v_af05Mqm03Y4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man dressed in a grey dress shirt and wearing glasses is seated in front of a painting. He is playing a harmonica, and the room is well-lit with a yellow overhead light. The man continues to play the harmonica until the end of the video. Overall, the video features a man playing a harmonica in front of a painting in a bright room with a yellow overhead light.\", \"video_name\": \"v_ddzfgHw_qlU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows two people, a man and a woman, practicing kickboxing in a well-lit gym. The man is wearing a black outfit and punch mitts, while the woman is wearing a black outfit and boxing gloves. The woman is seen practicing various punching and kicking moves, occasionally using her elbows on the man. Throughout the video, the walls with various posters and a multicolor mat on the floor are visible. Additionally, there is a hall with chairs and wooden flooring visible through an open door. The two people continue their practice by using numerous kickboxing moves until the video ends with both of them stopping their routine.\", \"video_name\": \"v_h_r8gioFi4k\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a top-down view of a track and field stadium with an open roof, which appears to be filled with spectators. The rectangular field in the center of the stadium is surrounded by a track. The video focuses on a man wearing blue shorts and a vest with the number tag of 2736 who is jogging slowly on the track towards a high jump bar. He then jumps over it by flipping back and parallel to it. He gets up quickly and walks away from the foam mat. The video shows a replay of the jump multiple times from different angles until the end of the video to emphasize the technique used for the high jump. Overall, it appears to be a high jump competition at a track and field event.\", \"video_name\": \"v_EnMS9O1U6E0\"}, {\"Q\": \"Can you provide a detailed description of the video?\", \"A\": \"In the video, a man is seen standing on a tennis court. He is wearing a black shirt and black track pants, and holding a racket and a tennis ball. The court is outdoors and there are trees visible in the distance with sunlight shining down. The man throws the tennis ball into the air and hits it with his racket to the other side of the court where the ball can be seen landing before bouncing and rolling towards the tree line.\", \"video_name\": \"v_CeXtKbFnPIQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In this video, a woman is seen introducing herself in a well-lit makeup studio while wearing a black top. There is a vanity table with bulbs around the mirror situated behind her. As the video progresses, the model 'Irina Shayk' is shown in a makeup session and photoshoot, while the makeup artist speaks. In another clip, the makeup artist holds an eyeshadow palette and starts applying makeup on Irina, beginning with different colors for her eyelids and moving on to her eyelashes. Later, the makeup artist changes Irina's lipstick and reapplies her eye makeup, before applying a different lip color. The video ends with a display of Irina with completed makeup, showcasing the work of the makeup artist.\", \"video_name\": \"v_K_ia4VP3w2c\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video opens with a panoramic shot of a vineyard, followed by a grazing horse behind a fence. A rider with a helmet leads a horse down an inclined path, and then a circle of riders on horses appears in an enclosed area. They leave the enclosure and ride their horses along a dirt path next to a vineyard during the daytime. A woman in a black turtleneck leads the riders towards a winery, where she welcomes them inside to a wine cellar with stacks of wine barrels. Then, grapes are hung and stacked on a drying platform, and closed clap barrels are shown. The video also includes a clip of the dining room where people are seated with wine glasses in front of them. The woman in the black top showcases a wine bottle and pours wine into the glasses. A woman swirls her wine glass and takes a sip. The video ends with a shot of the facade of the winery.\", \"video_name\": \"v_IDIALY6Ayk8\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"In the video, a girl wearing a grey hoodie sits in a chair to get her tongue pierced. A man wearing a black shirt, a black cap, and surgical gloves starts the piercing procedure. The well-lit room has a guitar hanging on the wall behind the woman. The man clamps the girl's tongue and pierces it with a needle, then inserts the piercing and secures it by screwing something under it. The video concludes with the man stepping out of frame, and the woman sticking her tongue out to show the piercing.\", \"video_name\": \"v_ij9czNGMR5I\"}, {\"Q\": \"Can you describe the video and the scene in detail?\", \"A\": \"The video starts in a school gymnasium with a light wood floor and white walls with bleachers drawn in at the bottom. The video shows a women's volleyball match being played with players on the left side wearing blue uniforms. A group of people can be seen sitting at the back near the bleachers while the players on the court volley the ball back and forth. One of the players walks to the back and gets ready to serve, while a referee is visible in the middle, standing on a platform over the net. The teams continue to volley the ball back and forth until the team on the right misses a hit. The video ends as the team on the left wins the exchange and passes the ball back to the team on the right.\", \"video_name\": \"v_jEOtcfk220s\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video shows several clips of breakdancing in a hall, with people standing and sitting a few feet away. Each performer is wearing a black outfit and showcasing different moves, such as twisting, turning upside down, and doing headspins. The hall is lit by overhead tubes, creating an atmospheric effect. Some of the performers have an audience while others are dancing alone. Towards the end of the video, there is an outro and a message. Overall, the video is a showcase of the impressive and dynamic art of breakdancing.\", \"video_name\": \"v_j6OcN4OQZVM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a green screen slideshow displaying instructions for a test followed by a clip displaying an uppercase letter 'A' against a starry background. Then, the screen displays the first clue which is the letter 'F'. Subsequently, a man is shown rolling a cable from a vacuum cleaner in a living room with a black sofa and a television set with speakers mounted nearby. The room is well-lit with natural light coming from the door and has wood flooring. The man takes the cable to the left of the living room and vacuums the kitchen which has white cabinets and a two-door fridge between them. He opens the door of a cabinet and vacuums near the bottom as well as for the fridge. He then vacuums beneath a red sofa, its cushions, and the whole room before returning to the living room to roll the cable back up.\", \"video_name\": \"v_bz4QwqHiVlo\"}, {\"Q\": \"Can you describe the video?\", \"A\": \"The video features a woman in a black outfit inside a net, beginning a hammer throw on a field during the daytime. She spins the hammer around and throws it, which transitions to a cutaway shot of a couple on a blanket in a field, who are talking to each other panicking and running to the side. A hammer attached to a string lands on the blanket they were on. The video then shows the woman throwing the hammer again, with a cutaway shot of a hammer landing in the pool behind a swimmer just as she is reaching the wall. Next, the woman throws the hammer, which flies over a gymnast standing on a balance beam in an indoor gym, causing the gymnast to fall over. Then, as the woman throws again, the hammer lands in front of a catcher on a baseball field who is wearing full gear and in exasperation gets up. Finally, as the hammer thrower walks off to the side, the video ends with the text \\\"WEAREBG\\\" appearing on the screen.\", \"video_name\": \"v_hPYGgv_75SY\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a girl sitting on a chair while wearing a hoodie and jeans. Behind her, there is a closed window. On the ground around her, there is visible music gear. The room is illuminated by diffuse light coming from the window. She is holding a guitar and listening to music while mimicking the guitar notes without actually plucking the strings. \", \"video_name\": \"v_jWH-2aa1gJY\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"Sure! The video starts with astronaut Chris Hadfield on the International Space Station holding a tortilla in his hand. He picks up a bottle of honey and squeezes some on the tortilla before holding it up to the camera. In the next clip, Hadfield is seen playing the guitar while floating in the space station. Following this, Hadfield can be seen getting a haircut from someone wearing a teal t-shirt, while holding onto handles to stay in place. The person giving the haircut uses a trimmer with a hose attached to it. In the next clip, Hadfield is seen walking down a path with other astronauts with people on either side, and an image of a rocket in the launchpad is shown. The video also shows an image of Chris Hadfield's Twitter page. In the subsequent clip, Hadfield is giving an interview on the International Space Station with different images of Earth and space shown in a slideshow as he speaks. Finally, the video ends with a clip of Hadfield rearranging his hair.\", \"video_name\": \"v_BAtlo_AGFWs\"}, {\"Q\": \"Can you describe the activities of the man in the video?\", \"A\": \"In the video, a man wearing a blue jacket and jeans is standing in a wooded area surrounded by numerous trees. He is using an axe to chop wood placed on a tree stump, and wooden logs cut into uniform lengths are piled up behind him. The man is chopping a block of wood and picking up the chopped pieces. After he has chopped the current piece, he picks up another wooden block and places it on the tree stump. The video ends with the man coming back to stand over the block. Overall, the video depicts a man chopping wood in a natural setting with a cabin visible nearby.\", \"video_name\": \"v_9lAT3oA9Ixs\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"In the video, we see a woman named Valarie in a crowded hall standing in front of an ironing board holding an iron. Valarie is imprinting a design on a white t-shirt using iron-on transfer while speaking and laughing with the cameraman. There is another iron visible at the end of the ironing board. Valarie walks towards another table with people standing near it and picks up a white t-shirt with a Twitter username and a picture of a blue bird on it. She quickly walks back to her own ironing board and continues to press the shirt. She removes the paper laying on the t-shirt and shows the finished design. In the end, Valarie covers the t-shirt with another and waves bye to the camera. Throughout the video, many people can be seen in the hall.\", \"video_name\": \"v_0rr7iGHamw0\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video is shot in an aerobics studio where a group of people are performing workout routines behind aerobic steps. The well-lit studio has a wooden floor and windows on the far left through which light streams inside. An instructor dressed in fitness clothes gives instructions using an aerobics step while standing in front of the class. There is a wall-to-wall mirror behind the instructor, allowing everyone to see themselves as they work out. One man, dressed in black, seems to be struggling to keep up with the rest of the class and falls over his aerobics step when attempting a new move. The video then shows the instructor and a few other class members moving in his direction, presumably to help him up and ensure he is okay.\", \"video_name\": \"v_6utacRir3uM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a woman wearing a green outfit standing in front of kayaks hanging on hangers at a lakeshore during the daytime. She interviews a man wearing a hat while a variety of kayakers are shown rowing in different water bodies, including rapids and the sea. Throughout the video, there are cutaways showing kayakers in various rivers and rapids, as well as different kayaks with open and closed cockpits. The video ends with a kayaker navigating down a rapid stream. \", \"video_name\": \"v_5cijPqKVc84\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video is a chopped wood competition with two sets of contestants. The participants are shown in a wood-chopping context, standing over their respective logs in an outdoor arena during the day.  On the left side, the contestants have their wooden blocks laid horizontally on chopping stands while on the right side, contestants assemble wooden blocks on horizontal chopping stands. The contestants are wearing black vests and light-colored trousers. People can be seen on seats on either side. A bridge can be seen in the back. The contestants start chopping wood and some players on the left finish before the players on the right. The first player on the left side heads over to the right side and speaks to another contestant.\", \"video_name\": \"v_l5ZUUChppHU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a woman wearing a blue top doing long jump training. The first clip shows her landing on a dirt pit and the second clip shows her standing on an indoor track field, with people visible in the distance. She takes a running leap and jumps into the dirt pit, attempting to do a long jump. The subsequent clips show the woman running and jumping into the pit in a front perspective. People are milling about in the back of the indoor stadium. The video ends with the woman jumping and landing in the pit and looking towards the camera.\", \"video_name\": \"v_52Xw6TZcysc\"}, {\"Q\": \"Can you provide a detailed description of the video content?\", \"A\": \"The video starts with a young boy wearing a purple jacket picking up a stick and tapping it on a wooden fence behind him. The boy is then shown playing lacrosse for the Salem lacrosse team while holding a lacrosse stick in his hands. The camera zooms in on the logo found on the boy's shorts. Throughout the video, the boy is followed as he plays different positions, scoring goals, and chasing the ball across various games. The video shows a huddle of the lacrosse team standing with their lacrosse sticks raised, two face-offs between teams, and other players joining in the game. Towards the end of the video, the boy is wearing a white jersey and starts the game with a face-off against a player from the opposing team. The video ends with a player scoring a goal. Overall, the video provides a detailed visual representation of a young boy's lacrosse journey through different games and positions.\", \"video_name\": \"v_l_0HvMt2tGg\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video features a news anchor behind a desk reporting news with multiple blurry videos playing in the background. A big screen with the words \\\"TAI-CHI-CHUAN\\\" is seen on the side of the studio, and a wide shot of the studio shows the anchor gesturing with his hands while reading news. The video then cuts to people in winter clothes practicing tai chi outdoors on sandy ground in front of a copse of trees without leaves. Close-up shots of people practicing tai chi are shown, along with people speaking into the camera. The video also includes a black-and-white clip from 1957 with an old man teaching tai chi and several clips of different people doing tai chi. There is a clip from a hospital where a doctor talks to the camera and walks towards people doing tai chi, after which people are shown doing tai chi individually and being taught by others.\", \"video_name\": \"v_1jgsRbGzCls\"}, {\"Q\": \"Can you describe the details of the cricket game shown in the video?\", \"A\": \"The video starts with a boy wearing a school uniform speaking to the camera. He is wearing a white shirt and a green tie, while other students can be seen standing behind him. The boy then points to a cricket field, where a game of cricket is being played. The cricket pitch is surrounded by a grass field, with two sets of stumps fixed to the ground on either side of the pitch. Trees can be seen at the outer edge of the ground, with a building sporting white pillars visible in the distance. The game continues as one boy gets ready to bat, and the bowler starts his bowling run. However, the ball goes wide, and the wicketkeeper is seen running after it. In the next ball, the batsman jumps to let it pass behind him, and he starts to run to the other side. The non-striker runs towards the striker's end and gets ready to bat. The video also shows a girl in school uniform smiling, along with a woman who speaks to the camera person. The video ends with another shot of the cricket pitch, where the game is still being played.\", \"video_name\": \"v_kl-2y3jtPNE\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with two men standing in the woods - one wearing a black T-shirt holding a beer can, and the other wearing a dark blue Adidas T-Shirt picking up a beer can from a pack. The men are out during the daytime. The man in the blue T-Shirt makes a hole in his beer can using a key and throws the key down. He proceeds to drink from the hole in the can. As he finishes the can and belches, the man on his left comes into the frame and talks to the camera as he leans toward the other man. The video only focuses on the men and trees in the background are visible throughout the video.\", \"video_name\": \"v_j_r7zJWxI8w\"}, {\"Q\": \"Can you describe the video of the woman wrapping a gift in detail?\", \"A\": \"In the video, a woman's hand is seen picking up three rolls of gift wrap from a blue wooden counter next to wrapped gifts. She later lays out the gift-wrapping rolls on a light wood table and starts wrapping a brown cardboard box with one of the rolls. The video captures how she cuts the wrapping paper to fit the size of the box, tapes it shut, and carefully folds the sides and corners of the box. The woman then turns the wrapped box on every side to show the wrapping and places the box on the same counter. The background shows a tray with other gift-wrapping accessories in the corner, and throughout the video, these accessories appear on the light wood table with jump cuts.\", \"video_name\": \"v_l_pp-1qu9Ig\"}, {\"Q\": \"Can you describe the content of the video in detail?\", \"A\": \"The video is in black and white and shows a game of cricket being played. It starts with a bowler running and bowling a ball, which is repeated three times. The batsman hits the ball towards the woods and begins to run between the wickets with the non-striker while the fielders search for the ball. The batsman stops running when the ball is found, and the fielder throws the ball to the bowler.\", \"video_name\": \"v_8r4bF9RF0Kc\"}, {\"Q\": \"Can you describe what happens in the video where a man is standing in a bike shop?\", \"A\": \"In the video, a man wearing a brown shirt and a cap is seen standing in front of a bike that is placed on an elevated platform inside a well-lit bike shop. The shelves of the shop are filled with various tools and bike parts. The bike in front of the man has a broken chain and he holds a master link of a chain in his palm, demonstrating how he will fix the chain. The man attaches the master link on one end of the broken chain and pulls both sides together until they lock together. He then checks the chain by pushing on the pedal. The video ends as the man turns to the camera and speaks.\", \"video_name\": \"v_iUiXNXRs4rU\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"In the video, we see a woman wearing a green jacket over an olive turtleneck speaking to the camera in a well-lit bathroom. Behind her is a wooden shelf with a vine climbing down from the top. The walls are painted a light shade of green. She presents a soap dispenser for kids to the camera. Then, a little boy wearing a black polo shirt appears, and his hands pump soap from the dispenser, revealing a red dot on his palm. He washes his hands under running water in the sink and scrubs them. The woman then presents a bottle of hand sanitizer. The boy turns off the tap and walks over to a towel to dry his hands as the woman gestures towards the towel rack. A sink with a mirror and a window through which sunlight enters the bathroom can be seen in the background. The video ends as the woman continues to talk to the camera.\", \"video_name\": \"v_Lf_7RurLgp0\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows two kids playing squash in a well-lit squash court. One of the kids is wearing a blue T-shirt while the other is wearing a red T-shirt. The walls of the court are white and the floor is dark. At the back of the court, there is a glass door covering the entrance. During the game, the boy wearing the blue T-shirt misses a shot, and they start over. People can be seen walking by the door of the squash court. As the game continues, the boy wearing the red T-shirt miss a shot and they start over again. Towards the end of the video, a boy wearing a white T-shirt is seen standing outside the court watching the two boys play. The video gives a clear view of the details of the squash court and the players\\u2019 attire, which helps to create a vivid picture in the viewer\\u2019s mind.\", \"video_name\": \"v_34ZxyyFjbHQ\"}, {\"Q\": \"Can you describe what happens in the video of the woman in the green top at the gym?\", \"A\": \"The video shows a woman wearing a green top in a well-lit gym, leaning on an elliptic bike and then moving to sit on it while a person in a red top exercises on an elliptic machine to her right. The woman speaks to the camera before switching to an exercise bike where another woman in a black top instructs her on how to use it. She then cycles on the exercise bike while looking at herself in the mirror. The video also cuts to men on exercise bikes, an instrument cluster on an exercise bike, and a clip of the instructor using the exercise bike. At one point, the woman in green opens a bottle of water and takes a drink. The video ends with the woman speaking to the camera as she pedals on the exercise bike.\", \"video_name\": \"v_Db9VWkgMpbE\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a man wearing a black polo shirt and a rice hat standing on an elevated section of the Marble Bridge during the daytime. He is seen playing a flute with the Palace Museum in the background. The Meridian Gate Square is also visible with people walking around, some of whom are carrying umbrellas. The man continues playing the flute until the end of the video.\", \"video_name\": \"v_Il9Ara3IqeY\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In this video, we see two women standing in a well-lit room with shuttered windows on either side. The woman on the left introduces herself as a beautician and proceeds to demonstrate how to make a cleansing with baking soda. She brings in a model who is wearing a white top while she herself is wearing a teal top. On the table in front of them, there is a bowl of yogurt and a box of baking soda. The beautician then shows how to mix the yogurt and baking soda and apply it to the face. The model follows the instructions and demonstrates it by applying the mixture to her face. The beautician gives further instructions and the model wipes her face with a washcloth. The video ends with the beautician ending her instructions.\", \"video_name\": \"v_HkbOI7gEtKk\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"In the video, a man is shown standing in front of a mirror adjusting his shirt in a bedroom. A pull-up bar is visible in the background attached to a door. Another man, who looks identical except for his glasses and different shirt, is sitting and reading a magazine. A girl wearing a backpack enters the house through the door and walks through the kitchen into the living room. She sits on the sofa after putting her backpack down. The two identical men stand at the entrance of another room, and the girl greets them while they wave back. The men then proceed to make sandwiches. The one wearing a black shirt spreads peanut butter and jelly on one side of the bread and the other man makes a sandwich with lettuce and ham. The man in the black shirt runs inside a bathroom and shuts the door. The next scene shows the sandwiches placed in front of the girl. The video ends with the two men looking at each other and frowning.\", \"video_name\": \"v_cEa87QoI3Do\"}, {\"Q\": \"Can you describe the dodgeball game shown in the video in detail?\", \"A\": \"The video shows a dodgeball game played indoors on a basketball court. One side of the court has players wearing teal t-shirts, throwing balls at the other side where a group of amateur players is playing. The players in the teal t-shirts move around the court and try to hit the opposing team with the balls. People sitting on bleachers surrounding the court are cheering both the teams. A man with a mic stands outside the court, evidently announcing the game. The game starts with a player getting hit and falling, but he immediately gets up. A boy jumps and catches the ball that bounced off the fallen player. A girl nearby the fallen player holds her hands to her face, visibly shocked. Throughout the game, some players get hit by the balls while some catch them. A player in a teal t-shirt is dismissed as he crosses the midline, and the game comes to a stop.\", \"video_name\": \"v_ARpoJIBF2NM\"}, {\"Q\": \"Can you please describe the video in detail?\", \"A\": \"The video appears to be shot from the other side of a chain-link fence. Within the yard, there is a group of boys standing together, while one boy wearing a black outfit stands a few feet away. On the left, there is a building with an open facade. The video captures a scenario where a boy from some distance throws a red ball and one of the boys, who is wearing a green shirt, runs up to the ball and kicks it. The ball travels through the air and lands near the opposite chain-link fence, where another boy wearing a red shirt runs towards it.\", \"video_name\": \"v_H8oehT8eeGc\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with a man wearing a brown sweater and glasses holding a black wooden Irish flute in a living room. There is a television stand and various framed items on the wall. The man speaks into the camera before starting to play the flute. As he plays, he lowers the flute to speak to the camera, showing how to breathe while playing. The video ends as the man demonstrates breathing exercises and plays the flute again for a short moment. Sunlight enters the room from the left side at the back.\", \"video_name\": \"v_jQzBXawu29s\"}, {\"Q\": \"Can you describe in detail what happens in the video with the boy chopping wood?\", \"A\": \"In the video, a boy wearing blue jeans and a sweater is standing next to a pile of chopped logs and chopping a block of wood in the daytime. A street can be seen some distance from the boy. However, as he attempts to chop the wood, it slips and turns to the side. But the boy straightens the log and attempts to chop the wood once again before the video ends.\", \"video_name\": \"v_51faGoLPJgM\"}, {\"Q\": \"Can you describe the steps shown in the video of cleaning a shoe?\", \"A\": \"In the video, a man wearing a grey t-shirt is standing behind a table with a green basin, a bottle of sope, a cup of water, and an Adidas shoe. He removes the insole and laces from the shoe and applies a solution on the brush which he dips in the water bowl to start brushing the shoes. The man holds the shoe over the basin as he cleans all sides by turning it and then wipes it with a towel. The video is then sped up to show the cleaning process. Finally, he holds the clean shoes to the camera, and compares it to a dirty shoe. At the end of the video, he holds a bottle of cleaning product labeled \\\"jason markk\\\" which was presumably used to clean the shoe.\", \"video_name\": \"v_AB480dHyDeM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features two people - a man wearing a blue T-shirt and a blue cap, and a woman wearing a brown top and blue jeans - dancing in an alley. Behind them, a wall with windows is visible. The man leads the woman as they move around while dancing. In the next clip, they are still in the alley, and the man can be seen turning the woman forward and backward. Then, a new person wearing a white t-shirt joins them, and he dances with the woman, and they turn each other. The video ends as the two stop dancing, leaving the alley behind.\", \"video_name\": \"v_lPw_BRbPw5s\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a chef in a well-lit kitchen preparing various sandwiches. It starts with the chef buttering a slice of bread placed on a cutting board with three other slices and surrounded by bowls of different ingredients. The chef then slices tomatoes and introduces himself, standing behind a counter with pans and ladles hanging above a stove. He then proceeds to make different sandwiches, displaying a montage of adding toppings to bread slices. In one clip, the chef makes a turkey sandwich with two slices of bread on the cutting board. He spreads butter on both slices, places sliced turkey and cranberry sauce, and adds green leaves before covering it with the other slice. The video ends as the chef cuts and plates the sandwich.\", \"video_name\": \"v_Kofjs0rkwxc\"}, {\"Q\": \"Can you describe the entire video from start to end in detail?\", \"A\": \"The video begins at a ballet class where an instructor and two students stand at the front of the studio with their backs to a group of little kids who are sitting a few feet away. The instructor starts the practice with some hand movements and the two students behind her mimic her actions. The little girls sitting in a half circle behind them are also seen following the movements and repeating them. As the practice continues, the instructor and the two students slowly move their hands and legs to showcase the movements. The ballet studio is well-lit with a light wood color floor creating a bright environment. The video ends as the three dancers finish the movements and stand in a pose. Overall, the video showcases a ballet practice session with an instructor and two students demonstrating hand and leg movements which students around them mimic.\", \"video_name\": \"v_jiM0HUFn0e8\"}, {\"Q\": \"Can you describe the gymnastics routine in the video?\", \"A\": \"The video takes place in a well-lit stadium with multiple levels of seats visible in the background occupied by people. A gymnast can be seen wearing a pink outfit mounting the balance beam with a front flip. She then proceeds to do several poses on the balance beam, including multiple backflips. While attempting to spin, she almost slips but quickly regains her balance. After running a few steps, she does a backflip and continues with several more poses. Unfortunately, she eventually loses her balance and jumps down before jumping back on the board to do a front flip. Finally, the video ends when she executes three backflips and lands gracefully on the ground.\", \"video_name\": \"v_4oi6dXfpJS4\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video is a compilation of different martial arts fights and demonstrations that took place on a stage. It begins with a man in a white gi jogging towards a stage and another man in a red and white gi running to the stage from the opposite side. They start exchanging kicks and hits. Next, a clip of people wearing red gi fighting on stage, and a person knocks out everyone and poses while spectators are clapping. The video continues with a man in red and an opponent in white exchanging blows in a martial arts contest with a referee wearing a white gi standing to the side. The man in the red gi knocks out his opponent. The video shows a clip of two people wearing black gis fighting, and one knocks out the other. Quick transitions between fights where two people are engaged in fighting each other follow. A clip of a man holding up a winner's hand on stage is seen while spectators are applauding. A series of clips with contestants breaking bricks placed or held in different places can be seen. Additionally, there are clips where people are performing different martial arts moves on stage. The video ends with a man wearing a black gi breaking a few tiles placed on two cinder blocks.\", \"video_name\": \"v_4KMG6lEDSIM\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video showcases various instances of people engaging in different climbing and trekking activities outdoors. It begins with a shot of a rock climber on a steep hill with a clear sky visible and birds circling above. The subsequent scenes depict people climbing up and down various types of rocks and boulders with the help of ropes and an instructor. A woman is seen behind one of the climbers in a safety position while another man is sitting on a nearby rock. The video then transitions to a group of people rowing a boat past a large rock island in the sea and climbing onto it from the boat. In another shot, a man is seen jumping into the water from hanging onto a rock. The video ends with a shot of a person high up on a rock climbing using a rope. Throughout the video, individuals are carrying backpacks and trekking up rocky hills during the day. The video also includes a panoramic view of a rocky hill and a high up view of a valley. \", \"video_name\": \"v_889_kqLFM0E\"}, {\"Q\": \"Can you provide a detailed description of the video?\", \"A\": \"The video captures a woman in a park, standing between two bars used for fitness exercises. She lifts herself up using the bars and performs a number of exercises including swaying, moving back using her hands, doing the split, and swinging using the bars. Behind the woman, trees can be seen a few meters away. Other outdoor fitness equipment is also visible in the background. Overall, the video captures the woman engaging in a full-body workout routine using the available equipment in the park.\", \"video_name\": \"v_1YU4MSK80cQ\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"The video depicts a basketball court where two teams are playing dodgeball. The court is well-lit, and there are spectators scattered throughout the seating area, as well as people standing at the side of the court. There are several balls scattered on the floor. At one point, a boy in a pink cutoff shirt throws a ball at a boy wearing a grey shirt, who is coming towards him from the front. The boy in the grey shirt skillfully evades the dodgeball by flipping in midair, and then lands and throws a ball he is carrying at the boy wearing the pink shirt. Unfortunately, he misses the throw. Subsequently, a boy behind him picks up a ball. The boy in the pink shirt turns around and walks away. Finally, the people who were standing right outside the court rushed the boy in grey and celebrate.\", \"video_name\": \"v_IDuoF51IMJ8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with an animation showcasing famous buildings in New York. It then proceeds to show a group of young boys getting ready with paintball gear in a room. The boys are then seen taking defensive positions with their paintball guns and ducking behind various inflated bunkers used as obstacles in the field. The video contains clips of the kids playing in the arena and loading their paintball guns with pellets. There is also a clip of kids listening to another boy before a game. The video ends with a boy walking towards a curtain and lifting it to walk behind it. People who get hit in the game are seen walking away with their hands up. Additionally, a man wearing a black shirt is seen speaking to a boy wearing glasses at one point. Overall, the video captures a paintball game being played by a group of young boys in what seems like an indoor arena.\", \"video_name\": \"v_jkrlHzTRTvo\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a close-up shot of a saxophone case that is decorated with the words 'GUNS-N-ROSES' on it, with a rose drawing underneath. Next, there is a cutaway to a woman wearing a green vest holding a saxophone as she stands next to the case at the side of a street. The sidewalk where she stands has grass growing on it, and a parking lot with cars is visible. We also see a man wearing a black shirt walking on the sidewalk. Then, there is a clip of people walking on a sidewalk with metal gates. The woman with the saxophone speaks into the camera, and people are seen walking on the street next to her.\", \"video_name\": \"v_dhsSq0K1xEg\"}, {\"Q\": \"Can you describe what is happening in the video?\", \"A\": \"In the video, a woman and a toddler wearing blue and red pajamas are inside a bathroom. The woman is wearing makeup, and the toddler is attempting to wipe it away with a cloth. There is a white towel hanging on a towel stand in the background, with a few more towels folded on it. There is also a sink behind the woman. Behind the toddler, on a platform, there are various jars with lids visible. The toddler continues to slowly wipe the women's face with a cloth until the end of the video.\", \"video_name\": \"v_0x6ZV9Y8g_c\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with two people who are wearing winter clothes and shoveling snow around a car parked in front of a garage. The car is covered in a layer of snow and a house with a red brick facade is visible behind them. At the beginning and end of the video, a man wearing suspenders and sunglasses is also seen shoveling snow from different locations. In another part of the video, a doctor wearing a white coat and a stethoscope is seen speaking to the camera from a clinic. The two people continue shoveling snow, with one of them shoveling from a distance behind the car while the other is next to the car. The shots of snow-shoveling during the daytime, the snow-covered plant next to the house and the doctor speaking from a clinic all create a wintry atmosphere. \", \"video_name\": \"v_-IMXSEIabMM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a man wearing a red vest standing in a well-lit gym. Bars and weights are stacked on a shelf next to the wall. The bottom half of the wall is painted blue, while the top is painted white. The man fixes grips to the barbell and with visible effort lifts it over his head. Finally, he drops the barbell, and it bounces on the ground a couple of times. \", \"video_name\": \"v_dVpHF8tE2qo\"}, {\"Q\": \"Can you provide a detailed description of the video content?\", \"A\": \"The video begins in a well-lit dance studio with a light-colored wooden floor, visible mirror on the left wall, and six people, including an instructor in black, standing with hands on either side. The dancers start to belly dance as the music begins, moving their hands and swaying from side to side. As the dance progresses, they start to move forward and back while turning sideways. The video continues to show the women dancing until the music stops and the credits roll. Overall, the video features five participants following the lead of the instructor in a lively belly-dancing routine.\", \"video_name\": \"v_Kic33dtLja8\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"The video starts with a lacrosse game being played outdoors at night with floodlights turned on. Two teams are playing on the field, with one wearing white and the other wearing dark blue jerseys. A referee is present. During the game, a player wearing a white number 11 jersey catches the ball and runs towards the goal while dodging opponents but ultimately fails to score. The video then switches to a daytime clip where the same teams are playing and a player in a white number 15 jersey shoots and scores the ball towards the goal, pointed out by a red arrow. The video then switches to another clip where two teams, one wearing red and the other white jerseys, can be seen practicing on the field with their respective coaches throwing balls towards the players. The same player in the white number 15 jersey is pointed out by the arrow catching the correct ball and successfully scoring a goal, celebrating with his teammates. The video then continues with several clips where the same player, again pointed out by a red arrow, is seen scoring a goal or attempting to score one at different times of the day, with some clips being played in the evening with the floodlights on. The video concludes with a clip where the player in the white number 15 jersey scores a goal and celebrates with his teammates.\", \"video_name\": \"v_4mRkWNLE66E\"}, {\"Q\": \"Can you tell me about the video in detail?\", \"A\": \"The video depicts a man getting a tattoo on his left arm from a woman in a dimly lit room, where the woman is wearing a purple-colored check shirt with blue jeans and a pair of black gloves, while the man is dressed in a black beanie cap, a chain, and blue jeans. The room has a window with open shutters that provide a view of some plants outside, as well as some paintings, tattoo inks, a chair, and a small mirror. The woman is seen making a tattoo on his left hand using a tattoo gun, after observing a drawing on paper. The tattoo area is illuminated by bright lights, and the video ends with a close-up of the finished tattoo.\", \"video_name\": \"v_FOZdNPQ7d5Q\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts in a room with a group of men sitting around a table containing bottles of alcohol and cups. One of the shot glasses filled with alcohol is lit on fire, and a man sitting on the sofa picks it up while he is drinking from his red cup. He attempts to drink the flaming shot, but the flames stick to his mouth and he panics, causing him to throw the glass onto the table. The alcohol spills onto the table, igniting and lighting one of the men standing nearby on fire. The man who is on fire is screaming and jumping around, falling at some point while trying to put the fire out. Finally, another man near him helps him put the fire out.\", \"video_name\": \"v_BSwChZlOb0k\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, we see a man wearing a red t-shirt in a gym with a black floor. Upon walking up to a barbell, the man bends down and lifts it. We can see that there is equipment fixed to the wall and overhead lights illuminating the gym. The man successfully holds the weight over his head for a short moment before dropping it to the floor, where it bounces a few times. After this, the man walks away. \", \"video_name\": \"v_cqxiLraI8uY\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video is set in a well-lit gymnasium and features a boy wearing black tights, standing atop a pair of horizontal bars. To his side stands an instructor wearing a white shirt, while a few feet behind the bars stand a few kids wearing the same outfit as the boy. To the left, a woman in a red shirt is standing on the foam padding, which is under the horizontal bars. The boy swings a few times on both bars before making a jump to the padded foam next to him.\", \"video_name\": \"v_d6PdD2O3Yrs\"}, {\"Q\": \"Can you describe the content of the video in detail?\", \"A\": \"The video starts with a cloudy sky overlooking a tennis court which is separated by a metal fence from another area with houses in the distance. On the right side of the court, a man holding a racquet throws the ball in the air and hits it towards the other end. The video ends with a hand blocking the camera lens, leaving us unable to see any additional information. Overall, the video seems to showcase a man playing tennis on a cloudy day in an outdoor court with nearby houses visible in the distance.\", \"video_name\": \"v_3V9tzjyr51I\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video depicts a man dressed in a grey Tai Chi uniform practicing Tai Chi movements in a well-lit indoor studio. The studio has light wood flooring, and a mirror covers the entire wall behind the man. On the right side of the man, there is a window covered with purple drapes. The man performs various Tai Chi stances, moving slowly and deliberately, until he stops at the end. This video provides insight into how Tai Chi is practiced in a studio setting, and the lighting and decor of the studio.\", \"video_name\": \"v_di5f5hM05Vw\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with two men standing outside a building with support pillars on either side of the entrance. They are both wearing black briefs, the one on the left has a grey sweatshirt on while the one on the right has a white vest. Then, the scene changes to show a group of men training in a hall with large windows, and one man is seen doing drills on a small trampoline. There is a clip of men in black briefs doing push-ups. The video continues to show different types of training, including men training for ballet in different rooms and a clip of a man in briefs training in different ballet movements in a hall. Eventually, the video shows a line of men wearing black briefs and facing the camera, before the credits roll.\", \"video_name\": \"v_JN1wuOpCZvk\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video is about people riding dirt bikes on a dirt path with inclines during the daytime and undergoing lessons on different ways to ride dirt bikes on different surfaces. Along the path, there are yellow painted tires stuck a distance apart from each other as markers. In one clip, a rider wearing white gear is seen speaking to the camera from a well-lit indoor location. There is a wall at the edge of the yard with a red logo on it. The video ends with a shot of the driver wearing full safety gear standing outside in the dirt bike yard, and credits roll at the end of the video.\", \"video_name\": \"v_JH9qiuPCkY4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, we see a woman using a towel to wipe the top of a stereo while nodding to the voiceover. A person holding a spray bottle labeled \\\"Favor\\\" is seen pressing the bottle. We then see another person wiping a wooden surface as words appear in between. A bottle of \\\"Favor\\\" is placed on a wooden surface, and an advertisement is shown. Another person is seen wiping a wooden cabinet while nodding to the voiceover. This sequence is then repeated with the \\\"Favor\\\" bottle. Overall, the video showcases people using and promoting the \\\"Favor\\\" spray bottle on various surfaces.\", \"video_name\": \"v_aQ-F9wr0HQ4\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video features a woman named Pinky standing behind a bar and wearing a black fedora. Behind her are glass shelves holding different brands of bottles of alcohol that are lit from below. As Pinky introduces herself, a logo with \\\"Apache Cafe\\\" appears on the top right of the screen, followed by a screen with \\\"STUPIDDOPE\\\". She is shown mixing a drink called \\\"GIN E HENDRIX\\\" by lifting some of the bottles which will go into making the drink and proceeds to mix different ingredients into a tall glass including ice cubes. Pinky later uses a shaker to mix everything before pouring the finished mixture in a glass with ice cubes in it. She finishes the drink by adding cucumber, a slice of lime, lemon and a basil leaf before dropping in a black straw. The video ends with a black screen with the address of the bar and credits.\", \"video_name\": \"v_0UTrTg3DF5g\"}, {\"Q\": \"Can you please describe the video in detail?\", \"A\": \"The video starts with a happy brown Labrador Retriever walking on a dirt path with his tail excitedly wagging, wearing a leash around his neck. The camera then pans to a little boy, who is wearing a black T-shirt and red trousers, walking with a man while holding hands. The man is wearing a blue T-shirt, glasses, and a baby sling. Trees are visible on the side of the path. The cameraman then turns the camera to himself and smiles. Finally, the video ends with the camera panning back to the dog. The video captures a happy family enjoying a walk outdoors with their furry friend.\", \"video_name\": \"v_Ie09KEAPP2I\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, three men are seen standing at the edge of a yellow bungee jump platform. Two of the men are attendants wearing green shirts, and the one in the middle is wearing a t-shirt and a strap. The scene takes place during the day beside a stream with a visible yellow inflatable boat on the left bank. One of the attendants belays the bungee cord and then walks out of view. The jumper walks to the edge and holds a thumbs up to the camera before jumping with his hands wide open. The camera follows him as he falls down and reaches the bottom. He is pulled back up for a few meters before dropping down again. After the rope loses energy, the man dangles from the rope and is slowly reeled down by the attendants who draw him to the shore.\", \"video_name\": \"v_Jdu5AqaWfz8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video depicts a river where several yellow kayaks are tied to the pier. The kayaks are then seen floating on the river with thick tree cover visible on the opposite shore. Next, a man wearing a red life vest is seen sitting in a yellow kayak which is placed in a kayak training notch, while another man pushes the kayak out of the notch. Afterwards, a man wearing a yellow shirt and cap is rowing down the river with a black backpack slung over his shoulder. A tortoise is then shown on a fallen log in the river. Following this, a group of kids wearing life vests and rowing blue and red kayaks are shown, followed by adults and kids in yellow kayaks rowing through a canopy of tree branches in the river. The video ends with more scenes of people kayaking in the river.\", \"video_name\": \"v_Erje-PwY9hE\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video shows two teams playing hockey on a field during the day, one wearing blue uniforms and the other wearing white. The main focus of the video is a player in blue uniform number 1 who is followed as she dribbles the ball across the field, receives passes from teammates, and attempts to score a goal. However, at one point the ball is taken from her. The video then shows this same player in matches during both the day and the night, sometimes wearing a white uniform with number 1. Additionally, a referee wearing a teal shirt can be seen on the field. The video ends with the girl scoring a goal, which prompts celebrations from the people around her.\", \"video_name\": \"v_HgYuRKZ_V90\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video is about a man named Brandt who repairs a bicycle. It starts with a web address appearing with a background of images of people from a particular university. A man in shorts is riding a bicycle on a path. A green field being watered by sprinklers is visible in the background, while people are walking on the path. Brandt introduces himself in front of a bike while a cutaway of a library is shown. There are different stalls visible on either side of the path, including what appears to be a juice stand. Brandt then proceeds to repair a bicycle by fixing a punctured tire. He starts by undoing the brakes of the back tire and using a wrench to unscrew the derailleur guard. He then removes the tire from the rim, opens a new tube from a box, inflates it a little using a pump, inserts it into the tire, and fills it up fully. A shot of the hand pump with a pressure gauge can be seen. Brandt then fixes the tire back to the bicycle using the wrench and also reapplies the rear brake. He hands the repaired bike back to a girl who rides away on the path. The video ends with different Brandt and other volunteers handing repaired bikes to their owners.\", \"video_name\": \"v__jV5sAOOHLk\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts by showing a reddish rabbit grooming himself in the corner of a wooden box that has a mesh floor, through which the ground is visible. The rabbit has dark brown highlights on its coat. A person then reaches out and pets the bunny on its head.\", \"video_name\": \"v_JDwd6Ec454A\"}, {\"Q\": \"Can you describe the video of the little girl playing hopscotch in detail?\", \"A\": \"In the video, we see a young girl wearing a pink sweater running towards the camera. She addresses the camerawoman and heads straight to the hopscotch court drawn on the ground behind her. To her side is a yard with visible grass and, in the distance, other houses can be seen. The girl starts to play hopscotch and eventually reaches the last square. She picks up a pebble and throws it outside of the squares, but then picks it up again and throws it back inside. She tosses the pebble several times until it lands on the square she wants, and then hops over to that square. The video gives us a delightful scene of a young girl having fun playing hopscotch on a beautiful sunny day.\", \"video_name\": \"v_34SBoGK8mT8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a girl wearing a black top in a room with printed walls, a chandelier, dolls, a green sofa, and a large green plant. There is also a white door in the room. The girl is making a video for her friend Bethany. She turns the camera and shows two other girls in the room. One of the girls is sitting and having her hair styled while wearing a white sweatshirt and glasses. The other girl is styling her hair and wearing a white top with blue jeans. There is also a make-up table visible in the room.\", \"video_name\": \"v_fNhw7xE3NM8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, there are two men sparring in a dojo wearing protective gear. The floor is covered with blue and red carpet and there is a poster with a skull and words \\\"THE CHOSEN FEW\\\" on the wall behind them. One of the men is wearing all black and the other is wearing a red headgear. As they spar, they move around the dojo, trying different moves and techniques. In the background, there are people sitting with their backs to the wall. A man in a red t-shirt is seen walking across the camera, who appears to be instructing the boxers. The man wearing black is trying to kick and punch the other boxer, while the man in the red t-shirt is moving around observing them. The two men move towards a mirror wall as they spar. Finally, the video ends as they stop sparring.\", \"video_name\": \"v_83f0iwb8VW8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a girl wearing a red shirt is shown picking up a bottle of mouthwash from her side and taking a sip before gargling. She is in a dimly lit room and spits the mouthwash out by bending forward. After that, she begins to beatbox and picks up her toothbrush to squeeze some toothpaste on it. She continues to brush her teeth and spit by bending forward. The video ends as she finishes brushing and sticks her tongue out.\", \"video_name\": \"v_Lb7Q8qv3MHU\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with a dimly lit bathroom scene where a woman is holding a drinking glass in one hand and a cigarette in the other while standing in front of a mirror. She seems to be examining herself closely by turning in different directions. The bathtub attached to a tiled wall is visible behind her. The woman taps her cigarette in front of the mirror before placing both the cigarette and the glass in front of her at the end of the video.\", \"video_name\": \"v_7dXqXFoju2M\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video titled \\\"TWIN JAZZ\\\" starts with a group of men playing saxophones in a darkened room with a banner behind them that reads \\\"TWIN JAZZ.\\\" A man sitting behind a piano speaks into a microphone before he starts playing the piano, and the saxophone players add to the music. A man plays the guitar while standing behind the saxophone players. The video shows all the musicians playing their instruments. Lastly, the music stops and the saxophone player steps forward to shake hands with the pianist.\", \"video_name\": \"v_A20uQSBtYMs\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, we see a woman riding a horse inside a ranch. The ranch is surrounded by a concrete wall, and there is a man in the middle of the enclosure wearing a cowboy hat and an orange shirt, watching the rider. Outside the compound wall, there is a sloping hill with trees visible on it. The woman is slowly riding the horse while using the reins to direct it. At the end of the video, we see a last still image of the woman on the horse.\", \"video_name\": \"v_9InwA-ajB2M\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts off with a person wearing a yellow shirt breakdancing and doing the backspin while other people stand around watching. Soon, the focus shifts to a child breakdancing for a brief moment before going back to the person in the yellow shirt who continues to do the backspin. Then, a boy wearing black shirts and jeans enters the frame and starts dancing, performing a few moonwalks. Following this, a shot of a group of boys walking backward with their hands on each other's shoulders is shown. As they pass by, an old man wearing beige overcoat and cap walks towards the camera and starts talking about the breakdancing. The video also has several clips of different kids dancing while people are standing around them and one clip showcasing the dancer's foot movement. Finally, the video ends with a sequence depicting the same group of people dancing.\", \"video_name\": \"v_2nDbYhgdw2A\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a dimly lit swimming pool with lane ropes visible in the breadth of the pool several distances from the person on the diving board. The person performed several jumps on the diving board before jumping high and executing a reverse somersault dive into the pool. The dive was successful, and the person disappeared into the water with a ripple. \", \"video_name\": \"v_eRco7yXc-40\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"Sure, the video starts with a woman coach standing in a basketball arena wearing a blue jacket, while a group of players is visible in the far back and a blue cover is placed at the bottom half of the back wall. The coach is gesturing while she speaks before turning towards the players. The bleachers in the arena are folded as three players start a drill by running across the court, while the one in the middle dribbles the ball all the way and shoots it in the basket. The players then turn back, while a different player among the three, wearing a white uniform, collects the ball and runs back to the other side of the court with the others while dribbling the ball. Once they reach the basket, the girl with the basketball attempts to shoot the ball into the basket, while the other two turn around to block her. A different group of three players then takes the ball from them and continues the drill. Meanwhile, another group of players is performing the same drill simultaneously. The players continue the same drill in groups of three as the coach is visible standing outside the court until the end of the video. Finally, the screen displays the drill instructions followed by credits.\", \"video_name\": \"v_IGZvj1J9tNc\"}, {\"Q\": \"Can you describe the scene in the video?\", \"A\": \"In the video, a woman wearing a blue top is standing in a bathroom in front of a sink washing a piece of cloth. The bathroom walls are lined with white tiles. Toiletries are placed on a shelf in front of the mirror, along with a bottle of dish soap. During the video, the woman looks into the camera once while continuing to wash the clothing. As she washes the clothing, she rinses it in the sink that is filled with dirty water. The video ends with the woman still washing and speaking into the camera.\", \"video_name\": \"v_49PbyLbrxlE\"}, {\"Q\": \"Can you describe the content of the video in detail?\", \"A\": \"The video shows an indoor scene of a girl performing multiple backflips on a foam platform. Another girl is sitting and watching to the side. The platform is well-lit from above, with a poster of a cartoon sloth on the far wall. The girl finishes her backflips and lands perfectly. Overall, the video captures the impressive athleticism and skill of the backflipping girl in a fun and lighthearted setting.\", \"video_name\": \"v_4QRRxub6L5Q\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, three girls walked into a light green colored kitchen and stood behind a table with various food items including cabbage, juice box, loaf of bread, etc. The girls introduced themselves and started making a salad by adding ingredients such as lettuce, tomatoes, oils, salt, and peanuts, and finally holding up the finished plate of salad to the camera. One of the girls named the items on the table, while the other two picked them up and showed them to the camera. The kitchen had a mounted cupboard on the wall behind the girls.\", \"video_name\": \"v_0DFz3sgfda0\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a person in a backyard where there is a pile of logs laid out on the ground and some kindling is placed on top of it. Behind the logs, there is a wooden fence and a plant growing beside it. The person holds a piece of chips and lights it using a Bic lighter before placing it on the arranged firewood. They continue lighting other pieces of kindling and placing them on the firewood to help it light faster. A slideshow of images is shown, with the person holding up lit kindling to the camera. The video ends with a closeup shot of the top of the woodpile, where the logs are burning steadily.\", \"video_name\": \"v_cCDffwsJvsY\"}, {\"Q\": \"Can you describe the contents of the video starting from the beginning?\", \"A\": \"The video begins with a basketball court in a playground with a hopscotch court drawn in one corner. A teenager takes a running start towards the hopscotch and quickly hops through the court, followed by two other teens. The three of them then make their way around the outside of the court and hop through the hopscotch court again. After this, two of the boys run towards a basketball hoop nearby and attempt to do a pull-up from the basket. They jump and pull themselves up once before jumping down and running a few feet away. There are other basketball hoops and people scattered on the basketball court in the distance. The video ends with the cameraperson walking slowly towards the boys.\", \"video_name\": \"v_11p9goB2rm8\"}, {\"Q\": \"Can you describe the video in detail including the woman, the room, the furniture, and the actions she takes?\", \"A\": \"In this video, a woman is standing inside what appears to be a living room with a white wall and a small curtain hanging on it as well as various decorations. Behind the woman, a maroon sofa can be seen and a lamp is sitting on a table next to it. Additionally, there is a coffee table in front of a two-seater red sofa. The woman is holding a bottle of wood polish in one hand and a towel in the other hand. She drips the wood polish on the coffee table and proceeds to wipe it with the towel. The video ends with her standing over the coffee table and explaining how to fill cracks in it.\", \"video_name\": \"v_4Gx_8vuxzAk\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"In the video, two men are seen standing and leaning against a well-lit kitchen counter. One man is wearing a black suit, while the other is Will Smith, the actor, who is wearing a multi-colored shirt. Behind the actors, there are steel door ovens and a shelf with wine glasses on it. Throughout the video, both men are conversing, and at one point, Will Smith removes his sunglasses from his pocket and begins to play the harmonica while singing intermittently. The video concludes with Will Smith pausing from his harmonica playing and looking to his right. Overall, the video depicts a casual conversation between two individuals in a kitchen, with an impromptu musical performance from Will Smith.\", \"video_name\": \"v_HMs703DhjQU\"}, {\"Q\": \"Can you describe the video content of the volleyball match?\", \"A\": \"The video starts with text appearing on a black screen introducing the volleyball match. As the clip progresses, two teams on either side of a well-lit volleyball court are visible. Other people outside the court are present watching the game. The player on the near side is wearing orange t-shirts while the team on the far side is wearing yellow t-shirts. All the players are wearing knee guards. The team wearing the yellow uniform starts the game and hit the ball back and forth between the two teams a few times before the players wearing the orange uniform get the ball. They almost missed the hit when a player dives and hits the ball, but another player from the same team then hits the ball to the other side. The team wearing the yellow uniform misses the ball as they are already celebrating, and the team wearing the orange uniform wins the exchange and celebrates. The last play is replayed a few times before the two teams get back into positions again.\", \"video_name\": \"v_Jy93pLzV2uw\"}, {\"Q\": \"Can you describe the video of making cocktails in detail?\", \"A\": \"The video showcases the art of making classy cocktails. It begins with a close-up of a martini glass on a table with the text \\\"The Art of Making Cocktails\\\" displayed beside it. Behind a bar, a bartender is polishing a glass followed by shots of various drink bottles lined up on the bar and shelves. Next, the bartender lays out limes beside the lemons & places a cocktail glass, filled with ice, on the bar. He picks up a variety of alcohol bottles and places them beside him. Then, he pours different kinds of alcohol into a mixing glass followed by a flavoring agent. He throws ice cubes into the mix, stirs with a stirrer, empties the ice from the cocktail glass and pours the blend into it. The ingredients for the drink are shown in a cutaway. Lastly, the bartender wipes the bar. Two windows with shutters down are visible to his right.\", \"video_name\": \"v_6wPVO7I8iIY\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video is titled 'The Strength it Takes' and begins with the Indiana University Health logo displayed on a light yellow background, followed by a title saying 'Parallel Bars Basic Level'. Next, a woman wearing a neon green t-shirt, black track pants with white stripes, and white sports shoes is seen exercising on the parallel bars in a park during the day. The park also has seesaws and there are cars parked beside it. A man is walking in the park. After the woman finishes, the video displays another title saying 'Parallel Bars Advance Level'. A man is then seen exercising on the parallel bars, wearing a light green t-shirt, black short track pants with white stripes, and neon green and black sports shoes. The video ends with the text 'THE STRENGTH IT TAKES', and the web address 'www.iuhealth.org/workout' is displayed on a light yellow background.\", \"video_name\": \"v_Fb4X1PWfOvY\"}, {\"Q\": \"Can you describe the content of the video?\", \"A\": \"The video starts with an old man wearing a black vest over a white shirt repairing a bicycle. He is in a well-lit shop sitting on a wooden chair in front of the bicycle which is propped up vertically. Another bicycle is parked next to the man against the wall. As the man turns the wheel of the bicycle, a woman wearing a pink top enters the shop. They start to converse, and the woman checks if the bike is working. At the end of the video, the old man holds the woman by the ear, and they are still conversing.\", \"video_name\": \"v_IfugNwywj-k\"}, {\"Q\": \"Can you describe what's happening in the video?\", \"A\": \"In the video, we see a boy standing in a dirt patch in the woods wearing an off-white T-shirt and shorts. He picks up an axe and starts chopping a wooden log that is placed on a chopping block. After swinging the axe a few times, the log splits and falls to the ground. The boy then picks up another log and places it on the chopping block. He swings the axe again and splits the log, and then he holds up a thumbs-up sign to the camera.\", \"video_name\": \"v_dZsk5Dp_5FE\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the beginning of the video, we see a woman holding a bow and wearing a quiver with arrows on an indoor basketball court. Wearing black trousers and a black top, she draws arrows from her quiver and shoots them one after another until her quiver is empty. In the next clip, she is shown from the back shooting toward a makeshift target made of sheets hung near the basketball hoop. She shoots arrows one after another into a sheet in the middle of the target.\", \"video_name\": \"v_AL1W3HkjJ2Y\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, a man wearing a checkered shirt and a backpack is speaking to others around him in a parking lot lit by sodium vapor lamps. Another man, wearing a hoodie and standing next to him with his hands in his pockets, bobs his head up and down as the harmonica player starts to play. Cars are parked in lanes behind them. The man next to the harmonica player takes out his phone and starts to record the harmonica player while he plays. After a few moments, the harmonica player finishes one song and starts another. He waves to someone on his left side as he continues to play. The video ends as the harmonica player finishes playing, pockets his harmonica and greets someone walking behind him.\", \"video_name\": \"v_j_1kNiGcepU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, we see a woman sitting behind a small, round table with tubes and bottles of makeup in front of her. She is wearing a white coat over a teal top and there is a portable mirror next to the makeup. The room is well-lit and there is a large framed photograph on the wall behind her, along with a shelf containing books, framed art, and statues. The woman introduces herself and applies a cream from the table before moving on to applying eyeliner and smudging it with her fingers. She then applies lipstick, does contouring, and follows up with a highlight and blush. Finally, she picks up the mirror and inspects her work.\", \"video_name\": \"v_le7JdKQB65I\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video depicts a man dressed in athletic clothes standing in a net while holding a disk in his right hand. He looks towards the direction where he throws the disk after spinning a few times. The net has several people sitting and standing outside it while there are also several people sitting on bleachers in the background. The video was filmed on a sunny day with several hills visible in the distance. After throwing the disk, people can be seen applauding, indicating that the man has likely performed a successful display of his skills, possibly in a form of a frisbee game.\", \"video_name\": \"v_-6dz6tBH77I\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a squash court with two players playing a game. The court appears to be well-lit and has a wooden floor. One of the players is wearing a black shirt while the other is wearing a yellow T-shirt. As the players continue the game, the player in the yellow shirt misses his shot and the other player kneels down to tie his shoes. The video ends when the man in the yellow shirt looks up to the cameraman. Overall, the video showcases a typical game of squash with two players wearing different colored shirts and the game being interrupted momentarily when one player ties his shoe.\", \"video_name\": \"v_BnO8AfQS8yE\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a dog is standing under an open tap with water splashing on its back. There is a blue bucket placed near the dog, and a man wearing shorts is kneeling in front of the dog. The scene is outdoors during the day, with a wall visible behind them. A closeup of the dog's face is shown, before the man fills the bucket with water. As the dog shakes itself dry in slow motion, the man pours the water from the bucket over the dog. The video ends with a close-up of the dog's face while the man kneels next to her.\", \"video_name\": \"v_CvbBSwz-9XI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a man riding a dirt bike in a dirt field surrounded by houses during the daytime. He enters the field from outside and rides towards the center. As he approaches the middle, he tries to jump over a slight elevation but lands with the front wheel first and crashes into the dirt. A man wearing a black t-shirt walks past the camera as the biker crashes. The video ends with the man trying to get up. \", \"video_name\": \"v_-cAcA8dO7kA\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, a woman is seen standing in front of a sink in a kitchen, which is well-lit by natural light coming in from outside through a window. The woman starts cleaning a plate with a scrubber in the sink which is filled with water and a few other cleaning scrubs are visible floating in it. After cleaning the plate, she stacks it on a shelf beside the window where shelves of dishes are visible. She then proceeds to wash a spoon and a fork with the scrubber before placing them on the shelf along with the plate. The woman then cleans a tumbler and stacks it on the side. Additionally, there is a house visible through the window where the woman is standing, and she turns to the camera at the end and yells after cleaning the dishes.\", \"video_name\": \"v_9snScUyE8_4\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video starts with a man washing his hands in a sink positioned in front of a mirror, with toiletries on the right side of the sink. The next clip shows people carrying bags and suitcases while crossing the street through a zebra crossing. Moving forward, the video captures a man wearing a welding mask welding something in a dimly lit workshop where a tank is placed on his left, against the wall. The sparks are visible as the man continues to weld. Another clip shows a monster truck driving through a muddy track, splashing mud as it turns. An animated hand appears on a black background swiping before it moves on to the next video clip. The final clip shows several cars moving through traffic with sunlight reflecting from them, and a building visible far behind the traffic.\", \"video_name\": \"v_96ADEnJy4GU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man wearing a yellow t-shirt and glasses is seen holding a knife in his right hand while standing amidst weeds and plants in a wooded area. The sky is cloudy, and trees are visible in the distance. He then kneels down and strikes his knife against a fire starter, igniting a stack of firewood. The stack is comprised of heavy logs placed against each other and a few thinner sticks in the middle, with a green piece of paper visible there as well. The firewood stack is placed on an area with sand and pebbles, and the video concludes with the fire growing larger as the man celebrates.\", \"video_name\": \"v_-D1gdv_gQyw\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, we see a girl sitting in a room holding a harmonica. She is wearing glasses and a grey shirt. Behind her is a bookshelf with a few empty shelves, and there appears to be another room behind the girl with the lights off. Next to her is a grey door. The girl listens to music for a few moments and begins to play the harmonica along with it. She sways back and forth as she plays the harmonica for several minutes. The video ends when the girl finishes playing the harmonica along with the music. Overall, the video shows a girl playing a harmonica in a cozy, dimly-lit room with a bookshelf in the background.\", \"video_name\": \"v__a527xEzhkw\"}, {\"Q\": \"Can you provide a detailed description of the video?\", \"A\": \"The video features a game of water polo being played in a swimming pool. In the pool, a few players can be seen passing the ball to others, while two players try to grab the ball from each other. Some players score goals while others defend the goalpost. Behind a table on the poolside, a few people can be seen sitting and watching the game. A coach is also present on the poolside, supervising the game. Another game of water polo is being played on the other half of the pool. In the end, the players of the first game can be seen swimming to the other side of the pool. Overall, the video shows an intense game of water polo with players displaying their skills.\", \"video_name\": \"v_cH3H-arDsH4\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"In this video, we see a group of spectators sitting on white chairs placed on a lawn during daytime. There is a building with a sloping roof visible in the background, and a few cameramen with cameras on tripods are standing in front of them. The camera pans to show a polo match taking place on a polo field. Players are riding their horses and using mallets to hit the ball. We can see two teams competing against each other, one wearing white polo shirts and the other wearing red. As the camera moves around the field, we can notice trees lining the end of the field. Overall, it seems like a beautiful day outside, with a thrilling polo match entertaining the crowd.\", \"video_name\": \"v_hvhny4-sI-w\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video features a woman wearing a red vest standing in a net that is covered on three sides. In the background, trees are visible at the edge of the field. The woman is holding a hammer attached to a string while standing on a red mat. She swings the hammer with the string and spins a few times before releasing it through the open end of the netting. The video ends with the woman walking off to the side. \", \"video_name\": \"v_d09u-0k3LdE\"}, {\"Q\": \"Could you describe the video in detail?\", \"A\": \"The video starts in front of a garage where a couple is dancing. The couple is surrounded by other people standing to the side. The setting is outdoors during the daytime, but there is no direct sunlight streaming down. On the left, there is a red truck that stretches all the way back towards the fence. Beyond the fence, there are woods visible. Towards the back of the scene, children are seen running around. A man is tending to a barbecue a few feet behind the dancing couple. The camera flashes intermittently, capturing the scene as the couple keeps dancing. Later in the video, another couple, with the man wearing a red jacket and cap joins in on the dancing. The video ends with the couples continuing to dance. Overall, the video depicts an outdoor gathering of people at an open space outside a garage, dancing and enjoying barbecue.\", \"video_name\": \"v_B0GCHDqEsRU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a lacrosse game played in the daytime between two teams, one wearing blue-green jerseys and the other wearing grey ones. Throughout the game, the camera follows Samuel Shearin, who wears a blue-green jersey with number 24, as he plays various positions and tries to check the ball from the player on the opposing team. The game takes place on a field surrounded by trees and shrubs, and there are spectators seated along the boundaries. At one point, a photographer is seen taking pictures behind a tripod. The video concludes with Samuel chasing an opposing player in an attempt to check the ball.\", \"video_name\": \"v_aH39BSM0-Ag\"}, {\"Q\": \"Can you describe the contents of the video in detail?\", \"A\": \"The video shows a man wearing a white T-shirt starting to dance during the daytime. People standing some distance from the man start to dance following his lead, as he conducts a Zumba class. There are also people gathered beyond the dancing group to watch. The camera pans to show individual people dancing and a clip of the man's legs as he dances. The video ends with the man turning toward the dancers and dancing, after which the class stops as the music ends and the man walks to the side, clapping.\", \"video_name\": \"v_iqhdqhVttEM\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins with a woman putting a slice of pepperoni on a sandwich in a well-lit kitchen. We see a slideshow of the ingredients, including an oven, a baking sheet, a French roll, a pack of pepperoni, a bottle of mayonnaise, slices of cheese, sliced tomato, and shredded lettuce. The woman then slices a roll of bread in half and spreads one-half of the roll in pizza sauce. Next, she adds slices of pepperoni and cheese to the slice of bread and places the sandwich in an oven, taking it out once it is done. Lastly, she tops the sandwich with slices of tomato and shredded lettuce before putting the two halves of the sandwich together.\", \"video_name\": \"v_cECycCDw1Nc\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video starts with an animated shot of Earth and ends with a website address. The next scene takes place on a basketball court where an instructor wearing a white shirt and green shorts stands, holding a basketball in the crook of his left hand. A person in a gray T-shirt stands behind him, and folded chairs are visible in the back. The instructor speaks into the camera, and the angle then widens to show another boy wearing a white T-shirt on the instructor's right. When the instructor bounces the basketball under the basket, the boy in the white T-shirt runs to the edge of the court, catches the ball, and dunks it in the basket. This process is repeated several times, with the instructor asking the boy to repeat certain steps when he makes mistakes. The drill ends, and the instructor turns back to the camera to speak about the boy's performance.\", \"video_name\": \"v_egowZOcbEkI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video depicts a black-and-white footage of a spear-throwing competition in an outdoor stadium. Athletes holding a spear can be seen running and throwing spears in the competition, while the audience seated in the stadium and people standing in suits on the field watch and cheer. The clip further shows the landing of the spears in an area marked with numbered lanes. Clearly visible is a man standing near the number 70 marker, dressed in a suit. The video continues to show athletes running and throwing spears, followed by a shot of an athlete throwing a spear and camera following its path to the destination. Once the spear lands, the audience applauds. In the end, a moment shows Adolf Hitler clapping, and a scoreboard with the names and throw distances of athletes is displayed. \", \"video_name\": \"v_HURRgbZGz8Q\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In this video, a man wearing a white T-shirt and shorts is standing in a park wearing boxing gloves, with trees visible behind him. People are walking and sitting in the far background while the man is standing in the shadow of a tree. Next, the man begins practicing kickboxing with another man who is wearing a camo gi and focus mitts, and holding kick pads in his left hand. The student starts with punches and kicks, while the trainer calls out which move he should do next and in what count. Meanwhile, a woman walks her dog in the background. The two men then start sparring, shifting into punches, deflecting punches, and dodging kicks. Finally, the video ends with a still image of the student kicking. \", \"video_name\": \"v_afMQA352X_A\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with two news anchors, a woman on the left and a man on the right, reading the news from behind a glass news desk marked with the number '10'. A cutaway to two men shoveling snow outside a house is then shown. These men are wearing winter clothes as they shovel snow during the day time. The video then cuts to the two men speaking to the camera one after the other, with their names displayed on ribbons on the screen. The men are then shown shoveling snow and speaking to each other. After this, a doctor is interviewed, and clips of people shoveling snow are shown as cutaways of the doctor speaking. Next, a woman wearing a black jacket reports in front of the camera with a brown building visible in the far back of the reporter, and a few cars parked a few feet behind her. She holds up her phone, and a woman is shown holding up her phone displaying her heart rate before shoveling snow. Another cutaway of the doctor speaking is shown. Finally, the video returns to the two men from the first clip speaking to the camera, and ultimately ends with the news anchors in the studio finishing their reporting.\", \"video_name\": \"v_l8gg9TYh_B0\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts in a brightly lit gym with a man wearing a black t-shirt and pants bending down to lift a barbell, surrounded by exercise equipment visible through the windows. He slowly lifts the barbell above his head but drops it on the floor, causing it to bounce a few times. The scene then shifts to a well-lit area with a red wall where the man is attempting to lift an 85-kilogram barbell. He successfully lifts it over his head and drops it on the floor. This process is repeated a few times with increasing weights, until the man lifts a barbell of 130 kilograms and successfully lifts it above his head. Overall, the video showcases a man performing weightlifting exercises with gradually increasing weights.\", \"video_name\": \"v_Ds2O0-8Labs\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with four people comprising three men and a woman, all standing outdoors in front of cameras holding an old spice-branded ping pong paddle. There is a ping pong table at their back. After that, the woman in black dress is seen being photographed by several photographers with an Old Spice banner in the background. Next, a man in a red polo shirt joins her on the red carpet to get photographed. The woman holds up a paddle that displays the image of the man next to her. In the following scene, the woman and the man in the red T-shirt are seen playing ping pong. The game appears to take place in the same outdoor location with the same distinctive backdrop. The woman hits the ball and it goes out of the bounds of the table, and the video comes to an end.\", \"video_name\": \"v_k1QAWLupB-I\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video takes place in an outdoor paintball arena during the day time. An aerial shot of people in fluorescent vests and a pirate flag fluttering in the wind is shown, followed by a shot of an armory. Subsequent shots feature people in different camo outfits putting on helmets, running through the arena, and hiding behind cable drums and old tires. Shots of people shooting paintball guns while dodging and avoiding getting shot are also displayed. A fence around the arena and a street with moving vehicles can be seen. Finally, the video ends with a shot of a different area of the arena, with more weeds and cinderblocks providing cover for the players.\", \"video_name\": \"v_9UvVeUYQLgA\"}, {\"Q\": \"Can you describe what happens in the video where a man is climbing a rock?\", \"A\": \"In the video, a man wearing a gray vest is free climbing up a rocky hill surrounded by trees during the day. Patches of sunlight are seen streaming down through the tree cover. On his left, a rope is visible being used by another man at the bottom for belaying. The climber continues to climb without the assistance of the rope, pausing briefly to find a handhold, as another cutaway shows the belayer. The video ends with the climber reaching the top of the rock face. Additionally, a woman appears at the end of the video and turns the camera towards herself and speaks into it.\", \"video_name\": \"v_dEpUIpmBvow\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts in a well-lit room with white walls and a woman seated on a chair wearing a red shirt, black & purple track pants, and white sports shoes. Her name is Bethany and she proceeds to shave her legs with a razor while talking to the cameraman. A woman enters the room through an open door on the left and shows some papers to Bethany before leaving. Bethany then stands up and strikes a pose, with a woman in a grey top and glasses standing behind her. The room contains a sofa, printer, wall clock, landline phone, and documents on the shelf. Bethany finishes by skipping out of frame and the video fades to black. The video begins and ends with black screens, with the text \\\"REALLY BETHANY Shaving Your Legs In My Office\\u2026REALLY?\\\" shown at the start. Overall, the video depicts the act of Bethany shaving her legs in an office setting and featuring a brief interaction with another woman.\", \"video_name\": \"v_EZyLBq2jJtE\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video starts off with two kids and an elderly woman playing, with one of the kids, a little girl, standing on the side of a porch, while a little boy wearing a red shirt is a few feet away. The elderly woman holds her hands in front of her, first to the girl and then to the boy. The woman proceeds by helping the little girl jump down the porch and then starts teaching her how to play hopscotch. She begins to hop forward a few steps while teaching, but unfortunately, she trips and falls down towards the end of the video.\", \"video_name\": \"v_2fzIi1lPd8U\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts on a dirt bike track surrounded by trees and vegetation. The sky appears to be cloudy. A pair of bikers is approaching from behind a jumping ramp. The first biker jumps over the ramp and continues on to the next one. Shortly after, another rider parallel to the first one jumps over a ramp on the right side. As they successfully clear the second ramp, the riders are visible turning left.\", \"video_name\": \"v_C7yd6yEkxXE\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"Sure! The video is of a parrot that is perched on a kitchen counter and is eating cream from a pink coffee cup. The cup has a butterfly painted on it and a spoon sticking out of it. The wall behind the parrot is white and tiled, and a birdcage can be seen behind it. The lighting in the kitchen is good, illuminating the scene well. Towards the end of the video, the parrot is still eating cream from the coffee cup. Overall, the video captures a cute and funny moment of a parrot enjoying some cream.\", \"video_name\": \"v_IN23CO8Kotk\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video follows two women as they enter a tattoo parlor. Inside, there are various types of equipment and pictures on the wall. One of the women goes to the tattoo artist to get a stencil on her wrist. The tattoo artist is wearing a white shirt and glasses. A close-up of the stencil is shown and the girl is seen standing in front of the mirror, examining the stencil. In the next clip, the tattoo artist starts to clean the area and dips the needle in the ink to start tattooing. A close-up is also shown of this process with blood visible. Once the tattoo is complete, the girl holds it up to the camera and walks out of the tattoo parlor while the cameraman turns the camera towards himself and another girl standing next to him.\", \"video_name\": \"v_BFChXuwZ4wo\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a boy is seen standing in a well-lit room in front of a ping pong table with an overhead light. There is a window visible on the back wall. The boy then hits a ball with a paddle. In the next scene, the boy is participating in a ping pong competition where multiple tables are arranged side by side with dividers in between. The competition includes different venues with the boy playing against opponents of different nationalities. The video includes different scenes showing the boy playing against different opponents. The video ends with a clip of the boy playing against an opponent, and he misses a hit.\", \"video_name\": \"v_9k19UUJtldg\"}, {\"Q\": \"What movements do the women make as the music starts?\", \"A\": \"As the music starts, the women slowly turn around and begin belly dancing.\", \"video_name\": \"v_hFi6S_guB7I\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"A man is talking to the camera in front of a fence, behind which is a lit stadium with people scattered throughout the field. There are clips of a person wearing a body cam running on the kickball field, a man throwing a ball underhanded towards waiting players, a player kicking the ball into the air and running some distance while being filmed, a clip of the man being filmed kicking the ball is also shown. In another clip, the cameraman walks towards a person, then brings the camera close to the person's face and walks behind him. He then focuses on the man who is wearing a blue t-shirt and a bodycam, followed by a man in a black t-shirt wearing a kilt. Another clip shows a man in a blue T-shirt speaking to the cameraman and then running towards the ball. The video ends with a man in a darkened room speaking into the camera.\", \"video_name\": \"v_18yZR3NDaXM\"}, {\"Q\": \"What is happening in the first clip of the video?\", \"A\": \"In the first clip of the video, a woman is standing in front of a kitchen sink with dirty dishes visible in it. She turns the tap on and pours soap on a board and starts scrubbing while speaking to the camerawoman.\", \"video_name\": \"v_BjjN_aq_wq4\"}, {\"Q\": \"What is the man doing in the bathroom?\", \"A\": \"The man and woman enter the bathroom and step out immediately while laughing. The woman is carrying a bucket. Both of them are speaking into the camera while inside the bathroom.\", \"video_name\": \"v_DJTvj9lfSWU\"}, {\"Q\": \"What is the man wearing while washing dishes and talking to the cameraman?\", \"A\": \"The man is wearing a white hoodie and glasses while washing dishes and talking to the cameraman.\", \"video_name\": \"v_0BtHd6dvm78\"}, {\"Q\": \"What is the distinguishing feature of the dinghies shown in the video?\", \"A\": \"The dinghies shown in the video have sails of different colors, with one having white sails, another having red and white sails, and yet another having just a white sail.\", \"video_name\": \"v_dKJMP8EmZjw\"}, {\"Q\": \"What is the man polishing with the clear liquid?\", \"A\": \"The man is polishing a shoe with the clear liquid.\", \"video_name\": \"v_kGdxtU3NwWo\"}, {\"Q\": \"Who takes the trimmer from the boy and continues trimming the hair of the man?\", \"A\": \"Another individual takes the trimmer from the boy and starts trimming the hair of the man.\", \"video_name\": \"v_b4xvXZq5uD8\"}, {\"Q\": \"What does the person do after filling the sink with water?\", \"A\": \"After filling the sink with water, the person starts scrubbing the dirty pots using a scrubber both inside and out.\", \"video_name\": \"v_aLb79wtvxoQ\"}, {\"Q\": \"What techniques did the athlete perform during his routine on the pommel horse?\", \"A\": \"The athlete started his routine by doing a circle around the pommel horse, followed by scissors and a handstand. He then continued with other techniques before doing a routine where he moved the length of the pommel horse and finished up by doing a handstand and an upside-down split.\", \"video_name\": \"v_KlgrI3Ngwv0\"}, {\"Q\": \"What kind of drills are the children doing in the video?\", \"A\": \"The children are doing different stances, punch and kick drills along with movement drills.\", \"video_name\": \"v_jN-jnIgzd6k\"}, {\"Q\": \"What is visible at the bottom once the boy jumps?\", \"A\": \"A stream is visible at the bottom once the boy jumps.\", \"video_name\": \"v_araMJB23T1s\"}, {\"Q\": \"What tools did the man use to clean the leather sofa in the video?\", \"A\": \"The man used a hand brush, a bottle of leather cleaner, some foam cleaner, a towel, a scrub pad, a hair drier, a piece of sponge, and a UV protection liquid to clean the leather sofa.\", \"video_name\": \"v_dW6OZV43ulU\"}, {\"Q\": \"What is the little girl washing in the video?\", \"A\": \"The little girl is washing a glass, a spoon, a pot, and a plate with Dora the Explorer on it, and a plastic jar in the end.\", \"video_name\": \"v_JcAAwYpJhm8\"}, {\"Q\": \"Which teams were playing against each other in the video and who won the match featuring Italy and Brazil teams?\", \"A\": \"The teams playing against each other in the video were Italy and Latvia, Italy and Brazil, and Latvia and Germany. Latvia won the match against Italy in the end and Brazil won the exchange against Italy, but Brazil's opponent was not specified, so we do not know which team won the match between Brazil and Italy.\", \"video_name\": \"v_aYxni8ohTfU\"}, {\"Q\": \"What kind of maneuvers did the man perform on the parallel bars?\", \"A\": \"The man performed a handstand and swung from the bars while holding on to them with his hands. He also held a position with his legs parallel to the ground while holding himself up from the bars. He turned using one hand on the bar and attempted to land while performing multiple backswings.\", \"video_name\": \"v_6Xsfwn5M6qs\"}, {\"Q\": \"What items does the man use to wipe the glass door?\", \"A\": \"The man wipes the glass door with a wiper and a blue towel.\", \"video_name\": \"v_CecqF_uHeOI\"}, {\"Q\": \"What movements can be seen in the video?\", \"A\": \"In the video, several people can be seen kicking their legs and two people are shown swimming in place close together looking for the ball.\", \"video_name\": \"v_7-taNK5mW8E\"}, {\"Q\": \"Who won the wood-chopping competition in the video and where was he positioned among the contestants?\", \"A\": \"Lawrence O'Toole, who was the first contestant on the left, won the wood-chopping competition and stepped away after completely chopping his wooden block.\", \"video_name\": \"v_IcR28Yqt4mY\"}, {\"Q\": \"What is the man's attire as he prepares for the high jump in the video?\", \"A\": \"The man is wearing a green fluorescent vest with the name tag 'UKHOV'.\", \"video_name\": \"v_B3xMfP_UOt4\"}, {\"Q\": \"What is happening to the ship in the video?\", \"A\": \"The ship is tilted left and looks like it is about to capsize.\", \"video_name\": \"v_4XnXyKYxnQQ\"}, {\"Q\": \"What activities are being done in the gym in the video?\", \"A\": \"In the video, a woman is seen punching into a punch mitt worn by a man, kicking kick pads held by a man, and kicking focus pads held by a person. The man with the punch mitts later starts practicing punching with the woman as well as goes on to kick the pads held by other men in the gym.\", \"video_name\": \"v_hq48S65dlyo\"}, {\"Q\": \"What safety gear does the little boy wear while skateboarding in the video?\", \"A\": \"The little boy wears a helmet, kneepads, and elbow guards while skateboarding in the video. He falls a few times when jumping off ramps and once when reaching the top of a ramp.\", \"video_name\": \"v_gWbIoFrpwTY\"}, {\"Q\": \"What kind of dancing are the couples in the video doing?\", \"A\": \"The couples in the video are salsa dancing.\", \"video_name\": \"v_eoSwoeLmeyQ\"}, {\"Q\": \"What does the man do with the hammer after he swings it around his body?\", \"A\": \"After swinging the hammer around his body twice, the man then swings it two more times while turning before releasing it through the open side of the cage.\", \"video_name\": \"v_1d_U_2HIPmY\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a girl who is crying is getting her hair cut in a salon; a woman brings her lollies which she refuses, and the barber starts cutting her hair.\", \"video_name\": \"v_Hz7-mBFGsSs\"}, {\"Q\": \"Who is the player wearing a white jersey that the video follows?\", \"A\": \"The player wearing a white jersey that the video follows is Cole Fowler.\", \"video_name\": \"v_B_U7vUtoCKY\"}, {\"Q\": \"What is the woman wearing in the video and what does she explain towards the end?\", \"A\": \"The woman is wearing a life vest and a white helmet. Towards the end, she explains the way to make turns while rowing.\", \"video_name\": \"v_7pfHxav4b0U\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman climbs onto the resistance machine and starts pedaling.\", \"video_name\": \"v_htzAYwoAZkg\"}, {\"Q\": \"What do Kevin Spacey and Rafael Nadal do at the beginning of the video?\", \"A\": \"At the beginning of the video, Kevin Spacey and Rafael Nadal appear on the stage wearing tuxedos and interacting with each other.\", \"video_name\": \"v_ijrjRNwZjqQ\"}, {\"Q\": \"What colored marker buoys can be seen near the windsurfers in the video?\", \"A\": \"Different colored marker buoys are visible in the vicinity of the windsurfers.\", \"video_name\": \"v_IhmtmKxEU40\"}, {\"Q\": \"What is the toddler doing when someone dives into the pool?\", \"A\": \"The toddler bends forward and washes her face with the water, while the man is holding onto her.\", \"video_name\": \"v_3zpODTqnYLs\"}, {\"Q\": \"What is the girl doing in the video?\", \"A\": \"The girl in the video is seen shaving her left leg while occasionally talking to the camera person.\", \"video_name\": \"v_1KONAdZGdWU\"}, {\"Q\": \"What color suit is the man wearing while playing the saxophone on stage?\", \"A\": \"The man is wearing a black suit and white shirt while playing the saxophone on the red-floored stage.\", \"video_name\": \"v_DIhyfNJAm-M\"}, {\"Q\": \"What is the woman doing in the gym?\", \"A\": \"The woman is practicing weightlifting movement patterns.\", \"video_name\": \"v_K6QunmuTZOQ\"}, {\"Q\": \"What is the man wearing while ironing the dress shirt in the video?\", \"A\": \"The man is wearing a black sweater vest over a grey shirt.\", \"video_name\": \"v_l7qSKJyq6mA\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is piercing the woman's belly button using a needle piercer and inserting jewelry.\", \"video_name\": \"v_2VZumBKJuPs\"}, {\"Q\": \"What is the background of the video during the dance performance?\", \"A\": \"Two palm trees are visible at the back with a hedge wall.\", \"video_name\": \"v_7EeO9V2B574\"}, {\"Q\": \"Where does the fight scene take place in the video?\", \"A\": \"The fight scene takes place under an overpass during the daytime.\", \"video_name\": \"v_IgDBDaIoNAM\"}, {\"Q\": \"What team scored the goal in the final clip of the video?\", \"A\": \"A player in an orange uniform scored the goal in the final clip of the video.\", \"video_name\": \"v_325CAs4hhq8\"}, {\"Q\": \"What is the man playing?\", \"A\": \"The man is playing the accordion.\", \"video_name\": \"v_CTJej0rZMiI\"}, {\"Q\": \"What color is the jacket of the man who dances near the far wall?\", \"A\": \"The man who dances near the far wall is wearing a black jacket.\", \"video_name\": \"v_CTyvQHkAKuY\"}, {\"Q\": \"What does the girl do after mounting the balance beam?\", \"A\": \"The girl performs a backflip after mounting the balance beam.\", \"video_name\": \"v_3M290KZV5lo\"}, {\"Q\": \"What is the man wearing and where is he sitting in the video?\", \"A\": \"The man is wearing a green sweatshirt, sitting on a red chair, and has a single black dress shoe on each of his thighs.\", \"video_name\": \"v_itXYuf_Cj_Q\"}, {\"Q\": \"What is the little boy doing in the video?\", \"A\": \"The little boy is playing the violin throughout the video.\", \"video_name\": \"v_JspVuT6rsLA\"}, {\"Q\": \"What are the spectators doing and what does the seating area look like?\", \"A\": \"The spectators are walking down the stairs in the seating area which has red-colored and folded seats. They are wearing sunglasses as there is direct sunlight falling on the seating area.\", \"video_name\": \"v_cPIsE2ZCWzM\"}, {\"Q\": \"What is the man doing to the bike's crankset in the video?\", \"A\": \"In the video, the man is removing the crankset to tinker with it. He wipes off the grease from the crankset and the bottom bracket using a paper towel before applying something from a tube on the bottom bracket. He then reattaches the crankset and tightens the bolt, testing the pedal at the end of the video.\", \"video_name\": \"v_IL8__uSFpqg\"}, {\"Q\": \"What is the woman wearing in the video?\", \"A\": \"The woman is wearing a white t-shirt and shorts.\", \"video_name\": \"v_JguRZtFN-Ck\"}, {\"Q\": \"What type of dives are performed in the video?\", \"A\": \"In the video, several people can be seen performing various types of dives, including backflip dives, front flip dives, and horizontal flips into the pool.\", \"video_name\": \"v_cFOaL4Ir4hg\"}, {\"Q\": \"What happened to the team on the right during the volleyball game?\", \"A\": \"The team on the right passed the ball between themselves four times before passing it to the other team. The other team started celebrating before the game was won. The ball lands by them and they lose the game. The first team celebrates.\", \"video_name\": \"v_BdRH3lpopLQ\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman in the video is starting a serve and practicing serving on an outdoor tennis court. She hits the balls to the opposite wall after making a serve.\", \"video_name\": \"v_JHKAcpYlxkQ\"}, {\"Q\": \"Which team is wearing blue in the video?\", \"A\": \"One of the teams in the video is wearing blue jerseys.\", \"video_name\": \"v_1xBdquA6dx8\"}, {\"Q\": \"What is the man in the white t-shirt doing in the video?\", \"A\": \"The man is dancing and interacting with the crowd after a man wearing a black outfit breakdances on a white sheet.\", \"video_name\": \"v_kdOsmDACtqw\"}, {\"Q\": \"What is happening in the first scene of the video?\", \"A\": \"In the first scene of the video, a toddler is shown sitting on a vanity table with various bottles and makeup products on it. A hair straightener is also plugged into an outlet on the left side of the table. The table has a mirror in the back reflecting the toddler.\", \"video_name\": \"v_kIFHChO_-vg\"}, {\"Q\": \"What is the main focus of the video?\", \"A\": \"The video is a tutorial on how to play an octave in a harmonica.\", \"video_name\": \"v_5P9Tbut04xE\"}, {\"Q\": \"What type of clothes are the women wearing?\", \"A\": \"The women are wearing gym clothes.\", \"video_name\": \"v_7gaC3b5nJqs\"}, {\"Q\": \"What is the color of the toothbrush used in the video?\", \"A\": \"The toothbrush used in the video is blue.\", \"video_name\": \"v_15yU0R2MBQM\"}, {\"Q\": \"What demonstration does the woman in the video provide?\", \"A\": \"The woman in the video provides a demonstration of how to use the paddle to turn the kayak, specifically doing a reverse sweep by turning her torso to her left and sweeping the left paddle from back to front, which turns the kayak to the left. She repeats this once more. Additionally, she demonstrates a forward sweep with the left side and a reverse sweep with the right paddle and repeats this again.\", \"video_name\": \"v_kgz7c2kb4Rg\"}, {\"Q\": \"What moves does the girl perform in the video?\", \"A\": \"The girl performs a backflip, standing back-tuck, back handspring tuck, running front flip, front and back flips, and a tumbling sequence that consists of backward flips and running front flips.\", \"video_name\": \"v_0k0xNs8Zjb4\"}, {\"Q\": \"What are the players doing in the video?\", \"A\": \"The players are in a swimming pool playing water polo.\", \"video_name\": \"v_9pavfCL1HvU\"}, {\"Q\": \"Who enters the living room and sits next to the old woman while she is watching a movie?\", \"A\": \"The old woman's daughter enters the room and sits next to her.\", \"video_name\": \"v_i5qTK0mInTc\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a game of water polo is being played in a swimming pool. Players are scattered in the pool, converging towards a goal post and attempting to score. Spectators are sitting on a bench on the poolside. The game continues as players start to pass the ball to their teammates and eventually, one of the teammates near the opposite goal post scores a goal.\", \"video_name\": \"v_EK7qW-oavQY\"}, {\"Q\": \"What is happening in the first clip of the video?\", \"A\": \"The first clip shows a man on a golf course drawing the string of a compound bow, notching an arrow, and releasing it. Before that, a logo and website for HuntinClub.com is shown.\", \"video_name\": \"v_jCxQQ9DMpT0\"}, {\"Q\": \"What is the \\\"Scissor kick\\\" in the video?\", \"A\": \"The \\\"Scissor kick\\\" is the fifth-degree jump performed by Stefan where he jumps one leg after another over the bar.\", \"video_name\": \"v_4NPVpI9zUpI\"}, {\"Q\": \"Can you describe the appearance of the girl and the boy in the video?\", \"A\": \"Yes. The girl and the boy are both wearing black outfits while running on the track. However, there is no description given about their physical features or any other details.\", \"video_name\": \"v_Ku76zinwWkg\"}, {\"Q\": \"What is the shooter doing in the video?\", \"A\": \"The shooter is running around the paintball park with a paintball gun and shooting at other people.\", \"video_name\": \"v_Hy54nZSDxTk\"}, {\"Q\": \"Who scored all the goals in the video of the women's field hockey game?\", \"A\": \"The video follows a single player named Jessica Skillings, who scores all the goals shown in the video.\", \"video_name\": \"v_KApqxr02rcQ\"}, {\"Q\": \"What task is the man performing in the video?\", \"A\": \"The man is shoveling snow on a sidewalk.\", \"video_name\": \"v_BBKSKU6dGGk\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is lifting a barbell over his head and dropping it to the floor.\", \"video_name\": \"v_-HpCLXdtcas\"}, {\"Q\": \"Which team won the game in the video?\", \"A\": \"There is no information provided about which team won the game in the video.\", \"video_name\": \"v_9VtxNvLx6zA\"}, {\"Q\": \"What objects were visible in the background?\", \"A\": \"Trailers, a truck, a tent some distance back from the man, a foldable table with chairs, and a motorcycle parked in front of the tent were visible in the background of the video.\", \"video_name\": \"v_AwgGYaV1lT0\"}, {\"Q\": \"Where does the man practice Tai Chi?\", \"A\": \"The man is standing on a concrete floor outdoors with trees in the background.\", \"video_name\": \"v_0X0u_3xUBPE\"}, {\"Q\": \"What does the man do in the video?\", \"A\": \"The man walks in slow motion towards a chopping block with an axe in his right hand. He swings the axe down on a wooden log placed on the chopping block until it breaks and falls on the ground. He also throws the axe in front of him before walking towards the camera.\", \"video_name\": \"v_iABuDhagUm8\"}, {\"Q\": \"What is the man wearing while playing the harmonica?\", \"A\": \"The man is wearing winter clothes, a hat, and sunglasses.\", \"video_name\": \"v_jt-Vnap5KP4\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man in the video is holding a skateboard, and then he starts skating while performing flip tricks. The video ends with him still skating.\", \"video_name\": \"v_agu58IVL7IQ\"}, {\"Q\": \"What is the throwing technique used by the man in the video?\", \"A\": \"The man first spins to build momentum and then throws the disk through the opening in the netting.\", \"video_name\": \"v_9AfQ2Q-96oE\"}, {\"Q\": \"What type of practice is the man in the video doing?\", \"A\": \"The man is doing a tai chi practice.\", \"video_name\": \"v_A904-cbaYDw\"}, {\"Q\": \"What type of dance is performed in the video?\", \"A\": \"Ballet dance is performed in the video with dancers performing different poses.\", \"video_name\": \"v__B7rGFDRIww\"}, {\"Q\": \"Who is holding the basketball in the video?\", \"A\": \"The boy on the left is holding the basketball.\", \"video_name\": \"v_5tFfEA1JWjA\"}, {\"Q\": \"What is happening on the screen behind the dancers?\", \"A\": \"There is a projection on the screen behind the dancers.\", \"video_name\": \"v_AQnp2QAnwI0\"}, {\"Q\": \"What kind of stunts do the cheerleaders perform in the video?\", \"A\": \"The cheerleaders perform basket tosses where bases lift and throw flyers into the air, acrobatic movements like toe touch and twist are done by flyers before they land back down, flips and reform into bases to begin another stunt, and throw several flyers into the air and hold poses.\", \"video_name\": \"v_ANaMmXJFE54\"}, {\"Q\": \"What equipment is present in the gym?\", \"A\": \"The gym has balance beams fixed to the ground with foam pads lining the floor.\", \"video_name\": \"v_7orO93DICYw\"}, {\"Q\": \"Who is watching the competition?\", \"A\": \"There is a referee with a notepad observing the competition, and a group of people sitting on chairs and on the ground watching.\", \"video_name\": \"v_9hTcvGUnMBs\"}, {\"Q\": \"What is the boy doing in the video?\", \"A\": \"The boy is mowing the lawn.\", \"video_name\": \"v_60tIsGR0Zzg\"}, {\"Q\": \"What is the bartender's attire?\", \"A\": \"The bartender is wearing a black vest and tie over white shirt.\", \"video_name\": \"v_IRua6QGP-Ow\"}, {\"Q\": \"What is visible in the background near the wall?\", \"A\": \"A lamp is visible in the back near the wall.\", \"video_name\": \"v_DOI6tsATsE4\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"In the video, the man is seen wearing black tights.\", \"video_name\": \"v_ej9TkJVjK9M\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman is standing in a room with a hopscotch court drawn on the ground. She is standing near a white wall with a clock hung on it. There is a closed door behind the woman. The woman starts to hop on the hopscotch court and completes a pass. She then turns around and hops back to the spot she started from. She then opens the door and turns to the camera and holds her hands to the side.\", \"video_name\": \"v_8L1UjGLOCeI\"}, {\"Q\": \"Who can be seen struggling to follow the rhythm in the aerobics class?\", \"A\": \"The first woman on the right can be seen struggling to follow the rhythm in the aerobics class.\", \"video_name\": \"v_c7S423zJqPo\"}, {\"Q\": \"What is the man advertising in the video?\", \"A\": \"The man is speaking about a weight loss product and holding up a sachet of coffee.\", \"video_name\": \"v_Bkhr72sazvQ\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"In the video, the man is polishing a table using a mixture of olive oil and vinegar.\", \"video_name\": \"v_d-RYiiPzVKg\"}, {\"Q\": \"What is the scoring mechanism in the archery competition?\", \"A\": \"The contestants shoot arrows through a compound bow and their points for that particular shot appear on the screen.\", \"video_name\": \"v_BmLDHLKiIdQ\"}, {\"Q\": \"Who celebrates near a ring with other people in the video?\", \"A\": \"The old woman in a pink sweater runs towards a ring near other people and celebrates after the next person kicks the ball. She holds her footwear in her hands, and then walks back to her spot.\", \"video_name\": \"v_9VflCeoPr9I\"}, {\"Q\": \"Who is seen recording the man getting his haircut?\", \"A\": \"Another man is seen holding a mobile phone recording the man getting his haircut.\", \"video_name\": \"v_1kwIYXB4b8s\"}, {\"Q\": \"Who are the two teens introduced in the video and what are they doing?\", \"A\": \"The two teens introduced in the video are John and Tyler. They are sparring and kickboxing in a basketball court.\", \"video_name\": \"v_kPn9NzU4W48\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows two bikers performing stunts on a dirt bike track. The video begins with a man jumping over an incline on his bike on the track. In between, there is another scene of a different biker jumping over another dirt incline. The riders are riding and jumping on the dirt track in a circle, while a person holding a camera records them in the middle of the dirt track. The video ends with the two bikers jumping over a hill one after the other.\", \"video_name\": \"v_4iFlM_Zu7xs\"}, {\"Q\": \"What kind of lighting is used on the stage?\", \"A\": \"Overhead lighting is used on the stage with gobo lighting of different shapes projected onto the stage wall.\", \"video_name\": \"v_Dbas61NkTV0\"}, {\"Q\": \"What is the girl wearing in the video?\", \"A\": \"The girl is wearing a black top.\", \"video_name\": \"v_j6ElczD-Pw4\"}, {\"Q\": \"What animals can be seen grazing in the video's final shots?\", \"A\": \"In the video's final shots, ostriches, alpacas, and camels can be seen grazing one after another.\", \"video_name\": \"v_e3DB_y78IHc\"}, {\"Q\": \"What is the color of the boy's T-shirt in the video?\", \"A\": \"The boy is wearing an orange T-shirt.\", \"video_name\": \"v_9ZVWD0ZKXZg\"}, {\"Q\": \"What happens in the video when one of the women in the first team walks out of the court?\", \"A\": \"When one of the women in the first team walks out of the court, she picks up a purse while walking towards the back of the court and briefly speaks to one of her teammates while walking away. The remaining players briefly celebrate and continue playing, with the first team now short a teammate.\", \"video_name\": \"v_1dDAcUliXrQ\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"In the video, the man wearing a white shirt walks next to the girl and uses a spoon to taste the mixture in the bowl. He then turns to the camera and speaks.\", \"video_name\": \"v_KvtqF0LaWU0\"}, {\"Q\": \"What instrument is the girl playing in the video?\", \"A\": \"The girl is playing the piano by referencing the sheet music in front of her.\", \"video_name\": \"v_3VjaC7wdMso\"}, {\"Q\": \"What drill are the players performing in the video?\", \"A\": \"The players are performing a point guard drill where they run around the cone, attack the basket, retrieve the ball back from the rebounder machine under the basket, run to the opposite basket, dribble as they run and attack the basket again. They make a point guard entry pass to attack the basket.\", \"video_name\": \"v_cms1BP4eKOA\"}, {\"Q\": \"Who is the woman in the video and what does she do?\", \"A\": \"The woman in the video is Britney Reese. She is seen running and performing a high jump into a sand pit.\", \"video_name\": \"v_Ivq9_wPFNs4\"}, {\"Q\": \"What does the woman do while the boy is scrubbing dishes?\", \"A\": \"The woman walks near the boy holding a phone up. She records the boy scrubbing dishes. She picks up a scrubber from the sink and hands it to the boy.\", \"video_name\": \"v_dO01vfB9z4g\"}, {\"Q\": \"What is the event depicted in the video?\", \"A\": \"The video depicts the Red Bull CROSSWAYS event where people are seen kayaking, running and cycling through various terrains.\", \"video_name\": \"v_4-KiAur4dI8\"}, {\"Q\": \"What is the man doing with his harmonica in the beginning of the video and who does he interact with at the end?\", \"A\": \"In the beginning of the video, the man is sitting on a sidewalk and playing a harmonica. At the end of the video, he stops playing and holds his hand out to someone.\", \"video_name\": \"v_1XNHcfxTqW0\"}, {\"Q\": \"What type of gymnastics does the girl perform on the balance beam?\", \"A\": \"The girl performs a few balancing acts, a front summersault, a handstand, and a balancing act on the balance beam.\", \"video_name\": \"v_AE2gHOwcV14\"}, {\"Q\": \"What items does the woman use to start the fire?\", \"A\": \"The woman uses a green Bic lighter, a box of matches, a carbon knife, and a Ferro rod to start the fire.\", \"video_name\": \"v_bphckj0BV5U\"}, {\"Q\": \"What does the woman add to the mixing bowl after scooping mayonnaise into it?\", \"A\": \"The woman adds relish and mustard to the mixing bowl after scooping mayonnaise into it.\", \"video_name\": \"v_E5YBb4rzV30\"}, {\"Q\": \"What is happening in the part where a man is shown with a bottle of beer near a Dodge truck?\", \"A\": \"The man with the beer removes the cap and throws it to the side. He then opens the back door of the truck, takes a drink of the beer, and places the glass in the back of the open truck. He then walks back to the man trying to dislodge the axe from the log and yanks it out. He then proceeds to strike the log and cut it in two.\", \"video_name\": \"v_dRF1C_sBE5M\"}, {\"Q\": \"What is the color of the martial arts uniform worn by the boy in the video?\", \"A\": \"The boy in the video is wearing a white martial arts uniform.\", \"video_name\": \"v_H33jSILKmfI\"}, {\"Q\": \"What is visible on the pedestal in the corner of the room?\", \"A\": \"A television is visible on the pedestal in the corner of the room.\", \"video_name\": \"v_JiNcVb97CnA\"}, {\"Q\": \"What ingredients did the chef use to make the dressing for the Russian salad?\", \"A\": \"The chef used cream, mayonnaise, salt, and pepper to make the dressing.\", \"video_name\": \"v_lIo8HfzzSNs\"}, {\"Q\": \"How did the man measure the length of the grass before adjusting the lawn mowing machine?\", \"A\": \"The man measured the length of the grass using a ruler.\", \"video_name\": \"v_dN8LBey17O8\"}, {\"Q\": \"What is the man holding in the video?\", \"A\": \"The man is holding a handle with a hammer attached to it.\", \"video_name\": \"v_I7slpTgl0jc\"}, {\"Q\": \"What is the number on the green dirtbike?\", \"A\": \"The number on the green dirtbike is 2.\", \"video_name\": \"v_ks018ZYzrx4\"}, {\"Q\": \"What kind of clothing are the boys and girls wearing during the dance?\", \"A\": \"The girls are wearing black dresses and the boys are wearing red dress shirts and black trousers.\", \"video_name\": \"v_KsFid_YVsn0\"}, {\"Q\": \"What happens in the video after the batsman hits the ball towards the boundary?\", \"A\": \"A fielder runs towards the ball and prevents it from touching the rope. He falls on the other side of the rope after preventing the ball from touching the rope. The wicket player catches the ball thrown to him and removes the bails from the stumps. The batsman is walking to the nonstriker's end. The players gather around the pitch. One of the umpires appeals the run out to the third umpire. A big screen in the stadium displays the message 'OUT'. In the next clip, the fielding team is huddled in a circle on the field. The batsman is coming onto the field after a break. A closeup of the wicketkeeper is shown.\", \"video_name\": \"v_hFpSoRlpyMo\"}, {\"Q\": \"What ingredients are added to the pan with oil by the man in the video?\", \"A\": \"Garlic and chillies are added to the pan by the man in the video.\", \"video_name\": \"v_aOxRwTlkY80\"}, {\"Q\": \"What is shown in the final shot of the video?\", \"A\": \"The final shot of the video shows several still images of the batsman holding the bat.\", \"video_name\": \"v_4VdS1eN3dv4\"}, {\"Q\": \"What is happening in the video and where is it taking place?\", \"A\": \"In the video, a boy wearing tights is doing gymnastics using a parallel bar in a track field with a blue floor. There are other people visible standing and sitting in various places, and a few people are sitting behind a table a few feet behind the boy. The track and field are lit by overhead lights.\", \"video_name\": \"v_EhzHU0gkrzA\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is getting his hair cut and recording himself.\", \"video_name\": \"v_6G8m-vsGTA8\"}, {\"Q\": \"What does the first boy do after completing his karate moves?\", \"A\": \"After completing his karate moves, the first boy bows to the audience and exits the stage on the right.\", \"video_name\": \"v_kfO5PGlsMJw\"}, {\"Q\": \"What makeup did the woman apply first and how did she apply it?\", \"A\": \"The woman applied concealer first and she used her finger to spread it on different areas of her face.\", \"video_name\": \"v_86Unahb4sJM\"}, {\"Q\": \"What is the second man doing in the office?\", \"A\": \"The second man is wearing a backpack vacuum and speaking to the camera.\", \"video_name\": \"v_jN2CFk0xKp8\"}, {\"Q\": \"What is the name of the break dancing move demonstrated by the boy wearing olive shorts?\", \"A\": \"The boy in olive shorts demonstrates the 'Zulu Spin' move in the video.\", \"video_name\": \"v_JG7T6qtO4jg\"}, {\"Q\": \"What are some of the different poses the gymnast does on the balance beam?\", \"A\": \"The gymnast does different balance poses along with turns, jumps, and leaps on the balance beam.\", \"video_name\": \"v__ja1fre9OTE\"}, {\"Q\": \"What kind of lighting is present in the bar while the man is playing the bagpipe?\", \"A\": \"The bar is not lit completely.\", \"video_name\": \"v_82EtiBkAsPg\"}, {\"Q\": \"What instrument does the man play during the video and how does he involve the audience in his performance?\", \"A\": \"The man plays a harmonica during the video and involves the audience in his performance by including them while singing. He also plays the harmonica for a few stretches.\", \"video_name\": \"v_7OcxT66BxX0\"}, {\"Q\": \"What is happening in the first clip of the video?\", \"A\": \"The first clip of the video shows three dinghies sailing in the sea with cloudy skies.\", \"video_name\": \"v_aDe5hUB3AdY\"}, {\"Q\": \"What does the boy do after placing the cup of coffee?\", \"A\": \"The boy attempts to move the dog away from the cup gently.\", \"video_name\": \"v_5qY9yPt-5Go\"}, {\"Q\": \"What events are shown in the video?\", \"A\": \"The video shows various events such as people sitting on a couch, a man in a suit speaking to the camera, a teen speaking in a classroom, cheerleaders practicing and performing a routine on a stage. It also shows some girls watching the stage and walking away crying, cheerleaders training, and cheerleaders celebrating.\", \"video_name\": \"v_hvrKRg166eQ\"}, {\"Q\": \"What is the woman showing how to do in the video?\", \"A\": \"The woman in the video is showing how to iron a men's cotton dress shirt.\", \"video_name\": \"v_a_JlhLnJM98\"}, {\"Q\": \"What kind of dresses are the couple wearing while dancing?\", \"A\": \"The couple are wearing evening dresses.\", \"video_name\": \"v_9Ufy_JGbnys\"}, {\"Q\": \"What kind of shirt is the man wearing in the video?\", \"A\": \"The man in the video is wearing a checkered shirt.\", \"video_name\": \"v_9eniCub7u60\"}, {\"Q\": \"What is the setting of the video?\", \"A\": \"The video is set outdoors, with trees surrounding a path and featuring a stream and rapids.\", \"video_name\": \"v_k1GP0cJOXbQ\"}, {\"Q\": \"What happens in the first clip of the video?\", \"A\": \"In the first clip of the video, players wearing orange uniforms and blue helmets are celebrating on a baseball field.\", \"video_name\": \"v_7bwruwic1CI\"}, {\"Q\": \"What is the setting of the video?\", \"A\": \"The video is set in a bar with a raised platform, decorated with Chinese lamps, where a group of people wearing tuxes sit around a table.\", \"video_name\": \"v_bYxVbXzQToI\"}, {\"Q\": \"Who is the leader in the video and what is he wearing?\", \"A\": \"The leader in the video is a man who is wearing a black outfit.\", \"video_name\": \"v_hI11n4_r178\"}, {\"Q\": \"What is the woman doing in the outdoor field during the daytime?\", \"A\": \"The woman is participating in a pole vaulting competition.\", \"video_name\": \"v_hP-xRyx88aA\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a boy holding a violin is playing in a dimly lit living room while people sit around him. He starts playing the violin and continues until the end of the video, when he stops and the people sitting around him applaud.\", \"video_name\": \"v_HxrtuZSCwvY\"}, {\"Q\": \"Which player seemed tired towards the end of the game and who won the squash match?\", \"A\": \"The man in the white T-shirt seemed tired and it is not mentioned who won the match. The video ends with the two men sharing a handshake.\", \"video_name\": \"v_af05Mqm03Y4\"}, {\"Q\": \"What is the man wearing and what is he doing in the video?\", \"A\": \"The man in the video is wearing a grey dress shirt and glasses. He is playing the harmonica in front of a painting until the end of the video.\", \"video_name\": \"v_ddzfgHw_qlU\"}, {\"Q\": \"What are the two people in the video doing?\", \"A\": \"The two people in the video are practicing kickboxing.\", \"video_name\": \"v_h_r8gioFi4k\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video starts with a view from the top of a track and field stadium with an open roof. Spectators are seen filling up the seats. A man wearing blue shorts and a vest with the number tag 2736 is seen slowly jogging in a track and field, running towards a high jump bar. He then jumps over the bar by flipping back and parallel with the bar. Multiple replays of the jump from different angles are shown until the end of the video.\", \"video_name\": \"v_EnMS9O1U6E0\"}, {\"Q\": \"What does the man do at the beginning of the video?\", \"A\": \"At the beginning of the video, the man is standing on a tennis court holding a racket and a tennis ball. He throws the ball into the air and hits it towards the other side of the court.\", \"video_name\": \"v_CeXtKbFnPIQ\"}, {\"Q\": \"What is the makeup artist doing in the video?\", \"A\": \"The makeup artist is applying makeup on Irina, starting with eyeshadow, then moving to her eyelashes, and finally finishing with lipstick.\", \"video_name\": \"v_K_ia4VP3w2c\"}, {\"Q\": \"Who leads the group of riders?\", \"A\": \"The riders are led by a woman wearing a black turtleneck.\", \"video_name\": \"v_IDIALY6Ayk8\"}, {\"Q\": \"What is the color of the hoodie the woman is wearing while getting her tongue pierced?\", \"A\": \"The woman is wearing a grey hoodie while getting her tongue pierced.\", \"video_name\": \"v_ij9czNGMR5I\"}, {\"Q\": \"What sporting event is taking place in the gymnasium and which team is wearing the blue uniforms?\", \"A\": \"A women's volleyball match is being played in the gymnasium with the team on the left wearing blue uniforms.\", \"video_name\": \"v_jEOtcfk220s\"}, {\"Q\": \"In the video, how are the dancers dressed?\", \"A\": \"The dancers in the video are dressed in black outfits.\", \"video_name\": \"v_j6OcN4OQZVM\"}, {\"Q\": \"What is happening in the first clip of the video?\", \"A\": \"In the first clip of the video, a green screen slideshow with instructions for a test is being shown and then the letter 'A' with a background of stars appears in the next clip.\", \"video_name\": \"v_bz4QwqHiVlo\"}, {\"Q\": \"What happens after the woman throws the hammer towards the couple on the blanket?\", \"A\": \"A hammer attached to a string lands on the blanket they were on.\", \"video_name\": \"v_hPYGgv_75SY\"}, {\"Q\": \"What is the girl in the video doing?\", \"A\": \"The girl in the video is sitting on a chair, holding a guitar, and listening to music. She is mimicking the guitar notes on her guitar without plucking the strings.\", \"video_name\": \"v_jWH-2aa1gJY\"}, {\"Q\": \"What is Chris Hadfield doing in the first clip of the video?\", \"A\": \"In the first clip of the video, Chris Hadfield can be seen holding a tortilla in his hand and squeezing honey on it.\", \"video_name\": \"v_BAtlo_AGFWs\"}, {\"Q\": \"What is the man wearing and what is he doing in the video?\", \"A\": \" The man is wearing a blue jacket and blue jeans. He is standing in a wooded area with numerous trees growing nearby and a cabin is visible nearby. He is using an axe to chop wood placed on a tree stump. Wooden logs cut into uniform lengths are piled up behind the man. After he has chopped the current piece, he picks up another wooden block and places it on the tree stump. The video ends with the man coming back to stand over the block.\", \"video_name\": \"v_9lAT3oA9Ixs\"}, {\"Q\": \"What is Valarie doing in the video?\", \"A\": \"Valarie is imprinting a design on a t-shirt using iron on transfer.\", \"video_name\": \"v_0rr7iGHamw0\"}, {\"Q\": \"Who falls down in the video?\", \"A\": \"A man wearing a black outfit falls down over his aerobics step.\", \"video_name\": \"v_6utacRir3uM\"}, {\"Q\": \"What is the location and time of day at the beginning of the video?\", \"A\": \"At the beginning of the video, the woman in a green outfit is standing in front of kayaks hanging on hangers on a lakeshore during the daytime.\", \"video_name\": \"v_5cijPqKVc84\"}, {\"Q\": \"What are the contestants wearing and where is the competition taking place?\", \"A\": \"The contestants are wearing black vests and light-colored trousers. The competition is taking place outside in an arena during the daytime. People can be seen on seats on either side, and a bridge is seen in the back.\", \"video_name\": \"v_l5ZUUChppHU\"}, {\"Q\": \"What event is the woman attempting to compete in?\", \"A\": \"The woman is attempting to do a long jump.\", \"video_name\": \"v_52Xw6TZcysc\"}, {\"Q\": \"What position does the little boy play in the video and can you describe an instance where he scores a point?\", \"A\": \"The video follows the little boy as he plays different positions; he is shown scoring a goal or chasing the ball.\", \"video_name\": \"v_l_0HvMt2tGg\"}, {\"Q\": \"What activity are the people practicing in the video?\", \"A\": \"The people in the video are practicing tai chi.\", \"video_name\": \"v_1jgsRbGzCls\"}, {\"Q\": \"What are the visible features of the cricket field in the video?\", \"A\": \"The cricket field has a pitch surrounded by a grass field. There are two sets of stumps fixed to the ground on either side of the pitch. Trees are present at the outer edge of the ground, and a building with white pillars is visible in the distance.\", \"video_name\": \"v_kl-2y3jtPNE\"}, {\"Q\": \"What is the man on the left wearing and what logo is on his t-shirt?\", \"A\": \"The man on the left is wearing a dark blue t-shirt with the logo of Adidas on it.\", \"video_name\": \"v_j_r7zJWxI8w\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman is wrapping a gift.\", \"video_name\": \"v_l_pp-1qu9Ig\"}, {\"Q\": \"What happens after the batsman hits the ball towards the woods?\", \"A\": \"The batsman and the non-striker start running between the wickets while the fielders try to find the ball.\", \"video_name\": \"v_8r4bF9RF0Kc\"}, {\"Q\": \"Can you describe how the man fixed the broken chain on the bike?\", \"A\": \"The man fixed the broken chain by attaching a master link on one end of the chain and pulling both sides together until they lock together. He then checked it by pushing on the pedal.\", \"video_name\": \"v_iUiXNXRs4rU\"}, {\"Q\": \"What object does the woman hold up to the camera?\", \"A\": \"The woman holds up a soap dispenser for kids to the camera.\", \"video_name\": \"v_Lf_7RurLgp0\"}, {\"Q\": \"What is the color of the shirt of the boy who missed his shot before the video ended?\", \"A\": \"The boy wearing the red t-shirt missed a shot before the video ended.\", \"video_name\": \"v_34ZxyyFjbHQ\"}, {\"Q\": \"What is the woman doing in the beginning of the video and she is wearing what color of top?\", \"A\": \"In the beginning of the video, the woman wearing a green top is seen leaning with her hands on an elliptic bike and is speaking to the camera.\", \"video_name\": \"v_Db9VWkgMpbE\"}, {\"Q\": \"What is the man wearing and what is he playing on the Marble Bridge during the daytime?\", \"A\": \"The man is wearing a black polo shirt and a rice hat. He is playing a flute while standing on an elevated section of the Marble Bridge with the Palace Museum in the background.\", \"video_name\": \"v_Il9Ara3IqeY\"}, {\"Q\": \"What is the beautician demonstrating in the video?\", \"A\": \"In the video, the beautician demonstrates how to make a cleansing with baking soda.\", \"video_name\": \"v_HkbOI7gEtKk\"}, {\"Q\": \"What are the two men doing in the kitchen and what ingredients are they using?\", \"A\": \"The two men are making sandwiches in the kitchen. The man wearing the black shirt is spreading peanut butter and jelly on the bread while the man in glasses is using lettuce and ham.\", \"video_name\": \"v_cEa87QoI3Do\"}, {\"Q\": \"What color shirts are the players wearing on one side of the court?\", \"A\": \"The players on one side of the court are wearing teal t-shirts.\", \"video_name\": \"v_ARpoJIBF2NM\"}, {\"Q\": \"Who kicks the red ball after it is thrown by one of the boys in the video?\", \"A\": \"A boy wearing a green shirt runs up to the ball and kicks it.\", \"video_name\": \"v_H8oehT8eeGc\"}, {\"Q\": \"What is the man showing in the video?\", \"A\": \"The man is showing how to breathe when playing the flute and uses it to play the flute for a moment.\", \"video_name\": \"v_jQzBXawu29s\"}, {\"Q\": \"What is the boy wearing while chopping the wood in the video?\", \"A\": \"The boy is wearing blue jeans and a sweater.\", \"video_name\": \"v_51faGoLPJgM\"}, {\"Q\": \"What items are placed on the table at the beginning of the video?\", \"A\": \"At the beginning of the video, a green basin with a bottle of sope, a brush, and a cup of water is placed on the table.\", \"video_name\": \"v_AB480dHyDeM\"}, {\"Q\": \"Can you describe the appearance of the man and the woman who are dancing outside in the video?\", \"A\": \"Certainly! The man is wearing a blue T-shirt and a blue cap, while the woman is wearing a brown top and blue jeans.\", \"video_name\": \"v_lPw_BRbPw5s\"}, {\"Q\": \"What ingredients did the chef use to make a turkey sandwich?\", \"A\": \"The chef used sliced turkey, butter, cranberry sauce, and green leaves to make a turkey sandwich.\", \"video_name\": \"v_Kofjs0rkwxc\"}, {\"Q\": \"What activity are the dancers in the video doing?\", \"A\": \"The dancers in the video are beginning ballet practice with hand movements.\", \"video_name\": \"v_jiM0HUFn0e8\"}, {\"Q\": \"What is the final pose that the gymnast performs in the video?\", \"A\": \"The gymnast ends the routine by performing three backflips and landing on the ground.\", \"video_name\": \"v_4oi6dXfpJS4\"}, {\"Q\": \"What are some examples of fighting and martial arts moves that can be seen in the video?\", \"A\": \"The video shows people in white and red gis fighting each other by exchanging kicks and hits, as well as contestants breaking bricks and performing different martial arts moves on stage. One person wearing a red gi knocks out his opponent, and another wearing a black gi breaks tiles placed on two cinder blocks.\", \"video_name\": \"v_4KMG6lEDSIM\"}, {\"Q\": \"What is happening in the first clip of the video?\", \"A\": \"The first clip shows a view from below of a mountain rock climber up on a steep hill, with a clear sky visible and birds circling.\", \"video_name\": \"v_889_kqLFM0E\"}, {\"Q\": \"What kind of exercises did the woman perform using the bars in the park?\", \"A\": \"The woman did exercises like swaying, moving back using her hands, doing the split, and swinging using the bars.\", \"video_name\": \"v_1YU4MSK80cQ\"}, {\"Q\": \"Who evades the dodgeball by flipping midair?\", \"A\": \"The boy wearing the grey shirt evades the dodgeball by flipping midair.\", \"video_name\": \"v_IDuoF51IMJ8\"}, {\"Q\": \"What are the young boys doing in the video?\", \"A\": \"The young boys in the video are getting ready with paintball gear and taking defensive positions with their paintball guns held forward.\", \"video_name\": \"v_jkrlHzTRTvo\"}, {\"Q\": \"What is written on the saxophone case and what is shown under the text?\", \"A\": \"The saxophone case is decorated with the words 'GUNS-N-ROSES' and a rose is drawn under the text.\", \"video_name\": \"v_dhsSq0K1xEg\"}, {\"Q\": \"What is the woman wearing on her face?\", \"A\": \"The woman is wearing makeup which the toddler is attempting to wipe away with a cloth.\", \"video_name\": \"v_0x6ZV9Y8g_c\"}, {\"Q\": \"What is the setting of the video?\", \"A\": \"The setting of the video is during the daytime outside a house with a red brick facade. Two people start by shoveling snow behind a car parked in front of a closed garage, while a snow-covered plant grows nearby. Later, a man wearing suspenders and sunglasses appears, shoveling snow from a different location. There is also a clip of a doctor talking to the camera inside a clinic wearing a white coat and a stethoscope around his shoulder.\", \"video_name\": \"v_-IMXSEIabMM\"}, {\"Q\": \"What kind of vest is the man wearing?\", \"A\": \"The man is wearing a red vest.\", \"video_name\": \"v_dVpHF8tE2qo\"}, {\"Q\": \"What kind of dance are the women doing in the video?\", \"A\": \"The women are doing belly dancing.\", \"video_name\": \"v_Kic33dtLja8\"}, {\"Q\": \"Which player does the red arrow point to in the first clip on the lacrosse field?\", \"A\": \"The red arrow points to the player wearing the white number 11 jersey.\", \"video_name\": \"v_4mRkWNLE66E\"}, {\"Q\": \"What are the woman and man wearing in the video?\", \"A\": \"The man is wearing a black beanie cap, a chain, and blue jeans while the woman is wearing a purple-colored check shirt with blue jeans and a pair of black gloves.\", \"video_name\": \"v_FOZdNPQ7d5Q\"}, {\"Q\": \"What caused the man standing near the table to catch fire?\", \"A\": \"The alcohol spilled on the table and caught fire when the flaming shot glass was thrown onto it. The man standing near the table caught fire along with it.\", \"video_name\": \"v_BSwChZlOb0k\"}, {\"Q\": \"What kind of equipment can be seen fixed to the wall in the gym?\", \"A\": \"The gym has equipment fixed to the wall.\", \"video_name\": \"v_cqxiLraI8uY\"}, {\"Q\": \"What is the boy wearing in the video?\", \"A\": \"The boy in the video is wearing black tights.\", \"video_name\": \"v_d6PdD2O3Yrs\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man holding a racquet is throwing the ball in the air and hitting it towards the other end of the court.\", \"video_name\": \"v_3V9tzjyr51I\"}, {\"Q\": \"What type of movements is the man performing in the video?\", \"A\": \"The man is practicing Tai Chi movements in the indoor studio.\", \"video_name\": \"v_di5f5hM05Vw\"}, {\"Q\": \"What are the men wearing in the room?\", \"A\": \"The men are wearing black briefs, with one wearing a grey sweatshirt and the other wearing a white vest.\", \"video_name\": \"v_JN1wuOpCZvk\"}, {\"Q\": \"What is the purpose of the video?\", \"A\": \"The purpose of the video is to teach different techniques of riding dirt bikes on different surfaces through a lesson.\", \"video_name\": \"v_JH9qiuPCkY4\"}, {\"Q\": \"What is the product being advertised in the video?\", \"A\": \"The product being advertised in the video is 'Favor'.\", \"video_name\": \"v_aQ-F9wr0HQ4\"}, {\"Q\": \"What are the different ingredients that Pinky uses to make the drink?\", \"A\": \"Pinky mixes different ingredients into a tall glass including ice cubes. She then finishes the drink by adding cucumber, a slice of lime, lemon and a basal leaf.\", \"video_name\": \"v_0UTrTg3DF5g\"}, {\"Q\": \"Who is walking with the little boy in the video?\", \"A\": \"The man is holding hands with the little boy.\", \"video_name\": \"v_Ie09KEAPP2I\"}, {\"Q\": \"Who is belaying the bungee cord in the video?\", \"A\": \"One of the attendants wearing a green shirt is belaying the bungee cord in the video. He walks back and out of frame after the jumper jumps off the platform.\", \"video_name\": \"v_Jdu5AqaWfz8\"}, {\"Q\": \"What can be seen on the opposite shore of the river in the video?\", \"A\": \"Thick tree cover can be seen on the opposite shore of the river.\", \"video_name\": \"v_Erje-PwY9hE\"}, {\"Q\": \"What is the color of the uniform worn by the team that the player in the blue number 1 uniform is playing against? \", \"A\": \"The team playing against the player in blue number 1 uniform is wearing a white uniform.\", \"video_name\": \"v_HgYuRKZ_V90\"}, {\"Q\": \"What task is the man performing in the beginning of the video?\", \"A\": \"The man is riding a bicycle on a path.\", \"video_name\": \"v__jV5sAOOHLk\"}, {\"Q\": \"What is the color of the rabbit in the video?\", \"A\": \"The rabbit has a reddish coat with dark brown highlights.\", \"video_name\": \"v_JDwd6Ec454A\"}, {\"Q\": \"What is the girl doing and where does she go in the beginning of the video?\", \"A\": \"The girl runs towards the camera and goes to the hopscotch court drawn on the ground behind her.\", \"video_name\": \"v_34SBoGK8mT8\"}, {\"Q\": \"What is the color and style of the clothing that one of the girls is wearing while having her hair curled?\", \"A\": \"One of the girls is wearing a white sweatshirt and glasses while having her hair curled.\", \"video_name\": \"v_fNhw7xE3NM8\"}, {\"Q\": \"Who is walking across the camera? \", \"A\": \"A man in a red t-shirt is walking across the camera. He appears to be instructing the boxers.\", \"video_name\": \"v_83f0iwb8VW8\"}, {\"Q\": \"What does the girl do after she spits the mouthwash?\", \"A\": \"After spitting the mouthwash, the girl begins beatboxing.\", \"video_name\": \"v_Lb7Q8qv3MHU\"}, {\"Q\": \"What is the woman doing in the beginning of the video?\", \"A\": \"The woman is standing in a dimly lit bathroom with a drinking glass in one hand and a cigarette in the other, and looking at herself in the mirror.\", \"video_name\": \"v_7dXqXFoju2M\"}, {\"Q\": \"What musical instruments were being played in the video?\", \"A\": \"The group of people were playing saxophones, and there was a man playing the piano. Additionally, there was a man playing guitar.\", \"video_name\": \"v_A20uQSBtYMs\"}, {\"Q\": \"What is the man in the orange shirt doing in the video?\", \"A\": \"The man in the orange shirt is standing in the middle of the ranch enclosure and looking at the woman riding the horse.\", \"video_name\": \"v_9InwA-ajB2M\"}, {\"Q\": \"What types of dance moves do the dancers perform in the video?\", \"A\": \"The video features breakdancing, specifically the backspin and moonwalk, as well as various types of dancing by different children.\", \"video_name\": \"v_2nDbYhgdw2A\"}, {\"Q\": \"What type of dive does the person perform?\", \"A\": \"The person performs a reverse somersault dive.\", \"video_name\": \"v_eRco7yXc-40\"}, {\"Q\": \"What is the drill performed by the players in the video?\", \"A\": \"The players are performing a drill where three of them run across the court, while the one in the middle dribbles the ball all the way and finally shoots the ball in the basket. Once they reach the basket, the girl with the basketball attempts to shoot the ball into the basket, while the other two turn around to block her.\", \"video_name\": \"v_IGZvj1J9tNc\"}, {\"Q\": \"What color top is the woman wearing in the video?\", \"A\": \"The woman is wearing a blue top.\", \"video_name\": \"v_49PbyLbrxlE\"}, {\"Q\": \"How many girls are present in the video?\", \"A\": \"There are two girls present in the video. One girl is on the foam platform, doing backflips, while the other is sitting and watching to the side.\", \"video_name\": \"v_4QRRxub6L5Q\"}, {\"Q\": \"What are some of the ingredients that the girls put in the salad in the video?\", \"A\": \"Some of the ingredients that the girls put in the salad in the video include lettuce, tomatoes, cabbage, and peanuts. They also added oil and salt to the salad.\", \"video_name\": \"v_0DFz3sgfda0\"}, {\"Q\": \"How does the person ignite the fire in the video?\", \"A\": \"The person holds a piece of chips and lights it like kindling to the camera and lights it on fire using a Bic lighter. They then place it on the arranged firewood.\", \"video_name\": \"v_cCDffwsJvsY\"}, {\"Q\": \"Can you describe the actions of the two boys who tried to do a pull-up from the basketball hoop?\", \"A\": \"Yes, the two boys ran towards a basketball hoop and attempted to do a pull-up from the basket. They were able to jump and pull themselves once from the basket before jumping down and running few feet away from the basketball hoop.\", \"video_name\": \"v_11p9goB2rm8\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman is standing in a living room and using a towel to wipe wood polish on a coffee table. She is explaining how to fill cracks in the table.\", \"video_name\": \"v_4Gx_8vuxzAk\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"Two men are speaking in the kitchen and leaning on the kitchen counter. Will Smith, the actor wearing a multi-colored shirt, removes sunglasses from his pocket and starts playing the harmonica while singing in between. The video ends with Will Smith stopping playing and looking to his right.\", \"video_name\": \"v_HMs703DhjQU\"}, {\"Q\": \"Who starts the game and what color is their uniform?\", \"A\": \"The team wearing the yellow uniform starts the game.\", \"video_name\": \"v_Jy93pLzV2uw\"}, {\"Q\": \"What does the bartender do before placing various bottles of alcohol near him?\", \"A\": \"The bartender inspects a glass and places it on the bar. He then places a few limes next to the lemons.\", \"video_name\": \"v_6wPVO7I8iIY\"}, {\"Q\": \"What is the woman wearing while she exercises on parallel bars in the park?\", \"A\": \"The woman is wearing a neon green T-shirt, black track pants with white stripes, white sports shoes, glasses, and a ring on her left hand.\", \"video_name\": \"v_Fb4X1PWfOvY\"}, {\"Q\": \"What are the old man and the woman doing in the video?\", \"A\": \"In the video, the old man is repairing a bicycle in a well-lit shop. The woman wearing a pink top enters the shop, and they start to converse while checking the working of the bike.\", \"video_name\": \"v_IfugNwywj-k\"}, {\"Q\": \"What is the boy wearing while chopping the log in the video?\", \"A\": \"The boy is wearing an off-white T-shirt and shorts.\", \"video_name\": \"v_dZsk5Dp_5FE\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman in the video is shooting arrows with a bow towards a makeshift target made of sheets hung near the basketball hoop.\", \"video_name\": \"v_AL1W3HkjJ2Y\"}, {\"Q\": \"What is the man wearing and doing at the beginning of the video?\", \"A\": \"The man is wearing a checkered shirt and a backpack. He is speaking and playing the harmonica.\", \"video_name\": \"v_j_1kNiGcepU\"}, {\"Q\": \"What items are on the table in front of the woman at the beginning of the video?\", \"A\": \"Tubes and bottles of makeup are on the table in front of the woman.\", \"video_name\": \"v_le7JdKQB65I\"}, {\"Q\": \"What was the man holding in his right hand?\", \"A\": \"The man was holding a disk in his right hand.\", \"video_name\": \"v_-6dz6tBH77I\"}, {\"Q\": \"What happened at the end of the video?\", \"A\": \"The video ended when the man in the yellow shirt looked up to the cameraman after missing his shot, and the other player knelt down to tie his shoes.\", \"video_name\": \"v_BnO8AfQS8yE\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"In the beginning of the video, a dog is standing under an open tap and water is splashing on its back. A blue bucket is placed near the dog. A man wearing shorts is kneeling in front of the dog.Both are by a wall on the outside during the day.\", \"video_name\": \"v_CvbBSwz-9XI\"}, {\"Q\": \"What caused the biker to crash in the dirt field?\", \"A\": \"The biker tried to jump over a slight elevation in the middle of the field, but he landed with the front wheel first and crashed.\", \"video_name\": \"v_-cAcA8dO7kA\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman is standing in front of a sink and washing the dishes.\", \"video_name\": \"v_9snScUyE8_4\"}, {\"Q\": \"What is happening in the first clip of the video?\", \"A\": \"In the first clip of the video, a man is washing his hands in a sink while standing in front of a mirror. Only his hands are visible and there are toiletries placed on the right side of the sink.\", \"video_name\": \"v_96ADEnJy4GU\"}, {\"Q\": \"What is the man lighting on fire in the video?\", \"A\": \"The man is lighting a stack of firewood on fire using a knife and a fire starter.\", \"video_name\": \"v_-D1gdv_gQyw\"}, {\"Q\": \"What is the girl wearing and what is behind her?\", \"A\": \"The girl is wearing a grey shirt and glasses, and there is a bookshelf behind her with a few empty shelves. \", \"video_name\": \"v__a527xEzhkw\"}, {\"Q\": \"What happens at the beginning of the video?\", \"A\": \"At the beginning of the video, a game of water polo is being played in a swimming pool with people playing and others sitting behind a table on the poolside.\", \"video_name\": \"v_cH3H-arDsH4\"}, {\"Q\": \"What are the two teams wearing during the polo match?\", \"A\": \"The two teams are wearing white and red polo shirts.\", \"video_name\": \"v_hvhny4-sI-w\"}, {\"Q\": \"What is the woman holding and what does she do with it in the video?\", \"A\": \"The woman is holding a hammer attached to a string. In the video, she swings with the string and spins a few times before releasing the hammer through the open end of the netting.\", \"video_name\": \"v_d09u-0k3LdE\"}, {\"Q\": \"Who else is visible in the video besides the couple dancing?\", \"A\": \"Other people standing to the side are visible in the video.\", \"video_name\": \"v_B0GCHDqEsRU\"}, {\"Q\": \"Who is Samuel Shearin in the video and what is his jersey number?\", \"A\": \"Samuel Shearin is a lacrosse player who is wearing a blue-green jersey with the number 24.\", \"video_name\": \"v_aH39BSM0-Ag\"}, {\"Q\": \"What type of class is the man teaching in the video?\", \"A\": \"The man is conducting a Zumba class.\", \"video_name\": \"v_iqhdqhVttEM\"}, {\"Q\": \"What ingredients are shown in the slideshow?\", \"A\": \"The slideshow displays pictures of an oven, a baking sheet, a French roll, a pack of pepperoni, a bottle of mayonnaise, slices of cheese on a plate, sliced tomato, and shredded lettuce on a plate.\", \"video_name\": \"v_cECycCDw1Nc\"}, {\"Q\": \"Who is standing on the basketball court with a basketball in hand in the video?\", \"A\": \"An instructor wearing a white shirt and green shorts is standing on the basketball court with a basketball in the crook of his left hand.\", \"video_name\": \"v_egowZOcbEkI\"}, {\"Q\": \"What is the object being thrown in the video, and what do the athletes do?\", \"A\": \"The athletes are participating in a spear-throw competition, where they run and throw spears. The landing of the spears is shown, and there are lanes marked with numbers at their heads in the landing area. Additionally, the camera follows the thrown spear to its destination and the athletes' names and throw distances are recorded on a scoreboard at the end of the video.\", \"video_name\": \"v_HURRgbZGz8Q\"}, {\"Q\": \"What is the trainer doing during the sparring practice?\", \"A\": \"During the sparring practice, the trainer is wearing focus mitts on both hands and guiding the student, practicing punches and deflecting punches and dodging kicks.\", \"video_name\": \"v_afMQA352X_A\"}, {\"Q\": \"What are the people doing in the video behind the news anchors?\", \"A\": \"A cutaway of two men shoveling snow is shown.\", \"video_name\": \"v_l8gg9TYh_B0\"}, {\"Q\": \"What is the maximum weight of the barbell that the man lifts in the video and what does he do with it?\", \"A\": \"In the end, the man lifts a barbell weighing 130 kilograms and drops it after lifting it above his head.\", \"video_name\": \"v_Ds2O0-8Labs\"}, {\"Q\": \"Who is playing ping pong in the video and what are they holding?\", \"A\": \"Three men and a woman are playing ping pong in the video. They are holding an old spice-branded ping pong paddle.\", \"video_name\": \"v_k1QAWLupB-I\"}, {\"Q\": \"What kind of objects are used by people as hideouts in the arena?\", \"A\": \"People are hiding behind cable drums and stacked tires to duck and shoot other players.\", \"video_name\": \"v_9UvVeUYQLgA\"}, {\"Q\": \"What equipment is being used by the climbers in the video?\", \"A\": \"In the video, the man climbing is free climbing the rock face without any apparent equipment, but a rope is visible to his left, indicating that he may be using it later for safety. The other man at the bottom is belaying the rope to make sure the climber does not fall.\", \"video_name\": \"v_dEpUIpmBvow\"}, {\"Q\": \"What is Bethany wearing in the video?\", \"A\": \"Bethany is wearing a red T-shirt, black & purple short track pants, white sports shoes, rings on both her hands, and a bracelet on her left hand.\", \"video_name\": \"v_EZyLBq2jJtE\"}, {\"Q\": \"What happens at the beginning of the video and who is involved?\", \"A\": \"At the beginning of the video, two kids and an elderly woman can be seen playing. One of the kids is a little girl standing on the side of a porch, while a little boy wearing a red shirt is a few feet away. The woman holds her hands in front of her, first to the girl and to the boy.\", \"video_name\": \"v_2fzIi1lPd8U\"}, {\"Q\": \"What is the direction of the riders' turn after they clear the second ramp?\", \"A\": \"The riders are visible turning left after they clear the second ramp.\", \"video_name\": \"v_C7yd6yEkxXE\"}, {\"Q\": \"What is the color of the coffee cup?\", \"A\": \"The coffee cup is mostly pink with a butterfly painted on it.\", \"video_name\": \"v_IN23CO8Kotk\"}, {\"Q\": \"What is the tattoo artist wearing and what equipment and pictures can be seen in the tattoo parlor?\", \"A\": \"The tattoo artist is wearing a white t-shirt and glasses. Various equipment and pictures are displayed on the wall of the tattoo parlor.\", \"video_name\": \"v_BFChXuwZ4wo\"}, {\"Q\": \"Where does the ping pong competition take place?\", \"A\": \"The ping pong competition takes place where multiple tables are arranged next to each other with dividers in between.\", \"video_name\": \"v_9k19UUJtldg\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a group of five women wearing different colored belly-dancing outfits enter the stage from the right and stand with facing away from the audience while holding their right hands up. As the music starts, they slowly turn around and start belly dancing. They continue dancing until the music slows down and they turn around once again, holding up their right hands in the air.\", \"video_name\": \"v_hFi6S_guB7I\"}, {\"Q\": \"What are the main events in the video?\", \"A\": \"A man is playing kickball and there are shots of the game and the players from various angles. The video ends with a man in a darkened room speaking into the camera.\", \"video_name\": \"v_18yZR3NDaXM\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a woman and a young girl can be seen cleaning dishes in a kitchen sink with soap and water. The woman starts by scrubbing the dishes, and the young girl later joins in, holding up a handful of suds.\", \"video_name\": \"v_BjjN_aq_wq4\"}, {\"Q\": \"Can you describe the actions of the man and woman in the video?\", \"A\": \"In the video, a man in a grey hoodie and a woman in an apron can be seen entering and quickly exiting a bathroom while laughing. The woman is carrying a bucket. Later, the man is seen on a rooftop shaving his leg while the woman records him with a microphone. The video ends with the man walking out holding the bucket.\", \"video_name\": \"v_DJTvj9lfSWU\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man wearing a white hoodie is standing in a kitchen washing dishes, specifically a tea strainer. He is chatting and laughing with the cameraman while doing so. There are kitchen implements such as a coffee machine and cupboards behind him, and a microwave oven is mounted on one of the cupboards. Sunlight is streaming through a window in front of him, and there is a potted plant on the window sill.\", \"video_name\": \"v_0BtHd6dvm78\"}, {\"Q\": \"What are some activities shown in the video?\", \"A\": \"The video shows various scenes of dinghies sailing fast on the water, with sailors maneuvering them. The sailors are wearing red wetsuits and can be seen sitting on the hull side of the boats, as well as moving around to maneuver the dinghies. In one scene, a man is shown holding a thumbs-up sign while sitting on the boat. The video ends with the man with red sails leaning flat on his dinghy and maneuvering it.\", \"video_name\": \"v_dKJMP8EmZjw\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man polishes his shoe while sitting behind a wooden desk, using a clear liquid and a cloth. He had a shoe placed on a black desk mat and a laptop visible to the right of him.\", \"video_name\": \"v_kGdxtU3NwWo\"}, {\"Q\": \"Can you describe what happens throughout this video?\", \"A\": \"The video shows a man getting a haircut in his kitchen while others walk in and out of shot. Another person takes over the haircutting. Afterwards, a chocolate cake is brought out and the group sings while the man who got the haircut has his face smeared with cake.\", \"video_name\": \"v_b4xvXZq5uD8\"}, {\"Q\": \"What are the steps the woman takes to clean the dishes in the video?\", \"A\": \"The woman in the video starts by pouring soap into a dirty pot filled with water. She then scrubs the dirty pots using a scrubber and places the clean ones next to the sink along with the washed ladle. She continues to wash various dishes, rinse them and place them next to the sink. Afterward, she dries the dishes using a few pull of kitchen towels and hangs them to a hook at the top. Finally, she drains the sink and wipes its surroundings using a kitchen towel.\", \"video_name\": \"v_aLb79wtvxoQ\"}, {\"Q\": \"Can you describe the gymnastics routine performed in the video?\", \"A\": \"In the video, an athlete wearing a blue outfit performs an artistic gymnastics routine on a well-lit stage on a pommel horse. He starts by gripping the handles and doing a circle around the pommel horse. He follows up with scissors and a handstand. Then, he does a routine where he does a circle by moving the length of the pommel horse and finishes up by doing a handstand and an upside-down split before jumping off the pommel horse and turning to the spectators.\", \"video_name\": \"v_KlgrI3Ngwv0\"}, {\"Q\": \"Can you describe the scene in the video with the instructor and children?\", \"A\": \"The video shows a group of children in karate uniforms doing drills on a carpeted floor. An instructor walks into the frame and the children do different stances, punch and kick drills and other movements. Some children have difficulty with the drills, and the video ends with all the students turning towards the teacher.\", \"video_name\": \"v_jN-jnIgzd6k\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a few people standing on a bungee platform and jumping off while strapped to a bungee cord. We see a countdown before each jump, and the camera shows us the view of the stream at the bottom and the misty hills in the background from the platform.\", \"video_name\": \"v_araMJB23T1s\"}, {\"Q\": \"What are the steps involved in cleaning a leather sofa as shown in the video?\", \"A\": \"The video shows a man using a foam cleaner and towel to clean the surface of the sofa, sanding rough surfaces using a scrub pad, applying color refresh liquid to the sofa using a sponge, drying the surface using a hair drier, and finally applying a UV protection liquid to the sofa.\", \"video_name\": \"v_dW6OZV43ulU\"}, {\"Q\": \"Can you describe the actions of the little girl in the video?\", \"A\": \"The little girl is shown washing several dishes in the kitchen sink, including a glass, a spoon, a pot, a plate with Dora the Explorer on it, and a plastic jar. The woman wearing a white t-shirt helps her with washing utensils, and she hands her more dishes to wash as she finishes washing the previous dish.\", \"video_name\": \"v_JcAAwYpJhm8\"}, {\"Q\": \"What is the video about and can you provide a brief summary of the volleyball matches that were played in it?\", \"A\": \"The video shows beach volleyball matches between various teams including Italy, Latvia, and Brazil. It starts with a man serving a volleyball and then shows different exchanges between the teams. Latvia wins against Germany and Italy plays against Brazil where Brazil wins. Finally, the video ends with Latvia winning.\", \"video_name\": \"v_aYxni8ohTfU\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"A man is performing various gymnastics maneuvers on the parallel bar in a gym, including handstands, swinging routines, and attempted backflips while other people are visible in the background.\", \"video_name\": \"v_6Xsfwn5M6qs\"}, {\"Q\": \"What actions does the man in the video perform?\", \"A\": \"The man in the video is seen cleaning a glass door made of wood frame. He initially wipes the door using a wiper and later sprays cleaning fluid on it before wiping it clean with a blue towel. He is dressed in a dark blue shirt and khaki pants. In the end, the man kneels down to clean the lower part of the glass door.\", \"video_name\": \"v_CecqF_uHeOI\"}, {\"Q\": \"Can you describe the scene in the video?\", \"A\": \"The video shows women playing water polo in slow motion. The shot starts from underwater and shows several people kicking their legs. One woman can be seen losing the ball as she dunks into the water. A shot from above the water shows two people swimming in place in search of the ball. One player is pushed from behind before reaching the ball, and the ball is taken by the person who pushed the player down. There are also other players visible on either side of the first two players.\", \"video_name\": \"v_7-taNK5mW8E\"}, {\"Q\": \"What happens in the wood-chopping competition shown in the video?\", \"A\": \"The video shows four men wearing blue polo shirts and white trousers competing in a wood-chopping competition. They are standing on blocks of wood and holding axes in their hands. One contestant, Lawrence O'Toole, is declared the winner after he chops his wooden block completely and steps away. The video ends with the winner securing his axe.\", \"video_name\": \"v_IcR28Yqt4mY\"}, {\"Q\": \"Can you describe the main events in the video?\", \"A\": \"The video shows a man named Ukhov preparing and successfully performing a high jump in an outdoor stadium with spectators. There is a short clip of a man in the stands watching the jump, and the video ends with a replay of the jump.\", \"video_name\": \"v_B3xMfP_UOt4\"}, {\"Q\": \"What does the video show?\", \"A\": \"The video shows a ship in the sea, that is dangerously tilted to the left like it is about to capsize. There is a hill visible in the distance at the shore. All its sails are deployed. Another group of people is seen headed towards the ship in a motorboat. Lastly, the video ends with the camera panning all the way around the motorboat.\", \"video_name\": \"v_4XnXyKYxnQQ\"}, {\"Q\": \"Can you describe the scene in the video and what the people are doing?\", \"A\": \"The video shows a woman wearing boxing gloves and a black outfit practicing her punches and kicks on a man wearing punch mitts, kick pads, and focus pads. The man also switches roles and practices punching and kicking on the same equipment.\", \"video_name\": \"v_hq48S65dlyo\"}, {\"Q\": \"What are the different scenes shown in the video?\", \"A\": \"The video shows a little boy skateboarding in a parking lot, on a sidewalk, through a tunnel, in a skateboarding park, and on various ramps. He wears protective gear like a helmet, kneepads, and elbow guards. There are instances where he falls down while skating. In the end, he is seen skating on a sidewalk and smiling at passersby.\", \"video_name\": \"v_gWbIoFrpwTY\"}, {\"Q\": \"Can you describe the setting and outfits of the people in the video?\", \"A\": \"In the video, there is a well-lit wooden dance floor where couples are seen salsa dancing. The men wore a piece of paper on their back with their respective numbers. The man wearing a purple dress shirt was dancing to the left with the number three. A person holding a mobile phone can be seen to the left of the camera recording the event.\", \"video_name\": \"v_eoSwoeLmeyQ\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"The video shows a man standing on a circular platform in a field surrounded by a cage. He swings a hammer attached to a grip by a cable around his body a few times before releasing it through the open side of the cage. The hammer lands quite a distance away while people off-screen applaud.\", \"video_name\": \"v_1d_U_2HIPmY\"}, {\"Q\": \"What happens in the video at the hair salon?\", \"A\": \"The video shows a girl crying while getting her hair cut in a well-lit salon. Another woman tries to comfort her by offering lollies, but the girl refuses. The barber cuts her hair with a comb and scissors while the girl continues to cry. The woman sprays water on her hair and moves to the back to cut it. The video ends with the woman doing touch-up cuts and combing the girl's hair.\", \"video_name\": \"v_Hz7-mBFGsSs\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video features a lacrosse game where two teams are playing and spectators sit on lawn chairs outside the area. It specifically follows Cole Flowler, who wears a white jersey, as he tries to check the ball from other team members. The video ends with him running and avoiding a player from the opposite team.\", \"video_name\": \"v_B_U7vUtoCKY\"}, {\"Q\": \"What does the woman in the video do and what instructions does she give?\", \"A\": \"In the video, the woman is seen kayaking down a rapid river in an orange kayak while wearing a life vest and a white helmet. She is surrounded by trees on either side of the banks. Once she reaches an eddy, she turns and stops her kayak and begins instructing on how to make turns while rowing. The video ends after she finishes giving her instructions.\", \"video_name\": \"v_7pfHxav4b0U\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man wearing a black polo shirt is speaking to the camera in a well-lit gym. A woman wearing a grey top is standing next to him and they are behind a resistance trainer. The woman climbs the machine and starts pedaling while the man speaks into the camera. Other exercise equipment and a window can be seen in the gym. The woman adjusts the settings on the resistance machine and continues peddling while the man picks up a book and talks until the end of the video.\", \"video_name\": \"v_htzAYwoAZkg\"}, {\"Q\": \"Can you describe the main events that occurred in the video?\", \"A\": \"The video features Kevin Spacey and Rafael Nadal on stage wearing tuxedos. They engage in a game of ping pong after a brief conversation and are provided with a table, paddles, and ping pong balls by three people wearing white hats. They play three games in total, with Kevin Spacey winning the last game. The video ends with a woman placing a garland on Kevin Spacey.\", \"video_name\": \"v_ijrjRNwZjqQ\"}, {\"Q\": \"Can you describe the scenes captured in the video starting with the windsurfers?\", \"A\": \"The video shows people windsurfing during the day against the waves. A boy in an orange and black wetsuit can be seen on his windsurfing board. Different colored marker buoys are visible in the vicinity of the windsurfers. A person in a white motorboat is seen moving among the surfers. The camera then focuses on a few windsurfers while they are surfing. In the following clips, a woman behind a sailboat is assembling her sailboard, and another woman is seen climbing back onto her sailboard after falling into the water. Finally, the video shows more shots of people windsurfing with a large ship visible in the far back and other structures visible near the horizon like a smoke stack of a power plant.\", \"video_name\": \"v_IhmtmKxEU40\"}, {\"Q\": \"What are the main events that happened in the video?\", \"A\": \"In the video, a man is sitting by a pool with a toddler on the wall. The toddler washes her face with water as the man holds onto her. Another boy walks over and the toddler washes her face again. There is a person wearing a green swim cap who is swimming behind the man. The video ends with the toddler trying to stand and immediately sitting back down.\", \"video_name\": \"v_3zpODTqnYLs\"}, {\"Q\": \"What is happening in the video and where does it take place?\", \"A\": \"The video starts with a girl sitting on a carpeted floor in a dimly lit room. She is wearing a blue T-shirt and shaving her left leg while occasionally talking to the camera person. Other people can be seen sitting on a sofa in the background, watching a screen to the left. Throughout the video, the girl converses with various people while continuing to shave. In the end, she gets up and walks away while the others continue lounging in the room.\", \"video_name\": \"v_1KONAdZGdWU\"}, {\"Q\": \"Can you describe the setting of the performance shown in the video?\", \"A\": \"In the video, a man in a black suit and white shirt is seen playing the saxophone on stage with a set of stairs in front of him. The stage has a blue-curtained background, and backing musicians can be seen further back from him playing various instruments. The audience is visible sitting a few feet from the staircase, and the auditorium appears to be full.\", \"video_name\": \"v_DIhyfNJAm-M\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a woman in a small gym practicing the movement patterns of weightlifting without weights, and later lifting a barbell with red colored weights by following the same patterns.\", \"video_name\": \"v_K6QunmuTZOQ\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a man ironing a dress shirt on an ironing stand in a well-lit room. He irons the shirt one section at a time and finishes both sides, then puts it over a clothes hanger. He repeats the process for a small portion and hangs the shirt among other ironed shirts.\", \"video_name\": \"v_l7qSKJyq6mA\"}, {\"Q\": \"Can you summarize what happens in the video?\", \"A\": \"In the video, a woman gets her belly button pierced by a man wearing black gloves. The man uses a needle piercer to insert the piercing and then secures it with jewelry by screwing on a ball. Both the man's hands are tattooed and the woman can be seen talking to the person behind the camera.\", \"video_name\": \"v_2VZumBKJuPs\"}, {\"Q\": \"What are the women doing in the video and where are they dancing?\", \"A\": \"The video shows four women dancing with synchronized moves under the shadow of a tree. They are dancing to music during the daytime.\", \"video_name\": \"v_7EeO9V2B574\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man and a woman dressed like characters from the street fighter game are fighting each other under an overpass during the daytime. They are standing in the shadow of the overpass while taking a fighting pose. They eventually move away from under the overpass and continue the fight on a path next to a green field, and in the end, they again take a fighting stance under the underpass.\", \"video_name\": \"v_IgDBDaIoNAM\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows players in orange uniforms playing field hockey on a hockey field, with several clips of girls from other teams being introduced, players being instructed, players being interviewed, and a coach providing instructions. The video ends with a goal being scored by a player in an orange uniform during a match between two teams.\", \"video_name\": \"v_325CAs4hhq8\"}, {\"Q\": \"What happens in the video with the man and the accordion?\", \"A\": \"In the video, a man wearing a grey shirt is seen sitting in a dimly lit room with an accordion strapped to him. Next to him is a wall with a bookshelf in view, and framed Spanish sayings hung on the walls. The man speaks briefly before starting to play the accordion. The video ends as he finishes playing.\", \"video_name\": \"v_CTJej0rZMiI\"}, {\"Q\": \"Can you describe what is happening in the video?\", \"A\": \"In the video, a man wearing an olive suit is playing the piano while people stand along the walls of the hall listening to him. As he plays, a woman wearing a scarf walks up to him and speaks to him briefly. Then, the woman begins to sing and a man in a black jacket is dancing near the far wall, while a man in a red t-shirt holds a coffee cup near the woman. As they finish, the man gets up and hugs the woman.\", \"video_name\": \"v_CTyvQHkAKuY\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a girl performing a routine on a balance beam in a well-lit gymnasium. There are judges and spectators present, and the routine involves backflips, jumps, balancing, and skips on the beam. The girl finishes with a front flip off the beam and lands on the ground. Another contestant gets up after her performance, and people can be seen clapping.\", \"video_name\": \"v_3M290KZV5lo\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a man using a banana peel to clean a black dress shoe that is resting on his thighs. He wipes all sides of the shoe and holds it to the camera, before throwing the used peel to the side. The video ends with an advertisement for a shoe polish.\", \"video_name\": \"v_itXYuf_Cj_Q\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, a little boy plays the violin in a well-lit room with two pianos at his back while a woman sits in front of one piano. The woman plays the piano while the boy finishes his performance with the last three notes played forcefully.\", \"video_name\": \"v_JspVuT6rsLA\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a polo game is going on at a field during the daytime. Players are seen striking the ball with their mallets while spectators are watching and walking down the stairs. The game continues with players riding and striking the ball throughout the field until one team wins and is seen holding up a cup with the banner \\\"The Barbour Cup\\\".\", \"video_name\": \"v_cPIsE2ZCWzM\"}, {\"Q\": \"What is shown in the video?\", \"A\": \"In the video, a man is seen tinkering with a bicycle by removing and reattaching the crankset after wiping the grease off both the crankset and the bottom bracket using a paper towel. The video ends by showing the man testing the pedal.\", \"video_name\": \"v_IL8__uSFpqg\"}, {\"Q\": \"What does the woman do in the video?\", \"A\": \"The video shows a woman playing squash in an empty room. She strikes the ball against different sections of the walls and follows its bounces back. After few strikes, she walks back to the middle of the court and stops.\", \"video_name\": \"v_JguRZtFN-Ck\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows people diving and performing various flips from different diving boards at a swimming pool. The video ends with a man diving horizontally into the pool.\", \"video_name\": \"v_cFOaL4Ir4hg\"}, {\"Q\": \"What happens in the volleyball game between USC and BYU?\", \"A\": \"In the game between USC and BYU, USC wins after the other team celebrates prematurely and the ball lands by them, causing them to lose the game. Spectators are visible in the seating area with the seats filled and a scoreboard visible high up. There is also balcony seating which appears full.\", \"video_name\": \"v_BdRH3lpopLQ\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a woman tennis player can be seen practicing her serve on an outdoor tennis court. She is hitting the tennis ball towards the opposite black wall. A man is also visible on the court. The surroundings include a parked truck, trees, and a street.\", \"video_name\": \"v_JHKAcpYlxkQ\"}, {\"Q\": \"What is happening in the video on the hockey field?\", \"A\": \"The video shows two teams of girls playing hockey, one wearing blue jerseys and the other wearing green jerseys, and one of the girls in the blue team with the number ten jersey is followed as she moves towards the goal and manages to score despite being intercepted by a player from the opposing team wearing a number nineteen jersey.\", \"video_name\": \"v_1xBdquA6dx8\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video features a man wearing a white t-shirt and a backward-turned cap who speaks to the crowd and then dances with another person. A man wearing a black outfit also breakdances on a white sheet placed on the ground. Additionally, there are some people who talk to the camera.\", \"video_name\": \"v_kdOsmDACtqw\"}, {\"Q\": \"What happens in the video with the toddler?\", \"A\": \"The video starts with a toddler sitting on a vanity table filled with makeup products and hair rollers. A hair straightener is plugged in and the room is well-lit. The toddler listens to her mother and then her hair rollers are removed, fluffed by her mother and she admires her hair in the mirror before the video ends.\", \"video_name\": \"v_kIFHChO_-vg\"}, {\"Q\": \"Can you explain the steps for playing an octave on a harmonica as shown in the tutorial video?\", \"A\": \"The video demonstrates how to produce an octave sound on a harmonica by using different holes. The presenter also explains how to position the harmonica near the mouth and how to blow to get the desired sound. In the end, he successfully plays an octave and double notes on the harmonica.\", \"video_name\": \"v_5P9Tbut04xE\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"Three women in gym clothes are dancing choreographed moves to music in a studio with mirrors, yellow lights, and punching bags hanging from the ceiling. They dance in a triangle formation and use their hands while moving left and right. The lead dancer walks up to the camera as the music stops.\", \"video_name\": \"v_7gaC3b5nJqs\"}, {\"Q\": \"What is shown in the video?\", \"A\": \"The video shows a girl brushing her teeth with a blue toothbrush in a room with a green wall and a painting of flowers. She smiles as she brushes and removes the brush with toothpaste visible in her mouth.\", \"video_name\": \"v_15yU0R2MBQM\"}, {\"Q\": \"What does the woman in the video demonstrate?\", \"A\": \"The woman in the video demonstrates how to use a kayak paddle to turn the kayak.\", \"video_name\": \"v_kgz7c2kb4Rg\"}, {\"Q\": \"Can you describe the gymnastic moves performed by the girl in the video?\", \"A\": \"The video showcases a girl performing various gymnastics moves including backflip, standing back-tuck, back handspring tucks, running front flips and tumbling sequences by flipping backwards.\", \"video_name\": \"v_0k0xNs8Zjb4\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a group of people playing water polo in a swimming pool while others watch from the poolside bleachers during the daytime. Players are seen attempting to get the ball at both corners of the pool, and there is an interception when a player throws the ball towards the goal. The goalkeeper is seen stopping a goal attempt towards the end of the video.\", \"video_name\": \"v_9pavfCL1HvU\"}, {\"Q\": \"Can you describe the main events in the video?\", \"A\": \"In the video, an old woman enters a house and puts a movie in the VCR. Her daughter joins her and two other women later arrive with a flower pot. The old woman is seen eating popcorn while watching the movie. The following day, the old woman is seen conversing with her daughter in the living room. A later clip shows the old woman and two other ladies sitting at a table drinking coffee and talking to each other until the video ends.\", \"video_name\": \"v_i5qTK0mInTc\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a game of water polo being played in a swimming pool, with players passing the ball and attempting to score goals. Spectators are watching from the poolside.\", \"video_name\": \"v_EK7qW-oavQY\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, a man is seen on a golf course using a compound bow to shoot arrows with the help of another man wearing a blue polo shirt. The blue-shirted man instructs the archer on how to grip the bow and makes gestures while the archer notches an arrow and aims at a target. Eventually, the blue-shirted man walks away.\", \"video_name\": \"v_jCxQQ9DMpT0\"}, {\"Q\": \"What are the different types of jumps that Stefan Holm performs in the video?\", \"A\": \"The video showcases Stefan Holm performing six degrees of jumping. He starts with the first degree jump, then moves on to the California Roll, the Holm Roll, the Straddle, the Scissor Kick and finally, the Fosbury Flop.\", \"video_name\": \"v_4NPVpI9zUpI\"}, {\"Q\": \"What activities are shown in the video?\", \"A\": \"The video features a girl and a boy wearing black outfits running and jumping over obstacles on a track. They take turns jumping into a sandpit. The girl performs a high jump while the boy dodges and jumps.\", \"video_name\": \"v_Ku76zinwWkg\"}, {\"Q\": \"What happens in the video at the paintball park?\", \"A\": \"The video depicts people in paintball helmets and hoodies carrying paintball guns. After receiving instructions, a cameraman runs forward and starts shooting people in the distance. The shooter continues to move and shoot, while some people crouching in front of him hold their hands up and walk back. The video ends with the shooter still shooting and avoiding being shot.\", \"video_name\": \"v_Hy54nZSDxTk\"}, {\"Q\": \"What is the video of?\", \"A\": \"The video is a game of women's field hockey, played in an outdoor hockey rink with green ground. Two teams, one wearing a white uniform and the other in a dark blue uniform are playing. People can be seen sitting and watching the game. The game specifically follows a player called Jessica Skillings who scores multiple goals throughout the match.\", \"video_name\": \"v_KApqxr02rcQ\"}, {\"Q\": \"What activities is the man in the video doing?\", \"A\": \"The man is shoveling snow on a sidewalk while wearing a blue jacket. He is slowly clearing the snow as he walks forward. The video ends as he is still shoveling snow.\", \"video_name\": \"v_BBKSKU6dGGk\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"In the video, the man is lifting a barbell with multi-colored weights above his head and dropping it to the ground after squatting. He is wearing a black polo shirt and shorts and is seen standing indoors behind a barbell placed on the floor. Additionally, a door and a closed shutter can be seen in the background along with pipes running beside a fan mounted on the right wall. The video ends with another man wearing a white t-shirt coming into view on the right.\", \"video_name\": \"v_-HpCLXdtcas\"}, {\"Q\": \"Can you give a brief overview of the volleyball match depicted in the video?\", \"A\": \"The video shows two teams playing a volleyball match in a gym. One team serves the ball, and a player from the other team sends it outside the court. An umpire is visible standing on a ladder next to the net and a digital scoreboard can be seen behind the second team. After serving the ball again, the opposite team member hits it outside the court, and the video ends.\", \"video_name\": \"v_9VtxNvLx6zA\"}, {\"Q\": \"Can you describe the actions of the man depicted in the video?\", \"A\": \"In the video, a man is shown chopping wood with an axe in a wooded area. He then breaks up the wood into pieces before sticking the axe into the ground.\", \"video_name\": \"v_AwgGYaV1lT0\"}, {\"Q\": \"Can you describe the setting and actions shown in the video?\", \"A\": \"The video shows a man in a black Tai Chi uniform standing on a concrete floor outdoors, with a flight of stairs and two people sitting behind him. He performs various Tai Chi stances slowly with his hands and feet and finishes his practice after a few minutes.\", \"video_name\": \"v_0X0u_3xUBPE\"}, {\"Q\": \"Can you describe the initial scene and actions of the man in the video?\", \"A\": \"At the beginning of the video, we see a shot of a backyard with a lawn, a tree by the fence, and trees visible beyond it. A man enters the scene walking in slow motion towards a chopping block with an axe in his right hand. He then swings the axe at a wooden log placed on the chopping block, cracking it in the middle. After a few swings, the log breaks into pieces and falls on the ground.\", \"video_name\": \"v_iABuDhagUm8\"}, {\"Q\": \"Can you describe the appearance and actions of the man in the video?\", \"A\": \"In the video, an elderly man is shown sitting on a mobility scooter wearing winter clothes, a hat, and sunglasses. He is outdoors and plays the harmonica while looking at the camera, ending his performance with a laugh. The video concludes with him speaking directly to the camera.\", \"video_name\": \"v_jt-Vnap5KP4\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man is skateboarding in a playground during the daytime. He performs flip tricks while skating and people are visible skating in the background. There is also another man present who is sitting down.\", \"video_name\": \"v_agu58IVL7IQ\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is about a man competing in a disc throw competition. He throws the disc several times while the spectators watch.\", \"video_name\": \"v_9AfQ2Q-96oE\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man wearing black clothing is performing tai chi on a lawn, demonstrating various stances and instructing on proper hand and leg positions.\", \"video_name\": \"v_A904-cbaYDw\"}, {\"Q\": \"Can you provide a summary of the video?\", \"A\": \"The video contains multiple shots of dancers performing ballet poses while the song \\\"Let it Go\\\" from Frozen plays in the background. The video begins with a woman doing a pirouette and continues with shots of dancers on different stages with different backgrounds. Some shots include single dancers while others feature larger groups, including dancers in green outfits performing on a black stage. The video also includes shots of dancers practicing in empty ballet studios.\", \"video_name\": \"v__B7rGFDRIww\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a boy and his coach are in an indoor basketball court. The coach is instructing the boy, who then proceeds to dunk the ball through the basket. The boy continuously dunks the ball by jumping high, from both sides of the basket.\", \"video_name\": \"v_5tFfEA1JWjA\"}, {\"Q\": \"What happens in the video with the group of dancers?\", \"A\": \"The video shows a group of dancers appearing on stage with a projection on the screen behind them. They perform a dance routine while silhouettes of people wearing headphones can be seen in the audience. The dance routine concludes with the performers taking a bow.\", \"video_name\": \"v_AQnp2QAnwI0\"}, {\"Q\": \"Can you describe the cheerleaders\\u2019 routine in the basketball court?\", \"A\": \"The video shows a cheerleading team entering an indoor basketball court, waving towards the spectators. They then proceed to do various routines, including a basket toss where flyers perform acrobatic movements, flips and reformations, until they end with another stunt.\", \"video_name\": \"v_ANaMmXJFE54\"}, {\"Q\": \"Can you describe the setting of the video?\", \"A\": \"The video starts in a gym that is lit by overhead lights. There are several balance beams fixed to the ground with foam pads lining the floor. The wall of the gym is lined with numerous flags.\", \"video_name\": \"v_7orO93DICYw\"}, {\"Q\": \"Can you describe the setting and the activity shown in the video?\", \"A\": \"The video depicts a high jump contest taking place in an outdoor field. There is a horizontal bar with an elevated foam pad located in the field, and contestants are attempting to jump over it. A referee with a notepad is also present, as is a group of people sitting on chairs and on the ground watching the competition. The height of the bar is increased as the competition goes on, and the video ends with a girl successfully jumping over the bar and knocking it over.\", \"video_name\": \"v_9hTcvGUnMBs\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a boy is seen mowing the lawn in a residential area during the daytime. He struggles to move the mower to start mowing one corner of the yard before moving on to the next patches of lawn. At one point, he gets stuck and pulls the mower back. There is a black car visible next to the yard and a line of houses on the other side of the street behind him. In the end, the boy is shown mowing from the edge of the yard.\", \"video_name\": \"v_60tIsGR0Zzg\"}, {\"Q\": \"What are the steps that the bartender performs in the video?\", \"A\": \"In the video, the bartender starts by pouring measured spirits into a cup using a jigger, then mixes them using a tea whisk before straining them into a mixer using a tea strainer. After taste testing the drink, he adds ice cubes to the mixer and shakes it before pouring it into a glass using a tea strainer. Finally, he runs a lime on the rim of the glass.\", \"video_name\": \"v_IRua6QGP-Ow\"}, {\"Q\": \"Can you describe the scene and characters in the video?\", \"A\": \"The video shows a boy in a dark blue sweatshirt sitting at a table with a plate in front of him. He is holding his right hand to the side of his head while looking into the camera. There is a lamp visible in the background near the wall. Another cutaway shot shows a man wearing a white t-shirt looking at the camera while standing in a room with a packed shelf in the back. The video ends with cutaway shots of the boy looking at the camera and looking away.\", \"video_name\": \"v_DOI6tsATsE4\"}, {\"Q\": \"What does the video depict?\", \"A\": \"The video shows a man in a well-lit gym standing behind a barbell. He wears black tights and lifts the barbell above his head before throwing it down and walking off to the side of the gym. A man in a green shirt sitting on a red chair is visible as he walks by.\", \"video_name\": \"v_ej9TkJVjK9M\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a woman is standing in a room with a hopscotch court drawn on the ground. She hops on the court, completes a pass, hops back to the starting point, opens a door, and turns to the camera holding her hands to the side.\", \"video_name\": \"v_8L1UjGLOCeI\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows people working out in an aerobics class, with most of the participants being women. They are using an aerobics step, with two air conditioner units mounted on the wall and wall-mounted fans on the far wall.\", \"video_name\": \"v_c7S423zJqPo\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man is promoting a weight loss product while holding up a sachet of coffee. He talks about the product and the screen displays the text  \\\"5 pounds lost in 7 days\\\" while showing images of 5 pounds of fat and muscle. The video ends with the man still discussing the weight loss product.\", \"video_name\": \"v_Bkhr72sazvQ\"}, {\"Q\": \"What is the process shown in the video?\", \"A\": \"The video shows a man creating a homemade cleaning solution for a wooden table using white vinegar and olive oil, and then polishing the table with the mixture.\", \"video_name\": \"v_d-RYiiPzVKg\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is of an indoor archery competition between two players, wherein the contestants shoot arrows through compound bows with spectators seated in the stands. The winner celebrates and the runner-up congratulates him.\", \"video_name\": \"v_BmLDHLKiIdQ\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, people are playing and kicking a red ball in a big lawn-covered field. There are tees visible outside the fence. As the ball is passed from one person to another, a variety of people of different ages, including an old woman and children, join in the game. The video ends when the man again rolls the ball to a waiting girl, who kicks it toward a waiting boy who catches it.\", \"video_name\": \"v_9VflCeoPr9I\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a man gets his head shaved by a woman using a trimmer as other people stand around the room. The man gives a thumbs up at the end.\", \"video_name\": \"v_1kwIYXB4b8s\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, two teens named John and Tyler take a boxing stance and spar in a basketball court. They start with kicks and proceed to punches, moving around the court while kickboxing. The video ends with Tyler pushing John back.\", \"video_name\": \"v_kPn9NzU4W48\"}, {\"Q\": \"What events occurred in the video?\", \"A\": \"The video features multiple dirt bike stunts performed by two riders on a dirt track. The stunts include jumping over inclines and hills, all while being recorded by a person in the middle of the track.\", \"video_name\": \"v_4iFlM_Zu7xs\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video captures the performance of a cheer squad showcasing their routine, stunts and dance on a stage with overhead lighting and gobo lighting projected on the stage wall.\", \"video_name\": \"v_Dbas61NkTV0\"}, {\"Q\": \"What actions does the girl perform in the bathroom?\", \"A\": \"The girl is seen leaning towards a sink while wearing a black top. She picks up a luffa and taps it on her face before washing it off with water.\", \"video_name\": \"v_j6ElczD-Pw4\"}, {\"Q\": \"What are the main events shown in the video?\", \"A\": \"The video showcases various scenes of Cheyenne, Wyoming including views of hoardings advertising Cheyenne, a fishing information building, wooden cabin near a flowing stream, a sign pointing towards a fishing pond, a red building near a lake, two men near a metal fence, saddled horses, riding horses near a barn, a man petting a horse, farm animals such as chickens, goats, black bull and brown cow and grazing ostriches, alpacas, and camels.\", \"video_name\": \"v_e3DB_y78IHc\"}, {\"Q\": \"What are some key actions shown in the video?\", \"A\": \"The video shows a boy climbing a rock while wearing a harness and belay rope. He carefully looks for handholds and applies chalk as he makes his way up the rock. He pauses a few feet from the top to rest before ultimately reaching the top and looking down. The next clip shows him climbing down with the help of another boy holding the belay rope.\", \"video_name\": \"v_9ZVWD0ZKXZg\"}, {\"Q\": \"Can you describe the game of badminton being played in the video?\", \"A\": \"The video shows a game of badminton being played by two teams comprising three women each. The court is indoor and has dark blue walls and flooring. One member of the first team walks out of the court mid-game to pick up a purse and have a brief conversation with a teammate. Despite being short of a teammate, the remaining two members of the first team continue playing against the other team.\", \"video_name\": \"v_1dDAcUliXrQ\"}, {\"Q\": \"What is the video about and what happens in it?\", \"A\": \"The video is about the process of preparing a dish and features a girl standing behind a black stone kitchen counter wearing glasses and a red outfit. The girl and a woman wearing a sweater prepare ingredients by chopping cherry tomatoes, squeezing basil paste, and sprinkling contents from a bottle into a steel bowl. A man wearing a white shirt tastes the mixture in the bowl and speaks to the camera. The video ends with a list of ingredients used in the process.\", \"video_name\": \"v_KvtqF0LaWU0\"}, {\"Q\": \"Can you describe the setting and actions of the girl in the beginning of the video?\", \"A\": \"At the beginning of the video, a girl is seen playing the piano by an open window with sunlight streaming in. Trees are visible outside the window, and the edge of a bed is visible behind the chair she is sitting on. She is referencing sheet music in front of her and starts singing as she is playing.\", \"video_name\": \"v_3VjaC7wdMso\"}, {\"Q\": \"What were the players doing in the video?\", \"A\": \"The players were performing a point guard drill where they run around cones, attack the basket, and make point guard entry passes.\", \"video_name\": \"v_cms1BP4eKOA\"}, {\"Q\": \"What events take place in the video?\", \"A\": \"The video shows Britney Reese, a woman in sportswear, performing a high jump into a sand pit while two men with measuring sticks watch. She then runs in the lane and claps her hands. The spectators, along with flags of different countries, can be seen in the seating area. In the end, a man in a suite is seen clapping with the other spectators.\", \"video_name\": \"v_Ivq9_wPFNs4\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a little boy in a dark blue t-shirt scrubbing dirty dishes in a well-lit kitchen sink. He stands on a box while scrubbing the dishes and places them in an adjacent empty sink. A woman wearing a yellow top records the boy with her cellphone. After the boy finishes scrubbing all the dishes, he continues to scrub another bowl.\", \"video_name\": \"v_dO01vfB9z4g\"}, {\"Q\": \"What are the main events that take place in the video?\", \"A\": \"The video shows people with kayaks on the lake shore, several kayaks in the river from an aerial view, people rowing through first a wide river then a narrow stream, people running and cycling through the woods with cyclists struggling to pedal through uphill and raised pathways, and finally, a cyclist making it through the finish line where people are gathered on either side and lifting a can of Red Bull.\", \"video_name\": \"v_4-KiAur4dI8\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a man playing harmonica on a sidewalk near a store with mannequins visible inside. He is sitting beside a white bag and people are walking by on the sidewalk. The video ends when the man stops playing and holds his hand out to someone.\", \"video_name\": \"v_1XNHcfxTqW0\"}, {\"Q\": \"What events take place in the gym video?\", \"A\": \"The video shows a girl doing gymnastics on a balance beam in a gym, starting with some balancing acts and finishing with a front summersault and a handstand before landing on the ground.\", \"video_name\": \"v_AE2gHOwcV14\"}, {\"Q\": \"Can you describe the steps shown in the video for starting a fire?\", \"A\": \"The video features a woman demonstrating how to start a fire while camping. She shows the process of breaking up dry leaves and tinder and lighting them using a carbon knife and a Ferro rod. She also holds up a green Bic lighter and a box of matches as alternative fire-starting tools.\", \"video_name\": \"v_bphckj0BV5U\"}, {\"Q\": \"What is the main content of the video?\", \"A\": \"The video shows a woman in a well-lit kitchen making tuna lettuce wraps using canned tuna. She mixes mayonnaise, relish, mustard, celery, onions and tuna to make the filling for the wraps, then arranges them on a plate and folds the lettuce leaves over the mixture like wraps. The video ends with an advertisement for the canned tuna and website information.\", \"video_name\": \"v_E5YBb4rzV30\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a man wearing a green jacket chopping logs and instructing a woman on how to chop logs with an axe. There is also a man drinking a beer and a dog in the scene.\", \"video_name\": \"v_dRF1C_sBE5M\"}, {\"Q\": \"Can you describe the scene in the gym where the boy is practicing training drills?\", \"A\": \"In the video, a boy dressed in a white martial arts uniform is training in a well-lit gym with a light wooden floor. An American flag is hung on the far wall, while a group of boys are sitting on the left behind a table, and a few men in suits are sitting on the right behind tables observing the drills. As the boy moves to the right, another young boy can be seen standing and observing the drilling boy. The boy continues to perform the drills until the video ends.\", \"video_name\": \"v_H33jSILKmfI\"}, {\"Q\": \"What happens in the video and what do the people wear?\", \"A\": \"The video features two individuals dancing together inside a dimly lit living room with wooden flooring. There is a man in a white t-shirt and a woman wearing a black coat over a pink top. They perform several twirls while dancing and the background includes a curtain, a TV on a pedestal, posters, and a corner of a white sofa. The video ends with them still dancing.\", \"video_name\": \"v_JiNcVb97CnA\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is about a chef making a Russian salad. He adds cooked potatoes, carrots, and peas to a bowl and tops it with a dressing made of mayonnaise, cream, salt, and pepper. He then places the salad in the center of a glass plate surrounded by lemons and topped with a tomato cut into a rose shape.\", \"video_name\": \"v_lIo8HfzzSNs\"}, {\"Q\": \"What are some of the actions performed by the man in the video?\", \"A\": \"The man in the video is shown mowing his lawn, measuring the length of the grass before and after mowing using a ruler, adjusting his mower to cut the grass to a desired length, and removing the mulch bag from the mower.\", \"video_name\": \"v_dN8LBey17O8\"}, {\"Q\": \"What does the video show happening in the field?\", \"A\": \"The video shows a man practicing his hammer throw on a round platform in a field surrounded by a lawn and trees. He is holding a handle with a hammer attached to it and is wearing a red shirt. After a few swings, he releases the hammer through the open end of the practice net and claps after watching its landing.\", \"video_name\": \"v_I7slpTgl0jc\"}, {\"Q\": \"Can you describe the main events in the video?\", \"A\": \"The video showcases a montage from inside a camper van passing through different locations, a boy pushing a dirt bike, an indoor dirt biking arena filled with spectators and with bikes parked at near end of the arena, people preparing berms, various scenes from the arena, two boys riding a dirt bike and doing doughnuts and kids racing in the dirt bike arena.\", \"video_name\": \"v_ks018ZYzrx4\"}, {\"Q\": \"Can you describe the outdoor and indoor settings of the dancing scenes in the video?\", \"A\": \"The video features dancers wearing black dresses and red dress shirts and black trousers, dancing outdoors among palm trees and other buildings, and then indoors on a dimly lit basketball court.\", \"video_name\": \"v_KsFid_YVsn0\"}, {\"Q\": \"Can you describe the scene in the video where the batsman gets out?\", \"A\": \"The batsman hits the ball through the gap in the off side towards the boundary. A fielder runs towards the ball and prevents it from touching the rope at the boundary. He falls on the other side of the rope after preventing the ball from touching the rope. The wicket player catches the ball thrown to him and removes the bails from the stumps. The players gather around the pitch. One of the umpires appeals the run out to the third umpire. A big screen in the stadium displays the message \\\"OUT\\\". A clip of the batsman near the exit of the field is shown.\", \"video_name\": \"v_hFpSoRlpyMo\"}, {\"Q\": \"What is the man cooking in the video?\", \"A\": \"In the video, the man is shown cooking \\\"dry pasta\\\" along with ingredients including parsley, olive oil, garlic, and chilies.\", \"video_name\": \"v_aOxRwTlkY80\"}, {\"Q\": \"What are the different scenes in the video?\", \"A\": \"The video shows footage of people playing cricket in a backyard during the day and at night, three men playing cricket in a garage, and a shot of a fluorescent wicket set. There are also several clips of gameplay showing a bowler bowling a ball and the batsman hitting it towards the field, sometimes hitting the fence, and sometimes hitting the stumps. The video ends with several still images of the batsman holding the bat.\", \"video_name\": \"v_4VdS1eN3dv4\"}, {\"Q\": \"What are some of the gymnastics stunts that were performed in the video?\", \"A\": \"The gymnast in the video performed stunts such as swinging and doing a handstand, swinging back and repeating it while turning in the other direction. Another person was also visibly doing gymnastics on the far right towards the corner of the hall.\", \"video_name\": \"v_EhzHU0gkrzA\"}, {\"Q\": \"What happens in the video at the hair salon?\", \"A\": \"The video starts in a hair salon where a man is sitting in a chair, having his hair cut. A woman is using a spray can and comb to wet and comb his hair before cutting it. There are other customers in the salon as well, and at the end of the video, the man can be seen in his car wearing a hat and sunglasses.\", \"video_name\": \"v_6G8m-vsGTA8\"}, {\"Q\": \"Can you describe the karate performance in the video?\", \"A\": \"The video features two boys wearing karate uniforms and demonstrating their skills on a stage with black curtain and red strobe lights. They perform synchronized moves and finish their demonstration with a bow. An American flag is placed on the left side of the stage.\", \"video_name\": \"v_kfO5PGlsMJw\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is a makeup tutorial where a woman applies full makeup including concealer, foundation, bronzer, eyeliner, mascara, lipgloss and darkening her eyebrows. The video ends with the woman looking into the camera and smiling and showing earrings.\", \"video_name\": \"v_86Unahb4sJM\"}, {\"Q\": \"What is happening in the first clip of the video?\", \"A\": \"In the first clip, a man in an office is using a vacuum to clean the carpet. He is wearing a red polo shirt and blue pants while carrying the vacuum in his back.\", \"video_name\": \"v_jN2CFk0xKp8\"}, {\"Q\": \"Can you describe the setting and actions of the breakdancers in the video?\", \"A\": \"The video shows two boys breakdancing in a garage filled with tires and rims. The boy in olive shorts demonstrates the \\\"Zulu Spin\\\" move while the other boy gives instructions.\", \"video_name\": \"v_JG7T6qtO4jg\"}, {\"Q\": \"What are the highlights of the gymnastics competition?\", \"A\": \"The video shows a gymnast performing different moves such as a handstand, front flip, back flip, and balance poses. She finishes with a cartwheel and jumps off the balance beam.\", \"video_name\": \"v__ja1fre9OTE\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"A man in a black jacket is playing the bagpipe in a bar and several people are standing around him cheering and clapping. The bar is dimly lit and there are glasses and bottles visible on the shelves behind the man.\", \"video_name\": \"v_82EtiBkAsPg\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man wearing a black jacket and fedora sings and plays harmonica on a stage with lights shining from above. The audience can be seen in the darkened seats.\", \"video_name\": \"v_7OcxT66BxX0\"}, {\"Q\": \"What are the different activities that can be seen in this video?\", \"A\": \"The video showcases sailors sailing dinghies in the sea, performing capsizing training, sailing the dinghies with multiple individuals, and even a story of two boys sailing on a dinghy.\", \"video_name\": \"v_aDe5hUB3AdY\"}, {\"Q\": \"What happens in the video with the black French bulldog and the cup of coffee?\", \"A\": \"The black French bulldog stands on a checkered red tablecloth and the boy places a cup of coffee in front of him. The dog then drinks the coffee and the boy gently tries to move him away from the cup.\", \"video_name\": \"v_5qY9yPt-5Go\"}, {\"Q\": \"What events and scenes can be seen in the video?\", \"A\": \"The video showcases a group of people sitting on a couch, a man speaking to the camera, a teen giving a speech in a classroom, cheerleaders performing routines on stage, cheerleaders training, and cheerleaders celebrating. There are also scenes showcasing a man giving instructions to girls in a hall, a group of cheerleaders watching the stage and some of them crying, and multiple cheer squads performing on stage.\", \"video_name\": \"v_hvrKRg166eQ\"}, {\"Q\": \"What is the woman in the video demonstrating?\", \"A\": \"The woman in the video is demonstrating how to iron a men's cotton dress shirt while standing in a well-lit room with a window behind her. She starts by spraying starch on the shirt and then proceeds to iron the sleeves of the shirt. She finishes with ironing the ends of the sleeve.\", \"video_name\": \"v_a_JlhLnJM98\"}, {\"Q\": \"Can you describe the event that took place in the video?\", \"A\": \"In the video, a dancing event was held in a well-lit hall surrounded by tables where the guests were seated. A man and a woman entered the center holding hands and started to tango as soon as the music began. They moved around the hall progressively as the dance continued, and finally separated and bowed towards the applauding audience when the music stopped.\", \"video_name\": \"v_9Ufy_JGbnys\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, there are two people, a man in a checkered shirt and a woman, dancing in a darkened room with a wooden floor. A small child walks into the next room through a door on the right. The wall at the back has a few photo frames hanging from it. At the end, the man spins the woman several times.\", \"video_name\": \"v_9eniCub7u60\"}, {\"Q\": \"What are the main events shown in the video?\", \"A\": \"The video shows people carrying kayaks, driving to a location and then kayaking down rapids with some shots of the kayakers in calmer waters as well. Finally, people are seen drinking beer on land with the sunset in the background.\", \"video_name\": \"v_k1GP0cJOXbQ\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows players celebrating on a baseball field, followed by a handball match outdoors where a player kicks the ball. A referee is visible. There is a replay of the play with positions marked out on the field. Another clip shows a baseball game where a batter hits a ball, runs, and the ball is caught and thrown to a base.\", \"video_name\": \"v_7bwruwic1CI\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, a man wearing a white suit sits on a raised platform in a bar next to another man playing a guitar. Other people are seen around the bar, some are sitting together around a table, while others watch the man playing the guitar and take a drink from a glass or smoke. The man in the white suit eventually picks up a guitar and starts playing until the video ends.\", \"video_name\": \"v_bYxVbXzQToI\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows three people, a man and two women, doing aerobic movements using an aerobics step in a studio with overhead lighting. They are wearing microphones and the man is leading the routine while calling out instructions. There are white screens with frames in the background and two screens displaying a rotating green letter 'e' mounted on stands in between them. At one point, a new routine starts after a cutaway. The camera also pans over and shows a Gobo projector.\", \"video_name\": \"v_hI11n4_r178\"}, {\"Q\": \"What happens in the video?\", \"A\": \"A woman participates in a pole vaulting competition, successfully jumping over the bar twice and taking a drink of water in between attempts. Other people are visible around the bar, including a referee and two athletes warming up.\", \"video_name\": \"v_hP-xRyx88aA\"}, {\"Q\": \"Can you describe the scene of the boy playing the violin in the living room?\", \"A\": \"In the dimly lit living room, a boy wearing a sweater vest is standing while holding a violin. He is accompanied by people sitting on chairs next to him and there is a painting on the wall behind him. A man wearing a black shirt can be seen sitting under the painting and windows are visible through an open door behind the boy. The boy starts playing the violin and continues until the end of the video when the audience applauds.\", \"video_name\": \"v_HxrtuZSCwvY\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows two men playing squash, running around the court, until the man in the white t-shirt appears tired. They continue playing until they stop and share a handshake.\", \"video_name\": \"v_af05Mqm03Y4\"}, {\"Q\": \"Can you describe what the man in the video is doing?\", \"A\": \"In the video, a man is sitting in front of a painting while playing a harmonica. He is wearing a grey dress shirt and glasses, and the room is well-lit with a yellow overhead light. He continues to play the harmonica until the end of the video.\", \"video_name\": \"v_ddzfgHw_qlU\"}, {\"Q\": \"What activities are the man and woman doing in the video?\", \"A\": \"In the video, the man and woman are practicing kickboxing. The man is wearing punch mitts while the woman is wearing boxing gloves. They are using various kickboxing moves such as punching, kicking, and elbow strikes while moving around in a well-lit gym. The video also shows posters on the walls and a multicolor mat covering the floor. At the end of the video, their practice ends and both of them stop fighting.\", \"video_name\": \"v_h_r8gioFi4k\"}, {\"Q\": \"What happens in the video and who is featured in it?\", \"A\": \"The video shows a man wearing blue shorts and a vest with the number tag of 2736 running slowly in a track and field stadium. He jumps over a high jump bar by flipping back and parallels to the bar before walking away from the foam mat. The video also features replays of the jump from different angles until the end of the video.\", \"video_name\": \"v_EnMS9O1U6E0\"}, {\"Q\": \"What is shown in the video?\", \"A\": \"The video shows a man in a black shirt and black track pants hitting a tennis ball across an outdoor tennis court. The ball is seen landing on the other side and heading towards the trees.\", \"video_name\": \"v_CeXtKbFnPIQ\"}, {\"Q\": \"Can you describe the makeup process in the video?\", \"A\": \"The video showcases a makeup artist applying makeup on the model Irina Shayk. The artist starts with eyeshadow, moves to eyelashes, lipstick, and then redoing the eye makeup while using different colors. The video ends with a show of Irina with completed makeup.\", \"video_name\": \"v_K_ia4VP3w2c\"}, {\"Q\": \"What are some of the key scenes depicted in the video?\", \"A\": \"The video begins with a view of a vineyard, followed by a rider leading a horse down an incline and riders on horses riding in a circle. After exiting the enclosure, they ride on a dirt path near the vineyard. The riders, led by a woman in a black turtleneck, make their way to a winery where they stand in a wine cellar with stacks of wine barrels. The video also shows grapes being hung and stacked on a drying platform and people seated in a dining room with wine glasses in front of them. The video ends with a shot of the facade of the winery.\", \"video_name\": \"v_IDIALY6Ayk8\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a girl wearing a grey hoodie gets her tongue pierced by a man wearing a black shirt and surgical gloves. The man clamps her tongue, pierces it with a needle, and inserts a piercing before securing it with something. The video ends with the man stepping out of frame and the woman showing off her new piercing.\", \"video_name\": \"v_ij9czNGMR5I\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a women's volleyball match being played in a light wood school gymnasium with white walls and bleachers. The players on the left are wearing blue uniforms, and a referee is visible in the middle standing on a platform over the net. The players volley the ball back and forth until the team on the right misses a hit, and the video ends as the team on the left wins the exchange.\", \"video_name\": \"v_jEOtcfk220s\"}, {\"Q\": \"Can you describe the outfits worn by the breakdancers in the video?\", \"A\": \"The breakdancers in the video are all seen wearing black outfits while performing their moves.\", \"video_name\": \"v_j6OcN4OQZVM\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video starts with instructions for a test followed by a green screen slideshow. It then shows a man wearing a purple shirt vacuuming the living room and the kitchen. He vacuums under furniture and also rolls up the cable in the end.\", \"video_name\": \"v_bz4QwqHiVlo\"}, {\"Q\": \"Can you describe the events that take place in the video?\", \"A\": \"In the video, a woman wearing a black outfit is performing a hammer throw on a field. In the first throw, the hammer lands on a blanket where a couple is sitting and talking. In the second throw, the hammer lands in a swimming pool just as a swimmer reaches the wall. In the third throw, the hammer flies over a gymnast standing on a balance beam causing her to fall over. In the final throw, the hammer lands in front of a baseball catcher who is wearing full gear and gets up in exasperation. The video ends with the hammer thrower walking off to the side.\", \"video_name\": \"v_hPYGgv_75SY\"}, {\"Q\": \"Can you describe the scene in the video?\", \"A\": \"In the video, we see a girl sitting on a chair wearing a hoodie and jeans with a closed window behind her. There are various music instruments lying on the ground around her. She is holding a guitar and listening to music. She is following the music and mimics the guitar notes on her guitar without plucking the strings.\", \"video_name\": \"v_jWH-2aa1gJY\"}, {\"Q\": \"What are some of the activities of Chris Hadfield shown in the video?\", \"A\": \"The video shows Chris Hadfield holding a tortilla and adding honey to it, playing the guitar while floating in the space station, getting a haircut from someone in a teal t-shirt, walking down a path with other astronauts, giving an interview on the space station, rearranging his hair, and various images of space and Earth shown in a slideshow.\", \"video_name\": \"v_BAtlo_AGFWs\"}, {\"Q\": \"What is the man in the video doing?\", \"A\": \"The man in the video is chopping wood in a wooded area with a cabin nearby. He is using an axe to chop wooden blocks on a tree stump into uniform lengths and then piling them up behind him.\", \"video_name\": \"v_9lAT3oA9Ixs\"}, {\"Q\": \"What is Valarie doing in the video?\", \"A\": \"Valarie is imprinting a design on a T-shirt using an iron on transfer and pressing the design on the shirt while speaking and laughing with the cameraman.\", \"video_name\": \"v_0rr7iGHamw0\"}, {\"Q\": \"What happens in the aerobics studio in the video?\", \"A\": \"The video begins in an aerobics studio where people are working out behind aerobic steps with an instructor giving instructions. A man wearing black falls down over his aerobics step when struggling to follow the instructor\\u2019s pace.\", \"video_name\": \"v_6utacRir3uM\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video showcases various types of kayaks being used in different bodies of water while a man wearing a hat is interviewed by a woman on a lakeshore.\", \"video_name\": \"v_5cijPqKVc84\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a wood-chopping competition with contestants on both sides standing over their respective logs. There are two sets of competitions happening with contestants on the left having their wooden blocks laid horizontally on chopping stands, while contestants on the right are assembling wooden blocks on horizontal chopping stands. They are wearing black vests and light-colored trousers, outside in an arena during the daytime. The contest begins as the two sides begin chopping wood, and some players on the left finish before the players on the right. The first player on the left side then heads over to the right and speaks to another contestant.\", \"video_name\": \"v_l5ZUUChppHU\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a woman attempting to do a long jump by running towards and jumping into a dirt pit. There are clips of her taking multiple attempts and people are visible in the background.\", \"video_name\": \"v_52Xw6TZcysc\"}, {\"Q\": \"What are the key events that take place in the video?\", \"A\": \"The video showcases a little boy playing lacrosse for the Salem team in different games. It depicts him holding a stick and scoring goals as well as chasing the ball. Face-offs between players from different teams are also shown.\", \"video_name\": \"v_l_0HvMt2tGg\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is about the practice of tai chi and its history. It shows people practicing tai chi outdoors in winter clothes, in a hospital, and being taught by others. The video also includes clips of an old man teaching tai chi, and a news anchor reporting on the practice of tai chi.\", \"video_name\": \"v_1jgsRbGzCls\"}, {\"Q\": \"Can you describe the cricket match shown in the video?\", \"A\": \"The video shows a cricket match being played on a field with a pitch surrounded by a grass field. The match is between two teams and several students can be seen watching and playing. The video features a batsman hitting a ball, a bowler delivering it, and other movements commonly seen in a cricket match. Trees and a building with white pillars can be seen in the background.\", \"video_name\": \"v_kl-2y3jtPNE\"}, {\"Q\": \"What are the men doing in the video?\", \"A\": \"In the video, two men are seen in the woods, holding beer cans. The man on the left picks up a can from a pack, makes a hole in it with a key, and drinks through the hole. The man on the right drinks from his own can and belches at the end. Another man comes into the frame and talks to the camera.\", \"video_name\": \"v_j_r7zJWxI8w\"}, {\"Q\": \"What is shown in the video?\", \"A\": \"The video shows a woman picking up three rolls of gift wrap from a blue wooden counter, laying them out on a light wood table, and wrapping a brown cardboard box. Gift wrapping accessories are shown appearing on the table with jump cuts. The woman carefully folds the sides of the box and wraps it with tape. The video ends with her turning the wrapped box on every side to show the wrapping.\", \"video_name\": \"v_l_pp-1qu9Ig\"}, {\"Q\": \"Can you describe the key events in the video?\", \"A\": \"The video shows a game of cricket being played, with a bowler throwing a ball to the batsman who hits it towards the woods. The batsman and a non-striker start running between the wickets, but they stop when the ball is found by a fielder who throws it back to the bowler.\", \"video_name\": \"v_8r4bF9RF0Kc\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man in the video is fixing a broken chain on a bike in a well-lit bike shop by attaching a master link to one end of the broken chain and pulling both sides together until they lock together.\", \"video_name\": \"v_iUiXNXRs4rU\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a woman showcases a soap dispenser for kids in a well-lit bathroom with a wooden shelf and a vine climbing down from the top. She is joined by a little boy who pumps soap from the dispenser, washes his hands in the sink, and wipes it on a towel. The woman also presents a bottle of hand sanitizer to the camera.\", \"video_name\": \"v_Lf_7RurLgp0\"}, {\"Q\": \"What is happening in the video of two kids playing squash?\", \"A\": \"The video features two kids playing squash on a well-lit court. One is in a blue t-shirt while the other is in a red t-shirt, and they continuously start over as one of them misses their shot. A boy in a white t-shirt also stands outside the court watching while people can be seen passing by the glass door at the back of the court.\", \"video_name\": \"v_34ZxyyFjbHQ\"}, {\"Q\": \"Can you describe the woman in green and what she does in the video?\", \"A\": \"In the video, a woman wearing a green top is seen leaning on an elliptic bike before sitting on it and speaking to the camera. Later, she is shown learning how to use an exercise bike from an instructor while a person wearing red top is exercising on an elliptic machine to her right. The woman in green cycles on the exercise bike while looking at herself in the mirror.\", \"video_name\": \"v_Db9VWkgMpbE\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"A man is playing a flute on the Marble Bridge with the Palace Museum in the background while people walk around Meridian Gate Square. He wears a black polo shirt and a rice hat and continues playing until the end of the video.\", \"video_name\": \"v_Il9Ara3IqeY\"}, {\"Q\": \"What steps are involved in the cleansing process demonstrated in the video?\", \"A\": \"The beautician introduces herself and the model, shows how to create a cleansing mixture with baking soda and yogurt, teaches how to apply it on the face, demonstrates wiping the face with a washcloth, and speaks about the final results.\", \"video_name\": \"v_HkbOI7gEtKk\"}, {\"Q\": \"Can you describe the scene captured in the video?\", \"A\": \"Two identical men are featured in the video. They make a sandwich for a girl who visits them. The men appear to be in a bedroom and a girl walks in through the door wearing a backpack. The men then proceed to make a sandwich by assembling various ingredients, while the girl sits on the sofa. They then offer the sandwich to the girl and the video ends with the men looking at each other with a frown.\", \"video_name\": \"v_cEa87QoI3Do\"}, {\"Q\": \"What can you tell me about the dodgeball game in the video?\", \"A\": \"The video shows players in teal t-shirts on one side of an indoor basketball court playing against a group of amateur players. The players in teal move around the court and throw balls at the opposing team while some players get hit and some catch the ball. There are also students wearing white shirts cheering in the bleachers and a man with a mic standing on the outside of the court. The game ends with a player in teal being dismissed as he crosses the midline and the players slowing down and stopping playing.\", \"video_name\": \"v_ARpoJIBF2NM\"}, {\"Q\": \"What is happening in the video and who are the main characters?\", \"A\": \"The video features a group of boys standing inside a yard, with one boy in black standing a few feet away. Another boy throws a red ball, and a boy in a green shirt runs up to kick it. The ball lands near the opposite fence and a boy in a red shirt runs toward it.\", \"video_name\": \"v_H8oehT8eeGc\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, a man is seen holding a wooden Irish flute in a living room with various framed items hanging on the wall. He speaks to the camera and then plays the flute while showing how to breathe when playing it. The video ends as the man demonstrates some breathing exercises and plays the flute for a moment.\", \"video_name\": \"v_jQzBXawu29s\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video showcases a boy in blue jeans and a sweater who is chopping wood next to a pile of chopped logs. He attempts to chop the wood, but it slips and turns to the side, so he straightens the log and tries again.\", \"video_name\": \"v_51faGoLPJgM\"}, {\"Q\": \"Can you describe the process of cleaning the shoes in the video?\", \"A\": \"A man wearing a grey t-shirt is cleaning Adidas shoes by removing the insole and laces, brushing the shoes with a solution, dipping the brush in the water bowl, and wiping the shoes with a towel once done. The video also shows a comparison between a clean and dirty shoe and ends with the man holding a cleaning product labeled \\\"jason markk\\\".\", \"video_name\": \"v_AB480dHyDeM\"}, {\"Q\": \"Can you describe the setting and the people in the video?\", \"A\": \"In the video, a man wearing a blue T-shirt and a blue cap and a woman wearing a brown top and blue jeans are dancing outside in an alley with a wall with windows visible behind them. In another clip, a man wearing a white t-shirt dances with the woman as well.\", \"video_name\": \"v_lPw_BRbPw5s\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"The video showcases a chef making sandwiches by adding toppings to slices of bread. He introduces himself and shows the different ingredients he uses while preparing sandwiches. The video ends as the chef cuts the finished sandwich and plates it.\", \"video_name\": \"v_Kofjs0rkwxc\"}, {\"Q\": \"What is happening in the ballet class?\", \"A\": \"In the video, the ballet instructor is at the front with two students at her back on either side, starting ballet practice with hand movements. Little kids sitting a few feet away from the trio are mimicking the hand moves the trio makes while the instructor and the other two dancers slowly move their hands and legs to showcase the movements. The girls sitting in a half circle behind the three dancers are seen following the movements and repeating them. The video ends as the three dancers finish the movements and stand in a pose.\", \"video_name\": \"v_jiM0HUFn0e8\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video features a gymnast performing various poses on the balance beam, including multiple backflips and spins. She loses balance at one point but continues and finishes her routine by doing three backflips and landing on the ground.\", \"video_name\": \"v_4oi6dXfpJS4\"}, {\"Q\": \"Can you describe the various fights that take place in the video?\", \"A\": \"The video showcases several fights between contestants who are dressed in different colored gis. There are exchanges of kicks and hits between the fighters. In one of the clips, a person in red gi knocks out all the opponents and strikes a pose while spectators are clapping. The fights range from martial arts contests to breaking bricks and tiles placed in different positions.\", \"video_name\": \"v_4KMG6lEDSIM\"}, {\"Q\": \"What are some of the activities captured in the video?\", \"A\": \"The video captures various activities such as mountain rock climbing, marking spots on rocks, climbing boulders, climbing down ropes, climbing rocky hills, and standing on the top of hills.\", \"video_name\": \"v_889_kqLFM0E\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"The video starts with a woman lifting herself from two bars on either side in a park with other outdoor fitness equipment visible in the back.\", \"video_name\": \"v_1YU4MSK80cQ\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"At the start of the video, two teams are playing dodgeball on a well-lit basketball court with spectators seated around. \", \"video_name\": \"v_IDuoF51IMJ8\"}, {\"Q\": \"Can you describe the setting and activities shown in the video?\", \"A\": \"The video showcases a group of young boys getting ready for a paintball game, taking defensive positions and ducking behind inflated bunkers used as obstacles in the field. The video also features quick clips of kids playing in the paintball arena or loading paintball guns with pellets.\", \"video_name\": \"v_jkrlHzTRTvo\"}, {\"Q\": \"What is shown in the beginning of the video and what is written on the decorated saxophone case?\", \"A\": \"The video starts with a close view of a saxophone case with the text \\\"GUNS-N-ROSES\\\" and a rose drawn under it.\", \"video_name\": \"v_dhsSq0K1xEg\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a woman and a toddler are inside a bathroom. The toddler is wearing blue and red pajamas and attempts to wipe off the makeup the woman is wearing with a cloth. The video ends with the toddler still wiping the woman\\u2019s face with a cloth.\", \"video_name\": \"v_0x6ZV9Y8g_c\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, two people are seen shoveling snow behind a car parked in front of a red brick house. A doctor in a white coat is talking to the camera in a clinic. The video ends with a man wearing suspenders shoveling snow.\", \"video_name\": \"v_-IMXSEIabMM\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man is lifting a barbell in a gym. He is wearing a red vest and there are bars and weights on a shelf next to the wall. He lifts the barbell over his head with visible difficulty and drops it, causing it to bounce on the ground a few times.\", \"video_name\": \"v_dVpHF8tE2qo\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a group of women are seen belly dancing in a well-lit dance studio, with a mirror visible on the left wall. The instructor is leading the group, and there are five participants in total. The dancers begin by holding a position and then start moving their hands and bodies side to side, rotating, and moving forward and back as the music progresses, with the video ending with the women stopping their dance as the music comes to an end and credits roll.\", \"video_name\": \"v_Kic33dtLja8\"}, {\"Q\": \"Can you describe the events that unfold in the video?\", \"A\": \"In the video, we see two lacrosse teams playing against each other. The players are wearing either white or dark blue jerseys, and the games are played at different times of the day, some under the floodlights during the evening. The footage shows a player in white number 15 jersey who successfully scores a goal in multiple clips, after dodging his opponents and catching the right ball thrown by coaches during practice.\", \"video_name\": \"v_4mRkWNLE66E\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man is getting a tattoo on his left arm from a woman in a room. The woman is using a tattoo gun and there are lights shining directly on the tattoo area. The room has dim lights and a window with shutters. The window shutters are open and there are some plants outside the window. The room has some paintings, tattoo inks, a chair, and a small mirror.\", \"video_name\": \"v_FOZdNPQ7d5Q\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows men sitting around a table with bottles and cups on it. One man drinks from a flaming shot glass, which does not go out and sticks to his mouth. The man panics, throwing the glass on the table, which sets the table and a man standing near it on fire. The man on fire screams, falls, and tries to put the fire out, while another man helps him.\", \"video_name\": \"v_BSwChZlOb0k\"}, {\"Q\": \"What is happening in the gym in the video?\", \"A\": \"A man wearing a red t-shirt lifts a barbell in the gym and then drops it on the ground before walking away. The gym has a black floor and has various equipment fixed to the wall. The entire gym is illuminated by overhead lights.\", \"video_name\": \"v_cqxiLraI8uY\"}, {\"Q\": \"Can you describe the scene in the video with the boy in the black tights?\", \"A\": \"The video features a boy in black tights balancing above a pair of horizontal bars while an instructor in a white shirt stands next to him. There are also a few kids standing behind the bars wearing similar outfits, and a woman in a red shirt standing near foam padding beneath the bars. The gym appears to be well-lit with overhead lighting. After swinging on the bars a few times, the boy jumps onto the foam padding next to him.\", \"video_name\": \"v_d6PdD2O3Yrs\"}, {\"Q\": \"Can you describe the scene in the video?\", \"A\": \"The video shows a man holding a racquet on a cloudy day playing tennis on a court surrounded by a metal fence with houses in the distance. The tennis player hits the ball towards the other end of the court before the video abruptly ends with a hand covering the camera lens.\", \"video_name\": \"v_3V9tzjyr51I\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video primarily shows a man practicing Tai Chi movements in a well-lit indoor studio with light wood flooring and a mirror on the back wall, and a window on the right side wall covered in purple drapes. The man moves slowly and performs different Tai Chi stances until the end when he stops.\", \"video_name\": \"v_di5f5hM05Vw\"}, {\"Q\": \"What activities are the men in the video engaged in?\", \"A\": \"The video shows men engaged in different kinds of training such as drills on a trampoline, push-ups, ballet training, and performing a jumping routine in ballet costumes.\", \"video_name\": \"v_JN1wuOpCZvk\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video showcases people riding dirt bikes on a dirt path and going through lessons on different ways to ride dirt bikes on different surfaces. They are going over inclines in the path and riding during the daytime. The video also includes shots of tires painted yellow stuck on either side of the path, a wall with a red logo on it, and a clip with a rider wearing white gear speaking to the camera. The video ends with a shot of the driver wearing full safety gear, standing outside in the dirt bike yard and credits rolling.\", \"video_name\": \"v_JH9qiuPCkY4\"}, {\"Q\": \"What actions are being taken in the video?\", \"A\": \"In the video, people are seen wiping various surfaces and using a spray bottle of \\\"Favor\\\" cleaning product. They are nodding to the voiceover and advertisements for the product are shown on wooden surfaces.\", \"video_name\": \"v_aQ-F9wr0HQ4\"}, {\"Q\": \"What is Pinky doing in the video?\", \"A\": \"In the video, Pinky is standing behind a bar and mixing a drink called \\\"GIN E HENDRIX\\\" by adding different ingredients including ice cubes, cucumbers, lime, lemon, and basil leaves. She then pours the mixture in a tall glass with ice cubes and drops a black straw into it.\", \"video_name\": \"v_0UTrTg3DF5g\"}, {\"Q\": \"What is the video about and what are the different things captured in it?\", \"A\": \"The video captures a brown labrador retriever walking on a dirt path with a leash around its neck. It also shows a little boy wearing a black T-shirt and red trousers walking with a man who is wearing a baby sling. The cameraman who is wearing a blue T-shirt and glasses can be seen briefly on camera. Trees can be seen on the side of the path.\", \"video_name\": \"v_Ie09KEAPP2I\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, three men are on a yellow bungee jump platform during the day. One man wearing a strap jumps off while holding a thumbs up to the camera. He falls down, reaches the bottom and is pulled back up before dropping down again. He is then reeled down and two attendants draw him to the shore.\", \"video_name\": \"v_Jdu5AqaWfz8\"}, {\"Q\": \"What scenes are shown in the video?\", \"A\": \"The video shows kayaks tied to a pier, a man sitting in a yellow kayak, a man pushing the kayak out of a kayak training notch, another man rowing down a river wearing a yellow shirt and a yellow cap with a black backpack slung over his shoulder, a tortoise laying on a fallen log in the river, a group of kids in blue and red kayaks wearing life vests rowing, a group of people on yellow kayaks rowing in a river going through a canopy of tree branches, and adults and kids shown rowing on kayaks in the river.\", \"video_name\": \"v_Erje-PwY9hE\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows two teams playing field hockey during the day. One team is wearing blue and the other is wearing white. The video follows a player in a blue number 1 uniform as she dribbles the ball, receives a pass, or scores a goal. The player is sometimes wearing a white uniform with the number 1. The video also shows the player playing matches during the day and night, with a referee wearing a teal shirt. The video ends with the player scoring a goal and people celebrating.\", \"video_name\": \"v_HgYuRKZ_V90\"}, {\"Q\": \"Can you describe the events that take place in the video?\", \"A\": \"The video begins with a man named Brandt introducing himself in front of a bike placed on a table. Next, he repairs a bicycle by fixing a punctured tire. He removes the tire, inserts a new tube, inflates it using a pump, and fixes the tire back to the bicycle using a wrench. The video ends by showing Brandt and other volunteers handing repaired bikes to their owners.\", \"video_name\": \"v__jV5sAOOHLk\"}, {\"Q\": \"What is the rabbit doing at the beginning of the video?\", \"A\": \"At the start of the video, the rabbit is grooming himself.\", \"video_name\": \"v_JDwd6Ec454A\"}, {\"Q\": \"Can you describe the actions performed by the little girl in the video?\", \"A\": \"In the video, the girl in a pink sweater runs towards the camera and goes to the hopscotch court drawn on the ground behind her. She hops on the squares and picks up a pebble from the last square. After throwing the pebble outside of the squares, she picks it up again and throws it into the hopscotch square. She repeats this a few more times before finally landing the pebble on the desired square and hopping towards it.\", \"video_name\": \"v_34SBoGK8mT8\"}, {\"Q\": \"What are the items and people shown in the room at the beginning of the video?\", \"A\": \"At the beginning of the video, the girl is in a room with printed walls and a chandelier. There are also some dolls, a green sofa, and a big green plant in the room. The room has a white door. The girl is wearing a black top.\", \"video_name\": \"v_fNhw7xE3NM8\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, two men are sparring in a dojo wearing protective gear while a man in a red t-shirt instructs them. They try different moves as they box, and the video ends as they stop sparring. The wall behind the men has a poster with the words \\\"THE CHOSEN FEW\\\" and a skull on it. People are visible sitting with their backs to the wall.\", \"video_name\": \"v_83f0iwb8VW8\"}, {\"Q\": \"Can you describe the main actions and movements happening in the video?\", \"A\": \"The video shows a girl in a dimly lit room picking up a bottle of mouthwash, taking a sip, gargling, and then spitting it out. She then proceeds to beatbox and picks up her toothbrush to brush her teeth with toothpaste. Finally, the video ends with the girl sticking her tongue out after finishing brushing her teeth.\", \"video_name\": \"v_Lb7Q8qv3MHU\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a woman standing in a dimly lit bathroom with a drinking glass and a cigarette. She looks at herself in the mirror, turns around, and taps her cigarette in front of the mirror. In the end, she places both the cigarette and the glass in front of her.\", \"video_name\": \"v_7dXqXFoju2M\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video showcases a group of musicians playing various instruments including saxophones, piano, and guitar in a darkened room with a \\\"TWIN JAZZ\\\" banner in the background. The musicians all take turns playing their instruments and the video ends with the saxophone player stepping forward and shaking hands with the pianist.\", \"video_name\": \"v_A20uQSBtYMs\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a woman is seen riding a horse inside a ranch while a man wearing a cowboy hat and an orange shirt observes her. There is a concrete wall surrounding the ranch, and there is a sloping hill with trees visible outside the wall. The woman is using the reins to direct the horse, and the video ends with a still image of her on the horse.\", \"video_name\": \"v_9InwA-ajB2M\"}, {\"Q\": \"What are the different types of dance moves shown in the video?\", \"A\": \"The video shows breakdancing moves such as the backspin and moonwalk. There are also clips of various kids dancing while others watched.\", \"video_name\": \"v_2nDbYhgdw2A\"}, {\"Q\": \"What happens in the video with the person and the diving board?\", \"A\": \"The video shows a person jumping up and down from a diving board in a swimming pool. After a few jumps on the diving board, the person jumps high and performs a reverse somersault dive into the pool. The pool is dimly lit and lane ropes can be seen through the breadth of the pool some distance from the diver.\", \"video_name\": \"v_eRco7yXc-40\"}, {\"Q\": \"Can you describe the training drill shown in the video?\", \"A\": \"The video features a basketball training drill where three players run across the court while the one in the middle dribbles the ball all the way and shoots the ball in the basket. The players then turn back, while a different player among the three, wearing a white uniform, collects the ball and runs back to the other side of the court with the others while dribbling the ball. Once they reach the basket, the girl with the basketball attempts to shoot the ball into the basket, while the other two turn around to block her. This is done repeatedly with multiple groups of players throughout the video.\", \"video_name\": \"v_IGZvj1J9tNc\"}, {\"Q\": \"Can you describe the scene in the bathroom portrayed in the video?\", \"A\": \"In the video, a woman is standing in a bathroom in front of the mirror, washing a piece of cloth in the sink filled with dirty water. There are toiletries and a bottle of dish soap on the shelf in front of the mirror, and the bathroom walls are lined with white tiles. The woman is wearing a blue top and looks into the camera to speak to the cameraman.\", \"video_name\": \"v_49PbyLbrxlE\"}, {\"Q\": \"What is happening in the video and how does it end?\", \"A\": \"The video shows a girl doing backflips on a foam platform while another girl watches. The platform is indoors and well-lit from above. The video ends with the girl successfully landing her backflips. There is also a cartoon sloth poster visible on the far wall.\", \"video_name\": \"v_4QRRxub6L5Q\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video showcases three girls making a salad in their kitchen. They add various ingredients to the salad and finish it off with oil, salt, and peanuts before holding up the finished plate to the camera.\", \"video_name\": \"v_0DFz3sgfda0\"}, {\"Q\": \"What is shown in the video?\", \"A\": \"The video shows a person lighting a fire in a backyard using kindling and arranging wood on the ground. Then, they light a few more pieces of kindling and place it on the firewood to help it light faster.\", \"video_name\": \"v_cCDffwsJvsY\"}, {\"Q\": \"What activities were the teenagers engaged with in the video?\", \"A\": \"In the video, the teenagers were seen playing basketball in a playground with other people. One of the boys was shown hopping through a hopscotch court that was drawn on the basketball court, followed by two other teens. Later, two of the boys attempted to do a pull-up from the basketball hoop by jumping and pulling themselves once from the basket before running a few feet away from it.\", \"video_name\": \"v_11p9goB2rm8\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"In the video, the woman is polishing a coffee table using wood polish and a towel. She later explains how to fix cracks in the table.\", \"video_name\": \"v_4Gx_8vuxzAk\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, two men are seen speaking in a well-lit kitchen, leaning on the counter. One of them is wearing a black suit and the other is Will Smith, the actor in a multi-colored shirt. They are standing in front of steel door ovens and a shelf with wine glasses behind them. Will Smith takes out his sunglasses and starts playing the harmonica while singing in between. The video ends with Will Smith stopping playing and looking to his right.\", \"video_name\": \"v_HMs703DhjQU\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a clip of a volleyball game between two teams. The team wearing the yellow uniform starts the game and hits the ball back and forth a few times with the team wearing the orange uniform. The team wearing orange gets the ball after a spectacular dive and hits it to the other side, causing the team wearing yellow to miss the ball and lose the exchange. The last play is replayed a few times before the teams get back into positions again.\", \"video_name\": \"v_Jy93pLzV2uw\"}, {\"Q\": \"What happens in the video about making cocktails?\", \"A\": \"The video demonstrates a bartender making a cocktail by mixing various kinds of alcohol with flavoring agents, stirring it with ice, and pouring it into a cocktail glass. The video also shows the ingredients used for the cocktail and the bartender wiping the bar at the end.\", \"video_name\": \"v_6wPVO7I8iIY\"}, {\"Q\": \"What is shown in the video?\", \"A\": \"The video shows a woman wearing a neon green T-shirt and black track pants with white stripes exercising on parallel bars in a park, followed by a man doing the same on an advanced level. The video promotes strength and ends with a text displaying a website for workouts.\", \"video_name\": \"v_Fb4X1PWfOvY\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, an old man is shown repairing a bicycle in a well-lit shop. Another bicycle is parked next to the man against the wall. While he repairs the bike, a woman wearing a pink top enters the shop and they start to converse. The video ends with the two conversing and the man holding the woman by the ear.\", \"video_name\": \"v_IfugNwywj-k\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a boy is chopping wood in the woods. He swings an axe and splits the log placed on a chopping block. He then picks a fresh log and repeats the process until the video ends with him holding a thumbs-up sign to the camera.\", \"video_name\": \"v_dZsk5Dp_5FE\"}, {\"Q\": \"Can you describe the woman in the video and what she is doing?\", \"A\": \"The video starts with a woman holding a bow and shooting arrows on an indoor basketball court at a makeshift target made of sheets hung near the basketball hoop. She shoots arrows one after another until her quiver is empty.\", \"video_name\": \"v_AL1W3HkjJ2Y\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a man playing the harmonica in a parking lot while another man records him on his phone. The harmonica player changes songs and greets someone walking behind him at the end.\", \"video_name\": \"v_j_1kNiGcepU\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"In the video, the woman is applying makeup, starting with a cream and then moving on to eyeliner, lipstick, contours, highlight, and blush. She finishes by looking at herself in a mirror.\", \"video_name\": \"v_le7JdKQB65I\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, we can see a man in athletic clothes standing in a net and holding a disk in his right hand. He spins a few times and then throws the disk from the open end of the net towards a direction where he looks. People outside the net and on the bleachers applaude him.\", \"video_name\": \"v_-6dz6tBH77I\"}, {\"Q\": \"Can you describe the physical appearance of the squash court and the players?\", \"A\": \"The squash court is well-lit with a wooden floor. One player wears a black shirt and the other wears a yellow T-shirt.\", \"video_name\": \"v_BnO8AfQS8yE\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, a man pours water from a bucket on a dog who shakes the water dry. There are also close-up shots of the dog's face throughout the video.\", \"video_name\": \"v_CvbBSwz-9XI\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a man is seen riding a dirt bike in a dirt field during the daytime. He attempts to jump over a slight elevation, but lands with his front wheel first and crashes. In the end, the man can be seen struggling to get up.\", \"video_name\": \"v_-cAcA8dO7kA\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a woman is washing dishes in a well-lit kitchen with a window behind her. She scrubs a few dishes with a scrubber and places them on the shelf next to the sink. In the end, she turns to the camera and yells after cleaning the dishes.\", \"video_name\": \"v_9snScUyE8_4\"}, {\"Q\": \"What are the different scenes shown in the video?\", \"A\": \"The video starts with a man washing his hands, then shows people crossing a street, followed by a person welding in a dimly lit workshop, a monster truck splashing mud on a mud track, and a scene with cars moving through traffic.\", \"video_name\": \"v_96ADEnJy4GU\"}, {\"Q\": \"What actions does the man take in the video?\", \"A\": \"The man in the video starts by lighting a firewood stack in the woods using a knife and fire starter. He then celebrates as the fire grows.\", \"video_name\": \"v_-D1gdv_gQyw\"}, {\"Q\": \"What is the video about and what happens in it?\", \"A\": \"The video features a girl wearing glasses and a grey shirt seated in a room holding a harmonica. She begins to play the harmonica while swaying back and forth to the music and continues playing for several minutes until the end of the video.\", \"video_name\": \"v__a527xEzhkw\"}, {\"Q\": \"What is happening in the video of water polo?\", \"A\": \"The video shows a game of water polo being played in a swimming pool. Players are seen passing the ball, scoring goals, and swimming to fight for the ball while others watch from the poolside. Two games of water polo are being played on either end of the pool.\", \"video_name\": \"v_cH3H-arDsH4\"}, {\"Q\": \"Can you give a brief overview of what happens in the video?\", \"A\": \"In the video, we see people sitting on white chairs on a lawn while watching a polo match going on in a polo field. There are two teams, one wearing a white polo shirt and the other wearing a red polo shirt, and the players are riding their horses and hitting the ball with mallets. Cameramen with cameras on tripods stand in front of the spectators and there is a building with a sloping roof in the back. Trees line the end of the field.\", \"video_name\": \"v_hvhny4-sI-w\"}, {\"Q\": \"Can you describe the scene and action in the video?\", \"A\": \"The video shows a woman standing in a red vest inside a net with a hammer attached to a string. She swings and spins with the hammer before releasing it through the open end of the netting. There is a red mat on the ground and trees visible on the right side at the edge of the field.\", \"video_name\": \"v_d09u-0k3LdE\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a couple is dancing outside a garage while other people stand to the side. Children are playing in the background and a man is tending to a barbecue. Another couple, with the man wearing a red jacket and cap, joins in the dancing later on.\", \"video_name\": \"v_B0GCHDqEsRU\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video is about a lacrosse game played by two teams, one wearing a blue-green jersey and the other wearing a grey jersey. Samuel Shearin, who is number 24 and wearing the blue-green jersey, is followed by the camera as he plays various positions on the field and tries to check the ball from his opponents. The game takes place in the daytime with spectators sitting near the boundary of the field and trees and shrubs dotting the outside. The video ends with Samuel chasing a player to check the ball.\", \"video_name\": \"v_aH39BSM0-Ag\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, we see a man leading a Zumba class outdoors during the daytime, with people following his lead. A crowd is gathered to watch and the class stops when the music ends.\", \"video_name\": \"v_iqhdqhVttEM\"}, {\"Q\": \"Can you describe the process of making the sandwich in the video?\", \"A\": \"In the video, a woman makes a sandwich by slicing a French roll in half and spreading pizza sauce on one side of the bread. She then adds pepperoni and cheese and bakes the sandwich in an oven. After taking it out, she adds tomato slices and shredded lettuce and puts the sandwich together.\", \"video_name\": \"v_cECycCDw1Nc\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows an instructor speaking to the camera on a basketball court while showing a drill where a boy catches a basketball and dunks it in the basket. The instructor provides the boy with feedback during the drill and comments on his performance at the end of it.\", \"video_name\": \"v_egowZOcbEkI\"}, {\"Q\": \"Can you describe the competition shown in the video?\", \"A\": \"The video shows a spear-throw competition in an outdoor stadium where athletes throw spears while running. The landing of the spears is shown with numbered lanes. The audience applauds after each successful throw and a scoreboard with names and throw distances is shown at the end.\", \"video_name\": \"v_HURRgbZGz8Q\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows two men kickboxing in a park, with one man wearing boxing gloves and the other wearing a camo gi and focus mitts. They are practicing various punches and kicks while the trainer guides them and counts the moves. There are also people walking and sitting in the background of the park.\", \"video_name\": \"v_afMQA352X_A\"}, {\"Q\": \"What are the main events described in the video?\", \"A\": \"The video shows news anchors reporting behind a glass news desk. Then, there are some cutaway clips of people shoveling snow during the daytime. The video also includes interviews with two men and a doctor, as well as a clip of a reporter standing in front of a brown building. The video ends with the news anchors finishing their reporting.\", \"video_name\": \"v_l8gg9TYh_B0\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"In the video, the man is lifting barbells of increasing weights and repeatedly dropping them on the floor. He starts with a smaller barbell, lifts it above his head, and drops it a few times. He then moves to a well-lit area with a red wall and lifts an 85-kilogram barbell over his head before dropping it. He repeats this a few times with increasing weights and finally lifts a barbell of 130 kilograms before dropping it after lifting it above his head.\", \"video_name\": \"v_Ds2O0-8Labs\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video begins with four people standing in front of cameras holding an old spice-branded ping pong paddle. They are outdoors during the day, with a ping pong table at their back. A woman wearing a black dress is photographed by multiple photographers, followed by a man in a red polo shirt joining her on the red carpet. They play a game of ping pong, ending as the woman hits the ball outside the table.\", \"video_name\": \"v_k1QAWLupB-I\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is about a paintball arena with people in fluorescent vests and camo outfits shooting paintball guns while hiding behind cable drums and stacked tires.\", \"video_name\": \"v_9UvVeUYQLgA\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a man wearing a grey vest climbing a rocky hill surrounded by trees. He is climbing free-handed and a rope is visible to his left with another man belaying it at the bottom. He reaches the top of the rock face and a woman turns the camera to herself and speaks into it.\", \"video_name\": \"v_dEpUIpmBvow\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a woman named Bethany shaving her legs in an office while talking to the cameraman. Another woman enters the office and shows some papers to Bethany. There is also a woman standing behind Bethany wearing a grey top with black pants, black shoes, and glasses. Bethany then strikes a pose while standing in the office and eventually skips out of the frame.\", \"video_name\": \"v_EZyLBq2jJtE\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows two kids playing with an elderly woman. They start playing hopscotch and the woman falls down towards the end.\", \"video_name\": \"v_2fzIi1lPd8U\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, we see bikers riding on a dirt track with trees and vegetation visible around them. They approach a jumping ramp and jump over it before moving to the next one, with one rider jumping on the right and the other on the left. They then turn left after clearing the second ramp.\", \"video_name\": \"v_C7yd6yEkxXE\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, there is a parrot seen eating cream from a coffee cup. The coffee cup has a pink color and a butterfly painted on it. The wall behind the parrot is white and tiled. The birdcage can also be seen behind the wall. The video ends with the parrot still eating cream from the coffee cup.\", \"video_name\": \"v_IN23CO8Kotk\"}, {\"Q\": \"What does the video show about the women and the tattoo parlor?\", \"A\": \"The video follows two women as they enter a tattoo parlor. One woman gets a stencil on her wrist from the tattoo artist, who is wearing a white t-shirt and glasses. The tattoo artist cleans the area to tattoo and starts tattooing the girl's wrist. Once the tattoo is done, the girl holds it up to the camera and walks out of the tattoo parlor.\", \"video_name\": \"v_BFChXuwZ4wo\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video shows a boy playing ping pong in various venues and against different opponents of different nationalities. It ends with a clip of him missing a hit against an opponent during a match.\", \"video_name\": \"v_9k19UUJtldg\"}, {\"Q\": \"What kind of movements did the boy wearing the red t-shirt do?\", \"A\": \"The boy wearing the red t-shirt started his routine by swinging on the bars and doing a handstand. He then did other artistic gymnastics movements on the parallel bars, including handstands and swinging his legs to gain momentum.\", \"video_name\": \"v_p1QGn0IzfW0\"}, {\"Q\": \"What happened after the ball bounced once on the floor?\", \"A\": \"A player at the back hit the ball to the other side and the team on the right missed their hit.\", \"video_name\": \"v_UZm05CvtxkA\"}, {\"Q\": \"What body parts are the men using to play beach volleyball in the video?\", \"A\": \"The men are only using their heads and legs to punt the ball back and forth.\", \"video_name\": \"v_oR8o_PuKS28\"}, {\"Q\": \"What do the girls do at the end of the video?\", \"A\": \"At the end of the video, the girl with the brush points her finger at the camera and her friend points her finger toward her nose.\", \"video_name\": \"v_YIq3Tar9x6s\"}, {\"Q\": \"What is the color of the athlete's jersey and shoes?\", \"A\": \"The athlete is wearing a blue and red jersey and white and red sports shoes.\", \"video_name\": \"v_U3-MtKZeUXM\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a black coat over a white shirt.\", \"video_name\": \"v_q_QR5HoROhI\"}, {\"Q\": \"What is the man carrying as he steps into the throwing circle?\", \"A\": \"The man is carrying a hammer attached to a handle through a metal string as he steps into the throwing circle.\", \"video_name\": \"v_qsEnLQ2UnEA\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a red sleeveless shirt.\", \"video_name\": \"v_ZwK52lXCbhA\"}, {\"Q\": \"What do the boxers in the video wear and what colors are their boxing gloves?\", \"A\": \"The boxer in the left corner is wearing blue shorts and blue boxing gloves while the boxer in the right corner is wearing red shorts and red boxing gloves.\", \"video_name\": \"v_Y9d4iPDeigI\"}, {\"Q\": \"What are the people doing outside the house?\", \"A\": \"The three people are outside during the day. One woman is washing clothes using a stone on the ground. Another woman wearing a white top and jeans is watching the washerwoman as she washes the clothes, while a girl in a dark-colored top and yellow skirt is standing behind with her hands folded.\", \"video_name\": \"v_qtKa7Lr3URA\"}, {\"Q\": \"What type of equipment are there in the gym?\", \"A\": \"There are parallel bars and other equipment in the gym.\", \"video_name\": \"v_P7Z4i1gmzjs\"}, {\"Q\": \"What activities are depicted in the video?\", \"A\": \"The video shows a man seated in a barber chair, other customers getting their hair cut, a man reclining on a chair getting his hair washed, people waiting outside the salon, a shot of a man getting his hair cut in a well-lit salon, and the video ends with the barber finishing cutting the customer's hair and holding a mirror at his back to let him look at the back of his head.\", \"video_name\": \"v_ojIhxWrBM0s\"}, {\"Q\": \"What kind of cape is the boy wearing during his haircut?\", \"A\": \"The boy is wearing a blue cape with animated characters on it.\", \"video_name\": \"v_w4pO-1-FG5w\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman is brushing a horse.\", \"video_name\": \"v_vo2M4sY0E38\"}, {\"Q\": \"What is the boy wearing and what is he doing on the armbar?\", \"A\": \"The boy is wearing a white vest and dark blue shorts. He jumps on the armbar from a white platform, swings both his legs in the air and stands on the armbar using his hands, changes his position on the armbar, and again stands on it with his hands.\", \"video_name\": \"v_WOUkPgHtt4E\"}, {\"Q\": \"What is happening in the beginning of the video with the yellow background?\", \"A\": \"At the beginning of the video, some text appears on the screen with a yellow background.\", \"video_name\": \"v_RjztFj0Zl40\"}, {\"Q\": \"What is the man wearing while playing the saxophone in the video?\", \"A\": \"The man is wearing a black coat, black pants with a white shirt, and black shoes. He also has a mic attached to his right ear.\", \"video_name\": \"v_tSNg5rvDvVc\"}, {\"Q\": \"What are the clothes worn by one of the weightlifters?\", \"A\": \"One of the weightlifters is wearing a grey T-shirt, black, and red shorts, and white sports shoes. Another weightlifter behind him is wearing a grey T-shirt, black shorts, and white sports shoes.\", \"video_name\": \"v_Y16uL6dYDzQ\"}, {\"Q\": \"What is the man wearing and what is he doing?\", \"A\": \"The man is wearing a black polo shirt and cargo pants, and he is mowing the lawn in a yard during the daytime.\", \"video_name\": \"v_wiaZCl-poRw\"}, {\"Q\": \"What do the five children on the stage do when they play certain parts of the music?\", \"A\": \"The children turn left and right when they are playing certain parts of the music.\", \"video_name\": \"v_qqZLs6j3YII\"}, {\"Q\": \"What tools is the man using to polish the shoes in the video?\", \"A\": \"The man is using a brush and a cloth to polish the shoes.\", \"video_name\": \"v_IRBrTKrVCxo\"}, {\"Q\": \"What clothes are the men wearing in the video?\", \"A\": \"One man is wearing a white T-shirt with grey capris while the other is wearing a yellow T-shirt and black jeans with a yellow and black cap.\", \"video_name\": \"v_xS5JDBeMxOs\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows kids playing in a grassy field, throwing and kicking a ball to each other while someone catches the ball and bumps it into another kid. This happens throughout the entire video.\", \"video_name\": \"v_-uJnucdW6DY\"}, {\"Q\": \"What are the women doing in the video?\", \"A\": \"The women in the video are wrapping gifts and putting gift cards in them.\", \"video_name\": \"v_PzJsoZT2hXk\"}, {\"Q\": \"What are the barbershop employees wearing?\", \"A\": \"The woman giving a haircut is wearing a white coat, grey top, black trousers, and a white mask. All the customers are wearing a white cloth cape. \", \"video_name\": \"v_YAMhMB1jdio\"}, {\"Q\": \"What is the news reporter wearing during the cricket match introduction?\", \"A\": \"The news reporter is wearing a dark grey coat during the cricket match introduction.\", \"video_name\": \"v_EWNqkVaOfbE\"}, {\"Q\": \"What are the players wearing in the video?\", \"A\": \"The players are wearing T-shirts and shorts with squash racquets. Three of them are wearing a cap turned backward.\", \"video_name\": \"v_Pjnuoa4o55c\"}, {\"Q\": \"What is the man wearing and how is he positioned on the parallel bars?\", \"A\": \"The man is wearing a blue shirt and khaki shorts while swinging upside down from the bottom of the parallel bars. He is positioned in such a way that he is swinging back and forth, and he then rights himself and goes back to his previous position.\", \"video_name\": \"v_QOsG3BeQeX0\"}, {\"Q\": \"What is the man wearing and what is he holding?\", \"A\": \"The man is wearing a blue shirt and jeans and is holding an axe in his left hand.\", \"video_name\": \"v_zxpQHLwZCug\"}, {\"Q\": \"What is the man wearing and what do they do in the video?\", \"A\": \"The man is wearing a white shirt and black trousers. In the video, he walks over to the woman in the middle of the dance floor and they begin to slow dance.\", \"video_name\": \"v_uvglcAUnQv0\"}, {\"Q\": \"What does the label on the bottle of clear liquid say?\", \"A\": \"The label on the bottle of clear liquid says \\\"JASON MARKK\\\".\", \"video_name\": \"v_T7YcO-sOLuU\"}, {\"Q\": \"What is the man wearing and what is he holding?\", \"A\": \"The man is wearing a white sleeveless shirt and tights, and he is holding a discus in his hands.\", \"video_name\": \"v_OkvWTZ4XLyM\"}, {\"Q\": \"What drill are the players practicing on the court?\", \"A\": \"The players are practicing a drill where they take the ball and dunk it into the hoop with a spin.\", \"video_name\": \"v_sPK-sbHIb3w\"}, {\"Q\": \"What is the woman wearing in the video?\", \"A\": \"The woman is wearing a white top.\", \"video_name\": \"v_TEgPIueNqTI\"}, {\"Q\": \"What is the woman wearing?\", \"A\": \"The woman is wearing a black top.\", \"video_name\": \"v_zTHkqpNFGno\"}, {\"Q\": \"Where does the video take place and what is the weather condition?\", \"A\": \"The video takes place outside during the day in a snow-covered area.\", \"video_name\": \"v_vska7f8Zm9s\"}, {\"Q\": \"What kind of harness is the man wearing?\", \"A\": \"The man is wearing a harness on his white shirt.\", \"video_name\": \"v_SV3v-nA6hXM\"}, {\"Q\": \"What style of dancing are the girls doing in the video?\", \"A\": \"The girls are doing Spanish-style partner dancing.\", \"video_name\": \"v_w46wkDledek\"}, {\"Q\": \"What is the man wearing and what is he doing in the video?\", \"A\": \"The man is wearing a blue jacket and jeans and he is playing the guitar and singing while sitting on the ground next to a lawn during the daytime. He also has an empty can next to him and between his legs. He plays the guitar until he finishes his song.\", \"video_name\": \"v_TB5AeIdAndA\"}, {\"Q\": \"What types of footage are shown in the montage?\", \"A\": \"The montage shows footage of people crossing the street, a person welding in a dimly lit workshop, a monster truck driving through a muddy track, and cars driving through traffic during the day.\", \"video_name\": \"v_sbnF7VVeopM\"}, {\"Q\": \"What is the gender composition of the team on the near side of the basketball court?\", \"A\": \"The team on the near side of the basketball court has both girls and boys.\", \"video_name\": \"v_OESjoURo19U\"}, {\"Q\": \"What does the woman in the video demonstrate?\", \"A\": \"The woman demonstrates how to wash her hands effectively using soap.\", \"video_name\": \"v_SLHPvKh-_x8\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man wearing a kilt is playing the bagpipe on a sidewalk during daytime. A person wearing a black hoodie and holding a little child is kneeling a few meters in front of the bagpipe player. People are walking past in front of the camera. People stop by in front of the musician to drop some change in front of him.\", \"video_name\": \"v_ypfWA4aDL6k\"}, {\"Q\": \"What is the man wearing and what does he do in the video?\", \"A\": \"The man is wearing a teal T-shirt and black shorts. He walks into a throwing circle and starts his discus throw. After the throw, he walks towards the camera and claps his hands.\", \"video_name\": \"v_rpjxjU-mLiw\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"The video starts with a toddler in a diaper standing on the sink, in front of the bathroom mirror bruising his teeth. A woman wearing a white shirt is standing behind them and to his right helping him. They are in a well-lit bathroom. The woman is teaching the toddler how to brush.\", \"video_name\": \"v_sk_pnoqXxhs\"}, {\"Q\": \"What is the girl wearing in the beginning of the video?\", \"A\": \"The girl is wearing a maroon T-shirt, blue jeans, and red and white sneakers.\", \"video_name\": \"v_YK9BIL9fKA0\"}, {\"Q\": \"What is the man doing in the beginning of the video?\", \"A\": \"The man is standing in front of a pegboard with some tools hung from it and displaying \\\"Calvin's Corner\\\" under his image.\", \"video_name\": \"v_GvMep9y7d7c\"}, {\"Q\": \"What are the judges doing in the video?\", \"A\": \"The judges are seated some distance to the right of the balance beam.\", \"video_name\": \"v_ZSdnDVGXU3k\"}, {\"Q\": \"What is the man wearing in the breakdancing performance and what is the color of the hallway floor?\", \"A\": \"The man is wearing a black T-shirt, black pants, and black and white sneakers. The hallway floor has blue and red colors.\", \"video_name\": \"v_u3XOLSC7lg0\"}, {\"Q\": \"Who is shown scoring a goal in slow motion?\", \"A\": \"The person in the white cap identified as Justin Harrison is shown scoring a goal in slow motion.\", \"video_name\": \"v_skk-nX55gvA\"}, {\"Q\": \"What is the gymnast wearing?\", \"A\": \"The gymnast is wearing blue track pants and a white vest with blue and red stripes.\", \"video_name\": \"v_fh21bbDSVmA\"}, {\"Q\": \"What is placed behind the sofa in the news studio?\", \"A\": \"A TV screen with the word \\\"Daybreak\\\" is placed behind the sofa.\", \"video_name\": \"v_wCexKIuAj3A\"}, {\"Q\": \"What type of shoes is the man cleaning in the video?\", \"A\": \"The man in the video is cleaning red suede shoes and dark blue high-heeled suede shoes using a suede block and suede brush.\", \"video_name\": \"v_tF8Nv-QxbIU\"}, {\"Q\": \"What type of nail art is the woman doing in the video?\", \"A\": \"The woman in the video is doing a combination of pink nail polish with black blocks and two black rhinestones on the ring finger.\", \"video_name\": \"v_vAHR3iJhBXU\"}, {\"Q\": \"What is the little girl wearing while playing the violin in the video?\", \"A\": \"The little girl is wearing a pink outfit and a pink headdress while playing the violin in front of a tree by the shore of a lake during the daytime.\", \"video_name\": \"v_tC5eMgePakk\"}, {\"Q\": \"What is the woman doing in the beginning of the video?\", \"A\": \"The woman is sitting next to a toilet bowl and shaving her legs.\", \"video_name\": \"v_UtV69uNmzlE\"}, {\"Q\": \"Who walks behind the man and gives him a haircut?\", \"A\": \"A woman wearing a hoodie walks behind the man and starts to give him a haircut.\", \"video_name\": \"v_vMcXLYBcHsM\"}, {\"Q\": \"What color is the gymnastics uniform of the little boy at the beginning of the video?\", \"A\": \"The little boy at the beginning of the video is wearing a maroon gymnastics uniform.\", \"video_name\": \"v_u7THn6D6y5w\"}, {\"Q\": \"What is the boy wearing while playing the bagpipes in the video?\", \"A\": \"The boy is wearing a white shirt, a sleeveless black sweater, and brown pants.\", \"video_name\": \"v_yggwFa68Cp4\"}, {\"Q\": \"What is the woman wearing in the video?\", \"A\": \"The woman is wearing a pink top and black shorts.\", \"video_name\": \"v_PwTwGnAVFhQ\"}, {\"Q\": \"What tools does Jonas use to create the painting?\", \"A\": \"Jonas uses a palette knife to spread paint from a bottle on the canvas.\", \"video_name\": \"v_QT4d1nTQYSE\"}, {\"Q\": \"What is the girl wearing and what is on her study table?\", \"A\": \"The girl is wearing a black T-shirt and a pink full-sleeve top. There is a photo, some books, and a stuffed toy on her study table.\", \"video_name\": \"v_Xmp_twSbkAg\"}, {\"Q\": \"What safety precautions are being taken during the woman's climb?\", \"A\": \"The woman is anchoring her rope as she climbs up, and another person is belaying the rope at the bottom to ensure her safety.\", \"video_name\": \"v_zDdD_qA86rg\"}, {\"Q\": \"What is the woman wearing while shaving the leg?\", \"A\": \"The woman is wearing a yellow T-shirt and multi-colored pajamas.\", \"video_name\": \"v_tt-uDaZQWWc\"}, {\"Q\": \"What object does the woman sneeze into?\", \"A\": \"The woman sneezes into a tissue.\", \"video_name\": \"v_r6l4mxphtX0\"}, {\"Q\": \"What does the man use to bathe the dog?\", \"A\": \"The man uses a handheld showerhead to bathe the dog.\", \"video_name\": \"v_Oskk7eLgerM\"}, {\"Q\": \"What is the man wearing and what is he doing in the cafe?\", \"A\": \"The man is wearing a white dress shirt and black trousers. He is drinking from a cup and dancing in the cafe.\", \"video_name\": \"v_T35cHr4pjkc\"}, {\"Q\": \"What color is the outfit worn by the athlete preparing for a long jump?\", \"A\": \"The athlete is wearing a red outfit.\", \"video_name\": \"v_Pr5K2Jh2X94\"}, {\"Q\": \"What is the gymnast wearing at the beginning of the video?\", \"A\": \"The gymnast is wearing a white vest and red pants.\", \"video_name\": \"v_YU-dUWGOoD4\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is cleaning a closed window with a cloth and spray bottle while speaking to the camera.\", \"video_name\": \"v_zRqJZ0u6f88\"}, {\"Q\": \"What is the girl doing in the video?\", \"A\": \"The girl is participating in a discus throwing competition.\", \"video_name\": \"v_QY3q4DuiGq8\"}, {\"Q\": \"What is the attire of the instructor teaching squash?\", \"A\": \"The instructor is wearing a white T-shirt, white shorts, and blue sports shoes.\", \"video_name\": \"v_X9Y-b-SbkIU\"}, {\"Q\": \"What interrupted the violinist during his performance in the video?\", \"A\": \"The man was interrupted during his performance, although it is not specified what caused the interruption.\", \"video_name\": \"v_uub0z8wJfhU\"}, {\"Q\": \"What is the woman wearing in the video?\", \"A\": \"The woman in the video is wearing a dark blue printed top.\", \"video_name\": \"v_X5kj4fZ38rc\"}, {\"Q\": \"What makeup does the woman apply first?\", \"A\": \"The woman applies black makeup on her eyebrows first.\", \"video_name\": \"v_rGOOlcdpfLg\"}, {\"Q\": \"What is the bartender wearing in the video?\", \"A\": \"The bartender is wearing a dark grey sleeveless coat, a white shirt, and a black tie.\", \"video_name\": \"v_fMVuGUBs2cs\"}, {\"Q\": \"What are the two boys doing in the video?\", \"A\": \"The two boys are demonstrating martial arts movements and then bowing.\", \"video_name\": \"v_PSB1nM3QXxg\"}, {\"Q\": \"Who gets hit by the ball in the video?\", \"A\": \"One of the boys playing in the racquetball court gets hit by the ball. He goes down and lies on the ground with his hand on his head.\", \"video_name\": \"v_TKgU9QJXw2w\"}, {\"Q\": \"What did the girl do after swinging from the high bar?\", \"A\": \"After swinging from the high bar, the girl swung onto a smaller high bar next to it, stood on it and jumped back to the bigger high bar. She swung from it a few more times and landed on the mat.\", \"video_name\": \"v_WAvz9zHwWo4\"}, {\"Q\": \"What happens when the bright light on the stage transitions into red light?\", \"A\": \"A man is seen on the stage with a guitar and a man is running on the stage.\", \"video_name\": \"v_uIcMgjypbqk\"}, {\"Q\": \"What is the girl wearing in the video?\", \"A\": \"The girl is wearing a white top and black shorts in the video.\", \"video_name\": \"v_vaV6_bxiTLI\"}, {\"Q\": \"What is the girl wearing in the advertisement on the TV?\", \"A\": \"The girl in the advertisement on the TV is wearing a white outfit.\", \"video_name\": \"v_z-EPAHsmTMA\"}, {\"Q\": \"What color outfit is the boy wearing in the video?\", \"A\": \"The boy is wearing a white shirt and black pants.\", \"video_name\": \"v_pJ3sECWr5Xg\"}, {\"Q\": \"What caused the gymnast to drop to the floor in the middle of his routine?\", \"A\": \"The gymnast missed a hold and dropped to the floor.\", \"video_name\": \"v_vI-O6QWIIGU\"}, {\"Q\": \"What is being gift-wrapped in the video?\", \"A\": \"The white box on the wooden table is being gift-wrapped in the video using a peach-colored cloth.\", \"video_name\": \"v_XPiMnbCr-sc\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"A man is playing the bagpipe in a walkway. He is wearing a Scottish kilt and beret, and is standing near a light pole. There are people around, some of them watching him and taking photos. A little boy wearing a white shirt and shorts is standing next to the man. A man wearing a blue shirt and shorts is laying on the ground, taking pictures of the bagpipe player. There are a few people sitting on a bench at the far back, with a flower patch behind them. As the bagpipe player continues to play, different people come to watch him, take pictures or record him. The video ends as people are still standing in front of the musician as he has stopped playing. Moreover, a boy in a grey t-shirt and a backpack can be seen walk in front of the camera.\", \"video_name\": \"v_w_CXbraJr58\"}, {\"Q\": \"What does the man do after he finishes trimming his face and neck?\", \"A\": \"After the man finishes trimming his face and neck, he applies shaving foam to his face and uses a razor to shave his face and neck. He wipes his face with a cloth after he is done and applies aftershave to finish the process, and adjusts his hair.\", \"video_name\": \"v_ZLJ2BmBkLJg\"}, {\"Q\": \"Who serves the ball at the beginning of the video?\", \"A\": \"A man wearing a black sleeveless t-shirt and red shorts serves the ball at the beginning of the video.\", \"video_name\": \"v_Sf27WmcLb2w\"}, {\"Q\": \"What is the setting of the video?\", \"A\": \"The video is set in a well-lit studio where two newscasters are seated behind a newsdesk with two tablets and two wireless mice on it. There is a screen with the text \\\"Health News\\\" visible behind them.\", \"video_name\": \"v_vSv1qMMt4Bk\"}, {\"Q\": \"What are the window cleaners wearing in the video?\", \"A\": \"The window cleaners are wearing costumes of the Hulk and Batman.\", \"video_name\": \"v_p9lhwYsBWdc\"}, {\"Q\": \"What is the woman wearing while getting her ears pierced?\", \"A\": \"The woman is wearing a white top.\", \"video_name\": \"v_ZrSK-fisXGg\"}, {\"Q\": \"What is the man wearing who is applying the clear solution to the woman\\u2019s nails?\", \"A\": \"The man applying the solution is wearing a camouflage pattern shirt.\", \"video_name\": \"v_p07Y--q4JQw\"}, {\"Q\": \"What is the web address displayed on the digital poster at the beginning of the video and at the end?\", \"A\": \"The web address displayed on the digital poster at the beginning of the video and at the end is taichisecretmovements.com.\", \"video_name\": \"v_TsHek6oZYXU\"}, {\"Q\": \"What is the tattoo artist cleaning before starting the tattooing process?\", \"A\": \"The tattoo artist is starting to clean the area on the right side of the girl's stomach to start tattooing.\", \"video_name\": \"v_QN-4aLiDhiQ\"}, {\"Q\": \"What is the woman wearing and where is she located in the video?\", \"A\": \"The woman is wearing an orange top and blue jeans and is located in a forest with big trees holding the rope tied to the man who is rock climbing.\", \"video_name\": \"v_UGWOtDmIcns\"}, {\"Q\": \"What type of boats are seen in the video?\", \"A\": \"Several foiling catamarans with different brand names painted on them are seen in the video.\", \"video_name\": \"v_PNuJUYo3Hf8\"}, {\"Q\": \"What utilities are shown in the video alongside the Uggs?\", \"A\": \"In the video, a woman stands behind a pair of Uggs and some utilities to clean it.\", \"video_name\": \"v_TMAXjnsN0Mk\"}, {\"Q\": \"What color is the shirt of the person who runs towards the little boy?\", \"A\": \"The person who runs towards the little boy is wearing a red T-shirt.\", \"video_name\": \"v_skr8x0kUVwg\"}, {\"Q\": \"What equipment are the players wearing on the hockey rink?\", \"A\": \"The players on the hockey rink are wearing full gear including hockey sticks and gloves.\", \"video_name\": \"v_YnjITZnk6OE\"}, {\"Q\": \"What ingredients did the chef point to on the metal table?\", \"A\": \"The chef pointed to the ingredients kept in front of him on a metal table.\", \"video_name\": \"v_UNJTM62HyqQ\"}, {\"Q\": \"What does the man wear and hold at the beginning of the video?\", \"A\": \"The man wears a blue vest and black shorts and he is holding a hammer with a handle attached to a string inside a practice net.\", \"video_name\": \"v_SEVVSei-r6w\"}, {\"Q\": \"What is the woman wearing in the video?\", \"A\": \"The woman is wearing a maroon top, black trousers, and pointe shoes.\", \"video_name\": \"v_UaO7bS5Ky6M\"}, {\"Q\": \"What item is visible in the store display case?\", \"A\": \"A guitar is visible in the display case of the store.\", \"video_name\": \"v_wEehiYq9ttE\"}, {\"Q\": \"What is the little boy doing in the video?\", \"A\": \"The little boy is standing next to the woman and trying to help her by pulling clothes from the bucket.\", \"video_name\": \"v_rklYNAAaI3Y\"}, {\"Q\": \"Who is leading the workout session in the video?\", \"A\": \"The woman in the front is the instructor.\", \"video_name\": \"v_ZVjLscGMOs8\"}, {\"Q\": \"What kind of shirt is the man wearing while washing the plate?\", \"A\": \"The man is wearing a grey T-shirt while washing the plate in the kitchen.\", \"video_name\": \"v_z6pmp8TrAVo\"}, {\"Q\": \"What type of dive did the woman perform?\", \"A\": \"The woman performed a dive with a tuck and several turns into the pool.\", \"video_name\": \"v_vzUeFzhVYLg\"}, {\"Q\": \"What safety gear are the girls wearing?\", \"A\": \"Both the girls are wearing safety glasses.\", \"video_name\": \"v_wFVukrQfQhI\"}, {\"Q\": \"What is the old man wearing while peddling the exercise bike?\", \"A\": \"The old man is wearing a white T-shirt and track pants while peddling the exercise bike.\", \"video_name\": \"v_rOtmhurweqo\"}, {\"Q\": \"What do the girls in the video wear?\", \"A\": \"The girls in the video are wearing black and pink lacrosse uniforms.\", \"video_name\": \"v_RXT17X7lRoQ\"}, {\"Q\": \"What causes the man to fall off the skateboard?\", \"A\": \"The man loses his balance causing him to fall off the skateboard.\", \"video_name\": \"v_YOk1cMsyk88\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is shirtless and wearing black shorts.\", \"video_name\": \"v_qmHjHk0Hzz8\"}, {\"Q\": \"What are the colors of the t-shirts worn by the two dodgeball teams?\", \"A\": \"The team on the right is wearing blue t-shirts and the team on the left is wearing yellow t-shirts.\", \"video_name\": \"v_rc-DiL5er28\"}, {\"Q\": \"What is the color of the vest the man who won the gold medal is wearing?\", \"A\": \"The man who won the gold medal is wearing a dark blue T-shirt.\", \"video_name\": \"v_fM5egP_1DvQ\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a black polo shirt and shorts.\", \"video_name\": \"v_R_JKmGmURvA\"}, {\"Q\": \"What ingredients does the bartender use to prepare the cocktail in the video?\", \"A\": \"The bartender uses cucumber, Bombay Sapphire Gin, St. Germain liquor, lemon juice, ginger syrup, elderflower syrup, and egg whites to make the cocktail in the video.\", \"video_name\": \"v_vIQPDP8jW8A\"}, {\"Q\": \"What is the man wearing and what is he doing in the video?\", \"A\": \"The man is wearing winter weather clothing and holding a snow shovel. He speaks to the camera and demonstrates how to shovel snow by scooping a large pile of snow and throwing it to the side. He repeats this a few times and then walks over to the camera to shut it off.\", \"video_name\": \"v_-pkfcMUIEMo\"}, {\"Q\": \"What does the man do after he arranges the firewood in front of the crumpled newspapers?\", \"A\": \"He sprinkles some table salt and white pepper powder on the arrangement before lighting the paper with a lighter.\", \"video_name\": \"v_VhdidrZKuTU\"}, {\"Q\": \"What caused the man to slip during his routine?\", \"A\": \"The man loses balance in the middle of his routine and slips to the floor.\", \"video_name\": \"v_W4mJsJGa0CY\"}, {\"Q\": \"What is happening at the beginning of the video?\", \"A\": \"At the beginning of the video, a girl is sitting on a chair in a well-lit store, with jewelry and clothes on sale on racks in the back. She is wearing a black outfit and sitting next to a jewelry display while a technician wearing white gloves is marking the girl\\u2019s ear to pierce it.\", \"video_name\": \"v_TkhUtx0Eyfw\"}, {\"Q\": \"What is the boy wearing while he is dancing in the alley?\", \"A\": \"The boy is wearing a sweater over a shirt, khaki trousers, white gloves, and a white cap.\", \"video_name\": \"v_Q3ZNFGE8PZE\"}, {\"Q\": \"What kind of room are the girls in?\", \"A\": \"The girls are in a dimly lit living room with a shut window at the back.\", \"video_name\": \"v_QriYk3MKSnM\"}, {\"Q\": \"What is happening in the video and where is it taking place?\", \"A\": \"In the video, a man wearing a white and black t-shirt is in a well-lit gym with wooden walls and windows at the top allowing sunlight to come through. He is seen attempting to lift a barbell while a person in the back is lifting one too. The video ends as he walks towards the camera and speaks.\", \"video_name\": \"v_x90zpDHTpjQ\"}, {\"Q\": \"What do the athletes wear during the pole vaulting competition?\", \"A\": \"The man at the start of the video wears a vest and black shorts. An athlete later wears a blue vest and shorts, while another athlete wears an orange vest and shorts later in the video.\", \"video_name\": \"v_X4J9UBXb0FM\"}, {\"Q\": \"What is the man wearing and what is he ironing?\", \"A\": \"The man is wearing a striped blue and black t-shirt and shorts and he is ironing a blue and white Hawaiian shirt on an ironing board.\", \"video_name\": \"v_zXHyFBrj5Ag\"}, {\"Q\": \"What are the observers near the bars doing?\", \"A\": \"The observers near the bars are using binoculars to watch the athletes pole vaulting.\", \"video_name\": \"v_PwRqqR1YmPM\"}, {\"Q\": \"What is the girl doing in the beauty salon?\", \"A\": \"The girl is getting makeup applied to her face by a beautician while sitting in a well-lit beauty salon.\", \"video_name\": \"v_peiF2E05u8g\"}, {\"Q\": \"What type of gear are the motorcyclists wearing?\", \"A\": \"The motorcyclists are equipped with off-road gear and helmets riding on dirt bikes.\", \"video_name\": \"v_GChGC-VJZHs\"}, {\"Q\": \"What is the woman on the sideline wearing and what color is it?\", \"A\": \"The woman on the sideline is wearing a blue vest over a red top.\", \"video_name\": \"v_Ur_ToogEkCA\"}, {\"Q\": \"What are the people wearing in the video?\", \"A\": \"The woman is wearing a light blue T-shirt, black trousers, and a life vest. One of the men is wearing a white T-shirt, a white cap, and a life vest while the other one is wearing a sleeveless black T-shirt, a grey and black cap, and a life vest.\", \"video_name\": \"v_YAKXrBinGD4\"}, {\"Q\": \"What type of tricks does the man perform on the parallel bars?\", \"A\": \"The man performs a handstand and holds himself up using the parallel bars, followed by holding a sitting position by keeping his legs parallel to the ground. He finishes up with another handstand.\", \"video_name\": \"v_qU4GmCN2e1Y\"}, {\"Q\": \"What happens at the end of the video with the windsurfer and what is he wearing?\", \"A\": \"At the end of the video, the windsurfer falls off his board while windsurfing. He is wearing a dark blue vest and white shorts.\", \"video_name\": \"v_FqYhC6_CMfI\"}, {\"Q\": \"What is the instructor wearing?\", \"A\": \"The instructor is wearing a green top and khaki pants.\", \"video_name\": \"v_s9PkkDEl6aY\"}, {\"Q\": \"What is the name of the breakdancing move the man in white does on the mat?\", \"A\": \"The man in white does a breakdancing move called helicopter spin on the mat on the street.\", \"video_name\": \"v_ROrLMf0zXko\"}, {\"Q\": \"What is the man wearing and how is he positioned on the tennis court?\", \"A\": \"The man is wearing a grey sleeveless shirt and blue shorts, and he is on a tennis court during the daytime. He picks up a tennis ball from a basket, bounces it on the ground a few times, and serves it. He walks a few steps forward as he serves the ball.\", \"video_name\": \"v_W6fPv5eoXC4\"}, {\"Q\": \"What is the man doing in the beginning of the video?\", \"A\": \"The man sitting inside an antique store is speaking in the beginning of the video.\", \"video_name\": \"v_zB8knKX0W8Q\"}, {\"Q\": \"Who else enters the frame during the video?\", \"A\": \"A little girl walks into the frame on the left.\", \"video_name\": \"v_OlykXdYeQOI\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man in the video is wearing a black sweater and jeans while shoveling snow.\", \"video_name\": \"v_PdwWFueQErM\"}, {\"Q\": \"What is the woman wearing while lawn-mowing in the video?\", \"A\": \"The woman is wearing a white vest, grey trousers, and white sports shoes while lawn-mowing in the video.\", \"video_name\": \"v_TZOhIMjwEE8\"}, {\"Q\": \"What is the instructor wearing?\", \"A\": \"The instructor is wearing a grey vest, black cap, and black shorts with sports shoes.\", \"video_name\": \"v_GH0Umpw6tME\"}, {\"Q\": \"What is the man wearing in the second clip?\", \"A\": \"The man is wearing an olive T-shirt.\", \"video_name\": \"v_UvOEuhS0V3E\"}, {\"Q\": \"What is the brand shown at the end of the video?\", \"A\": \"The brand shown at the end of the video is Under Armor.\", \"video_name\": \"v_ZY0cdXr_1MA\"}, {\"Q\": \"What is the name of the beautician in the video?\", \"A\": \"The beautician in the video is introduced as \\\"Swathi Gupta\\\".\", \"video_name\": \"v_QOaPQpXemCA\"}, {\"Q\": \"What happened to the shuttlecock while the two girls were playing?\", \"A\": \"The shuttlecock was missed by both girls, and a child standing outside the court picked it up and threw it at one of the girls.\", \"video_name\": \"v_ZK4Y6nOton8\"}, {\"Q\": \"What is the color of the athlete's vest in the video?\", \"A\": \"The athlete in the video is wearing a blue vest.\", \"video_name\": \"v_uCvjzcVCtEs\"}, {\"Q\": \"What is happening to Ivan's hair in the video?\", \"A\": \"Ivan's hair is being combed by Oscar, who is standing behind him in the bedroom.\", \"video_name\": \"v_zoWqv-sIdBY\"}, {\"Q\": \"What safety gear is the man wearing and what is he standing on while windsurfing in the video?\", \"A\": \"The man is wearing a life vest and sunglasses while windsurfing on a red windsurfing board with an attached sail.\", \"video_name\": \"v_qmfZw9eEpIU\"}, {\"Q\": \"What does the girl in the blue shirt do after exiting the toilet stall?\", \"A\": \"The girl in the blue shirt walks to a brightly-lit sink and starts to wash her hands.\", \"video_name\": \"v_tLk0Y04OaCA\"}, {\"Q\": \"What type of clothing is the man in the video wearing?\", \"A\": \"The man in the video is wearing a T-shirt and black shorts while training for shotput.\", \"video_name\": \"v_VWGV8I5byKI\"}, {\"Q\": \"Who starts the game and what is he wearing?\", \"A\": \"A man in a blue t-shirt starts the game. \", \"video_name\": \"v_sNJ6_N0j9Ts\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is performing a hammer throw.\", \"video_name\": \"v_t13MQSYjlas\"}, {\"Q\": \"What is the woman wearing who can be seen walking away?\", \"A\": \"The woman is wearing a grey t-shirt.\", \"video_name\": \"v_syfyM1Pble8\"}, {\"Q\": \"What costumes are the boys wearing and what are they doing in the mall?\", \"A\": \"The boy wearing a Santa costume is carrying a huge box and the other boy is wearing an Elves costume. The boy wearing the Santa costume keeps the box on the floor and knocks the box, the other boy jumps out of the box and they two start dancing in the mall.\", \"video_name\": \"v_u0A5NIUKEQo\"}, {\"Q\": \"What types of diving maneuvers does the man perform in the video?\", \"A\": \"The man performs dives using tucks, twists, forwards dives, and other maneuvers from the diving board.\", \"video_name\": \"v_-vnSFKJNB94\"}, {\"Q\": \"What is the color of the crop top and sports shoes worn by the first athlete in the video?\", \"A\": \"The first athlete in the video is wearing a red crop top and red sports shoes.\", \"video_name\": \"v_Ws12Dt0Ny5Q\"}, {\"Q\": \"What is the athlete wearing while performing the hammer throw and where is she competing?\", \"A\": \"The athlete is wearing a red and white short vest, blue shorts, and black sports shoes while competing in a hammer throw competition in a stadium with a grassy field and stadium lights. \", \"video_name\": \"v_tY9dmG6IyPo\"}, {\"Q\": \"What is the man doing inside the woodworking shop with the steel wool and the car buffing wheel?\", \"A\": \"The man is applying wax on the surface of the table using a ball of steel wool and polishing it with a car buffing wheel. He then buffs the surface with a wet rag.\", \"video_name\": \"v_wJk3KOUAwXA\"}, {\"Q\": \"What is the technician doing with the tattoo gun?\", \"A\": \"The technician is tattooing the girl's earlobe with the tattoo gun.\", \"video_name\": \"v_wh4JNeQh9FQ\"}, {\"Q\": \"What is the man on the left wearing and doing?\", \"A\": \" The man on the left is wearing a black shirt and jeans. He is smoking a hookah and using his mobile phone.\", \"video_name\": \"v_WdJUMmy2ox8\"}, {\"Q\": \"What kind of obstacles does the girl ride the horse over in the video?\", \"A\": \"The girl leads her horse through a few obstacles, and the horse jumps over them. She leads the horse multiple times over different obstacles.\", \"video_name\": \"v_ooFuSspUuVY\"}, {\"Q\": \"What is the color of the belly dancer dress?\", \"A\": \"The belly dancer is wearing a sparkling turquoise-colored dress.\", \"video_name\": \"v_tXUssW4vT3o\"}, {\"Q\": \"What type of exercise bikes are the people in the class using?\", \"A\": \"The video does not specify what type of exercise bikes are being used by the people in the class.\", \"video_name\": \"v_TGIQtaINzCY\"}, {\"Q\": \"What is the teacher wearing in the beginning of the video and what are the students doing in the ballet studio?\", \"A\": \"In the beginning of the video, the teacher is wearing a white t-shirt and pants. The students in the ballet studio are practicing ballet while the teacher talks to them.\", \"video_name\": \"v_ZUl43hNzGjA\"}, {\"Q\": \"What does the woman wearing a sweater over a red outfit do after looking into the camera?\", \"A\": \"The woman walks to a desk with a computer in the back and sits down.\", \"video_name\": \"v_sBwUwgTjhAU\"}, {\"Q\": \"What is the woman wearing and how is she positioned in the video?\", \"A\": \"The woman is wearing a grey shirt and is standing behind an ironing board in a well-lit room with a wood wall behind her. A bookcase is placed behind and to the left of the woman.\", \"video_name\": \"v_WCS8dzRT7Xk\"}, {\"Q\": \"What is the color of the court where the players are playing?\", \"A\": \"The players are playing on an orange court.\", \"video_name\": \"v_wjr5M-6qEWI\"}, {\"Q\": \"What is the color of the female gymnast\\u2019s costume?\", \"A\": \"The female gymnast is wearing a sparkling red gymnast costume.\", \"video_name\": \"v_GOF5guH_kuI\"}, {\"Q\": \"What are the members of the group doing in the video?\", \"A\": \"The group is performing cheerleading dance steps and lifts throughout the video, doing flips and cartwheels. Some of the group members also clap and do backflips. One of the boys falls after doing a backflip.\", \"video_name\": \"v_uqwf903l5-E\"}, {\"Q\": \"What is the color of the life vest worn by the man rowing the kayak?\", \"A\": \"The man is wearing a red life vest over a black shirt.\", \"video_name\": \"v_zxr6UZKPDh4\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman is belly dancing.\", \"video_name\": \"v_SNJgJB2PGdI\"}, {\"Q\": \"What is the sequence of events that the boy plays the violin in different locations?\", \"A\": \"The boy wearing a white t-shirt and glasses starts playing the violin with text on a black screen in the background. Then the video shifts to a dimly lit room where the boy is wearing a grey shirt and sunglasses and walking through the room and house as he plays. Other people join him as he walks. The clip changes again as he is shown sitting on a couch, then getting up and leaving, before returning wearing a grey shirt and sunglasses and taking selfies with a girl. Cutaways of the boy playing the violin are shown in between shots. Another boy, wearing a black t-shirt, joins the first while he is playing the violin. Finally, the video ends with the boy knocking on a door and handing a stuffed animal to a girl.\", \"video_name\": \"v_Zhx6BYVb64g\"}, {\"Q\": \"What are the different locations where the man is demonstrating various martial arts movements?\", \"A\": \"The man is seen demonstrating martial arts movements in a well-lit studio with people sitting down on the floor, on the lawn outdoors during the daytime, and in an indoor venue with people sitting on the sides.\", \"video_name\": \"v_oncTwYfvCD8\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, two women are sitting on a beach wearing yellow and pink Ford logo T-shirts, while people are seen walking around and playing cricket. In one clip, a man rolls up a carpet and lowers a box, and a woman in a yellow T-shirt and sunglasses is getting ready to bat with people around her fielding or watching. The video features a montage of cricket games being played professionally or informally at homes, beaches, and stadiums, including clips of matches played by the Australian cricket team. The video ends with a child with a cricket bat near the stumps getting ready to bat.\", \"video_name\": \"v_yttmx8mcjGw\"}, {\"Q\": \"What are the women doing in the next clip after they are shown seated in the salon?\", \"A\": \"The women are shown attaching hair rollers to their hair one at a time.\", \"video_name\": \"v_wcxEkMoOmBk\"}, {\"Q\": \"What is being taped to the gift in the video?\", \"A\": \"Currency notes of one US dollar are being taped to the gift in the video to look like gift wrapping.\", \"video_name\": \"v_zEttEkAdHts\"}, {\"Q\": \"What is the woman wearing and what is she doing with the ladles?\", \"A\": \"The woman is wearing a black hoodie and jeans skirt and she is using the ladles arranged on top of the stone dipper well to scoop out water and wash both of her hands. First, she uses the ladle with her right hand, then washes her left hand, after which, she uses her left hand to scoop out water and washes her right hand.\", \"video_name\": \"v_z3MP0yJBtGg\"}, {\"Q\": \"What is the color of the cloth on the inside?\", \"A\": \"The cloth on the inside is pink.\", \"video_name\": \"v_Omvg9UtGOes\"}, {\"Q\": \"What instrument do the five people in the orchestra play?\", \"A\": \"The five people in the orchestra play different instruments.\", \"video_name\": \"v_oni9K1_MCuw\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a woman wearing a black coat over a blue top is smoking an e-cigarette with another woman behind her watching. A man wearing a checkered shirt and glasses also smokes an e-cigarette. The video continues as a montage of different people smoking the e-cigarette is shown. A woman wearing a red outfit with a hat is standing next to most of the people.\", \"video_name\": \"v_Rn6_IwckXg4\"}, {\"Q\": \"What is the woman wearing while gift-wrapping in the video?\", \"A\": \"The woman is wearing a grey and white sweater.\", \"video_name\": \"v_TNqc2yWZztE\"}, {\"Q\": \"What is the man wearing and what is he doing in the video?\", \"A\": \"The man is wearing blue shorts and he is vacuuming the dust off the floor.\", \"video_name\": \"v_UNXLfqkwKFc\"}, {\"Q\": \"What is the visual appearance of the man that enters the shop with his dog in a harness?\", \"A\": \"The man who enters the shop with his dog in a harness is wearing a brown jacket and jeans.\", \"video_name\": \"v_W9H2qVnIWXs\"}, {\"Q\": \"What equipment is the man wearing?\", \"A\": \"The man is wearing a red t-shirt, a belt with a chalk pouch, and rappelling down with a rope.\", \"video_name\": \"v_ZxPF3s_OLDo\"}, {\"Q\": \"Can you describe the detailed sequence of events in the video with parallel bars and gymnastics movements?\", \"A\": \"In the video, we see two boys dressed in red and black t-shirts, respectively. The boy in the red t-shirt is standing on an elevated platform at the end of parallel bars, while the boy in the black t-shirt is standing next to him. The gym is well-lit and we can see other equipment such as a high bar and still rings. People are visible walking around and using other equipment. Behind the boy in the red t-shirt, there is a glass door. As the boy starts his routine, he swings on the bars and performs a handstand. He then goes on to do other artistic gymnastics movements on the bars, including more handstands and leg swings to gain momentum. Overall, the video captures the impressive and skilled athletic movements of the gymnasts on the parallel bars.\", \"video_name\": \"v_p1QGn0IzfW0\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins on a well-lit, indoor volleyball court, with two teams in the middle of a game. There are spectators sitting near the back where a stage covered in drapes can be seen. As the game progresses, the team on the left almost misses a hit, but a player at the back manages to hit the ball to the other side, causing the team on the right to miss their hit. The team on the left wins the exchange and the spectators can be seen celebrating. Overall, the video captures a dramatic volleyball game with spectators cheering on their favorite teams.\", \"video_name\": \"v_UZm05CvtxkA\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video depicts a scene of beach volleyball with four men playing over the net using only their heads and legs to punt the ball back and forth. The players are positioned near the shores during the daytime. One man is standing near the right pole while trees can be seen in the far back. The sea is also visible with a few boats sailing. There is a lawn to the left of the players.\", \"video_name\": \"v_oR8o_PuKS28\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts in a dimly lit room with green walls, where a girl is combing her friend's hair, who is wearing a black sweatshirt, while the girl combing is wearing a black sweatshirt, white top, and blue jeans. In the room, there is a bed with multicolored bedsheets and a white couch to their right. While the girl is combing her friend's hair with a brush, someone takes a photo, and the friend covers her face with both palms. They pose for the camera by doing a thumbs-up gesture, hugging, and giving flying kisses. Soon after, the girl continues combing her friend's hair. The video ends with the girl with the brush pointing her finger at the camera, and her friend pointing her finger toward her nose.\", \"video_name\": \"v_YIq3Tar9x6s\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a male athlete wearing a blue and red jersey and white and red sports shoes is seen preparing to perform a hammer throw. He is surrounded by a green net tied to silver poles, walking towards the center of the ground. Buildings and trees can be seen outside the ground and some people are standing on the left side of the athlete. The athlete starts by swinging the hammer using both his hands and then rotates his entire body to throw the hammer in the air. The video ends with him throwing the hammer and walking out of the throwing circle.\", \"video_name\": \"v_U3-MtKZeUXM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man wearing a black coat over a white shirt is seen sitting behind a desk with various nail paints in a well-lit room. The video starts with a web address and the text \\\"Mosaic Nail.\\\" He is shown painting the index finger nail of a woman with black ink using a small brush and then placing her fingers under a curing lamp for drying. Later, the man begins to apply glitter of different colors on the black-painted nail and seals the glitter with instant seal, curing the paint under a curing lamp. In the end, he applies cuticle oil around the nail.\", \"video_name\": \"v_q_QR5HoROhI\"}, {\"Q\": \"Could you describe the video in detail?\", \"A\": \"The video starts off by showing a man wearing a white T-shirt and shorts stepping into a throwing circle on a concrete patch of a field surrounded by a practice net. On the left, there is an open field while on the right, there is a white building with a blue roof situated behind the practice net. The man is carrying a hammer attached to a handle through a metal string as he steps into the throwing circle, facing away from the camera. He swings the hammer a few times, spins in place, and then turns around to throw the hammer. The video ends as the man watches the thrown hammer and walks towards the camera.\", \"video_name\": \"v_qsEnLQ2UnEA\"}, {\"Q\": \"Can you describe what is happening in the video in detail?\", \"A\": \"In the video, we see a man in a well-lit tattoo studio with white walls decorated with framed art. He is wearing a red, sleeveless shirt and is sitting in a chair while a tattoo artist, wearing a black t-shirt and a bandana, tattoos him with a tattoo gun. The tattoo artist is wearing black gloves and is using a cloth to wipe as he tattoos. Meanwhile, the man is rapping, adding to the energetic atmosphere of the video. Behind the tattoo artist, we can see a shelf filled with bottles. The video ends before we see the completion of the tattoo, with the artist still actively working on it.\", \"video_name\": \"v_ZwK52lXCbhA\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video is of a boxing match between two boxers in a ring. The boxer in the left corner is wearing blue shorts and gloves, while the boxer in the right corner is wearing red shorts and gloves. The referee is wearing a light blue T-shirt, black pants, and black shoes. There is an audience watching the match, and cameramen standing on the edge of the ring. At the start of the match, the boxer in the left corner intimidates the other boxer, who then attempts to kick him. They then start clinching and attempting to hit each other with their knees. The boxer in the red shorts succeeds in hitting the other boxer with a kick, causing the coach of the other boxer who has been hit to step into the ring. The two continue to fight, with the boxer in the red shorts grabbing the other boxer's leg and hitting him with punches, while the other boxer defends his crotch. The video ends with the boxer in the red shorts continuously punching the other boxer until his mouthpiece falls out of his mouth.\", \"video_name\": \"v_Y9d4iPDeigI\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video features three individuals standing outside a house with white walls, and is set during the day. One of the women is seen washing clothes using a stone on the ground, while the other woman in a white top and jeans observes her. The third individual is a girl wearing a dark-colored top and yellow skirt who stands behind with her hands folded. There are cars parked in front of the house. The washerwoman rinses and finishes washing the clothes using buckets next to her, and the woman in the white top watches her finish up.\", \"video_name\": \"v_qtKa7Lr3URA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video appears to be taken in a well-lit gym with overhead lights and foam mats laid out on the floors under equipment. It starts with a boy lifting himself up from parallel bars using one hand on each bar. He swings back and forth a few times and then drops to the ground. The video pans out to show other people in the background of the gym. Overall, the video depicts a skilled gymnast performing some parallel bar routine, supported by appropriate equipment and a well-prepared gym.\", \"video_name\": \"v_P7Z4i1gmzjs\"}, {\"Q\": \"Can you provide a detailed description of the video?\", \"A\": \"The video starts with a man seated in a barber chair, draped in a cape, who is looking through a magazine while sitting in front of a mirror in a salon with other chairs occupied by customers who are getting their hair cut. In the following clip, a man is seen reclined in a chair and getting his hair washed by a barber. Viewers also see people waiting outside the salon in the next shot. Then, a shot of a well-lit salon is shown, where a man is getting his hair cut by a barber; other customers are visible in the background getting their hair cut. The video ends as the barber finishes the customer's haircut and holds a mirror at his back for him to look at the back of his head.\", \"video_name\": \"v_ojIhxWrBM0s\"}, {\"Q\": \"Could you describe in detail what happens in the video?\", \"A\": \"In the video, we see a little boy sitting on a booster seat in a hair salon, surrounded by pictures of animated characters on a blue cape. A woman uses a trimmer attached to a vacuum to cut the boy's hair, while he sits still. A mirror reflecting overhead lights is seen behind the chair. The video ends with the woman continuing to cut the boy's hair.\", \"video_name\": \"v_w4pO-1-FG5w\"}, {\"Q\": \"Can you describe in detail what is happening in the video?\", \"A\": \"In this video, a woman wearing a black top and jeans is brushing a horse's torso and face outdoors during daytime. The horse is tied to a fence with a wooden door visible in the background along with trees. After cleaning the brush, the woman proceeds to brush the horse's tail, mane and inspects its back left hoof. She uses a hoof pick to clean the hooves. The video ends with the woman cleaning her brushes after finishing grooming the horse.\", \"video_name\": \"v_vo2M4sY0E38\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a group of children are practicing gymnastics in a well-lit gymnasium with cream color walls. The gymnasium has blue mattresses scattered all over the floor and armbars and balance beams installed. Windows are located on the left side of the children practicing, and there are some trophies kept on the edge of the window. A small wall clock is placed on the left side of the gymnasium. A boy, dressed in a white vest and dark blue shorts, is seen jumping on to the armbar from a white platform, he then swings both his legs in the air and stands on the armbar using his hands. He then changes his position on the armbar and performs the same thing again. Other children are practicing behind him, and some girls are practicing at his side. The video ends with him jumping off the armbar.\", \"video_name\": \"v_WOUkPgHtt4E\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with text appearing on a yellow background. Next, the scene cuts to a group of people standing on one side of a basketball court surrounded by a chain link fence in the daytime with parked cars next to the sidewalk. A building can be seen in the distance. The team starts a game of dodgeball with another team standing on the other side of the court. There are spectators standing outside the fence, and a few people are inside the fence taking pictures with cameras and phones. Some people are sitting on the grass behind the right team. The video continues to show the team on the left losing one player after another. The last player tries to throw a ball with each hand but ultimately gets hit in the legs and walks away. The video ends as the winning team exits the court.\", \"video_name\": \"v_RjztFj0Zl40\"}, {\"Q\": \"Can you describe what happens in the video with the man playing the saxophone?\", \"A\": \"In the video, a man wearing a black coat, black pants, and a white shirt plays the saxophone while standing in a public place with many people watching from behind. He has a mic attached to his right ear, and there are huge black speakers and illuminated stalls behind him. A big lighting banner is also visible behind him. As he plays, a man wearing a black jacket, blue jeans, and white shoes walks past his performance while carrying a white bag. The video ends with a closeup of the saxophone player's face as he raises his hand to signal the completion of his performance.\", \"video_name\": \"v_tSNg5rvDvVc\"}, {\"Q\": \"Can you describe the weightlifting competition in the video?\", \"A\": \"The video shows a weightlifting competition taking place on a grassy field with black-colored mats laid down for the weightlifters to use. The weightlifters are seen lifting big dumbbells on these mats while black buckets are placed on the right side of the mats. On the left side, there are some officials and a cameraman, while a jimmy jib camera is recording from above. The weightlifters are wearing grey and black-colored T-shirts, shorts, and white sports shoes. The video captures one weightlifter lifting the dumbbell using both hands for some time and then dropping it, while the weightlifter behind him struggles to lift the dumbbell and also drops it. The weightlifters then proceed to apply powder to their hands from the black buckets. Another attempt is made, with the weightlifter at the back failing again. Finally, the weightlifter at the front lifts the dumbbell for a while before dropping it and raising his hand for the audience, walking off the stage. Overall, the video showcases a competitive weightlifting event in an outdoor setting with various players competing against each other in lifting heavy dumbbells.\", \"video_name\": \"v_Y16uL6dYDzQ\"}, {\"Q\": \"Can you please describe what happens in the video in detail?\", \"A\": \"In the video, a man is dressed in a black polo shirt and cargo pants and is mowing a lawn during the daytime. The yard appears to be near a street with houses on the other side. Next to the yard, there is a car parked on the sidewalk. The man mows the lawn in sections, guiding the lawn mower straight and turning around to continue mowing. Throughout the video, the man consistently keeps to mowing the lawn in a grid-like pattern, without any apparent interruptions or deviations in his work.\", \"video_name\": \"v_wiaZCl-poRw\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with five children on a stage playing guitars while wearing red and white uniforms and sitting on stools. The stage is well-lit and has a purple background, and there are little mikes on stands in front of all the children. Throughout the video, the children turn left and right when they are playing certain parts of the music. The background music gets faster as the video progresses, leading to an energetic finish before the screen fades.\", \"video_name\": \"v_qqZLs6j3YII\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"The video shows an outdoor scene where a man is getting his shoes shined by another man wearing a blue shirt. The shoe shiner is using a brush to polish the black shoes, and there is a tin of polish on the ground nearby. The man getting his shoes shined has a cloth draped on his thigh while he sits on a stool. The video ends as the shoe shiner finishes polishing the shoes. Overall, it is a simple scene of a man getting his shoes shined outdoors during the daytime.\", \"video_name\": \"v_IRBrTKrVCxo\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video is shot in a public place where a group of men is sitting at a table with beers. They pull out their shoes and add beer to them, and then drink it simultaneously. The colors of their clothes are described in the video as a man in a white t-shirt and grey capris, and the other one in a yellow t-shirt, black jeans, and a yellow and black cap. The people around them are seen cheering and making videos. After drinking the beer, they raise both their hands in the air and high-five each other. The girls sitting next to them can be seen talking to the men. Towards the end of the video, the man in the white t-shirt shows some hand signs and thumps his chest.\", \"video_name\": \"v_xS5JDBeMxOs\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video shows a group of kids playing in a grassy field surrounded by a metal fence with towering light poles. The field is bordered by trees and there are cars parked outside. Throughout the video, the kids throw a ball to one another, with one child throwing the ball, another kicking it, and yet another catching it and bumping it into someone else. At one point, a kid kicks the ball far back where a girl is unable to catch it. This same pattern continues for the rest of the video. \", \"video_name\": \"v_-uJnucdW6DY\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video begins with a montage of gift wraps and gift-wrapped gifts, followed by a shot of two women standing in a well-lit room beside a gift-wrapping table. One of the women puts a gift card into a wrapped gift box, while the other starts to fold wrapping paper around a box. She completes wrapping it up, tapes it shut, and then tucks a gift card inside a fold in the wrapping. Finally, both women exchange their wrapped gifts and show them off to the camera.\", \"video_name\": \"v_PzJsoZT2hXk\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video takes place in a well-lit barbershop with white walls and a dark brown wooden door with a broom hanging on the side. A woman, wearing a white coat, grey top, black trousers, and a white mask, is giving a haircut to a customer by combing and cutting his hair with scissors. There is another customer on the left side getting a haircut from another woman, and both customers are wearing white cloth capes. Mirrors are present in front of the customers. Behind the customers, there is a whiteboard mounted on a wooden railing with some text on it. The video ends with a man giving a haircut to a customer. Overall, the video gives a clear view of barbershop activities such as hair cutting and styling.\", \"video_name\": \"v_YAMhMB1jdio\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with a news reporter wearing a dark grey coat who is talking about TACK with some papers in front of her. Then it shifts to a cricket field with huge stadium lights where a cricket match is taking place. The scene switches back to the news reporter interviewing the patron-in-chief and then cuts back to the cricket match on the field. The video then shifts to the news reporter interviewing the president of TACK who is wearing a white shirt and a black coat. Afterwards, it cuts to the reporter interviewing the Pakistani ambassador who is wearing a black coat and a light blue shirt while the news reporter is wearing a grey full-sleeve top and holding a book. There are many people in the background and a huge stadium light is also visible. The video cuts back to the cricket match on the field once again. Finally, the video ends with the news reporter wearing a grey full-sleeve top and blue T-shirt holding a mic. There are some trophies in the background on a white table and a poster behind her with two chairs visible on the left side of the screen. The news reporter ends the report.\", \"video_name\": \"v_EWNqkVaOfbE\"}, {\"Q\": \"Can you describe the actions and appearances of the players in the video?\", \"A\": \"The video opens up on a blue-walled squash court with four men dressed in T-shirts and shorts, each holding squash racquets. Three of the players have their caps turned backward. As the game begins, the players can be seen running around on the court, hitting the ball towards the wall and continuing with the game.\", \"video_name\": \"v_Pjnuoa4o55c\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man wearing a blue shirt and khaki shorts can be seen swinging back and forth, while upside down from the bottom of the parallel bars. The gymnasium where the activity takes place is well-lit with cushioned mats placed on either side of the parallel bars for safety. The man then manages to righten himself and goes back to the previous position. Overall, the video captures a cool display of body strength and balance.\", \"video_name\": \"v_QOsG3BeQeX0\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, a man wearing a blue shirt and jeans stands in a yard with plants visible in the background. A fence is visible at the back, and a tree is located behind and to the right of the man. He is holding an axe in his left hand while standing over a partially cut log. The man stops to speak before continuing to chop the log, causing pieces to fly off in different directions. Eventually, the log breaks into two pieces. In the background, a house can be seen past the fence.\", \"video_name\": \"v_zxpQHLwZCug\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a woman wearing a pink top and black skirt is standing in the middle of a well-lit dance studio, surrounded by people sitting down next to floor-to-ceiling mirrors. With her high heels, she slowly dances with a man wearing a white shirt and black trousers who walks over to her in the middle of the dance floor. The dance is captured by several people holding up their phones and recording the couple. As they sway and move around the dance floor, they are surrounded by a few people near the edge of the venue. The video ends with the couple stopping dancing and separating and the man walking away.\", \"video_name\": \"v_uvglcAUnQv0\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In this video, a man wearing a dark-colored t-shirt is seated behind a table with three different types of shoes, a glass of water, and a pack of cleaning supplies. The room is well-lit with a red wall as the background. The man is seen holding up a white shoe in one hand and a Nike shoe in another while demonstrating various sides of them. A bottle of clear liquid, labeled \\u201cJASON MARKK,\\u201d and a hand brush are placed on the table next to the shoes. The man then dips the hand brush into the glass of water and adds the liquid from the bottle. He proceeds to clean a shoe with the brush and then wipes the foam with a cloth. Finally, the man cleans all the shoes with different colors and styles and holds the pack of cleaning supplies up to the camera. Overall, the video showcases how to clean shoes using JASON MARKK cleaning products.\", \"video_name\": \"v_T7YcO-sOLuU\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"In the video, a man wearing a white sleeveless shirt and tights is seen holding a discus in his hands on a square platform located in a sunny field with hills visible in the distance. A chainlink fence runs along the length of the field to the left. The man builds momentum by spinning the discus held out in his right hand a few times before releasing it and walking towards the landing area. \", \"video_name\": \"v_OkvWTZ4XLyM\"}, {\"Q\": \"Can you describe the content of the video in detail?\", \"A\": \"The video is shot in an indoor basketball court and features players practicing a drill instructed by a coach. The video starts with a slow-motion shot of a player in a white basketball jersey dribbling a basketball and dunking it through the hoop. The next shot features a man in a grey shirt and black pants holding a basketball and speaking to the camera while a player in a black jersey stands by his side. The coach tosses the ball to the player who performs a drill where he spins and dunks the ball into the hoop. The drill is then repeated multiple times. The following scene shows more players practicing the same drill as the coach looks on and tries to block their shots. After the coach speaks, the players continue the drill. Another slow-motion clip of a player in a white jersey performing the drill is then shown. Overall, the video showcases a basketball practice session with focus on a specific drill.\", \"video_name\": \"v_sPK-sbHIb3w\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"Sure, the video depicts a woman wearing a white top sitting on a chair in a well-lit tattoo parlor with white tile floors. She is getting her right wrist tattooed by a tattoo artist who is wearing a black outfit and black nitrile gloves. The artist is using a tattoo gun dipped in ink to create the tattoo. The woman has placed her wrist on the arm of the chair that the artist is sitting in. There are other people sitting on chairs to the right side of the woman, some of them are getting tattoos as well. The video ends with the woman still getting tattooed.\", \"video_name\": \"v_TEgPIueNqTI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, we can see a woman wearing a black top and combing her hair in a well-lit room. There is a desk on her right, and the wall behind her is white. The woman is leaning forward while combing her hair and at one point, she laughs at something she reads. She then places the comb at her side and continues to lean forward. Overall, the video seems to showcase a simple act of personal grooming in a clean and well-lit environment.\", \"video_name\": \"v_zTHkqpNFGno\"}, {\"Q\": \"Can you describe the video starting from the person lighting the matchstick in detail?\", \"A\": \"The video starts with a shot of a person holding a matchbox and lighting a matchstick using the striker on the side of the box. He then holds the lit matchstick to some kindling on the ground and adds more kindling over the flame. Additionally, he adds some fresh firewood to the kindling. The person is outside, surrounded by snow, and it appears to be daytime. As the kindling catches fire, the camera pans to a dog that walks some distance away from the fire. Finally, the video ends by showing the burning kindling and the flames growing in size.\", \"video_name\": \"v_vska7f8Zm9s\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video depicts a man in a white shirt with a harness on it and a cap who is standing on a bungee jumping platform in a valley covered with trees during the daytime. He is holding a bungee cord and counting down before jumping. Afterward, a person wearing a camera jumps off the platform, and the camera pans to show people standing on the platform and looking down. Following this, a line of people looks at the camera and waves. The video also features a montage of people jumping off the bungee platform from different angles, all wearing safety harnesses. Some dive while looking forward, while others jump while standing backward. The video concludes as a woman in an orange top jumps off the platform, and the screen fades.\", \"video_name\": \"v_SV3v-nA6hXM\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins in a bright living room, where two girls are dancing Spanish-style partner dancing. One of the girls is wearing a grey hoodie and pants while the other is wearing a white and blue shirt and jeans. The room has green walls, a TV running in the back, and a draped window behind it. They continue to dance to music while one partner takes turns spinning the other. Finally, the video ends as the girl wearing the white shirt walks away from the dancing area.\", \"video_name\": \"v_w46wkDledek\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a man wearing a blue jacket and jeans sitting on the ground while playing a guitar during the daytime. He is sitting on a sidewalk next to a lawn, and there is an empty can placed next to him and between his crossed legs. While playing the guitar, he sings a song until he finishes it. Despite the lack of additional background information, the video provides a simple yet serene and calming scene of a musician showcasing his talent in a relaxed outdoor setting.\", \"video_name\": \"v_TB5AeIdAndA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with text on the screen, after which a person wearing a chef's uniform is shown in a well-lit washing area wearing rubber gloves and washing dishes over a counter. To the right of the person, a basket with plates stacked in it can be seen, while a white can is placed near the wall to their left. The person washes a plate with steel wool and uses a handheld kitchen faucet sprayer to rinse it before stacking it with the others on their right. The following clip shows a montage of stock footage such as people crossing the street during the daytime, a person in a dimly lit workshop welding something and a monster truck driving through a muddy track. The video ends with a clip of cars moving through traffic during the day.\", \"video_name\": \"v_sbnF7VVeopM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a group of kids playing dodgeball on an indoor basketball court which is well-lit by overhead lights. Three people are standing on one side of the basketball court facing the rest of the players who are throwing balls at them. The team on the near side comprises of both boys and girls, while the opposite team switches people who get hit. The game continues as people from both teams are swapped out as they get hit. Finally, both teams stop playing and walk over to the middle of the basketball court.\", \"video_name\": \"v_OESjoURo19U\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with the text 'Infection Control' displayed on a black screen, followed by a woman wearing a black top sitting in an examination room and addressing the camera. The room is well-lit, and there is an exam table next to her. The camera then shifts to the woman walking towards a sink where she demonstrates how to wash hands effectively using liquid soap dispensed from a soap dispenser located near the sink. She then turns off the tap and takes tissue paper from a tissue paper dispenser above the sink to dry her hands. Finally, as the video ends, she throws the tissue that was used in a trash can nearby. This video can serve as an aid to educate people on infection control practices.\", \"video_name\": \"v_SLHPvKh-_x8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts by showing a man playing the bagpipe wearing a kilt on a busy sidewalk during daytime. He stands in front of a lamp post and behind him, we can see vehicles moving on the street; buildings can also be seen past the street. To his front, a person wearing a black hoodie and holding a little child is kneeling. The scene is quite busy as people are walking past in front of the camera, and some of them stop by the musician to drop some change in front of him. The man continues to play the bagpipe while people pass by and the little child in the hoodie watches on. \", \"video_name\": \"v_ypfWA4aDL6k\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man wearing a teal T-shirt and black shorts can be seen walking into a throwing circle that is surrounded by a practice net. The man seems to be preparing for a discus throw as he spins a few times before throwing the discus. This occurs in an outdoor field during the daytime. While the man is preparing for his throw, a person wearing a yellow shirt can be seen jogging on the track behind the practice net. After the man successfully throws his discus, he walks towards the camera and claps his hands.\", \"video_name\": \"v_rpjxjU-mLiw\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, a woman wearing a white shirt is helping a toddler in a diaper standing on the sink in front of a well-lit bathroom mirror, to brush his teeth. The toddler continues to brush his teeth as the woman uses tissue paper to clean him. A man holding the camera is visible in the mirror wearing a black T-shirt. A brown dog, standing near the woman, looks up at the camera as the camera pans down.\", \"video_name\": \"v_sk_pnoqXxhs\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"Sure! The video starts with a girl greeting the camera while standing in front of a house wearing a maroon t-shirt, blue jeans, and red and white sneakers. The surroundings include multiple trees and a grassy field with a concrete path drawn across it, where there are several other houses in the vicinity. After recording the initial shot, she turns the camera to her friend, who is wearing a black t-shirt, blue jeans, and white shoes and waves to the camera. Next, they walk over to a hopscotch course drawn on the concrete path where her friend shows her three rocks before doing a graceful turn followed by throwing the rocks onto the course. Thereafter, they both play hopscotch by hopping on one leg and then both legs. Next, the first girl interviews her friend, who then runs off into the grassy field with the camera in hand. The first girl then takes the camera and repeats the hopscotch dance quite similarly to how her friend did. Lastly, the video ends with the first girl standing in front of a car parked on the road, speaking to the camera.\", \"video_name\": \"v_YK9BIL9fKA0\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video titled 'Calvin's Corner' begins with a man standing in front of a pegboard with tools, wearing a dark blue T-shirt, black shorts, neon-colored sports shoes, and a pair of blue & black gloves. As the camera pans out, a bicycle rolls down and hits a tree, causing it to fall down. The next shot is a close-up of the cycle's chain bearing as the same man turns the pedal. He then proceeds to insert an Allen key into the screws and tightens them. In the following shot, the same man has a huge stone and a thick tree branch in his hand. He points towards the cycle bearing and seems to be speaking. He puts one end of the tree branch on the cycle bearing and on the other end of the branch he smashes it with the stone in his hand. This action is repeated on the cycle's chain bearing to adjust it. The man picks up the cycle, adjusts the chain, and starts rolling the pedal. The video ends with a slow motion of the man rolling the cycle's pedal and some text displaying on the screen. \", \"video_name\": \"v_GvMep9y7d7c\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, we see various gymnasts performing on a balance beam in arenas filled with spectators. The video starts with a gymnast using a springboard to jump onto the balance beam. The gymnast is wearing a red outfit and is in an arena with good lighting and people sitting in the seating area. After she jumps on the balance beam, the gymnast stands on it. In the following clip, we see another gymnast wearing a red outfit getting on a balance beam. This gymnast is also in an arena filled with spectators, and there are judges seated to the right of the balance beam. The rest of the video is a montage of various gymnasts performing different gymnastics movements on the balance beams in different arenas during events. Overall, the video showcases the talent and skill of these gymnasts in performing on a balance beam, in front of a live audience.\", \"video_name\": \"v_ZSdnDVGXU3k\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts by displaying a digital poster and progresses to showcasing a man breakdancing in a well-lit hallway with blue and red floors. He is seen wearing black T-shirt, pants, and black and white sneakers while performing a variety of moves. People are shown standing on the right side of the man while he performs, and black bags are seen on his left side. He moves his legs on the floor and then does a spring jump using both his hands. Next, he lifts his body using his hands, puts his head on the floor, and rotates. After completing the performance, he can be seen laughing. The video finishes by displaying another digital poster and fading out to a white background.\", \"video_name\": \"v_u3XOLSC7lg0\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with a water polo game in a swimming pool where a person, identified as 'Justin Harrison', in a white cap throws the ball towards the goalpost, while a player in black tries to block the throw. Justin scores the goal, and a replay is shown from a different angle, from the poolside of the goal. In the next clip, a man identified as 'Coach Mark Conner' is seen speaking to a group of swimmers wearing black t-shirts and sunglasses. Justin is shown to score another goal in a different game, but this time with a blue cap on. The video ends with a group of swimmers talking by the poolside, and one of them jumps into the pool.\", \"video_name\": \"v_skk-nX55gvA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a male gymnast performing on a pommel horse in a well-lit arena with blue walls and chairs. The gymnast is wearing blue track pants and a white vest with blue and red stripes. The pommel horse is situated in the middle of the arena on a blue platform with the judges sitting a few feet away behind tables. At the beginning of his performance, the spectators cheer for the gymnast as he spins and moves along the pommel horse, performing a handstand, and concludes his performance by wishing luck to his opponent.\", \"video_name\": \"v_fh21bbDSVmA\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts in a well-lit news studio, where five people are seated on a sofa. Behind them, a TV screen displays the word \\\"Daybreak.\\\" On the white coffee table in front of them, there are coffee cups and a laptop. One of the men on the left picks up an electronic cigarette and begins speaking while holding it. The video then cuts to a bar where people are smoking e-cigarettes, with one man in a black shirt blowing smoke circles. The people in the news studio continue their conversation as the man on the left puts the e-cigarette down. The man on the right then picks up a coffee cup and takes a drink. Overall, the video features discussions regarding e-cigarettes in a news studio setting and footage of people using e-cigarettes in a bar.\", \"video_name\": \"v_wCexKIuAj3A\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, a man dressed in a green t-shirt and khaki trousers is seen standing inside a well-lit shoe maker\\u2019s shop. He is standing behind a wooden counter which has shoes on them, while shelves behind him hold various shoe repair kits. There are also a few shoe brushes on the counter. The man picks up a suede block and a suede brush and shows them to the camera, before proceeding to clean a pair of red suede shoes. He vigorously rubs them with the brush. Later, he picks up a dark blue high-heeled suede shoe and brushes it with the suede brush.\", \"video_name\": \"v_tF8Nv-QxbIU\"}, {\"Q\": \"Can you describe in detail the process of painting the nails in the video?\", \"A\": \"The video begins by showing close-up shots of a woman's painted fingernails. In the next scene, she applies a clear base coat to all her fingers before applying pink nail polish specifically to the ring finger. The next thing she does is draw black blocks randomly onto the white nail polish. She then places two black rhinestones on the pink nail to add some decoration. Lastly, she finishes off the look by applying a top coat to all the nails. The video ends with a still image showcasing the finished look.\", \"video_name\": \"v_vAHR3iJhBXU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In this video, a little girl dressed in a pink outfit and a pink headdress is seen standing in front of a tree by the shore of a lake during the daytime, holding a violin. The camera shows the reflection of trees on the calm and clear water of the lake. The girl starts to play the violin, and the music fills in the background. She plays the violin intermittently, pausing to adjust her position and readjust her grip on the instrument before resuming to play. She plays the violin throughout the video, which ends as she finishes the song, and the screen fades to black.\", \"video_name\": \"v_tC5eMgePakk\"}, {\"Q\": \"Can you describe the entire video content in detail?\", \"A\": \"The video starts with a woman sitting next to a toilet bowl in a well-lit bathroom and shaving her right leg with a razor. She looks at the cameraperson and laughs before continuing to shave her leg. The woman then dips the razor in the toilet bowl before continuing to shave her leg. The video ends with the woman still shaving her leg.\", \"video_name\": \"v_UtV69uNmzlE\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts off with a man sitting in a well-lit kitchen, wearing an orange t-shirt and glasses. Behind him is a pot on the stove with steam coming out of it. A woman wearing a hoodie walks in and starts cutting his hair with an electric trimmer. A boy in a grey sweatshirt walks in and adds something to the pot, indicating that he is cooking. The camera pans over to another man sitting on a chair near the wall, who is reading. The woman continues to give the man a haircut, while the boy uses scissors to cut hair at the top of the man\\u2019s head and then uses clippers to clip hair behind the man\\u2019s ears. After the haircut is finished, the boy takes out a box from a cabinet and shows it to the camera. The video ends with the man in the orange shirt holding up a peace sign, while the boy leaves.\", \"video_name\": \"v_vMcXLYBcHsM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"This gymnastics video features a little boy practicing in a well-lit gymnasium filled with sports equipment and blue mattresses on the floor. The boy is wearing a maroon gymnastics uniform and is working on an armbar in front of him. There are posters on the wall to his left and other children practicing around him, with some seated to his right. His coach, dressed in black T-shirt, black track pants, and black sports shoes, assists him in his exercise on the armbar. The boy places both hands on the armbar and swings his legs in the air before putting them back on the armbar. The video ends with the coach coming to the boy and waving both his hands, bringing the practice session to a close.\", \"video_name\": \"v_u7THn6D6y5w\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"The video starts with a boy standing to the side of a brown wooden door. He is dressed in a white shirt, sleeveless black sweater, and brown pants. There is a black stool behind him with a brown bag on it, and some equipment kept behind the boy to his left side. A glass table is in front of him, and there is a door behind him with glass panels and a brown cloth-like curtain covering the top half. The boy holds the bagpipes with his left hand and begins to play by blowing air into the mouthpiece and pressing the chanter using his fingers. As he plays, there is a close-up of his hands on the bagpipes. Lastly, the video ends with the boy finishing playing the bagpipes.\", \"video_name\": \"v_yggwFa68Cp4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a woman in a well-lit studio with white walls and wooden flooring. She is standing on an aerobics step and practicing stepping on and off the step. The woman is wearing a pink top and black shorts. The video ends with the woman still practicing on the step. \", \"video_name\": \"v_PwTwGnAVFhQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts in an art studio where a man named Jonas Gerard is about to begin a live painting performance. The studio is well-lit and has red and brown walls filled with paintings. There is a woman standing behind Jonas wearing an apron splattered with paint over a green top. In front of Jonas, a canvas is placed on a table. He starts the performance by pouring paint from a bottle and spreading it with a palette knife. An audience is seated a few feet away from the canvas on chairs, watching the live painting event on a large screen TV. After he finishes the painting, Jonas turns to the audience. In the next clip, the audience members walk up to the table with the canvas and admire the finished painting.\", \"video_name\": \"v_QT4d1nTQYSE\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"In the video, a girl wearing a black T-shirt and a pink full-sleeve top is seen in a well-lit room with white walls, a brown door, and a red curtain behind her. There is also a desktop on a study table behind her, with a photo, some books, and a stuffed toy on it. Stickers can be seen on the left wall behind her, along with some boards and a small blue table. The girl places her stuffed toy on the table and begins to talk. The scene then changes to her painting Ironman on a canvas, while wearing a green and white long-sleeved T-shirt. She can be seen with some paint on a white plate and she paints using a brush. Later on, she starts talking with her hands, and rubs her eyes with one hand while the other hand is on her head. The video ends with text showcasing her YouTube page, prompting to subscribe.\", \"video_name\": \"v_Xmp_twSbkAg\"}, {\"Q\": \"Can you describe in detail the events that unfold in the video?\", \"A\": \"In the video, there is a man scaling a rocky hill whilst wearing a white t-shirt and a utility belt with a rope attached to it. The video angle then switches to a woman, wearing a red and white shirt, as she climbs up the hill, anchoring her rope as she climbs. The video is shot from a top-down perspective, with another person belaying the rope at the bottom. The woman continues her climb by finding handholds and attaching her rope to anchors along the way. It is daytime during the climb. The video ends with the woman still making her way towards the top.\", \"video_name\": \"v_zDdD_qA86rg\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, a woman wearing a yellow t-shirt and multi-colored pajamas is shaving another woman's leg with a pink razor. The room is well-lit and has white walls with cream and cosmetic bottles beside her. At the end of the video, the woman getting her legs shaved shakes her hand while making a fist, and then shows her hands to the other woman.\", \"video_name\": \"v_tt-uDaZQWWc\"}, {\"Q\": \"Can you describe in detail what is happening in the video?\", \"A\": \"In the video, a woman dressed in a white outfit is sitting in front of a mirror in a dimly-lit room. She is seen applying makeup to her face and eyes after finishing applying her lipstick. Soon after, she sneezes into a tissue which she holds up to her nose as she sneezes again before wiping her nose with it. A bed placed against the wall with some pillows near the top can be seen in the bedroom environment where she is sitting.\", \"video_name\": \"v_r6l4mxphtX0\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man is shown lowering a brown dog into a bathtub. He then uses a handheld showerhead to bathe the dog and adjusts the water temperature as needed. The man applies soap from a bottle and massages the dog with his hands to make sure it is clean. Finally, he rinses off the soap using the showerhead and towels the dog dry. The video ends with a shot of the clean dog laying on a blue towel and looking at the camera.\", \"video_name\": \"v_Oskk7eLgerM\"}, {\"Q\": \"Can you describe the activities of the man in the well-lit cafe in detail?\", \"A\": \"In the video, a man is seen wearing a white dress shirt and black trousers while sitting in a well-lit cafe and drinking from a cup. The cafe has tables where people are sitting and a service counter where a server wearing an apron and a black cap is present. A fridge with bottles of drinks can be seen against the wall behind the man. In the next clip, the man is shown dancing in the cafe. Later, he can be seen holding another cup in his left hand while still drinking from one in his right hand. In the following clip, the man is dancing again with his hands at his sides and a person sitting near the counter is watching him.\", \"video_name\": \"v_T35cHr4pjkc\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, an athlete wearing a red outfit with several branding logos on his shirt is seen on an indoor track field getting ready for a long jump. The surrounding area has several people including photographers visible. As the athlete begins his run, he jumps into a sandpit and gets up, celebrating his successful jump. Onlookers nearby include observers and people coming down a set of stairs in the spectators section. A referee subsequently holds up a white flag. The athlete continues to celebrate and speak to observers before walking away. The video ends as another athlete wearing a yellow outfit walks towards the start of the track.\", \"video_name\": \"v_Pr5K2Jh2X94\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a gymnast wearing a white vest and red pants who is getting ready to compete on a pommel horse. The venue is well-lit with overhead lights and cushioned mats are positioned around the pommel horse. There are people sitting around a table a few feet from the pommel horse and people seated behind tables at the head of the venue. A balcony with spectators is visible on the left side of the venue. The gymnast places his hands on the pommel horse and starts his demonstration, rotating and spinning around the horse. He drops to the floor after he reaches the edge of the pommel horse, walks back to the pommel horse and gets on it again. He finishes his routine with a handstand and jumps to the floor. Overall, the video shows a gymnastics competition with a skilled gymnast performing a routine on the pommel horse in a well-lit venue with spectators watching from the balcony.\", \"video_name\": \"v_YU-dUWGOoD4\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, a man wearing a red shirt and trousers stands next to a closed window in a dimly lit room. He is wearing a tool belt and speaks to the camera as he gestures toward the window, through which the street is visible, including parked cars and a house across the street. He then starts to clean the window with a cloth and sprays liquid on it with a spray bottle. Throughout the video, he continues talking to the camera while holding the spray can and cloth in his hands.\", \"video_name\": \"v_zRqJZ0u6f88\"}, {\"Q\": \"Can you describe the video of the girl in blue outfit throwing a discus in a competition?\", \"A\": \"In the video, a girl dressed in a blue outfit is seen standing inside a throwing circle located within a practice net. The scene appears to be a discus throwing competition taking place during the day, with trees visible in the background behind the practice net. The girl prepares to throw by swinging her arm and then spins in place to release the discus. As soon as she throws it, she jogs away from the throwing circle. \", \"video_name\": \"v_QY3q4DuiGq8\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins with some text displayed on a background, followed by a scene in a squash court where a man and a woman are playing squash. The woman is dressed in a light green T-shirt and black shorts while the man is wearing a black sweatshirt, grey shorts, and white sports shoes. The squash court is well-lit with white walls and red stripes, with a glass panel behind the players. They hit the ball back and forth with their rackets towards the wall. The frame changes to an instructor dressed in a white T-shirt, white shorts, and blue sports shoes, teaching two men how to play. Then, the video shows the instructor teaching people how to play squash through multiple scenes, with players serving the ball and hitting it with their rackets towards the wall. The video ends with some text displayed and a web address \\\"bu.edu/fitrec.\\\"\", \"video_name\": \"v_X9Y-b-SbkIU\"}, {\"Q\": \"Can you describe the video starting with the appearance of the man and the venue?\", \"A\": \"In the video, a man wearing a black full-sleeve shirt and glasses is seen playing a violin in a well-lit venue. On the wall to the left of the man, an altar is visible, illuminated with electric candelabras. The man plays uninterrupted until he is momentarily distracted, and after a brief pause he resumes playing until he eventually stops. The video concludes as the man takes a bow and steps back.\", \"video_name\": \"v_uub0z8wJfhU\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video features a woman wearing a dark blue printed top, holding a violin, and standing in a well-lit room with white walls. There are books and photo frames behind her on her right, and a black table to her right side. In the other room, there is a dining table set and a chandelier. The background also includes a kitchen with a fridge and a microwave, along with brown wooden shelves. The woman appears to be using her fingers to control the violin strings while playing it by vibrating the bow on her shoulder. She stops playing briefly before starting again. The video ends with her stopping playing and fading to black.\", \"video_name\": \"v_X5kj4fZ38rc\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"In the video, a woman wearing a red and blue checkered shirt over a black top is seen talking to the camera while standing in a bedroom with posters on the back wall. She then proceeds to apply black makeup to her eyebrows, eye shadow, eyeliner, and some highlights to her lower eyelid. However, she pokes her eye while trying to apply the back highlights and holds her hand against it in pain. The video ends with her buttoning her shirt and holding a gun to the back of a man's head, who she had dragged in from her left.\", \"video_name\": \"v_rGOOlcdpfLg\"}, {\"Q\": \"Can you describe what happens in the video of the bartender making a Bloody Mary drink?\", \"A\": \"In the video, a bartender wearing a dark grey sleeveless coat, white shirt, and a black tie stands behind the bar counter. There are various bottles on the shelf, and some bottles and glasses are in front of him. The area has dim lighting. As he explains how to make the Bloody Mary drink, he grabs a cocktail mixer and puts it on the bar counter in front of him. He shows how to make the drink by adding ingredients to the mixer and then grabbing another mixer and adding ice to it from beneath the bar counter. He then mixed the drink using the two mixers, and strained the drink into another glass with ice. Finally, the bartended garnished the drink with an unmentioned ingredient, and the video ends with a close-up of the Bloody Mary drink with a text indicating that it was a Bloody Mary.\", \"video_name\": \"v_fMVuGUBs2cs\"}, {\"Q\": \"Can you describe the scene in the video?\", \"A\": \"In the video, we can see a group of boys wearing white martial arts uniforms and standing in a dirt field surrounded by trees. They are practicing martial arts during the day, and parked trucks are visible near the treeline. Two of the boys are standing apart from the group and are demonstrating the martial arts movements. After they finish, they turn left and bow while the rest of the students clap. Overall, the video captures a martial arts practice session in an outdoor setting with several boys participating and showcasing their skills.\", \"video_name\": \"v_PSB1nM3QXxg\"}, {\"Q\": \"Can you describe in detail the content of the video?\", \"A\": \"The video depicts a group of boys playing racquetball in a brightly lit court with white walls and a light wooden floor. One of the boys in a grey t-shirt and black pants serves the ball, which bounces off the wall towards the back where the other players join in the game. While they're playing, a boy wearing a white t-shirt and red pants accidentally hits another boy standing in front of him in the head with the ball. The boy who was hit immediately drops to the ground and stays there with his hand on his head, possibly in pain. \", \"video_name\": \"v_TKgU9QJXw2w\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video captures a gymnastics competition in a high-ceilinged gym. A girl can be seen starting the routine with a jump and a swing from a high bar. Other girls are present and watching near the mat of the high bar while other gymnasts practice on the nearby high bars. The girl performs a handstand and swings from the bar a few times before leaping onto a smaller high bar adjacent to it. From there, she jumps back to the bigger high bar and continues her routine by swinging from it and landing on the mat. \", \"video_name\": \"v_WAvz9zHwWo4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a bright light on the stage and the audience screaming. The stage is equipped with two mic stands and music systems on the edge. Smoke fills the stage as a man holding a musical instrument steps into the light. Soon after, a large white ball is thrown on stage and the man leaves the frame. The scene then transitions to a red light where another man is seen entering with a guitar, accompanied by another man running on the stage. Shortly after, a third man joins in with his guitar and begins playing on the edge of the stage while the audience cheers. The video concludes with the audience giving a round of applause and the third man walking off the stage.\", \"video_name\": \"v_uIcMgjypbqk\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a group of five people, four boys and a girl, standing on a sidewalk near trees during the daytime. One boy is seated on the sidewalk, holding a camera while the others are standing. Among them, a girl wearing a white top and black shorts can be seen hopping on the ground. She walks back to the group, and the video ends as the boy with a camera gets up from the sidewalk. \", \"video_name\": \"v_vaV6_bxiTLI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with the camera panning to a TV in a dimly lit room. An advertisement is shown with a girl wearing a white outfit smearing her face with white foam using both hands. The channel momentarily changes to show a man with a phone receiver in his ear, before returning to the girl washing her face with water. She takes her time to carefully wash off all the foam using water.\", \"video_name\": \"v_z-EPAHsmTMA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with an animated intro for a news channel and then cuts to a stage where a girl wearing a white ballet dress is kneeling. Eventually, she is joined by other ballet dancers wearing black dresses. As they dance, a boy in a white shirt and black pants enters from the right and dances around them. The girl in the white dress and the boy start holding hands as the other dancers exit the stage. In the next clip, girls in white ballet dresses are kneeling and touching their foreheads to the ground, with their hands on their backs, before beginning to dance. The video ends as the dancers finish their performance and the screen fades to black.\", \"video_name\": \"v_pJ3sECWr5Xg\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"The video shows a male gymnast wearing a blue vest and pants standing behind a beige-colored pommel horse. He places his hands on each of the handles and begins his routine, spinning his body around the pommel horse. There is a viewer wearing a red polo shirt in the background along with other spectators whose heads are visible at the bottom of the frame. In the middle of his routine, the gymnast misses a hold and falls to the floor. He proceeds to walk over to a bowl next to the pommel horse and applies chalk to his hands. A man wearing a grey sweater then walks over and speaks to him briefly. Afterwards, the gymnast returns to the pommel horse and restarts his routine, completing a few spins and a handstand before dropping back down to the ground.\", \"video_name\": \"v_vI-O6QWIIGU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with text being displayed on a black background. A white box and a peach-colored cloth are placed on a wooden table, with the box at the center of the cloth. A woman wearing a black top can be seen gift-wrapping the box with the cloth on the wooden table. First, she covers one end of the box with the cloth and then covers it with the other end while folding it neatly. She then takes the other two ends of the cloth and ties a knot. This shows a step-by-step process of wrapping a gift with a unique wrap. Finally, the video ends with a text and a website address, bobowrap.com, appearing on the screen.\", \"video_name\": \"v_XPiMnbCr-sc\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video captures a man wearing a Scottish kilt and beret, playing the bagpipe in a walkway. He stands adjacent to a light pole surrounded by people who are taking photos and watching him play. The man is outside during the daytime, accompanied by a little boy in a white shirt and shorts. A man in a blue shirt and shorts is seen lying on the ground and taking pictures of the bagpipe player. At the far back are a few people sitting on a bench positioned against a flower patch. Throughout the duration of the video, the bagpipe player continues to play as different people come and watch him, accompanied by several who take pictures or record him. At one point, the camera pans to show a boy in a grey t-shirt and backpack walking in front of it. The video concludes as people remain standing in front of the musician, although he has stopped playing.\", \"video_name\": \"v_w_CXbraJr58\"}, {\"Q\": \"Can you describe the process of the man shaving his beard and neck in detail?\", \"A\": \"The video shows a man with a beard wearing a black T-shirt in a well-lit room. He starts by using a trimmer to shave the left side of his face. He then walks to the side to get a different trimmer to shave his neck. After using it for a while, he switches back to the first trimmer to continue trimming his face and neck. Once he is done trimming, he applies shaving foam to his face and uses a razor to shave his face and neck. Finally, he wipes his face with a cloth and applies aftershave before adjusting his hair. In the background, there is a white sheet draped, adding to the aesthetic of the video.\", \"video_name\": \"v_ZLJ2BmBkLJg\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a well-lit indoor volleyball court, featuring light wood flooring, white, and grey walls. Two teams are standing on either side of the court, with a man wearing black sleeveless t-shirt and red shorts serving the ball to start the game. He then moves to stand inside the left court. The team on the right misses the hit, allowing the ball to be returned to the left side, where the same player again serves the ball. The team on the right bounces the ball amongst themselves before hitting it back to the other side, but they miss the return hit, resulting in the left side winning the exchange. The video continues to showcase both teams exchanging hits, and it ends as the players stop playing.\", \"video_name\": \"v_Sf27WmcLb2w\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video features two newscasters seated behind a newsdesk, reading the news. Behind them is a well-lit studio with a screen displaying the text 'Health News'. As they speak, the video switches to another reporter, Jocelyn Maminta, reporting outdoors at night, surrounded by parked cars as she bends down to shovel snow. In a later clip, a man is seen shoveling snow on the sidewalk during the daytime, with brick houses visible in the background. This man is then interviewed. Next, a woman wearing a black winter coat is seen shoveling snow on a driveway, also being interviewed. The reporter is then shown being taught how to use a shovel by another woman, and they have a brief conversation before the video ends.\", \"video_name\": \"v_vSv1qMMt4Bk\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with window cleaners cleaning the glass windows of a building from outside while being suspended from ropes tied to harnesses fixed to the roof. The scene then switches inside the building where children in hospital gowns and adults watch the window cleaners work as a woman speaks. A little boy wearing a hospital gown is also watching the cleaners clean the glass near the window, and a woman wearing a pink top is standing behind him. Notably, the window cleaners are dressed up as the Hulk and Batman, respectively. The next clip shows an interview with the window cleaner dressed as Batman. Lastly, the video shows the window cleaners being lowered onto the ground.\", \"video_name\": \"v_p9lhwYsBWdc\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, there is a woman wearing a white top who is seated in a well-lit store where clothes and bags are hung on racks on the back wall. On her right is a water bottle. Another woman wearing transparent gloves uses an ear-piercing gun to attach a stud to the woman's earlobe. She then moves to the other ear for piercing. Once the piercing is done, the technician secures the studs from behind the ears. The video ends with close-up shots of the pierced ears, giving a detailed view of the earrings attached to the woman's ears.\", \"video_name\": \"v_ZrSK-fisXGg\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, there is a man wearing a camouflage pattern shirt applying a clear solution to a woman's nails as other people sit around the table. Another man sitting on the table wears a black hoodie. The room is well-lit. The man applies the solution to each finger, one after the other. As the video progresses, the man continues to apply the solution on all of the woman's fingers. The video ends as the man finishes applying the nail solution and places his left hand on the table.\", \"video_name\": \"v_p07Y--q4JQw\"}, {\"Q\": \"Can you describe in detail the content of the Tai Chi video?\", \"A\": \"The video begins by showcasing a digital poster with the website 'taichisecretmovements.com', followed by an outdoor scene of a man practicing Tai Chi with his master as music plays in the background. The master wears a black Tai Chi uniform, while the other man wears white. They are in front of a white wall with a glass window and two mounted bulbs. The man in white attacks his master, who defends against his punches and subsequent attacks. The master then attacks the pupil, who defends himself with kicks. The master attacks with both a kick and a punch, which the pupil successfully defends against. The video also shows the master performing Tai Chi movements, with text on the screen accompanying him. The Tai Chi movements involve the master moving both hands forward and backward. Finally, the video ends with the master positioning both hands in front of him as the screen switches to another digital poster, again displaying the website.\", \"video_name\": \"v_TsHek6oZYXU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts at a tattoo stall located in a mall where a girl wearing a blue shirt over a light blue top is getting a star tattoo on the right side of her stomach. A tattoo artist is cleaning the area before starting the tattooing process with a henna cone. As the tattooing process begins, a little girl walks behind the chair. The girl getting the tattoo converses with people off-camera and holds up her shirt while the artist works. The tattoo artist slowly draws the star tattoo and the camera zooms in as the tattoo nears completion. Other individuals are visible in the back of the stall during this time.\", \"video_name\": \"v_QN-4aLiDhiQ\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"The video depicts a man rock climbing, wearing dark blue jeans and black & red shoes with a rope tied to his waist. He is shown climbing the rock with the support of his hands put inside the cracks of the rock walls and his legs. At one point, his fingers get stuck in the crack. Although the man almost reaches the top, he eventually falls down. The frame then changes, focusing on a woman holding the rope tied to the man. The woman is in a forest surrounded by tall trees and a few people sitting on her right side. She is wearing an orange top and blue jeans. At the end of the video, the woman holding the rope is thrown in the air as the man falls down from the top of the rock wall.\", \"video_name\": \"v_UGWOtDmIcns\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a man, who is wearing a blue wetsuit and a beanie, inside a boat picking up and speaking through a handheld radio. We then see a group of sailors preparing for a race on a foiling catamaran with red bull branding, followed by a show of several catamarans with different brand names painted on them sailing in low light and foggy weather conditions. The video then transitions to a montage of the sailors of the red bull branded catamaran working out, followed by a montage of several boats sailing fast through the water. An aerial view of the starting line of a foil racing competition where several catamarans line up is shown, with several observer boats sailing around. The race, which takes place during the day, starts and several shots from the onboard cameras of the red bull boat are shown, including aerial shots of the race. Finally, we see the team with the red bull branding catamaran winning the race.\", \"video_name\": \"v_PNuJUYo3Hf8\"}, {\"Q\": \"Can you describe the video and what it showcases in detail?\", \"A\": \"The video is an advertisement for the Uggs care kit and is shot in a well-lit room with pink walls. It starts with a textual title on a pink background and then shows a pair of brown Uggs which are to be cleaned using the kit. The frame then changes to a woman wearing a maroon top standing behind the Uggs and the cleaning utilities. As she cleans the boots, she stuffs them with tissue paper and brushes them before wetting them with a sponge and a bit of water. She then dilutes the Ugg cleaner and conditioner with water and applies this mixture to the boots using the sponge. She brushes the boots again and wears a grey top and black pants. She then sprays the Uggs protector on the boots, rolls them down, and sprays freshener inside them. Each step is accompanied by text on the screen and the video ends by showcasing the Uggs care kit along with the text 'schuh'.\", \"video_name\": \"v_TMAXjnsN0Mk\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a group of people wearing orange T-shirts standing in a line outdoors, surrounded by trees in a field. The focus then shifts to a little boy in an orange T-shirt who kicks the ball that comes towards him. Suddenly, a person wearing a red T-shirt runs towards him. Then, a little girl wearing an orange t-shirt is seen running away while kicking the ball. The girl in the red T-shirt follows her, and other people are visible throughout the field. In the background, a man with a white cap turned backward can be seen holding a camera. A girl wearing an orange T-shirt then speaks to the little girl and takes her back to the line. The video concludes with the girl in a red T-shirt throwing the ball towards the little girl and running towards her. Overall, the video captures a group of people enjoying a day out in a field, engaging in some friendly outdoor activities.\", \"video_name\": \"v_skr8x0kUVwg\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts in a hockey rink on a sunny day with players wearing full gear doing drills. In the background, there are brown buildings, with trees surrounding them. The players are running side to side, diving, and jumping through obstacles on the ground, while also holding a hockey stick in one hand and wearing hockey gloves on the other. The video provides a good view of the players doing some intense training sessions and perfecting their skills on the rink.\", \"video_name\": \"v_YnjITZnk6OE\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In this video, we see a chef wearing a white coat in a restaurant kitchen. The kitchen seems well-lit and is equipped with fridges and dishwashers behind the chef. There is also a microwave and some dishes kept on top of the dishwasher. Another man, also wearing a white coat along with a red cloth on his head, passes behind the chef. The video begins with the chef pointing towards the ingredients kept in front of him on a metal table. He then pulls out spaghetti from a packet and adds it to boiling water while stirring it with tongs. The same man again passes behind the chef. The video ends with the chef continuing to boil the spaghetti.\", \"video_name\": \"v_UNJTM62HyqQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man wearing a blue vest and black shorts is seen practicing hammer throwing during the daytime inside a practice net. The man is holding a hammer with a handle attached to a string, and he swings it a few times before spinning and throwing the hammer through the open end of the practice net. There are people visible outside the practice net in the back. The man appears to be practicing his technique, and seems to be focused on his movements and form as he goes through the motions of the hammer throw.\", \"video_name\": \"v_SEVVSei-r6w\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a woman performing ballet on a well-lit stage in an empty theatre. She is wearing a maroon top, black trousers, and pointe shoes. The stage has huge speakers mounted on both sides, and there are two galleries with speakers mounted on the edge of each gallery. A huge light flashes from the middle of the theatre, adding to the ambiance. The woman starts by standing on her toes and moving both her hands before doing twists and turns on her toes. She elegantly jumps with both her hands up and rotates her whole body while standing on one leg. She performs numerous ballet steps, always gracefully moving and twisting before ending her performance by laying on the floor.\", \"video_name\": \"v_UaO7bS5Ky6M\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a woman wearing a black T-shirt and khaki shorts, standing in front of a shop with a glass display case holding a glass of beer in her left hand. As she receives a shoe cleaning, a man is seen bending down and cleaning her shoe using a cloth. A guitar is visible in the display case behind the woman. While the man is cleaning her shoe, the woman dances to the music that can be heard in the background. The man then stands up and speaks to her before continuing to clean her shoe. He spritzes some liquid from a spray bottle onto the shoe and proceeds to clean it with a toothbrush.\", \"video_name\": \"v_wEehiYq9ttE\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, a woman is sitting on a chair washing clothes with the help of a little boy standing next to her. They are in a well-lit room with sunlight streaming through an open door on the right. The woman has a bucket filled with soaked clothes, while a green tub with water and soaked clothes are placed on a counter to her left. The woman and the boy speak to the cameraman as they continue to remove clothes from the bucket. The little boy tries to help the woman as he pulls clothes from the bucket. At one point, the woman points to the green tub and speaks to the child. The camera then focuses on the tub before panning towards the little boy waving goodbye as the video ends.\", \"video_name\": \"v_rklYNAAaI3Y\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video depicts three women in white vests and track pants doing aerobics steps in a dimly lit studio with a black floor. There are monitors displaying a logo in the darkened back of the studio. One of the women is the instructor. The routine continues throughout the video and ends with the women still working out. \", \"video_name\": \"v_ZVjLscGMOs8\"}, {\"Q\": \"Can you describe the entire video content in detail?\", \"A\": \"The video shows a man wearing a grey T-shirt and glasses leaning over a white kitchen sink and washing a plate. The kitchen appears to be well-lit with white walls and a visible refrigerator at the back. The counter around the sink is also white and a potted plant is placed next to the sink. As the man continues to wash the plate, another person wearing a striped t-shirt walks behind him and taps him twice before walking away. The man washing the dishes chuckles before the video ends.\", \"video_name\": \"v_z6pmp8TrAVo\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a woman standing on the second level of a diving platform in an indoor swimming pool with overhead lights. The camera shows people visible near the bottom of the diving board. The woman then runs to the edge of the board and executes a dive with a tuck and several turns into the pool. The dive seems to be executed perfectly and looks graceful while entering into the water. Overall, the video showcases skilled diving executed by the woman, and the surroundings contribute to the enjoyment of the performance.\", \"video_name\": \"v_vzUeFzhVYLg\"}, {\"Q\": \"Can you describe what happens in the video of the two girls playing racquetball?\", \"A\": \"The video starts with two girls in a well-lit racquetball court wearing white T-shirts, shorts, and safety glasses. The court has white walls and a light wooden floor. They begin by hitting the ball on the wall and when one of them misses a hit, they start over. The two move around inside the court and follow the ball with each of them missing a few times and the other player getting the ball to serve. The game continues until the end when the two players stop and shake hands.\", \"video_name\": \"v_wFVukrQfQhI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, an elderly man wearing a white t-shirt and track pants is seen peddling an exercise bike in a well-lit bedroom with white walls. On the right wall, there are photos hung, while wardrobes can be seen on the left. In the frame, we can also see the edge of a bed on the right and an open door a few feet behind the man. The man pedals the exercise bike for some time before eventually stopping. \", \"video_name\": \"v_rOtmhurweqo\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with text appearing on a green background and then transitions to a team of girls wearing black and pink uniforms posing for a photo with some of them holding lacrosse sticks in a field during daylight. Buildings and trees can be seen in the background outside the field. The video shows additional images before showcasing a game of lacrosse where the team is playing with a referee present. The video follows a player wearing a number six uniform as she takes the ball and scores goals in different lacrosse games. The video ends with another slideshow of group photos of the lacrosse team.\", \"video_name\": \"v_RXT17X7lRoQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a man sporting a white t-shirt and a red cap, carrying a backpack, skateboarding along an empty road covered with grass during the daytime. The sky appears overcast, and hills can be seen in the far distance. As he continues to skate straight, other vehicles can be seen moving on the road to the right of the man. Suddenly, as he loses balance, he falls off the skateboard, and the cameraperson skates past him and then turns back. The camera is momentarily covered, and then the cameraman removes it.\", \"video_name\": \"v_YOk1cMsyk88\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a shirtless man wearing black shorts is seen standing in a throwing circle which is inside a practice net. The throwing circle is located in a field during the daytime, and in the distance, a tall pole with floodlights facing toward the field is visible. The man begins to spin a few times in place and then throws his discus with a great force. \", \"video_name\": \"v_qmHjHk0Hzz8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a team of dodgeball players waiting outside a basketball court in a school gymnasium while kids sit on the side. An American flag hangs from the wall behind the team, and a basketball hoop is visible above them. A man in a light-colored jacket records the team with his phone as a yellow mat is placed in front of them. The camera then pans to the referee placing dodgeballs in the middle of the court, while the mascot 'HAWKS' is painted on the wall. Two teams, one wearing blue t-shirts and the other wearing yellow t-shirts, run towards the dodge balls as the game begins. There are people sitting behind a desk by the wall with the mascot painting. The game comes to an end as a player from the blue team falls on his back and the referee helps him up.\", \"video_name\": \"v_rc-DiL5er28\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a high jump competition that takes place in a stadium with an audience in it. The participants wear different colored vests, shorts, and sports shoes. The first participant wears a red and green vest, black shorts, and white shoes. He jumps over a yellow pole and lands on a red platform. His jump replays are shown, and then the frame changes to the next participant, who wears a red and cream vest, black shorts, and white sports shoes. He also jumps over the pole and lands on the platform, celebrates his jump by raising both hands in the air. The audience cheers for him, and his jump replays are shown. The frame then changes to the third participant who wears a light blue jersey and red & white sports shoes. He successfully jumps over the pole and lands on the platform, celebrates his jump, and then his jump replays are also shown. Finally, the video shows the first participant, who wears a dark blue T-shirt, packing his bags, indicating that he has won the gold medal. The video ends with a table showing the final standings of all the participants.\", \"video_name\": \"v_fM5egP_1DvQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a man wearing a black polo shirt and shorts placing a camera on a table in front of him. On the table, there are cocktail glasses lined up in the middle and a cocktail mixer on the left with various cocktail ingredients surrounding it. There are also kitchen implements on the counter at the back wall along with shelves lining the wall. He walks to the left of the table, picks up some ice cubes, dumps them into the cocktail mixer, and then places a lemon squeezer in front of him. After browsing his phone, he begins to speak to the camera and mix a cocktail starting with jin. He then mixes other liquors into the cocktail mixer, adds freshly squeezed lemon juice, shakes the mixer vigorously, and pours the cocktail into the cocktail glasses while speaking to someone behind the camera. Finally, he holds up the cocktail glass and takes a drink. There are draped windows at the back wall.\", \"video_name\": \"v_R_JKmGmURvA\"}, {\"Q\": \"Can you describe the process of making the cocktail shown in the video?\", \"A\": \"In the video, a bartender wearing a black shirt can be seen standing in a well-lit bar with shelves of alcohol on the back wall. He starts by adding slices of cucumber to a glass and crushing them using a wooden pestle. Then, he measures a cap of Bombay Sapphire Gin and pours it into the glass followed by a cap of St. Germain liquor. He then adds some lemon juice, ginger syrup, and elderflower syrup. Next, he adds egg whites to the glass and covers it with a cocktail mixer which he shakes vigorously. He pours the mixture into a glass filled with ice cubes, mixes it again and adds a slice of cucumber on top. The process is shown step by step with close-up shots of each ingredient being added to the glass.\", \"video_name\": \"v_vIQPDP8jW8A\"}, {\"Q\": \"Can you describe what happens in the video with the man holding a snow shovel?\", \"A\": \"In the video, a man dressed in winter clothing is outside standing next to a wall during the daytime. The camera captures him demonstrating how to shovel snow using a snow shovel. As the man speaks, snow can be seen falling around him. He then proceeds to scoop a large pile of snow and throws it aside repetitively. After a few shovels, the man walks to the camera and shuts it off, ending the demonstration.\", \"video_name\": \"v_-pkfcMUIEMo\"}, {\"Q\": \"Can you describe the actions of the man in the video in detail?\", \"A\": \"In the video, a man is seen wearing a flannel shirt, jeans, and a cap, while kneeling in front of firewood and scrunched-up newspapers on a grassy field with trees in the background. He crumples more newspapers and places them in front of him before arranging some firewood over the crumpled pieces of newspapers. He then sprinkles table salt and white pepper powder on the arrangement, before lighting the paper using a lighter. Afterwards, he pours gasoline on the firewood, and it instantly catches fire. The video ends with the man standing next to the burning campfire, speaking to the camera.\", \"video_name\": \"v_VhdidrZKuTU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a man in a black vest and track pants standing beside a pommel horse in a well-lit indoor arena. Other athletes and spectators are seated at the back, visible on one floor above the ground. The man places his hands on the handles of the pommel horse and begins his routine, doing handstands and spins. However, he loses balance and slips to the floor. He then walks to a bowl, applies some chalk to his hands, mounts the pommel horse again, and continues his routine. The video ends as he does a handstand and lands on the floor.\", \"video_name\": \"v_W4mJsJGa0CY\"}, {\"Q\": \"Can you describe the events in the video in detail?\", \"A\": \"The video starts with a girl sitting on a chair in a well-lit store with jewelry and clothes placed on racks in the background. She is dressed in black and sitting next to a jewelry display. A technician wearing white gloves is using a pen to make marks on the girl's ear to pierce it. The technician ensures that the marks are symmetrical on both ears and then cleans the area with a swab. The technician then proceeds to use an ear-piercing gun, causing the girl to become frightened initially, but she eventually calms down. Meanwhile, the camera's position changes as it moves to show two girls playing in the back. A person wearing a dark sweater leans the girl's head against her, and the technician pierces the girl's ear. The technician then repeats the process on the girl's other ear. The video concludes with the girl sitting in the chair, looking excited.\", \"video_name\": \"v_TkhUtx0Eyfw\"}, {\"Q\": \"Can you describe what is happening in the video in detail?\", \"A\": \"In the video, a boy is seen wearing a sweater over a shirt and khaki trousers, with white gloves and a white cap, dancing in an alley during the day. There is a stereo with its antenna extended on the left. Two women are walking towards the boy from the back. Another boy, wearing a black jacket and white gloves, joins the boy and they continue dancing. The boy uses a black umbrella as a prop to dance. As the dancers breakdance one at a time, a group of people joins the girls as they watch and cheer the boys.\", \"video_name\": \"v_Q3ZNFGE8PZE\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"Sure, the video starts with two girls who are sitting in a dimly lit living room with a shut window at the back. They are combing each other's hair while speaking to each other and the camerawoman. They first comb one side of their hair and then the other. At one point, the girl on the right combs the other girl's hair and accidentally pulls it. Then the girl on the left tries to comb the other girl's hair and her own hair gets caught in the comb, causing it to be pulled as well. The video ends as the girl on the right manages to free her hair from the comb. Overall, the video is a simple interaction between two friends spending time together.\", \"video_name\": \"v_QriYk3MKSnM\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, a man can be seen wearing a white and black t-shirt in a well-lit gym with wooden walls and windows at the top, where sunlight is coming through. Another person can be seen in the background, lifting a barbell. The man walks towards the barbell, takes a deep breath, bends down, and tries to lift it. After slowly lifting it for a few feet, he drops it, and he tries again but drops it once more. He then walks towards the camera, speaks, and the video ends.\", \"video_name\": \"v_x90zpDHTpjQ\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video opens with a slow-motion shot of a man starting his run at a pole vaulting competition taking place in a track field during the daytime, wearing a vest and black shorts. As he begins his run, the athlete vaults over the bar. In the following scene, an athlete in a blue vest and shorts is shown competing at night, as the field is lit by floodlights. The athlete is seen vaulting over a bar in a pole-vaulting competition. Soon after, an athlete dressed in an orange vest and shorts is shown doing the same. The competition includes various athletes pole-vaulting, both during the day and night. Finally, the video concludes with shots of athletes standing atop medal podiums wearing wreaths.\", \"video_name\": \"v_X4J9UBXb0FM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a man in a well-lit room wearing a striped blue and black t-shirt and shorts ironing a blue and white Hawaiian shirt on an ironing board. The camera first shows him ironing one half of the shirt and then he moves on to the other. As the camera pans out, we can see clothes visible behind the man, with a hanger sticking out of the shirt. The video appears to be a tutorial on how to properly iron a shirt.\", \"video_name\": \"v_zXHyFBrj5Ag\"}, {\"Q\": \"Can you describe the video of the pole vaulting competition in detail?\", \"A\": \"The video starts with an athlete running on a track field to compete in the pole vaulting competition held in the daytime. Other people are seen standing and sitting in the same field. The athlete holds the pole ahead of him and runs before vaulting over the bar and landing on the cushion mat. After each athlete completes their run, the video shows replays. Observers with binoculars are seen by the bars, and the video continues with athletes completing their jumps. The video ends with stats of the athletes.\", \"video_name\": \"v_PwRqqR1YmPM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video follows a girl outside a shopping mall during the daytime. She is seen wearing a white top and has a bag slung on her shoulder. In the beginning, she speaks to the camera and then enters the mall. Inside the mall, she visits a makeup shop and then goes to a salon where a beautician applies makeup to her face. She speaks to the camera in between these shots. Later, she is seen sitting on a red sofa chair and flipping through a magazine while speaking to the camera before getting her nails painted. There are numerous salon workers painting nails as other people in the salon also get their nails painted. Finally, the girl stands outside and speaks to the camera near an escalator before the video ends.\", \"video_name\": \"v_peiF2E05u8g\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with a fast-paced sequence of images flashing and a countdown, leading to clips of dirt bikers performing stunts and jumps in a forest. The forest features a dirt bike track with many bumps and obstacles on which motorcyclists are equipped with off-road gear and helmets. The frame changes to a motorcyclist falling from his bike and giving a thumbs-up sign assuring that he is unharmed. The video ending showcases the motorcyclist riding the track and performing jumps to the rhythms of music in the background.\", \"video_name\": \"v_GChGC-VJZHs\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video depicts a daytime scene where four people are playing volleyball on either side of a volleyball net. A woman wearing a blue vest over a red top can be seen on the sideline. Thick clouds can be observed in the sky. The game begins with a man on the left side of the court passing the ball to the other side. The man in a black sweatshirt and white shorts then passes the ball back, and this process continues for a while. Eventually, the man on the right passes the ball to his teammate, who catches the ball, and the game comes to a close. At the end of the game, a few people appear in the frame.\", \"video_name\": \"v_Ur_ToogEkCA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a view of a canyon and a river with a boat in the river. The camera then changes quickly between a houseboat, a jet-ski and a motorboat. After that, a woman and two men are shown talking with each other. The woman is wearing a light blue T-shirt and black trousers alongside a life vest. One of the men is wearing a white T-shirt, a white cap, and a life vest while the other one is wearing a sleeveless black T-shirt, a grey, and black cap, and a life vest. Behind them, a lot of kayak boats can be seen where some are kept under a shed. The man with the grey and black cap shows some hand signs. Next, the view changes to the canyon and a woman kayaking in the river. The man with the grey and black cap hi-fives the woman and then the woman puts her hand on the other man's shoulder. Following that is a scene where the three are kayaking in the river between the canyon by sitting on the kayak and using a double-bladed paddle to pull front-to-back on one side and then the other in rotation. Lastly, we see the same woman talking with a man in a motorboat. The man is wearing a red T-shirt, grey pants, and a black cap, and he is steering the boat. The video ends with the woman kayaking in the river with the two men.\", \"video_name\": \"v_YAKXrBinGD4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man dressed in a dark blue vest and pants is seen performing a routine on parallel bars in a brightly lit arena. There are cushioned mats placed on either side of the bars, and photos are hung high up on the left wall. The arena is streaming with sunlight from a glass window. A few people are standing a few feet away from the parallel bars observing the routine. The routine starts with the man jumping and holding onto the parallel bars, followed by swinging and doing a handstand. Then he holds himself up using the bars and maintains a sitting position by keeping his legs parallel to the ground. Finally, he finishes the routine with another handstand and jumps down to the ground.\", \"video_name\": \"v_qU4GmCN2e1Y\"}, {\"Q\": \"Can you describe what happens in the video of the man windsurfing?\", \"A\": \"In the video, a man is seen windsurfing on a beach. He wears a dark blue vest and white shorts, and attaches the sail to his board before starting to windsurf. On the left of the man, stilt houses are visible while trees are on the far left side. The sky appears cloudy. The man is then shown windsurfing across the calm beach water with mild waves, but eventually falls from the board. The video concludes with the man falling from the board.\", \"video_name\": \"v_FqYhC6_CMfI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a Zumba class being conducted indoors in a basketball court for children. The instructor, wearing a green top and khaki pants, leads the class on a raised platform. The floor of the court is blue with white and brown walls, and there are windows on the right wall. Throughout the video, the instructor leads the class with different moves and dances. The video comes to an end as the instructor walks down the platform, signaling the end of the class.\", \"video_name\": \"v_s9PkkDEl6aY\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with text on a white screen and then transitions to a street scene during the daytime. There are many people standing around a black and white mat, and a man in a white outfit is preparing to breakdance. Stores line the sidewalk. The man, wearing a white t-shirt and track pants, dances briefly before stepping onto the mat and performing a breakdancing move called the helicopter spin. He spins while holding himself up with one hand, showing off his impressive breakdancing skills.\", \"video_name\": \"v_ROrLMf0zXko\"}, {\"Q\": \"Can you describe the video of the man on the tennis court in detail?\", \"A\": \"In the slow-motion video, a man wearing a grey sleeveless shirt and blue shorts can be seen standing on a tennis court during the day, with cloudy skies overhead. A chain-link fence runs along the left side of the court, next to which are adjacent courts. In the background, a few trees are visible. The man picks up a ball from a basket, bounces it on the ground a few times and serves it. As he serves, he takes a few steps forward. In the following clip, a replay of the serve at normal speed is shown.\", \"video_name\": \"v_W6fPv5eoXC4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video provides a glimpse into the world of antique furniture restoration. It begins with a shot of a projecting store sign before moving into an antique store where a man is speaking while seated inside. The camera then cuts to an exterior shot of the building and the surrounding street. Next, the man walks to a shutter and opens it from inside before introducing a woman who speaks to the camera. The scene then shifts to a man brushing a wooden piece of furniture and using a white cloth to wipe it. Two women are then seen standing in front of an old photograph. The exterior of a house with sloping roofs is briefly shown before returning to the antique store where the man is restoring different pieces of furniture. Another man in a green shirt is seen fixing the top of a coffee table, while a man is polishing different wooden surfaces. The camera then shows different furniture and equipment inside the antique store including tools hanging on the wall, gloves, and bottles of liquids on shelves before the video ends.\", \"video_name\": \"v_zB8knKX0W8Q\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"This is a video of a shirtless man giving a haircut to a boy who is seated on a chair covered with a white cape. They are outdoors during the daytime, seemingly on a sidewalk with cars parked next to them and plants behind the boy. The barber hands the boy a handheld mirror, which he uses to look at himself and gesture towards his head. The barber then proceeds to cut the boy's hair at the indicated area using a comb and scissors. The boy looks at his hair in the mirror as the barber cuts it. The barber then uses a trimmer to trim the edges of the boy's hair. A little girl walks into the frame on the left. The video ends with the barber using the trimmer to trim the hair on the back of the boy's neck.\", \"video_name\": \"v_OlykXdYeQOI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a man wearing a black sweater and jeans shoveling snow slowly in the daytime outdoors. The background shows trees in the distance and a roof on his left covered in snow. After shoveling and clearing a small area, he turns around and slings the shovel over his shoulder before speaking to the cameraman. Overall, the video captures a peaceful winter scene of a man clearing snow in a calm and methodical manner.\", \"video_name\": \"v_PdwWFueQErM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a woman wearing a white vest, grey trousers, and white sports shoes who is lawn-mowing on a sunny day. She is mowing the lawn by moving the lawnmower and making turns, leaving some grass on the sidewalks. There are small trees on the green lawn, which is surrounded by wooden walls and a small shed outside. A white dog is also present on the lawn. In front of the woman, there is a house with some chairs, a table, and an umbrella. Throughout the video, the woman continues to move the lawnmower across the lawn and at the end, she gives the cameraman a thumbs up.\", \"video_name\": \"v_TZOhIMjwEE8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"Sure! The video captures an aerobic class in a well-lit studio with overhead lighting and fans on the roof. The studio walls are white with half of them covered with mirrors and there is a black speaker mounted on the wall to the right of the women working out. The class is using aerobic steps and silver gym balls are kept on a shelf to the right of the women working out. The instructor, wearing a grey vest, black cap, and black shorts with sports shoes, is calling out instructions while the women follow the routine. However, a woman in the back row, wearing a black t-shirt and pants, appears to be missing steps. The video ends as the instructor claps and calls for a stop.\", \"video_name\": \"v_GH0Umpw6tME\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a woman sitting in a well-lit room in front of a mirror wearing a white top. Light is streaming in from her right side. She is shown applying lipstick. In the next clip, a man sits in front of the same mirror wearing an olive t-shirt. He removes something from a box that is placed in front of him and proceeds to wipe them on his eyebrows one at a time. Surprisingly, he even eats them. \", \"video_name\": \"v_UvOEuhS0V3E\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins in a white room where a woman is doing ballet. Sunlight fills the room from the right side, creating a serene atmosphere. The scene then shifts to a stage where the woman continues to showcase her skills in ballet. Overhead lights illuminate the stage, setting the tone for the performance. The camera zooms in for a closer look at the dancer as she gracefully moves across the stage, her movements flowing in perfect harmony. The video ends with a close-up shot of the dancer's face, revealing her intense focus and concentration. Finally, the logo for 'Under Armor' appears on a black screen, indicating the brand behind the video.\", \"video_name\": \"v_ZY0cdXr_1MA\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins with a graphic showing the website's URL for mDhil.com, followed by a shot of a woman wearing a sari sitting in a garden with plants in the background, speaking to the camera. The name and information of the woman, Lakshmi Rebecca, appears on a ribbon on the screen. The following shot shows Lakshmi in a beauty salon with two other women: a customer in a chair and a beautician in a dark blue outfit, Swathi Gupta. Swathi starts to apply makeup to the customer's eyes as she speaks, using different shades of makeup. She then applies lipstick to the customer and finishes the makeup by applying it to her cheeks. The walls of the salon are white, and there is a sink near the back wall. Finally, Lakshmi speaks for a moment before the credits roll at the end of the video.\", \"video_name\": \"v_QOaPQpXemCA\"}, {\"Q\": \"Can you provide a detailed description of the video content?\", \"A\": \"In the video, a young girl wearing a pink t-shirt is shown serving a shuttlecock in a well-lit indoor venue. The venue appears to host a game of badminton, with other players and children present. Outside the court, two individuals can be seen playing badminton by the back wall, while a few children stand outside the court as the girl and her opponent play. At one point, both players miss hitting the shuttlecock, and a child standing on the side throws it back to the girl. The camera then pans to people sitting on chairs, and a person sitting on one of them smiles. The girls continue to play, but each of them misses hitting the shuttlecock despite their attempts.\", \"video_name\": \"v_ZK4Y6nOton8\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video features a male athlete who is about to perform a long jump. The athlete is wearing a blue vest, black shorts, and red sports shoes. He is surrounded by other male athletes who are standing beside him in a stadium. Additionally, there are some female athletes walking on the track behind him. The stadium has a grassy field in the center and a running track around it. The seats in the stadium are orange and black and many trees can be seen outside the stadium. As he starts running on the track, the athlete moves both his hands forward and jumps on the sandy area. The video ends with people measuring the distance he jumped.\", \"video_name\": \"v_uCvjzcVCtEs\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with text appearing on a blue screen, followed by a scene where a boy with long hair, referred to as Ivan, is sitting on a chair in a well-lit bedroom. Another boy named Oscar is standing behind him, combing Ivan's hair, which causes Ivan's head to be pulled back. Ivan is sitting in front of a table with a computer on it, next to a wooden drawer. The video ends as Ivan stops Oscar and the screen fades to black. The credits then start rolling. Overall, the video features Ivan and Oscar in a bedroom, with a focus on the act of grooming Ivan's long hair.\", \"video_name\": \"v_zoWqv-sIdBY\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a man windsurfing on a red board with an attached sail. He is wearing a life vest and sunglasses while surfing past green hilly land, rock faces, and boulders on the shore. In the distance, we can see buildings. We get a top view of the surfer at one point. There are other windsurfers visible in the sea. The man continues to windsurf till the end of the video before the screen fades to black.\", \"video_name\": \"v_qmfZw9eEpIU\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts off inside a seemingly public restroom with a girl wearing a blue shirt walking out of a stall and approaching a sink that is brightly lit by what appears to be overhead lights. The sink, positioned underneath a mirror, is cluttered with assorted toiletries and belongings scattered both on top of and beneath the mirror. A person wearing a grey sweatshirt is standing close to the girl at the sink, holding a notebook and a pen. In the reflection of the mirror, another individual, wearing a red top, is visible, holding up a phone to capture the scene. The girl in the blue shirt proceeds to wash her hands and looks back at the person in the grey sweatshirt a few times. As she continues to wash her hands, she uses a soap dispenser located next to the sink. Ultimately, the video ends with the girl still washing her hands.\", \"video_name\": \"v_tLk0Y04OaCA\"}, {\"Q\": \"Can you describe the content of the video in detail?\", \"A\": \"The video starts with an empty field with a football goalpost at the edge of the field, beyond which trees are visible. A man wearing a T-shirt and black shorts walks in front of the camera and prepares to train for a shotput. He stands on the concrete ground, while another man watches him from the edge of the concrete area. The man in the red t-shirt spins in place before throwing the shotput to the left, turns toward the camera and repeats the action. Subsequently, the camera angle changes to show the concrete throwing circle, with a wire mesh fence in the far background. The man walks into the circle and throws the shotput again by spinning and turning before throwing. The video shows slow-motion replays of his throw, with frames frozen for a moment as the man turns. Finally, the man is seen inside a gym with exercise equipment visible around him. He walks to the barbell with weights stacked on either end and lifts it once before letting it go and dropping it to the ground.\", \"video_name\": \"v_VWGV8I5byKI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows four men playing squash in a well-lit squash court with a wooden floor. They are all wearing shorts and sports shoes. The game starts with an old man wearing a black t-shirt hitting the ball. One of the players, wearing a blue t-shirt, starts the game and the rest of the players try to hit the ball. A man wearing a red polo shirt hits the ball on the glass door and bounces it to the other side. The video ends as the man in a red polo shirt taps his racket on the glass door in front of the camera.\", \"video_name\": \"v_sNJ6_N0j9Ts\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, we see a man wearing a red shirt and black pants standing inside a practice net in a field during the daytime with buildings visible beyond the edge of the field. He holds a hammer connected to a handle in his hands and begins the hammer throw by swinging the hammer around himself a few times before spinning it in place a few more times. He then throws the hammer through the open end of the practice net and watches it land. Towards the end of the video, a man walks from the right side of the frame a few meters from the practice net before the video ends.\", \"video_name\": \"v_t13MQSYjlas\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video begins in a dimly lit gym with people on exercise bikes, with a man at the front of the gym calling out instructions while also peddling an exercise bike. The people on the bikes can be seen following his instructions. In the background, a mirror covers the back wall of the gym. A woman wearing a grey t-shirt can be seen walking away as the others exercise. Toward the front row, the first person has a towel draped over the handle of his exercise bike.\", \"video_name\": \"v_syfyM1Pble8\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with a Christmas tree and a text that reads \\\"MERRY CHRISTMAS\\\". It then changes to two boys wearing Santa and Elves costumes respectively, walking in a mall. The boy in the Santa costume puts a huge box on the floor and knocks on it, prompting the other boy to jump out of it and start dancing. Spectators gather in the background as the two boys perform backflips, twists, and turns on the floor. The video then alternates between focusing on each boy individually, with shots of them dancing in front of a Christmas tree and interacting with people. Specifically, they talk to a woman and take a picture with a girl wearing a black T-shirt, with two other girls also present. One of them takes their picture. A clothes showroom is visible on their right side. The video ends with a digital page displaying some text. Overall, the video showcases the two boys dancing in festive costumes, interacting with others, and spreading Christmas cheer.\", \"video_name\": \"v_u0A5NIUKEQo\"}, {\"Q\": \"Can you describe Michal Navratil\\u2019s diving maneuvers in detail from the provided video description?\", \"A\": \"The video features Michal Navratil doing different diving maneuvers off a diving board. He begins with flips and moves on to execute tucks, twists, forward dives, among others. The pool where Navratil is diving in is both well-lit by lights inside the building and sunlight from outside. Other people are visible around the pool area and Navratil can be seen executing his dives with perfect form and control. The video concludes with Navratil executing a forward tuck dive while an image of him shirtless and in jeans doing a split is displayed on the screen.\", \"video_name\": \"v_-vnSFKJNB94\"}, {\"Q\": \"Can you please describe in detail what happens in the video?\", \"A\": \"In the video, we see a female athlete carrying a pole, wearing a red crop top, red bikini bottoms, and red sports shoes, standing in a well-lit stadium with yellow and black seats, and officials on both sides of the athlete. She runs towards a blue platform with a bar above it supported by two white pillars, jumps above the bar using her pole, and lands on the platform. Then another female athlete wearing a purple crop top, grey bikini bottoms, and white sports shoes runs towards the platform with her pole and similarly jumps above the bar, with replays of both jumps in slow motion. After that, the first athlete attempts the jump again and lands on the platform, raising both her hands while making a fist, with another replay shown. The video then changes to a female athlete running on a track and jumping in a sandy area where athletes and officials are standing on her left side. Replay of her long jump is shown, and another woman athlete starts running down the track and attempts the long jump, with another replay shown. The video ends with the female athletes attempting the long jump one after another with replays shown in the end.\", \"video_name\": \"v_Ws12Dt0Ny5Q\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video is of a woman athlete wearing a red and white short vest, blue shorts, and black sports shoes competing in a hammer throw competition. She is in a stadium with stadium lights all around and a grassy field. Spectators can be seen in the stands. The woman is standing in a throwing circle, surrounded by a huge green practice net. To the left side of the woman, there is a man in a blue tracksuit and a blue cap standing outside the net. The woman swings the hammer in the air with both her hands and then rotates her whole body to throw the hammer in the air. The hammer travels through the air and falls on the grassy field, where some people wearing the same uniform are standing and walking toward the hammer.\", \"video_name\": \"v_tY9dmG6IyPo\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video showcases a man wearing a white apron and T-shirt in a well-lit woodworking shop surrounded by wooden planks and furniture. He is standing beside a small table with a wooden chair placed on it. The man is wearing a blue glove over his right hand and also has glasses and a cap on. In the video, he is using a ball of steel wool to apply wax on the surface of the table and then uses a car buffing wheel to polish the section he waxed. To finish, he uses a wet rag to give the surface a final buff.\", \"video_name\": \"v_wJk3KOUAwXA\"}, {\"Q\": \"Can you describe what is happening in the video?\", \"A\": \"In the well-lit parlor, a woman dressed in black is lying on a retractable bed with a white sheet, facing right. The camera then zooms in on the technician, wearing white gloves, cleansing the woman's ear and follows as they mark her ear. As they begin to tattoo the girl's earlobe using a tattoo gun, the camera moves to the other side of the bed for a closer look. The technician finishes the tattoo and proceeds to clean the area.\", \"video_name\": \"v_wh4JNeQh9FQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, there are two men sitting on a sofa in a dimly-lit room. One of the men is smoking a hookah, wearing a black shirt and jeans and using his mobile phone. The other man, who is wearing a cap and a red sweater, accepts the pipe and starts smoking blowing smoke rings. The man on the left drinks from a glass before resuming smoking the hookah and making smoke rings. Both men hold up their blackberries before the video ends as the man on the right turns off the camera. A window is visible behind the men.\", \"video_name\": \"v_WdJUMmy2ox8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"Sure, the video starts with a girl wearing a blue top and a white helmet riding a horse in a riding arena during the daytime. The arena is surrounded by a boundary fence and other riders can be seen riding their horses in the background. The girl leads her horse through various obstacles, while holding her hands to her sides, and the horse jumps over them. She repeats this multiple times with different obstacles such as poles on the ground. The video ends as she brings the horse around near the camera and goes for another round. Overall, the video showcases the girl and her horse practicing their skills at the riding arena with other riders present in the background.\", \"video_name\": \"v_ooFuSspUuVY\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a spotlight shining on a white curtain that has red lighting on the stage. Then, a belly dancer enters wearing a sparkling turquoise-colored belly dancer dress. As the music plays in the background, she begins to move her hands and perform various steps while moving around the stage. There are camera flashes throughout her performance which highlight her movements. She twists, turns, and bends her body as she dances her way across the stage. The performance ends with the audience applauding her.\", \"video_name\": \"v_tXUssW4vT3o\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"The video starts with a graphic and text 'Voice of America'. A woman wearing a black t-shirt and a mic in her year is shown on an exercise bike, instructing a class with people on their exercise bikes. The well-lit gym has white walls and a grey floor. The instructor calls out instructions and there are clips of people exercising from different angles. One of the participants, a woman wearing a grey t-shirt and a hairband, is featured in an interview. Next, a man is seen moving a display tower into the class and demonstrates how to change the resistance on the exercise bikes. The cycling class continues with clips of people peddling. The man is seen speaking to the camera again and the video ends with clips of people on different exercise machines. Overall, the video shows a cycling class being instructed by a woman in a gym, with various participants and machines being shown throughout.\", \"video_name\": \"v_TGIQtaINzCY\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with an exterior shot of a white building during daytime, followed by scenes inside a ballet studio where children are practicing ballet under the guidance of a teacher wearing a white t-shirt and pants. The camera then cuts to a hallway where some of the students are practicing while others sit at the bottom of the stairs in the back. Next, a well-lit studio is shown where a girl is speaking, while other girls dance with one hand on a handle. A woman wearing a green top then appears talking to the camera. A shot of the dome in the building is shown, followed by a scene of a classroom where students are seated and one of them is writing on the chalkboard. In the next scene, children are seen walking through the school while a woman wearing a red shirt speaks to the camera. Finally, a girl and a boy are dancing in a studio while the other children watch.\", \"video_name\": \"v_ZUl43hNzGjA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man wearing a grey shirt can be seen sitting in front of the camera, in what appears to be a study. He is trimming his beard while sitting in front of a shelf that is filled with a fax machine, books, boxes, and a stack of papers in the top row. Meanwhile, a woman wearing a sweater over a red outfit looks into the camera for a brief moment before walking away. As the man continues to shave, the camera cuts to the woman who walks towards a desk with a computer placed on it, and sits down. Eventually, the man shaves his mustache and the video ends. \", \"video_name\": \"v_sBwUwgTjhAU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, we can see a woman wearing a grey shirt standing behind an ironing board. The room is well-lit with a wood wall behind her, while a bookcase is positioned behind and to her left. There is a green piece of clothing lying on the ironing board, which she turns inside out and lays flat to iron. She uses a white ironing cloth to iron the fabric, starting with slow circular motions on the ironing cloth and then moves on to an up and down motion with the fabric. This pattern is repeated until the entire fabric is ironed. Finally, the woman pulls the fabric off the ironing board and holds it up. Overall, the video demonstrates the process of ironing a green piece of clothing in a room with a wood wall and a bookcase in the background.\", \"video_name\": \"v_WCS8dzRT7Xk\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows two ping-pong players playing a game on an orange court in a well-lit arena with seats for spectators near the walls and flags of different countries hung near the rafters. A man wearing a jacket and khaki pants is sitting near the separator of the court. A referee is also present, wearing a coat and sitting behind a table at the edge of the court. The video then moves on to show matches being played in different courts, with one player shown having only one hand.\", \"video_name\": \"v_wjr5M-6qEWI\"}, {\"Q\": \"Can you describe the gymnastics performance in detail?\", \"A\": \"The video features a female gymnast wearing a sparkling red gymnast costume, performing for a large crowd on a balance beam. A cameraman is also recording her performance. Cushioned mats are strategically placed around the balance beam. She hops onto the beam using a springboard and begins her routine with a backflip, unfortunately slipping and dropping to the mat. After regaining her composure, she continues her routine featuring flips, balancing acts, and jumps. She briefly loses her balance again but manages to get back on the beam and finishes her routine to a resounding cheer from the crowd.\", \"video_name\": \"v_GOF5guH_kuI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a group of cheerleaders entering a well-lit hall with white and maroon walls, carrying blue cheerleading uniforms with white shoes. The hall is decorated with posters to the left side of the group performing, trophies behind them, and a board mounted on the wall. The audience sits on both sides and applauds as the group takes their position. Then, the group lifts five girls, followed by four other girls while a girl in the front does backflips and cartwheels. Next, some group members do flips, clap, and some of them do backflips. The group members lift four girls, and they all do a leaning forward pose by standing on one leg. Then some of them do cartwheels and backflips. One of the boys falls after doing the backflip. The video ends with the group doing cheerleading dance steps, and the audience applauding them at the same time.\", \"video_name\": \"v_uqwf903l5-E\"}, {\"Q\": \"Can you describe the content of the video in detail?\", \"A\": \"The video starts with a man wearing a red life vest over a black shirt rowing a kayak down a stream surrounded by shrubs and trees. The video switches perspectives to show the front half of a green kayak as it moves with the man in the red lift vest visible on the left. This is followed by a man wearing a blue life vest rowing in a green kayak. Then, clips of people kayaking down rapids are shown, including one of two kayakers on the shore removing their life vests. The video continues with different shots of people kayaking down the stream. Finally, the video ends with the kayakers rowing down the stream.\", \"video_name\": \"v_zxr6UZKPDh4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins on a darkened stage with a lit candelabra visible. A woman enters and begins to dance to music while balancing the candelabra on her head. She performs a belly dance while continuing to balance the candelabra. Faint outlines of people can be seen at the back of the stage where a door is open. The woman continues to dance until the end of the song, at which point she holds her hands to her sides and walks away. \", \"video_name\": \"v_SNJgJB2PGdI\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video starts with text on a black screen and then a boy in a white t-shirt and glasses playing the violin with a bright light behind him. The scene shifts to the same boy now wearing a grey shirt and sunglasses playing the violin in a dimly lit room and walking through the room and house as he plays. Other people join behind him as he walks. The clip changes again with the boy sitting on a couch wearing a sweater over a shirt, then getting up and leaving. He returns wearing a grey shirt and sunglasses and sits next to a girl, taking selfies with his phone as she gets up and leaves. Throughout the video, there are cutaways of the boy playing the violin in different settings. Another boy in a black t-shirt also joins in playing the violin. The boy in the grey shirt and sunglasses sits on a couch, changes his glasses to the old ones, and leaves. The video ends with him knocking on a door and handing a stuffed animal to a girl.\", \"video_name\": \"v_Zhx6BYVb64g\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a man performing various martial arts movements in different settings. In the first scene, he is wearing a white polo shirt and trousers and demonstrating the movements in a well-lit studio with people sitting on the floor by the walls. The studio has curtains covering the windows. In the next shot, he is still in a well-lit room with white walls and darkened windows at the back wall while a man performs various martial arts movements and people sit and watch. Next, the man is outside on a lawn during the daytime, dressed in a green martial arts uniform, and demonstrating various movements while people stand a few feet away and observe. In the next scene, the man is inside an indoor venue and demonstrating various martial arts movements while people sit on the sides. Finally, he wears a white martial arts uniform and demonstrates different movements with people observing him, and the video ends. Overall, the video showcases different martial arts techniques and settings where they can be practiced.\", \"video_name\": \"v_oncTwYfvCD8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with two women in Ford T-shirts on a beach with people walking around and playing cricket. Following that, a man is seen rolling up a carpet and lowering a box in a house. Then, a woman in a yellow t-shirt and sunglasses grabs a cricket bat and prepares to bat while people are seen fielding or watching around her. The video then showcases various cricket games played professionally and by people at homes and beaches, including clips from games played by professional players from the Australian cricket team and in a stadium. Lastly, a child with a cricket bat is standing near the stumps, preparing to bat. Overall, the video showcases people enjoying the sport of cricket in various settings and situations.\", \"video_name\": \"v_yttmx8mcjGw\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, we see a woman named Julie wearing a green sweater standing in a well-lit hair salon next to a round tabletop swivel mirror. Julie speaks to the camera and there is another woman sitting next to her. The next scene shows women seated in the salon, one at a time, each attaching different types of hair rollers to their hair. Finally, the women are seen removing their hair rollers and spraying their hair while looking at mirrors. Overall, the video provides a glimpse into the process of getting hair done at a salon and the variety of tools and techniques used.\", \"video_name\": \"v_wcxEkMoOmBk\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with rolls of gift wrappers stacked on top of each other. Then, a stack of US one dollar bills is shown on a white surface and text appears above and below it. Two scotch tapes are placed next to each other and the left tape has a red X mark on it and disappears after. After that, a gift is placed on the white surface and US one dollar bills are taped to it to mimic gift wrapping. Then, a green string is used to tie a bow on top of the gift.\", \"video_name\": \"v_zEttEkAdHts\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a girl is visible wearing a black hoodie and a jeans skirt. She is seen standing in front of a stone dipper well, which has several ladles arranged on the top. The dipper is filled with water from a tank placed at the top of the well. The girl is standing on a stone floor under a roof, and some pillars are visible on her left side. The location seems to be a venue during the daytime, where a yard is visible outside, fenced at the end. There is a tree to the left of the yard. The girl starts scooping out some water using a ladle in her right hand. She then washes her left hand and uses it to scoop out water to wash her right hand. Finally, she places the ladle back on top of the dipper well and walks away from there.\", \"video_name\": \"v_z3MP0yJBtGg\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video opens with some text displayed on a black screen. After that, a woman can be seen sitting in a bright room. She places a box on a table and covers it with a pink cloth, which has a green exterior. The woman carefully folds the edges of the fabric over the box and ties them together. The camera stays focused on the wrapped box as the video fades out.\", \"video_name\": \"v_Omvg9UtGOes\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with people seated at tables in a ballroom, each table having wine glasses on them. Some people get up from their tables and stand aside. An orchestra is visible in the background playing near the tables. The orchestra comprises five people with different instruments who start playing music. Meanwhile, a man and a woman walk towards an open space in the ballroom and begin to waltz. The man lifts the woman up, and they spin a few times before starting to dance and move around the dancefloor. They perform various side steps and back steps as they continue to dance and are shown from different angles. Towards the end of the video, the man again lifts the woman, and they spin before separating and bowing to the audience and the orchestra. They then walk away, holding hands.\", \"video_name\": \"v_oni9K1_MCuw\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with text appearing on screen before cutting to a woman wearing a black coat over a blue top smoking an e-cigarette, standing against a wooden wall, with another woman watching her. The next scene features a man with glasses and a checkered shirt also smoking an e-cigarette. The video continues with a montage of different people smoking the e-cigarette, with a woman in a red outfit and hat standing next to most of the people. Overall, the video seems to be a compilation of people enjoying e-cigarettes with a focus on the different types of people who indulge in this activity.\", \"video_name\": \"v_Rn6_IwckXg4\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video is an instructional guide on gift-wrapping and contains step-by-step instructions. It starts with a title \\\"how to wrap a gift\\\" displayed on a black background. A woman, wearing a grey and white sweater, is shown wrapping a small box on a wooden table in a well-lit room. She takes a gift-wrapping paper to wrap the small box and applies tape to its sides. The frame then changes to another text displayed on a black background. Next, she takes a bigger red square box and measures its sides with a plastic scale before taking gift-wrapping paper and folding it so that it covers the box completely. She applies tape on the center of the paper. The frame changes to another text being displayed on a black background. Mathematical formulas are shown on a white paper, and an Excel sheet is displayed. The frame again changes to the woman putting a rectangular box on the table and gift-wrapping it similarly to the previous boxes. The video ends with the woman putting all the gift-wrapped boxes on the table.\", \"video_name\": \"v_TNqc2yWZztE\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a man wearing blue shorts standing in a well-lit room with white walls. To the left of the man is a glass table with golden stands that has photo frames on it. The man switches on the vacuum cleaner and hovers it over the dust on the floor. The sound of the vacuum cleaner is audible throughout the video. The camera focuses on the man as he completes the cleaning process and switches off the vacuum cleaner before moving out of the frame. Overall, the video is a simple demonstration of a man using a vacuum cleaner to clean the floor of a room.\", \"video_name\": \"v_UNXLfqkwKFc\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a white labrador retriever panting outside, while a man in a red polo shirt is bathing a golden retriever who is secured with a harness. The groomer lathers and washes the dog with a hose, dries him with a towel and a blow-drier, wipes him with a towel again, and then brushes his coat. A man wearing a brown jacket and jeans is then seen entering a shop with his dog in a harness. Next, a golden retriever is shown lying down on the floor. A labrador retriever is then shown jumping through an orange tube, and onto the ground in a wooden area, panting in a different location. The video ends with contact information for the groomer.\", \"video_name\": \"v_W9H2qVnIWXs\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a man wearing a red t-shirt climbing a rocky hill during the daytime. He is wearing a belt with a chalk pouch on it. A tree can be seen past the hill and a green field with houses is visible on the ground. After climbing up, there is a panoramic view of the city with the buildings visible. The man then rappels down the hill using a rope and removing anchors as he descends. To his right, there is a yellow metal staircase attached to the hill. The video ends as the man reaches the bottom where a woman is belaying the rope.\", \"video_name\": \"v_ZxPF3s_OLDo\"}, {\"Q\": \"What equipment is visible in the gym?\", \"A\": \"In the gym, other equipment visible includes a high bar and still rings.\", \"video_name\": \"v_p1QGn0IzfW0\"}, {\"Q\": \"What event is happening in the video?\", \"A\": \"A volleyball game is being played indoors with two teams and spectators watching.\", \"video_name\": \"v_UZm05CvtxkA\"}, {\"Q\": \"What are the players using to hit the ball?\", \"A\": \"The players are only using their heads and legs to punt the ball back and forth.\", \"video_name\": \"v_oR8o_PuKS28\"}, {\"Q\": \"What are the girls wearing while combing their hair?\", \"A\": \"The girl combing the hair is wearing a black sweatshirt, a white top, and blue jeans while her friend is wearing a black sweatshirt.\", \"video_name\": \"v_YIq3Tar9x6s\"}, {\"Q\": \"What type of shoes is the athlete wearing and what color are they?\", \"A\": \"The athlete is wearing white and red sports shoes.\", \"video_name\": \"v_U3-MtKZeUXM\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a black coat over a white shirt.\", \"video_name\": \"v_q_QR5HoROhI\"}, {\"Q\": \"What is the throwing circle made of?\", \"A\": \"The throwing circle is made of concrete.\", \"video_name\": \"v_qsEnLQ2UnEA\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a red sleeveless shirt.\", \"video_name\": \"v_ZwK52lXCbhA\"}, {\"Q\": \"What do the boxers do after the clinching?\", \"A\": \"After the clinching, the two boxers keep both their hands on top of each other shoulders and try to hit each other with their knee.\", \"video_name\": \"v_Y9d4iPDeigI\"}, {\"Q\": \"What is the girl behind the washerwoman doing?\", \"A\": \"The girl in a dark-colored top and yellow skirt is standing behind with her hands folded.\", \"video_name\": \"v_qtKa7Lr3URA\"}, {\"Q\": \"What is the boy doing in the gym at the beginning of the video?\", \"A\": \"The boy is lifting himself up from parallel bars in the gym.\", \"video_name\": \"v_P7Z4i1gmzjs\"}, {\"Q\": \"What activity is the man doing in the beginning of the video?\", \"A\": \"The man is looking through a magazine while seated in a barber chair.\", \"video_name\": \"v_ojIhxWrBM0s\"}, {\"Q\": \"What kind of cape is draped around the little boy's neck as he is getting a haircut?\", \"A\": \"The cape draped around the little boy's neck has pictures of animated characters on them.\", \"video_name\": \"v_w4pO-1-FG5w\"}, {\"Q\": \"What is the woman doing at the beginning of the video?\", \"A\": \"The woman is brushing a horse.\", \"video_name\": \"v_vo2M4sY0E38\"}, {\"Q\": \"What equipment was used by the children in the gymnasium?\", \"A\": \"The gymnasium had armbars and balance beams installed.\", \"video_name\": \"v_WOUkPgHtt4E\"}, {\"Q\": \"What kind of court surface do the teams play on in the video?\", \"A\": \"The video shows a basketball court with a chain link fence surrounding it. It is not clear what kind of surface the court has.\", \"video_name\": \"v_RjztFj0Zl40\"}, {\"Q\": \"What is the man wearing while playing the saxophone in the video and what is the setting of his performance?\", \"A\": \"The man is wearing a black coat, black pants with a white shirt, and black shoes while playing the saxophone in a public place with many people watching his performance from behind. He is performing in front of huge black speakers and many stalls, illuminated by lights and with a big lighting banner behind him.\", \"video_name\": \"v_tSNg5rvDvVc\"}, {\"Q\": \"What is the weightlifter wearing in the video?\", \"A\": \"The weightlifter in front is wearing a grey T-shirt, black and red shorts, and white sports shoes. The weightlifter behind him is wearing a grey T-shirt, black shorts, and white sports shoes.\", \"video_name\": \"v_Y16uL6dYDzQ\"}, {\"Q\": \"What is visible at the edge of the yard in the video?\", \"A\": \"A street is visible at the edge of the yard in the video.\", \"video_name\": \"v_wiaZCl-poRw\"}, {\"Q\": \"What is the color of the uniforms worn by the children on the stage in the video?\", \"A\": \"The children are wearing red and white uniforms while playing guitars on the stage in the well-lit set with a purple background.\", \"video_name\": \"v_qqZLs6j3YII\"}, {\"Q\": \"What is the color of the shirt worn by the man who is polishing the shoe?\", \"A\": \"The man who is polishing the shoe is wearing a blue shirt.\", \"video_name\": \"v_IRBrTKrVCxo\"}, {\"Q\": \"What are the men doing with their shoes in the video?\", \"A\": \"The two men sitting at the table pour beer into their shoes and drink it while the surrounding people cheer them on.\", \"video_name\": \"v_xS5JDBeMxOs\"}, {\"Q\": \"What are the kids doing in the video?\", \"A\": \"The kids in the video are playing with a ball in a grassy field.\", \"video_name\": \"v_-uJnucdW6DY\"}, {\"Q\": \"What are the women doing in the video?\", \"A\": \"In the video, two women are standing by a gift-wrapping table and wrapping gifts.\", \"video_name\": \"v_PzJsoZT2hXk\"}, {\"Q\": \"What are the people in the barbershop wearing?\", \"A\": \"The woman giving a haircut is wearing a white coat, grey top, black trousers, and a white mask. All the customers are wearing a white cloth cape.\", \"video_name\": \"v_YAMhMB1jdio\"}, {\"Q\": \"What is the color of the coat worn by the news reporter in the TACK video?\", \"A\": \"The news reporter is wearing a dark grey coat.\", \"video_name\": \"v_EWNqkVaOfbE\"}, {\"Q\": \"What are the players wearing in the video?\", \"A\": \"The players are wearing T-shirts and shorts with squash racquets. Three of them are also wearing a cap, turned backward.\", \"video_name\": \"v_Pjnuoa4o55c\"}, {\"Q\": \"What is the man wearing and what is he doing in the video?\", \"A\": \"The man is wearing a blue shirt and khaki shorts. He is swinging back and forth while upside down from the bottom of the parallel bars.\", \"video_name\": \"v_QOsG3BeQeX0\"}, {\"Q\": \"What is the man wearing and what is he holding in his left hand?\", \"A\": \"The man is wearing a blue shirt and jeans and he is holding an axe in his left hand.\", \"video_name\": \"v_zxpQHLwZCug\"}, {\"Q\": \"What kind of clothes was the man wearing before he started dancing with the woman in pink? \", \"A\": \"The man was wearing a white shirt and black trousers before he started dancing with the woman in pink.\", \"video_name\": \"v_uvglcAUnQv0\"}, {\"Q\": \"What is the man using to clean the shoes on the table?\", \"A\": \"The man is using a hand brush, water from a glass, and a bottle of clear liquid labeled \\\"JASON MARKK\\\" to clean the shoes on the table.\", \"video_name\": \"v_T7YcO-sOLuU\"}, {\"Q\": \"What is the purpose of the man spinning before releasing the discus?\", \"A\": \"The man spins the discus in order to build momentum and increase the distance of the throw.\", \"video_name\": \"v_OkvWTZ4XLyM\"}, {\"Q\": \"What drill are the players practicing on the basketball court?\", \"A\": \"The players are practicing a drill where they take the ball and dunk it into the hoop with a spin.\", \"video_name\": \"v_sPK-sbHIb3w\"}, {\"Q\": \"What is the location and ambiance of the tattoo parlor like?\", \"A\": \"The tattoo parlor in the video is well-lit with white tile floors. The video starts with a woman wearing a white top sitting on a chair in the parlor, with other chairs visible on the right side of the woman. Some people are also sitting on the chairs.\", \"video_name\": \"v_TEgPIueNqTI\"}, {\"Q\": \"What is the woman wearing and what is she doing?\", \"A\": \"The woman in the video is wearing a black top and is combing her hair while leaning forward. She laughs at something she reads and places the comb at her side before continuing to lean forward.\", \"video_name\": \"v_zTHkqpNFGno\"}, {\"Q\": \"What does the video show at the beginning?\", \"A\": \"The video starts with a person lighting a matchstick using the striker on the matchbox.\", \"video_name\": \"v_vska7f8Zm9s\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is holding a bungee cord and counting down as he gets ready to jump off a platform for bungee jumping.\", \"video_name\": \"v_SV3v-nA6hXM\"}, {\"Q\": \"What style of dancing are the girls doing in the video?\", \"A\": \"The girls are doing Spanish-style partner dancing.\", \"video_name\": \"v_w46wkDledek\"}, {\"Q\": \"What is the man wearing while he plays the guitar?\", \"A\": \"The man is wearing a blue jacket and jeans.\", \"video_name\": \"v_TB5AeIdAndA\"}, {\"Q\": \"What type of footage is shown in the montage?\", \"A\": \"The montage includes footage of people crossing the street, a person welding something in a dimly lit workshop, a monster truck driving through a muddy track, and cars moving through traffic during the day.\", \"video_name\": \"v_sbnF7VVeopM\"}, {\"Q\": \"What activity are the kids doing in the video?\", \"A\": \"The kids are playing dodgeball on an indoor basketball court.\", \"video_name\": \"v_OESjoURo19U\"}, {\"Q\": \"Can you describe the appearance of the examination room in the video?\", \"A\": \"Yes, the examination room in the video was well-lit and had an exam table next to the woman. \", \"video_name\": \"v_SLHPvKh-_x8\"}, {\"Q\": \"What musical instrument is the man playing in the video?\", \"A\": \"The man is playing the bagpipe.\", \"video_name\": \"v_ypfWA4aDL6k\"}, {\"Q\": \"What color is the T-shirt worn by the man in the video?\", \"A\": \"The man in the video is wearing a teal T-shirt.\", \"video_name\": \"v_rpjxjU-mLiw\"}, {\"Q\": \"Who is in the bathroom with the toddler and what are they doing?\", \"A\": \"A woman wearing a white shirt is in the bathroom with the toddler and she is teaching him how to brush his teeth.\", \"video_name\": \"v_sk_pnoqXxhs\"}, {\"Q\": \"What is the girl wearing in the video?\", \"A\": \"The girl is wearing a maroon T-shirt, blue jeans, and red and white sneakers.\", \"video_name\": \"v_YK9BIL9fKA0\"}, {\"Q\": \"What is the man doing in front of Calvin's Corner?\", \"A\": \"The man is standing with his arms folded in front of a pegboard with some tools hung from it. A text displaying 'Calvin's Corner' is displayed under his image.\", \"video_name\": \"v_GvMep9y7d7c\"}, {\"Q\": \"What is the specific gymnastics event being performed in the video?\", \"A\": \"The gymnastics event being performed in the video is the balance beam routine.\", \"video_name\": \"v_ZSdnDVGXU3k\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a black T-shirt, black pants, and black and white sneakers.\", \"video_name\": \"v_u3XOLSC7lg0\"}, {\"Q\": \"Who is Justin Harrison in the video and what does he do?\", \"A\": \"Justin Harrison is a person in a white cap playing water polo. In the video, he is throwing the ball towards the goalpost and successfully scores a goal. Later, he is shown scoring another goal wearing a blue cap in a different game.\", \"video_name\": \"v_skk-nX55gvA\"}, {\"Q\": \"What is the gymnast wearing in the video and where is he performing?\", \"A\": \"In the video, the gymnast is wearing blue track pants and a white vest with blue and red stripes. He is performing on a pommel horse in a well-lit arena with blue walls and blue chairs.\", \"video_name\": \"v_fh21bbDSVmA\"}, {\"Q\": \"What are the people in the bar doing?\", \"A\": \"They are smoking e-cigarettes and blowing smoke circles.\", \"video_name\": \"v_wCexKIuAj3A\"}, {\"Q\": \"What type of kit does the man pick up first?\", \"A\": \"The man picks up a suede block and a suede brush to show to the camera.\", \"video_name\": \"v_tF8Nv-QxbIU\"}, {\"Q\": \"What color nail polish did the woman apply to her ring finger?\", \"A\": \"Pink nail polish was applied to the woman's ring finger.\", \"video_name\": \"v_vAHR3iJhBXU\"}, {\"Q\": \"Can you describe the appearance of the little girl in the video?\", \"A\": \"Yes, the little girl is wearing a pink outfit and a pink headdress.\", \"video_name\": \"v_tC5eMgePakk\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman is shaving her legs next to a toilet bowl in a well-lit bathroom.\", \"video_name\": \"v_UtV69uNmzlE\"}, {\"Q\": \"What is the boy wearing while cooking something in the pot?\", \"A\": \"The boy is wearing a grey sweatshirt while cooking something in the pot.\", \"video_name\": \"v_vMcXLYBcHsM\"}, {\"Q\": \"What is the little boy wearing and where is he? \", \"A\": \"The little boy is wearing a maroon gymnastics uniform and he is in a well-lit gymnasium with white walls.\", \"video_name\": \"v_u7THn6D6y5w\"}, {\"Q\": \"How does the boy start playing the bagpipes in the video?\", \"A\": \"The boy starts playing the bagpipes by blowing air into the mouthpiece and pressing the chanter using his fingers.\", \"video_name\": \"v_yggwFa68Cp4\"}, {\"Q\": \"What is the woman wearing and what is she doing in the video?\", \"A\": \"The woman is wearing a pink top and black shorts, and she is practicing stepping on and off an aerobics step in a well-lit studio with white walls and a wood floor.\", \"video_name\": \"v_PwTwGnAVFhQ\"}, {\"Q\": \"What colors are the walls of the art studio?\", \"A\": \"The walls of the art studio are well-lit and are painted with shades of red and brown, and the walls are filled with paintings.\", \"video_name\": \"v_QT4d1nTQYSE\"}, {\"Q\": \"What is the girl wearing and what does the room look like in the beginning of the video?\", \"A\": \"In the beginning of the video, the girl is wearing a black T-shirt and a pink full-sleeve top. The room is well-lit with white walls. There is a brown door and a red curtain behind her. There is also a desktop on a study table behind her. There is a photo, some books, and a stuffed toy on her study table. There are also stickers on the left wall behind her. There are also some boards on the wall and a small blue table behind her.\", \"video_name\": \"v_Xmp_twSbkAg\"}, {\"Q\": \"What safety equipment does the climber, who starts at the bottom, have attached to her?\", \"A\": \"The climber, who starts at the bottom, has a rope attached to her utility belt.\", \"video_name\": \"v_zDdD_qA86rg\"}, {\"Q\": \"What is the woman wearing in the video?\", \"A\": \"The woman is wearing a yellow T-shirt and multi-colored pajamas.\", \"video_name\": \"v_tt-uDaZQWWc\"}, {\"Q\": \"What does the woman do after applying lipstick?\", \"A\": \"She proceeds to apply makeup to her face and eyes.\", \"video_name\": \"v_r6l4mxphtX0\"}, {\"Q\": \"What does the man use to bathe the dog?\", \"A\": \"The man uses a handheld showerhead to bathe the dog.\", \"video_name\": \"v_Oskk7eLgerM\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is seen drinking from a cup in a well-lit cafe, and later he is dancing. In another clip, he is then seen drinking from a cup with one hand and holding another cup in his left hand while dancing with his hands at his sides.\", \"video_name\": \"v_T35cHr4pjkc\"}, {\"Q\": \"What happened after the athlete jumped into the sandpit?\", \"A\": \"After the athlete jumped into the sandpit, a referee held up a white flag which indicates that the jump was legal. The athlete celebrated and spoke to the observers before walking away. The video also ends with another athlete wearing a yellow outfit walking towards the start of the track.\", \"video_name\": \"v_Pr5K2Jh2X94\"}, {\"Q\": \"What is the gymnast wearing in the video?\", \"A\": \"The gymnast is wearing a white vest and red pants.\", \"video_name\": \"v_YU-dUWGOoD4\"}, {\"Q\": \"What is the man doing in the video and where is he doing it?\", \"A\": \"The man is standing next to a closed window in a dimly lit room. He is wearing a red shirt and trousers along with a tool belt. He is speaking to the camera, gesturing toward the window and then proceeds to clean it with a cloth and a spray bottle.\", \"video_name\": \"v_zRqJZ0u6f88\"}, {\"Q\": \"What is the girl doing in the video?\", \"A\": \"The girl is participating in a discus throwing competition within a practice net.\", \"video_name\": \"v_QY3q4DuiGq8\"}, {\"Q\": \"What are the players wearing in the video?\", \"A\": \"The woman is wearing a light green T-shirt and black shorts, while the man is wearing a black sweatshirt, grey shorts, and white sports shoes.\", \"video_name\": \"v_X9Y-b-SbkIU\"}, {\"Q\": \"What is visible on the wall to the left of the man?\", \"A\": \"An altar lit with electric candelabras is visible on the wall to the left of the man.\", \"video_name\": \"v_uub0z8wJfhU\"}, {\"Q\": \"What is the appearance of the room where the woman is playing the violin?\", \"A\": \"The woman is playing the violin in a well-lit room with white walls. There are books and photo frames behind her on her right side. There is also a black table to her right side. In the other room behind her on the left side, there is a dining table set and a chandelier. Behind the woman, there is a kitchen with a fridge and a microwave. The kitchen also has brown wooden shelves.\", \"video_name\": \"v_X5kj4fZ38rc\"}, {\"Q\": \"What is the woman wearing in the beginning of the video?\", \"A\": \"The woman is wearing a red and blue checkered shirt over a black top in the beginning of the video.\", \"video_name\": \"v_rGOOlcdpfLg\"}, {\"Q\": \"What is the bartender wearing in the video?\", \"A\": \"The bartender is wearing a dark grey sleeveless coat, a white shirt, and a black tie behind the bar counter.\", \"video_name\": \"v_fMVuGUBs2cs\"}, {\"Q\": \"What are the two boys doing differently from the rest of the group?\", \"A\": \"The two boys are standing apart from the rest of the group and demonstrating martial arts movements.\", \"video_name\": \"v_PSB1nM3QXxg\"}, {\"Q\": \"What caused the boy in the grey t-shirt and black pants to hit the ball towards the wall in the racquetball court?\", \"A\": \"The boy in the grey t-shirt and black pants hit the ball towards the wall to start the game.\", \"video_name\": \"v_TKgU9QJXw2w\"}, {\"Q\": \"What kind of competition is taking place in the video and what is the girl doing at the beginning?\", \"A\": \"The video shows a gymnastics competition and the girl starts by jumping and swinging from a high bar.\", \"video_name\": \"v_WAvz9zHwWo4\"}, {\"Q\": \"What kind of musical instrument was the man standing in the bright light holding?\", \"A\": \"The man standing in the bright light was holding a musical instrument, but the given information does not specify what type of instrument it was.\", \"video_name\": \"v_uIcMgjypbqk\"}, {\"Q\": \"What is the color of the t-shirt worn by the boy holding the camera?\", \"A\": \"The boy holding the camera is wearing a green t-shirt.\", \"video_name\": \"v_vaV6_bxiTLI\"}, {\"Q\": \"What is the person in the advertisement wearing?\", \"A\": \"The person in the advertisement is wearing a white outfit.\", \"video_name\": \"v_z-EPAHsmTMA\"}, {\"Q\": \"What color ballet dresses are the girl and the other dancers wearing?\", \"A\": \"The girl is wearing a white ballet dress, and the other dancers are wearing black dresses.\", \"video_name\": \"v_pJ3sECWr5Xg\"}, {\"Q\": \"What led the gymnast to stop his routine?\", \"A\": \"The gymnast missed a hold and dropped to the ground in the middle of his routine.\", \"video_name\": \"v_vI-O6QWIIGU\"}, {\"Q\": \"What color is the cloth used for gift-wrapping the box in the video?\", \"A\": \"The cloth used for gift-wrapping the box in the video is peach-colored.\", \"video_name\": \"v_XPiMnbCr-sc\"}, {\"Q\": \"What is the man wearing while playing bagpipe in the walkway?\", \"A\": \"The man is wearing a Scottish kilt and a beret while playing the bagpipe in the walkway.\", \"video_name\": \"v_w_CXbraJr58\"}, {\"Q\": \"What does the man do once he finishes trimming his face and neck?\", \"A\": \"Once the man finishes trimming his face and neck, he applies shaving foam to his face and then uses a razor to shave his face and neck. After he is done, he wipes his face with a cloth and applies aftershave while adjusting his hair.\", \"video_name\": \"v_ZLJ2BmBkLJg\"}, {\"Q\": \"What is the attire of the man serving the ball in the video?\", \"A\": \"The man is wearing a black sleeveless t-shirt and red shorts.\", \"video_name\": \"v_Sf27WmcLb2w\"}, {\"Q\": \"Who is the reporter in the outdoor location during the nighttime, and what activity does she perform?\", \"A\": \"The reporter in the outdoor location during the nighttime is identified as Jocelyn Maminta. She shovels snow once.\", \"video_name\": \"v_vSv1qMMt4Bk\"}, {\"Q\": \"What costumes are the window cleaners wearing?\", \"A\": \"The window cleaners are wearing costumes of the Hulk and Batman.\", \"video_name\": \"v_p9lhwYsBWdc\"}, {\"Q\": \"What is the woman doing in the video?\", \"A\": \"The woman is sitting on a chair and getting her ear pierced by a technician wearing transparent gloves.\", \"video_name\": \"v_ZrSK-fisXGg\"}, {\"Q\": \"What is the man wearing while applying the clear solution on the woman's nails?\", \"A\": \"The man is wearing a camouflage pattern shirt while applying the clear solution to each of the woman's fingers.\", \"video_name\": \"v_p07Y--q4JQw\"}, {\"Q\": \"What is being showcased at the start of the video?\", \"A\": \"At the start of the video, a digital poster along with a web address \\\"taichisecretmovements.com\\\" is being showcased.\", \"video_name\": \"v_TsHek6oZYXU\"}, {\"Q\": \"What is the girl wearing in the video?\", \"A\": \"The girl is wearing a blue shirt over a light blue top.\", \"video_name\": \"v_QN-4aLiDhiQ\"}, {\"Q\": \"What is the woman wearing and where is she located during the second part of the video?\", \"A\": \"The woman is wearing an orange top and blue jeans and she is located in a forest with big trees. There are also some other people sitting on her right side.\", \"video_name\": \"v_UGWOtDmIcns\"}, {\"Q\": \"What type of clothing is the man inside the boat wearing and what did he do?\", \"A\": \"The man is wearing a blue wetsuit and a beanie. He picks up the handheld radio and speaks into it.\", \"video_name\": \"v_PNuJUYo3Hf8\"}, {\"Q\": \"What does the woman do to the Uggs after stuffing them with tissue paper?\", \"A\": \"The woman brushes the Uggs and wets them with a sponge and water. After diluting the water with Ugg cleaner and conditioner, she uses the sponge to apply the mixture to the Uggs. She again brushes the Uggs and then uses the Uggs protector and freshener.\", \"video_name\": \"v_TMAXjnsN0Mk\"}, {\"Q\": \"Who is holding a camera in the video and what is he/she wearing?\", \"A\": \"A man in a white cap turned backward is holding a camera in his hands.\", \"video_name\": \"v_skr8x0kUVwg\"}, {\"Q\": \"What are the players doing in the video?\", \"A\": \"The players in the video are doing drills. Specifically, they are running side to side, jumping through obstacles on the ground, and diving while moving.\", \"video_name\": \"v_YnjITZnk6OE\"}, {\"Q\": \"What are the surroundings in the video?\", \"A\": \"The video shows a chef in a restaurant kitchen wearing a white chef's coat. Behind him, there are fridges, dishwashers, a microwave, and some dishes on top of the dishwasher. Another man is passing behind the chef who is wearing a white chef's coat, grey trousers, black shoes, and a red cloth on his head. The kitchen is well-lit.\", \"video_name\": \"v_UNJTM62HyqQ\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a blue vest and black shorts.\", \"video_name\": \"v_SEVVSei-r6w\"}, {\"Q\": \"What kind of performance is the woman doing in the video and what is she wearing?\", \"A\": \"The woman is performing ballet in a theatre. She is wearing a maroon top, black trousers and pointe shoes.\", \"video_name\": \"v_UaO7bS5Ky6M\"}, {\"Q\": \"What is the woman doing while getting her shoes cleaned?\", \"A\": \"The woman is dancing as she is getting her shoes cleaned.\", \"video_name\": \"v_wEehiYq9ttE\"}, {\"Q\": \"What are the woman and the little boy doing in the video?\", \"A\": \"The woman is washing clothes while the little boy stands next to her and tries to help by pulling clothes from the bucket.\", \"video_name\": \"v_rklYNAAaI3Y\"}, {\"Q\": \"What are the women wearing in the video?\", \"A\": \"The women are wearing white vests and track pants.\", \"video_name\": \"v_ZVjLscGMOs8\"}, {\"Q\": \"What does the other person wearing a striped t-shirt do while the man is washing the plate?\", \"A\": \"The person wearing a striped t-shirt taps the man washing dishes twice before walking away.\", \"video_name\": \"v_z6pmp8TrAVo\"}, {\"Q\": \"What type of dive did the woman perform from the diving platform?\", \"A\": \"The woman performed a dive with a tuck and several turns into the pool.\", \"video_name\": \"v_vzUeFzhVYLg\"}, {\"Q\": \"What type of game are the girls playing in the video and what color clothing are they wearing?\", \"A\": \"The girls are playing racquetball in the video and both of them are wearing white T-shirts and shorts.\", \"video_name\": \"v_wFVukrQfQhI\"}, {\"Q\": \"What kind of shirt is the old man wearing and what is he doing?\", \"A\": \"The old man is wearing a white T-shirt and track pants, and he is peddling an exercise bike.\", \"video_name\": \"v_rOtmhurweqo\"}, {\"Q\": \"What is happening in the opening scene of the video?\", \"A\": \"Text is appearing on a green background.\", \"video_name\": \"v_RXT17X7lRoQ\"}, {\"Q\": \"What was the man wearing and doing in the video?\", \"A\": \"The man in the video was wearing a white T-shirt, a red cap, and a backpack while skateboarding on an empty road during the daytime. He lost balance and fell off the skateboard while continuing to skate straight on the road.\", \"video_name\": \"v_YOk1cMsyk88\"}, {\"Q\": \"What is the man wearing?\", \"A\": \"The man is shirtless and wearing black shorts.\", \"video_name\": \"v_qmHjHk0Hzz8\"}, {\"Q\": \"What is the color of the t-shirt worn by the team on the left?\", \"A\": \"The team on the left is wearing yellow t-shirts.\", \"video_name\": \"v_rc-DiL5er28\"}, {\"Q\": \"What kind of clothes is the man wearing in the video's opening scene and how does he react after completing his jump?\", \"A\": \"The man is wearing a red and green vest, black shorts, and white sports shoes in the video. After completing his jump, the video shows replays of his jump and he lands on a red platform. His jump replays are shown.\", \"video_name\": \"v_fM5egP_1DvQ\"}, {\"Q\": \"What is the man making in the video?\", \"A\": \"The man is making a cocktail in the video using jin, other liquors, fresh-squeezed lemon juice and ice cubes.\", \"video_name\": \"v_R_JKmGmURvA\"}, {\"Q\": \"What ingredients did the bartender add to the cocktail?\", \"A\": \"The bartender added cucumber, Bombay Sapphire Gin, St. Germain liquor, lemon juice, ginger syrup, elderflower syrup, and egg whites to the glass.\", \"video_name\": \"v_vIQPDP8jW8A\"}, {\"Q\": \"What is the man demonstrating in the video?\", \"A\": \"The man is demonstrating how to shovel snow using the snow shovel.\", \"video_name\": \"v_-pkfcMUIEMo\"}, {\"Q\": \"What kind of spices did the man sprinkle on the firewood?\", \"A\": \"The man sprinkled table salt and white pepper powder on the firewood.\", \"video_name\": \"v_VhdidrZKuTU\"}, {\"Q\": \"What caused the man to slip during his routine on the pommel horse and how did he recover?\", \"A\": \"The man lost balance in the middle of his routine and slipped to the floor. He walked over to a bowl and applied chalk to his hands before remounting the pommel horse to continue his routine.\", \"video_name\": \"v_W4mJsJGa0CY\"}, {\"Q\": \"What happens at the beginning of the video?\", \"A\": \"The video starts with a girl sitting on a chair in a well-lit store, with jewelry and clothes on sale on racks in the back. She is wearing a black outfit and sitting next to a jewelry display. A technician wearing white gloves is marking the girl's ear to pierce it. She is using a pen. She then makes sure the marks are in the same place on both ears. Then, she wipes her ear with a swab.\", \"video_name\": \"v_TkhUtx0Eyfw\"}, {\"Q\": \"What are the boys wearing during their dance performance in the video?\", \"A\": \"During their dance performance, the boys are wearing khaki trousers, a sweater over a shirt, white gloves, and a white cap. One of the boys who joins the dance later is wearing a black jacket and white gloves.\", \"video_name\": \"v_Q3ZNFGE8PZE\"}, {\"Q\": \"What are the girls doing in the video?\", \"A\": \"The girls are sitting and combing their hair.\", \"video_name\": \"v_QriYk3MKSnM\"}, {\"Q\": \"What is the man saying towards the end of the video?\", \"A\": \"The man walks towards the camera and speaks before the video ends.\", \"video_name\": \"v_x90zpDHTpjQ\"}, {\"Q\": \"What are the athletes wearing as they compete in the pole vaulting competition?\", \"A\": \"The athletes are wearing vests and shorts of different colors as they compete in the pole vaulting competition.\", \"video_name\": \"v_X4J9UBXb0FM\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a striped blue and black t-shirt and shorts.\", \"video_name\": \"v_zXHyFBrj5Ag\"}, {\"Q\": \"What equipment does the athlete hold in front of him while starting his run?\", \"A\": \"The athlete holds the pole in front of him while starting his run.\", \"video_name\": \"v_PwRqqR1YmPM\"}, {\"Q\": \"What is the girl doing when she is first introduced in the video?\", \"A\": \"The girl is standing outside a mall, wearing a white top and carrying a bag on her shoulder.\", \"video_name\": \"v_peiF2E05u8g\"}, {\"Q\": \"What type of gear are the motorcyclists wearing?\", \"A\": \"The motorcyclists are equipped with off-road gear and helmets.\", \"video_name\": \"v_GChGC-VJZHs\"}, {\"Q\": \"Who catches the ball to end the game?\", \"A\": \"A teammate of the man who passed the ball on the right side catches the ball to end the game.\", \"video_name\": \"v_Ur_ToogEkCA\"}, {\"Q\": \"What are the people wearing in the video?\", \"A\": \"The woman is wearing a light blue T-shirt, black trousers, and a life vest. One of the men is wearing a white T-shirt, a white cap, and a life vest while the other one is wearing a sleeveless black T-shirt, a grey and black cap, and a life vest.\", \"video_name\": \"v_YAKXrBinGD4\"}, {\"Q\": \"What are some of the actions a man performs on the parallel bars in the video?\", \"A\": \"In the video, the man starts his routine by jumping and holding onto the parallel bars. He swings, does a handstand, holds himself up and holds a sitting position by keeping his legs parallel to the ground. He finishes up with another handstand and jumps down to the ground.\", \"video_name\": \"v_qU4GmCN2e1Y\"}, {\"Q\": \"What is the man wearing and where is he windsurfing?\", \"A\": \"The man is wearing a dark blue vest and white shorts while windsurfing on a beach with stilt houses visible on the left and trees on the far left side.\", \"video_name\": \"v_FqYhC6_CMfI\"}, {\"Q\": \"What is the instructor wearing in the video?\", \"A\": \"The instructor is wearing a green top and khaki pants.\", \"video_name\": \"v_s9PkkDEl6aY\"}, {\"Q\": \"What is the breakdance move called that the man does on the mat?\", \"A\": \"The man does a breakdancing move called helicopter spin.\", \"video_name\": \"v_ROrLMf0zXko\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is playing tennis on a court during the daytime. He picks up a tennis ball, bounces it on the ground a few times, and serves it. In the following clip, a replay is shown of the man serving the ball at normal speed.\", \"video_name\": \"v_W6fPv5eoXC4\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"The video begins with a projecting store sign.\", \"video_name\": \"v_zB8knKX0W8Q\"}, {\"Q\": \"What tools does the barber use to cut the boy\\u2019s hair?\", \"A\": \"The barber uses a comb and scissors to cut the boy\\u2019s hair and a trimmer to trim the hair on the edges.\", \"video_name\": \"v_OlykXdYeQOI\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a black sweater and jeans.\", \"video_name\": \"v_PdwWFueQErM\"}, {\"Q\": \"What is the woman wearing while lawn-mowing in the video?\", \"A\": \"The woman is lawn-mowing wearing a white vest, grey trousers, and white sports shoes.\", \"video_name\": \"v_TZOhIMjwEE8\"}, {\"Q\": \"What instructions is the instructor giving to the women during the aerobic class?\", \"A\": \"The instructor is calling out instructions which the women follow while doing steps using aerobic steps.\", \"video_name\": \"v_GH0Umpw6tME\"}, {\"Q\": \"What is the man wearing in the next clip?\", \"A\": \"The man is wearing an olive T-shirt in the next clip.\", \"video_name\": \"v_UvOEuhS0V3E\"}, {\"Q\": \"What is the name of the brand advertised at the end of the video?\", \"A\": \"The name of the brand advertised at the end of the video is 'Under Armor'.\", \"video_name\": \"v_ZY0cdXr_1MA\"}, {\"Q\": \"What is the name of the beautician in the video?\", \"A\": \"The beautician in the video is introduced as Swathi Gupta.\", \"video_name\": \"v_QOaPQpXemCA\"}, {\"Q\": \"Who picks up the shuttlecock and throws it at the girl?\", \"A\": \"A child standing on the side picks up the shuttlecock and throws it at the girl.\", \"video_name\": \"v_ZK4Y6nOton8\"}, {\"Q\": \"What is the athlete wearing in the video?\", \"A\": \"The male athlete is wearing a blue vest, black shorts, and red sports shoes.\", \"video_name\": \"v_uCvjzcVCtEs\"}, {\"Q\": \"What is the name of the person combing Ivan\\u2019s hair, and his relationship with Ivan?\", \"A\": \"'Oscar' is the name of the person combing Ivan's hair. He is introduced as a boy standing behind Ivan.\", \"video_name\": \"v_zoWqv-sIdBY\"}, {\"Q\": \"What is the man wearing while windsurfing in the video?\", \"A\": \"The man is wearing a life vest and sunglasses while windsurfing in the video.\", \"video_name\": \"v_qmfZw9eEpIU\"}, {\"Q\": \"Who else is visible in the mirror?\", \"A\": \"Another person wearing a red top is visible in the mirror holding up a phone and recording.\", \"video_name\": \"v_tLk0Y04OaCA\"}, {\"Q\": \"What type of equipment does the man lift in the gym?\", \"A\": \"The man walks to the barbell with weights stacked on either end and picks it up before dropping it to the ground.\", \"video_name\": \"v_VWGV8I5byKI\"}, {\"Q\": \"Who starts the game on the squash court in the video?\", \"A\": \"A man in a blue t-shirt starts the game.\", \"video_name\": \"v_sNJ6_N0j9Ts\"}, {\"Q\": \"What is the man holding in the video?\", \"A\": \"The man is holding a hammer connected to a handle in his hands.\", \"video_name\": \"v_t13MQSYjlas\"}, {\"Q\": \"Who can be seen walking away in the video?\", \"A\": \"A woman wearing a grey t-shirt can be seen walking away as the others are exercising.\", \"video_name\": \"v_syfyM1Pble8\"}, {\"Q\": \"What are the boys wearing in the video, and what activity are they doing?\", \"A\": \"In the video, the two boys are walking in a mall, and one is wearing a Santa costume while the other is wearing an Elves costume. The boy wearing the Santa costume carries a huge box which he keeps on the floor and knocks. The other boy jumps out and they both start dancing, doing backflips, twists, and turns on the floor.\", \"video_name\": \"v_u0A5NIUKEQo\"}, {\"Q\": \"What kind of dives did Michal Navratil perform in the video?\", \"A\": \"Michal Navratil performed different kinds of dives including tucks, twists, and forwards dives.\", \"video_name\": \"v_-vnSFKJNB94\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows footage of women pole vaulting, followed by footage of women executing long jumps on a track. The athletes are wearing different colored tops and bottoms. The stadium is well-lit with stadium lights and has yellow and black seats. The athletes are being watched by an audience and officials are present to oversee the competition. \", \"video_name\": \"v_Ws12Dt0Ny5Q\"}, {\"Q\": \"What is the athlete wearing and what kind of stadium is she in during the hammer throw competition?\", \"A\": \"The athlete is wearing a red and white short vest, blue shorts, and black sports shoes. She is in a stadium with a grassy field and stadium lights all around the stadium competing in a hammer throw competition.\", \"video_name\": \"v_tY9dmG6IyPo\"}, {\"Q\": \"What type of tool does the man use to apply wax on the surface of the table?\", \"A\": \"The man uses a ball of steel wool to apply wax on the surface of the table.\", \"video_name\": \"v_wJk3KOUAwXA\"}, {\"Q\": \"What is happening to the woman in the video?\", \"A\": \"The woman in the video is getting a tattoo on her earlobe.\", \"video_name\": \"v_wh4JNeQh9FQ\"}, {\"Q\": \"What are the two men doing in the video and where are they positioned?\", \"A\": \"In the video, the two men are inside a darkened room sitting on a sofa and speaking to the camera. Specifically, the man on the left, who is smoking a hookah and wearing a black shirt and jeans, is positioned on the left side of the sofa; while the man on the right, who is wearing a cap and a red sweater, is positioned on the right side of the sofa.\", \"video_name\": \"v_WdJUMmy2ox8\"}, {\"Q\": \"What type of obstacles do the girl and her horse overcome in the video?\", \"A\": \"In the video, the girl leads her horse through a few obstacles and jumps over them, including poles on the ground.\", \"video_name\": \"v_ooFuSspUuVY\"}, {\"Q\": \"What is the color of the belly dancer dress?\", \"A\": \"The belly dancer is wearing a sparkling turquoise-colored dress.\", \"video_name\": \"v_tXUssW4vT3o\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, an instructor wearing a black t-shirt and mic is leading a cycling class in a well-lit gym with white walls and grey floor. The participants are on exercise bikes, and the instructor calls out instructions while a clip of an interview with one of the participants is shown. Afterwards, a man moves a display tower into the class to demonstrate how to change resistance on the bike. The video ends with clips of people on different exercise machines.\", \"video_name\": \"v_TGIQtaINzCY\"}, {\"Q\": \"Who is talking to the students in the ballet studio and what are they wearing?\", \"A\": \"A teacher is talking to the students in the ballet studio and they are wearing a white t-shirt and pants.\", \"video_name\": \"v_ZUl43hNzGjA\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"In the beginning of the video, a man wearing a grey shirt is sitting in front of the camera and trimming his beard in a study with a bookshelf behind him. A woman wearing a sweater over a red outfit looks into the camera for a moment before walking away.\", \"video_name\": \"v_sBwUwgTjhAU\"}, {\"Q\": \"What color shirt is the woman wearing and what is she doing in the video?\", \"A\": \"The woman is wearing a grey shirt and she is ironing a green piece of clothing on an ironing board.\", \"video_name\": \"v_WCS8dzRT7Xk\"}, {\"Q\": \"What is the man wearing near the separator of the court?\", \"A\": \"The man is wearing a jacket and khaki pants near the separator of the court.\", \"video_name\": \"v_wjr5M-6qEWI\"}, {\"Q\": \"What does the opening of the video showcase?\", \"A\": \"The opening of the video showcases a female gymnast about to perform on a balance beam. She is wearing a sparkling red gymnast costume and there is a cameraman recording the performance. Spectators can also be seen around the balance beam.\", \"video_name\": \"v_GOF5guH_kuI\"}, {\"Q\": \"What are the cheerleaders wearing in the video?\", \"A\": \"The cheerleaders are wearing blue cheerleading uniforms with white shoes.\", \"video_name\": \"v_uqwf903l5-E\"}, {\"Q\": \"What is the scenery like along the stream?\", \"A\": \"The shores of the river are filled with shrubs and trees.\", \"video_name\": \"v_zxr6UZKPDh4\"}, {\"Q\": \"What was the woman holding on her head while dancing?\", \"A\": \"The woman was holding a candelabra on her head while belly dancing.\", \"video_name\": \"v_SNJgJB2PGdI\"}, {\"Q\": \"What is happening at the end of the video?\", \"A\": \"At the end of the video, the boy knocks on a door and hands a stuffed animal to a girl.\", \"video_name\": \"v_Zhx6BYVb64g\"}, {\"Q\": \"What are the different venues featured in the video where the man demonstrates martial arts movements?\", \"A\": \"The man is seen demonstrating martial arts movements in a well-lit studio, on the lawn outdoors during daytime, and in an indoor venue with people observing him.\", \"video_name\": \"v_oncTwYfvCD8\"}, {\"Q\": \"Who is getting ready to bat with a cricket bat in the video?\", \"A\": \"A woman in a yellow t-shirt and sunglasses is holding a cricket bat and getting ready to bat.\", \"video_name\": \"v_yttmx8mcjGw\"}, {\"Q\": \"What is the common tool used by the women in the video?\", \"A\": \"The women in the video are attaching hair rollers to their hair. They are using different types of rollers.\", \"video_name\": \"v_wcxEkMoOmBk\"}, {\"Q\": \"What is shown on the white surface in the beginning of the video?\", \"A\": \"At the beginning of the video, a stack of one US dollar notes placed on a white surface with text above and below it is shown.\", \"video_name\": \"v_zEttEkAdHts\"}, {\"Q\": \"What is the woman wearing and where is she standing in the video?\", \"A\": \"The woman is wearing a black hoodie and jeans skirt and standing in front of a stone dipper well with ladles arranged on top. She is on a stone floor with a roof, and there are pillars visible to her left. The venue is located in a yard with a fence at the end and a tree visible to the left.\", \"video_name\": \"v_z3MP0yJBtGg\"}, {\"Q\": \"What is the color of the cloth being used in the video?\", \"A\": \"The cloth being used in the video is pink on the inside and green on the outside.\", \"video_name\": \"v_Omvg9UtGOes\"}, {\"Q\": \"What type of music is being played in the video?\", \"A\": \"An orchestra is visible playing music in the ballroom.\", \"video_name\": \"v_oni9K1_MCuw\"}, {\"Q\": \"Who is smoking an e-cigarette in the video?\", \"A\": \"A woman wearing a black coat over a blue top and a man wearing a checkered shirt and glasses are smoking e-cigarettes in the video.\", \"video_name\": \"v_Rn6_IwckXg4\"}, {\"Q\": \"What is displayed on the black background before the woman starts gift-wrapping the small box?\", \"A\": \"A text titled 'how to wrap a gift' is displayed on the black background before the woman starts gift-wrapping the small box.\", \"video_name\": \"v_TNqc2yWZztE\"}, {\"Q\": \"What color are the shorts that the man is wearing in the video?\", \"A\": \"The man is wearing blue shorts.\", \"video_name\": \"v_UNXLfqkwKFc\"}, {\"Q\": \"What does the groomer do after washing the golden retriever with a hose?\", \"A\": \"After washing the golden retriever with a hose, the groomer dries the dog with a towel and a blow-drier. He also wipes the dog with a towel again and brushes its coat.\", \"video_name\": \"v_W9H2qVnIWXs\"}, {\"Q\": \"What is the man wearing while climbing the rocky hill and what accessory does he have?\", \"A\": \"The man is wearing a red t-shirt and a belt with a chalk pouch on it while climbing the rocky hill.\", \"video_name\": \"v_ZxPF3s_OLDo\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a boy in a red shirt and black shorts performing gymnastic moves on parallel bars, while being watched by other people in a well-lit gym.\", \"video_name\": \"v_p1QGn0IzfW0\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows two teams playing indoor volleyball on a well-lit court. The team on the left hits the ball to the other side and the team on the right misses their hit. The camera then pans to the spectators celebrating.\", \"video_name\": \"v_UZm05CvtxkA\"}, {\"Q\": \"What is happening at the beginning of the video?\", \"A\": \"At the beginning of the video, four men are playing beach volleyball near the shores during the daytime. They are using only their heads and legs to punt the ball back and forth over the net while another man is standing near the right pole. Trees are visible in the far back, and a few boats are sailing in the sea. Additionally, a lawn is visible to the left of the players.\", \"video_name\": \"v_oR8o_PuKS28\"}, {\"Q\": \"What activities did the two girls in the video engage in?\", \"A\": \"The video starts with one girl combing the hair of the other girl, who poses for a photo by covering her face with her palms. The girls make different poses for the camera, hug each other, and blow flying kisses.\", \"video_name\": \"v_YIq3Tar9x6s\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a male athlete in a blue and red jersey and white and red sports shoes, preparing and performing a hammer throw on the ground surrounded by a green net tied to silver poles. He swings the hammer using both his hands and rotates his body to throw the hammer in the air, before walking out of the throwing circle.\", \"video_name\": \"v_U3-MtKZeUXM\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man is painting a woman's nails with black ink and glitter of different colors. He then seals the glitter with an instant seal and cures the paint under a curing lamp. Lastly, he applies cuticle oil around the nail.\", \"video_name\": \"v_q_QR5HoROhI\"}, {\"Q\": \"What does the man in the video do with the hammer?\", \"A\": \"In the video, a man wearing a white T-shirt and shorts steps into a throwing circle on a concrete patch of a field, carrying a hammer attached to a handle through a metal string. He swings the hammer a few times then spins in place before turning around and throwing the hammer.\", \"video_name\": \"v_qsEnLQ2UnEA\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a man getting a tattoo while rapping. The tattoo artist, who wears a black t-shirt and a bandana, tattoos the man using a tattoo gun while wiping it with a cloth. The well-lit tattoo studio has white walls decorated with framed art, with a shelf of bottles behind the tattoo artist.\", \"video_name\": \"v_ZwK52lXCbhA\"}, {\"Q\": \"What happens in the boxing match in the video?\", \"A\": \"The video shows two boxers in a boxing ring, with one wearing blue shorts and the other wearing red shorts. The fight starts with the blue-shorts boxer intimidating the other, and the red-shorts boxer tries to kick the blue-shorts boxer. They then both start clinching and hitting each other with their knees. The red-shorts boxer hits the blue-shorts boxer with a kick, and his coach steps in. They continue to fight, with the red-shorts boxer grabbing the blue-shorts boxer's leg and hitting him with punches while the blue-shorts boxer defends his crotch. The video ends with the blue-shorts boxer being punched continuously and his mouthpiece falling from his mouth.\", \"video_name\": \"v_Y9d4iPDeigI\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, there are three people standing next to a house with white walls and a partially open window. One woman is washing clothes using a stone on the ground, another woman wearing a white top and jeans is watching her, and a girl in a dark-colored top and yellow skirt is standing behind with her hands folded. The washerwoman uses the buckets next to her to rinse and finish washing the clothes while the woman in the white top watches.\", \"video_name\": \"v_qtKa7Lr3URA\"}, {\"Q\": \"What does the video show happening in the gym?\", \"A\": \"The video shows a boy performing gymnastics on a set of parallel bars in a well-lit gym with other equipment and foam mats on the floors, while other people are visible in the background.\", \"video_name\": \"v_P7Z4i1gmzjs\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a man getting his hair cut in a salon with other customers also getting their hair cut. The man first sits in a barber chair and looks through a magazine, and then a different man gets his hair washed. Later, a man is seen getting his hair cut in a well-lit salon, while other people wait outside. The video ends with the barber finishing his customer\\u2019s hair cut and holding a mirror at his back to let him look at the back of his head.\", \"video_name\": \"v_ojIhxWrBM0s\"}, {\"Q\": \"Can you describe the process of the haircut in the video?\", \"A\": \"The video showcases a little boy getting a haircut in a salon chair while a woman uses a trimmer attached to a vacuum to clip his hair, while also showcasing a blue cape with animated characters and a mirror reflecting overhead lights.\", \"video_name\": \"v_w4pO-1-FG5w\"}, {\"Q\": \"What happens in the video?\", \"A\": \"A woman is shown brushing a horse that is tied to a fence, cleaning its torso, face, tail, and hooves while manning a beautiful outdoor space.\", \"video_name\": \"v_vo2M4sY0E38\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, children are practicing gymnastics in a well-lit gymnasium with cream walls, blue mattresses on the floor, and armbars and balance beams installed. A boy wearing a white vest and dark blue shorts performs various moves on the armbar, while other children practice behind him and some girls practice at his side. The video ends with the boy jumping off the armbar.\", \"video_name\": \"v_WOUkPgHtt4E\"}, {\"Q\": \"What takes place in the beginning of the video?\", \"A\": \"The video starts off with text appearing on the screen with a yellow background.\", \"video_name\": \"v_RjztFj0Zl40\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a man playing a saxophone in a public place with many people watching his performance. There are stalls and speakers around him and a man walks past while carrying a white bag. The video ends with the man raising his hand to complete the performance.\", \"video_name\": \"v_tSNg5rvDvVc\"}, {\"Q\": \"What happened in the weightlifting competition?\", \"A\": \"The weightlifters participated in a competition held in a grassy field. They lifted big dumbbells on black mats while officials, a cameraman, and an audience watched. Two weightlifters, one in a grey T-shirt and black and red shorts, and another in a grey T-shirt and black shorts, attempted to lift the dumbbells. The weightlifter in the front lifted the dumbbell for some time and dropped it and then the weightlifter behind him struggled to lift the dumbbell and dropped it. The video ends with the weightlifter in the front raising his hand for the audience and walking off the mat.\", \"video_name\": \"v_Y16uL6dYDzQ\"}, {\"Q\": \"What happens in the video?\", \"A\": \"A man wearing a black polo shirt and cargo pants is seen mowing the lawn in a yard during the daytime. He mows one section after another and turns around. There is a street visible at the edge of the yard with houses on the other side. A car is parked next to the sidewalk by the yard.\", \"video_name\": \"v_wiaZCl-poRw\"}, {\"Q\": \"What happens in the beginning of the video?\", \"A\": \"The video starts with five children playing guitars on a well-lit stage, wearing red and white uniforms, sitting on stools, with a purple background. There are little mikes on stands in front of all the children. They turn left and right when they play certain parts of the music.\", \"video_name\": \"v_qqZLs6j3YII\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man is getting his shoes polished by another man wearing a blue shirt outdoors during the daytime. The man polishing the shoes is seen using a brush and a cloth draped on his thigh and there is a tin of polish on the ground next to him. The video ends when the man finishes polishing the shoes.\", \"video_name\": \"v_IRBrTKrVCxo\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a group of men in a public place, drinking beer from their shoes. The people around them cheer and record videos, and the two men high-five each other after finishing their drinks. The man in the white T-shirt also shows some hand signs and thumps his chest at the end of the video.\", \"video_name\": \"v_xS5JDBeMxOs\"}, {\"Q\": \"What's happening in the video?\", \"A\": \"The video starts with boys playing in a grassy field. One boy throws a ball and other kids kick it and run across the field while someone catches the ball and bumps it into another kid. This continues for the rest of the video.\", \"video_name\": \"v_-uJnucdW6DY\"}, {\"Q\": \"What is shown in the video?\", \"A\": \"The video captures two women wrapping gifts in a well-lit room, exchanging them, and showing the wrapped gifts to the camera. The video also includes a montage of gift wraps and gift-wrapped gifts at the beginning.\", \"video_name\": \"v_PzJsoZT2hXk\"}, {\"Q\": \"Can you describe the scene in the barbershop from the video?\", \"A\": \"In the video, we see a well-lit barbershop with white walls. There are two women giving a haircut to two customers who are all wearing cloth capes. The customers are seated in front of mirrors and there is a whiteboard mounted on a wooden railing behind them. The video starts with one woman giving a haircut and ends with a man giving a haircut to a customer.\", \"video_name\": \"v_YAMhMB1jdio\"}, {\"Q\": \"Can you describe the events and people featured in the video?\", \"A\": \"The video begins with a news reporter talking about TACK. There are various scenes including a cricket match in a grassy field with huge stadium lights, and interviews with the patron-in-chief and the president of TACK, as well as the Pakistani ambassador. The reporters are seen wearing different outfits and holding mics while conducting interviews with various people. The video ends with the reporter wrapping up the report with some trophies in the background.\", \"video_name\": \"v_EWNqkVaOfbE\"}, {\"Q\": \"What does the video display at the start?\", \"A\": \"The video starts on a squash court where four men with squash racquets are playing.\", \"video_name\": \"v_Pjnuoa4o55c\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man wearing a blue shirt and khaki shorts is shown swinging back and forth upside down from the bottom of the parallel bars in a well-lit gymnasium, while cushioned mats are placed on either side of the bars. He then straightens himself and goes back to the previous position.\", \"video_name\": \"v_QOsG3BeQeX0\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In this video, a man wearing a blue shirt and jeans is seen standing over a log and holding an axe in his left hand. He is in a yard with plants at the back, with a tree next to the fence behind and to the right of the man. The log is partially cut, and the man stops to speak before continuing to chop it. Pieces of the log fly off in different directions until the log breaks into two pieces.\", \"video_name\": \"v_zxpQHLwZCug\"}, {\"Q\": \"Can you describe the dancing couple in the video and what happens at the end?\", \"A\": \"In the video, a woman wearing a pink top and black skirt dances with a man wearing a white shirt and black trousers. The other people in the studio are sitting on the floor watching and recording them on their phones. The dancing continues for a while and it ends with the man walking away from the woman.\", \"video_name\": \"v_uvglcAUnQv0\"}, {\"Q\": \"What process did the man use to clean shoes on the table?\", \"A\": \"The man used a hand brush dipped in a glass of water with Jason Markk cleaning liquid to clean the shoes on the table. He then wiped the foam with a cloth and proceeded to clean the rest of the shoes on the table before holding the clean shoes and cleaning supplies pack to the camera.\", \"video_name\": \"v_T7YcO-sOLuU\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man is shown holding a discus on a square platform in a field during the daytime. He starts building momentum by spinning the discus a few times, releases it and walks toward the landing area while hills are visible in the distance.\", \"video_name\": \"v_OkvWTZ4XLyM\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, players are shown practicing basketball drills on a well-lit indoor basketball court under the coaching of a man in a grey shirt and black pants. The drills involve taking the ball and dunking it into the hoop with a spin, and the coach is seen trying to block their shots. Slow-motion clips of various players doing the drill are also shown.\", \"video_name\": \"v_sPK-sbHIb3w\"}, {\"Q\": \"Can you describe the scene in the tattoo parlor, especially the woman who received the tattoo?\", \"A\": \"A woman wearing a white top is getting a tattoo on her right wrist while sitting in a well-lit tattoo parlor. The tattoo artist is wearing a black outfit and is seen dipping the tattoo gun in an ink next to him. There are other chairs in the parlor, and some people are seen sitting on them while others are also getting tattoos on the side.\", \"video_name\": \"v_TEgPIueNqTI\"}, {\"Q\": \"Can you describe the setting of the video?\", \"A\": \"The video shows a woman wearing a black top who is in a well-lit room. There is a desk on her right and the wall behind her is white.\", \"video_name\": \"v_zTHkqpNFGno\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a person in a snow-covered area lights a matchstick and uses it to start a fire. The person collects some kindling and adds it over the flame along with fresh firewood, as the kindling catches fire. The camera also shows a dog walking away from the fire. The video ends with a pan of the camera over the burning kindling.\", \"video_name\": \"v_vska7f8Zm9s\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows people bungee jumping in a valley while wearing safety harnesses. The scenes include different angles of people jumping, with some diving forward and others jumping backward.\", \"video_name\": \"v_SV3v-nA6hXM\"}, {\"Q\": \"Can you describe the dancing style performed in the video?\", \"A\": \"The two girls in the video are performing Spanish-style partner dancing.\", \"video_name\": \"v_w46wkDledek\"}, {\"Q\": \"Can you describe the environment in which the man is playing the guitar?\", \"A\": \"The man in the blue jacket and jeans is sitting on the sidewalk by the lawn during daytime while playing the guitar and singing. There is an empty can next to him and also between his crossed legs. He continues playing the guitar until he finishes his song.\", \"video_name\": \"v_TB5AeIdAndA\"}, {\"Q\": \"Can you describe the scenes in the video?\", \"A\": \"The video starts with a person washing dishes in a well-lit washing area. We then see a montage of stock footage including people crossing the street, a person welding in a dimly lit workshop, a monster truck driving through mud, and cars moving through traffic. \", \"video_name\": \"v_sbnF7VVeopM\"}, {\"Q\": \"What's happening in the video?\", \"A\": \"The video shows a game of dodgeball being played by a group of kids on an indoor basketball court, with people throwing balls at three people standing on one side of the court. Both boys and girls are on one team, and the opposite team is seen switching out players who get hit. The game continues until both teams stop playing and walk over to the middle of the basketball court.\", \"video_name\": \"v_OESjoURo19U\"}, {\"Q\": \"Can you explain the steps in the video?\", \"A\": \"The video shows a woman demonstrating effective hand washing technique using soap and tissue paper. She starts by applying liquid soap from a dispenser near the sink, then turns off the tap, and dries her hands using tissue paper from a dispenser above the sink. Finally, she throws the used tissue paper in a trash can.\", \"video_name\": \"v_SLHPvKh-_x8\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a man playing the bagpipe on a sidewalk during the day. People are passing by and dropping some change in front of him. Another person wearing a black hoodie and holding a little child is kneeling in front of the musician.\", \"video_name\": \"v_ypfWA4aDL6k\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a man in a teal T-shirt and black shorts throws a discus in a throwing circle located outside in a field during the daytime. There is a practice net surrounding the circle and a person in a yellow shirt jogging on the track behind the net. After the throw, the man in the teal T-shirt walks towards the camera and claps his hands.\", \"video_name\": \"v_rpjxjU-mLiw\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a toddler and a woman are in a bathroom with a black-shirted man holding the camera, and the woman is teaching the toddler how to brush his teeth while standing on the sink. A brown dog is also visible in the video.\", \"video_name\": \"v_sk_pnoqXxhs\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, two girls play hopscotch on a concrete path in a grassy field surrounded by trees and houses. They show three rocks and take turns throwing them on the hopscotch course. They complete the course by jumping with one leg up and then with both hands up. The girl with the camera interviews each of them before the video ends with a car coming down the road.\", \"video_name\": \"v_YK9BIL9fKA0\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video shows a man fixing a bicycle chain with some tools, a tree branch, and a stone. He tightens the chain-bearing screws and then smashes the chain-bearing with the branch and stone before finally adjusting the chain and testing the pedal.\", \"video_name\": \"v_GvMep9y7d7c\"}, {\"Q\": \"Can you describe the gymnastics performances shown in the video?\", \"A\": \"The video showcases various gymnasts performing on a balance beam in different arenas during events. They execute various gymnastics movements on the balance beam.\", \"video_name\": \"v_ZSdnDVGXU3k\"}, {\"Q\": \"What is shown in the video?\", \"A\": \"The video showcases a man breakdancing in a well-lit hallway with blue and red floors, white walls, and people standing to the right of him. He is wearing a black T-shirt, black pants, and black and white sneakers. The man moves his legs on the floor, does a spring jump, puts his head on the floor, and rotates. He completes his performance and laughs. The video starts and ends with showcasing a digital poster.\", \"video_name\": \"v_u3XOLSC7lg0\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video follows a water polo game being played in a swimming pool. It starts with a slow-motion shot of a person identified as Justin Harrison throwing the ball toward the goalpost while being blocked by another player. Justin successfully scores the goal, and the video shows a replay of the shot from a different angle. The video also shows Coach Mark Conner speaking to a group of swimmers and Justin scoring another goal in a different game wearing a blue cap. The video ends with a group of swimmers talking by the pool, and one of them jumps into the pool.\", \"video_name\": \"v_skk-nX55gvA\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a male gymnast wearing blue track pants and a white vest with blue and red stripes performs on a pommel horse in a well-lit arena with blue walls and chairs. The judges are sitting behind tables, a few feet from the blue platform where the pommel horse is located. The gymnast does a handstand and concludes his performance by wishing luck to his opponent.\", \"video_name\": \"v_fh21bbDSVmA\"}, {\"Q\": \"Can you describe the setting of the video?\", \"A\": \"The video begins in a well-lit news studio with a glass window at the back. There is a white coffee table on the set with coffee cups and a laptop. The set showcases five people who continue to converse throughout the video. Additionally, the video shows a cutaway shot of people smoking e-cigarettes in a bar.\", \"video_name\": \"v_wCexKIuAj3A\"}, {\"Q\": \"Can you describe what the man is doing in the video?\", \"A\": \"In the video, the man is cleaning shoes inside a well-lit shoe maker's shop. He starts by using a suede block and then a suede brush to clean a pair of red suede shoes, and then he proceeds to brush a dark blue high-heeled suede shoe.\", \"video_name\": \"v_tF8Nv-QxbIU\"}, {\"Q\": \"Can you describe the process of the nail art in the video?\", \"A\": \"The video features a woman who starts by applying a base coat to her fingernails before proceeding to apply pink nail polish on only one finger. She then draws random blocks on the white polish and sticks two black rhinestones on the pink nail. Finally, she applies a top coat to all the nails before ending the video with a shot of the painted nails.\", \"video_name\": \"v_vAHR3iJhBXU\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a little girl in a pink outfit is playing the violin in front of a tree by the shore of a lake during daytime. The lake behind reflects the surrounding trees. She pauses occasionally and continues the song until the end, then the video fades to black.\", \"video_name\": \"v_tC5eMgePakk\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a woman is sitting next to a toilet bowl in a well-lit bathroom, shaving her right leg with a razor. At one point, she dips the razor in the toilet bowl, and ends the video continuing to shave her leg.\", \"video_name\": \"v_UtV69uNmzlE\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a man receives a haircut in a well-lit kitchen by a woman using an electric trimmer while a boy cooks something in a pot. The boy also helps cut the hair behind the man's ears using scissors and the trimmer. The man then drinks something from a cup and the video ends with him holding up a peace sign.\", \"video_name\": \"v_vMcXLYBcHsM\"}, {\"Q\": \"Can you describe the scene in the gymnasium shown in the video?\", \"A\": \"In the video, a little boy in a maroon gymnastics uniform is practicing on an armbar with his coach. The gymnasium is well-lit with white walls, and has various sports equipment including blue mattresses on the floor. Other children are also seen practicing and sitting in the gymnasium. The coach asks the boy to exercise on the armbar, and he swings his legs in the air and puts them on the armbar. The video ends with the coach waving his hands to the boy.\", \"video_name\": \"v_u7THn6D6y5w\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, a boy wearing a white shirt and black sweater plays the bagpipes while standing beside a wooden door. He blows air into the mouthpiece and presses the chanter with his fingers. The video ends with him finishing playing the bagpipes.\", \"video_name\": \"v_yggwFa68Cp4\"}, {\"Q\": \"Can you describe the setting and attire of the woman in the video?\", \"A\": \"The video shows a woman wearing a pink top and black shorts standing on an aerobics step in a well-lit studio with white walls and a wood floor.\", \"video_name\": \"v_PwTwGnAVFhQ\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, Jonas Gerard begins a live painting performance in a well-lit art studio. He pours paint from a bottle and spreads it with a palette knife while a woman wearing an apron splattered with paint is standing behind him. There is an audience sitting a few feet away from the canvas, and the painting event is displayed on a large screen TV. After finishing the painting, Jonas turns to the audience and the audience members walk up to the table with the canvas to look at the finished painting.\", \"video_name\": \"v_QT4d1nTQYSE\"}, {\"Q\": \"Can you describe the scene in the beginning of the video?\", \"A\": \"The video starts with a girl in a well-lit room wearing a black T-shirt and a pink full-sleeve top. There is a brown door, a red curtain, a desktop on a study table along with books, a photo, and a stuffed toy. The left wall behind her has stickers and some boards, and there is a small blue table behind her. She puts her stuffed toy on the table and begins talking.\", \"video_name\": \"v_Xmp_twSbkAg\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man and a woman are seen climbing up a rocky hill by finding handholds and attaching their ropes to anchors as they climb. The woman who is climbing is wearing a red and white shirt, anchors her rope as she climbs, and another person is belaying the rope at the bottom. The video is shot from the top down, during the daytime, and ends as the woman is still making her way to the top.\", \"video_name\": \"v_zDdD_qA86rg\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a woman is shown shaving another woman\\u2019s leg while wearing a yellow T-shirt and multi-colored pajamas. The room is well-lit, and there are some cream and cosmetics bottles beside the woman. The woman getting her legs shaved shakes her hand while making a fist and then shows her hands to the other woman.\", \"video_name\": \"v_tt-uDaZQWWc\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video is showing a woman wearing white who is sitting in front of a mirror and applying makeup. She then sneezes into a tissue and wipes her nose with it.\", \"video_name\": \"v_r6l4mxphtX0\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man is giving a bath to a brown dog. He wets the dog using a handheld showerhead, then uses soap and his hands to clean it. Finally, he finishes off by toweling the dog dry and lifting it off the bathtub. The video ends with a picture of the dog looking at the camera while it lays on a blue towel.\", \"video_name\": \"v_Oskk7eLgerM\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man dressed in a white shirt and black pants is seen drinking from a cup in a well-lit cafe with people sitting by tables and waiting near the counters. He is later seen dancing in the cafe while holding two cups of drinks, and then seen again dancing with his hands at his sides. A server wearing an apron and a black cap can be seen behind the service counter.\", \"video_name\": \"v_T35cHr4pjkc\"}, {\"Q\": \"Can you describe the scene of the video?\", \"A\": \"In the video, an athlete in a red outfit is getting ready for a long jump on an indoor track field with branding logos on his shirt. There are people on the periphery of the field, photographers visible, and people sitting in seating areas with red seats. During the jump, observers near the sandpit watch as the athlete jumps into the sandpit and gets up, celebrating as a referee holds up a white flag. The athlete speaks with the observers and then walks away. The video ends as another athlete wearing a yellow outfit walks to the start of the track.\", \"video_name\": \"v_Pr5K2Jh2X94\"}, {\"Q\": \"Can you describe the setting and the actions of the gymnast in the video?\", \"A\": \"The video showcases a man in a white vest and red pants performing on a pommel horse in a well-lit venue with overhead lights. There are cushioned mats around the pommel horse and people seated around tables nearby. The gymnast starts his demonstration by spinning and rotating around the pommel horse, dropping to the floor after reaching the edge, walking back to the pommel horse, restarting his demonstration, and finishing it with a handstand and a jump.\", \"video_name\": \"v_YU-dUWGOoD4\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man wearing a red shirt and trousers and holding a tool belt is standing by a window in a dimly lit room. He speaks to the camera, gestures towards the window and then cleans it using a spray bottle and a cloth while parked cars and a house across the street are visible.\", \"video_name\": \"v_zRqJZ0u6f88\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a girl is seen wearing a blue outfit and participating in a discus throwing competition during the daytime. She stands in a throwing circle within a practice net with trees visible at the back. Beginning her throw by swinging her arm, the girl spins to throw the discus and eventually jogs away from the throwing circle.\", \"video_name\": \"v_QY3q4DuiGq8\"}, {\"Q\": \"What are some of the activities captured in the video?\", \"A\": \"The video shows a woman and a man engaged in a game of squash in a squash court. An instructor is also teaching two men how to play squash, and several other people are also seen learning how to play the game. The video ends with some text and a web address 'bu.edu/fitrec'.\", \"video_name\": \"v_X9Y-b-SbkIU\"}, {\"Q\": \"Can you describe the scene depicted in the video?\", \"A\": \"The video shows a man wearing a black full-sleeve shirt and glasses playing a violin in a well-lit venue. An altar lit with electric candelabras is visible on the wall to the left of the man. He is interrupted during his performance but continues to play until he finishes and takes a bow before stepping back.\", \"video_name\": \"v_uub0z8wJfhU\"}, {\"Q\": \"What happens in the video with the woman holding a violin?\", \"A\": \"The video features a woman in a well-lit room with white walls, holding a violin. She wears a dark blue printed top and stands next to a black table with books and photo frames behind her. In the background, there is a dining table, a chandelier, a fridge, and a microwave in the kitchen with brown wooden shelves. She starts playing the violin, briefly stops, and then plays again before the video ends.\", \"video_name\": \"v_X5kj4fZ38rc\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video shows a woman in a bedroom applying makeup on her eyebrows, eye shadow, eyeliner, lower eyelid highlights, and liner on her lips. It ends with her holding a gun to a man she pulled from her left.\", \"video_name\": \"v_rGOOlcdpfLg\"}, {\"Q\": \"Can you provide a summary of the bartender making a Bloody Mary drink?\", \"A\": \"The video features a bartender explaining and demonstrating how to make a Bloody Mary drink. He wears a dark grey sleeveless coat, a white shirt, and a black tie, and stands behind a bar counter with many bottles on the shelf and some bottles and glasses in front of him. He adds ingredients to a cocktail mixer and then adds ice from beneath the bar counter, mixes the drink, strains it into another glass with ice, and finally garnishes it. The video ends with a close-up of the drink and a text display of \\\"Bloody Mary\\\".\", \"video_name\": \"v_fMVuGUBs2cs\"}, {\"Q\": \"Can you describe the setting and activities shown in the video?\", \"A\": \"The video shows a group of boys wearing white martial arts uniforms practicing in a dirt field surrounded by trees and parked trucks. Two boys are demonstrating martial arts movements while standing apart from the group, and after they finish, they turn left and bow while the other students clap.\", \"video_name\": \"v_PSB1nM3QXxg\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a group of boys playing racquetball in a well-lit court with a light wooded floor and white walls. One of the boys accidentally hits another boy in the head with the ball, causing him to fall down and hold his head.\", \"video_name\": \"v_TKgU9QJXw2w\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a girl participates in a gymnastics competition and performs on a high bar. She swings and jumps from the high bar, and also moves to a smaller high bar next to it. She performs a handstand and lands on the mat in the end.\", \"video_name\": \"v_WAvz9zHwWo4\"}, {\"Q\": \"What happens in the beginning of the video?\", \"A\": \"The video starts with a bright light on the stage and the audience screaming. There is a bright light on the stage with two mic stands and music systems on the edge of the stage. There is smoke on the stage. There is a man standing in the bright light with a musical instrument. A big white ball is thrown on the stage. The man leaves the frame. \", \"video_name\": \"v_uIcMgjypbqk\"}, {\"Q\": \"What are the events captured in the video?\", \"A\": \"The video shows a group of four boys and a girl standing on the street during the daytime. One of the boys is sitting on the sidewalk holding a camera, while a girl wearing a white top and black shorts is hopping on the ground in front of the others. She later walks back to the others and the video ends as the boy with the camera gets up from the sidewalk.\", \"video_name\": \"v_vaV6_bxiTLI\"}, {\"Q\": \"What happens in the beginning of the video?\", \"A\": \"The video starts with a running TV in a dimly lit room showing an advertisement featuring a girl in a white outfit smearing her face with white foam with both hands.\", \"video_name\": \"v_z-EPAHsmTMA\"}, {\"Q\": \"Can you describe the performance in the video?\", \"A\": \"In the video, ballet dancers wearing white and black dresses perform a routine on the stage. The performance starts with a girl in a white ballet dress kneeling on stage, followed by other ballet dancers. A boy later enters the stage and dances around the dancers wearing black dresses. Towards the end, girls wearing white ballet dresses kneel and touch their foreheads to the ground before beginning to dance.\", \"video_name\": \"v_pJ3sECWr5Xg\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, we see a man performing a gymnastics routine on a beige-colored pommel horse. He spins his body while holding onto the handles, but unfortunately, he misses a hold and drops to the ground. After applying chalk to his hands, he restarts the routine and performs a few spins, a handstand, and drops back to the ground.\", \"video_name\": \"v_vI-O6QWIIGU\"}, {\"Q\": \"Can you describe the process shown in the video?\", \"A\": \"The video shows a woman wearing a black top gift-wrapping a box with peach-colored cloth on a wooden table. She covers one end of the box with the cloth and then covers the other end while folding it. Then she ties a knot using the remaining two sides of the cloth. The video ends with a text and web address being displayed.\", \"video_name\": \"v_XPiMnbCr-sc\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a man wearing a Scottish kilt and a beret playing the bagpipe outside during the daytime. There are people around taking photos and watching him. A little boy and a man taking pictures are also present. The man continues to play as the camera pans to show different people coming to watch him, and the video ends with people still standing in front of the musician who has stopped playing.\", \"video_name\": \"v_w_CXbraJr58\"}, {\"Q\": \"Can you describe the process shown in the video of shaving a beard?\", \"A\": \"The video depicts a man in a well-lit room wearing a black T-shirt shaving his beard and neck using two different trimmers and a razor. He starts by trimming the left side of his face and then switches to a different trimmer to shave his neck before switching back to the first trimmer. After trimming, he applies shaving foam before using a razor for a closer shave. Finally, he wipes his face with a cloth and applies aftershave.\", \"video_name\": \"v_ZLJ2BmBkLJg\"}, {\"Q\": \"Can you describe the game of volleyball played in the video?\", \"A\": \"The video showcases a game of volleyball played indoors on a well-lit court with a light wood floor and white and grey walls. A man wearing black sleeveless t-shirt and red shorts serves the ball on the left side of the court and then stands inside the left court. The team on the right side misses the hit and the ball is returned back to the left side, where the same person who served the ball before does it again. As both teams continue to exchange hits, the team on the right misses the return hit and loses the exchange. The video ends as the players stop playing.\", \"video_name\": \"v_Sf27WmcLb2w\"}, {\"Q\": \"Can you describe the setting and characters in the video?\", \"A\": \"The video features two newscasters seated behind a newsdesk with tablets and wireless mice. They are in a well-lit studio and are reporting on health news. Additionally, there are a man and a woman shoveling snow in different scenes, with the reporter interviewing them and following the directions of another woman on how to use a shovel.\", \"video_name\": \"v_vSv1qMMt4Bk\"}, {\"Q\": \"What can you tell me about the video?\", \"A\": \"The video shows window cleaners dressed as Batman and the Hulk cleaning the glass windows of a building while wearing harnesses tied to the roof. Children in hospital gowns and other adults watch from inside the building. A little boy wearing a hospital gown is standing next to the windows inside the hospital, observing the window cleaners clean the glass. The cleaners are interviewed later and the video ends with them being lowered onto the ground.\", \"video_name\": \"v_p9lhwYsBWdc\"}, {\"Q\": \"Can you describe the process shown in the video?\", \"A\": \"The video shows a woman getting her ears pierced by another woman wearing transparent gloves using an ear-piercing gun. After piercing both earlobes, the technician secures the studs from behind the ears and the video ends with close-up shots of the pierced ears. The woman getting her ears pierced is sitting on a chair in a well-lit store that has clothes and bags hung on racks on the back wall. There is also a water bottle on her right.\", \"video_name\": \"v_ZrSK-fisXGg\"}, {\"Q\": \"What's the video about and what happens in it?\", \"A\": \"The video shows a man applying a clear solution to a woman's nail while other people sit around the table. The man in the camouflage pattern shirt applies the solution to each finger, and the video ends when he finishes and places his left hand on the table.\", \"video_name\": \"v_p07Y--q4JQw\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a man practicing Tai chi with his master who is wearing a black Tai chi uniform. They are outdoors and music is being played in the background. The student wearing a white Tai chi uniform attacks his master and he defends it. The master then attacks his pupil and he defends it. The frame then changes to the master performing some Tai Chi movements accompanied by text on the screen. The master moves both his hands forward and backward, and the video ends with the master putting both of his hands in the front.\", \"video_name\": \"v_TsHek6oZYXU\"}, {\"Q\": \"Can you describe what is happening in the video?\", \"A\": \"In the video, a girl is getting a star tattoo on the right side of her stomach from a tattoo artist using a henna cone. The girl wears a blue shirt and holds up her shirt as the tattoo artist works. The video was shot in a mall tattoo stall with other people visible in the back. The video ends with a close-up view of the finished tattoo.\", \"video_name\": \"v_QN-4aLiDhiQ\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a man rock climbing. He falls down from the top of the rock wall while being tied by a rope to a woman who is holding it and is standing in a forest with some other people sitting on her right side. \", \"video_name\": \"v_UGWOtDmIcns\"}, {\"Q\": \"Can you describe the events in the video about the foil racing competition?\", \"A\": \"The video shows a man in a blue wetsuit speaking on a handheld radio in a boat. Next, it shows a red bull branded foiling catamaran preparing for a race along with several other catamarans with different brand names. The race takes place on a foggy day with several observer boats present. The team on the red bull branded catamaran wins the race and the video shows various shots of the race from different angles.\", \"video_name\": \"v_PNuJUYo3Hf8\"}, {\"Q\": \"Can you describe the process of cleaning Uggs shown in the video?\", \"A\": \"The video showcases a woman cleaning her Uggs using products from the Uggs care kit. She stuffs the Uggs with tissue paper, brushes them, wets them using a sponge and water, dilutes water with Ugg cleaner and conditioner and applies this mixture to the boots using a sponge. She repeats the brushing process and applies Uggs protector and freshener to the boots.\", \"video_name\": \"v_TMAXjnsN0Mk\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, we see a group of people in orange T-shirts standing in a field surrounded by trees. A little boy kicks a ball that comes towards him, and a person in a red T-shirt runs towards him. The girl in the red T-shirt follows the girl, who kicks the ball as she runs away. Other people are visible throughout the field, and a man in a white cap turned backward has a camera in his hands. We also see a girl wearing an orange t-shirt who speaks to the little girl and takes her back to the line. The video ends with the girl in a red t-shirt again throwing the ball toward the girl and running toward her.\", \"video_name\": \"v_skr8x0kUVwg\"}, {\"Q\": \"What is happening at the beginning of the video and who is on the field?\", \"A\": \"The video starts with players on a hockey rink during the daytime wearing full gear and doing drills.\", \"video_name\": \"v_YnjITZnk6OE\"}, {\"Q\": \"Can you describe the setting and actions in the video?\", \"A\": \"The video shows a chef in a well-lit restaurant kitchen wearing a white coat, pointing toward ingredients on a metal table. He then adds spaghetti to boiling water and stirs it with tongs while another man passes behind him.\", \"video_name\": \"v_UNJTM62HyqQ\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man is practicing hammer throwing in a daytime setting while inside a practice net. He swings the hammer a few times before spinning and throwing it through the open end of the practice net.\", \"video_name\": \"v_SEVVSei-r6w\"}, {\"Q\": \"What happens in the video and where does it take place?\", \"A\": \"The video shows a woman wearing ballet clothing performing ballet steps while laying on the stage floor and standing on her toes while moving both her hands. She performs in an empty theatre with many lights and chandeliers. There are speakers mounted in various places, including on both sides of the stage and the edge of the galleries. The performance concludes with her laying on the floor.\", \"video_name\": \"v_UaO7bS5Ky6M\"}, {\"Q\": \"What is happening at the beginning of the video?\", \"A\": \"At the beginning of the video, a woman is getting her shoe cleaned in front of a shop with a glass display case. A man is cleaning her shoe with a cloth while the woman is holding a glass of beer and dancing. The woman seems to be enjoying the experience.\", \"video_name\": \"v_wEehiYq9ttE\"}, {\"Q\": \"What can you tell me about the video?\", \"A\": \"The video showcases a woman wearing a white t-shirt washing clothes with the help of a little boy. The room is well-lit with sunlight streaming through an open door. There is a green tub with water and soaked clothes placed on a counter. The woman and the boy are seen removing clothes from a bucket, and the woman later speaks to the boy while pointing at the tub. The video ends with the boy waving goodbye.\", \"video_name\": \"v_rklYNAAaI3Y\"}, {\"Q\": \"Can you describe the setting and the activity in the video?\", \"A\": \"In the video, three women wearing white vests and track pants are seen exercising on aerobics steps in a dimly lit studio with a black floor. The back of the studio is darkened and monitors displaying a logo can be seen on the wall. The woman in the front is the instructor and the video ends with the women still working out.\", \"video_name\": \"v_ZVjLscGMOs8\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man is washing a plate in a well-lit kitchen with white walls. Another person wearing a striped t-shirt walks behind the man and taps him twice before walking away. The man washing the dishes laughs before the video ends. There is also a noticeable potted plant next to the sink.\", \"video_name\": \"v_z6pmp8TrAVo\"}, {\"Q\": \"What happens in the video?\", \"A\": \"A woman dives from the second level of a diving platform into an indoor swimming pool with overhead lights while people are visible near the bottom of the diving board.\", \"video_name\": \"v_vzUeFzhVYLg\"}, {\"Q\": \"What happens in the video with two girls on a well-lit racquetball court?\", \"A\": \"The two girls wear white T-shirts and shorts and safety glasses. They play racquetball, hitting the ball on the wall, with both of them missing a few times. One gets the ball to serve after the other misses. The video ends with both girls stopping and shaking hands.\", \"video_name\": \"v_wFVukrQfQhI\"}, {\"Q\": \"Can you describe what is happening in the video?\", \"A\": \"In the video, an old man is seen exercising on an exercise bike in a well-lit bedroom with white walls and wardrobes visible on the left side. He is wearing a white t-shirt and track pants. There are photos hung on the right wall and an open door is visible a few feet behind the man. He pedals the bike for a while and then stops.\", \"video_name\": \"v_rOtmhurweqo\"}, {\"Q\": \"What does the video mainly show?\", \"A\": \"The video shows a team of girls wearing black and pink uniforms playing lacrosse on a field during the day. The video includes a montage of different lacrosse games, following a player with a number six uniform as she takes the ball from others or scores goals, and ends with a slideshow of group photos of the lacrosse team.\", \"video_name\": \"v_RXT17X7lRoQ\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a man skateboarding on an empty road during the daytime. He falls off his skateboard and the cameraperson skates past him before the camera is covered and then removed.\", \"video_name\": \"v_YOk1cMsyk88\"}, {\"Q\": \"What does the man do before throwing the discus?\", \"A\": \"The man stands in a throwing circle and begins the discus throw. Before throwing, he spins a few times.\", \"video_name\": \"v_qmHjHk0Hzz8\"}, {\"Q\": \"Can you describe the scene in the video?\", \"A\": \"In the video, a team of dodgeball players are waiting on a basketball court in a school gymnasium while children sit on the sidelines. An American flag is hung on the wall behind them, and a man records them with his phone. The game begins with the placing of dodgeballs in the center of the court, and two teams wearing blue and yellow t-shirts respectively run to the balls. The game ends with a player from the blue team being helped up by the referee.\", \"video_name\": \"v_rc-DiL5er28\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a high jump competition with different participants attempting the jump, wearing different colored vests and shoes. The first participant who wore a red and green vest won the competition and the video showed the standings of all participants in the end.\", \"video_name\": \"v_fM5egP_1DvQ\"}, {\"Q\": \"Can you describe the process the man in the video follows to make a cocktail?\", \"A\": \"In the video, the man wearing a black polo shirt and shorts places a cocktail mixer on the left side of the camera. He starts making a cocktail by adding some ice cubes, and then pours Jin and other liquors into the mixer. He also adds some fresh-squeezed lemon juice into the mixer before shaking it vigorously. Finally, he pours the cocktail into cocktail glasses and takes a drink.\", \"video_name\": \"v_R_JKmGmURvA\"}, {\"Q\": \"Can you describe the process of making the cocktail in the video?\", \"A\": \"The video shows a bartender adding cucumber slices to a glass and crushing them with a wooden pestle. Then, he measures a cap of Bombay Sapphire Gin and pours it into the glass. He retrieves a bottle of St. Germain liquor and adds a cap of it to the glass. He tops it off with lemon juice, ginger syrup, and elderflower syrup. Finally, he adds some egg whites to the glass, covers it with a cocktail mixer, and shakes it vigorously. He then pours the mixture into a glass and adds some ice cubes. The cocktail is finished with a slice of cucumber and a straw.\", \"video_name\": \"v_vIQPDP8jW8A\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is demonstrating how to shovel snow while standing outdoors and wearing winter weather clothing. He scoops a large pile of snow and throws it to the side, repeating the process a few times before ending the demonstration.\", \"video_name\": \"v_-pkfcMUIEMo\"}, {\"Q\": \"What is happening in the video with the man in the flannel shirt?\", \"A\": \"In the video, the man in the flannel shirt is building a campfire in a grassy field during the daytime. He arranges firewood and crumpled newspaper, adds table salt and white pepper powder, then lights the paper using a lighter before pouring gasoline on the arrangement and setting the firewood ablaze. The video ends as he stands next to the campfire and speaks to the camera.\", \"video_name\": \"v_VhdidrZKuTU\"}, {\"Q\": \"Can you describe the events in the video?\", \"A\": \"In the video, a man wearing a black vest and track pants performs a routine on the pommel horse in an indoor arena with other athletes and spectators watching. He loses balance in the middle of his routine but manages to get back up after applying chalk to his hands. The video ends as he successfully does a handstand and lands on the floor.\", \"video_name\": \"v_W4mJsJGa0CY\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a girl gets her ears pierced by a technician while sitting in a store with clothes and jewelry on sale in the background. Initially, the girl is afraid, but she calms down and lets the technician pierce her ears, one at a time. Two girls can be seen playing in the background as this happens, and the video ends with the girl sitting in the chair looking excited.\", \"video_name\": \"v_TkhUtx0Eyfw\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a group of boys are dancing in an alley with white gloves and a black umbrella as a prop, while a group of people watch and cheer them on.\", \"video_name\": \"v_Q3ZNFGE8PZE\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"Two girls are sitting in a dimly lit living room and combing their hair while talking to each other and the camerawoman. One girl accidentally pulls the hair of the other while combing and then the same thing happens when the other girl tries to comb her friend\\u2019s hair causing the video to end.\", \"video_name\": \"v_QriYk3MKSnM\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is about a man in a gym, wearing a white and black t-shirt who attempts to lift a barbell while someone in the background is lifting weights, and he speaks to the camera afterwards.\", \"video_name\": \"v_x90zpDHTpjQ\"}, {\"Q\": \"What does the video depict?\", \"A\": \"The video shows a pole vaulting competition that takes place both during the daytime and nighttime. Various athletes wearing different colored vests and shorts are seen vaulting over a bar. The video concludes with athletes standing on medal podiums wearing wreaths.\", \"video_name\": \"v_X4J9UBXb0FM\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"The video starts with a man wearing a striped blue and black t-shirt and shorts ironing a blue and white Hawaiian shirt on an ironing board in a well-lit room.\", \"video_name\": \"v_zXHyFBrj5Ag\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a pole vaulting competition on a track field during the daytime. Athletes run and then vault over a bar, landing on a cushion mat on the other side. Replays are shown after each athlete completes their run, and the video ends with stats of the athletes.\", \"video_name\": \"v_PwRqqR1YmPM\"}, {\"Q\": \"Can you describe the activities the girl does in the mall?\", \"A\": \"The girl in the video is shown entering a mall, browsing makeup in a shop, getting makeup applied by a beautician, getting her nails painted with flowers, holding up the painted nails to the camera and speaking to it several times, and finally standing near an escalator and speaking to the camera.\", \"video_name\": \"v_peiF2E05u8g\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video depicts motorcyclists performing stunts and jumps on a dirt bike track in a forest, while wearing off-road gear and helmets. Additionally, it shows a motorcyclist falling and giving a thumbs up to indicate he is okay, and ends with another motorcyclist riding the track and performing jumps with music playing in the background.\", \"video_name\": \"v_GChGC-VJZHs\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, four people are playing volleyball on either side of a volleyball net during the daytime. A woman wearing a blue vest over a red top is on the sideline while the men play. The game continues as they pass the ball back and forth until it ends and a few people come into frame.\", \"video_name\": \"v_Ur_ToogEkCA\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video shows a woman and her friends kayaking in a river between canyons. They also ride other watercrafts, such as a houseboat, a jet-ski, and a motorboat.\", \"video_name\": \"v_YAKXrBinGD4\"}, {\"Q\": \"Can you describe the man\\u2019s routine on the parallel bars?\", \"A\": \"The man wearing a dark blue vest and pants performs a routine on the parallel bars which includes jumps, a handstand, a sitting position with his legs parallel to the ground, and finishes up with another handstand before jumping down to the ground.\", \"video_name\": \"v_qU4GmCN2e1Y\"}, {\"Q\": \"What are the main events in the video?\", \"A\": \"The video shows a man windsurfing on a beach. He attaches the sail to his board and starts windsurfing across the beach water. He falls from his board while windsurfing.\", \"video_name\": \"v_FqYhC6_CMfI\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a Zumba class is being conducted in an indoor basketball court for children and the instructor leads the class with different moves and dances. The instructor is standing on a raised platform and wearing a green top and khaki pants. The video ends with the instructor walking down the platform after ending the class.\", \"video_name\": \"v_s9PkkDEl6aY\"}, {\"Q\": \"What happens at the beginning of the video?\", \"A\": \"The video starts with text on a white screen.\", \"video_name\": \"v_ROrLMf0zXko\"}, {\"Q\": \"Can you describe the setting and actions in the video?\", \"A\": \"The video shows a man playing tennis on a court during the daytime. He is wearing a grey sleeveless shirt and blue shorts. The tennis court is surrounded by a chainlink fence and there are trees visible in the background. In the video, the man picks up a tennis ball from a basket, bounces it on the ground a few times, and serves it. The man takes a few steps forward as he serves the ball. There is also a slow-motion and normal-speed replay of the man serving the ball shown.\", \"video_name\": \"v_W6fPv5eoXC4\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows an antique store and its different parts. It features a man and woman speaking to the camera, men restoring pieces of furniture, and different equipment and tools used in the store.\", \"video_name\": \"v_zB8knKX0W8Q\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a shirtless man is giving a haircut to a boy outdoors in the daytime while a little girl walks by. The boy is covered with a white cape and they are on a sidewalk with plants and parked cars in the background. The barber hands the boy a mirror to check his haircut and uses a comb, scissors, and a trimmer to cut his hair.\", \"video_name\": \"v_OlykXdYeQOI\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man shovels snow outdoors during the daytime while wearing a black sweater and jeans. He clears a small area and speaks to the cameraman before slinging the shovel over his shoulder. There are visible trees and a snow-covered roof in the background.\", \"video_name\": \"v_PdwWFueQErM\"}, {\"Q\": \"What does the video depict?\", \"A\": \"The video shows a woman lawn-mowing a grassy lawn covered with wooden walls. She is wearing white vest, grey trousers and white sports shoes. The woman is mowing the lawn by moving the lawnmower and turning it, leaving some grass on the sidewalks. There is also a white dog on the lawn. The video ends as she gives the cameraman a thumbs up.\", \"video_name\": \"v_TZOhIMjwEE8\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video depicts a group of women in an aerobic class doing workouts while following the instructions of a trainer who is wearing a grey vest, black cap, and black shorts with sports shoes. The studio is well-lit, has mirrors on half of the walls, silver gym balls kept on a shelf, and a black speaker mounted on the wall to the right of the women working out. One of the women in the back row, who is wearing a black t-shirt and pants, is missing steps while performing the routine. The video ends with the instructor clapping and calling for the class to stop.\", \"video_name\": \"v_GH0Umpw6tME\"}, {\"Q\": \"What is happening in the first clip of the video?\", \"A\": \"In the first clip of the video, a woman wearing a white top is applying lipstick in a well-lit room, sitting in front of a mirror with light streaming from her right.\", \"video_name\": \"v_UvOEuhS0V3E\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video showcases a woman doing ballet in a white room and on stage while being filmed. It features a closer view of the woman as she dances, and ends with a shot of her face and a logo for Under Armor.\", \"video_name\": \"v_ZY0cdXr_1MA\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video features Lakshmi Rebecca, who is first seen sitting in a garden speaking to the camera, and then later in a beauty salon. She is joined by a beautician named Swathi Gupta, and together they apply makeup to a customer. The video ends with Lakshmi speaking briefly and the credits rolling.\", \"video_name\": \"v_QOaPQpXemCA\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a girl in a pink t-shirt plays badminton with someone else in a well-lit venue while other people are present. They both miss the shuttlecock and a child on the side picks it up and throws it at the girl. The camera shows people sitting on the chairs and one of them smiles. The girls continue to play but keep missing the shuttlecock.\", \"video_name\": \"v_ZK4Y6nOton8\"}, {\"Q\": \"Can you describe the scene depicted in the video?\", \"A\": \"The video shows a male athlete wearing a blue vest, black shorts, and red sports shoes about to perform a long jump in a stadium with other male athletes and some female athletes walking on the track behind him. The stadium is surrounded by many trees and has orange and black seats. The athlete runs on the track and jumps on the sandy area while people measure the distance he jumped.\", \"video_name\": \"v_uCvjzcVCtEs\"}, {\"Q\": \"Can you describe the scene in the bedroom at the beginning of the video?\", \"A\": \"At the start of the video, text appears on a blue screen and then we see a well-lit bedroom where a boy named Ivan is sitting on a chair in front of a table with a computer on it. Another boy named Oscar is standing behind him and combing Ivan's long hair.\", \"video_name\": \"v_zoWqv-sIdBY\"}, {\"Q\": \"Can you describe the scene portrayed in the video?\", \"A\": \"The video features a man windsurfing on a red board with an attached sail, wearing a life vest and sunglasses. The shore is visible with rock faces and buildings in the distance, while trees and green hilly land can be seen on the shore. There are also other windsurfers visible in the sea.\", \"video_name\": \"v_qmfZw9eEpIU\"}, {\"Q\": \"Can you describe the actions and surroundings depicted in the video?\", \"A\": \"The video shows a girl in a blue shirt washing her hands at a sink with a mirror on top and toiletries scattered around. Another person wearing a grey sweatshirt is standing next to her holding a notebook and a pen while another person in a red top records on a phone. The girl pumps soap from a dispenser and looks back before the video ends.\", \"video_name\": \"v_tLk0Y04OaCA\"}, {\"Q\": \"Can you describe the training activities of the man in the video?\", \"A\": \"The video shows a man training shotput in an empty field. He throws the shotput multiple times while spinning and turning before throwing. There is also a clip of him lifting weights in a gym.\", \"video_name\": \"v_VWGV8I5byKI\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows four men playing squash on a well-lit wooden floor court, predominantly focusing on an old man wearing a black t-shirt hitting a ball with three other players. The men all wear shorts and sports shoes. One of the players, wearing a red polo shirt hits the ball on the glass door, bounces it to the other side, and the video ends as he taps his raquet on the glass door in front of the camera.\", \"video_name\": \"v_sNJ6_N0j9Ts\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man wearing a red shirt and black pants is practicing hammer throwing in a field. He swings the hammer around and spins it before throwing it through a practice net. A man also appears in the frame walking towards the net.\", \"video_name\": \"v_t13MQSYjlas\"}, {\"Q\": \"What is happening in the gym at the beginning of the video?\", \"A\": \"The video begins in a dimly lit gym with people on exercise bikes and a man at the front calling out instructions as he also pedals an exercise bike. People on the bikes can be seen following his instructions.\", \"video_name\": \"v_syfyM1Pble8\"}, {\"Q\": \"Can you describe the events that happened in the video?\", \"A\": \"In the video, two boys dressed as Santa and Elves were dancing in a mall in front of a Christmas tree. They also posed for a picture with a girl wearing a black t-shirt and two other girls. The video ends with the display of some text on a digital page.\", \"video_name\": \"v_u0A5NIUKEQo\"}, {\"Q\": \"What are some of the diving maneuvers that Michal Navratil performs in the video?\", \"A\": \"The video shows Michal Navratil doing different diving maneuvers from the diving board, such as tucks, twists, and forwards dives.\", \"video_name\": \"v_-vnSFKJNB94\"}, {\"Q\": \"Can you describe the events that took place in the video of female athletes?\", \"A\": \"Certainly. The video features female athletes performing pole jumps and long jumps in a well-lit stadium with an audience. Their outfits are described as red crop tops, red bikini bottoms, red sports shoes, purple crop tops, grey bikini bottoms, and white sports shoes. Slow-motion replays are shown for both athletes and they both successfully land their jumps. The video also features a women\\u2019s triple jump event in a sandy area with officials and athletes present. Replays are shown for their jumps as well.\", \"video_name\": \"v_Ws12Dt0Ny5Q\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a female athlete is seen competing in a hammer throw competition in a stadium. She is wearing a red and white short vest, blue shorts, and black sports shoes. There is also a man in a blue tracksuit standing nearby. The video ends with the hammer falling on the grassy field where people wearing the same uniform are standing and walking towards it.\", \"video_name\": \"v_tY9dmG6IyPo\"}, {\"Q\": \"What is happening in the woodworking shop?\", \"A\": \"A man is using steel wool to apply wax on a wooden table before using a car buffing wheel to polish the section he waxed, and then using a wet rag to give the surface a buff. There are also other wooden planks and furniture visible in the shop, and a wooden chair is placed on a table behind the man who is wearing a white apron over a white t-shirt, glasses, a cap, and a blue glove over his right hand.\", \"video_name\": \"v_wJk3KOUAwXA\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a woman getting a tatoo on her earlobe while lying on a retractable bed with a white sheet on it. The tattoo artist marks and cleans her ear before proceeding with the tattoo. The technician is using a tattoo gun and the artist finishes by cleaning the ear.\", \"video_name\": \"v_wh4JNeQh9FQ\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, two men are seen in a dark room seated on a sofa. One is smoking a hookah while the other is on his mobile phone. They exchange the pipe, smoke and blow smoke rings, and hold up their blackberries. Finally, the man on the right turns off the camera.\", \"video_name\": \"v_WdJUMmy2ox8\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows a girl riding a horse in a riding arena during the daytime, leading the horse through various obstacles and jumping over them. Other riders are also present in the arena.\", \"video_name\": \"v_ooFuSspUuVY\"}, {\"Q\": \"Can you describe the outfit and personality of the belly dancer in the video?\", \"A\": \"In the video, a belly dancer wearing a sparkling turquoise-colored dress performs on stage. She moves her hands and twists her body gracefully around the stage while music plays in the background. The audience gives her a standing ovation at the end of her performance.\", \"video_name\": \"v_tXUssW4vT3o\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video depicts an indoor cycling class being instructed by a woman wearing a black T-shirt and a microphone. The class takes place in a well-lit gym with white walls and a grey floor. The video also includes an interview with one of the participants, clips of people exercising from different angles, and a demonstration on how to change the resistance on the exercise bike. The video ends with clips of people on different exercise machines.\", \"video_name\": \"v_TGIQtaINzCY\"}, {\"Q\": \"What are the main scenes in the video?\", \"A\": \"The video shows a white building from the outside, the inside of a ballet studio where children practice, a girl speaking from inside a well-lit studio, children walking through the school, and a boy and a girl dancing in a studio as other children watch.\", \"video_name\": \"v_ZUl43hNzGjA\"}, {\"Q\": \"Could you describe the setting of the video?\", \"A\": \"The video shows a man in a study with a shelf behind him that has a fax machine and stack of papers in the top row, while the rest is filled with books and boxes. A woman wearing a sweater over a red outfit briefly looks at the camera before walking away. The man shaves his beard, including his mustache, and the woman sits down at a desk with a computer in the background.\", \"video_name\": \"v_sBwUwgTjhAU\"}, {\"Q\": \"Can you describe what the woman is doing in the video?\", \"A\": \"In the video, a woman wearing a grey shirt is seen ironing a green piece of clothing on an ironing board. She turns the fabric inside out and lays it flat on the ironing board, irons it with slow circular motions, pulls the fabric and irons the next section, before pulling the fabric off the ironing board and holding it up at the end.\", \"video_name\": \"v_WCS8dzRT7Xk\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows two ping-pong players playing a game in a well-lit arena. A man wearing a jacket and khaki pants is also sitting near the separator of the court. The video also shows a player with one hand recorded during matches. The matches are held in different courts.\", \"video_name\": \"v_wjr5M-6qEWI\"}, {\"Q\": \"Can you describe the performance of the female gymnast on the balance beam?\", \"A\": \"In the video, the female gymnast, wearing a sparkling red gymnast costume, performs a routine on a balance beam in front of spectators. She performs flips, balancing acts, and jumps. She falls twice but manages to complete her performance, receiving cheers from the crowd.\", \"video_name\": \"v_GOF5guH_kuI\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a group of cheerleaders wearing blue uniforms along with two boys enter a hall with white and maroon walls. They perform various cheerleading stunts including lifts, cartwheels, and flips in front of an audience. The video ends with the group doing cheerleading dance steps and the audience applauding them.\", \"video_name\": \"v_uqwf903l5-E\"}, {\"Q\": \"Can you describe the kayaking scenes displayed in the video?\", \"A\": \"A man wearing a red lift vest over a black shirt and another wearing a blue lift vest are seen kayaking down a stream with various other kayakers. Shots from different perspectives are shown as they navigate the river, passing by lush greenery and rapids. The video ends with the kayakers continuing down the stream.\", \"video_name\": \"v_zxr6UZKPDh4\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is about a woman belly dancing while balancing a lit candelabra on her head.\", \"video_name\": \"v_SNJgJB2PGdI\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video features a boy playing the violin while his surroundings change, and other people join behind him. He also takes selfies with a girl before handing a stuffed animal to her at the end.\", \"video_name\": \"v_Zhx6BYVb64g\"}, {\"Q\": \"What are the different scenes depicted in the video?\", \"A\": \"The video showcases a man performing various martial arts movements in different settings including a well-lit studio, a white-walled room with darkened windows and an indoor venue with people observing him. There is also a scene where the man is performing outdoors on the lawn with people standing a few feet away.\", \"video_name\": \"v_oncTwYfvCD8\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is about cricket games being played in various locations, including the beach, homes, and stadiums. The video shows clips of both professional players from the Australian cricket team and regular people playing cricket. The video begins with two women sitting on the beach, followed by a man rolling up a carpet inside a house, then a woman with a cricket bat preparing to bat on the beach. The video ends with a child standing near the stumps and getting ready to bat. \", \"video_name\": \"v_yttmx8mcjGw\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is about a group of women in a hair salon who are attaching hair rollers to their hair and later removing them to style their hair while looking at mirrors.\", \"video_name\": \"v_wcxEkMoOmBk\"}, {\"Q\": \"Can you explain what happens in the video?\", \"A\": \"The video shows the process of using currency notes to wrap a gift. Scotch tape is used to tape the notes onto the gift to make it look like gift wrapping. A green string is tied around the gift and bows are added to complete the look.\", \"video_name\": \"v_zEttEkAdHts\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"A girl wearing a black hoodie and jeans skirt is seen at a stone dipper well, where she washes her hands and leaves after using the ladles arranged on top of the dipper.\", \"video_name\": \"v_z3MP0yJBtGg\"}, {\"Q\": \"Could you describe the process shown in the video?\", \"A\": \"In the video, we see a woman wrapping a box with a pink and green cloth. She carefully brings the edges of the cloth together over the box and ties them together.\", \"video_name\": \"v_Omvg9UtGOes\"}, {\"Q\": \"What happens in the video?\", \"A\": \"People are seated at tables in a ballroom, an orchestra starts playing music, a man and a woman waltz and perform various dance moves and steps, and they separate and bow to the audience and orchestra.\", \"video_name\": \"v_oni9K1_MCuw\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows people smoking an e-cigarette, including a woman in a black coat and blue top, a man wearing a checkered shirt and glasses, and a montage of different people. A woman wearing a red outfit and hat is also shown standing next to most of the people.\", \"video_name\": \"v_Rn6_IwckXg4\"}, {\"Q\": \"Can you give me an overview of the video on gift-wrapping?\", \"A\": \"Sure. The video shows a woman wrapping small and large boxes with gift-wrapping paper and tape on a wooden table in a well-lit room. There are also some mathematical formulas shown on a white paper and an Excel sheet. At the end, the woman places all the gift-wrapped boxes on the table.\", \"video_name\": \"v_TNqc2yWZztE\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video starts with a man wearing blue shorts and holding a vacuum cleaner in a well-lit room with white walls. He turns on the vacuum and cleans the dust on the floor. He then turns off the vacuum and leaves the frame. There is a glass table with golden stands to the left of the man that has photo frames on it.\", \"video_name\": \"v_UNXLfqkwKFc\"}, {\"Q\": \"What are some of the activities that the groomer does to the golden retriever in the video?\", \"A\": \"The groomer lathers the dog, washes him with a hose, dries him with a towel and a blow-drier, wipes him with a towel, and brushes his coat.\", \"video_name\": \"v_W9H2qVnIWXs\"}, {\"Q\": \"Can you give me a brief overview of the video?\", \"A\": \"Sure! The video starts with a man wearing a red t-shirt climbing a rocky hill during the daytime. He has a chalk pouch and rope with him. The scene then shifts to a view of the city with buildings visible in the background. The man then rappels down the hill with a yellow metal staircase visible to his right, and a woman belaying the rope at the bottom. He also removes the anchors as he descends.\", \"video_name\": \"v_ZxPF3s_OLDo\"}, {\"Q\": \"What color is the gift wrap used to wrap the box?\", \"A\": \"The woman wraps the box with an orange gift wrap.\", \"video_name\": \"v_Mf3IyeMF8ug\"}, {\"Q\": \"What is the man wearing and what is he holding?\", \"A\": \"The man is wearing a white t-shirt and is holding a pipe from a hookah.\", \"video_name\": \"v_mNiFmkm5OZA\"}, {\"Q\": \"What ingredients are used in making the furniture polish?\", \"A\": \"The woman uses olive oil and lemon juice to make the furniture polish.\", \"video_name\": \"v_MbjyQGdTtK8\"}, {\"Q\": \"What is the color of the jerseys worn by the two opposing teams playing hockey?\", \"A\": \"One team is wearing a maroon jersey with numbers on the back and black shorts, while the other team is wearing a red jersey with numbers on the back and black shorts.\", \"video_name\": \"v_Gvc1z9qypFQ\"}, {\"Q\": \"What is the man in the blue t-shirt doing on the sailboat?\", \"A\": \"The man in the blue t-shirt and glasses is cranking a lever connected to a chain on the sailboat in the sea during the daytime.\", \"video_name\": \"v_ObrXN_FjVD8\"}, {\"Q\": \"Where are the dancers located in the video?\", \"A\": \"The dancers are in a well-lit indoor studio with people standing by the walls to make space in the middle.\", \"video_name\": \"v_N75m1Z4RqbA\"}, {\"Q\": \"What type of dance are the women performing?\", \"A\": \"The women are performing a contemporary ballet.\", \"video_name\": \"v_Ocid5pcnSVY\"}, {\"Q\": \"What color is the floor of the arena in the video?\", \"A\": \"The floor of the arena in the video is red with text painted on it.\", \"video_name\": \"v_MxvKscpouzY\"}, {\"Q\": \"What is happening as the woman jumps into the sand pit during the competition?\", \"A\": \"As the woman jumps into the sand pit during the competition, a woman standing a few feet back walks into the frame holding a measuring tape.\", \"video_name\": \"v_LzPppxSWYNY\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man and a woman walk into a piano store. The man is wearing a brown coat and the woman is wearing a black top. The man sits at a piano and starts playing while the woman stands next to him. Later in the video, the man is at a closed restaurant with round tables, and a woman wearing a white robe approaches him. Next, a man in a brown jacket is standing near the back of the audience at an orchestra and walks towards the stage to conduct the orchestra.\", \"video_name\": \"v_mMebSMn5D0E\"}, {\"Q\": \"What is the gymnast wearing and what colour is it?\", \"A\": \"The female gymnast is wearing a sparkling dark green and white gymnast costume.\", \"video_name\": \"v_FzqZsQx20jY\"}, {\"Q\": \"What is the man doing in the video?\", \"A\": \"The man is washing dishes in a kitchen sink.\", \"video_name\": \"v_-nl4G-00PtA\"}, {\"Q\": \"What is the man wearing and what is he doing in the meadow?\", \"A\": \"The man is wearing a black shirt and pants along with glasses and he is playing a flute in the meadow during the daytime.\", \"video_name\": \"v_NvRH4SoF09c\"}, {\"Q\": \"What are the men doing when they step away from the lighter after hearing the message?\", \"A\": \"The men are attempting to light cigarettes.\", \"video_name\": \"v_MidLOhRnpnU\"}, {\"Q\": \"What kind of formation do the cheer squad stand in and what is written on the banner they carry?\", \"A\": \"The cheer squad stands in a triangular formation and they carry a large banner that has 'JAPAN' painted on it.\", \"video_name\": \"v_N5LZMH9mZVU\"}, {\"Q\": \"What is the boy doing and where is he located?\", \"A\": \"The boy is shoveling snow in a driveway in front of an open garage during the daytime.\", \"video_name\": \"v_oD8sGLt2FR0\"}, {\"Q\": \"What stunts does the windsurfer perform on his surfboard in the video?\", \"A\": \"In the video, the windsurfer performs flips, turns around, maneuvers his sail, jumps and rotates on his surfboard. He also performs a one-handed burner by pushing the sail all the way down and jump-twisting on his board.\", \"video_name\": \"v_N1_pNhVqG20\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a black T-shirt, grey trousers, and a beanie.\", \"video_name\": \"v_LuH7I7Rxju8\"}, {\"Q\": \"What is the man doing in the video and what tools is he using to do it?\", \"A\": \"The man in the video is cleaning a pair of shoes. He uses an adhesive eraser to clean the bottom edge of the shoe on his right and then cleans a white Nike shoe with the same eraser. He holds the eraser while handling the shoe and speaking.\", \"video_name\": \"v_NojaHuKBagQ\"}, {\"Q\": \"What is happening in the first clip of the video?\", \"A\": \"A clip with a women\\u2019s beach volleyball warmup is shown on a grass field, with people standing and sitting around a tree in front of a building visible in the back.\", \"video_name\": \"v_Mk7Yjq1U8OI\"}, {\"Q\": \"What is the appearance of the boy who passes the ball to the girl?\", \"A\": \"The boy who passes the ball to the girl is wearing a white T-shirt and black shorts.\", \"video_name\": \"v_F9mk2Dn2tFw\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"A weightlifting competition is being shown in the video. Different weightlifters from different countries lift a barbell in front of judges and drop it after holding it over their head. The video ends with a Chinese weightlifter lifting the barbell and yelling.\", \"video_name\": \"v_o5F7X-UBETE\"}, {\"Q\": \"What are some visible elements in the gym where the badminton court is located?\", \"A\": \"The gym is lit with overhead lights. People can be seen standing at the edges of the gym. There is a woman with a camera sitting near the netting at the left pole and taking pictures. A scoreboard is visible at the top of the wall at the back of the gym, and an American flag is hung vertically from the wall. Bleachers retracted to the wall can be seen to the left.\", \"video_name\": \"v_mShp2gzuPOM\"}, {\"Q\": \"What are the different ingredients used to make the sandwich?\", \"A\": \"The sandwich is prepared with slices of bread, butter, green chutney, boiled potatoes, chopped onions, sliced tomatoes, chopped bell pepper, grated cheese, and chat masala.\", \"video_name\": \"v_meNgZdu8tIk\"}, {\"Q\": \"What type of clothing is the woman wearing in the video?\", \"A\": \"The woman is wearing a black shirt and black pants.\", \"video_name\": \"v_ERYwCKVUTSQ\"}, {\"Q\": \"What is the woman painting in the video?\", \"A\": \"The woman is painting the head and torso of a peacock.\", \"video_name\": \"v_myGBEXiYGOU\"}, {\"Q\": \"What animals are visible a few feet from the horses?\", \"A\": \"Two dogs are visible a few feet from the horses.\", \"video_name\": \"v_ltlJ2sOx4as\"}, {\"Q\": \"What is the beautician doing to the girl in the beauty salon?\", \"A\": \"The beautician is shaping the girl's eyebrows using threads.\", \"video_name\": \"v_nywOe9C3ajM\"}, {\"Q\": \"Which side of the customer is the barber standing on in the beginning?\", \"A\": \"The barber is standing on the customer's left.\", \"video_name\": \"v_mLFjww64sX8\"}, {\"Q\": \"What is the man wearing and where is he sitting?\", \"A\": \"The man is wearing a grey sweatshirt and sitting on the edge of a dark blue sofa.\", \"video_name\": \"v_nDHupsLdar0\"}, {\"Q\": \"What is the name of the diver featured in the video and how many rounds of diving are shown?\", \"A\": \"The diver featured in the video is Thomas Daley, as displayed in the graphics. Four rounds of diving are shown.\", \"video_name\": \"v_lSVj34-DR0o\"}, {\"Q\": \"What is the man wearing while he plays the bagpipe in the video?\", \"A\": \"The man is wearing a black T-shirt while playing the bagpipe.\", \"video_name\": \"v_lU6DMCif3eE\"}, {\"Q\": \"What color clothes is the man wearing?\", \"A\": \"The man is wearing a turquoise T-shirt and blue jeans with white shoes.\", \"video_name\": \"v_gmbC7D6HfuM\"}, {\"Q\": \"What are the colors of the clothes worn by the women's teams in the volleyball game?\", \"A\": \"The women's teams in the volleyball game are wearing white tops with numbers on them. However, two women wearing red t-shirts and black track pants are holding the Kenyan flag.\", \"video_name\": \"v_MWQ9mb_mB8U\"}, {\"Q\": \"What is the woman wearing while riding the lawn mower?\", \"A\": \"The woman is wearing a green T-shirt.\", \"video_name\": \"v_mMm1LfVb8Pg\"}, {\"Q\": \"What is the color of the T-shirt worn by the boy who dances after the boy in the black t-shirt?\", \"A\": \"The boy who dances after the boy in the black T-shirt is wearing a white T-shirt.\", \"video_name\": \"v_Nvf-BZNEGdI\"}, {\"Q\": \"Who is shown standing in front of the platform in the video and what are they holding?\", \"A\": \"The video shows a man wearing a white lab coat standing in front of a platform and holding a can of furniture polish.\", \"video_name\": \"v_-MbZ-W0AbN0\"}, {\"Q\": \"What type of delivery is the Indian bowler employing in the cricket match?\", \"A\": \"The Indian bowler is employing spin while delivering the ball.\", \"video_name\": \"v_mY7QdIn51S8\"}, {\"Q\": \"What type of clothing is the musician wearing and what is he doing in the video?\", \"A\": \"The musician is wearing a Scottish kilt and playing the bagpipe. \", \"video_name\": \"v_nI6l7BP0odw\"}, {\"Q\": \"Can you describe the setting of the video?\", \"A\": \"Yes, the video takes place in a dimly lit bar with people sitting at tables and lights on the walls. There is also a band playing music on the left side of the screen.\", \"video_name\": \"v_NwlIZ1T93xE\"}, {\"Q\": \"What is the woman wearing when she cleans the girl\\u2019s ear before piercing it?\", \"A\": \"The woman is wearing gloves and a dark blue top when she cleans the girl\\u2019s ear before piercing it.\", \"video_name\": \"v_Ntyl5alZXeM\"}, {\"Q\": \"What are the athletes doing on the tumbling track in the video?\", \"A\": \"The athletes are performing various acrobatic movements including high-flying flips, twists, and other dynamic tumbling elements.\", \"video_name\": \"v_N4qhryre_TE\"}, {\"Q\": \"What are the men doing while smoking hookah?\", \"A\": \"The three men are smoking hookah, speaking to each other, and dancing to music. They also blew smoke at each other and did a chest bump.\", \"video_name\": \"v_MgjxjBxGrQU\"}, {\"Q\": \"What instructions are the two girls in the video following?\", \"A\": \"The two girls are following instructions from an instructor who is outside the frame.\", \"video_name\": \"v_LvaU_4xbxb0\"}, {\"Q\": \"What do we see in the poolside?\", \"A\": \"We can see chairs and bonsai plants in white pots by the poolside. Additionally, there are white villas in the back.\", \"video_name\": \"v_nTY4IaGRFIc\"}, {\"Q\": \"What is the boy wearing and what is he doing in the video?\", \"A\": \"The boy is wearing a grey vest and he is dribbling a basketball on a basketball court. He is doing a crisscross drill around little orange agility cones and throws the ball through the basket, before repeating the drill.\", \"video_name\": \"v_QG2xYcN_bl0\"}, {\"Q\": \"What color outfit is the little girl wearing on the shoe-shine chair?\", \"A\": \"The little girl is wearing a black outfit.\", \"video_name\": \"v_Lshue6AmrIw\"}, {\"Q\": \"What type of flooring does the studio have and what is mounted on the wall to the left of the instructor?\", \"A\": \"The studio has wooden flooring and a large speaker is mounted on the wall to the left of the instructor.\", \"video_name\": \"v_eS-VU_XV1K8\"}, {\"Q\": \"What causes the bar to fall when the man in blue vest and tights jumps over it during the high jump?\", \"A\": \"The man in blue vest and tights makes contact with the bar as he jumps causing it to fall as he lands on the cushion.\", \"video_name\": \"v_NM7Vye5nxj8\"}, {\"Q\": \"What is the woman wearing while cleaning the kitchen sink?\", \"A\": \"The woman is wearing a black apron over a T-shirt and jeans.\", \"video_name\": \"v_ghxiG0Dnrt0\"}, {\"Q\": \"Can you describe the process of wrapping the box in detail?\", \"A\": \"In the video, a woman's hand is seen starting to wrap a box that is placed on a wooden table. On the table, there is also a folded green cloth and tape. The woman proceeds to wrap the box with an orange gift wrap, and applies tape as she folds each corner. She finishes it by tucking the wrapping paper on the sides and folding the last edge. She then tapes it shut using a paper sticker with Chinese characters and the word 'ROGUE' on it. She holds the wrapped box to the camera. Next, the woman picks up the folded green cloth and wraps it around the gift-wrapped box. She ties the cloth into a knot and holds it to the camera. This entire process is shown in detail, allowing for a clear understanding of how the wrapping is done.\", \"video_name\": \"v_Mf3IyeMF8ug\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"In the video, a man wearing a white t-shirt is holding a pipe from a hookah, while standing next to a booth where two women are sitting. Four hookahs are visible on the table in front of the women, along with glasses filled with beer. One of the beer bottles is open at the edge of the table. The man speaks to the camera briefly before proceeding to smoke from the hookah. A window can be seen behind the booth with the shutters pulled up, while a glass door with an exit sign lit up is visible some distance behind the man. The man smokes the hookah and blows smoke rings, causing the women to laugh. He then picks up a glass filled with beer and smokes from the pipe again, blowing smoke into the glass before drinking from it. The video ends as the man talks to the camera once again.\", \"video_name\": \"v_mNiFmkm5OZA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a woman wearing a white polo shirt is standing behind a table in a well-lit room. A shelf filled with different objects is visible to the right and an unlit hallway leading to a closed door is visible behind the woman. The woman is demonstrating how to make furniture polish by pointing to the ingredients needed. In the next scene, the woman measures and pours olive oil and lemon juice into a spray bottle using a yellow funnel. She then closes the lid on the bottle and shakes it to mix the ingredients. The next shot shows the woman standing behind the table with everything removed from it as she sprays the solution onto the surface. She then wipes it with a cloth and rubs it in the solution on the table until the table is polished. The video ends with a girl in a pink top speaking to the camera.\", \"video_name\": \"v_MbjyQGdTtK8\"}, {\"Q\": \"Can you describe the video of the little girls playing hockey?\", \"A\": \"The video starts with two teams of little girls playing hockey on a grass field that has a goalpost installed. The first team is wearing a maroon jersey with numbers on the back and black shorts. The second team is wearing a red jersey with numbers on the back and black shorts. There are spectators watching the match from the side and a referee standing behind the goalpost. The grounds are surrounded by trees and hills can be seen far in the distance. The match starts with one of the players hitting the ball and passing it to her teammate as soon as the whistle is blown. The video then goes into slow motion. The game ends when a player attempts to score a goal and is blocked by the goalkeeper. The game stops as the whistle is blown.\", \"video_name\": \"v_Gvc1z9qypFQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man is seen wearing a blue t-shirt and glasses while cranking a lever connected to a chain on a sailboat in the daytime sea. Another shot in the video shows a maroon sailboat sailing in the open sea with cloudy skies. The sailboat is tilted to its side indicating a strong wind. Overall, the video primarily shows two boats sailing in the sea with one shot depicting a person working on a sailboat.\", \"video_name\": \"v_ObrXN_FjVD8\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"In the video, a man dressed in a black shirt and pants is seen waiting in front of the camera in a well-lit studio. A woman dressed in a black outfit then walks up to him and the two proceed to the dance floor. As the music starts playing, the man holds his hand to the woman as they begin to dance, slowly making their way around the dance floor. People are seen standing against the wall and on an elevated platform with a music stand visible on the right. The video ends as the music stops and the dancers separate, with the audience applauding as they cheer the dancers on.\", \"video_name\": \"v_N75m1Z4RqbA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a contemporary ballet performance by a group of women wearing white dancing attire with translucent skirts. They are standing on a stage with a green background and their hair is tied into buns. The dancers turn around and slowly step forward to begin their performance. Throughout the video, they move around the stage with hops, turns, and some synchronized moves, showcasing their skills. The performance ends with the dancers bending forward. Overall, the video displays a graceful and fluid dance routine performed by a group of talented female dancers.\", \"video_name\": \"v_Ocid5pcnSVY\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with a table tennis match taking place in a well-lit arena. The player on the near side is wearing a red t-shirt while the player on the far end is wearing a blue t-shirt and shorts. The arena has a red floor with text painted on it, and there are spectators sitting on blue seats. In addition, a few photographers are standing outside the playing area. During the match, the player in the red t-shirt hits the ball, and the player in the blue t-shirt misses. The exchange is shown from behind the player in the blue t-shirt as he plays and misses the ball. The video continues to show matches between different players of different nationalities. Finally, a man in a blue and yellow t-shirt with \\\"Wang Hao\\\" printed on its back wins the game and celebrates by holding his hands up as the spectators cheer. He later shakes hands with the referees, and a still image of the player with his hands held wide at his sides is shown.\", \"video_name\": \"v_MxvKscpouzY\"}, {\"Q\": \"Can you describe in detail what happens in the video?\", \"A\": \"The video shows a long jump competition being held in a track field during the daytime. A woman is seen running up to a sand pit and jumping into it while a man in an orange t-shirt and jeans stands next to the track. People and a building can be seen in the back. The clips are in slow motion and, as the woman jumps, another woman walks into the frame holding a measuring tape. The video continues with multiple athletes running up to the sand pit and performing the long jump. Once they jump into the pit and stand back up, the next athlete is shown running up to the sand pit to jump in.\", \"video_name\": \"v_LzPppxSWYNY\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a man and a woman walking into a piano store. The man, wearing a brown coat, sits down and starts playing the piano, while the woman stands next to him. The store has overhead bulbs, illuminating the place. After playing, the man moves to another piano and starts playing again. The woman slowly walks towards him and stands a few feet away. In the next clip, the man is in a dimly lit, closed restaurant with round tables, and a woman wearing a white robe comes to stand near him. Following that, the video shows a man in a brown jacket standing near the back of an orchestra audience. He moves towards the stage, climbs on it, and makes gestures like a conductor. The theater is also dimly lit. Overall, the video captures various scenes with different people, locations, and lighting conditions.\", \"video_name\": \"v_mMebSMn5D0E\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a female gymnast wearing a sparkling dark green and white gymnast costume practicing on a well-lit balance beam in a gymnasium which has yellow and brown walls. Other gymnasts can be seen practicing in the background. The gymnast is cheered on as she performs twists and aerial somersaults; however, she stumbles while landing after a somersault and almost falls. Meanwhile, another gymnast wearing a red outfit can be seen swinging from a bar near the back. Eventually, the gymnast wearing the green outfit successfully performs multiple somersaults on the balance beam and lands on the mat, which concludes the video.\", \"video_name\": \"v_FzqZsQx20jY\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"In the video, a shirtless man is seen washing dishes in a kitchen sink while light streams through a window in front of him. Behind him, there is a visible curtain. Suddenly, a woman wearing an orange top walks up to the man and throws a few items into the sink, startles him, and he steps away. Unfortunately, without further information, it is difficult to ascertain the context of the video.\", \"video_name\": \"v_-nl4G-00PtA\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man wearing a black shirt and pants can be seen playing the flute in a meadow during the daytime. He also wears glasses. To his right, there are bushes with yellow flowers growing, and behind him, a dirt path stretches up the incline. The sky is cloudy. As the camera pans right, we can see the bushes with flowers growing on them before the video ends.\", \"video_name\": \"v_NvRH4SoF09c\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with text displayed on a black screen one line at a time. A man walks up to an electric lighter with a cigarette in his mouth. He leans towards the lighter and lights his cigarette by turning the electric lighter on. The lighter is by a small street stall where glass jars with snacks in them are visible on the left. An old man also walks up to the lighter and lights his cigarette. In the next scene, a man in a yellow t-shirt fixes a yellow light with a speaker in place of the previous one. Afterwards, a man in a khaki shirt walks up to the lighter and turns it on. He leans in to listen closely to a message he hears from the lighter. At this point, the shopkeeper enters the frame from the left. The next scene is a montage of men attempting to light their cigarettes and hearing the chant from the electric lighter. They step away from it after hearing the message. Then a man in a yellow shirt is seen speaking to the shopkeeper. Finally, the video ends as multiple frames of the video are played in a single frame in a mosaic pattern, and the logo and text with 'CANCER PATIENTS AID ASSOCIATION' appear on the screen.\", \"video_name\": \"v_MidLOhRnpnU\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video features an all-female cheerleading squad running into an arena, with the last few members carrying a large banner with 'JAPAN' painted on it. The arena is well-lit and filled with people on the seats. The squad stands in a triangular formation and starts their routine as the music begins. They perform flips, somersaults and basket tosses, with spotters present near each of the bases. The squad then proceeds with another round of basket tosses and stunts that involve fliers with pom-poms who wave it around while on top of the base. The squad then performs a dance routine, which leads into another series of stunts involving multiple bases and fliers. The video ends with the bases lifting up members of the cheer squad and posing for the audience.\", \"video_name\": \"v_N5LZMH9mZVU\"}, {\"Q\": \"Can you describe what is happening in the video in detail?\", \"A\": \"In the video, we see a boy working shirtless, shoveling snow outside in the driveway which is covered with snow. It is daytime and there are houses covered in snow visible on the other side of the street. There is also a car parked in the driveway, covered in snow and another car parked in the open garage. The cameraman is walking towards the boy from inside the garage while filming. As the cameraman stops at the garage door, a dog walks by in front of him. The boy is shoveling snow in a straight line and then scooping the snow up into the shovel, throwing it to the side of the driveway.\", \"video_name\": \"v_oD8sGLt2FR0\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video features a man windsurfing during the daytime in the sea. In the background, hills are visible with buildings and trees dotting the shore. The man is seen wearing a white t-shirt and performing flips and turns on his surfing board. There are slow-motion clips of the surfer, with the narrator giving instructions as the surfer performs different stunts with his sailboard. The surfer bends his sail, jumps, and rotates on his board. A one-handed burner is performed by pushing the sail down and jump-twisting on the board, which is shown in replay. The video concludes with a montage of surfers performing various jumps and twists with their boards.\", \"video_name\": \"v_N1_pNhVqG20\"}, {\"Q\": \"Can you describe the video in as much detail as possible?\", \"A\": \"In the video, a man wearing a black T-shirt and grey trousers walks into a living room with a black and white checkered floor mat. He is also wearing a beanie and carrying a laptop. A portable fan is visible by the wall behind him, as well as an oval mirror that is hung from the back wall. The room has drapes covering a window on the left side, and a walkway leading to another room is visible in the back. The man begins to breakdance, but as he swings his leg, it accidentally hits the laptop, knocking it away. The video then shows a slow-motion shot of the man kicking the laptop, causing it to break at the hinge. The man notices this and picks up the laptop along with a piece that had fallen off.\", \"video_name\": \"v_LuH7I7Rxju8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man sitting behind a table in a well-lit room is seen holding an adhesive eraser and a pair of blue shoes are placed on the table in front of him. After cleaning the bottom edge of the shoe on his right, he picks up a white Nike shoe and starts to clean it too. He then proceeds to clean the right shoe of the pair. The video ends with the man holding the eraser and speaking while handling the shoe.\", \"video_name\": \"v_NojaHuKBagQ\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video begins with text appearing on a black screen, followed by a clip of women participating in a beach volleyball warm-up on a grass field with a building visible in the background. People can be seen standing and sitting around a tree in front of the building, while the women are practicing during the daytime. The next clip shows the women doing an official warm-up on a sandy beach volleyball court, with two teams participating and people sitting under shelters in the back. The back of the court has flag poles with flags visible. There is also a highlights reel, featuring two teams playing beach volleyball, with two players in each team. A clip from the game shows the team on the right missing a hit, and in the next clip, the team on the left starts the game, with the team on the right losing the exchange. The video ends with the players on the left high-fiving each other.\", \"video_name\": \"v_Mk7Yjq1U8OI\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video shows a group of children playing in a grassy field with patches of dirt. A chain link fence separates the play area from the rest of the field, and there are many trees outside the field, with parked cars visible as well. In the distance, cars are driving on the street. Throughout the video, several children kick a ball around while running across the field. The children are wearing various color T-shirts and jeans or shorts. The video ends with a boy in a black T-shirt walking in front of the camera while smiling and talking to the cameraman. Overall, the video captures a fun and active day of play for these children in an outdoor setting.\", \"video_name\": \"v_F9mk2Dn2tFw\"}, {\"Q\": \"Can you describe in detail what happens in the video of the weightlifting competition?\", \"A\": \"The weightlifting competition video starts with a man wearing a red outfit standing on a wooden platform and lifting a barbell. He crouches down, stands up with the barbell over his head for a few seconds, and then drops it on the floor. In the next shot, another weightlifter is shown from a side view lifting a barbell. Judges are seen sitting above the weightlifter, observing the athlete. The weightlifter holds the barbell over his head before dropping it on the ground. The video then shifts to a different angle of another weightlifter lifting the barbell, wearing a black and white outfit. However, he falls back and drops the barbell. This is followed by a montage of different weightlifters from different countries in the competition, and the well-lit area above the athletes is shown. The video ends with a Chinese weightlifter, wearing a red outfit, lifting the barbell and holding it over his head, dropping it onto the ground and shouting.\", \"video_name\": \"v_o5F7X-UBETE\"}, {\"Q\": \"Can you describe the content of the video in detail?\", \"A\": \"The video shows a badminton game being played on a court in a gym. At the beginning of the video, the shot is blurry, but it becomes clearer to reveal the badminton court and its surroundings. The player wearing a green top is shown walking to the court to start playing. The gym is brightly lit with overhead lights, and there are people standing on the edges of the court. A woman with a camera is sitting near the netting on the left pole, taking pictures of the girl playing. There is a scoreboard on the top of the wall in the back of the gym, and an American flag is hung vertically on the wall. There are bleachers to the left that are retracted to the wall. The game starts with the girl in the green top serving, and the player at the far end drops the shuttle. The game restarts with the girl in the green top serving again. The players continue to play, making hits and misses, and a girl is visible sitting on the right end of the net. The video ends with the player in the green t-shirt serving, and the player at the other end hitting the shuttle into the net. Then, the two players shake hands and walk away.\", \"video_name\": \"v_mShp2gzuPOM\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with the text \\u201cnautanki. tv presents\\u201d on a white background, followed by a montage of different street food being prepared. The focus then shifts to a sandwich shop where a man is seen applying butter and green chutney to slices of bread, and adding sliced boiled potatoes, chopped onions, chopped tomatoes, chopped bell pepper, chat masala, and grated cheese before covering the sandwich with another slice of bread. The man then grates cheese over four sandwiches and places them in an electric grill. Once ready, one of the sandwiches is cut into pieces and placed on a paper plate. The video ends with another montage of street food being prepared.\", \"video_name\": \"v_meNgZdu8tIk\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video features a woman holding a saxophone in a well-lit room with blue and white walls. She is wearing a black shirt, black pants, and glasses. Sheet music is visible on a stand positioned behind and to her right. There is also a wooden chair to her left and back and a whiteboard fixed on the back wall. The woman talks and demonstrates how to play a particular note on the saxophone after which she gives further instructions. The video provides a clear and detailed guide to playing the saxophone and is a great resource for beginners looking to improve their skills.\", \"video_name\": \"v_ERYwCKVUTSQ\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a woman smiling at the camera and turning around to a blank canvas where she begins to paint. The room is well-lit and a painting of a bird is placed on an easel to the left of the woman. The woman starts by painting the head of a peacock using different shades of blue while looking at the camera on her left hand. The video is sped up as she fills in the outline and continues painting different parts of the peacock with different colors. The video ends with her painting the fanned-out tail of the peacock. Overall, the video is an artistic portrayal of the woman painting a peacock on a large canvas.\", \"video_name\": \"v_myGBEXiYGOU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a view of the Terelj River in Mongolia, where several people are riding their horses along the banks of the river. Some of the riders are leading pack horses by a leash as they ride across the river. Two dogs can be seen a few feet from the horses. The riders are wearing hats, and some of the horses are standing in the water. The camera showcases the hills in the far back and the trees a few feet from the shore, where some of the fallen trees are visible. As the riders reach the opposite shore, the camera remains stationary. The riders disappear into the woods, and a dog is the last one to reach the riverbank and walk into the forest.\", \"video_name\": \"v_ltlJ2sOx4as\"}, {\"Q\": \"Can you describe what happens in the video in detail?\", \"A\": \"The video starts with two women hugging each other, one of whom is wearing glasses. In the background, people can be seen clapping out of focus near the camera. In the next shot, a girl is getting her hair cut by a barber, while two women standing nearby watch. The barber finishes cutting her hair, and it is swept up on a dustpan. The shot then transitions to the girl sitting in a chair at a beauty salon, with hair clips attached to her hair. A woman with a hooded hair dryer over her head, reading a magazine in the background. The girl is getting her eyebrows shaped by a beautician, who uses threads to shape them. In the next shot, a woman in glasses is seen cleaning a mannequin's head, while another woman sits under a hooded hair dryer and watches. Finally, the video ends with the girl doing situps in a gym, with a woman walking on a treadmill reflected in a mirror in the background.\", \"video_name\": \"v_nywOe9C3ajM\"}, {\"Q\": \"Could you describe the video in detail?\", \"A\": \"In the video, a man is sitting on a barber shop chair draped in a black blanket, while a barber is standing on his left, using a blade to cut his hair. The walls of the barber shop are red, and there is overhead lighting illuminating the entire room. There is a mirror placed at the back of the barber, with various products and bottles arranged neatly on the stand. At one point in the video, the barber walks to the other side of the customer, standing with his back to the camera, while another barber is visible to the left. Overall, the video depicts the process of getting a haircut in a classic barber shop setting, with attention paid to the various tools and products used in the process.\", \"video_name\": \"v_mLFjww64sX8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with a blurry shot of a man wearing grey sweatshirt and sunglasses, sitting on the edge of a dark blue sofa and speaking to the camera. Beside him on a wooden table sits a CPU and a lamp can be seen in the background. The wall is painted in a cream color. As the man starts playing the harmonica, he turns to his right and continues playing until the end of the video.\", \"video_name\": \"v_nDHupsLdar0\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"The video features Thomas Daley, a diver, who is seen walking to the edge of a platform diving board in a swimming pool with overhead lights. A graphic displaying his name is shown on the screen. He then executes a dive with a backward jump, twists, and flips midair before entering the water. In the following clips, he executes multiple backward somersaults in his dives. Onlookers can be seen at the back of the poolside watching, and as Thomas dives into the pool, people can be seen walking to the poolside and leaning in to see the diver. Additionally, graphics displaying his name and scorecard are shown after each dive. The video ends with people walking across the camera.\", \"video_name\": \"v_lSVj34-DR0o\"}, {\"Q\": \"Can you describe the video featuring the bagpipe player in detail?\", \"A\": \"The video captures a man wearing a black T-shirt as he practices playing the bagpipe in a dimly lit room. The camera focuses on his hands as he covers and uncovers his fingers on the bagpipe's finger holes while playing the instrument. The walls behind him are adorned with posters containing text and art. The video progresses with the man continuously playing the bagpipe until he stops and lets go of the instrument. Overall, the video showcases a close-up view of a bagpipe player's hands, a dimly lit room with posters, and the sound of the bagpipe being played.\", \"video_name\": \"v_lU6DMCif3eE\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a man wearing a turquoise T-shirt and blue jeans with white shoes and a woman wearing a black top and blue jeans with black shoes dancing together in a well-lit room. The room has white walls and a brown door at the back and right. There are eight chairs in the room, with a few bags on them. The man and woman continue dancing to background music. The video ends with both of them stopping the dance and laughing together.\", \"video_name\": \"v_gmbC7D6HfuM\"}, {\"Q\": \"Can you please describe the video and its content in detail?\", \"A\": \"The video starts with women standing in a line in the middle of a well-lit volleyball court, wearing white tops with numbers on them, and clapping as they face the seated spectators. Two women holding the Kenyan flag are seen wearing red t-shirts and black track pants. Coca-Cola banners are visible on the ground in the background. The camera angle then changes to show two women's volleyball teams playing, with spectators watching the game from the stands right below the camera. The game is also shown from a bird's eye view and a closer shot where two men are seen cheering. We see a clip of Kenya losing a hit in the game. The video then shifts to a press conference with the coaches sitting behind tables before it ends with another clip of the game. Overall, the video depicts a volleyball game being played between two teams with spectators cheering and coaches' press conference in between the game.\", \"video_name\": \"v_MWQ9mb_mB8U\"}, {\"Q\": \"Can you describe in detail what is happening in the video?\", \"A\": \"In the video, a woman wearing a green T-shirt is riding a lawn mower in a backyard during the daytime. The grass is overgrown, and the woman is mowing the lawn while being filmed. At the beginning of the video, the camera is tilted to the left, but as the woman drives towards the camera, the camera is straightened. Behind the woman is a wooden fence with the top of the trees visible beyond it. The woman stops in front of the camera for a brief moment and continues to drive the lawn mower. She rides near a tire swing and circles back to the route she first took. A second woman wearing a black top walks towards the tire swing and holds the rope attached to the swing, moving it aside to let the first woman mow the lawn under it.\", \"video_name\": \"v_mMm1LfVb8Pg\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video shows a young boy wearing a black T-shirt and jeans who is dancing in a well-lit skating rink. He is wearing roller skates and is surrounded by other people who are also wearing roller skates. The floor of the skating rink is made of polished wood. After dancing for a while, the boy in black moves to the side as another boy enters the dance floor wearing a white T-shirt and jeans. He is followed by a boy wearing a red T-shirt. They dance for a moment before the first two boys re-enter the floor and continue their dance. The video ends with the boy in the black T-shirt dancing alone on the floor as a small boy skates next to him. \", \"video_name\": \"v_Nvf-BZNEGdI\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts by showing an advertisement for furniture polish and leather shine on a black screen with a clip of a can of polish on a tile floor. Next, a glass beaker filled with white liquid is placed next to it. The screen fades out to text on a black screen, followed by a man wearing a white lab coat standing in front of a platform, holding a can of furniture polish. The platform behind him contains bottles of chemicals. Cut to a wooden table, where a man pours liquid onto a cloth and starts wiping a wooden surface. A beaker with the polish is placed on the table, and the man proceeds to polish until the wooden surface shines. Next, different shots of the polished surface are shown. The video concludes with the advertisement for furniture polish and the display of company information on a black screen.\", \"video_name\": \"v_-MbZ-W0AbN0\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video starts with black text appearing on a grey screen and then proceeds to show various clips of different cricket matches played between different teams at different times of the day. The first clip shows a night-time cricket match between Pakistan and India where the Indian bowler is using spin to deliver the ball to the Pakistani batsman, who hits the ball for a six. The camera follows the ball as it flies through the air and lands in the stands, and the spectators are seen cheering. Throughout the video, different ways of getting the batsman out are shown, such as catching the ball as the batsman hits it in the air, hitting the stumps, and getting the batsman runout. The video concludes with a clip of a Pakistani bowler named Amir getting a batsman out during a daytime match and celebrating by bumping into the batsman as he is running and celebrating.\", \"video_name\": \"v_mY7QdIn51S8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"In the video, a man wearing a Scottish kilt plays the bagpipe. The venue is well-lit and it appears to be outdoors. People are continuously walking by in front of the camera and at the back of the venue, with some stopping to watch the man play. A woman holding a child walks past followed by other people. The camera zooms in to show the musician from a little closer. In the background, a man takes a photo with a flash from the back. The video ends with the man still playing, and a man wearing an orange shirt stands in front of the camera.\", \"video_name\": \"v_nI6l7BP0odw\"}, {\"Q\": \"Can you describe the video?\", \"A\": \"In the video, a man wearing a hat and t-shirt is shining the shoes of a customer sitting in front of him. The scene takes place in a dimly lit bar where other people can be seen sitting at tables. The walls are decorated with lights and on the left side there is a live band playing music. The shoe-shiner continues to buff the shoe while the camera pans to the band and then returns to the shoe shiner as he finishes buffing the shoe. \", \"video_name\": \"v_NwlIZ1T93xE\"}, {\"Q\": \"Can you describe what happens in the video of the girl getting her ear pierced?\", \"A\": \"In the video, a young girl wearing a pink top is sitting in a well-lit shop's chair, preparing to get her ear pierced. The piercer, a woman wearing gloves and a dark blue top, starts by cleaning the girl's ear. She then proceeds to grab a marker from a counter filled with bottles and proceed to mark the girl's ear where she intends to pierce it. Afterward, she uses an ear-piercing gun to pierce the top of the girl's ear and then cleans the back of the girl's ear. Overall, the video demonstrates the process used when getting your ear pierced, from cleaning to piercing using an ear-piercing gun.\", \"video_name\": \"v_Ntyl5alZXeM\"}, {\"Q\": \"Can you describe the video content in detail?\", \"A\": \"The video is a montage of athletes participating in an indoor tumbling competition, which takes place in a large hall with dim overhead lights. The athletes run on a tumbling track and perform various acrobatic movements, including high-flying flips, twists, and other dynamic tumbling elements. There is a camera placed alongside the track, and spectators are seated some distance on either side of the track, with their areas darkened compared to the tumbling track. The video shows various athletes performing, including a female athlete wearing a black jacket and headband, a man named Michael Chaves, and a woman named Hope Bravo, who are all interviewed and shown performing tumbling stunts. Additionally, a clip is shown of a man performing a stunt and stumbling before taking a bow. At the end of the video, a young boy performs a stunt on the track and then walks over to a man wearing a white t-shirt to high-five him.\", \"video_name\": \"v_N4qhryre_TE\"}, {\"Q\": \"Can you describe what happens in the video?\", \"A\": \"Sure! The video starts with a man dressed in a Mario costume smoking a hookah in a well-lit room with a yellow sheet covering the back wall and a poster of a man with an acoustic guitar on the wall. He then talks to himself before greeting a man in a Luigi costume who enters the room through a door on his right. The two hug and the man in the Luigi costume starts to smoke the hookah. Soon, another man in a yellow Luigi costume joins them and the three smoke and talk to each other. They start to dance to the music while sitting and smoking and the man in the Mario costume and the man in the green Luigi costume blow smoke at the man wearing the yellow Luigi costume. The man in the Mario costume hands the hookah pipe to the man wearing the green Luigi costume and takes it back after the man in the yellow Luigi costume takes one hit. They end up doing a chest bump before continuing to smoke and talk to each other. The video ends with a slideshow of the three men in various poses.\", \"video_name\": \"v_MgjxjBxGrQU\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video begins with two girls in a well-lit boxing gym, wearing boxing gloves - one girl in a black vest, and the other in a grey t-shirt. A man standing a few feet from them is also wearing boxing gloves and there is a punching bag hanging to his left. The gym's walls are painted an off-white color, and the blue foam mat covers the floor. There are punch mitts hanging from hooks on the wall. The two girls are seen boxing, while an instructor outside the frame provides them with instructions. On the other side of the gym, other people are also visible boxing.\", \"video_name\": \"v_LvaU_4xbxb0\"}, {\"Q\": \"Please describe the video content in detail.\", \"A\": \"This video shows a group of people playing water polo in a swimming pool during the daytime. White villas and chairs can be seen on the poolside, along with bonsai plants in white pots. The game starts with a woman catching the ball in the pool and trying to throw it at someone sitting on the edge of the pool. A man jumps up and catches the ball, and the woman and others near him try to snatch the ball from him. The ball is thrown to someone else, and the game continues with people throwing the ball at each other. A girl is seen running on the poolside as well. At one point, the ball is thrown at a man wearing a green t-shirt who is sitting at the edge of the pool, and he throws it across the pool to someone who catches and throws the ball outside the pool. Then a woman sitting at the poolside collects the ball and throws it back in. Later in the game, people near the left goalpost get the ball and try to get it past the goalkeeper, who is sitting in front of the goalpost and blocking it. They finally succeed and get the ball in the goal. The goalkeeper then throws the ball across the pool near the opposite goalpost. The video ends with the people still playing the game.\", \"video_name\": \"v_nTY4IaGRFIc\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video showcases a young boy wearing a grey vest and dribbling a basketball on a basketball court during daytime, with cloudy skies in the background. A chain link fence is seen on the left, separating the basketball court from a concrete path, which has an overhead shelter. The boy performs a drill by running crisscrossing around little orange agility cones until he reaches the basket and throws the basketball through it. He then runs back to the starting cone and repeats the drill. The video ends as the boy walks back to the starting position to begin the drill again.\", \"video_name\": \"v_QG2xYcN_bl0\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video starts with a well-lit mall where a little girl and a little boy are sitting on shoe-shine chairs wearing black and green outfits respectively. Behind the shoe-shine station is a store visible in the background. A woman in a black jacket and gloves is kneeling in front of the girl and shining her shoe using a cloth. Afterward, she turns to her right and speaks to the cameraman. Overall, the video features a scene of shoe-shining in a mall with a woman attending to two children.\", \"video_name\": \"v_Lshue6AmrIw\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"This is an aerobics workout class led by an instructor. The studio is well-lit with overhead lighting and features blue lockers by the back wall and a white dustbin nearby. The walls are painted light yellow and have paintings hanging on them. Wooden glass doors with dark blue curtains can be seen to the left of the instructor. The studio has wooden flooring and a large speaker mounted on the wall to the left side of the instructor. The instructor is wearing a pink top, black track pants, and sports shoes while leading two groups on either side of her by walking back and forth and side to side. One woman wearing a purple top, black track pants, and sports shoes, is struggling with the movements. The group in front of the instructor is shown mirroring her movements.\", \"video_name\": \"v_eS-VU_XV1K8\"}, {\"Q\": \"Can you describe what is happening in the video?\", \"A\": \"The video shows a track and field event during daytime. There is a boy wearing a blue vest and shorts who runs up to a high jump bar and jumps over it by jumping backward. Two men are standing near a goalpost at the back. One man is wearing a yellow T-shirt and jeans while the other man is wearing a blue vest and tights. After clearing the bar, the boy speaks to a man wearing a blue t-shirt and walks away. Following this, a man in a blue vest and tights begins his run-up and jumps over the bar, but makes contact with it during the jump causing the bar to fall, and then walks away. In the background, there is an incline with shrubs and trees visible.\", \"video_name\": \"v_NM7Vye5nxj8\"}, {\"Q\": \"Can you describe the video in detail?\", \"A\": \"The video is set in a restaurant kitchen with white-tiled walls that are well-lit. It begins with a woman wearing a black apron over a T-shirt and jeans, cleaning the kitchen sink by scooping up waste with her hand and throwing it in a garbage can behind her. A metallic shelf beside her has a fridge with a glass door that is full, along with buckets and plates. She closes the dishwasher and proceeds to wash her hands in the sink. After that, she dries her hands on the apron and walks out of the frame.\", \"video_name\": \"v_ghxiG0Dnrt0\"}, {\"Q\": \"What is the process that the woman did in the video?\", \"A\": \"The woman in the video wrapped a box with an orange gift wrap. She applied tape as she folded each corner and finished it by tucking the wrapping paper on the sides and folding the last edge. She then taped it shut using a paper sticker with Chinese characters and the word \\\"ROGUE\\\" on it. She picked up a folded green cloth and wrapped it around the gift-wrapped box. She tied the cloth into a knot and held it to the camera.\", \"video_name\": \"v_Mf3IyeMF8ug\"}, {\"Q\": \"What does the man do after he smokes from the hookah?\", \"A\": \"After smoking from the hookah, the man picks up a glass filled with beer, smokes from the pipe again and blows smoke into the glass, then drinks from the glass.\", \"video_name\": \"v_mNiFmkm5OZA\"}, {\"Q\": \"What is the video about and what is the woman doing in the video?\", \"A\": \"The video is about making furniture polish. The woman wearing a white polo shirt is demonstrating how to make furniture polish.\", \"video_name\": \"v_MbjyQGdTtK8\"}, {\"Q\": \"Which teams were playing hockey on the field and what were their jersey colors?\", \"A\": \"There were two teams playing hockey on the field. One team was wearing a maroon jersey with numbers on the back and black shorts while the other team was wearing a red jersey with numbers on the back and black shorts.\", \"video_name\": \"v_Gvc1z9qypFQ\"}, {\"Q\": \"What is the man on the sailboat doing?\", \"A\": \"The man on the sailboat is cranking a lever connected to a chain.\", \"video_name\": \"v_ObrXN_FjVD8\"}, {\"Q\": \"What is visible on the right side of the dancefloor?\", \"A\": \"An elevated platform with a music stand can be seen on the right side of the dancefloor.\", \"video_name\": \"v_N75m1Z4RqbA\"}, {\"Q\": \"What type of dance are the women performing?\", \"A\": \"The women are performing a contemporary ballet.\", \"video_name\": \"v_Ocid5pcnSVY\"}, {\"Q\": \"What is the color of the t-shirt worn by the player who wins the game?\", \"A\": \"The player who wins the game wears a blue and yellow t-shirt with the name \\\"Wang Hao\\\" printed on its back.\", \"video_name\": \"v_MxvKscpouzY\"}, {\"Q\": \"What activity is taking place in the video?\", \"A\": \"A long jump competition is taking place in the video.\", \"video_name\": \"v_LzPppxSWYNY\"}, {\"Q\": \"What is the man wearing while playing the piano in the piano store?\", \"A\": \"The man is wearing a brown coat while playing the piano in the piano store.\", \"video_name\": \"v_mMebSMn5D0E\"}, {\"Q\": \"What is the female gymnast wearing and what color is it?\", \"A\": \"The female gymnast is wearing a sparkling dark green and white gymnast costume.\", \"video_name\": \"v_FzqZsQx20jY\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"In the beginning of the video, a shirtless man is washing dishes in a kitchen sink while light streams through a window in front of him and a curtain is visible behind him.\", \"video_name\": \"v_-nl4G-00PtA\"}, {\"Q\": \"What is the man wearing in the video?\", \"A\": \"The man is wearing a black shirt and pants, and glasses.\", \"video_name\": \"v_NvRH4SoF09c\"}, {\"Q\": \"What message did the man in khaki shirt hear when he turned on the electric lighter?\", \"A\": \"When the man in khaki shirt turned on the electric lighter, he heard a message and leaned in to listen closely. However, the content of the message is not described in the given information.\", \"video_name\": \"v_MidLOhRnpnU\"}, {\"Q\": \"What kind of banner are the last few members of the cheer squad carrying?\", \"A\": \"The last few members of the cheer squad are carrying a large banner with \\\"JAPAN\\\" painted on it.\", \"video_name\": \"v_N5LZMH9mZVU\"}, {\"Q\": \"What is the cameraman doing in the video?\", \"A\": \"The cameraman is walking towards the boy from inside the garage and stops by the garage door.\", \"video_name\": \"v_oD8sGLt2FR0\"}, {\"Q\": \"What instructions are being given by the narrator in the video?\", \"A\": \"The narrator is giving instructions as the surfer is performing different stunts with his surfboard.\", \"video_name\": \"v_N1_pNhVqG20\"}, {\"Q\": \"What does the man wear and what's in the living room?\", \"A\": \"The man wears a black t-shirt, grey trousers, and a beanie. The living room has a black and white checkered floor mat, a portable fan, a laptop, an oval mirror and drapes covering a window.\", \"video_name\": \"v_LuH7I7Rxju8\"}, {\"Q\": \"What is the man using to clean the shoes in the video?\", \"A\": \"The man is using an adhesive eraser to clean the shoes in the video.\", \"video_name\": \"v_NojaHuKBagQ\"}, {\"Q\": \"What is happening in the first clip of the video?\", \"A\": \"A clip with women's beach volleyball warmup is shown with the women practicing on a grass field with a building visible in the back, and people standing and sitting around a tree.\", \"video_name\": \"v_Mk7Yjq1U8OI\"}, {\"Q\": \"What are the colors of the clothes worn by the children playing in the field?\", \"A\": \"The girl is wearing a pink T-shirt and blue jeans, while one boy is wearing a black T-shirt and black jeans, and another boy is wearing a white T-shirt and black shorts.\", \"video_name\": \"v_F9mk2Dn2tFw\"}, {\"Q\": \"What are the judges doing during the weightlifting competition?\", \"A\": \"The judges are observing the athletes from behind desks in the back.\", \"video_name\": \"v_o5F7X-UBETE\"}, {\"Q\": \"What is the setting of the badminton game in the video?\", \"A\": \"The game is played on a badminton court in a gym with overhead lights. People are standing at the edges of the gym while bleachers, retracted to the wall, can be seen to the left. A woman with a camera is sitting near the netting at the left pole and taking pictures of the girl wearing the green top. A scoreboard is visible at the top of the wall at the back of the gym, and an American flag is hung vertically from the wall.\", \"video_name\": \"v_mShp2gzuPOM\"}, {\"Q\": \"What ingredients are placed on the sandwich in the video?\", \"A\": \"Boiled potatoes, chopped onions, sliced tomatoes, chopped bell pepper, cheese, butter and green chutney are placed on the sandwich in the video.\", \"video_name\": \"v_meNgZdu8tIk\"}, {\"Q\": \"What instructions did the woman give before demonstrating how to play a particular note?\", \"A\": \"Before demonstrating how to play the particular note, the woman paused and gave further instructions.\", \"video_name\": \"v_ERYwCKVUTSQ\"}, {\"Q\": \"What animal is the woman painting in the video?\", \"A\": \"The woman is painting a peacock in the video.\", \"video_name\": \"v_myGBEXiYGOU\"}, {\"Q\": \"What is the location where the riders are crossing the river on their horses?\", \"A\": \"The location where the riders are crossing the river on their horses is the Terelj River in Mongolia.\", \"video_name\": \"v_ltlJ2sOx4as\"}, {\"Q\": \"What activity is the girl shown doing in the gym?\", \"A\": \"The girl is shown doing sit-ups in the gym.\", \"video_name\": \"v_nywOe9C3ajM\"}, {\"Q\": \"What is the barber doing in the video?\", \"A\": \"The barber is cutting the customer's hair using a blade.\", \"video_name\": \"v_mLFjww64sX8\"}, {\"Q\": \"What is the man wearing and where is he sitting on?\", \"A\": \"The man is wearing a grey sweatshirt and sitting on the edge of a dark blue sofa.\", \"video_name\": \"v_nDHupsLdar0\"}, {\"Q\": \"What kind of dives did Thomas Daley perform in the video?\", \"A\": \"Thomas Daley performed backward jumps and twists, handstands with multiple backward somersaults, and somersaults in the video.\", \"video_name\": \"v_lSVj34-DR0o\"}, {\"Q\": \"What was the man wearing while playing the bagpipe in the video?\", \"A\": \"The man was wearing a black T-shirt while playing the bagpipe in a dimly lit room.\", \"video_name\": \"v_lU6DMCif3eE\"}, {\"Q\": \"What is the color of the man\\u2019s shoes and T-shirt in the video?\", \"A\": \"The man is wearing white shoes and a turquoise T-shirt.\", \"video_name\": \"v_gmbC7D6HfuM\"}, {\"Q\": \"What are the women wearing in the beginning of the video?\", \"A\": \"The women are wearing white tops with numbers on them.\", \"video_name\": \"v_MWQ9mb_mB8U\"}, {\"Q\": \"What is the woman wearing and what is she doing in the video?\", \"A\": \"The woman is wearing a green T-shirt and is riding on a lawn mower, mowing overgrown grass in a backyard in the daytime.\", \"video_name\": \"v_mMm1LfVb8Pg\"}, {\"Q\": \"What is the color of the T-shirt worn by the boy who comes to the dance floor after the boy in black T-shirt?\", \"A\": \"The boy who comes to the dance floor after the boy in black T-shirt is wearing a white T-shirt.\", \"video_name\": \"v_Nvf-BZNEGdI\"}, {\"Q\": \"What is being shown on the screen at the start of the video?\", \"A\": \"An advertisement for furniture polish and leather shine on a black screen is being shown at the start of the video. A clip of a can of polish on a tile floor is also displayed.\", \"video_name\": \"v_-MbZ-W0AbN0\"}, {\"Q\": \"What type of match was being played in the video, and which team was batting?\", \"A\": \"The video shows a cricket match between Pakistan and India, with Pakistan batting.\", \"video_name\": \"v_mY7QdIn51S8\"}, {\"Q\": \"What is the man wearing and what is he doing in the video?\", \"A\": \"The man is wearing a Scottish kilt and he starts to play the bagpipe.\", \"video_name\": \"v_nI6l7BP0odw\"}, {\"Q\": \"What is the shoe-shiner wearing and what activity is he doing?\", \"A\": \"The shoe-shiner is wearing a t-shirt and a hat, and he is buffing the shoes of a person sitting in front of him in a dimly lit bar.\", \"video_name\": \"v_NwlIZ1T93xE\"}, {\"Q\": \"What does the woman do after cleaning the girl's ear?\", \"A\": \"The woman goes to a counter filled with bottles and gets a marker. She then uses the marker to mark the ear of the girl who is getting pierced.\", \"video_name\": \"v_Ntyl5alZXeM\"}, {\"Q\": \"What kind of acrobatic movements are the athletes performing in the tumbling competition?\", \"A\": \"The athletes are performing high-flying flips, twists, and other dynamic tumbling elements on a tumbling track.\", \"video_name\": \"v_N4qhryre_TE\"}, {\"Q\": \"Who enters the room after the man in the Mario costume opens a door on his right?\", \"A\": \"A man in a dark green Luigi costume enters the room.\", \"video_name\": \"v_MgjxjBxGrQU\"}, {\"Q\": \"Who is giving instructions to the two girls boxing in the gym?\", \"A\": \"The two girls are following instructions from an instructor who is outside the frame.\", \"video_name\": \"v_LvaU_4xbxb0\"}, {\"Q\": \"Who catches the ball in the pool and tries to throw it at someone on the edge of the pool?\", \"A\": \"A woman catches the ball in the pool and tries to throw it at someone on the edge of the pool.\", \"video_name\": \"v_nTY4IaGRFIc\"}, {\"Q\": \"What type of drill is the boy doing on the basketball court?\", \"A\": \"The boy is doing a drill where he runs crisscrossing around little orange agility cones.\", \"video_name\": \"v_QG2xYcN_bl0\"}, {\"Q\": \"What are the two children on the shoe-shine chairs wearing?\", \"A\": \"The little girl is wearing a black outfit, and the little boy is wearing a green shirt.\", \"video_name\": \"v_Lshue6AmrIw\"}, {\"Q\": \"What is the instructor wearing in the video?\", \"A\": \"The instructor is wearing a pink top, black track pants, and sports shoes.\", \"video_name\": \"v_eS-VU_XV1K8\"}, {\"Q\": \"What happened when the boy cleared the bar during his high jump?\", \"A\": \"After the boy cleared the bar by jumping backward, he walked away while speaking to a man in a blue t-shirt.\", \"video_name\": \"v_NM7Vye5nxj8\"}, {\"Q\": \"What is the woman wearing in the video?\", \"A\": \" The woman is wearing a black apron over a T-shirt and jeans.\", \"video_name\": \"v_ghxiG0Dnrt0\"}, {\"Q\": \"Can you describe how the woman wraps the box?\", \"A\": \"The woman in the video wraps a box placed on a wooden table using an orange gift wrap and tucking the wrapping paper on the sides and folding the last edge. She also uses tape to seal the box and a paper sticker with Chinese characters and the word 'ROGUE' on it. A folded green cloth is then wrapped around the gift-wrapped box and she ties the cloth into a knot.\", \"video_name\": \"v_Mf3IyeMF8ug\"}, {\"Q\": \"What is happening in the video and who are the people involved?\", \"A\": \"The video shows a man smoking a hookah and holding a glass filled with beer while standing next to two women sitting at a booth with four hookahs on the table. They all seem to be enjoying themselves as the man blows smoke rings and the women laugh.\", \"video_name\": \"v_mNiFmkm5OZA\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video is about a woman demonstrating how to make furniture polish in a well-lit room. She shows the ingredients needed, measures and pours them into a spray bottle, and mixes it by shaking the solution. Finally, she sprays and wipes the solution onto the table to polish it.\", \"video_name\": \"v_MbjyQGdTtK8\"}, {\"Q\": \"What are the main events that occur in the video?\", \"A\": \"The video displays two teams of little girls playing hockey in a field with people watching from the side. The teams are wearing different colored jerseys with numbers on the back and black shorts. The video then goes into slow motion as a player attempts to score a goal and is blocked by the goalkeeper. The match ends as the whistle is blown.\", \"video_name\": \"v_Gvc1z9qypFQ\"}, {\"Q\": \"What is happening in the video with the man in the blue t-shirt?\", \"A\": \"In the video, a man wearing a blue t-shirt and glasses can be seen cranking a lever that is connected to a chain while on a sailboat in the sea.\", \"video_name\": \"v_ObrXN_FjVD8\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man in a black shirt and pants is waiting in front of the camera while a woman in a black outfit walks up to him. They proceed to the dance floor and begin to dance as the music plays in a well-lit indoor studio. There are people standing by the walls to make space in the middle. Additionally, there is an elevated platform with a music stand visible on the right and a few people standing against the railing of the platform. The dancers slowly make their way around the dance floor while they dance, and the video ends as the music stops and the dancers separate. Lastly, the audience is seen applauding.\", \"video_name\": \"v_N75m1Z4RqbA\"}, {\"Q\": \"Can you describe the clothing and dance style of the performers in the video?\", \"A\": \"The performers are wearing white dancing attire with translucent skirts and are performing a contemporary ballet.\", \"video_name\": \"v_Ocid5pcnSVY\"}, {\"Q\": \"What happens in the video of the arena with table tennis players?\", \"A\": \"The video shows a table tennis match in a well-lit arena between players wearing red and blue t-shirts and shorts respectively. The floor is red with text on it and there are spectators watching on blue seats. The game continues with different players from multiple nationalities. The video ends with a player named 'Wang Hao' in a blue and yellow t-shirt winning a game, celebrating, and shaking hands with the referees.\", \"video_name\": \"v_MxvKscpouzY\"}, {\"Q\": \"Can you describe the long jump competition in the video?\", \"A\": \"In the video, a woman and other athletes are shown running up to a sand pit and performing long jumps. A man in an orange t-shirt and jeans is standing next to the track. The competition is being held in a track field during the daytime and clips are in slow motion. After each jump, a woman holding a measuring tape comes into the frame to measure the distance.\", \"video_name\": \"v_LzPppxSWYNY\"}, {\"Q\": \"What happens in the video at the piano store and the closed restaurant?\", \"A\": \"A man and a woman enter a piano store and the man plays the piano while the woman stands next to him. They then enter a dimly lit closed restaurant where a woman wearing a white robe comes to stand near the man. Later in the video, a man in a brown jacket is seen standing near the back of the audience at an orchestra before he walks towards the stage and begins gesturing like a conductor.\", \"video_name\": \"v_mMebSMn5D0E\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a female gymnast wearing a dark green and white costume practices on a balance beam in a well-lit gymnasium, while other gymnasts are practicing in the background. She performs twists and aerial somersaults, stumbles after a somersault and almost falls. Meanwhile, a gymnast wearing a red outfit is swinging from a bar near the back. The video ends with the female gymnast in green doing multiple somersaults on the balance beam and landing on the mat.\", \"video_name\": \"v_FzqZsQx20jY\"}, {\"Q\": \"What is happening in the kitchen sink in the video?\", \"A\": \"A shirtless man is washing dishes while a woman throws a few items into the sink. The man steps away startled when the woman walks up to him.\", \"video_name\": \"v_-nl4G-00PtA\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"A man wearing a black shirt and pants is playing a flute in a meadow surrounded by yellow flowers during the daytime. The camera pans right, showing the bushes with flowers growing on them before the video ends. \", \"video_name\": \"v_NvRH4SoF09c\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a man and an old man lighting their cigarettes with an electric lighter placed by a street stall. Other men also try to light their cigarettes using the lighter after hearing a message from it. The video ends with a montage of different frames and text displaying \\\"CANCER PATIENTS AID ASSOCIATION\\\".\", \"video_name\": \"v_MidLOhRnpnU\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows an all-female cheerleading squad with a banner that says \\\"JAPAN\\\" entering an arena and performing various stunts, including basket tosses and flips, with spotters present. They then do a dance routine which transitions into another stunt involving multiple bases and fliers, and end by posing for a lift. \", \"video_name\": \"v_N5LZMH9mZVU\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a shirtless boy is shoveling snow in a driveway while the cameraman films him walking towards him. A dog also walks by in front of the cameraman. The boy is able to throw the scooped snow to the side.\", \"video_name\": \"v_oD8sGLt2FR0\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a man windsurfing and performing flips in the sea during daytime. The surfer performs different stunts and jumps with his surfboard, and a montage of surfers performing various jumps and twists with their boards is shown at the end.\", \"video_name\": \"v_N1_pNhVqG20\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, a man wearing a black t-shirt and grey trousers enters a living room with a black and white checkered floor mat. He is wearing a beanie and there is a walkway leading to an adjacent room visible in the back wall. The man begins to breakdance, but accidentally kicks the laptop that is placed behind him causing it to fall and appear broken at the hinge. The man picks up the laptop with a fallen piece and takes a closer look at it.\", \"video_name\": \"v_LuH7I7Rxju8\"}, {\"Q\": \"What is the man doing with the shoes on the table?\", \"A\": \"The man is cleaning a pair of blue shoes and then a white Nike shoe using an adhesive eraser while holding it with his right hand.\", \"video_name\": \"v_NojaHuKBagQ\"}, {\"Q\": \"What are some of the scenes shown in the video?\", \"A\": \"The video starts with a women\\u2019s beach volleyball warm-up on a grass field, followed by an official warm-up on a sandy beach volleyball court with two teams of players. The video concludes with a highlights reel of a beach volleyball game between two teams where the team on the left wins and celebrates with high-fives.\", \"video_name\": \"v_Mk7Yjq1U8OI\"}, {\"Q\": \"What events take place in the video?\", \"A\": \"A group of children are seen playing soccer in a grassy field, separated from the rest of the field by a chain-link fence. The children are seen passing the ball and running across the field. The video ends with a boy in a black T-shirt walking in front of the camera while smiling and speaking to the cameraman. \", \"video_name\": \"v_F9mk2Dn2tFw\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a weightlifting competition is being held and athletes from different countries are shown participating. The athletes are seen lifting barbells in different ways and positions. The video ends with a Chinese weightlifter lifting the barbell and yelling.\", \"video_name\": \"v_o5F7X-UBETE\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video shows a person wearing a green top playing badminton in a gym with people standing around. A woman with a camera is taking pictures, there is a scoreboard on the wall, and the American flag is hanging. The game starts with a serve, and as it continues, the players miss hits. The video ends with the players shaking hands and leaving the court.\", \"video_name\": \"v_mShp2gzuPOM\"}, {\"Q\": \"Can you describe the process of making the sandwich shown in the video?\", \"A\": \"The video shows the process of making a sandwich with slices of bread, butter, green chutney, boiled potatoes, chopped onions, tomatoes, bell pepper, and cheese. The sandwich is prepared by applying butter and green chutney on slices of bread followed by adding boiled potatoes, chopped onions, tomatoes, bell pepper, and grated cheese in layers between the bread slices. The sandwich is then grilled until fully cooked and cut into pieces before serving.\", \"video_name\": \"v_meNgZdu8tIk\"}, {\"Q\": \"Can you describe the setting of the video?\", \"A\": \"A woman is shown in a well-lit room with blue and white walls, holding a saxophone. She is wearing a black shirt and pants, and glasses. There is sheet music on a stand to her right, a wooden chair to her left, and a whiteboard on the back wall.\", \"video_name\": \"v_ERYwCKVUTSQ\"}, {\"Q\": \"What is the video about?\", \"A\": \"The video depicts a woman painting a peacock on a large canvas while being recorded by a camera on her left hand. The woman started painting the head of a peacock using blue colors, gradually filled the outline with different blue shades, and continued to paint different parts of the peacock using different colors until she finished painting the fanned-out tail of the peacock.\", \"video_name\": \"v_myGBEXiYGOU\"}, {\"Q\": \"What is happening on the shores of Terelj River in Mongolia?\", \"A\": \"A group of riders are crossing the river with their horses and pack horses, accompanied by two dogs. They ride into the opposite shore and disappear into the woods filled with balding trees.\", \"video_name\": \"v_ltlJ2sOx4as\"}, {\"Q\": \"What are the different activities shown in the video?\", \"A\": \"The video shows a woman hugging another woman, a girl getting her hair cut, her eyebrows shaped, a beautician cleaning a mannequins head while another woman looks on and a girl doing situps in a gym.\", \"video_name\": \"v_nywOe9C3ajM\"}, {\"Q\": \"What is happening in the barber shop?\", \"A\": \"The video shows a man sitting on a barber shop chair draped in a black blanket getting his hair cut while the barber uses a blade on his head. There is another barber visible to the left and bottles of products placed on a stand in front of a mirror behind them. The walls are red and there is overhead lighting.\", \"video_name\": \"v_mLFjww64sX8\"}, {\"Q\": \"Can you describe the man and the setting in the video?\", \"A\": \"The video features a man wearing a grey sweatshirt and sunglasses, sitting on the edge of a dark blue sofa. He is playing the harmonica in front of a cream-colored wall, with a CPU on a wooden table and a lamp visible in the background.\", \"video_name\": \"v_nDHupsLdar0\"}, {\"Q\": \"What are some of the diving techniques demonstrated in the video?\", \"A\": \"The video shows Thomas Daley doing multiple backward somersaults and twists in rounds two and three respectively, and multiple somersaults in round four.\", \"video_name\": \"v_lSVj34-DR0o\"}, {\"Q\": \"What is the man in the video doing and where is he located?\", \"A\": \"The man in the video is wearing a black T-shirt and playing the bagpipe. He is located in a dimly lit room with posters with text and art.\", \"video_name\": \"v_lU6DMCif3eE\"}, {\"Q\": \"Can you describe the setting and characters in the video?\", \"A\": \"The video features a man and a woman dancing in a well-lit room with white walls and chairs along the back wall, with few bags on them. The man is wearing a turquoise T-shirt and blue jeans with white shoes, while the woman is wearing a black top and blue jeans with black shoes.\", \"video_name\": \"v_gmbC7D6HfuM\"}, {\"Q\": \"Can you describe the scene at the beginning of the video?\", \"A\": \"At the beginning of the video, a group of women wearing white tops with numbers on them are standing in a line in the middle of a volleyball court facing the spectators and clapping. Two women holding the Kenyan flag are also present at the event in a well-lit arena with Coca-Cola banners placed on the ground advertising in the background.\", \"video_name\": \"v_MWQ9mb_mB8U\"}, {\"Q\": \"What does the woman in the video do?\", \"A\": \"In the video, we see a woman riding a lawn mower in a backyard wearing a green T-shirt. She is mowing overgrown grass. The lawn mower circles around a tire swing, which a woman in a black top is holding the rope attached to, and she moves it aside to let the woman mow the grass under it. The wooden fence and top of trees beyond it are visible, and the camera angle is tilted to the left at the beginning, but straightened when the woman approaches the camera.\", \"video_name\": \"v_mMm1LfVb8Pg\"}, {\"Q\": \"Can you describe the scene at the skating rink in the video?\", \"A\": \"In the video, a boy wearing black t-shirt and jeans is seen dancing on a polished wood floor, surrounded by other people wearing roller skates. He is later joined momentarily by two other boys, one in a white t-shirt and jeans, followed by another boy wearing a red t-shirt. The video ends with the boy in the black t-shirt skating alone while a small boy skates next to him.\", \"video_name\": \"v_Nvf-BZNEGdI\"}, {\"Q\": \"Can you give a brief overview of the video?\", \"A\": \"The video features an advertisement for furniture polish and leather shine. Different shots are shown of a wooden table being polished until it shines. Lastly, company information is displayed on a black screen.\", \"video_name\": \"v_-MbZ-W0AbN0\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows clips from different cricket matches played between different teams at various times of the day. The clips include instances of fielders getting the ball and using different ways to get the batsman out like catching the ball as the batsman hits it in the air, the bowler hitting the stumps to get the batsman out, and getting the batsman runout by fielders getting a hold of the ball. Pakistani and Indian cricket teams are also shown playing against each other, and a Pakistani bowler named Amir celebrates getting the batsman out during a daytime match by bumping into the batsman while running and celebrating. The video also shows a particular moment during the night where an Indian bowler is employing spin while delivering the ball, and the Pakistani batsman hits it for a six, which the spectators in the stands cheer for.\", \"video_name\": \"v_mY7QdIn51S8\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a man wearing a Scottish kilt is playing the bagpipe surrounded by people while the camera captures the scene from his side. There are people walking by at the back, and some people stop to watch the musician. The camera zooms in to show the musician from a little closer. A woman holding a child walks past, followed by other people. People are continuously walking by in front of the camera and at the back of the venue. The video ends as the man is still playing, and a man wearing an orange shirt stands in front of the camera.\", \"video_name\": \"v_nI6l7BP0odw\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"A man is shining the shoes of a customer while a band is playing music in a dimly lit bar.\", \"video_name\": \"v_NwlIZ1T93xE\"}, {\"Q\": \"What happens in the video?\", \"A\": \"A girl is getting her ear pierced by a woman in a well-lit shop. The woman cleans her ear, marks the spot, and pierces her ear using an ear-piercing gun. She then cleans the back of the girl\\u2019s ear.\", \"video_name\": \"v_Ntyl5alZXeM\"}, {\"Q\": \"What happens in the video?\", \"A\": \"The video features a competition where athletes showcase various acrobatic movements on a tumbling track. The video also includes interviews with some of the athletes, and snippets of their performances.\", \"video_name\": \"v_N4qhryre_TE\"}, {\"Q\": \"What happens in the video?\", \"A\": \"In the video, three men dressed in Mario, Luigi, and green Luigi costumes smoke and speak to each other while dancing in a room with a well-lit yellow sheet-covered back wall and a guitar poster. They share and take turns smoking a hookah and blow smoke at each other. The video ends with a slideshow of the three men in different poses.\", \"video_name\": \"v_MgjxjBxGrQU\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"The video shows two girls boxing in a well-lit gym with a man wearing boxing gloves standing nearby and a punching bag hanging to his left. The girls are wearing boxing gloves and following instructions from an instructor who is not visible in the frame. Other people are also visible boxing in the gym.\", \"video_name\": \"v_LvaU_4xbxb0\"}, {\"Q\": \"Can you describe the game being played in the video?\", \"A\": \"The people in the video are playing water polo in a pool during the daytime. They pass the ball around and try to score goals past the goalkeeper. The game continues as they throw the ball at each other until the end of the video.\", \"video_name\": \"v_nTY4IaGRFIc\"}, {\"Q\": \"Can you describe the basketball drill the boy is doing in the video?\", \"A\": \"In the video, the boy is doing a drill where he runs crisscrossing around little orange agility cones. He reaches the basket and throws the ball through the basket. He runs back to the starting cone and repeats the drill.\", \"video_name\": \"v_QG2xYcN_bl0\"}, {\"Q\": \"What is happening in the video?\", \"A\": \"In the video, a little girl and a little boy are sitting on shoe-shine chairs in a mall. The girl is wearing a black outfit and the boy is wearing a green shirt. A woman in a black jacket and gloves is shining the girl\\u2019s shoes and she turns to talk to the cameraman.\", \"video_name\": \"v_Lshue6AmrIw\"}, {\"Q\": \"Can you describe the scene and the people in the video?\", \"A\": \"The video depicts a group of women led by an instructor doing an aerobics workout in a well-lit studio with wooden flooring. The walls of the studio are of light yellow color and there are colorful paintings hung on them. In the background, there are blue lockers, a white dustbin, and a large speaker mounted on the wall. The instructor wears a pink top, black track pants, and sports shoes, while one participant struggles to follow her movements. The instructor leads the group by walking back and forth and side to side, while the group in front of her mirrors her movements.\", \"video_name\": \"v_eS-VU_XV1K8\"}, {\"Q\": \"What happens in the video?\", \"A\": \"A boy in a blue vest and shorts successfully jumps backward over the high jump bar in a track field during the daytime. Two men stand in the background. Then, a man in blue vest and tights attempts the same jump but knocks the bar down as he lands. The man walks away from the bar afterwards.\", \"video_name\": \"v_NM7Vye5nxj8\"}, {\"Q\": \"Can you give me a brief overview of what happens in the video?\", \"A\": \"In the video, a woman wearing a black apron is seen cleaning the kitchen sink of a restaurant. The kitchen is well-lit with white-tiled walls and there is a metallic shelf beside her with a fridge, buckets, and some plates. She cleans the sink by scooping up the waste in her hand and dumping it in a garbage can behind her. The fridge has a glass door and is full, and she closes the dishwasher and washes her hands in the sink. Finally, she dries her hand on the apron and walks out of the frame.\", \"video_name\": \"v_ghxiG0Dnrt0\"}]"
  },
  {
    "path": "model/univi/eval/questions/video_qa/msrvtt_a_list.json",
    "content": "[\n  \"regard\",\n  \"show\",\n  \"explain\",\n  \"search\",\n  \"provide\",\n  \"computer\",\n  \"guy\",\n  \"something\",\n  \"someone\",\n  \"person\",\n  \"teach\",\n  \"exclaim\",\n  \"stand\",\n  \"learn\",\n  \"pose\",\n  \"move\",\n  \"pain\",\n  \"video\",\n  \"color\",\n  \"paint\",\n  \"animation\",\n  \"cartoon\",\n  \"talk\",\n  \"sit\",\n  \"wear\",\n  \"discus\",\n  \"man\",\n  \"room\",\n  \"health\",\n  \"suit\",\n  \"chair\",\n  \"fun\",\n  \"studio\",\n  \"write\",\n  \"teacher\",\n  \"chalkboard\",\n  \"problem\",\n  \"math\",\n  \"whiteboard\",\n  \"lesson\",\n  \"board\",\n  \"stage\",\n  \"girl\",\n  \"gameshow\",\n  \"judge\",\n  \"perform\",\n  \"female\",\n  \"laugh\",\n  \"entertain\",\n  \"dance\",\n  \"shout\",\n  \"friend\",\n  \"woman\",\n  \"demonstration\",\n  \"boy\",\n  \"song\",\n  \"male\",\n  \"sister\",\n  \"marble\",\n  \"play\",\n  \"put\",\n  \"mix\",\n  \"decorate\",\n  \"help\",\n  \"easter\",\n  \"egg\",\n  \"table\",\n  \"water\",\n  \"holder\",\n  \"polish\",\n  \"game\",\n  \"earth\",\n  \"minecraft\",\n  \"gamer\",\n  \"nether\",\n  \"break\",\n  \"mine\",\n  \"hammer\",\n  \"commentate\",\n  \"peson\",\n  \"rap\",\n  \"picture\",\n  \"voiceover\",\n  \"flash\",\n  \"rapper\",\n  \"two\",\n  \"change\",\n  \"throw\",\n  \"system\",\n  \"wall\",\n  \"office\",\n  \"camera\",\n  \"create\",\n  \"prepare\",\n  \"construct\",\n  \"craft\",\n  \"look\",\n  \"place\",\n  \"wrap\",\n  \"art\",\n  \"project\",\n  \"clay\",\n  \"leaf\",\n  \"dough\",\n  \"cake\",\n  \"player\",\n  \"baseball\",\n  \"ball\",\n  \"announcer\",\n  \"hit\",\n  \"call\",\n  \"team\",\n  \"outfielder\",\n  \"fashion\",\n  \"walk\",\n  \"fasion\",\n  \"ailse\",\n  \"runway\",\n  \"catwalk\",\n  \"clothing\",\n  \"display\",\n  \"pat\",\n  \"use\",\n  \"make\",\n  \"foundation\",\n  \"lady\",\n  \"face\",\n  \"clean\",\n  \"bath\",\n  \"tub\",\n  \"toy\",\n  \"brush\",\n  \"cat\",\n  \"orange\",\n  \"scrubber\",\n  \"child\",\n  \"relax\",\n  \"swim\",\n  \"lake\",\n  \"field\",\n  \"dres\",\n  \"beach\",\n  \"gras\",\n  \"car\",\n  \"vehicle\",\n  \"introduce\",\n  \"drive\",\n  \"describe\",\n  \"review\",\n  \"movie\",\n  \"load\",\n  \"speak\",\n  \"watch\",\n  \"begin\",\n  \"tap\",\n  \"space\",\n  \"bench\",\n  \"glimpse\",\n  \"screen\",\n  \"globe\",\n  \"planet\",\n  \"world\",\n  \"explore\",\n  \"backstreet\",\n  \"restaurant\",\n  \"divider\",\n  \"asium\",\n  \"china\",\n  \"city\",\n  \"band\",\n  \"road\",\n  \"singer\",\n  \"pick\",\n  \"phone\",\n  \"telephone\",\n  \"taunt\",\n  \"squidward\",\n  \"spongebob\",\n  \"character\",\n  \"scene\",\n  \"half\",\n  \"group\",\n  \"instructor\",\n  \"floor\",\n  \"instruction\",\n  \"ballroom\",\n  \"clas\",\n  \"jog\",\n  \"tell\",\n  \"exercise\",\n  \"three\",\n  \"circle\",\n  \"mother\",\n  \"mom\",\n  \"family\",\n  \"jogging\",\n  \"skill\",\n  \"hardware\",\n  \"piece\",\n  \"detail\",\n  \"mechanic\",\n  \"item\",\n  \"demonstrate\",\n  \"work\",\n  \"repair\",\n  \"side\",\n  \"way\",\n  \"front\",\n  \"body\",\n  \"coach\",\n  \"athlete\",\n  \"angle\",\n  \"activity\",\n  \"present\",\n  \"include\",\n  \"tos\",\n  \"baby\",\n  \"hold\",\n  \"transition\",\n  \"youtuber\",\n  \"segment\",\n  \"individual\",\n  \"news\",\n  \"doll\",\n  \"subject\",\n  \"selfie\",\n  \"leg\",\n  \"shake\",\n  \"spread\",\n  \"blue\",\n  \"lighting\",\n  \"beam\",\n  \"warcraft\",\n  \"garden\",\n  \"house\",\n  \"island\",\n  \"roof\",\n  \"record\",\n  \"building\",\n  \"football\",\n  \"glas\",\n  \"spin\",\n  \"basket\",\n  \"music\",\n  \"program\",\n  \"basketball\",\n  \"sport\",\n  \"food\",\n  \"kitchenthere\",\n  \"liquid\",\n  \"fry\",\n  \"chef\",\n  \"crab\",\n  \"kitchen\",\n  \"boil\",\n  \"melt\",\n  \"stir\",\n  \"model\",\n  \"diagram\",\n  \"draw\",\n  \"party\",\n  \"bedroom\",\n  \"eye\",\n  \"bos\",\n  \"bigg\",\n  \"advertisement\",\n  \"hug\",\n  \"blink\",\n  \"google\",\n  \"narrator\",\n  \"classy\",\n  \"driving\",\n  \"lean\",\n  \"newsreporter\",\n  \"cameraman\",\n  \"photographer\",\n  \"shoot\",\n  \"photography\",\n  \"burn\",\n  \"alternate\",\n  \"fire\",\n  \"pink\",\n  \"hang\",\n  \"blow\",\n  \"visit\",\n  \"handbag\",\n  \"horn\",\n  \"shopping\",\n  \"market\",\n  \"bed\",\n  \"telecast\",\n  \"conversation\",\n  \"wife\",\n  \"lay\",\n  \"lie\",\n  \"scold\",\n  \"shirtles\",\n  \"lounge\",\n  \"saurkraut\",\n  \"sauerkraut\",\n  \"dish\",\n  \"plate\",\n  \"eat\",\n  \"serve\",\n  \"stroller\",\n  \"fold\",\n  \"push\",\n  \"sidewalk\",\n  \"demo\",\n  \"trolley\",\n  \"boner\",\n  \"narrate\",\n  \"argue\",\n  \"startle\",\n  \"princes\",\n  \"voice\",\n  \"leah\",\n  \"confirm\",\n  \"animalist\",\n  \"mirror\",\n  \"test\",\n  \"experience\",\n  \"drag\",\n  \"embrace\",\n  \"lion\",\n  \"react\",\n  \"enjoy\",\n  \"fly\",\n  \"nyancat\",\n  \"rainbow\",\n  \"machine\",\n  \"robot\",\n  \"issue\",\n  \"equipment\",\n  \"astronaut\",\n  \"try\",\n  \"attempt\",\n  \"intercept\",\n  \"pilot\",\n  \"observe\",\n  \"negotiate\",\n  \"operate\",\n  \"ask\",\n  \"landing\",\n  \"eachother\",\n  \"matthew\",\n  \"procedure\",\n  \"spaceship\",\n  \"cook\",\n  \"vest\",\n  \"stove\",\n  \"distres\",\n  \"ground\",\n  \"emergency\",\n  \"shoplift\",\n  \"mob\",\n  \"crowd\",\n  \"panic\",\n  \"wolf\",\n  \"scream\",\n  \"bear\",\n  \"interact\",\n  \"joke\",\n  \"animal\",\n  \"monkey\",\n  \"shirt\",\n  \"sign\",\n  \"bird\",\n  \"hand\",\n  \"carry\",\n  \"rest\",\n  \"meow\",\n  \"lift\",\n  \"parrotlove\",\n  \"parrot\",\n  \"top\",\n  \"film\",\n  \"cage\",\n  \"rescue\",\n  \"introduction\",\n  \"extinguisher\",\n  \"flame\",\n  \"float\",\n  \"aquarium\",\n  \"tank\",\n  \"gold\",\n  \"plant\",\n  \"fish\",\n  \"merchandise\",\n  \"purse\",\n  \"wallet\",\n  \"merchandising\",\n  \"stephen\",\n  \"london\",\n  \"reminisce\",\n  \"advertise\",\n  \"product\",\n  \"sale\",\n  \"desk\",\n  \"country\",\n  \"violin\",\n  \"childhood\",\n  \"soccer\",\n  \"involve\",\n  \"drift\",\n  \"preform\",\n  \"applause\",\n  \"language\",\n  \"star\",\n  \"comment\",\n  \"paper\",\n  \"pencil\",\n  \"drawl\",\n  \"lap\",\n  \"mouse\",\n  \"rugby\",\n  \"rant\",\n  \"contract\",\n  \"quarterback\",\n  \"webcamera\",\n  \"professor\",\n  \"college\",\n  \"cloth\",\n  \"microphone\",\n  \"balance\",\n  \"bounce\",\n  \"gym\",\n  \"dvd\",\n  \"leaflet\",\n  \"kid\",\n  \"pamphlet\",\n  \"event\",\n  \"sync\",\n  \"night\",\n  \"carriage\",\n  \"adjust\",\n  \"carrier\",\n  \"act\",\n  \"audience\",\n  \"concert\",\n  \"sin\",\n  \"performance\",\n  \"rock\",\n  \"webcam\",\n  \"trailer\",\n  \"browse\",\n  \"download\",\n  \"youtube\",\n  \"internet\",\n  \"page\",\n  \"mp3\",\n  \"war\",\n  \"guitar\",\n  \"tie\",\n  \"cheer\",\n  \"coil\",\n  \"loop\",\n  \"fishing\",\n  \"wire\",\n  \"turkey\",\n  \"drink\",\n  \"grill\",\n  \"meat\",\n  \"cooking\",\n  \"sizzle\",\n  \"tawa\",\n  \"pot\",\n  \"rice\",\n  \"sequence\",\n  \"stone\",\n  \"answer\",\n  \"incident\",\n  \"cam\",\n  \"store\",\n  \"supermarket\",\n  \"set\",\n  \"sail\",\n  \"cruise\",\n  \"vacation\",\n  \"sea\",\n  \"boat\",\n  \"ship\",\n  \"sand\",\n  \"ocean\",\n  \"landscape\",\n  \"mountain\",\n  \"dog\",\n  \"deputy\",\n  \"community\",\n  \"polouse\",\n  \"contestant\",\n  \"idol\",\n  \"panel\",\n  \"performer\",\n  \"reality\",\n  \"advice\",\n  \"crossbow\",\n  \"bow\",\n  \"arrow\",\n  \"practice\",\n  \"patrol\",\n  \"report\",\n  \"rail\",\n  \"mention\",\n  \"read\",\n  \"swat\",\n  \"newscaster\",\n  \"security\",\n  \"protection\",\n  \"crimea\",\n  \"guard\",\n  \"area\",\n  \"polymer\",\n  \"knife\",\n  \"bit\",\n  \"hobby\",\n  \"point\",\n  \"touch\",\n  \"design\",\n  \"artist\",\n  \"shape\",\n  \"poke\",\n  \"matt\",\n  \"briefly\",\n  \"damon\",\n  \"keyboard\",\n  \"animator\",\n  \"history\",\n  \"type\",\n  \"clipping\",\n  \"celebrity\",\n  \"birthday\",\n  \"smile\",\n  \"thor\",\n  \"shooting\",\n  \"rain\",\n  \"outdoor\",\n  \"pull\",\n  \"lego\",\n  \"pajama\",\n  \"clip\",\n  \"amna\",\n  \"interview\",\n  \"conduct\",\n  \"feature\",\n  \"choice\",\n  \"award\",\n  \"function\",\n  \"announce\",\n  \"seat\",\n  \"roadway\",\n  \"travel\",\n  \"window\",\n  \"sleep\",\n  \"whistle\",\n  \"doghouse\",\n  \"spawn\",\n  \"setting\",\n  \"random\",\n  \"fence\",\n  \"skating\",\n  \"teenager\",\n  \"skateboard\",\n  \"skate\",\n  \"text\",\n  \"spiral\",\n  \"shoe\",\n  \"turn\",\n  \"rotate\",\n  \"dna\",\n  \"information\",\n  \"strand\",\n  \"junk\",\n  \"helix\",\n  \"explanation\",\n  \"suv\",\n  \"fur\",\n  \"horse\",\n  \"shanium\",\n  \"head\",\n  \"rush\",\n  \"town\",\n  \"disney\",\n  \"four\",\n  \"barbie\",\n  \"dancing\",\n  \"diagnose\",\n  \"share\",\n  \"industry\",\n  \"air\",\n  \"racer\",\n  \"monitor\",\n  \"race\",\n  \"hood\",\n  \"patrick\",\n  \"sponge\",\n  \"snail\",\n  \"driveway\",\n  \"street\",\n  \"hoop\",\n  \"practise\",\n  \"sparrow\",\n  \"box\",\n  \"contraption\",\n  \"chirp\",\n  \"scratch\",\n  \"climb\",\n  \"peck\",\n  \"plot\",\n  \"mystery\",\n  \"detective\",\n  \"investigate\",\n  \"doorway\",\n  \"line\",\n  \"giggle\",\n  \"culture\",\n  \"cover\",\n  \"send\",\n  \"knock\",\n  \"broadcast\",\n  \"neck\",\n  \"hide\",\n  \"father\",\n  \"cliff\",\n  \"stewie\",\n  \"griffen\",\n  \"feel\",\n  \"stay\",\n  \"kis\",\n  \"breast\",\n  \"chest\",\n  \"porch\",\n  \"door\",\n  \"walkway\",\n  \"factory\",\n  \"development\",\n  \"span\",\n  \"logo\",\n  \"vision\",\n  \"ryanvision\",\n  \"motion\",\n  \"newsanchor\",\n  \"celebrate\",\n  \"commentator\",\n  \"steer\",\n  \"speed\",\n  \"driver\",\n  \"traffic\",\n  \"commentary\",\n  \"thing\",\n  \"extension\",\n  \"cellphone\",\n  \"mobile\",\n  \"chat\",\n  \"message\",\n  \"creature\",\n  \"whale\",\n  \"giant\",\n  \"surface\",\n  \"jump\",\n  \"approach\",\n  \"emerge\",\n  \"breach\",\n  \"dive\",\n  \"track\",\n  \"shot\",\n  \"starting\",\n  \"start\",\n  \"runner\",\n  \"compare\",\n  \"busines\",\n  \"campu\",\n  \"fist\",\n  \"school\",\n  \"book\",\n  \"reading\",\n  \"classroom\",\n  \"amazon\",\n  \"atmosphere\",\n  \"cave\",\n  \"farm\",\n  \"ice\",\n  \"frost\",\n  \"wed\",\n  \"cream\",\n  \"murray\",\n  \"bill\",\n  \"substance\",\n  \"park\",\n  \"salesman\",\n  \"aman\",\n  \"sell\",\n  \"lenin\",\n  \"education\",\n  \"bowl\",\n  \"recipe\",\n  \"pmy\",\n  \"time\",\n  \"nobody\",\n  \"pretty\",\n  \"hair\",\n  \"blonde\",\n  \"stuffed\",\n  \"femal\",\n  \"figure\",\n  \"goat\",\n  \"stream\",\n  \"mod\",\n  \"spa\",\n  \"rub\",\n  \"massage\",\n  \"wash\",\n  \"milk\",\n  \"economy\",\n  \"leader\",\n  \"money\",\n  \"raise\",\n  \"crawl\",\n  \"slide\",\n  \"fall\",\n  \"stair\",\n  \"cowboy\",\n  \"bacon\",\n  \"barbecue\",\n  \"flower\",\n  \"cheif\",\n  \"meal\",\n  \"kithen\",\n  \"treat\",\n  \"preview\",\n  \"dubstep\",\n  \"wave\",\n  \"view\",\n  \"background\",\n  \"batting\",\n  \"batsman\",\n  \"tsunami\",\n  \"bat\",\n  \"photo\",\n  \"one\",\n  \"pirate\",\n  \"sword\",\n  \"transportation\",\n  \"river\",\n  \"waterfall\",\n  \"gush\",\n  \"wrestle\",\n  \"wrestling\",\n  \"match\",\n  \"competition\",\n  \"fight\",\n  \"microwave\",\n  \"oven\",\n  \"inhome\",\n  \"heat\",\n  \"wooden\",\n  \"mud\",\n  \"exit\",\n  \"compete\",\n  \"moody\",\n  \"tom\",\n  \"pokeman\",\n  \"adventure\",\n  \"togepus\",\n  \"pokemon\",\n  \"hat\",\n  \"television\",\n  \"ash\",\n  \"debate\",\n  \"podium\",\n  \"cnn\",\n  \"speaker\",\n  \"speechles\",\n  \"cruz\",\n  \"recap\",\n  \"somethimg\",\n  \"letterman\",\n  \"leterman\",\n  \"actor\",\n  \"host\",\n  \"couch\",\n  \"doze\",\n  \"airplane\",\n  \"plane\",\n  \"gray\",\n  \"beauty\",\n  \"love\",\n  \"volleyball\",\n  \"interest\",\n  \"cry\",\n  \"haras\",\n  \"crow\",\n  \"attack\",\n  \"knight\",\n  \"sky\",\n  \"catch\",\n  \"maiden\",\n  \"soldier\",\n  \"warrior\",\n  \"oil\",\n  \"origami\",\n  \"cheese\",\n  \"silver\",\n  \"home\",\n  \"software\",\n  \"application\",\n  \"discussion\",\n  \"ring\",\n  \"sink\",\n  \"nurse\",\n  \"wipe\",\n  \"dip\",\n  \"deal\",\n  \"target\",\n  \"britney\",\n  \"conference\",\n  \"metal\",\n  \"medal\",\n  \"chi\",\n  \"die\",\n  \"daughter\",\n  \"rinse\",\n  \"build\",\n  \"ride\",\n  \"gondola\",\n  \"snow\",\n  \"hill\",\n  \"rope\",\n  \"lft\",\n  \"monorail\",\n  \"chairlift\",\n  \"peeple\",\n  \"member\",\n  \"harry\",\n  \"flight\",\n  \"moon\",\n  \"mission\",\n  \"parody\",\n  \"gangnam\",\n  \"gun\",\n  \"cortona\",\n  \"outline\",\n  \"pack\",\n  \"bod\",\n  \"charachter\",\n  \"heckle\",\n  \"tenni\",\n  \"pong\",\n  \"end\",\n  \"cardio\",\n  \"attend\",\n  \"rear\",\n  \"win\",\n  \"jockey\",\n  \"macdonald\",\n  \"wish\",\n  \"greet\",\n  \"meet\",\n  \"shuttle\",\n  \"iss\",\n  \"science\",\n  \"dusk\",\n  \"couple\",\n  \"doctor\",\n  \"tardi\",\n  \"cape\",\n  \"salad\",\n  \"chop\",\n  \"cut\",\n  \"gear\",\n  \"machinery\",\n  \"court\",\n  \"pace\",\n  \"cort\",\n  \"cool\",\n  \"bald\",\n  \"trick\",\n  \"spec\",\n  \"communist\",\n  \"museum\",\n  \"hangar\",\n  \"laptop\",\n  \"lab\",\n  \"cup\",\n  \"spuid\",\n  \"octopu\",\n  \"bottle\",\n  \"jellyfish\",\n  \"squid\",\n  \"dirge\",\n  \"lessen\",\n  \"anthem\",\n  \"shift\",\n  \"superhero\",\n  \"foam\",\n  \"fit\",\n  \"instal\",\n  \"fix\",\n  \"mat\",\n  \"cusion\",\n  \"construction\",\n  \"cushion\",\n  \"material\",\n  \"celeberatey\",\n  \"trophy\",\n  \"appreciate\",\n  \"cute\",\n  \"pas\",\n  \"lead\",\n  \"gameplay\",\n  \"user\",\n  \"choose\",\n  \"enter\",\n  \"name\",\n  \"cop\",\n  \"brittany\",\n  \"life\",\n  \"peek\",\n  \"dark\",\n  \"strum\",\n  \"guitarist\",\n  \"gunfire\",\n  \"syrium\",\n  \"firefight\",\n  \"helicopter\",\n  \"isi\",\n  \"army\",\n  \"smoke\",\n  \"terror\",\n  \"bombing\",\n  \"reporter\",\n  \"bomb\",\n  \"engine\",\n  \"garry\",\n  \"lightyear\",\n  \"receipe\",\n  \"flmy\",\n  \"tutorial\",\n  \"smell\",\n  \"taste\",\n  \"eubank\",\n  \"fighter\",\n  \"recall\",\n  \"spinach\",\n  \"lasagna\",\n  \"object\",\n  \"ply\",\n  \"skin\",\n  \"juice\",\n  \"tiki\",\n  \"ferrai\",\n  \"formula\",\n  \"racing\",\n  \"comantery\",\n  \"boyfriend\",\n  \"threee\",\n  \"talent\",\n  \"hear\",\n  \"confront\",\n  \"rubber\",\n  \"layout\",\n  \"instruct\",\n  \"pop\",\n  \"dinner\",\n  \"date\",\n  \"clock\",\n  \"tick\",\n  \"round\",\n  \"earthquake\",\n  \"scientist\",\n  \"talkshow\",\n  \"boob\",\n  \"drop\",\n  \"dirt\",\n  \"mes\",\n  \"instrument\",\n  \"service\",\n  \"foot\",\n  \"opening\",\n  \"article\",\n  \"guest\",\n  \"homer\",\n  \"light\",\n  \"technology\",\n  \"partner\",\n  \"ches\",\n  \"consume\",\n  \"bankruptcy\",\n  \"nick\",\n  \"treehouse\",\n  \"bike\",\n  \"anime\",\n  \"sponngebob\",\n  \"annoy\",\n  \"tease\",\n  \"taxi\",\n  \"method\",\n  \"gadget\",\n  \"gentleman\",\n  \"customize\",\n  \"proces\",\n  \"terrify\",\n  \"creep\",\n  \"reach\",\n  \"claw\",\n  \"ceiling\",\n  \"flow\",\n  \"scroll\",\n  \"invade\",\n  \"newspaper\",\n  \"writer\",\n  \"document\",\n  \"gambling\",\n  \"gamble\",\n  \"punch\",\n  \"alert\",\n  \"letter\",\n  \"fiskal\",\n  \"magentum\",\n  \"block\",\n  \"pig\",\n  \"concern\",\n  \"hilary\",\n  \"hillary\",\n  \"clinton\",\n  \"confederate\",\n  \"speech\",\n  \"politician\",\n  \"struggle\",\n  \"standing\",\n  \"vocalist\",\n  \"playground\",\n  \"stadium\",\n  \"scrum\",\n  \"result\",\n  \"handle\",\n  \"goal\",\n  \"lasso\",\n  \"mansion\",\n  \"benson\",\n  \"operation\",\n  \"kick\",\n  \"vlog\",\n  \"lecture\",\n  \"lecturer\",\n  \"biology\",\n  \"deliver\",\n  \"meeting\",\n  \"newsman\",\n  \"hospital\",\n  \"package\",\n  \"patient\",\n  \"recovery\",\n  \"recipiesaresimple\",\n  \"gravy\",\n  \"soup\",\n  \"appeal\",\n  \"scoop\",\n  \"fill\",\n  \"conclude\",\n  \"desert\",\n  \"smash\",\n  \"demolish\",\n  \"truck\",\n  \"crash\",\n  \"coat\",\n  \"homeles\",\n  \"happiness\",\n  \"luggage\",\n  \"think\",\n  \"part\",\n  \"tool\",\n  \"pool\",\n  \"july\",\n  \"base\",\n  \"run\",\n  \"kneel\",\n  \"score\",\n  \"mis\",\n  \"diamond\",\n  \"bag\",\n  \"root\",\n  \"magnify\",\n  \"jewel\",\n  \"heroin\",\n  \"longingly\",\n  \"hero\",\n  \"chapter\",\n  \"peer\",\n  \"tshirt\",\n  \"paperwork\",\n  \"booty\",\n  \"comb\",\n  \"hose\",\n  \"educate\",\n  \"pitcher\",\n  \"gravity\",\n  \"experiment\",\n  \"bucket\",\n  \"freezing\",\n  \"tray\",\n  \"sweet\",\n  \"storage\",\n  \"pureed\",\n  \"container\",\n  \"potaato\",\n  \"freeze\",\n  \"brother\",\n  \"coddle\",\n  \"pet\",\n  \"ldy\",\n  \"yard\",\n  \"calm\",\n  \"fortres\",\n  \"till\",\n  \"thief\",\n  \"viewer\",\n  \"feedback\",\n  \"contestent\",\n  \"competitor\",\n  \"hiliary\",\n  \"cspan\",\n  \"hatdoll\",\n  \"lavigne\",\n  \"advertiesment\",\n  \"glouse\",\n  \"crown\",\n  \"government\",\n  \"peformance\",\n  \"photograph\",\n  \"towel\",\n  \"buffalo\",\n  \"universe\",\n  \"lense\",\n  \"cell\",\n  \"fetu\",\n  \"nyc\",\n  \"ramp\",\n  \"goldfish\",\n  \"destroy\",\n  \"videogame\",\n  \"dig\",\n  \"hell\",\n  \"bake\",\n  \"vinegar\",\n  \"ambulance\",\n  \"highway\",\n  \"beat\",\n  \"kill\",\n  \"semolina\",\n  \"thee\",\n  \"fart\",\n  \"phrase\",\n  \"challenge\",\n  \"herself\",\n  \"profanity\",\n  \"obama\",\n  \"president\",\n  \"steve\",\n  \"depict\",\n  \"researcher\",\n  \"horror\",\n  \"barber\",\n  \"converse\",\n  \"sweeny\",\n  \"chemistry\",\n  \"state\",\n  \"reader\",\n  \"medicine\",\n  \"lamma\",\n  \"gress\",\n  \"alpaca\",\n  \"enclosure\",\n  \"pin\",\n  \"lama\",\n  \"pen\",\n  \"pram\",\n  \"device\",\n  \"smartphone\",\n  \"app\",\n  \"troop\",\n  \"goop\",\n  \"offer\",\n  \"channel\",\n  \"makeup\",\n  \"montage\",\n  \"pole\",\n  \"slideshow\",\n  \"designer\",\n  \"candy\",\n  \"prank\",\n  \"finger\",\n  \"swear\",\n  \"tmz\",\n  \"topic\",\n  \"navigate\",\n  \"yellow\",\n  \"garbage\",\n  \"carpet\",\n  \"roll\",\n  \"maintenance\",\n  \"janitor\",\n  \"lunchroom\",\n  \"apple\",\n  \"cafeterium\",\n  \"bite\",\n  \"mop\",\n  \"stuff\",\n  \"parade\",\n  \"scooter\",\n  \"orchestra\",\n  \"carnival\",\n  \"standstill\",\n  \"vintage\",\n  \"control\",\n  \"playing\",\n  \"backround\",\n  \"roar\",\n  \"pretend\",\n  \"cpr\",\n  \"wedding\",\n  \"tangle\",\n  \"earbud\",\n  \"lid\",\n  \"sandhole\",\n  \"train\",\n  \"crime\",\n  \"denial\",\n  \"restrain\",\n  \"file\",\n  \"canal\",\n  \"applaud\",\n  \"clap\",\n  \"dad\",\n  \"story\",\n  \"vigil\",\n  \"newscastor\",\n  \"newswoman\",\n  \"volley\",\n  \"neon\",\n  \"muppet\",\n  \"king\",\n  \"theater\",\n  \"pan\",\n  \"form\",\n  \"mold\",\n  \"mini\",\n  \"spoon\",\n  \"motorcycle\",\n  \"motorbike\",\n  \"freeway\",\n  \"picnic\",\n  \"finn\",\n  \"range\",\n  \"engineering\",\n  \"encourage\",\n  \"slam\",\n  \"gate\",\n  \"tale\",\n  \"skier\",\n  \"represent\",\n  \"surf\",\n  \"surfboard\",\n  \"snowboard\",\n  \"cloud\",\n  \"arrange\",\n  \"boo\",\n  \"disco\",\n  \"singing\",\n  \"correspond\",\n  \"gogh\",\n  \"screnn\",\n  \"bernard\",\n  \"premiere\",\n  \"care\",\n  \"salon\",\n  \"saloon\",\n  \"forest\",\n  \"arm\",\n  \"treatment\",\n  \"van\",\n  \"vanwhile\",\n  \"msn\",\n  \"dalmation\",\n  \"pub\",\n  \"rumor\",\n  \"explode\",\n  \"yell\",\n  \"firework\",\n  \"dashboard\",\n  \"stereo\",\n  \"honda\",\n  \"robbie\",\n  \"advocate\",\n  \"birth\",\n  \"rat\",\n  \"hamster\",\n  \"rodent\",\n  \"owner\",\n  \"sniff\",\n  \"comfort\",\n  \"attach\",\n  \"remodel\",\n  \"glue\",\n  \"interior\",\n  \"umpire\",\n  \"tumble\",\n  \"become\",\n  \"collage\",\n  \"ipod\",\n  \"comedy\",\n  \"snake\",\n  \"shadow\",\n  \"collar\",\n  \"frame\",\n  \"master\",\n  \"dinosaur\",\n  \"dinosor\",\n  \"print\",\n  \"carfax\",\n  \"ralley\",\n  \"tournament\",\n  \"kium\",\n  \"teni\",\n  \"amaze\",\n  \"compilation\",\n  \"spar\",\n  \"marshal\",\n  \"order\",\n  \"camel\",\n  \"auburn\",\n  \"mustard\",\n  \"murrey\",\n  \"jar\",\n  \"festival\",\n  \"firearm\",\n  \"handgun\",\n  \"magazine\",\n  \"insert\",\n  \"surround\",\n  \"flirt\",\n  \"cafe\",\n  \"cupid\",\n  \"contain\",\n  \"footage\",\n  \"wait\",\n  \"structure\",\n  \"left\",\n  \"portrait\",\n  \"sun\",\n  \"revolve\",\n  \"hallway\",\n  \"glitter\",\n  \"command\",\n  \"officer\",\n  \"solider\",\n  \"formation\",\n  \"computergame\",\n  \"strategy\",\n  \"puzzle\",\n  \"memorize\",\n  \"broth\",\n  \"bowel\",\n  \"chicken\",\n  \"leveler\",\n  \"journalist\",\n  \"pitch\",\n  \"occur\",\n  \"routine\",\n  \"oatmeal\",\n  \"ballad\",\n  \"listen\",\n  \"audition\",\n  \"toilet\",\n  \"flush\",\n  \"commode\",\n  \"fainting\",\n  \"needle\",\n  \"faint\",\n  \"spell\",\n  \"chase\",\n  \"pit\",\n  \"hole\",\n  \"scooby\",\n  \"asteroid\",\n  \"lunar\",\n  \"impact\",\n  \"streamer\",\n  \"growth\",\n  \"antelope\",\n  \"technique\",\n  \"churro\",\n  \"countertop\",\n  \"counter\",\n  \"steam\",\n  \"mood\",\n  \"breakfast\",\n  \"scowl\",\n  \"facebook\",\n  \"research\",\n  \"examine\",\n  \"paleontologist\",\n  \"mascara\",\n  \"hottie\",\n  \"camouflage\",\n  \"atv\",\n  \"smokey\",\n  \"zombie\",\n  \"teenage\",\n  \"aim\",\n  \"masala\",\n  \"frying\",\n  \"village\",\n  \"crocodile\",\n  \"aligator\",\n  \"alligator\",\n  \"paste\",\n  \"screw\",\n  \"gum\",\n  \"pipe\",\n  \"gel\",\n  \"gumbo\",\n  \"hop\",\n  \"complain\",\n  \"tan\",\n  \"lotion\",\n  \"toples\",\n  \"taboo\",\n  \"day\",\n  \"bikini\",\n  \"skillet\",\n  \"pancake\",\n  \"zoom\",\n  \"destination\",\n  \"option\",\n  \"capture\",\n  \"zooming\",\n  \"execise\",\n  \"gymanasium\",\n  \"integrate\",\n  \"guide\",\n  \"ryan\",\n  \"progress\",\n  \"crazy\",\n  \"mike\",\n  \"russium\",\n  \"vladmir\",\n  \"vladimir\",\n  \"addres\",\n  \"policy\",\n  \"gown\",\n  \"spirit\",\n  \"shop\",\n  \"journey\",\n  \"fog\",\n  \"hunt\",\n  \"peak\",\n  \"checkerd\",\n  \"fault\",\n  \"alien\",\n  \"thank\",\n  \"bal\",\n  \"iphone\",\n  \"guinea\",\n  \"bathroom\",\n  \"dry\",\n  \"button\",\n  \"chilli\",\n  \"infusion\",\n  \"slouse\",\n  \"fanlala\",\n  \"airport\",\n  \"hindu\",\n  \"marriage\",\n  \"piccolo\",\n  \"dragonball\",\n  \"dome\",\n  \"landmark\",\n  \"suggest\",\n  \"tunisium\",\n  \"danger\",\n  \"obstacle\",\n  \"lot\",\n  \"simple\",\n  \"earring\",\n  \"ear\",\n  \"nasa\",\n  \"graph\",\n  \"microsoft\",\n  \"spreadsheet\",\n  \"somebody\",\n  \"parker\",\n  \"girlfriend\",\n  \"focu\",\n  \"indium\",\n  \"netrus\",\n  \"ladle\",\n  \"aid\",\n  \"university\",\n  \"rifle\",\n  \"flatter\",\n  \"bulldozer\",\n  \"excavator\",\n  \"vampire\",\n  \"fiddle\",\n  \"israeli\",\n  \"isreal\",\n  \"infiltrate\",\n  \"amusement\",\n  \"sketch\",\n  \"seasoning\",\n  \"salt\",\n  \"pepper\",\n  \"steak\",\n  \"season\",\n  \"course\",\n  \"return\",\n  \"collect\",\n  \"superb\",\n  \"wisconsin\",\n  \"nature\",\n  \"valley\",\n  \"hike\",\n  \"trouble\",\n  \"failure\",\n  \"excise\",\n  \"vertacle\",\n  \"basketballer\",\n  \"volcano\",\n  \"map\",\n  \"satellite\",\n  \"sprinkle\",\n  \"verde\",\n  \"braid\",\n  \"africa\",\n  \"kenya\",\n  \"interviewer\",\n  \"gymnasium\",\n  \"dodge\",\n  \"automobile\",\n  \"beard\",\n  \"title\",\n  \"beneath\",\n  \"circket\",\n  \"rockstar\",\n  \"joan\",\n  \"dave\",\n  \"jam\",\n  \"interface\",\n  \"screencast\",\n  \"coversation\",\n  \"five-ing\",\n  \"mltiple\",\n  \"smack\",\n  \"nadium\",\n  \"stretcher\",\n  \"overlap\",\n  \"action\",\n  \"teaser\",\n  \"ledge\",\n  \"overlook\",\n  \"await\",\n  \"rooftop\",\n  \"invite\",\n  \"bbc\",\n  \"mall\",\n  \"arrest\",\n  \"dhabi\",\n  \"conflict\",\n  \"suspect\",\n  \"critique\",\n  \"expres\",\n  \"buy\",\n  \"diver\",\n  \"scuba\",\n  \"trunk\",\n  \"bolt\",\n  \"dream\",\n  \"gymnast\",\n  \"forward\",\n  \"bar\",\n  \"auditorium\",\n  \"list\",\n  \"ingredient\",\n  \"pale\",\n  \"tackle\",\n  \"support\",\n  \"beautiful\",\n  \"back\",\n  \"bedsheet\",\n  \"mincraft\",\n  \"emerald\",\n  \"job\",\n  \"york\",\n  \"harlow\",\n  \"tomorrow\",\n  \"study\",\n  \"sofa\",\n  \"furniture\",\n  \"saleman\",\n  \"beef\",\n  \"molecule\",\n  \"chip\",\n  \"check\",\n  \"crew\",\n  \"director\",\n  \"warfield\",\n  \"shaq\",\n  \"balding\",\n  \"microstructure\",\n  \"web\",\n  \"website\",\n  \"checkmark\",\n  \"relevant\",\n  \"ethopium\",\n  \"risk\",\n  \"metallica\",\n  \"battlefield\",\n  \"mario\",\n  \"receive\",\n  \"anchorwoman\",\n  \"gay\",\n  \"hello\",\n  \"futbol\",\n  \"hollywood\",\n  \"gtum\",\n  \"breakdancing\",\n  \"unbox\",\n  \"plastic\",\n  \"drown\",\n  \"surfer\",\n  \"drug\",\n  \"gain\",\n  \"flip\",\n  \"transfer\",\n  \"reflect\",\n  \"colorful\",\n  \"tbale\",\n  \"bridge\",\n  \"scenery\",\n  \"coke\",\n  \"soda\",\n  \"cola\",\n  \"saucepan\",\n  \"stovetop\",\n  \"coca\",\n  \"moras\",\n  \"dessert\",\n  \"oniontomato\",\n  \"materialism\",\n  \"satan\",\n  \"televison\",\n  \"atom\",\n  \"rectangle\",\n  \"coupe\",\n  \"damage\",\n  \"optimu\",\n  \"butter\",\n  \"vegetable\",\n  \"caramelize\",\n  \"strut\",\n  \"stroll\",\n  \"lingerie\",\n  \"protrude\",\n  \"bleed\",\n  \"bone\",\n  \"audtioner\",\n  \"safety\",\n  \"charge\",\n  \"sniper\",\n  \"brunette\",\n  \"eva\",\n  \"environment\",\n  \"thought\",\n  \"handsom\",\n  \"foul\",\n  \"murder\",\n  \"closet\",\n  \"wearing\",\n  \"sticker\",\n  \"transmit\",\n  \"tape\",\n  \"glove\",\n  \"nose\",\n  \"stroke\",\n  \"hairstyle\",\n  \"actres\",\n  \"isabella\",\n  \"underworld\",\n  \"projector\",\n  \"shark\",\n  \"sauce\",\n  \"executive\",\n  \"spicy\",\n  \"plat\",\n  \"curry\",\n  \"guidance\",\n  \"candle\",\n  \"seance\",\n  \"hall\",\n  \"peanut\",\n  \"chocolate\",\n  \"toffee\",\n  \"movement\",\n  \"wake\",\n  \"policeman\",\n  \"investigation\",\n  \"reel\",\n  \"fisherman\",\n  \"skateboarder\",\n  \"racecar\",\n  \"racetrack\",\n  \"banister\",\n  \"trail\",\n  \"glider\",\n  \"sexy\",\n  \"quest\",\n  \"captain\",\n  \"blond\",\n  \"shampoo\",\n  \"grooming\",\n  \"sherrus\",\n  \"steel\",\n  \"cros\",\n  \"tree\",\n  \"word\",\n  \"onion\",\n  \"hairanother\",\n  \"groom\",\n  \"eckersley\",\n  \"magic\",\n  \"cuisine\",\n  \"customer\",\n  \"necklace\",\n  \"tube\",\n  \"straighten\",\n  \"wind\",\n  \"chain\",\n  \"benefit\",\n  \"sentence\",\n  \"bottom\",\n  \"chow\",\n  \"bottl\",\n  \"juggeling\",\n  \"juggle\",\n  \"juggling\",\n  \"mixer\",\n  \"processor\",\n  \"mixture\",\n  \"whole\",\n  \"crush\",\n  \"grind\",\n  \"melon\",\n  \"promote\",\n  \"company\",\n  \"queen\",\n  \"mustache\",\n  \"noise\",\n  \"goofy\",\n  \"stomach\",\n  \"cheek\",\n  \"blush\",\n  \"tattooed\",\n  \"undergarment\",\n  \"heart\",\n  \"violent\",\n  \"strength\",\n  \"darknes\",\n  \"creepy\",\n  \"collision\",\n  \"jennifer\",\n  \"converstaion\",\n  \"nutrition\",\n  \"sweater\",\n  \"illustrate\",\n  \"grapple\",\n  \"referee\",\n  \"victory\",\n  \"expansion\",\n  \"carpenter\",\n  \"trancition\",\n  \"nail\",\n  \"fisher\",\n  \"translate\",\n  \"shoulder\",\n  \"presentation\",\n  \"sex\",\n  \"tea\",\n  \"sip\",\n  \"turtle\",\n  \"corner\",\n  \"babt\",\n  \"pond\",\n  \"modeling\",\n  \"paddle\",\n  \"bye\",\n  \"drench\",\n  \"cleaning\",\n  \"ment\",\n  \"synch\",\n  \"overhead\",\n  \"pingpong\",\n  \"olympic\",\n  \"exciting\",\n  \"weekday\",\n  \"lettering\",\n  \"harrison\",\n  \"bay\",\n  \"flex\",\n  \"lifting\",\n  \"weight\",\n  \"wayne\",\n  \"aeroplane\",\n  \"tractor\",\n  \"rider\",\n  \"horseback\",\n  \"lamborghini\",\n  \"running\",\n  \"playgrond\",\n  \"simulate\",\n  \"otehr\",\n  \"speach\",\n  \"barack\",\n  \"nation\",\n  \"ohio\",\n  \"motherand\",\n  \"affection\",\n  \"laughing\",\n  \"ballet\",\n  \"terrific\",\n  \"composition\",\n  \"choreographer\",\n  \"zipline\",\n  \"hairdryer\",\n  \"gelatin\",\n  \"texture\",\n  \"dryer\",\n  \"wrestler\",\n  \"arena\",\n  \"fool\",\n  \"fail\",\n  \"spaciousnes\",\n  \"reveal\",\n  \"corridor\",\n  \"dermatologist\",\n  \"charity\",\n  \"rosacea\",\n  \"cancer\",\n  \"teaching\",\n  \"equation\",\n  \"factor\",\n  \"spider\",\n  \"roleplay\",\n  \"villain\",\n  \"blind\",\n  \"fury\",\n  \"loki\",\n  \"patch\",\n  \"instrumental\",\n  \"tone\",\n  \"calender\",\n  \"alarm\",\n  \"calendar\",\n  \"torch\",\n  \"flashlight\",\n  \"christmastime\",\n  \"mannequin\",\n  \"wander\",\n  \"brighter\",\n  \"avatar\",\n  \"combat\",\n  \"motionles\",\n  \"iran\",\n  \"roam\",\n  \"steal\",\n  \"documentary\",\n  \"hyena\",\n  \"pester\",\n  \"anchor\",\n  \"summer\",\n  \"jesu\",\n  \"chant\",\n  \"mingle\",\n  \"hotel\",\n  \"elevator\",\n  \"joseph\",\n  \"mic\",\n  \"widget\",\n  \"pip\",\n  \"jeep\",\n  \"absorber\",\n  \"staircase\",\n  \"wood\",\n  \"improvement\",\n  \"flooring\",\n  \"floring\",\n  \"plywood\",\n  \"deck\",\n  \"drool\",\n  \"toaster\",\n  \"puree\",\n  \"simmer\",\n  \"refer\",\n  \"tab\",\n  \"tablet\",\n  \"library\",\n  \"youngster\",\n  \"smart\",\n  \"six\",\n  \"purple\",\n  \"pacify\",\n  \"motorway\",\n  \"sedan\",\n  \"spotlight\",\n  \"grease\",\n  \"mosquito\",\n  \"scope\",\n  \"announcement\",\n  \"praise\",\n  \"sputnik\",\n  \"degras\",\n  \"convention\",\n  \"tyson\",\n  \"unscrew\",\n  \"unbolt\",\n  \"instrunment\",\n  \"shin\",\n  \"pony\",\n  \"choreograph\",\n  \"fountain\",\n  \"brown\",\n  \"harvey\",\n  \"someine\",\n  \"drawing\",\n  \"joy\",\n  \"matter\",\n  \"draft\",\n  \"raft\",\n  \"pontoon\",\n  \"reef\",\n  \"micheal\",\n  \"cuddle\",\n  \"vehicale\",\n  \"latitude\",\n  \"skincare\",\n  \"inside\",\n  \"confession\",\n  \"youth\",\n  \"tower\",\n  \"church\",\n  \"lover\",\n  \"step\",\n  \"rob\",\n  \"lorry\",\n  \"firefighter\",\n  \"firetruck\",\n  \"webpage\",\n  \"troubleshoot\",\n  \"distance\",\n  \"direction\",\n  \"maintain\",\n  \"cube\",\n  \"rubik\",\n  \"ruby\",\n  \"rubix\",\n  \"solve\",\n  \"cookery\",\n  \"guillotine\",\n  \"mist\",\n  \"mask\",\n  \"bing\",\n  \"position\",\n  \"tmy\",\n  \"pastry\",\n  \"powder\",\n  \"unicorn\",\n  \"layup\",\n  \"middle\",\n  \"sounding\",\n  \"sound\",\n  \"winter\",\n  \"santum\",\n  \"christma\",\n  \"timberlake\",\n  \"justin\",\n  \"creek\",\n  \"tourist\",\n  \"ram\",\n  \"ribeye\",\n  \"foil\",\n  \"harmonica\",\n  \"sandwich\",\n  \"sandwhich\",\n  \"pregnancy\",\n  \"brightnes\",\n  \"fiction\",\n  \"age\",\n  \"center\",\n  \"gathering\",\n  \"alcohol\",\n  \"wireles\",\n  \"radio\",\n  \"volume\",\n  \"aguy\",\n  \"coffee\",\n  \"buzz\",\n  \"dial\",\n  \"ventura\",\n  \"campaign\",\n  \"collection\",\n  \"super\",\n  \"governor\",\n  \"christie\",\n  \"sunday\",\n  \"meghan\",\n  \"poll\",\n  \"chri\",\n  \"caller\",\n  \"ski\",\n  \"snowy\",\n  \"bull\",\n  \"clown\",\n  \"jury\",\n  \"champion\",\n  \"programm\",\n  \"gallery\",\n  \"booth\",\n  \"icon\",\n  \"flowerpot\",\n  \"bassinet\",\n  \"krueger\",\n  \"kruger\",\n  \"kreuger\",\n  \"freddy\",\n  \"fatality\",\n  \"gladiator\",\n  \"lipstick\",\n  \"amore\",\n  \"brand\",\n  \"lipglos\",\n  \"flag\",\n  \"lawn\",\n  \"rev\",\n  \"site\",\n  \"enemy\",\n  \"bent\",\n  \"dash\",\n  \"riffle\",\n  \"grow\",\n  \"cohabit\",\n  \"tiger\",\n  \"mouth\",\n  \"edit\",\n  \"adobe\",\n  \"photoshop\",\n  \"manager\",\n  \"romanium\",\n  \"ancient\",\n  \"vine\",\n  \"opponent\",\n  \"dunk\",\n  \"hipster\",\n  \"energy\",\n  \"monster\",\n  \"tribute\",\n  \"cabinet\",\n  \"dresser\",\n  \"twirl\",\n  \"sporting\",\n  \"golf\",\n  \"golfer\",\n  \"shine\",\n  \"choir\",\n  \"gospel\",\n  \"partake\",\n  \"smosh\",\n  \"timey\",\n  \"colonial\",\n  \"multiple\",\n  \"multiplication\",\n  \"fruit\",\n  \"lotu\",\n  \"potato\",\n  \"peel\",\n  \"scrap\",\n  \"curve\",\n  \"acceleration\",\n  \"garage\",\n  \"cap\",\n  \"demand\",\n  \"ghost\",\n  \"drummer\",\n  \"breathe\",\n  \"effect\",\n  \"image\",\n  \"frock\",\n  \"marketing\",\n  \"hawk\",\n  \"makeshift\",\n  \"skeleton\",\n  \"graveyard\",\n  \"cemetery\",\n  \"mulitple\",\n  \"oeioke\",\n  \"protest\",\n  \"reply\",\n  \"protester\",\n  \"contest\",\n  \"cobweb\",\n  \"dump\",\n  \"drama\",\n  \"airliner\",\n  \"staff\",\n  \"wing\",\n  \"wipeout\",\n  \"toddler\",\n  \"refresh\",\n  \"swimming\",\n  \"ripple\",\n  \"garlic\",\n  \"feed\",\n  \"nuzzle\",\n  \"swimsuit\",\n  \"mexico\",\n  \"succes\",\n  \"communicate\",\n  \"asses\",\n  \"treasure\",\n  \"stun\",\n  \"trader\",\n  \"throat\",\n  \"perish\",\n  \"kissing\",\n  \"revenge\",\n  \"meatloaf\",\n  \"stick\",\n  \"gather\",\n  \"glistening\",\n  \"competion\",\n  \"net\",\n  \"filter\",\n  \"spray\",\n  \"inspect\",\n  \"gsr\",\n  \"inclosure\",\n  \"beside\",\n  \"mill\",\n  \"din\",\n  \"bring\",\n  \"population\",\n  \"batter\",\n  \"midwife\",\n  \"roadside\",\n  \"picket\",\n  \"march\",\n  \"jacket\",\n  \"cast\",\n  \"seleton\",\n  \"handsome\",\n  \"force\",\n  \"abuse\",\n  \"stomp\",\n  \"subway\",\n  \"mimic\",\n  \"tax\",\n  \"newscast\",\n  \"krabby\",\n  \"plankton\",\n  \"horizon\",\n  \"hiker\",\n  \"downhill\",\n  \"right\",\n  \"hoodie\",\n  \"teen\",\n  \"style\",\n  \"goku\",\n  \"sade\",\n  \"charger\",\n  \"carbon\",\n  \"drain\",\n  \"kidney\",\n  \"lettuce\",\n  \"leafy\",\n  \"utensil\",\n  \"punching\",\n  \"kit\",\n  \"boxer\",\n  \"training\",\n  \"bunching\",\n  \"deconstruct\",\n  \"blockchain\",\n  \"symposium\",\n  \"jacobson\",\n  \"resort\",\n  \"accord\",\n  \"presenter\",\n  \"correspondent\",\n  \"son\",\n  \"clone\",\n  \"int\",\n  \"entertainment\",\n  \"ordinance\",\n  \"tha\",\n  \"audiance\",\n  \"tennisball\",\n  \"racket\",\n  \"snowboarder\",\n  \"audi\",\n  \"competation\",\n  \"ferrarus\",\n  \"clarkson\",\n  \"crowbar\",\n  \"stop\",\n  \"trainer\",\n  \"signature\",\n  \"commando\",\n  \"riot\",\n  \"interlace\",\n  \"swordfight\",\n  \"butt\",\n  \"fend\",\n  \"engage\",\n  \"battle\",\n  \"celery\",\n  \"scavenge\",\n  \"witch\",\n  \"motor\",\n  \"bracket\",\n  \"wto\",\n  \"green\",\n  \"johnny\",\n  \"sman\",\n  \"cause\",\n  \"entail\",\n  \"potatoe\",\n  \"careful\",\n  \"hils\",\n  \"quaker\",\n  \"mason\",\n  \"hostage\",\n  \"somali\",\n  \"creation\",\n  \"execute\",\n  \"rally\",\n  \"exchange\",\n  \"phil\",\n  \"churchill\",\n  \"churchiill\",\n  \"brawl\",\n  \"scuffle\",\n  \"cricket\",\n  \"laksa\",\n  \"pikachu\",\n  \"sampling\",\n  \"vidoe\",\n  \"glow\",\n  \"rise\",\n  \"receptor\",\n  \"tail\",\n  \"chid\",\n  \"babbling\",\n  \"chew\",\n  \"paparazzi\",\n  \"premier\",\n  \"nothing\",\n  \"marian\",\n  \"relationship\",\n  \"comapny\",\n  \"donate\",\n  \"cycle\",\n  \"bicycle\",\n  \"bycycling\",\n  \"sparkling\",\n  \"ribbon\",\n  \"suacepan\",\n  \"peter\",\n  \"griffin\",\n  \"connection\",\n  \"boxing\",\n  \"beatboxing\",\n  \"twitter\",\n  \"macbook\",\n  \"respond\",\n  \"watchmojo\",\n  \"empire\",\n  \"terrifying\",\n  \"llama\",\n  \"sheep\",\n  \"waterway\",\n  \"froth\",\n  \"pie\",\n  \"aluminum\",\n  \"alumminum\",\n  \"roasting\",\n  \"crust\",\n  \"aluminium\",\n  \"rent\",\n  \"analysi\",\n  \"professional\",\n  \"simulation\",\n  \"land\",\n  \"descend\",\n  \"measuring\",\n  \"measure\",\n  \"flavor\",\n  \"inform\",\n  \"fellow\",\n  \"gerbil\",\n  \"tunnel\",\n  \"wiggle\",\n  \"peep\",\n  \"stock\",\n  \"menu\",\n  \"divine\",\n  \"candidate\",\n  \"trump\",\n  \"donald\",\n  \"addiction\",\n  \"department\",\n  \"attire\",\n  \"bread\",\n  \"grandmother\",\n  \"fridge\",\n  \"blood\",\n  \"brain\",\n  \"harissa\",\n  \"compile\",\n  \"disgust\",\n  \"cutlet\",\n  \"prize\",\n  \"slope\",\n  \"mountainside\",\n  \"cannon\",\n  \"lantern\",\n  \"jack\",\n  \"projection\",\n  \"circulate\",\n  \"rod\",\n  \"copper\",\n  \"flute\",\n  \"length\",\n  \"intercourse\",\n  \"grog\",\n  \"radicalization\",\n  \"terrorism\",\n  \"ticker\",\n  \"broccoli\",\n  \"brolic\",\n  \"ramsey\",\n  \"gordon\",\n  \"pres\",\n  \"gift\",\n  \"hindi\",\n  \"rip\",\n  \"cartoonist\",\n  \"badminton\",\n  \"badmitten\",\n  \"batmanton\",\n  \"indoor\",\n  \"excite\",\n  \"surveillance\",\n  \"alleyway\",\n  \"integra\",\n  \"florida\",\n  \"backpack\",\n  \"everything\",\n  \"bollywood\",\n  \"acura\",\n  \"umbrella\",\n  \"spend\",\n  \"sausage\",\n  \"saussage\",\n  \"straightener\",\n  \"death\",\n  \"question\",\n  \"bagpiper\",\n  \"muffin\",\n  \"biscuit\",\n  \"showroom\",\n  \"dealer\",\n  \"glance\",\n  \"loi\",\n  \"eyebrow\",\n  \"reprimand\",\n  \"release\",\n  \"trancy\",\n  \"restaraunt\",\n  \"hive\",\n  \"beehive\",\n  \"woma\",\n  \"spice\",\n  \"rack\",\n  \"sloth\",\n  \"subscription\",\n  \"implore\",\n  \"subscribe\",\n  \"dominate\",\n  \"entourage\",\n  \"randomer\",\n  \"dollar\",\n  \"zynga\",\n  \"sillouette\",\n  \"rovio\",\n  \"facility\",\n  \"kung\",\n  \"ninja\",\n  \"karate\",\n  \"standoff\",\n  \"square\",\n  \"sprint\",\n  \"cart\",\n  \"aisle\",\n  \"purchase\",\n  \"grab\",\n  \"duck\",\n  \"refrigerate\",\n  \"foo\",\n  \"rowboat\",\n  \"opeing\",\n  \"goodbye\",\n  \"cycling\",\n  \"harley\",\n  \"baymax\",\n  \"mate\",\n  \"videotape\",\n  \"skydive\",\n  \"pluck\",\n  \"avril\",\n  \"number\",\n  \"count\",\n  \"hummer\",\n  \"motorcyclist\",\n  \"pulsate\",\n  \"sparkle\",\n  \"past\",\n  \"trip\",\n  \"prisoner\",\n  \"albino\",\n  \"gage\",\n  \"example\",\n  \"while\",\n  \"piano\",\n  \"countles\",\n  \"techno\",\n  \"cow\",\n  \"headbutt\",\n  \"level\",\n  \"station\",\n  \"railway\",\n  \"viewpoint\",\n  \"courtesy\",\n  \"george\",\n  \"receiver\",\n  \"tuxedo\",\n  \"stocking\",\n  \"donkey\",\n  \"robe\",\n  \"modify\",\n  \"cookie\",\n  \"napkin\",\n  \"hash\",\n  \"non\",\n  \"roast\",\n  \"tantrum\",\n  \"pillow\",\n  \"whine\",\n  \"freak\",\n  \"slave\",\n  \"solomon\",\n  \"plantation\",\n  \"northup\",\n  \"flint\",\n  \"bane\",\n  \"batman\",\n  \"footpath\",\n  \"kitchena\",\n  \"laboratory\",\n  \"gesticulate\",\n  \"pinnochio\",\n  \"cheerlead\",\n  \"self\",\n  \"cement\",\n  \"vegetation\",\n  \"mossy\",\n  \"sermon\",\n  \"fear\",\n  \"pastor\",\n  \"preach\",\n  \"notice\",\n  \"row\",\n  \"evaluate\",\n  \"kayak\",\n  \"competetion\",\n  \"kaya\",\n  \"panda\",\n  \"tend\",\n  \"inappropriate\",\n  \"log\",\n  \"basement\",\n  \"ladder\",\n  \"trap\",\n  \"latter\",\n  \"motorcyle\",\n  \"slab\",\n  \"reallity\",\n  \"creed\",\n  \"costume\",\n  \"handball\",\n  \"goalie\",\n  \"colbert\",\n  \"vacuum\",\n  \"sort\",\n  \"launch\",\n  \"popcorn\",\n  \"episode\",\n  \"wop\",\n  \"wheelchair\",\n  \"oliver\",\n  \"steven\",\n  \"enduro\",\n  \"unload\",\n  \"hardcore\",\n  \"faster\",\n  \"perfect\",\n  \"helmet\",\n  \"skiin\",\n  \"dirtbike\",\n  \"admire\",\n  \"vechile\",\n  \"expo\",\n  \"bulb\",\n  \"holiday\",\n  \"palace\",\n  \"crying\",\n  \"cinderella\",\n  \"soundtrack\",\n  \"kind\",\n  \"godmother\",\n  \"hitter\",\n  \"update\",\n  \"congressman\",\n  \"angela\",\n  \"countdown\",\n  \"leonardo\",\n  \"bunch\",\n  \"path\",\n  \"disease\",\n  \"battery\",\n  \"attachment\",\n  \"iron\",\n  \"hulk\",\n  \"drone\",\n  \"lining\",\n  \"aircraft\",\n  \"snack\",\n  \"household\",\n  \"establishment\",\n  \"criticise\",\n  \"anger\",\n  \"sunami\",\n  \"shore\",\n  \"commissioner\",\n  \"disagree\",\n  \"claim\",\n  \"bia\",\n  \"republican\",\n  \"author\",\n  \"cigarette\",\n  \"brad\",\n  \"poster\",\n  \"escalate\",\n  \"barn\",\n  \"crane\",\n  \"concentration\",\n  \"ecavator\",\n  \"selena\",\n  \"hip\",\n  \"outfit\",\n  \"dancehall\",\n  \"kitten\",\n  \"diffrerent\",\n  \"gossip\",\n  \"taylor\",\n  \"connect\",\n  \"concept\",\n  \"datum\",\n  \"marker\",\n  \"rubic\",\n  \"medieval\",\n  \"elf\",\n  \"rocket\",\n  \"infront\",\n  \"want\",\n  \"charlie\",\n  \"restroom\",\n  \"bladder\",\n  \"scatter\",\n  \"touchdown\",\n  \"coaster\",\n  \"fan\",\n  \"eminem\",\n  \"sprinter\",\n  \"tragedy\",\n  \"awe\",\n  \"stitch\",\n  \"sew\",\n  \"knit\",\n  \"dock\",\n  \"harbor\",\n  \"golfing\",\n  \"disconnect\",\n  \"rewire\",\n  \"cord\",\n  \"connector\",\n  \"bob\",\n  \"bop\",\n  \"spongue\",\n  \"spacey\",\n  \"nod\",\n  \"pay\",\n  \"john\",\n  \"fox\",\n  \"intolerance\",\n  \"pile\",\n  \"speaking\",\n  \"pant\",\n  \"yawn\",\n  \"bark\",\n  \"mock\",\n  \"puppy\",\n  \"argument\",\n  \"cheetum\",\n  \"cheetah\",\n  \"cheetha\",\n  \"taw\",\n  \"gee\",\n  \"duel\",\n  \"celebraty\",\n  \"stack\",\n  \"laundry\",\n  \"clothe\",\n  \"sheet\",\n  \"clothesline\",\n  \"lil\",\n  \"biz\",\n  \"amn\",\n  \"sample\",\n  \"hanson\",\n  \"slip\",\n  \"deer\",\n  \"foothold\",\n  \"raindeer\",\n  \"nfl\",\n  \"cello\",\n  \"living\",\n  \"forklift\",\n  \"somone\",\n  \"clipart\",\n  \"mobility\",\n  \"tinker\",\n  \"click\",\n  \"weighter\",\n  \"decoration\",\n  \"bank\",\n  \"musician\",\n  \"recite\",\n  \"soccerball\",\n  \"hokey\",\n  \"hokie\",\n  \"understand\",\n  \"eclipse\",\n  \"moo\",\n  \"baraka\",\n  \"actin\",\n  \"fluid\",\n  \"takeout\",\n  \"preparation\",\n  \"bimbo\",\n  \"charmander\",\n  \"osbourne\",\n  \"ozbourne\",\n  \"catcher\",\n  \"anything\",\n  \"edm\",\n  \"rop\",\n  \"swing\",\n  \"cradle\",\n  \"flare\",\n  \"tornado\",\n  \"solar\",\n  \"burst\",\n  \"finish\",\n  \"cursor\",\n  \"screenshot\",\n  \"seafood\",\n  \"shell\",\n  \"cleaver\",\n  \"crap\",\n  \"highlight\",\n  \"knead\",\n  \"masseuse\",\n  \"palor\",\n  \"inblue\",\n  \"column\",\n  \"miniature\",\n  \"behavior\",\n  \"pizza\",\n  \"pope\",\n  \"bles\",\n  \"surge\",\n  \"rhino\",\n  \"hippo\",\n  \"moped\",\n  \"gasket\",\n  \"chief\",\n  \"thaw\",\n  \"obscure\",\n  \"port\",\n  \"visibility\",\n  \"nemesi\",\n  \"musc\",\n  \"backdrop\",\n  \"bride\",\n  \"heartbroken\",\n  \"hakeem\",\n  \"underwear\",\n  \"doodlebug\",\n  \"nolan\",\n  \"castle\",\n  \"dungeon\",\n  \"glassware\",\n  \"dispener\",\n  \"avoid\",\n  \"accessory\",\n  \"clutch\",\n  \"steering\",\n  \"warm\",\n  \"stretch\",\n  \"guitor\",\n  \"ultron\",\n  \"backflip\",\n  \"watering\",\n  \"wise\",\n  \"lawsuit\",\n  \"demon\",\n  \"overdose\",\n  \"paranormal\",\n  \"bondage\",\n  \"veg\",\n  \"plank\",\n  \"loading\",\n  \"buffer\",\n  \"wildernes\",\n  \"wwe\",\n  \"mysterio\",\n  \"tear\",\n  \"wool\",\n  \"fabric\",\n  \"italy\",\n  \"volkswagen\",\n  \"wheel\",\n  \"passenger\",\n  \"funnel\",\n  \"unpack\",\n  \"carton\",\n  \"oragami\",\n  \"advance\",\n  \"grandfather\",\n  \"slap\",\n  \"sir\",\n  \"student\",\n  \"classmate\",\n  \"burger\",\n  \"stew\",\n  \"fellowman\",\n  \"restraunt\",\n  \"kimchi\",\n  \"today\",\n  \"ceremony\",\n  \"attention\",\n  \"vistor\",\n  \"visitor\",\n  \"mount\",\n  \"dugout\",\n  \"mound\",\n  \"championship\",\n  \"vedio\",\n  \"jungle\",\n  \"statement\",\n  \"restaurent\",\n  \"dez\",\n  \"shield\",\n  \"eyelid\",\n  \"shane\",\n  \"monologue\",\n  \"oscar\",\n  \"podcast\",\n  \"obsitcle\",\n  \"bin\",\n  \"donation\",\n  \"kindnes\",\n  \"multus\",\n  \"columbium\",\n  \"spielberg\",\n  \"kitty\",\n  \"emission\",\n  \"outlet\",\n  \"coyote\",\n  \"howl\",\n  \"pray\",\n  \"televisoin\",\n  \"skit\",\n  \"mifa\",\n  \"countryside\",\n  \"belt\",\n  \"independence\",\n  \"tuck\",\n  \"blanket\",\n  \"blancket\",\n  \"champagne\",\n  \"card\",\n  \"complaining\",\n  \"albinism\",\n  \"discvery\",\n  \"shooter\",\n  \"sledge\",\n  \"feminism\",\n  \"navy\",\n  \"leak\",\n  \"sweat\",\n  \"broccoili\",\n  \"reciepus\",\n  \"bakery\",\n  \"nightime\",\n  \"commit\",\n  \"swingset\",\n  \"suicide\",\n  \"finishing\",\n  \"smoking\",\n  \"tutor\",\n  \"trance\",\n  \"grandma\",\n  \"blast\",\n  \"punk\",\n  \"rehearse\",\n  \"headrest\",\n  \"showing\",\n  \"cone\",\n  \"symbol\",\n  \"japan\",\n  \"terrace\",\n  \"wifi\",\n  \"bathtub\",\n  \"straw\",\n  \"bathwater\",\n  \"drinking\",\n  \"suck\",\n  \"freeman\",\n  \"morgan\",\n  \"stork\",\n  \"poach\",\n  \"outbreak\",\n  \"dicing\",\n  \"dice\",\n  \"producer\",\n  \"drum\",\n  \"percussion\",\n  \"narration\",\n  \"inventory\",\n  \"mushroom\",\n  \"select\",\n  \"peephole\",\n  \"society\",\n  \"healthcare\",\n  \"sharpie\",\n  \"notebook\",\n  \"packet\",\n  \"future\",\n  \"munch\",\n  \"llamma\",\n  \"elaborate\",\n  \"fixing\",\n  \"description\",\n  \"giraffe\",\n  \"mickey\",\n  \"mousekersize\",\n  \"walt\",\n  \"adult\",\n  \"syringe\",\n  \"dropper\",\n  \"condensation\",\n  \"leash\",\n  \"dye\",\n  \"wagon\",\n  \"camp\",\n  \"stump\",\n  \"campsite\",\n  \"upbeat\",\n  \"everyone\",\n  \"limp\",\n  \"weapon\",\n  \"idiot\",\n  \"conductor\",\n  \"beautician\",\n  \"colmy\",\n  \"simplify\",\n  \"lapse\",\n  \"trampoline\",\n  \"jewelry\",\n  \"muffler\",\n  \"subframe\",\n  \"curvy\",\n  \"celebration\",\n  \"anniversay\",\n  \"mariah\",\n  \"anniversary\",\n  \"romance\",\n  \"doorbell\",\n  \"shrimp\",\n  \"everest\",\n  \"five\",\n  \"seminar\",\n  \"perry\",\n  \"solor\",\n  \"trade\",\n  \"hogan\",\n  \"pople\",\n  \"demontrating\",\n  \"envy\",\n  \"groud\",\n  \"valencium\",\n  \"womean\",\n  \"marinate\",\n  \"comedian\",\n  \"viral\",\n  \"spounge\",\n  \"manipulate\",\n  \"knot\",\n  \"helicoptor\",\n  \"location\",\n  \"decide\",\n  \"mountaintop\",\n  \"skyanother\",\n  \"2013\",\n  \"runnig\",\n  \"winner\",\n  \"gizmo\",\n  \"kajak\",\n  \"extraction\",\n  \"technician\",\n  \"tissue\",\n  \"duggar\",\n  \"stonehenge\",\n  \"afar\",\n  \"branch\",\n  \"wine\",\n  \"flub\",\n  \"mean\",\n  \"consist\",\n  \"accapella\",\n  \"thunder\",\n  \"lick\",\n  \"loosen\",\n  \"blogger\",\n  \"close\",\n  \"baking\",\n  \"curse\",\n  \"brutality\",\n  \"weird\",\n  \"flail\",\n  \"whip\",\n  \"manchild\",\n  \"plunge\",\n  \"splash\",\n  \"thrash\",\n  \"recount\",\n  \"cheat\",\n  \"cupboard\",\n  \"organizer\",\n  \"refrigerator\",\n  \"shelf\",\n  \"accident\",\n  \"tamato\",\n  \"scout\",\n  \"iraq\",\n  \"surveliance\",\n  \"engineer\",\n  \"perfomer\",\n  \"kenium\",\n  \"grafitus\",\n  \"rejuvenate\",\n  \"moisturizer\",\n  \"fake\",\n  \"salada\",\n  \"series\",\n  \"tokyo\",\n  \"weather\",\n  \"leap\",\n  \"variety\",\n  \"watermelon\",\n  \"pastum\",\n  \"buffet\",\n  \"chaser\",\n  \"recreate\",\n  \"tire\",\n  \"bush\",\n  \"bok\",\n  \"tibet\",\n  \"grassland\",\n  \"beyonce\",\n  \"laura\",\n  \"cottage\",\n  \"strain\",\n  \"frown\",\n  \"merry\",\n  \"broom\",\n  \"gameboy\",\n  \"broaden\",\n  \"content\",\n  \"knowledge\",\n  \"trust\",\n  \"lunch\",\n  \"atray\",\n  \"buff\",\n  \"hitch\",\n  \"gameone\",\n  \"daring\",\n  \"rabbit\",\n  \"keeper\",\n  \"ina\",\n  \"reaper\",\n  \"killer\",\n  \"specialist\",\n  \"psychoanalyst\",\n  \"counselor\",\n  \"duet\",\n  \"melody\",\n  \"arthur\",\n  \"emanate\",\n  \"rpm\",\n  \"firing\",\n  \"explosion\",\n  \"escape\",\n  \"scenario\",\n  \"entertainer\",\n  \"spill\",\n  \"carve\",\n  \"casa\",\n  \"gordan\",\n  \"btalking\",\n  \"spectacle\",\n  \"corn\",\n  \"mixie\",\n  \"coloring\",\n  \"intersection\",\n  \"gla\",\n  \"lime\",\n  \"kapil\",\n  \"stalk\",\n  \"handler\",\n  \"sack\",\n  \"procol\",\n  \"puma\",\n  \"randolph\",\n  \"peetum\",\n  \"hunger\",\n  \"mince\",\n  \"accros\",\n  \"therapist\",\n  \"togethernes\",\n  \"counciling\",\n  \"lawyer\",\n  \"beer\",\n  \"beverage\",\n  \"garb\",\n  \"hoist\",\n  \"autograph\",\n  \"possession\",\n  \"egypt\",\n  \"engaging\",\n  \"careear\",\n  \"proone\",\n  \"session\",\n  \"edward\",\n  \"convince\",\n  \"pail\",\n  \"conveyer\",\n  \"wet\",\n  \"babality\",\n  \"defeat\",\n  \"humiliate\",\n  \"mortal\",\n  \"cnbc\",\n  \"leather\",\n  \"scarf\",\n  \"esteban\",\n  \"ricky\",\n  \"spmone\",\n  \"highschool\",\n  \"extention\",\n  \"michael\",\n  \"deandre\",\n  \"chug\",\n  \"climbinb\",\n  \"rating\",\n  \"tilt\",\n  \"playstation\",\n  \"hook\",\n  \"viedo\",\n  \"note\",\n  \"string\",\n  \"thread\",\n  \"sense\",\n  \"orbit\",\n  \"peruse\",\n  \"compost\",\n  \"gardening\",\n  \"robert\",\n  \"controller\",\n  \"theme\",\n  \"price\",\n  \"inspector\",\n  \"friendship\",\n  \"rolling\",\n  \"spinning\",\n  \"mcgeorge\",\n  \"balcony\",\n  \"tortoise\",\n  \"popsicle\",\n  \"squint\",\n  \"alongwith\",\n  \"primate\",\n  \"expression\",\n  \"macaque\",\n  \"wok\",\n  \"prawn\",\n  \"resist\",\n  \"rape\",\n  \"scale\",\n  \"gorden\",\n  \"hiw\",\n  \"miscarriage\",\n  \"dealership\",\n  \"sportsman\",\n  \"spatula\",\n  \"gopher\",\n  \"beaver\",\n  \"whisk\",\n  \"moment\",\n  \"wafer\",\n  \"complex\",\n  \"squish\",\n  \"vollyball\",\n  \"employee\",\n  \"dispense\",\n  \"worker\",\n  \"icecream\",\n  \"badmington\",\n  \"shuttlecock\",\n  \"tourney\",\n  \"mistake\",\n  \"goald\",\n  \"proficiency\",\n  \"skip\",\n  \"ariel\",\n  \"cupcake\",\n  \"mermaid\",\n  \"zipper\",\n  \"fantasy\",\n  \"devastate\",\n  \"compute\",\n  \"brochure\",\n  \"booklet\",\n  \"lobby\",\n  \"split\",\n  \"sunda\",\n  \"terrain\",\n  \"skiing\",\n  \"britain\",\n  \"popularity\",\n  \"coerce\",\n  \"coo\",\n  \"mama\",\n  \"badmitton\",\n  \"buttock\",\n  \"chrissy\",\n  \"verentum\",\n  \"railing\",\n  \"physician\",\n  \"injection\",\n  \"inject\",\n  \"beg\",\n  \"cock\",\n  \"victorium\",\n  \"manufacture\",\n  \"marburg\",\n  \"overlaid\",\n  \"warning\",\n  \"arch\",\n  \"entrance\",\n  \"torque\",\n  \"faster0\",\n  \"playlist\",\n  \"online\",\n  \"opinion\",\n  \"marketplace\",\n  \"goalpost\",\n  \"proposition\",\n  \"prostitute\",\n  \"cctv\",\n  \"situation\",\n  \"encounter\",\n  \"chrocodile\",\n  \"tempt\",\n  \"transmission\",\n  \"temple\",\n  \"architecture\",\n  \"travelogue\",\n  \"demonstrating\",\n  \"tech\",\n  \"tes\",\n  \"starburst\",\n  \"thailand\",\n  \"marijuana\",\n  \"witha\",\n  \"foreigner\",\n  \"forehead\",\n  \"lannister\",\n  \"dinklage\",\n  \"lad\",\n  \"constume\",\n  \"katty\",\n  \"katy\",\n  \"chopter\",\n  \"hoverbike\",\n  \"hover\",\n  \"generation\",\n  \"apron\",\n  \"axe\",\n  \"injury\",\n  \"safty\",\n  \"wound\",\n  \"grande\",\n  \"ariana\",\n  \"jason\",\n  \"honey\",\n  \"cotton\",\n  \"stopper\",\n  \"linu\",\n  \"intro\",\n  \"indie\",\n  \"limit\",\n  \"personality\",\n  \"plasticine\",\n  \"seek\",\n  \"armor\",\n  \"controversry\",\n  \"straddle\",\n  \"fingernail\",\n  \"sautee\",\n  \"patty\",\n  \"caharacter\",\n  \"redhead\",\n  \"alphabet\",\n  \"christian\",\n  \"plug\",\n  \"richkidstv\",\n  \"resturant\",\n  \"sweep\",\n  \"unroll\",\n  \"dust\",\n  \"circuit\",\n  \"jail\",\n  \"agent\",\n  \"magician\",\n  \"interrogate\",\n  \"tortilla\",\n  \"hymn\",\n  \"religion\",\n  \"miley\",\n  \"fallon\",\n  \"jimmy\",\n  \"decision\",\n  \"jim\",\n  \"snoop\",\n  \"escort\",\n  \"motocros\",\n  \"info\",\n  \"mas\",\n  \"extract\",\n  \"multimedium\",\n  \"scorpion\",\n  \"furnace\",\n  \"incinerator\",\n  \"jackson\",\n  \"weekend\",\n  \"cristiano\",\n  \"suspense\",\n  \"transform\",\n  \"vilon\",\n  \"tamil\",\n  \"smock\",\n  \"combine\",\n  \"ginger\",\n  \"dhal\",\n  \"listing\",\n  \"tomato\",\n  \"mation\",\n  \"candlelight\",\n  \"defend\",\n  \"doomsday\",\n  \"malibu\",\n  \"defending\",\n  \"power\",\n  \"mmorpg\",\n  \"backyard\",\n  \"illnes\",\n  \"condition\",\n  \"papaer\",\n  \"unwrap\",\n  \"gameboard\",\n  \"nutraloaf\",\n  \"prison\",\n  \"ease\",\n  \"feminine\",\n  \"moar\",\n  \"solicit\",\n  \"minion\",\n  \"auto\",\n  \"offroad\",\n  \"dune\",\n  \"tumbler\",\n  \"winan\",\n  \"freezer\",\n  \"storm\",\n  \"bbq\",\n  \"club\",\n  \"retaurant\",\n  \"parking\",\n  \"greg\",\n  \"paino\",\n  \"rhyme\",\n  \"nintendo\",\n  \"coconut\",\n  \"catapult\",\n  \"manufacturing\",\n  \"warehouse\",\n  \"pursue\",\n  \"reassure\",\n  \"plan\",\n  \"blouse\",\n  \"bathrom\",\n  \"interviewing\",\n  \"jon\",\n  \"condolence\",\n  \"memorial\",\n  \"homage\",\n  \"audiomicro\",\n  \"sugar\",\n  \"cinnamon\",\n  \"sponebob\",\n  \"imitate\",\n  \"recreation\",\n  \"pressconference\",\n  \"antler\",\n  \"moose\",\n  \"murry\",\n  \"headset\",\n  \"painting\",\n  \"trench\",\n  \"globemaster\",\n  \"stoner\",\n  \"skyscraper\",\n  \"cabin\",\n  \"orient\",\n  \"stiller\",\n  \"highdive\",\n  \"statuesque\",\n  \"elephant\",\n  \"bump\",\n  \"suscribe\",\n  \"appearance\",\n  \"limousine\",\n  \"hovercopter\",\n  \"hovercraft\",\n  \"voyage\",\n  \"jumbping\",\n  \"surgery\",\n  \"administer\",\n  \"nickelodeon\",\n  \"clicker\",\n  \"brunnette\",\n  \"mark\",\n  \"loarge\",\n  \"unison\",\n  \"reverse\",\n  \"cub\",\n  \"cartwheel\",\n  \"saute\",\n  \"tyga\",\n  \"heavyset\",\n  \"puddle\",\n  \"district\",\n  \"weigh\",\n  \"advertising\",\n  \"promotion\",\n  \"couh\",\n  \"charleston\",\n  \"nidoran\",\n  \"pokelon\",\n  \"blend\",\n  \"drill\",\n  \"pulp\",\n  \"watermellon\",\n  \"vie\",\n  \"sportscaster\",\n  \"sunset\",\n  \"pork\",\n  \"fair\",\n  \"tin\",\n  \"xbox\",\n  \"jumper\",\n  \"gol\",\n  \"spiderman\",\n  \"batmobile\",\n  \"coacher\",\n  \"gymnist\",\n  \"fastball\",\n  \"kukumapoo\",\n  \"saffron\",\n  \"audio\",\n  \"idea\",\n  \"thi\",\n  \"reason\",\n  \"isn\",\n  \"introductory\",\n  \"planist\",\n  \"pianist\",\n  \"anticipation\",\n  \"legislation\",\n  \"marijuan\",\n  \"legalize\",\n  \"hockey\",\n  \"morgue\",\n  \"case\",\n  \"edge\",\n  \"kombat\",\n  \"spew\",\n  \"workout\",\n  \"playzone\",\n  \"wtwo\",\n  \"flatbread\",\n  \"vendor\",\n  \"naan\",\n  \"pound\",\n  \"sunlight\",\n  \"traveller\",\n  \"capacity\",\n  \"picturesque\",\n  \"ropway\",\n  \"chevy\",\n  \"balloon\",\n  \"jet\",\n  \"dub\",\n  \"role\",\n  \"indiana\",\n  \"quote\",\n  \"fedora\",\n  \"paragraph\",\n  \"trudge\",\n  \"curtain\",\n  \"nalepianki\",\n  \"skrobanki\",\n  \"desolate\",\n  \"polo\",\n  \"badge\",\n  \"crack\",\n  \"ineterview\",\n  \"sneeze\",\n  \"strobe\",\n  \"vodka\",\n  \"burray\",\n  \"biotechnology\",\n  \"heal\",\n  \"criminal\",\n  \"reenact\",\n  \"void\",\n  \"manage\",\n  \"frog\",\n  \"kermit\",\n  \"mazda\",\n  \"vortex\",\n  \"liquicd\",\n  \"elect\",\n  \"winnie\",\n  \"writhe\",\n  \"fact\",\n  \"tehcno\",\n  \"fanning\",\n  \"commentating\",\n  \"mole\",\n  \"accept\",\n  \"loom\",\n  \"twist\",\n  \"cadaver\",\n  \"commuter\",\n  \"sassy\",\n  \"makup\",\n  \"cyber\",\n  \"restaurand\",\n  \"doe\",\n  \"violence\",\n  \"plumber\",\n  \"chararacter\",\n  \"intelligence\",\n  \"algorithm\",\n  \"gesture\",\n  \"sugarflor\",\n  \"hurdle\",\n  \"copetision\",\n  \"iceland\",\n  \"paraglide\",\n  \"mustang\",\n  \"nicki\",\n  \"nikki\",\n  \"compliment\",\n  \"attraction\",\n  \"pesron\",\n  \"core\",\n  \"ghul\",\n  \"stab\",\n  \"smith\",\n  \"moma\",\n  \"zoo\",\n  \"calony\",\n  \"survival\",\n  \"bee\",\n  \"minature\",\n  \"saucer\",\n  \"iteam\",\n  \"reviewer\",\n  \"delevigne\",\n  \"mountion\",\n  \"sum\",\n  \"scooba\",\n  \"official\",\n  \"tur\",\n  \"slash\",\n  \"racoon\",\n  \"photgraph\",\n  \"magnet\",\n  \"megaphone\",\n  \"alpasca\",\n  \"animate\",\n  \"excitement\",\n  \"hayatochirus\",\n  \"shopit\",\n  \"voilin\",\n  \"homerun\",\n  \"puppet\",\n  \"daycare\",\n  \"roofer\",\n  \"adhesive\",\n  \"behave\",\n  \"liner\",\n  \"curly\",\n  \"headphone\",\n  \"seduce\",\n  \"passion\",\n  \"saree\",\n  \"mourn\",\n  \"dismis\",\n  \"dialysi\",\n  \"tender\",\n  \"salmon\",\n  \"wink\",\n  \"assessment\",\n  \"finland\",\n  \"passi\",\n  \"avenger\",\n  \"uniform\",\n  \"law\",\n  \"tense\",\n  \"thrill\",\n  \"franchise\",\n  \"laughter\",\n  \"standup\",\n  \"paneer\",\n  \"archor\",\n  \"newtown\",\n  \"megan\",\n  \"faucet\",\n  \"cus\",\n  \"eyeshadow\",\n  \"dragon\",\n  \"bet\",\n  \"pattern\",\n  \"nerf\",\n  \"fondle\",\n  \"reckles\",\n  \"sportscar\",\n  \"public\",\n  \"midair\",\n  \"norton\",\n  \"soak\",\n  \"squeeze\",\n  \"sandra\",\n  \"crisi\",\n  \"smashbrother\",\n  \"supersmash\",\n  \"wild\",\n  \"encouragement\",\n  \"barefoot\",\n  \"ammunition\",\n  \"ammo\",\n  \"workspace\",\n  \"coma\",\n  \"scar\",\n  \"expectancy\",\n  \"rockband\",\n  \"sceneary\",\n  \"glare\",\n  \"invention\",\n  \"wardrobe\",\n  \"antique\",\n  \"volkswagon\",\n  \"pair\",\n  \"huddle\",\n  \"cold\",\n  \"putty\",\n  \"samsung\",\n  \"muscle\",\n  \"daytona\",\n  \"datona\",\n  \"pocket\",\n  \"wordgirl\",\n  \"artillery\",\n  \"exist\",\n  \"breathtaking\",\n  \"cannonball\",\n  \"beanbag\",\n  \"pinatum\",\n  \"boosie\",\n  \"valence\",\n  \"nucleu\",\n  \"electron\",\n  \"argon\",\n  \"clarinet\",\n  \"shiver\",\n  \"mattres\",\n  \"moschimo\",\n  \"togetum\",\n  \"misty\",\n  \"impres\",\n  \"manican\",\n  \"anaconda\",\n  \"hoax\",\n  \"boa\",\n  \"scorpio\",\n  \"wheeler\",\n  \"career\",\n  \"aldy\",\n  \"charlotte\",\n  \"thumb\",\n  \"trinity\",\n  \"wag\",\n  \"shelter\",\n  \"register\",\n  \"trapeze\",\n  \"stopwatch\",\n  \"trapeeze\",\n  \"spot\",\n  \"strike\",\n  \"maker\",\n  \"smooth\",\n  \"hay\",\n  \"stall\",\n  \"bang\",\n  \"emotion\",\n  \"dragnet\",\n  \"appoint\",\n  \"crib\",\n  \"penguin\",\n  \"cadillac\",\n  \"sneak\",\n  \"classrooom\",\n  \"pause\",\n  \"cane\",\n  \"bbqing\",\n  \"digging\",\n  \"com\",\n  \"graze\",\n  \"console\",\n  \"cucumber\",\n  \"editing\",\n  \"illustration\",\n  \"snakeskin\",\n  \"handmade\",\n  \"amongst\",\n  \"locality\",\n  \"choke\",\n  \"conception\",\n  \"custom\",\n  \"pewd\",\n  \"pewdiepie\",\n  \"muck\",\n  \"monica\",\n  \"undertake\",\n  \"voltage\",\n  \"dehydration\",\n  \"sponsor\",\n  \"indicate\",\n  \"surfing\",\n  \"cargo\",\n  \"pimp\",\n  \"barbeque\",\n  \"hearthstone\",\n  \"cherokee\",\n  \"minnie\",\n  \"fluffy\",\n  \"sportswoman\",\n  \"soul\",\n  \"curl\",\n  \"tag\",\n  \"lure\",\n  \"gilr\",\n  \"brazier\",\n  \"bra\",\n  \"judgement\",\n  \"somemovie\",\n  \"terminator\",\n  \"extend\",\n  \"washing\",\n  \"blank\",\n  \"athelete\",\n  \"marshawn\",\n  \"shove\",\n  \"fighting\",\n  \"seal\",\n  \"sight\",\n  \"developmet\",\n  \"ipad\",\n  \"jerry\",\n  \"investment\",\n  \"whitney\",\n  \"madison\",\n  \"climate\",\n  \"aviation\",\n  \"froot\",\n  \"hallelujah\",\n  \"anchorman\",\n  \"inspection\",\n  \"switch\",\n  \"microscope\",\n  \"hocky\",\n  \"monopoly\",\n  \"electricity\",\n  \"spark\",\n  \"placement\",\n  \"sleeping\",\n  \"rubick\",\n  \"tattoo\",\n  \"canva\",\n  \"snatch\",\n  \"pitt\",\n  \"daydream\",\n  \"disturbing\",\n  \"hypnotist\",\n  \"wan\",\n  \"commander\",\n  \"jawsome\",\n  \"forza\",\n  \"lui\",\n  \"prey\",\n  \"burrow\",\n  \"backside\",\n  \"saw\",\n  \"account\",\n  \"trash\",\n  \"freeform\",\n  \"poker\",\n  \"ochocinco\",\n  \"espn\",\n  \"pronounce\",\n  \"join\",\n  \"territory\",\n  \"stunt\",\n  \"mikey\",\n  \"tug\",\n  \"tugowar\",\n  \"bloom\",\n  \"breeze\",\n  \"champaka\",\n  \"greenery\",\n  \"cycyle\",\n  \"goliath\",\n  \"spit\",\n  \"cermony\",\n  \"bestow\",\n  \"meditate\",\n  \"alloy\",\n  \"rim\",\n  \"wonder\",\n  \"cihldren\",\n  \"firehouse\",\n  \"croquette\",\n  \"skirt\",\n  \"sheff\",\n  \"dungenes\",\n  \"calico\",\n  \"mistres\",\n  \"secssion\",\n  \"dicaprio\",\n  \"dhoni\",\n  \"toyotum\",\n  \"hope\",\n  \"unrest\",\n  \"boyband\",\n  \"lock\",\n  \"executioner\",\n  \"bystander\",\n  \"execution\",\n  \"south\",\n  \"robin\",\n  \"defense\",\n  \"protective\",\n  \"mnay\",\n  \"chomp\",\n  \"anatomy\",\n  \"dissect\",\n  \"exhibition\",\n  \"jeremy\",\n  \"cocktail\",\n  \"downey\",\n  \"adjustment\",\n  \"kickball\",\n  \"knuckleball\",\n  \"advise\",\n  \"server\",\n  \"entree\",\n  \"sirector\",\n  \"amazing\",\n  \"bonu\",\n  \"diddy\",\n  \"tabletop\",\n  \"sopmeone\",\n  \"wax\",\n  \"removal\",\n  \"forearm\",\n  \"walkthrough\",\n  \"biking\",\n  \"vitamin\",\n  \"choclate\",\n  \"refridegerator\",\n  \"protein\",\n  \"islamophobium\",\n  \"pact\",\n  \"gabriel\",\n  \"pongal\",\n  \"downloading\",\n  \"over-emphasizing\",\n  \"harmony\",\n  \"housing\",\n  \"chubby\",\n  \"calmly\",\n  \"oxygen\",\n  \"underwater\",\n  \"gorge\",\n  \"thick\",\n  \"diner\",\n  \"suitcase\",\n  \"breifcase\",\n  \"submarine\",\n  \"pressure\",\n  \"yoga\",\n  \"carter\",\n  \"flap\",\n  \"parkor\",\n  \"spare\",\n  \"bowling\",\n  \"bowler\",\n  \"comdey\",\n  \"slopestyle\",\n  \"section\",\n  \"promo\",\n  \"mathew\",\n  \"spacecraft\",\n  \"mcconaughy\",\n  \"bonfire\",\n  \"bonefire\",\n  \"brake\",\n  \"carbreak\",\n  \"rotor\",\n  \"recipie\",\n  \"stimulate\",\n  \"europe\",\n  \"groundwater\",\n  \"outer\",\n  \"seep\",\n  \"widow\",\n  \"johansson\",\n  \"ten\",\n  \"vessel\",\n  \"germany\",\n  \"labor\",\n  \"gauge\",\n  \"garnish\",\n  \"biker\",\n  \"pore\",\n  \"recepie\",\n  \"mspaint\",\n  \"furry\",\n  \"inch\",\n  \"worm\",\n  \"caterpillar\",\n  \"wate\",\n  \"hula\",\n  \"footnall\",\n  \"compose\",\n  \"saddle\",\n  \"trot\",\n  \"backboard\",\n  \"dwight\",\n  \"bus\",\n  \"neighborhood\",\n  \"schoolbu\",\n  \"prince\",\n  \"bambi\",\n  \"banana\",\n  \"ulton\",\n  \"crossbar\",\n  \"typewriter\",\n  \"trio\",\n  \"ufc\",\n  \"frypan\",\n  \"consumer\",\n  \"snuggle\",\n  \"industrialist\",\n  \"cramer\",\n  \"mpv\",\n  \"spokesman\",\n  \"toast\",\n  \"motherboard\",\n  \"surprise\",\n  \"improvisation\",\n  \"perosn\",\n  \"acrobat\",\n  \"lobster\",\n  \"stain\",\n  \"beige\",\n  \"year\",\n  \"blackberry\",\n  \"storyline\",\n  \"walking\",\n  \"beeker\",\n  \"beaker\",\n  \"solution\",\n  \"derrick\",\n  \"unicycle\",\n  \"loiter\",\n  \"bose\",\n  \"funny\",\n  \"desktop\",\n  \"mac\",\n  \"crossing\",\n  \"recording\",\n  \"apology\",\n  \"bunker\",\n  \"argentina\",\n  \"paw\",\n  \"displaying\",\n  \"batterie\",\n  \"propeller\",\n  \"clockwise\",\n  \"costar\",\n  \"decease\",\n  \"lsd\",\n  \"mating\",\n  \"hump\",\n  \"copulate\",\n  \"doom\",\n  \"chemical\",\n  \"whelm\",\n  \"proposal\",\n  \"tabletenni\",\n  \"breath\",\n  \"hemsworth\",\n  \"acting\",\n  \"helmsworth\",\n  \"twin\",\n  \"pertain\",\n  \"intensity\",\n  \"fork\",\n  \"cower\",\n  \"insect\",\n  \"nerd\",\n  \"disappointment\",\n  \"zip\",\n  \"network\",\n  \"collaboration\",\n  \"anyone\",\n  \"communication\",\n  \"hai\",\n  \"aisain\",\n  \"raid\",\n  \"dustbin\",\n  \"dumpster\",\n  \"mailbox\",\n  \"aerobic\",\n  \"canyon\",\n  \"cody\",\n  \"analyze\",\n  \"vapor\",\n  \"roacket\",\n  \"micky\",\n  \"fairie\",\n  \"lamb\",\n  \"nursery\",\n  \"initiative\",\n  \"precision\",\n  \"photoshoot\",\n  \"genital\",\n  \"narrarator\",\n  \"sygornie\",\n  \"sigourney\",\n  \"re-enacting\",\n  \"pikini\",\n  \"beggar\",\n  \"lend\",\n  \"throne\",\n  \"monarchy\",\n  \"grace\",\n  \"daisy\",\n  \"twain\",\n  \"produce\",\n  \"peal\",\n  \"moto\",\n  \"wreck\",\n  \"mcdonald\",\n  \"roaed\",\n  \"darken\",\n  \"dressing\",\n  \"reno\",\n  \"len\",\n  \"groin\",\n  \"eavesdrop\",\n  \"eavesdropping\",\n  \"distraught\",\n  \"dispenser\",\n  \"exhilarate\",\n  \"exhilarating\",\n  \"designate\",\n  \"programming\",\n  \"globalization\",\n  \"astage\",\n  \"lip\",\n  \"foodball\",\n  \"phrenology\",\n  \"phremology\",\n  \"america\",\n  \"hitler\",\n  \"discrimination\",\n  \"racism\",\n  \"houser\",\n  \"pragmatism\",\n  \"swimmer\",\n  \"hank\",\n  \"medication\",\n  \"prescription\",\n  \"transport\",\n  \"adulthood\",\n  \"nightclub\",\n  \"wig\",\n  \"overlay\",\n  \"meter\",\n  \"800\",\n  \"footrace\",\n  \"siphon\",\n  \"firmware\",\n  \"seagull\",\n  \"importance\",\n  \"accompany\",\n  \"eight\",\n  \"husband\",\n  \"replacement\",\n  \"machince\",\n  \"uner\",\n  \"bronze\",\n  \"trim\",\n  \"laser\",\n  \"restarunt\",\n  \"stucture\",\n  \"surgeon\",\n  \"nanny\",\n  \"misbehave\",\n  \"floating\",\n  \"mule\",\n  \"hamburger\",\n  \"iowa\",\n  \"lowa\",\n  \"brief\",\n  \"cleanong\",\n  \"solo\",\n  \"tar\",\n  \"homemade\",\n  \"winston\",\n  \"peole\",\n  \"agreement\",\n  \"unemployment\",\n  \"baton\",\n  \"woody\",\n  \"costumer\",\n  \"literature\",\n  \"campaigning\",\n  \"presidency\",\n  \"refuse\",\n  \"courier\",\n  \"beat-boxing\",\n  \"fillet\",\n  \"relay\",\n  \"ping\",\n  \"request\",\n  \"kircher\",\n  \"tim\",\n  \"convulse\",\n  \"assail\",\n  \"intrude\",\n  \"gourmet\",\n  \"gingerbread\",\n  \"recode\",\n  \"foreground\",\n  \"ditch\",\n  \"playdoh\",\n  \"dexter\",\n  \"char\",\n  \"daryl\",\n  \"showcase\",\n  \"mand\",\n  \"abot\",\n  \"cheery\",\n  \"sunstance\",\n  \"album\",\n  \"fireplace\",\n  \"resistance\",\n  \"bga\",\n  \"larry\",\n  \"tune\",\n  \"geographic\",\n  \"spiel\",\n  \"alternator\",\n  \"installing\",\n  \"brag\",\n  \"berate\",\n  \"womanb\",\n  \"bumper\",\n  \"dent\",\n  \"prus\",\n  \"daylight\",\n  \"natuiralist\",\n  \"halloween\",\n  \"sirloin\",\n  \"pinocchio\",\n  \"bussaly\",\n  \"contmy\",\n  \"foosball\",\n  \"cocoon\",\n  \"burqa\",\n  \"impersonate\",\n  \"fingure\",\n  \"primer\",\n  \"carson\",\n  \"feeding\",\n  \"parent\"\n]"
  },
  {
    "path": "model/univi/eval/questions/video_qa/msrvtt_qa.json",
    "content": "[\n  {\n    \"question\": \"what is the video doing?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person provides instructions on doing?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a word document doing?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone showing something in?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does guy write instructions on?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who writes instructions on his computer?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is someone showing in a computer?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is showing something in a computer?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did the video regarding the program set in?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is showing how to illegally download songs?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to to tasks on a computer?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who provides instructions on searching for music downloads online?\",\n    \"video_name\": \"video7010\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are some paint buckets doing?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what are paint cans doing?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"exclaim\"\n  },\n  {\n    \"question\": \"what is montage of paint cans in different colors doing?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is clip doing?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an informational video doing?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is animated paint cans doing?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are animated buckets of paint doing?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a purple paint can doing?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what can singing?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"pain\"\n  },\n  {\n    \"question\": \"what explains colors?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are paint cans exclaiming?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is showing the names of colors?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are teaching how to say colors?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is shown to help learn colors?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what are exclaiming their color?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"who are saying colors?\",\n    \"video_name\": \"video7011\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a suit man doing?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a light brown haired man doing?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a male with a brown jacket doing?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a brown blazer doing?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person in a brown blazer blue shirt and glasses doing?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with a blue shirt and glasses doing?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting down?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting in?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a man seated in a chair discuss?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"health\"\n  },\n  {\n    \"question\": \"who is talking from a studio with fun?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"who discusses nature and the curability of mental disorders?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about the relevance of disorders?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting in the room?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wearing brown color dress talking in?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who speaks about mental health disorders and how different short blonde hair and glasses might or might not be?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a suit man talking from a studio with?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what is a suit man talking from with fun?\",\n    \"video_name\": \"video7012\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man writes on a white board while doing?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"who writes on a white board while teaching a match class?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is writing a math problem on a whiteboard in front of a class?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is teaching math by using a white board?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who writes math problems out on the board?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what is a man writing on about factoring polynomials?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"chalkboard\"\n  },\n  {\n    \"question\": \"who is writing on a chalkboard about factoring polynomials?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a person writing on a whiteboard in front of a class?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man teaching by using a white board?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"what does a teacher write out on the board?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"who is teaching mathematical concepts?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is writing on a whiteboard?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a math lesson?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who is teaching math?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man writing on?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"whiteboard\"\n  },\n  {\n    \"question\": \"what is a teacher giving?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"lesson\"\n  },\n  {\n    \"question\": \"what is a man teaching?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"who is teaching?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is writing?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a teacher write math problems out on?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is teacher doing?\",\n    \"video_name\": \"video7013\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"when are some judges judging a girl?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is interviewed on a gameshow?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl interviewed on?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"gameshow\"\n  },\n  {\n    \"question\": \"who talks to judges?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when did a little girl being interview?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who are judges judging?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who are some judges judging on stage?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl and the judges doing?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are judges doing?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"what is little girl doing?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is talking to judges on a singing show?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks to a little girl on the voice?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who is talking to the judges on a game show?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are some judges doing?\",\n    \"video_name\": \"video7014\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who is a girl with pigtails laughing at acting silly?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a young man begin dancing to amuse sitting on the couch?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is laughing while talking to a young male?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who begins dancing to amuse the young girl sitting on the couch?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is an asian man entertaining by singing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is an asian man doing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"entertain\"\n  },\n  {\n    \"question\": \"what is brother doing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is girl and guy doing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is a girl with pigtails doing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what does an asian male make?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who begins singing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does boy make?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who is standing up?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"who is laughing at a man dancing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is entertaining a girl by singing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances to entertain a japanese woman?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a japanese man dance to entertain?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings to girl?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who makes his friend laugh?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"who did brother dancing infront of?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"sister\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7015\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are girls and their mom doing?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"marble\"\n  },\n  {\n    \"question\": \"what are some kids doing?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl and someone doing?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a group of girls doing?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"decorate\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"who mixes colors in a small bowl?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is decorating eggs?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a mother and two children decorate?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"easter\"\n  },\n  {\n    \"question\": \"what are being made at a table?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"easter\"\n  },\n  {\n    \"question\": \"what is a girl and someone putting in to a water?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who is helping two kids color eggs?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are colored easter eggs being made at?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does a woman put into a holder?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what is a girl and someone putting an painted egg in to?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a woman put a painted egg into?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"holder\"\n  },\n  {\n    \"question\": \"what do kids use nail polish to paint?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"easter\"\n  },\n  {\n    \"question\": \"who puts a painted egg into a holder?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who teaches a girl how to paint eggs?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do kids use to paint easter eggs?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"who does a woman teach how to paint eggs?\",\n    \"video_name\": \"video7016\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what a man mines down into?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what has good graphics?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who plays?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about his minecraft experience?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"who is talking about minecraft as he plays?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plasy games online?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is commentating while playing minecraft?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a person talking about as he plays?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a minecraft player mining blocks in?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"nether\"\n  },\n  {\n    \"question\": \"who is mining blocks in the nether?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is showing off his minecraft game?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who shows hammering through rocks in a video game?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mines down into the earth?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy showing off?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what play?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is this is a video of a minecraft game where someone doing?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a minecraft player doing?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"mine\"\n  },\n  {\n    \"question\": \"what is a man shows doing?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"hammer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7017\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is changing photos?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"peson\"\n  },\n  {\n    \"question\": \"what does a man use flash cards to illustrate?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is comically played?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"voiceover\"\n  },\n  {\n    \"question\": \"who performs to a rap song?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances in a room?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man use to illustrate his rap?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"who dances in sports uniforms?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"rapper\"\n  },\n  {\n    \"question\": \"who flips through photos?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who uses flash cards to illustrate his rap?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men perform in a music video?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is throwing pictures during a rap song?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who nonchalantly shows slides of different rap scenes while a rap voiceover is comically played?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who sings a hip hop song that involves sports references?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing a song and dancing?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man dance in?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is men with jersey s on are dancings and doing?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is man satirically doing?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is a peson doing?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"who is showing a picture?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a music video with a man doing?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7018\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"who glasses sitting on a black colored chair talking about nervous system?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a suit man talking from a studio with?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what is a suit man talking from with fun?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what is a person with brown color dress explaining about?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a famous nerd on the internet describe?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"what does a man in glass sitting on a black colored chair talking about?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"what does a man in jacket sit in large chair in office room with paintings on?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is talking from a studio with fun?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what does a young male instructor gives a run through of the functions of the body s?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"what does a man in a brown coat and glasses sit in explaining how the brain works?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"who speaks about introduction to the nervous system?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with suit doing?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a suit man doing?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a scientist doing?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in brown suit and black glasses doing?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in glasses doing?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is sitting in the room?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in brown coat doing?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in a brown coat and glasses sits in an office doing?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person with brown colour dress doing?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person in blazer doing?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is talking to the camera very quickly?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting in?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man talking to very quickly?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7019\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"construct\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a woman makes realistic doing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"wrap\"\n  },\n  {\n    \"question\": \"who wraps a baby doll in some fake leaves?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is placing a leaf on a fake fetus of a baby?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what does a woman make?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who makes crafts?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman crafting with?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"clay\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is doing a craft?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is preparing some art?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who makes a craft project?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making crafts?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who creates some crafts?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is crafting with clay?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts a flower out of a different piece of dough?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who creates a baby out of craft supplies?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who makes realistic looking leaves and flowers for a cake?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone placing on a fake fetus of a baby?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"who places a leaf on some dough?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman create a baby out of?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what does a woman place a leaf on?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what does a woman place on some dough?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"who is showing steps to making fondant characters?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what then proceeds to cutting up a flower?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a woman make realistic looking leaves and flowers for?\",\n    \"video_name\": \"video7020\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"who hits the ball?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is a man calling?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who hits ball?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what does baseball player hit?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who then celebrates with his team?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what does a player hit?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who reports on a baseball game?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what does baseball casting as a player run after?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is players doing?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is bunch of players doing?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what is a batter doing?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what does a player then celebrate with?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"who hits a ball to the back of the field?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who is hitting the ball in a baseball game?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who goes after the ball to the fence?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"outfielder\"\n  },\n  {\n    \"question\": \"who hits the ball to the fence?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is a man hitting in a baseball game?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who is calling a baseball game?\",\n    \"video_name\": \"video7021\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is been conducted?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is there is a cute woman doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who show?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"fasion\"\n  },\n  {\n    \"question\": \"what are a fashion show is been conducted and modern girls doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a model doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are many girls walking down?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"ailse\"\n  },\n  {\n    \"question\": \"what is a bunch of women in provacative outfits doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is fashion show and girls doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are many girls doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women models doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is several women walk separately down a runway doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what were a group lady models doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"when are modern girls walking?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do fashion show and girls walking with lingerie dress?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a model wearing a blue outfit walking down?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do women walk up and down at a fashion show?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what is there is a brown hair woman doing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do several women walk separately down a runway wearing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"when were a group lady models dancing?\",\n    \"video_name\": \"video7022\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7023\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl a cream applying in her hand brush for make up beauty facial look still pictures doing?\",\n    \"video_name\": \"video7023\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is against a pink backdrop a fair-skinned girl with long dark blond hair and red fingernails doing?\",\n    \"video_name\": \"video7023\",\n    \"answer\": \"pat\"\n  },\n  {\n    \"question\": \"what is a girl a powder in her hand brush for make up beauty facial look doing?\",\n    \"video_name\": \"video7023\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a close up of a young girl doing?\",\n    \"video_name\": \"video7023\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a red haired young girl doing?\",\n    \"video_name\": \"video7023\",\n    \"answer\": \"make\"\n  },\n  {\n    \"question\": \"who applies powder foundation to face with large soft pad?\",\n    \"video_name\": \"video7023\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young girl apply to face with large soft pad?\",\n    \"video_name\": \"video7023\",\n    \"answer\": \"foundation\"\n  },\n  {\n    \"question\": \"who explain how is put the makeup and cosmetics?\",\n    \"video_name\": \"video7023\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a young girl pat with a powder puff?\",\n    \"video_name\": \"video7023\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a young girl applying powder to?\",\n    \"video_name\": \"video7023\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a person pretends to bathe a small plastic cat doing?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is there is a hand with pink nails doing?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a toy cat doing?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what does a person put toy cat in?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"tub\"\n  },\n  {\n    \"question\": \"what is woman putting the small cat into?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a person wash with a brush?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a person put in a tub?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a person wash a toy cat with?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is woman putting into the water?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is woman putting to have shower?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"who is cleaning a toy cat?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman cleaning?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who puts toy cat in a tub?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who washes a toy cat with a brush?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pretends to bathe a small plastic cat using a bathroom play set of equally small size?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who bathing a toy cat in a little bath tub?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is bathing in soapy water in a toy bathtub?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who cleans a plastic toy cat in a very small bathtub?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did little pet shop cat getting a bath and wash with?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"who is cleaning the head of the orange cat?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what kitten getting a bath in a white bath tub?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what do a toy kitten getting in a white bath tub?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"who is putting the small cat into the water?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is in small toy bathtub with water and bubble and girl washes with scrubber?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is a toy cat in small toy bathtub with water and bubble and girl washes with?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"scrubber\"\n  },\n  {\n    \"question\": \"who is putting the orange doll to have shower?\",\n    \"video_name\": \"video7024\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is running naked across the grass?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is the girls doing?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people relaxing next to?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what shows old footage of a man and also of a beach?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a naked child run through?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a boy running running without?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who is running naked on the beach?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a young child running naked on?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what does the video show old footage of a man and also of?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is running without dress?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who runs through a field?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a child running naked across?\",\n    \"video_name\": \"video7025\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man review?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is being driven?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is anchor doing?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is a man in a car doing?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who reviews a vehicle?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the features of the jeep cherokee?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man giving a review on?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man driving a car for?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man giving on a vehicle?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man explaining a car s?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"what is a man explaining s speed system?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car for review?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a review on a vehicle?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining a car s speed system?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the benefits of a car?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about the interior features of a vehicle?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about the interior features of a car?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who talks about the features of a jeep cherokee?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing speed control features of a cherokee vehicle?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving for review?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is giving demo about the car?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone giving demo about?\",\n    \"video_name\": \"video7026\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is the man in the video doing?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man talks about what doing?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a tv doing?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a movie is shown doing?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what is the movie ted two doing?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what is a man video doing?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a screen with a man doing?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a globe screen is displayed on?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what does man describe on a television screen?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who is watching some programs on his tv?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a screen with a man sitting on in a glimpse?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what is a screen with a man sitting on a bench in?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"glimpse\"\n  },\n  {\n    \"question\": \"who is discussing how the program is loading up?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes a screen with a man?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a globe is displayed on the space?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is discussing if there are any problems or questions to message him?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about what is loading up on his computer screen?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown loading onto a large computer monitor?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is screen is displayed on the space?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"globe\"\n  },\n  {\n    \"question\": \"who describes a picture on a television screen?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the screen of tv show?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"planet\"\n  },\n  {\n    \"question\": \"what shows from out of space on a tv screen in a room with a window?\",\n    \"video_name\": \"video7027\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what is man in brown jacket doing?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are four young male singers in coats doing?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"what is four guys doing?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a boy band doing?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sing in front of a japanese pagoda and in a restaurant?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"backstreet\"\n  },\n  {\n    \"question\": \"what are the group of men eating together in?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who is a person walking on a street s?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"divider\"\n  },\n  {\n    \"question\": \"what are four young male singers in coats exploring a city in?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"asium\"\n  },\n  {\n    \"question\": \"who is walking on a street s center divider?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"where is a guy with a black jacket singing?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"china\"\n  },\n  {\n    \"question\": \"what are four young male singers in coats exploring in asia?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy with a black jacket singing in?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"china\"\n  },\n  {\n    \"question\": \"what dances?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what sings?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who does a singer sing out?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man standing in?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who sings out a man?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who is dancing with others?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing in the road?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing song?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7028\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is squidward doing?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what does a cartoon character speak on?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is squidward picking up?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what is the scene is from spongebob squarepants squidward doing?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"taunt\"\n  },\n  {\n    \"question\": \"what are spongebob and squidward doing?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who answers the phone?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what is a cartoon squid doing?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what does a cartoon character pick up?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a cartoon squid using?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is using the phone?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is someone watching?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who is about to use the telephone?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what spongebob?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who becomes upset?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what does squidward answer?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what show for kids?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who picks up a phone?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is from spongebob squarepants squidward is taunting spongebob by threatening to make a phone call?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is the scene from spongebob squarepants is taunting spongebob by threatening to make a phone call?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what is the scene from spongebob squarepants squidward is taunting by threatening to make a phone call?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who is making a telephone call while spongebob becomes upset and starts to tear himself in half?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what is squidward making while spongebob becomes upset and starts to tear himself in half?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what does squidward from the television show spongebob squarepants making?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is from spongebob squarepants spongebob is begging him not to?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is someone showing from tv?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is the scene from spongebob squarepants is begging him not to?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who starts to tear himself in half?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who is talking to spongebob?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what does spongebob start to tear himself in?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"who is picking up a telephone receiver?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who is watching the cartoon spongebob?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who speaks on a phone?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is showing cartoon clip from tv?\",\n    \"video_name\": \"video7029\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a male instructor teaching?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do a group of people learn?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does a man teach how to dance?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is teaching a dance class?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"instructor\"\n  },\n  {\n    \"question\": \"what does a man dance with a women in?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are a group of people dancing on?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who dances with a women in a room?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a dance class where an african male providing?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"instruction\"\n  },\n  {\n    \"question\": \"who teaches a group how to dance?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances for the woman?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is men and women doing?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a male instructor doing?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who teaches people how to dance?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"instructor\"\n  },\n  {\n    \"question\": \"what dance class?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"ballroom\"\n  },\n  {\n    \"question\": \"who do people follow as he teaches them how to dance?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"instructor\"\n  },\n  {\n    \"question\": \"what do people learn to dance in?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do a ballroom dance?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what are a dance class where people doing?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who does the man dance for?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a dance class where an african male doing?\",\n    \"video_name\": \"video7030\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what are three girls doing?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"jog\"\n  },\n  {\n    \"question\": \"what is mom and two kid doing?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is here a woman doing?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a woman and kids doing?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a mom and her kids doing?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man behind a camera doing?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a funny video with young children doing?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"jog\"\n  },\n  {\n    \"question\": \"what are a woman and two kids doing?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"how many girls are dancing together?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"where are a woman and kids jogging?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are kids running in?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"who has two children?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do young girls dance with?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who kid playing?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"mom\"\n  },\n  {\n    \"question\": \"what exercises indoors?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what are a woman and kids jogging in?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who jumps around with two girls?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many children does the woman have?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing with two girls?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a woman and kids in place?\",\n    \"video_name\": \"video7031\",\n    \"answer\": \"jogging\"\n  },\n  {\n    \"question\": \"what is a man demonstrating in detail?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"skill\"\n  },\n  {\n    \"question\": \"who talks about machine part cleaning?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who seperating parts?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is having hardware work?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person having?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"hardware\"\n  },\n  {\n    \"question\": \"who is explaining installation of an item?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is teaching how to use tools?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man working on a piece to?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man working on to a car?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"piece\"\n  },\n  {\n    \"question\": \"what is a man demonstrating a skill in?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"detail\"\n  },\n  {\n    \"question\": \"who is demonstrating how to use a tool?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts washers on bolts?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"mechanic\"\n  },\n  {\n    \"question\": \"who is demonstrating a skill in detail?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on a piece to a car?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who prepares some components for an engine?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is demonstrating how to remove dirt from grommets?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaining installation of?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"item\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7032\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a gentleman with green and black dress explaining about?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man in a green shirt out?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what did not play so i cannot describe the contents?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a coach teaching on how to position the ankle?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what is a coach leaning the body in while taking first few steps on running?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what is a coach leaning in front while taking first few steps on running?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"who is teaching the perfect way on how to position the ankle?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"who demonstrates self defense moves in a parking lot?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is leaning the body in front while taking first few steps on running?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"who coaches an excersize routine aimed at steps?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a green color dress wearing showing steps on road angle how to do position displaying on screen?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what dress wearing cloth man showing steps on road angle how to do position displaying on screen?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a guy in a green shirt doing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about the body positions as he begins an activity?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"what dress wearing cloth man standing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a green tshirt man doing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a green color dress doing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a coach doing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a gentleman with green and black dress doing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who do a green color dress wearing standing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man in the green shirt shows how to do an explosive jump when doing?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a man exercising in a parking lot discuss on his steps?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"angle\"\n  },\n  {\n    \"question\": \"what does an athlete begin?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"activity\"\n  },\n  {\n    \"question\": \"who is standing in the road?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who begins an activity?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who is talking about how to run?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man standing in?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man talking?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking something?\",\n    \"video_name\": \"video7033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young individual doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is man in black shirt doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is youtuber has a show about odd news doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"tos\"\n  },\n  {\n    \"question\": \"what is a person in black t-shirt doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man in a blak shirt doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is man in black shirt holding upside down?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a black tshirt man doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a tshirt young man doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who continues to talk?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what jokes about different people?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man tossing?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is tossing a soft toy?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a clip of a snake getting hit shown holds a baby with back commentary universal studio logo with transition into next segment?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a clip of a snake getting hit shown man holds a baby with back commentary universal studio logo with into next segment?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"transition\"\n  },\n  {\n    \"question\": \"who has a show about odd news including a person handling poison snakes?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"youtuber\"\n  },\n  {\n    \"question\": \"what is a clip of a snake getting hit shown man holds a baby with back commentary universal studio logo with transition into?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"who is presenting a subject in a funny manner?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"what does youtuber have a show about including a person handling poison snakes?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking holds a boy toy by its leg?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a young man with a t shirt hold up?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"what is a young individual presenting in a funny manner?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"subject\"\n  },\n  {\n    \"question\": \"who is speaking about universal studios?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy talking holds by its leg?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man having?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"who makes faces?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a young man act strangly then discusses?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"what is man in black shirt talking about?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who acts strangly then discusses a selfie?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is having a doll?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy talking holds a boy toy by?\",\n    \"video_name\": \"video7034\",\n    \"answer\": \"leg\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are a person demonstrates a describes a colorful video game that they doing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a wooden beam doing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is blue orbs doing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is there are some different colors light doing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is the lighting effects are very nice and the cartoon creatures doing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains the scenario and situation of a video game?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"who is playing world of warcraft with many other players?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being played where an animated character character is in blue light?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who speak to tv programm for visionaries inside the creative mino?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to kill his enemies?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining his activity?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is person playing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what orbs moving?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what are very nice?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"lighting\"\n  },\n  {\n    \"question\": \"what is a man explaining?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"activity\"\n  },\n  {\n    \"question\": \"who plays a game?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a game with weapons on the computer?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who narrates his actions while doing a game?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being played on a screen?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a computer game being played on?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is shaking back and forth with a sparkly blue background?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"beam\"\n  },\n  {\n    \"question\": \"who stands idly in a mystical setting?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who demonstrates a describes a colorful video game that they are playing?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man playing with weapons on the computer?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is man playing a game with weapons on?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man playing world of with many other players?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"warcraft\"\n  },\n  {\n    \"question\": \"what is a man playing with many other players?\",\n    \"video_name\": \"video7035\",\n    \"answer\": \"warcraft\"\n  },\n  {\n    \"question\": \"where is an asian building being filmed?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who is presenting the object in the city?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what includes japanese pagodas on stilts bridges and still lake?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what is on the edge of a beautiful pond?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what takes showing facilities and buildings describing a central island?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what show through still images with lush nature?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what does various japanese garden take showing facilities and buildings describing?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"island\"\n  },\n  {\n    \"question\": \"what is an asian building being filmed in?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who is recording the new garden near the green trees?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what has narrow raised bands over a square entryway by angular columns a lake reflects the blue sky and tranquil set of buildings by the water?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is various japanese garden takes doing?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is being filmed in a place?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who is recording the object in japan?\",\n    \"video_name\": \"video7036\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are various sports video clips doing?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who dance around?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a video shows a football player doing?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a basketball player break?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what are shown?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are several balls doing?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what are popular sports clips playing?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who does a video show dancing?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what a sports vine about football and basketball feats with?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a video clip from vines sport?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what featured sports highlights?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"who dunks in a game?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what links to the best sport vines?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are video clips playing on?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are playing on a screen?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who breaks the glass?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what shows a football player dancing?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a basketball player dunk in?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what highlights clips are shown?\",\n    \"video_name\": \"video7037\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"who is making some dishes using crab?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person frying to be served in a kitchen?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do women prepare some fried dishes in?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"kitchenthere\"\n  },\n  {\n    \"question\": \"what is boiling in the fry pan crab is put into it and after boiling its taken out?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"who is some yellow liquid boiling in pan crab is put into it and after boiling its taken out?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who talks about the ingredients and methods to make crab?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does a chef talk about the ingredients and methods to make?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what is a person frying some food items to be served in?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is frying some food items to be served in a kitchen?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who mixes various ingredients into hot pots?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes a preparation for shellfish and a creamy sauce?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone adding many ingredients in the hot pan in?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is adding many ingredients in the hot pan in a kitchen?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is boiled in the then the gravy is made?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"who is stirring around very hot liquid with a metal spoon in a wok sitting on the stove?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is in a kitchen a person doing?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is some yellow liquid doing?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is in a kitchenthere is women doing?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"melt\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7038\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are women walking a fashion show runway to?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are women walking runway to music?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"when do models in a catwalk?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do a clip from a korean show set to?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a girl wearing sunglasses walk?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what preforms a song?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is walking in a stage?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what does a band preform?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are women walking down?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do female models show clothes on?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"when is a model walking?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a model doing?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7039\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a guy and a girl doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what are two people explaining using a whiteboard?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is demonstrating on a whiteboard?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is drawing a diagram?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man demonstrating on?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"whiteboard\"\n  },\n  {\n    \"question\": \"what is a man drawing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"diagram\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are people using?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"who explaining using a white board and marker?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man woman doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people explaining something using?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"whiteboard\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are a guy and a girl writing on a dry erase while discussing politics?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"how many people are explaining something using a whiteboard?\",\n    \"video_name\": \"video7040\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are young people dancing inside?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what are couples dancing on?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what are children dancing at?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what did kids dancing choreograph?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a large group of people dancing in?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what scene where some people singing and dancing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are a group of people dancing in?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are some couples doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are young people doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is there are people doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some teens doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are couples doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a large group of people doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of teens doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of men and women doing?\",\n    \"video_name\": \"video7041\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what two people hug in?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what are two woman hugging in?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"how many people hug in a bedroom?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is blinking?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"what are women hugging in?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a woman open?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"what is a man and a woman hugging in?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do indias famous show?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"bos\"\n  },\n  {\n    \"question\": \"what show commercial advertisement?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"bigg\"\n  },\n  {\n    \"question\": \"who are hugging in a bedroom?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what blinks in a closeup view?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"what do bigg boss show?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a video of two women doing?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is an eye doing?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"blink\"\n  },\n  {\n    \"question\": \"what is this is an advertisement for bigg boss season 5 there is a logo and a human eye that doing?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"blink\"\n  },\n  {\n    \"question\": \"what are two woman doing?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7042\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is driving on the road?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what does the blue car have on it?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what s self driving car is described?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what shows a self driving car?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"what does a man talk about google s self driving?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a commercial about a google computer drive?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who describes the causes for automobile accidents?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is video of a man doing?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what has the word google on it?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a narrator doing?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a blue car doing?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who talks about google s self driving car?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being promoted?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what shown here?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"classy\"\n  },\n  {\n    \"question\": \"what does google s is described?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"driving\"\n  },\n  {\n    \"question\": \"what is a blue car driving on?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is some one showing?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is on the road?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car on?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is driving down the road?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is google car running on?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a car driving down?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is running on the road?\",\n    \"video_name\": \"video7043\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a black women doing?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a black women doing?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a black woman doing?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what is a black african woman doing?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an african aid doing?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is black woman in dress doing?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sky news doing?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who translates?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stands by a door and talks about being attacked?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is leaning against a brown door?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a black women reporting to?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"newsreporter\"\n  },\n  {\n    \"question\": \"what is a black african woman talking inside of?\",\n    \"video_name\": \"video7044\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who takes some shots of a basketball court?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"cameraman\"\n  },\n  {\n    \"question\": \"who is taking a picture of a basketball player?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the space he used for a photo shoot?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"photographer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man shooting?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"photography\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who takes pictures?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking photos?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking pictures?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is shooting a basketball ground?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about photography?\",\n    \"video_name\": \"video7045\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is fire doing?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"burn\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is red lettered words doing?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a vector type of image is shown doing?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"alternate\"\n  },\n  {\n    \"question\": \"what plays while the lyrics are presented on the screen?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a very dark purple shown on while someone is singing?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a vector type of image shown alternating with?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does music playing in spanish with lyric on?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does video showing the lyric to?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is accompanied by pink graphics?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is burning and its dark?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what are the lyrics presented on?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is a song accompanied by?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what do some computer graphics dance to?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who dance to the music?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does the lyric to?\",\n    \"video_name\": \"video7046\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are some colored towels and objects doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a two woman doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are clothing and purses are hung up for display near some trees two women doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are two ladies doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is two ladies doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is purses and clothing doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is two woman doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"blow\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there are two ladies doing?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"visit\"\n  },\n  {\n    \"question\": \"who is presenting his products on the table in mountain?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many ladies are watching different types of bags?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women looking at hanging?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"handbag\"\n  },\n  {\n    \"question\": \"who does a girl talk to while goods walk?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many women are looking at some handbag hanging?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man blowing in women are talking about purses and bags?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"horn\"\n  },\n  {\n    \"question\": \"who is doing some experiments with two ladies outdoors?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks to another girl while goods walk?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is looking at a lot of handbags?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are hung up for display near some trees two women are speaking?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what have many hand bags available in sales?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"shopping\"\n  },\n  {\n    \"question\": \"what has vendor with many colorful purses and fabric containers?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"how many women are clothing and purses hung up for display near some trees are speaking?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is blowing in a horn women are talking about purses and bags?\",\n    \"video_name\": \"video7047\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a movie scene hero lying on with girl speaking displaying on screen?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a woman talking to an angry shirtless man in?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what hero lying on bed with girl speaking displaying on screen?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are serial telecast the tv chaneland the characters are argued in the south indian hindi?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"what are serial the tv chaneland the characters are argued their family problem in the south indian hindi?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"telecast\"\n  },\n  {\n    \"question\": \"who gets upset?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the south indian hindi have?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is the husband scolding?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"wife\"\n  },\n  {\n    \"question\": \"what are an indian man and woman relaxing in?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who does the man push?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a md and woman lounging together on?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who pushes the woman?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are relaxing in the living room?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there is a woman in red dressing doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a couple sittinag and doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is indian woman in red speaking to someone with a man doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is a woman with a nose piercing and an orange dress talking to?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman with a nose piercing and an orange dress doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are man and woman doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is a movie scene hero doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a pretty woman doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an indian movie in which the husband doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"scold\"\n  },\n  {\n    \"question\": \"what is a indian woman with a orange shirt doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are an indian man and woman doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"who is sitting shirtless behind a woman wearing an orange top?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits on the edge of a bed while the south indian hindi converse?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to an angry shirtless man in bed?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man sitting behind a woman wearing an orange top?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"shirtles\"\n  },\n  {\n    \"question\": \"what is an indian woman in orange doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a md and woman doing?\",\n    \"video_name\": \"video7048\",\n    \"answer\": \"lounge\"\n  },\n  {\n    \"question\": \"what is someone preparing a plate of with instructions?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man adding to a plate of food?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"saurkraut\"\n  },\n  {\n    \"question\": \"who is adding sauerkraut to his plate of food?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man putting together some sort of dish with?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"saurkraut\"\n  },\n  {\n    \"question\": \"what does a man prepare a plate of food adding?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"sauerkraut\"\n  },\n  {\n    \"question\": \"what is a man putting together some sort of with saurkraut?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a man prepare a plate of adding sauerkraut?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who puts together a plate of food?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man serving food in with eggs carrot and cabbage?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who is preparing a plate of food with instructions?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is adding saurkraut to a plate of food?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is serving food in the plate with eggs carrot and cabbage?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who prepares a plate of food adding sauerkraut?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is its a food item for doing?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man talks about the food he doing?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is putting together some sort of dish with saurkraut?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man serving in the plate with eggs carrot and cabbage?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a man put together a plate of?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man preparing?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone eating?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is preparing a food dish?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating some food?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person adding to his plate of food?\",\n    \"video_name\": \"video7049\",\n    \"answer\": \"sauerkraut\"\n  },\n  {\n    \"question\": \"who showcased?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a person pushing?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman showing off?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does a woman show off?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who stroller?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is a woman demonstrating?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"who does woman close?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is pushing a stroller?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gives a live demonstration of a stroller for children?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding a stroller on a sidewalk?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who demonstrates how to fold up a stroller?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman folding a stroller on?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"who is a baby placed into?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman on a sidewalk?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman giving for baby trolley?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"who does a woman talk about?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman giving demo for?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"who does women explain workings of?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who closes a stroller?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is placed into as stroller?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who talks about a stroller?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating a stroller?\",\n    \"video_name\": \"video7050\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man say he has?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"boner\"\n  },\n  {\n    \"question\": \"what does a man talk over?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is talking over a movie?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a woman?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the man voice over?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"who voices over the movie?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a lady looks scared while doing?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an older man doing?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is in a scene from a movie an old man doing?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man tells woman doing?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"startle\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking over?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who does a voice over for a science fiction movie on the television?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is about to blow up a planet in a movie?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is having a conversation with a woman?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is arguing with a woman in a scene from a movie?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks scared while talking to a man?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who overdubs the voices on a movie?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dubs over a clip from star wars?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lei talks to a man in a star wars movie?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"princes\"\n  },\n  {\n    \"question\": \"what does a man do over for a science fiction movie on the television?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is an older man speaking to?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"leah\"\n  },\n  {\n    \"question\": \"who tells woman startling news?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks over a movie?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who says he has a boner?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking to princess leah?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is an old man arguing with in a scene from a movie?\",\n    \"video_name\": \"video7051\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man shaving by doing?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who looks at a mirror and talks after which he talks in a closed room?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is talking in front of a mirror?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who talks about the mirror test and scientific theory?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man in a mirror doing?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"confirm\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking in the mirror?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who says about his experience?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"animalist\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what about mirror test?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is self aware?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man looking in?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what do man talks about mirror?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what does the animalist say about?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"who is talking while looking at himself in the mirror?\",\n    \"video_name\": \"video7052\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man is literally doing?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"drag\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"embrace\"\n  },\n  {\n    \"question\": \"what is a guy hugging?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"who hugs a lion in a field?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuddles with a lion?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hugging a loin?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays with a lion?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hugging a lion?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what gives a man a hug?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"who is literally hugging a lion?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man cuddle with?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what does a man play with?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what is a man hugging?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what is a man dragging?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what is a man literally hugging?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"who is dragging a lion?\",\n    \"video_name\": \"video7053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a girl talks about a cat doing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a boy and girl doing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some kids doing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is a group of kids doing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some kids reacting to?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a girl watching?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do young kids play?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is watching a video?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a little girl fawn over?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"nyancat\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who fawns over nyancat?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl talk about how adorable it is?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a girl talk about a cat flying on?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"rainbow\"\n  },\n  {\n    \"question\": \"what does a girl talk about flying on a rainbow?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who talks about a cat how adorable it is?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks about a cat flying on a rainbow?\",\n    \"video_name\": \"video7054\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is working correctly?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what do some space equipment have?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"issue\"\n  },\n  {\n    \"question\": \"what are people operating?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who is looking at a thing in a place?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"astronaut\"\n  },\n  {\n    \"question\": \"who is robot dress?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is person talking with?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what have some starting issue?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who is sitting in the office?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person sitting in?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what is an astronaut doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is there must be technical fault in an airplane on its runwaythe persons inside doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are two astronauts doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is two spacecrafts doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"intercept\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man in space ship doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two astronauts doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"observe\"\n  },\n  {\n    \"question\": \"what is an astronaut in his ship doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"negotiate\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man is robot dress and doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a view of a space shuttle and the astronaut doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who is talking with a man?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man in a space capsule attempt to make on a space object?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"landing\"\n  },\n  {\n    \"question\": \"what do astronauts in a space vehicle communicate with?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"eachother\"\n  },\n  {\n    \"question\": \"what do pieces of a spaceship rotate as men in spacesuits fly?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who mcconaughey acts as an astronaut in a scene from the movie interstellar?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"matthew\"\n  },\n  {\n    \"question\": \"how many astronauts are attempting a procedure in a spaceship?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many astronauts are piloting a futuristic silver space ship?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is doing some experiments with his new machine?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two astronauts attempting in a spaceship?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"procedure\"\n  },\n  {\n    \"question\": \"who is trying to pilot a space ship telling a second man in a space suit to take over for him if he passes out?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is observing whether the machine is working correctly?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are two astronauts attempting a procedure in?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"spaceship\"\n  },\n  {\n    \"question\": \"who ship talking to a computer and spinning the ship?\",\n    \"video_name\": \"video7055\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what is a women in the kitchen with blue and grey top closing the pan with glass lid and doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an asian woman doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman talks about doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman in a blue vest doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman describes the importance of doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is in a kitchen black haired woman doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman in a blue sweater doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a blue vest is inside and doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a blue vest doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who describes the importance of stirring a dish during the 20 to 30 minutes it takes to cook?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is an asian woman wearing?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"vest\"\n  },\n  {\n    \"question\": \"who decides to stir some food?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is wearing a blue vest?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about cooking some food?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a female ready to make a recipe within 20 to 30 mintues in?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woman with a blue vest talking to?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is ready to make a recipe within 20 to 30 mintues in a kitchen?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is an asian woman cooking in?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who keeps the dish closed on flame to get it cooked?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about cooking in a kitchen?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a lady wearing a striped apron preparing on the stove?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do a lady wearing a striped apron preparing a food dish on?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is cooking a special dish in the kitchen?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks while a meal cooks on the stove in the kitchen?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is black haired woman talking about cooking in?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a woman decide to stir?\",\n    \"video_name\": \"video7056\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman in as a crowd runs past?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"distres\"\n  },\n  {\n    \"question\": \"what does a women with hair curls fall over on?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a lot of people walking around a small space woman fall to?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a woman in curlers collapse during?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"emergency\"\n  },\n  {\n    \"question\": \"who is in distress as a crowd runs past?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a lot of people doing?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is asians doing?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"shoplift\"\n  },\n  {\n    \"question\": \"who is scared of a mob?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl scared of?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"mob\"\n  },\n  {\n    \"question\": \"what runs past?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who looks surprised?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who falls?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are people in?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"panic\"\n  },\n  {\n    \"question\": \"what are people running on?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what are people running around in?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"panic\"\n  },\n  {\n    \"question\": \"what are people running through?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7057\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what got points?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"wolf\"\n  },\n  {\n    \"question\": \"what is an animated short of rabbits and a man doing?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what does a bear tackle?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"who were very colorful?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is being played on tv?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a crazed cartoon rabbit doing?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the monkey flys into frame doing?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is cartoon man doing?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is animated cartoon characters doing?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"joke\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do animated characters move around in?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what tackles another bear?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who threw a stuffed animal at another animal?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who yells as a bear tackles another bear?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what did a man throw a stuffed at another animal?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what did a man throw a stuffed animal at?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what flys into frame hitting the other?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"who is talking to animated creatures?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an animated man wearing?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who is playing with dolls?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a crazed cartoon rabbit holding?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"who is wearing a red shirt?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks while the lights flicker and stuffed animals appear?\",\n    \"video_name\": \"video7058\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a lady calling out for?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"who is filming a bird standing around?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is women in blue dress carrying a bird in?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a person filming standing around?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is women in blue dress doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two womens doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what does a bird sit on top of its cage inside?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a bird can be seen doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what is a woman in a blue shirt films a bird that doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"meow\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a pet parrot doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is calling out for a bird?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a pet parrot imitate the sound of in a house?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what are making their noises in very loudly at the pet shop?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"parrotlove\"\n  },\n  {\n    \"question\": \"what imitates the sound of a cat in a house?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what did a girl lifting white color parrot and many color parrot inside?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what can be seen resting on top of its home inside someones house?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"where is a bird sitting outside the cage?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"what is a woman in a blue shirt films a bird that meowing like?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is the grey bird with the red tail makes cat noises while doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"how many womens are teaching a parrot to talk and dance?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is sitting outside the cage on top?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a pet parrot imitate the sound of a cat in?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what are two womens teaching to talk and dance?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what sits on top of its cage inside a house?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is speaking in the voice of cat?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what can a bird be seen resting on top of its home inside?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a bird sitting outside the cage on?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"what is a bird sitting outside on top?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what makes sounds like the house cat as the parrot owners coax it on by making click sounds?\",\n    \"video_name\": \"video7059\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what are two men demonstrating?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"rescue\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what test fire?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do someone test?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men giving?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"introduction\"\n  },\n  {\n    \"question\": \"what is a man puting off?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"how many guys are talking about a car project they are going to test?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who extinguishes something then talks into the camera with another guy?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who sprayed fire extinguisher on a vehicle?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a person spray fire extinguisher on?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does a guy extinguish something then talks into with another guy?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what did a person spray on a vehicle?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"extinguisher\"\n  },\n  {\n    \"question\": \"how many men extinguishing a small fire?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does two men talking after one put out?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what does a guy extinguish talks into the camera with another guy?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who does a guy extinguish something then talks into the camera with?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"how many men are giving an introduction?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are demonstrating fire rescue?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did two men extinguish?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man extinguish outside?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who is puting off the fire?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the man extingushes?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"flame\"\n  },\n  {\n    \"question\": \"who extingushes the flame?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who extinguishes a fire outside?\",\n    \"video_name\": \"video7060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are in an acquarium tank two fishes doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two little koi fish keep doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are the orange fish doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is in the water fish seem to be doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the orange fishes are present in the aquarium doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are two cute little gold fish doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two fishes doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are gold fishes doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is there are two fish doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what are two orange and white fish doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is music playing in the background doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are in a fish tank two red fishes doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is fish swimming in the fish tank doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is two coy fish swimming and doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are some red and white fish doing?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are the orange fishes present in looking very beautifull?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"aquarium\"\n  },\n  {\n    \"question\": \"what are the orange fish swimming in?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"aquarium\"\n  },\n  {\n    \"question\": \"what are some red and white fish swimming in?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"tank\"\n  },\n  {\n    \"question\": \"what are swimming in the aquarium?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"how many fishes are playing in an acquarium tank?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many red fishes are playing in a fish tank?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many fishes are moving in a water aquarium?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are swimming in the blue water of aquarium?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"gold\"\n  },\n  {\n    \"question\": \"what do two orange and white fish frolic around in a pool with a deep blue bottom?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what do fish seem to be eating from a plant in?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do fish seem to be eating from in the water?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what are present in the aquarium looking very beautifull?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what seem to be eating from a plant in the water?\",\n    \"video_name\": \"video7061\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who change purse?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person show a collection of?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"merchandise\"\n  },\n  {\n    \"question\": \"who is holding onto a disney bag?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at a disney violetta unzippered pouch?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a person showing off what looks like a pink disney change?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"purse\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who is holding an empty change purse?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows a collection of disney merchandise?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"purse\"\n  },\n  {\n    \"question\": \"who is showing make up?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person show off?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"wallet\"\n  },\n  {\n    \"question\": \"what does person show of?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"merchandising\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person displaying look like?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"wallet\"\n  },\n  {\n    \"question\": \"who is showing a purse?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shows off a wallet?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a person holding change?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"purse\"\n  },\n  {\n    \"question\": \"who shows of disney merchandising?\",\n    \"video_name\": \"video7062\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who curry talks about playing sports?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"stephen\"\n  },\n  {\n    \"question\": \"what is steph curry doing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a basketball player reminiscing about while growing up?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is child doing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is reminiscing about playing basketball while growing up?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who talks passionately about basketball?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a white boat on the thames?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"london\"\n  },\n  {\n    \"question\": \"who is talking about basketball?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes his experiences with basketball?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are boys doing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is boy doing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is stephen curry doing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a basketball player doing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"reminisce\"\n  },\n  {\n    \"question\": \"what is stephen curry talks about doing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing basketball?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a child play?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man talk passionately about?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a man describe his experiences with?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who plays basketball?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what do young boys play?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is child playing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a young boy playing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are boys playing?\",\n    \"video_name\": \"video7063\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is infomercial or presentation doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"what is a boy in black dress color doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is marketing of the product by doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is the young man doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is explaining about the product on the table?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a white person with black dressing giving using big video screen about some product placing on table?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"who is introducing some new products on the desk?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing he is trying to sale?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a presentation on new machinery and products?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the performance of some products while point to a graph on a screen?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a product while showing stats on a screen?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man talking about while showing stats on a screen?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"who did a clean cut discussing how his product works?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is talking he is trying to sale?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the young man explaining about on the table?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what is man talking about on the screen?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"who is talking about his project on the screen?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man talking about his project on?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a man showing he is trying to?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"sale\"\n  },\n  {\n    \"question\": \"what is a man talking he is trying to?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"sale\"\n  },\n  {\n    \"question\": \"who stands near some products and points?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks at a screen behind him?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man introducing some new products on?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what is the young man explaining about the product on?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a clean cut younger white guy doing?\",\n    \"video_name\": \"video7064\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what performs?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are dancing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what are singing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"how many women are playing instruments outside and in front of a tractor?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who do the band red roots singing the song christian?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"how many women are singing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who sings a country song?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing the violin?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a group of women doing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a woman sing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what are three women s doing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman singing and doing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7065\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7066\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what shows images of athletes when althetes were younger?\",\n    \"video_name\": \"video7066\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a slideshow of a few famous soccer play with?\",\n    \"video_name\": \"video7066\",\n    \"answer\": \"childhood\"\n  },\n  {\n    \"question\": \"who are shown as kids and adults?\",\n    \"video_name\": \"video7066\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who became a big soccer player?\",\n    \"video_name\": \"video7066\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing soccer?\",\n    \"video_name\": \"video7066\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"video7066\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is drifting?\",\n    \"video_name\": \"video7066\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video7066\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is car doing?\",\n    \"video_name\": \"video7066\",\n    \"answer\": \"drift\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7066\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings and?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is lady gaga doing?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of women doing?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a group of dancers doing?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"who is dancing in the music video for applause?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is lady gaga dancing in the music video for?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"applause\"\n  },\n  {\n    \"question\": \"who is performing?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a lady gaga music video subtitled in?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"language\"\n  },\n  {\n    \"question\": \"what are a group of women performing?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who gaga music video?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"applause\"\n  },\n  {\n    \"question\": \"what does scene from a lady gaga?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does applause lady gaga?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video7067\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person talking over?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking angrily to a man?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a guy talk about he is watching?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who makes a parody of star wars?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who makes up words over the top of a movie?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the show he is watching?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who talks over a star wars excerpt?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is getting angry with the old man?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is telling about his performance in the cinema?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking over a show?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is watching star wars?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a girl talking angrily to?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does someone make a parody of?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who is commenting on a star wars clip?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who dubs over a clip from star wars?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone watching?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old man doing?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy talks about the show he doing?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7068\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what does a person draw?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a person drawing on?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who draws a star?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone draw something with?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"pencil\"\n  },\n  {\n    \"question\": \"who is drawing on paper?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone draw with pencil?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person drawing shapes on?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is drawing a circle and a star?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing shapes on white paper?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing on a piece of paper?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing a picture of a star shape?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawling pictures on a piece of paper?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a star with a black ink pen with there right hand on white paper?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to draw patrick the starfish from spongebob?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is draw something with pencil?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is drawing?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is this person doing?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"drawl\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is this is avideo on doing?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who shows how to draw something?\",\n    \"video_name\": \"video7069\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about the mice?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is small girl doing?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young firl doing?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl in pink dress doing?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a little girl talking to the camera with the small animal on?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"lap\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is small girl talking in?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a girl talking about?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is there is girl in pink doing?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is there is a girl with a mouse doing?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a girl doing?\",\n    \"video_name\": \"video7070\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people talking?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are the men playing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who speaks about a football player s contract?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person rant about?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a news story doing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is a man talking about?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"rant\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about football players?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about matt ryan while still frames are shown?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a news story talking about a falcon?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who is talking about football in the video?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does guy speaking about matt ryan s?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"contract\"\n  },\n  {\n    \"question\": \"what does a person speak about a football player s?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"contract\"\n  },\n  {\n    \"question\": \"who is talking about football?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the man talking about football in?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking about a sports match?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a discussion of matt ryan s?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"contract\"\n  },\n  {\n    \"question\": \"what does a commentator discusses falcon s?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"quarterback\"\n  },\n  {\n    \"question\": \"who ranting about football?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about game rugby?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is the man talking about in the video?\",\n    \"video_name\": \"video7071\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women in purple dress doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman with massive hair style and doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a women in a purple shirt doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a purple shirt doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is the woman telling in front of camera?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a middle aged woman talk into?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"webcamera\"\n  },\n  {\n    \"question\": \"what is a person with pink dressing doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is a old lady in blue color dress doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is mature woman with purple shirt doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a purple shirt doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a purple shirt and short brown hair doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is old lady doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old woman doing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about a second part the college writing?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is telling something in front of camera?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who welcomes students to a writing course?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"professor\"\n  },\n  {\n    \"question\": \"what is a middle age woman giving to an online college writing course?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"introduction\"\n  },\n  {\n    \"question\": \"who is talking some thing in the office?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person with pink dressing introducing about writing 22x principles of written english part 2?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"college\"\n  },\n  {\n    \"question\": \"what do a old lady in blue color dress wearing speaking standing discusing on topic writing displaying on screen?\",\n    \"video_name\": \"video7072\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is a boy holding?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who is posing for pictures?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is holding a microphone singing?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do pictures of some celebrity set to?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what slideshow of popular teen idols?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what did a slideshow of a young singer follow by lyrics to?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is holding a microphone?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7073\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a few people doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"balance\"\n  },\n  {\n    \"question\": \"what are several kids holding?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are a groups of kids doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"what is a giant beach ball shown in with people hitting it up?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what is a giant beach ball is shown in a gym with people doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what hold a giant inflatable ball?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are kids playing with?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are a few people balancing on their hands?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a group of guys doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of kids doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are several kids doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are people holding up?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are people throwing around?\",\n    \"video_name\": \"video7074\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is presenting a leaflet from a dvd?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing the features from a dvd cover?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing a season of cartoon?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing a season of?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a man presenting a leaflet from?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"dvd\"\n  },\n  {\n    \"question\": \"what is a man presenting from a dvd?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"leaflet\"\n  },\n  {\n    \"question\": \"who reads special features written on a pamphlet?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who reviews spongebob plush toys?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who shows the back of a cd wrapper?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what show nice to watch?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a man review?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who stuffed animals on display while a guy shows the back of a cd wrapper?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what did spongebob squarepants stuff animals on while a guy shows the back of a cd wrapper?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who is telling about some event?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing with toys?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who reviews his spongebob toys?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person showing?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"pamphlet\"\n  },\n  {\n    \"question\": \"who is holding a paper?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does kid review?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what is someone telling about?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what is a person holding?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who shows a cd?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing a pamphlet?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is this is a man doing?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a clip of some stuffed animals and a video box doing?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7075\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do two teens dance in?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"sync\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"rapper\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"how many men are dancing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many male dancers pop moves in a dark room?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys are dancing in a big room?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys dance to a rap song?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many teens dance in sync?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when does two men dancing outdoors?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what are youths doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a rapper doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"how many people are dancing outside?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who pop moves in a dark room?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"how many men dance outside at night?\",\n    \"video_name\": \"video7076\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a woman adjusting?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does a woman show?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman advertising?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what does a woman review?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"carriage\"\n  },\n  {\n    \"question\": \"who is closing?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman discussing?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is opening?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman display?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is unfolding a stroller?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows a baby stroller?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who displays a stroller?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who reviews a baby carriage?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a baby stroller?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman giving for baby trolley?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about the features of a trolley?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who gives a demonstration of a baby stroller?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who arranges a new baby stroller?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman unfolding?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman giving demo for?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"who is adjusting the stroller?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who does women critique?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"carrier\"\n  },\n  {\n    \"question\": \"who demonstrates features?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is advertising a stroller?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing a stroller?\",\n    \"video_name\": \"video7077\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do kids dance to?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are some children dancing in?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are kids dancing to?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are some kids crazily dancing for?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two girls and a boy doing?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is some kids are crazily doing?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some children doing?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what are girls and boys doing?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7078\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a band playing a concert for?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does a band play?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band playing for an audience?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what performs live?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what performs on stage for a crowd?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what performs on stage for a large audience?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a band play to?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video of a group doing?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"sin\"\n  },\n  {\n    \"question\": \"what is playing a concert for an audience?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing a song?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when does a rock band play?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what performs onstage at a huge concert?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when does a band play live with a projection of lots of lighting behind them?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do a live by a musical group?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what plays live on stage with a projection of lots of lighting behind them?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what performs on stage?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what plays a big concert?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is a band performing?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what plays on stage?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is performing on stage?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when does a rock band perform?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what plays to an audience?\",\n    \"video_name\": \"video7079\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is this is a guy doing?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy talking on?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"webcam\"\n  },\n  {\n    \"question\": \"who is talking about a movie?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking on webcam?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who talks about the insidious movies?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man talking about in a room?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man talking about something in?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is talking about a movie trailer?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a video of him talking for a webcam?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something in a room?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a person talking about to the movie called insidious?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who is talking about the trailer to the movie called insidious?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about a horror movie?\",\n    \"video_name\": \"video7080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone on a computer doing?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is screenplay of person doing?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"browse\"\n  },\n  {\n    \"question\": \"what is tutorial of doing?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"download\"\n  },\n  {\n    \"question\": \"what did a web page search from?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"who is browsing the internet?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person showing?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"what is someone browsing?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"internet\"\n  },\n  {\n    \"question\": \"what is someone showing in a computer?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone showing something in?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is showing youtube?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do google search tutorial with?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is showing something in a computer?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what tutorial with music?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what searched from google?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"page\"\n  },\n  {\n    \"question\": \"what is performed about mp3 files?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what is someone using to search for something?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"who displays how to find a certain website?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using google to search for something?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a google search performed about?\",\n    \"video_name\": \"video7081\",\n    \"answer\": \"mp3\"\n  },\n  {\n    \"question\": \"what does a man sing to an excited concert?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"who is playing guitar in stage?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings war pigs to an excited concert?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a shirtless man with long hair singing while his band plays music in the background?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings in a smokey place?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"shirtles\"\n  },\n  {\n    \"question\": \"when is another man playing guitar?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what performs live?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who live?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a shirtless out on stage?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when do shirtless guy singing in live?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is another man playing in stage?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what do a singer and a band perform for?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when does a shirtless man rocks out?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is instructions for doing?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"coil\"\n  },\n  {\n    \"question\": \"what is a demonstration on doing?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"loop\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man teach?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"what is someone looping into a coil?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"who twists wires together to form loops?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who teaches a fishing knot?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about wire?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is coiling a wire?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what is a man coiling?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"who is working?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what makes three loops with a fishing line?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"mine\"\n  },\n  {\n    \"question\": \"what is someone looping a wire into?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"coil\"\n  },\n  {\n    \"question\": \"who is teaching how to tie a fishing knot?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows people how to tie a fishing knot?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a coil with a thread?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is looping a wire into a coil?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shows how to tie a fishing knot?\",\n    \"video_name\": \"video7083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating kabobs?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows some skewered foods?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man grilling?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a kebab being cooked in?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"turkey\"\n  },\n  {\n    \"question\": \"who is grilling food?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is watching something be cooked?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people cooking different types of?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman try off a grill?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a person preparing in fast food shop?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is montage of person doing?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is it is a video doing?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what does a woman try some food off?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is being grilled and prepared?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is drinking another person cooking on a grill?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drinks something while weird food is being grilled and prepared?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing a food in fast food shop?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a video showing the street food in turkey?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who tries some food off a grill?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man drink while weird food is being grilled and prepared?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are people grilling?\",\n    \"video_name\": \"video7084\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is korean food is very delicious fried rice in a kitchen?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who are a meals cooked by?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is telling the ingredients?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a person stirs around fried rice doing?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person stirs a bowl of fried rice doing?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is in a kitchen a person doing?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a pair of tan chopsticks doing?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a set of chopsticks doing?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is the doing?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"sizzle\"\n  },\n  {\n    \"question\": \"who is rice cooked by by someone?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"tawa\"\n  },\n  {\n    \"question\": \"what is presenting the food which was cooked in a kitchen?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who stirs rice in a rustic bowl with chopsticks?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who stirs around fried rice using chop sticks?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stirs a bowl of fried rice using chop sticks?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing cooking show?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a person cooking a chinese fried rice in a pot in?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what did a person cooking a chinese fried rice in in a kitchen?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what did a person cooking a chinese in a pot in a kitchen?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what is someone korean is very delicious fried rice in a kitchen?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone korean food is very delicious fried rice in?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is presenting the food that was cooked?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone presenting the food which was cooked in?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do an expression of how good korean food tastes and even look seen so nicely in?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"sequence\"\n  },\n  {\n    \"question\": \"what is cooked by tawa by someone?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"who is rice cooked by tawa by?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing how to make some sort of cheesey rice dish?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the sizzling yellow fried rice ready to be eaten in it s black mixing?\",\n    \"video_name\": \"video7085\",\n    \"answer\": \"stone\"\n  },\n  {\n    \"question\": \"what is children doing?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is children doing?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is multiple children doing?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what are some kids doing?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what are young children doing?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is young kids doing?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what are children watching?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are kids watching?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are young children commenting on?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are kids shown?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are kids watching through live cam?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"incident\"\n  },\n  {\n    \"question\": \"what are kids watching the incident activities through?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"cam\"\n  },\n  {\n    \"question\": \"what do children reacting to footage of a figure running through?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"what do kids watch a video of?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"supermarket\"\n  },\n  {\n    \"question\": \"what are some kids reacting to?\",\n    \"video_name\": \"video7086\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are there are serene landscapes where people doing?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a cruise ship sits on the ocean an island with the sun doing?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what is a ship doing?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"what is different activities of peoples doing?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are views of some exotic vacation sport and a beautiful beach where people doing?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is various scenes of a tropical destination doing?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is a water scene ship doing?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what ship moving in water trees and beach scene persons walking and houses displaying on screen?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what sits on the ocean an island with the sun setting behind it a small villa on a hill?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"cruise\"\n  },\n  {\n    \"question\": \"what includes a boat ride a hotel and a perfect view of the beach?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"vacation\"\n  },\n  {\n    \"question\": \"what do different activities of peoples enjoying on beach country landscape cruise at?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what do the people stand on as the boat floats in the water?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is scenes of mountains and oceans and people in a small town and on the beach doing?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what floats in the water?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is sailing in the water?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what are the peoples in near the ocean and ship go to?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what are a yacht sails through water and people on?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what does a cruise ship sit on an island with the sun setting behind it a small villa on a hill?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what do clouds cover while people play on the beach?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"what did a sunset over a mountain through a small village and a beach full of people?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a ship sailing in?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does the boat float in?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do people play on?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what did a sunset over a road through a small village and a beach full of people?\",\n    \"video_name\": \"video7087\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a police deputy doing?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what was a man doing?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who was carrying a dog?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who carried the dog?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an officer doing?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what does a chief deputy saying something should have been done a long time ago as a girl leave a house with?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a chief deputy saying something should have been done a long time ago as a girl leave with a dog?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is an old man doing?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks outside a house?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"deputy\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"who is carrying a dog indoors?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a deputy talk outside?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what was a woman carrying?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are people helping?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"rescue\"\n  },\n  {\n    \"question\": \"who is carrying a dog?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman carrying?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a woman carrying indoors?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a police officer talk about?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"community\"\n  },\n  {\n    \"question\": \"who was talking?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is rescued?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who talks about his community?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what did the woman carry?\",\n    \"video_name\": \"video7088\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who speaks to tv show judges?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do three judges talk to?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"what is a black male laughing on?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"idol\"\n  },\n  {\n    \"question\": \"what talks to a performer?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"panel\"\n  },\n  {\n    \"question\": \"what did the man audition for?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"idol\"\n  },\n  {\n    \"question\": \"who does a panel talk to?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"what do judges talk on?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"idol\"\n  },\n  {\n    \"question\": \"what shows judges of a singing competition?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many contestants are standing before the judges at american idol?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"reality\"\n  },\n  {\n    \"question\": \"who speak to a couple of contestants?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"idol\"\n  },\n  {\n    \"question\": \"what is talking to judges?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what do three american idol judges give to a man with a guitar and a man without any instruments?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"advice\"\n  },\n  {\n    \"question\": \"what are two contestants standing before the judges at?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"idol\"\n  },\n  {\n    \"question\": \"who auditioned for american idol?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is laughing on american idol?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what do three american idol judges sit at?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"how many judges talk to a contestant?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who talks to the panel of judges on american idol?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"what is a black male doing?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is contestants doing?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is three judges behind a desk doing?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two contestants doing?\",\n    \"video_name\": \"video7089\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is using bow and arrow?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what does little girl shoot?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a girl shoot?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"crossbow\"\n  },\n  {\n    \"question\": \"who is shooting a nerf bow?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl shooting?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"what is a child using?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"who shoots a toy crossbow?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is this is an archery video doing?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what does a girl use a toy bow to shoot?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who shoots a small bow and arrow set?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who played with a toy bow and arrow?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a young girl shoot a target with a pink toy bow?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"who uses a toy bow to shoot toy arrows?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what does a girl use to shoot toy arrows?\",\n    \"video_name\": \"video7090\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a bbc world news doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is some scenes outside of a building show troops doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"patrol\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are armed men in camouflage doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are army people with guns and rifles doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is bbc world news doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man wears an olive-green vest over tan fatigues at the top of stairs near a doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"rail\"\n  },\n  {\n    \"question\": \"what is a woman talks over news footage on bbc doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"mention\"\n  },\n  {\n    \"question\": \"what is a women is heard doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are security guards doing?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do a news report taking on the steps of a professional building?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"how many people are talking in front of a building?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is reporting on military guarding a building outside?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"who talks over news footage on bbc mentioning the crimea?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who have been give protection to officers and world news to be scrolled in the tv?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"how many people are talking in front of a building while others watch?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what gathers outside of a building armed with rifles?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"swat\"\n  },\n  {\n    \"question\": \"who gives a report on a terror attack?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"who are standing on guard as three people are talking in front of a building?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"what report taking place on the steps of a professional building?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what have the police officers been give to officers and world news to be scrolled in the tv?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"protection\"\n  },\n  {\n    \"question\": \"what are armed men in camouflage standing outside?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what does a woman talk over news footage on bbc mentioning?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"crimea\"\n  },\n  {\n    \"question\": \"who are security guards standing on as three people are talking in front of a building?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"guard\"\n  },\n  {\n    \"question\": \"what does a swat team gather outside of armed with rifles?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what do some scenes outside of a building show troops patrolling?\",\n    \"video_name\": \"video7091\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what does crafting charm from?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"polymer\"\n  },\n  {\n    \"question\": \"who uses a knife to dab some paint?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining something which is white and pink in?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is person doing with big sharp tool?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what dot is applied to a large white circle?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"who is using a hobby knife to point?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the person making in sugar charm shop?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what putting a pink color and taking it to a brush?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person use to dab some paint?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does a person use a knife to dab?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what do a pink dot is smoothed out?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"bit\"\n  },\n  {\n    \"question\": \"what has a pink dot on it that someone is pointing out?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"item\"\n  },\n  {\n    \"question\": \"what dot is smoothed out a bit?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what does a white item have dot on it that someone is pointing out?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what is a person using to point?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"hobby\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a white item has a pink dot on it that someone doing?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is there is something rose point doing?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is an artist illustrates how to make charms doing?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is an individual contacts a pink spot seemingly with the purpose of doing?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is making the color changes in sugar charm shop?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing some art with big sharp tool?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a person carefully shaping a pink cream blog place on a ready cake to create?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"who is explaining something which is white and pink in color?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using the fine point of a sharp knife to manipulate something there are working on?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who illustrates how to make charms using sugar and a spinning wheel?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"what is a person carefully doing?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"shape\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7092\",\n    \"answer\": \"poke\"\n  },\n  {\n    \"question\": \"what damen talking about people being created equal?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"matt\"\n  },\n  {\n    \"question\": \"what does a man discuss being created with minor animation?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"briefly\"\n  },\n  {\n    \"question\": \"what does a man discuss being created equal briefly with?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is in a history channel commercial?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"damon\"\n  },\n  {\n    \"question\": \"what is a guy sitting on?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"who is sitting on a bench?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is an animated person sitting on?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what is an animated character typing on?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"who says created equal and credits role?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an animated man sit wistfully on?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"who sits wistfully on a bench?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is typing on a keyboard?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what did an animated man sitting on a bench follow by?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"animator\"\n  },\n  {\n    \"question\": \"when channel civil rights special?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"who did an advertisement for an animated movie with actor matt?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"damon\"\n  },\n  {\n    \"question\": \"who discusses being created equal briefly with minor animation?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an animated character doing?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an animated person doing?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is matt damen doing?\",\n    \"video_name\": \"video7093\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a photoshoot of a celebrity?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"clipping\"\n  },\n  {\n    \"question\": \"who is the clipping a photoshoot of?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who is giving pose for photo?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is looking at something?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman looking at?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"when is a video with many pretty women?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"birthday\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is being played while showing pictures of beautiful women?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what are images of different pretty girls doing?\",\n    \"video_name\": \"video7094\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man filming in the rain?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is a movie shooting going on of?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"thor\"\n  },\n  {\n    \"question\": \"what is going on of thor?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"who screams in the rain?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shouting in the outdoor?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a hammer?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man scream in?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is a man shouting in?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is thor doing?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what does a man try to pull out of rock?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"stone\"\n  },\n  {\n    \"question\": \"who is filming a scene in the rain?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man filming a scene in?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who tries to pull a stone out of rock?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a movie clip showcasing a man trying to pull a hammer out of?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"who is trying to pull an ax out of a tree stump?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to lift a hammer that is stuck in a rock?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what showcasing a man trying to pull a hammer out of a rock?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is attempting to pull a sword from stone?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7095\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is the sexy girl in black dress talking to the man in about movies?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who does a movie play featuring?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what plays featuring lego characters?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who are doing various things?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"who is a woman in a black dress speaking to in a blue shirt?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a lego character jump in?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"pajama\"\n  },\n  {\n    \"question\": \"what is shown from the lego movie as morgan freeman is interviewed?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who is the sexy girl in black dress talking to in blue shirt about movies?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is the director of the lego movie being interviewed by?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who interviews a man for a television show?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a women in black top interviewing in blue shirt and a hat?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a lady wearing black color dress talking with?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"amna\"\n  },\n  {\n    \"question\": \"what is a beautiful women in short black dress doing?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women in black top doing?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is sexy blonde doing?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a girl with black dress in doing?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a black dress doing?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what is one beautiful girl and old man doing?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a movie plays doing?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is there is black dressed hot women doing?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the sexy girl in black dress doing?\",\n    \"video_name\": \"video7096\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is giving a speech on stage?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses the nominees for an award?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who announces nominees for awards?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a female announcer list nominees for the people s?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"choice\"\n  },\n  {\n    \"question\": \"what s a woman announces nominees at the people?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"choice\"\n  },\n  {\n    \"question\": \"who does choice awards s announces nominees at the people?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman at a podium announce?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"award\"\n  },\n  {\n    \"question\": \"who announcing the people choice awards?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a female announcer list nominees for the people?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"choice\"\n  },\n  {\n    \"question\": \"who presents an award?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is on stage talking?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who lists nominees for the people s choice award?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who is giving an interview?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is on the screen?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"function\"\n  },\n  {\n    \"question\": \"when is a woman talking?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is award function on?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a woman present?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"award\"\n  },\n  {\n    \"question\": \"who is saying the names of the people nominated for an award?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a woman is on stage doing?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"what is hosts of awards show doing?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7097\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives around?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does the seat belt alarm go off in while a man is driving?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who ignores seat belt warning?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car for review?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving for review?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does guy ignore warning?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"seat\"\n  },\n  {\n    \"question\": \"who drives in a car?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a vehicle?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving a car for?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"who is about to put on his seat belt?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive in?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man driving and doing?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the seat belt alarm goes off in a car while a man doing?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7098\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are people driving in down a long road?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is video taping him driving a car?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the car travel?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"roadway\"\n  },\n  {\n    \"question\": \"what is a man taking?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"what are some people driving along?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a car driving on?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is driving down a narrow road?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what traveled the roadway?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving on the road?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is taking a selfie?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person traveling in with his friends?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what shot somewhere in asia?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what did a travel video shoot somewhere in?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"asium\"\n  },\n  {\n    \"question\": \"who is traveling in a car with his friends?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a clip of people driving in a car set to?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what shows views from a moving vehicle?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the clip shows views from a doing?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a music video of a young group s?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man shows himself while doing?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"vacation\"\n  },\n  {\n    \"question\": \"what is a man is video doing?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who shows himself while vacationing in some tropical location?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a group of males drive in a foreign country with a selfie stick out?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is a clip of people doing?\",\n    \"video_name\": \"video7099\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is dogs are all doing?\",\n    \"video_name\": \"video7100\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what are baby kittens doing?\",\n    \"video_name\": \"video7100\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a group of puppies doing?\",\n    \"video_name\": \"video7100\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what are a group of dogs doing?\",\n    \"video_name\": \"video7100\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what is many puppies are awoken by doing?\",\n    \"video_name\": \"video7100\",\n    \"answer\": \"whistle\"\n  },\n  {\n    \"question\": \"what do a person whistles and a large amount of dogs run out of?\",\n    \"video_name\": \"video7100\",\n    \"answer\": \"doghouse\"\n  },\n  {\n    \"question\": \"what are puppies awoken by?\",\n    \"video_name\": \"video7100\",\n    \"answer\": \"whistle\"\n  },\n  {\n    \"question\": \"what are sleeping?\",\n    \"video_name\": \"video7100\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a narrator begins doing?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"spawn\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is the video characters are just doing?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do cartoon play on?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what play on the show?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are the video characters just standing around?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"setting\"\n  },\n  {\n    \"question\": \"who are just standing around the setting?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a narrator begin spawning in a game simulator?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"random\"\n  },\n  {\n    \"question\": \"who begins spawning random vehicles in a game simulator?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is video game scene of a guy doing?\",\n    \"video_name\": \"video7101\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is the boys stand around with their friends while doing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is one skating on?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are young guys standing at?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what are young guys doing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are friends doing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do young men standing around a skate?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is the group of boys doing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is bunch of some young male doing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of kids doing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is boy with checked shirt speakes by doing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a group of young men doing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is young men stand around at a skateboard park doing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are friends see the players playing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"skating\"\n  },\n  {\n    \"question\": \"what did a group of young men standing around a pave with skate boards?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what do a young person rides a skateboard as others lean on?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"rail\"\n  },\n  {\n    \"question\": \"who reads instructions to a skateboarder from his phone who then attempts a trick?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"what is the group of boys talking to each other and one of the boy skating on?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"what is bunch of guys doing?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what did a group of young men standing around a pave area with?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what do young men stand around at a skateboard park reading out loud?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who is going in the wheel skate?\",\n    \"video_name\": \"video7102\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are dna strands spinning on?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is the dna strand doing?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"spiral\"\n  },\n  {\n    \"question\": \"what is text doing?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are dna strands doing?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is cllip doing?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"shoe\"\n  },\n  {\n    \"question\": \"what is a strand of dna doing?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a slideshow doing?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a short video doing?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a dna strand doing?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"rotate\"\n  },\n  {\n    \"question\": \"what is a dna helix doing?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"spiral\"\n  },\n  {\n    \"question\": \"what is the video doing?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what strand rotating with text next to it?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"dna\"\n  },\n  {\n    \"question\": \"what is being prsented with a three dimensional graphic?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what is presented?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what is spiraling?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"strand\"\n  },\n  {\n    \"question\": \"what are spinning on screen?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"dna\"\n  },\n  {\n    \"question\": \"what did a slideshow talking about?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"junk\"\n  },\n  {\n    \"question\": \"what does an animation show?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"strand\"\n  },\n  {\n    \"question\": \"what is the video talking about?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"dna\"\n  },\n  {\n    \"question\": \"what shows a dna strand?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is talking about dna?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a dna helix spiralling down?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is spiralling down the screen?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"helix\"\n  },\n  {\n    \"question\": \"what is displayed over random video?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is talk about dna displayed over?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"spiral\"\n  },\n  {\n    \"question\": \"what shown here?\",\n    \"video_name\": \"video7103\",\n    \"answer\": \"explanation\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing on stage?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man playing guitar?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a male guitarist doing?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy with a guitar doing?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who plays guitar on stage before a crowd?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays guitar in front of an audience?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does a man play guitar before a crowd?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man play guitar on stage before?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a man with a guitar performing for?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does a man play on stage before a crowd?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man play in front of an audience?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays guitar on stage?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar on stage?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a muscian playing on stage?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when do a muscian playing guitar?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man with a guitar doing?\",\n    \"video_name\": \"video7104\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man describing that he s driving?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is in a car?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who reviews an suv?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the car?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing an suv?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is a man describing?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"suv\"\n  },\n  {\n    \"question\": \"what did a man drive a man is talking about?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who does a man review?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"suv\"\n  },\n  {\n    \"question\": \"who discusses a car?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driven?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a spanish man explaining in a video?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drove a man is talking about a car?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a man drive is talking about a car?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a spanish man doing?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a spanish man explaining a car in?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a guy in the car doing?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is driving a white suv on a country road?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining a car in a video?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do latino man doing a test drive on?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"suv\"\n  },\n  {\n    \"question\": \"who is a man driving on a country road?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"suv\"\n  },\n  {\n    \"question\": \"who is describing a car that he s driving?\",\n    \"video_name\": \"video7105\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an older woman doing?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is older lady in fur coat doing?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a fancy woman doing?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in an older film doing?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who speaks to a man in a room?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman speak to in a room?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women telling?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman wearing?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"fur\"\n  },\n  {\n    \"question\": \"who is wearing fur?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman talking to?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to a man about the inner self?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to a man about the spirit?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman in an older film talking to?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman speak to a man in?\",\n    \"video_name\": \"video7106\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a woman presforms on stage with?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what do women walking on stage in white dress with?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman singing a song in a stage with?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman walking around with on stage?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman singing on with a horse?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who twain singing in a live concert?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"shanium\"\n  },\n  {\n    \"question\": \"when are a woman and a horse walking around?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a woman singing on the stage with?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is on stage with a horse?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman sing on stage in white with?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are a woman and a horse doing?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who sings on stage with a majestic white horse?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage with horse?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking around with a horse on stage?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing on the stage with a horse?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who presforms on stage with a horse?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings on stage in white with a horse?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a woman walking around with a horse?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when does a woman presforms with a horse?\",\n    \"video_name\": \"video7107\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who do a person in a food store with?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what do a lady doing different activities like?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"shopping\"\n  },\n  {\n    \"question\": \"who is walking around town?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who went to a show?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"when does a woman carrying a baby is shopping in an open market and then later in the video walk?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who purchase something on market?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who runs errands while holding a baby?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a lady go to?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video of a woman with her child and then doing?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman runs errands while doing?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman selects groceries from the store while doing?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"rush\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"who is acting in a movie?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a woman walking around?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what is a woman acting in?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what do a lady purchase?\",\n    \"video_name\": \"video7108\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are four girls doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is few dolls doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are female cartoon characters doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are disney princesses doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is disney characters doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is animated video of disney princesses doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoon princess doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoon girls doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some animated girl s doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is animated cartoon of characters doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is an animated girl doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of disney characters doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoon princesses doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is video of some cartoon characters doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who are dancing to music?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"who are dancing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many girls are dancing in an animated video?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what is 3d animated sequence with women doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does animated video of disney princesses dancing with?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"barbie\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are renditions of disney characters doing?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"dancing\"\n  },\n  {\n    \"question\": \"what are a group of disney characters dancing to?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is playing an online computer game?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are disney princesses dancing to?\",\n    \"video_name\": \"video7109\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"diagnose\"\n  },\n  {\n    \"question\": \"what are media persons doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are a workers doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a car racer doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is three men and lady in collared shirts look at a computer screen doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man at an auto show doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people in a room doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who looks at the computer?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man at an auto show talking to people at?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a workers working in the car making?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"industry\"\n  },\n  {\n    \"question\": \"what do a group of men look at while another looks at a car?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a man looking at a screen as the sound of roaring engines fill?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is sharing some information about his race car to the media people?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"racer\"\n  },\n  {\n    \"question\": \"who looks under the hood of the car?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking french while video of a racing car and driver are displayed?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some people in a room looking at?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what do a group of men work together to prepare for?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are people diagnosing problems with?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does another look at?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does the man look at?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what are a workers working in making industry?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a group of men standing around a car with it s open?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"hood\"\n  },\n  {\n    \"question\": \"what are people looking at?\",\n    \"video_name\": \"video7110\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a snail doing?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is sponge bob doing?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is spongebob and patrick and squidward are outside doing?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is spongebob doing?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"meow\"\n  },\n  {\n    \"question\": \"what is a cartoon snail doing?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sponge bob playing in?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is talking?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what sings?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who just wants to sleep?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"patrick\"\n  },\n  {\n    \"question\": \"what is a song?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what bob cartoon?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"sponge\"\n  },\n  {\n    \"question\": \"what do a sponge bob?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is playing in the water?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"sponge\"\n  },\n  {\n    \"question\": \"who is meowing while patrick just wants to sleep?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what do spongebob characters make?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what do cartoon snails sing?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does spongebob imitate?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"snail\"\n  },\n  {\n    \"question\": \"who make cat noises?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what is the animation cartoon?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who squarepants off the tv?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who do three cartoon snails singing wake up?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who imitates the snail?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what sing a song?\",\n    \"video_name\": \"video7111\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do boys playing basket ball in black dress falling down displaying on?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are several men taking turns throwing thru a hoop until finally one makes it?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are a group of young men playing outside in someones driveway?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does finally one make?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are some guys playing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what does a group of people shooting hoop in?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"driveway\"\n  },\n  {\n    \"question\": \"what does a teenager end up on after his basketball throws miss the hoop as his friends watch by a gray house?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who get fail for two or more times?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who ends up on the ground after his basketball throws miss the hoop as his friends watch by a gray house?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"what are some kids out side playing together?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do a group of people casually shoot basketballs at a basketball hoop in?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does the man in black tshirt repeatedly fail to put the ball in?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what are several men taking turns throwing a basketball until finally one makes it?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"hoop\"\n  },\n  {\n    \"question\": \"what does the man in black tshirt repeatedly fail to put in basket?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are a group of young men playing outside in a driveway?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does men outside playing basketball one of the men keep missing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what are a couple of guys doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what are some kids out side doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is boys doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the friends are outdoors and they doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is while other friends too try and doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is men outside doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of young men doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are here some of the crazy boys doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"practise\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is there is a man in black doing?\",\n    \"video_name\": \"video7112\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is sitting in the wooden home made for pink and a girl in pink near it?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"sparrow\"\n  },\n  {\n    \"question\": \"who watches a ladder and a girl in a pink shirt watches?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the bird look terrified is chirping along its new home?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a child in pink watch in an open box?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what plays on a little ladder while a woman watches it?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what manuvers an exercise contraption?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what stands on a ladder and a girl in a pink shirt watches?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is busy making different types of noises?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what is a white bird cleaning itself in a girl is looking at the bird?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a white bird cleaning itself in a box a girl is looking at?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what walks along a ladder that is laying in a box?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what looks terrified a bird is chirping along its new home?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"who approaches a white parrot?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is walking about its area?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is chirping?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what chirps?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what cleans itself?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is a white parrot walking about?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what does girl approach?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what is cleaning itself in a box a girl is looking at the bird?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a bird manuvers?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"contraption\"\n  },\n  {\n    \"question\": \"what is pecking its feathers?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"who is a white bird cleaning itself in a box is looking at the bird?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a white bird walks along a ladder that doing?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"chirp\"\n  },\n  {\n    \"question\": \"what is i see and bird doing?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"scratch\"\n  },\n  {\n    \"question\": \"what is a sparrow doing?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a white parakeet doing?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a white bird doing?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is there is a dove doing?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a bird white color doing?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a white parrot doing?\",\n    \"video_name\": \"video7113\",\n    \"answer\": \"peck\"\n  },\n  {\n    \"question\": \"what does a narrator talk about a show s?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"plot\"\n  },\n  {\n    \"question\": \"what is voiced over?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do girl and boy discuss?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"mystery\"\n  },\n  {\n    \"question\": \"what are a man and woman seriously discussing about?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who discuss murder mystery?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who stands outside a glass door?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a girl help prevent crimes?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"detective\"\n  },\n  {\n    \"question\": \"what are a girl and a man doing?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and woman are seriously doing?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a movie trailer about a man doing?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"investigate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is several people doing?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what does a man speak to a woman in?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"doorway\"\n  },\n  {\n    \"question\": \"who speaks to a woman in a doorway?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who helps a man detective prevent crimes?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks about a show s plot?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who does a man speak to in a doorway?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a narrator talk about s plot?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7114\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man describe at a car show?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man explain?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man presenting?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man describing?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man discussing?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is presenting a car?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing off?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who explains a vehicle?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing a vehicle?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing a black vehicle?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a black car?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a spokesman for a model car mess up?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"who is showing off a new vehicle?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explain about the car review?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who laughs about making a mistake?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes a good vehicle at a car show?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who starts giggling while talking about a vehicle?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man starts doing?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"giggle\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is going over features of a car?\",\n    \"video_name\": \"video7115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about full cover clothing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chastised for not wearing a full face cover?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed about not wearing the correct clothing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing outside a store?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person standing outside?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"what are a group of people walking a woman is talking about?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"culture\"\n  },\n  {\n    \"question\": \"who is talking about a women being punished?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who are a group of people walking is talking about their culture?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is interviewed?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of people outside doing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what does a news report about a woman who cover up?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman talks about doing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is newscaster doing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a woman describing the difficulty of acquiring full cover?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"who is being told off for not wearing gloves in public?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman is chastised for not doing?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who talks about covering up in the middle east?\",\n    \"video_name\": \"video7116\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does boys and girls dancing on a beach for surf s up?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a group of kids doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is young people doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are many men and women doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is guys and girls doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is boys and girls doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of teenagers doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do group of young people dance in?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of kids singing on?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are kids dancing musical on?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do teens dance on?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are people dancing on?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are people singing on?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are a group of people dancing on?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do teens preform?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a group of people dance on?\",\n    \"video_name\": \"video7117\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a woman looking at?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"send\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman sleeping in a bed in?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what is a woman sleeping in in a bedroom?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who knocks on a wall and texts a friend?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman laying in knocking on the wall?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a woman laying on writing a text message?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is sleeping in a bed in a bedroom?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is laying in bed knocking on the wall?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is laying on a bed writing a text message?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who lays in bed?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is knocking on the wall?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is looking at a phone?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a girl lay in?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a girl knocking on?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what texting on an old phone?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a girl use?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7118\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man in a black suit doing?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what were there are some people who doing?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is abc news doing?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"broadcast\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in black dress doing?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a woman in a dress and a man in a suit doing?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a male and female newscaster doing?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is abc 10 doing?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"who is wearing black color coat?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who talk about a strange sight in part of san diego?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is presenting the show with man in black suit?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a burst of light over carlsbad being discussed on?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what speak about a bright light and an apparent explosion?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is woman presenting with man in black suit?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is a man talking with?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a video clip of a news station in california show was abc 10 with two news anchors and one reporter?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking with a lady?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman in black dress wearing a blue color necklace in?\",\n    \"video_name\": \"video7119\",\n    \"answer\": \"neck\"\n  },\n  {\n    \"question\": \"what is a scene from family guy with stewie and peter driving and laughing and then doing?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what are a cartoon man and baby doing?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a family guy cartoon of peter doing?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a father and son doing?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what are a scene of family guy is shown where they doing?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is cartoon person doing?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"who shared a laugh?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"what are peter and stewie griffin riding around in?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is an animated man driving in race and talk to a boy?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a scene from family guy with stewie and peter pushing the car off?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what do a scene from family guy with stewie and peter pushing off a cliff?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is an animated man driving a car in race and talk to?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is peter griffen laughing with in the car?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"stewie\"\n  },\n  {\n    \"question\": \"what is peter griffen laughing with stewie in?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car in race and talk to a boy?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is cartoon person hiding?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is hiding a car?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is family guy cartoon characters doing?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is peter griffen doing?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who is laughing with stewie in the car?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"griffen\"\n  },\n  {\n    \"question\": \"what characters laughing and driving?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what did father and son share?\",\n    \"video_name\": \"video7120\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a woman in a hospital bed doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a new born baby doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"feel\"\n  },\n  {\n    \"question\": \"what is a new born baby doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what are a mother and new born child doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is the baby s are now doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"stay\"\n  },\n  {\n    \"question\": \"what is middle aged women doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman holds a newborn baby doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a small baby doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is baby doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is doctor s doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is im an abc news report from utah a new mother doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in the house a women in white doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who is sleeping?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are a mother and new born child laying on?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what did a women in white kiss the very small baby in in the house?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what did a women in white kiss the very small baby in the bed in?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is a woman in a hospital bed holding?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a mother doing?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who explain how is take care for baby?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who speaks to the camea for an interview on a news segment?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when a news report on the importance of skin to skin contact following?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what does a new born baby sleeping on top of mother s?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"breast\"\n  },\n  {\n    \"question\": \"what does a woman hold a newborn baby wearing a white hat against?\",\n    \"video_name\": \"video7121\",\n    \"answer\": \"chest\"\n  },\n  {\n    \"question\": \"who then walks right back?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man dancing on?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"porch\"\n  },\n  {\n    \"question\": \"who is dancing on the porch?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks up to a door?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a black man doing?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is black guy doing?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a black man dancing on?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what plays to a black dude in a white tee?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a man walk up to?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who is dancing on the walkway in front of a house?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a black man doing?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man dancing on in front of a house?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"walkway\"\n  },\n  {\n    \"question\": \"who is speaking about the video games?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing on the sidewalk?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing outside of a house?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks onto a porch and dances?\",\n    \"video_name\": \"video7122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses research and development?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is spanning through a factory?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who talks about battery research and technology?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about techniques regarding batteries?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a camera spanning through?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"factory\"\n  },\n  {\n    \"question\": \"who is talking about controlling processes?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about a manufacturing facility?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"development\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"factory\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a clip of a man doing?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a camera doing?\",\n    \"video_name\": \"video7123\",\n    \"answer\": \"span\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is 3-d doing?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what was expensive?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"logo\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what did credits present in?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what presented by project zj?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did a video clip present by?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is project zj shown to?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is shown to techno music?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what was an opening sequence by project something about?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"vision\"\n  },\n  {\n    \"question\": \"what do an opening sequence by project zj for?\",\n    \"video_name\": \"video7124\",\n    \"answer\": \"ryanvision\"\n  },\n  {\n    \"question\": \"what are some man s playing in a football ground?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what a man scores goals on a goalie in?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"who talks about a really good soccer player?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are playing football in a football ground?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes an impressive goal from down field?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who scores goals on a goalie in slow motion?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is voicing over multiple scenes such as sports players rubbing each other?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"newsanchor\"\n  },\n  {\n    \"question\": \"how many teams are playing football?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a newsanchor doing?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a sports commentator doing?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some man s doing?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a sports commentator discussing?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a soccer player celebrate with?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what are two teams playing?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is discussing soccer matches?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"who celebrates with his team?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does highlights of a men s?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who kicks the ball?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a sports commentator discussing matches?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a soccer player kick?\",\n    \"video_name\": \"video7125\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is here someone doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a driver films himself doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is two hands doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car driver doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a race car with a look of the doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"steer\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"who is driving his new car fast on the street?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is driving down a road?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone driving very speed?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving with even speed?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person driving down?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is trying to over take all the other vehicles?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a man carefully handle the steering of?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving fast thru a busy street?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car very fast?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person driving fast on the street?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person driving very fast?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"when is someone driving a car?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is driving a car with even speed?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a race car with a look of the steering wheel hands and view thru while the car is driving fast thru a busy street?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"who drives a car down the street and past a line of cars?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a car steering wheel with two hands?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is driving a large car through a busy city street?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is driving a car very speed?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who slowing down the car in traffic?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what do car driver slow down in traffic?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving through a busy city street?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do car driver slow down the car in?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"who films himself driving a casually occupied street?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"who carefully handle the steering of the car?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is helmet cam of a man doing?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is person driving his new car fast on?\",\n    \"video_name\": \"video7126\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is nikki benz doing?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is doing a news report on rob ford?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving commentary on politcal events?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man giving on politcal events?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who commentates on politics?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking about a porn star running for the elections?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about news?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about people?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is talking about video clips?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the news?\",\n    \"video_name\": \"video7127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is instruction on doing?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are hair extension doing?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who is talking about coloring hair extensions?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is some doing?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"who describes there?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is some recording?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is something on?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is explaining something that is showing on the screen?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is on the floor?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are hair extension laying on?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is discussing colors and dyes?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when are laying on the ground?\",\n    \"video_name\": \"video7128\",\n    \"answer\": \"extension\"\n  },\n  {\n    \"question\": \"what is a woman looking at?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a woman knock on?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a girl typing on?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"cellphone\"\n  },\n  {\n    \"question\": \"who is lying in 00?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is texting?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl messaging in?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"mobile\"\n  },\n  {\n    \"question\": \"who is typing on the cellphone?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is messaging in a mobile?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is looking at a phone?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a young woman in bed texting to someone in the next room on?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a girl knock on then continues texting?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does a girl sitting in bed then begin texting someone on?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a woman sleeping in a bed in?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what is a woman sleeping in in a bedroom?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who knocks on the wall then continues texting?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is sleeping in a bed in a bedroom?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who knocks on the wall?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does girl sitting in bed knock on?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a video of a girl doing?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"message\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a girl in a bedroom doing?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7129\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what does fish and whale coming out of?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a sea creature emerging from?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is emerging from the water?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"what does a whale eat a school of?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is coming out of the sea?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"whale\"\n  },\n  {\n    \"question\": \"what are first small fishes flying on?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what and whales coming out of the water?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who eats a school of fish?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"whale\"\n  },\n  {\n    \"question\": \"who breaches out of the water?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"whale\"\n  },\n  {\n    \"question\": \"who is coming out of the waters?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"whale\"\n  },\n  {\n    \"question\": \"what do whales jump through?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do whales collect?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who breaches the water?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"whale\"\n  },\n  {\n    \"question\": \"what does surface s a whale is approaching?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are whale fishes swimming in?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what whales in the ocean?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"giant\"\n  },\n  {\n    \"question\": \"what are whales breaching in?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what are swimming in water?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"whale\"\n  },\n  {\n    \"question\": \"what the whale breaches?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does giant whale in?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who does surface s is approaching the water?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"whale\"\n  },\n  {\n    \"question\": \"what s a whale is approaching the water?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"surface\"\n  },\n  {\n    \"question\": \"what is whale doing?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are whale fishes doing?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is fish doing?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are first small fishes doing?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a whale doing?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"approach\"\n  },\n  {\n    \"question\": \"what is a sea creature doing?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"emerge\"\n  },\n  {\n    \"question\": \"what are whales doing?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"breach\"\n  },\n  {\n    \"question\": \"what is whales doing?\",\n    \"video_name\": \"video7130\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what does the men s athletics race is starting on?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are runners running on a large outdoor track?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does the men s is starting on the track?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a group of track and field athletes running?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is fired?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"what goes off?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"starting\"\n  },\n  {\n    \"question\": \"what do athletes start running for?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what do runners run down after the starting pistol goes off?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a track relay race doing?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what is the men s athletics race doing?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is two runner stand at doing?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is the athletes gets off the doing?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"who stand at starting line and race around track with group as starting shot is fired?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"runner\"\n  },\n  {\n    \"question\": \"how many people are running in a competitive manner trying to beat each other?\",\n    \"video_name\": \"video7131\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are scenes from an animated movie combined into?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do disney characters show on by side screens?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who walks down the stairs?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who shown on side by side screens?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what compares sets of different characters in different locations based on dress sense and outwards appearance?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"where do disney characters show by side screens?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what are scenes from a disney movie doing?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"compare\"\n  },\n  {\n    \"question\": \"what is a beautiful princes doing?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what critiques the dress style of a disney princess?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many similar cartoons are compared?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do disney characters show on side by?\",\n    \"video_name\": \"video7132\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what are speaking?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"what is the video doing?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are business people doing?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is showing campus life at a college?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is the video showing campus life at?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"college\"\n  },\n  {\n    \"question\": \"who is talking about something in outdoor?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a woman slap hands with while a group of other men and women speak about various business topics?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the video showing at a college?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"campu\"\n  },\n  {\n    \"question\": \"who slaps hands with another man while a group of other men and women speak about various business topics?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed about a school?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man and a women pounds with each other in class?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"fist\"\n  },\n  {\n    \"question\": \"what is a man being interviewed about?\",\n    \"video_name\": \"video7133\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"what is kids in classes doing?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a class doing?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a group of kids doing?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a group of students listen to describe a reading tablet?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are children in the classroom exited to learn about that can store many books for them to read in a small space?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what are children experiencing an amazon kindle at?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what do a group of students listen to a woman describe?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"reading\"\n  },\n  {\n    \"question\": \"what are kids inside?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who introduces a classroom of children to the power of an electric reader and the books they will now be able to access easily?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who instructs a classroom of children?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are children experiencing at a school?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"amazon\"\n  },\n  {\n    \"question\": \"what is being introduced to a digital reading device?\",\n    \"video_name\": \"video7134\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"who is hanging upside down?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what sings?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a person on a stage doing?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in a dance competition the group of boys doing?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what yells?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a man with face paint doing?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a loud odd doing?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man sings with a band while upside down doing?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a heavy metal music act plays in a cave while doing?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is there is a man who appears to be doing?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what are the people making?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"atmosphere\"\n  },\n  {\n    \"question\": \"what are the people singing?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing with his band mates?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man sing with while upside down standing on the ceiling?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a person on a stage talking to?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a group of young men play in a room with torches?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is singing on a stage at a show?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is a band singing at a show?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sings with a band while upside down standing on the ceiling?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a heavy metal music act play in while dancing to the music?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"what perform band high sound in the private place?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is spinning a vinyl record on a turntable?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a band singing on a stage at?\",\n    \"video_name\": \"video7135\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are animated characters dancing in?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who dance in the rain?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are several disney characters dancing as?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who are dancing as a group?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what does video game character are singing a children s?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what did various pop culture characters singing old mcdonald have?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"farm\"\n  },\n  {\n    \"question\": \"what is shown of characters dancing to a kids song?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what do cartoon characters dance in?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what are several disney characters doing?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are several cartoons doing?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is computer graphics doing?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are animated characters doing?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is an animation is shown of characters doing?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a bunch of anime and cartoon character doing?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video7136\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man covered with a substance doing?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man is on stage covered in whipped cream and doing?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is bill murray covered in cake and doing?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is bill murray is covered in doing?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"frost\"\n  },\n  {\n    \"question\": \"what is bill murray pops out of a doing?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"wed\"\n  },\n  {\n    \"question\": \"what are two men covered in white liquid doing?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is bill murry doing?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"who is hugging another man while covered in flour?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is bill murray covered in?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"who show?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man covered in?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what did a man come out of?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what did people cover in?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what has a man jumped out of?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"who is covered in cake?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who came out of a cake?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is covered in frosting?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who has jumped out of a cake?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who covered with a substance hugging another man?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on stage covered in whipped cream?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man hugging while covered in flour?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what murray pops out of a wedding cake on the david letterman show?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"what performs some props shown on stage?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is covered in pie and hugs david letterman?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"what did a man cover with hugging another man?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"substance\"\n  },\n  {\n    \"question\": \"who did a man cover with a substance hugging?\",\n    \"video_name\": \"video7137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what does a person get out of after parking it?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"who is talking about choosing between cars?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets out of a car after parking it?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is trying to sell a car?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"salesman\"\n  },\n  {\n    \"question\": \"how many cars does a man test drive?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who drive a car and park and talk?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is aman doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is a salesman doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"compare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what drives up?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person gets out of a car after doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is parking car?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"aman\"\n  },\n  {\n    \"question\": \"who is talking about two vehicles?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is selling cars?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"sell\"\n  },\n  {\n    \"question\": \"what is aman parking?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives two cars?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is someone parking?\",\n    \"video_name\": \"video7138\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a grand old lady doing?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video of a lenin quote about doing?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is an elderly woman discusses doing?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is an elderly woman doing?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old lady doing?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is an old woman doing?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an older woman doing?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the old woman doing?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a clip of an elderly woman doing?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who do woman talking in an interview and then quote from?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"lenin\"\n  },\n  {\n    \"question\": \"who talks about events from the past?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a grand old lady talking about?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"who talks about days gone by?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses teaching children?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the old woman talking to?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking into the camera?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to the camera?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking into?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman talking to?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking while seated?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed while sitting in a chair?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7139\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is preparing with a floor powder?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is pouring ingredients into a bowl?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone pouring ingredients into?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is mixing food ingredients?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is adding ingredient in a bowl?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a dish?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a person mixing?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is preparing a recipe?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is adding ingredients for a batter?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is creating a baking mixture batter?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a food item doing?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7140\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"when are group of people having on the scene?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"who do many people watching some stage show of?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"where are many women walking?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what are group of people having good time on?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"when were an animated cartoon characters walking?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are group of ladies walking slowly?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are more peoples running on?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are many women walking on?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what are walking slowly on the stage?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are having good time on the scene?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt and jeans walking down?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what are many women doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what show a man walking on the stage and people watching?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is many people doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt and jeans doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is its a animated video of cartoons doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a someone doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a game of cartoon dolls doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is some cartoon fashion show a man doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what were an animated cartoon characters doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are group of ladies doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"where are group of people having good time?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what do a cartoon that is blurryb on a tv screen of a fashion run?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what is being held with captions appearing above the heads of the audience?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what walk down a runway in a game?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"nobody\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what are some models doing?\",\n    \"video_name\": \"video7141\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what did a pretty little girl with blonde hair holding a stuff?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what does an asian girl wear?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"pretty\"\n  },\n  {\n    \"question\": \"what does an asian girl have?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what poses with smiling?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is dressed nicely?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is an oriental femal carrying?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"stuffed\"\n  },\n  {\n    \"question\": \"what is there is a woman in bridal dress doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a japanese girl with blond hair in a frilly little girl s costume stands doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl dressed up as barbie and doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl make up like a barbie doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girls in the style of barbie doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a child photos doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is an oriental femal is dressed in a pink wig with girlish clothing and doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a doll dressed in bridal weal doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl in a dress doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a pretty little girl with blonde hair doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is blonde girl is dressed nicely and she doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a young woman shows off her kawaii outfits while doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what poses with dressing with fashionable items?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a japanese woman doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is little japanese girl doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is lady dolls poses with doing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"who has long hair?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are a child photos displaying in?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is carrying a stuffed animal?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"femal\"\n  },\n  {\n    \"question\": \"what is an oriental femal carrying a stuffed?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what have different types of barbie dolls shown in?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what did a girl in a dress holding a white stuff in a brown room?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what did a girl dress up as?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"barbie\"\n  },\n  {\n    \"question\": \"what do a doll dressed in bridal weal holding in hand?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is an oriental femal dressed in a pink wig with?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what do a doll dressed in bridal weal holding a goat in?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who make up like a barbie holding a teddy?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who make up like a barbie posing to the picture?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who wears a pretty dress?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are displaying in the screen?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who dressed up as barbie?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a girls in the style of barbie standing with a teddy bear on?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is dressed in a pink wig with girlish clothing?\",\n    \"video_name\": \"video7142\",\n    \"answer\": \"femal\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is describing?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is explaining a video game?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what pokemon mod?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is explaining video game?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who do a minecraft pokemon?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"mod\"\n  },\n  {\n    \"question\": \"what does a man narrate?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who narrates a video game?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about his video game?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his video game character?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining how to play a pc pokemon game?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who navigates a menu on a video game?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is streaming minecraft?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man streaming?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is person playing?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone explaining?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7143\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a woman at?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"spa\"\n  },\n  {\n    \"question\": \"who women bathing?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do some women touch sensually?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of women doing?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what are a group of women doing?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what are few women doing?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are a group of woman doing?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what do attendants help a princess take?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"who do women rub their hands over?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"where is a woman?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"spa\"\n  },\n  {\n    \"question\": \"who do attendants help take a bath?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"princes\"\n  },\n  {\n    \"question\": \"who is at the spa?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gives another lady a rub with music playing?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is being massaged by other woman wearing towels at a spa?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do many girls giving bath to the pretty girl buy massaging?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"who are a group of women massaging?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of women rubbing all over a woman?\",\n    \"video_name\": \"video7144\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"how many people sit on a blue bench talking to each other?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is speaking about something in an interview in bbc news channel?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a wine critic discussing france s leader s plan to raise money for?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"economy\"\n  },\n  {\n    \"question\": \"who does a wine critic discussing france s s plan to raise money for the economy?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"leader\"\n  },\n  {\n    \"question\": \"what is bbc world news reporters doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sexy blonde in glass with colorful top doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what does a wine critic discussing france s leader s plan to raise for the economy?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"money\"\n  },\n  {\n    \"question\": \"who is giving an interview for the television?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman with blond hair doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a old lady doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three people sit on a blue bench doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the men and woman doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a wine critic doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is women with straight blonde hair and glasses talks while doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a old women in glasses doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady speaking about in an interview in bbc news channel?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man feeling the country s?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"pain\"\n  },\n  {\n    \"question\": \"what is the lady tells that she can t see that the economy of francis can be rescued by doing?\",\n    \"video_name\": \"video7145\",\n    \"answer\": \"raise\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is adorable puppies doing?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is getting down the stairs?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what slides down the stairs?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what walks down the stairs?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what slid down the stairs?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is dog doing?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are dogs doing?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what do a puppy going down?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"stair\"\n  },\n  {\n    \"question\": \"what is sliding down a flight of stairs?\",\n    \"video_name\": \"video7146\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a man cooking?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is frying fish in outside?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting bacon on burgers that are on the grill?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to barbecue burgers with bacon?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"cowboy\"\n  },\n  {\n    \"question\": \"who cooks burgers and bacon on a grill?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts the lid off of a barbecue?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who adds bacon to burgers he s grilling?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man putting on burgers that are on the grill?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what does a man lift the lid off of?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"barbecue\"\n  },\n  {\n    \"question\": \"what does a guy add to burgers he s grilling?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"who cooks burgers on the grill?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adding bacon to burgers?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man frying in outside?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who places bacon on hamburgers?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is grilling burgers?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man adding to burgers?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"who is grilling outdoors?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking outdoors?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man place on hamburgers?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"who grilling burgers?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking a food?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is burger doing?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a guy adds bacon to burgers he s doing?\",\n    \"video_name\": \"video7147\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"who gives instructions to cook a recipe?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is showing how to make a recipe?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is showing some recipe in the kitchen?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is going over a recipe in a kitchen?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cooks using white powder that he pours into the cooking pot?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving instructions on how to cook a dish?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is teaching how to cook?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pours ingredients into a pot on the stove?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who pours flower into the pan?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does a chef pour into the pan?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"who cooks a meal?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cooking in the kithen?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is preparing a treat?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"cheif\"\n  },\n  {\n    \"question\": \"who mixed in his ingredients?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what a chef cooks?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is a chef cooking in?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"kithen\"\n  },\n  {\n    \"question\": \"what is a cheif preparing?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"treat\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a chef give instructions to cook?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is somone doing?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man cooks doing?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a cheif doing?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7148\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who fell on the floor?\",\n    \"video_name\": \"video7149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7149\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what shows ratings and reviews for a movie?\",\n    \"video_name\": \"video7149\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did woman fall on?\",\n    \"video_name\": \"video7149\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who falls down?\",\n    \"video_name\": \"video7149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7149\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is being shown for a sexy movie?\",\n    \"video_name\": \"video7149\",\n    \"answer\": \"preview\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video7149\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a few brief clips of a woman doing?\",\n    \"video_name\": \"video7149\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people acting in?\",\n    \"video_name\": \"video7149\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what plays while viewing a photo of a baseball player in red uniform?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"dubstep\"\n  },\n  {\n    \"question\": \"what is a base ball player doing?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a red color person doing?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is music plays while doing?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"shoe\"\n  },\n  {\n    \"question\": \"what is one picture of a baseball player in action with his bat while music doing?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is dubstep music plays while doing?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what is guy in red uniform doing?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a tsunami original mix doing?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is batting is the act of doing?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what plays while shoing an image of a baseball player?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who possess?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what does the music play in?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does music play in?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what are the audience watching?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what plays in back ground?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is the batsman ready for?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"batting\"\n  },\n  {\n    \"question\": \"what are watching the show?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is ready for the batting?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"batsman\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who are doing a red shirt and red helmet to win?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who is singing with mix music as a player possess?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the act of facing the opposing pitcher team?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"batting\"\n  },\n  {\n    \"question\": \"who holds a bat on the field in front of a crowd?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the act of trying to produce offense for one s team?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"batting\"\n  },\n  {\n    \"question\": \"what set to the image of a baseball player in red?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"tsunami\"\n  },\n  {\n    \"question\": \"what are a picture of the batsman is shown and he is ready for the batting and the audience doing?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what do a picture of a baseball player in mid swing of while music plays in the background?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"bat\"\n  },\n  {\n    \"question\": \"what is a sports person of rugby game in?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what is a person singing with as a player possess?\",\n    \"video_name\": \"video7150\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is sitting in a chair?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is swinging a sword?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting in a electric chair is standing near?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"who dressed like a pirate while a man talks about his motorized chair?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are demonstrating a new chair design?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who did a man dress like while a man talks about his motorized chair?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"who sits in a motorized chair and talks to the camera?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many men are showing off an electric powered chair?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is sitting in a electric chair another one is standing near?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men explain how an electronic chair works?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are about to demonstrate how to operate a moving chair for the office?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is sitting on a chair?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a clip from a show about building and doing?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a man dressed like a pirate doing?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a chair and another man doing?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two men are about to demonstrate how to operate a doing?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who talks about his motorized chair?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits in a chair?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting on?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is another man sitting in?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about transportation?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man swinging?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what does a man sit in?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"transportation\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7151\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is jumping into that?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who does mini water fall bathig?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what falls bathig a girl?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a man swim in?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"who swims in the river?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many women is thrown just from the top of the?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"who slides down a small waterfall into a slightly larger natural pool?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what gushing through the rocks making a pond of fresh water to bath?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what does a water park patron with brown hair slide down into a large pool of white rushing water?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what did a woman in a bathing suit go down?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"who is bathin in some white water rapids?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the forest stream gush through the rocks making a pond of to bath?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is swimming in some white water rapids?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what rushes down a river through the rocks?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what falls where one women is thrown just from the top of the falls jumping which is quite thrilled?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who falls over the rock in to the water?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a young woman slide down into a slightly larger natural pool?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"who slides off the edge in to a pool of water?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what falls the sound of the water is heard when it falls from the height?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does water rush down through the rocks?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what are people playing in a pool of water beneath?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"what rushes over rocks into a pool below then a girl rides the water over the rocks?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are different shots showing flowing in small waterfalls off of a rock outcropping?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the forest stream doing?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"gush\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is waterfalls and a lady doing?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are different shots doing?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a small water falls where one women is thrown just from the top of the falls doing?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a girl in doing?\",\n    \"video_name\": \"video7152\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"how many man s are fighting with each other on the ground?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man slams another man into the ground during doing?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is highlights of kids doing?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is pictures and boys doing?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is this is a slideshow of doing?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who slams another man into the ground during wrestling?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are fighting with each other on the ground?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what begins with a huge slam from one contender?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"who does a man slam into the ground during wrestling?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two wrestlers having?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what are two guys wrestling in?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"how many people are wrestling?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"how many wrestlers are having a match?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two man s fighting with each other on?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"how many guys are wrestling in a competition?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man slam another man into during wrestling?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"how many men are wrestling?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is here comes the boom doing?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7153\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who prepares some casserole in a microwave?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man making food in?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"microwave\"\n  },\n  {\n    \"question\": \"what has been switched on?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"who uses a microwave oven to warm up an ingredient for a recipe?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"inhome\"\n  },\n  {\n    \"question\": \"who demonstrates how to cook something in the microwave for one minute and fifty seconds?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sets a microwave with ceramic pot before starting power?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what tutorial showing a woman placing a white bowl in the microwave?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who cooks the food in the microwave oven?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the micro oven for electronic food processor prepare?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is heating a white dish in a microwave?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman cooking a meal in?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"microwave\"\n  },\n  {\n    \"question\": \"what is a woman cooking in the microwave?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is a man making in a microwave?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is making food in a microwave?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is demonstration on how to prepare something doing?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what pushes buttons on a microwave to set the cooking time on a bowl of rice?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"heat\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman sets a microwave with ceramic pot before doing?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what does an inhome chef use to warm up an ingredient for a recipe?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"microwave\"\n  },\n  {\n    \"question\": \"who is showing how the microwave own is working?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking a meal in the microwave?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7154\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"how many people are exiting from the water?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do men crawl through mud under a fence then climb up?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"wooden\"\n  },\n  {\n    \"question\": \"what do the men wearing black shorts walk out of?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do men crawl through under a fence then climb up a wooden wall?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"mud\"\n  },\n  {\n    \"question\": \"what do men come out from a swim to climb over on an obstacle course?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is swimming?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what are two people exiting from?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"how many people are doing an exercise?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is running near the cold water?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of men climbing a wall in?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what are a group of men climbing in an event?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what do the men wearing black shorts climb up?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does a wall climb people swim in a muddy water on then?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do men walk out of a puddle of water then climb?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what do men crawl through mud under then climb up a wooden wall?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what climbs people swim in a muddy water on a beach then?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what do men wearing competitive swimming gear climb out of?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is men rise from moody water before doing?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"exit\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is the men doing?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two athlete doing?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there are two men doing?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are swimming in the lake near the rocks?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do men rise from before climbing a wall with a rope on an obstacle course?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"moody\"\n  },\n  {\n    \"question\": \"who are competing with each other in a cross country race?\",\n    \"video_name\": \"video7155\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who plays a concert?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do an older man and a younger man sing during?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"who live on a television show?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"how many other men sing?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is performing live on stage?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what plays a live performance?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man singing with?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a band play?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing with his band?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do a group of jazz musicians play in a concert hall?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a jazz band doing?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is tom jones doing?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what plays with two men singing and a large number of additional instruments accompanying?\",\n    \"video_name\": \"video7156\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is narrating a pokemon episode?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who commentates in spanish?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to pokemon?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do scene from a cartoon tv show?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"pokeman\"\n  },\n  {\n    \"question\": \"what are talking with each other?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"adventure\"\n  },\n  {\n    \"question\": \"who do spanish ash and misty meet?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"togepus\"\n  },\n  {\n    \"question\": \"who is wearing a hat?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is someone narrating?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is a boy wearing?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is talking in a different language?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a girl talking to in a cartoon?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what are the adventure doing?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video of a cartoon character doing?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is dragonball z characters doing?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who are talking to one another while a man commentates in spanish?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"who is talking to an egg in a cartoon?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl talking to an egg in?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is played with spanish voice overs?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what are pokemon characters having possibly in spanish?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what does an anime cartoon character speak to?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are having a conversation possibly in spanish?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what talks to misty and togepi in an episode of pokemon?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"ash\"\n  },\n  {\n    \"question\": \"what show by one girl and boy in charecter?\",\n    \"video_name\": \"video7157\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are some presidential candidates having on tv?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"debate\"\n  },\n  {\n    \"question\": \"what do two guys in formal wear talking in?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"debate\"\n  },\n  {\n    \"question\": \"what does two man wearing talking about some important things in the news channel?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what do presidential candidates stand on stage and talks on?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does the man wearing the red tie talk at?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"what does donald trump and ted cruz having?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"debate\"\n  },\n  {\n    \"question\": \"what do two presidential candidates stand at their podiums on stage?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what does trump speechless leave cruz holds?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is on cnn talking to donald trump the presidential candidate up for election in the united states?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many political candidates participate in a televised debate on campaign issues?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man on talking to donald trump the presidential candidate up for election in the united states?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"cnn\"\n  },\n  {\n    \"question\": \"who stands next to candidate donald trump and briefly speaks?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"how many men are having conversation in the tv studio?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are having conversation for the television?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many presidential candidates stand side by side at their podiums on stage?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who leaves cruz holds floor on cnn?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"speechles\"\n  },\n  {\n    \"question\": \"what does trump speechless leave holds floor on cnn?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"cruz\"\n  },\n  {\n    \"question\": \"what is two mans doing?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a two old persons in blue color cloth doing?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two guys in formal wear doing?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is ted cruz doing?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two person with blazer and red tie doing?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man is on cnn doing?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is fox news presidential debate doing?\",\n    \"video_name\": \"video7158\",\n    \"answer\": \"recap\"\n  },\n  {\n    \"question\": \"who is talking to another man?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is david letterman interviewing murray?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"what are two man talikng about?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"somethimg\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is david leterman doing?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is interviewing bill murray?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"who is doing an interview?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"leterman\"\n  },\n  {\n    \"question\": \"what is a man taking on tv?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is interviewed on a tv program?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"who is taking interview on tv?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are talikng about somethimg?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is bill murray being interviewed by?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"what are two men talking about?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is bill murry being interviewed by?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"how many men are talking about something?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is being interviewed by david letterman?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who is being interviewed by david letterman while talking about bill s past roles?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who is bill murray being interviewed by while talking about bill s past roles?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who do an actor talking to a talk show?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an actor doing?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is david letterman doing?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is talk show host doing?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7159\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is shown falling asleep?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who wakes up?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon character dozing off on?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falling asleep?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is falling asleep?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is sleeping?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who struggles to stay awake?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is falling asleeping?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon man falling asleep on?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what does a cartoon character fall asleep on?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is an animated man shown falling asleep on?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who is sitting on a red couch dozing off?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is sitting on a red couch falling to sleep?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is falling asleep while sat on a red couch?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown falling asleep on a couch?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dozing off on a couch?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who falls asleep on a couch?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is falling asleep on a couch?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is tired?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is cgi character doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is an animated person doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is an animated man is shown doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a very sleepy man falls asleep doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a cartoon man doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a cartoon is shown doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"doze\"\n  },\n  {\n    \"question\": \"what is a cartoon boy doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who almost falls asleep?\",\n    \"video_name\": \"video7160\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is folding a piece of yellow paper?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is a person?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is showing some paper art?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a paper airplane?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a plane made out of?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds a piece of paper into an airplane?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who folding a piece of yellow paper in to an airplane?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does woman fold a yellow piece of paper into?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does woman fold a yellow piece of into an airplane?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a woman folding a yellow piece of?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a woman fold a piece of paper into?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who is doing something on the paper?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what a woman folding a piece of in to an airplane?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man folding a piece of?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a woman doing on the paper?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who folding a piece of paper?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is made out of yellow paper?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is a woman doing something on?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folding an orange envelope?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is folding origami?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what a woman folding a piece of?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what was folded several times?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds a yellow piece of paper into an airplane?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman fold a piece of into an airplane?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a yellow piece of paper?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7161\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a pretty young woman doing?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many people discuss beauty?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is speaking to a man in an interview?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed about beauty and body shape?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what man interviews a woman about beauty?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"who is a woman speaking to in an interview?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman speaking to a man in?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who interviews a man on camera?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what shapes?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do two people discuss?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what is a person taking?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what does a woman give?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman speaking during?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who a man interviews?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is taking interview?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gives an interview?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who interviews a woman?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being interviewed for tv?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking during an interview?\",\n    \"video_name\": \"video7162\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does two seem to fall in?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what are teams playing?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what do asian girl and guy fall in?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what do two chinese students in?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who is touching a young girls back?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young girl harassing the boys in?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who reaches out to comfort a crying girl he has interest in?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a young man reach out to comfort a crying girl he has in?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"interest\"\n  },\n  {\n    \"question\": \"what is young people in a classroom are shown and then a young woman and a young man doing?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are teams doing?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an ad for a movie doing?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are a man and a women doing?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7163\",\n    \"answer\": \"haras\"\n  },\n  {\n    \"question\": \"what does a knight catching a princess then getting attack by?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"crow\"\n  },\n  {\n    \"question\": \"who does a bird bite a cartoon man is talking to a woman then?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a bird bite a cartoon man a man is talking to then?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a knight catching a princess then getting by a crow?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what bites a cartoon man a man is talking to a woman then?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"who catches a princess in his arms?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dreams of saving a princess?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"knight\"\n  },\n  {\n    \"question\": \"who does a bird bite a man is talking to a woman then?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a man daydream a princess falls from?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"who does a man daydream falls from the sky?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"princes\"\n  },\n  {\n    \"question\": \"who wakes up to find a crow chewing on his ear?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"knight\"\n  },\n  {\n    \"question\": \"who daydreams a princess falls from the sky?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a knight doing?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is a man catches a doing?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"who is woken from a dream about a princess by a crow pecking at his face?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"knight\"\n  },\n  {\n    \"question\": \"who turns into a crow?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"maiden\"\n  },\n  {\n    \"question\": \"what is a computer animation doing?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who does a soldier catch?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"princes\"\n  },\n  {\n    \"question\": \"who does a cartoon man catch?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who does a cartoon man hold?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who scares a warrior?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"maiden\"\n  },\n  {\n    \"question\": \"who does a cartoon character hold?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who catches a princess?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who holds a cartoon girl?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who catches a falling woman?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a maiden turn into?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"crow\"\n  },\n  {\n    \"question\": \"who holds an animated woman?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who catches a cartoon woman?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who holds another cartoon character?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who does animated man hold?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a maiden scare?\",\n    \"video_name\": \"video7164\",\n    \"answer\": \"warrior\"\n  },\n  {\n    \"question\": \"what does a person prepare in a bowl?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is mixing some vegetable in a bowl in kitchen?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is mixed in a bowl?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a person then add?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is food mixed in?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who prepares food items in a metal bowl?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a silver doing?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what cooking and mixing ingredients?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man demonstrate?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"who demonstrates origami?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person prepare some food in?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a person play with in a bowl?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what does a person play with some cheese in?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who prepares some food in a bowl?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays with some cheese in a bowl?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is mixing up ingredients in a bowl?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is mixing ingredients in a bowl?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what bowl with numerous ingredients?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"who then adds oil?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to make food?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone mixing ingredients in?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7165\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is using a computer program?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is teaching how to add music in itunes?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is talking about importing music to a ipod?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining how to do things on an ipod?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains how to use computer software?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is looking at music on itunes?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is demonstrating how to use itunes?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about software?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone looking at on itunes?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is using itunes?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is showing an application?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a tutorial on?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"what is someone watching?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is watching a computer screen?\",\n    \"video_name\": \"video7166\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what was the man doing?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a clip of two men doing?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of guys and one woman doing?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men pointing at while a woman watches?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do group of men argue in?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"how many men argue while people look on?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who was arguing with the other man?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of men having?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what argue in the street?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do the men argue between?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"eachother\"\n  },\n  {\n    \"question\": \"what is having a discussion?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is group having?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"who watches?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is having a heated discussion with others?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what filmed with the help of a handheld device?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"how many men seem to be having some type of argument?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who looks distraught as people try to comfort him?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a group of people?\",\n    \"video_name\": \"video7167\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man throwing a football through?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who is throwing a football through a ring?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man throw through a hoop?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a man throwing an american football through?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"hoop\"\n  },\n  {\n    \"question\": \"who throws footballs into targets?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"quarterback\"\n  },\n  {\n    \"question\": \"who throws a football through a hoop?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is throwing an american football through a hoop?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man throwing through a hoop?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does a man throw a football through?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"hoop\"\n  },\n  {\n    \"question\": \"what is a man throwing through a ring?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who throws a football through hoops?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is guy playing with?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do guy throw around?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a young football player playing with?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is playing ball?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man throw through targets?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is playing with ball?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who throwing football around?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does man throw through hoops?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is football player doing?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is he doing?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who throws a football through targets?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7168\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"who is cleaning in a kitchen while wearing gloves?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when does a woman wearing blue scrubs say dealing with death and bodies?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"who washes hands and talks about dealing with dead bodies as a profession?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a old woman in blue color dress wearing washing hand wiping hand with cloth beside books on table displaying on screen?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is a man doing something with in his home?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what do a old woman in blue color dress wearing cloth washing wiping hand with cloth beside books on table displaying on screen?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a man doing something with a sink in?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what do a old woman in blue color dress wearing cloth washing hand wiping with cloth beside books on table displaying on screen?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a female nurse clean off?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"surface\"\n  },\n  {\n    \"question\": \"what is a man doing with a sink in his home?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who cleans off a surface?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"nurse\"\n  },\n  {\n    \"question\": \"where is a man doing something with a sink?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who is doing something with a sink in his home?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman cleaning in while wearing gloves?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a old woman in blue color dress wearing cloth washing hand wiping hand with cloth beside books on table displaying on?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is the fat woman wearing specsmay be a doctor washing clearly?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a mortician doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a mortician doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"wipe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"dip\"\n  },\n  {\n    \"question\": \"what is the fat woman doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is woman washes hands and talks about doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"deal\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is it womanish on doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is a women in blue doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is a old woman in blue color dress doing?\",\n    \"video_name\": \"video7169\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does a girl shoot a toy crossbow at?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who shoots a toy crossbow at a target?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is shooting with a bow and arrow?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is shooting with a bow and an arrow?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is shooting a toy bow and arrow?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with toys?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is shooting a bow and arrow?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl shoot at a target?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"crossbow\"\n  },\n  {\n    \"question\": \"who shoots a nerf bow and arrow?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"practise\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who plays with toys?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7170\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what stands in front of a plexiglas podium?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"britney\"\n  },\n  {\n    \"question\": \"who answers questions asked by a crowd of people?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is being interviewed by a group of individuals?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who is giving a interview to the reporters?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what interviewers interviewing a famous blonde singer?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a woman giving to the reporters?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what does fallen star britney spears have?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"conference\"\n  },\n  {\n    \"question\": \"who is talking with group of people?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is blonde woman doing?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a short seen of britney spears doing?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is britney spears doing?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is group of interviewers doing?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a cute girls doing?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a woman in white dressing doing?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in white dressing doing?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in white doing?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what answers questions?\",\n    \"video_name\": \"video7171\",\n    \"answer\": \"britney\"\n  },\n  {\n    \"question\": \"what are having a conversation?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who snatches a medal from a girl?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"how many boys talk with a girl?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are cartoon characters having?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is a boy looking at?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what is the girl holding?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"medal\"\n  },\n  {\n    \"question\": \"what do cartoon children discuss?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"chi\"\n  },\n  {\n    \"question\": \"who is holding a medal?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a boy and a girl fight over?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"medal\"\n  },\n  {\n    \"question\": \"who discuss chi rituals?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who has an apple on his head?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is looking at a metal?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who do two boys talk with?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon of kids doing?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a clip of a cartoon where she doing?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is cartoon doing?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is three cartoon characters doing?\",\n    \"video_name\": \"video7172\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who is giving a tutorial on nail painting design?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dying eggs in blue and pink ink?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a woman putting nail polish in a bowl then dipping eggs in?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is putting an egg into it?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing nail polish in to a water?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman doing with nail polish?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who is a colourful art work explaining by?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing a craft with nail polish?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman making colored eggs with?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"who is making colored eggs with nail polish?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing nailpolish?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"die\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a colourful art work doing?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing a craft with?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"who is mixing nail dipping the egg?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who explains craft project with daughter?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"mom\"\n  },\n  {\n    \"question\": \"what is a person holding?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who is holding an egg?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making crafts?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman putting into it?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what does mom explain with daughter?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"who does mom explain craft project with?\",\n    \"video_name\": \"video7173\",\n    \"answer\": \"daughter\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"rinse\"\n  },\n  {\n    \"question\": \"what is nice doing?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a guy taking a ride on to the top of the mountain in what is probably part of a tour guide video?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a guy taking on a lift to the top of the mountain in what is probably part of a tour guide video?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"ride\"\n  },\n  {\n    \"question\": \"who is going in the robe car?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is saying about the monarchies?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man rinsing however there is no snow?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what a boy rides up to the top of a mountain?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"gondola\"\n  },\n  {\n    \"question\": \"what is a man rinsing there is quite green?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person riding?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"who is riding a ski lift?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man rinsing a ski lift however there is?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"who is in the rope car which is very high from the ground?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is riding on the rope car through the hill?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rinsing a ski lift however there is no snow?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a machine to get to the top of the mountain?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who enjoys the rope car nice building person travel in rope car?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who rides a lft to the top of a mountain?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cheerfully riding the chairlift up the side of a wooded mountain?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many guys ride upwards on what seems to be scenic lift?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who rides a gondola up to the top of a mountain?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man riding on the rope car through?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what does a person enjoy the rope car nice building person travel in?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what a man rides to the top of a mountain?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"lft\"\n  },\n  {\n    \"question\": \"what does a person enjoy nice building person travel in rope car?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is a map of an area being shown on?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is taking a ride on a lift to the top of the mountain in what is probably part of a tour guide video?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a person with blue color dress going in?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a map of a video game being shown to?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man riding to get to the top of the mountain?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is rinsing a ski lift there is quite green?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a blue jacket riding to the top of a mountain?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"monorail\"\n  },\n  {\n    \"question\": \"what is a person with blue color dress explaining?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man cheerfully riding up the side of a wooded mountain?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"chairlift\"\n  },\n  {\n    \"question\": \"who does a person enjoy the rope car travel in rope car?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is on a lift that takes him to the top of a mountain?\",\n    \"video_name\": \"video7174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits down at a table with two trays on it?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are talking on a game show?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what does one man sit at?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are watching tv?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"peeple\"\n  },\n  {\n    \"question\": \"who takes a seat?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"member\"\n  },\n  {\n    \"question\": \"who sits at a table?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does harry styles sit at?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does the band member take?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"seat\"\n  },\n  {\n    \"question\": \"what is a group of guys doing?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"when do a group of people stand while one man sits at a table?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what waits?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"harry\"\n  },\n  {\n    \"question\": \"what is the men were video doing?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what are some peeple doing?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is several men on a tv show doing?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are group of men doing?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do several men on a tv show talking about?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what sits at a table?\",\n    \"video_name\": \"video7175\",\n    \"answer\": \"harry\"\n  },\n  {\n    \"question\": \"who is looking at the moon?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"astronaut\"\n  },\n  {\n    \"question\": \"what was project adam the original name of the first manned?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"who is talking about man space that was named adam before nasa?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was the original name of the first manned space flight?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"what is an astronaut looking at?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"who is talking while seated?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who glasses?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man in glasses doing?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an astronaut doing?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is discussing space?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing the first manned space flight?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for an interview?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man discussing?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who is talking about spaceflight?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about first space fligt?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about space project adam?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man describe the first manned?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what did a man discusses the first man?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"mission\"\n  },\n  {\n    \"question\": \"what did a man is talking about the first man?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"who describes the first manned space flight?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man discussing the first manned?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"who is talking about space?\",\n    \"video_name\": \"video7176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a boy talking outside?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who dancing and singing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who danced?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is young kid outside doing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"parody\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a child records himself outside doing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy beat boxing and doing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is rapping?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who beat boxing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is girl dancing in?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"who is singing to a pop song?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy parodying by singing and dancing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a little boy doing his own rendition of psy s?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"gangnam\"\n  },\n  {\n    \"question\": \"who beat dancing to oppa gagnam style?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is parodying a popular song by singing and dancing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is doing cutomizations in a video game?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is dancing in front of a pool and a home?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is doing his own rendition of psy s gangnam style?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who records himself outside dancing?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is talking outside his house?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is dancing in the garden?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who dancing and singing gangam style?\",\n    \"video_name\": \"video7177\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is a toy singing?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man singing in?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what is an army character shooting?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is floating in space and singing?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"cortona\"\n  },\n  {\n    \"question\": \"who is singing in space?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a cartoon talking in?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what show in a tv show?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is talking in space?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is singing a song?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is shooting a gun?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who sings with an autotuned voice?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is cortona doing?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animated clip of a warrior doing?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a funny parody video doing?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"outline\"\n  },\n  {\n    \"question\": \"what is an army character doing?\",\n    \"video_name\": \"video7178\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what are female cartoon characters standing in talking?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what are standing in a line talking?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do girl characters chat in?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what does a cartoon character hold up?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"shoe\"\n  },\n  {\n    \"question\": \"what are women standing together in?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is interacting with one another?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what talk in the living room?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are two animated woman s doing?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are four computer animated girls doing?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are female cartoon characters doing?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who chat in their bedroom?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is barbie dolls doing?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two animated women and two animated girls talk while possibly doing?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"pack\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is barbie and her friends doing?\",\n    \"video_name\": \"video7179\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do various cartoon characters watch twitch?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"bod\"\n  },\n  {\n    \"question\": \"what is heckling cartoon performing animals?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is various cartoon characters watch a doing?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"die\"\n  },\n  {\n    \"question\": \"who does cartoon where on kill?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"charachter\"\n  },\n  {\n    \"question\": \"what are animated characters in?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"pain\"\n  },\n  {\n    \"question\": \"what where on kills another charachter?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a 5 nights of freddie s?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who watch a dying bod twitch?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a crowd heckling performing animals?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a crowd doing?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"heckle\"\n  },\n  {\n    \"question\": \"what is an animation of people doing?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is an animation doing?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is an anime doing?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is an evil cartoon animal doing?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are in a cartoon television show characters doing?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is several cartoons doing?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what show for childrens?\",\n    \"video_name\": \"video7180\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a slideshow of expensive cars play to?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is holding his hands in the air?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what shows images of fancy cars while playing music?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is posing with cars?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shot of sports cars?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is posing with many cars?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man holding his hands in?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is showing cars?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an r & b/hip-hop song plays while we see these images a man in a red shirt doing?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the video shows images of fancy cars while doing?\",\n    \"video_name\": \"video7181\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do a man in a red shirt and a man in a green shirt play competitively?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many people are playing a fast paced game of table tennis?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a pair of young people play a challenging game of?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"who are two players dressed in green and red playing table are sitting around?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are two players dressed in green and red playing tennis ans spectators are sitting around?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"how many men are competing in a fierce table tennis game?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a man in green and a man in red play a fast paced game of?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"what are a two man playing?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are two people volleying?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who are playing a table tennis?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two people playing a fast paced game of?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many men play ping pong on a red floor in front of a small crowd?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do players play a fast paced game of against one another?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many people are volleying the ball?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do unbeliveable way 2 men compete at?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"what is a red and green color dress players doing?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are two men one doing?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a heated ping pong match is in progress with a very close doing?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what are two players dressed in green and red doing?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is in the middle of the arena there are two people doing?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a two man doing?\",\n    \"video_name\": \"video7182\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do women taking dance or exercise?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"what are some guys dancing together in?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do a group of people dance in?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what do a group of men and women do?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"cardio\"\n  },\n  {\n    \"question\": \"what is being practiced by some men and women?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is young boys and girls doing?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"attend\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is bunch of girls doing?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is an aerobics or dance class doing?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of women doing?\",\n    \"video_name\": \"video7183\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do a man comments on the proceedings as jockeys ride horses around?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what do other horses approach from?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"rear\"\n  },\n  {\n    \"question\": \"what is ending as the commentators give closing remarks?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"who is speaking about a horse race the horses are moving slowly?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"what is a man with a british accent doing?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is a horse race doing?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what is the crowd applauds the jockeys and their horses after doing?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what is a commentator doing?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is horses doing?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who wins a race and rides his horse to the stands with the fans?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what jockey riding a brown horse as other horses approach from the rear?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who rides down the race track on a race horse?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"jockey\"\n  },\n  {\n    \"question\": \"what do racers ride their horses after as fans watch from the interior of the track?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is horse riding going in brown t shirt won the match?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do horse jockey riding as other horses approach from the rear?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is going a man in brown t shirt won the match?\",\n    \"video_name\": \"video7184\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what do disney characters sing old macdonald had?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"farm\"\n  },\n  {\n    \"question\": \"who sing old macdonald had a farm?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what are video game characters singing?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are animated characters doing?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are several disney characters doing?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who do disney characters sing had a farm?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"macdonald\"\n  },\n  {\n    \"question\": \"what are animated cartoons doing?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who are dancing?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are dancing in the rain?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what are several disney characters dancing in?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who sing in the rain?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"who are singing a song?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is from a cartoon program?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"clipping\"\n  },\n  {\n    \"question\": \"what do disney characters sing in?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who sing and dance?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what do some disney characters sing?\",\n    \"video_name\": \"video7185\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"wish\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is scientist doing?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"exit\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is astronauts doing?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"greet\"\n  },\n  {\n    \"question\": \"what is a shot of astronauts doing?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"who is a man hugging?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hugs another man in outer space?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people on?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"shuttle\"\n  },\n  {\n    \"question\": \"who talks about science?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about nasa?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do astronauts greet each other on?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"iss\"\n  },\n  {\n    \"question\": \"who is hugging a man?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some people celebrating in?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"shuttle\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video7186\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man in a hood doing?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men have a conversation in a phone booth doing?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"when did a city skyline?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"dusk\"\n  },\n  {\n    \"question\": \"how many men have a conversation in a phone booth wearing weird outfits?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"where did a couple men dress up?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who is talking to a mysterious masked man?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two men have in a phone booth wearing weird outfits?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who dressed up in a city?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what did a couple men dress up in?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who does a hooded character talk quietly to?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who steps away from a phone booth?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks quietly to another man?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who directs another man outside?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what skyline at dusk?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who does a cloaked man direct outside?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has left the tardis?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who is wearing a cape?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what has the doctor left?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"tardi\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video7187\",\n    \"answer\": \"cape\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman cutting up?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who is cutting?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"what is some on making?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"who is mixing?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making a salad?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man narrate cutting up various foods to create a kind of?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"what did a person chopping a hard boil?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what does a person mix together in a bowl?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman making in a kitchen?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"who is explaining a recipe verbally the woman in the video is demonstrating?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates cutting up various foods to create a kind of salad?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaining verbally the woman in the video is demonstrating?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who mixes some food together in a bowl?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a salad in a kitchen?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting up an egg?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is teaching how to prepare salad?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman making a salad in?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a man narrates doing?\",\n    \"video_name\": \"video7188\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what does a man get ready?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man operating?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what does a man put on?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"gear\"\n  },\n  {\n    \"question\": \"what is this video doing?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person putting on?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"gear\"\n  },\n  {\n    \"question\": \"who then affixes a piece of machinery to his vest?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picks materials from the back of a trunk?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone working on?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"who is taking something out of his car?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man then affix a piece of to his vest?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"machinery\"\n  },\n  {\n    \"question\": \"who puts on a vest?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts on equipment?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts gear on?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking something out of?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is working on a robot?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man then affix a piece of machinery to?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"vest\"\n  },\n  {\n    \"question\": \"who is operating a robot?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets his equipment ready?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting on gear?\",\n    \"video_name\": \"video7189\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are some people playing ping pong on?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"how many persons are playing table tennis game?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is man in blue shirt playing match with?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many people compete in a ping pong match?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about a point in a championship table tennis match?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who walks in front of a ping pong table while commentators speak about the match?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some people playing ping on a court?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"how many atletic men are inside a court playing ping pong for 2015 world championships?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men get ready to play in a big ping pong match?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many players are pacing on the floor where they are to compete?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two atletic men inside a court playing ping for 2015 world championships?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"what is man in blue shirt playing with someone?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"how many athletes take a break from a table tennis match?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are table tennis players doing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the basket ball player doing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a seems to be doing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is two atletic men are inside a court doing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two men in shorts doing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man in blue shirt doing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two sports players doing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"pace\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two table tennis player doing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is going to start?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are two persons playing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"who are walking in the court?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is the basket ball player playing in very well in?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"cort\"\n  },\n  {\n    \"question\": \"what are table tennis players playing?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"who are playing tennis?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are the player walking in?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what do commentators speak about?\",\n    \"video_name\": \"video7190\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is a man with a russian accent doing?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what is there is a man in doing?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"cool\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person with small beard near a home doing?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the communist man doing?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a russian man expains how to teach a dog to sit while doing?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is there is a tshirt man doing?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who plans to teach a trick?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"who is speaking on how to teach his puppy how to sit down?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a bald man plan to teach?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"who wears sunglasses?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"who explains how he is going about teaching his puppy how to sit?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is wearing specs?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"spec\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how he trains his puppy with a biscuit?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who glasses giving instructions on how to train a puppy how to sit?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining the political situation of his country and the importance of the party?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"communist\"\n  },\n  {\n    \"question\": \"who is talking with a piece of wood?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person in shades talks and hold up a piece of?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a russian person with glass on the morning time show?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who gets ready to teach people how to train their animals?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who expains how to teach a dog to sit while holding a treat?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person with small beard near a home showing a piece of?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"item\"\n  },\n  {\n    \"question\": \"what does a russian person with glass on the morning time explain about?\",\n    \"video_name\": \"video7191\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people looking at a wooden ship on?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is being displayed?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is being explained?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what are people moving in?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a man walking around?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does a man narrate about?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what do people view in a museum?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what do people view a ship in?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"museum\"\n  },\n  {\n    \"question\": \"who talks about a wooden ship s design?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the design of a wooden ship?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about a wooden ship s?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"what is a big boat being presented in?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"hangar\"\n  },\n  {\n    \"question\": \"who is describing a large wooden ship?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about s design?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"who narrates about a ship?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking around a boat?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being presented in a hangar?\",\n    \"video_name\": \"video7192\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is displayed on the floor?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what is been advised?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what is there?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a voice doing?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who gives a demonstration and description of a new kind of laptop?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the touch pad of a laptop?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is describing the features of a specific laptop touchpad?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is talking about the features of the laptop displayed?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is describing the track pad features of a laptop?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing latest version of laptop?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person showing latest version of?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what does a man explaining about a laptop and the touch pad of a laptop s?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is shown as a man discusses its features?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is looking at a lap top?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is describing what the lap top has and does?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is open?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what is a laptop displayed on?\",\n    \"video_name\": \"video7193\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a toy doing?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is a spuid toy spinning in?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is spinning in a cup?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"spuid\"\n  },\n  {\n    \"question\": \"what octopus in a jar?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what dances in water?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is floating in water?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a fake fish dance in?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is in a bottle?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"octopu\"\n  },\n  {\n    \"question\": \"what is a toy floating in?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is an octopus in?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what dances in a water bottle?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"jellyfish\"\n  },\n  {\n    \"question\": \"what does a little fake orange octopus dancing in?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is spinning a bottle that has a toy squid in a toy?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a spuid toy doing?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a little fake orange octopus doing?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who makes a toy octopus spin in a container of water?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing with a jar that contains a toy?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man make spin in a container of water?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"octopu\"\n  },\n  {\n    \"question\": \"what spins inside of a water bottle?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"jellyfish\"\n  },\n  {\n    \"question\": \"what octopus in a bottle of water?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what floats in the glass of water?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"who spins an octopus toy in a jar of water?\",\n    \"video_name\": \"video7194\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what describes a photography ad?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does 80s hair metal play in?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who do a girl in red dress standing near the car and a girl with black dress and hand bag posing posing near the wall?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a very pretty lady standing next to the white car with?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"who is posing in a red dress next a white care a woman is posing in a black dress?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is an asian woman posing in a red dress next a white care is posing in a black dress?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a blonde woman with big tits standing by?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is women in red skirt doing?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is pictures of beautiful women doing?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is an asian woman doing?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is there is a young lady doing?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is three girls doing?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a very pretty lady doing?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a blonde woman with big tits doing?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman in a dress doing?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is there are some fashion ladies doing?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is lady in the red dress doing?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what is a girl in red dress doing?\",\n    \"video_name\": \"video7195\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is singing as a group of men are hudled around helmets lying on the floor?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are a crowd of people a lady singing racers in a helocopter with an itilian flag?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what do many person praying and elecopter moving in displaying on screen?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what do many person praying and elecopter moving in air displaying on?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a woman sing while a large crowd on people pray outdoors?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"dirge\"\n  },\n  {\n    \"question\": \"where are a group of people gathered for a funeral?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who sings a song outside on a windy day in front of a large crowd?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings a funeral dirge while a large crowd on people pray outdoors?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing at the opening of a car race event?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a girl in white dress wearing color cloth singing song with many person standing listening standing round elecopter moving in displaying on screen?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is there is a man in white doing?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"lessen\"\n  },\n  {\n    \"question\": \"what do a crowd of people stand in while a woman sings?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what are a group of people gathered in for a funeral?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a woman in white singing at a sporting event?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"anthem\"\n  },\n  {\n    \"question\": \"what do many person standing together elecopter moving in displaying on screen?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what do many person standing together elecopter moving in air displaying on?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are some people in a crowd doing?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is many person doing?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl in white dress doing?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"attend\"\n  },\n  {\n    \"question\": \"what do a group of race drivers stand in while a woman sings a song?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what do a girl in white dress wearing color cloth singing song with many person standing listening standing round elecopter moving in air displaying on?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are some people in a crowd standing around out?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman sing?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are the drivers gathered in?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"who sings operatically?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are attending on a sports event?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are standing on a sports event?\",\n    \"video_name\": \"video7196\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is clip of tv?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"shift\"\n  },\n  {\n    \"question\": \"what is bullets doing?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is two people are frozen while doing?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is the movie clip?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what are two police officers frozen in?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"who rearranges still people?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slowing down time?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"superhero\"\n  },\n  {\n    \"question\": \"who is freezing time in a movie to escape authorities?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who takes a hat off a security guard?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many cops are frozen with their guns drawn?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cops are frozen with their guns aimed?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many police officers are frozen in slow motion?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when is a superhero slowing down?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"who does hands s is shifting the positions of two men?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man take off a security guard?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"who are frozen in slow motion?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who is moving quickly around other men?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pranking people?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"superhero\"\n  },\n  {\n    \"question\": \"how many people are frozen while holding guns?\",\n    \"video_name\": \"video7197\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who discusses a soft mat?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing home improvement?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown repairing a floor?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fixing a floor problem?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who presses down on some material?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is repairing fake grass?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing construction?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man push down on?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"foam\"\n  },\n  {\n    \"question\": \"who is fitting cusion?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pushes down on some foam?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is filming a diy craft video?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing what lies underneath a layer of turf?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"fit\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is showing a cushion for a pad?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining how to make repairs?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man repairing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who talks about a cushion for a spring pad?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what is a man fixing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"who is the person?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"cusion\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"construction\"\n  },\n  {\n    \"question\": \"what was soft?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"cushion\"\n  },\n  {\n    \"question\": \"who is working?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a man presses down on?\",\n    \"video_name\": \"video7198\",\n    \"answer\": \"material\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a minecraft player doing?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is speaking french?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is building?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is video game of doing?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being shown on the screen?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a video game being shown on?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking in french to his daughter?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shot pieces down?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is talking while playing his video game?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking as he plays a video game?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game that includes blocks?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a video of a video game that uses block like?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is shooting at inanimate objects in a video game?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking while a video game is being shown on the screen?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is a man speaking in french to?\",\n    \"video_name\": \"video7199\",\n    \"answer\": \"daughter\"\n  },\n  {\n    \"question\": \"what is an athletic appreciating by?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"celeberatey\"\n  },\n  {\n    \"question\": \"who gets a trophy?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who hugs an older man?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a girl walk across?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is given a trophy?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what begins holding?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who is celebrating?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what begins relaxing?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who is walking around?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman walking off?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a sports player given?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"trophy\"\n  },\n  {\n    \"question\": \"what is a woman getting?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"award\"\n  },\n  {\n    \"question\": \"what does a girl get?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"trophy\"\n  },\n  {\n    \"question\": \"who a man hugs?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getting award?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking off the field?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a soccer player awarded with?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"trophy\"\n  },\n  {\n    \"question\": \"who is shown holding up a trophy?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who walks across the field?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is an athletic doing?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"appreciate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is a soccer team winds down after a match and begins doing?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is a soccer player is shown doing?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a soccer player doing?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is shaking many people s hands after receiving a trophy?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving shake hand to others in ground?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shakes hands with several other people?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is awarded with a trophy?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is shown shaking hands?\",\n    \"video_name\": \"video7200\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what talks about its dog?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what does a man ask to hold?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a man hold?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are two people nursing?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what do a couple talk about?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is very loved?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a family talk about?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dogs?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a woman show off?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"cute\"\n  },\n  {\n    \"question\": \"who asks to hold a dog?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a woman s small white dog?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"nurse\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"who holds a white dog?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is handing a man a small white puppy with a bow on its head?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is passing a dog to a man?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman passing a dog to?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man hold a woman s?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"how many people are nursing a baby dog?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a woman passing to a man?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who does a man hold s small white dog?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7201\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are dancing?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what did the woman lead?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what does a woman instruct?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"dancing\"\n  },\n  {\n    \"question\": \"who led the exercise class?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who leads a latin dance class?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who instructs a dancing class?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who conducts a latin dancing class?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman leading a class of people in a dance to?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a team doing?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is leading a group of people in exercise?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of people dancing in?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is leading a class of people in a dance to a song?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman leading a class of people in to a song?\",\n    \"video_name\": \"video7202\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is starting a pokemon game?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is entering information?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what do video game review with?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"gameplay\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone starting?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a player entering?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"who runs?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a player begin?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"adventure\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who begins his pokemon adventure?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who is playing pokemon?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who run in a word game?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is naming a video game character?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what review with gameplay?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what shows a person playing a computer game?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who creates his characters on a game?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"user\"\n  },\n  {\n    \"question\": \"who does an rpg character begin naming?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who begins naming another character?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does character s traits a person is choosing?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who does character s traits is choosing a video game?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who s traits a person is choosing a video game?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is set up at the beginning of a video game?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a user create his characters on?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what cahracters?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"choose\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a player doing?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is an rpg character runs and begins doing?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"name\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is there is no sound while the screen shows a person doing?\",\n    \"video_name\": \"video7203\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who approaches a red vehicle?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"cop\"\n  },\n  {\n    \"question\": \"what then walks past a father and child?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"brittany\"\n  },\n  {\n    \"question\": \"what does a cop approach?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what passes a baby in a stroller?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"brittany\"\n  },\n  {\n    \"question\": \"who is crying?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is showed?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is brittany spears singing into?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what does britney spear singing while a video is playing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is standing outside of a small red car?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does britney spear singing in the city showing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"who does brittany spears pass a baby in?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does brittany spears pass in a stroller?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is looking a car which is red color?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does britney spear singing in showing everyday life?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who spears singing a song while a video is playing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"britney\"\n  },\n  {\n    \"question\": \"who spears singing in the city showing everyday life?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"britney\"\n  },\n  {\n    \"question\": \"what do women pop singer singing while a police officer peeking into a car?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who do women pop singing song while a police officer peeking into a car?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"where does britney spear singing showing everyday life?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is a girl in doing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is beautiful blonde lady singing and doing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women pop singer singing song while a police officer doing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"peek\"\n  },\n  {\n    \"question\": \"what is a woman in a white shirt and short dark skirt walks down a street where a police officer doing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is there is a boy doing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a beautiful girl in black short skirt walks and a man doing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7204\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is a person strumming a guitar is singing text appears?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does the guitarist play?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who beats?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does the guitarist play sings?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what are having conversation in the dark?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are group of people having conversation in?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"what does a man play in a distant and haunting way?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are group of people having in the dark?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is presenting good music?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person presenting?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person strumming a guitar someone is singing?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is a man with black coat singing a song with?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a bald man in black dress singing with?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a person strumming a guitar someone is singing appears?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is a person strumming someone is singing text appears?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is person playing?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is man in black suit singing to?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is strumming a guitar someone is singing text appears?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a bald man in black dress doing?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"strum\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is hands doing?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is music video of a man doing?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who plays the singer sings?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"guitarist\"\n  },\n  {\n    \"question\": \"what is playing while a man with a great voice sings?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who plays the electric guitar in a distant and haunting way?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is one of the artist singing at the same time the other one is playing the musical instruments?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a man in black suit jacket play slowly with band playing in back?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing a son for a music?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who strums an electric guitar and a guy sings?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is singing with his band one playing drums and one playing the guitar?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with black coat singing with guitar?\",\n    \"video_name\": \"video7205\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is heard?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"gunfire\"\n  },\n  {\n    \"question\": \"how many helicopters are flying over a smoke filled cityscape as projectiles are launched from the ground?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a helicopter flying in during war?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"syrium\"\n  },\n  {\n    \"question\": \"who is shown while a reporter narrates?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"firefight\"\n  },\n  {\n    \"question\": \"what is flying very closely to the ground fighting a war?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is a helicopter being shot at by ground forces in?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"syrium\"\n  },\n  {\n    \"question\": \"what does a elecoptors moving in beside and bombing on land exploding displaying on screen?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a russian hind helicopter attacking?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"isi\"\n  },\n  {\n    \"question\": \"what helicopters bombing the terror regions?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"what is flying in syria during war?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is being shown in a place?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is some smoke being shown in?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what army helicopters bombing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"terror\"\n  },\n  {\n    \"question\": \"what is the helicopter flying near?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what army helicopters the terror regions?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"bombing\"\n  },\n  {\n    \"question\": \"what is giving help?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what are projectiles launched from?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is the helicopter giving?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"who mentions syria?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is flying near the ground?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is a helicopter flying in syria during?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what is being shot at by ground forces in syria?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"where is some smoke being shown?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who is in syria recording the battlefield where helicopters are shooting at their enemies?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is a man recording the battlefield where helicopters are shooting at their enemies?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"syrium\"\n  },\n  {\n    \"question\": \"what is a man in recording the battlefield where helicopters are shooting at their enemies?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"syrium\"\n  },\n  {\n    \"question\": \"what is shown flying in what seems to be a war zone in syria?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"where is a helicopter flying during war?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"syrium\"\n  },\n  {\n    \"question\": \"what flies over rooftops while gunfire is heard?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what over describes fighting as helicopters flying low pass over a smoky landscape?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"where is a helicopter being shot at by ground forces?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"syrium\"\n  },\n  {\n    \"question\": \"what does a male voice over describe fighting as helicopters flying over a smoky landscape?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what are flying low over a dusty field?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what flies over rooftops while a narrator mentions syria?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man is in syria doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a war journalist with a camera catches sight of helicopters doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two helicopters doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are a couple helicopters doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a russian hind helicopter doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is the helicopter doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a male voice over describes fighting as helicopters doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is army helicopters doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"bomb\"\n  },\n  {\n    \"question\": \"what is a helicopter is shown doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a exploration about the helicopter doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a elecoptors doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a helicopter doing?\",\n    \"video_name\": \"video7206\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"who is playing with garry s mod?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men demonstrate a video game?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are playing a video game?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what a video game video with two players using?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what do young men discuss and demonstrate?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who talk about their video game?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a man playing with mod?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"garry\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does the player shoot the ball at?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"lightyear\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who throws a ball at his friend?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"how many game players talk about their video game?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what video with two players using hl2 engine?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a first person shooter doing?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game video with two players doing?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gamers doing?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a kid play with the buzz lightyear chracter in a video game?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who shoots the ball at buzz lightyear?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what does the player shoot at buzz lightyear?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what shooter shooting balls at other players?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays basketball with the buzz lightyear chracter in a video game?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what are two people playing?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do two men demonstrate?\",\n    \"video_name\": \"video7207\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is lady in dress doing?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is on a tiled counter in a kitchen a woman doing?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman in a brown sweater doing?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman adds ingredients to a bowl for doing?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman adds half a cup of water to the dish she doing?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a women making using mango and flour?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"receipe\"\n  },\n  {\n    \"question\": \"who is mixing a ingredient in the bowl?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is stirring food inside of a pot?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who adds ingredients to a bowl for cooking?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dress mixing flour and vegetables up in a pot?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who conducts a cooking tutorial adding half a cup of water to a glass dish of ingredients?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who poured curry leaves powder in the bowl?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a woman conduct a cooking tutorial adding half a cup of to a glass dish of ingredients?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is mixing measured ingredients in a clear bowl in preparation for cooking a recipe on a tiled counter in a kitchen?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do lady in dress mixing flour and vegetables up in?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what do lady in dress mixing up in a pot?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"what does a woman conduct adding half a cup of water to a glass dish of ingredients?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is someone stirring food inside of?\",\n    \"video_name\": \"video7208\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what looks?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what features?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a car driving down?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is driving?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving a car down a paved road?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing a car features?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what drives along the road?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who speaks in a foreign language?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person driving on an empty road?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving down a paved road?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car on an empty road?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a car drive along?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving down a road?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a foreign car commercial doing?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a show about cars and doing?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7209\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what do the people smell?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what do people enjoy?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are people smelling?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are several people smelling?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are people telling about?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are some people drinking from?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what are people sitting at a table talking about?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are people sitting at talking about a drink?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"smell\"\n  },\n  {\n    \"question\": \"what is a clip of groups of people doing?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"smell\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is its a person doing?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what is men and women doing?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"smell\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are several people doing?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"smell\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7210\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"how many boxers are fighting in a ring?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking about a boxing match?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a boxing match?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a great boxing match?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a documentary on former boxer chris?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"eubank\"\n  },\n  {\n    \"question\": \"how many separate men are talking about a boxing match?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are two boxers doing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who is recalling past fights?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"fighter\"\n  },\n  {\n    \"question\": \"what is commentators doing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what are boxers doing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a former promoter doing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a fighter doing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"recall\"\n  },\n  {\n    \"question\": \"what are two separate men doing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is boxing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the boxing?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two boxers fighting in?\",\n    \"video_name\": \"video7211\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are a man and a woman walking along the ocean with?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"how many people walk their dog?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are people walking on?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what does a man walk with his wife and dog on?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are people walking on the beach?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is walking near a windy beach?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are people walking a dog on?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are a man and a woman walking along with their dog?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what are a man and a woman walking on a beach?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are a man and a woman walking a dog on?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who walks with his wife and dog on the beach?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two people walk?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what do a tired looking couple walk on a beach?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is with a woman who is walking a dog?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a tired doing?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a female and male doing?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man is with a woman who doing?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7212\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is preparing food using spinach?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is mixing cheese and spinach together?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making lasagna?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is make a lasagna?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman mixing together?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"spinach\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"lasagna\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman make?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"lasagna\"\n  },\n  {\n    \"question\": \"what is a person preparing using spinach?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a women sharing in a kitchen?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is in a kitchen a women doing?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is showing how to cook?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who is mixing cream with green leaves?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman mixing with green leaves?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"who makes a lasagna with spinach?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who is mixing ricotta cheese and spinach together?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women sharing a recipe in?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is introduced?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"racer\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a group of race cars prepare to around the track?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is talking in the background?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining a video game before he plays it?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the formula 1 car i race ready for?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what is a man explaining before he plays it?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many black wheels is a red race car with red trim held together with a curved panel near a wavy checkerboard panel?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what are different cars shown in a computer generated graphic getting ready for?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are lined up in a track filled with cars?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are lined up in two long rows about to start a race?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do a rede sitting on top of a race track in front of a crowd?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do a group of race cars prepare to race around?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is player doing?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is different doing?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is there is a white black and race car on race track as a man doing?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there are different color race cars on a track with a man doing?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a rede race car doing?\",\n    \"video_name\": \"video7214\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is someone giving?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what do two men discuss?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is an object plying?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is a guy interviewing?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who a man interviews?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do men talk about?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is plying the air?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"who is giving an interview?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is giving interview?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing another man about the movie interstellar?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing another man?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing another guy?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is interviewing a man about a movie?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man interviewing a man about?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"how many men discuss a movie scene?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men discussing a matthew mccounhey?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who interviews another man?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is an object doing?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"ply\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two person doing?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7215\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is giving beauty tips?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about skin?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a young pretty woman posing for?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is giving tips on being in the sun?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who provides life tips?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what is a girl giving?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what does a woman provide?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what is a beautiful girl doing?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl with painted nails doing?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a young pretty woman doing?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7216\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who fold up the flap above the stroller window?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a women demonstrating the features of?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman giving for baby trolley?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"who do woman showing how to maneuver and function?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman giving demo for?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"who is adjusting the stroller?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is advertising a stroller?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who show a baby stroller?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do man show?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is being advertised?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is shown?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman advertising?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"who is a woman adjusting?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who is being displayed?\",\n    \"video_name\": \"video7217\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what shows a boat going down the lake?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is drinking a juice?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a cartoon character riding on?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who is sailing on the boat?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is riding on a boat?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is on a boat?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what is a boy sailing on?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"how many cartoons talk together?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do some cartoons sing?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a boy drinking?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what is squidward on?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who sing?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"tiki\"\n  },\n  {\n    \"question\": \"what sing?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"tiki\"\n  },\n  {\n    \"question\": \"what are a group of totems singing in?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a cartoon character in while tikis sing?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a popular children s cartoon doing?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what are a cartoon totems doing?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"who is riding a boat down a river in a cartoon television show?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who s tiki world from the sponge bob movie?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what are talking to a cartoon hero swimming in a boat?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is in a boat while tikis sing?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does squidward s tiki from the sponge bob movie?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what is a character riding down a river in a cartoon television show?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a character riding a boat down in a cartoon television show?\",\n    \"video_name\": \"video7218\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is the player driving his red formula very fast on?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is the racer car moving through?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is driving his red formula very fast on the race?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who plays a race car game?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is moving through the road?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"racer\"\n  },\n  {\n    \"question\": \"who was every one with?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"ferrai\"\n  },\n  {\n    \"question\": \"what is the player driving very fast on the race?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"formula\"\n  },\n  {\n    \"question\": \"who is describing what he is doing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy speak about that he is playing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a first person view of a man doing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who drives a red indianapolis 500 type race car around an asphalt track?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a go car to practice for a race in monteco?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving to practice for a race in monteco?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a red indianapolis 500 type race car take a good turn attains speed and as acceleration gains?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"racing\"\n  },\n  {\n    \"question\": \"what does a red indianapolis 500 type race car take the racing car attains speed and as acceleration gains?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"who speaks about the game that he is playing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what view of a man driving a red formula one car?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a race car driver drive turns around when stuck on a wall?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is the driver of the formula one car chase telling?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"comantery\"\n  },\n  {\n    \"question\": \"who is discussing a race car video game while playing it?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the racer car doing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a video game doing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is the driver of the formula one car chase doing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a guy plays a race car game and speaks about the game that he doing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the player doing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7219\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"when are young girls performing live?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are a group of kids singing on?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who watches as three people perform on a stage together?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"when do a group of three young children sing?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many vocalists perform on stage for judges?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are a group of two young women and one man on a stage singing?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing song on stage?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who goes off to sing?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"boyfriend\"\n  },\n  {\n    \"question\": \"what do three people perform on together?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when a man?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do talent show?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"who is a girl confronting?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"boyfriend\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do threee kids sing together on?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who on stage?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sing together on the voice?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"threee\"\n  },\n  {\n    \"question\": \"what is a girl singing on stage?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what show competition extract?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"talent\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is a girl singing song?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many people perform on a stage together?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when are some teenagers singing?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a judge doing?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"hear\"\n  },\n  {\n    \"question\": \"what are young girls doing?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is young women doing?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7220\",\n    \"answer\": \"confront\"\n  },\n  {\n    \"question\": \"what an object?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man building?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is instructing how to create?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"who is discussing how create a craft with rubber bands?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is teaching viewers how to make a gadget?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing with a toy on the table?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing with a toy on?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a person playing with on the table?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a man puttin together?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"contraption\"\n  },\n  {\n    \"question\": \"who puttin together a contraption?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is building a vehicle?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an design crafted with?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"rubber\"\n  },\n  {\n    \"question\": \"what is crafted with rubber bands?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"what was very unique?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"layout\"\n  },\n  {\n    \"question\": \"what is a clip of video doing?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7221\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is cartoon sequence doing?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is an animated woman doing?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are an animated woman doing?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a cartoon girl doing?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"pop\"\n  },\n  {\n    \"question\": \"what is a woman having with a man who has red and blue creatures looking out of his head?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"how many animated characters are on a date?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is having dinner with a man who has red and blue creatures looking out of his head?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who jumps up from under the table?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who gets up suddenly after being asked if he s okay?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who appears?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who does a cartoon man dance for?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is popping up everywhere?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"when are two animated characters?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"date\"\n  },\n  {\n    \"question\": \"who dances for his girl?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who starts to dance?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are laughing and one more perc?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is at a dinner table?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is looking into a camera?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is scared by a man?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is a lady scared by?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to another character?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a cartoon character talking to?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"when do a man and a woman have while his emotions control him?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"date\"\n  },\n  {\n    \"question\": \"what is a cartoon character looking into?\",\n    \"video_name\": \"video7222\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a red and white clock on?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does the small and large needle moving fast in?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what handles move around really fast?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what is an extremely old film intro doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is fifties music plays in the background as we zoom in on an analog clock doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"tick\"\n  },\n  {\n    \"question\": \"what is a red frame and silver ring surround a round clock with black hands doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is an old clip of a movie displays a clock or timer doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what are moving fast on a red clock?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"when does an extremely old film intro showing passing by?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what are a clock hands doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is music playing while doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what do a red frame and silver ring surround with black hands pointing at equal measurements?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"what is a red color border clock in?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what do a red frame and silver ring surround with black hands moving over a gray band?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"where is a red color border clock?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what did a close up of a red rim with the hands moving?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what says no time waste for any one of the peoples?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what is a close up of a red rimmed clock with the hands doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a red and white clock is on a wall and the hands doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is the small and large needles doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is intro to old movie doing?\",\n    \"video_name\": \"video7223\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do a vip giving to the media?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what show interview with michio kaku?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a man talking on tv about?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"earthquake\"\n  },\n  {\n    \"question\": \"who is interviewed about earthquake vaults on the cbs morning show?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who interviews a man on tv?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about potential earthquakes?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"who a woman interviews on tv?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving an interview?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a discussion occur around on a news channel?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what occurs around a table on a news channel?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what are the panelists doing?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is olg guy doing?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is newsroom doing?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a scientist doing?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a old man doing?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who explains to the reporters around him in a news studio?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the san andreas vault on a talkshow?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a old man talking about the san andreas vault on?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"talkshow\"\n  },\n  {\n    \"question\": \"who is describing the effects of an earthquake?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving an interview on a television show?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the san andreas fault and the potential earthquake associated with it?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"who is talking on tv about an earthquake?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man describing the effects of?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"earthquake\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video7224\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"what does a man critique?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"boob\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is a man critiques images doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"appreciate\"\n  },\n  {\n    \"question\": \"what is a person talks about people doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young male doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man with brown hair doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is three persons doing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman wearing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"who is wearing a google shirt?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what add by young people?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what did a young male talking about people dress up in?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"who critiques images featuring boobs?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown reacting to pictures of people?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about people wearing google shirts?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does shirts s is talking about google logo s on people?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is a young man with brown hair describing in a google shirt?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing pictures of people clad in google logo attire?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about google printed dresses?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who talks about different google clothing?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shwoing off girls?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is appreciating shirts?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does halloween costumes s is criticizing women?\",\n    \"video_name\": \"video7225\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what flies over the landscape?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what flies through the air?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what does the small plane fly through?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is flying through the sky?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what does a plane fly over?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"where does a plane fly?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"what is flying?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is landing?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is gameplay footage of an airplane doing?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"drop\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is an air plane doing?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what play from a flight simulator?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what generated view of a something flying over a landscape?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what flys over a fire in a videogame?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what flies through the sky above the trees?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what does a flight simulator gameplay video with no sound at all a small plane crash into?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"who is flying a plane in a video game?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a video game of a plane doing?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a computer generated view of a something doing?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a plane is about to crash in this doing?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a plane doing?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is someone flying in a video game?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is an air plane flying through?\",\n    \"video_name\": \"video7226\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a youth singing and doing?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is boy doing?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who messing around?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a child playing?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"instrument\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what do a boy play?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kid playing on?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does boy play?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy playing in the room?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy playing the guitar in?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is playing on a guitar?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is playing the guitar in the room?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who singing and playing guitar?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing a music instrument?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who playing guitar?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did the boys play in?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who strums a guitar in a room?\",\n    \"video_name\": \"video7227\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing the electric guitar?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person put a filter over a video of them doing?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a boy play?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a guy play?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an electric guitar?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"video7228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a woman completing?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is completing a movie discussion?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about movies?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about movie reviews?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about movies?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about movie clips?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman ask viewers to subscribe to?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"service\"\n  },\n  {\n    \"question\": \"who hosts a vlog for movies?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is commentating on the black widows clip?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video segment?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about some movies?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7229\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman giving for baby trolley?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"who is talking about a baby stroller?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who girl talking about new product?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is shown demonstrating a baby stroller?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman giving demo for?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"who sits in a stroller?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who shows off a baby stroller?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is using a stroller?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a little girl sit in?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a girl sitting in?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does a woman show off?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman using?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting in a stroller?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a child sit in then a woman talks about the stroller?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl is shown doing?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is mom and baby girl doing?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who sits in a stroller then a woman talks about the stroller?\",\n    \"video_name\": \"video7230\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what do a lady talks on a tv show called?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what is a man showing well under the door jam area of the car?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what do opening of tv show with?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman hosting?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what show with woman speaking?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"opening\"\n  },\n  {\n    \"question\": \"who is hosting a show?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman talking about?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a woman bring a guest onto the show to discuss?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"article\"\n  },\n  {\n    \"question\": \"who is talking about a man?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing the foot well under the door jam area of the car?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman bring a guest onto to discuss a recent article?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is opening of tv show with woman doing?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a clip from a show doing?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"who does a woman bring onto the show to discuss a recent article?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"guest\"\n  },\n  {\n    \"question\": \"who brings a guest onto the show to discuss a recent article?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks on the show on total view?\",\n    \"video_name\": \"video7231\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person playing with friends?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are laughing about their characters?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what roads game on the computer?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what shines a light around the room?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"homer\"\n  },\n  {\n    \"question\": \"what does homer shine a light around?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does homer shine around the room?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a gun?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what are people discussing the charachters in?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is an animated character holding?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a homer simpson character have?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"when does a video show game play?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"who does game play footage of freddy s?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"mod\"\n  },\n  {\n    \"question\": \"what are video game players doing?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is an animated character doing?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a short clip of someone doing?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many people are talking while playing a video game with the simpsons?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing some video game that features homer simpson while talking?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many guys discuss characters in a video game?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing a video game with friends?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what shows game play from half life?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a video show from half life?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7232\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many persons sit in the control room and two other people doing something on a glassy table?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men sit at a console while others gather at a table?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does two men work at then looks at the floor the men play a game?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"how many more men play chess?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are some guys on a space station doing?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man join another pilot behind controls of a futuristic craft with?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are many people working using various pieces of?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what do two persons sit in the control room and two other people doing on a glassy table?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is marvelous with the background of a recording studio?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is sitting on the chair?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who eats?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is person working with?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"partner\"\n  },\n  {\n    \"question\": \"what do two more men play?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"ches\"\n  },\n  {\n    \"question\": \"what do two men seem to be alone in together?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"how many men are working together in a sci fi job?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do others gather at?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is person sitting on?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is working with his partner?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do others eat at?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what do two men wearing headsets sit at while another man eats?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is views of two persons doing?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are two man doing?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two guys in a space ship and cut offs to doing?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"consume\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is in a futuristic setting two men doing?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is boys doing?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what do boys wearing earphones playing music and boys eating meals sitting on displaying on screen?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"how many people are working on what seems like a project?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do boys wearing earphones playing eating meals sitting on glass displaying on screen?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who joins another pilot behind controls of a futuristic craft with virtual screen?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men works at a desk then looks at the floor the men play a game?\",\n    \"video_name\": \"video7233\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a woman flanked by two men with?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what do a girl in black color dress wearing sitting with two persons speaking?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do a girl in black color dress wearing sitting with two persons discusing beside displaying on screen?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do three people sit on strange chairs and talk on?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who does the other man sit quietly is speaking to an attractive lady on television?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two gentleman along with a lady talking about?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many people sit on strange chairs and talk on a show?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what do two men and a woman all dressed in black discuss?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"bankruptcy\"\n  },\n  {\n    \"question\": \"what anchor is interviewing a man?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what are a woman and two man discussing about?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are a woman and two man sitting on?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what casters all sitting around?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what casters all talking to each other?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is woman subject the words boring are scrolling along the screen?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"bankruptcy\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who sits quietly a man is speaking to an attractive lady on television?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a news host in suit and femal host talk with guest doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a woman and two man doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in a business suit discusses bankruptcy with a woman in a black dress and another man in a business suit who doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl in black dress color cloth doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a girl in black color dress doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is three bloomberg news casters all doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are two gentleman along with a lady doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men and a woman all in black doing?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is woman subject airline bankruptcy the words boring are scrolling along?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is airline bankruptcy the words boring are scrolling along the screen?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"subject\"\n  },\n  {\n    \"question\": \"who is interviewing the personality about the bank rupancy and the details about the bank?\",\n    \"video_name\": \"video7234\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what depicts a treehouse in seaweed?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many cartoons are in a treehouse?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who sits in a tree house?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what did nick spongebob cartoon under?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"who are in a tree house?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what did nick spongebob under the sea?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what spongebob cartoon under the sea?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"nick\"\n  },\n  {\n    \"question\": \"what did cartoon of a squid on a bike looking up at?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"treehouse\"\n  },\n  {\n    \"question\": \"what is an anime builted there on th tree?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what did cartoon of a squid on looking up at a treehouse?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is builted there house on th tree?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"who is looking up at spongebob s treehouse?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what squid on a bike looking up at a treehouse?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does spongebob squarepants video clip of in a treehouse teasing squid ward?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who squarepants video clip of spongebob in a treehouse teasing squid ward?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are two cartoons in?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"treehouse\"\n  },\n  {\n    \"question\": \"who is a very interesting character?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"sponngebob\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is cartoon of a squid on a bike doing?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are in a cartoon television show characters doing?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is spongebob square pants in a treehouse doing?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"annoy\"\n  },\n  {\n    \"question\": \"what is spongebob squarepants video clip of spongebob in a treehouse doing?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"tease\"\n  },\n  {\n    \"question\": \"what is squidward doing?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video7235\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"who is riding around in a vehicle?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a boy singing inside of?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"taxi\"\n  },\n  {\n    \"question\": \"who is sitting in a car?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings on the streets?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person riding around in?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is singing across the road?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks down a street?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man singing across?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is shown singing?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown walking?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man walk down?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a boy singing?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing intensely?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who singing very dramatically?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sang with all his heart?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing in a music video?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man sitting in?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is singing inside of a taxi?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7236\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what does a man show off a piece of he unscrews a part?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"hardware\"\n  },\n  {\n    \"question\": \"who explains about the gun and how to use the gun?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a male speaker demonstrate in which he takes a gadget apart?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"method\"\n  },\n  {\n    \"question\": \"what is person putting in his new black machine?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what explain as the process progresses?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"gadget\"\n  },\n  {\n    \"question\": \"who is an water cooling system being demonstrated by?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"gentleman\"\n  },\n  {\n    \"question\": \"who then points to screws?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who is putting something in his new black machine?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is holding a device used in water demonstrating how to use system?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is working on a small electronic device?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"who demonstrates the method in which he takes a gadget apart?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who shows how to use a particular piece of equipment?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who customizing a water cooling system for pc?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to take a part a piece of equipment?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a device used in water cooling system?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is showing the working of some machine and some steel parts?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shows off a piece of shiny hardware he unscrews a part?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"customize\"\n  },\n  {\n    \"question\": \"who demonstrates how to dismantle a device?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what progresses?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"proces\"\n  },\n  {\n    \"question\": \"who describes?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what is being disengaged?\",\n    \"video_name\": \"video7237\",\n    \"answer\": \"gadget\"\n  },\n  {\n    \"question\": \"what is a woman lying on?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a woman lie in?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a woman laying in?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what over describes being afraid?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"terrify\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a video is shown of a girl laying in bed with an object doing?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a scary claw hand slowly reaches down for a woman doing?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is a ghostly hand doing?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"creep\"\n  },\n  {\n    \"question\": \"what is a claw doing?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"reach\"\n  },\n  {\n    \"question\": \"who lies in bed?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"who is laying in bed frightened?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what coming down from ceiling at girl and blood splattering?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is sleeping in a bed in a bedroom?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what pans in on a woman in a bed while a voice over describes being afraid?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what comes from the roof towards the person?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is a claw reaching for in bed?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is reaching for a woman in bed?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"claw\"\n  },\n  {\n    \"question\": \"who is screaming while lying in bed?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is lying on bed?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman sleeping in a bed in?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what is a woman sleeping in in a bedroom?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a claw reaching for a woman in?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what do hand come down from at girl and blood splattering?\",\n    \"video_name\": \"video7238\",\n    \"answer\": \"ceiling\"\n  },\n  {\n    \"question\": \"what is text doing?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is newspaper articles doing?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is a newspaper doing?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is the video shows newspaper doing?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a notes written document doing?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what are artificial satellites doing?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what is a news pare page doing?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what is article about artificial satellites and its conspiracy for doing?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"invade\"\n  },\n  {\n    \"question\": \"what is its a new paper doing?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a message going up and down in?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"newspaper\"\n  },\n  {\n    \"question\": \"what shows newspaper showing science news?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is going up and down in a newspaper?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"message\"\n  },\n  {\n    \"question\": \"what does the earth show the book pages with baground music in?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone showing from an old newspaper article?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is scrolling around an old news paper?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who says artificial satellites are circling earth?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"writer\"\n  },\n  {\n    \"question\": \"who is showing news from an old newspaper article?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does writer on saucers say artificial satellites are circling?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what does a newspaper article about artificial satellites scroll down?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"page\"\n  },\n  {\n    \"question\": \"who is showing article about artificial satellites and its reference to saucers?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did newspaper articles talking about artificial satellites circle?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what clipping giving news about the artificial satellites circling the earth?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"newspaper\"\n  },\n  {\n    \"question\": \"what is shown with music playing in the background?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"newspaper\"\n  },\n  {\n    \"question\": \"what does a note written displaying on screen?\",\n    \"video_name\": \"video7239\",\n    \"answer\": \"document\"\n  },\n  {\n    \"question\": \"who search in the computer?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is using a computer program?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do some computer apps search in?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is online gambling taking?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is taking place?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"gambling\"\n  },\n  {\n    \"question\": \"who is someone showing?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what do two men look at?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone using?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what are two people looking at?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who shows a baseball computer program?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men does one use a computer are talking in a kitchen whie?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what showcasing a man betting on a baseball game?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is showing some computer apps?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many men look at a computer?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are looking at a laptop?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is using a laptop?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who discusses his gambling website on sports?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does one use two men are talking in a kitchen whie?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who discusses the fantasy baseball payout methods?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men look at a laptop computer?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys are talking about betting on a baseball game on the computer?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two males doing?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man discusses his doing?\",\n    \"video_name\": \"video7240\",\n    \"answer\": \"gamble\"\n  },\n  {\n    \"question\": \"what are there doing?\",\n    \"video_name\": \"video7241\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is movies are broken down into distinct categories and matched with illustrative scenes doing?\",\n    \"video_name\": \"video7241\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a screen doing?\",\n    \"video_name\": \"video7241\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is some movie site doing?\",\n    \"video_name\": \"video7241\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is one black t-shirt man doing?\",\n    \"video_name\": \"video7241\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7241\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is graphical interface of doing?\",\n    \"video_name\": \"video7241\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is an ad for movieclips doing?\",\n    \"video_name\": \"video7241\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is showing various thumbnail movie clips?\",\n    \"video_name\": \"video7241\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what play on an online movie site?\",\n    \"video_name\": \"video7241\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is presenting some videos on movie clips channel?\",\n    \"video_name\": \"video7241\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are advertisement for fiskal clif an xbox game they doing?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is fiskal clif game doing?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"alert\"\n  },\n  {\n    \"question\": \"what is an animation shows an american flag doing?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what clif an xbox game there are playing it on indy games section of xbox?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who plays fiskal clif with an illustration of an american flag?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a letter displayed on?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do man and woman who are not visible play?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is alerting players it is full?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is talking about fiskal clif?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is displayed on the screen?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"letter\"\n  },\n  {\n    \"question\": \"what does a woman start doing about a video game?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"explanation\"\n  },\n  {\n    \"question\": \"who is a woman talking about?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"fiskal\"\n  },\n  {\n    \"question\": \"what called outside xbox where a man and a women are about to play a game called fiskal clif?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do advertisement for fiskal clif there are playing it on indy games section of xbox?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what shows an american flag falling off of a fiscal cliff?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who does a woman play with an illustration of an american flag?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"fiskal\"\n  },\n  {\n    \"question\": \"who starts doing an explanation about a video game?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a game for computer?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a yellow background with the words fiskal clif displayed in?\",\n    \"video_name\": \"video7242\",\n    \"answer\": \"magentum\"\n  },\n  {\n    \"question\": \"what is a minecraft video about doing?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two green humanoid creatures doing?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who are riding a pig?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who ride on animals?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are blocky zombies riding?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"block\"\n  },\n  {\n    \"question\": \"who are riding on horses?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who ride pigs in a race?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"how many men are riding on an animal?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does two green humanoid creatures racing on pigs when one of some animated things throws a piece of meat to distract the other s?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"pig\"\n  },\n  {\n    \"question\": \"what show by funny charecters?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are minecraft characters riding?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"pig\"\n  },\n  {\n    \"question\": \"what play scene?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are two men riding on?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what do a 3d game play?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7243\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is hillary clinton doing?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is hillary clinton doing?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is extract of a speech by h clinton doing?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"concern\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is hillary clinton on bloomberg news doing?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what clinton giving a speech?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"hilary\"\n  },\n  {\n    \"question\": \"what clinton on bloomberg news discussing race relations after the removal of the confederate flag?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"hillary\"\n  },\n  {\n    \"question\": \"who talks about the battle with racism?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"hillary\"\n  },\n  {\n    \"question\": \"what clinton standing in front of a flag giving a speech?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"hillary\"\n  },\n  {\n    \"question\": \"who gives a speech on race?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what does hillary clinton give a speech on?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do hillary clinton discussing?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"confederate\"\n  },\n  {\n    \"question\": \"what clinton discussing the confederate flag?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"hillary\"\n  },\n  {\n    \"question\": \"what is a female politician giving?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is hillary clinton giving?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is hilary clinton giving?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who is giving a speech?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"politician\"\n  },\n  {\n    \"question\": \"what do hilary clinton giving?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what do hillary clinton standing in front of a flag giving?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what clinton talking about race issues and south carolina removing the confederate flag?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"hillary\"\n  },\n  {\n    \"question\": \"what do hillary clinton talking about race issues and south carolina removing?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"confederate\"\n  },\n  {\n    \"question\": \"who is talking in front of an american flag?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about something in a stage?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does hillary clinton give on race?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what does hillary clinton talks about america s?\",\n    \"video_name\": \"video7244\",\n    \"answer\": \"struggle\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a close up of a white car then doing?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who displays his car?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is sitting in front of a large building?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is parked?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man display?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does person show off?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what a person films?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person driving?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who shows off a white car?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who films an old car?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a white sports car outside?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who is driving car?\",\n    \"video_name\": \"video7245\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is singing on a stage?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing on the voice?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is a woman singing?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a girl singing on?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is cheering?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what does the audience give?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"standing\"\n  },\n  {\n    \"question\": \"who sings on the voice kids?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing while the judges are listening?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"when does female vocalist perform?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sings a song on stage and the crowd cheers?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings on a stage while judges listen and the audience claps?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings on a lighted stage in front of judges and a crowd?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing in front of a panel of judges?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman sing on while judges listen and the audience claps?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing while the crowd is cheering?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what gives a standing ovation?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who performs on stage?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"vocalist\"\n  },\n  {\n    \"question\": \"what do a young girl singing on a foreign version of the show?\",\n    \"video_name\": \"video7246\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what are playing a rugby game in the ground?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what are two teams of rugby players playing?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what did people gather in the stadium to watch?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"where do the through ball players play?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what do men play an intense game of against one another?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"what are men playing a professional game of together?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"what are a two team playing a rugby game in?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are several men passing to one another?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what did people gather in to watch some sports competition?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what do an amazing display of superb ball handling passing and final run to the post by players in a football match on?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are a two team playing in the ground?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do rugby players begin to form when the ball is passed to an opponent who runs the ball in?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"scrum\"\n  },\n  {\n    \"question\": \"what are two teams of rugby players doing?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a two team doing?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a huddle for the ball a quick dodge and a missed pass doing?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"result\"\n  },\n  {\n    \"question\": \"what is an amazing display of superb ball doing?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a yellow and blue color dress players doing?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who begin to form a scrum when the ball is passed to an opponent who runs the ball in?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"what do a yellow and blue color dress players playing game inside stadium catching dashing audience watching displaying on screen?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do a yellow and blue color dress players playing game inside stadium catching ball dashing watching displaying on screen?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"how many rugby teams scrum then the team in blue steals the ball?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two rugby teams scrum then the team in blue steals?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do the through ball players play in?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what did a soccer game with teams in yellow and teams in white as a man desperately try to make?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what are several men running?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are the players fighting for?\",\n    \"video_name\": \"video7247\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is driving?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is rock group doing?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man singing into?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is musicians doing?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is an active video where there is a lot of doing?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is some people doing?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who does a man in a cowboy hat hold?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"lasso\"\n  },\n  {\n    \"question\": \"what sings in the middle of a party?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who sings into the microphone as his band plays behind him?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a band preform outside?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing into a microphone?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what preforms a song outside?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a man sing into as his band plays behind him?\",\n    \"video_name\": \"video7248\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"mansion\"\n  },\n  {\n    \"question\": \"who is on the phone?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man walk into?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is attending the phone?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person on?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a man answer?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a man attending?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a man in a suit answer?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what do opening scene from the show?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"benson\"\n  },\n  {\n    \"question\": \"what do the opening credit to the show?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"benson\"\n  },\n  {\n    \"question\": \"what does an african american man pick up?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what zooms in on a white house?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"who walks into a kitchen?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do opening credits to a tv show a man answers?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a man in a suit pick up that is ringing?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who do opening credits to a tv show answers the phone?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"attend\"\n  },\n  {\n    \"question\": \"what is an intro a tv show doing?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man in a suit picks up a wired phone that doing?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7249\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman riding?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are two women sitting next to talking?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who are doing funny things?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two young women talking in?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what are together talking about in bedroom?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two young women riding?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are together talking about something in?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what do indian women talk about?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"operation\"\n  },\n  {\n    \"question\": \"what is kicking a lady?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is a horse kicking?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what do two girls speak to each other on?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"how many women are sitting next to a bed talking?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does a woman talk about?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"vlog\"\n  },\n  {\n    \"question\": \"how many girls speak to each other on a bed?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young women are riding a horse outdoors?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are hugging then high fiving each other?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks with a friend before riding a horse?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman talk with before riding a horse?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"how many young women are talking in a bedroom?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two woman doing?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two young women doing?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what are two women s doing?\",\n    \"video_name\": \"video7250\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who gives a lecture?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person give?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"what does a person show?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"diagram\"\n  },\n  {\n    \"question\": \"what is a man in striped shirt speaking?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is an indian guy doing?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man on stage doing?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in white blouse doing?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy in white and ash color dress doing?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman with a mic doing?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a big stage decorated in pink and a man in striped shirt doing?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who shows a complicated diagram?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about his latest project with images?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy in white and ash color dress wearing standing?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is a woman with a mic talking to?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"when does sketh for science a man show?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who discusses a diagram of human biology?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses a diagram of drug responses in human immune systems on stage?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does a man discuss a diagram of drug responses in human immune systems?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who gives a presentation with a complicated diagram?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains the way the immune system?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"lecturer\"\n  },\n  {\n    \"question\": \"what does a young man giving a lecture use?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"diagram\"\n  },\n  {\n    \"question\": \"what do a boy in white and ash color dress wearing speaking on science topic audience watching displaying on screen?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what does a man discuss a diagram of?\",\n    \"video_name\": \"video7251\",\n    \"answer\": \"biology\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is i see man doing?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is bbc news reporter in formal wear doing?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what is man in blue suit presenting?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is man in blue shirt presenting?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does a person speak on while the other explains about the meeting to audience?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"meeting\"\n  },\n  {\n    \"question\": \"what is the man anchor in blue coat doing?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man anchor in blue coat talking in?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what do bbc news reporter in formal wear delivering?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who speaks on a meeting while the other explains about the meeting to audience?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who speaks about separation of church and state in france after the charlie hebdo terrorist attack?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"newsman\"\n  },\n  {\n    \"question\": \"who shows a video of john kerry and comments on international religious reaction to the murder of charlie hebdo?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what anchor wears a red tie while a person reports the news?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is man in blue shirt doing?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is man in blue suit doing?\",\n    \"video_name\": \"video7252\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"who tshirt talking to the camera?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what do two guys walking into another room a man in tshirt taking out something from?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what do two guys walking into another room a man in tshirt taking out from a cover?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man in a white shirt appear talking to?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do a couple of men walk through?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man in white standing in talking in white?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do two men walk through another speaks to?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who do two men walk through s office?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who are group of people visiting in hospital?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who is sitting on the chair?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking in hospital room?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are group of people visiting their friend in?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"what is person sitting on?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is person talking in?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"what does a guy wearing all white open with papers in it?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"what are visiting their friend in hospital?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do two men walk through a doctor s?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"visit\"\n  },\n  {\n    \"question\": \"what is a man with an arm missing is wheeled out of a room and a man doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a white uniform in a doctor s office doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a couple of men walk through a room and then a man in a white shirt appears doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in white doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is inside a hospital a man doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is there is a red tshirt man doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a black jacket man doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what did guy in white tshirt talking to?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is young man in a wheelchair at a medical facility visitors and then a staff member doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"how many people are walking in to a doctors office in order to be treated?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man in a white uniform in a doctor s describing a patient s goals for recovery?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what is guy in white tshirt doing?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men walk through a doctor s office?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does a man in a white uniform in a doctor s office describing s goals for recovery?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"patient\"\n  },\n  {\n    \"question\": \"what does a man in a white uniform in a doctor s office describing a patient s?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"recovery\"\n  },\n  {\n    \"question\": \"how many men walk through another speaks to the camera?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are entering into the hospital room?\",\n    \"video_name\": \"video7253\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is some food item kept on a gravy is put on to noodles and shripm in a white bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what does a person ladle out into a white bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a curry noodle soup being demonstrated for?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"recipiesaresimple\"\n  },\n  {\n    \"question\": \"what is some food item kept on the plate is put on to noodles and shripm in a white bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"gravy\"\n  },\n  {\n    \"question\": \"what is being filmed in a bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is soup soup being filmed in?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a woman filling with a delicious curry noodle soup?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who dishes up a curry noodle soup into a white bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a curried noodle dish that is shown to be appealing?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who ladles curry noodle soup onto pieces of bread in a floral bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is scooping curry soup into bowl filled with seafood and noodles?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is filling a bowl with a delicious curry noodle soup?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who ladles out delicious food into a white bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a woman dishes up a curry into a white bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is spooned from a pan into a white bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is spooned from a dressed with greens?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman ladle curry onto pieces of bread in a floral bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what do a curry with a woman placing garnishment for the soup in the white bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is kept on the plate a gravy is put on to noodles and shripm in a white bowl?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who calmly talking about a curry soup?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady talks about a curried noodle dish that is shown to be doing?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"appeal\"\n  },\n  {\n    \"question\": \"what is a woman calmly doing?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a curry noodle soup with a woman doing?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"scoop\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a woman s voiceover doing?\",\n    \"video_name\": \"video7254\",\n    \"answer\": \"conclude\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays a side scroller racing game?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a military vehicle driving fast across?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what is driving fast across the desert?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is driving?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a military vehicle doing?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a military vehicle drive through in a video game?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what is a silent video of a video game with a truck doing?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"smash\"\n  },\n  {\n    \"question\": \"what is a video game tank doing?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"demolish\"\n  },\n  {\n    \"question\": \"what is a war vehicle doing?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is crashing into anything that is in its way?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives through a world in a video game?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is gamer doing?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a animated car doing?\",\n    \"video_name\": \"video7255\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what was a man wearing is lying with the baby inside the bathroom?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"coat\"\n  },\n  {\n    \"question\": \"who explains about a scene in the movie the pursuit of happiness?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are watching how man in black suit is running?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who was wearing black coat is lying with the baby inside the bathroom?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing a test to a group of workers?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a suit run through?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who makes his way up the food chain in investment firm?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"homeles\"\n  },\n  {\n    \"question\": \"who is thinking about his life while hiding out in bathroom with his son?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a black man in a suit try to make it in?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what is man in black suit walking fast on?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a man explain about a scene in the movie the pursuit of?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"happiness\"\n  },\n  {\n    \"question\": \"what is a man describing to a group of workers?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what does a man in a suit sit in?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"what do a person in black color dress carrying luggage and child sleeping on displaying on screen?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what speaks with a gray haired man?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do a person in black color dress wearing running beside person walking?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who is a man in a suit sitting down with?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what do a person in black color dress carrying sleeping on bed displaying on screen?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"luggage\"\n  },\n  {\n    \"question\": \"what is a man thinking about while hiding out in bathroom with his son?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what is a man in a suit doing?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what was a man doing?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person in black color dress doing?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is man in black suit doing?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"think\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a black suit man doing?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is will smith doing?\",\n    \"video_name\": \"video7256\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who fixes a machine?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who is repairing a mechanical part?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a blank one?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about automotive?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man repairing?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"part\"\n  },\n  {\n    \"question\": \"what a man fixes?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is using tools?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is repairing something?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to open a box with tools?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man use to work on the underside of a machine?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"tool\"\n  },\n  {\n    \"question\": \"who uses a tool to adjust something?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man use to adjust something?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"tool\"\n  },\n  {\n    \"question\": \"what does a man use a tool to adjust?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who uses a tool to work on the underside of a machine?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the video?\",\n    \"video_name\": \"video7257\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"how many guys are in a gym wrestling during a match?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many men is tight little outfits roll around on the mat?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two men tight little outfits roll around on?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what are two guys in a gym wrestling during?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"how many guys wrestling match?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many opponents are wrestling?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are wrestling on the mat?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what match at a competition?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what do an amatuer wrestling?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what do a wrestling match at?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what are two men wrestling on?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"who match?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what does various high school wrestlers in match set to?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a kids doing?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is several videos of wrestlers doing?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two males opponents doing?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a video compilation of men doing?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two wrestlers circle each other and then start doing?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is various doing?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are wrestlers doing?\",\n    \"video_name\": \"video7258\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what are a variety of sports clips doing?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video clip of a baseball player doing?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a video compilation of baseball and guys doing?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what are people playing baseball and a second of people in?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"when video by sports vine world on youtube?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"july\"\n  },\n  {\n    \"question\": \"what do several children play basketball in?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what do several children play in a pool?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are a variety of sports clips playing on?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a sports montage with loud music?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are men jumping into while playing basketball?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what best of july video by sports vine world on?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"who slides into a base then some people jump into a swimming pool?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what does a baseball player slide into then some people jump into a swimming pool?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"base\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did a video clip of a baseball player sliding into home and kids playing by a pool set to?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who runs around?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what are people jumping in?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what a baseball player scores?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what does a baseball player slide into?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who scores a run?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what do a sports montage video with?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who slides into home?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who slides into home base?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"video7259\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is a child kneeling down on?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a child crawling on whispering?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is the little boy on talking to the camera?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a little boy crouched by talking?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is kneeling down on the floor?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is crouched by the floor talking?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is on the ground talking to the camera?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking while he is kneeling on the ground?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who lays on the ground to talk to the camera?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is kneeling of the floor next to a wall?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who talkign on the floor near the baseboard of a wall?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is crawling on the floor whispering?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who explains something while crouched along the baseboard?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is kneeling on the ground?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is excited here lying down?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a boy kneeling on?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who read the books?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is there is a young boy doing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is the little boy is on the ground doing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is kid is excited here doing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"kneel\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy laying by a wall doing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a little boy is crouched by the floor doing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7260\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a boy in black clothing and yellow sneakers playing in a field?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do men shoot at a goal from distance?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a man in black fail to kick into a goal?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do boys in black track suits play?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a guy dressed in black practising?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what do boys in black track suits try to make?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"who plays soccer on a field?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are men kicking into a soccer net?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do a person with black dress playing football in?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are some football players kicking to the goal post?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is kicking a soccer ball he made a goal?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a football field with young men doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is three persons on a football field try their skills at doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who attempts to make several goals?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play soccer on?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a man practicing in the ground?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what does man miss his first goal and scores second while other goals in?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"what does a man play on a field?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a man practicing a foot ball in?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a thin man in black kick?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who misses his first goal and scores second while other goals in first shot?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a person with black dress playing in the ground?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a boy in black clothing and yellow sneakers playing soccer in?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who does a thin man in black try to kick balls into a soccer net comes on?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is practicing a foot ball in the ground?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person in black shirt doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what does a man in black fail to kick a soccer ball into?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what is a person with black dress doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what are some football players doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a boy in black clothing and yellow sneakers doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy dressed in black doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"practise\"\n  },\n  {\n    \"question\": \"where is a boy in black clothing and yellow sneakers playing soccer?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is teased by teammates for missing the easy goal kick?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a soccer player is teased by teammates for doing?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"mis\"\n  },\n  {\n    \"question\": \"where does a man play soccer?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who are kicking a football to the goal post?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is trying to shoot soccer balls in a goal?\",\n    \"video_name\": \"video7261\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who pulls out a jewelers loupe?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the woman take magnifying glass to observe?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"diamond\"\n  },\n  {\n    \"question\": \"what does the woman take magnifying to observe the diamond?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who is looking through a purse and then a diamond?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman examine?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"diamond\"\n  },\n  {\n    \"question\": \"who is excited to find what seems to be a large diamond or gem?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the woman open?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"who inspects a very large diamond?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who frantically searches for something on the table?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a movie scene girl seeing diamond from eye testing laughing displaying on screen?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks at jewels with a scope?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in an orange shirt doing?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"root\"\n  },\n  {\n    \"question\": \"what is a movie scene a blue person doing?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man on stage then a woman doing?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman in a peach shirt doing?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who examines a giant diamond?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady is astonished at a diamond she has found so she retrieves her doing?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"magnify\"\n  },\n  {\n    \"question\": \"what is the woman opens her bag and takes doing?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"magnify\"\n  },\n  {\n    \"question\": \"what scene a blue person standing laughing and girl searching for diamond under glass displaying on screen?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what do a lady scrambling to look through a magnifying glass to view?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"jewel\"\n  },\n  {\n    \"question\": \"who takes magnifying glass to observe the diamond?\",\n    \"video_name\": \"video7262\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the hero meet with the dog in the middle of glasses?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"heroin\"\n  },\n  {\n    \"question\": \"what does a dog draw a man s attention to a woman with a broke down?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who does a boy with glasses like while his dog stands by a boy with glasses looks at?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a dog draw s attention to a woman with a broke down car?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man in collared shirt look intently over to peering under hood of car on quite street?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a winded young man spot?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a winded young man look at?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"longingly\"\n  },\n  {\n    \"question\": \"what does a man in collared shirt look intently over to woman peering under hood of car on?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who does a man in glasses see standing by a car?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what draws a man s attention to a woman with a broke down car?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is watching a man admire a woman whose car has broken down?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what looks at each other while their dog sits on the ground?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is under the hood of a vehicle and a white dog?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who meets the heroin with the dog in the middle of glasses?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"hero\"\n  },\n  {\n    \"question\": \"how many people can a commercial about how two different life events bring together to start a new chapter?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are the man and woman standing near to the car watching each other on?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does the woman in the dress stand near as the hood of the the car is up?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what can a commercial about how two different life events bring two people together to start?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"chapter\"\n  },\n  {\n    \"question\": \"what is a man with glasses and a light colored shirt doing?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a panting dog is between a thick-haired teenage boy who looks through his eyeglasses at a teenage girl with brown hair doing?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a guy and women doing?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man in collared shirt looks intently over to woman doing?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"peer\"\n  },\n  {\n    \"question\": \"what is a white color dog doing?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a white colour cute dog doing?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the man and woman doing?\",\n    \"video_name\": \"video7263\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do a group of men discuss paperwork on?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what is a tshirt man singing with feelings?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are a group of people sitting around a round table a man is singing a person is floating in?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is singing a song with feelings?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"tshirt\"\n  },\n  {\n    \"question\": \"what are group of people having conversation in?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what are group of people having in the office?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are having conversation in the office?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who seem lost in pop music video?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what do a group of men discuss on space craft?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"paperwork\"\n  },\n  {\n    \"question\": \"who are a group of people sitting around a round table is singing a person is floating in the air?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a guys singing a song by flying in a environment like?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who are a group of people sitting around a round table a man is singing is floating in the air?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is singing a song for a music?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings in a space station to scenes of other crew members?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings alone lying on the floor?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in black dress doing?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is guy singing song doing?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a montage music video where protaganist doing?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is there is a tshirt man doing?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men found sitting at?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is bunch of people in space outfit doing?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does the singer sing alone lying on?\",\n    \"video_name\": \"video7264\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does a girl with long hair and white dress show?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what does a girl with pretty long hair show off?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is showing long black hair off to the camera?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman playing with?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is blowing kisses?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stands up?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a lady in a shiny dress and long black hair fixing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a woman showing long black hair off to?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do sexy brunette in white dress showing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a woman showing off to the camera?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what do a woman with a nice rear end showing off in a tight white outfit?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"booty\"\n  },\n  {\n    \"question\": \"what do sexy brunette in white dress looking at?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is sexy brunette in white dress doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman with a nice rear end doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady with long dark hair doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl stands up and doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is cute girl with long black hair doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman in a fancy white dress doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady in a shiny dress and long black hair doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is there is a woman in white doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"comb\"\n  },\n  {\n    \"question\": \"what is a woman shows off her extravagant white dress as if doing?\",\n    \"video_name\": \"video7265\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is upside down?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is liquid flowing through?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"what is liquid doing?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a demonstration doing?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a science experiment shown in this video i think for doing?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"educate\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"who is someone funneling red juice from into an empty bottle through a small tube?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"what is someone funneling from a pitcher into an empty bottle through a small tube?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"who shows how to siphon liquid from one container to another?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what poured into a bottle using a straw?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is transferred from a bucket to a bottle with a siphon?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is demonstrating an experiment with a bottle?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is funneling red juice from a pitcher into an empty bottle through a small tube?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is shown on how to siphon gas?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"who pours some liquid into a bottle?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person pour some liquid into?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what do a science experiment base on?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"gravity\"\n  },\n  {\n    \"question\": \"what based on gravity?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who explains of an experiment?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is colored water transferred from to a bottle with a siphon?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"bucket\"\n  },\n  {\n    \"question\": \"what is a man filling liquid in?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is flowing through a hose?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"who is filling liquid in a bottle?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man demonstrating an experiment with?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what does a person pour into a bottle?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is a man demonstrating with a bottle?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what does a person explain of?\",\n    \"video_name\": \"video7266\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who did ingredients that s on the counter pour in an ice tray shows ingredients that s on the counter?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to pour sweet potato puree into ice cube trays?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shows how to easily store pureed sweet potato in an ice tray or baby storage contianers for freezing?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what pureed sweet potatoes in plastic containers and ice cube trays?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"freezing\"\n  },\n  {\n    \"question\": \"who puts pureed sweet potatoes into a container?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing a method for freezing sweet potato puree?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is filed with pureed sweet potatoes for freezing?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what did someone freezing puree in plastic containers and ice cube trays?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"sweet\"\n  },\n  {\n    \"question\": \"what did a demonstration of pureed sweet potatos put into ice trays for?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"storage\"\n  },\n  {\n    \"question\": \"what did a demonstration of pureed sweet potatos put into for storage?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what did a man showing a ice tray with sweet potato pour in?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what poured into cups and an ice cube tray?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"pureed\"\n  },\n  {\n    \"question\": \"what does a woman put pureed sweet potatoes into?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what did some one in a kitchen pouring potato puree to?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who is a women pouring in a ice tray or in a storage containers?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"potaato\"\n  },\n  {\n    \"question\": \"what is kept on the ice tray and some small containers?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is kept in jars and ice cream trays?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is put in a tray along with a row of cups?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what does a woman put into a container?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"pureed\"\n  },\n  {\n    \"question\": \"what is orange mix put in along with a row of cups?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person shows how to easily store pureed sweet potato in an ice tray or baby storage contianers for doing?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"freeze\"\n  },\n  {\n    \"question\": \"what is an ice tray is filed with pureed sweet potatoes for doing?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"freeze\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"freeze\"\n  },\n  {\n    \"question\": \"what is some one in a kitchen doing?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7267\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girls hugging on grass a small boy is standing on grass?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a girls hugging a dog on grass a small boy is standing on?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a girls hugging a dog on a small boy is standing on grass?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who does a girl in black kneel hugging dog on ground in yard with?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"brother\"\n  },\n  {\n    \"question\": \"what does a girl in black kneel hugging on ground in yard with brother?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a girl in black kneel hugging dog on in yard with brother?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is a girls hugging a dog on grass is standing on grass?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a home video of young girl doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a little child doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a family films their children doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"coddle\"\n  },\n  {\n    \"question\": \"what is a dog is with a ldy and a boy doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a kinds doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a girl and boy hugging and doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is the mom doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a young child doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a young girl in a black shirt doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a girls doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a little doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a girl in black kneels doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"who cries over farm animal thats a baby?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is petting a dog outside in the grass?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is hugging?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a dog s?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what s a baby?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a boy looking?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does the girl pat lovefully?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are kids playing with?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is looking a dog?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is a dog with?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"ldy\"\n  },\n  {\n    \"question\": \"who is being encouraged to pit a dog?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a little girl petting?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is the pet dog loved by?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what does a girl in black kneel hugging dog on ground in with brother?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"what is loved by the family?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a little child playing with?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a young girl in a black shirt playing with?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a young girl petting outside in the grass?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a small girl talking with?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is petting a young dog?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking with a dog?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are kids showing at a little child?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what is with a ldy?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who pats a dog lovefully?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with a dog?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7268\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does an animated man in a dress shirt and tie sing stay stay calm?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"calm\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who holds his hands to his face?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what put to music?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon boy hold his hands to?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what did various cartoon animations put to?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who sings to music?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does an animated boy sing to?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what subtitled in spanish?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is a cartoon figure doing?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is this is a cartoon doing?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who seems to be singing in an animated music video?\",\n    \"video_name\": \"video7269\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is behind several animated characters?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"fortres\"\n  },\n  {\n    \"question\": \"what does viewer observe screen shots of?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who carries a giant gun?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person presenting that he watched?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what does a man carry?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who describes?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is presenting the film that he watched?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when can promotion of an game the thief which be downloaded at free of charges 30th?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"till\"\n  },\n  {\n    \"question\": \"who did a man talks about a video games call while showing images of the video game?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"thief\"\n  },\n  {\n    \"question\": \"who is a series of stealth video games in which the player takes the role of a master thief?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"thief\"\n  },\n  {\n    \"question\": \"who describes how to download a video game for free through june 30 while viewer observes screen shots of video games?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who did a man in full cover with some hard dress to protect?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gives the specification of a game he has been reviewing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who observes screen shots of video games?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"viewer\"\n  },\n  {\n    \"question\": \"who talks about downloading the game thief?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man give the specification of he has been reviewing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who describes a game download and the amount the download costs?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes an app download and the price of the download?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is player doing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man with an accent doing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a gun doing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man talks about a video games called thief while doing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man describes and gives the specification of a game he has been doing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the cartoon character doing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a guy talks about doing?\",\n    \"video_name\": \"video7270\",\n    \"answer\": \"download\"\n  },\n  {\n    \"question\": \"who is feedback given to?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"what is given to a performer?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"feedback\"\n  },\n  {\n    \"question\": \"who do the judges interact with?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"contestent\"\n  },\n  {\n    \"question\": \"who is a judge on the voice speaking to?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"competitor\"\n  },\n  {\n    \"question\": \"who is talking to the judges on the voice?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is talking to a girl in a stage?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people talking to a young boy at?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who is singing on a tv show?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who speaks to a contestant on the voice?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a judge and a woman doing?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a judge on the voice doing?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a little kid doing?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young boy on a stage doing?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is judges doing?\",\n    \"video_name\": \"video7271\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do hiliary clinton saying?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what clinton speaking on politics?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"hilary\"\n  },\n  {\n    \"question\": \"what does hillary clinton speak to?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what clinton saying a speech?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"hiliary\"\n  },\n  {\n    \"question\": \"what is a woman speaking in?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what do hillary clinton giving?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a woman speaking at?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"conference\"\n  },\n  {\n    \"question\": \"what is hillary clinton giving?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who is giving a speech?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who is speaking in the stadium?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking at a conference?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to a crowd?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who is speaking at a podium?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who is speaking at a lectern?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what does hillary clinton present on?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"cspan\"\n  },\n  {\n    \"question\": \"what do a clip of hilary clinton giving?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what do a clip of hillary clinton talking at?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is hilary clinton giving?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a woman talking into?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who presents on cspan?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what is hilary clinton speaking at?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"who is talking into a microphone?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a clip of hillary clinton doing?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7272\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who does a advertiesment vedio shoot?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl in black take out?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"hatdoll\"\n  },\n  {\n    \"question\": \"who is singing in a music video?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"lavigne\"\n  },\n  {\n    \"question\": \"what is avril lavigne wearing?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who vedio shoot the girl?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"advertiesment\"\n  },\n  {\n    \"question\": \"what does a young blonde woman sing while opening a pink box?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is opening a pink treasure chest?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"lavigne\"\n  },\n  {\n    \"question\": \"who take boxing glouse?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what vedio clip?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"advertiesment\"\n  },\n  {\n    \"question\": \"what do a girl sing?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do one fashion girl open?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who open box?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is a girls opening?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what do one fashion girl take boxing?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"glouse\"\n  },\n  {\n    \"question\": \"who sing a song?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do one fashion girl take putting in his head?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"crown\"\n  },\n  {\n    \"question\": \"what does a girl in black open?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"who is wearing a black dress?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"lavigne\"\n  },\n  {\n    \"question\": \"what does a girls throw all from?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who take putting crown in his head?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what do one fashion girl take putting crown in?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what does a young blonde woman sing while pulling things out of box?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman with pink and blonde hair doing?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is singer avril lavigne doing?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is avril lavigne in black dress doing?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is avril lavigne doing?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is one fashion girl open box and take boxing glouse and doing?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a beautiful women which black dress doing?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman singing and doing?\",\n    \"video_name\": \"video7273\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what shows some information?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"what threatened to bring in peformance?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"government\"\n  },\n  {\n    \"question\": \"what did the government threaten to bring in?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"peformance\"\n  },\n  {\n    \"question\": \"what is talking about teachers and rallies?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a video segment show?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what is the notifications written on paper?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what are facts about?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"government\"\n  },\n  {\n    \"question\": \"what is video about teachers doing?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is an animation shows a small history of a government proposal doing?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"concern\"\n  },\n  {\n    \"question\": \"what is been showed?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what shows a small history of a government proposal concerning teachers salaries?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7274\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a big building with more steps people sitting on it and some take?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what does an image of a man in a suit approach?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are people walking around picture of a man in suit is displayed on in a busy street?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who talks about gambling in china and also a man named stanley ho who brought in a new wave of casinos?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what does an innovator for china s?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"economy\"\n  },\n  {\n    \"question\": \"what is in this session the women says about the china which is the doing?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"what is a female narrator talks about doing?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"gamble\"\n  },\n  {\n    \"question\": \"what is outside scenes of macau and the image of a man doing?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a big building with more steps people doing?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is there is a black suit man doing?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are in a busy street people doing?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about a chinese business man who ushered in casinos?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does an innovator for china s is described?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"economy\"\n  },\n  {\n    \"question\": \"what is a woman talks about how gambling is legal?\",\n    \"video_name\": \"video7275\",\n    \"answer\": \"china\"\n  },\n  {\n    \"question\": \"what is a woman shows a beach towel that belongs to her sister while doing?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking about a towel?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who reviews a beach towel?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who holds up a beach towel?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks to someone off camera?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding a towel?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman talk to someone off?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"towel\"\n  },\n  {\n    \"question\": \"who did the blanket belong to?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"sister\"\n  },\n  {\n    \"question\": \"what does a person hold up?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what does a girl review?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a woman holding?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"towel\"\n  },\n  {\n    \"question\": \"what does woman show off?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"towel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7276\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does an illustration of one celled organisms swim by?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"buffalo\"\n  },\n  {\n    \"question\": \"what is looking through the lens?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what does a single cell orgainism survive in?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"universe\"\n  },\n  {\n    \"question\": \"what does an animation of living creatures teach?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what are looking at the trees?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is trying to catch the one cell insects to eat?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what does some cartoon fish tree and animal and a fish come near?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"lense\"\n  },\n  {\n    \"question\": \"what is traveling around with animals and plants?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"cell\"\n  },\n  {\n    \"question\": \"what is the screen showing in a silly way?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is showing many cartoon animals in a silly way?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is talking about a certain kind of cell?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about the prevalance of microorganisms in the environment?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a group of single cell animals that live everywhere?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what is there is a big fish doing?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a one eyed creature appers to be doing?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is the screen doing?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the fish doing?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are a cartoon eyes doing?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a cell doing?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is odd doing?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what does an animation of an oval shaped figure with a single eye and two tentacles swim across?\",\n    \"video_name\": \"video7277\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who shows how the outside world feels to it while inside the mother?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does an animated fetus feels loved eat listens to reading and music?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is tasting ice cream?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what enjoys music?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"fetu\"\n  },\n  {\n    \"question\": \"what does an animated fetus enjoy?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does an animated fetus look around eats?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what looks around eats food?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"fetu\"\n  },\n  {\n    \"question\": \"what is a woman?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"who smiles on a belly with headphones on the side?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is there is a pregnant lady doing?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what is the lady doing?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is imaginary animated baby pretends to mimic what the unborn baby doing?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"think\"\n  },\n  {\n    \"question\": \"what is an antimated baby appears on people s stomachs while doing?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in blue color cloth dress doing?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is animation of a baby inside a woman s woman doing?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who pretends to mimic what the unborn baby is thinking in the pregnant mothers belly?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who appears on people s stomachs while talking?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who do a woman in blue color cloth dress wearing eating ice cream displaying on screen?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a woman in blue color cloth dress wearing pregenant woman eating displaying on screen?\",\n    \"video_name\": \"video7278\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what show in a big screen in a public road?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a men wearing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what is going on the screen where the people are gathering and talking themselves with out caring the screen?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is people outside on the street doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a billboard in nyc with many people doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is fashion show girls catwalk is on big screen crowd doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is fashion show doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what is a men doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is in a public road people doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is some one walking on the down town and doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is there is a display on the street for doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is some models are ramp walk in fashion tv and it is been doing?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"telecast\"\n  },\n  {\n    \"question\": \"what are some models ramp walk in?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what are some people watching on a big screen?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is a men watching on a big screen?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are women going for fashion show on?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are people standing in watching a screen?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are people standing in the street watching?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are women going for on the screen?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what do a fashion show being projected onto in the middle of a common area?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what did a billboard in with many people walking around?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"nyc\"\n  },\n  {\n    \"question\": \"what are some models walk in fashion tv?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"what does a giant tv screen in the street display runway and models?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what show being projected onto a wall in the middle of a common area?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what are some models is been telecasting in the big mall?\",\n    \"video_name\": \"video7279\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"what is there is a orange fish doing?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what are different gold fish doing?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a gold fish doing?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a goldfish repeatedly opens and closes his mouth while doing?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what is a goofy fish doing?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a gold fish in a fish tank doing?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a fish tank with a fish inside of it doing?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a plump goldfish doing?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a large aquarium is filled with colourful fishes doing?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what sit on the rocks in the fish tank near the flowers?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what calm under water in an aquarium while a white fish crossing it?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"gold\"\n  },\n  {\n    \"question\": \"what do a gold fish calm under in an aquarium while a white fish crossing it?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is eating at the bottom of a clean fish tank?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"goldfish\"\n  },\n  {\n    \"question\": \"what do a gold fish calm under water in while a white fish crossing it?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"aquarium\"\n  },\n  {\n    \"question\": \"what sits on the bottom of a fish tank?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"goldfish\"\n  },\n  {\n    \"question\": \"what is filled with colourful fishes moving around?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"aquarium\"\n  },\n  {\n    \"question\": \"what is opening its mouth inside of a fish tank with another fish?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"gold\"\n  },\n  {\n    \"question\": \"what are swimming around in a tank closing?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"gold\"\n  },\n  {\n    \"question\": \"what are swimming around in a tank opening?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"gold\"\n  },\n  {\n    \"question\": \"what are different gold fish swimming around in closing?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"tank\"\n  },\n  {\n    \"question\": \"what are different gold fish swimming around in opening?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"tank\"\n  },\n  {\n    \"question\": \"what is a gold fish opening its mouth inside of a fish tank with?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what do a goldfish in with a bigger white fish?\",\n    \"video_name\": \"video7280\",\n    \"answer\": \"tank\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"destroy\"\n  },\n  {\n    \"question\": \"what is 2 minecraft let s players doing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a person playing minecraft on?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone destroying in hell on minecraft?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what is someone destroying earth blocks in hell on?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who asks another person questions while someone plays a videogame?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman ask questions while someone plays a videogame?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a pc video game?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who minecraft on a computer?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays a videogame?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who let s players talking about milk?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does someone play?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"videogame\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is destroying earth blocks in hell on minecraft?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing and doing?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what is someone destroying earth blocks in on minecraft?\",\n    \"video_name\": \"video7281\",\n    \"answer\": \"hell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man have candle doing?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man demonstrates an experiment doing?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what does a man show baking to prepare something?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"vinegar\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is russian hacker doing?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a man shows doing?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaining?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is pulling out ingredients?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows baking soda and vinegar to prepare something?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who demonstrates an experiment using baking soda and a glass?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did candle baking soda and a glass light a man is doing with a?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who discusses needed ingredients?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is doing a science experiment?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who have candle baking soda cup and water for doing some experiment?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did candle baking soda and a glass light is doing an experiment with a?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a candle experiment?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man show baking soda and vinegar to prepare?\",\n    \"video_name\": \"video7282\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is an ambulance doing?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is ambulance doing?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what is an ambulance doing?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"rush\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is an ambulance doing?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is an ambulance driving around?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what is an ambulance rushing on?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is driving down the street with lights flashing?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is driving through an intersection with lights and sirens on?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is going on the road by making alert sound?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is passing on the road with the heavy speed?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is an ambulance going on by making alert sound?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is ambulance passing on with the heavy speed?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what drives through a darkened city street?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what drives down the highway?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what drives through an intersection with it s lights on?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is driving around town?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is rushing on road?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what goes down the street?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is driving down the street?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what does an ambulance drive down?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what is an ambulance driving down?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a ambulance go down?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is racing down the street?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is an ambulance racing down?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is driving on the streets?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is someone cheering?\",\n    \"video_name\": \"video7283\",\n    \"answer\": \"wish\"\n  },\n  {\n    \"question\": \"what is person playing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is very challenging?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a minecraft player doing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video of a player doing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does someone killing monsters in?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing a computer game?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what mod explanation about a wand of some sort?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is giving a tutorial on minecraft?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a pc video game?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is beating up spirits and animals?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what play?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing the minecraft video game?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who monsters in minecraft?\",\n    \"video_name\": \"video7284\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man inside kitchen bowl doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man and a bowl doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a pot of vegetables doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is on a stove top a pot doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is a pot of doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is the narrator tells of carrots and beans doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man narrates over an image of his ingredients doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is here the person doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is in the kitchen a man doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is the water was almost doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what are carrots and beans doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who pan to add semolina to the ingredients in the pan?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what do a recipe making video a person explain?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"proces\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who narrates over an image of his ingredients boiling in a dark pan he then adds semolina flour to the mixture from a small container?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is going to add semolina or suji?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person preparing on a pan?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are carrots and beans boiling in with a man giving the next direction for adding the most important ingredient either semolina or sooji?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a man narrate over an image of his ingredients boiling in a dark pan he then adds to the mixture from a small container?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"who then reaches over the?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who adds ingredients?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone cooking in the black pan in a kitchen?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what do a man and a bowl pouring mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a man and a bowl pouring mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a man and a bowl pouring mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is preparing a food on a pan?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do the narrator pan to add to the ingredients in the pan?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"semolina\"\n  },\n  {\n    \"question\": \"what a man boiling water with beens in?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who tells of carrots and beans dancing in the pan as the water boils?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what was almost boiling when the chef added something else to the pot?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is boiling a carrot sliced and peas in to the boiling water?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking a soup in the black pan in a kitchen?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who boils vegetables in a large black pot?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"inhome\"\n  },\n  {\n    \"question\": \"who boils a large black pot of vegetables?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"inhome\"\n  },\n  {\n    \"question\": \"who cooks various ingredients in a pot on the stove?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is top a pot boiling vegetables while a chef adds ingredients on?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is boiling vegetables while a chef adds ingredients on a stove?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what do a man inside kitchen bowl pouring mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is someone cooking a soup in the black pan in?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a man inside kitchen bowl pouring mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a man inside kitchen bowl pouring mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7285\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who wins a wrestling match?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do some wrestlers grapple on?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"how many people are wrestling?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a young man win?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are two men wrestling in?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what did two wrestlers eat fighting inside?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is group of men doing?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is state competition for doing?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two boys doing?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two wrestlers ate doing?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two young men doing?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two young men doing?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a wrestling match taking in a gym?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"how many wreslters go at state competition for wrestling i nthe ring?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is taking place in a gym?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are two young men wrestling each other at?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what is a wrestling match taking place in?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what do two wrestlers on a mat having?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"how many young men are in a wrestling match?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young men are wrestling each other at a competition?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers ate fighting inside the ring?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is taking place in front of an audience?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what is a wrestling match taking in front of an audience?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"how many men are wrestling in a competition?\",\n    \"video_name\": \"video7286\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is three performers doing?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are thee people doing?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three boys doing?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is three men doing?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are thee people talking about?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is interviewed?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are talking about music?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"thee\"\n  },\n  {\n    \"question\": \"how many men hanging out?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what do a group of men speak to one another in?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who do a man saying i m?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"fart\"\n  },\n  {\n    \"question\": \"how many guys talk to each other?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a man being taught in a different language?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"phrase\"\n  },\n  {\n    \"question\": \"who is being taught a funny phrase in a different language?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7287\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a woman and a man stand in?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are young adults speaking to?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman giving?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man explaining something in?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"meeting\"\n  },\n  {\n    \"question\": \"who is giving an advertisement?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man explaining in a meeting?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are men and women giving there approval about?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what are young adults doing?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is the video shows people doing?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is indian people doing?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is clips of people in different settings with one girl doing?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a silent film both a man and a woman repeatedly show up and ends with a sign doing?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"where do a woman and a man stand?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what shows people talking into the camera?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is explaining something in a meeting?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7288\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what do two groups of people prepare for off?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two different videos of people preparing for a dance off shown side by?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what are two different videos of people preparing for a dance off shown by side?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"compare\"\n  },\n  {\n    \"question\": \"what shows two different video clips?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are video of two groups of people dancing to mashup songs shown in?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what do others watch in?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"when are people dancing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is video of two groups of people doing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two small videos doing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two different videos of people doing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is single ladies versus gangnam style doing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"challenge\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is females doing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is an advertisement doing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what do people participate in off?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is displaying?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what is a trailer doing?\",\n    \"video_name\": \"video7289\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is in the kitchen?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the woman films herself doing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman talks about a someone doing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a woman records herself doing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman in a house doing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking to the camera?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women talking into in a kitchen?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a women talking into a camera in?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woman showing while talking about a vacation?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who does a woman record speaking to a camera for a video segment?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"what is a woman speaking in?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woman talking to?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman in?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woman walking around?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who the woman films moving around dizzingly?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"what does a girl talk about to the camera?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what did a woman doing a self shoot?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did a woman talking about somone breaking in a wave?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl showing?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is speaking in a kitchen?\",\n    \"video_name\": \"video7290\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is obama doing?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is politicians are shown doing?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is politicians doing?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is steve harvey doing?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man speaking at?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"who is a man interviewing?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man give?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what are politicians shown using?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"profanity\"\n  },\n  {\n    \"question\": \"who is giving a speech?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does president obama speaking in?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is interviewing another man?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does obama do?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who gives a speech?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does an interview?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"who is speaking at a podium?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who obama speaking in a show?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what harvey talking to obama?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"steve\"\n  },\n  {\n    \"question\": \"what is the president of the united states giving to a show host?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who tells a joke at a podium?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video7291\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a dark light with a baby head toy doing?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a gentleman with black court doing?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is the image of a baby s face is shown and then an arrow doing?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a white arrow and bubble doing?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a horror doll doing?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who tries to explain sexual education and the reproductive system?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is used to talk about menstruation and growth hormones?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"what do points to a small white dot on in the dark?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what do points to a small white dot on a face in?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"what does the image of a baby s?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what does the image of a baby s is shown?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who tells that the pituitary gland is where mensturation starts to unclear graphics?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who tells that the story of menstruation begins at the pituitary gland located at the base of the brain?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is explaining the start up and process of menstration?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is used by the researcher for the purpose of pituitary gland?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a baby toy used by for the purpose of pituitary gland?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"researcher\"\n  },\n  {\n    \"question\": \"how many words does an oval bubble attached to an arrow hold?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what has a line of separated red arrows under a pearlized dot placed over the profile of a child mannequin s face in the dark?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is a gentleman with black court explaining about?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is starring?\",\n    \"video_name\": \"video7292\",\n    \"answer\": \"horror\"\n  },\n  {\n    \"question\": \"what are talking to each other in a room?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a pale faced man talking to?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is an odd looking man talking to?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two man s talking to each other in?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"how many men are having a conversation?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a strangely dressed man talking to?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to another man?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown from a movie?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a scene shown from?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are two men having?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who talks to snape?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"barber\"\n  },\n  {\n    \"question\": \"how many men speak in a dimly lit room?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many man s are talking to each other in a room?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sweeny todd doing?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"converse\"\n  },\n  {\n    \"question\": \"what is an odd doing?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a strangely dressed man doing?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a pale faced man doing?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man strolls over to another man while doing?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are in an attic two men doing?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men are talking to each other in an attic?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking in a dark room?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is conversing with a man standing in a doorway?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"sweeny\"\n  },\n  {\n    \"question\": \"how many men have a conversation in an attic?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who strolls over to another man while talking?\",\n    \"video_name\": \"video7293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is stating the proccess david targen undergoes to complete internal medicine procedures?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a mini biography of dr david targan suspended on?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what databases provided by the medcinal chemistry project as a service to the chemistry community?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"chemistry\"\n  },\n  {\n    \"question\": \"when does white text on a black background about a doctor s?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"what contains small words regarding a doctor specializing in genetic testing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is this conversation is about dr david targons ownership interest in cellular genetics which is a company that promotes and applies genetic doing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is intro to an ad about a doctor who doing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is the news reader doing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a written document of words shown on screen doing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is white doing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a screen doing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"state\"\n  },\n  {\n    \"question\": \"what is a disclaimer about a doctor who specializes in genetic doing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a black screen contains small words doing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is in this session it tells about a doctor who is appointed by the trusties and he doing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"practise\"\n  },\n  {\n    \"question\": \"what is words doing?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a written document of words show on displaying on screen?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is wearing a black suit and blue designed tie?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"reader\"\n  },\n  {\n    \"question\": \"what does white writing on a black screen give?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what is a man named david targan practising with a speciality in genetic living?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"medicine\"\n  },\n  {\n    \"question\": \"who is sitting in a really beautiful background?\",\n    \"video_name\": \"video7294\",\n    \"answer\": \"reader\"\n  },\n  {\n    \"question\": \"what are the animals eating from the trees in?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"when are roaming around their pin?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"lamma\"\n  },\n  {\n    \"question\": \"what is a group of alpacas doing?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a group of animals doing?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are the animals doing?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is alpacas doing?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an alpaca eats part of a plant with several other alpacas doing?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is one of alpacas doing?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are the animals are outdoors and they doing?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are alpacas doing?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are animals walking around and eating grass looking for?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is several white and brown alpacas doing?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who do alpacas like to eat?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"gress\"\n  },\n  {\n    \"question\": \"what are walking about?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what is lama doing?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what like to eat gress and hey?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what are eating in their living area?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what are various alpacas gathered together inside?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what are gathered together inside an enclosure?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what are lammas roaming around?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"pin\"\n  },\n  {\n    \"question\": \"what are lammas doing?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what leaves?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"lama\"\n  },\n  {\n    \"question\": \"what do a group of llamas stand on?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what do a group of llamas chew on?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"when are trying to eat the large geen leafs?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"lamma\"\n  },\n  {\n    \"question\": \"what are a number of alpacas of various colors together in?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what eats part of a plant with several other alpacas standing nearby?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what alpacas eating plants in some kind of exhibit?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what does an alpaca eat part of with several other alpacas standing nearby?\",\n    \"video_name\": \"video7295\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"who discusses a stroller?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stands behind a stroller?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a baby wagon?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is this is a woman doing?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who talks about the pros of a stroller?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving information about a baby stroller?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does stroller features s is describing a child?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what s a woman is describing a child?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is talking about a stroller?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing some pram?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who does stroller features s a woman is describing?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is talking about a baby stroller?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman discuss?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is demonstrating a stroller?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman stand behind?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is presented?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman demonstrating?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video7296\",\n    \"answer\": \"pram\"\n  },\n  {\n    \"question\": \"who uses an app on a pink mobile?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is someone tapping?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"who is using a smart phone?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone playing music on?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"smartphone\"\n  },\n  {\n    \"question\": \"what is someone playing on a smartphone?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is tapping a mobile device?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing music on a smartphone?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a person working with an android?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is a person opening on a cell phone?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"app\"\n  },\n  {\n    \"question\": \"who is showing how to download things on a phone?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is opening apps on a cell phone?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who opens up an app in a ios device?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is there s a reviewer doing?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7297\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what was the woman taking?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings while a woman holds a camera?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is singing a song in a music video?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is singing a song while a woman dances?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being played with people taking photos?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man singing while a woman dances?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who are dance in a troop?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who is singing in a music video?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being played with people dancing?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who dances sensually to romantic music?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are singer dance in?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"troop\"\n  },\n  {\n    \"question\": \"who are singing?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what does a woman hold?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who was taking a picture?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a camera?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man sing?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a woman dance sensually to?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7298\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who creates a swirl paint design?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who works with nail polish?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman creating with liquid?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"shape\"\n  },\n  {\n    \"question\": \"what is a woman making art with?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"who talks about nail polish?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about making nail polish?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman placing paint into?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who is applying nail polish?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does woman drop nail polish into?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does woman drop into water?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"what starts to move?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"goop\"\n  },\n  {\n    \"question\": \"who paint spiral?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman applying?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"what do person making a paint?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"spiral\"\n  },\n  {\n    \"question\": \"who is mixing some colors?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a design?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman work with?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"what do a person adding nail polish to make?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who drops nail polish into water?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman creating interesting shape with?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who is teaching people how to make a specific craft?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing how to put colors together to do nail art?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is creating interesting shape with liquid?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making art with nail polish?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is placing paint into a glass?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman making with nail polish?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a woman placing into a glass?\",\n    \"video_name\": \"video7299\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman has two videos she doing?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is brunette woman doing?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"offer\"\n  },\n  {\n    \"question\": \"what is there is a girl in a split shot screen of a video on youtube doing?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two videos of make ups where ladies doing?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the end of a makeup and beauty tips video doing?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the beauty women doing?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is holding some new makeup?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is brunette woman presenting some videos on?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what is the beauty women telling simply mehod of?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what are two side by side women doing different things in?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what shows a video of a woman applying?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is explaining the color of some new makeup?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many videos of make ups where ladies using make up materials?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is describing the color shade of some make up?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many girls arrange hairstyles?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is telling simply mehod of hair styling?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"how many girls are busy on makeup of their face with a makeup foundation cream?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a couple of women being filmed on?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman holding?\",\n    \"video_name\": \"video7300\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman dressed in purple top and skirts doing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is several women are shown doing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is models posses for different dressings they wear for doing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is all sorts of pretty woman doing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there are pictures of young attractive women doing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what consists of pictures of various female models set to music from an 80 s hair band?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"montage\"\n  },\n  {\n    \"question\": \"what is a woman dressed in purple top and skirts holding onto?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"pole\"\n  },\n  {\n    \"question\": \"who is showed with different type of dress?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are appearing with attractive styles of dressings?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"cute\"\n  },\n  {\n    \"question\": \"what plays while pictures of women standing up play in a slideshow?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a woman in hot dressing doing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the photos of the models has been doing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is rock music plays while pictures of women doing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman in hot dressing standing on?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what do pictures of women standing up play in?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does rock music play in?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is standing with different dresses?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is being photographed in many positions?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are several women shown posing in?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what are women wearing?\",\n    \"video_name\": \"video7301\",\n    \"answer\": \"designer\"\n  },\n  {\n    \"question\": \"who is sitting on a couch?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking to three kids?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a father announce he ate?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"candy\"\n  },\n  {\n    \"question\": \"what are three children shown being talked to on?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what are some kids sitting on?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a girl sitting on?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who is swearing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who announces he ate his kids candy?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"what is three kids doing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three kids on the couch and their parents doing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are three kids doing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some kids doing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is parents doing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"prank\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what does kids sitting on a couch then girl start waving?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"swear\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many kids are sitting of which one stting quite one child goes off from the seen?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many children are shown being talked to on a couch?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many kids are sitting of which two are laughing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is children doing?\",\n    \"video_name\": \"video7302\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who do the men think looks hot?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are some people talking in?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who does a group discuss?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing if someone is hot?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"tmz\"\n  },\n  {\n    \"question\": \"what are people discussing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what discusses a woman?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is the tmz news room discussing the attractiveness of?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who berates a man for calling another woman fat?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are a newsroom of people talking about?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a newsroom of people doing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the tmz news room doing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is several people are in a studio and doing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is tmz doing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is nosey people doing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is men and women doing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is an ugly woman berates a man for doing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what is people on the tmz tv show doing?\",\n    \"video_name\": \"video7303\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"who talks about how to use a mobile device?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who demonstrates how to do a specific search on a mobile device?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone showing a person how to name a file on a mobile device?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is showing how to search for the simpsons using his touch tone phone?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who types out words on a smart phone?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what text in smart mobile phone by touching the screen?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who explaining how to store a file on his phone?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is someone showing a person how the device will react?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is writing something using the keyboard on his phone?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person writing using the keyboard on his phone?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man operating by typing some text?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"mobile\"\n  },\n  {\n    \"question\": \"who is shown typing on a phone and while talking about what can or can t be typed in?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is operating his mobile phone by typing some text?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is this video is someone doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a person is shown doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is a smart phone user doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"navigate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone types text in smart mobile phone by doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a women doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7304\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a model of earth mover picking from the blocking road?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"stone\"\n  },\n  {\n    \"question\": \"how many cars are being driven on the carpet with street?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what lego bulldozer loads rocks into the back of a lego truck?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what are working?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what did some toy vehicles and buldozers with some cars and road make of?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"rubber\"\n  },\n  {\n    \"question\": \"what do a model of earth mover put in a truck to clear the road?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"stone\"\n  },\n  {\n    \"question\": \"what honk at each other?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a blue and yellow truck rolling around on?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are racing down the road?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what drive around on a street?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what do toy cars drive around on?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a series of lego cars drive on by and the dump truck pull out onto after them?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do the cars drive down the street pass?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what do a model of earth mover put stone in a truck to clear?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are several lego vehicles racing down?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are two men having garbage picking machine picking?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"garbage\"\n  },\n  {\n    \"question\": \"what are two cars being driven on with street?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"carpet\"\n  },\n  {\n    \"question\": \"what are two cars being driven on the carpet with?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do the cars drive down pass the wall?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do a model of earth mover put stone in to clear the road?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a blue colour truck and yellow colour truck doing?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is 3d carttoon where an proclain doing?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a model of earth mover doing?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is oh the fun of doing?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is an art project made with legos depicts a bulldozer doing?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a stop motion film about cars and construction vehicles doing?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a blue and yellow truck doing?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is there is a yellow color vehicle doing?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a crane doing?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are several lego vehicles doing?\",\n    \"video_name\": \"video7305\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who is cleaning up a lunchroom?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cleaning a place with the help of broom stick?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"gentleman\"\n  },\n  {\n    \"question\": \"who is mopping an outdoors recreation center of a school?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"maintenance\"\n  },\n  {\n    \"question\": \"who is mopping the floor then takes an apple out of a brown paper bag and bites it?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"janitor\"\n  },\n  {\n    \"question\": \"who cleans a cafeteria in what appears to be a preschool?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"janitor\"\n  },\n  {\n    \"question\": \"who get an apple out of a sack to eat?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"maintenance\"\n  },\n  {\n    \"question\": \"who is eating an apple?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who eats an apple?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"janitor\"\n  },\n  {\n    \"question\": \"what does a janitor work alone cleaning up?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"lunchroom\"\n  },\n  {\n    \"question\": \"what does the janitor eat?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"who is cleaning the place with big cleaning tool?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cleaning up?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"lunchroom\"\n  },\n  {\n    \"question\": \"who is cleaning an out door dining area he then eats an apple he finds?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"janitor\"\n  },\n  {\n    \"question\": \"who works alone cleaning up a school lunchroom?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"janitor\"\n  },\n  {\n    \"question\": \"what does a guy wearing a tan outfit clean?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"cafeterium\"\n  },\n  {\n    \"question\": \"what is man cleaning with big cleaning tool?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what does a man in a uniform rings out a mop and then collect?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"garbage\"\n  },\n  {\n    \"question\": \"what does a man in school cafeteria cleaning tables discover?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"what do a maintenance worker get out of a sack to eat?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"what is a gentleman cleaning with the help of broom stick?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a maintenance worker mopping an outdoors recreation center of?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who finds an apple?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"janitor\"\n  },\n  {\n    \"question\": \"what does a male janitor dressed in tan decide to take?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"bite\"\n  },\n  {\n    \"question\": \"what is a janitor mopping then takes an apple out of a brown paper bag and bites it?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does the janitor find?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"who is moping?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"janitor\"\n  },\n  {\n    \"question\": \"what is a gentleman doing?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a man in school cafeteria doing?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a maintenance worker doing?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"mop\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a male moping and doing?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a man dressed in a khaki shirt and pants doing?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a man in uniform doing?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a janitor works alone doing?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a janitor doing?\",\n    \"video_name\": \"video7306\",\n    \"answer\": \"mop\"\n  },\n  {\n    \"question\": \"what do parade cars shoot at crowd?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what do parade cars shoot stuff at?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who leads an orchestra?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shoot stuff at crowd?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"parade\"\n  },\n  {\n    \"question\": \"what is man riding?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"what does a man lead?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"orchestra\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is riding a scooter?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people acting like a police unit at?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"carnival\"\n  },\n  {\n    \"question\": \"what is a parade brought to for a little while then continues?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"standstill\"\n  },\n  {\n    \"question\": \"who drives around vehicles one of which contains people throwing confetti at a crowd of people lined up along the street?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is brought to a standstill for a little while then continues?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"parade\"\n  },\n  {\n    \"question\": \"who is drive a bike and a man follow with car?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"vintage\"\n  },\n  {\n    \"question\": \"what is driving around?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is police doing?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a vehicle doing?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man drives around vehicles one of which contains people doing?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a buggy with a cage around it doing?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is cars doing?\",\n    \"video_name\": \"video7307\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who minecraft?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a video game?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the minecraft video game?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does guy play about things he can buy in the game?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does guy play minecraft and talks about things he can buy in?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what figures in a computer game with a back ground commentry?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who plays minecraft and talks about things he can buy in the game?\",\n    \"video_name\": \"video7308\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what kiss on the couch behind there?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is man having with his woman in the living room?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what is a man in a leather jacket and wearing glasses bouncing on while two people are kissing on a couch?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"how many people make out on a couch?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is wearing wings?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people make out in the backround?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is man having fun with in the living room?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing funny activity?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is watching lady and man?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is acting very silly as he pretends to do cpr?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man watching?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"activity\"\n  },\n  {\n    \"question\": \"what are two people kissing on?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what do two people make out on?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what do two people make out in?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"backround\"\n  },\n  {\n    \"question\": \"how many people are kissing on a couch?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a person in all leather perform cpr on while two people make out on a couch?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"who is having fun with his woman in the living room?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there are a man doing?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"roar\"\n  },\n  {\n    \"question\": \"what is a nonsense comedy video with a man doing?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is goofy video of kids doing?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a man in a fly costume doing?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"what is a weird video where a couple doing?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is very animated show with loud man doing?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl and boy doing?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in a jacket does a funny joke while doing?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a leather jacket and wearing glasses doing?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"who is doing cpr on a microscopic person while two people make out in the backround?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a guy doing on a microscopic person while two people make out in the backround?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"cpr\"\n  },\n  {\n    \"question\": \"who couches n the floor as two people heavily pet each other on a couch in the background?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man in blindfold yelling ignore?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man in blindfold screaming ignore?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing funny things for a joke tv show?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a girl and boy sitting on sofa kissing laughing and black dress wearing shaking body speaking displaying on screen?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who vociferously comments about the behavior of two other kids on the show?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a girl and boy sitting on sofa kissing laughing and black dress wearing man shaking speaking displaying on screen?\",\n    \"video_name\": \"video7309\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"who is dancing for a song in front of others?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of teenagers doing on stage?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man dancing for in front of others?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who dances at a wedding?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances around at a wedding?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are dancers cheered on at?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"what are people dancing at?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"when are a group of teenagers doing the whip dance?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man dance around at?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"wed\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man in a suit doing?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a groom doing?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does a man dance at?\",\n    \"video_name\": \"video7310\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"who demonstrates some life hacks?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is applying nail polish?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who discusses life hacks?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is holding a vial?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is demonstrating objects?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is a person showing?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what is a person applying?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"who does a girl demonstrate?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a how to video for doing?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a programme doing?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is ideas for how to open nail polish and keep your cords from doing?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"tangle\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who does a girl discuss?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"who folds a pair of headphones?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is showing beauty hacks?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does girl put on earbud cables?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who bundles together a pair of headphones?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does girl put a hair clip on?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"earbud\"\n  },\n  {\n    \"question\": \"who puts a hair clip on earbud cables?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a person putting a hair clip on wrapped up headphones then putting a hair band on a nail polish?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"lid\"\n  },\n  {\n    \"question\": \"who is showing clever ideas and solutions to problems?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to wrap headphones in wire?\",\n    \"video_name\": \"video7311\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is running in the play ground?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is running on a track?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"what is a teenager running on?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a teenager jumping into?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"sandhole\"\n  },\n  {\n    \"question\": \"what does a woman in pink wearing glasses run fast on?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what a girl wearing a pink shirt practices?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what does a man talk about a young girl performing great in?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what do a young women with pink top practising for high jump?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what is woman in pink shirt jumping on?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what does a woman in pink wearing glasses jump into?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"mud\"\n  },\n  {\n    \"question\": \"what does a female athlete in a pink tee shirt run down?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what do a women with pink top practising high jump in?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what does female runner run down before jumping into a sand pit?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who talks about a young girl performing great in track?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping into a sandhole?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"what does a female athlete in a pink tee shirt make into a sand pit?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a person in a pink shirt doing?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is athlete doing?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is woman in pink shirt doing?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a young athlete doing?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man talks about a young girl doing?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who runs down a track lane before jumping into a sand pit?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"runner\"\n  },\n  {\n    \"question\": \"what is female runner runs down a track lane before doing?\",\n    \"video_name\": \"video7312\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what do some cops stand together with?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are cops doing?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what shows lots of police officers?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what permit denial?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is discussing a criminal case and suspect?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person looking at a video about?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"crime\"\n  },\n  {\n    \"question\": \"what is a person looking at about crime?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do talks about gun permit?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"denial\"\n  },\n  {\n    \"question\": \"who does a news report show lots of?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who is looking at a video about crime?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a scene of ambulances and crime scenes accompanies a narration of how an ex-wife who attempted to get doing?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"restrain\"\n  },\n  {\n    \"question\": \"what is a show doing?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is news on somebody ex-wife doing?\",\n    \"video_name\": \"video7313\",\n    \"answer\": \"file\"\n  },\n  {\n    \"question\": \"what are few people going through in a very beautiful place?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does a boat float down through a scenic town?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"canal\"\n  },\n  {\n    \"question\": \"what goes down the calm water past pink flowers?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what floats through a canal surrounded by softly colored buildings?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what are traveling with small boat in the river?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"how many sides an wonderful coloring city building and in between a river?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what floats down a canal through a scenic town?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what goes down a narrow waterway in a town with colorful buildings?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is people in a canoe doing?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is there are many people are enjoy doing?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what are few people doing?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7314\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is three people doing?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"applaud\"\n  },\n  {\n    \"question\": \"what did the judges appreaciating?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what is cheering on the voice?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are judges clapping on?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is the crowd cheering on?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is the crowd doing?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what are judges doing?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what do tv show called?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is crowd doing?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"applaud\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"who are judges clapping for on a television show?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is applauding loudly?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what does judges clap for contestant s?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who is clapping?\",\n    \"video_name\": \"video7315\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does an abc news clip about martin winters facing a felony weapons s a live news broadcast about a vigil being held for someone s?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"dad\"\n  },\n  {\n    \"question\": \"what is someone reporting from?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a reporter live on?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do a news anchor discussing?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what does a reporter talk about?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"incident\"\n  },\n  {\n    \"question\": \"what does the newscastor talk about?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what anchor discussing a story?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is reporting from news?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman talking on?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a news reporting at?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"vigil\"\n  },\n  {\n    \"question\": \"what is a woman looking through?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"who talks about a story?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"newscastor\"\n  },\n  {\n    \"question\": \"who talks about an incident?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"when is a news story being shown?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"who is talking on the news?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is reporting at a vigil?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is being shown at night?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"who is looking through a fence?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a man hunt and a vigil?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who gives a report on doomsday preppers?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"newswoman\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video segment?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is live on aba news?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is an abc news clip about martin winters doing?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is news anchor doing?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7316\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is hitting a volleyball?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a mean is played at the olympics?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"how many teams play pro volleyball on a court inside?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a team of volleyball players having?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"how many teams are playing volley ball actively?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man hitting?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what are teams playing?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is group of athletes doing?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are teams doing?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are video game characters doing?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two teams playing actively?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"volley\"\n  },\n  {\n    \"question\": \"who are playing volleyball?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a men s?\",\n    \"video_name\": \"video7317\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what are girls singing to?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a person telling?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is wrestingling in neon?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person singing on stage?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when are young girls performing?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are girls singing?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when does a woman sing?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is telling something?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man wrestingling in?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"neon\"\n  },\n  {\n    \"question\": \"when is a person singing a song?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is three girls doing?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing a song on stage?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a group of girls doing?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are several girls doing?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are young girls doing?\",\n    \"video_name\": \"video7318\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a cartoon gorilla climbing?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what are singing in adventure show?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"adventure\"\n  },\n  {\n    \"question\": \"what show for kids?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a comic clip show?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is climbing a building?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are very adorable?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"muppet\"\n  },\n  {\n    \"question\": \"what do an animate?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what shows sesame street?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what are adventure singing in?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"adventure\"\n  },\n  {\n    \"question\": \"what does a children s is being shown in a theater?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is cartoon doing?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"king\"\n  },\n  {\n    \"question\": \"what does a children s television show is being shown in?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"theater\"\n  },\n  {\n    \"question\": \"who flies around in a helicopter?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a cartoon character fly around in?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is a cartoon gorilla doing?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7319\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a woman selling?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a close up on?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does the video show about?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car shown for?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"sale\"\n  },\n  {\n    \"question\": \"what shows about the car?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is selling a car?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a gray jeep vehicle for?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"sale\"\n  },\n  {\n    \"question\": \"what is shown for sale?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is being shown outdoors?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"suv\"\n  },\n  {\n    \"question\": \"what did commercial for a use?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who talks about a car that is for sale?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is parked?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what that is being sold?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is this is an advertisement for a truck the camera doing?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a video about a person doing?\",\n    \"video_name\": \"video7320\",\n    \"answer\": \"sell\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is a woman forms dough and puts doing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"form\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"mold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"mold\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who forms dough?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is baking a treat?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the person making?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"mini\"\n  },\n  {\n    \"question\": \"who presses down on a mold?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a mini pie?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is molding a food item?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman forming with food?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"shape\"\n  },\n  {\n    \"question\": \"what does a woman use to move food?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"what is a person rolling up?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman forming a shape with?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who uses a spoon to move food?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is forming a shape with food?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman use a spoon to move?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is rolling up food?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing a recipe?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who puts filling inside?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman baking?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"treat\"\n  },\n  {\n    \"question\": \"what a person presses down on?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"mold\"\n  },\n  {\n    \"question\": \"who is making a dish?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone preparing?\",\n    \"video_name\": \"video7321\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is talking about game rugby?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a montage of photos doing?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is different still images of athletes doing?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is pictures of falcons and a man doing?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sportscaster doing?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what highlights are shown?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"who describes a specific football game?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the game?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does someone talking about the falcon?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does sportscaster speaking on atlanta falcon winning?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is shown in the throes of combat?\",\n    \"video_name\": \"video7322\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who rides a motorcycle while recording a police chase of another person alluding police while on a motorcycle doing a wheelie?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stands on the back of a moving motorcycle curves over to reach the handlebars on a dark paved highway?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is people on street bikes ride down the highway while doing?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person rides a motorcycle while doing?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what are on a freeway three men doing?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is on a dark paved highway a man stands on the back of a doing?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is motorcycles doing?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a person on a motorcycle doing?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man drives recklessly on a motorcycle by doing?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"how many men are driving motorcycles at high speeds on a freeway?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what race down the street while one of the people perform a stunt on the bike?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is riding a motorbike with one hand while another man in front of him does tricks on his own bike?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a motorcycle in?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what is in motion?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is person driving with group of other people?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what does a motorcycle rider stand on his motorcycle as it races down at night?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man riding with one hand while another man in front of him does tricks on his own bike?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what the person rides really fast at night?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a man riding a motorbike with while another man in front of him does tricks on his own bike?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a man drive recklessly on by standing up while it is in motion?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what does a motorcycle rider stand on as it races down a road at night?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who stands on his motorcycle as it races down a road at night?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"when does a motorcycle rider stand on his motorcycle as it races down a road?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what do a motorcyle following driving fast down a road?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who drives recklessly on a motorcycle by standing up while it is in motion?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a motorcyle following another motorcycle driving fast down?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a man stand on the back of a moving over to reach the handlebars on a dark paved highway?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what do people on street bikes ride down while performing stunts?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"when do some bikers speed on by the freeway?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what do the view from a motorcycle helmet as riders travel down?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who rides the bike really fast at night?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is driving his motorbike with group of other people?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person on a motorcycle driving down?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what do some bikers speed on by at night?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"freeway\"\n  },\n  {\n    \"question\": \"what are three men driving motorcycles at high speeds on?\",\n    \"video_name\": \"video7323\",\n    \"answer\": \"freeway\"\n  },\n  {\n    \"question\": \"what is an animated girl doing?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is singing twinkle twinkle little star?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings a popular nursery rhyme?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a girl sing twinkle twinkle from?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"who is looking out a window?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is sitting on the moon?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what did a cartoon with a girl singing twinkle?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who looks at the stars?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is an animated girl looking out?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is a cartoon character sitting on?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what do a lady singing twinkle twinkle?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who is singing on background?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who sits on the moon?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what twinkle twinkle?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a little girl sit on?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what is an animate character singing on?\",\n    \"video_name\": \"video7324\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what is man in black suit doing?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a two animated characters doing?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a man in black doing?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a bug doing?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is characters from adventure time doing?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is finn and jake hold white megaphones and discuss doing?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is man in brown shirt having?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is the person calling with the blue earphone?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what are other animals having?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what are the characters having?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"when do one another have?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"picnic\"\n  },\n  {\n    \"question\": \"who hold white megaphones?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"finn\"\n  },\n  {\n    \"question\": \"when did a cartoon call adventure time where the characters are excited about movie filming?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what called adventure time where the characters are excited about movie filming time?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is speaking through a paper microphone two talking pieces of candy are sitting on the grass and eating?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking a doll is keeping a stic?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shouts through a megaphone and high fives a friend?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"finn\"\n  },\n  {\n    \"question\": \"what does a list of the greatest and most violent show on?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is calling his friend with the blue earphone?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a clip from the popular kids show?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"adventure\"\n  },\n  {\n    \"question\": \"who talk to one another as they have a picnic?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a man talking is keeping a stic?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"who is speaking about the adventure program?\",\n    \"video_name\": \"video7325\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do two men with safety glasses work on in a production warehouse?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who talks about post high school education options while scenes of various jobs are shown?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what is a patient talking with the nurse about?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is explaining the processes of education and decisions that need to be made?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is students work on various career fields doing?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"range\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is described?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"engineering\"\n  },\n  {\n    \"question\": \"what is highlighted?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"engineering\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"who talks about education options?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are different people doing?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a patient doing?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are several people doing?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is talking with the nurse about something?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"patient\"\n  },\n  {\n    \"question\": \"who is a patient talking with about something?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"nurse\"\n  },\n  {\n    \"question\": \"how many different jobs are shown while a man talks about education options?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who explains about the machines and the electronic technologies?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man with specs doing?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man with specs doing?\",\n    \"video_name\": \"video7326\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a blackfish doing?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a movie trailer for the film blackfish doing?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an advertisement for the black fish movie opening with a view of a sea world employee in the tank doing?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"encourage\"\n  },\n  {\n    \"question\": \"what is person is in the water and doing?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is an aquatic animal holds its fin out of water for a breif moment before doing?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"slam\"\n  },\n  {\n    \"question\": \"what does a diver in wet suit slap water next to fence of enclosure with?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"whale\"\n  },\n  {\n    \"question\": \"what did black fish dive is displayed in the screen?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"message\"\n  },\n  {\n    \"question\": \"what holds its fin out of water for a breif moment before slamming back into the water?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what did black fish dive message is displayed in?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a killer whale trainer in the whale tank behind?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"gate\"\n  },\n  {\n    \"question\": \"what is trying to catch a black fish from a big sea in a movie?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is speaking about a cinema in facebook?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do a movie trailer for the film blackfish showing a glimpse of?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"whale\"\n  },\n  {\n    \"question\": \"what dove message is displayed in the screen?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is person in?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do a blackfish hitting hard into water?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"tale\"\n  },\n  {\n    \"question\": \"what do a blackfish hitting its tale hard into?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does an aquatic animal hold its fin out of for a breif moment before slamming back into the water?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is in the water?\",\n    \"video_name\": \"video7327\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a machinima scene about a popular lego block?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is explained about game with 3d animation?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is standing on the corner of a mountain?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"skier\"\n  },\n  {\n    \"question\": \"what lego man rides a surf board in the sky?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"what did lego superhero animation of the silver surfer with?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is flying in the air with a surfboard?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what superhero animation of the silver surfer with background commentary?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what is flying to the sky on a snowboard?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is a lego man surfing through the clouds like he can fly?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"who is sky surfing through the clouds like he can fly?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what is there is robot doing?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a robot doing?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a lego silver surfer doing?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there are two men doing?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a lego toy doing?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"represent\"\n  },\n  {\n    \"question\": \"what is a silver lego toy doing?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a lego man is sky doing?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a lego man doing?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a skier doing?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the blue robot doing?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is the robot doing?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"who can fly?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what fly through the air on boards while clouds are visible behind them?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what is someone explained about with 3d animation?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who complains about a lego version of the silver surfer?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what is a lego man flying in with a surfboard?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a lego man flying in the air with?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"surfboard\"\n  },\n  {\n    \"question\": \"what is a robot flying to the sky on?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"snowboard\"\n  },\n  {\n    \"question\": \"what is a robot flying to on a snowboard?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is the blue robot flying high under?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"cloud\"\n  },\n  {\n    \"question\": \"what is flying high under the clouds?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is someone explained about game with?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is a silver lego toy flying through?\",\n    \"video_name\": \"video7328\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is an animated boy doing?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are dogs doing?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is some cartoon dogs doing?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does some cartoon dog playing on?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is dog on?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a boy playing with a dog in?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a boy playing with in a cartoon?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what rides a slide at a playground?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is playing with a dog in a cartoon?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is on a slide?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are shown here?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is sliding down a slide at a park?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what dogs playing on a slide?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is playing with animals?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what goes down a slide?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does an animated dog go down?\",\n    \"video_name\": \"video7329\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is in a kitchen person doing?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a white dish with food is shown with the caption boo kai dong yam doing?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who is describing a plate of food that is translated as crab eggs in a salad?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person showing in a kitchen?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did a dish at a restaurant call dong yam which is crab eggs in a salad?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"boo\"\n  },\n  {\n    \"question\": \"what are meals kept in?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is fish gravy showed on?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is showed on the plate?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"gravy\"\n  },\n  {\n    \"question\": \"who is presenting the perfectly decorated lunch?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person showing on a plate?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is person showing the decorated food in?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is speaking about a main dish with crabs eggs?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing off a dish of?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is showing some wet food on a plate?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing off a dish of food?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man describing a plate of that is translated as crab eggs in a salad?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is showing the decorated food in a kitchen?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person showing some wet food on?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who is explaining what is in a dish of food?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing the perfectly decorated food on white plates?\",\n    \"video_name\": \"video7330\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man describes a game he doing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the character doing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who speaks over a game?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are computer games playing in?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who is discussing a game?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are playing in the mountain?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man speak over?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a man playing while talking?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is the character flying in throughout town?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the character flying in a horse throughout?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"who is playing a video game while talking?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss as characters run through the screens?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flying in a horse throughout town?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is playing a video game which could be divinity?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who discusses some recent changes to a video game?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing pets in world of warcraft?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses a video game as characters run through the screens?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who battle pet changes in world of warcraft?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who explains a strategy to increase fortune?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man discussing?\",\n    \"video_name\": \"video7331\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are a few chefs doing?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is youngsters doing?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of teenagers doing?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of dancers some doing?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what dances in a disco?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a woman dacning in?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who is dacning in the clip?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a group dance in?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"disco\"\n  },\n  {\n    \"question\": \"what do teens perform choreography?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what are people dancing to?\",\n    \"video_name\": \"video7332\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is two portraits of famous men are displayed with doing?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"correspond\"\n  },\n  {\n    \"question\": \"what is a still image of old person with photoes doing?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a old man still picture and writen words doing?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is there is a girl doing?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a old man doing?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who do quotes george bernard snow and vincent are shown?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"gogh\"\n  },\n  {\n    \"question\": \"how many images are displayed on the screnn?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who still picture and writen words displaying on screen?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains that success is okay to make mistakes and still be successful?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are two old persons images displayed on?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are two persons images displayed on?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"screnn\"\n  },\n  {\n    \"question\": \"who says that success does not consist in never making mistakes but in never making the same one a second time?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"bernard\"\n  },\n  {\n    \"question\": \"who is telling about of two men?\",\n    \"video_name\": \"video7333\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a kia commercial shows a group of hamsters doing?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a video of a car doing?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is hamsters are shown doing?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what do people attend?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"premiere\"\n  },\n  {\n    \"question\": \"what does the green car drive on?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do the three scion chipmunks advertise?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives on the street?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a group of mice doing?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a green care doing?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is lady gaga s song applause plays over a group of rodents doing?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a green care driving on?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are hamsters getting done at a salon?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is driving on a road?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"care\"\n  },\n  {\n    \"question\": \"what drives up to the red carpet?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what are hamsters getting their hair done at?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"salon\"\n  },\n  {\n    \"question\": \"what do a group of hamsters go to?\",\n    \"video_name\": \"video7334\",\n    \"answer\": \"saloon\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing outside while a young girl is sitting sad at a desk?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are a group of children playing in while a man sings?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"who plays guitar in the woods?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people in?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"who is sitting sad at a desk?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl sitting sad at?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what is group of children doing?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of children doing?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are children doing?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is music video doing?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a music video of a country style artist doing?\",\n    \"video_name\": \"video7335\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what does a hand write across a blue background as?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do the words appear on on blue and white back ground?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is showing a material science heat treatment?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does an animated arm write things down across?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are different topics being displayed as on blue and white surfaces?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what writes things down across the screen?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"who is writing something about material science?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an intro and partially explain the process of?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"treatment\"\n  },\n  {\n    \"question\": \"who is wring in the board?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wring in?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is man writing something about?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"material\"\n  },\n  {\n    \"question\": \"what writes across a blue background as music plays?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is black and white graphic doing?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a science that involves many different things?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"heat\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is an intro screen doing?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is this is a video for doing?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking about material science and some kind of treatment?\",\n    \"video_name\": \"video7336\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does another vehicle slowly draft the first vehicle from?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"rear\"\n  },\n  {\n    \"question\": \"what does another vehicle slowly draft from the rear?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a guy driving?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what comes up behind him?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what slowly drafts the first vehicle from the rear?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does a man in a jacket drive while another follows?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man in a dark canvas jacket driving?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a guy drive while another van comes up behind him?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a msn drive in order to conduct an experiment?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man in a blue jacket driving in?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is van?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"driving\"\n  },\n  {\n    \"question\": \"what does a european man drive away from on a large runway?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is talking about some accients?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man in a black jacket describing a feeling as he drive?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what is a guy wearing a jacket driving while talking?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what follows behind?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what is one man driving being followed by two other men in a different van?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"vanwhile\"\n  },\n  {\n    \"question\": \"what is a man in a blue jacket doing?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man talks about his doing?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man in a black jacket doing?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a dark canvas jacket doing?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who talks about his driving experience in a particular car?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains the ease of operation due to the vehicle s flat front in a moving vehicle?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"who is driving a vehicle while another vehicle slowly drafts the first vehicle from the rear?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives away from another vehicle on a large runway?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a car in order to conduct an experiment?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"msn\"\n  },\n  {\n    \"question\": \"what does a male driver cruise inside as a van follows behind?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who drives a car while another van comes up behind him?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is driving a vanwhile being followed by two other men in a different van?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving while another vehicle slowly drafts the first vehicle from the rear?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"how many people are driving vehicles on the road one is following the other?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who cruises inside a vehicle as a van follows behind?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what does the driver explain the ease of operation due to the vehicle s in a moving vehicle?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what are three people driving vehicles on one is following the other?\",\n    \"video_name\": \"video7337\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is the dogs doing?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is animated video cat and dog doing?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon of some of some doing?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon character bird doing?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many cartoon dogs are startled by a loud sound?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is talking?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what get scared?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"dalmation\"\n  },\n  {\n    \"question\": \"what does the dog discussing?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"pub\"\n  },\n  {\n    \"question\": \"what does a cartoon dog speak to?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is from a cartoon program?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"clipping\"\n  },\n  {\n    \"question\": \"what about dalmatians?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what speak to one another?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many cartoon dogs speak to one another?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is talking to a dog in a cartoon?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what did a few scare cartoon animals discuss?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"rumor\"\n  },\n  {\n    \"question\": \"what did a few scare discuss a a rumor?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are startled by a loud sound?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what speaks to another dog?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon character bird speaking with?\",\n    \"video_name\": \"video7338\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is been showed?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"what is there are fireworks doing?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"explode\"\n  },\n  {\n    \"question\": \"what are the fireworks are bright and the people doing?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is fireworks doing?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"explode\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is fireworks show with people doing?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is a fireworks display people doing?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a bird shown in?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what explodes in the sky?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"firework\"\n  },\n  {\n    \"question\": \"what does a firework explode in?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what are fireworks exploding in?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what do some fireworks burst in?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is shown in flight?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what display people cheering and firework description at the end?\",\n    \"video_name\": \"video7339\",\n    \"answer\": \"firework\"\n  },\n  {\n    \"question\": \"what is a man operating a car s?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"dashboard\"\n  },\n  {\n    \"question\": \"who describes in car honda audio system?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting in a car?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing the stereo?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing the inside specs of?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who reviews a honda?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a person sitting inside?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man sitting in?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man describing?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"stereo\"\n  },\n  {\n    \"question\": \"who does a guy review?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"honda\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is in the driver seat?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who give a describing about the car features?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is mad doing?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is sitting inside a car?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sits in the driver s seat of a car?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is operating a car s dashboard buttons?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a guy sit in s seat of a car?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"who explains some of the car s features?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a guy sit in the driver s seat of?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who points to things inside a car?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man operating s dashboard buttons?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7340\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who womens education?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about education?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman speaking to?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who talks about birthing?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when does a woman discuss?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is speaking to the camera?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks about girls and birth?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking about certain things?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"robbie\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"who discusses child birth?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is robbie doing?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is being interviewed in the room?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does lady talking about womens?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"what is in an interview a person in doing?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"advocate\"\n  },\n  {\n    \"question\": \"what is a woman talks about doing?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"birth\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman being interviewed in?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is 2 women doing?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who talks about birth being a life event?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when does a woman talk being a life event?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"birth\"\n  },\n  {\n    \"question\": \"what does a woman talk about birth being?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"who talks about education of woman?\",\n    \"video_name\": \"video7341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a hamster sniffing at a cage s cage then it s owner s?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a hamster sniffing at a cage s then it s owner s hand?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is a hamster sniffing at s cage then it s owner s hand?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is a rat with a black body inside of?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is some body tamming in a sophisticated manner?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"rat\"\n  },\n  {\n    \"question\": \"what is tamming the rat in a sophisticated manner?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is sniffing at a cage s cage then it s owner s hand?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"what is eating a feed in side the grill?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"rat\"\n  },\n  {\n    \"question\": \"what is sniffing around the door of it s open cage and is scared to come out?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"rodent\"\n  },\n  {\n    \"question\": \"what is looking out of an open cage door as a hand reaches out for it?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"what did cage door open by hand mouse explores human hand and stay8s in?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what did cage door open by mouse explores human hand and stay8s in cage?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what did cage door open by hand explores human hand and stay8s in cage?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what opened by hand mouse explores human hand and stay8s in cage?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is kept in the decorative place?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"rat\"\n  },\n  {\n    \"question\": \"who is a hamster sniffing at a cage s cage then it s s hand?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"owner\"\n  },\n  {\n    \"question\": \"what is a small black rodent in?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a hamster doing?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"sniff\"\n  },\n  {\n    \"question\": \"what is a small rodent doing?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"sniff\"\n  },\n  {\n    \"question\": \"what is a black rodent is in a cage and doing?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a rat doing?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a mice walking in a cage and doing?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a black hamster doing?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is the black mice doing?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is black mouse doing?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"sniff\"\n  },\n  {\n    \"question\": \"what opens?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is inside a cage?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"what is so comfort?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"rat\"\n  },\n  {\n    \"question\": \"what is a hamster sniffing at a cage s cage then it s?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"owner\"\n  },\n  {\n    \"question\": \"what is a black rodent in?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is a lab rat inside?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is the rat so?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"comfort\"\n  },\n  {\n    \"question\": \"what crawls out?\",\n    \"video_name\": \"video7342\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is two workers doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"attach\"\n  },\n  {\n    \"question\": \"what are a couple of men putting together a car in?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"factory\"\n  },\n  {\n    \"question\": \"what does a man glue different parts of?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who gluing different parts of a car?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are working on building something together?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a couple of men doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a factory with men doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is workers in a factory doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what do workers in a factory setting assemble?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"remodel\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are mechanics doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"glue\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"who narrates how a car is assembled?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who inspects a car interior?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cleaning a car?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making car?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are mechanics working on?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man inspect?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"interior\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man cleaning?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are a couple of men putting together in a factory?\",\n    \"video_name\": \"video7343\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is commenting about the wrestling?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"umpire\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is an umpire doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is an umpire commenting about?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what is boys doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what do kids practice?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two young men doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is wrestlers on mat doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"tumble\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are young boys doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"who is wearing a black hat?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the boys train for doing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two people wrestling on?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"who speaks about his students?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what did two teenaged boys wrestle during?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"when are fighting with each other?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are wrestling on a mat?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who speaks to the camera?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many man s are fighting with each other?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man speak to?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is interviewed?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in front of a building where people are practicing wrestling?\",\n    \"video_name\": \"video7344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is children are shown doing?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"become\"\n  },\n  {\n    \"question\": \"what is students engage in doing?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is students doing?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man describe?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"proces\"\n  },\n  {\n    \"question\": \"who discusses technology making learning interesting?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are children at?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what are students shown in?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who describes the process?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes how he runs his school?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"how many boys are sitting around?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are talking?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about how students really learn?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what do a group of students work at?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who is talking about making a group of people easier for kids to learn while scenes of a school are shown?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about making technology easier for kids to learn while scenes of a school are shown?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates the educational teaching methods at his school?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are children shown becoming acquainted with while a man describes the process?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who is speaking about how technology is helping the kids learn?\",\n    \"video_name\": \"video7345\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows several clips of different people?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do some people video conferencing as they watch?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what did a collection of videos set in?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"collage\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is five males doing?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a collage of different people doing?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a few men watching?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are a few men doing?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what do a bunch of boys watch?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what do guys at different locations watch?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who do people react to?\",\n    \"video_name\": \"video7346\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man discussing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who is showing his laptop?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is someone talking about?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"ipod\"\n  },\n  {\n    \"question\": \"who is discussing a laptop?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a computer?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a ipod?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about syncing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who ipod to computer?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what did woman using itunes ipod to?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is explaining how to do something on a computer?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explains how to hook an ipod up to a laptop?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did woman talking about connecting ipod to?\",\n    \"video_name\": \"video7347\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who talks about how to beautify a baby?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about something in a room?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explains how to use baby products?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about something in?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a woman talking about in a room?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a young indian girl talking about?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what seems to be happy explaining things here?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is a female seems to be happy doing?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a web show host talks about a video she doing?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a young indian girl doing?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is an asian indian woman wants to explain how to use baby products for beauty but gets distracted doing?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is explaining ways to use baby products for beauty after greeting the viewers?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about beauty products?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does the woman talk to?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking about relationships?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks to the camera?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking to the camera?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a young girl talk about?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what is a woman commenting on?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman speaking to?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is commenting on something?\",\n    \"video_name\": \"video7348\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man giving to a television program host?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what a gray haired man interviews else?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does comedy?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an english man do?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"how many guys sit across each other talking one guy talks about a woman?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guy talks do two guys sit across each other talking about a woman?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"how many men are sitting on chairs made of bound magazines talking with each other?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who chats with a man while seated on stacks of paper made into chairs?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what do two guys sit across each other talking about a woman?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who do two guys sit across each other talking one guy talks about?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving an interview to a television program host?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man with a british accent interviewing?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are speaking to each other?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men on a talk show doing?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man with a british accent doing?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are a talk show host and a man doing?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two guys sit across each other doing?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7349\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what did snake keep in?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what does person showing snake for?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a snake rest in?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"bucket\"\n  },\n  {\n    \"question\": \"who is looking at containers with snakes in plastic bins?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a snake sitting in?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"bucket\"\n  },\n  {\n    \"question\": \"what is sitting in a bucket?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"what does the man lift?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"lid\"\n  },\n  {\n    \"question\": \"how many snakes are shown in containers?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what rests in a bucket?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"what snakes in containers?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is in a plastic bin?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"what kept in a container?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a snake doing?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"who is showing snakes in boxes?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who snakes in containers?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who lifts the lid?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who snakes for the camera?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7350\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"when does a man perform?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"when is a man performing?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a guy dancing?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man acting out?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is acting out a scene?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is performing on a stage?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interacting with his shadow?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing some act?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who interpretive dance?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs on a stage?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what did a man performing interpretive?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who mono acting?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing on stage?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who preforms?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is a man interacting with?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a dancer doing?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is acting?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7351\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who kills many others?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a costume look out into?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what does another man in a rocky environment sit in a dark room wearing?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"collar\"\n  },\n  {\n    \"question\": \"who is running fast to escape from his opponents?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who has gray hair?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing to enemies in the mountain region in an english movie?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is playing in the screen?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a movie scene playing in?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a group of men walking through a forest as a man draw?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what does an older man have?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"how many guys are fighting with each other?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what are four guys doing?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is an older man has gray hair and beard doing?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"frame\"\n  },\n  {\n    \"question\": \"what is a movie scene doing?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a movie scene doing?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a dark forest and warriors doing?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a movie trailor doing?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who does a group of men with swords wish to speak to another man s?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"master\"\n  },\n  {\n    \"question\": \"what is attack the hero with the help of sword in the holly wood movie?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what is a guy in a black jacket doing?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is the team attack with the help of sword in the holly wood movie?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"hero\"\n  },\n  {\n    \"question\": \"who is doing fight to enemies in the mountain region in an english movie?\",\n    \"video_name\": \"video7352\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"what play being shown?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who minecraft?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what pans left?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who did minecraft library explore by?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what explored by player?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does a computer animation show a room and a human like figure in?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who uses a hammer?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a camera pans left and right a large room in a minecraft house then shows a character doing?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7353\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man showing the interior of?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man describe the interior of?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is in the car pushing buttons?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes the interior of a car?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing the interior of a car?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing about the features of the car?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person is in the car doing?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person in pushing buttons?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"detail\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who shows features of a car?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about cars?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man show features of?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who shows off a car?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does man show off?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is sitting in?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7354\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a scene from the preview of an upcoming disney movie doing?\",\n    \"video_name\": \"video7355\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what do a graphic with a dinosaur and hand advertise on screen?\",\n    \"video_name\": \"video7355\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what has a handprint inside of it?\",\n    \"video_name\": \"video7355\",\n    \"answer\": \"dinosaur\"\n  },\n  {\n    \"question\": \"what does a dinosor with green light and there say to save?\",\n    \"video_name\": \"video7355\",\n    \"answer\": \"dinosor\"\n  },\n  {\n    \"question\": \"what does a green dinosaur with a black handprint on it s?\",\n    \"video_name\": \"video7355\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what do a graphic with a dinosaur and hand advertise an upcoming movie on?\",\n    \"video_name\": \"video7355\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is outlined within the silhouette of a green dinosaur shape for a movie promotion?\",\n    \"video_name\": \"video7355\",\n    \"answer\": \"print\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is report doing?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is advertise doing?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"who is talking about the specs of a car?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing a car?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman advertising?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is advertising a car?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a vehicle with details on what come with it by?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"carfax\"\n  },\n  {\n    \"question\": \"who talks about a car?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what the features on a car?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a lady names the feature on?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car advertised for by a woman?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"sale\"\n  },\n  {\n    \"question\": \"who is a car advertised for sale by?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a short advertisement for a car that on?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"sale\"\n  },\n  {\n    \"question\": \"what is advertised for sale by a woman?\",\n    \"video_name\": \"video7356\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are two players playing on the court?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"who are having a great ralley in a professional tennis game?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many tennis players are having a great ralley in a professional tennis game?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many players are playing tennis match on the court?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many players battle furiously on tennis court for points?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is being highlighted there are kia car symbols all over?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many men are playing a tennis game?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is one person wearing a blue shirt playing against another person wearing a red shirt on the melbourne court?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"who are two tennis players having in a professional tennis game?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"ralley\"\n  },\n  {\n    \"question\": \"how many men compete in a game of tennis by volleying balls across a net on a court?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many tennis players are playing a very good match indoors?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does men s singles tennis is going on in?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what do men single is being played where the red shirt person is about to get a point?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"tournament\"\n  },\n  {\n    \"question\": \"what is a tennis match being highlighted there are all over?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"kium\"\n  },\n  {\n    \"question\": \"what are people playing it looks like an intense match?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what does men s is going on in the court?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what does a men s match taking place music is playing in the background?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"teni\"\n  },\n  {\n    \"question\": \"what are two players playing tennis match on?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is being played between two men?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are a two men playing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what does a men s is cheering?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who are playing a very good match indoors?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are two tennis players doing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"amaze\"\n  },\n  {\n    \"question\": \"what is a compilation of tennis matches doing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is two men compete in a game of tennis by doing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"volley\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is one person doing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a two men doing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt doing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two players doing?\",\n    \"video_name\": \"video7357\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is football?\",\n    \"video_name\": \"video7358\",\n    \"answer\": \"compilation\"\n  },\n  {\n    \"question\": \"what is football players doing?\",\n    \"video_name\": \"video7358\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7358\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video7358\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a vine compilation?\",\n    \"video_name\": \"video7358\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what shows several sports clips?\",\n    \"video_name\": \"video7358\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"who is playing sports video game?\",\n    \"video_name\": \"video7358\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows some indoor and out door games?\",\n    \"video_name\": \"video7358\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is a child boxing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"practise\"\n  },\n  {\n    \"question\": \"what is little kids doing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who did a man box with?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"spar\"\n  },\n  {\n    \"question\": \"what are kids and their dads doing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is fathers doing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who boxing with his child?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are preparing for sports?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are people training?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is boxing his father?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what are some guys practicing?\",\n    \"video_name\": \"video7359\",\n    \"answer\": \"marshal\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a green patterened shirt doing?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is there is a mature woman doing?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl and a bowl doing?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what does a woman hold up then points to different ingredients on a table?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what does a person pointing to different ingredients in white bowl on?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what is a woman showing shrimp and bunch of different other ingredients in to cook a dish?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who points to different ingredients that are in bowls?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who holds up an object then points to different ingredients on a table?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing shrimp and bunch of different other ingredients in order to cook a dish?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who lists the ingredients for a creamy and aromatic dish prawn etouffee?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who points to and names ingredients on a table for prawn etouffee?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are many bowls of herbs and spices on?\",\n    \"video_name\": \"video7360\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does a female pet?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what is a woman petting?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what does woman talk about?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what does the woman s hair was?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"auburn\"\n  },\n  {\n    \"question\": \"what does the woman s was auburn?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who did a redheaded showing off an athletic camel?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing with camel in sand?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman standing next to a camel s?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what does a woman petting the camel s?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a girl standing with camel in?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is a girl standing with in sand?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what did a redheaded woman showing off?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"who talks to a camel?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who s hair was auburn?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a camel caretaker showing to the camera?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what does a redheaded woman talk to?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"who is petting a camel?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what petting a camel?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is a woman with red hair kissing?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what does a girl show?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what does the woman s?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"auburn\"\n  },\n  {\n    \"question\": \"what is a camel caretaker doing?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl walking?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what is a woman with red hair doing?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a woman introducing?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a redheaded woman doing?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7361\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what does bill murray eat a ton of?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"mustard\"\n  },\n  {\n    \"question\": \"what do clips of bill murray on?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is cooking with david letterman?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"murrey\"\n  },\n  {\n    \"question\": \"what does bill murray drink directly from the jar?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"mustard\"\n  },\n  {\n    \"question\": \"what murray eats a ton of mustard?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"what does bill murray drink mustard directly from?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"jar\"\n  },\n  {\n    \"question\": \"what murray on talk shows?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"who is bill murrey cooking with?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"when are peoples enjoying?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"festival\"\n  },\n  {\n    \"question\": \"when is a person cooking?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are people cooking?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is very funny?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who is cooking on stage?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what murray drinks mustard directly from the jar?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"who is a man taking with another man and woman?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are clips from a tv show doing?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is bill murrey doing?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is bill murray doing?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a celebrity having on a talk show?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"how many men are cooking on a tv talk show?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who drinks from a bottle of mustard?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who is having fun on a talk show?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who is taking a selfie with another man and woman?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is acting goofy on the david letterman show?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"what is a comical clip doing?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7362\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who disassembles a gun?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking apart a firearm?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is assembling a gun?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man demonstrating with guns?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"skill\"\n  },\n  {\n    \"question\": \"who shows how to use a gun?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man disassemble?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man taking apart?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"firearm\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"handgun\"\n  },\n  {\n    \"question\": \"what is a man assembling?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is working?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing a handgun?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what man racks a pistol and loads ammunition into?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"magazine\"\n  },\n  {\n    \"question\": \"what is a man inserting into a gun?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"magazine\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is demonstrating his skill with guns?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who loads a clip into a pistol?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is inserting a magazine into a gun?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to load a gun?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has a gun on the table?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man inserting a magazine into?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7363\",\n    \"answer\": \"insert\"\n  },\n  {\n    \"question\": \"what is a woman on the street speaking of?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what describes about cleaning of surrounding based on men and women?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a lady with blue color dress talking about?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking about the pathetic situation of woman who lack primary facilities?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are walking on the wide street?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a woman on the street doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is video describes about cleaning of doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"surround\"\n  },\n  {\n    \"question\": \"what is a lady with blue colour dress doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a third world country doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"advocate\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a busy city street in far east is seen with people doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is indian women doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is with her hair pulled back wears a blue scarf looped loosely over a printed blue dress while doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is an idian woman doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is talking in the market?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a lady talking in?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"what is there is a family doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are there is rush city many people doing?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are more peoples going on?\",\n    \"video_name\": \"video7364\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is 3d animation of cupid doing?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a cupid s arrows doing?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are cartoon people doing?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are computer generated man and a woman doing?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"flirt\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do an old man and a woman find in a cafe?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what generated man and a woman are flirting?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what do an old man and a woman find love in?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"cafe\"\n  },\n  {\n    \"question\": \"what did cupid arrows hit a older man and women at?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"cafe\"\n  },\n  {\n    \"question\": \"who thrown a arrow on a man and woman?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what do an animated short of a man and women being shoot with?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"what do a 3d cartoon where an old man and woman are shot with cupid seem to fall in?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what is an old man and woman hit by while seated outside of a restaurant?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"what do a guy throw on a man and woman?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"what are eating at a restaurant?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon people eating at?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who s arrows hiting a older man and woman that fall in love with each other?\",\n    \"video_name\": \"video7365\",\n    \"answer\": \"cupid\"\n  },\n  {\n    \"question\": \"what is a game scene doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man keeps doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"smash\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is someone playing minecraft and doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is there are two people doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a few people doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is in this video a male screencaster doing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is someone building in minecraft?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man review?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does the player throw?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who do two players talk about?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is someone building something in?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who are people talking about?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who throws the box?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who is building something in minecraft?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are blocks placed in in minecraft?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are blocks placed in a field in?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"how many players talk about minecraft gameplay?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"where are blocks placed in minecraft?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a male screencaster narrating a minecraft game alongside another female screencaster in?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who reviews a video game?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who minecraft online?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7366\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing while there are women dancing?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing while various scenes are shown?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is singing and drivingin a musci video?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who kisses a man on his cheek?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do various scenes drive around?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who smiles?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what performs?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video7367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is video game teaser with an ominous doing?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there are characters from a video game doing?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video game man doing?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"footage\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a streamer doing?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a portrait placed before?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"structure\"\n  },\n  {\n    \"question\": \"what do a martial?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do a streamer waiting for to load?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what teaser with an ominous looking man?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who waits for his game to load?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"where does a mustachioed video game character look fiercely?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"what does a player wait for to load?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what man standing there and then a black screen?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is placed before a structure?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"portrait\"\n  },\n  {\n    \"question\": \"what does a mustachioed video game character look fiercely to?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what video game man standing there and then?\",\n    \"video_name\": \"video7368\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does the man talk about his laptop to?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking about opening a laptop case?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who analyzes a laptop?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is describing how to fix a computer?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working with a macbook pro?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his laptop to the camera?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who reviews his mac book pro?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is someone using?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what is a man opening?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what does a man work on?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what does a man analyze?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what does the man talk about to the camera?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who is opening a laptop?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who works on a laptop?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a laptop?\",\n    \"video_name\": \"video7369\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is opening a box of sun glasses?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who presents a girl with a present and a group of people are dancing on lawn chairs?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is giving sun glass to a woman?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man giving sun glass to?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a bunch of people dancing on?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are a group of people singing at?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a man opening a box of?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"what is a man giving to a woman?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who is giving a girl a gift?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are some guys singing together in a beach?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are many men and women dancing on?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are people singing?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are some guys singing a song together in?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are a bunch of people doing?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is boys and girls doing?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are many men and women doing?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a guy presents a girl with a present and a group of people doing?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7370\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many young men laugh?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what were two guys talking about the movie celebrities?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what ship revolving through a night sky?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what do two men talk in a room with a tv on?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what do the dorky looking hosts talk about?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is man having a conversation with his friend in?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do the men in the costumes talk about?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who is a shirt man talking with?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with a man?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"how many young men talk about an old television show?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are standing in a hallway talking about old television shows?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is having a conversation with his friend in a room?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a space ship doing?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"revolve\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the dorky doing?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what were two guys doing?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a tv shows review program hosts discuss about the performance and doing?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"stay\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a couple of men doing?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is two men discuss tv series brought back by fans doing?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many guys were talking something about the movie celebrities?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking about the star trek show?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a shirt man doing?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men are introduced their new software system?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a tv show review program hosts discuss about?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who does a tv show review discuss about the performance?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what are two men standing in talking about old television shows?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"how many men talk in a room with a tv on the wall?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young men talk in front of a camera about a television show?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7371\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who puts lip gloss on while music plays?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is teaching how to apply makeup?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a narrator describing in german?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"who shows some makeup and a candle?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is describing beauty products in german?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who reviews new beauty products?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a foreign speaking girl doing?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who reviewed beauty products?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is doing make up?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what do the girl review?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what does girl review?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what is a girl putting on?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"glitter\"\n  },\n  {\n    \"question\": \"who is showing some drink?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is putting on glitter?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a narrator doing?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7372\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what related with army persons?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is in military wear?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is military superior doing?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who gives orders?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what is kissing each other?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what does a solider give?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is giving command?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"what is army head giving?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"command\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who walks outside?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who walks forward?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who walks away?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"officer\"\n  },\n  {\n    \"question\": \"when clip with soldiers?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what do soldiers standign in listening to orders?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what is a soldier doing?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a movie clip doing?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a major doing?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"command\"\n  },\n  {\n    \"question\": \"what is a general doing?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who gives a speech?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"solider\"\n  },\n  {\n    \"question\": \"what are german soldiers lined up in while one officer walks away?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"formation\"\n  },\n  {\n    \"question\": \"who is walking in front of other soldiers?\",\n    \"video_name\": \"video7373\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who is playing a strategy game?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is running around trying to match to move on?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is played by people?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"computergame\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"strategy\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what clip showing here different charcters?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a football game?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person playing video game of?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"puzzle\"\n  },\n  {\n    \"question\": \"what is video game clip doing?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is playing a football computergame?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who try to navigate through a maze to a green door?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who did video game of guys running around dress as?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is playing video game of puzzle?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are characters running through a field in a football themed?\",\n    \"video_name\": \"video7374\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"what is a man explaining about?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is explaining about a thing?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about education?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who criticizes the current education system?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting at with a toy pig?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what is a man sitting at talking about the school system?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is talking while sitting at a table?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting at a table talking about the school system?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the school system?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting at a desk with a toy pig?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with a piggybank talks about education and doing?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"memorize\"\n  },\n  {\n    \"question\": \"what is a person at a office doing?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7375\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what do a man prepare in the rice cooker?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what is a man cooking in a rice cooker?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what does a man start the process of by adding chicken stock in a pan?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what does the person add the liquid to?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a person cooking on a bowel?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"who adds broth to a pot?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stir with the leveler?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the person add to the pot?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is being added to a soup pot?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"broth\"\n  },\n  {\n    \"question\": \"what is a person cooking a soup on?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"bowel\"\n  },\n  {\n    \"question\": \"what did a man cooking rice add to the pan?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who adds the liquid to the pot?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a chef pouring into a rice cooker?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is pouring chicken sauce into a rice cooker?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who prepare rice food in the rice cooker?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing the ingredients with wooden spoon?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking rice in a rice cooker?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a man just add broth is cooking rice in a rice cooker?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about cooking chicken stock in a rice cooker?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being stirred with a rubber spatula?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"broth\"\n  },\n  {\n    \"question\": \"who starts the process of a recipe by adding chicken stock in a pan?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man just add broth a man is cooking in a rice cooker?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what did a man just add a man is cooking rice in a rice cooker?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"broth\"\n  },\n  {\n    \"question\": \"who is preparing a very tasty and aromatic dish inside of a large pot?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explain and how is prepare the food?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is cooking a soup on a bowel?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person mixing the ingredients with?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is he doing?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what does a person add to a pot?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"broth\"\n  },\n  {\n    \"question\": \"what is in bowl doing?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does a person mix together?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"broth\"\n  },\n  {\n    \"question\": \"who mixes broth together?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do the person stir with?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"leveler\"\n  },\n  {\n    \"question\": \"what does a person add broth to?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who just added broth a man is cooking rice in a rice cooker?\",\n    \"video_name\": \"video7376\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing a story about rappers?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do young african american from interviewing two rap stars?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do young african american from complex news interviewing?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"who explains news about the music industry?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to a camera about a news story?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many rap stars do young african american from complex news interviewing?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who tells of some celebrity gossip concerning rap stars?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what news segment?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"culture\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man tells of some celebrity gossip doing?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"concern\"\n  },\n  {\n    \"question\": \"what are different people doing?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some journalist doing?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is young african american from complex news doing?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who reports on complex news?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is being covered up?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what are different people telling?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does a guy report on?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what are some journalist telling?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"rapper\"\n  },\n  {\n    \"question\": \"who are telling news?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"journalist\"\n  },\n  {\n    \"question\": \"what a pop culture news?\",\n    \"video_name\": \"video7377\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"who is playing soccer?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do soccer players play on?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"pitch\"\n  },\n  {\n    \"question\": \"what scoring goals?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are spectators watching?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a man kick?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who play on the pitch?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a soccer player kick?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who kicks a goal?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who scores a goal from half way across the field?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who kicks a goal from midfield in a soccer game?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"where are soccer players playing soccer?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what a soccer player scores a goal from half way across?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who are playing soccer on a field?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are some guys playing in a ground?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are soccer players playing soccer on?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is played while a soccer game is played?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are some guys playing football in?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a soccer game occurring with?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who kicks a soccer ball?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who placed a long shot goal?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is occurring with dramatic music?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who are soccer players playing on a field?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are spectators doing?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a soccer game doing?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"occur\"\n  },\n  {\n    \"question\": \"what are soccer players doing?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are teams doing?\",\n    \"video_name\": \"video7378\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is interviewing young boy?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is interviewing a young boy?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to a boy?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding a cup?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy holding?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"who is woman interviewing?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is a woman talking to?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is a woman interviewing?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a women interviewing?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who speaks to a child for an interview?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many people have a conversation on a couch?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is interviewed?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7379\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do girls massage?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what do two girls do?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"routine\"\n  },\n  {\n    \"question\": \"what does two women review?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"how many girls do beauty routine?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women reviews a cosmetic product?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a girl demonstrating for the face?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"who is showing some make up tips?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl demonstrating skin care for?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"how many women are applying a face mask?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is giving a beautiful face mask tips?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is demonstrating skin care for the face?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many girls are wearing oatmeal on their faces?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two girls wearing on their faces?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"oatmeal\"\n  },\n  {\n    \"question\": \"what are two women applying?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl with stuff on her face doing?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"care\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is young woman doing?\",\n    \"video_name\": \"video7380\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"when are group of children singing?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are the three teenagers singing on stage with focusing around two young girls and a boy?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"how many kids are performing a song?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what preforms a song on stage?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"when are the three teenagers singing with the camera focusing around teens?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many young people are singing on stage?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many kids are singing on a show?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what do two young girls and a boy sing?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"ballad\"\n  },\n  {\n    \"question\": \"when are the three teenagers singing with the camera focusing around two young girls and a boy?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a white boat on the thames?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"london\"\n  },\n  {\n    \"question\": \"what did a trio of young people audition on?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who singing in the stage?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"when do a boy sing?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are singing on stage?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a group singing?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are three kids performing?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are groups singing?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are three kids singing on?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is singing a song?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"when do teens sing together?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are three young people singing?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are the three teenagers singing on stage with focusing around teens?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a group of kids doing?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are a panel of judges doing?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a trio of young people doing?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"what are three kids doing?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"how many teenagers are singing on stage with the camera focusing around two young girls and a boy?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many teenagers are singing on stage with the camera focusing around teens?\",\n    \"video_name\": \"video7381\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what was people in the office something flushed down the toilet and a group called to come to back of?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what does a person flush a commode full of?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"gold\"\n  },\n  {\n    \"question\": \"what does child wait patiently in a doctor s?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"how many people sit in a room under a happy thanksgiving sign as a woman and girl exit a door?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does a young girl flush sever down the toilet?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"gold\"\n  },\n  {\n    \"question\": \"who flushing the toilet with bunch of fish inside it?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do three people sit in under a happy thanksgiving sign as a woman and girl exit a door?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a group of three people sitting in chairs as a man come into?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what did a person flush with bunch of fish inside it?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"toilet\"\n  },\n  {\n    \"question\": \"what does a young girl flush sever gold fish down?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"toilet\"\n  },\n  {\n    \"question\": \"what sit n the chairs?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is recording all the animals in his toilet?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person recording all the animals in?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"toilet\"\n  },\n  {\n    \"question\": \"who flushes a commode full of gold fish?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a girl in a blue shirt doing?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"flush\"\n  },\n  {\n    \"question\": \"what is a family sits in chairs doing?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is one man and women with there kid doing?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what sits in chairs waiting to see a bald man?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a scene doing?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl in a blue sweater enters a room and someone flushes orange fishes doing?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a group of three people doing?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who flushes sever gold fish down the toilet?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl in a blue sweater enter a room and someone flushes orange fishes swimming around in?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"commode\"\n  },\n  {\n    \"question\": \"what is three family members doing?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what does a girl in a blue sweater enter a room and someone flushes swimming around in a commode?\",\n    \"video_name\": \"video7382\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is a girl on the ground?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"fainting\"\n  },\n  {\n    \"question\": \"what point and faints?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman ping with?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"pin\"\n  },\n  {\n    \"question\": \"who is fainting on the ground?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl fainting on?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a girl prick on a spinning wheel?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"needle\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what did sleeping beauty prick in a clip from the movie maleficent?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what shows scenes from the disney movie maleficent?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"faint\"\n  },\n  {\n    \"question\": \"what is animation doing?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"who is ping with a pin?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a girl prick?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"who passes out?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who collapses?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is released?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"spell\"\n  },\n  {\n    \"question\": \"what does a girl prickle?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"who is fall down?\",\n    \"video_name\": \"video7383\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is scooby doo and shaggy fall into a huge hole with a beast doing?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are a man and a dog sleeping in?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what fall into a pit?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do cartoon characters fall into?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"pit\"\n  },\n  {\n    \"question\": \"what do the characters fall into?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is a cartoon of scooby doo doing?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is laying down?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is scooby and shaggy doing?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are a man and a dog doing?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what do a cartoon of scooby doo falling in?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"who chases scooby doo into a pit?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do characters call into in an animated television show?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"pit\"\n  },\n  {\n    \"question\": \"what does a cartoon hog chase scooby doo into?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"pit\"\n  },\n  {\n    \"question\": \"what do a scene from a scooby doo?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what did a man and a dog fall down into?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"who chases a man and a dog?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what fell?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what do and shaggy fall into a hole?\",\n    \"video_name\": \"video7384\",\n    \"answer\": \"scooby\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what does the camera zoom slowly on?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what zooms slowly on the rock?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what impacts on the moon?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"asteroid\"\n  },\n  {\n    \"question\": \"what did video showing space relate?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"who is talking about moon?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does video of asteroid impact on?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what is being shown from an impact?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"lunar\"\n  },\n  {\n    \"question\": \"what is a lunar rock being shown from?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"impact\"\n  },\n  {\n    \"question\": \"what does a man talk about over a slideshow of photos?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"lunar\"\n  },\n  {\n    \"question\": \"what related stuff?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did an asteroid that has fallen down from?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is it doing?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is scientist doing?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who talks about lunar rocks over a slideshow of photos?\",\n    \"video_name\": \"video7385\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a streamer doing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man provides a voiceover description of his actions while doing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is tv stream of a guy doing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who plays a video game where he fights a boss?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a boss level in a video game?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a man narrate?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what does the boy narrate?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a kid playing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who provides a voiceover description of his actions while playing a video game?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates his game playing?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who narrating a video game?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an online computer game?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man fighting in a game?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"bos\"\n  },\n  {\n    \"question\": \"who is talking while playing a game?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man fighting a boss in?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a streamer attacking s boss?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is attacking the game s boss?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"streamer\"\n  },\n  {\n    \"question\": \"what is a streamer attacking the game s?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"bos\"\n  },\n  {\n    \"question\": \"who is fighting a boss in a game?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what scene in which the character is getting down the step?\",\n    \"video_name\": \"video7386\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is blind mole rat doing?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what s of animals?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is running across the field?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is sitting in ground?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"rat\"\n  },\n  {\n    \"question\": \"what is blind mole rat sitting in?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is show as is a blind mole?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"growth\"\n  },\n  {\n    \"question\": \"what is with a growth is show as is a blind mole?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"antelope\"\n  },\n  {\n    \"question\": \"what is standing?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is video slideshow of various animals doing?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an animal running across?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is pictures of strange doing?\",\n    \"video_name\": \"video7387\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who demonstrates a cooking technique?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man preparing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a chef demonstrate?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"technique\"\n  },\n  {\n    \"question\": \"what are individuals cooking?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do chefs in the kitchen prepare?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"churro\"\n  },\n  {\n    \"question\": \"what do cooking show making?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"churro\"\n  },\n  {\n    \"question\": \"what is a man cooking in a kitchen on?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what show making masa para churros?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a man cooking in on tv show?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a cook pour some food from a pot onto?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"countertop\"\n  },\n  {\n    \"question\": \"what does a cook pour from a pot onto a countertop?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a cook pour some food from onto a countertop?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who pours out the contents of a pot?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who pours some food from a pot onto a countertop?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who pours a mixture out of a large cooking pot onto a counter?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pour a mixture out of a large cooking pot onto?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"counter\"\n  },\n  {\n    \"question\": \"who is cooking in a kitchen on tv show?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"steam\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is men and woman doing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are individuals doing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what are a group of chefs doing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a group of chefs doing?\",\n    \"video_name\": \"video7388\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who does a man speak to?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man enter?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who enters a room?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some people laughing inside?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who speaks to a woman?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man change?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"mood\"\n  },\n  {\n    \"question\": \"who looks concerned?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks in?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is talking with each other about something funny during breakfast?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is laughing while the young man looks concerned?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a japanese couple talking with each other about during breakfast?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is this is a video about a girl doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a japanese couple talking with each other about something funny during?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"breakfast\"\n  },\n  {\n    \"question\": \"what is a girl laughing and doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a japanese couple doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a short clip of an asian sitcom doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a video of a man and girl doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is an asian lady laughs in front of her computer before doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"scowl\"\n  },\n  {\n    \"question\": \"what is a woman won t tell a man what she s doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an asian person doing?\",\n    \"video_name\": \"video7389\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man giving running commentary of?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is playing a soccer video game?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is shown on the top corner?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"facebook\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is mana doing?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is discussing playing a soccer video game?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses long shots in a soccer video game?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving running commentary of soccer?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what looks very realistic?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who explains how to play a soccer game?\",\n    \"video_name\": \"video7390\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"dinosaur\"\n  },\n  {\n    \"question\": \"who is shown looking at a fossil excavation?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"research\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a scientist is shown doing?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a video about a man doing?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"examine\"\n  },\n  {\n    \"question\": \"what shows some natural habitats?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"what did a man looking at find?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"dinosaur\"\n  },\n  {\n    \"question\": \"who looks at bones?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"paleontologist\"\n  },\n  {\n    \"question\": \"who narrates about dinosaur bone digging?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is examining fossils of dinosaurs?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is digging up dinosaur bones?\",\n    \"video_name\": \"video7391\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a makeup tutorial?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who applies makeup?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is showing make up?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who demonstrates how to apply mascara?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman applying?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what does a woman give?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what does a girl apply?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a girl putting on?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"mascara\"\n  },\n  {\n    \"question\": \"who puts on makeup?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"hottie\"\n  },\n  {\n    \"question\": \"what is a woman putting on?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"mascara\"\n  },\n  {\n    \"question\": \"what does a hottie put on?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who applies mascara?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is doing makeup?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who is applying makeup?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting on mascara?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is putting on some mascara?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who make up?\",\n    \"video_name\": \"video7392\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who dressed in forest camouflage riding through the forest on an atv?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving in the hill?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man riding in the hill?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man riding a small vehicle in?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what is a man driving small vehicle in?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"who drives a camouflaged four wheel vehicle in a wet forested environment?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man dress in riding through the forest on an atv?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"camouflage\"\n  },\n  {\n    \"question\": \"what did a man dress in forest camouflage riding through the forest on?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"atv\"\n  },\n  {\n    \"question\": \"what an atv along a mountain road and over some big rocks?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is riding a small vehicle in the hill?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wearing fatigue riding on a dirt road?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"atv\"\n  },\n  {\n    \"question\": \"who is driving small vehicle in the hill?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man dress in forest camouflage riding through on an atv?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"who is riding a four wheeler in a wooded area?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drive a tractor in the forest?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person in a camouflage shirt pants and gloves and doing?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a army man doing?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man in camo clothes doing?\",\n    \"video_name\": \"video7393\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man talking on?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking about politics on the show beyond politics?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who speaks to the camera?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who talk about politics?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talk about something?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is an interview going on in?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"who is talking on a show?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is going on in a program?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what does a news reporter speak to?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a guest doing?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is asian man doing?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7394\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what robinson introducing a new group?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"smokey\"\n  },\n  {\n    \"question\": \"who performs?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what is talking?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is interviewed?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do smokey robinson introducing?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who performs next to a guitar player before being interviewed with the band?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"when do a group of person making music show?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are people singing?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are four male performers very patriotic about?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who are very patriotic about their country?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is playing music?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who are a group of young boys sitting with?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"what is a band sitting on being interviewed?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who then speaks a long with the other members of his band?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what is sitting on a rock being interviewed?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when do a group of people dance then answer questions afterwards?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many male performers are very patriotic about their country?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what is being interviewed?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are a group of young boys doing?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is smokey robinson doing?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7395\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what do game play of?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is kissing each other?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is screaming?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do boys play?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone aiming with?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who screams while playing a scary video game?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing an online shooter game while yelling?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"who is screaming while playing a video game?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is surprised and scared while playing a video game?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing how to play a game?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a scary game?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is aiming with a gun?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what play of zombie game?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone screams while doing?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"aim\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a teenage boy doing?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man is surprised and scared while doing?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what play nice to watch?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video7396\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who gives a lecture using a graph for reference?\",\n    \"video_name\": \"video7397\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a slide with graphs doing?\",\n    \"video_name\": \"video7397\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman gives a lecture doing?\",\n    \"video_name\": \"video7397\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a chart doing?\",\n    \"video_name\": \"video7397\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7397\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who explains the effects and disease causes by the drug usage?\",\n    \"video_name\": \"video7397\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"what is graphs doing?\",\n    \"video_name\": \"video7397\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"who teaches about the drug disease signature?\",\n    \"video_name\": \"video7397\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about his latest study based on facts?\",\n    \"video_name\": \"video7397\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a cook doing?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is man in red clothes doing?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man and a bowl doing?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is indian man in red shirt doing?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"who pours several herbs and spices into a large metal pot?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the chef put various food items into?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does an indian chef work on by adding ginger and garlic?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a person making some food inside of?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does the chef put into a pot?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a man combine several ingredients into a pan on?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is adding in the dish?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is idian chef adding in?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who does the man add into the frying pan?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"masala\"\n  },\n  {\n    \"question\": \"what does the man add some indian masala into pan?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"who mixes vegetables chili powder and cocunut powder into his dish?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who adds some indian masala into the frying pan?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who adds garlic chili powder and several other ingredients in his recipe?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who combines several ingredients into a pan on a stove?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts various food items into a pot?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who did chilly powder etc are added to the toast onions in the vessel by?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a man and a bowl mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a man and a bowl mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is teaching how to cook a dish while placing ingredients into a pot?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking vegetables in a pot?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows the viewers how to make a dish?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who works on a recipe by adding ginger and garlic?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who demonstrates how to prepare a dish that includes ginger curry paste and mint leaves?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what do a man and a bowl mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is making some food inside of a bowl?\",\n    \"video_name\": \"video7398\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what did a person knock on?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does asian guy turn off?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is some doing?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"who is going to sleep?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is some knocking at?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a man knocking?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a man sleeping in?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a man knock on before going to sleep?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a person turning off?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what does a boy then knock on?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who does a kid get freaked out by?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"brother\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a boy laying in?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a person lying on?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is knocking a wall?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who then knocks on the wall?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is turning off a light?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person put some sticky notes on?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is sleeping in a bed?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lying on the bed?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gets freaked out by his brother?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does man in bed knock on goes to sleep and is woken up by somebody in his room?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who knocked on the wall?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is laying in bed?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man laying in in the dark?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a man laying in bed in?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"who is covering glasses up while lying down on the bed?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who knocks on his wall before going to sleep?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getup for his friend?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who turns off light?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who knocks on wall goes to sleep and is woken up by somebody in his room?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is covering some up while lying down on the bed?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is laying in bed in the dark?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man in bed awakened by?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts some sticky notes on their wall?\",\n    \"video_name\": \"video7399\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what was the alligator doing?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an alligator and a group of people doing?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a crocodile still image doing?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a big crocodile weirdly doing?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a large aligator and a group of people doing?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a picture of a man doing?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is it was a photo of a crocodile and the peoples doing?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a group of people doing?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a homemade video doing?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do a group of people stand on beside an old car?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are a group of people and a crocodile being shown in?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"village\"\n  },\n  {\n    \"question\": \"what lays out in the sun on top of a log next to a river?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is shown while a group of people pose for a photo?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"aligator\"\n  },\n  {\n    \"question\": \"what was sitting by the side of the road as people posed for a picture?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"alligator\"\n  },\n  {\n    \"question\": \"what weirdly smiling?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what does a crocodile lay out in on top of a log next to a river?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"what weirdly looking to a unknown direction?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what does a crocodile still image sitting and persons standing photoes displaying on?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a crocidile on a rock and a group of people by?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do a group of people pose for?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what has a slideshow showing of sights of a tourist group seen smiles happily as it finishes?\",\n    \"video_name\": \"video7400\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a man makes his cat dance by doing?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is this is a video of a guy doing?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did little cat force to dance on?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man making on a hardwood floor?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who plays?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances with a cat?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making his cat dance on a hardwood floor?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a cat dance?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances with his cat?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes his cat dance by moving its front legs back and forth?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing with his cat?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making his cat dance?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what forced to dance on video?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is holding the front paws of a black cat?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man dance with?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a man dancing with?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does a man make by moving its front legs back and forth?\",\n    \"video_name\": \"video7401\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who shows how to take the siding off of a car?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"paste\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man shows how to take the doing?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a person is shown doing?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is putting an object in a car?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person applying onto a screw?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"glue\"\n  },\n  {\n    \"question\": \"what is glued into a metal piece both pieces are then attached to the back hatch of a vehicle?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"piece\"\n  },\n  {\n    \"question\": \"who is applying glue onto a screw?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who applies a gel to a car part?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is applying glue to a pipe?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pasting the machine for run?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a person applying glue onto?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"screw\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is fixing his car with a tool?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person shown working on?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person working on?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is using gum?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man fixing with a tool?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"gum\"\n  },\n  {\n    \"question\": \"what mechanic fixing parts?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man pasting glue in?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone putting in a car?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what is a man fixing his car with?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"tool\"\n  },\n  {\n    \"question\": \"what is a man applying glue to?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"pipe\"\n  },\n  {\n    \"question\": \"what is a man pasting for run?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is shown working on a car?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person apply to a car part?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"gel\"\n  },\n  {\n    \"question\": \"what is a man applying to a pipe?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"glue\"\n  },\n  {\n    \"question\": \"what is a man pasting in the car?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"glue\"\n  },\n  {\n    \"question\": \"what is a man pasting the machine for?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"who is pasting glue in the car?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to repair a car?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone putting an object in?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video7402\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a girl eating?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is the lady doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what does a woman eat?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl trying out?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is eating?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone filming?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is trying out food?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is eating food?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is about to try yamo?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the lady describing being made?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"gumbo\"\n  },\n  {\n    \"question\": \"who eats some food?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is describing the gumbo being made?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is teaching how to make a dish?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is filming food?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is trying a dish that includes fish and vegetables?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who tries a dish for the first time?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about what a certain dish is?\",\n    \"video_name\": \"video7403\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is car shown in?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is someone getting into?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is shown in the clip?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who enters a car?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone getting in?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is getting into a car?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person driving?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is sitting?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is smelling fumes?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man closing a car s?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is a person closing the door of?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is recording while sitting is car?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is closing a car s door?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing the inside of a car?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is closing the door of a car?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man enter?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is in a car?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is some one sitting and doing?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"hop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"complain\"\n  },\n  {\n    \"question\": \"what is a man closing s door?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone showing the inside of?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about car fumes?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getting in a car?\",\n    \"video_name\": \"video7404\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is at the beach you see a young man rub suntan lotion on young women and young women discuss doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a topless young man doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is people at the beach sittingstanding and doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what are the people doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a beach with lots of women and men doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"tan\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what are many peoples doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is some people are outside doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what are some people in a crowd doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who applies sunscreen to a woman in a bikini while a narrator discusses taboos?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a beach with lots of women and men tan on?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is a woman with a blue bikini on?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are group of people having nice time on?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a man rubbing on a girl in the beach?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"lotion\"\n  },\n  {\n    \"question\": \"what are some people in a crowd standing out?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what are relaxing on the sandy beach?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do men and woman discuss the advantages and perils of?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"toples\"\n  },\n  {\n    \"question\": \"who discusses taboos?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what does a narrator discuss?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"taboo\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are many peoples enjoying the sunny day in?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"when are group of people having on the beach?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"who do a woman in a bikini see rub suntan lotion on young women and young women at the beach?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discuss the advantages and perils of topless beaches?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is rubbing lotion on a girl in the beach?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a woman in a bikini see a young man rub on young women and young women at the beach?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"lotion\"\n  },\n  {\n    \"question\": \"when are many peoples enjoying in the beach?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what do girls in bikinis stand on while a woman talks?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do a woman in a bikini see a young man rub suntan lotion on young women and young women at?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are having nice time on the beach?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who stand on the beach while a woman talks?\",\n    \"video_name\": \"video7405\",\n    \"answer\": \"bikini\"\n  },\n  {\n    \"question\": \"what is dressed on a plate?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what did a serve apitizing dish on?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is sliced by a pizza cutter?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"what is a cake dressed on?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is slid onto a plate?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"who demonstrates a recipe?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what did a serve apitizing on the table?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is a pancake?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a skillet slid onto?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what does a chef demonstrate?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is the woman?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"what is prepared?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what does a person place in a pan?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is a tutorial doing?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is being turned over to cook in a pan before being served onto a plate?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"what is a fried pan of cheese and pizza placed on?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what did an instructional video of how to cook and cut?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"who places some food in a pan?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does some sort of cooked dish slide into before it is slid onto a plate and sliced by a pizza cutter?\",\n    \"video_name\": \"video7406\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"zoom\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man zooming a camera to?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"destination\"\n  },\n  {\n    \"question\": \"what do the man take one photo of from the highest place?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"industry\"\n  },\n  {\n    \"question\": \"what does a man narrate about the different types of settings offers?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a person taking around a place using video camera?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person taking video around using video camera?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who fixed camera on stand?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person explain how to make good picture?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"option\"\n  },\n  {\n    \"question\": \"who explains the option how to make good picture?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is zooming a camera to the destination?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a scenic view available through a camera while a man narrates about the different types of settings?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who take one photo of the industry from the highest place?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates about the different types of settings the camera offers?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking video around a place using video camera?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who demonastrates the different features on a camera?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is available through a camera while a man narrates about the different types of settings the camera offers?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"who adjusts the black camera buttons near the window?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a scenic view available through while a man narrates about the different types of settings the camera offers?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man zooming to the destination?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is explains about a new camera?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"capture\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person adjusting?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"zooming\"\n  },\n  {\n    \"question\": \"what does a man narrate about the different types of settings?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do a man capturing a building exterior in?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is adjusting the zooming?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a person fix on stand?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what did a person fix camera on?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"where is a man zooming a camera?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"destination\"\n  },\n  {\n    \"question\": \"who demonstrates how to set a camera for taking photos?\",\n    \"video_name\": \"video7407\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy do exercise body down hand upon floor displaying on?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who offers exercise tips?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the men continouing in the gymanasium?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"execise\"\n  },\n  {\n    \"question\": \"what is explaining a way to design?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what does a man lean against?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a man telling about?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what does a man offer?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who leans against the wall?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy do exercise body down hand upon displaying on screen?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is telling about a exercise?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy do down hand upon floor displaying on screen?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is doing some exercises in the beautiful gym?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person in blue shorts doing some exercises in?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who is describing how to do certain exercises?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is explaining a way to perform a more effective workout?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is the men continouing their execise in?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"gymanasium\"\n  },\n  {\n    \"question\": \"what gives instructions on integrating certain exercises into a workout?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what do a boy do exercise body down upon floor displaying on screen?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who doing exercise body down hand upon floor displaying on screen?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a woman in workout clothes doing?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is white words doing?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a male voice gives instructions on doing?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"integrate\"\n  },\n  {\n    \"question\": \"what is a asian trainer doing?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is list of exercise schedule someone off screen doing?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"guide\"\n  },\n  {\n    \"question\": \"what are a words doing?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a text display doing?\",\n    \"video_name\": \"video7408\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who howard hit a home run?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"ryan\"\n  },\n  {\n    \"question\": \"who try to catch the ball?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are shown?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what highlights?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a baseball game in?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what does a baseball player hit?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what do football players try to catch?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is in progress?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what are sports clips played with?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who hits a home run?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what did ryan howard hit?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what plays in different sporting events?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"crazy\"\n  },\n  {\n    \"question\": \"what are various sports clips playing on?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is being played during sports clips?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a bunch of small sport clips with songs doing?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is being played while a baseball game is in progress?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are various sports clips doing?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a video clip doing?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a football team doing?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is baseball players doing?\",\n    \"video_name\": \"video7409\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is vladimir putin in russia giving on tv?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who is talking in the bbc television channel?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wearing black color coat talking in?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"mike\"\n  },\n  {\n    \"question\": \"what are hearing while the main person is talking?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who translates?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man talking about developing new weapons?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"russium\"\n  },\n  {\n    \"question\": \"who is giving a speech on the stage?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks on the news about the fight against terrorism?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"vladmir\"\n  },\n  {\n    \"question\": \"who speaks from behind a white podium between two flags?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"vladimir\"\n  },\n  {\n    \"question\": \"what is vladimir putin talks about russia s policy in doing?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is there is a black suit man doing?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a nicely dressed man doing?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is russian president doing?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is russian president vladimier putin doing?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"hear\"\n  },\n  {\n    \"question\": \"what is a person in suit and tie doing?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"addres\"\n  },\n  {\n    \"question\": \"what is guy in suit and tie doing?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who vladimier putin discussing syrian conflict in a press confrence?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"who putin talking about how russia has demonstrated it s determination about fighting terrorism?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"vladimir\"\n  },\n  {\n    \"question\": \"who is talking about russia developing new weapons?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does vladimir putin talks about russia s in fighting terrorism while a man translates?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"policy\"\n  },\n  {\n    \"question\": \"what is vladimir putin doing?\",\n    \"video_name\": \"video7410\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the black gown wearing girls dancing is like as butter fly in the music party?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"gown\"\n  },\n  {\n    \"question\": \"what is good music troop delivering a program and the lady in?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"spirit\"\n  },\n  {\n    \"question\": \"who is singing while other person is playing a guitar?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a band performing at with a female lead singer playing guitar?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who sings about the lovers and the new marriage couples?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does avril lavigne play over a prom scene in a music video?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is performing at a school with a female lead singer playing guitar?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a woman with a bullhorn sit in front of lockers in a school hallway is performing on stage at a high school prom?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band with a female singer doing?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who performs a song in a school setting?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"where is woman dancing?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is a woman with a bullhorn sits in front of lockers in a school hallway next the band doing?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is in the music party the black gown doing?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is jolly good music troop doing?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what is a woman singing and doing?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"who is dancing each other?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is singing in a music video?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays music over a prom scene in a music video?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"lavigne\"\n  },\n  {\n    \"question\": \"who is dancing on the scene?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman singing?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is other person playing?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is woman dancing on?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is singing about partying?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is blonde woman playing?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when does a woman with a bullhorn sit in front of lockers in a school hallway next the band is performing at a high school prom?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7411\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a young man in black tshirt doing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in black dress doing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man explains the directions to a town where he went doing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is a man with black hair and a black shirt doing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is taking some photos?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with black hair and a black shirt discussing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"shopping\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what did a man stop to buy?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is trees on a mountain and a man doing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what did trees on a mountain and a man wearing a black long sleeved?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who says he is going to go to samokov to buy some stuff?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being shown talking about the town a man stopped at to pick up supplies on the journey he was on?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"who is talking in front of camera?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a male being shown talking about the town stopped at to pick up supplies on the journey he was on?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about he has visited and shopped in?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is a male being shown talking about a man stopped at to pick up supplies on the journey he was on?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what is a male being shown talking about the town a man stopped at to pick up supplies on he was on?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"journey\"\n  },\n  {\n    \"question\": \"who is wearing a black shirt?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stopped to buy stuff?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"visit\"\n  },\n  {\n    \"question\": \"what is a trees inside forest still picture shown on screen boy in black dress color cloth doing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a boy in black color dress doing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a guy with dark hair and doing?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who talks about visiting visiting a specific place to buy some things?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing in front of a white wall?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains the directions to a town where he went shopping with his team?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a city he has visited and shopped in?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy in black color dress wearing inside forest standing speaking displaying on screen?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what covers tree covered mountains as a young man talks about locations?\",\n    \"video_name\": \"video7412\",\n    \"answer\": \"fog\"\n  },\n  {\n    \"question\": \"where does matt damon and robin williams talking from a movie?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"how many guys are talking about something which is very important?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do one boys one in brown t shirt other in check speaking?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what did a young man and a man with beard having talking each other on?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"issue\"\n  },\n  {\n    \"question\": \"who is peaking with a boy in the office?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who try to talk to young guy in tshirt?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a young bou with black t-shirt doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a cool guy doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a guy doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a t-shirt guy doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"lessen\"\n  },\n  {\n    \"question\": \"what is man and boy doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is matt damon doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is matt damon and robin williams in a clip of good will doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"hunt\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"peak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man with a checkerd sweater doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"comfort\"\n  },\n  {\n    \"question\": \"what is a middle aged man doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy in brown t shirt and old man in check dress doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what do a boy in brown t shirt and old man in check dress speaking?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who talk to the guy in tshirt?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is a man telling about something that is not his fault?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speak with a man something?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two men discuissing about?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is not his fault?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"checkerd\"\n  },\n  {\n    \"question\": \"what is a checkerd sweater not?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"fault\"\n  },\n  {\n    \"question\": \"who is telling a younger man about something that is not his fault?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is matt damon and robin williams doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does matt damon and robin williams talking in a scene from?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does matt damon and robin williams talking in from a movie?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men is discuissing about some thing?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a man with a checkerd sweater?\",\n    \"video_name\": \"video7413\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman does strange doing?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman in a pink jumpsuit doing?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a female in a space age outfit crawling and doing?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who does crazy alien dance?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who teaches how to dance?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does strange dancing while on a children s program?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who demonstrates a crazy alien dance with a spaceship backdrop?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is exercising?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who exercises?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a woman in a pink jumpsuit crawling on?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does lady do?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"alien\"\n  },\n  {\n    \"question\": \"what does a woman dance on?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is doing a dance?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a crazy alien dance?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances on the floor?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking on feet and legs as well?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7414\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is a woman from a television show talking to about cooking?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what are some ingredients doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what show about cooking healthy food?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what are man and woman in black shirt doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are ingredients placed in?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what are the ingredients kept on?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a woman telling about?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in black concludes her interview with a chef in white doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"thank\"\n  },\n  {\n    \"question\": \"what is there are bowls and plates of food on the table in a kitchen as a woman from a television show doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the presenters doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cooking show about doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are two chefs doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who is telling about a cooking?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are man and woman in black shirt talking in?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are a male and female chef doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man talk about with a woman in black shirt?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is the chef interviewed by a lady in?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is the chef interviewed by in the kitchen?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"how many chefs are demonstrating how to cook with natural and local foods?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is going to make some dish in the kitchen show?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who talks about a recipe with a woman in black shirt?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what hosted by a man and a woman showing ingredients?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is interviewed by a lady in the kitchen?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what has a variety of salads been kept ready in?\",\n    \"video_name\": \"video7415\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"where is a man running around?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is explaining the solar system with balls?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains the size of interstellar bodies and distance?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates the size of the universe inside a soccer stadium?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"who shows the scale of the planets?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man running around on?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is playing with ball?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pointing at a bal?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who moves around a soccer field?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaining with balls?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"who is running around on a field?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did planets on a field use balls to demostrate?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"what bye showing size of the planets?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is bill bye doing?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man pointing at?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"bal\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person playing with?\",\n    \"video_name\": \"video7416\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are children recording themselves for?\",\n    \"video_name\": \"video7417\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"what is kids on a chair near a table doing?\",\n    \"video_name\": \"video7417\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy in black clothes doing?\",\n    \"video_name\": \"video7417\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video7417\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7417\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video7417\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what are a boy and a girl doing?\",\n    \"video_name\": \"video7417\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7417\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who speaks in front of an orange wall?\",\n    \"video_name\": \"video7417\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7417\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is two kids doing?\",\n    \"video_name\": \"video7417\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about the introduction of the latest technology in mobile phones?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a boy in black dress wearing speaking and two boys standing displaying on screen?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who is talking about there with showing some instances?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"iphone\"\n  },\n  {\n    \"question\": \"who do a man wearing black color dress ia talking with?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in black doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man with an accent doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is man with iphone doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is this man doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person with black shirt doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is an indian man doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a brown shirt doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is person in black shirt doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy in black dress doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in black on a colorful stage gives a lecture about and technology shows various people doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what is guy in black shirt doing?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is person in black shirt talking with in a office?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person in black shirt talking with other person in?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what does a man wearing a black shirt describe?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what does a man in black stand in front of colorful fabric during?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"what does a man in black on a colorful stage give about?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"what shows various people meeting each other with identifying words floating in front of them?\",\n    \"video_name\": \"video7418\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"where is a man singing with guitar?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is playing guitar according to the tune?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in a red hat playing while singing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing with guitar in open air?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar in the open area?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in a purple shirt and red hat singing into?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what do guy in tshirt and cap playing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man in a purple shirt and red hat playing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what do a man on stage in a red cap singing with?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person playing in the open area?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man singing with guitar in?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when is a person singing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who and cap playing guitar?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"tshirt\"\n  },\n  {\n    \"question\": \"what is a man singing with in open air?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when do a man playing guitar?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is playing and acoustic guitar?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who guitar on a stage?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what is a person playing according to the tune?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who and cap singing song over the mic?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"tshirt\"\n  },\n  {\n    \"question\": \"when do a man singing guitar?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do guy in tshirt and cap singing over the mic?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man singing and doing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young male doing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man in a red hat doing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man in red hat doing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man in a purple shirt and red hat doing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is man doing?\",\n    \"video_name\": \"video7419\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who are playing?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"guinea\"\n  },\n  {\n    \"question\": \"what made video of a woman presenting guinea pigs?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who uncovered a furry animal?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is in the bathroom?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"guinea\"\n  },\n  {\n    \"question\": \"what is a guinea pig in?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"what did the woman uncover?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"who does girl let go swimming?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"guinea\"\n  },\n  {\n    \"question\": \"what does woman show off?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did a pair of guinea pigs wrap in towels after?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"dry\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what are some guinea pigs doing?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is home made video of a woman doing?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is girl lets her guinea pig go doing?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is animals doing?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7420\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman hitting?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"button\"\n  },\n  {\n    \"question\": \"who sings on a tv show?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is a girl singing roar?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing roar on a stage?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings for judges on a show?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who sings on a television show as judges listen?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl singing on a stage?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"roar\"\n  },\n  {\n    \"question\": \"who roars a song?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who accepts a song?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"what does a girl singing on the voice and show?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who performs on the voice?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a little girl roar?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is hitting a button?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a judge accept?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when are kids performing?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a little girl perform on?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sings on competitive tv show?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a child singing show in?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video7421\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who is slicing peppers in a kitchen?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cooking food using chocolate?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who makes an infusion?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what peppers being chopped?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"chilli\"\n  },\n  {\n    \"question\": \"what is a person cooking using chocolate?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a chef make?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"infusion\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone slicing peppers in?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does chilli pepper being thrown into with cream and vanilla?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a cook doing?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a food doing?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who explains quickly how to make a meal?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who hypes the audience with glimpses of future meals?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what peppers being thrown into a pot with cream and vanilla?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"chilli\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7422\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a young woman doing in a room?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what does a pretty young woman give makeup and selfie taking to viewers?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"advice\"\n  },\n  {\n    \"question\": \"what is a woman with a low cut dress showing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what do a woman in a blue dress holding?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a woman with blonde hair singing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a young woman doing selfie tutorial in?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is blonde woman in blue dress talking near?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who talks about how to take a good selfie?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing selfie tutorial in a room?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there is a woman in blue doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a blue dress doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl in a low cut blue top doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the woman in blue dress with phone in her hand doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl in blue dress doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman in a blue shirt discusses selfies while doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman in a skimpy blue top talks while doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is blonde woman in blue dress doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is fanlala is the source for original teen entertainment news doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a woman with a low cut dress doing?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is the source for original teen entertainment news covering celebrities movies and music?\",\n    \"video_name\": \"video7423\",\n    \"answer\": \"fanlala\"\n  },\n  {\n    \"question\": \"who is sitting on a bench talking?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk to the camera from?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"who is talking at a bus station?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking in a foreign language?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does video on rahul gandhi s?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man waiting at?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what is a man talking into?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking into the camera?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is waiting at an airport?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk to from a bench?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who talks to the camera from a bench?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting on talking?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what is a man speaking on in hindu?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is indian doing?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man on a bench doing?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"who is a man speaking on a bench in?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"hindu\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking on a bench in hindu?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man at a train station doing?\",\n    \"video_name\": \"video7424\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who gives a speech to a crowd?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is interview regarding christian a scene of?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"horror\"\n  },\n  {\n    \"question\": \"what is a woman addressing a crowd about?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what does a man on cbn describe?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"marriage\"\n  },\n  {\n    \"question\": \"what marriages with video of a rally?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a church protest a scene of?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"horror\"\n  },\n  {\n    \"question\": \"who reports on a church protest?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"who is addressing a crowd about family?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a scene of horror movie?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who discusses christian issues?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking on a news program about marriages and the christan church?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wearing glasses?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a short cbn news blog doing?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"addres\"\n  },\n  {\n    \"question\": \"what is christian doing?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is interview doing?\",\n    \"video_name\": \"video7425\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what show with monsters?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is holding an angry piccolo?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what fights off another one?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon giant fight off?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"what is someone holding?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"piccolo\"\n  },\n  {\n    \"question\": \"who fight each other?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"who shakes?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is being held back?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"dragonball\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is fighting?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"alien\"\n  },\n  {\n    \"question\": \"what is enacted?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are fighting?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is dragon ball z episode of one monster doing?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is an alien doing?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7426\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is driving around on the white sand?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a dome in?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is on the beach?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who gives statistics and fun facts?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is water on?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do pictures play on?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is in the sand?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"dome\"\n  },\n  {\n    \"question\": \"what is shown while a narrator gives statistics and fun facts?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"landmark\"\n  },\n  {\n    \"question\": \"what do homes in the desert an ocean view?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what is slideshow presentation of places in tunisia with a male narator doing?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is views of tunisia coupled with a speaker doing?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"suggest\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is danger dolan doing?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about a tourist destination while pictures play on the screen?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what coupled with a speaker suggesting the desirability of visiting there?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"tunisium\"\n  },\n  {\n    \"question\": \"what are some scenes of a desert area being shown out?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who is presenting some photos from different places?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what made of mud and other desert images of dry and hot conditions?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what dolan talking about the tunisia salt flats?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"what do some sand mountain near the beach and some wheels mark on?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what does the channel holder discuss parts of tunisia on a top ten video by?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"who discusses the threat of terrorism and how one might want to visit tunisia anyway?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what discusses parts of tunisia on a top ten video by danger dolan?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what is a vehicle doing?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7427\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a girl play some games in?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"who is sliding down a play slide?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who completes obstacle course?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"who is playing simple games?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a kid sliding down?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"who is in a bounce house?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is enjoying a lot?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is on a slide?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does girl complete?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"obstacle\"\n  },\n  {\n    \"question\": \"what is a girl enjoying?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"lot\"\n  },\n  {\n    \"question\": \"what is a girl on?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a girl playing?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"simple\"\n  },\n  {\n    \"question\": \"who carries?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who enjoy playing?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is sliding?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is sitting on an inflatable slide?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what does a girl drop on a spoon outside?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what is a girl enjoy doing?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"who is going down a slide the carrying an egg on a spoon?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who drops an egg on a spoon outside?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who slid down a bouncy house slide?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a kid have to carry through an obstacle course?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who plays some games in a yard?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who has to carry an egg through an obstacle course?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7428\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman holds up an earring while doing?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what does a woman show?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who talks about the size of an earring?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who looks at a earring at a mall?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is female is seen here doing?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is female seen here showing?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who tries on a way to big earring?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who shows a craft?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding ear rings?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"earring\"\n  },\n  {\n    \"question\": \"who is making a joke about a large earring?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who holds up an earring while talking about it?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding earrings up in a store?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman making about a large earring?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"joke\"\n  },\n  {\n    \"question\": \"who is talking about a specific product?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who gets excited about giant earings?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a girl hold heavy earrings up to?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"ear\"\n  },\n  {\n    \"question\": \"who is talking about large earrings?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about an earring?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman hold up while talking about it?\",\n    \"video_name\": \"video7429\",\n    \"answer\": \"earring\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is man in white shirt doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a man in white shirt doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is there is a white shirt man doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man is explain something doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a man pointing at multiple sections at on the wall?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who is explaining how circuits work together?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains a paper cutting which is pasted on the board?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a diagram to show the different components of a computer chip?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explain something drawing on the screen?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the features of a transistor he has designed?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"who is pointing at multiple sections at a picture on the wall?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man using to show the different components of a computer chip?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"diagram\"\n  },\n  {\n    \"question\": \"what is a man in white shirt explaining showing the board?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man pointing at multiple sections at a picture on?\",\n    \"video_name\": \"video7430\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what did previous to the publication of luna report nasa launch in 1965?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"operation\"\n  },\n  {\n    \"question\": \"what did the technical report for the chronologcal catalog of report?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"lunar\"\n  },\n  {\n    \"question\": \"what does text appear on a white sheet of paper is getting larger?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who talks about the publication of a nasa technical report?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what appears on a white sheet of paper the text is getting larger?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man voice doing?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a male voice over describes a matter doing?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"concern\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a paper with doing?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what does a nasa technical report report?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"lunar\"\n  },\n  {\n    \"question\": \"who discusses a nasa operation in 1965?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is telling some thing in the scene?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is person recording some cards from?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"nasa\"\n  },\n  {\n    \"question\": \"who talks about nasa and moon anomalies?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what over describes a matter concerning nasa?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a man showing from nasa?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what does a man discuss in 1965?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"operation\"\n  },\n  {\n    \"question\": \"who is recording some cards from nasa?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man showing a report from?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"nasa\"\n  },\n  {\n    \"question\": \"who is showing a report from nasa?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a close up of a report cover move around on?\",\n    \"video_name\": \"video7431\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is somebody exploring?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"graph\"\n  },\n  {\n    \"question\": \"what excel or a similar program?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"microsoft\"\n  },\n  {\n    \"question\": \"what is a page doing?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a person on the computer doing?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is somebody doing?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"graph\"\n  },\n  {\n    \"question\": \"what is a chart doing?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what has been displayed?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"what do a chart showing?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"who is doing work on a spreadsheet?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing on a spreadsheet?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who is showing computer application?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing work on?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"spreadsheet\"\n  },\n  {\n    \"question\": \"what is exploring a bar graph?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"what is shown in the video?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"graph\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"what do lists and bar graphs indicate?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"what is a graph shown in?\",\n    \"video_name\": \"video7432\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is spiderman doing?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is spider man doing?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is a superhero doing?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a man is outsie doing?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who holds his dead girlfriend?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"parker\"\n  },\n  {\n    \"question\": \"who does peter parker hold?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"girlfriend\"\n  },\n  {\n    \"question\": \"who is dead?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is carrying a lifeless woman in a movie?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is outsie holding a girl who is unresponsive?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is touching a woman that is laying on the ground?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who grieves over the loss of gwen stacy from the amazing spiderman 2?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"parker\"\n  },\n  {\n    \"question\": \"who lays lifeless in the mans arms?\",\n    \"video_name\": \"video7433\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are lots of people doing?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is group of workers doing?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is advertisement of netri pani puri shop doing?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"focu\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where are people getting street food?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"indium\"\n  },\n  {\n    \"question\": \"what are men serving food on?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are men serving on the street?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"where is food shown?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"indium\"\n  },\n  {\n    \"question\": \"who taste station street indian food?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"netrus\"\n  },\n  {\n    \"question\": \"what is served with a ladle?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what looked?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are people getting street food in?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"indium\"\n  },\n  {\n    \"question\": \"what is shown in india?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are men cooking outside?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is street food served with?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"ladle\"\n  },\n  {\n    \"question\": \"what is food shown in?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"indium\"\n  },\n  {\n    \"question\": \"what are men preparing?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what tasted delicious?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are people getting in india?\",\n    \"video_name\": \"video7434\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are young men doing?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is students doing?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are students doing?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man giving?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what do young people talk about from their school?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"aid\"\n  },\n  {\n    \"question\": \"what do young people talk about financial aid from?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what is a young man talking into?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who talks about something?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking inside a building?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wearing a gray shirt?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving an interview?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are students talking about?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"university\"\n  },\n  {\n    \"question\": \"what is a man talking inside?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what does a boy talk about?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some persons giving?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"who is talking into the camera?\",\n    \"video_name\": \"video7435\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man shooting at another man?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is a man shooting a gun at?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting a gun at someone?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots another man with a gun?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots a gun in a movie?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots another man in the face?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting a gun at another man?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man with a gun firing a gun at another man s?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a man shooting at someone?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is being shot in the face?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man shooting a gun at?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who reloads a rifle?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots another man?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does man holding a gun shoot?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man being shot in?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who gets shot in the face?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fires a gun?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man reload?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"rifle\"\n  },\n  {\n    \"question\": \"what does a man get shot in?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what does a man fire?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a series of clips from movies doing?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man with a gun doing?\",\n    \"video_name\": \"video7436\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what are butterflies doing?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"flatter\"\n  },\n  {\n    \"question\": \"what is a video game backhoe doing?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what is a cartoon of a construction vehicle digging and insects doing?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a cartoon video of butterflies doing?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cartoon excavator doing?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what is a cartoon crane doing?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon showing picking up dirt?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is being presetned?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do two friends discuss?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is digging?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what backhoe digging?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many friends discuss a show?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are some butterflies coming out from?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"bulldozer\"\n  },\n  {\n    \"question\": \"what is showing a machine picking up dirt?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who digging up dirt with butterfly images shooting across the screen?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"excavator\"\n  },\n  {\n    \"question\": \"how many guys critique a machine in a cartoon video?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did an animation with butterflies comming out of?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"bulldozer\"\n  },\n  {\n    \"question\": \"how many men talk then a tractor with butterfly and bee images?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is shown in front of butterflys?\",\n    \"video_name\": \"video7437\",\n    \"answer\": \"excavator\"\n  },\n  {\n    \"question\": \"who is shopping for toys?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is close-up of girls doing?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman in a store doing?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what does a doll have?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is displayed?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what does girl talk about?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"who looks at vampire dolls?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks about toy doll?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does girl look at?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"vampire\"\n  },\n  {\n    \"question\": \"who videos dolls in a toy store?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is looking at different toys in a store?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is shopping for dolls in a toy store?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who describes different toys in a toy aisle?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what runs down the street?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what has purple hair?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"what does a dog run down?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do scene from a reality tv show at?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"who is in the toy aisle at the store?\",\n    \"video_name\": \"video7438\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a man playing very well?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"fiddle\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"who is playing the fiddle?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays the violin in a band?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the violin on stage?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man playing the violin?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man playing on stage?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"who plays a fiddle?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing violin?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the violin?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays an instrument?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a violin very well?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a violin?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the violin?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a violin?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the boys doing?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man with an afro doing?\",\n    \"video_name\": \"video7439\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who explains how to fold a piece of paper into a specific shape?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to fold a white piece of paper into an airplane?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing how to fold a piece of paper?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a paper for paper craft?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make a paper air plane?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is folding paper on a table?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to fold paper?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person folding paper on?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is someone folding a paper for?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone for paper craft?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person on a table?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is teaching origami?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a paper airplane?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what folding up a paper plane?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is white paper folded into?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what someone folding up?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person teaching?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is a person?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone folding a piece of?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is folded into an airplane?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7440\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a man giving an interview about?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what people sitting around?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"israeli\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewed by several reporters?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reporting a news in a tv channel?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is giving an interview about the war?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did news coverage of a meeting to plan operations to liberate territory occupy by?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"isreal\"\n  },\n  {\n    \"question\": \"who talks about a liberation group in israel?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who speaks to a military person in front of a large crowd?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a news reporter reporting in a tv channel?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what cast on a military group?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who talks about unrest?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who are a group of people listening to speak?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses infiltrating israeli military checkpoints?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are military figures doing?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is group of israeli people doing?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a news reporter doing?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a military man discusses doing?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"infiltrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7441\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what a man kisses a woman and many people dance around?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who is a man kissing s neck while a fire burns outside?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man with graying temples kisses a woman on?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"neck\"\n  },\n  {\n    \"question\": \"what are a man and woman in while people dance around fire?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is kissing a woman s neck while a fire burns outside?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman attacked in while people dance around a fire?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what ride and a man kissing all over a woman?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"amusement\"\n  },\n  {\n    \"question\": \"what do a woman with a red dot is asleep in?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what burns outside?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what can t tell what it is about?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do people dance around?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a woman lying down in?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is resisting a mans affections?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is lying down in a floor?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a tamil movie scene playing in?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is a man kissing a woman s while a fire burns outside?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"neck\"\n  },\n  {\n    \"question\": \"what does a man kisses a womans neck as a group play around a fire?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a man kisses a womans neck as a group play music around?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a man with doing?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what is a movie scene doing?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is a amusement park ride and a man doing?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"where is a tamil movie scene playing?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a tamil movie scene doing?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what are dancers in a foreign country doing?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is attacked in a bed while people dance around a fire?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who kisses a woman and many people dance around a large fire?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being harassed while outside there is crowd dancing around the fire?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"where do a woman with a red dot is asleep?\",\n    \"video_name\": \"video7442\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who plays trove while commentating?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man playing a video game cross?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown with commentary over top of it?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who narrates as a video game is shown?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates his video game streaming experience?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a computer game?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who narrating his playing of a video game?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man narrates his video game doing?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is a man plays trove while doing?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the robot doing?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is this is someone doing?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video7443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is prisoners doing?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is woman in red shorts doing?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is commandos doing?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a woman with a hammer runs in a room of people in gray doing?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a big group of white bald people doing?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who are a big group of white bald people listening to on a wall?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running by holding something?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a hot blonde girl running with hammer in?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what do men watch while a woman runs?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are men watching a man speak on?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who are men watching speak on the screen?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a big group of white bald people listening to a man on?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what do a clip showing a woman running with a hammer in?\",\n    \"video_name\": \"video7444\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is talking about a video game?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining video game?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone explaining?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is riding a car?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person riding?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person drive in a video game?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining features of while driving?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is explaining features of a car while driving?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who drives a car in a video game?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7445\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"when is a clip from a music video involving the reggae artist shaggy?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"date\"\n  },\n  {\n    \"question\": \"who sings to a woman in a music video?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing about a woman?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man singing to a woman at?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who is singing a song in a music video?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a man singing to at a restaurant?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a jamaican music video doing?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is it is a clip from a music video doing?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is singer singing?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is a man singing to?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man singing about?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who is singing to a woman?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing to a woman at a restaurant?\",\n    \"video_name\": \"video7446\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon character on a slightly sped up video?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon figure with a black pen?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a picture on a piece of paper?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a boy cartoon?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who draws a character?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is drawing something?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a picture?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing a man?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the person draw on?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who does an artist draw?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who does a person draw?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is a person drawing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone drawing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who is drawing a picture of squidward?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing squidward?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man drawing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is the person drawing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"sketch\"\n  },\n  {\n    \"question\": \"who is a person drawing on a slightly sped up video?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is drawing a sketch?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person drawing a picture of?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who is showing how to draw a cartoon character?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an artist works on doing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person drawing?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who works on drawing squidward?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who drew on the paper?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who draws a cartoon character?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person drawing with a black pen?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a person drawing on a piece of paper?\",\n    \"video_name\": \"video7447\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a thick raw slab of chuck roast resting on a plate on?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who points at a piece of meat on a plate?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man seasons a large piece of that is on the plate?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man seasoning a piece of decribing a recipe made with steak?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is showing the perfect looking meal with meat?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a thick raw slab of chuck roast resting on on the table?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is person showing the perfect looking meal with?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does the person sprinkle on to the meet?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"seasoning\"\n  },\n  {\n    \"question\": \"who instructs how to apply a dry rub?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does a man point at a piece of meat on?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is poured on the meals?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"who sprinkles seasoing on the red meat?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sprinkles the seasoning on to the meet?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes a pot roast recipe he makes in a slow cooker?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who seasons a large piece of meat that is on the plate?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is seasoning a piece of meat decribing a recipe made with steak?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being sprinkled on a raw chuck roast on a white plate plate and a table with a black and white gingham checked table cloth?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what sits atop a plate on a tablecloth while the chef instructs how to apply a dry rub?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"steak\"\n  },\n  {\n    \"question\": \"who is presenting the red meat which is going to be cooked?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a slab of meat doing?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man describes how the seven bone chuck roast gets its name and applies salt and pepper as the first step in doing?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a thick raw slab of chuck roast doing?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what is the person sprinkles the doing?\",\n    \"video_name\": \"video7448\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"when is a man in a suit giving a crash course?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"who gives a lecture about latin american society and who controls it?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does a man in a suit talk rapidly starting with the spanish crown?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"what is a man in a suit giving on world history?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"course\"\n  },\n  {\n    \"question\": \"who sits at the desk and talks?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy in glass and coat doing?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is bunch of cartoon characters doing?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is an animate video intro leads into a guy doing?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is intro to a youtube video where a man in glasses doing?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some cartoon of a person doing?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man in a grey jacket and light colored shirt doing?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is i see a man with glasses doing?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a man in a suit talks rapidly about history doing?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a spokesperson doing?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who flips around in the dark space as the man sits at the desk and talks?\",\n    \"video_name\": \"video7449\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are volleyball players doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"return\"\n  },\n  {\n    \"question\": \"what is a girls volleyball team playing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a volley ball team pass back and forth?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"skill\"\n  },\n  {\n    \"question\": \"what is teenage girls doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girls volleyball team doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some girls doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of of volleyball player playing doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a girls volleyball game one team has blue uniforms the other has red alot of people doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a team of girl volleyball players doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"collect\"\n  },\n  {\n    \"question\": \"what is several girls doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is in a gym a volleyball game is in progress and the team in purple uniforms doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what is women s volleyball match indoor gymnasium doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a girls in blue color dresses players doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is bunch of volleyball players doing?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is in progress and the team in purple uniforms winning a big point in a gym?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a volleyball game in progress and the team in purple uniforms winning a big point in?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what do a team of girl volleyball players collecting hitting in an indoor stadium?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"superb\"\n  },\n  {\n    \"question\": \"what are some girls playing volleyball in at wisconsin?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what saves in a gym one side of a girls?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what are some girls playing in a gym at wisconsin?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what are some girls playing volleyball in a gym at?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"wisconsin\"\n  },\n  {\n    \"question\": \"what are some girls playing against each other?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what do a girls volleyball team scores a point during?\",\n    \"video_name\": \"video7450\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"how many people are hiking up the snowy side of a mountain?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men going on in nature on the side of a hillforest?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who found a river?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what did two mountain climbers find?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is a photo of a forest showing a thing out?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who walks through a icey mountain?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"how many men are walking in the big mountain?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are going on snowy water in nature on the side of a hillforest?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many mountain climbers found a river?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a tall green hill being filmed by outside?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when are some people hiking in nature?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what is a photo of a forest showing out side?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what are some people hiking in during the day?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"nature\"\n  },\n  {\n    \"question\": \"what does a forest of green trees surround?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"valley\"\n  },\n  {\n    \"question\": \"how many mountain climbers walks through a icey mountain?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"hike\"\n  },\n  {\n    \"question\": \"what are a picture of a lake and natural scene doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a trees and persons doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a photo of a forest doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"hike\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7451\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is talking about kidney failure?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being interviewed about his family?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about kidney failure?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man giving about his family?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who talks about kidney failure?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about having kidney failure?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about why he appreciates life?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving interview about his family?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his trouble with kidney failure?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for an interview?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about with kidney failure?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"trouble\"\n  },\n  {\n    \"question\": \"what does a man talk about his trouble with?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"failure\"\n  },\n  {\n    \"question\": \"who is giving a speech?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man giving interview about?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a bald brown-skinned man doing?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about his family?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man talk about?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"failure\"\n  },\n  {\n    \"question\": \"what is a man being interviewed about?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is someone giving?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a man explaining about?\",\n    \"video_name\": \"video7452\",\n    \"answer\": \"failure\"\n  },\n  {\n    \"question\": \"what is a basketball player doing?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a basketball player jumping and doing?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who jumps high?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is video of a basketball player doing?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what the backboard?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what dunk?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is touching a basket ball post in a basket ball court?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a sports man doing?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"excise\"\n  },\n  {\n    \"question\": \"who is practicing sports?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who test his vertacle jump?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is doing excise?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a basketballer touches the top of?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"who jumps and touches the backboard?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is trying to touch the top of a basketball backboard?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps to the top of the hoop board?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do a basketball player test?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"vertacle\"\n  },\n  {\n    \"question\": \"what touches the top of the board?\",\n    \"video_name\": \"video7453\",\n    \"answer\": \"basketballer\"\n  },\n  {\n    \"question\": \"what was marked as active?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"volcano\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what is someone using?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does a man explore?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what is a person looking at?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"map\"\n  },\n  {\n    \"question\": \"who is someone showing?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is using a computer program?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is looking at a map?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who searches through a map online?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing google earth?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explores google maps?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man using to explain the use of a generator?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"who is using google earth to explain the use of a generator?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what explanation?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"who is showing video graphics?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video of someone doing?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone of the computer doing?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7454\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what did a woman in a black shirt season meat in?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what did a woman in a black shirt season in a kitchen?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is added on the meal?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"what is salt added on?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is a girl in black dress and a meat doing?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"sprinkle\"\n  },\n  {\n    \"question\": \"what is a dark haired lady doing?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman in a black shirt doing?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is a woman prepares a meal doing?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman in black doing?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a women with black dress doing?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is oil poured in pan?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who is preparing a food item in kitchen room with black dress?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sprinkling pepper on fine long pieces of meat?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did a woman collect all the ingredients that are required for the cooking of lamp loin with?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"verde\"\n  },\n  {\n    \"question\": \"who is talking about starting a recipe with lamb lions?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman standing at a table whiel preparing food in?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a woman standing at a table whiel preparing in a kitchen?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is going to prepare some meat pieces?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what haired lady showing how to prepare various cuts of beef in a large kitchen?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"what do a lady in blac dress have?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman sprinkling on fine long pieces of meat?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is a woman preparing in kitchen room with black dress?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who prepares a meal using lamb loins?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who collected all the ingredients that are required for the cooking of lamp loin with salsa verde?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is poured in the fry pan?\",\n    \"video_name\": \"video7455\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"braid\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a hair beautifully doing?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"braid\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"braid\"\n  },\n  {\n    \"question\": \"what is a person braiding?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a girl fixing?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a girl braiding?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a woman braiding?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what a person braids?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what a girl braids?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what did a girl braid?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a girl making braid with?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is down to brown hair?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is braiding hair?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do a hair beautifully tieing by?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is making braid with hair?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what beautifully tieing by a girl?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is hair braiding down to?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7456\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what shows images of a city?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are some inner city people being questioned about how much they know of a country in?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"africa\"\n  },\n  {\n    \"question\": \"what are a bunch of people talking about?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"africa\"\n  },\n  {\n    \"question\": \"what are a number of people interviewed about?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"kenya\"\n  },\n  {\n    \"question\": \"who do several women respond to?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"interviewer\"\n  },\n  {\n    \"question\": \"what are people being interviewed about?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"africa\"\n  },\n  {\n    \"question\": \"what are different people interviewed on?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are people interviewed on?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is kissing?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are people talking about in africa?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who is talking about the soccer team?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people talking about a country in?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"africa\"\n  },\n  {\n    \"question\": \"what does the video show images of?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a female providing commentary doing?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are a bunch of people doing?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is two ladies doing?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are woman doing?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7457\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is young basketball players doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do two teams of young men play basketball in?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"gymnasium\"\n  },\n  {\n    \"question\": \"what are a group of boys in a gym playing with a coach?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is boys doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy in blue jersey doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are students in blue or white jerseys doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of boys in a gym doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are kids doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are young children doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a superb display of ball doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what is a white and blue color dress wearing clothes player doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a bunch of school kids teamed into two teams and doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the small kid doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a young basketball player navigates himself expertly on the court doing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"dodge\"\n  },\n  {\n    \"question\": \"what do a superb display of ball handling tackling and then a classic finish at?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who is showing his skills in basketball game?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who are a group of boys in a gym playing basketball with?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what do a kid in blue track playing with other players?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what do kid tapping the ball dodging others score?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what do kid tapping the ball lifting the ball to score?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what are students in blue or white jerseys playing basketball on?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what does a young basketball player navigate himself expertly on dodging all players to reach the net?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what are students in blue or white jerseys playing on a court?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is the small kid showing his skills in?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who match?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do two teams of young men play in a gymnasium?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are young children playing?\",\n    \"video_name\": \"video7458\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who iis describing a fast car?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about an automobile?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what auctinoning off a truck?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do a man iis describing?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did a video auctinoning off?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who is showing off his vehicle?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing the interior of?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who translates?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"automobile\"\n  },\n  {\n    \"question\": \"what does a man review while another man translates?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man showing off?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a man tranlates with video games?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a foreign doing?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man iis doing?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is talking about the interior of a truck?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who reviews a truck while another man translates?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing the interior of a car?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a white boat on the thames?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"london\"\n  },\n  {\n    \"question\": \"who tranlates a customized car with video games?\",\n    \"video_name\": \"video7459\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking some thing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has a beard?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what does the man have?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"beard\"\n  },\n  {\n    \"question\": \"what do man in casual wear with beard talking about?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"title\"\n  },\n  {\n    \"question\": \"who is star craft 2 wings of liberty briefly spoken about by?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person with brown shirt explaining?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is a man speaking with subtitles beneath people are walking behind the seated man?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"beneath\"\n  },\n  {\n    \"question\": \"who wear with beard talking about a title?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about the announcement of the production of a game?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks about the wings of liberty theme for starcraft 2?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wearing a brown shirt with buttons?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the soundtrack for a video game?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking with subtitles beneath him people are walking behind the seated man?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man has a beard and doing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is developer of star craft doing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a shirt doing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man in casual wear with beard doing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is bearded guy in brown shirt doing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person with brown shirt doing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man with black color dressed doing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7460\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what do a live taken place?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is pak team playing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"circket\"\n  },\n  {\n    \"question\": \"what is playing on stage?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what do a live rock concert taken?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who sings at a concert?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"rockstar\"\n  },\n  {\n    \"question\": \"what does rockstar sing at?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is playing circket?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what plays musical instruments?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is a rock band playing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"festival\"\n  },\n  {\n    \"question\": \"who do dave grohl singing with?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"joan\"\n  },\n  {\n    \"question\": \"what is playing at a festival?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"when does a cartoon rock band play?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who grohl singing with joan jett?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"dave\"\n  },\n  {\n    \"question\": \"what is rock artists doing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is performing before a massive crowd?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a rock band doing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a rock concert outside with a woman doing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is group doing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"jam\"\n  },\n  {\n    \"question\": \"what is pak team doing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is pop singers doing?\",\n    \"video_name\": \"video7461\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who draws a picture of a fashion model?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a person drawing clothing on?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person drawing on a woman?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"who gives a tutorial on drawing?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is drawing clothing on a woman?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains how to draw a female figure?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is coloring on a female s image?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sketching a dress for a model?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sketching on a piece of paper?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is coloring or designing an article of clothing?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a woman?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman coloring?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is woman coloring?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a person drawing on?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"who is a person drawing?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a person draw?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a individual sketching?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who draws a woman?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is coloring a picture?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sketching a woman?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who is drawing on a photo?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is an artist gives a tutorial on doing?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a individual doing?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"sketch\"\n  },\n  {\n    \"question\": \"who explains how to draw?\",\n    \"video_name\": \"video7462\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who s voice talks about how to operate a computer program?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaining?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"interface\"\n  },\n  {\n    \"question\": \"what is a man describing?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is describing a computer screen?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining an interface?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is browsing through files?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is adding media to there tablet?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about managing a phone application?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is the addition of media and connetions demonstrated by?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"screencast\"\n  },\n  {\n    \"question\": \"who is talking about media sharing on a mobile device?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining about options of a mobile device?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who does a walk through on how to add programs on a computer?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to use the menu of a cell phone?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains aspects of a user interface concerned with adding media components to a configuration?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"browse\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is computer software doing?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7463\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who collects coins?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is driving on a race track?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is playing a racing game?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a race car riding on?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is racing in a video game?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what footage from a racing game?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"racing\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a kids video game car driving around?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is riding on the track?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does a gamer play a kid s racing?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a cartoon car doing?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a little vehicle doing?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is in a video game a car doing?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is the video shows gameplay of a car doing?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a kids video game car doing?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a video game character racing around collecting coins?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what shows gameplay of a car racing video game?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who does a gamer play s racing game?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who plays a kid s racing game?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"what does the video show gameplay of racing video game?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is collecting coins in a video game?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is video of doing?\",\n    \"video_name\": \"video7464\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is there are groups of people from different places in the world high doing?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"five-ing\"\n  },\n  {\n    \"question\": \"who keeps smacking the camera?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are some people having in the outdoors?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what are high fiving into the camera?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"mltiple\"\n  },\n  {\n    \"question\": \"how many men go on wild adventures?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what os people isjumping from areoplane?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is showing how to cut a dress?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are several groups of people shown enjoying?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"what are people having vacationing in various locations?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"who is taking a selfie?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is under water?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a video of people doing?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is friends doing?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is he keeps doing?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"smack\"\n  },\n  {\n    \"question\": \"what is several groups of people are shown doing?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a man taking?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"what are people showing?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"vacation\"\n  },\n  {\n    \"question\": \"what is a man under?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a woman keep smacking?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do kids use?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"what does video song about adventure around?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what about adventures around the world?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7465\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a black jacket man doing?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is something doing?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is some persons doing?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is four people shown doing?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a television show or documentary doing?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is first shows four army personnel doing?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is text on the screen doing?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what is talking about a scientific issue?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who was being carried out of a building on stretchers?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who s mother the screen then changes to ten years later and a hotel with palm trees in front?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"nadium\"\n  },\n  {\n    \"question\": \"what was someone being carried out of on stretchers?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is shown with text about two fathers?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what is a black jacket man walking on?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is being carried on a stretcher?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is a dead body being carried on?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"stretcher\"\n  },\n  {\n    \"question\": \"what is some white text doing?\",\n    \"video_name\": \"video7466\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who runs through a forest maleficent attacks aurora?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are shown?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what are remade?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what is a women singing about?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are the disney real movie and cartoon movie doing?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"overlap\"\n  },\n  {\n    \"question\": \"what is split scene doing?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is scenes from maleficent and doing?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what plays under a cartoon?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what does a disney movie play under?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is played on the bottom of the screen?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what plays while a disney movie plays under it?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is going on with divided screens?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who combines with cartoon picture?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"teaser\"\n  },\n  {\n    \"question\": \"who sings various animated scenes fro?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a film teaser combine with?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is played on the top while live action is played on the bottom of the screen?\",\n    \"video_name\": \"video7467\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a man rush to?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does a man get on?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is a man standing upon?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does a man jump up on?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"ledge\"\n  },\n  {\n    \"question\": \"what did a cut scene from?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what did a cut from a movie?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who runs?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets ready to jump?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is on the rooftop of a tall building a man jumps onto the ledge and looks down before doing?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man ran across a rooftop to jump up on a high wall doing?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"overlook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in suit doing?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"await\"\n  },\n  {\n    \"question\": \"what is a man hurries over to the edge of a wall climbs on top and stands there as the wind moves his hair before doing?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who ran across a rooftop to jump up on a high wall overlooking the ocean?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing upon a wall?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who s just standing on top of a building?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man talking to about something?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a man about something?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks to the edge of a roof top and stares into the view?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing on the railing of the roof of a building?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is standing on top of a building ready to jump?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man run across to jump up on a high wall overlooking the ocean?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"rooftop\"\n  },\n  {\n    \"question\": \"where does a man hurries over to the edge of a wall climb?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"who jumps onto a ledge of a building?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps up onto the edge of a tall building?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man hurries over to the edge of a wall climb on?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"who is standing on top of a building edge?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets on a roof?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rushes to a wall?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man climb over as if to jump?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who looks down before telling a man next to him?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps onto the ledge?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man in suit awaiting?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man walk to the edge of a roof top and stares into?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"who climbs over a wall as if to jump?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps up on a ledge?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking to a man about?\",\n    \"video_name\": \"video7468\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man in a white dress shirt doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is person in white shirt doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in white shirt doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a bbc news anchor doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man in white shirt doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person in white dress doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a video of a young man in a white shirt doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"invite\"\n  },\n  {\n    \"question\": \"what is a news reporter doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who talks about his language services from the bbc?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about his language services from?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"bbc\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt telling in front of a window?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt discussing?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what do a person in white dress standing on?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"what is person in white shirt talking about?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is talking to his views from a modern mostly glass building?\",\n    \"video_name\": \"video7469\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who talks about the interior of a car?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who reviews the interior of a car?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man describe interior features of?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man review the interior of?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person filming the features of a car in?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person filming the features of in a car?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes interior features of a car?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man explaining about?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is filming the features of a car in a car?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is explaining about the car?\",\n    \"video_name\": \"video7470\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are soldiers doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"arrest\"\n  },\n  {\n    \"question\": \"what is reporters doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is military police doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what are cars doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a suspect is on the ground with police doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"surround\"\n  },\n  {\n    \"question\": \"what is a soldier doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a news segment shows police doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"arrest\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a cnn news reporter doing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is holding a gun?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what are people on?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a soldier holding?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a woman arrested in?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"dhabi\"\n  },\n  {\n    \"question\": \"what do a newswoman reporting about?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"conflict\"\n  },\n  {\n    \"question\": \"where is a woman arrested?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"dhabi\"\n  },\n  {\n    \"question\": \"who is arrested in abu dhabi?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what shows police arresting a man?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"who is on the ground with police surrounding a?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"suspect\"\n  },\n  {\n    \"question\": \"what are soldiers arresting in a mall for murder?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a video of abu dhabi traffic from with the headline of a mall killing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"cnn\"\n  },\n  {\n    \"question\": \"what is military police pointing at a person on the ground?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what did a video of abu dhabi from cnn with the headline of a mall killing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"what is military police pointing a gun at a person on?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is pointing a gun at a person on the ground?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who is military police pointing a gun at on the ground?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is reporting on events in abu dhabi?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a news story about a woman s?\",\n    \"video_name\": \"video7471\",\n    \"answer\": \"arrest\"\n  },\n  {\n    \"question\": \"when is a young boy being judged?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is being judged on stage?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a judge critiquing singers on?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a boy receive at a talent show?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"feedback\"\n  },\n  {\n    \"question\": \"what is a boy and judges doing?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a judge doing?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"critique\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"expres\"\n  },\n  {\n    \"question\": \"what are a panel of judges doing?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a panel of judges doing?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is getting judged by judges?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who are providing feedback to a young boy?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"who is a panel of judges discussing s performance?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is expressing his views on the performance of the boy?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a child on stage?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who is a judge talking to on stage?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who are a panel of judges talking to?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is critiquing singers on the voice?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who receives feedback at a talent show?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are singing competition judges providing to a young boy?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"feedback\"\n  },\n  {\n    \"question\": \"when is a judge talking to a child?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are people talking to?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"buy\"\n  },\n  {\n    \"question\": \"what is a panel of judges discussing a boy s?\",\n    \"video_name\": \"video7472\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what is a diver doing?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is an octopus doing?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"attach\"\n  },\n  {\n    \"question\": \"what the octopus underwater?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"diver\"\n  },\n  {\n    \"question\": \"who is taking pictures underwater?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is underwater?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"octopu\"\n  },\n  {\n    \"question\": \"what is shown underwater?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"octopu\"\n  },\n  {\n    \"question\": \"what does water attack?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a scuba diver photograph?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"octopu\"\n  },\n  {\n    \"question\": \"what attacks the camera?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are scuba divers near?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"octopu\"\n  },\n  {\n    \"question\": \"who photographs an octopus?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"scuba\"\n  },\n  {\n    \"question\": \"who are near an octopus?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"scuba\"\n  },\n  {\n    \"question\": \"what do a diver recording underwater?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what interacts with scuba divers?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"octopu\"\n  },\n  {\n    \"question\": \"what has an underwater photographer grabbed by an octopus?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is taking photos of an octopus under water?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking photos of an octopus?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"diver\"\n  },\n  {\n    \"question\": \"what is a man taking photos of an octopus under?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man taking photos of under water?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"octopu\"\n  },\n  {\n    \"question\": \"who has his camera grabbed by an octopus?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"photographer\"\n  },\n  {\n    \"question\": \"what has an underwater photographer his camera grabbed by?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"octopu\"\n  },\n  {\n    \"question\": \"who is scuba diving and taking pictures?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a diver taking photos of?\",\n    \"video_name\": \"video7473\",\n    \"answer\": \"octopu\"\n  },\n  {\n    \"question\": \"what is someone working on?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what does porn music play in?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what was the man doing?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is clip of person doing?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what a man fixes?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"trunk\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lossening a bolt from an opened trunk door?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is fixing a nut of a car?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to fix something in a car?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was working on the car s hatch?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone lossening from an opened trunk door?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"bolt\"\n  },\n  {\n    \"question\": \"what does a man shows how to remove hydraulics from a car s?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"trunk\"\n  },\n  {\n    \"question\": \"what is a person fixing a nut of?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who rotates some screws on their car?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what shows how to work on the car?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man fixing outside?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who fixes a car trunk?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person rotate some screws on?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is fixing a car outside?\",\n    \"video_name\": \"video7474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"who is sexualized in a foreign commercial?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is advertisement where pretty girl doing?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is filmed in slow motion for effect?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who talks about how nice the travel bus is?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people sitting on a bus looking out?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"who dances around for a music video?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are people dreaming about?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"dream\"\n  },\n  {\n    \"question\": \"what is people are comfortably doing?\",\n    \"video_name\": \"video7475\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who does a flip off a balance beam?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"gymnast\"\n  },\n  {\n    \"question\": \"what does a gymnast preform?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"who does a backflip to justin bieber?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a gymnast show off?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"skill\"\n  },\n  {\n    \"question\": \"what are young girls doing?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"forward\"\n  },\n  {\n    \"question\": \"what plays over video of gymnastics?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does the girl flip off?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"beam\"\n  },\n  {\n    \"question\": \"what does a young gymnast jump off?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"what do gymnasts walk through?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"auditorium\"\n  },\n  {\n    \"question\": \"who is doing gymnastics?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is on the gymnastics team?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who preforms a set?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"gymnast\"\n  },\n  {\n    \"question\": \"who is competing in a gymnastics competition?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who jumps off the bar?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"gymnast\"\n  },\n  {\n    \"question\": \"who flips off a balance beam?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who flips off the beam?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who jumps of a balance beam?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is making a forward flip?\",\n    \"video_name\": \"video7476\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"state\"\n  },\n  {\n    \"question\": \"what is in the kitchen the chef doing?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"list\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a chef lists the ingredients he will be doing?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is recording the ingredients in the kitchen?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who lists the ingredients he will be using in a recipe?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is about the contents for making the dish?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does the camera focus on individually for a moment ingredients sit in separate bowl on a wooden table?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"ingredient\"\n  },\n  {\n    \"question\": \"who is telling a ingredient for cooking?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the camera focus on each ingredient individually for a moment ingredients sit in on a wooden table?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is stating the ingredients to a recipe he is about to make?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a chef list the ingredients he will be using in?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what does a glass bowl have green beans a white bowl has pale crumbs a yellow tray has cut meat a glass bowl has cut?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"root\"\n  },\n  {\n    \"question\": \"what are various ingredients laid out on?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are more beans salt kept in?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what bowls?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what does a glass bowl have green beans a white bowl has a yellow tray has cut meat a glass bowl has cut white root vegetables?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"pale\"\n  },\n  {\n    \"question\": \"what has green beans a white bowl has pale crumbs a yellow tray has cut meat a glass bowl has cut white root vegetables?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what does a glass bowl have green beans a white bowl has pale crumbs a yellow tray has cut meat has cut white root vegetables?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who is telling to make the veg item other vegetables are in the stand in the kitchen?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is the chef telling to make the veg item other vegetables are in in the kitchen?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the chef telling to make the veg item other vegetables are in the stand in?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a glass bowl have green beans a white bowl has pale crumbs has cut meat a glass bowl has cut white root vegetables?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what focuses on each ingredient individually for a moment ingredients sit in separate bowl on a wooden table?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what did a person listing the ingredients of a dish arrange in?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who place spices and vegitables in a separate bowl?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a glass bowl have green beans has pale crumbs a yellow tray has cut meat a glass bowl has cut white root vegetables?\",\n    \"video_name\": \"video7477\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game about rugby?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains new features of a football video game?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who ai in a video game?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing how well a football game is made?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who run several plays?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are men playing football on?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are men playing on the stadium?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is football players doing?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"tackle\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people playing sports in?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is showed being played?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7478\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is talking about gay marriage?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"how many girls attempt to talk about their opinions on gay marriage in australia?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is young girls doing?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is young children doing?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"expres\"\n  },\n  {\n    \"question\": \"what is children doing?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is giving feedback of marrying with same sex?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is children doing?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what do young people discuss?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"marriage\"\n  },\n  {\n    \"question\": \"what is a group of kids asked about?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"marriage\"\n  },\n  {\n    \"question\": \"what is a boy talking about?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"marriage\"\n  },\n  {\n    \"question\": \"what are children asked about?\",\n    \"video_name\": \"video7479\",\n    \"answer\": \"marriage\"\n  },\n  {\n    \"question\": \"what lays on a table?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is laying on a table?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what pull in full support?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what is playing with a pen?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a small bird lay on?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a parrot with a market doing?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what take a pen?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what do a parrot pull in?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"support\"\n  },\n  {\n    \"question\": \"what is a bird playing with?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what do a parrot take?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what had pen?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what plays with it?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"what like parrot trying to write?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is a parrot lying on playing with a clickable pen?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"what is a bird laying on?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what like parrot having pen?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what have pen?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"what is a colorful bird doing?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is parrot doing?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is parrot had pen and it doing?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a parrot doing?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a bird with multicolor doing?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what plays with a pen on a desk?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is lying on its back playing with a clickable pen?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what is playing with pen on a table?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is playing with a pen on a bed?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is a parrot with a market playing on?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what did mashup zone one beautyiful parrot with?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what is a bird playing with pen on?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is lying down playing with a pen?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is a bird playing with a pen on?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a bird playing with on a bed?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what plays with a clickable ink pen?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what do a parrot playing with pen on a neatly decorated table with?\",\n    \"video_name\": \"video7480\",\n    \"answer\": \"bedsheet\"\n  },\n  {\n    \"question\": \"what is a cartoon of two guys doing?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is minecraft characters doing?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are minecraft characters doing?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"who get into a fight?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what do minecraft characters get into?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who holds up an emerald?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who carries a green block?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the mincraft characters get into?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what get into a fight?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"mincraft\"\n  },\n  {\n    \"question\": \"what does a cartoon character hold up?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"emerald\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man carry?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"block\"\n  },\n  {\n    \"question\": \"who argue?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video7481\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"where is a man being interviewed wile students are studying diligently?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what are students shown in?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what does a man express that he does not believe will be done tomorrow?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"job\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"york\"\n  },\n  {\n    \"question\": \"what is an interview wraps up in an office then we see students doing?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is in new york a man doing?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man with black shirt doing?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is students are interested in doing?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cnn money doing?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is poppy harlow doing?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking with black color dress?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is poppy harlow reporting on in new york for cnn money?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who do a young man talking go in a call full of students?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is reporting on a school in new york for cnn money?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"harlow\"\n  },\n  {\n    \"question\": \"who is being interviewed wile students are studying diligently in a city?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does a man express that he does not believe a job will be done?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"tomorrow\"\n  },\n  {\n    \"question\": \"what cuts away to a room of students?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"york\"\n  },\n  {\n    \"question\": \"who expresses that he does not believe a job will be done tomorrow?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do various people do at desks?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"paperwork\"\n  },\n  {\n    \"question\": \"who is talking in new york?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is a man talking?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"york\"\n  },\n  {\n    \"question\": \"what are a group of people sitting at desks filling in?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"paperwork\"\n  },\n  {\n    \"question\": \"what is a man with long hair doing?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are several students studying in on a beautiful day?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what is a man being interviewed wile students are studying diligently in?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what are several students doing?\",\n    \"video_name\": \"video7482\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"who shows off a white sofa?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man show the features of?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"who is telling about furniture?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is discussing furniture?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing a couch?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is moving a couch?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man think was terriffic?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is someone telling about?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"furniture\"\n  },\n  {\n    \"question\": \"what is a man discussing?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"furniture\"\n  },\n  {\n    \"question\": \"what is a man describing?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what does a man show off?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is a man moving?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who reviews a white leather sofa?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"saleman\"\n  },\n  {\n    \"question\": \"who thought the sofa was terriffic?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man showing the features of?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who talks about how a sofa comes with an apartment?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates some aspects of a sofa?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows off a couch in a room?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a older man demonstrate some aspects of?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what does a man show off a couch in?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a man show off in a room?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who shows the features of a sofa?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how a sofa can be put into many different positions?\",\n    \"video_name\": \"video7483\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person slicing on teen slices in a kitchen?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is cook doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man is gently doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is short informational doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a man in white tshirt cuts slices from large cut of beef on doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man with tattoos on his arms cuts food on a doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is man in white shirt doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is cook slicing up a chunk of with a knife on the kitchen table?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is cutting meat?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what does a man cut up?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man cutting a piece of using a knife?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who cuts up meat?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a slab of meat doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man preparing on a cutting board in a kitchen?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"beef\"\n  },\n  {\n    \"question\": \"who is cutting a piece of meat using a knife?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man gently slicing a slab of meat with a large knife is on a yellow cutting board?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is speaking of the importance of buying a meat grinder at home?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing up a chunk of meat with a knife on the kitchen table?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is slicing the meat on teen slices in a kitchen?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing beef on a cutting board in a kitchen?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a big piece of meat on a yellow and white cutting board?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is using a chefs knife to slice up small pieces of meat for cooking?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is gently slicing a slab of meat with a large knife the meat is on a yellow cutting board?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts up big chunks of meat in a meat grinder?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a man using to slice up small pieces of meat for cooking?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is someone slicing a big piece of on a yellow and white cutting board?\",\n    \"video_name\": \"video7484\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"strum\"\n  },\n  {\n    \"question\": \"who plays the guitar outside?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs a song with kids around?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing while children are running around outside?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks sad?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a girl spy on?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing guitar and singing?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some people outdoors having?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"who is talking about children?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who spies on a party?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a man play outside?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays guitar in the woods?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is watching people have fun at a park?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a person singing with in the middle of trees while kids are playing around?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a music video with a male vocalist doing?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man singing and doing?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is country music singing and doing?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who sings while a girl spies on a party and looks sad?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing with guitar in the middle of trees while kids are playing around?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a guitar while kids dance around trees?\",\n    \"video_name\": \"video7485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a molecule turned into to show how dna changes?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"dna\"\n  },\n  {\n    \"question\": \"what is a graph being shown about to people?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are the scientists experimenting with?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"dna\"\n  },\n  {\n    \"question\": \"what is described?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"dna\"\n  },\n  {\n    \"question\": \"what did a molecule file with?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what filed with water?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"molecule\"\n  },\n  {\n    \"question\": \"what produces a single hydrogen iron?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"chip\"\n  },\n  {\n    \"question\": \"what is flooded with four nuclear tide?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"chip\"\n  },\n  {\n    \"question\": \"what is being shown about something to people?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"graph\"\n  },\n  {\n    \"question\": \"who describes how dna sequencing is done by the ion torrent method through reading of hydrogen release?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explains how ion torrent dna sequencing is performed?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what are an illustration about dna and its structure the scientists doing?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what are a blue sphere with white protrusions doing?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is turned into dna to show how dna changes?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"molecule\"\n  },\n  {\n    \"question\": \"what is the lady doing?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who instructs on the functionality of dna strands?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who discusses a chip being flooded by a nucleotide?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is telling the feature of human body and the dna system?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is taught with the aid of cartoon graphics?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what is blue sphere with grey spikes zoomed in doing?\",\n    \"video_name\": \"video7486\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking about items needed for an experiment?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"list\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"name\"\n  },\n  {\n    \"question\": \"who lists a bunch of ingredients such as soap and water?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man preparing for?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is doing an experiment?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to make something of which i do not know?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is listing products needed for an experiment?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is laying out the ingredients for a project?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who mixes several ingredients together for an experiment?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using utensils?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is naming items?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing for an experiment?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing experiment?\",\n    \"video_name\": \"video7487\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are two men showing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a man using?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"extinguisher\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what putting out a fire?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are men talking to?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do two men introduce the topic of?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is using a fire extinguisher?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who extinguishes a fire outside?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man use to put out a fire?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"extinguisher\"\n  },\n  {\n    \"question\": \"how many men introduce a video?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are showing some fire instructions?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who uses a fire extinguisher to put out a fire?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men introduce the topic of their show?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking about testing a new form of transport in a parking lot?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man use a fire extinguisher to put out?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what do someone put out?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what are two crazy inventor guys who doing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man extinguish outside?\",\n    \"video_name\": \"video7488\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a man checking?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is checking a machine?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a couple of people fliming a tank and another vehicle with on a track for a movie?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is filming a tank and actors?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a tank doing?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a film crew doing?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is camera on a track doing?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what were a group of camera men doing?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a film doing?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a crew doing?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is being driven while cameramen follow along and tape its movements?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"tank\"\n  },\n  {\n    \"question\": \"what do a film shooting group take with the main hero of the movie?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what driving on sand and being filmed from multiple angles?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"tank\"\n  },\n  {\n    \"question\": \"what films an army scene with a tank and camera on a track?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what is shooting a motion picture with trolley camera?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"crew\"\n  },\n  {\n    \"question\": \"who is create the set of the warfield in the hollywood movie?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"director\"\n  },\n  {\n    \"question\": \"what were a group of camera men shooting?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is art director create the set of in the hollywood movie?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"warfield\"\n  },\n  {\n    \"question\": \"what is a video camera following on a track?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a video camera following a vehicle on?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is following a vehicle on a track?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a film crew making with a tank driving backwards?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what do camera on a track filming men in?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who is a tank being used by actors in a movie taped?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what films a man who is inside a little box?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is making a scene with a tank driving backwards?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what track filming men in a truck?\",\n    \"video_name\": \"video7489\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who announces basketball highlights?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets hit in the head?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a basketball players get hit in?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"what does not load?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does man announce?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do players scramble on?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what do tv commentators discuss?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what does man announce highlights?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"how many clips show very odd basketball shots?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who laughs at funny nba videos?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"shaq\"\n  },\n  {\n    \"question\": \"who passes a ball over his teammates head?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a basketball player hits another player with the ball while doing?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what is a blooper from an nba game with analysts doing?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is basketball players doing?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are sports commentators doing?\",\n    \"video_name\": \"video7490\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in pink shit doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a professor in pink dress doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is old man doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a pink shirt doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a old man in a pink shirt doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a pink shirt against a grey wall doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a balding man doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a professor doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bald man on a plane doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man in a pink shirt doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a professor from the university of manchester doing?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who is talking about material science and his interests?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"professor\"\n  },\n  {\n    \"question\": \"what is a bald man on a plane talking on?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is old man wearing light pink shirt talking to?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what eloquently describes how school of materials manchester is interested in micro structur?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"professor\"\n  },\n  {\n    \"question\": \"who discusses the study of materials and how microstructure relates to properties of the material?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"balding\"\n  },\n  {\n    \"question\": \"who does a professor in a pink shirt talk about?\",\n    \"video_name\": \"video7491\",\n    \"answer\": \"microstructure\"\n  },\n  {\n    \"question\": \"who is a man introducing?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"university\"\n  },\n  {\n    \"question\": \"what is person opening using his computer?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"web\"\n  },\n  {\n    \"question\": \"who is watching the features?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is introducing university website?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"browse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"function\"\n  },\n  {\n    \"question\": \"what is screen recording of someone doing?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is a man with a foreign accent doing?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a video tutorial doing?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person shows some of the features for the website doing?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"represent\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"who explains how to access the university of people website?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what tutorial showing the different menus of a website?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who shows some of the features for the website representing an organization called university of the people?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what photographs a red checkmark in a thick circle?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is making various functionalities of a website user friendly?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives instructions on how to use an educational website?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a video tutorial showing the different menus of?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"who is functioning a website in computer system?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what shows an elevated screen with a list on one side additional text?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is various functionalities of a website explained by?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is opening some web sites using his computer?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a screen show with a list on one side additional text?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is being displayed with a few items on there?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who explains hot to navigate around a site he has created to get to the right information?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a screen photograph in a thick circle?\",\n    \"video_name\": \"video7492\",\n    \"answer\": \"checkmark\"\n  },\n  {\n    \"question\": \"what are two ladies seen here adevertising?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do two girls talk about?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what slides to their discussion pop up behind them?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"relevant\"\n  },\n  {\n    \"question\": \"what are two video jacky doing?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what are two young women doing?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who are describing the girl?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are two video jacky describing?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many young women are talking about disney characters?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women do a rundown on disney s descendants?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls talk about maleficent and other disney movies?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many teenagers are doing a run down on disney descendants?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are talking about a disney movie?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are talking about entertainment news?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many video jacky are describing the girl?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does relevant slide to pop up behind them?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"how many girls talk about disney movies?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two teenagers doing down on disney descendants?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"how many ladies are seen here adevertising something?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are two teenagers doing a run down on?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"who are two young women talking about?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"how many young women does a rundown on disney descendants while relevant slides to their discussion pop up behind them are discussing disney?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people talk in a tv show?\",\n    \"video_name\": \"video7493\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is countdown of man doing?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is showed?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is the places about?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"ethopium\"\n  },\n  {\n    \"question\": \"what are all foreign officers advied not to go because they have been kidnapped here?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is man talking about that he visited?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is person recording with brown sand?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"valley\"\n  },\n  {\n    \"question\": \"what do colorful dry land and large crater in?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what is person recording the beautiful valley with?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"who presents strange pictures of a desert in ethiopia?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is recording the beautiful valley with brown sand?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"where do colorful dry land and large crater?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"who explains about the desert of ethiopia to which human beings should not visit?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is desert in ethiopia which of?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"risk\"\n  },\n  {\n    \"question\": \"what exists which has some natural formation which looks like an empty bowl made of mud and has something greenish in the middle?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"who is talking about the place that he visited?\",\n    \"video_name\": \"video7494\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is gun doing?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are soldiers doing?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"approach\"\n  },\n  {\n    \"question\": \"what is soldiers doing?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is soldiers doing?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what were the soldiers doing?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are soldiers running up?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"metallica\"\n  },\n  {\n    \"question\": \"what shoots all around?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a war scene taking?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are people fighting on?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is taking place?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what was the soldier engaged in?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"who was engaged in action?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what are a group of soldiers running through?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"battlefield\"\n  },\n  {\n    \"question\": \"what do beach battle from saving private ryan with music score?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what battle scene from saving private ryan with music score?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are soldiers approaching?\",\n    \"video_name\": \"video7495\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"who is playing a first person shooter game?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates a video game?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an online computer game?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does game play footage of freddy s?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"mod\"\n  },\n  {\n    \"question\": \"who doritos bag and in an animated game?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"what does a man perform during?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who does garry s a video recorded from the player s point of view in the game?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"mod\"\n  },\n  {\n    \"question\": \"what s mod a video recorded from the player s point of view in the game?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"garry\"\n  },\n  {\n    \"question\": \"who performs during a game?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does the game garry s is shown?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"mod\"\n  },\n  {\n    \"question\": \"what does the game garry s?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"mod\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what garry s mod is shown?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man narrate?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7496\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news women with dark hair doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is an anchorwoman stands at a podium and reads quotes to a male guest by a city skyline who reacts by doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person in black shirt doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a sleeveless shirt doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person on one side of video and a news person lady on other side doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a woman in a grey vest doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news reporter questions a man about criticisms she doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"what is a man in black dressing doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl in blue dress doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a male and female on separate screens on set of fox news doing?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in black dressing talking from?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what did a woman in a news studio write a woman on a tv show asks a scholar about?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"who stands at a podium?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"anchorwoman\"\n  },\n  {\n    \"question\": \"what does a woman in a sleeveless talking about religion in front of a large tv?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what does an anchorwoman stand at?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"who is reading?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing speaking sitting and television screen a person speaking displaying on screen?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who is a woman in a gray vest speaking to in a stripped shirt about jesus?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a woman from the middle east?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks of people who criticised the person on fox news?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who asks the man a questions about muslims and jesus?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who questions a reporter on islamic claims about jesus?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what reads quotes to a male guest by a city skyline who reacts by turning his head?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"anchorwoman\"\n  },\n  {\n    \"question\": \"who is talking with the woman who is in studio?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what women with dark hair interviewing a man on tv?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking with a man wearing black dress?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing color cloth speaking sitting a person speaking displaying on screen?\",\n    \"video_name\": \"video7497\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who shoots a boy who is annoying him?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who says hello to a soldier?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who shoots another cartoon guy?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who shoots another cartoon character?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who does a boy say hello to?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who gets then stabbed by two other cartoon characters?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who did a soldier shoot a new man was stabbed by another man?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"gay\"\n  },\n  {\n    \"question\": \"what shoots another toy?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who did a soldier shoot a new man a gay man was stabbed by?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shot a new man a gay man was stabbed by another man?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who shoots the boy?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what is a cartoon heroes keep doing?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what is a soldier shoots a boy who doing?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"annoy\"\n  },\n  {\n    \"question\": \"what is an animated video doing?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is this is a cartoon video in which one person doing?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who did a soldier shoot a gay man was stabbed by another man?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots another boy?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a boy say to a soldier?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"hello\"\n  },\n  {\n    \"question\": \"who does a cartoon character shoot?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who does a cartoon boy shoot?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who do a cartoon heroes keep killing?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what violent cartoon video game?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"parody\"\n  },\n  {\n    \"question\": \"who does the soldier shoot?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who keep killing a man?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is portrayed?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who does cartoon guy shoot?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is shot?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a toy shoot?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who gets shot?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who gets killed twice?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who kills?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is stabbed?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what game parody?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who shoots?\",\n    \"video_name\": \"video7498\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what preforming on stage?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing into a microphone?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs during a concert?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the lead singer sing into on a small platform?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a man singing on stage with?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is a man singing with a band?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on stage with a band?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what performs on stage?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who sings into a microphone on a small platform?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what is performing while the lead singer sings into a microphone on a small platform?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing on a stage?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs before a live audience?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"when does a band preform?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a live concert with doing?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"when does rock band perform?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing onstage?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man performing?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is someone performing?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is performing on stage?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is performing a song?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an artist perform during?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"who is performing a concert?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is performing a concert?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is a man singing?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man singing into?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"when is a band performing?\",\n    \"video_name\": \"video7499\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a soccer team doing?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is pak team doing?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is players doing?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do female soccer players take?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who s soccer match with japan?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what play ground?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what do players walk on to?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are some people playing?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who take the field?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are people playing are?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is pak team playing?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"circket\"\n  },\n  {\n    \"question\": \"what do the volleyball play?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what do some children play a game of?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"futbol\"\n  },\n  {\n    \"question\": \"where do players walk on?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what play the boys?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what is playing circket?\",\n    \"video_name\": \"video7500\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what is a man is next to another man both in white doing?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men sit and talks about will smith and the top 5 will smith movies of all time?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are a two men doing?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two guys in white dress doing?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two reporters doing?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is two men both doing?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is will smith has starred in a lot of movies doing?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"how many men discuss will smith s career and top 5 movies?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a man next to both in white talking to one another and what seems to be an interviewer or camera?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking about a movie scene?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking on the tv news?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking about the top 5 will smith movies?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are doing a countdown featuring some of the movies they like with will smith?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two guys in white dress talking about?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"hollywood\"\n  },\n  {\n    \"question\": \"who is next to another man both in white talking to one another and what seems to be an interviewer or camera?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men in white clothes having?\",\n    \"video_name\": \"video7501\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is talking about a car in grand theft auto?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is explaining something that is on gta5?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about that most people don t know about in grand theft auto?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who talks about a car that most people don t know about in grand theft auto?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains where to find a rare vehicle in grand theft auto?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cgi woman with a gun pointed and doing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"aim\"\n  },\n  {\n    \"question\": \"what is a video game woman doing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a gameplay video of gta doing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is commentary while doing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a video game woman in a bikini aim a gun at?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a guy talking about in grand theft auto?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a video game woman in a bikini aim at a car?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does the woman circle?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a video game character have?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"gtum\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman pointing?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a woman surround?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who gives tips?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who circles the green car?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pointing a gun?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a video game woman pointing a gun at?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a video game woman pointing at a car?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is aiming to shoot a car?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who surrounds a car?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who plays gta 5?\",\n    \"video_name\": \"video7502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing video graphics on computer?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is someone showing on computer?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what figure dancing beautifully?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who breakdances?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a minecraft character break dance in a room with other characters from?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what show for childrens?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is someone showing video graphics on?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a blocky video game character break dancing in with several other characters including a dragon?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is played while a minecraft character breakdances?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"dubstep\"\n  },\n  {\n    \"question\": \"what is the box figure doing?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an animated clip of a minecraft character doing?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a video of a animated minecraft character doing?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a minecraft character doing?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"breakdancing\"\n  },\n  {\n    \"question\": \"what is a blocky video game character is break doing?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is having a minecraft guy dance to music?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a computer animated music video doing?\",\n    \"video_name\": \"video7503\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"who shakes a toy egg?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who looks at an easter egg?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who unboxes plane toys?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is lighting up a small flame?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is holding a toy egg?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a planes easter egg shown to?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is going over a disney planes egg?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows off the contents of a disney planes gift set?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing figurines from collectible toy eggs?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing off something he just got?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is opening a plastic egg?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does guy unbox?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is a person lighting up?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"flame\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"unbox\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what is a men doing?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"collect\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person holding?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is someone opening?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what does someone shake?\",\n    \"video_name\": \"video7504\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is there is a man in blue doing?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is there is a man in blue doing?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a surfer recalls a horrific experience of near doing?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"drown\"\n  },\n  {\n    \"question\": \"what is it is a video about a man doing?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a surfer doing?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what does a surfer describe having broken?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"leg\"\n  },\n  {\n    \"question\": \"what is a surfer doing?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who describes having his leg broken?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what does a surfer describe being underwater?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"drug\"\n  },\n  {\n    \"question\": \"who recalls a horrific experience of near drowning in the rough seas before being save by the guards?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"who swims out in to the ocean to catch a ride back in?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"who was being pulled under water while there are showing him struggling in the water and being pulled from the water by people on jet skis?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt swimming in?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what does a person in blue tshirt explain got rescued by?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"what was a surfer describing what dragging him under?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man wearing a blue shirt swimming in?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who do one man swimming in sea and all tell?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes his experiences in the water?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what do a man swimming in the sea and catch?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does guy wearing a blue get picked up in?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who describes being drug underwater?\",\n    \"video_name\": \"video7505\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what is driving a car?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone driving?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what game?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is showcased?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"racing\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a spanish taxi cab driving?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a spanish taxi cab doing?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a video game car doing?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what do a spanish driving video game?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"taxi\"\n  },\n  {\n    \"question\": \"what is there s a car driving recklessly and doing?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"gain\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7506\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who makes food?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does someone make?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking macaroni and cheese?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cooking mac and cheese?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone flipping some one over?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what do some one keep in a pan with food?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what do some one keep a plate in a pan with?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person flipping onto a plate?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone transferring food from pan to a plate?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"who is flipping some one over a plate?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone transferring from a frying pan to a plate?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do a person flipping food from a frying pan to?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who is flipping food onto a plate?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who flips some food from a pan to a plate?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is transferring food from a frying pan to a plate?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person flipping food onto?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what does a person flip some food from a pan to?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7507\",\n    \"answer\": \"transfer\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is shots of nature then information about doing?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"visit\"\n  },\n  {\n    \"question\": \"what is trees with green orange and yellow leaves border a lake doing?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"reflect\"\n  },\n  {\n    \"question\": \"what grow near the water lined with lights?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"colorful\"\n  },\n  {\n    \"question\": \"what is a trees water scene still images dishes still images person doing?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are more vegetabls kept on?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"tbale\"\n  },\n  {\n    \"question\": \"what is scene with bridge surrounded by orange leaved trees?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what is a serene lake surrounded by orange leaved trees?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what describes interesting tourist destination in japan?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do images show a lake and a many plates of while music plays?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is on a screen with some food?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what does the slide of beautiful scenery are shown with?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what scene still images dishes still images person standing watching?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does the slide of are shown with contact information?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"scenery\"\n  },\n  {\n    \"question\": \"what does the slide of?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"scenery\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7508\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are girls dancing with?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what does a synchronized swim team approach?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are synchronized swimmers entering?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what do team of women dance to the stage to begin synchronized swimming event?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what is women in a tam doing?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is there is a team doing?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are synchronized swimmers doing?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are girls on a stage doing in front of water?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"routine\"\n  },\n  {\n    \"question\": \"who are preparing to perform synchronized swimming?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what are a group of women doing?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"when do women in a tam walking?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what dance their way to the stage to begin synchronized swimming event?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what are female athletes doing?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video7509\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man drinking something in?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is a man drinking in a cup?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who hears something?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting in a waiting area as a text description of him is shown on the bottom of the screen?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking something in a cup?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are sitting down?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is drinking out of his cup?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people waiting for?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"transportation\"\n  },\n  {\n    \"question\": \"who stands up to walk away?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man drinking out of?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is a group sits in the doing?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a stake out with people doing?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what is hidden camera footage of several people doing?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who is reading the newspapers?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people sitting in?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what does a man hear?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what sits in the waiting area?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who are people being surprised by?\",\n    \"video_name\": \"video7510\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what is a person pouring soda in?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does a boy pour into a cooking pan?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man pouring in a pan?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"coke\"\n  },\n  {\n    \"question\": \"what is a person pouring in a pot?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"soda\"\n  },\n  {\n    \"question\": \"who is pouring cola into a pot?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone pouring into a pot?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"cola\"\n  },\n  {\n    \"question\": \"how many men wait?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is cooking coke?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cooking?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"coke\"\n  },\n  {\n    \"question\": \"who says to wait?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is someone pouring cola into?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a man filling to the top with coke?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"saucepan\"\n  },\n  {\n    \"question\": \"what is a man pouring into a pot in a kitchen?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"soda\"\n  },\n  {\n    \"question\": \"who pours soda into a pot on the stove?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring soda into a pot in a kitchen?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filling a saucepan to the top with coke?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours a drink into a cooking pan?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is pouring a coke in a pan?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is poured into a pot on a stove then young mentally challenged people wait 37 minutes?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"soda\"\n  },\n  {\n    \"question\": \"who adds coca cola to a dish?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does an asian guy add coca cola to?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a black morass boil on while two men wait?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"stovetop\"\n  },\n  {\n    \"question\": \"what does a man pour into a pot on the stove?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"soda\"\n  },\n  {\n    \"question\": \"who is pouring soda in a pot?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does an asian guy add to a dish?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"coca\"\n  },\n  {\n    \"question\": \"what boils on a stovetop while two men wait?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"moras\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7511\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what do a lady pouring oil in the pan to prepare?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a woman add olive to the bottom of a pan?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a man pour into a saucepan?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a female pouring into a pot on stove in kitchen?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a female pouring some oil into a pot on stove in?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a man pour oil into?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"saucepan\"\n  },\n  {\n    \"question\": \"who demonstrates how to prepare a dish using stock and olive oil in a large stock pot?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is person preparing a dessert in?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is person preparing in the kitchen?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"dessert\"\n  },\n  {\n    \"question\": \"who heats olive oil up?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man heat up?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"when are sitiing?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"oniontomato\"\n  },\n  {\n    \"question\": \"what is a woman using to cook in a very large pot?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is adding olive oil to a large stock pot on a stove to use it to saute vegetables?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pours olive oil into a deep nonstick pot?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who adds oil to a large black pot on the stove?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding a table spoon of virgin olive oil to the bottom of pan for sauteing vegetables?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman adding to a large stock pot on a stove to use it to saute vegetables?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a woman in a kitchen add to a stock pot on a stove top?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who adds olive oil to the bottom of a pan?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is using olive oil to cook in a very large pot?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman add to a large black pot on the stove?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a woman in a kitchen add olive to a large stock pan on a crowded counter?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is pouring some oil into a pot on stove in kitchen?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who is preparing a dessert in the kitchen?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person pour into a deep nonstick pot?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who pours oil into a saucepan?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing something in the kitchen with some ingredients?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is in kitchen a female doing?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is women in kitchen doing?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a chef demonstrates how to prepare a dish doing?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7512\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is talking about a conspiracy theory in a music video?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing on the televison?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a short video clip showcasing?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is singing during a music video?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man talking about to images of a pretty girl?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"materialism\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about materialism to images of a pretty girl?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about satan?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man talking about?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"satan\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman singing on?\",\n    \"video_name\": \"video7513\",\n    \"answer\": \"televison\"\n  },\n  {\n    \"question\": \"what described about the some biological term in the slideshow?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a lady explain eagerly the model of the thomson s plum pudding concept of?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"atom\"\n  },\n  {\n    \"question\": \"what does a women describe a type of while displaying a computer generated picture?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"diagram\"\n  },\n  {\n    \"question\": \"what is a women explaining?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is person presenting on the screen?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"what has a vague image of a tall brown cake on a pale plate?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"rectangle\"\n  },\n  {\n    \"question\": \"what is a women showing the parts in?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a woman talking about while pointing to it on a computer screen?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what does a power point presentation on thomson s plum pudding model of?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"atom\"\n  },\n  {\n    \"question\": \"who is presenting his latest project on the screen?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is speaking to some people in the background?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about popular art while pointing to it on a computer screen?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is person presenting his latest project on?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who explains a power point presentation about raisins and plums?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a women describes a type of food while doing?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who explains eagerly the model of the thomson s plum pudding concept of the atom?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who describes a plum pudding recipe with a diagram?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7514\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man in a red shirt talk to outside some apartments?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt talking to?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is yelling outside an apartment building?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in a parking lot?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talked outside?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a man talking on?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what does a woman talk to?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a black man talk to?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to the camera?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking on a bike?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to a camera?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a black man talk to while sitting on a bicycle?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rides a bike in a parking lot?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in a parking lot doing?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is a man in front of an apartment complex doing?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt doing?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a black man talks to the camera while doing?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who talks to the camera while sitting on a bicycle?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is pointing at another man on a motorcycle?\",\n    \"video_name\": \"video7515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks about the data science?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"what is a woman with a black jacket talking to?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do video content not playing after press play?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"button\"\n  },\n  {\n    \"question\": \"who describes between the man and database?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing standing?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a woman with a black jacket doing?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women in a dress talks about data scientist she tells how they are problem solvers and well educated she starts doing?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is women in black suit doing?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video content not doing?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is woman in black suit doing?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl in blue dress doing?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who talks about positive views of data science?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing color cloth speaking on?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing speaking on topic data?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is woman in black clothes doing?\",\n    \"video_name\": \"video7516\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is parked on a road?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"what is a silver car parked on?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is shown from different angles?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being shown from different angles?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a silver volkswagon cc being described by?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"coupe\"\n  },\n  {\n    \"question\": \"what is parked outside near a dirty hill?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"what do both a man and a woman review multiple aspects of?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is compared with the other car about its power stering and suspension?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are cars sitting on a road that is gray in?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is parked on flat ground covered with pebbles by hills with dark bushes and dried growth?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is demonstrating various features of a car?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explains the features of a silver colored sedan car?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is talking about what kind of things are in a volks wagon vehicle?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman demonstrating various features of?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman and man doing?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a lady and man doing?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cars doing?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are the man and woman doing?\",\n    \"video_name\": \"video7517\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many robots raise their arms?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many robots chat?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is floating in space?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are having a funny discussion?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does an animation show?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a game character floating in?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what shows characters from minecraft?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what are minecraft characters having?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what do characters from minecraft floating in talking about going to the moon?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who discuss going to the moon?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a game character doing?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what a video of video game characters having?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is characters from minecraft doing?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is minecraft characters doing?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what are robots doing?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is mine-craft characters doing?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many cartoon characters discuss going to the moon?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did a humorous video of characters from the video game minecraft engaged in?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is this is 2 lego figures doing?\",\n    \"video_name\": \"video7518\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does video game screen recording having guys speak to each other while they play get on?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does video game screen introducing optimus get on?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does player make sure is clear in a first person shooter game?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"who makes sure a bedroom area is clear in a first person shooter game?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what army man with loaded machine gun walking down?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"stair\"\n  },\n  {\n    \"question\": \"what is a video game player taking while dramatic music plays?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"damage\"\n  },\n  {\n    \"question\": \"who is win?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who shoots?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is player doing?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is army man with loaded machine gun doing?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is video game screen doing?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a rendering of a digital warrior doing?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who squats?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a first person video game?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do autobots clear buildings out in?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"optimu\"\n  },\n  {\n    \"question\": \"what is used briefly during video game play?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is telling about a bedroom area?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is face all the obstacles?\",\n    \"video_name\": \"video7519\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who decreases the flame in a kitchen?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person cooking potatoes in a skillet add to it?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what does a person decrease the flame in?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are potatoes fried in?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a person decrease in a kitchen?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"flame\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is added?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"who is cooking potatoes on the stove and the lady talks about melting butter?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking potatoes on a stovetop in butter and garlic?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who adds butter to the pan then turns the heat on the stove up?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone preparing with vegetablesbutter and other ingredients in a black nonstick pan?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what segment where there are caramelizing potatoes?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a man wearing white shit and black pant preparing vegetable in?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man wearing white shit and black pant preparing in a kitchen?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"who is cooking potatoes in black pan in a kitchen?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing a delicious dish with vegetablesbutter and other ingredients in a black nonstick pan?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is in a kitchen a person adds butter to a pan doing?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a man in his kitchen doing?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is there is a man in the kitchen on the pan there is oil doing?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what are a cooking segment where they doing?\",\n    \"video_name\": \"video7520\",\n    \"answer\": \"caramelize\"\n  },\n  {\n    \"question\": \"who a woman folding?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"jogging\"\n  },\n  {\n    \"question\": \"who is demonstrating the flexibility of a movement assistance device?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is demonstrating a feature of a stroller?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining how to use a jogger?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who folding a stroller?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who folding a baby carriage?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about jogging?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sets up a child stroller?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is testing a baby stroller?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a woman demonstrating a feature of?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is talking about a stroller?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is a woman talking about?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is a woman testing?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does a woman set up?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what a woman folding?\",\n    \"video_name\": \"video7521\",\n    \"answer\": \"carriage\"\n  },\n  {\n    \"question\": \"what do several different women in bright clothes promote with a bright pink logo?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"where are a very cute girls doing cat walk with nice dress?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who walk down a pink runway while hip hop music plays?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is a couple of runway models take turns doing?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"strut\"\n  },\n  {\n    \"question\": \"what is the woman walks on the runway doing?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women dressed in barely any clothes posed for people doing?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is woman in pink jacket doing?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a fashion dress design a girl doing?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are young women doing?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"stroll\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do a fashion dress design a girl wearing fashion dress dressing walking on stage audience watching playing displaying on screen?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are young women strolling down while holding contestant cards in a mall?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are women walking during a fashion show?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who walks in lingerie?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl walk in?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"lingerie\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a very cute girls doing cat walk in a place with?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what are a very cute girls doing in a place with nice dress?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do various fashion models walk down while hip hop music plays?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do a couple of runway models take turns strutting down?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"who walks on the runway modeling the pink bikini?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a fashion show in the mall girls walk in while a girl walks in lingerie?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what do young models walk at a fashion show in a shopping mall?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is playing while women walk down a runway and model clothing?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a very cute girls doing cat walk in with nice dress?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what were a lady walking on the stage and peoples watching?\",\n    \"video_name\": \"video7522\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is bleeding?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is bone doing?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"protrude\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is an injured man photo doing?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"bleed\"\n  },\n  {\n    \"question\": \"what do the players break?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"leg\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who has suffered some serious injuries?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did bone protrude from?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what protruding from man?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"bone\"\n  },\n  {\n    \"question\": \"who shows gruesome sports injuries?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what is a man with bruises after?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is an injured man photo showing in?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is with bruises after a game?\",\n    \"video_name\": \"video7523\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is judges doing?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what are judges doing?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a family is behind the scenes doing?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"await\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do a video showing a contestant on the show performing?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what watches?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do judges listen to?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"audtioner\"\n  },\n  {\n    \"question\": \"what do a clip from the show?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who performs for judges?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what watches tv on the set on a gameshow?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what plays over the final dramatic moments of a television game show?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is singing a song and judges listening sad music?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is folding his hand and leaning forward in contemplation?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is behind the scenes awaiting the final results in the television show the voice?\",\n    \"video_name\": \"video7524\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"where are a two of souldiers fighting?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are a two side of soldiers fighting in?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what do an army charges across a battlefield and people die along?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what are warriors running and a heavy combat taking?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what do men in an army battle run down a hill fight hand to?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what do men in an army battle run down a hill fight to hand?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what do men in an army battle run down fight hand to hand?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what are the soldiers fighting against each other to win in the war?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what are the soldiers fighting against each other to win the war in?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what do a battle with a large amount of men charging down a hill?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what do men in an army battle run down a hill carry wounded men to?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"safety\"\n  },\n  {\n    \"question\": \"what do men in an army battle run down carry wounded men to safety?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what charges into another in battle with gunfire?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"what is full of many men fighting against each other?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"battlefield\"\n  },\n  {\n    \"question\": \"what are a two of souldiers fighting in?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is the battlefield is full of many men doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are soldiers doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"charge\"\n  },\n  {\n    \"question\": \"what are here is a war scene where characters doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is warriors doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what are in the war the soldiers doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are a two side of soldiers doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are a two of souldiers doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a battle scene with a large amount of men doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"charge\"\n  },\n  {\n    \"question\": \"what is a movie clip of a battle scene with many people doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a movie clip about a war doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is extreme violence scenes with people doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is there are many soldiers who doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are more peoples doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is there is a warpeople doing?\",\n    \"video_name\": \"video7525\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man laughs while doing?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"gtum\"\n  },\n  {\n    \"question\": \"who laughs?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do males provide?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"what is a sniper readying?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"who is playing gta 5?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a young man play?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do a man playing a third person shooter?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has his video game character run around?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what play footage of grand theft auto?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is readying a kill?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"sniper\"\n  },\n  {\n    \"question\": \"who laughs while playing a game?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what walk through of a popular shooter game while males laugh and provide commentary?\",\n    \"video_name\": \"video7526\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is speaking to the camera?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a silent clip of a woman doing?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"who is holding a small child?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman upset and doing?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is an angry woman speaking to?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who upset and yelling about something?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a little girl holding?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is talking outdoors?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who holds a baby?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding a baby?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman hold?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a woman holding?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who got tensed?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is shouting angrily?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who looks angry?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is an angry woman doing?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who yells emotionally?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7527\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is eva avringale doing?\",\n    \"video_name\": \"video7528\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7528\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7528\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing a song and dancing?\",\n    \"video_name\": \"video7528\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"who avringale singing?\",\n    \"video_name\": \"video7528\",\n    \"answer\": \"eva\"\n  },\n  {\n    \"question\": \"what avringale laughing?\",\n    \"video_name\": \"video7528\",\n    \"answer\": \"eva\"\n  },\n  {\n    \"question\": \"who did a girl performing with a band juxtapose with talking to a guy and someone walking downstairs?\",\n    \"video_name\": \"video7528\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing a song in a music video?\",\n    \"video_name\": \"video7528\",\n    \"answer\": \"lavigne\"\n  },\n  {\n    \"question\": \"who sings in different locations about a man?\",\n    \"video_name\": \"video7528\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings about being there for a person no matter what happens?\",\n    \"video_name\": \"video7528\",\n    \"answer\": \"lavigne\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is online doing?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is an animation talks about doing?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is woman speaks in reference to a power point she doing?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is it is about doing?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"who teaches about how the web is helpful?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what infomercial?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"internet\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"web\"\n  },\n  {\n    \"question\": \"what talks about using the web?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is talking about the web?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is about learning in the classroom?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what allows people to do?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"internet\"\n  },\n  {\n    \"question\": \"who is explaining learning methods?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman talks about the internet s?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"who explains how the internet helps education?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the narrator explain educational benefits of?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"internet\"\n  },\n  {\n    \"question\": \"who explains educational benefits of the internet?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is talking about the internet?\",\n    \"video_name\": \"video7529\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do different animals on the ocean floor move across?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a large sea star moves across the ocean floor doing?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what sweeps across the sea floor?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is filmed with various organisms shown?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"environment\"\n  },\n  {\n    \"question\": \"what does an octopus moving through the water in?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what is about underwater coral reef life?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do creatures of the ocean floor dance in?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what does an octopus moving through in fast motion?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does pink starfish type animals move quickly across the sea s?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is swimming in the deep water?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what captured to the bottom of the ocean with a star fish and the way of moving from one place to another place?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what is shot of an octopus changes to sea creature doing?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a star fish doing?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a view captured to the bottom of the ocean with a star fish and the way of doing?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is an octopus doing?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are presentation of the beautiful animals which doing?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are the big sea starts doing?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is certain species of fish doing?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what does music play in?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is sea creatures being shown in fast motion and music playing in?\",\n    \"video_name\": \"video7530\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who see the mobile phone sms?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a foul mouth acts out a scene in a small room?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running in a livingroom picks up his phone and looks at the photos on his phone?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does handsom young man appear deep in?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"thought\"\n  },\n  {\n    \"question\": \"who appears deep in thought?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"handsom\"\n  },\n  {\n    \"question\": \"who run the room?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man run?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is in the south indian movie the hero is afraid for doing?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what mouthed indian man acts out a scene in a small room?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"foul\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is man in blue shirt doing?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is person in blue shirt doing?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt realizes something after doing?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man in jeans and a blue shirt doing?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does a man look at pictures of a men in blue dress remembering?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who looks at pictures of a men in blue dress remembering a bloody scene?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a men in blue dress watching a mobile phone about?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"murder\"\n  },\n  {\n    \"question\": \"what did a foul mouth indian man acts out in a small room?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what show in which a man looks fearfully out a window?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is a men in blue dress watching about a murder?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is person in blue shirt watching some photos on?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a men in blue dress running inside?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does a man in a blue shirt realize after looking at a picture?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a young brown skinned man run into then goes back to pick up a camera?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"closet\"\n  },\n  {\n    \"question\": \"what does a young brown skinned man look at the images as?\",\n    \"video_name\": \"video7531\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is playing a videogame?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a group of video game characters make?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"who is flying high in a video game?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are men commenting on in a desert?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are characters messing around in with commentary?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"where are men commenting on a game?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are characters doing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two characters doing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are men commenting on a game in?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many men are laughing while playing a video game together?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man on?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is a man playing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"videogame\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is on a beach?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7532\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do a lady wearing glooves in hand a person in blue dress sticking sticker to nose displaying on?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who glooves in hand black color and other person sticking sticker to nose displaying on screen?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"wearing\"\n  },\n  {\n    \"question\": \"what does a girl wearing glooves in hand black color and other person sticking sticker to nose displaying on?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a girl wearing glooves in hand black color and other person sticking to nose displaying on screen?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"sticker\"\n  },\n  {\n    \"question\": \"who puts on black gloves covered in white dots?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a lady wearing glooves in hand a person in blue dress sticking to nose displaying on screen?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"sticker\"\n  },\n  {\n    \"question\": \"who tries on some gloves that are covered in white dots?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"transmit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is the women doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is a woman with brown hair doing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man talk about a glove with as he fits the glove on a woman s hand?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"tape\"\n  },\n  {\n    \"question\": \"what is a woman with brown hair talking about?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man talk about with retroreflective tape as he fits the glove on a woman s hand?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"who does a man is placing a glove onto a woman s hand is smiling and laughing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who fits the glove on a woman s hand?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are transmitting devices placed on while a man explains their use?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts gloves on a woman that have small white dots on them?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a glove with retroreflective tape as he fits the glove on a woman s hand?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who glooves in hand black color and other person putting glooves?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"wearing\"\n  },\n  {\n    \"question\": \"who is checking out a pair of knobbed black gloves?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts on black gloves with white spots on them?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man is placing a glove onto a woman s a woman is smiling and laughing?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a lady wearing a glouse then a person put a sticker on?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what does a man fit the glove on a woman s?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what are man and woman doing with their hands and noses?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a women wearing on black gloves and a sticker to?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"who are doing something with their hands and noses?\",\n    \"video_name\": \"video7533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is couple of woman in tshirts doing?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a blue tshirt woman doing?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a mature woman doing?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a blue shirt doing?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady caresses black horse and doing?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady in blue tshirt near the horse and doing?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a black horse in a stall stands between a heavy woman who doing?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"stroke\"\n  },\n  {\n    \"question\": \"what is two ladies doing?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what are two woman one in blue tops and other in pink color tops doing?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a women in blue shirt explain care of to another women?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman in a blue shirt talking to another woman about?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a women in blue shirt taking care of?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is a woman in a blue shirt talking to about a horse?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women carry on a conversation next to a horse?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who stand in a barn near a horse and converse?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two woman one in blue tops and other in pink color tops talking about?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does couple of woman in tshirts talking about?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what do a lady in blue tshirt near?\",\n    \"video_name\": \"video7534\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is walking down the runway in a striped dress?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a girl in striped dress with scarf around the neck having?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"hairstyle\"\n  },\n  {\n    \"question\": \"where do models in modest dresses and jackets walk down stage with large audience?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what do isabella rossellini talks about fabric as female models walk across?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who talks about the young models on the runway?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"actres\"\n  },\n  {\n    \"question\": \"what are beautiful and smart models walking in with beautiful dresses?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"who rosselli talks about the kinds of clothes on the runway models?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"isabella\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a lady named isabella doing?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is walking in the fashion show?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do models in modest dresses and jackets walk down stage with on either side?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what do models in modest dresses and jackets walk down stage with large audience on?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is woman in white dress giving for the models?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman walking down in a striped dress?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what does a female fashion model walk while female models interview an actress?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who do female models interview?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"actres\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a runway for a fashion show and women doing?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is an old woman doing?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in designer clothing doing?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are beautiful and smart models doing?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is different models doing?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some female models doing?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in designer clothing walking on a woman in the audience is speaking?\",\n    \"video_name\": \"video7535\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is a black shirt man doing?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is with braided black hair pulled back stands in front of a horizontal screen doing?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a large tv display shows sharks doing?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a man in dreads doing?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a guy with dumb hair doing?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man with stupid doing?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is we can see a man doing?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what does a man play in with a bunch of sharks?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are peoples seeing the sea fish from?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"underworld\"\n  },\n  {\n    \"question\": \"what are peoples seeing from the underworld?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what does the projector show on the screens?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what shows the fish on the screens?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"projector\"\n  },\n  {\n    \"question\": \"what are few peoples gathered to watch?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays in the pool with a bunch of sharks?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are in the glasses and man watching?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"who was beautiful big sharks in water seen by?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks as the projector shows the fish on the screens?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy with dumb hair walking around?\",\n    \"video_name\": \"video7536\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who explains in a busy kitchen many people are preparing food?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who explains about the spicy how the trainees will now lay out a dish to be served?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is keeping the food in the plate and other person wipe the water?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does a chef explain about the spicy curry?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who puts the final touches on a dish before it is served?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"executive\"\n  },\n  {\n    \"question\": \"who explains about the spicy curry fish sauce?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does a male narrator explain in a busy kitchen many people are preparing?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a chef explain about curry fish sauce?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"spicy\"\n  },\n  {\n    \"question\": \"what is a chef with white dress doing?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"what is woman in white dress doing?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"decorate\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is chefs in a kitchen doing?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"plat\"\n  },\n  {\n    \"question\": \"what are a group of different cooks doing?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are in a busy kitchen many people doing?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is there is a man in white doing?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is waiters doing?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what does a chef explain about how the trainees will now lay out a dish to be served?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"spicy\"\n  },\n  {\n    \"question\": \"who presents and perfect the display of a dish?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does an executive chef put the final touches on before it is served?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is keeping the food in the plate and other person give the water?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is served?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a chef explain about the spicy?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"curry\"\n  },\n  {\n    \"question\": \"what is chef keeping in the plate and other person give the water?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is woman in white dress decorating the food in?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what are a group of different cooks preparing for serving in a line?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is woman in white dress decorating in a plate?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is chef keeping in the plate and other person wipe the water?\",\n    \"video_name\": \"video7537\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man driver a car with?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"guidance\"\n  },\n  {\n    \"question\": \"how many men ride in a car together?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men discuss a movie in?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do two men discuss in a car?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"how many guys chat in their car?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys ride in a car?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two guys talk while doing?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"how many guys talk about different perspectives?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is this is a video of two guys doing?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are two man doing?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is two men are in a car doing?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is driver a car with guidance?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men driving?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are two men riding in?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"how many men are in a car talking about how their was a misinterpretation of a conversation?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys talk while driving around in a car?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are driving around in a car?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are riding in a car?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men discuss a movie in a car?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men driving around in?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do two guys chat in?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do two men ride in together?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are two man driving in?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do two guys ride in?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is man driving?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who are driving in a car?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the men drive in?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"how many men are driving the car?\",\n    \"video_name\": \"video7538\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a group of people quietly creep through a scary doing?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a group of people sit around a candle doing?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a movie trailer doing?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is group of people doing?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what does not load?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are people holding hands in?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what do people sit at a table around?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what do a group of people sit around talking?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what do people sit at around a candle?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what did premire clip for a horror movie seance?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is showing people in a haunted house?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what does a group of people sitting in a circle preform?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"seance\"\n  },\n  {\n    \"question\": \"what did group of people walking through a dimly light?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"what do a group of people sit around screaming?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what are a group of people being haunted in?\",\n    \"video_name\": \"video7539\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does a lady mix?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"who takes a spoon mixing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who mixes some cream?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a chef adds a spoon full of toffee to a dessert he doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is akis kitchen program doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is man in white shirt doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a young man in doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"scoop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is pushing a little deeper?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is pressing a gently inside the coffee mixture?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is mixing up some chocolate and peanut butter?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is using a spoon to mix a dessert in a bowl?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is scooping peanut butter out of an can?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing a scoop of peanut butter inside a coffee?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who adds a spoon full of toffee to a dessert he is preparing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a man moving from a can to a cup with brown liquid using a spoon?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"peanut\"\n  },\n  {\n    \"question\": \"what is a man mixing with other food item?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what did a man stirring dulce de leche into filling?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who adds a sweet substance to a bowl of melted chocolate?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who takes a spoon puts yellow colored cream into a dark brown gravy?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is moving peanut butter from a can to a cup with brown liquid using a spoon?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man mixing some stickey pest into?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what did akis kitchen program showing how to make chocolate stuff?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"who is mixing something with other food item?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about how to bake a dessert?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates how to make a toffee dessert?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make a chocolate and peanut butter treat?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in white shirt mixing in the small dish?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a chef add a spoon full of toffee to he is preparing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"dessert\"\n  },\n  {\n    \"question\": \"what does a man add to a bowl of melted chocolate?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"substance\"\n  },\n  {\n    \"question\": \"what does a chef add a spoon full of to a dessert he is preparing?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"toffee\"\n  },\n  {\n    \"question\": \"what is a person using to mix a dessert in a bowl?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"what is a man scooping out of an can?\",\n    \"video_name\": \"video7540\",\n    \"answer\": \"peanut\"\n  },\n  {\n    \"question\": \"who says something to another guy?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who walks down a hallway while the walls and doors rotate behind him?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks down a hall using an extremely wide camera angle?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person waking with the camera which roll?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who walks around with a camera facing towards him?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is shown in the background of vaughn hillyard the graphics is shown nicely in nbc news channel?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"movement\"\n  },\n  {\n    \"question\": \"what is a man walking down while being filmed with a weird video camera?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who walks through hallways filming himself with a fisheye lens?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks down a hallway with a distorted lens modulator?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who uses a special kind of camera to film a hallway?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking down a hallway while being filmed with a weird video camera?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks down a hallway in camp cruz in des moines?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks into a pathway of a hotel room using a camera in his hand?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man walks down a hall doing?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"what is a man watching on mirror?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what does a man hold?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who do the walls and doors rotate behind?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy walk into a pathway of a hotel room using a camera in?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a man watching his face on?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is a man sitting getting moved in?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"who holds a camera?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a room pushign around?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is watching his face on mirror?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man watching his background getting moved in?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what does a guy walk into a pathway of a hotel room using in his hand?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a man walk down while the walls and doors rotate behind him?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a guy walks into a pathway of a hotel room doing?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man walks through hallways doing?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is man in blue shirt doing?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7541\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is playing pretend cop with a little girl?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who gets out of a play police car and talks to a girl?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is having conversation with blonde girl?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who does a boy get out of a play police car and talks to?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is a small boy playing with a little girl?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"who is a super cute little boy dressed like?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"policeman\"\n  },\n  {\n    \"question\": \"who gets out of a toy police car?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is showing a cell phone to a super cute little boy?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many kids play cops and robbers in search for a stolen toy?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does the boy in police uniform reach?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl in a purple shirt doing?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a boy gets out of a toy police car and walks up to a girl doing?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a small boy has dressed up as a cop and doing?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what was a girl had a phone and a boy doing?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two little children doing?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a small girl looks to be alone doing?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a super cute little boy is dressed like a policeman and doing?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who walks up to a girl wearing a pink shirt to talk?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who has a small boy dressed up as?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"cop\"\n  },\n  {\n    \"question\": \"what did a girl have?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is a boy approaching?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who had a phone?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a young boy help out?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a boy and girl act out?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"investigation\"\n  },\n  {\n    \"question\": \"who is approaching a small girl?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what was a boy playing with?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does the boy in police uniform get out?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who was playing with small car?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does a young boy act like?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"cop\"\n  },\n  {\n    \"question\": \"who is getting down from the small car?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a super cute little boy driving?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who looks to be alone standing?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who has dressed up as a cop?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who helps a young girl out?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who acts like a cop?\",\n    \"video_name\": \"video7542\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"reel\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"hunt\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a man with a fishing rod doing?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is there s a man doing?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"what does the fisherman reel in?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"who is fishing?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man fishing on?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a man fishing from?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a person hunting for?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what does guy reel in?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who reels in his line?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"fisherman\"\n  },\n  {\n    \"question\": \"who is fishing on the boat?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fishing from a boat?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows you how to make a loop knot for fishing?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do pro tips with captain cefus mcrae teaches a man how to make a surgeon s?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"loop\"\n  },\n  {\n    \"question\": \"who is teaching how to tie knots?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rolling in the fishing line?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reeling in his fishing line?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who reels in a fish?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is someone?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"who is giving fishing tips?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hunting for fish?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do pro tips with captain cefus mcrae teaches how to make a surgeon s loop knot?\",\n    \"video_name\": \"video7543\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a car speeding down with flames coming out the back?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is burning?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"racing\"\n  },\n  {\n    \"question\": \"who falls?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"skateboarder\"\n  },\n  {\n    \"question\": \"who falls down?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"skateboarder\"\n  },\n  {\n    \"question\": \"what is the car on?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what does the race track s on?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a race car on?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is fire behind?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is on fire?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is behind a car?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what does a car go racing down?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a race car drive down while on fire?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what s on fire?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who goes down a track?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"racecar\"\n  },\n  {\n    \"question\": \"what is a race car driving down?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"racetrack\"\n  },\n  {\n    \"question\": \"what is driving down a track?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is showing driving around the tracks?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is driving down a racetrack?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who did a racing car trailing fire follow by falling off a banister?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"skateboarder\"\n  },\n  {\n    \"question\": \"what did a racing car trailing fire follow by a skateboarder falling off?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"banister\"\n  },\n  {\n    \"question\": \"what is speeding down the race track with flames coming out the back?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives down the track while on fire?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does fast car on a track catch on?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what goes racing down the road?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a racecar go down?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a car goes doing?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a race car doing?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a race car doing?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a racing car doing?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"burn\"\n  },\n  {\n    \"question\": \"what is a racing car doing?\",\n    \"video_name\": \"video7544\",\n    \"answer\": \"trail\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a violin?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a guitar?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing guitar?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who do a guitar playing?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a guitar doing?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7545\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is making some models?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what does a man describe?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"glider\"\n  },\n  {\n    \"question\": \"who is talking about having a sugarglider as a pet?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing owning a pet?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman talking about?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is playing with a hamster on the table?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about raising a sugar glider?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many persons are telling about some thing?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking with a woman beside him?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what pans form a cage to the man discussing the animals?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a person playing with a hamster on?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who discusses if a sugar glider is an appropriate pet?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man talking with beside him?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about right environment for animal?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the camera pan form to the man discussing the animals?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"who is talking about tips for caring for a sugar glider?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing with on the table?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"who describes a sugar glider?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two persons telling about?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man and woman in front of camera man doing?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"raise\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7546\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who tells a young women where to get a fine selection of guitar tablature?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing a paper?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is holding a guitar?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is wearing a white shirt?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is holding a paper and a guitar?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"who plays with a small guitar?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do sexy brunette in talking to the camera?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"what brunette in white top talking to the camera?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"who is talking in front of camera?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"what did the long haired girl give demonstration on?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what do asian teenager making on how to play the ukulele?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did the long haired girl give on guitar?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"where do sexy brunette talking to the camera?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"who is showing some photos on the web cam?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady holding?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a lady wearing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a girl is in her bedroom doing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a teenage girl doing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a brown haired younger woman doing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is black haired woman doing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is brunette woman doing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl showing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is sexy brunette in white top doing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl in grey shirt doing?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a young women blog in?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a young girl set on?\",\n    \"video_name\": \"video7547\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a police officer doing?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"quest\"\n  },\n  {\n    \"question\": \"what is shown about people who committed crimes?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is being promoted through the use of a colonial movie?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what flees from a crowded plaza?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is a woman dragged into by a man?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is singing in the most recent les miserables?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what does a sea captain speak harshly to someone in?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is talking to a homeless man?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a sea captain speak harshly to in a movie?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are people stoppped by military in?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"where are victorian dressed people?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"who is questing local people?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who is walking towards another man?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to prisoners?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wearing a hat?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man walking towards?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are victorian dressed people in?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what is a woman wearing?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what are a man and woman looking at each other through?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what a man stares at a woman through?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who speaks harshly to someone in a movie?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"who is a woman dragged into the crowd by?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stares at a woman through the crowd?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dragged into the crowd by a man?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is looking at a woman while running away from authorities?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who a man stares at through the crowd?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man looking at while running away from authorities?\",\n    \"video_name\": \"video7548\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man who looks like a woman is in a red shirt and speak about?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does woman sitting in chair talking have?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"blond\"\n  },\n  {\n    \"question\": \"who is promoting martha stewart pet products?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what does woman sitting in chair talking have on?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what does a blond woman hold up while sitting in a gray chair?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"who is talking about dog grooming?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what does a man who looks like a woman talks about martha stewarts?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"shampoo\"\n  },\n  {\n    \"question\": \"who holds up dog clothing while sitting in a gray chair?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"blond\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman with blonde hair and a red shirt doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a blonde person doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a short-haired blonde woman doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl in red color dress cloth doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a blond woman holds up dog clothing while doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a golden hair lady doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman in a red shirt doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a blonde woman in a red shirt doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman in a red shirt with blonde hair doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a transvestite shows what she bought for her dog doing?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"who is in a red shirt and?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what page where a female is giving a lot of tips in favor of a product?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what is a blonde person talking about?\",\n    \"video_name\": \"video7549\",\n    \"answer\": \"grooming\"\n  },\n  {\n    \"question\": \"what show showing models?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what do female fashion models walk down?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are some females walking?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman walking down?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is a model walking down?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are female models doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is walking down the runway?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is fashion show runway walk doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what are cute girls doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is a model doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a female fashion show females doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a fashion show with women doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a clip from a fashion show doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is ladies doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is walking down the runway?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are some females doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what walk involving several models?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who walks down the runway at a fashion show?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a clip from a fashion show featuring?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"sherrus\"\n  },\n  {\n    \"question\": \"what does a woman walk down at a fashion show?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a female fashion show females walking in and out?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"walkway\"\n  },\n  {\n    \"question\": \"what do women at a fashion show?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"who walk down a runway?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is modelling clothes?\",\n    \"video_name\": \"video7550\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is been recorded?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"steel\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a concrete walkway with metal doing?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"rail\"\n  },\n  {\n    \"question\": \"what is a person walks down a metal staircase doing?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"overlook\"\n  },\n  {\n    \"question\": \"what is a brown bridge doing?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is this videos is about a man doing?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person outside doing?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is walking down some steep stairs with heavy plant growth to the sides?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is walked down a flight of stairs surrounded by foliage?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who climbs down in steps which is being surrounded by trees?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is made of iron bars is constructed on the way to falls?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"who walks down a metal staircase overlooking a majestic view?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is crossing over a rough river with lush vegetation surrounding it?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"who is walking down some stairs?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who walks down a very long outdoor flight of stairs?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is about a man walking down the steps?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a brown bridge crossing over with lush vegetation surrounding it?\",\n    \"video_name\": \"video7551\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does a french video gamer chase?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what was the video game full of?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"who is discussing a video game being?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing with friends?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game with friends?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was full of action?\",\n    \"video_name\": \"video7552\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a very young child demonstrates doing?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a small kid doing?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a small kid walking near?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who walking around?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who walk?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who run?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is kid walking in?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what is a kid performing for?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a child running through?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who demonstrating walking?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is walking in garden?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is performing for the camera?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is walking near tree?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a child demonstrating walking by walking towards a tree in a park?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"word\"\n  },\n  {\n    \"question\": \"who is walking with large yellow boots?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is demonstrating the word walking by walking towards a tree in a park?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is running through a park?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is walking outside?\",\n    \"video_name\": \"video7553\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"who is doing a cooking show?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting up vegetables on a cutting board?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a person chops up?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what appears while a man cuts a leak with a cleaver?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting up?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is prepared?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a man teaching about?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who chops up a green onion?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting scallions?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts a leak with a cleaver?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is teaching about food?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting vegetables?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting up vegetables?\",\n    \"video_name\": \"video7554\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a trainer doing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a woman brushing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who did a lady sied a horse is there?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"hairanother\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a pink dress girl doing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a red shirt and black vest doing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"groom\"\n  },\n  {\n    \"question\": \"what is horse doing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is this doing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is cleaning by a lady and a man also there?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a woman nail on it?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"shoe\"\n  },\n  {\n    \"question\": \"what does the man make clean and checks in hoofs?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does young women from different walk of prepare for different acts?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what does a brown horse running and a girl brushing horse hairs combing?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does a brown horse running and a girl brushing horse hairs putting?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"plat\"\n  },\n  {\n    \"question\": \"what is a person cleaning the hair of?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman shoeing people are putting shoes on?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a woman in a red shirt and black vest groom?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is cleaning the hair of the horse?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stands in a red horse stall and brushes a large horse?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who makes the horse clean and checks in hoofs?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shoeing a horse people are putting shoes on?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a women cleaning the body of horse and a girl tie?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a man brushing while a woman or a man are wearing their accessories?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is brushing a horse?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is brushing his horse while a woman or a man are wearing their accessories?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who nails a shoe on it?\",\n    \"video_name\": \"video7555\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who prepares?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"where do men play baseball?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who tries to close out a world series game?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"eckersley\"\n  },\n  {\n    \"question\": \"what is a pitcher doing?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what will a baseball game to see if dennis eckersley allow?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what do men play on a field?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is a team doing?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do men play baseball on?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who prepares to bat?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what do a s prepare to pitch?\",\n    \"video_name\": \"video7556\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a blue shirt lady playing on the road?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is an asian woman playing a guitar on?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is the woman singing in standing near the road?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is black haired asian woman playing?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who sing a song and playing music?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is an asian woman with a guitar standing out?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is an asian woman playing on a road?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a blue shirt lady playing guitar on?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing singing music playing with guitar displaying on screen?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who is playing a guitar on a road?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what skinned women singing song in english?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what did black hair olive skin women singing in english?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who did sexy brunette singing with guitar in the garden?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who is playing guitar outside in the street?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing the song in standing near the road?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing color cloth singing playing with guitar displaying on screen?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what brunette singer singing with guitar in the garden?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"what did sexy brunette singer singing with guitar in?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is an asian girl playing outside in the street?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a music video of a younger girl doing?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a blue shirt lady doing?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is black haired asian woman doing?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl in blue dress doing?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman with an acoustic guitar doing?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an asian woman doing?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an asian woman with a guitar doing?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is an asian girl doing?\",\n    \"video_name\": \"video7557\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are two men doing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what forthem?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"when are people?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do people introduce?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is an announcer introducing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"when are people performing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a girl makes music doing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is amateur video of a young girl doing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an announcer doing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is two boys doing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"when do two boys come?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are people hosting a show of?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"magic\"\n  },\n  {\n    \"question\": \"who do two male announcers announce s talent show act on a stage?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many men are on stage while an audience cheers forthem?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two male announcers announce a young girl s talent show on a stage?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what do two male announcers announce a young girl s show act on a stage?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"talent\"\n  },\n  {\n    \"question\": \"how many boys then leaves after which a girl comes and places a tumbler on the floor to make music?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is showing some magic with the glass on a big hall?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who announces a girl who comes on stage to sing?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes music using a cup on stage?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many male announcers announce a young girl s talent show act on a stage?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is introducing the next act?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"when do two male announcers announce a young girl s talent show act?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who announce a young girl s talent show act on a stage?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"who speaks to an audience on stage?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are two men while an audience cheers forthem?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a kid showing with the glass on a big hall?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"magic\"\n  },\n  {\n    \"question\": \"who plays with a cup on stage?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many boys come to the stage?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who uses a cup to create a song?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about something in a stage?\",\n    \"video_name\": \"video7558\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is serving food to a man?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is eating food prepared by a chef?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is being served small plates of food?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tastes the food of two expectant chefs?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who thanks the people who made the food for him?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man being served small plates of?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who prepares a recipe to be eaten?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man trying?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man being served?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are people serving?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man eating at?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is trying new food?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being served food?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating at the table?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two asian business owners serve to a customer?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"cuisine\"\n  },\n  {\n    \"question\": \"what did a woman serving a man japanese?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is a woman serving food to?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman serving to a man?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who do two asian business owners serve their cuisine to?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"customer\"\n  },\n  {\n    \"question\": \"who is trying some sushi?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7559\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"who s hands are shown creating a design with a chain of magnets?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who creates a tube with magnets?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person lace together on a table?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"necklace\"\n  },\n  {\n    \"question\": \"what does a man create with magnets?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"tube\"\n  },\n  {\n    \"question\": \"what is putting together a chain?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is winding rows of magnets?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wrapping magnets?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who lines up magnets on their finger?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person s hands are shown creating with a chain of magnets?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"who wraps 12 magnets around their index finger?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make a tube out of a bunch of magnetic balls?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is somebody doing?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"straighten\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person s hands are shown doing?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"wrap\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"wind\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who laces a necklace together on a table?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone putting together?\",\n    \"video_name\": \"video7560\",\n    \"answer\": \"chain\"\n  },\n  {\n    \"question\": \"what is this is someone doing?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who demonstrates the use of a toy cooking set?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video of kids doing?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a play kitchen set for kids where she doing?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what does a child make play?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is pretending to cook?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a child cooking with?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who makes play food?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is playing with toys?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking with toy?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is playing with toy food?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is pretending to cook some food?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing with a toy kitchen?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is playing with a toy stove?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is cooking with a pretend stove?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing with a toy kitchen set?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is this person doing?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"who bakes a fake meal on a plastic oven?\",\n    \"video_name\": \"video7561\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what plays as a text explanation about nasa is scrolling on screen?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a person showing information on?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is some white text doing?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is text is shown doing?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is music plays as a text explanation about nasa doing?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is a ppt presentation scroll doing?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is text doing?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is some words about nasa doing?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what are a sentence doing?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is a message doing?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is there is a doing?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is some incident of nasa doing?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is about the artificial satellite named the black knight by the nasa space center?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what is a person showing on the screen?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what is shown on a screen ahout nasa?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"article\"\n  },\n  {\n    \"question\": \"what is text rolling on talking about nasa?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who does benefit s some text is being displayed for?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"viewer\"\n  },\n  {\n    \"question\": \"what is some words about nasa scrolling in?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what s some text is being displayed for the viewer?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"benefit\"\n  },\n  {\n    \"question\": \"what is rolling on the screen talking about nasa?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is scrolling bottom to up regarding the details of nasa satellite?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"message\"\n  },\n  {\n    \"question\": \"what is shown regarding the alleged cover up story by nasa?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what are scrolling in the screen abit nasa?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"sentence\"\n  },\n  {\n    \"question\": \"what s johnson space center being broadcasted on news?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"article\"\n  },\n  {\n    \"question\": \"who is showing information on the screen?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does benefit s is being displayed for the viewer?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is a text explanation about nasa scrolling on?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a message scrolling to up regarding the details of nasa satellite?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"bottom\"\n  },\n  {\n    \"question\": \"what do the words from a newspaper article scroll up?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who presents a long paragraph in white letters?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what is scrolling on a tv screen?\",\n    \"video_name\": \"video7562\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a best buy employee doing?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a best buy shirt doing?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a video of chow tips doing?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a best buy employee talking in?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a man talking in a best buy shirt in?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a man talking in a best buy in a kitchen?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what did a video about a series call?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"chow\"\n  },\n  {\n    \"question\": \"who is talking about something in the kitchen?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man in a best buy talking about a website?\",\n    \"video_name\": \"video7563\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who is a lady played with?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"bottl\"\n  },\n  {\n    \"question\": \"what is a person standing in?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"juggeling\"\n  },\n  {\n    \"question\": \"who is juggling three objects efficiently?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a black dressing man doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young man can be seen doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"juggle\"\n  },\n  {\n    \"question\": \"what is a man juggles doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is in a snowy mountainous region with icy covered rock peaks in the background a young man doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"juggle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a guy in a black jacket doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a mountain of snow land many person in snow land and a person in black color dress doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in black sweat clothes doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"juggle\"\n  },\n  {\n    \"question\": \"what is a man in black doing?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"juggle\"\n  },\n  {\n    \"question\": \"who is played with bottls?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what s down one man make trik use of 3 bottels?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what did man dress in on a snowy mountain?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"juggling\"\n  },\n  {\n    \"question\": \"who does hill s down make trik use of 3 bottels?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many objects is a person juggling efficiently?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a guy in a black jacket standing by?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who is doing some tricks on the mountain with snow?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what sticks on the summit of a snowy mountain?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is juggling red and blue objectas in a snowy mountainous region with icy covered rock peaks in the background?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who can be seen juggling three juggling torches with beautiful snowy mountain landscape visible in the background?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who juggles bowling pins in the middle of ice covered moutains on a sunny day?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who juggles in front of snow covered mountains?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who dressed in black juggling on a snowy mountain?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who juggles at the top of a ski lane on a snowy mountain?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did man juggeling pins while standing on top of snow cover?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who is standing in the snow?\",\n    \"video_name\": \"video7564\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who narrates as a person uses a food processor?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing fresh salad with the help of food processor in a kitchen?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is crushing the tomatoes in mixture grinder?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating the use of a food processor with tomatoes?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping tomatoes in a food processor in a kitchen?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who places whole tomatoes into a food processor on top of a counter and presses a button until they are pureed?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving a cooking demonstration about tomatoes with a food processor?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a women work with mixer grinder in?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"kitchenthere\"\n  },\n  {\n    \"question\": \"what is someone slicing in?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is someone grinding in?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who uses a food processor?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do one lady open?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"what does a person use?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"processor\"\n  },\n  {\n    \"question\": \"who places tomatoes in a mixer and chops them into small pieces?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone preparing fresh salad with the help of food processor in?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do one women making the recipe with tomato puree in?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"what is someone preparing with the help of food processor in a kitchen?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"what is a woman crushing the tomatoes in?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"who open the mixer jar?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing in a kitchen?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman with a white apron putting the top on?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"who puts tomatoes in a food processor?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman chopping tomatoes in a food processor in?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a woman place into a food processor on top of a counter and presses a button until they are pureed?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"whole\"\n  },\n  {\n    \"question\": \"who prepares some fruit in a blender and blends it up?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a female home cook use to chunk up a bunch of tomatoes?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"processor\"\n  },\n  {\n    \"question\": \"who is grinding in a kitchen?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"crush\"\n  },\n  {\n    \"question\": \"what is one lady open the mixer jar and doing?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is several tomatoes are in a food processer and a woman with a white apron doing?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is in a kitchen a woman doing?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is in the kitchen a lady doing?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"grind\"\n  },\n  {\n    \"question\": \"what is in the kitchenthere is a women doing?\",\n    \"video_name\": \"video7565\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what do a men purchase?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"birthday\"\n  },\n  {\n    \"question\": \"what is a man using?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"melon\"\n  },\n  {\n    \"question\": \"who is preparing some flowers?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a phone?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a cooking tutorial?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what does edible bloom?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is a man in the kitchen doing?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who explain why he uses edible blooms for gifts?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who operates a phone while flower displays and such are passed by?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about buying edible blooms as gifts for his loved ones?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man operate while flower displays and such are passed by?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who prepares a meal for his wife?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is talking about his phone and food?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a melon?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a commercial for edible bloom?\",\n    \"video_name\": \"video7566\",\n    \"answer\": \"company\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what does a man check out detail on?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is looking at the classic car?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man check out on a car?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"detail\"\n  },\n  {\n    \"question\": \"what is a clip in spanish?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man discussing the features of?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who does a machine relate to a show called?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what is a man touching a part of?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a machine relate to called desert car kings?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what were the men deep in?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"thought\"\n  },\n  {\n    \"question\": \"who is commenting on some wing of a car?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what relates to a show called desert car kings?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is touching a part of a car?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing the features of a car?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a car in spanish?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking while looking at a car?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who checks out detail on a car?\",\n    \"video_name\": \"video7567\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the queen of england visit?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what are walking behind the major person?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are a group of muslims crowded around in?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what arrived in gold instead of wearing the black over head in the islamic community?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"queen\"\n  },\n  {\n    \"question\": \"what did the queen arrive in instead of wearing the black over head in the islamic community?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"gold\"\n  },\n  {\n    \"question\": \"what are so many men and women dressed in traditional arab dresses walking to together?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"what are some men in robes doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a old woman doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is queen elizabeth doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a report on queen elizabeth doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"visit\"\n  },\n  {\n    \"question\": \"what is the queen arrived in gold instead of doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a royal woman and a arab kings doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman in a golden dress doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a group of men and women doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are group of women doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is older woman in white clothes doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is older woman in yellow long dress doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the queen of england is seen doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are so many men and women dressed in traditional arab dresses doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are some men in robes walking around?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what elizabeth wearing a gold dress meeting with islamic people?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"queen\"\n  },\n  {\n    \"question\": \"what elizabeth walking with a group of arabs in a mosque wearing a long cream colored dress?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"queen\"\n  },\n  {\n    \"question\": \"what are walking with woman in white dress?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a lady is speaking about the arab persons coming in a palace?\",\n    \"video_name\": \"video7568\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing in a talent show?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing on a stage?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"when is a woman sing?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a girl singing?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is sing on stage?\",\n    \"video_name\": \"video7569\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a goofy baby given?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does a baby wear?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"mustache\"\n  },\n  {\n    \"question\": \"what did a baby with stuff stick to laughing?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who is giggling?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who laughs loudly?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what did baby with funny mustache and beard looking at?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is confused because someone glued a fake mustache and beard to it s face?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who was make with some stickers of beard and mustache?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who laughs with a face decorated with thick black eyebrows?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"cute\"\n  },\n  {\n    \"question\": \"what did a baby with stuff stick to making noise?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is there is a baby doing?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is there is a baby doing?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a baby doing?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a small baby doing?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a baby with fake eyebrows and goatee doing?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a baby dressed like a man with moustache and a beard doing?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is baby with funny mustache and beard doing?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what do a baby with white dress lying in?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is seen with goofy facial hair?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what did a baby with stuff stick to its face making?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"noise\"\n  },\n  {\n    \"question\": \"who is given silly facial hair?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"goofy\"\n  },\n  {\n    \"question\": \"who is wearing fake facial hair and eyebrows?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a cute baby lie on under a white blanket?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"stomach\"\n  },\n  {\n    \"question\": \"what does someone glued a fake mustache s?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what does someone beard to a fake mustache s?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a very young baby doing?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who wears a fake mustache?\",\n    \"video_name\": \"video7570\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is kat von putting on makeup on?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a woman putting on with a face blotter?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman with a lot of tattoos applying using a black beauty blender?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what does a woman with several tattoos apply red makeup to?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"cheek\"\n  },\n  {\n    \"question\": \"what brunette putting on makeup?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"who is a woman giving a facial make up?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"what does a woman in black put on while looking in a mirror?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"blush\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what brunette showing the shades?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"what does a woman show off as music plays?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what do sexy brunette putting on?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is kat von d applying rouge to?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"cheek\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman in black puts on blush while doing?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is woman with tattoos on her face fingers and face doing?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is kat von doing?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is gothic woman doing?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is sexy brunette doing?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who demonstrates how to use a teardrop makeup sponge to apply lipstick as a blush?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"tattooed\"\n  },\n  {\n    \"question\": \"who is putting on makeup with a face blotter?\",\n    \"video_name\": \"video7571\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what was in spanish?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what are some people preparing?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what hosts converse?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is talking in a tv show?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are two men and a woman in aprons doing?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a lady and two guys in the kitchen with aprond on doing?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7572\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a lady dancing before mike in with nude dress?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who comes from a side and dancing to the camera with glamour moves?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is dancing before mike in a show with nude dress?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who dances to techno music in a large room?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who colored undergarment dancing playfully for the camera?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances around in skimpy clothes to fast music?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who walks?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what plays as a woman in a beige dress dances sexily?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a lady dancing before in a show with nude dress?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"mike\"\n  },\n  {\n    \"question\": \"what is a lady dancing before mike in a show with?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what do woman in cream color dancing playfully for the camera?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"undergarment\"\n  },\n  {\n    \"question\": \"what flirts with the camera?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a girl in the room dancing alone for?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does music flirt with?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what a lady in a room dancing to?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a girl dance to in a large room?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is an asian woman doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is sexy lady doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is woman in cream colored undergarment doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a lady in a room doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl walks and dances then poses to the camera for doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a girl in white night wear doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman in a tan outfit doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl in the room doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is there is a hot woman doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is there is a hot woman doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a young beautiful women doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a lady poses in front of a camera she starts doing?\",\n    \"video_name\": \"video7573\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who gets his heart ripped out?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who hits his heart?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does minecraft zombie kill?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what does a box figure rip out a man s?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"heart\"\n  },\n  {\n    \"question\": \"what rips out a man s heart?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does video game that look like?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is laying on the ground?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is performing live?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kills player?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what comes?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who takes heart?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who minecraft?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is pulled out of a minecraft character?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"heart\"\n  },\n  {\n    \"question\": \"what does a man hit?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"heart\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do a violent mine craft?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a cartoon laying on?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is lying down while another cartoon comes?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a minecraft character pull the heart out of?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is minecraft animation of creature doing?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who falls over while another rips out his heart?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what looks like minecraft?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what craft video?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"violent\"\n  },\n  {\n    \"question\": \"who pulls the heart out of another character?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does a character made out of blocks rip the heart out of?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who does a box figure rip out s heart?\",\n    \"video_name\": \"video7574\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a radio jockey doing?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a man talk about?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is describing a product called the ugly rubber into a microphone in a recording studio?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"jockey\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man hosting?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"rubber\"\n  },\n  {\n    \"question\": \"what is a man talking into?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a man speaking into?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"strength\"\n  },\n  {\n    \"question\": \"who discusses rubber?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hosting a show?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about hand strength?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who records himself for a video segment?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking into a microphone?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking into a microphone?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talk about something?\",\n    \"video_name\": \"video7575\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are making a video?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did two guys in dark scare about?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are two men freaked out in?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"who see the computer graphic?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are men being filmed in?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"darknes\"\n  },\n  {\n    \"question\": \"how many guys explore a scary room?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men look around a room as a bright light flashes?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men look around as a bright light flashes?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is video taping something scary happening?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men interact while another is recording?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who gazes into a camera amidst a darkly tainted background?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men ghost hunting with portable camera?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two guys explore?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is scared?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what takes pictures?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are two men making?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what plays while a camera takes pictures?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"creepy\"\n  },\n  {\n    \"question\": \"what do a man see graphic?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"how many men are freaked out in the dark?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man is scared and doing?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man is video doing?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is two men ghost doing?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"hunt\"\n  },\n  {\n    \"question\": \"what is two men in a dark room doing?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men interact while another doing?\",\n    \"video_name\": \"video7576\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"who explains about some studies showing some hands actions?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl in white dress speaking on topic discusing displaying on?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a woman in a plaid shirt speak about?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"collision\"\n  },\n  {\n    \"question\": \"what does a woman with blue shirt explain?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what brunette in shirt talking to the camera?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"what is a women with checks shirt doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is a women in checks shirt doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a beautiful girl with brown hair doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women in blue striped grey shirt doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with brown hair and a cute face doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl explains about some studies doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl in white dress doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young female scientist doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a lady in a blue shirt doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sexy brunette in shirt doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a shirt and hair doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a blonde woman doing?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do sexy brunette in talking to the camera?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who is explaining about a topic in checks dress?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a girl in white dress wearing color cloth sitting discusing displaying on?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a lady talking with?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what do a woman describe?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"planet\"\n  },\n  {\n    \"question\": \"who describe a planet?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking with a laugh?\",\n    \"video_name\": \"video7577\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who stand behind water bottles?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what sit on a table?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do man and woman stand behind?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do people talk on?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"panel\"\n  },\n  {\n    \"question\": \"what do a man and a woman talk to?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"jennifer\"\n  },\n  {\n    \"question\": \"when are people talking?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do bottles of water sit on?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who are two people standing by a table having?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"converstaion\"\n  },\n  {\n    \"question\": \"what are two people standing by having a converstaion?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are speaking in front of a row of bottles?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is talking to a women about products?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"how many people are talking in front of bottles of water?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are standing by a table having a converstaion?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to the audience behind a table?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing nutrition on the dr oz television show?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"actres\"\n  },\n  {\n    \"question\": \"what is an actress discussing on the dr oz television show?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"nutrition\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is jennifer lopez doing?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is on the dr oz television show an actress doing?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is people are on stage doing?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the doctor doing?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a couple doing?\",\n    \"video_name\": \"video7578\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a dog in a shirt sitting in?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a girl wearing pink on a pink carpet put a pink sweater on?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what do a girl in pink color dress wearing to dog speaking displaying on screen?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do a girl in pink color dress siting with?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog in a colored shirt sitting on?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what a little girl wearing a pink shirt dresses in a sweater?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a girl wearing red top and black trouser putting on a dog?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"sweater\"\n  },\n  {\n    \"question\": \"what is a girl wearing red top and black trouser putting a sweater on?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a girl sitting on the floor play with?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what s there are commenting on the dog?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"sweater\"\n  },\n  {\n    \"question\": \"what does sweater s there are commenting on?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is in the room?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman in?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does sweater s a girl is putting on a pink sweater on?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is there is a girl doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a little girl in a pink top and jeans doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a girl in pink color dress doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the little girl doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a dog in a colored shirt doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a dog in a shirt doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is young blonde girl doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a teenage girl dressed in a pink shirt doing?\",\n    \"video_name\": \"video7579\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a crazy woman doing?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who discusses aliens?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explains why crazy ideas emerge from the unconscious?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman discussing?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about aliens and horrific events?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about the shaping of people perceptions regarding aliens?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing crazy stuff?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7580\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a message doing?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what a picture of dragon ball z characters then?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a picture of multiple cartoon characters shown followed by?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is a picture of multiple cartoon characters is shown followed by doing?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"encourage\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what are lyrics written for?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is nice quotes of life here?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some sentences doing?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are animated characters doing?\",\n    \"video_name\": \"video7581\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what does a person put?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what is someone holding some toy in?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is playing with toys?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who plays with toys?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing with little toys?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone holding in his hand?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is playing with lego figures?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing with small toys?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do someone make to fighting with each other?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"who is showing how to put together toys?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is holding some toy in his hand?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is trying to get a small toy action figure to stand up?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what make lego figures to fighting with each other?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who puts together lego figures?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a pair of hands doing?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7582\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a movie?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is crying in front of a woman in the woods?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who tries not to cry in front of malificent?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"princes\"\n  },\n  {\n    \"question\": \"who is a girl talking to angrily?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is speaking with a woman in a scene form?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is a movie speaking with in a scene form?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many girls speak to some?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to another girl angrily?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many women are talking to each other?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to another woman outdoors?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks to maleficent?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is she doing?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is movie scene doing?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the movie?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a young pretty woman doing?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what are a girl and woman doing?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in a scene form a movie a young girl doing?\",\n    \"video_name\": \"video7583\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are three men sitting at in front of a laptop?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what do guys sit around with a laptop on it?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what do guys sit around a table with on it?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what are a men sitting in?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man in glasses and a flannel shirt speaks then three men talk and laugh while hunched over a desk doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is guy in glass with tshirt doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some people doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a man in glasses doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an youtube japanese famous teens doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is i thought it did a good job doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"illustrate\"\n  },\n  {\n    \"question\": \"what is few guys doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are more persons doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man in glasses doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man in black doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a men doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many men does a man in glasses and a flannel shirt speak laugh while hunched over a desk looking at a laptop?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what japanese famous teens performing parody from unknown movie?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"who glasses talking to three other men that are behind a laptop?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are sitting at a desk in front of a laptop?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men does a man in glasses and a flannel shirt speak talk while hunched over a desk looking at a laptop?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is there is a black dressing man doing?\",\n    \"video_name\": \"video7584\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what music concert?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what a country music?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what does a man sing?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is man performing for?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a country band having?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is having a concert?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who preforms on stage?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"when does a singer preform?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sings a country song?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is performing for an audience?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on stage?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what is cheering while a band performs?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"when is a singer?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what performs?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a singer is on stage and there is a big crowd doing?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is country music star doing?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is country song about doing?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is a singer doing?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a music video of a man doing?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a large crowd doing?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a country singer doing?\",\n    \"video_name\": \"video7585\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a lady in the car doing?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man on a motorcycle doing?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what a country music?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl band singing song and doing?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do women only rock?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what music video?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who speaks to a woman outside?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man speak to outside?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7586\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"grapple\"\n  },\n  {\n    \"question\": \"how many wrestlers are fighting on the floor?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two boys having while a crowd watches?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who gets down low as two people wrestle?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"referee\"\n  },\n  {\n    \"question\": \"how many wrestlers engaged in a match in a crowded arena?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are wrestling in front of a crowd?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are having a wrestling match while a crowd watches?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"how many wrestlers are grappling on the ground?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what watches?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are two wrestlers fighting on?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are two wrestlers grappling on?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what do wrestlers fight for?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"victory\"\n  },\n  {\n    \"question\": \"what do an amatuer wrestling?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"how many people are wrestling?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are in the ring?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"how many men are wrestling?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are high school wrestlers in?\",\n    \"video_name\": \"video7587\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who is doing home improvement?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fixing a wall?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing construction?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone working on?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does a woman describe?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"expansion\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"construction\"\n  },\n  {\n    \"question\": \"who is instructing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is working on a floor?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man fixing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who makes some measurements along a wall?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"carpenter\"\n  },\n  {\n    \"question\": \"who explains how to do molding?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing how to install molding?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who describes expansion flooring?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explains about trancition moulding?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a carpenter make some measurements along?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is nailing molding to baseboards?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the structure of the floor?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing the final touches on a flooring job?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman explain about?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"trancition\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is instructional video on how to install floor doing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"mold\"\n  },\n  {\n    \"question\": \"what is a woman explains how to do doing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"mold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"nail\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7588\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"who is interviewed near a river?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about people not coming around rather they are staying in the village?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about something about?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who is talking about something about work?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is translating what another man is saying?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an old man in a hat and a tank top talking to?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking while standing on a beach?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about about work?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking to a news reporter?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about work?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"fisher\"\n  },\n  {\n    \"question\": \"what is an old man interviewed near?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is an old man talking on?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is talking in front of a beach?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is near a beach?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking on a beach?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a fisher talk about?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man near?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a man talking on?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who speaks to a camera for an interview?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"translate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an old man in a hat and a tank top doing?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old man doing?\",\n    \"video_name\": \"video7589\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is crying on the shoulder of another man in a green shirt while hugging him tightly?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man in a red jacket hugging?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who embraces an older man as he cries?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hugging a person inside the room?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a young man hugging inside the room?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many men hug each other while one of them cries?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are hugging while one of them is crying?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a young man hugging a person inside?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who has someone to hold on too?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who williams as he cries?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"damon\"\n  },\n  {\n    \"question\": \"who sobs into the other mans shoulder?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people embrace each other and one of them cry?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are showing affection towards each other by hugging and crying?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does matt damon and robin williams hug as matt cries into robin s?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"shoulder\"\n  },\n  {\n    \"question\": \"what is a old man and boy doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what are an emotional scene of two persons where they doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a boy and old man doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man in a red jacket doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a scene from a movie where a young adult doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is matt damon embracing and doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt and blonde hair doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is how sad that this person doing?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"how many guys embrace in an emotional hug for a long time?\",\n    \"video_name\": \"video7590\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person cutting?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is cooked?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"what is made?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"who is instructing how to cook something?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person prepare while describing the process?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman giving about pancake presentation?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is cut?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"who is preparing pancakes?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a pancake placed in?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"who is cutting some food?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is placed in a skillet?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"what does the person slide back into the skillet?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"what does the person slide the pancake back into?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"who cooks food in a skillet?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes how to cook a pizza?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman giving a demonstration about?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"who prepares food while describing the process?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is an instructional video on doing?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does someone make a large kind of while a woman narrates?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"who slides the pancake back into the skillet?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person prepares food while doing?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman gives instructions on doing?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"who makes a large kind of pancake while a woman narrates?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is giving a demonstration about pancake presentation?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gives instructions on cooking a cake?\",\n    \"video_name\": \"video7591\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are man and woman having nice time on?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who does two breast s is kissing to a woman?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does two breast s a man is kissing to?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man having with a woman on a bed?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"sex\"\n  },\n  {\n    \"question\": \"when are man and woman having on the bed?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what s a man is kissing to a woman?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"breast\"\n  },\n  {\n    \"question\": \"what do a topless man on top of a woman making love to a woman in a dress in?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what do a man and a woman make love in?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"where is the man?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"who is on top?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman having inside?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"sex\"\n  },\n  {\n    \"question\": \"what do a woman and a man make love on together while the man is on top?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what do a man and a woman make in a bed?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is scene from a pornographic film doing?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the man on?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"who is having sex with a woman on a bed?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man and a woman in a yellow dress simulate having?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"sex\"\n  },\n  {\n    \"question\": \"who are having nice time on the bed?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are exposed breasts being shown being represented in pornographic media?\",\n    \"video_name\": \"video7592\",\n    \"answer\": \"culture\"\n  },\n  {\n    \"question\": \"what is a bunch of griends doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do kids watch?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what do kids sit in?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man in green sipping on talking to the camera man?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"tea\"\n  },\n  {\n    \"question\": \"what do a group of kids watch?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what are young adults hanging out in?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"who is watching the tv?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of young men and boys watching?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who takes shaky video of himself in his dorm room while his roommates watch tv?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks about older video game systems as some guys prepare to play on an older television?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a few guys doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are young adults doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what are some young guys doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a man in green doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"sip\"\n  },\n  {\n    \"question\": \"what are a group of young men and boys doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a group of friends are in a room doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7593\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are babt turtles doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are baby turtles doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is swimming?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what are small turtles doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are some turtles doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is there is a rock sturcture with a water fall and little turtles doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is three turtles doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are turtles doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a fish tank where there are three turtles doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a person is video doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a small table fountain in a tupperware with baby turtles doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are a white basin kind of fish tank in which two baby turtles doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is aquatic creatures a frog and turtles are shown doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what do a tortoise swimming in a water on?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what is been showed?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"what is water being filtered in with rocks?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"tank\"\n  },\n  {\n    \"question\": \"what do a tortoise swimming in on the tray?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is being filtered in a tank with rocks?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is video taping is turtle pond?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what looked healthy?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a fish tank where there are three turtle swimming in?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"corner\"\n  },\n  {\n    \"question\": \"where does a fish tank where there are three turtle swimming?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"corner\"\n  },\n  {\n    \"question\": \"what are swiming in a plastic container?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"babt\"\n  },\n  {\n    \"question\": \"what are some turtles swimming in?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"tank\"\n  },\n  {\n    \"question\": \"what are baby turtles swimming in?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"aquarium\"\n  },\n  {\n    \"question\": \"what is a turtle doing?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a person video taping is?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"pond\"\n  },\n  {\n    \"question\": \"what is a person is turtle pond?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are swimming in an aquarium?\",\n    \"video_name\": \"video7594\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a fashion model doing?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is a female model doing?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a model doing?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman comes out on the catwalk while doing?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are a woman legs with high heels is shown and all doing?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is models on the runway doing?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is a platform in front of a small crowd the shows of?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is working the runway?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what stands on stage?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when does woman model stand?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are all looking at?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who is walking down a runway?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who comes out on the catwalk while showing off the latest fashions?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is modeling shoes on the walkway at a fashion show?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who steps up on a platform in front of a small crowd?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who modeling a pair of shoes?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is a woman modeling shoes on at a fashion show?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"walkway\"\n  },\n  {\n    \"question\": \"what is a woman on the walkway at a fashion show?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"modeling\"\n  },\n  {\n    \"question\": \"who walks in sexy red heels?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a female model working?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is a woman walking down?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who is modeling red shoes?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is walking?\",\n    \"video_name\": \"video7595\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a group of musicians doing?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band with two singers doing?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"when is a band with two singers playing a song?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are singing?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people singing?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"when do a man and woman perform?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performing?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are a man and a woman singing on stage with?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band with two singers playing on a stage?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when do a man and woman sing while the band plays?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are a man and a woman singing with a band?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is playign and a man?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7596\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is the person reviewing?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who drives down the road?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what does a man wear?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"who drives the car?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do man test driving?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a narrator drive down?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man describing as he drives it?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who reviews?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man drives while doing?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man talks about the various features of the car he doing?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man driving and car and doing?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man test doing?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is reviewing a vehicle?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a boy drive?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about the car?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving in a car?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man discussing the controls in?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives while discussing his car?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the man talk to whilst driving?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who talks to the camera whilst driving?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who talks about the various features of the car he is driving?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes operation of the gmc sierra while he drives down the road?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is describing a car as he drives it?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wears a hat?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who driving the car?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who test driving new car?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing the controls in a car?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving in?\",\n    \"video_name\": \"video7597\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a man in a recording studio doing?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"approach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is singing in a recording studio?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man recording?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a person singing in?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"who is recording a song?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing in a studio?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is listening to headphones?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man covering by using a microphone?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who preforms a song in a room?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a recording studio approaching like he s about to start singing?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who is covering a song by using a microphone?\",\n    \"video_name\": \"video7598\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is children anre doing?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is doing star jumps?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are kids jumping on?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what is family members doing?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what do two boys play on in the backyard for parents?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this is someone doing?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what do children anre jumping on?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"how many boys play on a mat in the backyard for parents?\",\n    \"video_name\": \"video7599\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who demonstrates the proper way to strike an incoming ping pong ball?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man using to hit a small white ball across a table in slow motion?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"paddle\"\n  },\n  {\n    \"question\": \"how many men compete in a game of table tennis?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is using a paddle to hit a small white ball across a table in slow motion?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about proper form in table tennis?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is showing how a man hits the ball?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hits a ping pong ball at just the right angle in slow motion?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man in red athletic gear demonstrates doing?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"who is playing ping pong with another person?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is close up of a ping pong player doing?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"who is showing what a ping pong ball will make the ball do?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes how to make a particular table tennis strike?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man hit a ping pong ball at just the right angle in?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what is an athletes shot being reviewed in?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what is the white small ball hitting?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is being reviewed in slow motion?\",\n    \"video_name\": \"video7600\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is some men in a very feminine bedroom doing?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"how many men are hanging out?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video segment?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many man s are smoking on the bed?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men smoking on a bed in?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are two men smoking on in a room?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what do a television show that is based on?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what show that is based on comedy?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who looks sad in his living room?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two men smoking cigarettes hear?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"joke\"\n  },\n  {\n    \"question\": \"what are smoking on the bed?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are two man s smoking on?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"how many people are relaxing?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is in bed?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are men laying on?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"how many men are smoking on a bed in a room?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men lay on a pink bed smoking cigarettes?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are smoking?\",\n    \"video_name\": \"video7601\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is there is a young girl doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is young teenage girl sassy in?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a girl in black dress in the car with seat belt then show?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"bye\"\n  },\n  {\n    \"question\": \"what does a young woman with long brown hair prepare to drive?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman in black riding car and doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman talks to the camera in her car and videotapes herself doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a woman in a black sweater talks about doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a girl in black dress in the car with seat belt then shows bye while doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a girl films herself doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl inside of a car as she begins doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7602\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who explains how to prepare chitterlings?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone cleaning the meat in?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is someone cleaning in a kitchen?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who speaks on preparing chitlins?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is drenching meat in water?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cleaning slices of chicken?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what discusses chitterlings and how to prepare them?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is showing how to clean chitlins?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing chitlins by washing them?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does woman showing how to clean chitterlings in?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"who shows how to prepare chitlins for cooking?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who touches some raw food?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is cleaning the meat in a kitchen?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman drenching meat in?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"drench\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman shows how to prepare chitlins for doing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is discussing a cooking recipe?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a person cleaning slices of?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who chitlins?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"cleaning\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman in water?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what a woman touches?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person cleaning?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman discussing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who rinses chitlins in a kitchen sink?\",\n    \"video_name\": \"video7603\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a wrestling match of a kid doing?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"slam\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is music plays while we watch some people doing?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is there are two people doing?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two kids doing?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two ment doing?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are wrestlers doing?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what match set to rap music?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what is a referee judging?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who are wrestling beautifuly?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"ment\"\n  },\n  {\n    \"question\": \"what do a people compete at meet?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what do people wrestle in?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what are wrestlers fighting in?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what match in a slide show?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"who is judging the match?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"referee\"\n  },\n  {\n    \"question\": \"how many ment are wrestling beautifuly?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what show on tv?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what is a wrestling match taking place in?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"how many men are wrestling eachother while a referee is judging the match?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many man s are fighting with each other in wrestling?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what s rap music is played in synch with a wrestling match?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what plays while a people compete at a wrestling meet?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does action s is played in synch with a wrestling match?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who are two men wrestling while a referee is judging the match?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"eachother\"\n  },\n  {\n    \"question\": \"what does action s rap music is played in with a wrestling match?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"synch\"\n  },\n  {\n    \"question\": \"how many boys engage in a wrestling match?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did a wrestling match of a kid slam another to?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"when are fighting with each other in wrestling?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a wrestling match taking in a gym?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is taking place in a gym?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what do wrestling match set to?\",\n    \"video_name\": \"video7604\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a man displaying feature on?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a male voice doing?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a add doing?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"who advertises google play?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man advertise?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what do a add promoting?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone showing about?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what is a person explaining about?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"google\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a male voice advertise?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who features on his phone?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what advertiseing a phone?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does person commentate on?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"who is talking about a phone?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing about google play?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining about google play?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who commentating on a object?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did an ad about the app store google?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7605\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are four players on?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what view as pingpong players compete on the table?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"overhead\"\n  },\n  {\n    \"question\": \"what do two teams play while a crowd cheers them on?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are four players playing table tennis in?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what are the players celebrating the point in?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are four players playing in the gym?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do two teams play in presence of refery?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do pingpong players compete on?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who compete on the table?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"pingpong\"\n  },\n  {\n    \"question\": \"what are four players doing?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many players are on the court?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what are the players celebrating in table tennis?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is olympic athletes play table tennis doing?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are some people playing ping pong on?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what do olympic athletes play moving all over the court?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do two player teams play a game of against one another?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do various young people play a game of?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"what play a game of table tennis against one another?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what are some people playing ping on a court?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"what is a set of four people doing?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the players doing?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is four players are on the court and doing?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are 4 ping-pong players doing?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a red and black color dress players doing?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many player teams play a game of table tennis against one another?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who play table tennis moving all over the court?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"olympic\"\n  },\n  {\n    \"question\": \"how many teams play tennis ball in presence of refery?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many players are playing table tennis in the gym?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what doubles professional ping pong match during the olympics?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"exciting\"\n  },\n  {\n    \"question\": \"how many teams play competitive table tennis while a crowd cheers them on?\",\n    \"video_name\": \"video7606\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is the opening credits of ted talks doing?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is the ted ideas worth doing?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is a white screen with black grey and red moving graphic text displays along with a website address and the sound of doing?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is there is a show doing?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is ted ideas worth doing?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what appears for ted talks which states it has new ideas every weekday?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"globe\"\n  },\n  {\n    \"question\": \"what is heard?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"applause\"\n  },\n  {\n    \"question\": \"what is about the ted talks?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what plays after applause is heard?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is displayed on the screen?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what plays after there is a different title screen?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"when does a globe appear for ted talks which states it has new ideas?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"weekday\"\n  },\n  {\n    \"question\": \"what does an advertisement for ted talk in bold words across?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is the introduction graphic for ted talks displayed in?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"lettering\"\n  },\n  {\n    \"question\": \"who appears in red next to the word talks in black letters on a white background?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"name\"\n  },\n  {\n    \"question\": \"what is texts about tedtalks displayed on?\",\n    \"video_name\": \"video7607\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is the old man in blue shirt doing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a old man in blue color dress doing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is hollywood actor harrison ford gets interviewed by a woman who doing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a old man doing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is harrison ford doing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is old man doing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who gives an interview about star wars?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"harrison\"\n  },\n  {\n    \"question\": \"who ford being interviewed by entertainment news about movies?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"harrison\"\n  },\n  {\n    \"question\": \"what do a old man in blue color dress sitting on speaking beside other lady topic on discusing displaying on screen?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"who is talking with gray color dress?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing a famous starwars actor?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does an old man in a shirt talk to?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a old man in blue color dress wearing sitting on?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what does harrison ford give an interview about?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who discusses how real life is not like the movies?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what is harrison ford giving in a blue shirt regarding star wars?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who ford gets interviewed by a woman who is laughing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"hollywood\"\n  },\n  {\n    \"question\": \"who is explaining the difference between real life and a movie?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"harrison\"\n  },\n  {\n    \"question\": \"who is interviewing harrison ford on the movie star wars?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving an interview in a blue shirt regarding star wars?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"harrison\"\n  },\n  {\n    \"question\": \"what is old guy in blue shirt doing?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who says about some cinema events?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person sitting in?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who says how could u know?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person talking with?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is sitting in the room?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking with someone?\",\n    \"video_name\": \"video7608\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when are a group of people?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what has a man ripped off?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is rocking a party?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"bay\"\n  },\n  {\n    \"question\": \"what are famous people at?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what is green bay rocking?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what do a group of men talk about?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"who has his shirt sleeves ripped off?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when do a group of people preform?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are enjoying together?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"flex\"\n  },\n  {\n    \"question\": \"what is green bay doing?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is behind the scenes of doing?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are group of persons doing?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a group of nfl players doing?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"flex\"\n  },\n  {\n    \"question\": \"what is a group of males doing?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7609\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person explaining about some sports events as?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"lifting\"\n  },\n  {\n    \"question\": \"what did a man is standing on a stage lifting a large amount of weights in wear?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"what is a person with black and red dress doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"weight\"\n  },\n  {\n    \"question\": \"what is the weight lifter fighting in order to lift the weights?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"gravity\"\n  },\n  {\n    \"question\": \"what is a man is standing on a stage lifting a large amount of weights in?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is the weight lifter fighting gravity in to lift the weights?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what do a still boy in blue color dress wearing cloth standing still picture lifting displaying on screen?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"weight\"\n  },\n  {\n    \"question\": \"what do a man in blue dress color cloth wearing lifting on screen displaying on screen?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"weight\"\n  },\n  {\n    \"question\": \"what is a picture of a man in a red and blue shirt doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"who talks about gravity?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the person talk about?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"gravity\"\n  },\n  {\n    \"question\": \"who discusses gravity?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"gravity\"\n  },\n  {\n    \"question\": \"who lifts weight?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man lift?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"weight\"\n  },\n  {\n    \"question\": \"what do a man in blue dress wearing lifting weight still image on screen displaying on screen?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what do an athhlet doing lifting in athens 2004 olympics?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"weight\"\n  },\n  {\n    \"question\": \"who holds a set of weights above his head while a man discusses gravity?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"weight\"\n  },\n  {\n    \"question\": \"what do a still boy in blue color dress wearing standing still picture lifting weight lift displaying on screen?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do a still boy in blue color dress wearing cloth standing still lifting weight lift displaying on screen?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is weight doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person in blue color cloth doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a video presentation of a man doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the person talks about gravity and the weight lifter doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is this video is about forces in physics doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is a still boy in blue color dress doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the olympics wight doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what do a person in blue color cloth wearing dress lifting weight lift still image shown displaying on?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who explains about gravity with athens 2004 olympics in the background?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about some sports events as weight lifting?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is fighting gravity in order to lift the weights?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"weight\"\n  },\n  {\n    \"question\": \"what do a man in blue dress color cloth wearing lifting weight still image on displaying on screen?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is about forces in physics including gravity which is an attractive force?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man in blue dress color cloth doing?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is using picture of an olympic weight lifter to explain gravity?\",\n    \"video_name\": \"video7610\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wayne asking to roll down his window?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a scene from wayne s?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what are people in?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is asking a man to roll down his window?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"wayne\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man asking another man a question from?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who talks to a guy in a car?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"wayne\"\n  },\n  {\n    \"question\": \"what does a scene from wayne s is shown?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"who does a group of people in a car annoy?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does wayne s talking to another man?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"who is asking another man a question from a car?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who s world characters talking to another man?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"wayne\"\n  },\n  {\n    \"question\": \"what does michael meyers in the movie wayne s is talking with another man?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"who is talking to another man through a car window?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stop to talk to a man in another car?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who speaks to another man at a stoplight?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does michael meyers in the movie wayne s world is talking with?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy in a hat doing?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a movie clip of wayne worlds doing?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is men in car doing?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is michael meyers in the movie wayne s world doing?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is wayne doing?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is wayne doing?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is wayne s world characters doing?\",\n    \"video_name\": \"video7611\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what demonstration on paper folding using?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is folded into a paper airplane?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man folding a piece of?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man making out of some yellow paper?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"aeroplane\"\n  },\n  {\n    \"question\": \"what does a person wrap up in a symmetrical pattern?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is a young man folding a yellow piece of?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes paper origami?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making an aeroplane out of some yellow paper?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make a paper airplane?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what folding using yellow paper?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"who makes origami?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding a paper plane?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is folding a paper airplane?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a man make?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"who is folding a yellow piece of paper?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a paper airplane?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person make?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"who wraps up origami in a symmetrical pattern?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making careful folds to a piece of yellow paper?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is demonstration on paper doing?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7612\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what are a woman and man having in a news studio?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"how many people does economic measures on the news s discuss usa and china?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does economic measures on the news s two people discuss?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"china\"\n  },\n  {\n    \"question\": \"what is the news doing?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what are a woman and a man reading in the tv channel?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what anchor interviews a man wearing a suit?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is woman news anchor doing?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is there is a live programwhere the vip doing?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"who talks about global economics and the problems related to a?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what anchor asking a economic to man in business suite attire?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a woman on television doing?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a newscaster interviews a man doing?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is a female journalist doing?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a female reporter doing?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a woman and a man doing?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a female news anchor interviews a man doing?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl in white dress doing?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what tie?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do a girl in white dress wearing color cloth sitting speaking beside a man in black dress speaking displaying on?\",\n    \"video_name\": \"video7613\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is there is a driver doing?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a driver doing?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who does a doom buggy that sits on the bed of a trailer drive off?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who does the big black vehicle which resembles a tractor is moving away from an off road car s?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"carrier\"\n  },\n  {\n    \"question\": \"what can be reverse coming in the truck?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"tractor\"\n  },\n  {\n    \"question\": \"what can one tractor be reverse coming in?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"who drives the large off road vehicle off the flat bed trailer?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking out a vehicle from the place where he kept?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the big black vehicle which resembles a tractor doing?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who drives an all terrain vehicle onto the ground outdoors?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person taking out from the place where he kept?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is filming a vehicle on top of a truck?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is driving a truck in the woods?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what shows about some heavy machine has been moved from one location another?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is driving tractor which was kept on a truck?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what is someone filming on top of a truck?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a person driving in the woods?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who does the big black vehicle which resembles a tractor is moving away from it s?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"carrier\"\n  },\n  {\n    \"question\": \"who is filming a vehicle being unloaded?\",\n    \"video_name\": \"video7614\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a cowboy sitting on?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are horses shown at?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting on a horse?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"cowboy\"\n  },\n  {\n    \"question\": \"what is a horse walking in?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what do a man having a horse with rodeocrueltycom on the screen walk backwards on?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"command\"\n  },\n  {\n    \"question\": \"what is walking in a front?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who trys to steady the horse?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"rider\"\n  },\n  {\n    \"question\": \"what is a man riding on in ground?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man riding on horse in?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is riding on horse in ground?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on horseback?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man riding a horse walk backwards on?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"command\"\n  },\n  {\n    \"question\": \"what is a cowboy doing?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is back?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is horse doing?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man on a horse doing?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man riding on?\",\n    \"video_name\": \"video7615\",\n    \"answer\": \"horseback\"\n  },\n  {\n    \"question\": \"what jets off down the street?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is an orange lamborghini speeding onto?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is speeding onto a street?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"lamborghini\"\n  },\n  {\n    \"question\": \"what does an orange race car speed of down?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a man drive down a road?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a person drive an orange sports car quickly down?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a man drive a sports car down?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is shown pulling up to a stop sign?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"lamborghini\"\n  },\n  {\n    \"question\": \"who drives an orange sports car quickly down the road?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is an orange lamborghini revs its engine and doing?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a video of a guy doing?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who drives a sports car down a road?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an orange car running fast on?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what a car jets off?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is going on the road?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car going on?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what speeds away?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is running fast on the road?\",\n    \"video_name\": \"video7616\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"who is making a dough?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a chef and a girl make together?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man mixing in?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man cooking at?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is mixing in a pot?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking at the stove?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the chef have a stylish microphone in?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"ear\"\n  },\n  {\n    \"question\": \"what are cooking on a morning show?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what did the chef have in his ear?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who had a stylish microphone in his ear?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who stirs a pot on the stove?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stirs a bowl of mashed potatoes?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a chef making?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is man and woman on doing?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are a male and female doing?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a couple doing?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7617\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man playing with motion control?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who plays motion sensor video game?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man playing a video football game that controlled by?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"running\"\n  },\n  {\n    \"question\": \"who are running in the playgrond?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is a man playing a video game with?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"who is simulating a football game that he is currently playing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing in wii home video game console?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a man playing on his tv?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who ogame with someone talking on webcam?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is playing football in wii home video game console?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing as a soccer player in the video game?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is shown of a guy playing football on the wii?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game with motion control?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing american football on his tv?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are an animated player running in?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"playgrond\"\n  },\n  {\n    \"question\": \"what is a football vide ogame with someone doing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"simulate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game player discusses the virtual football game he doing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video is shown of a guy doing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a person make?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who makes football run?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man simulating that he is currently playing?\",\n    \"video_name\": \"video7618\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what showcasing the president giving a speech?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who did a clip showcasing giving a speech?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who is giving a speech?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does president obama giving?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"addres\"\n  },\n  {\n    \"question\": \"who are cartoons talking to?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"otehr\"\n  },\n  {\n    \"question\": \"who is president obama giving?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"speach\"\n  },\n  {\n    \"question\": \"who is giving a speach?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"who is a news channel telecasting s speech?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"barack\"\n  },\n  {\n    \"question\": \"what does obama address the nation with?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who obama giving an address?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what does obama make a speech about?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"kenya\"\n  },\n  {\n    \"question\": \"who obama talking about a political situation?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"who addresses the nation with a speech?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"who is talking in front of people?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"what does president obama addressing about economic differences?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"kenya\"\n  },\n  {\n    \"question\": \"who makes a speech about kenya?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"what is a news channel telecasting barack obama s?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what did a clip showcasing the president giving?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who obama addressing kenya about economic differences?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what is the president of the united states giving a speech to?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is the president of the united states giving to a crowd?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what does obama address with a speech?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"nation\"\n  },\n  {\n    \"question\": \"who talked about south korea vs kenya economy?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"who is speaking to a large group in kenya?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"barack\"\n  },\n  {\n    \"question\": \"what is president doing?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is barack obama doing?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is telecasting barack obama s speech?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what is a news channel doing?\",\n    \"video_name\": \"video7619\",\n    \"answer\": \"telecast\"\n  },\n  {\n    \"question\": \"what are newscasters reporting on a water crisis in?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"ohio\"\n  },\n  {\n    \"question\": \"what did a news broadcast about a water emergency in?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"ohio\"\n  },\n  {\n    \"question\": \"who talkign about ohio water emergency?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in doing a report?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"supermarket\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a woman telling?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is girl telling?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a reporter discussing?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"emergency\"\n  },\n  {\n    \"question\": \"what does a news show discuss?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is talking about a dangerous water situation?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is telling the news?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing an emergency situation?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what discusses clean water procedures?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who reports from a grocery store?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is telling some news?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is in a supermarket doing a report?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what broadcast about a water emergency in ohio?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are newscasters doing?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a news reporter doing?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"where are newscasters reporting on a water crisis?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"ohio\"\n  },\n  {\n    \"question\": \"where did a news broadcast about a water emergency?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"ohio\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video7620\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is singing a song and audience shouting?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who performs a song on stage?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a female auditioning for by singing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who performs on a singing show?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is performing on stage?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is girl performing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is watching a show?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"when is a woman singing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is someone watching?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who screams?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings while playing the guitar?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is auditioning for the voice by singing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is a girl singing with guitar in a stage?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman screams and another woman sings while doing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is it starts off with two ladies doing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is parents doing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is people are just crazy here doing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"how many women are cheering as another woman performs a song on stage?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a female auditioning for by playing guitar?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing a song with guitar in a stage?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a group of women cheer for?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"who sings during an audition on the voice?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what starts off with two ladies screaming because there family member is performing on the television show the voice?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who performs a song on a tv show while the judges look on?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is auditioning for the voice by playing guitar?\",\n    \"video_name\": \"video7621\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what do kids run around playing in?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what do people perform?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what do some children run around?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what are a group children running in?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what are a group of children playing in a gym in the fifties?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who are running in a gym?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are a group of school children playing in?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are a group of school children doing?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of children doing?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kids run around doing?\",\n    \"video_name\": \"video7622\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a woman hold a baby in while a man speaks?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is explaining how the air is human nature to be social?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a woman with blonde hair carrying?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what sits a woman plays with a baby?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is images flash a child playing in the grass a wolf a woman doing?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what does a baby with a woman as a man narrate the cycle of?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what is the cute bubbly kid hold up by the kid smile to see his mother?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"motherand\"\n  },\n  {\n    \"question\": \"who sits near a lake?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sits by water?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is wanting to be with others?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a laughing baby?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman hold in the air while a man speaks?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a woman with blonde hair doing?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a forest grass land trees animal inside forest water scene and mother doing?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is with her strands of hair pulled back lifts an infant who doing?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a mother playing with her small baby by doing?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who talks about how humans are programmed to look for steady relationships?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"who discusses how humans are programmed to look for affection?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"who holds a baby in the air while a man speaks?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses whether humans are programmed to seek affection and relationships?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is on screen?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a girl sit near?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are humans programmed to seek?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"affection\"\n  },\n  {\n    \"question\": \"what is a dog on?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who does a woman hold?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"laughing\"\n  },\n  {\n    \"question\": \"what does a person sit by?\",\n    \"video_name\": \"video7623\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who talks about a ballet?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person talk about?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"ballet\"\n  },\n  {\n    \"question\": \"what dance performance?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"terrific\"\n  },\n  {\n    \"question\": \"what does a choreographer discuss?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"composition\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"ballet\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what do a terrific hiphop dance?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what are dancers doing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are men are woman doing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are so many pairs doing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is stage actors doing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who discusses his dance composition?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"choreographer\"\n  },\n  {\n    \"question\": \"when are men woman are dancing with each other?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is giving a review on his dancing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows the variety of many culture?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"who discusses his choreography of a play?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a dance program show the variety of?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"culture\"\n  },\n  {\n    \"question\": \"who are men are dancing with each other on stage?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about an arts performance?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss his choreography of?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is talking later a couple is dancing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are a man and a woman dancing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do a group of people dance?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man talking later is dancing?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and a woman performing while a person talks about it?\",\n    \"video_name\": \"video7624\",\n    \"answer\": \"ballet\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are many men and women doing?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of teenagers doing?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do a bunch of people sing on?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do a group of teenagers sing on?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are people dancing on?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do teens dance on?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do children sing?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are teenagers dancing on?\",\n    \"video_name\": \"video7625\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is on a zipline?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person go ziplining along?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a girl zip-lining then a woman and girls doing?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a group of girls doing?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what does guy swinge on?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"who is sliding on a rope girls are standing in a line?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is swinging on a rope?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who swinging on a trolley?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who goes ziplining along a field?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who ziplines across an open field?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person swing on from tree to tree?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what do a group of children watch a friend slide down?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"who swings on a rope from tree to tree?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man go down while a group prepares to go next?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"zipline\"\n  },\n  {\n    \"question\": \"what is a woman sliding on girls are standing in a line?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"who do a group of children watch slide down a zip line?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is a woman sliding on a rope girls are standing in?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"who goes zip lining with a group of people?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who goes down a zipline while a group prepares to go next?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man goes zip doing?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"who is on a zipline outside?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a person swinging on?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what are kids going down?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what is a person on?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"zipline\"\n  },\n  {\n    \"question\": \"what do people use?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what prepares to go next?\",\n    \"video_name\": \"video7626\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who do person applying goop to a mans face and drying it with?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"hairdryer\"\n  },\n  {\n    \"question\": \"what does a man apply texturing to another man for stage effect?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who does a man apply to face on in chair?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting makeup for another person?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do the make up puts it on the head of the artist to show like injury?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person dry with a hair dryer?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"paste\"\n  },\n  {\n    \"question\": \"what does a man apply to face on man in?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does a person apply to a mans face?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"paste\"\n  },\n  {\n    \"question\": \"what does a man is spreading movie makeup onto another man s?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what does a man spreads white paste onto a person s?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who uses putty to put on a person makeup face then dry with a dryer?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is made?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"paste\"\n  },\n  {\n    \"question\": \"who dries a white paste with a hair dryer?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is being prepared to walk into a movie shooting by a fashion artist?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who applies to face on man in chair?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person applying to another mans face on the amc channel?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a man with long hair applying to a young man s face?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"gelatin\"\n  },\n  {\n    \"question\": \"who is explaining the process of applying costume makeup?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who applies a white paste to a mans face?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person putting for another person?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who displays his gelatin in bag?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is applying cream makeup to another mans face on the amc channel?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is a make-up artist applies special effects make-up to a man while doing?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what does a man apply?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"texture\"\n  },\n  {\n    \"question\": \"who applies texture?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who applies texturing makeup to another man for stage effect?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a person putting makeup for?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person use putty to put on a person makeup face then dry with?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"dryer\"\n  },\n  {\n    \"question\": \"who mixes white makeup in a disposable cup?\",\n    \"video_name\": \"video7627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two young men doing?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are some boys doing?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two teenage boys doing?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is two teens doing?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are fighting with each other?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two wrestlers battle out on the mat?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what match in front of a crowd?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"how many men are wrestling in an arena?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers battle a competition out on the mat?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are competing in a wrestling match?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many man s are fighting with each other?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many teenage boys are competing in a wrestling match?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are wresting in a highschool gym?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys are wrestling in a competition?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two wrestlers battle a competition out on?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"how many men are wrestling each other?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who throws opponent to the grown?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what are two guys wrestling in?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what are two men wrestling in?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"arena\"\n  },\n  {\n    \"question\": \"how many young men are wrestling?\",\n    \"video_name\": \"video7628\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"fool\"\n  },\n  {\n    \"question\": \"what is a video of guys doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video of a man doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a video of a guy doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man kicking and doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"mis\"\n  },\n  {\n    \"question\": \"what is a person is on a soccer field doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"fail\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person kicking?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is trying to kick a ball?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is falling down?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are players playing?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do men fool around at?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"who is kicking ball?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man try to kick?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a soccer player prepare to kick?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a person playing soccer on?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who prepares to kick a ball?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a person playing on the field?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who tries to kick a soccer ball?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boy try to kick on a soccer field?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is failing to kick a soccer ball?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing soccer on the field?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"where is a person playing soccer?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who tries to kick a ball on a soccer field?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who falls down when he tries to kick a soccer ball?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on a soccer field attempting to kick a soccer ball?\",\n    \"video_name\": \"video7629\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gets in the back seat?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person in red t shirt doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a person in red color cloth doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man sits in back of suv doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person with red colour dress doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is guy in red tshirt doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is testing out various aspects of a van?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets into the back seat of a minivan and talks about the seats?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating some aspects of a vehicle?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying out the seats inside a car?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who displayes the comfort levels of a newly developed van in tv show?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man in a striped shirt doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is in a backseat of a car a man doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man gets in the back seat and gets comfy after doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a man in a striped shirt adjusting and doing?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what does a man sit in back of suv talking about?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"spaciousnes\"\n  },\n  {\n    \"question\": \"who demonstrates the room he has setting in a passenger van?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man in a stripe shirt sliding a seat around in?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did a man in a stripe sliding a seat around in a car?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what does a man sit in back of suv talking about it s?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"spaciousnes\"\n  },\n  {\n    \"question\": \"what did man in a red and white stripe shirt inside speaking about its features?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who gets comfy after adjusting the seat?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did man in a red and white stripe inside a car speaking about its features?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a man demonstrating some aspects of?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does a man demonstrate he has setting in a passenger van?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what did a man in a stripe shirt sliding around in a car?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"seat\"\n  },\n  {\n    \"question\": \"what is a man in a striped shirt checking out?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who says back of suv s very spacious?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man in a stripe shirt adjusting in?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is person in red t shirt testing the seats in?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did a man in a stripe adjusting in a car?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who sits in the back of a car?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits in back of suv talking about it s spaciousness?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person with red color dress explaining about?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a person in red color cloth wearing dress inside explayning on displaying on screen?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what is a guy with a red and white shirt in?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man testing out various aspects of?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what do a person in red color cloth wearing dress inside sitting in?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man say s very spacious?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"suv\"\n  },\n  {\n    \"question\": \"what do a person in red color cloth wearing dress inside explayning on topic displaying on?\",\n    \"video_name\": \"video7630\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there are many people doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is some students doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is students doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is ladies doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are the friends having?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is there is a narrow way the youths doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a black and white video of a group of young people doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of people walks down a hall doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are the friends doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is groups of women walk down a hallway while music plays some arm in arm ultimately doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"reveal\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"how many people walk together followed by large pairs behind them?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who walks down a long hallway with a womena nd andother man on each side?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do groups of women walk down while music plays some arm in arm ultimately revealing a lone figure at the end of a hallway?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what does a man walk down with a womena nd andother man on each side?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what are many people walking down with friends helping them with their situations?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what plays some arm in arm ultimately revealing a lone figure at the end of a hallway?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are some people walking through?\",\n    \"video_name\": \"video7631\",\n    \"answer\": \"corridor\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about another man finding goals while a person walks on streets under an overcast sky?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a white color person doing?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man in white shirt is in his house and doing?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an english man doing?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is standing in the kitchen of a house talking while another person walks up to the house in the dark?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in white shirt doing?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who walks up to the house in the dark?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about some movie matters?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a white color person standing with plastic bag in hand speaking a person walking on road building house displaying on?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does another person walk up to in the dark?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does another person walk up to the house in?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"who walks down the street outside?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does another man walk down outside?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who walks by?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is very beautiful location from the road?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who talks while another man walks down the street outside?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who walks down the street in the dark near the building?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when does a man walk down a road near a mansion?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"dusk\"\n  },\n  {\n    \"question\": \"who walks down a road near a mansion at dusk?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking around an english town at night?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks on streets under an overcast sky?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the person walk down in the dark near the building?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who walks between two brick buildings a dusk?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a line of small english cottages line on a gray overcast day?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is talking about how the street s difficult to find goals that satisfy him?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in white shirt talking on?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"when is an english man walking around an english town?\",\n    \"video_name\": \"video7632\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"who discusses skin problems?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who discusses rosacea?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"dermatologist\"\n  },\n  {\n    \"question\": \"who discusses skin cancer prevention?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses facial rashes?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who talks about rosacea?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who is looking at a photo of someone s skins?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who is talking about rosacea?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who is talking about a charity?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"what is a doctor talking about?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"charity\"\n  },\n  {\n    \"question\": \"what does a dermatologist discuss?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"rosacea\"\n  },\n  {\n    \"question\": \"what appears on the screen?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"what does a doctor talk about?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"rosacea\"\n  },\n  {\n    \"question\": \"what does doctor discuss?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"who is on his laptop?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"what does a man discuss prevention?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"cancer\"\n  },\n  {\n    \"question\": \"what does the website appear on?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a doctor on?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"what did a doctor discussing a facial rash call?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"rosacea\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who talks to the camera about rosacea?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who explains the content of an impending video on rosacea?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"what is a doctor doing?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a doctor doing?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a doctor doing?\",\n    \"video_name\": \"video7633\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is teaching math?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who explains a formula?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is doing math?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a math tutorial session in?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what teacher teaching students?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"what students math?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"teaching\"\n  },\n  {\n    \"question\": \"what is a teacher teaching?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"what does a guy explain?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"formula\"\n  },\n  {\n    \"question\": \"what does a man explain?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"equation\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"who explains a math equation?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates how to factor polynomials?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who is teaching a math formula on a white board?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is teaching his students how about factoring polynomials?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who is teaching math on a white board?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is teaching math in a classroom?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining how to do a math problem?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who taught about factoring polynomials?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who talks about factoring polynomials?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man teaching on a white board?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"formula\"\n  },\n  {\n    \"question\": \"what is a man teaching in a classroom?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"who is talking about factoring polynomials?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what is a man teaching math in?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who explains the foil method for factoring polynomials?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives instruction on factoring polynomials at a white board?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the teacher taught about doing?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"factor\"\n  },\n  {\n    \"question\": \"what is teacher doing?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a teacher doing?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person talks about doing?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"factor\"\n  },\n  {\n    \"question\": \"what is a teacher doing?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man gives instruction on doing?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"factor\"\n  },\n  {\n    \"question\": \"what is a man explains the foil method for doing?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"factor\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7634\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"who shoots the bow and arrow?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the woman have?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what does a man aim?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"what do a man and a woman play?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"sketch\"\n  },\n  {\n    \"question\": \"who had a funny hat?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shoots a bow and arrow at a spider and a girl talks?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man shoot a spider off s head with a bow and arrow?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man shoot off a woman s head with a bow and arrow?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"spider\"\n  },\n  {\n    \"question\": \"what does a man shooting a spider off a womans?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who is shooting a bw and arrow?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting a bow and arrow?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shoots a spider?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"who shoots an arrow?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who aims an arrow?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an arrow shoot?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"spider\"\n  },\n  {\n    \"question\": \"who shoots a spider off a woman s head with a bow and arrow?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is clip of person doing?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7635\",\n    \"answer\": \"roleplay\"\n  },\n  {\n    \"question\": \"how many men are having a very intense conversation?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a movie character with a patch talking to?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"villain\"\n  },\n  {\n    \"question\": \"what folded person talking to other person?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"blind\"\n  },\n  {\n    \"question\": \"what does a clip from the avengers with talking to loki?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"fury\"\n  },\n  {\n    \"question\": \"who does jackson talks to thor s?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"brother\"\n  },\n  {\n    \"question\": \"what threatens a jailed loki?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"fury\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does nick fury threaten?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"loki\"\n  },\n  {\n    \"question\": \"who is wearing an eye patch?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a villain?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"villain\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"patch\"\n  },\n  {\n    \"question\": \"who did one eye blind fold talking to other person?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks to nick fury in the movie the avengers?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"loki\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sameul l jackson doing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is one eye blind folded person doing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man with patch on his eye doing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many man s are talking to each other?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a movie trailer with two men doing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a one-eyed man doing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with a pirate mask doing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a clip from the avengers with nick fury doing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a movie character with a patch doing?\",\n    \"video_name\": \"video7636\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what plays while animated character kicks a ball at a mannequin an alarm clock goes off?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"instrumental\"\n  },\n  {\n    \"question\": \"who cartoon character is kicking a soccer ball around christmastime?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who do a game of cartoon kicking a ball to other person head ringing tone lifting displaying on screen?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a game of cartoon kicking a ball to other person head ringing lifting person displaying on screen?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"tone\"\n  },\n  {\n    \"question\": \"what is an animated security guard doing?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a short man in a uniform doing?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is an old man character doing?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a computer animated security officer doing?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a police officer cartoon character doing?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a security guard is alone in a building doing?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who character walking through an empty office in an animated movie?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a security officer shine his flashlight on?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"calender\"\n  },\n  {\n    \"question\": \"what is an animated security guard walking around?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"who do a computer animate kicking a soccer ball and then shining his flashlight?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"what does an animated man s goes off?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"alarm\"\n  },\n  {\n    \"question\": \"when do a short man in a uniform look?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"calendar\"\n  },\n  {\n    \"question\": \"who is alone in a building watching it?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"who kicks a ball?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"what is a security guard alone in watching it?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what does a security officer kick?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does melancholic music play in?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what did cartoon movee a man use?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"torch\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a security officer shine on a calender?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"flashlight\"\n  },\n  {\n    \"question\": \"who s alarm clock goes off?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks at a plant and around an office?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who kicks a ball at a mannequin an alarm clock goes off?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who guard wandering around a building at night?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"who walks around a dark museum at night?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"when is a police officer cartoon character kicking a soccer ball?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"christmastime\"\n  },\n  {\n    \"question\": \"what is a police officer cartoon character kicking around christmastime?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"when does a security guard walk around a dark museum?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"when do a security guard wandering around a building?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"who does animated character kick a ball at an alarm clock goes off?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"what animated security officer kicking a soccer ball and then shining his flashlight?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a short man in a uniform trying to sneak into?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who does an overnight security guard kick a ball at?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"who s he shines around a flashlight?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does animated character kick at a mannequin an alarm clock goes off?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does an overnight security guard kick at a mannequin?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who shines his flashlight on a calender?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"what do a security guard wandering around at night?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what does animated character kick a ball at a mannequin goes off?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"alarm\"\n  },\n  {\n    \"question\": \"what does an animated man s he shines around?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"flashlight\"\n  },\n  {\n    \"question\": \"what is a security guard doing?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"wander\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a game of cartoon doing?\",\n    \"video_name\": \"video7637\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a woman wearing minnie mouse ears applying?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what does a woman in a minnie mouse head band apply moisteriser to?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a woman wearing minnie mouse ears playing a game on?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what do a lady wearing minnie mouse ears on speaking about make up?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what brunette putting on eye makeup?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"what does a girl wearing a red bow apply makeup to?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what do first apply moisturisture under?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"what do a girl in blue color dress wearing cloth cream in for make up beauty facial look displaying on screen?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a woman with some mickey mouse ears in?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do sexy brunette putting on?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what brunette showing the shades?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"what is a woman in minnie mouse ears doing?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl in blue color dress doing?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is after the application of cosmetics gentle doing?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what is a woman with minnie mouse ears on her head doing?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is lady who doing?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is sexy brunette doing?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what does gentle rubbing below the eye lids make after the application of cosmetics?\",\n    \"video_name\": \"video7638\",\n    \"answer\": \"brighter\"\n  },\n  {\n    \"question\": \"what do a video movie scene of cartoon picture running fighting displaying on screen?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"bombing\"\n  },\n  {\n    \"question\": \"who narrates about an exciting video game?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a first person video game?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who describes?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dives for cover behind a brick wall as shots rain down around a character sneaking and fighting?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"avatar\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man talks about the scenes doing?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man describes and demonstrates a video game he doing?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a fight where a man doing?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is there is a some one and doing?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what did high quality animation of armed individuals engage in?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"combat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man reviews the game doing?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"who reviews the game involving an agent who uses stealth tactics in order to eliminate his opponents?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who attacks a guy inside an abandoned building?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is attack the terror with the warfield?\",\n    \"video_name\": \"video7639\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who is a man explaining?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"what is someone browsing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"internet\"\n  },\n  {\n    \"question\": \"who is a man showing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"what is someone describing what on?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is a person demonstrating?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"what review or tutorial?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is on his screen?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person recording?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone using?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"app\"\n  },\n  {\n    \"question\": \"what is a person telling about?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"who is explaining the website?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing a website?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is browsing the internet?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is demonstrating a website?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing computer application?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is telling about website?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to use plone?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man explain he is working on?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who explains a computer program he is working on?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to use a website?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man show off part of?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"who shows off part of a website?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a app?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is giving a tutorial?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a desktop display of a man doing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man explains a computer program he doing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the reflection in the mirror shows a man doing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7640\",\n    \"answer\": \"browse\"\n  },\n  {\n    \"question\": \"who is talking about the new machine?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are displayed in a room?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what are wire and electronics displayed in?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a woman discussing iran s growing in combat?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is telling about some electric material?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a box of electrical components sit atop a table?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"motionles\"\n  },\n  {\n    \"question\": \"what does a box of electrical components sit motionless atop?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what stills closing with more close up images with specific components?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a woman discussing iran s growing use of lasers in?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"combat\"\n  },\n  {\n    \"question\": \"what stills starting with an image of the entire set up?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a woman discussing s growing use of lasers in combat?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"iran\"\n  },\n  {\n    \"question\": \"who describes the function of a box of circuitry?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes technological challenges facing iran s military front lines?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is discussing iran s growing use of lasers in combat?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is doing a thing it was designed for?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is talking about some electrical equipment?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is press tv doing?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is lasers are everywhere today for doing?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"emerge\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a narrator describes technological challenges doing?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is laser machine stills doing?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"who is describing?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7641\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are some coyotes doing?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"roam\"\n  },\n  {\n    \"question\": \"what are wild dog puppies doing?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did the scavengers steal s food?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what do a pack of leopards surround?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what is nature documentary about hyenas doing?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"steal\"\n  },\n  {\n    \"question\": \"what are some coyotes roaming in?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what are hyenas pestering?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what show about lions?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"documentary\"\n  },\n  {\n    \"question\": \"what s steal a lions food?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"hyena\"\n  },\n  {\n    \"question\": \"what is lions and hyenas doing?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are hyenas walking around waiting for scraps?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what did the scavengers steal the lion s?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is animals doing?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are hyenas doing?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"pester\"\n  },\n  {\n    \"question\": \"what are hyenas doing?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are playing?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does hyenas gang up on a lion and chase it from it s?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do hyenas attack?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what do a group prey in?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is in this video a group hyenas doing?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what does hyena s steal?\",\n    \"video_name\": \"video7642\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is young woman doing?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"anchor\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is anchoring?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who talks about music?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is taking about fangirls?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is seated on a couch and talks?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about summer time?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving news?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a woman talking?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"summer\"\n  },\n  {\n    \"question\": \"who is wearing glasses?\",\n    \"video_name\": \"video7643\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who do people chant about?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"jesu\"\n  },\n  {\n    \"question\": \"what are a group of people performing?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who does a man lead a chant about?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"jesu\"\n  },\n  {\n    \"question\": \"what does a male teen lead on a set of steps?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"when leads a group cheer on a set of steps?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"who leads a chant about jesus?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is clip of people doing?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"chant\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7644\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what did men dressed and women dress?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what are a group of girls in costumes walking down?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are young asians doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"mingle\"\n  },\n  {\n    \"question\": \"what is many peoples doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a group of girls in costumes doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people walk along the street doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is groups of people doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is three girls dressed in black and white and doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is group of people doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is many people doing?\",\n    \"video_name\": \"video7645\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who comes out of the room and another one come out of the lift?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wearing white shirt black jacket and neck tie going out of after closing a suitcase?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what did a man in a white shirt and vest walking throw?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"hotel\"\n  },\n  {\n    \"question\": \"who is seen exiting a room then approaches an elevator in which the door opened and another man in a suit exited?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in white shirt walking to?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"who is going?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man entering from?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what does a man exits his hotel room and try to hide from a man getting off the elevator?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is joseph gordon levitt walking towards with a man getting off at same time?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"what does a guy wearing a shirt and tie leave?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a guy wearing a shirt and tie walk down?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what does a man come out of the room and another one come out of?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"who is entering from a door?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a suit walk until the elevator doors open another male comes out in?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who is walking towards an elevator with a man getting off at same time?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"joseph\"\n  },\n  {\n    \"question\": \"what is man in white shirt doing?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"exit\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is joseph gordon levitt doing?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man is seen doing?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"exit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is there is a black suit man doing?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a clip from a famous movie where the actor walks towards an elevator before doing?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7646\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what were two men watching in the computer?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do the men review from the camera?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what do two shot directors watch performed at a shooting over the monitor?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what are watching something in the office?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who guide a scene of two men sitting at a desk and talking?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"what do the men review the film from?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"how many men are sitting?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what were two men watching something in?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what do the men sit behind?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what is recording?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do men walk through?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what is there are two men doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what a camera films two men sitting at a desk having?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is there is a tshirt man doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two men dressed formally doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a cameraman shoots the two men doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a scene of two men doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a camera films two men doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what were two men doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is two men sit a a desk with cameras doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is two producers watch a small screen as actors are filmed doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is two men in white shirts doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a camera doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"how many producers watch a small screen as actors are filmed carrying out the scene of a film or show?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does a cameraman shoot the two men sitting on two chairs with?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"mic\"\n  },\n  {\n    \"question\": \"how many men does a cameraman shoot sitting on two chairs with long mic?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two producers watch as actors are filmed carrying out the scene of a film or show?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a pair of men sit at while surrounded by a film crew?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who watch the scene performed at a shooting over the monitor?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"how many shot directors guide a scene of two men sitting at a desk and talking?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"how many men were watching something in the computer?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many shot directors watch the scene performed at a shooting over the monitor?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who shoots the two men sitting on two chairs with long mic?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"cameraman\"\n  },\n  {\n    \"question\": \"what films two men sitting at a desk having a professional conversation?\",\n    \"video_name\": \"video7647\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do couple of guys in blue jump talking to the camera?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what does two men stand at one one is explaining the working of a device?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does two men stand at table one one is explaining the working of?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what does a repair video list the materials to complete the repair of successfully?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"how many men are giving detailed instructions on how to replace a joker vavle on a waste pump for a toilet?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men stands at table one one is explaining the working of a device?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is explaining the part and tools required to perform a plumbing task on some plastic plumbing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men in blue shirts showing off?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"who is explaining about the joker valve part number?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did two males discuss the parts need to repair?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"widget\"\n  },\n  {\n    \"question\": \"who is talking about materials needed for the repair?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is infomercial or presentation doing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is couple of guys in blue jump suit doing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men in blue shirts doing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men in blue shirts doing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two men in blue shirts one of which who wears glasses doing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is one man touches white doing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"pip\"\n  },\n  {\n    \"question\": \"what are a close up of a joker valve in a bag is shown while men doing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men stands at table one one doing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is here the man doing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7648\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is driving around in the woods?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"tractor\"\n  },\n  {\n    \"question\": \"what is a vehicle going on in very adventure way?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what is a tractor drive in to?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what is drive in to the forest?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"tractor\"\n  },\n  {\n    \"question\": \"what is the man driving some type of slowly over some very rough terrain?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"tractor\"\n  },\n  {\n    \"question\": \"what rides through the thick forrest?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is moving through tough rocky roads?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"what is going on the forest in very adventure way?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is coming in the forest so hardly?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"tractor\"\n  },\n  {\n    \"question\": \"what does a man drive through the field ina ditch?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"tractor\"\n  },\n  {\n    \"question\": \"who do a tracker riding by on forest?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is guy driving tractor in bad route and testings?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"absorber\"\n  },\n  {\n    \"question\": \"when is the tractor moving through the small pathways?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"who is driving some type of tractor slowly over some very rough terrain?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is moving through the small pathways with appropriate speed?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"tractor\"\n  },\n  {\n    \"question\": \"what is one tractor coming in so hardly?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a jeep doing?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who drives a tractor through the field ina ditch?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a driver doing?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a jeep or other off-road vehicle doing?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a tractor doing?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is the tractor doing?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7649\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a cartoon girl walk up?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"staircase\"\n  },\n  {\n    \"question\": \"what does a cartoon clip show?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a cartoon woks in?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what is walking up the stairs?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what shows sesame street?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who walks up a staircase?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what woks in an office?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are the characters from muppet babies singing?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what was a clip of baby muppets which looks like a cat taken in?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"theater\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a cartoon of doing?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"king\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a cartoon of puppet babies doing?\",\n    \"video_name\": \"video7650\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man singing into?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what are men singing into?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what do two men sign into?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what are two men singing into?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what are two men acting?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"how many guys are doing voice s for a film or skit?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are singing in a recording studio?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are singing into the microphone?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men sing into microphones?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are singing in a studio?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys are singing into microphones?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men sign into the microphone?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are voice acting?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is singing into a microphone?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are singing?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men shout into microphones?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is two men are voice doing?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is singers seems to be doing?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is the boys doing?\",\n    \"video_name\": \"video7651\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who places down some wood floring?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"carpenter\"\n  },\n  {\n    \"question\": \"what is a man placing on the floor?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"who installs more boards?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man placing wood on?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what did a man laying a wood sub down?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is placing wood on the floor?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is installing new flooring?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is installing wood floors?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"improvement\"\n  },\n  {\n    \"question\": \"what does a man place down?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is a man fixing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a man installing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"flooring\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"flooring\"\n  },\n  {\n    \"question\": \"what does a carpenter place down?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"floring\"\n  },\n  {\n    \"question\": \"what is plywood laid on?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is flooring?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fixing the floor?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing home improvement?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who places wood down?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is decking a floor?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on the flooring?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man decking?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a man giving by paste a floor sheet?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"what is laid on a floor?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"plywood\"\n  },\n  {\n    \"question\": \"who is trying to place a wooden panel on the floor?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is fast time lapse of doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"deck\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"who is giving demo for flooring by paste a floor sheet?\",\n    \"video_name\": \"video7652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are making foot?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men adding to the bottom of a soup bowl?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is the man in the black uniform mixing the food in?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what do two persons cooking one put some noodle on?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man in black shirt preparing?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a cook put in a white bowl?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"who ladles some soup?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does the one in a black shirt add to a white bowl?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what are two people stirring around in a hot pot on the stove?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who stirs?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what are two people making?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what are two men talking about?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what does a cook ladle?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what do two guys cook together in a kitchen?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what do two guys cook a meal together in?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is the man in the black uniform mixing in the pot?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who does a man in black shirt add a few tips as well is explaining many different soup techniques?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the one in a black shirt prepare to ladle in?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"how many men stand in a kitchen as the one in a black shirt adds cheese to a white bowl and prepares to ladle soup in?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are cooking onions on a stovetop in a small kitchen?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many male chefs does a dish put some cheese at the bottom of a serving bowl are making french onion soup or a similar dish?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a black dressing man doing?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man in the black uniform doing?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who lifts?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man stirs a pot with another man doing?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"drool\"\n  },\n  {\n    \"question\": \"who stirs a pot with another man drooling over the goodnes?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are stirring foot around in a hot pot on the stove?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what puts some cheese at the bottom of a serving bowl two male chefs are making french onion soup or a similar dish?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"how many guys cook a meal together in a kitchen?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking about soup?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man stir with another man drooling over the goodnes?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what do two men stand in as the one in a black shirt adds cheese to a white bowl and prepares to ladle soup in?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who does a dish put some cheese at the bottom of a serving bowl are making french onion soup or a similar dish?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what does a dish put at the bottom of a serving bowl two male chefs are making french onion soup or a similar dish?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"how many men are adding cheese to the bottom of a soup bowl?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who puts cheese in a white bowl?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"toaster\"\n  },\n  {\n    \"question\": \"what is a man in black shirt doing?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are two people stirring foot around in a hot pot on?\",\n    \"video_name\": \"video7653\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is cooking a recipe?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is sliced with a knife?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person lighting up?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"flame\"\n  },\n  {\n    \"question\": \"who is cooking potatoes?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mixes potatoes and cream?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices potatoes?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lighting up a small flame?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains how to prepare a meal?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what does a man pour into the cream?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"puree\"\n  },\n  {\n    \"question\": \"who is teaching how to prepare a dish?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who then adds potatoes to a bowl of heavy cream?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is giving a cooking lesson in his kitchen?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pour garlic puree into?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"who pours garlic puree into the cream?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining a recipe for a preparation with potatoes?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who creates a recipe using sliced potatoes heavy cream garlic and shallots?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices up potatoes?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is food sliced with?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a clip of someone doing?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man creates a recipe doing?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man cooking?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what does a man mix?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video7654\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is prepare the food?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what simmers?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is cooking chicken in the pan?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man in white shirt with black pullover doing?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is asian guy in a sweater vest doing?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cook covers his food and cooks his chicken for twenty minues doing?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a raw chicken in a pot with liquid is put on so it can cook?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"lid\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"simmer\"\n  },\n  {\n    \"question\": \"what is a young chef doing?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a cooking video doing?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in a kitchen doing?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man how prepare?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a young chef cooking with rice?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen making?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who cooks chicken in a pot with boiling water?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is talking about how to cook the chicken in the warm water?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows twenty minues preparing rice in the meantime howto prepare rice?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cooking a chinese meal with rice?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cooking a dish in the kitchen?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a person in black over shirt keep something in to boil?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what did a person in black over shirt keep in the bowl to boil?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does dressed asian chef show twenty minues preparing rice in the meantime howto prepare?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"who is going to prepare a receipe using chicken?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a young asian man put a lid onto?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does a young asian man put onto a pot?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"lid\"\n  },\n  {\n    \"question\": \"what is a young chef cooking a chinese meal with?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what is a man explain prepare?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person in black over shirt boiling in the pan?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is in a pot with liquid the lid is put on so it can cook?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is a person cooking in the pan?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who covers his food and cooks his chicken for twenty minues preparing rice in the meantime?\",\n    \"video_name\": \"video7655\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is demonstration on doing?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is applied?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives tips on how to polish one s nails?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing guitar on stage?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to do a three color fingernail paint almost ombri?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a man playing guitar?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man playing on stage?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is applying nail polish?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is painted?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"who is polishing nails?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman applying?\",\n    \"video_name\": \"video7656\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"what is the device the man doing?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a youngster doing?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"refer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"what is its about a watch and i pod doing?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man in yellow shirt doing?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a black man doing?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man searching something in?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"tab\"\n  },\n  {\n    \"question\": \"who is a man talking about for mobile devices?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"app\"\n  },\n  {\n    \"question\": \"what is a man searching in a tab?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do a man with book in hand and i pad in hand displayinh?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is explain about new technology instrument?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a youngster referring in a library?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"tablet\"\n  },\n  {\n    \"question\": \"who is searching something in a tab?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a youngster referring a tablet in?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"library\"\n  },\n  {\n    \"question\": \"what is a person using is to check something in a common place?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"tab\"\n  },\n  {\n    \"question\": \"who is looking at his watch?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a young man in yellow dress then work on?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"tablet\"\n  },\n  {\n    \"question\": \"who narrates promotion footage for a wearable fitness tracker?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has consumed the device the man is wearing is will keep track of the calories?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wears a smartwatch to keep track of his calorie activity?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about an app for mobile devices?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using is tab to check something in a common place?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a young man in yellow dress read?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"who is referring a tablet in a library?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"youngster\"\n  },\n  {\n    \"question\": \"who reads?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a black man then take out?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"smart\"\n  },\n  {\n    \"question\": \"what is a black man looking at?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who then takes out his smart phone?\",\n    \"video_name\": \"video7657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is athletes doing?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are the players doing?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are six men doing?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what program and race the man?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"running\"\n  },\n  {\n    \"question\": \"what are preparing?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are starting to run?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do athletes run very quickly down?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are six men competing in a foot race on?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what does runners finish?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"how many men are competing in a foot race on a track?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"six\"\n  },\n  {\n    \"question\": \"what started and six people running in it and the men in white tshirt won?\",\n    \"video_name\": \"video7658\",\n    \"answer\": \"running\"\n  },\n  {\n    \"question\": \"what is a cartoon is shown while london bridge doing?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is an animation of the song london bridge doing?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is london bridge doing?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what song animated?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"london\"\n  },\n  {\n    \"question\": \"what is in water?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is an animated ship in?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do some fish jump through?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do cartoon animals and buildings move to?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what jump through the water?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is falling down and a cartoon?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"london\"\n  },\n  {\n    \"question\": \"what does a popular nursery rhyme song play in?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is going through a bridge and buildings?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is falling down plays in the background?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"london\"\n  },\n  {\n    \"question\": \"what does cartoon of bridge over water open to let pass?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is shown while london bridge is falling down plays in the background?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a bridge depicted in as a popular nursery rhyme song plays in the background?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is depicted in the water as a popular nursery rhyme song plays in the background?\",\n    \"video_name\": \"video7659\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what is cartoon video doing?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what play of a soldier running?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a shooting game?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoot the enemies?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is running in a video game?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what is a fighter running with in a video game?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is running in a war video game?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a soldier with a gun run down?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is running with a gun in a video game?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"fighter\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video7660\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is just beginning?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what opened?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what does a woman pacify?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"what is colors channel displaying?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who pacifying the other one?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are hugging each other?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is blinking?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a promotion for the show bigg boss doing?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a television show is just doing?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"pacify\"\n  },\n  {\n    \"question\": \"what is an eye doing?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"blink\"\n  },\n  {\n    \"question\": \"what is colors channel doing?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7661\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a car dravingt on a motorway?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what drives recklessly through traffic?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is speeding down the road?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives down the road?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives recklessly along a highway?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving down the road?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car speeding down?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is running on road?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car drive down?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a car driving down?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a car drive recklessly along?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what drives wildly down the street?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car drive recklessly through?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"what is a car dravingt the wrong way on?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"motorway\"\n  },\n  {\n    \"question\": \"what is a car running on?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does the car drive wildly down?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is cars doing?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what drives down the wrong side of the freeway into oncoming traffic?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car drive down the wrong side of into oncoming traffic?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"freeway\"\n  },\n  {\n    \"question\": \"what is driving the wrong way on a toll way?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"sedan\"\n  },\n  {\n    \"question\": \"what is dravingt the wrong way on a motorway?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a ford sedan driving on a toll way?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what does a car driving recklessly into oncoming traffic causing accidents in it s?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"what chase on a busy intersection?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a ford sedan doing?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is little girl doing?\",\n    \"video_name\": \"video7662\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"when do two girls dance in front of several people?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are two people dancing with music from grease?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are two dancers reinacting from the movie grease?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what scans the audience?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"spotlight\"\n  },\n  {\n    \"question\": \"what does blue spotlight scan?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what are a man and woman singing onstage in?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what are a man and a woman dancing for?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is blonde woman with nice body dancing on?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what are two people dancing on a stage with from grease?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are two people dancing on a stage with music from?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"grease\"\n  },\n  {\n    \"question\": \"how many girls dance on stage in front of several people?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are performers doing?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a dancing couple doing?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is two performers in a sing and dance contest doing?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is beautiful ladies doing?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is blonde woman with nice body doing?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is two women are on stage doing?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"how many people are dancing on a stage with music from grease?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people dance to the music of the movie grease?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"where is blonde woman with nice body dancing?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"how many dancers are reinacting a scene from the movie grease?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when do a male and female couple dance to the grease theme song?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are performers dancing on while blue spotlight scans the audience?\",\n    \"video_name\": \"video7663\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is talking about mosquito?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who looks through a scope?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"who talks about mosquitoes and malaria?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is talking bugs?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is someone the detailed description of?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"mosquito\"\n  },\n  {\n    \"question\": \"what does a scientist look through?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"scope\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"mosquito\"\n  },\n  {\n    \"question\": \"who is talking about mosquitos?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining how deadly mosquitoes can be?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about facts of mosquitoes?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a scientists doing?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"poke\"\n  },\n  {\n    \"question\": \"who is talking about how mosquito killed over 700000 people per year?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is the detailed description of mosquito?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a scientists poking?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"mosquito\"\n  },\n  {\n    \"question\": \"what is being examined?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"mosquito\"\n  },\n  {\n    \"question\": \"what about mosquitos?\",\n    \"video_name\": \"video7664\",\n    \"answer\": \"announcement\"\n  },\n  {\n    \"question\": \"who is being displayed?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a mother doing?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"praise\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"who is a woman advertising?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does a woman demostrating?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is going over a stroller?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who demostrating a stroller?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving demo for?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"who demonstrates how to fold a stroller?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving for baby trolley?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"who is advertising a stroller?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows how to collapse a baby carriage?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman going over?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who explains a baby carriage that is for sale in stores?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is getting ready to show viewer how to open up a folded baby stroller correctly?\",\n    \"video_name\": \"video7665\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a comedian doing?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of scientist doing?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"anchor\"\n  },\n  {\n    \"question\": \"what is neil degrass tyson doing?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are scientists doing?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are several famous people doing?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do neil degrass tyson talking about?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"sputnik\"\n  },\n  {\n    \"question\": \"who tyson talking about sputnik?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"degras\"\n  },\n  {\n    \"question\": \"what did neile tyson degrasse?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"sputnik\"\n  },\n  {\n    \"question\": \"who is talking about going to the moon?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving interview?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a comedian talking about?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"sputnik\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is anchoring?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are some people talking about sputnik at?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"convention\"\n  },\n  {\n    \"question\": \"who speaks to an audience on stage?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who degrasse talks about sputnik?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"tyson\"\n  },\n  {\n    \"question\": \"when are several famous people talking to a live audience?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are some people talking about at a convention?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"sputnik\"\n  },\n  {\n    \"question\": \"what did neile tyson degrasse talks about?\",\n    \"video_name\": \"video7666\",\n    \"answer\": \"sputnik\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is young woman doing?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman cooking in the kitchen while doing?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"list\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman cooking in the kitchen?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is making food while ingredients scroll by on the screen?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman making while ingredients scroll by on the screen?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is listing off the ingredients to a recipe?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking food in the kitchen?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman listing off the ingredients to?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman cooking food in?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is preparing a one dish meal?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving directions?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is cooking in the kitchen?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes a recipe?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating a recipe?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cooking in?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a woman describe?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman demonstrating?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is teaching how to cook?\",\n    \"video_name\": \"video7667\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man playing a game choose?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what is a man taking about?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a player discuss he is navigating?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do the face of a young man on a video screen explaining?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the video game he is navigating?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is taking about video game?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a player discusses the video game he doing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"navigate\"\n  },\n  {\n    \"question\": \"what is adult male doing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is the face of a young man on a video screen doing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is commentating?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7668\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is female models doing?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a blonde female model with a red dress on doing?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a model doing?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a runway of beautiful woman walk and down the isle wearing funny doing?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some girls doing?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are models with blonde hair doing?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are various models doing?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a hot women doing?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a red dressed beauty doing?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who shows off a dress?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks down the runway?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do three woman doing a fashion show to?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a group of woman doing on the stage?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what are various models walking in a fashion show?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"what do blonde models walk down during a fashion show?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who are cat walk in stage near crowd?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who are in the ramp walk for a fashion show?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are fashion girls cat walk in stage near?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are fashion girls cat walk in near crowd?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what walk down a runway during a fashion show?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"when is a group of woman doing fashion show?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do fashion models walk the runway in large dresses to?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are fashion girls walk in stage near crowd?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a woman show off?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what does a woman walk down?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who walk the runway in large dresses to music?\",\n    \"video_name\": \"video7669\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who is removing a transmission filter?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is somebody doing?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"unscrew\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who is opening some instrunment?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"unbolt\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"screw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"who fixes a machine?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who unscrewing a device?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person show a close up of?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what do a person changing a transmission filter on?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man screwing in screws without?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"tool\"\n  },\n  {\n    \"question\": \"what does a person unscrew a piece of under a car?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what does a person unscrew a piece of plastic under?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who shows work on a car filter?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"mechanic\"\n  },\n  {\n    \"question\": \"who shows a close up of an engine?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is screwing in screws without a tool?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who unscrews a piece of plastic under a car?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is unbolting a screw from a mechanical device which may or may not be a car?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who unscrews a plastic top?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is screwing a screw?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a person screwing?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"screw\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is removing a car part?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does someone unscrew?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what does a person unscrew?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what a man fixes?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a man removing?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"part\"\n  },\n  {\n    \"question\": \"what is a man repairing?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is somebody installing?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is repairing a device?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man opening?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"instrunment\"\n  },\n  {\n    \"question\": \"what is installing something electric related?\",\n    \"video_name\": \"video7670\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"what did man and woman conversing in park?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"how many people sit?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a man and woman sit in?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man speaking with girl in?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a man and a young woman sit in while talking to one another quietly?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is a man speaking with in car?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many people talk in a car?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who speaks to a woman in a car?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and woman talking in?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is speaking with girl in car?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man and woman doing?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"converse\"\n  },\n  {\n    \"question\": \"what do a man and a child talk in?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man and women doing?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two people talk in?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a man and woman sit awkwardly in?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man and a young woman sit in a car while doing?\",\n    \"video_name\": \"video7671\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who demonstrates a scene from the minecraft computer game?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"who plays minecraft?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what play?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who narrates his moves while he plays minecraft?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a minecraft video game?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a minecraft character carried around on by another character?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is riding on another in a minecraft game?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who voicing over gameplay of minecraft?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is a minecraft character carried around on screen by?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is carried around on screen by another character?\",\n    \"video_name\": \"video7672\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is a cartoon gleam of light doing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"shin\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"pony\"\n  },\n  {\n    \"question\": \"what is a man watching?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does man react to?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is watching a nice movie?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who reacts to cartoon scene?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who laughs as pony is shown?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who seemed in awe of what he was seeing?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who reacts to a cartoon with ponies?\",\n    \"video_name\": \"video7673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"choreograph\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do black people dance in to music?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"sync\"\n  },\n  {\n    \"question\": \"what are black people doing?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is group of people doing?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a music video of a group break doing?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are youngsters dancing before?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"fountain\"\n  },\n  {\n    \"question\": \"what are people dancing by?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"what are people dancing to?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are gruop of girls and boys doing?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are youngsters doing?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what performs modern dance moves in froont of city fountain?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does the music video for the chris?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do black people dance in sync to?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what did a group of people choreograph?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7674\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what show host is telling the contestant the answers?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who reads out answers?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"gameshow\"\n  },\n  {\n    \"question\": \"who is holding a woman?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing family fued?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man play a game on?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is hosting family feud?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"harvey\"\n  },\n  {\n    \"question\": \"what show host hosting a game?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do a clip taken from a tv game show called?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who plays a game on television?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing on stage?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what show host and contestant check the results?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"when is a person playing a game show?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who do a game show is telling the contestant the answers?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is playing a game show on stage?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play on television?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is a man holding?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is steve harvey doing?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a host doing?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a game show host doing?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a game show host doing?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is a contestant on a game show?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what totals points?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is steve harvey hosting?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is reading the answers on the family feud game show?\",\n    \"video_name\": \"video7675\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who interviews a man?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is interviewing a man sitting in a chair?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is conducting an interview?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing a man?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who a reporter interviews?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a news reporter interviewing?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man interviewing?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a reporter conduct?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man conducting?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does newscaster talk to?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a news reporter doing?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man talks to a man doing?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is interviewing another man?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who conducts an interview?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is someine making something from?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who interviews a man on a news channel?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who interviews a man on the couch?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to a man sitting down?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man talk to sitting down?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making something from paper?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"someine\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"who interviewed by a news reporter?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks to man?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"what is someine making from paper?\",\n    \"video_name\": \"video7676\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is video of someone doing?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video clip doing?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is it doing?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is it is a awsome home with beutiful doing?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"staircase\"\n  },\n  {\n    \"question\": \"what is lighted on the inside and out with bliss light magic?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is presented with special lighting effects?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what shows some lights?\",\n    \"video_name\": \"video7677\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are animated drawing parts doing?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is an old man with white hair is shown doing?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what clip?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man looking at?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who uses computer software?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is looking at something?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are moving to a photo?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"drawing\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does a man speak to another man in?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is someone playing matching the clothes to a character?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who does a man speak to in a room?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a game matching the clothes to a character?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who speaks to another man in a room?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in a scene from a movie?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are animated drawing parts moving to?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what does a person use?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7678\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are other s shouting with?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"joy\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a group of people jump around dance after doing?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is celebrities doing?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is steve harvey doing?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what show closing out?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what show host saying good night?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is talking about something in a stage?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who addresses the crowd at the end of a show?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"gameshow\"\n  },\n  {\n    \"question\": \"who is ending an episode of the family fued?\",\n    \"video_name\": \"video7679\",\n    \"answer\": \"harvey\"\n  },\n  {\n    \"question\": \"who watches?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two teachers doing?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are three people sitting at talking?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who discuss to a matter?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about students?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about education?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who tutors a young girl?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being taught by two adults?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what are two teachers sitting with a girl in?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who is a woman teaching?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who are two teachers sitting with in a classroom?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who interviews a girl at a table?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman talking to while another woman watches?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is helping to teach kids in a room?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many people are sitting at a table talking?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is talking to a child while another woman watches?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many teachers are sitting with a girl in a classroom?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does a german woman tutor?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a girl discuss to?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"matter\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"what is three females at a table doing?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is teaching a child?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"draft\"\n  },\n  {\n    \"question\": \"who is sitting with adults?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7680\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"who pulls a small boat?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man dragging in the ocean?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a man dragging a boat in?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what are people riding in on a reef?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"raft\"\n  },\n  {\n    \"question\": \"what are a group of people swimming in?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"pontoon\"\n  },\n  {\n    \"question\": \"what are people riding in a raft on?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"reef\"\n  },\n  {\n    \"question\": \"what do some people go in a raft in a lake?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"who pulls a boat in the water?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dragging a boat in the ocean?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are a group of people?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"drag\"\n  },\n  {\n    \"question\": \"what is many people enjoy doing?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is in the ocean?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some people go doing?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what are people in?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what are people sitting in?\",\n    \"video_name\": \"video7681\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what played in background?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are man and woman showing?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"affection\"\n  },\n  {\n    \"question\": \"what did the actors do?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what did music play in?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what does a romantic songs play in?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who are showing affection?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what sings a song?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"micheal\"\n  },\n  {\n    \"question\": \"what does micheal bolton sing?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who sings about a man loving a woman?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are man and woman doing?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"cuddle\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"embrace\"\n  },\n  {\n    \"question\": \"what is a man sings about a man doing?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what is man and woman posing in doing?\",\n    \"video_name\": \"video7682\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are examples of newley added features driving a person is giving examples of newley added features to?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"vehicale\"\n  },\n  {\n    \"question\": \"what is drive a car?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone explaining the features of?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who are examples of newley added features driving is giving examples of newley added features to the vehicale?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is driving on a desert road?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a commentator describing the features of?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who reviews a jeep latitude?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining the features of a car?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is describing the features of a vehicle?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"what did narrator talks about the features of a vehicle call?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"latitude\"\n  },\n  {\n    \"question\": \"who talks about people being able to order blind spot warnings?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man driving a super design?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does voice over information describing the vehicle feature displayed in?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man review?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"latitude\"\n  },\n  {\n    \"question\": \"what features showcased?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a commentator doing?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is pictures of a jeep car and man doing?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone is drive a car and doing?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is voice over information doing?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what features explained?\",\n    \"video_name\": \"video7683\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what is a woman talking?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"health\"\n  },\n  {\n    \"question\": \"who is talking about that in a bedroom?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a beauty guru explaining skincare products in?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"who is showing some cream?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses skin cream?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does woman discuss?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what is a woman talking about that in?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"who is talking health treatments?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl giving?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"skincare\"\n  },\n  {\n    \"question\": \"who is giving skincare advice?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a beauty guru doing?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is girl discusses a skin creme she takes while doing?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7684\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what are some people watching?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what do several people sit on a couch in?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what are people sitting on wearing headphones?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what are people watching video clips on?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what are two people discussing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many people are discussing something?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do several people sit on in discussion?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what are people watching on a laptop?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is two people sit on a couch with headphones on doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is several sets of people doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is series of people doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people comment on videos they doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are a group of people taking turns to look at?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is british people doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"how many people sit on a couch with headphones on discussing ocean s 11?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is couples doing?\",\n    \"video_name\": \"video7685\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is there are many young people who doing?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who is getting rid of his sins in a church?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"what is a church being shown from a blonde man is doing an admission to a priest?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"inside\"\n  },\n  {\n    \"question\": \"what is a man in while having a flashback to a fight?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"confession\"\n  },\n  {\n    \"question\": \"who swears during his conservation with the father?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person speaking by seeing the palace in a movie scene?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a young boy with a black tee shirt on conversing towards?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is sitting down behind a door screen?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what goes to a catholic confessional?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"youth\"\n  },\n  {\n    \"question\": \"who is having conversation with other people?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is in the church?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a church being shown from the inside is doing an admission to a priest?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"who is speaking something by seeing the palace in a movie scene?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is in confession while having a flashback to a fight?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are a man talks as a group of people doing?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is woman is in the church and doing?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a confession booth doing?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young boy with a black tee shirt on doing?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"converse\"\n  },\n  {\n    \"question\": \"what is a man confesses to a priest in a large doing?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"tower\"\n  },\n  {\n    \"question\": \"who looks up towards a cathedrals organ pipes and talks to a priest in a confessional?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being shown from the inside a blonde man is doing an admission to a priest?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"who confesses to a priest in a large towering cathedral?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who says confession?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a young man say?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"confession\"\n  },\n  {\n    \"question\": \"what is showed?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"who had?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is woman in?\",\n    \"video_name\": \"video7686\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"what is a girl using?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is texting?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman using?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a young girl texts while doing?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"send\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a woman operating?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a woman texting on?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a girl operating?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a girl send?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who is a girl felling about?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"lover\"\n  },\n  {\n    \"question\": \"who is sending a text asking about a late night snack?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a young woman sending asking about a late night snack?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who is sitting in a bed?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is operating a mobile phone?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sends a text?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman sitting in?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a young woman texting on?\",\n    \"video_name\": \"video7687\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is one of two guys doing?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is walkilng on eggs?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"who is walking on eggs?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stepping on cartons of eggs?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who steps on a carton of eggs outside?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking on crates of eggs?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking on cartons of eggs?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is attempting to walk on egg shells?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7688\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"steal\"\n  },\n  {\n    \"question\": \"what is a game where a player doing?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"rob\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man plays grand theft auto 5 while doing?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is in a video game the player doing?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who does a firetruck sprays water drive over?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man stealing in a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a video game character throw out?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who comments over a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drive a lorry?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drivers a fire truck?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man enter in a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a video game character enter?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is driving a fire engine?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the truck try to maneuver down?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what tries to maneuver down the street?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does the man enter?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what a man drivers?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do a man drive?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"lorry\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who enters the truck?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who plays grand theft auto 5 while commentating with friends?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many boys talk in the background of a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is running over a fountain in a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who enters a firetruck just before the truck tries to maneuver down the street?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"firefighter\"\n  },\n  {\n    \"question\": \"who enters a fire truck in a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stealing a fire truck in a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a fire truck in a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is the player running over in a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"fountain\"\n  },\n  {\n    \"question\": \"what is the player driving in a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a firefighter enter just before the truck tries to maneuver down the street?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"firetruck\"\n  },\n  {\n    \"question\": \"who gets into a fire truck in a video game?\",\n    \"video_name\": \"video7689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating a computer application?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing computer application?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does a man troubleshoot?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"webpage\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"what is someone demonstrating?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"what webpages?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the mouse navigate?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"web\"\n  },\n  {\n    \"question\": \"what navigates the web?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"who troubleshooting a broken webpage?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to navigate website?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"troubleshoot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what shows some activities on desktop computer?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is working with the firefox application?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing not being able to connect on linux?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7690\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what walked along the trail?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse following two kids down?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is running in front of horse?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"how many kids play with a horse?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are walking with a horse?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what walks behind the children?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are kids playing with horse in?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what did the horse walk along?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"trail\"\n  },\n  {\n    \"question\": \"what are girls playing with?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are girl walking with?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are two girls walking with?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what do two kids play with?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many kids is a horse following down the road?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are kids playing with in grass?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is following two kids down the road?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"how many girls are walking with a horse?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is two young girls doing?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are girl doing?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7691\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do a group of people film two men in professional dress discussing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what films two well dressed men having a conversation while walking to their cars?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what a group of media men capturing something on?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what has taking photographs of the people and buildings?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what a group of media men capturing on camera?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many personalities come out the building to enter the car?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do several people with video camaras film as two men leave go separate ways?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what do the news coverage of a vip discussing important matters at?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"distance\"\n  },\n  {\n    \"question\": \"how many male actors is a film crew filming having a conversation?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man in a dark jacket giving to a film crew?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"direction\"\n  },\n  {\n    \"question\": \"what is being shot in a parking lot?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what has come with all crew and camera?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what films a scene between two actors as they head to their cars in a parking lot?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is filming two male actors having a conversation?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what do several people with video camaras film as two men leave shake their hands?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"how many men are walking through a parking lot while talking to each other?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is there are television reporters on the scene filming and doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a film crew doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is the news coverage of a vip doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a group of men film a scene where two guys discuss doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"maintain\"\n  },\n  {\n    \"question\": \"what is bearded guy in black cap doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a group of media men doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"capture\"\n  },\n  {\n    \"question\": \"what is in a black overcoat doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what are media persons with camera doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a photographer films two people doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is two men in suits doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a group of people film two men in professional dress doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man with a video camera doing?\",\n    \"video_name\": \"video7692\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"who talks about a 4x4 rubic s cube?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is trying to solve a rubik s cube?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is attempting to solve the rubric cube?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing with rubix cube?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man solving the rubik s?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who is solving a rubix cube?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a rubik s is being solved?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who do ruby cube play by?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what s cube is being solved?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"rubik\"\n  },\n  {\n    \"question\": \"what play by young man?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"ruby\"\n  },\n  {\n    \"question\": \"what does a pair of hands playing with a rubik s?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is person playing with?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"rubix\"\n  },\n  {\n    \"question\": \"what is almost solved?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"rubix\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what is a man solving?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"rubix\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a pair of hands doing?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is showing how to solve a rubix cube?\",\n    \"video_name\": \"video7693\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is telling about a soup dish?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the woman in the denim shirt talk in?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a brown haired woman from ruchi s talking about making treats with vegetables?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is an indian woman doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cute doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman with long dark hair and a blue shirt talks about doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman in a blue denim shirt discusses doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a brown haired woman from ruchi s kitchen doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is person in blue shirt doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the beautiful girl in blue shirt doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman in a jean color jacket doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman in blue doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a jean shirt doing?\",\n    \"video_name\": \"video7694\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who mixes dough in a silver bowl?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a food dish with a woman hosting the show?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing food ingredients while another woman watches him?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who mixes food in a metal bowl?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is stirring something in a pot?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man make?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who is cooking while a woman watches him?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man making with a woman hosting the show?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what looked delicious?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who do a cookery show?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do cooking show together?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a man stir?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does a person mix in a metal bowl?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who does a woman watch?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show chef making something?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"cookery\"\n  },\n  {\n    \"question\": \"who stirs a pot?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man mixing while another woman watches him?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who makes a dough?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what show mix ingredients together?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who watches a man?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does another woman watch?\",\n    \"video_name\": \"video7695\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is group of people doing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are boys and girls doing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a music video with five or so people doing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a few people doing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two woman s and two man s doing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is african americans doing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people dancing in?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what does a chris?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"where are people dancing?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what are two woman s and two man s dancing for?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a group of black people dance to?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is dancing outside near a water fountain?\",\n    \"video_name\": \"video7696\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is bunch of cartoon characters doing?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in mask doing?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon scene of persons doing?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a animated person with black coat and doing?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is there is a man with mask doing?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what swings back and forth?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"guillotine\"\n  },\n  {\n    \"question\": \"what do two men in red sit on?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what that was once about to be considered for tv?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is discussed as potential new television series?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"fortres\"\n  },\n  {\n    \"question\": \"what does a man in a purple face mask and a suit disappear into?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"mist\"\n  },\n  {\n    \"question\": \"how many men are talking while they sit on a table?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks over some footage of a video game?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did advertisement for studio names happy little gullotine on?\",\n    \"video_name\": \"video7697\",\n    \"answer\": \"mask\"\n  },\n  {\n    \"question\": \"what is a woman crying on?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do some women talk on?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is some men doing?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"how many women are walking in a parking lot?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is crying in a parking lot with another girl?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what show clips set to an animated movie theater screen?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"reality\"\n  },\n  {\n    \"question\": \"how many cute girls are walking?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is crying on the street?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people going?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"shopping\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is the girls doing?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a group of people in a grocery store then a few girls doing?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are two cute girls doing?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7698\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do a blue color dress cloth boy holding?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do a blue color dress wearing cloth man holding?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"bat\"\n  },\n  {\n    \"question\": \"what dress wearing cloth man holding bat?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt and blue shorts plays doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"bing\"\n  },\n  {\n    \"question\": \"who is play table tennis?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"tshirt\"\n  },\n  {\n    \"question\": \"what should a demonstration on how to play table tennis it tells about the posture one hold during?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is blue tshirt person play?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are the table tennis players played in very well in?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"cort\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who do a blue color dress holding tennis bat?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do a blue color dress showing how to hold a bat displaying on screen?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"position\"\n  },\n  {\n    \"question\": \"what does a man describe a good ping pong stroke including keeping the paddle about high?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what dress showing position how to hold a bat displaying on screen?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what dress cloth boy explayning how to position bat and play displaying on screen?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who describes a good ping pong stroke including keeping the paddle about head high?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man describes a good ping pong stroke doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is a man with head band doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a detailed description of doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who do a blue color dress explayning how to position bat and play displaying on screen?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what dress cloth boy holding tennis bat?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who do a blue color dress wearing holding bat?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person with blue t-shirt doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man in blue dress doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a long hair person doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in blue shirt doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a blue color dress cloth boy doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a blue color dress doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a ping pong player in blue athletic wear doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is man in blue doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt doing?\",\n    \"video_name\": \"video7699\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is man in white shirt talking about in summer?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is shown in the background?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"what is the fish market shown in?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is an older man wearing a hat discussing as the fish market is shown in the background?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"what where stands a man with hat and talks about the market?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"who discusses a fish market in a foriegn country?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is man in white shirt talking about the fish?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"summer\"\n  },\n  {\n    \"question\": \"what does a man in a straw hat find in a city in another country?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an older man doing?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in a hat and a white shirt doing?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is man in white shirt doing?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is during his visit and doing?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"tmy\"\n  },\n  {\n    \"question\": \"what is video of someone doing?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"what is a guy in a hat doing?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a white man with a white shirt and a straw hat doing?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video7700\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bus covered in letters doing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a bus doing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who s show about kids riding to school on a bus?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does an animated school bus drive along?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are teams playing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what is a bus driving down?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is an animated bus driving on?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a children s cartoon doing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a dancing alphabet bus doing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is an animated school bus traveling down?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animated bus doing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is an animated school bus doing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is cartoon cars doing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is cartoon of a yellow bus doing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are teams doing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7701\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"who is preparing some pastries?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man fry some food in?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who was making pastry?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is making a pastries in a pan?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what was the chef making?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"pastry\"\n  },\n  {\n    \"question\": \"what does a man fry in his kitchen?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a cook making a dessert of some sort appears to be frying frosting in?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who fries some food in his kitchen?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a chef cooking on a pan?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who fries pastries in a pot?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cooking food on a pan?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does a man squeeze dough into in a kitchen?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a man squeeze into hot oil in a kitchen?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what does a man squeeze dough into hot oil in?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who latheres some delicious spread across the top of a pot that he is cooking?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who squeezes dough into hot oil in a kitchen?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a chef latheres some delicious spread across the top of a pot that he doing?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is making a dessert of some sort appears to be frying frosting in a kitchen?\",\n    \"video_name\": \"video7702\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is examining a nail?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man pointing at a nail under?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what does a man lifting the shingle on?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"who is explaining how to fix a roof?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man examining?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"nail\"\n  },\n  {\n    \"question\": \"what is a man pointing at?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"nail\"\n  },\n  {\n    \"question\": \"what does guy show on a roof?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"nail\"\n  },\n  {\n    \"question\": \"what does guy show a nail on?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"who is pointing at a nail?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy explaining under the floor mat?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who shows a nail on a roof?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man describing a problem on?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is a man describing on a roof?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"what is a man pointing at under a roof?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"nail\"\n  },\n  {\n    \"question\": \"who is explaining about small thing under the floor mat?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is showing how to perform home repair jobs?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is been showed?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"hardware\"\n  },\n  {\n    \"question\": \"who is pointing at a nail under a roof?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing a problem on a roof?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"examine\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is this is a video doing?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a finger doing?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"who is showing a nail being backed out on the original roofer?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining why a nail is backing out on a roof?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shows how a nail is backing out from the roof?\",\n    \"video_name\": \"video7703\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has a very red nose which is being treated?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a close up shot of an old man?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what does a closeup of the blemishes on a man s?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what showcasing an elderly man with rosacea?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is in silent mood?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filmed 2 different times one with a normal looking nose and the other a very red inflamed nose?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who s nose is recorded for medical purposes?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks into the distance?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an old man look into?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"distance\"\n  },\n  {\n    \"question\": \"what is there is an old man with a beard doing?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man is filmed 2 different times one with a normal doing?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who had a red nose?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being filmed?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man have?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what is a old man in?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"mood\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7704\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what does a woman s voice instructs viewers to add to meat cubes lightly dredge them through some flour and then set them aside?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what does a woman s instructs viewers to add salt and pepper to meat cubes lightly dredge them through some flour and then set them aside?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl and a bowl spoon doing?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a white woman with red dressing doing?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is in a kitchen the woman in merron doing?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who explain and how is prepare the food?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who stirs soup and salts and dredges meats?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person cooks food in a pot and rub?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a white woman with red dressing sprinkling to red meat placed in white plate?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"powder\"\n  },\n  {\n    \"question\": \"who is mixing the dish with the floor in a kitchen?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cooking a beef stew on a stovetop?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who mixes a pot of food and breads bits of meat?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cooking a beef stew on?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"stovetop\"\n  },\n  {\n    \"question\": \"what is someone mixing the dish with in a kitchen?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a woman cooking on a stovetop?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"beef\"\n  },\n  {\n    \"question\": \"what is someone mixing with the floor in a kitchen?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is someone mixing the dish with the floor in?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who s voice instructs viewers to add salt and pepper to meat cubes lightly dredge them through some flour and then set them aside?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining how to lightly season stew meat with salt and pepper and then to lightly dredge in some flour?\",\n    \"video_name\": \"video7705\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a cartoon unicorn doing?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animated horse singing?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what s singing the song from the move frozen?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"pony\"\n  },\n  {\n    \"question\": \"what does two pony s singing from the move frozen?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what sings about a beautiful day?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"pony\"\n  },\n  {\n    \"question\": \"what does a cartoon pony sing?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is singing a song?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what sings a song?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a unicorn singing?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"unicorn\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what sings badly?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video7706\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are minecraft characters doing?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a box doing?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a box fall on in a room filled with minecraft sprites?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who stands around?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"how many minecraft characters stand around with a song playing in the background?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is shown of minecraft with a song played overtop?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who stand around with a song playing in the background?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what falls on the floor in a room filled with minecraft sprites?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is falling?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who disappear one by one?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a video shown of with a song played overtop?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who are standing in a room?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who are in a small room?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what are minecraft characters standing in?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what characters having a conversation?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what video game characters having?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video7707\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is animated children talk about doing?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are animated characters doing?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animated character explains why doing?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a cartoon boy doing?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a cartoon that doing?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a cartoon character talks about doing?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is animated kids talk about the benefits of doing?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are two cartoons doing?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what narrerates the scene?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"voiceover\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who explains why working together is beneficial?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is talking about working together?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about working together?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what do a animated toy talk about together?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a kid explaining something on?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what talk about work together?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a kid explaining on a laptop?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do some cartoon characters show on a laptop?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who show a display on a laptop?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is explaining something on a laptop?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"how many cartoons are talking to each other about working together?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do some cartoon characters show a display on?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what does the voiceover narrerates?\",\n    \"video_name\": \"video7708\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is preparing food to be cooked?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person preparing to be cooked?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman cutting up to cook?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who shows how to cut a chicken with a chopper?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and showing the ingredients for?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is an older woman demonstrating on video?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is cutting up a chicken to cook?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is an older woman demonstrating cooking skills on?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a woman in a orange shirt preparing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is an old lady cutting with the help of knife?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is demonstrating cooking skills on video?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are the old lady cutting chicken in the kitchen and other materials around?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what do an old lady explaing about the dish and several recipes present on?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who prepares some ingredients in a kitchen?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who prepares ingredients and chops up veggies?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cutting chicken with the help of knife?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do an old lady cutting the chicken with big knife present on?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who demonstrates a mthod for cutting up chicken?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in a orange shirt doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is an older woman doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is in a kitchen a old lady in orange doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chinese woman demonstrates a mthod for doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is an old lady doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a men doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a women show to cut the chicken pieces in to small by doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a women is seen here doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a lady chef doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the old lady doing?\",\n    \"video_name\": \"video7709\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what are teams playing?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is about a basket ball competition?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who are scoring points?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what basketball game highlight?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do basketball players on two teams shoot into a hoop?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a basketball player shoot?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"layup\"\n  },\n  {\n    \"question\": \"what highlight video?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who shoots a layup?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are teams making?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"what are basketball players shooting basketball at?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who are shooting basketball at a game?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a professional basketball game with a male doing?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what are basketball players doing?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what are basketball players doing?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what do basketball players on two teams run down?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who are basketball players shooting at a game?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do basketball players on two teams shoot a basketball into?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"hoop\"\n  },\n  {\n    \"question\": \"what are teams doing?\",\n    \"video_name\": \"video7710\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what volley ball game?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"olympic\"\n  },\n  {\n    \"question\": \"how many teams are playing volleyball?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is playing volleyball?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do olympic volley?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is athletes doing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are many people doing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are two team doing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two teams doing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two group of players doing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what are two teams playing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what is a group playing?\",\n    \"video_name\": \"video7711\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what does a series of panning still frames show a man and woman in?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what are embracing each other?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who holds his girlfriend?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who has his arms around a woman?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is photos of a man and woman doing?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who does man hold?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"girlfriend\"\n  },\n  {\n    \"question\": \"what are some romantic images doing?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what are a couple doing?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"embrace\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"embrace\"\n  },\n  {\n    \"question\": \"what is a couple together in doing?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a series of doing?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"who shows a man and woman hugging outside?\",\n    \"video_name\": \"video7712\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what do race cars join arms in while a woman sings a song?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what are a group of people standing in with arms locked around a bunch of helmets on the ground?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what do some people gather around in in a solemn fashion?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what did several people in a circle with their cycling helmets place in?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"middle\"\n  },\n  {\n    \"question\": \"what do a group of people solemnly form around some motorcycle helmets?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"where did several people in a circle with their cycling helmets place?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"middle\"\n  },\n  {\n    \"question\": \"what are standing in round position in white clothes?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what round ly with black glass ver person?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a group of people wearing different color dress standing in?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what join arms in a circle while a woman sings a song?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does a woman sing?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is playing in the background?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"sounding\"\n  },\n  {\n    \"question\": \"what does f1 racers singing?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a group of people stand in around a pile of helmets?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what is sad sounding music playing in?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a helicopter doing?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a circle of race car drivers are huddled around a bunch of helmets while sad doing?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is two dozen car racers form a circle around colorful helmets by doing?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is f1 racers doing?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is lot a man doing?\",\n    \"video_name\": \"video7713\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"how many girls were a part of the winter talent show?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many girls are singing at a talent show dressed as santa?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many women dressed in santa outfits on a stage?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what show with four girls singing wearing santa outfits?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"when did four women dress in santa outfits?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do winter talent show with four girls singing wearing?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"santum\"\n  },\n  {\n    \"question\": \"when do a group of women preform?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do girls perform?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"what is going on the stage?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"when is a group performance going?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who pause on the stage?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when do the woman pause?\",\n    \"video_name\": \"video7714\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sings in the studio?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young woman singing?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is recording a song?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman sing into?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what does the girl sing in?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what is a woman recording?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who does a woman record singing?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"what does a girl cover justin?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"timberlake\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what mirror by justin timberlake?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings into a microphone?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing in a recording studio?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing a song in a studio?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who covers justin timberlake s mirrors?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young lady with glasses sing into a microphone in a recording studio?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is an asian woman doing?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does an asian woman wearing glass recording on camera?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings a song in a room?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does an asian woman wearing glass recording a song on?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a girl cover timberlake s mirrors?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"justin\"\n  },\n  {\n    \"question\": \"what does a girl cover justin s mirrors?\",\n    \"video_name\": \"video7715\",\n    \"answer\": \"timberlake\"\n  },\n  {\n    \"question\": \"what is a girl telling to people?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking to three men?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a woman and three men having?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is telling something to people?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many men is a woman scolding?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who argues with a group of men?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady scolding three other men for one of their mistakes in?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do three hindi men and a women have?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"who is scolding three men?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in this video a lady doing?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"scold\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is gents done some mistakes and doing?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is an indian woman doing?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"scold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7716\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are a children playing with?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are a children playing in?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do children play in?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in a pink shirt doing?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a group of people on bikes doing?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there was a lady doing?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is several people on motorcycles show up at a park while a woman doing?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an asian woman doing?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a forest grass land trees vehicals inside doing?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are a group of guys and kids doing?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a pretty young woman doing?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl talking under?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"where do several people on motorcycles show up while a woman is talking it shows children playing in the water?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what does a group of young people on scooters under a shade tree on a sunny day?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what do people congregate around cars and motorcycles and children play in?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what do a group of children swim in while people sit on motorcycles?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"creek\"\n  },\n  {\n    \"question\": \"who is talking a park shows children playing in the water?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl standing under?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what are a group of guys and kids playing in?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who are watch the river beauty and the nature trip?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"tourist\"\n  },\n  {\n    \"question\": \"what is a woman talking shows children playing in the water?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who is standing under a tree?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking under the tree?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is woman in another language talking on?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do several people on motorcycles show up at while a woman is talking it shows children playing in the water?\",\n    \"video_name\": \"video7717\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what begins to run?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"who do slow motion of a goat attacking?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a goat is shown doing?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a goat doing?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is slow motion of a goat doing?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is slow motion video of a sheep doing?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"charge\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what displayed?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what does a goat attack?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do a goat in?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what is a goat running at?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what attacks the camera?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is shown hitting a person?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what does a goat walk in?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"who do a goat running towards?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a animal in slow motion ram?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was in view of the camera?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is being shown in slow motion?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is walking around on a street?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is running at the camera?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is a animal in slow motion doing?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"ram\"\n  },\n  {\n    \"question\": \"what is a goat walking around on?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a goat being shown in?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what walks in slow motion?\",\n    \"video_name\": \"video7718\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is intro to a movie doing?\",\n    \"video_name\": \"video7719\",\n    \"answer\": \"state\"\n  },\n  {\n    \"question\": \"what did a slideshow about?\",\n    \"video_name\": \"video7719\",\n    \"answer\": \"introduction\"\n  },\n  {\n    \"question\": \"what is shown for a cinematic series?\",\n    \"video_name\": \"video7719\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what do words appearing to advertise something then?\",\n    \"video_name\": \"video7719\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are some words appearing on?\",\n    \"video_name\": \"video7719\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is shows two men in a home kitchen they start doing?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is large pieces of meat is unpacked by a person who doing?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is two men discuss the tenderness and method of doing?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the people doing?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two men with beards doing?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person showing some steaks on?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what are two men cooking while talking about the paper?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"ribeye\"\n  },\n  {\n    \"question\": \"what is person preparing the meat in?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is person preparing in the kitchen?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"how many steaks are placed on foil?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who describes brown butcher s?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what two men are about to prepare for?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"challenge\"\n  },\n  {\n    \"question\": \"what are two steaks placed on?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"foil\"\n  },\n  {\n    \"question\": \"who describes difference between two steaks?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men discuss the tenderness and method of cooking a couple of steaks?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are cooking ribeye steaks while talking about the paper?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many ribeye steaks are presented for use in the challenge?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who displays ribeyes on table for a cooking contest?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"how many people describe the difference between two ribeye steaks?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two nicely marbled steaks sit on brown butcher s while the host describes them?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is showing some steaks on a paper?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing the meat in the kitchen?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many men are about to prepare for challenge?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are presented for use in the challenge?\",\n    \"video_name\": \"video7720\",\n    \"answer\": \"ribeye\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"harmonica\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"who makes a bologna sandwich with a fried egg and an onion?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is the man cooking?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"sandwhich\"\n  },\n  {\n    \"question\": \"who is cooking an egg sandwhich?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes an egg and ham sandwich?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman prepare for a recipe?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman prepare some food for?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who prepares some food for a recipe?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man cooking?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who talks about cooking eggs for sandwiches?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking an egg?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a sandwich?\",\n    \"video_name\": \"video7721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who are joking about pregnancy?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"tmz\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of people talking in?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is making an ugly face?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the office laugh with?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"eachother\"\n  },\n  {\n    \"question\": \"what discusses pregnancy?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what does a group discuss?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"pregnancy\"\n  },\n  {\n    \"question\": \"who is talking about being pregnant?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"tmz\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what are people talking about?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"pregnancy\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"debate\"\n  },\n  {\n    \"question\": \"what laughs with eachother?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"wish\"\n  },\n  {\n    \"question\": \"what are members of tmz joking about?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"pregnancy\"\n  },\n  {\n    \"question\": \"what are some people that work for the television show talking about?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"pregnancy\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is woman on tmz doing?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is tmz doing?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are people on the show tmz doing?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are members of tmz doing?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"joke\"\n  },\n  {\n    \"question\": \"what are some people that work for the television show doing?\",\n    \"video_name\": \"video7722\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about a video game on computer?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a video game on computer?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains the piece of information while playing the game called legal agents?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are some kind of colourful lights spreading to the ground?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"brightnes\"\n  },\n  {\n    \"question\": \"who plays in a maze and attacs kis enemies?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what are some kind of colourful lights spreading brightness to?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is character all the things one men is telling the story on the fiction?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is character attack all the things one men is telling on the fiction?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"who is playing a video while discussing the finer points of it?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is giving instructions on how to play a video game?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is attack all the things one men is telling the story on the fiction?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is playing a first person shooter video game?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a game doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is player doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is character attack all the things one men is telling the story on?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"fiction\"\n  },\n  {\n    \"question\": \"who plays an online multiplayer game and talks about how the game works?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a kid playing while discussing the finer points of it?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are some kind of colourful lights doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is there is a action disney figure doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the person explains the piece of information while doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game warrior doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"combat\"\n  },\n  {\n    \"question\": \"what is a monster doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"smash\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a cartoon character hit his enemy and lights him on?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hits his enemy and lights him on fire?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is on the fiction character is attack all the things one men doing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7723\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is middle age woman doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a sweater discusses how to strengthen the pelvic floor doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman in a brown shirt doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is older brunette woman doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is brunette woman doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is brunette woman in brown shirt doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is commercial for kegel with a middle aged woman doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a woman describes an exercise to help women with various doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"age\"\n  },\n  {\n    \"question\": \"who describes about workout and exercises for women?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is speaking about weight resistance near sea shore?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is brunette woman presenting in the room?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"what is brunette woman in brown shirt talking about?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"who is talking about a vagina weight and why it will strengthen your vagina?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in a brown shirt sitting in?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who describes an exercise to help women with various aging problems?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who sits in a chair and talks about medical matters?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what does a woman in a white jacket claim t done properly?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is talking in front of camera?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"who is explain about a kegel exercise?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining about the pelvic floor muscles?\",\n    \"video_name\": \"video7724\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are group of people having at party?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what are group of people having fun at?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what are having fun at party?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do a group of friends cheer at?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what do young people sit around the edges of clapping?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"where do others dance during a party?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"what was celebrated where some of there are interested in singing the song?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what do a group of people cheer at?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"gathering\"\n  },\n  {\n    \"question\": \"what do young people sit around the edges of raising their arms while others dance in the center during a party?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are the people in?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are dancing?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do others dance in the center during?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what do others dance in during a party?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"what is young people sit around the edges of a room clapping and doing?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"raise\"\n  },\n  {\n    \"question\": \"what are a group of young people doing?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what are young people doing?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is there is a check shirt man doing?\",\n    \"video_name\": \"video7725\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"who is pouring a bottle?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman pouring in glasses?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"alcohol\"\n  },\n  {\n    \"question\": \"who is pouring drinks?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring champagne?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who was throwing back shots?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring a drink?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who headbutts a man?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman pouring?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is a girl pouring?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are friends drinking together in?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who does a woman headbutt?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring liquid into a stack of glasses?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a video of a girl doing?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what displays a man and women in different scenes together the woman headbutts the man then he takes a shot?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is in the doing?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what was the man doing?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what are friends doing?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what did a video of a girl pouring something into glasses and a man drinking from a shoot?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who pours a bottle in a room?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are some people drinking a drink in various ways at?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"what are some people drinking in various ways at a bar?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"who is pouring alcohol in glasses?\",\n    \"video_name\": \"video7726\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what has a safe trailer brake controller that keeps it safe as well as connected?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who talked about bluetooth wireless?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what gives tips on maintaining a car?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"what s special features are being discussed on a car commercial on tv?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do dissembled voices talk about?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who explains about a car?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a video segment gives tips on doing?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"maintain\"\n  },\n  {\n    \"question\": \"what did the lady talk about?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"wireles\"\n  },\n  {\n    \"question\": \"what does a guy explain about?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are people describing?\",\n    \"video_name\": \"video7727\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is playing with a radio?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what does a young woman make on a moderately fashioned phone?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what are a man and a woman performing theater in short?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are a man and a woman performing in a video short?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"theater\"\n  },\n  {\n    \"question\": \"what does a woman swing in front of a large sing on a brick wall?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who makes a telephone call?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl make?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what begins to play?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is a blonde woman playing with?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"radio\"\n  },\n  {\n    \"question\": \"what do a movie scene of old man in white dress color cloth sitting call giving to radio displaying on screen?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"volume\"\n  },\n  {\n    \"question\": \"who is a man talking a phone with?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"aguy\"\n  },\n  {\n    \"question\": \"who is blonde woman drinking coffee with?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who is long wavy hair is dialing an old style phone?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a movie scene of old man in white dress color cloth drinking tea and girl making a call giving volume to radio displaying on?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a movie scene of old man in white dress color cloth drinking tea and girl making a call giving to radio displaying on screen?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"volume\"\n  },\n  {\n    \"question\": \"who is having conversation with man in the room?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"who is brunette woman having conversation with in the room?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman long is dialing an old style phone?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who makes a call on a moderately fashioned phone?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is brunette woman having conversation with man in?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is talking a phone with aguy?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is brunette woman having with man in the room?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what do a girl with black dress making?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"who is drinking coffee with a friend?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is blonde woman drinking with a friend?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"coffee\"\n  },\n  {\n    \"question\": \"what do a movie scene of old man in white dress color cloth sitting call giving volume to radio displaying on?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a girl with black dress sitting in?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a man talking with aguy?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a blonde woman doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl with black dress doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a movie scene of old man in white dress color cloth doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is blonde woman doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a clip of actors doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is images of a man and woman in a black and white film with a soundtrack of static and doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"buzz\"\n  },\n  {\n    \"question\": \"what is a woman is long wavy hair doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"dial\"\n  },\n  {\n    \"question\": \"what is a black and white liar s club logo shown followed by a man doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"dial\"\n  },\n  {\n    \"question\": \"what is boy with some coffee while a girl doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"dial\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a blonde woman doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7728\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man talking about lobbyists on?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking on the rt news show?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"ventura\"\n  },\n  {\n    \"question\": \"who talks politics on rt?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"ventura\"\n  },\n  {\n    \"question\": \"who talks about not running for president?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"ventura\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is jesse ventura describing?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"campaign\"\n  },\n  {\n    \"question\": \"what is someone interviewed on?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what does a man defend himself on?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is describing his political campaign?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"ventura\"\n  },\n  {\n    \"question\": \"what do a woman interviews jesse as a potential presidential candidate?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"ventura\"\n  },\n  {\n    \"question\": \"what is jesse ventura talking on?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who defends himself on the air?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking on a show?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"ventura\"\n  },\n  {\n    \"question\": \"who talks about his campaign contributions?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"ventura\"\n  },\n  {\n    \"question\": \"who is interviewed on live television?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about politics?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"ventura\"\n  },\n  {\n    \"question\": \"who talks about how he has not taken money from lobbyists?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"politician\"\n  },\n  {\n    \"question\": \"who is being interviewed on tv?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"ventura\"\n  },\n  {\n    \"question\": \"what jesse ventura as a potential presidential candidate?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old man doing?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is jesse ventura doing?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is jesse venture doing?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about lobbyists on the news?\",\n    \"video_name\": \"video7729\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do models walking on the shinning run way with?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"collection\"\n  },\n  {\n    \"question\": \"what does a fashion designer s line are walking down the runway modeling?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"super\"\n  },\n  {\n    \"question\": \"what does a fashion designer s line super models are walking down?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"modeling\"\n  },\n  {\n    \"question\": \"what do models walking on the shinning run with winter collection?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what does a fashion designer s super models are walking down the runway modeling?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what does a woman in a red dress walk down at a fashion show?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"when do the modern girls made the ramp walk?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are women walking down with different outfits on?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is a woman in red walking on?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"what are several women dressed in designer clothing walking down?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what are some models walking around walk inside?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what do several models walk down a mirrored during a fashion show?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is the modern girls doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman in red doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a woman in red doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a group of women doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is female models doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are different women in colorful clothing doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are several women dressed in designer clothing doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is beautiful tall lady doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are super models doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some models doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who s line super models are walking down the runway modeling?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"designer\"\n  },\n  {\n    \"question\": \"when do the modern girls wearing modern dresses walk?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what walk expressionlessly down the runway in a fashion show?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is several girls doing?\",\n    \"video_name\": \"video7730\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who does christie s poll numbers reporters from foxnews discuss?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"governor\"\n  },\n  {\n    \"question\": \"who s poll numbers people on fox news discuss chris?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"christie\"\n  },\n  {\n    \"question\": \"how many news anchors talk on fox news about gop debate?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who discusses u politics with two men specifically governor chris christie s bid for the republican presidential nomination?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who s poll numbers reporters from foxnews discuss governor chris?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"christie\"\n  },\n  {\n    \"question\": \"how many news casters talk about current political affairs?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a panel of three on television doing?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is two boys and a singe women doing?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are two men in suites doing?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of three people doing?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three people on split screens doing?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is megyn kelly from fox news doing?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is meghan kelly doing?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"when do two boys and a singe women speaking in the fox news?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"sunday\"\n  },\n  {\n    \"question\": \"what is a tv host doing?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is having conversation with two men?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what does three people on split screen talking about?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"debate\"\n  },\n  {\n    \"question\": \"who talk about current political affairs?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what kelly talking to two men about the debates?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"meghan\"\n  },\n  {\n    \"question\": \"what is speaking to two men on separate screens with one responding and the other motionless except for blinking?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who does a woman discuss u politics with two men specifically governor chris s bid for the republican presidential nomination?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"christie\"\n  },\n  {\n    \"question\": \"when do people on a tv show discuss the news?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what talk on fox news about gop debate?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does christie s reporters from foxnews discuss governor chris?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"poll\"\n  },\n  {\n    \"question\": \"who does christie s poll numbers people on fox news discuss?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"chri\"\n  },\n  {\n    \"question\": \"what does christie s people on fox news discuss chris?\",\n    \"video_name\": \"video7731\",\n    \"answer\": \"poll\"\n  },\n  {\n    \"question\": \"what is pin points of light doing?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is bearded guy in tshirt doing?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is bearded guy in black tshirt doing?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is nice light show then face of person is showedvideo taken by doing?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a man discusses an amusement park ride that he doing?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is crazy psychodelic images on a television screen doing?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is a man with black dress doing?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is talking about how drunk he is?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show then face of person is showedvideo taken by traveling in vehicle?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is a person driving on the road in the night time with lighting from opponents?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person driving the car on in the night time with lighting from opponents?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who discusses an amusement park ride that he is waiting in line for?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did bearded guy in black tshirt looking at?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a man discuss ride that he is waiting in line for?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"amusement\"\n  },\n  {\n    \"question\": \"who is watching various projected clips?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do colored lights and pictures of people fade in and out of?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"who was being filmed from a low angle there are film clips of 70 s era?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speak to tv programm for visionaries inside the creative mino?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving the car on the road in the night time with lighting from opponents?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man discuss an amusement park ride that he is waiting in for?\",\n    \"video_name\": \"video7732\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a judge doing?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is folding his hands as he talks to a child to performed?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who marks the group?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who is on stage getting judged?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who talks to a child to performed?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a boy getting judged?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is a judge talking to?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"when is a child singing?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who did the judges like?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"what does the judge giving mark?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is commenting about a boy s performance?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who is talking to a young kid whose on stage?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a boy in a stage?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to a young performer on the stage?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who is talking to a boy?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video7733\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is people on doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are several people doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there are people doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a cooking show doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are all three people doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is people in a kitchen doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are people on tv show doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two man s and a woman doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are several people doing?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who does a female caller talk to talk during a cooking segment?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is listening to a caller?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what show with a phone call interview?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who do people on cooking show speaking to?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"customer\"\n  },\n  {\n    \"question\": \"what are two man s and a woman talking about some food in?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are two man s and a woman talking about in kitchen?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who do 3 people on a talk show talk to?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who are people on tv show talking to?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"caller\"\n  },\n  {\n    \"question\": \"who talks to talk show hosts during a cooking segment?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"caller\"\n  },\n  {\n    \"question\": \"how many cooks stand in the kitchen?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is a cooking show listening to?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"caller\"\n  },\n  {\n    \"question\": \"how many people are wearing aprons?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what do three cooks stand in?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is cooking churros?\",\n    \"video_name\": \"video7734\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of adventurers doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what did two men carrying skis climb up a snow cover?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what do two skiers climb up for the perfect ski?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who is looking on the snow hill?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two snowboarders walking up?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"snowy\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"how many skiers climb up a mountain for the perfect ski?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many snowboarders are walking up a snowy hill?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men speak in french while climbing up the side of a mountain?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a red cap man doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is two ice-skaters doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is two men speak in french while doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are two snowboarders doing?\",\n    \"video_name\": \"video7735\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"how many women s talking to each other about hair?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking about an outrageous hair product on a tv show?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of women on a television show doing?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"suggest\"\n  },\n  {\n    \"question\": \"what is an audience doing?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is talk show woman doing?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three women doing?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is two women s doing?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are woman doing?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is women on a talk show doing?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who shows how to repair limp hair on a show?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses bull semen as a way to soften hair?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining a product on a television talk show?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does two women s talking to each other about?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a group of girl on stage presented with a product for?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what show woman talking about a product to stregnthen your hair shaft?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what claps for people on stage?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a woman explaining on a television talk show?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what does a woman discuss as a way to soften hair?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what does a woman show how to repair limp hair on?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a group of girl on stage presented with for gray hair?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"who are talking on a talk show together?\",\n    \"video_name\": \"video7736\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is review of a video game doing?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"clown\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a game doing?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video game character riding?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is playing video game?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what does a man crash into a car in a video game?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a game character riding around the city on?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is doing a sweet jump in gta5?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crashes his motorcycle into a car in a video game?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding around the city on a motorcycle?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is showing how to play a motorcycle video game?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking while playing a video game?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking while he plays a video game?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man crash his motorcycle into in a video game?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a game character riding around on a motorcycle?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what play footage of grand theft auto?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who rides his motorcycle in gta?\",\n    \"video_name\": \"video7737\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what shooter video game?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who edits things in a video game?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does music play in while a person playing a game shots at a character characters put into the game?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is firing another person in the video game?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did fps game set to?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what plays in the background while a person playing a game shots at a character characters put into the game?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is music plays in the background while a person doing?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what shows gameplay from a weird video game?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what set to music?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do first person shooter?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is organizing the environment?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did characters put into?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a gamer organizing?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"environment\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7738\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"who is reviewing toys on a table?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who reviews a spongebob toy and game?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man reviewing toys on?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is reviewing a spongebob cd?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what marks for an art?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"jury\"\n  },\n  {\n    \"question\": \"who is reviewing something?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is rating a toy?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a jury giving mark for?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"who is talking about a spongebob item?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a person showing with cartoon characters?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"who is rating a spongebob video game?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives his review for a spongebob game or movie?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is showing a tray with cartoon characters?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person reviewing?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man rating?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is a person showing a tray with?\",\n    \"video_name\": \"video7739\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is being previewed?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does a person kick while others talk excitedly around a candle in a dark room?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is screaming?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is shown from a horror movie?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is kicking the bed in a scary movie?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who kicks a bed while others talk excitedly around a candle in a dark room?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a clip from an insidious movie?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what lit people are sitting in a candle?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are people holding with a red candle?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"seance\"\n  },\n  {\n    \"question\": \"what did room light people are sitting in?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what is a woman kicking in a scary movie?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a part of movie clipping?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is the bed a part of?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"clipping\"\n  },\n  {\n    \"question\": \"what do others talk excitedly around?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what is scary ghost girl doing?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman in white boots doing?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a short trailer doing?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7740\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what are announcers describing racing champion?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is talking about a racer and his amazing history?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are announcers describing a cartoon car racing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"champion\"\n  },\n  {\n    \"question\": \"what does three cartoon people on the commentry while a person comes and hand shake to?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a mexican man in a red shirt talking to?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is talking from the gallery?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what is playing in the screen?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is an animation film playing in?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what did story by marin olson scott peterson ande a man tell?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"programm\"\n  },\n  {\n    \"question\": \"what is a suit man talking from?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"gallery\"\n  },\n  {\n    \"question\": \"what do italian animated racer preparing greeting?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what are some animated people inside of?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"booth\"\n  },\n  {\n    \"question\": \"who are watching a man?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are some cartoon characters watching?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did story by marin olson scott peterson ande tell the programm?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is italian animated racer doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a race car star doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is the intro to a very funny foreign cartoon that is on doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a cartoon man doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is it is a cartoon with commentators doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are announcers doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a mexican man in a red shirt doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three animated announcers doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a blue and red jumpsuit doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an animation film doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a suit man doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7741\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man explains which color he doing?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"choose\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"customize\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what do a person talking about editing stuff on?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is explaining how to use a computer software program?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a tutorial on a program?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man choosing an icon for the escape button on?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is showing others how to add an app?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is choosing an icon for the escape button on a screen?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who customizing an icon on his phone?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining how to choose icons?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining how to use an application?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who explains which color he is choosing for a button on his phone?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man customize on his phone?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"icon\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man creating icons on?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who chooses his icon?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the person choose?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"icon\"\n  },\n  {\n    \"question\": \"what did a man customize an icon on?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who icons on a computer?\",\n    \"video_name\": \"video7742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who gets zapped?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what play of a video game?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do gameplay of a cartoonish pc?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what game where one character is trying to get another?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many characters are running around a room in a video game?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what game where the people are trying to get to the green door?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a video game where the people doing?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a video game where one character doing?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character competing against?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7743\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a women preparing in a glass bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"what is a person stirring in a clear glass bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a woman mixing in a bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman making in a bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman adding ingredients to?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is the woman making by mixing it well in a glass pot?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman mixing something in?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a woman making some food in?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is mixing something in a bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making some food by mixing it well in a glass pot?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is stirring some sauce in a clear glass bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stirs up some ingredients inside of a pan?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is making some food in a bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a women use to mix ingredients in a clear bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who is adding ingredients to a bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women using to mix ingredients in a glass bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who is preparing for cooking in the kitchen?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing a dish in glassy bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making a special fruit punch by adding different types of fruits in a glass bowl?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a lady in the kitchen doing?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7744\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"who paints the outside of a flowerpot?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is painting a clay pot while describing the colors he s painting with?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to paint a pot?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man paints the outside of?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"flowerpot\"\n  },\n  {\n    \"question\": \"who is working with colors to paint?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing paint using brush?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who s painting with describing the colors?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is painting flower pots?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who paints a pot?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is painting a terracotta pot?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is a man painting while describing the colors he s painting with?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"clay\"\n  },\n  {\n    \"question\": \"who paints a pot inside his home?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"who is painting pot?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is painting a pot?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing using brush?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is a man painting?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what crafts?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7745\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what animated game clip?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"horror\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do freddy krueger fatality in?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does freddy kruger turn into?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"bassinet\"\n  },\n  {\n    \"question\": \"who turns into a teddy bear?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"krueger\"\n  },\n  {\n    \"question\": \"who turns into a bassinet?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"kruger\"\n  },\n  {\n    \"question\": \"what do freddy kruger in video game form?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"who is in a fight with someone else?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"kreuger\"\n  },\n  {\n    \"question\": \"what krueger fatality in video game?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"freddy\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do horror movie animate?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who does a fatality in mortal kombat?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"krueger\"\n  },\n  {\n    \"question\": \"what do freddy krueger in video game?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"fatality\"\n  },\n  {\n    \"question\": \"who closes the door thus slicing the hand of another man in the video game?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is freddy kruger doing on another freddy kruger?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"fatality\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is freddy kreuger doing?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man closes the door thus doing?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is doing a fatality on another freddy kruger?\",\n    \"video_name\": \"video7746\",\n    \"answer\": \"kruger\"\n  },\n  {\n    \"question\": \"who are talking while classical music plays?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what montage?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is put to classical music?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do hercules disney?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon put to?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a small clip of the television show hercules?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are cheering?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a crowd of ancient romans shown in?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is waving to a crowd of people cheering around the soldier?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"gladiator\"\n  },\n  {\n    \"question\": \"what is a cartoon of people doing?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a gladiator doing?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a short clip taken of a cartoon doing?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what are cartoon charchters doing?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many demonic creatures talk to each other?\",\n    \"video_name\": \"video7747\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is using a rubicks cube?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing with cubes?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone using?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who points at a rubex cube?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing game instructions?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person solving s cube?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"rubik\"\n  },\n  {\n    \"question\": \"what does a man explains how to solve a rubik s?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who explains the point of a rubix cube?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is solving a rubik s cube?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining how to solve a rubik s cube?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person teaching how to solve a rubik s?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is a person solving a rubik s?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7748\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who make up?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing make up?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman describe?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"lipstick\"\n  },\n  {\n    \"question\": \"who promotes?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who demonstrates?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman applying?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"lipstick\"\n  },\n  {\n    \"question\": \"what is a girl using?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"amore\"\n  },\n  {\n    \"question\": \"what is a woman explaining about?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what does a woman demonstrate?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"brand\"\n  },\n  {\n    \"question\": \"who is applying lipstick?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining about a makeup?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting on lipgloss?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is using amore lipsticks?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is teaching how to apply lipstick on lips?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman putting on?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"lipglos\"\n  },\n  {\n    \"question\": \"who demonstrates a lipstick brand?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes how to put on make up?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7749\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the man walking with on the green grass?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what does a man walking on the ground wear?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is a man walking in while carrying a huge cape on his back?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who walks in the green grass with the cloth on his shoulders?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man with a very long blanket attach to while indian music plays?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a man with a very long cape walking on?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what does a man face is displayed and wear long?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a man walk across while pulling a large quilt with him?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what does a man carry forward a large decoratively quilted cloth like?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"cape\"\n  },\n  {\n    \"question\": \"what is a man walks across a lawn while doing?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a man with a very long cape doing?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in blue shirt doing?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a long patchwork blanket pulled by man along outside?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a man in a long red white and blue cape walks down a grassy field doing?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"drag\"\n  },\n  {\n    \"question\": \"who drags a long hot air balloon fabric on a grass land?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who carries forward a large decoratively quilted cloth like a cape?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking with flag on the green grass?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks in the green grass with a long colorful cloth?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a long patchwork blanket pulled by along grass yard outside?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking in the grass while carrying a huge cape on his back?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are countless pieces of cloth dragged across?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who walks across a lawn while pulling a large quilt with him?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking in the green land by keeping the long solve?\",\n    \"video_name\": \"video7750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are girls sharing something about?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"how many thumbs does a woman give up?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who gives two thumbs up?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are girls sharing?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are two women talking into?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"when do two hot girls talk?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"date\"\n  },\n  {\n    \"question\": \"how many women are talking into the camera?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many hot girls talk about their date?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two women rare doing?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two woman doing?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"how many blond women talk about places to stay at a vacation location?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women describe places to be seen in los angeles?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many girls are talking in front of a camera?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are sitting together talking about hotels?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women talk about a man and a hotel?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women talk about where to stay?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talk about places to stay at a vacation location?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"blond\"\n  },\n  {\n    \"question\": \"how many women talk to a camera for an interview?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women describe places to stay?\",\n    \"video_name\": \"video7751\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about a car?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows off his engine sound?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does asian man talk about?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"driving\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes a modified car?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who showcases his car?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown of a really cool car?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who talks about safe driving?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy explain the features of?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who speaks on driving and a car model?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in the woods revving?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is talking about being a responsible driver?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who explaining the features of a car?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man describe?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is an asian kid doing?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man speaks on doing?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in the woods doing?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"rev\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is parked?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does asian guy show off?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is being revved?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what does a man showcases?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7752\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who was modest?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person taking?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a television show guest doing?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two black men doing?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"how many men talk about domestic violence of athletes?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is interviewing a man about violent sports?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is speaking about domestic violence in sports on a sports talk tv show?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for an interview?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving his commentary on a current event television show?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a television show talking about domestic violence?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"guest\"\n  },\n  {\n    \"question\": \"what show guest talking about domestic violence?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is sitting in a chair talking to another man?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is man being interviewed?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many black men are discussing gaming?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is sitting on a white chair?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting in talking to another man?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is discussing domestic violence in sports and how there is a specific sport that especially needs to discuss it?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is being interviewed on stage?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on a talk show?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking interview?\",\n    \"video_name\": \"video7753\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is audience doing?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a studio audience doing?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is clapping?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a clip from the late show with david letterman?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does a voice over giving information for the late show s redesigned?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"site\"\n  },\n  {\n    \"question\": \"what do a video clip of a late night talk show on?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is the late night late show is announcer doing?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is announcer is talking about its website?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is late show is talking about its website?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who is late show announcer is talking about?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"what is giving applause?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what late night web site?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what site advertisement?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"who does the late show have?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"what is the audience giving?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"applause\"\n  },\n  {\n    \"question\": \"who is talking abruptly?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what has a new website?\",\n    \"video_name\": \"video7754\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who runs down recent events?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is talking about news?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking about the news?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who talks about the news?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a gray sweater doing on news and events?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"what does a man in a gray hat and sweater satirize?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does a woman s is shown on the background the at the end?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what does a woman s picture is shown on the at the end?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is describing news in a funny way?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in front of a camera?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who presents the news in front of a white background?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who s picture is shown on the background the at the end?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking continuously?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man describing in a funny way?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is this is someone doing?\",\n    \"video_name\": \"video7755\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when are three girls singing?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many girls are singing on a stage?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many female vocalists perform on stage?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does a female vocal group perform before?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who are singing at a talent show?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when are woman singing?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are girls singing?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do girls sing with lights?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do a group of women sing?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do three female vocalists perform?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what sings on a television show?\",\n    \"video_name\": \"video7756\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what does a man shoot down in the game?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"enemy\"\n  },\n  {\n    \"question\": \"what does a man shoot an enemy down in?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a figure in camouflage clothing walk with through large cement rooms toward a door as people are being shot?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"bent\"\n  },\n  {\n    \"question\": \"what do shooting action orient with a commentary in the background?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who shoots with the gun who ever comes opposite to him?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who beats opponent with hand gun as he walks through doorway of room?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what oriented video game with a commentary in the background?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"who shoots an enemy down in the game?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being shot in first person enemies are being shot at in a futuristic environment?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who shoots before being killed on a first person shooter video game?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is a gun being shot in enemies are being shot at in a futuristic environment?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what shooter video game dead bodies?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is here is a computer game which is full of air craftcars and jeeps doing?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"dash\"\n  },\n  {\n    \"question\": \"what is a movie scene game video doing?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a game where you run around doing?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what is a male voice over doing?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is using big riffle?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do gamers chase people down to shoot them then brag in?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"gameplay\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays on the screen?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking about the scenes?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a video game play on?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is looking for enemies?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person using?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"riffle\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7757\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"rear\"\n  },\n  {\n    \"question\": \"what are a family and their children doing?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is tiger doing?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are one of the family members doing?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"grow\"\n  },\n  {\n    \"question\": \"what is group of girls doing?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a group of tigers doing?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"cohabit\"\n  },\n  {\n    \"question\": \"what are some people in a room doing?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is five people doing?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what has tigers in various rooms in their house living with them?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what does a brazilian family live with tiger s in?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what do a family of five people have seven tigers one of which is inside of the home with?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what do a family of five people have seven tigers one of which is inside of with the family?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what does a narrator describe?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what raises?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who describes the scene?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what does a brazilian family live with in their home?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"what do group of girls feeding tiger in displaying on screen?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"what do a family with seven pet tigers eat around the kitchen table?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"what has pet tigers at the kitchen table?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who are some people in a room interacting with?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"where does a brazilian family live with tiger s?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what lives with tiger s in their home?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what do group of girls sitting on sofa beside tiger and tigers swimming in water tiger in displaying on screen?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who are one of the family members growing as their pet animal?\",\n    \"video_name\": \"video7758\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are in a desktop photoshop application and windows task manager doing?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a person in doing?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is its doing?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is photoshop-the photo doing?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the screen shows someone doing?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is open on a computer screen?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"adobe\"\n  },\n  {\n    \"question\": \"what does music play in?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is talking about some computer features?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is giving a silent tutorial on hyper threading?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who displays a bunch of images on a computer screen?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"photoshop\"\n  },\n  {\n    \"question\": \"what shows someone working in photoshop while music plays in the background?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is tutorial for adobe photoshop application being displayed on?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"who is doing something in adobe photoshop in a system?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is shown as an application loads?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone doing something in in a system?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"photoshop\"\n  },\n  {\n    \"question\": \"what is being loaded into a computer program?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what is someone doing something in adobe photoshop in?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"who are loading simaltaneously in a desktop photoshop application and windows?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"manager\"\n  },\n  {\n    \"question\": \"what is someone doing in adobe photoshop in a system?\",\n    \"video_name\": \"video7759\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is various types of buildings doing?\",\n    \"video_name\": \"video7760\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7760\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a stormy doing?\",\n    \"video_name\": \"video7760\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7760\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"where is documentary of a village or small town that maybe?\",\n    \"video_name\": \"video7760\",\n    \"answer\": \"romanium\"\n  },\n  {\n    \"question\": \"what does a panoramic view of what appear to be?\",\n    \"video_name\": \"video7760\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who is recording the beautiful houses in the city?\",\n    \"video_name\": \"video7760\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are backed by foggy trees?\",\n    \"video_name\": \"video7760\",\n    \"answer\": \"ancient\"\n  },\n  {\n    \"question\": \"what is documentary of a village or small town that maybe in?\",\n    \"video_name\": \"video7760\",\n    \"answer\": \"romanium\"\n  },\n  {\n    \"question\": \"what view of a beautiful city?\",\n    \"video_name\": \"video7760\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"what are audience talking photos on?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"mobile\"\n  },\n  {\n    \"question\": \"what are talking photos on the mobile?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"where do gigantic fireworks display?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is a crowd doing?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are a crowd of people doing?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what does a clip showcasing fireworks going off in?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what are a group of people watching fireworks light up?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what showcasing fireworks going off in the sky?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what watch a large firework show over a city?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a crows takes photos of fireworks doing?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are audience doing?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is crowd doing?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what do gigantic fireworks display in?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what are watching the crackers?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is cheering at fireworks?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what do a very large fireworks display on?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what are fireworks going off around?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what are a crowd of people recording with their cellphones?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"firework\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is there are multiple people doing?\",\n    \"video_name\": \"video7761\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what does a player make?\",\n    \"video_name\": \"video7762\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what is being played during sports clips?\",\n    \"video_name\": \"video7762\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are short clips of basketball and football games shown on?\",\n    \"video_name\": \"video7762\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what is cheering at a football game?\",\n    \"video_name\": \"video7762\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who makes a basket?\",\n    \"video_name\": \"video7762\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video7762\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7762\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a crowd doing?\",\n    \"video_name\": \"video7762\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are the celtics playing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who dunks the basketball during a basketball game?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who is watching sports?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do basketball ball players play on?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"who does the man dunk on?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"who play on a court?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who shoots a basket?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a celtics basketball player make?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"what a man wearing white clothes scores in?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a player dunk during a basketball game?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a basketball player shoot?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who dunks on the opponent?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing basketball?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is sportcaster doing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what are the celtics doing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two teams doing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a basketball game doing?\",\n    \"video_name\": \"video7763\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a man look at as flames burst in front of his face?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is a house with angled roofing over stands in front of a horizon with the outline of a face?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what does the television show face houses and orange flames with a song playing and the words true detective at?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what are burning back side?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what do various faces of different men show up in black and white two faces have a blazing on them?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"who is starring on the screen?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some fire burning back?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a man starring on?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who do opening credits play to the television show?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"detective\"\n  },\n  {\n    \"question\": \"what is being played over credits for a television show?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"where does the television show face houses and orange flames with a song playing and the words true detective?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"who did a video clip of a show call?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"detective\"\n  },\n  {\n    \"question\": \"who is a house with angled roofing over s nose yellow flames burn in front of a man s face?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what faces houses and orange flames with a song playing and the words true detective at the end?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is crime drama television series created by nic pizzolatto?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"detective\"\n  },\n  {\n    \"question\": \"how many faces do various faces of different men show up in black and white have a blazing orange fires on them?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who looks at the camera as flames burst in front of his face?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing still?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is some text for a tv show on?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a house with angled roofing over a man s nose yellow flames burn in front of a man?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7764\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a black car doing?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is someone is drive a car and doing?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a car driving down?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a black car speed down?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is reviewing a vehicle?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is drive a car?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what speeds down the highway?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a black car driving down?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is driving down the road?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being reviewed?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who discusses a car in spanish?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking in spanish about?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking in spanish about a car?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man reviewing?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7765\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a player stalk his friends with a gun in?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is some guys doing?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is seen as a player plays a video game?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who stalks his friends with a gun in a game?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who is playing a video game with friends?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to his friends while playing a video game?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a player stalk his friends with in a game?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is commentary over doing?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man playing with friends?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a player play?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a computer online game?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays video games?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7766\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who holds an energy drink?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"hipster\"\n  },\n  {\n    \"question\": \"what does a man sing with?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"mike\"\n  },\n  {\n    \"question\": \"who is open his mouth?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a hipster hold?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"energy\"\n  },\n  {\n    \"question\": \"what is a man open?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"what lyrics to a song and pictures?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drink?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"who sings with a mike?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a video showing from a fan to a rock star?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"tribute\"\n  },\n  {\n    \"question\": \"what is a tribute video from a fan to a rock star?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man is open his mouth and doing?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a mashup of images and angsty messages are shown with hipsters doing?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there are pictures of a man named kellin quin with lyrics of music over doing?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is showed in video of person?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who later holds a monster energy drink?\",\n    \"video_name\": \"video7767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is opening its doors to reveal what is inside it?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"what opens to reveal stacked plates?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"dresser\"\n  },\n  {\n    \"question\": \"what cabinet where the cabinets open themselves?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are random drawers opened to reveal bowls inside?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"when do the doors on a cabinet open one?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is opening?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are opened to reveal bowls inside the cabinet?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"random\"\n  },\n  {\n    \"question\": \"what is being filmed?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what shows a drawer opening?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what does a cartoon animation show?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"opening\"\n  },\n  {\n    \"question\": \"what closes?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"what opens?\",\n    \"video_name\": \"video7768\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"what is flying over snow covered mountains?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what did the snow cap below?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does pop music play in?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what shows the rotors of a helicopter?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what flies by a snow covered mountain range while pop music plays in the background?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a camera fly by a snow covered while pop music plays in the background?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what flies over a densly wooded mountain covered in trees and snow?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is flying over many snowy mountains there is music in the background?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what did a chopter wings flying over snow cover?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is flying over the top of a snowy mountain?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is a chopter wings doing?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"twirl\"\n  },\n  {\n    \"question\": \"what is a helicoptor doing?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a helicopter doing?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is there is some people doing?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what does an aerial view show the rotors of?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is filming the top of a snowy mountain?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what capped mountain range below?\",\n    \"video_name\": \"video7769\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about peoples grunting when they work out?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes equipment hoggers at the gym?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about problems with people at the gym?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man describe equipment hoggers at?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who does a man describe at the gym?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who discusses why people grunt when they work out?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining the merits of grunting when weightlifting?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does man talk about problems with people at?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who is talking about the gym?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is moving his arms around?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has spiked hair?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking to?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking in the video?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks directly to the camera?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man talk directly to?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does the man have?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is talking to the camera?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about working out?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7770\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is underway?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"sporting\"\n  },\n  {\n    \"question\": \"what golfer?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who puts too hard?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a golfer hitting?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a golfer miss?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who is trying to hit the ball into the pit?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"who is hitting the ball?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"golfer\"\n  },\n  {\n    \"question\": \"who misses a put?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"golfer\"\n  },\n  {\n    \"question\": \"who putts a shot?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"golfer\"\n  },\n  {\n    \"question\": \"what is a video game character putting?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what do game play footage of?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"who is playing a golf game?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is golfing on a game?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what play footage of golf game?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a golfer putt?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a golf player doing?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a golfer doing?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video game golfer and man doing?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there s people doing?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7771\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who are singing a song?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing the drums?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are girl singers singing?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a gospel choir singing?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is playing a song?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a gospel band let?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"shine\"\n  },\n  {\n    \"question\": \"what is a music band playing?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are people performing?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do a choir and band play?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"choir\"\n  },\n  {\n    \"question\": \"what lets the light shine?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"gospel\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is choir group doing?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a music band doing?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is singing a song?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"gospel\"\n  },\n  {\n    \"question\": \"who is playing the drums while a choir of people are singing into microphones?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the drums in a show?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is about a group of people singing i m going to let it shine?\",\n    \"video_name\": \"video7772\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are a group of jockets on horses racing around at full speed?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what does the guy in red lead?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is going on at a race course?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are some horses racing each other on?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what do the horses want?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what does horse racers racing the horses in?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who details the movements of horse in a large horse race?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what is displayed with passionate commentary in the background?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"racing\"\n  },\n  {\n    \"question\": \"what is progressing on the ground with black and white horses?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"when are a group of jockets on horses racing around a track?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is in the middle of the front row of a group of race horses that are rounding a bend by a white railing?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what racers racing the horses in a race?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is rapid horse race progressing on with black and white horses?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is rapid horse race doing?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what are some horses doing?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is horse jockeys doing?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a bunch of race horses race down the track doing?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are a group of jockets on horses doing?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is horse racers doing?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a group of riders doing?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"partake\"\n  },\n  {\n    \"question\": \"what are a white horse is in the middle of the front row of a group of race horses that doing?\",\n    \"video_name\": \"video7773\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"who is singing for a parody video?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wearing old timey clothes?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"smosh\"\n  },\n  {\n    \"question\": \"what do men in costumes sing?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who dances by the singer?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man sing?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is about music and dance?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who does the woman dance by?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who is singing in old classic clothes?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did people dress in colonial clothes singing?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is dressed in historical clothes in a music video?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a music video with lyrics for tamahawk doing?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is smosh wearing?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"timey\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what did people dress in singing a rap song?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"colonial\"\n  },\n  {\n    \"question\": \"what is smosh doing?\",\n    \"video_name\": \"video7774\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a hand holding?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what is a man writing with?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what is a hand demonstrating?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"how many arrays are used to demonstrate a type of multiplication?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does an unsolved vector math problem sit upon as a hand holding a pen attempts to solve the problem?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is demonstrating a math problem?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is some math being shown on?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is explaining arrays?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is writing with a pen?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing for its viewers?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"multiple\"\n  },\n  {\n    \"question\": \"what does a hand holding a pen attempt to solve?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"who explain about the white board?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being shown on a screen?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"who is writing in the white board?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two arrays used to demonstrate a type of?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"multiplication\"\n  },\n  {\n    \"question\": \"what explains how to solve a math problem?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is doing a multiple table for its viewers?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to solve a math problem?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to calculate the dot product of two matrices?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who explains how to find the product of 2 arrays?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who writes out numbers on a screen to teach a lesson?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about how to multiply the factors in a simple way?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is holding a pen?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is an unsolved vector math problem sits upon the screen as a hand doing?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a hand doing?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7775\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"how many young men does one young man kick the center ball while he is alone are on a socker field with three socker balls?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are three young man in one young man dressed in all black is about to demonstrate a move on a foot ball field?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many soccer balls are laying in a field?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many young men dressed in black shirts and pants standing on a soccer field with three balls in a line?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many young men run out onto a soccer field where one man kicks the middle ball?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who kicks the center ball while he is alone three young men are on a socker field with three socker balls?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is three young men dressed in black shirts and pants doing?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a group of three men doing?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are three soccer balls doing?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is three soccer players doing?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a man in the ground doing?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are three balls of colour redyellow doing?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is there is a tshirt man doing?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man in black doing?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"how many young men run out onto a soccer field where three balls are lined up?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are three soccer balls laying in?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does one of three people on a soccer field kick?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a group of three men jumping around on a soccer field as one of them kick?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does one young man kick while he is alone three young men are on a socker field with three socker balls?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"what is a man in black walking on?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a guy on a field running around out?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who are in the video one young man dressed in all black is about to demonstrate a move on a foot ball field?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the players playing?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are laying in a field?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do three men in black athletic cloths attempt to shoot?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what do the running race game and racers in the ground start?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does three boys dressed in black tracks kick to the far end of the goal post?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do a group of young people kick balls into?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"where are three soccer balls laying?\",\n    \"video_name\": \"video7776\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a man peeling carefully and neatly?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what is a women peeling?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"lotu\"\n  },\n  {\n    \"question\": \"who scrapes skin off of a white vegetable then switches to peeler?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is peeling a fruit carefully and neatly?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman use a knife to off a potato then begins to use a peeler instead?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"who peeling a potato on above a white plate?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a potato with a knife on a plate?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who scrapes the skin off of a root with a knife?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who uses a knife to scrape skin off a potato then begins to use a peeler instead?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is scraping the skin of potato with the help of a peeler for cooking a dish?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman peeling a potato with a knife on?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what does a woman scrape the skin off of a root with?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does a woman scrape the skin off of with a knife?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"root\"\n  },\n  {\n    \"question\": \"what did a woman peel on above a white plate?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a woman peeling a potato with on a plate?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a woman peeling with a knife on a plate?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a woman use to scrape skin off a potato then begins to use a peeler instead?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is using a thing to peel a potato?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a lady scraping the skin of with the help of a peeler for cooking a dish?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a person using to peel a potato?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is showing how to scrape the skin off a vegetable?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who scrapes the skin off of a potato using a knife?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman scrapes the skin off of a potato doing?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl and knife vegetable doing?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is here the women doing?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"scrap\"\n  },\n  {\n    \"question\": \"what is a woman in black doing?\",\n    \"video_name\": \"video7777\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what gains the speed than the others?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"racing\"\n  },\n  {\n    \"question\": \"who plays a race car video game while he talks?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is driving his formula?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a formula race car chase behind?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what does a person drive in a video game?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does a man in a video game drive around quickly?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"racetrack\"\n  },\n  {\n    \"question\": \"what is a man racing on a race track?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is trying to reach the red formula?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a formula race car pass around during race?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"curve\"\n  },\n  {\n    \"question\": \"what view of a racing game being narrated by a englishmen?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when does the racing car gain than the others?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is f1 car racer doing?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is there is an animated race car doing?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what were a video game in which you see thing from the point of view as if you doing?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a green and black race car doing?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is there is a black racing car doing?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who is racing a car with large tires around a smooth track?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a simulated formula one racing game from a dash camera angle?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man racing with large tires around a smooth track?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a race car in a video game?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is racing a car on a race track?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a formula race car pass around curve during?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is explaining a race car game as he is playing it?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is person driving?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"formula\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is playing game?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the racing car increase easily?\",\n    \"video_name\": \"video7778\",\n    \"answer\": \"acceleration\"\n  },\n  {\n    \"question\": \"what does a man tell his viewers he needs to see again while moving towards a red sports car?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a red expensive car?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who is looking a car?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men in?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is a man looking?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who do two men examine with no tires?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"lamborghini\"\n  },\n  {\n    \"question\": \"how many men examine a red lamborghini with no tires?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is jumping out of a metal box that hold a sports car?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who got down from the container which have red racing car part inside?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are beside a red expensive car?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about a red sports car with a spoiler on the back?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"what did a man get down from the container which have red racing inside?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"part\"\n  },\n  {\n    \"question\": \"who stands by a pretty red sports car in a trailer?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is passionate about seeing a red sports car again that he would like to have?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is checking out a red sports car that he likes?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are in the garage?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does a man stand by a pretty red sports car in?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who is an expensive red car sitting on?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who is walking on the floor?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"cap\"\n  },\n  {\n    \"question\": \"what is a cap man walking on?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is an expensive red car doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a couple of people doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a cap man doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two men are in the garage and doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"demand\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a hat doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"approach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a red sports car in a white trailer with men doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man tells his viewers he needs to see this car again while doing?\",\n    \"video_name\": \"video7779\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is someone playing talking?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is pointing in the road?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is playing a first person talking?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a machine pointing in?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who shoots at people in a video game while talking about a play?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy playing a video game?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what goes to different areas shooting its gun?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is playing a video game in which someone is aiming to shoot?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing in which someone is aiming to shoot?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who shoots at people in outside and talks about a play?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shooter gameplay of a gun?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are two in yellow uniform and two in blue uniform playing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what is someone playing shooting video game?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing a first person shooting video game?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do first person shooter gameplay of?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man shoots at people in a video game while doing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in doing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this video is a guy doing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two in yellow uniform and two in blue uniform doing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animated gun goes to different areas doing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a machine doing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is here the man doing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is the gun man doing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man talks about a trip while he demonstrates a video game he doing?\",\n    \"video_name\": \"video7780\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what turn into real people?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"ghost\"\n  },\n  {\n    \"question\": \"what performs?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what sings?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is given by the band linkin park in a music video?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who sings as the band play instruments on the stage?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who perform band in high soundit is very interesting?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a son for a music?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing musical instruments?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt singing with?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who plays the drums?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"drummer\"\n  },\n  {\n    \"question\": \"who do a man in blue shirt keep me breathing sung by?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"what are singers singing in a music show passionately?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what did a man singing seemingly make out of?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a band playing on a stage?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is shown with a highly illusion effecting photography and computer technique?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does the man sing as play instruments on the stage?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing a song on a stage?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are singing than they turn into real people?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"ghost\"\n  },\n  {\n    \"question\": \"when does the man sing as the band play instruments?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what did dances in a dim light?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"when is a band playing a song?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is you keep me doing?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"breathe\"\n  },\n  {\n    \"question\": \"what is a boy playing music singing song doing?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is the music is shown with a highly illusion doing?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"effect\"\n  },\n  {\n    \"question\": \"what is a singer doing?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7781\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"mis\"\n  },\n  {\n    \"question\": \"what is a movie trailor about a daughters mother doing?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"die\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what scene where a woman lying on the bed and imagine?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is laying down in bed?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sleep in a bed?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a girl imaging about?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"mom\"\n  },\n  {\n    \"question\": \"what is a girl laying down in?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what do a girl sleep in?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a lady lay down on?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what trailer?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a typical movie scene where a woman doing?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who is a girl talking talking about?\",\n    \"video_name\": \"video7782\",\n    \"answer\": \"mom\"\n  },\n  {\n    \"question\": \"what is there is a woman in red dressing doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is long legged woman with black clothes walking on?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do some gorgeous girls perform well fashion shows are held on?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what do some gorgeous girls perform well are held on the channel?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is ramb the girls waliking in amazing is like as butter fly their brest is super in the fashion show?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"frock\"\n  },\n  {\n    \"question\": \"who is walking on the big scene?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what will vow the tall beauty with very beautiful slim profile give for the product?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"marketing\"\n  },\n  {\n    \"question\": \"what will vow the tall beauty with very beautiful slim profile give good marketing for?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what watches?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is doing cat walk on a fashion show?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"where is long legged woman with black clothes walking?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what are a line of models walking during?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is long legged woman with black clothes doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a line up of models doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a line of models doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a group of models doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is non doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what is black haired woman doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is woman in fashion show and a rose on her belt makes poses and doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is model with bikini doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a tall and lean lady doing?\",\n    \"video_name\": \"video7783\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a guy talks about doing?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"hawk\"\n  },\n  {\n    \"question\": \"when is an older gentleman speaking into a microphone headset at a ted talk?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is speaking into a microphone headset on stage at a ted talk?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"gentleman\"\n  },\n  {\n    \"question\": \"who speaks while wearing a headset?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a speech at a ted talk?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something in a stage?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who talks about hawking?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man speaking to?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gives a lecture?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an older gentleman doing?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man with glasses doing?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man speaks while doing?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is speaking to an audience?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a lecture on a topic?\",\n    \"video_name\": \"video7784\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person using to melt chocolate?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"makeshift\"\n  },\n  {\n    \"question\": \"what did an instructional video on making melt?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what is someone cooking in a pot?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is melting chocolate?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone cooking food in?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is stirring the results together?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing recipe?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person melting?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who pours water into a cup?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pour water into?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what shows a double boiler and how to melt chocolate?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who melts chocolate?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man pour into a cup?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is cooking food in a pot?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does someone melt?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who heats a pot with boiling water?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is using a makeshift stove to melt chocolate?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who melts chocolate in a small fondue pot?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is this is a video of someone cooking who doing?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"melt\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"melt\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is showing how to cook on a small burner?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7785\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what dances in a graveyard?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is dancing in cartoon?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is dancing to the music?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what dances in a park?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is skeleton doing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a spooky skeleton dancing to?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a skeleton dance in?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"graveyard\"\n  },\n  {\n    \"question\": \"what is skeleton dancing in?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what dances around?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what do a skeleton dancing around?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"cemetery\"\n  },\n  {\n    \"question\": \"where does a skeleton dance?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"graveyard\"\n  },\n  {\n    \"question\": \"what is an animated skeleton doing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a spooky skeleton doing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a song with skeletons doing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a skeleton doing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a creepy skeleton dances around and doing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is nice doing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a skeleton dances to a children s?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what pops up with skeleton heads on the fingertips an animated skeleton in an animated graveyard is dancing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what pops up with skeleton heads on the fingertips an animated skeleton in an animated graveyard is singing?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what pops up with skeleton heads on the fingertips an animated skeleton in an animated graveyard is jumping around singing about mommy finger then?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is dancing to a song about fingers?\",\n    \"video_name\": \"video7786\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what do a sports montage video with?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a team playing?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what did a professional baseball game set to?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who back was tackled?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"running\"\n  },\n  {\n    \"question\": \"what is playing football?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what do a sports montage with loud music?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what shows different sport highlights and events?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what is a team playing football on?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are sports clips being shown within?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"frame\"\n  },\n  {\n    \"question\": \"who stand in the field and paly?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is a man hitting a ball with?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is playing football on a field?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what is a man hitting with baseball bat?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"where is a team playing football?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is hitting a ball with baseball bat?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a team playing on a field?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a team doing?\",\n    \"video_name\": \"video7787\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does simultaneously match high school wrestlers are competing in?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"mulitple\"\n  },\n  {\n    \"question\": \"what meet prepares in a large arena?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"how many men are wrestling each other?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does simultaneously match are competing in mulitple?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what do an amatuer wrestling?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what are two guys wrestling in?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what do people watch?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"how many guys are wrestling in a competition?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what matches are happening at the same time?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what is arena of people doing?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are high school wrestlers doing?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are in an arena where people doing?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"when are fighting with each other in wrestling?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there are a number of doing?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is wrestlers on mat doing?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"tumble\"\n  },\n  {\n    \"question\": \"how many man s are fighting with each other in wrestling?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do many wrestlers compete with each other in?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"arena\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7788\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what does some highlight of?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are oeioke playing?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are sport clips being played to?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are being played to music tracts?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"where are sport clips being played?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are playing football and hockey?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"oeioke\"\n  },\n  {\n    \"question\": \"who get hit?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is couple doing?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is football players doing?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is group of players doing?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are oeioke doing?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video7789\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is speaking about some news?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do voters shouting make on the streets?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what is a man speaking about?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who tries?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in glasses and suit jacket talk to the media at?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what is a man with glasses on doing?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what is a man wearing white shirt black coat and spectacles giving to the press reporter in a tv show?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"reply\"\n  },\n  {\n    \"question\": \"who do voters shouting watch as they make the protest on the streets?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"bbc\"\n  },\n  {\n    \"question\": \"who interrupts a man being interviewed by a news reporter?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a news report while protestors scream behind him?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a old man in black coat color dress wearing cloth standing speaking beside speaking displaying on screen?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a old man in black coat color dress wearing speaking other girl beside speaking displaying on screen?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who gives his reasons for showing up at a protest?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"protester\"\n  },\n  {\n    \"question\": \"what do a man do while protestors scream behind him?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a man with glasses speaking about?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a guy with glasses doing?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is voters doing?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is protester gives his reasons for doing?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a black jacket doing?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a old man in black coat color dress doing?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man with glasses doing?\",\n    \"video_name\": \"video7790\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who perform on stage?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"when do young female singers perform?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many girls are singing on stage for judges?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many kids are performing a song?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when is singer performing?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are several young girls singing?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is performing at the stage?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who is singing on a stage?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are three young girls singing in?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"contest\"\n  },\n  {\n    \"question\": \"how many young girls are singing on stage for a talent show?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is singer doing?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are three kids doing?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is three young girls in stage doing?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are three kids performing?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"how many young girls are singing in a contest?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many girls are singing a song in a stage?\",\n    \"video_name\": \"video7791\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is giving details about movie produced by?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who narrating while he s exploring a minecraft building?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"demolish\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone walks through minecraft doing?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who does a walkthrough of a minecraft world?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking about?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks through minecraft cutting down cobwebs?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking while playing a video game?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does someone walk through cutting down cobwebs?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does someone walk through minecraft cutting down?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"cobweb\"\n  },\n  {\n    \"question\": \"what is a video game scene going on of?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does a man playing cutting spiderwebs in?\",\n    \"video_name\": \"video7792\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is sexy brunette in black top doing?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a flight is under the problem and wings of the plane doing?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a aeroplane doing?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is flight is shaken and the pilots doing?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a plane doing?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a commercial airliner doing?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman in black doing?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an airplane staff deals with mechanical issues by doing?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"dump\"\n  },\n  {\n    \"question\": \"what is going down?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is shaken?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what did the pilots trying to land the flight open?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what do a aeroplane moving in air and passenger pilot speaking coming out displaying on screen?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is a plane crashing people are preparing crash has made the decision to dump the fuel out of the plane?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"what is crashing people are preparing crash one pilot has made the decision to dump the fuel out of the plane?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is a commercial airliner crashing inside the plane unfolds?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"drama\"\n  },\n  {\n    \"question\": \"what is a commercial airliner crashing inside drama unfolds?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what do a lady in a blue dress giving instructions over while an airplane is going down?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is crashing inside the plane drama unfolds?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"airliner\"\n  },\n  {\n    \"question\": \"what is flight getting passing through the wings the pilots trying to land the flight?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"trouble\"\n  },\n  {\n    \"question\": \"what are black haired woman and other people having problems with?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is flying out of control of the pilots?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"who is flying an airplane?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a commercial airliner crashing inside the plane?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"drama\"\n  },\n  {\n    \"question\": \"what do the pilots try to land while they opened the air?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what is going to copilot do the stewardesses to do their jobs?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a woman on a phone as the airplane the passengers are on begin to fall from?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is a plane crashing people are preparing one pilot has made the decision to dump the fuel out of the plane?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a plane crashing people are preparing crash one pilot has made the decision to dump the fuel out of?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is getting trouble and air passing through the wings the pilots trying to land the flight?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what plummets?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is shaking?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what is about to crash?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what deals with mechanical issues by dumping fuel?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"staff\"\n  },\n  {\n    \"question\": \"what is a man flying?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is a flight under?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"what is under the problem?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what is going to crash the stewardesses?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is going to protect the passengers?\",\n    \"video_name\": \"video7793\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who do a celebrity being interviewed by a talk show?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is being interviewed by david letterman?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who is wearing a jacket and a striped shirt?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking about something?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is bill murry being interviewed by?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"who is bill murray being interviewed by?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"who is talking to david letterman?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who is bill murray talking to?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"what murray on a tv show?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"what are two men talking about?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"what is a celebrity doing?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is david letterman doing?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7794\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is some of the vehicle floating in?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who explains how to right a collapsed kite surf?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who flips the wing over in the water?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is starting to sink in the ocean?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does the man flip over in the water?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"wing\"\n  },\n  {\n    \"question\": \"who demonstrates how to turn the wing while it is flipped upside down in the water?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a red color wing flipped upside down in?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do a documentary on how to windsurf and in particular recover from?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"wipeout\"\n  },\n  {\n    \"question\": \"who demonstrates how to turn a hand glider over that has landed in water?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man ina wet suit pushing up a boat from?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is a boat doing?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is i video doing?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is bunch of guys doing?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are it is not clear whether a boat overturns or a flying article fell on the lake where two persons doing?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man in the water with a woman doing?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man ina wet suit pushing up from the ocean?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is some of the vehicle doing?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is some people are outside swimming and doing?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a man ina wet suit doing?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is here doing?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person in black doing?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"how many men demonstrate how to use a device in the water?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did a voice giving instructions in turning a wind kite that has stuck in?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does the man flip the wing over in?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did a boat overturns or a flying article fall on the lake where two persons are trying to rescue the same from?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is man in black wetsuit doing?\",\n    \"video_name\": \"video7795\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is boy doing?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who plays with a toy dump truck in the sand?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what does a kid play with his orange dump in the dirt?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a kid playing with in the sand?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who plays with a toy truck?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a kid play with his orange dump truck in?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what does a kid play with dump truck in the dirt?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"who is playing with toys?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who plays with his toy truck?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a kid playing with a truck in?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"who plays with his orange dump truck in the dirt?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who plays with a toy truck in the sand?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"who is playing with a toy truck on a beach?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing with a toy truck in the sand?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing with a truck in the sand?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who plays with a toy truck outside?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what do a young boy playing with a toy dump?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a child play with a toy dump in the sand?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a child play with a toy dump truck in?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what does a boy play with an orange toy truck in?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what does a child play with dump truck in the sand?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a toddler play with a toy truck in?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is a boy playing with a toy truck on?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a boy playing with a toy truck in?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"who is playing in the dirt with his toy dump truck?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who plays with an orange toy truck in the sand?\",\n    \"video_name\": \"video7796\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is there is a doing?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is man swims laps in a swimming pool that looks to be cool and doing?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"refresh\"\n  },\n  {\n    \"question\": \"what is a man swims laps in a large indoor doing?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is swimming in an outdoor pool on a rainy day?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who swims laps in a large indoor swimming pool?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who swims laps in a pool that has round steps in the corner?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who swims laps in a swimming pool that looks to be cool and refreshing?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in blue swim trunks doing?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"who is swimming in the swimming pool?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is swimming in the water?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who swims in it?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man swimming in?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"who is swimming slowly in a swimming pool?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a swimmer in blue swimsuits doing in a lap pool?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is some blue water in a pool doing?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"ripple\"\n  },\n  {\n    \"question\": \"what is recording the swimming pool near the house?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person standing in a swimming pool suddenly plunge under?\",\n    \"video_name\": \"video7797\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is a dog obeying?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"master\"\n  },\n  {\n    \"question\": \"what does two dog in?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is immitating?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what interacts with a human?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is dogs and cats doing?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a game company doing?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is advertising a life simulator game that includes pets?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"company\"\n  },\n  {\n    \"question\": \"what is an advertisement for a pet simulator game?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are a man and dog doing?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what fetches a stick in a video game?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what mimics a human in a video game?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what shows how to create animation pets?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what interacts with a human in a gamecube ad?\",\n    \"video_name\": \"video7798\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is making a chicken fry?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man how prepare?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man explain prepare?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cutting vegetable?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a cook add to his cooking dish?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what does a guy chops up garlic and pour a young male on a tv show over in a pan?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is slicing the vegetables?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"who is prepare the food?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is man putting some vegetables to prepare a dish into?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is a person making?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is cooking on a table in the kitchen?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy in white dress a knife cutting vegetables bowl frying mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a boy in white dress a knife cutting vegetables bowl frying mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a kitchena person making and describing a recipe frying in a do pan in addition to that he is adding garlic to get flavor?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is in the kitchen sprinkling chunks of garlic into a frying pan of chicken?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in the kitchen sprinkling into a frying pan of chicken?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what does a young man wearing a button up shirt put garlic into a frying pan with chicken while in?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a young man wearing a button up shirt put garlic into pan with chicken while in a kitchen?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"who adds garlic to his cooking dish?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is putting some vegetables to prepare a dish into black dish?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in blue shirt sprinkle garlic on?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is a man in the kitchen sprinkling chunks of into a frying pan of chicken?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"who cuts some vegetables to prepare a dish?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a young man wearing a button up shirt put garlic into a frying pan with in a kitchen?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what do a boy in white dress a knife cutting vegetables bowl frying mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is man in blue shirt doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is cheff doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a boy in white dress a knife doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man is in the kitchen doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"sprinkle\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"sprinkle\"\n  },\n  {\n    \"question\": \"what is a chef in kitchen doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is in a kitchena person making and doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a cook chops up garlic and adds it to his doing?\",\n    \"video_name\": \"video7799\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does a woman in a blue dress and jewelry pose for?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a lady in blue dress with the diamond jewels on the neck pose to?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what does the celebrity in god ornaments pose for?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what does a woman in a blue dress with a lot of cleavage wearing fancy jewelery pose on?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a woman wearing a blue dress and black sunglasses walk down?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a woman with sunglasses an elaborate necklace earrings and a blue shirt walk in?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a woman in a blue dress walking in a crowded city on?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is surrounded by others?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in a low cut blue shirt wears a large necklace and large earrings made from diamonds while doing?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman in a blue dress with a lot of cleavage showing and doing?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a lady with a blue dress and sunglasses doing?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a girl in blue dress doing?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman in a blue shirt and elegant jewelry doing?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman in a blue dress doing?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman in blue dress with pearl neckless doing?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a video of a woman doing?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some people walking around in?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what does a woman in a blue dress with a lot of cleavage showing pose on?\",\n    \"video_name\": \"video7800\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who dances to music with a little girl?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a father and his daughter dance to in their living room?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a father and daughter performing?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"routine\"\n  },\n  {\n    \"question\": \"who show off their dancing skills?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are a child and a man dancing to?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a man dance to with a little girl?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a child and a man doing?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a father and daughter doing?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are a man a girl doing?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a man and a little girl doing?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a man and his daughter doing?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do girl and guy show off?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"dancing\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7801\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a bunny and a kitten doing?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a cat and kid doing?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a mother cat doing?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is video on a cat doing?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what are some cats doing?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what are cats doing?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are kittens doing?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"nuzzle\"\n  },\n  {\n    \"question\": \"what are kittens being nursed in?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what are cats drinking from the mother?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what is sitting?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who are cats drinking milk from?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who is holding a kitten and rabbit?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what nurses kittens and a bunny?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who are kittens nuzzling with in a small box?\",\n    \"video_name\": \"video7802\",\n    \"answer\": \"mom\"\n  },\n  {\n    \"question\": \"what is walking a beach?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who is talking about how tmz criticized selena gomez s swimsuit body?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman telling about?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"swimsuit\"\n  },\n  {\n    \"question\": \"who is commentating?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about swimsuit?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is telling about woman swimsuit?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who s in bikini near beach?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a famous singer?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a reporter talks about an actress spot on the beach in?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"mexico\"\n  },\n  {\n    \"question\": \"what did a reporter talks about an actress spot on in mexico?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"where did a reporter talks about an actress spot on the beach?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"mexico\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"swimsuit\"\n  },\n  {\n    \"question\": \"what is a female walking?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is anchor doing?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"reveal\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a female show host doing?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video7803\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man advertise?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a person tell about?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a gray haired man discuss?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is speaking to the camera?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing a baby monitor?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cries while a man talks about a baby monitor?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who advertises a baby monitor?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tells about baby care?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a commercial?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a baby a man is talking?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is telling about the ibaby monitor?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a woman holding a baby is talking?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a baby monitor?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man speaking to?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man discussing?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a mother doing?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman and her baby plus a man doing?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is advertisement doing?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is a woman holding a man is talking?\",\n    \"video_name\": \"video7804\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"how many women speak on a talk show?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who engage in an interview about success?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do two woman engage in about success?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who communicating each other?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are talking?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are sitting?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women talk about proposing?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two woman engage in an interview about?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"succes\"\n  },\n  {\n    \"question\": \"who is a woman interviewing about the key to success?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many girls are talking on a chat show?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who interviews another woman in a room?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are on a tv show two women doing?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two woman doing?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"communicate\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two young women doing?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many women are sitting down talking on a television show?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is interviewing a woman about the key to success?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are talking to each other on a tv show?\",\n    \"video_name\": \"video7805\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what pushes a man taking pictures?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"what do the people play on with one another?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what did a man in black shirt push another man in red and white shirt and shorts down at?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are people active on?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do beautiful people party and hang out on?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what goes on?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"who are a group of people enjoying is clicking photographs?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did a man in black shirt push in red and white shirt and shorts down at the beach?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a gang of people doing?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is people at the beach celebrate and party while a doing?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what are a group of people enjoying one person is clicking?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what is there is a man with cap doing?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are a bunch of people doing?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"fool\"\n  },\n  {\n    \"question\": \"what are a bunch of people having fun on?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are a bunch of people having on a beach?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"when do the men and woman spend playing on the beach?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what do a group of surfers go crazy on?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who do a group of surfers lift?\",\n    \"video_name\": \"video7806\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"who yells at monkey in cartoon?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"word\"\n  },\n  {\n    \"question\": \"who yells at a monkey and a pirate flys on a ship?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is looking angry?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon girl doing?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is a cartoon monkey doing?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is an animated monkey doing?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is an animated woman doing?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the word girl cartoon clip shows word girl doing?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"asses\"\n  },\n  {\n    \"question\": \"what is crossing its arms?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what a pirate rides?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"treasure\"\n  },\n  {\n    \"question\": \"who is riding?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a girl yell at a monkey and a pirate flys on?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what pirate riding on a floating ship?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon girl argue with?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"who is yelling at a cartoon monkey?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is talking to a monkey?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is screaming at the monkey?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who rides a treasure chest?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"what is an animated woman talking to?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"who argues with a monkey?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a girl screaming at?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"who comes out of nowhere?\",\n    \"video_name\": \"video7807\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"what is car doing?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"stun\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a male and female standing in front of a silver car doing?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the man and woman doing?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and a lady doing?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is there is a man and a lady doing?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a lady explaining about?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a car parking on road and girl and boy doing?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is stunning two people are standing together?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what did a man and woman stand to the left of a silver mid size?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"sedan\"\n  },\n  {\n    \"question\": \"who is showing car with blonde standing next to him?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who commercial features a silver volkswagen car?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"trader\"\n  },\n  {\n    \"question\": \"how many people is car stunning are standing together?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a person showing with blonde standing next to him?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is also telling the features of the car?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person also telling the features of?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are a man and woman near outside?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is explaining about something?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do a car parking on road girl and boy standing in ash and black color dress speaking on discusing displaying on screen?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7808\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who does a woman attack with a knife in a video game?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a animated cartoon cut?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"throat\"\n  },\n  {\n    \"question\": \"what does a video game character kill?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a mortal?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"fatality\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is in a video game a woman doing?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"who attacks a man with a knife in a video game?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is one character wins by doing?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"perish\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman attack a man with in a video game?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is a woman killing in a video game?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what cuts another s throat?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who stabs a man through the head then slit his throat?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman stab through the head then slit his throat?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is killing a man in a video game?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman stab a man through then slit his throat?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what play with lots of blood?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who wins by perishing the other?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a woman stab a man through the head then slit?\",\n    \"video_name\": \"video7809\",\n    \"answer\": \"throat\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man s?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what walk through?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone flying?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a man s speaks?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a futuristic vehicle in a video game?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who talks about drivable vehicles in a video game?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a space ship in a video game?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about driveable vehicles?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a violent futuristic video game play while a man s?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who s voice speaks?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing destiny?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flying an airborn vehicle?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing video games?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man driving in a video game?\",\n    \"video_name\": \"video7810\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what are a woman and man doing?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are a man and women doing?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what are a woman and man kissing in?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is shown getting on top of a man in a sofa?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a man and a woman kiss on?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what did a man and a woman lie in?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"kissing\"\n  },\n  {\n    \"question\": \"what are a man and women kissing on?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a music video shown of two people in together?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is singing in a pond?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is shown of two people in bed together?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what embrace on a bed?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what do a couple embrace on?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a man and women kiss in?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a woman singing in?\",\n    \"video_name\": \"video7811\",\n    \"answer\": \"pond\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cartoon clip doing?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an animation of a man doing?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man discusses doing?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"demand\"\n  },\n  {\n    \"question\": \"what is video game character doing?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a counter with a caron of milk and huge mixer and a man doing?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a cartoon man doing?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is 3d animation of man doing?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is animated person doing?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man making meatloaf in?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is talking in a kitchen?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who discusses demanding his mother to cook?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does the 3d animated taking revenge?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a cartoon man talking in?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is talking about food?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the 3d animated man taking?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"revenge\"\n  },\n  {\n    \"question\": \"who is talking in the kitchen?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man discuss demanding to cook?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who is in the kitchen?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man making in the kitchen?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"meatloaf\"\n  },\n  {\n    \"question\": \"what is a person in?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what character cooking?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making meatloaf in the kitchen?\",\n    \"video_name\": \"video7812\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a clip of a doing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a dance video game doing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is someone plays a doing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a person dancing to?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is recording himself dancing?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what play of dance dance revolution game?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is dancing to the music?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is dancing while playing a video game?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing in front of a green screen of club lights?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays a dancing video game and streams it?\",\n    \"video_name\": \"video7813\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is several stick figures doing?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what are stick figures doing?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is someone shows some drawing and doing?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is group of stick figures doing?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is stick man doing?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a slide show of actions about doing?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lesson in english doing?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the word brush appears next to a stick figure doing?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a man talking over?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is talking over an animation?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are performing different actions?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what are pictures of stick figures accompianed by?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"who shows some drawing?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what poses are being displayed with stick figures?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what do a lesson in english using stick?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what appears next to a stick figure holding a brush to its head?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what figures posing for reading lessons?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what appear on a piece of paper?\",\n    \"video_name\": \"video7814\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what displays genetic traits of horses while music plays in background?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a very cute and beautiful horse which in brown black and white in?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what does a brown horse with a with and black lower body is standing in a barn text appear a horse is jumping over?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what does a brown horse with a with and black lower body is standing in a barn text appear is jumping over a fence?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is being photographed?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a half horse half cow family and doing?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"grow\"\n  },\n  {\n    \"question\": \"what is a brown horse with a with and black lower body doing?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is there is a horse doing?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is compared with other horses outdoors?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse sleeps in the grass then is seen doing?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is being compared with other?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse jumping?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what is a horse showed on?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a horse standing in?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is jumping the stick?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is showed on the screen?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what plays in background?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is standing in the ground?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does music play in?\",\n    \"video_name\": \"video7815\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person with a red shirt on doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is famous youtuber named dude perfect doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is a man in red t-shirt doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"gather\"\n  },\n  {\n    \"question\": \"what is man in red shirt doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a guy with a red shirt and hat doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what did guy in red tishirt catch in?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"who named dude perfect catching a fish?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"youtuber\"\n  },\n  {\n    \"question\": \"what are two persons catching fishes on?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"who does a man in a red and black shirt and a black hat show a fish off to?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is man catching with his friend?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is taking photo?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wears his cap backwards?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a smiling man wear backwards?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"cap\"\n  },\n  {\n    \"question\": \"what is man taking?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"who named dude perfect being photographed?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"youtuber\"\n  },\n  {\n    \"question\": \"who shows a fish that he caught as his friend takes a picture?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fisherman\"\n  },\n  {\n    \"question\": \"who is man catching some fish with?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what does a man in a red and black shirt sunglasses and a backward baseball cap catch?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a person having a very big size fish in?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a man in a red and black shirt and a black hat show off to his friend?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what does a smiling man hold with a curve of pointed top fins upright in front of him?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"glistening\"\n  },\n  {\n    \"question\": \"how many persons are catching fishes on a river?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are fishing one in green top and one in red top?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are fishing when one catches a small fish they take pictures of it?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a person with a red shirt on catch?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a person with a red shirt on?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"what did a man posing to the camera along with catch?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what did a man catching the fish on the water catch?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who holds a glistening fish with a curve of pointed top fins upright in front of him?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is catching some fish with his friend?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is having a very big size fish in his hand?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man in a red and black shirt and a black hat catch?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is man in red shirt catching?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what did famous youtuber name dude perfect catching?\",\n    \"video_name\": \"video7816\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who sings for the judges in a tv singing competition?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when does young asian girl sing?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl singing?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a woman sing on?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"gameshow\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a girl performing?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when are kids performing?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing on stage?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings at a talent show?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who performs a catchy song on the voice?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings on stage while judges dance in their seats?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when does a young girl sing while judges dance in their seats?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on stage on the voice?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing a song on the voice?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is a girl singing on the voice?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do a woman singing on the television show?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"competion\"\n  },\n  {\n    \"question\": \"who sings for an audience and a judge panel?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings in front of an audience?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl singing on stage on?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a girl performing a song on?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a girl performing on the voice?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing in a stage program?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings on a gameshow?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings on a television singing competition?\",\n    \"video_name\": \"video7817\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is african man doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a couple of man doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a man in a cap shoots a basketball from close and misses doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"become\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man jumping and doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a couple of black men doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is in the basket ball play ground a man doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a group of people on a court doing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what does a black tshirt man try to put the basket ball in?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"net\"\n  },\n  {\n    \"question\": \"what is a man bouncing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do ball play try to put the ball to?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who is being coached at basketball?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is african man showing his skills in?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is playing basket ball?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do ball play try to put to the ring?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is bouncing the ball?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who misses his shot?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man being coached at?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a man miss?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"who is showing his skills in basketball game?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what try to put the ball to the ring?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what ground a man wearing black banian wearing black cap practicing basket ball?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is doing practice to put the ball into basket net under with trainer guide?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man wearing a black outfit including a knitted cap with pompom miss throw curses and hits the ball?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a person doing to put the ball into basket net under with trainer guide?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what does a man in a cap shoot from close?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a black tshirt man try to put in net?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who is unable to make a shot in basketball?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is frustrated at his ability to make a short shot in basketball?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who get frustrated when he not able to basket the ball?\",\n    \"video_name\": \"video7818\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is spraying something out of a can?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person installing?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"filter\"\n  },\n  {\n    \"question\": \"what is man fixing?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a person work on?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone working on?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is fixing a car?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is installing a filter?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who works on a car?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is working on car?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is installing a new stock filter?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is installing new stock filters?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does the mechanic ready to?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a tutorial of doing?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what is being installed on a vehicle?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"filter\"\n  },\n  {\n    \"question\": \"what is a new filter being installed on?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7819\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"who is showing an engine?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about having problems with an alternator in a car engine?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy talks about how a car s alternator wasn t doing?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a mechanic doing?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"inspect\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is showing under the hood of a car?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what does a man talk about he s been having in his gsr?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"what does a man talk about the problem he s been having in?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"gsr\"\n  },\n  {\n    \"question\": \"who is working on a car engine?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a guy working on a car wrong with what to?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"customer\"\n  },\n  {\n    \"question\": \"who explains how he replaced a car s alternator?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the problem he s been having in his gsr?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a mechanic inspecting the inside of?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who works on the engine of a car?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a guy explaining what wrong with it to?\",\n    \"video_name\": \"video7820\",\n    \"answer\": \"customer\"\n  },\n  {\n    \"question\": \"what does an animated baby shark see?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"what does a cartoon alien character find?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is being held captive?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what character swimming around?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is there is a cartoon creature doing?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is an animation showing looking character moving about?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"alien\"\n  },\n  {\n    \"question\": \"what is an aquatic cartoon animal doing?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what is an animation doing?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is animated video of a doing?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a cartoon fish character doing?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a cartoon of some creatures doing?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"who did an animated sequence with a pokemon going through a chamber fill with?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what did an animation of an underwater sea creature finding another of its species encase in?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what did a cartoon character looking at another character stick in?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is showing an alien evil looking character moving about?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is 3d animation of doing?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video7821\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman going up in?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"stair\"\n  },\n  {\n    \"question\": \"what does a woman walk up into?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"inclosure\"\n  },\n  {\n    \"question\": \"when is a girl going up?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are persons coming in?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what is going to take place?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"function\"\n  },\n  {\n    \"question\": \"what does a line of women go up some stairs that are inside of a cage with flowes on it s?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is displaying?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing color cloth walking upstairs and person beside camera catching displaying on screen?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is walking on the steps while shooting with camera?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing walking upstairs and person beside camera catching video displaying on screen?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing color cloth walking beside camera catching video displaying on screen?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing color cloth walking upstairs and person beside catching video displaying on screen?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"beside\"\n  },\n  {\n    \"question\": \"who walks up into inclosure?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is going up in the stair?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is going up in the stage?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl in blue dress color cloth doing?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl in blue dress doing?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is people are shown doing?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"mill\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman in a purple dress doing?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are many ladies and men doing?\",\n    \"video_name\": \"video7822\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is showing some variety of food?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about food?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what shows several foods?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is an asian woman talking about?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is on a plate?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone showing some variety of?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is the trailer of a cooking show?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is food on?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an asian woman doing?\",\n    \"video_name\": \"video7823\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man making on a plate?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"who is someone making in a kitchen?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"receipe\"\n  },\n  {\n    \"question\": \"who is serving food on plate?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who makes a salad in the kitchen?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man making a salad on?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who plating a green salad?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is mixing salad?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plates a salad?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a person serving on plate?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person serving food on?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is someone making a receipe in?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"who is making a salad on a plate?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a receipe in a kitchen?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a person making a frisee salad with poach?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone cooking and doing?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"plat\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is preparing a salad and egg dish?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a salad?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are vegetables arranged on?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what does a chef plate?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person mixing?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"what does a guy plate?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"plat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7824\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who does a family sit at the kitchen table talks about modern family dynamics?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what is there is a man in black doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady and two men sittin on the doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"din\"\n  },\n  {\n    \"question\": \"what is people sit around a kitchen table doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is few people doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman talks about how italians doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"stay\"\n  },\n  {\n    \"question\": \"what is family members doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a woman talks about how she doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"struggle\"\n  },\n  {\n    \"question\": \"what is a few people sits to a table then a person doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"bring\"\n  },\n  {\n    \"question\": \"what are several people doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two boys and one girl doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is old guy doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men one woman doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who talks about how italians staying at home after schooling is becoming more common?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks about the percentage of people over thirty living at home as opposed to the nineteen eighties?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what sits at the kitchen table an announcer talks about modern family dynamics?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who serves to a lady and two men?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many people are having conversation in the room?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are three people having conversation in?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does two boys and one girl speak about?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"population\"\n  },\n  {\n    \"question\": \"what are three people having in the room?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what does a few people sit to then a person bring them food?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what do people sit around a kitchen table watching?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what are several people sitting around speaking with each other?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who brings food in the plate?\",\n    \"video_name\": \"video7825\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a clip about doing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"drop\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman demonstrates doing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"coat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is in a kitchen a woman doing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"coat\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who is stirring a recipe?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dipping potatoes in a bowl?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a woman stir some food up in?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a woman coating potato balls in batter and placing them into a pan in?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a woman stir up in a bowl?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman coating potato balls in batter and placing flour and water into a pan in?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is prepared in a bowl to be cooked?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone mixing flour and water in?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is someone dipping potatoes in?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is preparing potato ball?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is food prepared in to be cooked?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is someone mixing in a bowl?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who explains the recipe?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what veggies in a batter?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is putting in to an oil?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does a woman dips veggies in?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone putting in to?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a girl preparing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are people cooking?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman stirring?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a girl explain?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who explains how to make a potato ball recipe?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is coating potato balls in batter and placing flour and water into a pan in a kitchen?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is coating potato balls in batter before frying?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is instructing the viewer as to how to cook potato balls?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing flour and water in a bowl?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who demonstrates stirring the batter of a special kind of food?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is coating potato balls in batter and placing them into a pan in a kitchen?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirs some food up in a bowl?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman instructing as to how to cook potato balls?\",\n    \"video_name\": \"video7826\",\n    \"answer\": \"viewer\"\n  },\n  {\n    \"question\": \"who do a group of protesters walk for?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"midwife\"\n  },\n  {\n    \"question\": \"what are people walking down holding signs?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are a group of people walking along?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"roadside\"\n  },\n  {\n    \"question\": \"what is picketing trying to get midwives back?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people protesting on?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do people stand in?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are people walking down?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what is a crowd doing?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"picket\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what are people walking on holding banners?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a protest is shown doing?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7827\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"who is having a lap top?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man holding a mike and give with the help of his computer in front of him?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a man having?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"lap\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"mic\"\n  },\n  {\n    \"question\": \"what is a man talking in in front of the computer?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"mike\"\n  },\n  {\n    \"question\": \"what does a man in a khaki standing in front of a red wall with a laptop in front of him speaking into a microphone?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"jacket\"\n  },\n  {\n    \"question\": \"what is a man talking in with the lap top?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"mic\"\n  },\n  {\n    \"question\": \"who gives a lecture with a microphone in front of a laptop with a red glow behind him?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has black mike in hand then red light is displayed on back?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in the mic?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in the mic with the lap top?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking a non english languange through the microphone he is wearing a brown suit?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a young man in a suit jacket speak to from behind a laptop while holding a microphone?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is talking in the mike in front of the computer?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young man in a suit doing?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man in a suit jacket speaks to an audience from behind a laptop while doing?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a young man stands in front of a silver laptop speaking into a microphone in a white spotlight doing?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"cast\"\n  },\n  {\n    \"question\": \"what is a man in a khaki suit jacket doing?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the man with microphone in his hand doing?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man with microphone doing?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"when is a man with a microphone and a laptop talking?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person speaking a non english languange through the microphone he is wearing?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what show host is in front of a red background?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a man with a microphone and a laptop doing?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person speaking a non english languange through he is wearing a brown suit?\",\n    \"video_name\": \"video7828\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who is talking about human body?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is drawing an anotomical diagram?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sketching on a projector?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone putting on a projector?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what does a person showing slide of the skeleton?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"projector\"\n  },\n  {\n    \"question\": \"what does a person showing slide of an a projector?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"who is showing a selecton in a table top projector a seleton is kept behing the lady?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is a lady showing a selecton in a table top projector is kept behing the lady?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"seleton\"\n  },\n  {\n    \"question\": \"who is reviewing a skeleton on an overhead projector?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts a picture of bones on an overhead projector for others to see?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who slides of the skeleton an a projector?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gives a presentation on human musculature?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is putting a skeleton slide on a projector?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is teaching some science?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"professor\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a professor doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"sketch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is the women doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a lady showing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what is a professor teaching?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what is person matching?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is woman drawing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"diagram\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is the women explaining about?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is a woman sketching on?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"projector\"\n  },\n  {\n    \"question\": \"who is matching paper?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing some science project?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is someone putting a skeleton slide on?\",\n    \"video_name\": \"video7829\",\n    \"answer\": \"projector\"\n  },\n  {\n    \"question\": \"what is a boy sitting in with a red shirt on?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is relaxing?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man posing for?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who is sitting in a chair with a red shirt on?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a handsome teen pose for?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who poses for the camera?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"handsome\"\n  },\n  {\n    \"question\": \"who is posing for photos?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"how many boys are best of friends?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is posing for a picture?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who put together a photo montage of a male celebrity?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a teen boy doing?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is photo montage of a man doing?\",\n    \"video_name\": \"video7830\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does an anime cartoon character speak to?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what are a group of cartoons having?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is abusing a young man?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who did excited anime girl and angry anime?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a young girl abusing?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what speak with subtitles?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a girl steps on a man s?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what does a cartoon woman stomping on a cartoon man s?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what do cartoon characters express distaste for a unappetizing plate of food in?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what are two characters doing?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is nami doing?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"force\"\n  },\n  {\n    \"question\": \"what are characterts in an animated television having?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"abuse\"\n  },\n  {\n    \"question\": \"what is a bizarre cartoon with huge eyes doing?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many characters are interacting in a cartoon show?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who express distaste for a unappetizing plate of food in a house?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon woman doing?\",\n    \"video_name\": \"video7831\",\n    \"answer\": \"stomp\"\n  },\n  {\n    \"question\": \"who is on the train?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting in the train?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is relaxing in the train?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is trying to tempting boy?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who rides along on a subway?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people riding on?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"subway\"\n  },\n  {\n    \"question\": \"what is a girl relaxing in?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a woman sitting in?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a man on?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who is a girl trying to?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is mimicing a man on the train?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is man and woman doing?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"mimic\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who mimics a man on the subway?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman mimicing on the train?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man looking at on the subway train?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting across from a pretty woman?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman mimicing a man on?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who is looking at a woman on the subway train?\",\n    \"video_name\": \"video7832\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in a room?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"what does a man give?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"who gives a presentation?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about business?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a brown blazer holding?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"coffee\"\n  },\n  {\n    \"question\": \"who talks about business?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about people cheating?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about honesty?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man telling about business?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man telling the camera about?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"what does a man hold while talking about business?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"coffee\"\n  },\n  {\n    \"question\": \"who holds a coffee cup while talking about business?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing cheating?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is telling the camera about business?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man holds a coffee cup while doing?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a brown blazer doing?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7833\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is person in blue shirt presenting from the world?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what is person in blue shirt presenting some information from?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what did a person explaining a concept in a broadcast the person speak in the news channel?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is man in blue shirt giving information about?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"tax\"\n  },\n  {\n    \"question\": \"who is speaking about low paying administrative jobs?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a person explaining a concept in a broadcast the recent news speak in the news channel?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking in the television show?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with blue color dress?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a news segmant on support services jobs doing?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"grow\"\n  },\n  {\n    \"question\": \"who explains the benefits of a low tax low regulation state?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is with dark and side-parted hair speaks while doing?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a reporter in a blue shirt and yellow tie doing?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man on bloomberg doing?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is guy in blue shirt and tie doing?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person in blue shirt doing?\",\n    \"video_name\": \"video7834\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"who walk off into the horizon?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what do cartoon characters go off into while a newscast takes over afterward?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"distance\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what takes over afterward?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"newscast\"\n  },\n  {\n    \"question\": \"what is about a cartoon film?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what are spongebob and patrick walking down?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are two animated characters walking on?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do spongebob and patrick walk together on?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"who walk together on the sidewalk?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who laugh as they go off into the distance while a newscast takes over afterward?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are walking down a street?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what are two characters in a cartoon walking down?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who has plankton started selling at the chum bucket?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"krabby\"\n  },\n  {\n    \"question\": \"what are two characters in a cartoon doing?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is two cartoon characters doing?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two animated characters doing?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are spongebob and patrick doing?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is sponge bob cartoon doing?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who go off into the distance while a newscast takes over afterward?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is plankton has started doing?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"sell\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a spongebob cartoon with an ad for the chum bucket doing?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"sell\"\n  },\n  {\n    \"question\": \"what a spongebob cartoon with an ad for the chum bucket selling?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"krabby\"\n  },\n  {\n    \"question\": \"what has started selling krabby paddies at the chum bucket?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"plankton\"\n  },\n  {\n    \"question\": \"how many animated characters are walking on the road?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is country guy doing?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do spongebob and patrick walk off into?\",\n    \"video_name\": \"video7835\",\n    \"answer\": \"horizon\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman in a hat doing?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is dancing in front of the camera?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who explains about the dance?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who gives a presentation?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a lady explain about?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does woman give?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl with a hat on and doing?\",\n    \"video_name\": \"video7836\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"how many persons are walking in the plant area?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a short video captures a person in doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a hiker walks down a stairway in the forest towards two companions in the background doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"rush\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is an outdoor path with trees doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is 1st person view of doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is walking down the steps of a forest trail filming two women with walking sticks one of whom is carrying a video camera?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"who walks down a stairway in the forest towards two companions in the background rushing water can be heard?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"hiker\"\n  },\n  {\n    \"question\": \"how many women is someone walking down the steps of a forest trail filming with walking sticks one of whom is carrying a video camera?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who view of walking down stairs in an outdoor setting?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who walks down a staircase surrounded by greenery and other foliage?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who climbs down some stairs towards two other people in an outdoor area with many trees and plants?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do an outdoor path with trees lining the area and a guide with a stick leading?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"who steps there is a waterfall sound in the background?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking and hiking on a trail?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking along a path in a forest surrounded by green leaves and trees towards another person?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what captures a person in moving?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a woman talking and hiking on?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"trail\"\n  },\n  {\n    \"question\": \"what do a man wearing a jacket and red scarf looking at?\",\n    \"video_name\": \"video7837\",\n    \"answer\": \"downhill\"\n  },\n  {\n    \"question\": \"what is a man yelling and doing?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is yelling?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is young man doing?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what is a person talking on?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking in a hoodie?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an image of an eyeball in a green can of liquid appear on?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"right\"\n  },\n  {\n    \"question\": \"who is telling the audience five things?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks over loud dubstep?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking on camera?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy talking over at the end of a youtube video?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is talking over loud music at the end of a youtube video?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who says farewell with dubstep music blasting?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man speak over?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"dubstep\"\n  },\n  {\n    \"question\": \"who is talking to the camera?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"hoodie\"\n  },\n  {\n    \"question\": \"what is a man talking to?\",\n    \"video_name\": \"video7838\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what football and basketball clips being shown with in the background?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does football and basketball sport?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what are in the back?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what does a basketball player make?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"what shows football highlights while rap songs are in the back?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what sports vine clips?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who makes a dunk?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does the video show highlights while rap songs are in the back?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are rap songs in?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"what football and basketball clips being shown with rap music in?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is football players doing?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who celebrated?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what is various sports videos of athletes doing?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is various scenes from doing?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what clips being shown with rap music in the background?\",\n    \"video_name\": \"video7839\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are a couples doing?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"who breaks up with boy at a school dance?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is a girl singing with a band?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when does a woman sing?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing while young people dance?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl singing on stage with?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who does a boy want to dance with?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girls walk away from a boy upset at?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who wants to dance with a girl?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who show with dancing and singing?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"teen\"\n  },\n  {\n    \"question\": \"who asks a girl to dance?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are a couples enjoying?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"who does a girls walk away from upset at a dance?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does teens dance to a 60 s?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"style\"\n  },\n  {\n    \"question\": \"who sings on stage while others dance?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when does a girl sing while others dance?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what has an argument at a dance?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who chase each other on the dance floor?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing on stage with a band?\",\n    \"video_name\": \"video7840\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is shown with two people flying in the air?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is charging in the air to his destination?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man fly through in a cartoon?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"where is an animated man charging in the air?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"destination\"\n  },\n  {\n    \"question\": \"what does a man fly through the air in?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is flyings through the sky?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is an animated man charging in to his destination?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a cartoon character flyings through?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"how many people flying does a cartoon show?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who flew through the air?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"super\"\n  },\n  {\n    \"question\": \"what is shown of two characters racing in the skies?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated man charging in the air to?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"destination\"\n  },\n  {\n    \"question\": \"what are cartoon superheroes flying through?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what did the super heroes fly through?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is flying in a cartoon?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the anime characters fly through?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what shows two people flying?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a man flying in?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are fighting?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are flying through the air?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who fly through the air?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"who flies through the air in a cartoon?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flying across namek to get to the dragon?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"goku\"\n  },\n  {\n    \"question\": \"what is a cartoon is shown of two characters doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a cartoon shows two people doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is an animated character is shown doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"charge\"\n  },\n  {\n    \"question\": \"what is an animation is shown with two people doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is anime characters doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is dragon ball z doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is goku from dragon ball z doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are cartoon superheroes doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is goku doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is some men doing?\",\n    \"video_name\": \"video7841\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is female singer doing?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman wearing a black glove singing into?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who stands close to a microphone while intimately singing?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing at a live concert?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman stand close to while intimately singing?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who had a beautiful voice?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"sade\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman singing?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what did sade have?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7842\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is in a classroom playing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is discussing instruction?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what are a group of people gathered in?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what is a teacher discussing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"instruction\"\n  },\n  {\n    \"question\": \"what is a teacher doing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a teacher doing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is kids in a classroom doing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is teacher doing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are teachers doing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who discusses how children and two women can help children in a classroom?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a class of children and two women doing?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is teaching a classroom of children?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who talks about how to help children in a classroom?\",\n    \"video_name\": \"video7843\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a guy asking about a dodge the guy does not look happy?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"charger\"\n  },\n  {\n    \"question\": \"who is asking about a dodge charger the guy does not look happy?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a curly haired man doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is 3 men outside doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is bbc doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a group of auto race and review experts doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what do three persons discuss about?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is three people doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a man in blue shirt doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a blue shirt man doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three persons doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is a guy asking about a dodge charger does not look happy?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"how many people stand near red sedans?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many people stand nearby?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a blue shirt man talking with another person with?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do the three hosts of top gear stand on?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is a blue shirt man talking with with car?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many persons discuss about the car?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many people talk about there?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are looking at a blue body of water?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are standing by a red car?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do 3 men outside looking at an orange camaro discussing?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"carbon\"\n  },\n  {\n    \"question\": \"how many persons are standing near the two red color car?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many people are discussing something about the red car?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is talking to some people near cars?\",\n    \"video_name\": \"video7844\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a girl and a knife doing?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a step by step recipe in progress where we see a person doing?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a chef works on a recipe by doing?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"drain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a knife doing?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the person chop the green vegetables on the doing?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman cuts up leafy greens while then doing?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"drain\"\n  },\n  {\n    \"question\": \"what is a cooking video doing?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what does a woman say strain two sixteen ounce cans of white kidney beans in?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is cutting with a knife?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman explain to cut the greens then set aside?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"kidney\"\n  },\n  {\n    \"question\": \"what is being chopped in a kitchen?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"lettuce\"\n  },\n  {\n    \"question\": \"what is lettuce being chopped in?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is someone draining?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"kidney\"\n  },\n  {\n    \"question\": \"what is a person cutting with?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what are being drained?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"kidney\"\n  },\n  {\n    \"question\": \"what are set aside?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"kidney\"\n  },\n  {\n    \"question\": \"who is cutting a green leafy vegetable?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a women making using spinach leaves?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a woman cut up while then draining kidney beans?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"leafy\"\n  },\n  {\n    \"question\": \"who is using a utensil to stir some salad ingredients around in a bowl?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is giving instructions on how to prepare a dish?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who works on a recipe by chopping greens?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who chop the green vegetables on the cutting board?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who works on a recipe by draining beans?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who cuts up leafy greens while then draining kidney beans?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting the green leaves for cooking?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are someone chops a bunch of leaves and beans taken in?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who says strain two sixteen ounce cans of white kidney beans in a kitchen?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a chef work on by chopping greens?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what does a chef work on by draining beans?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who explains to cut the greens then drain white beans?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explains to cut the greens then set white kidney beans aside?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is cut as kidney beans are set aside?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"lettuce\"\n  },\n  {\n    \"question\": \"who is draining white kidney beans?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone using to stir some salad ingredients around in a bowl?\",\n    \"video_name\": \"video7845\",\n    \"answer\": \"utensil\"\n  },\n  {\n    \"question\": \"who is boxing an object?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man punching?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"punching\"\n  },\n  {\n    \"question\": \"what does the boxer punch?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"what does a boxer punch?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"who does a boxer punch?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"punching\"\n  },\n  {\n    \"question\": \"who is hardly hitting the kit?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man punch?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"punching\"\n  },\n  {\n    \"question\": \"what is a man boxing?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what is professional fighters doing?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is man is hardly doing?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is man hardly hitting?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"kit\"\n  },\n  {\n    \"question\": \"when do a persons punch is shown here?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is a animation records a man doing?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"who punches a bag?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"who punches the bag?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"who is hitting a punching a punching bag?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man punch in slow motion while being timed?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"training\"\n  },\n  {\n    \"question\": \"who punches a punching bag in slow motion?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hitting a bunching bag in slow motion?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who punches a training bag in slow motion while being timed?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man punch a training bag in while being timed?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"who does a man punch in slow motion?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"punching\"\n  },\n  {\n    \"question\": \"what does a man punch a punching bag in?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what is a man hitting in slow motion?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"bunching\"\n  },\n  {\n    \"question\": \"what records a man throwing a punch?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who punches the punching bag?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"who punches a punching bag?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man hitting a bunching bag in?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"who is punching a punching bag?\",\n    \"video_name\": \"video7846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man is in the kitchen doing?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what does an animated man introduce?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is an animated chef in?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is in the kitchen?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a man standing in?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is standing in the kitchen?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to the camera?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is about to take cooking?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"what is an animated character taking about?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a man standing in talking?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is taking about a recipe?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does an animated man speak to?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is standing in a kitchen talking?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who introduces his cooking show?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in a kitchen?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in the kitchen explaining how to make his mother s special recipe for meatloaf?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in explaining how to make his mother s special recipe for meatloaf?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what shows how to create meat loaf?\",\n    \"video_name\": \"video7847\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what do two girls giving pose to on the center of the road?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are two small girls standing in?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two teenaged models doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is two asian girls stand in the middle of the road one girl doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are the camera pans around two girls that doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is two interestingly dressed foreign woman doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is two girls with some new designed dress doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two small girls doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a woman in black doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a man in black doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there are two girls doing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do two girls with some new designed dress standing on with bags?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"how many girls giving pose to the camera on the center of the road?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women stand in the center of a street?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many small girls are standing in the road?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who do two asian girls stand in the middle of the road is wearing a white dress?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many sisters present themselves in modern street fashion in the middle of a busy street?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are standing in the middle of the road wearing conspicuous clothing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many asian girls stand in the middle of the road the other is wearing a black shirt?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many asian girls stand in the middle of the road one girl is wearing a white dress?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many teenaged models are standing in the middle of the road?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two asian girls stand in the middle of the road one girl is wearing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what are two girls standing in the middle of the road wearing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what do two asian girls stand in the middle of the road the other is wearing?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what pans around two girls that are standing still?\",\n    \"video_name\": \"video7848\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is red haired woman doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a red haired woman in a room doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a redheaded woman doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a woman in a cream colored blouse doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a girl in white dress doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman with red hair talks while doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman talks while doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a pretty red headed woman doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman with red hair doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman with a beige shirt doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a robe doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman with a robe holding in a room?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what is red haired woman talking about in the kitchen?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a red haired woman in a room holding?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what is a woman with a robe holding a parrot in?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is teaching on how to properly care for pets?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is red haired woman talking about some food in?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in a cream colored blouse holding?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"who is talking about some food in the kitchen?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a girl in white dress wearing color cloth holding a green color parrot inside speaking displaying on screen?\",\n    \"video_name\": \"video7849\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to make a paper airplane?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who folding a piece of paper?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a paper art?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a men making?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who folds paper?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man fold?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what a woman folding a piece of?\",\n    \"video_name\": \"video7850\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who sings imagine in a recording studio?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do others play?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a woman singing with a beautiful voice?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"who is singing a beautiful song with a beautiful voice?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings imagine into a studio microphone?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"who is singing a song in the studio?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what plays a cover of a john lennon song for a crowd?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a blonde woman in a green jacket standing in front of a microphone is recording?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a blonde woman in a green jacket doing?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is avril lavigne singing in a studio and she s doing?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young singer doing?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing into a microphone at a recording studio?\",\n    \"video_name\": \"video7851\",\n    \"answer\": \"blond\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a video about doing?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an instructional video on doing?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"deconstruct\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who puts a baby carriage together?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman put together?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"carriage\"\n  },\n  {\n    \"question\": \"who is a woman talking apart?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what does a person collapse?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"carriage\"\n  },\n  {\n    \"question\": \"who is putting together a stroller?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is collapsed easily?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is talking a stroller apart?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is folding a baby stroller?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who collapses a baby carriage?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how a stroller folds?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving demo for?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"who is putting together a baby stroller?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who demonstrates how to fold a stroller?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving for baby trolley?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"who is showing how to fold up a stroller?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to fold up a baby stroller?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who demonstrates how to put away a collapsible baby stroller?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing how to remove and collapse parts of a stroller?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman putting together?\",\n    \"video_name\": \"video7852\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with black suit doing?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who interviews a man with a beard and glasses on a news show?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks to a man who works for a large software company?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who talks software and bit coin transactions in a street smart interview with bloomberg news?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"blockchain\"\n  },\n  {\n    \"question\": \"what does a man with a beard and glasses talk about?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who does a company s explains about the offer provided by his firm to a news reporter?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what is brunette woman having with man in the studio?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what s president explains about the offer provided by his firm to a news reporter?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"company\"\n  },\n  {\n    \"question\": \"who is taking the interview of the men like as blooming in the men?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a male wearing a suit and glass speaking about to a news anchor?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"who is having conversation with man in the studio?\",\n    \"video_name\": \"video7853\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"what does a man in a very shiny helmet stand in front of a ski lift and snowy mountain discussing he is hosting?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"symposium\"\n  },\n  {\n    \"question\": \"who is playing a colourful video game very nicely?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in a very shiny helmet stands in front of a ski lift and snowy mountain doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is jeremy jacobson doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man in a hunter green jacket doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person in winter clothes and a ski mask doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a guy stands on a mountain side doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is person is on the mountain filled with snow and preparing for doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is jeremy jaconson a salesman for northlake tahoe resort association doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy in a jacket and helmet doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what does a guy stand on a mountain side wearing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"jacket\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is person in green jacket giving on the snow?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is discussing the ski resorts in the tahoe region?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"jacobson\"\n  },\n  {\n    \"question\": \"who talks outside in the snow at a ski resort?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is explaining about a snow sketing on a mountain?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stands on a mountain side wearing a green jacket?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who discusses the ski resort s perks?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"instructor\"\n  },\n  {\n    \"question\": \"who is on the mountain filled with snow?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining about a snow sketing on?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is person in green jacket giving interview on?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is a guy in a jacket and helmet talking in?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what does the leisure sales manager from the north lake tahoe resort association announce the mountain travel symposium for 2012 in?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"valley\"\n  },\n  {\n    \"question\": \"what does a ski instructor discuss s perks?\",\n    \"video_name\": \"video7854\",\n    \"answer\": \"resort\"\n  },\n  {\n    \"question\": \"who discusses?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a graph doing?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a graph on the screen doing?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a news report about china doing?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"become\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"accord\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is as graphs are shown a news correspondent discusses china imports and exports doing?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what shows china s imports and exports over five years?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"graph\"\n  },\n  {\n    \"question\": \"what do a graph on the screen displaying and image shown of import and export trade balance displaying on?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what shows how china attracts trade barriers?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"graph\"\n  },\n  {\n    \"question\": \"who is narrating a video report on the news?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows the trade balance for china s exports and imports?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"graph\"\n  },\n  {\n    \"question\": \"what does a presenter explain with the help of graphical representations s imports and exports balance?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"china\"\n  },\n  {\n    \"question\": \"who speaks about the china imports and exports trade balance on a news station?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are shown a news correspondent discusses china imports and exports regarding the country becoming the biggest target for trade barriers?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"graph\"\n  },\n  {\n    \"question\": \"who explains with the help of graphical representations china s imports and exports balance?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"presenter\"\n  },\n  {\n    \"question\": \"who are graphs shown discusses china imports and exports regarding the country becoming the biggest target for trade barriers?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"correspondent\"\n  },\n  {\n    \"question\": \"what does a graph show s imports and exports over five years?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"china\"\n  },\n  {\n    \"question\": \"what is a man narrating on the news?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what s imports and exports have grown by almost 4 times?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"china\"\n  },\n  {\n    \"question\": \"what is a man narrating a video report on?\",\n    \"video_name\": \"video7855\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a woman talking loudly to a crowd with big rollers in?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is a woman shouting angrily at?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the woman have large curlers in?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is shouting angrily at another woman?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman in rollers point at?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"how many asian women yell at each other?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are arguing in front of a crowd in a television show?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when are peoples enjoying?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"festival\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is a woman with rollers in her hair doing?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is a woman talking to?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking to a crowd?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are in a television show two women doing?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is crowd of asian people doing?\",\n    \"video_name\": \"video7856\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a clip of an indian lady and an indian young man doing?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who does a man speak to outside?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man on?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is on the computer?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman talking in?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who speaks to another man outside?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and woman talking in?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who does an indian woman speak to in the hallway of the house?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"son\"\n  },\n  {\n    \"question\": \"who is asking a man a question?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does man talk to in a hallway?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does the woman holding the apple talk to?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to older woman in a hallway?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man talk to older woman in?\",\n    \"video_name\": \"video7857\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what does a lady break down?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is presenting a car?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what is a person presenting?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what s engine was very powerful?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does the car s was very powerful?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who breaks down the v8 engine?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who explains the controls for a car?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is describing a car s accessories?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is advertised?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman describing s accessories?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is described?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7858\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what is playing in the screen?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what star wars the clone wars receiving from a professional reviewer?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what star wars receiving a review from a professional reviewer?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"clone\"\n  },\n  {\n    \"question\": \"what is person playing?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is looking for the animals?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is an animation film playing in?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who talks about the cartoon star wars the clone wars?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what did a male speaker grind a animated animals are flying?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"int\"\n  },\n  {\n    \"question\": \"who ground a animated animals are flying int?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who talks about star wars the clone wars?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is star wars cartoon doing?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an animation film doing?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a animated animals doing?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is star wars the clone wars doing?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"who discusses the making of an older star wars film?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what wars the clone wars receiving a review from a professional reviewer?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who battles with another alien in a desert world?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"alien\"\n  },\n  {\n    \"question\": \"who gives a run down a an animated tv show?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"who discusses the behind the scenes extras in an older star wars movie?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what does an entertainment reporter give down a an animated tv show?\",\n    \"video_name\": \"video7859\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a kid plays a video game while doing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is in game footage of someone doing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character jumping around in?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing an online computer game?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who narrates a pixelated video game?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a video game scene going on of?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"what do terraria gameplay?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is the narrator playing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is person playing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a kid play?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a kid play while talking about it?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a player move through in a video game?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"map\"\n  },\n  {\n    \"question\": \"who is talking while he plays a video game?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what did footage of someone playing a game call terraria in?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who plays a video game while talking about it?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who moves through the map in a video game?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"how many characters chase each other in a video game?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is the narrator doing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7860\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person gives an example for how to create shapes by doing?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"construct\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is folding a paper plane?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is folding white paper?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who folds a paper airplane very quickly?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone folding a paper for?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is showing how to fold paper?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what do a person constructing an oragami shape out of?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone for paper craft?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a paper for paper craft?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who gives an example for how to create shapes by folding paper?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a paper airplane?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what folding up a paper plane?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is folding a paper?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what someone folding up?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man fold very quickly?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person?\",\n    \"video_name\": \"video7861\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"when do judges on the voice sing?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many kids are performing in front of a oanel of judges?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who sing a song from grease on tv?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are two kids singing on?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what do two children sing?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"exciting\"\n  },\n  {\n    \"question\": \"who television show?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what are the judges into?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a boy and a girl doing?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"how many children sing an exciting song?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who do judges on the voice watch?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many kids do judges watch sing?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a boy and a girl acting in?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"how many kids are singing on the voice?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when are kids singing song?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are two kids doing?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are kids singing on stage?\",\n    \"video_name\": \"video7862\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a newscaster woman talking about the navy s launching on a high speed vessel?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who is reporting on a news show about a naval ship?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a navy anchorwoman delivering a news story about the navy s launching technology?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"ordinance\"\n  },\n  {\n    \"question\": \"what is a owoman wearing a navy coat talking about a navy vessel will be used?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"tha\"\n  },\n  {\n    \"question\": \"what is a navy anchorwoman delivering a news story about the navy s latest ordinance launching?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who is delivering a news story about the navy s latest ordinance launching technology?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"anchorwoman\"\n  },\n  {\n    \"question\": \"what announcing news about a ship?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what is sailing around on the water?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"who is welcome the audiance?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"reader\"\n  },\n  {\n    \"question\": \"what do a girl sitting picture on displaying?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a female new anchor wearing fatigues reporting about?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who picture on screen displaying?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a women in a military uniform reading?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is the ship moving on creating some waves?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is telling about a special gun on a boat with the picture of some kind of gunnar ship at sea?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what do a news channel announce news about?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is a blue and white graphic starts a news program doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a navy anchorwoman doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what is there is women doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a anchor person doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman in an army uniform doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a owoman doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the ship doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a women in a military uniform doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a female new anchor doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a naval woman doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is telecasting the new program?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what is moving on water creating some waves?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is a ship doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"what do a girl speaking news and paper in hand and still image of ship picture on displaying?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a woman announcer doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a news channel doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"what is a ship sailing around on?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the tv channel telecasting?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what is the news reader?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"audiance\"\n  },\n  {\n    \"question\": \"what is a woman in a blue military uniform talks about the u navy doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is the tv channel doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"telecast\"\n  },\n  {\n    \"question\": \"what is a newscaster woman doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news reader doing?\",\n    \"video_name\": \"video7863\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a cartoon of a little doing?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a animated character doing?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon women doing?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is it s doing?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is a cartoon girl in?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who is hitting a tennisball with a racket?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a animated character playing?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what does a cartoon girl sing about?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who is in the rain?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is playing tennis?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a cartoon woman stand out in?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what are kids singing go away song?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who stands out in the rain?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is standing while a song plays?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do little girl singing rain rain go away to?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are kids singing the rain rain go away?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is a woman hitting with a racket?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"tennisball\"\n  },\n  {\n    \"question\": \"what is a woman hitting a tennisball with?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"racket\"\n  },\n  {\n    \"question\": \"who sings about rain?\",\n    \"video_name\": \"video7864\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person sitting on?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"who is sitting on the desk?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is sitting near the snow mountain?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is sitting down on some steps?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who steps outside in the snow talking?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits on the wooden bench?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt and khakis doing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man on a mountain slope doing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is seated outside with a mountain in the background gives advice about doing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the man in blue t-shirt doing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt talks while doing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a blue tshirt man doing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man blue tshirt doing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is giving an introduction for a video presumably about skiing?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits on the metal ledge outside in the snow?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tells his experience about the snow skate?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man sitting on step outside in talking?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"who discusses how there found the sport?\",\n    \"video_name\": \"video7865\",\n    \"answer\": \"snowboarder\"\n  },\n  {\n    \"question\": \"what has a computer system?\",\n    \"video_name\": \"video7866\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is lowering itself?\",\n    \"video_name\": \"video7866\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what s details are shown?\",\n    \"video_name\": \"video7866\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a black car have?\",\n    \"video_name\": \"video7866\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is of a black audi a4?\",\n    \"video_name\": \"video7866\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is shown in detail on the inside and outside?\",\n    \"video_name\": \"video7866\",\n    \"answer\": \"audi\"\n  },\n  {\n    \"question\": \"what does an advertisement for an audi with?\",\n    \"video_name\": \"video7866\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what is an audi car shown in on the inside and outside?\",\n    \"video_name\": \"video7866\",\n    \"answer\": \"detail\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video7866\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video7866\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7866\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"who sings on a television show?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who sings a megan trainor song on the voice kids television show?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is a girl performing for judges?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is on stage performing for judges?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is auditioning for a music show?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings on the voice?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"who is performing in front of a group of judges?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does an asian brunette sing on?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who performs live on stage?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a girl singing in?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"competation\"\n  },\n  {\n    \"question\": \"who is singing in the competation?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl singing?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when does voice kids girl perform live?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a girl is on stage doing?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7867\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who drives a red sports car around a race track?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is racing on a race track at high speeds?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"ferrarus\"\n  },\n  {\n    \"question\": \"what did a red ferrari races down at high speed and a man talks?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who describes the test drive of a very fast red sports car?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is running the race track?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a red fast car doing?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a red ferrari doing?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is this is an episode of top gear and jeremy clarkson doing?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a red sportscar with recessed lit headlights and narrow rear lights turns by a wall made of upright gray poles doing?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is a red sedan doing?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is there is a stylish red car doing?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a car running faster on?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is commentating?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"clarkson\"\n  },\n  {\n    \"question\": \"what is a red car running?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what takes sharp turns and moves fast?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is running faster on the road?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"when does taking turn?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is driven fast on the streets?\",\n    \"video_name\": \"video7868\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is french man doing?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is hands carefully adjust a selfie stick that doing?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who handle?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with a first person view doing?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who demonstrates?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy talks while doing?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what does man show stick with a phone attached to it?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"what does a man use to get a better view on a selfie stick for the camera?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a person holding?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"who manipulates?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man adjust with a green?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"who is holding a selfie stick?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is reviewing a selfie stick in a foreign language or with a heavy accent?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what stand fixed with mobile phone camera to give the selfi more angle?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is adjusting a phone situated on a selfie stick?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks while holding a selfie stick in front of him?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man use his hand to get on a selfie stick for the camera?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"who adjusts a metal object with a green?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who uses his hand to get a better view on a selfie stick for the camera?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the use of a selfie stick?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing his mobile by attaching a selfie stick for the camera to the selfie tick?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows a selfie stick witha cellphone attached to it over a white background?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is having a selfie stick in his hand?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows a selfie stick with a phone attached to it?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to use a selfie stick?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man show stick witha cellphone attached to it over a white background?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"who is explaining the properties of a selfie stick for the camera?\",\n    \"video_name\": \"video7869\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person in blue shirt doing?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man in a blue shirt doing?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is women in casual wear doing?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women in tshirt and jeans doing?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the women in this video doing?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does a beautiful car stay on?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what stays on the road?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who stands next to a volkswagon vento?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do the woman wearing the blue jeans stand near?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about the new volkswagen polo car?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about the different features on a car?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about the modern features of a newly released car?\",\n    \"video_name\": \"video7870\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a computer game?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do people play?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a guy playing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"horror\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does the character have?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"crowbar\"\n  },\n  {\n    \"question\": \"what do two people play together?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a horror game?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who has a crowbar?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"how many people play a video game together?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what play of guy playing zombie game?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what plays a first person video game?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"streamer\"\n  },\n  {\n    \"question\": \"what is a man playing a video game in which he controls a character that holding?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"crowbar\"\n  },\n  {\n    \"question\": \"who is on his webcam while while playing a video game?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs around a maze with a crobar looking for his enemy?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is traveling through a vent holding a crowbar in a video game?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a man on while while playing a video game?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"webcam\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man is on his webcam while while doing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person runs around a maze with a crobar doing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is game play of guy doing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a character doing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video7871\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"who is wearing safety helmet on the street?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did not come to a stop as the child exited the bus?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"when is the school bus waiting for the children on the road?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what crosses the bus with an average speed?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what illegally passes a school bus that is stopped with its lights flashing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what did a brown van not come to as the child exited the bus?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"stop\"\n  },\n  {\n    \"question\": \"what passes by a stopped school bus in a city street?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what is a brown van turns right and illegally passes a school bus that is stopped with its lights doing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what is a yellow coloured school bus doing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are there is a road and some vehicles doing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is on the road the school bus doing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is a school bus doing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is an exploration of something about the bus doing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a police officer doing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is stopped with red lights flashing as a van keeps driving?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what keeps driving?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what passes by?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what turns right?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what does the kid get down to?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is a school bus standing on?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is driven carefully on the street?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what is standing on the road?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what is a big car running on?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a yellow school bus doing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"stop\"\n  },\n  {\n    \"question\": \"who exited the bus?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is the brown van driven carefully on?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a brown van pull around?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"corner\"\n  },\n  {\n    \"question\": \"who gets down to home?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what pulls around the corner?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what is person wearing on the street?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"safety\"\n  },\n  {\n    \"question\": \"what drives past a yellow school bus?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what waits for the students to drop off?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"where does the kid get down?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is person wearing safety helmet on?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is running on the road?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a school bus is stopped with red lights doing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what is a police officer in black doing?\",\n    \"video_name\": \"video7872\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about basketball?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"who is talking in the stadium?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is talking with a ball?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"tshirt\"\n  },\n  {\n    \"question\": \"what is the basketball player holding in his hand?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do a ash dress wearing standing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is man in red shorts showing his skills in?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is a cartoon basketball player moving across?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is holding the ball in his hand?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do a ash dress speaking a ball in hand displaying on screen?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what dress color boy cloth wearing standing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"ash\"\n  },\n  {\n    \"question\": \"who is standing in a basketball gyn on the court with a basketball in hand speaking to the camera?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy hold while standing on a basketball court talking?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do a boy in ash color dress wearing in hand speaking discusing inside stadium displaying on screen?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do a boy in ash color dress wearing cloth basketball in speaking discusing inside stadium displaying on screen?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what dress color boy cloth speaking a ball in hand displaying on screen?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"ash\"\n  },\n  {\n    \"question\": \"who is talking about professional nba star kevin durant?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who holds a basketball while standing on a basketball court talking?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who talks about professional basketball?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"trainer\"\n  },\n  {\n    \"question\": \"what is a tshirt man talking with?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a tshirt man doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the basketball player doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a basket ball person explains about the game doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man with a basketball in a gym doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the coach roc doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a volley ball player doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy holds a basketball while doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is man in red shorts doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man is in the gym and he doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a ash dress color boy cloth doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is playing basketball?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy in ash color dress doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a basketball player doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man talking with?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is man in?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what is man playing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a trainer talk about?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is the coach roc talking about?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is showing his skills?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with ball?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the basketball player talking in?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"who is in the gym?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the basketball player holding the ball in?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is two players in black and blue uniforms are ready to play doing?\",\n    \"video_name\": \"video7873\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what match between two men with an advertisement for rolex?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are two different games shown of men are playing professional tennis on in front of a crowd of spectators?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"clay\"\n  },\n  {\n    \"question\": \"what are two different games shown of men are playing on clay courts in front of a crowd of spectators?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"who does a tennis piont end with s signature shot?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who ends with one player s signature shot?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many different games are shown of men are playing professional tennis on clay courts in front of a crowd of spectators?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men play in a tennis match?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men playing on a court one of which makes a signature shot?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are two men playing tennis on one of which makes a signature shot?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"how many men play tennis on a court against each other?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are some people playing outside on a court?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many people are playing tennis?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a tennis piont end with one player s?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"signature\"\n  },\n  {\n    \"question\": \"what are players playing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many men compete in a game of tennis by volleying balls across a net on a court?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two people volleying back and forth?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are two people playing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what is being played between two men?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many people are volleying the ball back and forth?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men participate?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man in white playing against a man in blue?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are some people playing outside?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what highlights a player in white tshirt wins the set?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many men are playing tennis on a court one of which makes a signature shot?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man in white doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a couple of men doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two different games are shown of men doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is different people doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two men compete in a game of tennis by doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"volley\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7874\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what clinton talking then cutting to scenes of riots?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"hillary\"\n  },\n  {\n    \"question\": \"what are getting ready to control riot?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"commando\"\n  },\n  {\n    \"question\": \"what report at rioting in missouri?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what anchor reporting a story about a hilary clinton?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is giving a speech?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what is several doing?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what are rioters in?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a news report at doing?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"riot\"\n  },\n  {\n    \"question\": \"what is clip doing?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is hillary clinton doing?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are police in riot gear doing?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who narrates while scenes of riots and demonstrations are shown?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"what is hilary clinton giving?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what are police doing?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"block\"\n  },\n  {\n    \"question\": \"who calls for a broad rethink of the criminal justice system?\",\n    \"video_name\": \"video7875\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who braids a small part of a young girls hair?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do some one make up?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is interlacing the hair of a girl with large specs?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"comb\"\n  },\n  {\n    \"question\": \"what is a girl in black framed glasses doing?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"interlace\"\n  },\n  {\n    \"question\": \"what is a girl with a round face doing?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in blue coat doing?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"braid\"\n  },\n  {\n    \"question\": \"who wears a specs?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman with glasses having braided on the street?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who was hair dressed by?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was dressed by a man?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does a girl wear?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"spec\"\n  },\n  {\n    \"question\": \"what is a man in a salon doing threading for a lady with speactacles?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is braiding the hair of a girl on a city street?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did man in blue coat braid hair of with glasses?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did man in blue coat braid with glasses?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does a girl with super dorky glasses get braided?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does a girl with long hair and glasses get braid put in on?\",\n    \"video_name\": \"video7876\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what sing about colors to children?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"who s song?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a children s video shows doing?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are animated buckets of paint doing?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do pails of paint dance to?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are buckets of paint doing?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is seven doing?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what were very colorful?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is color paint cans doing?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the rhymes for children?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what does an animated kid s?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what dance to music?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what paint cans singing?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what paint cans dancing?\",\n    \"video_name\": \"video7877\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who is a man a suit possibly a politician being interviewed by?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is standing on a stage talking to other people?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man talking to about his belief about life exhisting elsewhere in the universe?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"when is a man standing talking to other people?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is talking to a reporter about his belief about life exhisting elsewhere in the universe?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man a suit being interviewed by a reporter?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"politician\"\n  },\n  {\n    \"question\": \"what do a old man in black coat color dress wearing standing with other man beside speaking displaying on screen?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who discusses future plans to execute through congress as well as secondary ones?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who discusses future plans to execute through congress?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who is talking with black color coat in the mike?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a suit possibly a politician being interviewed by a reporter?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a old man in black coat color dress wearing cloth standing with beside speaking displaying on screen?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a old man in black coat color dress doing?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man with a mustache doing?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man possibly a politician being interviewed by a reporter?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7878\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman engaging in with many other men?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"swordfight\"\n  },\n  {\n    \"question\": \"what battle scene featuring a woman warrior?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is fighting in a war?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a female kicking?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"butt\"\n  },\n  {\n    \"question\": \"what are fighting scenes shown from?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a woman fighting in?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what is a big war with swords doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is kicking some butt?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who is fending off several people in a sword fight?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"fend\"\n  },\n  {\n    \"question\": \"what is a scene from a movie of doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a sword battle doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"occur\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"engage\"\n  },\n  {\n    \"question\": \"what is battleground with people doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is movie battle scene doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is being filmed?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is engaging in swordfight with many other men?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is occurring?\",\n    \"video_name\": \"video7879\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is bowls doing?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is carrot celery and garlic are cutted into pieces for doing?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is the vegetables are ready for doing?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is this a video on doing?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are garlic shown cut up in?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what are carrots and celery being shown in?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what are shown cut up in bowls?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what is being shown with music playing in the background?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what are cut into pieces?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"what are chopped ingredients shown in?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what are being shown in bowls?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"celery\"\n  },\n  {\n    \"question\": \"who is showing how to cook?\",\n    \"video_name\": \"video7880\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks toward another person in a cave?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks through a cave to another young lady?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"scavenge\"\n  },\n  {\n    \"question\": \"what are cheer leaders doing?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"entertain\"\n  },\n  {\n    \"question\": \"who is walking through a cave like structure?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is scavenging a cave to help a girl?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does girl in a underground cave find?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who are entertaining audience?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a girl moving in?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does witch explore finds person?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"what does witch explore?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman scavenging to help a girl?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"who is moving in dark room?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is walking through a cave?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does witch explore cave finds?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman walking through a cave like?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"structure\"\n  },\n  {\n    \"question\": \"what is a woman walking through like structure?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"what is a woman in black going into?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"what does a fantastical character ventures through a cave and find?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are cheer leaders?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a person walking through?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"who explores cave finds person?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"witch\"\n  },\n  {\n    \"question\": \"what does a demonically dressed person walk through?\",\n    \"video_name\": \"video7881\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who discusses parts of an engine?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man show the inside of?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"motor\"\n  },\n  {\n    \"question\": \"what does a man show part of?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man work on?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"motor\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who works on a motor?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss parts of?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is showing how to repair something?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows part of an engine?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstarting hot wto install parts on a machine?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man filming the mechanics of?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"who shows the inside of a motor?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing the placement of in the engine compartment of a vehicle?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"bracket\"\n  },\n  {\n    \"question\": \"what is a man demonstarting install parts on a machine?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"wto\"\n  },\n  {\n    \"question\": \"who is discussing the parts in an engine compartment?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filming the mechanics of a product?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to repair something on a car?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating how the inside of a slot is not moving?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing the placement of a bracket in the engine compartment of a vehicle?\",\n    \"video_name\": \"video7882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing the history of war in america?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting on the chair with blue shirt?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a lecture about the history of world war 1?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about american protection league in?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who talks about american protection league in demonstrative video?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who reads a quote about a war and discusses slacker raids?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about america he is wearing glasses?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who wear hosting a tv show?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man sitting on the chair with?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what does a man in glasses sit at on which there is a computer?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting on with blue shirt?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in glasses and a blue shirt doing?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a white guy doing?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the man in blue shirt with spectacles doing?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy in a light blue shirt with glasses doing?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is guy in normal wear doing?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is john green doing?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is the man in blue shirt with spectacles talking?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is john green talking about american dissenters to?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what is talking about american dissenters to war?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what do guy in normal wear hosting?\",\n    \"video_name\": \"video7883\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are sitting?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is man in black suit meeting people in?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what are a group of people sitting in to silent a speech?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what dep on a stage speaking to a class room in a clip from the movie transcendence?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"johnny\"\n  },\n  {\n    \"question\": \"who are group of people listening?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"where are a group of people sitting to silent a speech?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what does a man in suit also give to an intently listening audience?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"what is hearing the man wearing blazer and tie?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what do the public program run the ground at the same time one murder in?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"what is a man with dark hair speaking into?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who shoots a person wearing glasses and people run away?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what entailing a professor and school setting in a crowded hallway?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"preview\"\n  },\n  {\n    \"question\": \"who is a sman speaking to an audience drops onto the floor in public?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking to an audience a man drops onto the floor in public?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"sman\"\n  },\n  {\n    \"question\": \"what run the ground at the same time one murder in the hall?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what does a man with glasses talks to a group of people then walk in when he is shot?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who is talking to some people?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with spectacles doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with dark hair doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is the sound of a gunshot occurs in a white lobby doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"cause\"\n  },\n  {\n    \"question\": \"what were so many persons doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a sman doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in suit walks down a hallway and also gives a lecture to an intently doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is trailer with fast doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is group of people are in the office and doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man in black suit doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what is a man shoots a person doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a movie preview doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"entail\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is walking around?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are group of people in?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what are listening the singer?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are in the office?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what does a man in suit walk down?\",\n    \"video_name\": \"video7884\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who is frying some dough?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is frying food?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cooks?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who frying in a pan?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what is a person frying?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is a woman frying?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking fried items?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying donuts?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman frying food on?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is a woman frying on the stove?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who cooks some food in a boiler?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking an egg?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing recipe?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying food on the stove?\",\n    \"video_name\": \"video7885\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone slicing a potato carefully with knife on the desk in?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a person slicing potato on in to pieces?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is someone slicing carefully with knife on the desk in a kitchen?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a person slicing on a table in to pieces?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a man in a black hat slice very thinly with a knife on a wooden surface as he speaks in spanish?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is slicing a potato very thinly?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person slicing a potato very thinly on?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"counter\"\n  },\n  {\n    \"question\": \"what is a person slicing very thinly on a counter?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man slicing very thinly?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is some one slicing in pieces on a table with the help of knife?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is some yellow cheese being sliced with?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is person slicing on teen slices?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is slicing a potato very thinly on a counter?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man careful slice into very thin slices?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"potatoe\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is slicing potato on a table in to pieces?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does person slicing a potato with a into thing potato slice with?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a man slicing slowly on a dark wooden cutting board?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a guy slicing the potato into very small slice using?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is slicing a potato carefully with knife on the desk in a kitchen?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing potatoes in very thin slices?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who slices a potatoe into very thin slices?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"careful\"\n  },\n  {\n    \"question\": \"who is slicing the potato on teen slices?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing a potato slowly on a dark wooden cutting board?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a demonstration of himself slicing a potato into thin round chips?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating how to slice a potato thinly using a knife and a cutting board?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being sliced into equal pieces with a sharp knife?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is slicing the teen potato on teen slices?\",\n    \"video_name\": \"video7886\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many persons are enjoying in the snow mountains by taking photos?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who interviews a photographer that specializes in snow photography?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what talks into a microphone?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"jacket\"\n  },\n  {\n    \"question\": \"what is couple of people doing?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is being interviewed about strange requests for a photo?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"photographer\"\n  },\n  {\n    \"question\": \"what is there is a man in green doing?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the two persons doing?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is two boys one with green and other with blue doing?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a photographer and an interviewer doing?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man in blue dress doing?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does jacket talk into?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who is playing with snow?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what will famous photographer in the snow?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what does two boys one with green and other with blue posing for the picture and other take?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"who did a man asking questions to another man in snow cover?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"hils\"\n  },\n  {\n    \"question\": \"what looks at a man in a green ski jacket and black knitted cap?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"jacket\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7887\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a lady in a very exciting manner doing?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman with straight shoulder-length red hair doing?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a women in black top doing?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is pretty girl in black top doing?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who discusses parrots and some information about how one women talks about quaker live?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who gave a summary of quaker parrot natural instincts?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does an attractive woman with red hair enthusiastically discuss?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"quaker\"\n  },\n  {\n    \"question\": \"who top talking to camera using hand gestures?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is explaining about the quaker parrots and about their nests?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a lady in a black tee talk?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"mason\"\n  },\n  {\n    \"question\": \"what do girl in black top talking to camera using?\",\n    \"video_name\": \"video7888\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is mixing something in a bowl?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is mixing food ingredients?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person mixing ingredients in?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man mixing ingredients in?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person mixing something in?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what mixing stuff in a bowl?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"who stirs the food?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do somebody mix stuff in?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what do somebody mix in a bowl?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the man stir?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person mixing?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does someone make?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who makes food?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is the person making?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is making a dish?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person stirring a bowl of?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a person mix up in a measuring cup?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is somebody doing?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who mixes some food up in a measuring cup?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is stirring a bowl of food?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is mixing ingredients in a bowl?\",\n    \"video_name\": \"video7889\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the big growth in the cities?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the growth of the population in big cities of the country noted in?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about which cities have the most population growth?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who talks about growth in big cities on a tv news show?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a bloomberg analyst doing?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man in blue shirt and yellow tie doing?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person in blue color cloth doing?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a boy in blue dress color doing?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about growth made in big cities?\",\n    \"video_name\": \"video7890\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tries to win people in the ship?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"what is phillips trailer the pirates take the ship and barkhad abdi riding on?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what captain being hijacked while phillips trailer the pirates take the ship and barkhad abdi is riding on a boat?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what are two men having with man with weapon?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"trouble\"\n  },\n  {\n    \"question\": \"who is looking?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with another person?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a guy with a beard and glasses being held?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"hostage\"\n  },\n  {\n    \"question\": \"who pirates going on to a travel vessel and taking it over?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"somali\"\n  },\n  {\n    \"question\": \"who threatens people on a ship with a big gun?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is supposed that the man traveling is got hijacked by the other peoples?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who does one of pirates of sea say look at me i am now a clip from captain phillips pirates are taking over a ship?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"how many men are having trouble with man with weapon?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what advertisement of a movie about somali pirates taking over?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what does one of pirates of sea say look at me i am the captain now a clip from captain phillips pirates are taking over?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"who is a man talking with?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is clip from a movie about somali pirates doing?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a movie trailer based on a true story features a tom hanks doing?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt is threatened by another man doing?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is tom hanks doing?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"negotiate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what does a man with a gun tell him that he is the captain of?\",\n    \"video_name\": \"video7891\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what shut up?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what bound to be together?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is shown playing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band giving?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is playing a song?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is shown singing together?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is giving a live performance?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what do a group of music artists beautifully executing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"creation\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a band is shown doing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of music artists beautifully doing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"execute\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people playing instruments in?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"when is another man playing guitar?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band singing on a sound stage?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what live music in a studio?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is playing guitar in stage?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is singing a song on a sound stage?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what plays music the lead singer singing the vocals?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is another man playing in stage?\",\n    \"video_name\": \"video7892\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who walks on stage to greet someone?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who goes on stage at a rally?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what does hillary clinton speak to?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who speaks to a crowd?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"when does hilary clinton walk to greet someone?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does hillary clinton go on stage at?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"rally\"\n  },\n  {\n    \"question\": \"who does hilary clinton walk on stage to greet?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who receives a warm welcome from a crowd in new york?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who stands at a podium and hugs a man as people with signs watch?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when do hillary clinton walkign out?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is hillary clinton doing?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man and lady doing?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"exchange\"\n  },\n  {\n    \"question\": \"what is shots of hillary clinton at a covention with a female voice over artist doing?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"when does hillary clinton go at a rally?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do hillary clinton walking?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what clinton walkign out on stage?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"hillary\"\n  },\n  {\n    \"question\": \"what do hillary clinton seen at?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"rally\"\n  },\n  {\n    \"question\": \"what clinton walking onto a stage?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"hillary\"\n  },\n  {\n    \"question\": \"what clinton seen at a rally?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"hillary\"\n  },\n  {\n    \"question\": \"who is being discussed?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"politician\"\n  },\n  {\n    \"question\": \"what does man and lady exchange?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"who exchanging their love?\",\n    \"video_name\": \"video7893\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who the man interviews?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is phil conducting?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what did phil speak to?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"heart\"\n  },\n  {\n    \"question\": \"who is talking to dr phil?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is dr phil doing?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a talk show host doing?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is phil doing?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what is phil doing?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man tells woman she doing?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is conducting an interview?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"who interviews the woman?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a woman on stage?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"who is speaking with a guest on his show?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"who talks to a woman on his show?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"who is phil talking to on stage?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a talk show host interviewing?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is phil talking to a woman?\",\n    \"video_name\": \"video7894\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are horses doing?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is horse doing?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is commentators doing?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is an announcer doing?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what is a race announcer doing?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what are a group of horses doing?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a clip of 3 horses doing?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are the jockeys racing the horses at?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"churchill\"\n  },\n  {\n    \"question\": \"what are the jockeys doing?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man calling on a track?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are men racing on horses down?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a man calling a horse race on?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who is calling a horse race at churchiill downs?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who are racing the horses at churchill downs?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"jockey\"\n  },\n  {\n    \"question\": \"who is calling a horse race on a track?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an announcer calling at churchiill downs?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"how many men are riding their horses in a race?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are a group of horses racing around?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is an announcer calling a horse race at?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"churchiill\"\n  },\n  {\n    \"question\": \"who is commentating on a horse race?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who comments on a horse race?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are horses racing inside of?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are some horses doing?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are three men riding their horses in?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is on the go?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what is being shown outside?\",\n    \"video_name\": \"video7895\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is group of people doing?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is basketball players doing?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are basketball players doing?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is basketball player doing?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a fight doing?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is people breaking up?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who are fighting?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is fighting?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who break out in a brawl?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what erupts between professional basketball players?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"brawl\"\n  },\n  {\n    \"question\": \"what breaks out in a basketball game?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"scuffle\"\n  },\n  {\n    \"question\": \"what is breaking out at a professional basketball game?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what do basketball players break out in?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"brawl\"\n  },\n  {\n    \"question\": \"who is on the bottom of the pile?\",\n    \"video_name\": \"video7896\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is different scenes from doing?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"snowboard\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is soccer players doing?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is sports vine clips of doing?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"snowboard\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what do the cricket play?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are so many players in?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what play ground?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what did football players hit?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what does a snowboarder do?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"who does a trick?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"snowboarder\"\n  },\n  {\n    \"question\": \"what shows various sports activities?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who hit a goal?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"where are so many players?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"who scores a goal in soccer?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are running happily as they hit a goal?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a snowboarder boardingand is being held?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is boardingand a soccer game is being held?\",\n    \"video_name\": \"video7897\",\n    \"answer\": \"snowboarder\"\n  },\n  {\n    \"question\": \"what is some music doing?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who prepared a delicious dish with noodles and vegetables?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who has served in a white porcelain vessel?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a young woman describe a bowl of that has vegetables and noodles?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did someone prepare with noodles and vegetables?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a salad in a bowl being filmed on?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what has someone prepared with noodles and vegetables?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a bowl of a serving of at different angles?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"laksa\"\n  },\n  {\n    \"question\": \"who served in white porcelain plate?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are shown?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what has a woman just prepared a hot bowl of?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"laksa\"\n  },\n  {\n    \"question\": \"what are kept in a table?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are cooked food kept in?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are nicely arranged?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who advertises a noodle and vegetable dish that is presented by a food company?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes a bowl of food that has vegetables and noodles?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes a nourishing salad that has been prepared?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who has prepared a delicious dish with noodles and vegetables?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing while bowls of food are shown?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is kept for display in a tray?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who has just prepared a hot bowl of laksa?\",\n    \"video_name\": \"video7898\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two young women doing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are four group of people doing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do two male friends sit at?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there are two women with a computer and a stuff pikachu doing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl in ash color dress doing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two ladies doing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"where do two male friends sit?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what are two women using in a room of their home?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what are two girls sitting at with a computer telling a story?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what does one woman have a large yellow stuffed animal two young women are sitting at looking at a computer?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"how many girls are sitting at the desk with a computer telling a story?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young women does one woman have a large yellow stuffed animal are sitting at a desk looking at a computer?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does one woman have stuffed animal two young women are sitting at a desk looking at a computer?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"who has a large yellow stuffed animal two young women are sitting at a desk looking at a computer?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does one woman have a large yellow stuffed animal two young women are sitting at a desk looking at?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does one woman have a large yellow stuffed two young women are sitting at a desk looking at a computer?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what are two women talking to a man and another women in?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a girl with pink shirt tell about to other three persons?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"ghost\"\n  },\n  {\n    \"question\": \"what do two women in a room have?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"pikachu\"\n  },\n  {\n    \"question\": \"what are two girls sitting at the desk with telling a story?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what do a girl in ash color dress wearing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what are there is a large plush pokemon on the desk as two girls doing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what do a group of girls sit around?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"how many women are talking to a man and another women in a room?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are using a laptop in a room of their home?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did two women sitting at a computer with a yellow stuff animal on there are flashes to other people?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what did two women sitting at a computer with a yellow stuff on the table there are flashes to other people?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"how many male friends sit at other end?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is speaking about going to a wrong apartment?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what are two girls sitting at the desk with a computer telling?\",\n    \"video_name\": \"video7899\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what shows dna evidence being taken?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"who talks about dna force?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about dna force?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do alez jones info wars dna?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"force\"\n  },\n  {\n    \"question\": \"who describes a dna formula?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing dna force?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what shown a dna sampling?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do video clips show?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"sampling\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"force\"\n  },\n  {\n    \"question\": \"what is a man explaining about?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"force\"\n  },\n  {\n    \"question\": \"what is someone describing?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"force\"\n  },\n  {\n    \"question\": \"what does a man describe?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"formula\"\n  },\n  {\n    \"question\": \"what is being prsented with a three dimensional graphic?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what did a commercial for a product call?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"force\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a short clip taken from the show info wars doing?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is clips of people doing?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7900\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is a man explain some thing with?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"vidoe\"\n  },\n  {\n    \"question\": \"what is a man explain with animation video?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a man explain with a vidoe?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is floating in the nether realm?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a man explain some thing with?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what rise up from a tan area surrounded by two yellow and white shapes?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"who is presenting his latest study and the results?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do bright lights flash by as little purple lights float up from?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a purple thing doing?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is a doctor doing?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a male person doing?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a nerve doing?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"what is a short recording of a light doing?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"glow\"\n  },\n  {\n    \"question\": \"what are small purple specks doing?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"rise\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is explaining biology shown in a descriptive video?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what generated image of a neuron is activated?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is talking about the neural growth factor and what is happening around blue substance from surface?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are small purple specks rising between a white surface to?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"receptor\"\n  },\n  {\n    \"question\": \"what are rising between a white surface to a receptor?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"who is explain some thing with animation video?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a short recording of a light glowing inside someones?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is explain some thing with a vidoe?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is blue substance from surface doing?\",\n    \"video_name\": \"video7901\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what does a baby play with a cat s?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what does tail and babbling s a baby is playing with?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a baby playing with?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is playing with a cat?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a little baby boy playing with?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is trying to play with a cat?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who plays with a cats tail?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does tail s is playing with a cat?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"chid\"\n  },\n  {\n    \"question\": \"who does tail and babbling s is playing with a cat?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what s a baby is playing with a cat?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"babbling\"\n  },\n  {\n    \"question\": \"what does tail s a baby is chewing on?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does tail s a chid is playing with?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who plays with a cat s tail?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who does tail s is chewing on a cat?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what s a baby is chewing on a cat?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what s a chid is playing with a cat?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"who did a cute video of a cat having its tail pull by?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what a baby and a orange tabby cat on where the baby is pulling the cats tail?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a baby play with s tail?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a little baby boy doing?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is baby doing?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what is a chid doing?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"chew\"\n  },\n  {\n    \"question\": \"what is a baby and a orange tabby cat on a bed where the baby doing?\",\n    \"video_name\": \"video7902\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what does a movie star wear?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"who takes pics with fans?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is celebrating for the sake of directors and celebraties?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"function\"\n  },\n  {\n    \"question\": \"who wears a navy suit?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are several people being highlighted at with crowds of people behind them?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who stands near a car and signs autographs then another man stands near a car?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are celebrities being photographed by while at a movie premier?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"paparazzi\"\n  },\n  {\n    \"question\": \"what describes celebrities arriving at a london premier?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is in a large doing?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"gather\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in sunglasses stands by a shiny black platform outlined in blue neon doing?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is the function doing?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is bald guy in suit and tie doing?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who does aron robert downey jr and jeremy renner walk into?\",\n    \"video_name\": \"video7903\",\n    \"answer\": \"premier\"\n  },\n  {\n    \"question\": \"what do female models walk at a fashion show?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is a woman in white dressing walking on?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a fashion model in a white suit walking down?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are the women in white cloths walking on ramp?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is blonde lady in white dress walking on?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is blonde woman in nice clothes walking on?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is blonde woman in nice dress walking on?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what do a couple of runway models take turns strutting down?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"who walks up and down the runway in the latest fashion?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a blonde model in a white dress walking down while holding a cream colored clutch followed by another blonde model in a yellow dress?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"where is blonde lady in white dress walking?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"where is blonde woman in nice clothes walking?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"where is blonde woman in nice dress walking?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what show crowd fashion lines latest white dresses?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do young and beautiful models walking down the run with their summer collection?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what is blonde woman in nice dress doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is blonde woman in nice clothes doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is blonde lady in white dress doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is fashion models doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a fashion model in a white suit doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a blonde model in a white dress doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some models in some clothes doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are females doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is young and beautiful models doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a couple of runway models take turns doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"strut\"\n  },\n  {\n    \"question\": \"what is there are some lean fashion ladies doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman in white dressing doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are the women in white cloths doing?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what does a woman walk up and down in the latest fashion?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do fashion models wearing mostly white outfits walk up and down?\",\n    \"video_name\": \"video7904\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what does the wife and husband doing the romance while going on to the step?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what are some people standing around doing?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"nothing\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a woman and a man dance play with?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a movie scene girl in pink dress kiss waving hand throwing running catching dancing displaying on screen?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who does a woman in a pink shirt stand with?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a couple that are having a fun date and ending their date with a beautiful candle light table?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"marian\"\n  },\n  {\n    \"question\": \"what does various scenes of nick and mariah carey s?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"relationship\"\n  },\n  {\n    \"question\": \"who does a woman in a pink blouse playfully flirt with in a white shirt?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"boyfriend\"\n  },\n  {\n    \"question\": \"what do a woman and a man dance get onto?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what do a man and woman dance for?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a movie scene girl in pink dress kiss waving throwing ball dog running catching dancing displaying on screen?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a movie scene girl in pink dress doing?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a girl dances and shakes her behind doing?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman in a low-cut pink top doing?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7905\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who talks about workers donating time and money to charitable cause?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what is a man in check shirt working with?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who sits with his laptop in his lap and stares at the screen?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is busy with sales?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"who is talking about computers and hackers while showing shots of an event and computers?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what does a man sit with his laptop in his lap and stares at?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are some people sitting before contemplating on what they are going to give back by selling on ebay?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what do the people sit around?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does a man sit with in his lap and stares at the screen?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what is various companies gather together to get people doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man in check shirt doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is the photographs of men doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are all persons speaking together with laptop on?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"comapny\"\n  },\n  {\n    \"question\": \"what is hack for change doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bunch of different people doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is speaker talks about workers doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"donate\"\n  },\n  {\n    \"question\": \"what are men and women doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are 4 people are in the first clip and they doing?\",\n    \"video_name\": \"video7906\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is riding in the cycle on the road?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man wearing a red shirt and shorts rides?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a happy man in a red shirt and shorts enjoying?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"scenery\"\n  },\n  {\n    \"question\": \"what is person riding fast?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is riding his bike fast?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing some skills?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is not coming through the boy needs a fix to sleep?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"who is love not coming through needs a fix to sleep?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man going in the cycle on?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man riding in the cycle on?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a guy riding outside in nature and a street?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"when is a man going on the road?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"when is a man riding on the road?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"what a young man rides down a country road?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"when is the boy bycycling in a nature farm?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt and backpack riding?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is a happy man in a red shirt and shorts riding?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"who is going in the cycle on the road?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person in a pink outfit riding outside?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a man in pink shirt riding in a empty road?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"who is bycycling on a cycle in a nature farm?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is riding a bike outside in nature and a street?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a boy in pink color t-shirt and half pant doing?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"bycycling\"\n  },\n  {\n    \"question\": \"who rides a bike down a country road?\",\n    \"video_name\": \"video7907\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings on a stage?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings for judges?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl singing on?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is a child singing graciously on?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing with a microphone?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"when does a young girl sing?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a child singing with?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on the voice?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings on the voice kids?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing on a tv show?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing graciously on voice kids?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a young asian girl doing?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"who sings a song in a tv singing competition?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who do a kid singing a song in a reality tv show?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who sings a song at a talent show?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what do a child singing on the television show?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a kid sing at a talent show?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings on stage for audience?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sang a barry gibbs song?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"who performs a song on the voice kids?\",\n    \"video_name\": \"video7908\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman working with?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what is a woman presenting?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"sparkling\"\n  },\n  {\n    \"question\": \"what is a woman showing off?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what does a woman show?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"tape\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"ribbon\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman holding?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what does a woman explain?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"ribbon\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is working with wire?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who shows some tape?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing crafts at the table?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman showing off different types of?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"ribbon\"\n  },\n  {\n    \"question\": \"who is showing a ribbon to the camera?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding purple ribbon?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman showing a ribbon to?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a person doing crafts at?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is presenting a sparkling ribbon?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing some purple ribbon?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing off colored wire?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman showing to the camera?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"ribbon\"\n  },\n  {\n    \"question\": \"who is showing off different types of ribbon?\",\n    \"video_name\": \"video7909\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man open?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what has a man opened?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"tablet\"\n  },\n  {\n    \"question\": \"who is working on his computer?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"examine\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who has opened a tablet?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how a battery is connected on a circuit board?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who discusses the power system inside a computer tablet?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaning the insides of a tablet?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is examining the inside of an electronic device?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who demonstrates the use of a computer motherboard and circuits?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows a computer motherboard and circuits the inner workings of a tablet?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks at the battery of a computer?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing how to modify an electrical device?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows where the battery is?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaning the insides of?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"tablet\"\n  },\n  {\n    \"question\": \"who is talking about an electronic device?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens an electronics device?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains about a electronic device?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7910\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"confront\"\n  },\n  {\n    \"question\": \"what are people making in a pot?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are people making food in?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what are ingredients added into?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is a girl confronting?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"boyfriend\"\n  },\n  {\n    \"question\": \"what are people cooking?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who demonstrates how to cook?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining how to cook?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who goes off to sing?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"boyfriend\"\n  },\n  {\n    \"question\": \"what is added to a sauce pan?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what does a person pour ingredients into?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is making a recipe in a sauce pan?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring water on a flour in a vessel?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining directions for a recipe in the kitchen?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts flour chicken broth and canola oil into a suacepan?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who mixes some food up in a pan?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman put flour chicken broth and canola oil into?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"suacepan\"\n  },\n  {\n    \"question\": \"what does a person mix up in a pan?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who pours ingredients into a pot?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman pouring on a flour in a vessel?\",\n    \"video_name\": \"video7911\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does man in cartoon drive car up to pier upon 2 cartoon characters exiting they push vehicle into?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what scene where a bubbly guy push the car into water?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who drives car up to pier upon 2 cartoon characters exiting they push vehicle into water?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many cartoon characters push a car into the water?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who pushed his car into the river in a clip from the family guy?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does man in cartoon drive car up to pier upon 2 cartoon characters exiting they push into water?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does peter griffin push a car into?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what does peter push the car into?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what does peter push into a lake?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving in the car?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"peter\"\n  },\n  {\n    \"question\": \"what is drowning in the water?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are hiding a car?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon people hiding?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car drowning in?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is peter driving in?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do cartoon characters push in the water?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is man in cartoon drives car up to pier upon he and son doing?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"exit\"\n  },\n  {\n    \"question\": \"what is father and son doing?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what are cartoon people doing?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is an animated man and a boy doing?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a scene from family guy of peter and stewie doing?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a father and son doing?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what are a cartoon man and baby doing?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"drown\"\n  },\n  {\n    \"question\": \"what are 2 cartoon characters doing?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is peter doing?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does man in cartoon drive up to pier upon 2 cartoon characters exiting they push vehicle into water?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do cartoon characters push into a lake?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who push the car in the river?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does peter griffin push into a river?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who pushes a car into a river?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"griffin\"\n  },\n  {\n    \"question\": \"what are a cartoon man and baby pushing a red car into?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what are pushing a car in a lake?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are a cartoon man and baby pushing into a lake?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who push a car into the water?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what did cartoon peter push into the river in a clip from the family guy?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do two cartoon characters push a car into?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did cartoon peter push his car into in a clip from the family guy?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what are 2 cartoon characters pushing a car in?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what are 2 cartoon characters pushing in a lake?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do two cartoon characters push into the water?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who push their car into a lake?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do cartoon characters push their car into?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what do cartoon characters push their car in?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who push their car in the water?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who pushes the car into a lake?\",\n    \"video_name\": \"video7912\",\n    \"answer\": \"peter\"\n  },\n  {\n    \"question\": \"what do a man describing the remote connection function on?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is explaining how to use a computer software?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to program a connection?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a computer screen doing?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man gives instruction on doing?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is displaying remote connection?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who gives instruction on using a program?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using windows?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a computer screen displaying?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"connection\"\n  },\n  {\n    \"question\": \"who is giving a tutorial on using a computer application?\",\n    \"video_name\": \"video7913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is blue mountain with blue flowers and purple flowers?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"what is various camera angles doing?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what are a flower and other natural scenes doing?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a mountain flower snow scene and land shown on screen trees beside doing?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a snow land mountain flowers trees beside doing?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what are some people out side doing?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what land mountain flowers trees beside displaying on screen?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is recording the beauty sides of big mountain?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a snow land beside displaying on screen?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what do a mountain flower snow scene and land show on beside displaying on screen?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are some people out side looking at?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is someone recording the beauty sides of?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what did beautiful slide show of large snow cap mountains with little blue flowers along?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is filming a misty mountain landscape?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what mountainscape surrounded by wildlife and flowers?\",\n    \"video_name\": \"video7914\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who beat boxing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who beat dancing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flapping his arms?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"who is dancing along with a music?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing on the road?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing on a street?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a young boy dancing on?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who beatboxing on the street?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who beatboxes in the street?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man dancing along with?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is walking down the street?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy singing on?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who covers a popular song?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is beat boxing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does person beatboxing on?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a young man beatboxes in?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man walking down?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a boy beat?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"what does a person cover?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is human beat boxing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a young asian man beat?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"beatboxing\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a boy is beat doing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video7915\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"who typing on a laptop?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl operating?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is girl checking?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"twitter\"\n  },\n  {\n    \"question\": \"what is a woman typing on?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what does someone type on?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what a person types on?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what did a girl type on?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who is operating a computer?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who types on a computer?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did girl type on?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is typing on a laptop?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do a woman refocus?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"who is typing on a macbook?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who typing on a keyboard?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is typing on a keyboard of a laptop?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who thinks about going on twitter?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who types on a laptop keyboard?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is checking twitter?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is someone typing on?\",\n    \"video_name\": \"video7916\",\n    \"answer\": \"macbook\"\n  },\n  {\n    \"question\": \"what is a woman touching?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a woman near?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman singing at?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"respond\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"who sings in the night at the beach?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings on the beach in the moonlight?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing during a montage of the ocean?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings as waves crash on the ocean shore?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing at the beach?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is near the water?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the waves roar in?\",\n    \"video_name\": \"video7917\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who are various clips from the simpsons shown with talking about the show?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what gives the moral of the content and advice to the children?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what does a video about the simpsons tv show?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"watchmojo\"\n  },\n  {\n    \"question\": \"who describes the impact the simpsons has had on culture as images from the show play?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a woman talks about how the cartoon the simpsons has revolutionize?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"who is reviewing the simpsons as clips play in the background?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do clips play in?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what are 4 simpsons doing many things in?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do just cartoons ve become?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"empire\"\n  },\n  {\n    \"question\": \"what is there is a man with yellow hair doing?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a yellow hair man doing?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is various clips from the simpsons are shown with the narrator doing?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are bart and lisa simpson talking about?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what are bart and lisa simpson doing?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are moving around an area?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are some cartoon characters moving around?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7918\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is shown being played?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is floating?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does then seem to fly in?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what game where character jumps very high?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what character flying into the air?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays a side scroller game?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a character doing?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a character with wings doing?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a video game character with a cape doing?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7919\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do a girls perform on the stage?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who has a horse for the performance also?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is on stage with a horse?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when does woman perform a song with a horse?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do a girls perform a song?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a women singing a song on stage with?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when does a girl sing?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who performs a song with a horse on stage?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what a woman touches?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what performs live?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"shanium\"\n  },\n  {\n    \"question\": \"who is petting a horse?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings on stage with a white horse?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman petting?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a girls doing?\",\n    \"video_name\": \"video7920\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person showing to the camera?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"who is showing product to the camera?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what gadget that can open bottles and jar caps?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is talking about a new kitchen gadget?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who opens jars and cans?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a narrator supply?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"voiceover\"\n  },\n  {\n    \"question\": \"who holds a kitchen utensil?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who supplies a voiceover?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who holds a green and white tool?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person showing product to?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who then demontrates how to use a green and white tool?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows some tool made of the demo?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what demonstrates how to use a new high tech can opener while a narrator supplies a voiceover?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is there is a woman in black doing?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who turns the green lever of a white kitchen tool over a ridged metal can on a wooden counter?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is there is a woman in black doing?\",\n    \"video_name\": \"video7921\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what does a white color camels inside forest walking on displaying on screen?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what do some australian goats coming as a group to?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are some sheep walking around out side in?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"formation\"\n  },\n  {\n    \"question\": \"what are some sheep walking around out in a formation?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what are a group of lamas walking in forwards?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what are a cute white and brown color animals walking in?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does some white furry animal walk towards?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is dramatic music playing in?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what do some australian goats coming as to the camera?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are some white and brown animals walking towards?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what played on the background?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"terrifying\"\n  },\n  {\n    \"question\": \"what did a terrifying music play on?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what does overly dramatic music play in?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is playing in the background?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a group of white animals walking across?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what are some sheep doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do llamas of many colors approach the camera to?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a cute white and brown colour animals doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a white color camels inside forest doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a camel in white and brown inside forest doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are llamas doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are group of white llamas doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what is a heard of white black and brown llamas doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a group of lamas doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of white animals doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is shots of a herd of llamas doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"approach\"\n  },\n  {\n    \"question\": \"what is an ominous herd of llamas doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of white alpacas doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what is a group of llamas is slowly doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some white and brown animals doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is some white furry animal walks towards the camera and doing?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what did a hear of white black and brown llamas walking toward to check it out?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do llamas of many colors approach to ominous music?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are walking forward while dramatic music is playing in the background?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"llama\"\n  },\n  {\n    \"question\": \"what are walking around out side in a formation?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"sheep\"\n  },\n  {\n    \"question\": \"what is a group of white alpacas marching through up to the person who is holding the camera?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where are a cute white and brown color animals walking?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what camels inside forest walking on grass land displaying on screen?\",\n    \"video_name\": \"video7922\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what flows down a hill and over a waterfall?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"waterway\"\n  },\n  {\n    \"question\": \"what flows in between the rocks in the forest?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does water spill down frothing white as it falls?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is a river flowing through while people look about?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what flows by rocks and off a cliff in the woods?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does water flow in between the rocks in?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what falls?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what does a camera turn to follow a river down?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what flows down the huge rocks near the trees?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a natures from overhead showing water from a waterfall and stream?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what does a camera turn to follow down stream?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is flowing through a forest while people look about?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what cascades out of a mountain top pond and into a waterfall?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is flowing downstream in a creek with lots of large rocks?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is tourist seeing the water flowing between the rocks in?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what follows from the top of the mountain?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"creek\"\n  },\n  {\n    \"question\": \"what turns to follow a river down stream?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what a water scene and tress inside forest moving water nice scene person roaming displaying on screen?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is a drone shot of a running stream being shown with?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what spills down a rocky stream frothing white as it falls?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is water spills down a rocky stream doing?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"froth\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a natures scene from overhead doing?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a water scene and tress inside forest doing?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is water doing?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is an amazing aerial view of water doing?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is a river doing?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is very beautiful stream of water doing?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing food recipe?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who makes a dough?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what stirred in a pan?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what does a man make?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who stirs a pasty food substance in a pot?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing some paste like flour in a pan?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who mixes mashed potatoes in a pan on the stove?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stirs a pot while explaining a recipe?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man stirring in a pot with a wooden spoon?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a man mix mashed potatoes in a pan on?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is explaining how to cook a food dish?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mixes batter in a silver pan?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man mix batter in pan?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"who is stirring food in a pot with a wooden spoon?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stirring mashed potatoes?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to stir potatoes?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a cook doing?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a foreign man doing?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a man stirs a pot while doing?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7924\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man making by keeping it in the oven?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what is aluminum foil wrapped around pan?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"pie\"\n  },\n  {\n    \"question\": \"what is wrapped around a pie pan?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"aluminum\"\n  },\n  {\n    \"question\": \"what does chef place in a pan covered with foil in a roasting dish for a water bath?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what is a person preparing a dish with to cook?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"foil\"\n  },\n  {\n    \"question\": \"what is a person preparing with foil to cook?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is putting a roasting pan?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man put a pan in?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"alumminum\"\n  },\n  {\n    \"question\": \"who puts in a large foil?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting pan?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"roasting\"\n  },\n  {\n    \"question\": \"what has a man prepared in a round metall placed in it a water bath?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"crust\"\n  },\n  {\n    \"question\": \"what does a man wrap a metal pan with?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"aluminum\"\n  },\n  {\n    \"question\": \"who places a pan into tin foil and then places the pan into a water bath?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man wrap pan with aluminum foil?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"who demonstrates how to make a pie crust?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting pan in some aluminum foil?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"roasting\"\n  },\n  {\n    \"question\": \"who is making a cake by keeping it in the oven?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a bowl of brown colored mixture placed in?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"aluminium\"\n  },\n  {\n    \"question\": \"what has a man prepared in a round metall pan a water bath?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"crust\"\n  },\n  {\n    \"question\": \"who is showing the dessert which is going to be decorated?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who puts a pan in alumminum foil?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing a dish with foil to cook?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to make a crust for a pie?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has prepared a crust in a round metall placed in it a water bath?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who places a cake in a pan covered with foil in a roasting dish for a water bath?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who wraps a metal pan with aluminum foil?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting a roasting pan in some aluminum foil?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has prepared a crust in a round metall pan a water bath?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains how to put a pan into a larger pan with some water in it?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has baked something in a steel vessel kept in a steel tray?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who has baked something in a steel vessel covered with aluminium foil?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is placing a round pan on top on a sheet of aluminum foil and pressing the foil onto the pan?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man placing pan on top on a sheet of aluminum foil and pressing the foil onto the pan?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"what pan with a brown substance sitting inside of a piece of tin foil?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"who pan?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a metal pan with a brown substance doing?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7925\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who draws on a white board demonstrating what the narrator is saying?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a presentation while drawing on a white board?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who draws out salary reward system on board explaining system?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a men doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man draws on a white board doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man gives a presentation while doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a very detailed explanation of how people feel when doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"rent\"\n  },\n  {\n    \"question\": \"what is a hand doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is showing data analysis about the salaries of the middle class people?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who draws images about incentives based on salary and job performance?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what drawing a picture on a white board with a black marker?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what do a diagram of salary sketch drawn with displaying on screen?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a management professional explain with the help of graphics a performance to?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"graph\"\n  },\n  {\n    \"question\": \"who is talking about the weekly and monthly salaraies?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person showing about the salaries of the middle class people?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"analysi\"\n  },\n  {\n    \"question\": \"who is drawing on a paper in a place?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a hand draw on a white board with a black marker?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who writes on the white board with black and red markers?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"where is a person drawing on a paper?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who explains with the help of graphics a performance to incentive graph?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"professional\"\n  },\n  {\n    \"question\": \"what is a diagram of salary sketch drawn with hand doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man draws out salary reward system on board doing?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person drawing on a paper in?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a person drawing on in a place?\",\n    \"video_name\": \"video7926\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what shows the ground below as it flies?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what does an aerial view show below as it flies?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what flies over a river?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"simulation\"\n  },\n  {\n    \"question\": \"where do an overhead view in a plane or helicopter looking down?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"what is approaching an isolated airport?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what does a flight simulation fly over?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is a plane approaching?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what is landing down?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"who is recording the ground while flying with airplane?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is scoping out a territory of dry land?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what approaches large structure with green indicator lights?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"what heads towards the ground in a bay area?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what view in a plane or helicopter looking down at landscape?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"overhead\"\n  },\n  {\n    \"question\": \"what do an overhead view in a plane or helicopter looking down at?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"what does targeting system approach with green indicator lights?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"structure\"\n  },\n  {\n    \"question\": \"what is a plane scoping out a territory of?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is descending as it flies over brown terrain which a river runs through?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what do a person showing bird eye view from?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is an overhead view in a plane or helicopter doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is ariel view with a heads up display and it doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a plane doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"approach\"\n  },\n  {\n    \"question\": \"what is this is top view of the place and plane doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is a plane doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"descend\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"what is military aircraft doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"what is a pilot doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7927\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is measured?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"distance\"\n  },\n  {\n    \"question\": \"what is someone using on the floor?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"measuring\"\n  },\n  {\n    \"question\": \"who takes measurements in a doorway?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a measuring tape on the floor?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person measure the floor of?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"doorway\"\n  },\n  {\n    \"question\": \"what is someone using a measuring tape on?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does a man measure s distance between two endpoints?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"doorway\"\n  },\n  {\n    \"question\": \"who measures the floor of a doorway?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who measures a doorway s distance between two endpoints?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is measuring a doorway?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is working on a door frame?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who measures an entrance?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is this is a video of a worker doing?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"who is fixing the floor?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"construction\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"who is doing home improvement?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"who measures the width of his door opening?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"improvement\"\n  },\n  {\n    \"question\": \"what is a person measuring?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"doorway\"\n  },\n  {\n    \"question\": \"what is man fixing?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is doing construction?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man take measurements in?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"doorway\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7928\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who speaks over a video of a video game car driving though a city?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a jeep down the road in a video game?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is rushing through the road in a video game?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"what does a person drive down the road in a video game?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"what is driving erratically around a city while a british man explains how to play the video game?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a jeep rushing through in a video game?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a sport vehicle driving erratically around while a british man explains how to play the video game?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a driving video game?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains how to play the video game?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates a video game?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man narrate?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is car doing?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a sport vehicle doing?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man speaks over a video of a video game car doing?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man in doing?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a jeep doing?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"rush\"\n  },\n  {\n    \"question\": \"what is a gamer doing?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a jeep road racing taking?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is driving a virtual jeep the wrong waz down a street?\",\n    \"video_name\": \"video7929\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"what do sexy blonde in stripe top talking to?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking about something in the kitchen?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"what did woman in red and white stripe holding a bowl with yellow sauce?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a woman with brown hair doing?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what did woman in red and white stripe shirt holding a bowl with?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what may a woman talks about french fries and the ingredient options one add to provide?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"flavor\"\n  },\n  {\n    \"question\": \"what did woman in red and white stripe talking in a kitchen?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what did woman in red and white stripe shirt holding with yellow sauce?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is woman in red and white striped shirt doing?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who explains how to add beef fat to french fries?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes the process for making authentic mcdonald s french fries?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did woman in red and white stripe shirt talking in?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young woman in a red and white striped shirt explains how to get beef doing?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"flavor\"\n  },\n  {\n    \"question\": \"what is brunette woman doing?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman who is very beautiful doing?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in red stripes describes how mcdonalds flavors their french fries doing?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a lady with a red and white shirt in?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is woman who is very beautiful talking about?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady in a striped shirt doing?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who is talking about food?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is sexy blonde in stripe top doing?\",\n    \"video_name\": \"video7930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is very attractive?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is various clips of an attractive woman doing?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who talks about the woman?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman on?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who talks about a bollywood actress?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people dancing and a girl talks in?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who is on screen?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does the person talk about?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking into?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what does a woman dance around in?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who dances around in a room?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking into a microphone?\",\n    \"video_name\": \"video7931\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who discusses something important?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a promo for a tv show or movie with spoken words of what women doing?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"think\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is doing his thing?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a sensuous?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what does a woman drives through a wooded area in the back seat of another man s?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who sits in the backseat of a car?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sits silently in the back of a car while the driver talks?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a promo for a tv show with spoken words of what women are thinking?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who did the lady riding in the car until drop off just stares at?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a car not being a game?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a woman ride in?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are a man and woman driving down?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are a man and a woman driving in?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who ride in a car?\",\n    \"video_name\": \"video7932\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a movie doing?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what is an old film doing?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is it is the doing?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what is the ending to a show?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"what is an old film showing on?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is beginning with its title screen?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is showing on a screen?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what did a commercial for a show call?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"what does a commercial show?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what did encyclopedia britannica films made a short call?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"what appears on screen followed by production credits?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"what is a clip of an old movie being shown on?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is giving details about movie produced by?\",\n    \"video_name\": \"video7933\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are a group of woman doing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of women doing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of women doing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what filled with women dancing in very little clothing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are group of female dancers doing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is music video filled with women doing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some woman s doing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are group of female dancers dancing to?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when are a group of women dancing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are a group of woman dancing in?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"bikini\"\n  },\n  {\n    \"question\": \"what are a group of women performing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when do women dance to exotic music?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do a group of women dance?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are some woman s dancing together?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are dancing together in a stage?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when are some women dancing?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do women dance on stage to?\",\n    \"video_name\": \"video7934\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a technician doing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"inform\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman describing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who assembles?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman describing?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a person moving trolly?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who does a woman push?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"when is a person explaining?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"who is describing a vehicle?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is moving small car trolly?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone rolling?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is describing a stroller?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining about modern cycle?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pushes a stroller?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a description of the features of a child s?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is explaining how to use self moving chair?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is rolling a vehicle wheel?\",\n    \"video_name\": \"video7935\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are fellow players expressing in a football match?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"wish\"\n  },\n  {\n    \"question\": \"what are soccer players celebrating?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what are playing football in a football ground?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are expressing their wish in a football match?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"fellow\"\n  },\n  {\n    \"question\": \"who celebrate winning a game?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what celebrates?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are some man s playing in a football ground?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who are celebrating a goal?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do soccer players celebrate winning?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are some man s doing?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who are playing soccer?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are soccer players doing?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are in a football match fellow players doing?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"expres\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what is a team of players doing?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a soccer team celebrating after doing?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is a short clip of soccer doing?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is soccer players celebrate doing?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"who are hugging?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is being replayed?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who are soccer players playing?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who celebrates with his team?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are goals being made during?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who score goals?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a soccer player celebrate with?\",\n    \"video_name\": \"video7936\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what do a creature inside of a see through up against a wall?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what does a curious gerbil peek out of a white tube looking around?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what do a black color rat inside hole eating displaying on?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a creature inside of a see through glass case up against?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does a mouse slowly exits a paper towl tube then turn away from?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is peeping from a hole?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what do a hamster inside just looking around?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is a mouse peeping from?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is in its hole in a glass box?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"what is coming outside from the hole?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what is a white mice having the food in?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is a white mice having in a cage?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is recording the small gray mice which is looking for food?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what crawls through a white tube in a cage full of hay?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"what plays in tunnel inside of cage with small wood shavings as flooring?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"what is coming out of a tunnel in a cage?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what peeks out of a white tube looking around its home?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"gerbil\"\n  },\n  {\n    \"question\": \"what is a mouse in a glass cage lined with a straw substrate coming out of?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"tube\"\n  },\n  {\n    \"question\": \"what does a gray and white hamster inside a mouse s wiggling it s nose?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what slowly exits a paper towl tube then turns away from the camera?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what is having the food in a cage?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what is a white mice coming out of a tunnel in?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is a white mice coming out of in a cage?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"tunnel\"\n  },\n  {\n    \"question\": \"what is a little mouse kept in shelf foods and other needed items for mouse is kept in it?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what is kept in a glass shelf foods and other needed items for mouse is kept in it?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what is a curious gerbil peeks out of a white tube doing?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is there is a mouse doing?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a gray and white hamster inside it s cage doing?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"wiggle\"\n  },\n  {\n    \"question\": \"what is a hamster inside its cage just doing?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a mouse doing?\",\n    \"video_name\": \"video7937\",\n    \"answer\": \"peep\"\n  },\n  {\n    \"question\": \"what is a girl giving on the channel?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman describing various pieces of?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is giving interview on the channel?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl giving interview on?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what are some images and and discussion are presented in the context of european futures?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"stock\"\n  },\n  {\n    \"question\": \"who is going over the days stock markets?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is presenting the results from a survey?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what are some stocks being shown on?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is describing various pieces of financial news?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who tells the good news about european futures?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about the daily change in the stock market?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"blond\"\n  },\n  {\n    \"question\": \"who discusses some european futures market results which have all gone up?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what show where a woman discusses european futures in stocks?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what show numbers white arrows and green percentages over a moving black band with additional figures and financial information?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is dark panels show numbers white arrows and green percentages over a doing?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a newscaster doing?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is blonde woman doing?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a pretty women which black dress doing?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7938\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a ash dress boy and girl doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are doing a project tutorial for people to see?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what dress boy and girl standing inside mixing dish inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"ash\"\n  },\n  {\n    \"question\": \"who is explaining a culinary technique in a kitchen?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a male cook show how to prepare a certain recipe?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man wearing a gray sweater squeezing the beak out of in a kitchen?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"who shows a woman how to prepare a certain recipe?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is a man wearing a gray sweater squeezing the beak out of a squid in?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what did a chef showing a young girl how to prepare squid for?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"menu\"\n  },\n  {\n    \"question\": \"what dress boy and girl inside kitchen dish inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what are two people in a kitchen doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who is divining the sea food while the woman is assisting him?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes what they are doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man and a woman prepare squid together in?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a man and woman cook in?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are a man and woman working together in while the man describes what they are doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is assisting the man?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a man and woman in a kitchen explaining to cook?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a man explaining a culinary technique in?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man explaining in a kitchen?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"technique\"\n  },\n  {\n    \"question\": \"what is the man divining while the woman is assisting him?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do a man and a woman prepare on a kitchen counter?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is the woman assisting?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"divine\"\n  },\n  {\n    \"question\": \"what is a man and woman are in a kitchen doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is in a kitchen a man doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two people in a kitchen preparing to eat?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is a man has on black glasses squeezing the beak out of a squid in?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man has on black glasses squeezing the beak out of in a kitchen?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"what do a guys with a lady talks about the food preparation show in?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a ash color dress boy and girl inside kitchen dish inside kitchen to prepare to serve to eat doing?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what are a couple doing for people to see?\",\n    \"video_name\": \"video7939\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"who is a reporter talking about donald trump as?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"candidate\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who discusses donald trump ina studio?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"what is a woman speaking?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what did a news report about donald?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"trump\"\n  },\n  {\n    \"question\": \"what are people talking on?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does a news show discuss?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"donald\"\n  },\n  {\n    \"question\": \"what is this is a msnbc showing donald trump and a news reporter doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what about donald trump?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"who is speaking a news program?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about republican candidates?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what discusses donald trump?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what show talking about donald trump?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about donald trump?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what does a female newscaster discuss donald?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what did news reporter talking while showing donald?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"trump\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video segment?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does statements towards jeb bush s news reports discuss?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"trump\"\n  },\n  {\n    \"question\": \"what is news reporter doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is news person doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is donald trump doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"greet\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman discusses the political race doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a talk show doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a host doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is reporters doing?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who discusses the political race involving donald trump?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does statements towards jeb bush s discuss donal trump?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking about donald trump as presidential candidate?\",\n    \"video_name\": \"video7940\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a little girl singing on?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is critiquing a young girl?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who do a judge talking to?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"who do the judges interact with?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"contestent\"\n  },\n  {\n    \"question\": \"who is a woman talking to?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a woman talk to?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is a judge critiquing?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing on the voice?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks to a child?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to a girl?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks to a young performer?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"what is there are judges doing?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are judges doing?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman talks to a girl doing?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a judge on the voice doing?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a judge doing?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"critique\"\n  },\n  {\n    \"question\": \"what is a host doing?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a female judge doing?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is speaking to a young girl on a televised music competition?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who talks to a little girl on the voice?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who is talking to a judge of a contest?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks to a girl holding a microphone?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7941\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a still photo from the film the basketball diaries with a credit on the screen?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is displaying a top ten movies countdown?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is presenting the top 10 movies that he watched?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a trial movie which is top ten best stories based on true stories and the story based on?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"addiction\"\n  },\n  {\n    \"question\": \"how many young guys are standing half naked with hands put together?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what top ten movies based on real life events starting with?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a 1995 american coming of age crime drama film directed by scott kalver?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"how many persons are clapping their hands?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is there are two half naked men doing?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is two men without shirts doing?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are two young guys doing?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is a screen doing?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a still shot from the basketball diaries with overlaid copy doing?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is top ten movies based on real life events doing?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a picture of two boys in swimsuits near a building doing?\",\n    \"video_name\": \"video7942\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a black and yellow combination of suzuki bike is on the road doing?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a camera doing?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man showing off?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is on display?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a motorcycle on?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what do some close up shots of?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is being displayed?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is going over a yellow and black motorcycle?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is looking at a black and yellow suzuki motorcycle from different angles?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is showing off his new motorcycle?\",\n    \"video_name\": \"video7943\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what were the firemen on?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what are firefighters by?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what do firefighters investigate?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what do firefighters respond to?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"who does a firefighter rescue?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is firefighters doing?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are a group of chicago firefighters doing?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a live scene of firefighters doing?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is firefighter doing?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are firefighters doing?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"surround\"\n  },\n  {\n    \"question\": \"what are firefighters doing?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are firefighters doing?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are firemen doing?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"inspect\"\n  },\n  {\n    \"question\": \"what are firefighters surrounding?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what did a group of firefighters are by a crash?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are firemen inspecting at the scene of an accident?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what arrives at the scene of a car wreck?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"department\"\n  },\n  {\n    \"question\": \"what did a number of firemen attempt to help an individual out of a crash?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what did a wreck a group of chicago firefighters are checking out?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what did a wreck a group of chicago firefighters are putting things in a truck?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what did a wreck vehicle a group of chicago firefighters are putting things in?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what wrecked firefighters are trying to get someone out of a?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who rescues a person?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"firefighter\"\n  },\n  {\n    \"question\": \"what are firefighters surrounding a crashed?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what do firefighters take equipment from to help a car crash?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what did car wreck firefighters are trying to get out of a?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do firefighters take equipment from their truck to help?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"where were the firemen?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what did firefighters working on a wreck?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do firefighters take from their truck to help a car crash?\",\n    \"video_name\": \"video7944\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what is a group of cars doing?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a video of a doing?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is red car doing?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is this is an instruction video for a a racing car game doing?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who motorsports?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"gameplay\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"racing\"\n  },\n  {\n    \"question\": \"what is driving a red race car?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing a racing video game?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what play of a racing game?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who talks about a racing game?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving in a video game?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a group of cars driving down the road in?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a group of cars driving down in a game?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is chasing other cars in a video game?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car in a video game?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a racing game?\",\n    \"video_name\": \"video7945\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy with brown hair and glasses doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in coat with eye glass doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in glasses doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is person with glasses doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in brown suit doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man with glasses doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young man in glasses and doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is handsome guy with spectacles doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person with glasses talking about something in?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man in a brown suit doing?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who discusses dr sachs who can t recognize his own face?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lectures on the teachings of a philanthropist?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"instructor\"\n  },\n  {\n    \"question\": \"who gives a lecture on a doctor who is unable to recognize his own face?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wearing brown color coat sitting in?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is talking about something in his room?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in coat with eye glass explaining about?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is person with glasses talking about in his room?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is man in brown suit talking in?\",\n    \"video_name\": \"video7946\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is talking on the tv news?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what is an woman doing?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is guy in formal wear doing?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl in blue dress doing?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a news program with a woman doing?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a blonde woman doing?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a blue jacket doing?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a short hair brunette woman doing?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing color cloth speaking on with other guy in blue speaking discusing person standing watching?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing color cloth speaking on topic with other guy in blue speaking discusing watching?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is speaking to a man in a room full of computer monitors the man and woman are wearing dress attire?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing speaking on topic with other guy in blue speaking discusing person standing watching?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who wear answering to a news editor?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is an woman speaking to a man in a room full of computer monitors the man and woman are wearing?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"attire\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing sitting?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who does a woman wearing a dark colored jacket talk to?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a short hair brunette woman talking to a man in a blue suit during?\",\n    \"video_name\": \"video7947\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman is in the kitchen doing?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman giving?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"who is preparing a meal with red beans and rice on the bottom and lettuce and cheese on top?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking beans and rice in a pastery shell?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"where is a lady preparing a meal with red beans and rice on the bottom and lettuce and cheese?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"who is explaining how to cook a certain recipe?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady preparing with red beans and rice on the bottom and lettuce and cheese on top?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"who shows some food in a kitchen?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing how to make a bean and rice dish?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cooking in a pastery shell?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman holding?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is eating a bread?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making food in a kitchen?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is holding a baked potato?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving a cooking tutorial?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman show in a kitchen?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman show some food in?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a person making in a kitchen?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a lady preparing a meal with red beans and rice on the bottom and lettuce and cheese on?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"what is a person making food in?\",\n    \"video_name\": \"video7948\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"when do waves roll in?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"who is being recorded?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is in water?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person near?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman watching?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman in?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing near a crashing wave?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a wave doing?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is breaking?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"who is watching water?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is wearing little clothes by the ocean?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is near the water?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stands shirtless in front of a waterfall?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who s back is superimposed onto a scene of a waterfall?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what did female dancing in the moonlight on?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is putting clothes back on in the video?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman wearing little clothes by?\",\n    \"video_name\": \"video7949\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who screams?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who was horrified?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who looks terrified?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a grandmother doing?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl seeing?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"ghost\"\n  },\n  {\n    \"question\": \"what are a girl and an old woman doing?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what appears in a dark room?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"who is seeing a ghost?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a creepy creature scare a girl in?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"who looks at a window?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is sat in bed?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks to a younger woman?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is folding up a baby stroller?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks to a frightened young girl?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does something come out of the curtains by?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"who shows some scenes from a movie?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what comes out of the curtains by the window?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking to a child over a scary movie?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"grandmother\"\n  },\n  {\n    \"question\": \"what is a girl sat in?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a girl look at?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"who a person is folding up?\",\n    \"video_name\": \"video7950\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what are guests on the ellen degeneres show doing?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is four people are at a talk show with a kiddie doing?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is among four men one of them doing?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"heat\"\n  },\n  {\n    \"question\": \"what is a group of three people doing?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is ellen degeneres and three men gather around a black five gallon drum doing?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is two men on the ellen show demonstrate a science experiment doing?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"deal\"\n  },\n  {\n    \"question\": \"how many people are at a talk show with a kiddie swimming pool and a steel 55 gallon drum?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"who opens up large metal drum for chemistry experiment?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do ellen degeneres and three men gather around a black five gallon drum pouring into a children s wading?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are guests on the ellen degeneres show demonstrating?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"what do some men on the ellen show conduct an experiment with?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do some men on the ellen show conduct with some water?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what does a man open up large metal drum for?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what does a man open up drum for chemistry experiment?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what is on stage of the ellen show?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"tub\"\n  },\n  {\n    \"question\": \"what are doing something in the studio?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who does an experiment on a day time talk show?\",\n    \"video_name\": \"video7951\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what is an indian man talks about doing?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman in a red dress doing?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a disemobied hand doing?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is open?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"fridge\"\n  },\n  {\n    \"question\": \"what was kept?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"freeze\"\n  },\n  {\n    \"question\": \"what does a girl fall with?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"blood\"\n  },\n  {\n    \"question\": \"what does a girl roll in?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"who falls with blood?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is rolling into the steps?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a person put with something on it?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what does a person put a plate with on it?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who rolls in step?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a bloody person roll down the steps a deep freeze is shown with in it?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what was kept inside while a girl rolls in step and falls with blood?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what did a disemobied putting brain into a deep freeze container?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what did a disemobied hand putting into a deep freeze container?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"brain\"\n  },\n  {\n    \"question\": \"what is kept on the deep freeze portion a lady falls from the step with full of blood?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"where is a male narrates to a video of a device that looks like an oven but actually a deep freeze with an ice cube tray?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"bottom\"\n  },\n  {\n    \"question\": \"who opens the front door of a deep freeze?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who rolls down a large flight of steps?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has put something on a plate into a deep freeze?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about putting a plate in a deep freeze?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rolls down the steps a deep freeze is shown with ice cubes in it?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes how a brain is placed on a disposable plate and put in a freezer?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a bloody person roll down the steps is shown with ice cubes in it?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"freeze\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is putting a plate of brains into a oven with a tray of ice cubes underneath?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts a plate with something on it?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the woman in the red dress fall to?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what has a man put something on into a deep freeze?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what has a man put on a plate into a deep freeze?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is showing something that freezes stuff?\",\n    \"video_name\": \"video7952\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person adding to a dish in a glass bowl?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is some stuff put on then salt finally a gravy is put into it?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does the man add to the ground meat in the clear glass bowl?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"harissa\"\n  },\n  {\n    \"question\": \"what does a person add to a food dish in a glass bowl?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"what bowl with food in it and other ingredients being added to it?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what is put into salt and red paste?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"gravy\"\n  },\n  {\n    \"question\": \"what is a person mixing with harissa sauce and salt in a bowl?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is someone adding the ingredients in the bowl in?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is someone adding the ingredients in in a kitchen?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a bowl of meat to which added?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"harissa\"\n  },\n  {\n    \"question\": \"what is put on the bowl then salt finally a gravy is put into it?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what is a glass bowl is sitting on a table with a teal blue tablecloth inside the glass bowl a pink rose colored?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"substance\"\n  },\n  {\n    \"question\": \"who is adding the ingredients in the bowl in a kitchen?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a glass bowl doing?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"compile\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person mixing ground beef with harissa sauce and salt in?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person adds salt and red paste into a bowl doing?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"who is giving instructions for how to make meat with pasta sauce?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is adding ingredients into a clear glass bowl on a table top?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is mixing ground beef with harissa sauce and salt in a bowl?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who adds salt and harissa to the ground meat in the clear glass bowl?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are preparing a person is compiling colorful ingredients for a dish?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who adds salt to a food dish in a glass bowl?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who adds salt and red paste into a bowl containing meat?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is adding salt and sauce to a dish in a glass bowl?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who are cooking ingredients preparing is compiling colorful ingredients for a dish?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a glass bowl is sitting on a table with a teal blue tablecloth inside the glass bowl rose colored food substance?\",\n    \"video_name\": \"video7953\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what is two males doing?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is giving an interview to a young woman?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is an indian woman doing?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man and woman talk while doing?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man an a woman doing?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talk while sitting outside?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing in front of a tree talking?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people talking about?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what is a woman explaining under?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"who is a woman talking to?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did the woman speak with?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man giving to a young woman?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are a man an a woman talking under?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what are a man and woman having outside?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is explaining under a tree?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking outside?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who spoke with the man?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to a man?\",\n    \"video_name\": \"video7954\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is several people doing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are a bunch of different people doing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a series of people eat something that doing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"disgust\"\n  },\n  {\n    \"question\": \"what is different couples doing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is different pairs of people doing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is groups of people taste test spam while doing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are persons doing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is several people taste doing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what do several people taste testing?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a couple try?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are a bunch of different people trying for the first time?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are people trying that doesn t look good?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are persons eating cutlet on?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what are persons eating on the plate?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"cutlet\"\n  },\n  {\n    \"question\": \"what do various couples try?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what tries some food?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is eating food?\",\n    \"video_name\": \"video7955\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many women are a man and woman speaking then begin to talk?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is woman talking with?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman having?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is talking with man?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many people are talking?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about poetry and love?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two woman doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an old clip with beautiful woman doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a hat doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video7956\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in the depot secssion the girl doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is the girl in blue t-shirt with cap doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is you-tuber michelle phan doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl in blue dress doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl in blue shirt and hat doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady in a blue shirt winter hat with a gold necklace doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl with a gray beanie doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl with a gray hat doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman with dark hair doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl in a navy blue shirt and ash hat doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing standing speaking?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a woman in a gray beanie doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is telling the school item features in the depot secssion?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing color cloth kissing with explayning on topic displaying on screen?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing color cloth kissing with hand explayning on displaying on screen?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what do a girl in blue dress wearing kissing with hand explayning on topic displaying on screen?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a girl with a gray beanie talking to?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman in a gray beanie showing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a girl with a gray hat showing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who explain to win all the prize?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do the girl explain to win?\",\n    \"video_name\": \"video7957\",\n    \"answer\": \"prize\"\n  },\n  {\n    \"question\": \"what does man on skis quickly plummet down?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"slope\"\n  },\n  {\n    \"question\": \"who is skiing down a steep long snow covered mountain as reggae music plays?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are two people skiing down?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who is skiing down?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what watch?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is skiing down an extremely steep snow mountain?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who skis down a steep mountain covered in bright white snow?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is skiing down a steep mountainside there is significant snow all around?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"where does a person celebrate with another person?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"who is skiing on the mountain filled with snow?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is skiing down the edge of a mountain causing snow to go down the mountain too?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who celebrates with another person at the end?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many people are skiing down a snowy mountain?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man skiing down very large mountain of?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"who is sliding down a steep ski slope?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is skiing down very large mountain of snow?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the person rides down the snow cover?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is a person skiing down a steep mountainside there is all around?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"who does a person celebrate with at the end?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person skiing down there is significant snow all around?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"mountainside\"\n  },\n  {\n    \"question\": \"what does a person celebrate with another person at?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what is someone skiing down the edge of causing snow to go down the mountain too?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"how many people are extreme downhill skiing down untouched mountains?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who quickly plummets down slope?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people enjoy doing?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"snowboard\"\n  },\n  {\n    \"question\": \"what is two people are extreme downhill doing?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is a man in red doing?\",\n    \"video_name\": \"video7958\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is an indian man making on a stage?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"announcement\"\n  },\n  {\n    \"question\": \"when is an indian man making an announcement?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who makes an announcement in a microphone?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making an announcement on a stage?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man call out a young girl s to walk onto the stage?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"name\"\n  },\n  {\n    \"question\": \"when does a man call out a young girl s name to walk?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who does a man call out s name to walk onto the stage?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what cheer a little girl who won a prize?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who calls out a young girl s name to walk onto the stage?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a large crowd?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something in a stage?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an indian man singing to?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are cheering in multiple places?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are going on?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what is a man singing to?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are people celebrating in?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"mood\"\n  },\n  {\n    \"question\": \"who is singing to a crowd?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing to the crowd?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is clapping?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on stage singing?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is a video of people doing?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what are crowds doing?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a man in glasses doing?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what is a crowd of people doing?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man on?\",\n    \"video_name\": \"video7959\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a group of boys and girls doing?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people kids doing?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is running around?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a room full of backup dancers doing?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what preforms a song?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a man get down with then throws it away?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing on stage?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a band preform?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who gets down with a guitar then throws it away?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar while dancing with many other people?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing while dancing with many other people?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing the guitar on stage?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man playing the guitar?\",\n    \"video_name\": \"video7960\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar while another man sings?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are a band of singers and guitarists performing?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man in cowboy hat play beside his long haired companion?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is playing on a stage for an audience?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what did a musical show present by artists for?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a man playing while another man sings?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"how many men playing guitar on stage?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what presented by artists for the audience?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who play guitars on stage?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"when do country musicians play guitars?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a band of singers and guitarists doing?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what performs on stage?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"when does a country band perform?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performing on stage?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing guitars?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"when do two men playing guitar?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when is a band performing?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what did the musicians play?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is singer singing?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what performs live?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7961\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a pirate doing?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a pirate doing?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a cannon ball went doing?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is man dressed as pirate tries to retrieve lantern doing?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is jack sparrow doing?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"reach\"\n  },\n  {\n    \"question\": \"what is captain jack sparrow doing?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is jack sparrow doing?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a pirate doing?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a pirate drawing?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what is running over the ground?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"steel\"\n  },\n  {\n    \"question\": \"what does captain jack try to pick up a lantern with?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what is a steel ball running over?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what did capt jack sparrow pull out?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who has long hair?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"johnny\"\n  },\n  {\n    \"question\": \"what does johnny depp have?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is drawing his sword?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"who is pulling out his sword?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"what went rolling by?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"cannon\"\n  },\n  {\n    \"question\": \"what is a pirate pulling out?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what did jack sparrow reaching for a lantern with?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what does man dressed as pirate try to retrieve lantern using?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what does man dressed as pirate try to retrieve using his sword?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"lantern\"\n  },\n  {\n    \"question\": \"what does a pirate man try to lift a lantern with his sword while on?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is captain jack sparrow using to pick up a lantern?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who tries to pick up a lantern with his sword?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"what is using a sword to pick up a lantern?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"who tries to lift a lantern with his sword while on a boat?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"who sparrow reaching for a lantern with his sword?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"jack\"\n  },\n  {\n    \"question\": \"who is trying to lift something up?\",\n    \"video_name\": \"video7962\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"what cuts a copper colored pipe that is being pushed out from a wall?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a fan with four blades expelling a rod from from the center of the fan?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"projection\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a fan with four blades doing?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"circulate\"\n  },\n  {\n    \"question\": \"what is a soldering machine doing?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what drills holes in a section of metal piping?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a machine doing?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a machine doing?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the machine is automatically doing?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is there is a machine doing?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what a machine that sprays out some sort of?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is a fan with four blades expelling from a projection from the center of the fan?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"rod\"\n  },\n  {\n    \"question\": \"what burns holes in a copper tube then cuts it?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what do a machine hole with easly?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"pipe\"\n  },\n  {\n    \"question\": \"what makes the flute?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is seemingly making a copper pipe with holes in it?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a machine making hole to?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"pipe\"\n  },\n  {\n    \"question\": \"what is a machine seemingly making with holes in it?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"copper\"\n  },\n  {\n    \"question\": \"what is making equally separated holes on a pipe and then cutting someone?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what sprays out some sort of paint?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is presenting how to machine works and its function?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what holed a pipe with easly?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what marks on a brass pipe?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is making many holes in a pipe and than cutting it?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a machine making to some pipe?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is making hole to some pipe?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what does some machine make?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is cutting hole?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is presenting how the new machine works?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is automatically cutting the rod while making designs on it?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what cuts the flute once the length is reached?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what does some machine cut once the length is reached?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is reached?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"length\"\n  },\n  {\n    \"question\": \"what spins around?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what emerges then falls down?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"pole\"\n  },\n  {\n    \"question\": \"what is a machine operating?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is a machine cutting?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is cutting wood?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is operating hole?\",\n    \"video_name\": \"video7963\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what are the couples doing?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is a boy watching?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do woman have?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"intercourse\"\n  },\n  {\n    \"question\": \"what does a boy watch two people have?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"sex\"\n  },\n  {\n    \"question\": \"who is watching a man?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do clips of the show?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is a boy looking at?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who watches two people have sex?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who drinks from a grog?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who have intercourse?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding a woman tightly?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drink from?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"grog\"\n  },\n  {\n    \"question\": \"who is a man holding tightly?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are fighting together?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who spies two people getting passionate?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who watches a woman get assaulted in a cave?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is looking at a man?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"how many people does a boy watch have sex?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a man being forceful with?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being forceful with a woman?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boy watch a woman get assaulted in?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"who does a boy watch get assaulted in a cave?\",\n    \"video_name\": \"video7964\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people in?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking while driving?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drove?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his car?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a guy talk about?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does guy drive?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who spoke as he drove?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person driving on road?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man in sunglasses driving?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive on the highway?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive a car on?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"who is driving a car on road?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drives a car on the highway?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks while driving a car on an interstate?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person driving a car on?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man talks while doing?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man in sunglasses doing?\",\n    \"video_name\": \"video7965\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is being sliced?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a guy slice?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is cutting a potato?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices a potato?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is slicing potatoes?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates how to cut potatoes?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to thinly slice potatoes?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man in the green shirt doing?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what does a man slice into equal pieces?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man cutting a potato in a kitchen with?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who slices potato into equal pieces?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cutting in a kitchen with knife?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man cutting a potato in with knife?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is cutting a potato in a kitchen with knife?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices a potato in the kitchen?\",\n    \"video_name\": \"video7966\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man had a long beard doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news interviewing a person on?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a man with very long beard talking in?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is a news interviewing on screen?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is always coving some thing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is news always coving?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a guy in beard doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what is always breaking?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a person in white color dress doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bald man with a beard talks on a street while doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is interviewing a person on screen?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is news is always doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is guy with beard doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy in beard doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what did a guy in beard delivering news from to a new channel?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man with very long beard doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy on the news doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman news anchor doing?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what did guy with beard talking to a news room from?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what did a guy in beard delivering from ground to a new channel?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do a person in white color dress wearing cloth with long beard standing speaking on road many persons beside and still image girl displaying on?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who had a long beard is talking in the tv channel?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the latest news in the country?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man have is talking in the tv channel?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"beard\"\n  },\n  {\n    \"question\": \"what do a person in white color dress wearing cloth with long beard standing speaking on many persons beside and still image girl displaying on screen?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who with beard talking to a news room from ground?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does bald man in a white jackets speak into while a news ticker scrolls beneath him?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who does a reporter with a large beard speak about?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"radicalization\"\n  },\n  {\n    \"question\": \"what a female news reporter interviews a strange bearded man about?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"terrorism\"\n  },\n  {\n    \"question\": \"who talks about jihadi john and radicalization during an interview?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who beard talking from ground to news room?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what do a person in white color dress wearing with long beard standing speaking on road many persons beside and still image girl displaying on screen?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what scrolls beneath a bald man with a beard?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"ticker\"\n  },\n  {\n    \"question\": \"what did guy in beard talking from ground to?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what did guy in beard talking from to news room?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who needs less beard and more hair on top?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about jihadi john and radicalization during?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who beard delivering news from ground to a new channel?\",\n    \"video_name\": \"video7967\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is there is a man in black doing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is chef gordon ramsey is in the kitchen slicing and doing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a peson chops the garlic into small slices and cuts the brocoli into a medium size for doing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is gordon ramsey doing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is famous chef gordon ramses is in his own personal kitchen doing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man a knife doing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what a man to make a dish?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"broccoli\"\n  },\n  {\n    \"question\": \"what is chef gordon ramsey in slicing he s preparing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is ramsey doing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"who does a person cut?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"brolic\"\n  },\n  {\n    \"question\": \"who will gordon ramsey make is chopping up vegetables for a dish?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"ramsey\"\n  },\n  {\n    \"question\": \"what a man broccoli to make?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who will make ramsey is chopping up vegetables for a dish?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"who cuts the green brolic?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who broccoli to make a dish?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts ans slices the potato?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person in black t-shirt doing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who ramsey is in the kitchen cutting up vegetables to use in a dish he s preparing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"what vegetables with knife to prepare a new dish?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"who did a foul mouth demonstrates and describes a vegetable recipe?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who ramsay cuts garlic in to fine pieces with his sharp knife?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"who ramsey is in the kitchen slicing he s preparing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"who cuts up vegetables in the kitchen?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what mouthed chef demonstrates and describes a vegetable recipe?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"foul\"\n  },\n  {\n    \"question\": \"who is preparing gordon ramsey is cutting up vegetables?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"who is slicing the vegetables on teen slices in the kitchen?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing gordon ramsey is talking about the food?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"who cuts up vegetables on a kitchen counter?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"who slices garlic and broccoli into smaller pieces on a cooking show?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating thinly slicing garlic then slicing tender broccoli in half on the diagonal?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what chops the garlic into small slices and cuts the brocoli into a medium size for cooking?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"peson\"\n  },\n  {\n    \"question\": \"what is chef gordon ramsey in cutting up vegetables to use in a dish he s preparing?\",\n    \"video_name\": \"video7968\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a man play in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man play in a car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man using music equipment in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man using a tablet in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man play electronic music in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man shown making using different electronic items?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man making on a music synthesizer?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is playing music with electronic equipment in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays electronic music in a car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is creating music in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a tablet in the car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using music equipment in a car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play music in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is shown making music using different electronic items?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man make music in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is playing an instrument in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in a car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man playing with electronic equipment in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man using in a car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who is making a song?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man make in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a person creating music in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man singing in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man listening to?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who prepares his equipment in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does the guy prepare in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who is singing in the car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man using in the car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"tablet\"\n  },\n  {\n    \"question\": \"what does the guy prepare his equipment in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who plays music in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who djs in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing an instrument in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is the man playing music with electronic equipment in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person creating in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is listening to music?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"instrument\"\n  },\n  {\n    \"question\": \"what is the man playing music with in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who makes music in his car?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was pressing buttons?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what did a man dj in?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what was it doing?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"pres\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is making music on a music synthesizer?\",\n    \"video_name\": \"video7969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does children s watching?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what are two kids watching on tv?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are two kids doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many kids are sitting in a floor?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are children sitting in watching a cartoon on television?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"how many kids are watching something on tv?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do kids giggling at a show on?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what are children sitting in the floor watching a cartoon on?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what are children sitting in the floor watching on television?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are two kids sitting on watching television?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are two kids sitting on the floor watching?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"how many kids are laughing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids are playing each other?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many children are watching tv?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids are sitting on the floor watching television?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two children doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are two kids sitting in?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is video of some children doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is two young girls doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is two toddlers doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is two small asian children doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two kids doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"how many young children laugh at a television show?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is children s doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"giggle\"\n  },\n  {\n    \"question\": \"what is two child doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7970\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who celebrates a present opening?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what do kids excitingly opening up tear into?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"who is opening gifts?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when does kids opening present?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"what are kids playing in?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what are little kids opening?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"gift\"\n  },\n  {\n    \"question\": \"what does a kid celebrate?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"opening\"\n  },\n  {\n    \"question\": \"what are children opening?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"what do some kids open?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"who is screaming loudly?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are the children opening?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"when are young people opening gifts?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is a clip of young girls and boys doing?\",\n    \"video_name\": \"video7971\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"who is showing off his video game skills?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who let s play?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy dive into a body of water in?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is commentating while playing minecraft?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hints to a video game?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who jumps from the ledge and lands in the water?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who talks over his gameplay footage of a video game?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the game minecraft with commentary?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dives into a body of water in minecraft?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who jumps into the water on minecraft?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person jump into on minecraft?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who shows how a video game works?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving instruction about a spatial animation?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person jump into the water on?\",\n    \"video_name\": \"video7972\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a person cookng?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person telling about?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone frying?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is frying food?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is telling about food?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone cooking in?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a person fry?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is fried dumplings are removed from the oil they re doing?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is showing how to cook?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking in hot oil?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person place on a plate?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone removing fried foods from?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is removing pieces of cooked food from a boiling pot?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a fried treat over the stove?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is placing pieces of cooked food on a decorative plate?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person removing pieces of from a boiling pot?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are fried dumplings removed from they re cooking in?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who places some food on a plate?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person placing pieces of on a decorative plate?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is spooned onto a plate?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is putting brown some food on a plate?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who describes how to brown some food and cook it?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fries balls in oil?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person place some food on?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is a cooked dish spooned onto?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is someone putting brown some food on?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is removing fried foods from oil?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone putting on a plate?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cookng fried food?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to make cheese kurds?\",\n    \"video_name\": \"video7973\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are a couple doing?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who yells at men in a village?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is ripping off a man clothes?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who yells at two men?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are arguing in hindi?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is a woman ripping off?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking by the water?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a couple arguing in?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"hindi\"\n  },\n  {\n    \"question\": \"who is scolding people here?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who threaten men then they run away?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man walking by?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show two men running away from a woman?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men run away?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is she doing?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"scold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"rip\"\n  },\n  {\n    \"question\": \"what are a scene where a man and a woman doing?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a peace of hindu video doing?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is some people doing?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7974\",\n    \"answer\": \"scold\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is examining a cube?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to solve a rubiks cube?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining how to use a rubic s cube?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays a puzzle game?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person examining?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who is solving a rubik s cube?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays with a rubix cube?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does person working on rubrik s?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is someone solving a rubik s?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is someone solving s cube?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"rubik\"\n  },\n  {\n    \"question\": \"who is playing with a rubicks cube?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man solving a rubik s?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who explain how to play with cube?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a close-up of somebody doing?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"puzzle\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"examine\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video7975\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing the electronic guitar?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do a boy play the guitar in?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a boy playing guitar at?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what does a child play in a room?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what do a boy play in his room?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a person playing indoors?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy in?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"library\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a kid play?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing the guitar indoors?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a young boy playing?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a child play guitar in?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a boy playing at home?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is in the library?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who plays guitar in a room?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy in a long sleeve shirt doing?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing guitar at home?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy in a long sleeve shirt playing?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who rocks out on a guitar?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing on an electric guitar?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"where is a boy playing guitar?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who playing the guitar in his room?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing an electric guitar?\",\n    \"video_name\": \"video7976\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who explains the animation process?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"animator\"\n  },\n  {\n    \"question\": \"who draws characters?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"cartoonist\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon character?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flipping through his sketches?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing pictures?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does animator explain?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is drawing a picture?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is a man drawing?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who draws head?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an artist drawing?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what does a man draw?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who is sketching?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is drawing?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an artist doing?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man demonstrates how he s doing?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"illustrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon of a kid?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing in a piece of paper?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who is a man drawing a cartoon of?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is a person drawing on a piece of paper?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what demonstrates how he s illustrating a cartoon?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing characters using a pencil?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flipping through a sketch book?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who flips between pages?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"cartoonist\"\n  },\n  {\n    \"question\": \"who held pages of drawings?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is drawing a person on a piece of paper?\",\n    \"video_name\": \"video7977\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does an intense double there is a white team and a blue team?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what do a group of people play a rough game of?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"what did the men hit the birdie over the net on?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what do two teams play in match with the blue team scoring a point?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"what are men in white and blue shirts playing doubles?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are a team with blue uniforms playing with a team in white?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"badmitten\"\n  },\n  {\n    \"question\": \"what do the men an intense doubles badminton match is going on between the blue and white jersey players in the stadium?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"rally\"\n  },\n  {\n    \"question\": \"what is one in blue jersey and the other in white jersey playing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"what do two teams playing shuttle match and the blue team win?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what does men s tournament is exciting for the audience?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"what do a white and blue color dress wearing clothes player playing in stadium audience watching displaying on screen?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"batmanton\"\n  },\n  {\n    \"question\": \"what do a white and blue color dress wearing clothes player playing batmanton game in watching displaying on screen?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what do a white and blue color dress wearing clothes player playing batmanton game in stadium audience watching displaying on?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what match in the philippines that resulted in a bad call by the ref?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"what does men s double shuttle badminton tournament is exciting for?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does men s double shuttle badminton is exciting for the audience?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"tournament\"\n  },\n  {\n    \"question\": \"what is one in blue jersey and the other in white jersey playing doubles?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"what does an intense double match of there is a white team and a blue team?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are a team with blue uniforms playing badmitten with in white?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"who do a group of asian ping standing on the ping pong table?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"how many teams play in a badminton match with the blue team scoring a point?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two doubles teams play badminton by doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"volley\"\n  },\n  {\n    \"question\": \"what is men s double shuttle badminton tournament doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"excite\"\n  },\n  {\n    \"question\": \"what are a team with blue uniforms doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two teams of two doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men in white and blue shirts doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two men in blue shirts play a fast-paced game of badminton against a team of men doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a white and blue color dress wearing clothes player doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two teams doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is one in blue jersey and the other in white jersey doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two teams play in a badminton match with the blue team doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is a group of asian ping pong players doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is two teams of two people play badminton on a green court with one player doing?\",\n    \"video_name\": \"video7978\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is boxing in a ring?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boxer hitting another boxer in?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"when are two boxers fighting?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do wrestling show in?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are people boxing in?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is a man boxing in?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are two men boxing in?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is given?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"what is remembered?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"fit\"\n  },\n  {\n    \"question\": \"what is displayed?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"what show in the ground?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are two men boxing each other in?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who is a boxer hitting in his face?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"what is a boxer doing?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two boxers doing?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"how many men boxing in a ring while a man narrates?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boxers are fighting inside the ring a sports match?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are engaged in a boxing match?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are boxing each other in a ring?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"how many men are in a ring boxing?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking about a boxing fight?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a boxing match?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes a former match of his?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"what did two men box in while a man narrates?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who is hitting another boxer in his face?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"how many boxers are fighting on the stage?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are boxing in the ring?\",\n    \"video_name\": \"video7979\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who performs cpr on an animal?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man give to mouth?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who pets an animal?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a man try to resusitate?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what shows a man performing cpr on a small child?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"surveillance\"\n  },\n  {\n    \"question\": \"what did a man giving a little girl cpr at?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"who does man lay on a counter in a grocery store?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who lays a baby on a counter in a grocery store?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was caught on tape?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"incident\"\n  },\n  {\n    \"question\": \"who tries to resusitate a little boy?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do some one lift in camera?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what do some one lift the baby in?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is cctv footage of a man doing?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is a surveillance camera shows a man doing?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is surveillance footage of people doing?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who do people try to help?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what was the incident caught on?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"tape\"\n  },\n  {\n    \"question\": \"what does a man perform cpr on?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what a person pets?\",\n    \"video_name\": \"video7980\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what was the man driving?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car moving down?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"alleyway\"\n  },\n  {\n    \"question\": \"who was driving a car?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who just made a turn?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving down?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is a car?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"driving\"\n  },\n  {\n    \"question\": \"what did a man just make?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a movie scene where a man doing?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was the man doing?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is movieclip of man doing?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is driving down the street?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"roam\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did a man roam by car?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man driving around?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"who is driving around town?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what scene where a man driving a car on an empty street?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is driving a car through a deserted street?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a car through a city street?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a vehicle in a movie?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a vehicle down a road?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man roam the street by?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a car in the city?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person drive a car down?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man driving through a deserted street?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive a vehicle down?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a person drive down the road?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a car down the road?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man drive through a city street?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive down a road?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man driving a vehicle in?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a man driving a car in?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is a man driving in a movie?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who roaming the street by car?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is moving down a narrow alleyway?\",\n    \"video_name\": \"video7981\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man in looking out the window?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does man look out?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"who is looking out the window?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the house and a man see?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what does a man look out?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"who runs out to his car?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man slam down?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what is a man rushing to?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man looking out of?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is a man looking out?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what does man run out to?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks out the window?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks out a window?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks outside a house to a car?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks out the window slams his drink on to the counter and runs outside?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks across a room to a window then goes outside?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is looking outside the window of his house?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sets down his glass to look at a car?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking through his house looking out the window?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in his house looking out the window?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man walking through looking out the window?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is rushing to his car?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slams his glass down?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man walking through looking for something?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who then walks outside toward his car?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking out of his window?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking out his window?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs outside to the car he s just seen through his living room window?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking through his house looking for something?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man look out slams his drink on to the counter and runs outside?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is a man is in his house doing?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7982\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is filmed?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"integra\"\n  },\n  {\n    \"question\": \"who is recording inside the car?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many doors did the car have?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what does a robotic woman s is describing how to contact pictures?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what that is for sale being shown?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"integra\"\n  },\n  {\n    \"question\": \"who s voice is describing how to contact pictures?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a acura integra that for being shown?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"sale\"\n  },\n  {\n    \"question\": \"what is being shown via a slideshow of pictures?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is an acura integra being advertised for in florida?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"company\"\n  },\n  {\n    \"question\": \"what is showcased for sale?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"who is being advertised for a company in florida?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"integra\"\n  },\n  {\n    \"question\": \"who describes an automobile that is for sale?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"where is an acura integra being advertised for a company?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"florida\"\n  },\n  {\n    \"question\": \"who is narrating an advertisement for a 1997 acura integra?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is being displayed?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is an acura integra being advertised for a company in?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"florida\"\n  },\n  {\n    \"question\": \"who is explaining about a car?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is presenting a gray car?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a woman presenting?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does the review about?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person explaining about?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what had four doors?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person recording inside?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a silver car showcased for?\",\n    \"video_name\": \"video7983\",\n    \"answer\": \"sale\"\n  },\n  {\n    \"question\": \"who reviews a carry on bag?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about on bag?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"who is holding a backpack?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing a backpack?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who shows off a product?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman holding?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"backpack\"\n  },\n  {\n    \"question\": \"what does a woman show off?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the lady doing?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"pack\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what was blue?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"everything\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the lady packing?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"luggage\"\n  },\n  {\n    \"question\": \"what is a girl showing?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"backpack\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video7984\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who poses for pictures?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who salman khan with his heroin?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what pose for cameras?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"bollywood\"\n  },\n  {\n    \"question\": \"who is posing for pictures?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"what is a woman giving poses for?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what do film actor salman khan with?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"heroin\"\n  },\n  {\n    \"question\": \"who is standing on the red carpet?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are being taken on the red carpet?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving poses for photographs?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does woman dressing sari taking?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what does a woman in an orange sari pose for?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who sari taking picture?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a celebrity doing?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video7985\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being filmed?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being displayed?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is a guy driving?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"acura\"\n  },\n  {\n    \"question\": \"what review video?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is parked?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is white with four doors?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about his car?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what do new car in the show?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt and glasses doing?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is discussing the type of car he drives?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a blue shirt talk about?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving an acura?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video7986\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a man taking a picture of with a umbrella?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what shares moments driving taking photographs?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what do a boy and girl driving a car on road boy taking photo in mobile and girl sleeping on boy lap displaying on?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who takes a picture of a girl or girlfriend?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shares moments sitting together on a park bench?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"where are some people in a car driving?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"where do man driving car with women a women sleeping on a guys lap?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what described romantic couple romance each other in the park and car?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is taking a picture of a woman with a umbrella?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking a picture of a woman with?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"umbrella\"\n  },\n  {\n    \"question\": \"what do man driving car with women a women sleeping on a guys lap in?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what are a man and a woman having?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving car and doing?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a couple shares moments together doing?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"spend\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a boy and girl doing?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some people in a car doing?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"when are a man and a woman spending together?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is a man spending with a girl in the car then by the water and on a park bench?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what does a couple drives car take photos and dates on?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"who is a man spending time with in the car then by the water and on a park bench?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are cuddling on a park bench?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is driving sitting on a bench together?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and woman sitting on?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what are some people in a car driving in?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is a man spending time with a girl in then by the water and on a park bench?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are taking pictures outdoors?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is driving taking pictures?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are riding around in a car?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a young couple riding around in?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is spending time with a girl in the car then by the water and on a park bench?\",\n    \"video_name\": \"video7987\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man cuts a sausage on a doing?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who took a sausage off of the grill?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what sausage on cutting a recipe?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting sausage and cuts up?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting meat?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man reviewing on?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"sausage\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a man prepare?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"saussage\"\n  },\n  {\n    \"question\": \"what is a man cutting up?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"sausage\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man preparing?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what was done?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"sausage\"\n  },\n  {\n    \"question\": \"what is prepared?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is reviewing on the sausage?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man cut sausage and cuts down?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"middle\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who tests his sausage for doneness?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who prepares a saussage?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts a sausage on a cutting board?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what sausages in the kitchen with a knife and chopping board?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is using a hair straightener to pick up bacon?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man cooking sausages in with a knife and chopping board?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who cuts sausage and cuts down the middle?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man take a sausage off of?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"who is cutting a sausage to check if it is cooked through?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cutting to check if it is cooked through?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"sausage\"\n  },\n  {\n    \"question\": \"what does a man cut on a cutting board?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"sausage\"\n  },\n  {\n    \"question\": \"what open to see if it s cooked all the way through?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is someone using to pick up bacon?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"straightener\"\n  },\n  {\n    \"question\": \"what did a man take off of the grill?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"sausage\"\n  },\n  {\n    \"question\": \"what does a man cut down the middle?\",\n    \"video_name\": \"video7988\",\n    \"answer\": \"sausage\"\n  },\n  {\n    \"question\": \"what do kids react to?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do kids eat?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what are child eating?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"piece\"\n  },\n  {\n    \"question\": \"what are children eating?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what was the boy eating?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what was the boy doing?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who was eating something?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do children eat a piece of?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is eating?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are child doing?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a young boy and girl doing?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a girl in a classroom doing?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what do children eat in a class room?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who are eating kfc leg piece?\",\n    \"video_name\": \"video7989\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is someone playing with?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is playing with animals?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is animals doing?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"what is playing with an animal?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person pointing at?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a man pretend to shoot with his fingers as the hamster plays dead he repeats with a dog?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"who pretends to shoot his pets with his fingers?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the hamster play dead a man repeats with?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is playing with a hamster and a pug?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are giving instruction to a dog to do something?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what plays dead a man repeats with a dog?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"what are some guy s giving to a dog to do something?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"instruction\"\n  },\n  {\n    \"question\": \"what are some guy s giving instruction to a dog to do?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who pretends to shoot a hamster with his fingers as the hamster plays dead he repeats with a dog?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing magic with pet animals?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does the hamster play dead repeats with a dog?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a video of someone having pets do?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"death\"\n  },\n  {\n    \"question\": \"what are some guy s giving instruction to to do something?\",\n    \"video_name\": \"video7990\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is responding a question in a meeting with other men?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did old colorize version of a black and white movie with?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"who speaks to another man in a room?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what were the men having?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"who is wearing glasses?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking to a woman in?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a man speak to another man in?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is a man talking to in a room?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a man speak to in a room?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in glasses doing?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"respond\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking to a woman in a room?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is older video of people doing?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is this is a man doing?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man responding in a meeting with other men?\",\n    \"video_name\": \"video7991\",\n    \"answer\": \"question\"\n  },\n  {\n    \"question\": \"who is eating sandwich while another man plays bagpiper?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who prepares some food on a plate?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who eats a muffin while bagpipes are being played?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays in front of a food van?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"bagpiper\"\n  },\n  {\n    \"question\": \"what is a person eating while another man plays bagpiper?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"who is playing a classic irish song?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man eat while bagpipes are being played?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"muffin\"\n  },\n  {\n    \"question\": \"what are people eating?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who plays bagpiper?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is other one enjoying?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are people buttering?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is eating a biscuit?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing music?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person prepare on a plate?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a person prepare some food on?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who bagpipes outside of a truck?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"who plays the bagpipes?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does another man play?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"bagpiper\"\n  },\n  {\n    \"question\": \"what is someone eating?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"biscuit\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video7992\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a car advertised for sale in?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"showroom\"\n  },\n  {\n    \"question\": \"what is a car advertised for in a showroom?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"sale\"\n  },\n  {\n    \"question\": \"what reviews a 1997 acura?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"dealer\"\n  },\n  {\n    \"question\": \"what s advertisement is displaying?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"acura\"\n  },\n  {\n    \"question\": \"what does acura car s is displaying?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what are used cars advertised for?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"sale\"\n  },\n  {\n    \"question\": \"what does a car dealer review?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"acura\"\n  },\n  {\n    \"question\": \"what does acura car s?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what is advertised for sale in a showroom?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who shows and talks about the perfoemance and style of the car model acura integra?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what plays to images of a silver car?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is acura car s advertisement doing?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7993\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a group of teenagers are upset and doing?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a very dramatic incident doing?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is some people are gathered on a stage and doing?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a group of teenagers doing?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"exchange\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is making an ugly face?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to other s?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the middle of a group of friends on tv?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what did the girl turn up?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what looks upset?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"when are some people gathered?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is speaking up in the middle of a group of friends?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did women look at each other then there is a group of people with one girl singing?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"glance\"\n  },\n  {\n    \"question\": \"who is looking at other s?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a group of people stand around in?\",\n    \"video_name\": \"video7994\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who family guy character sprays with water?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is peter spraying lois with?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"who is peter spraying with a hose?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"loi\"\n  },\n  {\n    \"question\": \"who is spraying louis with a hose?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"peter\"\n  },\n  {\n    \"question\": \"what is peter spraying louis with?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"who runs up the stairs?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"griffen\"\n  },\n  {\n    \"question\": \"what family guy character sprays woman with?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what show for small kids?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who sprays woman with water?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is peter and stewie griffen doing?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what is pete from family guy doing?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what is a cartoon man doing?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what is peter doing?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"who is spraying lois with a hose?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"peter\"\n  },\n  {\n    \"question\": \"who do peter and stewie griffen spraying with a water hose?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"loi\"\n  },\n  {\n    \"question\": \"who griffen spraying lois with a water hose?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"stewie\"\n  },\n  {\n    \"question\": \"who is jet out a water with pipe to a woman in bathroom?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets up the stair and pierces water on the womens face?\",\n    \"video_name\": \"video7995\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who gives advice on how to put on makeup?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is using make up set and used?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does young girl with black and pink tank top demonstrate?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what do a little girl taking bresh and make up?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"what is a very young girl in makeup holding?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"glitter\"\n  },\n  {\n    \"question\": \"what is a very young girl in a pink striped top giving?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a little girl wearing brown lined tops telling how to?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"eyebrow\"\n  },\n  {\n    \"question\": \"what is a very young girl in makeup doing?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a little girls doing?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"dip\"\n  },\n  {\n    \"question\": \"what is small girl doing?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a little girl in blue dress cloth a brush in her hand brush for make up beauty facial look doing?\",\n    \"video_name\": \"video7996\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who is confronting an animated character?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"villain\"\n  },\n  {\n    \"question\": \"who is reprimanding another character?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what do a dragon releasing in cartoon?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what plays to cartoon characters?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do a dragon releasing fire in?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who does classical music play to?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is a villain confronting?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a cartoon character reprimanding?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are talking to each other?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who talk with each other?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what is talking to little devils that fly?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are cartoon demons doing?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a villain doing?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"confront\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon horse man doing?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon horse doing?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"reprimand\"\n  },\n  {\n    \"question\": \"who is talking to an animated dragon?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what set things on fire?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what do disney characters set things on?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a dragon doing?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"release\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are acting?\",\n    \"video_name\": \"video7997\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are video game characters doing?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is this is an animated music video doing?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is there were three characters doing?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoons characters doing?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cartoon aliens doing?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a animation doing?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what does a cartoon accompany?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"trancy\"\n  },\n  {\n    \"question\": \"what do cartoon dance around in?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are dancing?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon aliens dancing in?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what show various scenes show characters and spaceships in an animated children?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are flying through space?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who sing about space?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do animated characters dance to?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who are dancing in space?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what accompanies a trancy song?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do cartoon characters sing about?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what are video game characters flying through?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what dance around in a video?\",\n    \"video_name\": \"video7998\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is filming?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a buffet of deep fried food is on display as a man enjoys doing?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what does a man enjoy explaining?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person is deep doing?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who enjoys explaining display?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is deep frying hot dogs in korea?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is trying deep fried food at a restaraunt?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is deep frying food in the open market?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a buffet of deep fried food on as a man enjoys explaining it?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who is showing different types of food?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man trying deep fried food at?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"restaraunt\"\n  },\n  {\n    \"question\": \"who gets fat off of greasy foods?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing different types of?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man trying at a restaraunt?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is talking about food?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is talking about street food?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows off deep fried foods?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks at different fried foods?\",\n    \"video_name\": \"video7999\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kicks a beehive?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is an animated woman holding?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what is a cartoon kicking?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"hive\"\n  },\n  {\n    \"question\": \"what does a cartoon character kick?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"beehive\"\n  },\n  {\n    \"question\": \"what the man punts?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"beehive\"\n  },\n  {\n    \"question\": \"what is kid throwing stone in?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is kid throwing in cartoon?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"stone\"\n  },\n  {\n    \"question\": \"what a group of characters punt a beehive into?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what does a cartoon character kick a bee hive into?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"distance\"\n  },\n  {\n    \"question\": \"what a group of characters punt into the sky?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"beehive\"\n  },\n  {\n    \"question\": \"what is an animated character kicking an object into?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is an animated character kicking into the sky?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"who is talking in the woods?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who punts the beehive?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is throwing stone in cartoon?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is kicking a bee hive?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon character kick into the distance?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"hive\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an animated character doing?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is an animated character doing?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animated woman doing?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is animated cartoon of guy doing?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a cartoon clip doing?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"who is kicking an object into the sky?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who kicks a bee hive into the distance?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what did a cartoon in which a guy kicks a bee hive into?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who kicks a bee hive like a football in a cartoon television show?\",\n    \"video_name\": \"video8000\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does game play of roddy s?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"mod\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who was enormously hung?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a sponge bob video game?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a character doing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game with spongebob doing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do kids playing a sponge bob?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a bunch of spongebobs doing?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"when does a video game crowbar point at spongebob and the kid?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"adventure\"\n  },\n  {\n    \"question\": \"what do kids playing a sponge bob version of?\",\n    \"video_name\": \"video8001\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is folding origami?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone for paper craft?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone folding a paper for?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person fold up paper to make?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person fold up to make a paper plane?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding the paper?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to fold paper?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person folding an 8x11 piece of?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man folding a piece of?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person folding a blue paper in?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there s someone doing?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is folding an 8x11 piece of blue paper?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what folding up a blue piece of paper?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper in half?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a blue paper in half?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folds up paper to make a paper plane?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what someone folding up a blue piece of?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a piece of paper creased down?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of in half?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a paper for paper craft?\",\n    \"video_name\": \"video8002\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woma adding lots of?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"what do a lady prepare a new one dish with?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"explanation\"\n  },\n  {\n    \"question\": \"what is a woma adding?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"what is person adding in the vegetable salad?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"what does a woman cooks assorted vegetables in a pot and add?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"what is being added to a colorful pepper stir fry in a wok on the stove top?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"who shows how adding chinese salt can enhance the flavor of a vegetable dish in the kitchen?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking some kind of food on a gas stove?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"woma\"\n  },\n  {\n    \"question\": \"who is adding food and spice to a hot skillet?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding some salt in the vegetable salad?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woma cooking some kind of on a gas stove?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking a vegetable in the pan?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who prepare a new one dish with explanation?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman chef adding to a hot skillet?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"spice\"\n  },\n  {\n    \"question\": \"what is being cooked in a black frying pan?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a cooking video with someone making stir?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is adding lots of salt?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"woma\"\n  },\n  {\n    \"question\": \"what does a woman show how adding chinese salt can enhance the flavor of a vegetable dish in?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woma doing?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen adds salt to a stir fry she doing?\",\n    \"video_name\": \"video8003\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who displays the games he has on his gaming system?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"what do different shots of video games don t appear to be?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what does a man discuss as he clicks on a screen shot of his television?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do different shots of video games appear on while a man speaks about how fun they are?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who speaks about how fun different shots of video games are?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing on an xbox one video game console?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is browsing a set of games on their console?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are compact discs of different movies placed nicely in?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"rack\"\n  },\n  {\n    \"question\": \"what are some animated pictures shown on?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what is at display along with the movie posters?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who discusses various video games as he clicks on a screen shot of his television?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing videogames that he hasn t tried different shots of video games because they don t appear to be fun?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a person playing video game try to sellect to play?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is talking about some games on the playstation 4?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing videogames that have come out with nintendo gold?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a man with serious face doing?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8004\",\n    \"answer\": \"browse\"\n  },\n  {\n    \"question\": \"what does news explain europe information along with food just good news shows?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"sloth\"\n  },\n  {\n    \"question\": \"what explains button shows viewers?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what offers subscription to bbc news explains and just good news?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is presenting some videos on his online channel?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do two images with text appear a sloth with a baby is hanging from?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what does an animal playing around with other aniamls on?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what did a person showing bunch of animal relate information on?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what did a person showing bunch of animal relate on the screen?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"who is describing his channel and videos for subscribers?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does bbc news offer to bbc news explains and just good news?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"subscription\"\n  },\n  {\n    \"question\": \"what does news explain shows viewers?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"button\"\n  },\n  {\n    \"question\": \"what does news explain?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"button\"\n  },\n  {\n    \"question\": \"what is a sloth climbing in?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is climbing in a tree?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"sloth\"\n  },\n  {\n    \"question\": \"what explains europe information along with food just good news shows baby sloth?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is the end of a youtube video doing?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"implore\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is this is an advertisement for doing?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"subscribe\"\n  },\n  {\n    \"question\": \"what is a group of baby animals doing?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two images with text appear a sloth with a baby doing?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a sloth doing?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is various videos are recommended based on doing?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what is on a red screen a video doing?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what highlights from two other youtube channels is shown exhorting the user to click on a red screen?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is there is an animal doing?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8005\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who flies above a minecraft area?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is flying around a red building?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"pig\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is commentating?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who flies around?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a video game plane doing?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the pig doing?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a video game plane flying over?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is this is someone doing?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who minecraft on a private server?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a computer online game?\",\n    \"video_name\": \"video8006\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is there is a blue jacket man doing?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is former ufc champion ronda rousey doing?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"dominate\"\n  },\n  {\n    \"question\": \"what is a female fighter doing?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is entourage cast has man doing?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"challenge\"\n  },\n  {\n    \"question\": \"what is a female boxer doing?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what are group of people having conversation on?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"training\"\n  },\n  {\n    \"question\": \"what are group of people having on training?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is directed by doug ellin?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what has man then entering ring?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"entourage\"\n  },\n  {\n    \"question\": \"who do makeup explain?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what explain the lady?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what tutorial?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who fights?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is the trailer for the film entourage shows turtle doing?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who wrestles?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is being released in 2015 summer?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"entourage\"\n  },\n  {\n    \"question\": \"what are having conversation on training?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is beating up a man in the ring while people watch?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the goofy guy in the blue hoodie try to run on rhonda rousey and fails?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who gets beat up by a female mixed marshal arts fighter?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who challenges a muscular woman to a wrestling matches and loses?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is entourage comedy movie being released in 2015?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"summer\"\n  },\n  {\n    \"question\": \"what has man challenging female mma fighter?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"entourage\"\n  },\n  {\n    \"question\": \"who is former ufc champion ronda rousey dominating from the entourage set?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"randomer\"\n  },\n  {\n    \"question\": \"who does the woman with muscular body hit down?\",\n    \"video_name\": \"video8007\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what over tells about zynga being offered 2 billion buyout?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does rovio refuse zynga s buy out?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"dollar\"\n  },\n  {\n    \"question\": \"what does a dog sillouette appear with text underneath it?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what appears?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what does rovio refuse s 2 billion dollar buy out?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"zynga\"\n  },\n  {\n    \"question\": \"what does a dog sillouette appear with text underneath it shrinks?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"who is speaking about social networking company?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining a business offer made by the business zynga?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what appears with text underneath it the image shrinks?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"sillouette\"\n  },\n  {\n    \"question\": \"what look like a dog by name zynga?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a social gaming network want to buy for two billion dollars?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"rovio\"\n  },\n  {\n    \"question\": \"what is showing a white dog on a red flag?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"logo\"\n  },\n  {\n    \"question\": \"who refuses zynga s 2 billion dollar buy out?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"rovio\"\n  },\n  {\n    \"question\": \"who talks about a major entertainment company deal?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what do a cartoon look like by name zynga?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who do a cartoon look like a dog by?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"zynga\"\n  },\n  {\n    \"question\": \"what is a logo showing on a red flag?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a report about a gaming and social media company that want to acquire?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"rovio\"\n  },\n  {\n    \"question\": \"what is a dog still image photo doing?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a logo doing?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is zynga doing?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a promotional ad doing?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8008\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a young boy sing on?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is performing for judges?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing on a television show?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy performing on the voice?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings on the stage?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"when does the boy sing?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is performing at stage?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who are judges listening ot?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"when does a young boy sing?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing let a song go?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings on the voice?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy performing a song on?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a little boy performing in a contest?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing a song in front of four judges and other people?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings let a panel of judges go on a singing competition show?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"when do a group of judges listen to a child sing?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a boy singing to a panel of judges?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who performs in front of audience?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who is performing a song in a contest?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a little boy performing a song in?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"contest\"\n  },\n  {\n    \"question\": \"who is performing a song on the voice?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing on stage to a panel of judges?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing let a song go on the voice?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who are people listening to singing a song?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a kid performing at?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are people listening to a boy singing?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what are judges doing?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"video8009\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what show for kids?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does gameplay of a lego starwars?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what has cars in it?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are lego stormtroppers in?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"facility\"\n  },\n  {\n    \"question\": \"what is a video game character driving in circles?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who are in a facility?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a lego star wars game?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who changes the color of his car in lego star wars?\",\n    \"video_name\": \"video8010\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a woman describes photos she doing?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman in a photography doing?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who flips through a page of a book?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who looks at a pile of photos for a charity?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking while walking down the stairs?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows pictures and then moves around a building?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl vlogging for?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"who is looking through pictures?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is showing photos?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who has photos?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing cards?\",\n    \"video_name\": \"video8011\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man waving?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who is waving his sword?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do asian ninjas show off?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is an asian woman talking into?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what do kung fu?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who talks while holding a device?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who jumps over a table?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what fu movie scene?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"kung\"\n  },\n  {\n    \"question\": \"who show off skills in movie?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"ninja\"\n  },\n  {\n    \"question\": \"what are characters doing over a table?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"karate\"\n  },\n  {\n    \"question\": \"what does a japanese woman with to much make up talk on?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are characters doing karate moves over?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who jumps over a bar and attacks a man?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is an asian doing?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who does an asian woman flip over a table?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"what are characters doing?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is someone talks while doing?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is an asian woman doing?\",\n    \"video_name\": \"video8012\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some guy s playing in a basket ball court?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what are featured?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man beating while playing basketball?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"heart\"\n  },\n  {\n    \"question\": \"who is beating his heart while playing basketball?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows the milestones of the sports world?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what are playing basket ball in a basket ball court?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are fans doing?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some guy s doing?\",\n    \"video_name\": \"video8013\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a bunch of different people singing about?\",\n    \"video_name\": \"video8014\",\n    \"answer\": \"coke\"\n  },\n  {\n    \"question\": \"what do a group of children sing on?\",\n    \"video_name\": \"video8014\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are many people singing with in their hand?\",\n    \"video_name\": \"video8014\",\n    \"answer\": \"soda\"\n  },\n  {\n    \"question\": \"what are a group of people singing?\",\n    \"video_name\": \"video8014\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who are singing a song about coke?\",\n    \"video_name\": \"video8014\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8014\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are many people singing with soda in?\",\n    \"video_name\": \"video8014\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what are woman singing a song about?\",\n    \"video_name\": \"video8014\",\n    \"answer\": \"coke\"\n  },\n  {\n    \"question\": \"what are people standing in?\",\n    \"video_name\": \"video8014\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are young people doing?\",\n    \"video_name\": \"video8014\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8014\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who do the computer game and play?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing angry birds?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays angry birds?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks while playing a video game?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"teen\"\n  },\n  {\n    \"question\": \"who is screaming about the video game?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is commentating while playing angry birds?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing angry birds while giving commentary?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is teen talks while doing?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is young man doing?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is a man shows his game-play of video game while doing?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a live stream of a guy doing?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a clip of gamming and a boy doing?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8015\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cat chasing?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what do cat and dog fight in?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what fight in the street?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is chasing the dog?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is chasing a dog?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is cat chasing?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are a cat and a dog doing?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is chasing dog?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is two animals doing?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is cat doing?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are a dog and a cat in?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"standoff\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a cat and dog doing?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what are a dog and a cat doing?\",\n    \"video_name\": \"video8016\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"sprint\"\n  },\n  {\n    \"question\": \"what is a track runner runs down field and collides with female athlete doing?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are the players doing?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are three players doing?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a young athlete mashed the young girl while doing?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who runs into a female athlete while crossing the track in which the male athlete was running?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"what finished?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what did the players pass?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"when does one racer run into another?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"who runs into another at full speed?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"racer\"\n  },\n  {\n    \"question\": \"what does person running track in slow motion then hit while both people were not looking?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who runs into a woman on a field who passes in front of him?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who does a track runner run down field and collides with falling to ground?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who runs full speed and collides with a woman on the track?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"runner\"\n  },\n  {\n    \"question\": \"who does a runner run full speed and collides with on the track?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who runs down field and collides with female athlete falling to ground?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"runner\"\n  },\n  {\n    \"question\": \"what does a runner run full speed and collides with a woman on?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"how many players are walking after they passed the race?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are athelets running on in the running race and other person crosses and dashes?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who did a young athlete mash while racing?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who mashed the young girl while racing?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"what is athlete doing?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a male athlete runs into a female athlete while doing?\",\n    \"video_name\": \"video8017\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is a girl keeping things in?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"what is a little girl placing food into?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"cart\"\n  },\n  {\n    \"question\": \"what does a young girl buying carrots at?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"how many boys are laughing?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is placing food into the cart?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl putting in a shopping cart?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a little girl taking food off?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"aisle\"\n  },\n  {\n    \"question\": \"what is a little girl taking off the aisle?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a little girl placing into the cart?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who pushes a tiny shopping cart?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is taking food off the aisle?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is keeping things in a trolley?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who picks out groceries?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is doing vegetable shopping?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"purchase\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who is putting something in a shopping cart?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a vintage video of a young girl doing?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"grab\"\n  },\n  {\n    \"question\": \"what is a girl?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"shopping\"\n  },\n  {\n    \"question\": \"who is shopping?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"shopping\"\n  },\n  {\n    \"question\": \"what is kid purchasing in?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"who is purchasing in market?\",\n    \"video_name\": \"video8018\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what was video of some hotels to celebrate their vacation?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is recording the beautiful green garden in the city?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is recording the green place in a beautiful town?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are some buildings in a place being filmed out?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is the big buildings located near the grass land doing?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is displaying building and its outer area?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are various outdoor scenes shown possibly?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what are shown possibly a park?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"what plays as various outdoor scenes are shown possibly a park?\",\n    \"video_name\": \"video8019\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking about urban experiences in his house?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a young man talks about doing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"pack\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a man show off a laptop in?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about packing his bags for a 5 day trip?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives tips on packing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives tips for packing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man show off in a room?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who is starting a tutorial on how to pack for a trip while standing in front of all the junk he wants to pack?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives tips on traveling and packing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who packs a bag?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a laptop?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is packing his bag?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explaining something?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what does a man pack?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what is a man packing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"who shows off a laptop in a room?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man gives tips on doing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"pack\"\n  },\n  {\n    \"question\": \"what do a boy explain?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man gives tips for doing?\",\n    \"video_name\": \"video8020\",\n    \"answer\": \"pack\"\n  },\n  {\n    \"question\": \"what is a cook preparing?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who creates fish pancake shapes with a special filling?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is trying to make a goldfish shaped chinese pancake?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman create shapes with a special filling?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"who is making fish shaped pancakes in a kitchen?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is teaching how to cook taiyaki?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes food shaped like fish?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman making fish shaped pancakes in?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is cooking layered waffles?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman making in a kitchen?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who cooks a fish shaped food?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing fish shaped food?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are pancakes being made with inside?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a cook doing?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a japanese woman with a man doing?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a cooking demonstration doing?\",\n    \"video_name\": \"video8021\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is a news reporter from bbc news doing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a bbc world news journalist doing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a lady news reporter doing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a repoter doing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a black bbc reporter doing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is on a street a woman doing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bbc world news journalist discussing authentic and informative stories about?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"africa\"\n  },\n  {\n    \"question\": \"who is giving some information about living in africa?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who stands on the side of a street and talks about international matters?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing at the cornor of a busy road?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing in johannesburg and reports about world news?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is doing a report in africa vehicles are many africans walking the streets?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking while a lot of vans are passing on a street?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a bbc reporter doing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who stands outside in africa on a news show?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a lady talking on?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is talking on the road?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a lady news reporter talking about?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is bruntte in glass doing?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a news reporter from bbc news speaking about?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"africa\"\n  },\n  {\n    \"question\": \"what is a woman talking while a lot of vans are passing on?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is talking while vehicles are moving around?\",\n    \"video_name\": \"video8022\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does woman prepare by putting it in the fridge?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"duck\"\n  },\n  {\n    \"question\": \"who talks about refrigerating chicken?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing in the oven?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who prepares duck by putting it in the fridge?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing how to prepare a chicken to cook?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing chicken dish in the oven?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who gives instructions for preparing a stuffed chicken to cook?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gives a cooking tutotial on baking chicken?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing chicken dish in?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"who is in a kitchen describing how to prepare a chicken for cooking?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing a chicken?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking a chicken?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is being cooked?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what does a woman prepare?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is hosting a cooking show?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman prepares duck by doing?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman talks about doing?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"refrigerate\"\n  },\n  {\n    \"question\": \"what is a woman talks about doing?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is a woman gives instructions for doing?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman hosting?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a woman is in a kitchen doing?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman gives a cooking tutotial on doing?\",\n    \"video_name\": \"video8023\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what performs in an open stadium while audience are enjoying?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what plays for a large crowd at an outdoor event?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what do a clip of a band playing live at?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what are foo fighters doing?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is thousands of people are at a concert doing?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what do people cheer at?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what do a crowd at?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is a musical artist doing?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a large concert with a man doing?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a crowd at a concert doing?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a clip of a band doing?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a band performs in an open stadium while audience doing?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are foo fighters performing?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what plays at a rock concert?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who are performing a song?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"foo\"\n  },\n  {\n    \"question\": \"what are enjoying?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8024\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do a fisherman throwing net into river standing on?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is the men catching the fish with the help of the china net on?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is the men catching with the help of the china net on the boat?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a black man in a hat casting?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"net\"\n  },\n  {\n    \"question\": \"what does a man throw a fishing net into?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a man stand in a rowboat wearing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"who is fishing with a blue net from his boat?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a fisherman throwing into river standing on a boat?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"net\"\n  },\n  {\n    \"question\": \"what do a fisherman throwing net into standing on a boat?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what does a man stand in wearing a hat?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"rowboat\"\n  },\n  {\n    \"question\": \"what is a man standing in?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what the opeing credit to gullah?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what credit to gullah grub authentic cooking?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"opeing\"\n  },\n  {\n    \"question\": \"who is standing in the boat?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an image of a man throwing a net off of a boat fill?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a man in check shirt cloth wearing speaking water scene and still image fish catching in net displaying on?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a man in check shirt cloth wearing speaking water scene and still image fish catching in displaying on screen?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"net\"\n  },\n  {\n    \"question\": \"what does a man in check wearing speaking water scene and still image fish catching in net displaying on screen?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a man fishing with a blue net from?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a man fishing with a net from?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does a man throw into the water?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"what is a large man doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a negro man putting into the river for getting fish?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"net\"\n  },\n  {\n    \"question\": \"what is a screen doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is black man doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man in checks shirt cloth doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a fisher man doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a fisherman doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is the men doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is an african american man doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a negro man doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man stands in a rowboat doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a black man in a hat doing?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"cast\"\n  },\n  {\n    \"question\": \"what does a man in aboat on the water advertise?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who checks shirt cloth wearing speaking water scene and still image fish catching in net displaying on screen?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is saying goodbye to viewers as an image of him throwing a net off of a boat fills the screen?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing in a small white boat with red trimming?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is telling something about how to catch fish?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"fisher\"\n  },\n  {\n    \"question\": \"who is putting net into the river for getting fish?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands in a rowboat wearing a hat?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how he fishes for a cooking show?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who throws a fishing net into the water?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a negro man putting net into for getting fish?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is a man saying to viewers as an image of him throwing a net off of a boat fills the screen?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"goodbye\"\n  },\n  {\n    \"question\": \"who is fishing with a net from his boat?\",\n    \"video_name\": \"video8025\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"when is a man riding in the road carrying something?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"what is a boy pulling one modified trolley of two wheels on a colony road on?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what a person rides a bicycle with a trailer behind someone riding a mountain bicycle with a trailer through?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man riding cycle in carrying something?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a person riding outside on the street?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is wearing purple tshirt?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is riding a bike outside on the street?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is two wheel attached in the car so very effect?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"cycling\"\n  },\n  {\n    \"question\": \"who is riding a bicycle?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is a boy wearing?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what is a boy riding?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is trying to lead the new method of cycles?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"who is riding cycle in the road carrying something?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"what is the cycle men doing?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is on a bicycle a boy doing?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"who demostrates how to drive with a trailer atached to a bike?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who rides a bike with a trailer attached to the back?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pulling one modified trolley of two wheels on a colony road on a bicycle?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did a man riding a bicycle with a small metal trailer attach to?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"who rides a bicycle with a trailer behind someone riding a mountain bicycle with a trailer through the road?\",\n    \"video_name\": \"video8026\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a video game character talking to on the phone?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a video game character walking around?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is playing a batman game?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is walking around?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a video game character talking to someone on?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is talking while walking around a scene in a batman video game?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"harley\"\n  },\n  {\n    \"question\": \"what character where harley quinn looks for someone?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is luminescent characters lay on the floor while a woman in a skirt doing?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is harley quinn doing?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is gameplay with harliquin doing?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video of someone doing?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl in a videogame doing?\",\n    \"video_name\": \"video8027\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what plays then two men in plaid shirts start talking to the camera?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a large white inflatable robot meet a boy with?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who does a large white inflatable robot meet with dark hair?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is saying hello to a boy while the directors say hello?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"baymax\"\n  },\n  {\n    \"question\": \"what is baymax saying to a boy while the directors say hello?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"hello\"\n  },\n  {\n    \"question\": \"who is baymax saying hello to while the directors say hello?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do a short clip of big hero 6 followed by an introduction of the directors don?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"what do the directors say?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"hello\"\n  },\n  {\n    \"question\": \"what is a robot doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a big man doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is a cartoon plays then two men in plaid shirts start doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animation film doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a large white creature walks into bedroom to greet young boy doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a little boy in dressed in a red shirt doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the white ghost doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is big hero 6 movie trailer doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is big hero 6 video clip from the movie and the directors doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the directors of big hero six doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people in a room doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people next to each other doing?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is playing in the screen?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what does a cartoon play then two men in plaid shirts start talking to?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does an inflatable white character introduce himself as?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"baymax\"\n  },\n  {\n    \"question\": \"what comes near to little boy then he talks?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"who does complete white doll come near to then he talks?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is an animation film playing in?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is entering in the room and meeting person?\",\n    \"video_name\": \"video8028\",\n    \"answer\": \"ghost\"\n  },\n  {\n    \"question\": \"who sits on mate?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who mirrored wall?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is small kid in red shirt showing his tricks with?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is leaning against a wall of mirrors while dribbling a ball?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who speaks as a boy does drills with a basketball on a mat?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dribbles a basketball in many different exercises?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a teenage boy wearing an organe hoodie exercising with?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who did wall in a workout studio with one leg lifted straight and the other one bent while bouncing a basketball mirror is leaning against a?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a young kid in an orange jacket and workout gear dribbling?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is working improving his health by working out in a gym?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is practicing his basketball skills by doing drills?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who play the ball and excersice in the floor?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does drills with a basketball on a mat?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is the boy in orange dress playing with?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who practices basketball using drills and exercises?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man practicing by doing drills?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what a boy practices using drills and exercises?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what did a man mirror?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what do a boy play the ball and excersice in?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is small kid in red shirt doing?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a teenage boy doing?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a boy practices basketball doing?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who does a young boy sit on?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"mate\"\n  },\n  {\n    \"question\": \"who then does many tricks?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what is the boy in orange dress doing?\",\n    \"video_name\": \"video8029\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"videotape\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"skydive\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a camera doing?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"send\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is sending images from space of a planet that looks like earth?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a man fall towards from outer space?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what does a man fall towards earth from?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who videotaping in space?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about science?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is played on earth clip?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is floating in space?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man videotape in?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what is song played on?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what is a person floating in?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who falls towards earth from outer space?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is commentating?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is skydiving?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8030\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who performs a song in various dream like locations?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what is a glamorous styled music video is played with a female pop star doing?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"pluck\"\n  },\n  {\n    \"question\": \"what is a woman walks through a forest and reaches out for a weird alien doing?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"glow\"\n  },\n  {\n    \"question\": \"what is pop music video doing?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a women in purple color dress doing?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"who walks through a forest while a song plays?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is plucking a purple rose while a song plays?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a women in purple color dress picking flower which also in?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who reaches out for a weird alien glowing thing?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who lavigne finding a purple flower?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"avril\"\n  },\n  {\n    \"question\": \"what does a singer walk through while a song plays?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what is a woman with blonde hair singing?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who finding something and picking blue flower?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is a woman plucking while a song plays?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what do avril lavigne finding?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"who walks through a forest?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a women in purple color dress picking in purple color?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"what does a woman walk through?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who lavigne singing?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"avril\"\n  },\n  {\n    \"question\": \"what does a song play in?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what do others play?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is the beautiful girl doing?\",\n    \"video_name\": \"video8031\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does the man in the big costumes hold?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what presents sounds from the death to smoochy soundtrack?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is displayed two men are standing side by side a man wearing a hen s dress is posing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"number\"\n  },\n  {\n    \"question\": \"how many men is number 15 displayed are standing side by side a man wearing a hen s dress is posing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is on a picture with number counting down?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the number 15 appear is shown death to smoochy with a man in a dinosaur suit on the cover?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is playing a guitar with different dress?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is number 15 displayed two men are standing by side a man wearing a hen s dress is posing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is number 15 displayed two men are standing side by a man wearing a hen s dress is posing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is number 15 displayed two men are standing side by side a man wearing a hen s is posing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who smiles as he holds another man in a costume?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing with different dress?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person playing a guitar with?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is number 15 displayed two men are standing side by side a man wearing a hen s?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is on a blue background?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what appears a movie is shown death to smoochy with a man in a dinosaur suit on the cover?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"number\"\n  },\n  {\n    \"question\": \"what does the number 15 appear a movie is shown to smoochy with a man in a dinosaur suit on the cover?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"death\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are number 15 is displayed two men doing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are there are some jokers doing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man is on a picture with number doing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"count\"\n  },\n  {\n    \"question\": \"what is a montage of costumed guitar players doing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a program doing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8032\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man and woman laying on?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is having fun with girl?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who are two people having walks in?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a man caught in with another woman?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is a man caught in bed with?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a korean couple caught in by another woman?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is a man in a bed looking at?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman talk to boy who is in bed with?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is caught in bed by another woman?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is a korean couple caught in bed by?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is caught in bed with another woman?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are having sex girl walks in?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks to boy who is in bed with another girl?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a scene where a woman sees a man in bed?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is watching a man wake up?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is boy having fun with?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman watching up?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"what is woman and man doing?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an asian man doing?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are a man and a woman in?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what is a man in a bed doing?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who walks in?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is boy having with girl?\",\n    \"video_name\": \"video8033\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is there is a van doing?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a jeep doing?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a british man discuss the features of?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who discusses the features of a car?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a tan jeep while he speaks?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives the gray truck down the street really fast?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man with british accent drive a gold and silver colored jeep down?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a man with british accent drive a gold and silver colored down a road?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"who is driving a jeep down an empty road?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man driving down the road in a gray colored hummer h1 taking up most of?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is driving a large vehicle while speaking to a camera?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining terms a jeep is driving down the road at high speeds?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a middle aged man doing?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a man test describe the interior of?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is an auto review expert doing?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man driving down an empty road?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"who is describing?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"hummer\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person driving very fast on the street?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is a man driving?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"hummer\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what does a man test drive?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driven carefully on the street?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives a car?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is person driving his car very fast on?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is driving his car very fast on the street?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the big car driven carefully on?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what describes the interior of the vehicle?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is driving a hummer?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving while he speaks?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"who is talking about time zones?\",\n    \"video_name\": \"video8034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on his motorcycle?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives down the road?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"motorcyclist\"\n  },\n  {\n    \"question\": \"who rides a motorcycle?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives on the road?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"motorcyclist\"\n  },\n  {\n    \"question\": \"what does a motorcyclist drive down?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a man drive through woods?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who test driving the bike?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man riding on?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a person riding?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what a man rides?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what do guy test driving?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what does the motorcyclist drive on?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what a man rides down the empty roads?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a person riding while music plays?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who drives a motorcycle through woods?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy test doing?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is riding a green motorcycle down a road?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle while music plays?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who rides his motorcycle down the empty roads?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person riding a green motorcycle down?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a person riding a green motorcycle on?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a person riding down a road?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a person riding on a road?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding a green motorcycle on a road?\",\n    \"video_name\": \"video8035\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does the video just play?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what just plays a popular song?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what plays to an m logo?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is a video playing music in?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is playing music in the background?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a video playing in the background?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is flowing as the emblem sparkles?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is in the middle of the screen?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"letter\"\n  },\n  {\n    \"question\": \"what shows a sparkling logo in front of trees?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a song doing?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is music video with a doing?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"pulsate\"\n  },\n  {\n    \"question\": \"what is the music doing?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is video shows a doing?\",\n    \"video_name\": \"video8036\",\n    \"answer\": \"sparkle\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a girl stop dancing with?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings in his beach house?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a guy strum?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays guitar?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances around in a room?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is looking down?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who stops dancing with a boy?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when do teenagers reflect?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"past\"\n  },\n  {\n    \"question\": \"who strums a guitar?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a boy and a girl doing?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girl stops doing?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of teens doing?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who sings a song and reminisces about his problems?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what show a girl having words with a male?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is crying while a boy is singing?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does boy play?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a person dance around in?\",\n    \"video_name\": \"video8037\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"how many girls sit in a party bus then a store display is shown?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are smiling?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what montage over several scenes?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many girls are documenting their trip?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is being shown from different perspectives?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"theater\"\n  },\n  {\n    \"question\": \"how many girls went to the movies?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did photos of young girls at the movies set to?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many girls are smilng at the camera?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are people seating in?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a store doing?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"seat\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"document\"\n  },\n  {\n    \"question\": \"what are two girls smilng at?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are being displayed?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what do a store showing off?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are two girls documenting?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"trip\"\n  },\n  {\n    \"question\": \"what does a mom and daughter take?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video8038\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did people gather in?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is a women telling about?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"prisoner\"\n  },\n  {\n    \"question\": \"what do people get on?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what are the police sharing to others?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what is a family standing next to?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"where did the police and paramedics arrive?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what shows scenes of an arrest and a woman talking?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"documentary\"\n  },\n  {\n    \"question\": \"what ends with a woman in green with a scarf speaking?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is shown outside of an emergency vehicle?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what did the police and paramedics arrive to?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is standing next to an ambulance?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what are sharing some information to others?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is a documentary shows scenes of an arrest and a woman doing?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is on the tlc channel a woman in a purple shirt doing?\",\n    \"video_name\": \"video8039\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is showing his long white snake in the room?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are displayed as a man discusses pigment?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"albino\"\n  },\n  {\n    \"question\": \"what did different type of snake keep on?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"gage\"\n  },\n  {\n    \"question\": \"what does a man use as an example in explaining pigmentation and albinism?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"albino\"\n  },\n  {\n    \"question\": \"what does white and yellow snake still and panning over with a voice over?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"who is showing a yellow and white snake in a place?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man talking about pigment showing?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"who is talking about pigments in snakes and how they absorb light?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man use an albino python as in explaining pigmentation and albinism?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"example\"\n  },\n  {\n    \"question\": \"what does white and yellow snake still and panning over the snake with over?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a person showing a yellow and white snake in?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what do a while color python sitting?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"calm\"\n  },\n  {\n    \"question\": \"what python rolling itself?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"while\"\n  },\n  {\n    \"question\": \"what is observed its colors are white and acidic yellow?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"who talks about pigments?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing his new yellow snake indoors?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man showing his long white snake in?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what python sitting calm?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"while\"\n  },\n  {\n    \"question\": \"where is a person showing a yellow and white snake?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what looks like a long snake with yellow tint?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"albino\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a while color python doing?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a white colored python doing?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is white and yellow snake stills and doing?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who defines pigments and how several albino snakes give color to living things by absorbing light?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who uses an albino python as an example in explaining pigmentation and albinism?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains about the snake bite of large pythons?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man uses an albino python as an example in doing?\",\n    \"video_name\": \"video8040\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is playing the piano?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a piano?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing the piano?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what does some one playng?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a close-up of a person doing?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8041\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many people are wrestling on the mat?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a pair of men wrestle against each other at?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"how many opponents are wrestling?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do wrestlers wrestle each other in?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"tournament\"\n  },\n  {\n    \"question\": \"what did wrestling match montage?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do an amatuer wrestling?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what montage video?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what are two people wrestling on?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what highlights being shown?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what do a group of wrestlers knock each other to?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a group of wrestlers begin doing?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is different sets of two men doing?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is footage of doing?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two competitors doing?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two males opponents doing?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8042\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what do birds fly over the snowy field in?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"distance\"\n  },\n  {\n    \"question\": \"what do a flock of birds take in a snowy pasture with few trees?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what does techno music play in while a flock of birds fly away?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what do birds fly from a snow covered as horrible background music plays?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"when is person recording the palm trees?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"when is person presenting the beautiful beach?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"when is person recording the big trees?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"what is recording the street and the trees near it?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is person presenting in winter?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what fly together over the snowy field?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"countles\"\n  },\n  {\n    \"question\": \"what did a group of birds in a snow cover flying away?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what plays in the background while a flock of birds fly away?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"techno\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what are a flock of birds doing?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is electronic music with birds doing?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is tall palm trees on the beach and birds doing?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a group of birds in a snow covered field doing?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is there are some birds doing?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is there are some bird doing?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"who is presenting the beautiful beach in winter?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is recording the palm trees on winter day?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is recording the big trees on winter day?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a trees and snow land still picture shown on screen birds doing?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8043\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what attacks random people on the street?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"who rammed by a goat?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is charging at a man?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"who is a goat chasing?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is chasing a man?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"who is attacked by a bull?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what attacks a man?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"who does a goat attack?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man being ram by?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"who does goat fight?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what fights a man?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is attacking a person?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"who is a buffalo attacking?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is attacking people?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is attacking a man?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"buffalo\"\n  },\n  {\n    \"question\": \"who is a cow attacking?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a brown goat charging at?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a goat attacking?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what repeatedly charges a man who then kicks the goat and runs?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"who fights back?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is headbutting?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is a goat doing?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a goat doing?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"headbutt\"\n  },\n  {\n    \"question\": \"what is a goat doing?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a goat hitting a man and a woman on?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a cow doing?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a brown goat doing?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"charge\"\n  },\n  {\n    \"question\": \"who faces off in battle against a goat?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is attacking people on the side of a road?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is hitting a man and a woman on the road?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is a buffalo doing?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a man attacked by?\",\n    \"video_name\": \"video8044\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"how many minecraft characters ride on pigs while being chased by a character on a larrge block?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who ride on pigs while being chased by a character on a larrge block?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what are minecraft characters doing?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a video of people doing?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is animated clip of figures doing?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many men are being chased by a zombie?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is minecraft monsters doing?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"how many characters run through the level?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are riding pigs?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are racing?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who was being played?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what do two characters run through?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"level\"\n  },\n  {\n    \"question\": \"what are video game characters riding?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who monsters racing on pigs?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who are two men being chased by?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"who legos running away from each other?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who are riding a horse?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many cartoons robot are running fast?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video8045\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do doctor and patient talk in?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who talk in baby voices?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"patient\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men with the voice of young girls voices doing?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two grown men doing?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is kids voices are dubbed over a serious video about a doctor doing?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are adults doing?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has a bandage on his head?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man speak to another man in?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"how many persons are comminicating each other?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does a man speak to in a room?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does voice s men are speaking with?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what s men are speaking with a child?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"how many man s are talking to each other?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is sitting with a band aid on his face?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks while in a childs voice?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who speaks to another man in a room?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who consults a patient and the doctor is voiced over by a young kid?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"how many men does while voice s voices are dubbed over with children?\",\n    \"video_name\": \"video8046\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is showing information on the screen?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is telling the news in channel?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking about migrants and a petition?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about the situation of countries taking in immigrants?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is looking at some thing on tv?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is giving an interview for the television?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is a person looking at on tv?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what does a train pull into?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"station\"\n  },\n  {\n    \"question\": \"what lets people off?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what pulls into a station?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a person showing information on?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a woman telling in channel?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what arrives a station and passengers get off?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a group of people waiting in to get in train?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"railway\"\n  },\n  {\n    \"question\": \"what is a woman telling the news in?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what is a person showing on the screen?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what does a british news reporter discuss s viewpoint on allowing migrants into the country?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who is talking about the latest news in the country?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is news reporter is on the left split screen migrants doing?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman on the sky news network doing?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a large crowd of people doing?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is female reporter doing?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman with short gray hair reports the news while a separate screen shows people doing?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what anchor discusses the syrian refugee crisis while a train pulls into a station and lets people off?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what arrives a station and passengers get into which is being analyzed by a lady in the news hour?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is news reporter on the left split migrants waiting for trains on right half of screen?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who speaks as people gather on a platform to board a train?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a british news reporter discuss the country s on allowing migrants into the country?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"viewpoint\"\n  },\n  {\n    \"question\": \"who is on the left split screen migrants waiting for trains on right half of screen?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what does more information on the bombings in brussels?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"courtesy\"\n  },\n  {\n    \"question\": \"what enters?\",\n    \"video_name\": \"video8047\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what discusses an event?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is setting up the dinner table?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what sits down to dinner?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is preparing to eat a meal together?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what are the children serving as their parents sit at the table?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"what are people on a sitcom sitting at?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what s family sits down for dinner?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"george\"\n  },\n  {\n    \"question\": \"what sit down for dinner made by their children?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what does george lopez s family sits down for?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"what does george lopez s sits down for dinner?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a family setting up?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"what does a family discuss?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what are the children doing?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a sitcom family doing?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a tv family doing?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are people on a sitcom doing?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8048\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is people on a baseball field doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who runs around a baseball bat?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is men spin over a baseball bat before doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what do some guys spinning around head down on?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"bat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is some guys doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is a baseball player doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what are guys doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what is a person standing on?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are guys acting crazy in?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is standing on ground?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do men spin over before trying to kick a ball?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what do people spinning around a baseball bat and then try to kick?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is playing baseball in the field?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is spinning around with a bat?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what men spinning in at home plate?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what men spinning in a circle at?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is a person playing in the field?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is a person playing baseball in?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where is a person playing baseball?\",\n    \"video_name\": \"video8049\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a team doing?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do people play?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does a football player make?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is successfully carried out?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are rugby players playing in?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who makes a catch?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who catches a long touchdown in an nfl game?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are playing in the ground?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"what play being run on television?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what do football play being run on?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what catches a touchdown over two defenders?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"receiver\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are rugby players doing?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is somone doing?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what are there is a video of an american football game in which players doing?\",\n    \"video_name\": \"video8050\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is a clip of men and women doing?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of four people doing?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is during a doing?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"wed\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is dancing for a song in front of others?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people dancing at?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"what are some men dancing to?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are three men and one lady doing the whip dance at?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"what are some men dancing in?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"tuxedo\"\n  },\n  {\n    \"question\": \"what is a man dancing for in front of others?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are the couples dancing on along with two other men during a wedding?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are a group of four people dancing at to a pop song?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"what are three men and one lady doing at a wedding?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the couples dancing on the floor along with two other men during?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"what are people dancing at?\",\n    \"video_name\": \"video8051\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"who a person is folding up?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a girl dressed like?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"stocking\"\n  },\n  {\n    \"question\": \"who is wearing costumes?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is dressed like a stocking?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who tries on many costumes?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"how many young children dress up in costumes in their home?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is walking around dressed in different costumes?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what are children dressed up in costumes walking in?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who is folding up a baby stroller?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is look like as devil?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what are children dressed up in costumes doing?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is kids in various costumes doing?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are several children doing?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is some children doing?\",\n    \"video_name\": \"video8052\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who does a man talk to as they look at the landscape?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a guy video taping a woman and smoke on?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are people at talking about their plans?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"who is video taping the environment?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where do a man and a woman look?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is coming out of a mountain?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does woman put a smile on?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what do a man and a woman look at?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"what are a man and woman?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is sintalking?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is people are at sand doing?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks to a woman as they look at the landscape?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"hike\"\n  },\n  {\n    \"question\": \"what is a man and woman are video doing?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a guy video doing?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a man is video doing?\",\n    \"video_name\": \"video8053\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what did a woman pull the rope and seeing back of?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what is not moving irrespective of the effort made by the man?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what does a man try to make walk across the yard?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what does a man try to make a donkey walk across?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt dragging on a robe on a park?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a young man then push s butt while standing on flat grass by a pickup truck?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"who tries to lead a donkey to take a bath?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man try to lead to take a bath?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"who tries to get a donkey to move by pulling him and then by pushing him?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man try to lead a donkey to take?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt dragging a big horse on on a park?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"robe\"\n  },\n  {\n    \"question\": \"what did a man leading a a donkey across a field towards a park?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt and black shorts doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is the donkey is not doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is man in red shirt doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man in red shirt doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"inform\"\n  },\n  {\n    \"question\": \"what is a man tries to get a donkey to move by doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is a young man pulls on a leather leash attached to a grey donkey and then pushes the donkey s butt while doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt and black shorts pulls on the harness of a donkey doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is on a park a man in a red shirt doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"drag\"\n  },\n  {\n    \"question\": \"who is attempting to move a stubborn donkey by pulling then pushing him?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt doing?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"where is a man in a red shirt dragging a big horse on a robe?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who narrating a man in a red shirt with a donkey?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man in red shirt playing with his pet donkey is eating grass?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what did a woman narrate a man in a red shirt with?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what is a man in red shirt playing with his pet donkey the donkey is eating?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt dragging a big horse on a robe on?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who request the man to get the donkey to the other side?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who tries to make a donkey walk across the yard?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who request the man to mention that the donkey needs a bath?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who then pushes the donkey s butt while standing on flat grass by a pickup truck?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a woman narrate in a red shirt with a donkey?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pulled the rope and seeing back of the donkey?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pulls on a leather leash attached to a gray donkey?\",\n    \"video_name\": \"video8054\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man showcasing?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man discusing?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is being displayed?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man describing in a garage?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the wheels on his car?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about car modifications he enjoys?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is describing his car modifications in a garage?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy talk about he enjoys?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who talks about modifying his car?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the mods he made to his car?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the modifications he uses on his car?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss the mods he made to?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who showcasing a vehicle engine?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about the modifications he uses on?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who talks about his car and specs of it?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is discusing model cars?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man describing his car modifications in?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"who talks about finding wheels for his vehicle?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is in a garage a man doing?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"modify\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8055\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cooked?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"what is eaten?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"what is being cooked?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"what is being eaten?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"pancake\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a person eat?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"cookie\"\n  },\n  {\n    \"question\": \"what is being fried up?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who eats a cookie?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person keeping on bed?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who drops a piece of food on a napkin?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person keeping food item on?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a person pick up a piece of?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does someone drop a piece of food on?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"napkin\"\n  },\n  {\n    \"question\": \"what is a man frying food in pan?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"what did a man just get done making hash browns in?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man frying in the frying pan?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does someone drop a piece of on a napkin?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who picks up a piece of food?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is keeping food item on bed?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who just got done making hash browns in the kitchen?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man just get done making in the kitchen?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"hash\"\n  },\n  {\n    \"question\": \"who is frying food in the frying pan?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is cooking and doing?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a really good doing?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a video about doing?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8056\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what is a girl making non veg in?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is preparing to cook a duck?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who was preparing roast duck?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is making non veg in kitchen?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl making in kitchen?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"non\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what was the chef doing?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman in the kitchen doing?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is talking about cooking duck?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"duck\"\n  },\n  {\n    \"question\": \"who prepares a duck to cook?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking in the kitchen?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking a duck?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what was the chef preparing?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"roast\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman cooking in?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"duck\"\n  },\n  {\n    \"question\": \"who is showing how to cook?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is cracked?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who shows how to roast a duck?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8057\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is getting angry?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a girl upset with?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a girl screaming on?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a girl freaking out about?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"candy\"\n  },\n  {\n    \"question\": \"what does a girl get emotional on?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is having a tantrum?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is hitting a pillow?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is upset with someone?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is freaking out about candy?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who gets emotional on camera?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl having?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"tantrum\"\n  },\n  {\n    \"question\": \"who is whining?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is crying?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is screaming on the couch?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is small girls arguing with anger with?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"what is a little girl hitting?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"pillow\"\n  },\n  {\n    \"question\": \"what is shots of an angry girl doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a young girl angrily doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"whine\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"freak\"\n  },\n  {\n    \"question\": \"what is a bratty little girl doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is small girls doing?\",\n    \"video_name\": \"video8058\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what does a movie scene man in white dress speaking and group of slave standing wearing on head displaying on screen?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"who is the man speaking of the book 12 years of?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"slave\"\n  },\n  {\n    \"question\": \"who lost in business?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"solomon\"\n  },\n  {\n    \"question\": \"who has been to put to slave?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"solomon\"\n  },\n  {\n    \"question\": \"who is speaking of the book 12 years of slave?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is this doing?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what does a movie scene man in white dress speaking and group of slave standing wearing hat on displaying on screen?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a black man doing?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"who is very sad?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a slave say?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"name\"\n  },\n  {\n    \"question\": \"who says his name?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"slave\"\n  },\n  {\n    \"question\": \"who stand in front of one of their number who talks to them?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"plantation\"\n  },\n  {\n    \"question\": \"what did solomon northup lose in?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"who s story based on a book and now a movie?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"solomon\"\n  },\n  {\n    \"question\": \"who stands with a group of slaves?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"slave\"\n  },\n  {\n    \"question\": \"what is a movie scene man in white dress speaking and group of slaves doing?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is as the man doing?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a black man doing?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who do interview about a movie based on a black slave solomon?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"northup\"\n  },\n  {\n    \"question\": \"who is acting in a movie about slaves?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about video selections from a film he was in?\",\n    \"video_name\": \"video8059\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a wire?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making sparks?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using flint?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man creating spark with?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what does a person create sparks using?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what is a person talking on?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"mike\"\n  },\n  {\n    \"question\": \"who does science?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man do?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what is a man shorting?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what is a man creates sparks doing?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what does a man create sparks using?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who creates sparks using a device?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about making sparks?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who make spark?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person creates sparks doing?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who sparks with a device?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what do a man talking about a hide spark creating?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"who is shorting the wire?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who creates sparks using hand tools?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what sparks?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking on mike?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man using?\",\n    \"video_name\": \"video8060\",\n    \"answer\": \"flint\"\n  },\n  {\n    \"question\": \"who is walking down the side walk?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does comedy skit with dc comics?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what did a parody skit about from batman 7 years later?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"bane\"\n  },\n  {\n    \"question\": \"what walks down a suburban sidewalk?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"what is a person walking on wearing mask?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"footpath\"\n  },\n  {\n    \"question\": \"what is bane walking down smelling a flower?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"who is walking smelling the flowers on a tree?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking on the footpath wearing mask?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is it is 7 years later and bane doing?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is several scenes from the dark knight doing?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what skit about bane from batman 7 years later?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"parody\"\n  },\n  {\n    \"question\": \"who is dressed like bane?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is walking down a sidewalk smelling a flower?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"bane\"\n  },\n  {\n    \"question\": \"who is wearing a scary mask?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a funny or die skit doing?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a man in a mask doing?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man with mask doing?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"mask\"\n  },\n  {\n    \"question\": \"what is a man dressed like?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"bane\"\n  },\n  {\n    \"question\": \"what smells the flowers?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"bane\"\n  },\n  {\n    \"question\": \"what is a man walking down?\",\n    \"video_name\": \"video8061\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what pulled back?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a woman with long black hair and a blue vest talking about?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is woman in blue shirt doing?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is black haired woman doing?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman with long black hair and a blue vest doing?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman is about to cook and before that she doing?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman in a clue shirt doing?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a female cook doing?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen doing?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman in striped apron stands in home kitchen with large doing?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who explain and how is prepare the food?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is woman giving instruction about cooking and cooking items such as oil in?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"kitchena\"\n  },\n  {\n    \"question\": \"what is a woman cooking using ginger garlic tomato?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is preparing something in a kitchen?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman wearing a microphone appear to be in?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"laboratory\"\n  },\n  {\n    \"question\": \"what is black haired woman talking in?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are stands near a corner of a white kitchen where the cabinets and metal pulls above?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who is talking in the kitchen?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving instruction about cooking and cooking items such as oil in white kitchena?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who runs down some instructions for making a specific paste?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cooking a dish using ginger garlic tomato?\",\n    \"video_name\": \"video8062\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is dwarfs doing?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a song doing?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon of an old man doing?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"gesticulate\"\n  },\n  {\n    \"question\": \"what is a bunch of elves walk along a tree doing?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is an old men doing?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a pinnochio doing?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a men and women doing?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are animated characters doing?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is there is a women doing?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are snow white and the seven dwarves doing?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is going on the animation film?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is an old men dancing with?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"princes\"\n  },\n  {\n    \"question\": \"who is dancing a wonderful couple dance for a music played?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"pinnochio\"\n  },\n  {\n    \"question\": \"what cuts to pinnochio?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is a pinnochio dancing dance for a music played?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is an animated cartoon shown for the childrens on?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is shown for the childrens on the screen?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are different clips of disney movies set to?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are animated characters playing?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what do snow white dances while some dwarfs play in a gray walled room with a tan floor?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is playing while scenes of snow white appear?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a bunch of elves walk along a tree working over?\",\n    \"video_name\": \"video8063\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"who are more girls dancing also there?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do young people dressed as cheerleaders and basketball players sing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are boys and girls wearing colorful dress dancing on?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are the players and the cheerleaders dancing on?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what are man and woman having?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who are having good time?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there is a woman in red doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is girls and boys doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"cheerlead\"\n  },\n  {\n    \"question\": \"what are more girls doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the players and the cheerleaders doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is cheerleaders doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is few girls in red dress and boys in white dress doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are men and women dressed as cheerleaders doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is cheerleaders and basketball players doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is boys and girls doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are man and woman doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a red and white dress doing?\",\n    \"video_name\": \"video8064\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do models walk during a fashion show?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do people walk on walk in strange uniforms?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is walking down the runway at a fashion show?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are women walking down at a moschino fashion show?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are woman doing?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a model doing?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a few female models doing?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a model walking down at a fashion show?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who walks the catwalk and posses?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are woman?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"modeling\"\n  },\n  {\n    \"question\": \"what is a woman walking down?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what are women walking down?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are models walking down?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are models walking on?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what is about a fashion show?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what does a lady walk?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"who walks the catwalk?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do models in a catwalk on?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"who is walking down a catwalk?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are modeling clothes?\",\n    \"video_name\": \"video8065\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is music plays while doing?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is advertisement doing?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is hitting other car?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is the big vehicle doing?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"who want subscribers?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the big vehicle hitting?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does music play in?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a monster truck crushing while music plays?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"sedan\"\n  },\n  {\n    \"question\": \"what is a program series trailer doing?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what encourages the view to subscribe to twentytruckscom while upbeat music plays?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what are huge trucks doing?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a monster truck doing?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"crush\"\n  },\n  {\n    \"question\": \"what is parked on top of a car?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"what is shown while music plays in the background?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what plays while showing a monster truck impact hammer and bulldozer over and yellow and black diagonally striped background?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is crushing a sedan while music plays?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8066\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who shows a chemical reaction in a cup?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is holding a glass full of material?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is teenagers doing?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who holds a cup filled with a white substance?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"compare\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who shows an experiment of what will happen to calcium in the body?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking over a cup of powder?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man holding a glass full of?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"material\"\n  },\n  {\n    \"question\": \"what does a man hold?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"who holds a cup?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is going to do something with a chemicals?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person doing with glasses?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is picking up some cups?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing something with glasses?\",\n    \"video_name\": \"video8067\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are a woman and man doing?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is carey mulligan doing?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a lady with an english accent doing?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is interviewing a woman?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man interviewing?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl talking about?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"self\"\n  },\n  {\n    \"question\": \"what is carrie mulligan doing?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who talks about a performance of hers?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"actres\"\n  },\n  {\n    \"question\": \"what is a woman being interviewed on?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what are a woman and man chatting on?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who is being interviewed on the couch?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed on television?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady with an english accent talking about?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"who is sitting on a black couch next to a vase of red flowers?\",\n    \"video_name\": \"video8068\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what floats in space?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"who stands on the mood?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"astronaut\"\n  },\n  {\n    \"question\": \"what shows mtv logo on moon?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is an astronaut on?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what do the astronaut standing on?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what does an astronaut walk on?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"who is on the moon?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"astronaut\"\n  },\n  {\n    \"question\": \"who is looking at a flag?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"astronaut\"\n  },\n  {\n    \"question\": \"what does a satellite float in?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who walks on the moon?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"astronaut\"\n  },\n  {\n    \"question\": \"what does an astronaut stand on?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"mood\"\n  },\n  {\n    \"question\": \"what is an astronaut planting on the moon?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what is an astronaut doing?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what shows an astronaut on the moon?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is an astronaut doing?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what is the astronaut doing?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is an astronaut looking at?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what shows the mtv logo animation and a clip of space?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is planting an mtv flag on the moon?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"astronaut\"\n  },\n  {\n    \"question\": \"what is an astronaut planting an mtv flag on?\",\n    \"video_name\": \"video8069\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what is footage from grand theft auto 5 doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man driving in a video game?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a video game truck traveling on?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what drives down the street wildly?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"cement\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a game tutorial?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what commentary about driving a mixer?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does the cement truck drive down?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what video game commentary about driving?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a man give?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is a man commenting on?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is commenting on the game?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man narrate driving video game?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a video game truck doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a video game car doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a truck doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what did a man narrate a truck driving?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man talks while doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a cement truck doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video game commentary about doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is driving through the streets in a video game?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who narrating a truck driving video game?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a cement truck in a video game?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how well a vehicle on a racing game drives?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk while driving a mixer in a placeholder placeholder s play?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking about the technical abilities of a video game?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks while driving a mixer in a let s play video?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a concrete mixer in gta?\",\n    \"video_name\": \"video8070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what scene from the avatar creatures walking up?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"who climbs a tree with other aliens behind him?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"alien\"\n  },\n  {\n    \"question\": \"what are a scene from the popular animated movie the avatar many characters climbing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"structure\"\n  },\n  {\n    \"question\": \"who is talking about the making of the movie avatar?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about how his interest in science fiction helped to create a popular movie?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his ideas?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"director\"\n  },\n  {\n    \"question\": \"what do aliens climb while the director talks about his ideas?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"vegetation\"\n  },\n  {\n    \"question\": \"what are blue sharped eared alien creatures crawling?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"mossy\"\n  },\n  {\n    \"question\": \"what do several people climb a long vein high up in?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who do a man talks and the hollywood motion picture?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"avatar\"\n  },\n  {\n    \"question\": \"what is scene from the avatar creatures doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a movie clip from the hit picture avatar shows the main character doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is the begining shows two men one doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a scene from the popular animated movie the avatar many characters doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is avatar person doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a blue figure with a broad nose and small pointed ears looks up with dark pupils while doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is an alien doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a blue creature doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are blue sharped eared alien creatures doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is several people doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8071\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who gives a sermon in a church?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man talking to audience?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is preaching?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show and speech?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man hosting?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone giving?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"sermon\"\n  },\n  {\n    \"question\": \"what is a pastor giving?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"sermon\"\n  },\n  {\n    \"question\": \"what does someone talk to?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what do a man talk about?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"fear\"\n  },\n  {\n    \"question\": \"when is a man talking?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is giving a presentation?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hosting a show?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is giving a sermon?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"pastor\"\n  },\n  {\n    \"question\": \"who is talking on stage?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talk about fear?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking to on stage?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is talking to audience on stage?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to a crowd?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who speaks to an audience on stage?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"preach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man on a stage doing?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man on doing?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8072\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman singing while standing on a fire escape?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is in pink and blue light dancing?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is shown in revealing and dark clothing dancing?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is in pink and blue light singing?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman singing about being on the edge in a video?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman hangs onto the top bar of a fire-escape railing in front of blueish smoke doing?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is lady gaga is shown in doing?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"reveal\"\n  },\n  {\n    \"question\": \"what is a famous sexy singer singing graphically is shown in two parts in a music album?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is lady gaga is in pink and blue light doing?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is there is a dual hot woman doing?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is two dancers doing?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who gag singing with a short blonde wig near a city stoop?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is shown as a female pop artist sings on a hazy fire escape?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is singing a song about being on the edge in a video?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is lady gaga doing?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is singing a song while standing on a fire escape?\",\n    \"video_name\": \"video8073\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman sitting at?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who sits alone at a table?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does an asian woman sit at?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"booth\"\n  },\n  {\n    \"question\": \"what is a woman sitting alone at?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what does a woman sit alone at?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a woman sitting in?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who is sitting in a restaurant?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sits at a booth?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing as women sit down?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is sitting alone at a restaurant?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman sitting in in a tv show?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who is sitting in a restaurant in a tv show?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what plays while an asian woman sits at a booth?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is sitting at a table?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman on a phone and doing?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is in a tv show a woman doing?\",\n    \"video_name\": \"video8074\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does advertising of a valentine s?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who talks about not knowing criminals?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an upcoming movie the part of?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"who is walking alongside a moving train?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in the desert with his car?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is at the bar drinking?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a trailer doing?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an ad for a movie doing?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8075\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who breaks a clock?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a man walk into?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is looking at his broken clock?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated man looking at?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"alarm\"\n  },\n  {\n    \"question\": \"what does cartoon character walk through?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who looks at a clock?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who angrily opens a door?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the man look at?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what does the man open?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what does a cartoon character break?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what does an animated man angrily open?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who opens the door?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sees a broken clock laying on the floor?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is staring at a broken clock on the floor?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at alarm clock?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a character open then looks down at an alarm clock?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what does cartoon character see laying on the floor?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what is an animated man staring at a broken clock on?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does an animated man see a broken alarm clock on?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who finds a broken clock on the floor?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens the door then looks down at an alarm clock?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who sees a broken alarm clock on the floor?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks into a room?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks through a door?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a animated character doing?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a cartoon man doing?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a male animation character doing?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"notice\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is an animation of a person doing?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is animated guy doing?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is cartoon character walks through a door and sees a broken clock doing?\",\n    \"video_name\": \"video8076\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who did a man discuss?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who minecraft?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is being played?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who plays minecraft?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the man describe?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do an animate?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man narrate?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who discusses his mine craft world in a play through?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a guy discuss his mine craft world in through?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is moving in a video game?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who narrates a video game?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who discussed minecraft?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing a video game?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who describes the game?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person describing?\",\n    \"video_name\": \"video8077\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who caught?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is measuring the size of a copperhead snake with a tape measure?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who prepares to demonstrate the way to skin a snake?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing for doing some homemade carpenter work?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does video of a man outdoors measuring?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"who is showing a piece of wood?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing a piece of?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"who killed?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes how to skin a snake?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing to skin a snake?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who catches a snake?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing some tools?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man catch?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"who is talking about the measuring instrument?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is video of a man outdoors doing?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8078\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two groups of people are kayak doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are boats doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is educational video about kayakers doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"row\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"evaluate\"\n  },\n  {\n    \"question\": \"what are several groups of people doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what do rowers compete in?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who kayak race?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"competetion\"\n  },\n  {\n    \"question\": \"what rowers race in various boats?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what are some men quickly paddling kayaks across?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are several groups of people kayaking on?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"waterway\"\n  },\n  {\n    \"question\": \"who talks about evaluating boat rowers?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is some men are quickly doing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"paddle\"\n  },\n  {\n    \"question\": \"what did a competetion kayak?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who are people racing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"kaya\"\n  },\n  {\n    \"question\": \"what about kayakers racing?\",\n    \"video_name\": \"video8079\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man feed?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is eating food?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is bear eating?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man walking with?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is a man playing with?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what does a bear eat?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is eating?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is man playing with?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"who is playing with panda?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking care of a large bear?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has a bear for a pet?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what takes a walk with a human?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is being fed by a man?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"who is a bear being fed by?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is friends with a bear?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who feeds a bear?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what eats a table?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is walking with people?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what are some guys hanging out with?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"who is playing with bear?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking with a bear?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks with him?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a bear doing?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is there are people doing?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"tend\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is bear doing?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a large grizzly bear is depicted doing?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is a bear doing?\",\n    \"video_name\": \"video8080\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what sings a brain song?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon brain sing?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"brain\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what are people watching?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what play nice to see?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are singing?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what sings to another?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a minecraft rabbit character doing?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is two bear-like characters doing?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8081\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing a turn decision based game he is making jokes that are very funny?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks inappropriate languages as he plays the video game?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking while playing a computer game?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an xbox 360 game while commentating he is making funny jokes?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do drawing of the tunnel and the door of a kingdom with a key on the box animate?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does the man speak as he plays the video game?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"inappropriate\"\n  },\n  {\n    \"question\": \"who is speaking about a treasure chest?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates his video game experience with seeming displeasure?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what animals still images of god and hall displaying on screen?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8082\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what does a man demonstrate?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who explains how to log off microsoft windows?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man explaining computer interface in?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who explains the windows interface?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains how to use computer?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is describing a computer screen?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to log off a program?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person who doing?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"who demonstrates a program?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is images of a windows desktop screen with a man doing?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"log\"\n  },\n  {\n    \"question\": \"what is a person describing?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what was very helpful?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what does a man explain?\",\n    \"video_name\": \"video8083\",\n    \"answer\": \"interface\"\n  },\n  {\n    \"question\": \"what are two black cats trying to jump into?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is one pushed down into by the other one?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what does a curious cat make its way down into only to hesitate then get shoved in by another cat?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"basement\"\n  },\n  {\n    \"question\": \"what pushes the other down the steps?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what makes its way down into the basement only to hesitate then get shoved in by another cat?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a curious cat make down into the basement only to hesitate then get shoved in by another cat?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what does one of cats push the other down?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"ladder\"\n  },\n  {\n    \"question\": \"what does a curious cat make its way down into the basement only to hesitate then get shoved in by?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is two cats doing?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"investigate\"\n  },\n  {\n    \"question\": \"what do two cats walk down a ladder through?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"trap\"\n  },\n  {\n    \"question\": \"what is two cats doing?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is one cat doing?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what was here one of the pussy cat doing?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"peep\"\n  },\n  {\n    \"question\": \"what is there is a black cat doing?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two black cats doing?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what crawls down into the celluar as the other cat watches?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"how many cats walk down a ladder through trap door?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cats are upstairs until one of them pushes the other down a ladder?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many black cats are trying to jump into the hole?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is helped by another cat to go down a basement opening?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"how many cats sit in attic?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cats are near an opening in the floor of the room?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what pushed a ladder while being playful with each other down?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what begins to climb down the ladder attached to the opening?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what pushes another cat down the latter?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what do two cats walk down through trap door?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"ladder\"\n  },\n  {\n    \"question\": \"what does one cat push another cat down?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"latter\"\n  },\n  {\n    \"question\": \"what does one cat push down the latter?\",\n    \"video_name\": \"video8084\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is recording his new motorbike which is parked?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is recording his red motorbike on the street?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a motorcycle park on next to an animal in a field?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what is a red motorcycle parked on by grass?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what does a monkey sit on while men laugh and talk?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"motorcyle\"\n  },\n  {\n    \"question\": \"what is standing on a red motorcycle on the side of the road?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a red motorcycle parked on the sidewalk by?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is person recording his red motorbike on?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a motorcycle with a money on it parked on walk as the camera approches?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is sitting on a red bike?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is standing on the slab?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a red sports motorcycle shown parked on?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what is parked on the sidewalk by grass?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a red color bike doing?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a red bike doing?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a monkey sits on a red and black motorcycle that doing?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what sits on a red and black motorcycle that is resting on a sidewalk?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is parked on a sidewalk next to grass?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what sits on a motorcyle while men laugh and talk?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what parked on a sidewalk next to an animal in a field?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"where is a motorcycle with a money on it parked walk as the camera approches?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what sits on top of someones red motorcycle?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"where is a bike riding?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is a red bike standing on?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"slab\"\n  },\n  {\n    \"question\": \"what is a bike riding in?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is riding in the park?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a two wheeler bike on?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is person recording on the street?\",\n    \"video_name\": \"video8085\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what is a girl audtioning on?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a young girl perform on?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is a child singing for?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"reallity\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who glasses?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy singing?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who performs for judges?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who performs on the voice?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is audtioning on the voice?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a boy singing on stage?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when is a boy singing a song?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do a young man play the guitar during?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"who is singing a song on stage?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do a young man play during an audition?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who sings a song on a show?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"youth\"\n  },\n  {\n    \"question\": \"who play the guitar during an audition?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs a song for the show the voice?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is singing for a judge?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is child doing?\",\n    \"video_name\": \"video8086\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what do people dance wearing acient?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"who sings in an assassins creed music video?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who sings while dressed up like a video game character?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings in a costume about killing?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people dressed in american colonial clothing sing?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who assassins creed lyrics song?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sing in a video?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing while a girl is dancing?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what about assassins creed?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a parody song about assassins?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"creed\"\n  },\n  {\n    \"question\": \"what are people dancing in?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"costume\"\n  },\n  {\n    \"question\": \"what acient clothing?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people dance doing?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do a man sing in?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man sings in a costume about doing?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a music video about assassins?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"creed\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8087\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a person dumping eggs with?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a young boy use to transport ornaments to a christmas tree?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a small boy wearing a santa hat push his toy dump toward the christmas tree as a woman asks what he has there?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is the small kid on?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who asks what he has there?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is on the floor?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who plays with a toy dump drunk filled with christmas ornaments?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who push the dump truck near the christmas tree?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who pushes the yellow truck near the tree?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a little boy pushing a toy truck full of ornaments wearing a santa claus?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"who uses his toy truck to transport ornaments to a christmas tree?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is pushing a toy car to a christmas tree?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who talks to his mother about a special delivery?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a young boy in a santa hat push?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is dumping eggs with a truck?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a kid with a cap playing with?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a child pushing to a christmas tree?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a small boy wearing a santa hat push dump truck toward the christmas tree as a woman asks what he has there?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"dump\"\n  },\n  {\n    \"question\": \"what is little boy in christmas cap doing?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a cute little boy doing?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is the small kid is on the floor and doing?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy in a santa hat doing?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a kid with a cap doing?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young boy with a santa hat on doing?\",\n    \"video_name\": \"video8088\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"who is driving a small police car on a track?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding in a car on a race track?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what drives a custom police vehicle on a long runway?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"who rides a police car through a grassy field?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a four wheel drive police car driving off road into in order to intercept another car?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a four wheel drive police car driving off into the grass in order to intercept another car?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a four wheel drive police car driving off road into the grass in to intercept another car?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt driving an suv driving in?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a man with a blue visored helmet driving?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a guy in a white suit driving a car out?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what a british guy rides through a grassy field?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what are some men racing in a car across driving away from a police car?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is displayed between three vehicles of vastly different performance?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are some men racing in across a field driving away from a police car?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a guy in a white suit driving out side?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is being chased by a police car?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding in on a race track?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving a small police car on?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a man discussing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a man driving on?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who is discussing a track?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives his white car onto a grassy field and then back on to the street?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who is driving on a track?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with a blue visored helmet doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is organized?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a guy in a white suit doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a pretending to be a cop doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is in a blue shirt doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a small white-roofed car with a blue panel of doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a four wheel drive police car doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a police officer drive onto a grassy field and then back on to the street?\",\n    \"video_name\": \"video8089\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who emerges from a capsule in a futuristic room?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is coming out of the chamber for the first time?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"what are a couple of scientists in?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"who is woken up by scientists?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who removes is sunglasses?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being repaired?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is waking up?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing inside a covered robot?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a group of scientist doing?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is people in a lab doing?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is this is a movie clip of two people doing?\",\n    \"video_name\": \"video8090\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what shows different sporting highlights?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what does a clip from a sports vines?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"compilation\"\n  },\n  {\n    \"question\": \"what is an nba bulls player going up for?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"who does a vine show highlights?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"sporting\"\n  },\n  {\n    \"question\": \"who scores a goal in basketball?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what sports clips?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are young players playing?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"handball\"\n  },\n  {\n    \"question\": \"who gets blocked?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what shows different sports activities?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do basketball players like michael jordan free throw?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what is a clip from a sports vines compilation doing?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a highlight reel of sports videos doing?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a vine shows different doing?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is sports man doing?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are young players doing?\",\n    \"video_name\": \"video8091\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who kicks the soccer ball?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"goalie\"\n  },\n  {\n    \"question\": \"what still stays inside the net?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does the goalie kick?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is being played indoors?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are players playing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what are some men playing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what does a man kick into a soccer goal?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a soccer team scoring?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what is scoring a goal?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is playing soccer?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who try to score a goal?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do soccer players try to score?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what does a player fail to stop from going into the goal?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who kicks a ball into a soccer goal?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a soccer game in progress and the goalie stop from going in?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a soccer team doing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man is unsucessfully doing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who fails to stop the soccer ball from going into the goal?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who is unsucessfully trying to block a soccer ball from entering the goal?\",\n    \"video_name\": \"video8092\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing stars?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what takes over the late show?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"colbert\"\n  },\n  {\n    \"question\": \"what do a news anchor discussing?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what anchor discussing a story?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does steven colbert take over?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is talking about the late show?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is talking about the late show?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who voices over a discussion of the late show?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a talk show doing?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking on a talk show?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are being discussed?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"stephen\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8093\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do fireworks burst over?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"where do fireworks explode as people watch by the bay?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what do fireworks explode over as people watch by the bay?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is over a body of water?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"firework\"\n  },\n  {\n    \"question\": \"what shows a firework show going on?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is fireworks doing?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is lot of doing?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"sparkle\"\n  },\n  {\n    \"question\": \"what are many fireworks doing?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"explode\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are many fireworks exploding in?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what are fireworks being shown on?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what do people watch by?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"bay\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8094\",\n    \"answer\": \"firework\"\n  },\n  {\n    \"question\": \"what is a man vacuuming out of an engine?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"who is showing shavings on an engine?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is got repaired?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is being filmed?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"vacuum\"\n  },\n  {\n    \"question\": \"who is fixing a car?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on a engine?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was adjusting the belts?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a vacuum cleaner?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is working on a vehicle?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man showing shavings on?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a man vacuuming shavings from?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what does a man display an engine of?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"sort\"\n  },\n  {\n    \"question\": \"who displays an engine of some sort?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person working on?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is showing how to repair something on a car engine?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was the man doing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"vacuum\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man fixing?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is vacuuming metal shavings out of an engine?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is vacuuming shavings from an engine?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video8095\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"launch\"\n  },\n  {\n    \"question\": \"what is a woman is in the gym and doing?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is coaching a skeleton on a basketball court?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is using a machine to launch footballs at cartoon characters?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a ball shot at?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is a woman in?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what is shot at a skeleton?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who a lady coaching?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does minecraft zombie catch?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is operating play machine?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who catches a football?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is in the gym?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who coaching cartoon characters?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman launching at animated characters?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is a boy playing football with?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is launching a ball at animated characters?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who attempt to play basketball in real life?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is playing football with minecraft characters?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do mine craft character attempt to play in real life?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do mine craft character attempt to play basketball in?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what is a boy playing with minecraft characters?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a woman using to launch footballs at cartoon characters?\",\n    \"video_name\": \"video8096\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a guy and woman doing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"popcorn\"\n  },\n  {\n    \"question\": \"what lopez?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"episode\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a clip from a tv show doing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is an elderly woman doing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is actors are shown doing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is george lopez doing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man and woman doing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is people in a movie theatre doing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what do actors watch?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does a man enter?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"theater\"\n  },\n  {\n    \"question\": \"what do a clip taken from a tv show on at nite?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"nick\"\n  },\n  {\n    \"question\": \"who lopez speaking in the movies?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"george\"\n  },\n  {\n    \"question\": \"who is eating popcorn?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who enters a movie theater?\",\n    \"video_name\": \"video8097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man add cooking to a frying pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what does an indian chef start cooking?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is adding cooking oil and chicken to a skillet?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person with orange dressing doing?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is an indian chef adds hot oil to a pan and starts doing?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does an indian chef add to a pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a cook drizzle into a pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who pour the oil in to a heating vessel?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a man in red add in the explain about it?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is someone wearing a red shirt adding to a hot pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is adding oil and food to a pan in a kitchen?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who adds oil to the pan before adding the raw chicken to it?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man pour oil into a preheated stir pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what does a man pour into a preheated stir fry pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what did a cook add oil in the fry put in it to cook?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who pours oil into a preheated stir fry add some raw chicken from a small bowel?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pour oil into a preheated stir add some raw chicken from a small bowel?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what does a man pour into a preheated stir fry add some raw chicken from a small bowel?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a man pour oil into a preheated stir fry add from a small bowel?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is demonstrating how to prepare a chicken recipe in a wok?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pours oil into a preheated stir fry pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adding oil and pieces of chicken into a wop describing how to cook a recipe?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who added oil in the fry put some sea food in it to cook?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who did a cook add oil in put some sea food in it to cook?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who is preparing a delicious dish in a pan in a kitchen?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a man adding oil and pieces of chicken into describing how to cook a recipe?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"wop\"\n  },\n  {\n    \"question\": \"who is adding cooking oil and chicken to a frying pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what did a cook add in the fry put some sea food in it to cook?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who oils a pan and cooks chicken in a hot?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who adds diced chicken before ginger and garlic to come?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does the woman add to the pan before adding the raw chicken to it?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who adds cooking oil and chicken to a frying pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person with orange dressing putting first in a pan and next chicken?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is someone preparing in a pan in a kitchen?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a person add to a hot pan on the stove?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what does a person add oil and chicken to a hot pan on?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is someone adding to a pan in a kitchen?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did a cook add in the fry pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a chef adding cooking oil and chicken to pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"what is a male chef adding cooking oil and chicken to?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"what is someone preparing a delicious dish in a pan in?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who put something in the oil to cook?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did a cook add oil in pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who added oil in the fry pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who adds oil and chicken to a hot pan on the stove?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who adds hot oil to a pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what do a man in red add in the pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who starts cooking chicken?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does a cook add diced before ginger and garlic to come?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what does a man in an orange chef jacket pour into a hot pan then places ingredients into the pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who drizzles oil into a pan?\",\n    \"video_name\": \"video8098\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8099\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8099\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are the animals running in?\",\n    \"video_name\": \"video8099\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is being used for a flyover shot of a lake?\",\n    \"video_name\": \"video8099\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what flies over a landscape?\",\n    \"video_name\": \"video8099\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a camera fly over?\",\n    \"video_name\": \"video8099\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"what flies over waterscapes?\",\n    \"video_name\": \"video8099\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"where does a camera fly?\",\n    \"video_name\": \"video8099\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8099\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8099\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is a man in a suit and glasses interviewing hawking?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"stephen\"\n  },\n  {\n    \"question\": \"who is posing comical questions to stephen hawking?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"interviewer\"\n  },\n  {\n    \"question\": \"who is a man interviewing hawking with a laugh track in the background?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"stephen\"\n  },\n  {\n    \"question\": \"who is talking to stephen hawking who sits in his special chair?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing stephen hawking with a laugh track in the background?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing a disabled man that uses a computer to talk for him?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a person in suite talking with a man who seated on wheel chair where small computer attach to?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"wheelchair\"\n  },\n  {\n    \"question\": \"what do a two old man discuss?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what reminds the politicians who answers serious questions of the journalsit?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what is a man in a suit and glasses doing?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is this is a basic but funny interview with stephen doing?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"hawk\"\n  },\n  {\n    \"question\": \"what is a person in suite doing?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a comedy skit doing?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is male interviewer doing?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what are a two old man doing?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is john oliver doing?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a talk show host interviews stephen doing?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"hawk\"\n  },\n  {\n    \"question\": \"what skit involving stephen hopkins in a wheelchair and another gentleman wearing glasses?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"who is interviewing steven hawking as he sits in his wheelchair?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"oliver\"\n  },\n  {\n    \"question\": \"what does steven hawking sit in?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"wheelchair\"\n  },\n  {\n    \"question\": \"who is john oliver interviewing hawking as he sits in his wheelchair?\",\n    \"video_name\": \"video8100\",\n    \"answer\": \"steven\"\n  },\n  {\n    \"question\": \"what do lady gaga wearing weird make up singing in a castle?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is wearing heavy makeup?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady in a black and white wig singing?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a lady singing in a music video is showing doubles?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who then climbs into a window with little clothing?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what is a womenin weird dress and make up doing?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the two young ladies doing?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is lady gaga doing?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl with some horrible make up singing and doing?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a music video for a female singer doing?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a female with short hair sings a song while doing?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is singing in a music video the screen is showing doubles?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is dancing in an urban setting?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman wearing?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who leans?\",\n    \"video_name\": \"video8101\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who plays games?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is falling down?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"enduro\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a car hitting?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"motorcyclist\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a clip from a game doing?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a video game displayed on?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is hitting a motorcyclist?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what hits a man on a motorcycle in a video game?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does clip of grand theft auto a car run into in the video game?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"motorcyclist\"\n  },\n  {\n    \"question\": \"what does a man riding a motorcycle hit a car in?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who falls out of a car in a video game?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on a bike?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding on?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is displayed on the screen?\",\n    \"video_name\": \"video8102\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man in a yellow jacket and ski wear exits a yellow helicopter and claps hands with another man doing?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"unload\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is skiers doing?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is two snowboarders doing?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is person taking the ski from the helicopter on?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what do a man get off of a helicopter in order to ski down the side of?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what do a man get off of in order to ski down the side of a mountain?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is a person coming by in a skating place?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"who gets ready to ski downhill on a slope?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people stand near on top of the mountain?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what do a man get off of a helicopter in to ski down the side of a mountain?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"who prepare to ski down a very large mountain?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"hardcore\"\n  },\n  {\n    \"question\": \"who exit a helicopter?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"hardcore\"\n  },\n  {\n    \"question\": \"what do hardcore skiers exit?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what did an teen men land with?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what did a man in a yellow jacket and ski ride in?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"who is coming by helicopter in a skating place?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many people are prepared to descend down a steep snow mountain?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who getting off of a helicopter in order to ski down the side of a mountain?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking the ski from the helicopter on the snow?\",\n    \"video_name\": \"video8103\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are some people playing outside on a court?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are two men playing badminton in while a commentator talks over what is happening?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what does not touch the ground a professional tennis match the players are hitting the ball very high in the air?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are a couple of people playing a game of?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"how many men is hitting a ball back and forth in a game?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who plays against his opponent in an outdoor arena?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what are two men playing in a competition while a commentator talks over what is happening?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"who serves the ball over the net?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what does the ball not touch the ground a professional tennis match the players are hitting the ball very high in?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what does the ball not touch a professional tennis match the players are hitting the ball very high in the air?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"how many men are hitting an object back and forth over a net?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does the ball not touch the ground match the players are hitting the ball very high in the air?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what are two men hitting back and forth over a net?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a couple of people doing?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is tennis players doing?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did a couple of guys having a tennis match in front of a medium size?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are a professional tennis match the players doing?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is there is a yellow jersey man doing?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two men hitting a ball back and forth in?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is two men hitting back and forth in a game?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who talks over what is happening?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"how many men are playing badminton in a competition while a commentator talks over what is happening?\",\n    \"video_name\": \"video8104\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is helmet cam video of someone doing?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"who is skiing down a mountain trying to avoid trees?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who skiis down a mountain slope gaining on another person skiing while music plays?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"faster\"\n  },\n  {\n    \"question\": \"who is snow riding faster?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone skiing down trying to avoid trees?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what does someone skate on through woods covered with snow?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what does a skie rider riding in the snow with his handy cam and make?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"perfect\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is a person skiis down a mountain slope doing?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"gain\"\n  },\n  {\n    \"question\": \"what is someone is ice doing?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"who skates on the ice through woods covered with snow?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what cam video of someone skiing down a mountain?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"helmet\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is displayed filmed from the first person perspective of the skier?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"skiin\"\n  },\n  {\n    \"question\": \"who is ice skating through the trees covered in snow?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many people are skiing down a snowy hill covered in trees?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is skiing on the mountain filled with snow?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is skiing down a snowing slope trees are all around?\",\n    \"video_name\": \"video8105\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is someone on a mini bike using?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"what does a man on a mini bike jump?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"mini\"\n  },\n  {\n    \"question\": \"who is driving a bike in a wood?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man on a small scooter try to jump?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"who is riding a tiny dirtbike over a ramp?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is jumping with the small bike?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person riding over a ramp?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"dirtbike\"\n  },\n  {\n    \"question\": \"what is a slideshow shows a person doing?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone on a mini bike doing?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is video game doing?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what does a man record for a bike?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is doing some sweet jumps on a mini bike?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what stood high?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is bike race doing on?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is doing on street?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a man driving in a wood?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what does a man record a jump for?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a person riding a tiny dirtbike over?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"who records a jump for a bike?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when do a man doing a stunt show?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"motor\"\n  },\n  {\n    \"question\": \"who shows a person preparing a stunt?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what is a man driving a bike in?\",\n    \"video_name\": \"video8106\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is men and women indoors doing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are men and women doing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"admire\"\n  },\n  {\n    \"question\": \"who is standing by a car?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is shaking his hips?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a racing car is shown behind which boys and girls doing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is people stand next to doing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a group of persons doing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"who is waving his hand in the air?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of persons introducing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man waving his hand in?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who are some guys standing together near?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"vechile\"\n  },\n  {\n    \"question\": \"what are men and women posing near?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman standing by?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man waving in the air?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what do people stand next to racing cars at?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"expo\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what are people admiring?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a bunch of people doing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who points at a camera near a race car?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are people getting photographed while a song plays?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is shown behind which boys and girls are posing?\",\n    \"video_name\": \"video8107\",\n    \"answer\": \"racing\"\n  },\n  {\n    \"question\": \"what are a christmas scene where the kids doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does kid put on toy trains?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a pink locomotive engine lies on its side young children doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is there is some kids doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is what sounds like a young boy doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are a toy train is on its side and as the wheels doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a train is on its side and someone doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a toy train doing?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"who christmas decorative?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is showing the colorful toys and other things in the room?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who puts holiday ornaments on the moving parts of a toy train?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is putting christmas tree bulbs onto the wheels?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who drops christmas ornaments on a toy train?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"where do kids using a toy train that has been lain to launch christmas ornaments?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"how many kids play with a toy train and some christmas ornaments?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"where does a pink locomotive engine lie young children are placing balls on the wheels to see them being kicked off by the engine?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a kid playing with?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what do the ornaments get thrown?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"where is a toy train?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is on its side?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"where is a train?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a toy train on?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a train on?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what does a pink locomotive engine lie on young children are placing balls on the wheels to see them being kicked off by the engine?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what are colorful balls and a toy train on?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is someone placing ornaments on?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"motor\"\n  },\n  {\n    \"question\": \"what is someone putting onto the wheels?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"bulb\"\n  },\n  {\n    \"question\": \"what does a young boy put on the moving parts of a toy train?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"holiday\"\n  },\n  {\n    \"question\": \"who puts christmas decorations on toy trains?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does a child drop on a toy train?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"what is person showing the colorful toys and other things in?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a pink locomotive engine lie on its side young children are placing balls on the wheels to see them being kicked off by?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is placing ornaments on the motor?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is lying on the floor of a house?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who plays with a toy train and some christmas ornaments?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do kids using a toy train that has been lain on to launch christmas ornaments?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who is playing with a train?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does kid put christmas decorations on?\",\n    \"video_name\": \"video8108\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what shows a princess and dolls?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is showing pictures of palace pets?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what are several animation pictures of dogs and horses in fancy clothes shown as?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"palace\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is it doing?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are disney princesses doing?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who are hugging dogs?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"who are shown with animals?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what about princesses?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are shown off?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is playing palace pets?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is an animation showing pictures of?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"palace\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8109\",\n    \"answer\": \"palace\"\n  },\n  {\n    \"question\": \"what is footage from an old cartoon doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cartoon dolls girl doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is the woman in red dress doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"who is crying?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a very pretty girl doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is french version of disney film sequence doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is some cartoon girl doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is at first glance you see a donations van then you see disney s cinderella doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is several boxes are outside of a truck a fairy godmother appears next to a you lady that doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a clip from cinderella in french cinderella doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is several disney clips doing?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what a cartoon dolls girl woman sitting on bed making to get up dolls moving displaying on?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is visited by an elderly woman who uses a wand to make magical happy things happen?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"crying\"\n  },\n  {\n    \"question\": \"who a cartoon dolls woman sitting on bed making to get up dolls moving displaying on screen?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what dolls girl woman sitting on bed making to get up dolls moving displaying on screen?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who cries at a bench while a woman in blue appears?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who did several disney clips featuring magic set to the soundtrack from?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"cinderella\"\n  },\n  {\n    \"question\": \"what did several disney clips featuring magic set to from cinderella?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"soundtrack\"\n  },\n  {\n    \"question\": \"what does a cartoon woman cry at while a woman in blue appears?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what does the blonde girl in a blue dress cry on an old lady?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"lap\"\n  },\n  {\n    \"question\": \"what a cartoon dolls girl woman sitting on making to get up dolls moving displaying on screen?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a girl in a pink dress summon?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"kind\"\n  },\n  {\n    \"question\": \"who appears then a montage of other disney characters follows?\",\n    \"video_name\": \"video8110\",\n    \"answer\": \"godmother\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man describes a video doing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is a man shows two computer monitors about a tool he uses while doing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man watching?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is watching a computer screen?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what show on the computer screen?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"who is playing a video game while using his computer?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a person talking about recommending a man purchase?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"who describes a video editing process?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about an xbox tool?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who shows two computer monitors about a tool he uses while playing a game?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing while using his computer?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who discusses computer animation?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man show two computer monitors about he uses while playing a game?\",\n    \"video_name\": \"video8111\",\n    \"answer\": \"tool\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baseball player doing?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"charge\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what does a video clip show?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing baseball?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man hit a ball with?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"bat\"\n  },\n  {\n    \"question\": \"what does a man hit with a bat?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who hits a ball with a bat?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who feels he has been thrown at by a pitcher?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"hitter\"\n  },\n  {\n    \"question\": \"who confronts a pitcher on field?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what shows baseball game?\",\n    \"video_name\": \"video8112\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who glasses?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man updating?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a man on?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a man reporting?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"update\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is news show doing?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people on the news doing?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is reporting the news?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is on the news?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking on tv?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a congressman from maryland to discuss president obama?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what anchor interviews a congressman on television?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do a news anchor interviews a congressman on?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what show talking about clinton endorsing obama?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who do news show talking about endorsing obama?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what do news show talking about clinton endorsing?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"who is taking interview on tv?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is updating latest political news?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what talkshow with the personalities?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is said to support senate obama?\",\n    \"video_name\": \"video8113\",\n    \"answer\": \"congressman\"\n  },\n  {\n    \"question\": \"what is a woman singing?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a girl named angela doing?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"what does a woman sing?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl singing in?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what does a woman sing in?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is sitting in a chair while singing to an audience?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who named angela singing on stage on the television show the voice?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"contestent\"\n  },\n  {\n    \"question\": \"who is sitting on a beautiful chair singing sia?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who did a contestent name singing on stage on the television show the voice?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"angela\"\n  },\n  {\n    \"question\": \"what is a young woman sitting in while singing to an audience?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is singing a song in stage?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings in a chair?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing to an audience?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman singing to?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing in the stadium?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video8114\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in black dress doing?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with blonde hair doing?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is blonde woman doing?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two ladies doing?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a hat doing?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a young woman with long white hair under a black cap removes her sunglasses while doing?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two woman doing?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is a woman with a hat speaking to?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a blond woman in a hat argue with?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to other people about doing something?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many womens got in to a word of duel which is getting more on a river side?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is there is a woman with a cap doing?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who are standing on the street talking to each other?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman with a black hat doing?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two woman standing on talking to each other?\",\n    \"video_name\": \"video8115\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is and man and a child doing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is a man and young child doing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man and small child comment while doing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man and his child doing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a man and a small child doing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a man and a kid doing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a gameplay video of a toddler doing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do a man and a child play together?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who plays video games with his son?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"dad\"\n  },\n  {\n    \"question\": \"what is a person streaming with zombies?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a dad play with his son?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who does a dad play video games with?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"son\"\n  },\n  {\n    \"question\": \"who grabs the red headphones?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are a man and a small child playing on a table?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do a man and his son play?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are a man and a kid playing together?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are people discussing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are a man and a small child playing a game on?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is streaming a game with zombies?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8116\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is tom hanks pursues leonardo dicaprio while doing?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a foreign graphic that uses foreign language doing?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is tom hanks doing?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a movie scene doing?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a bunch of peple doing?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is this is a top 10 movies clip the scene we see is pulled from catch me if you can doing?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what are highlights of scenes from american movies shown in?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"countdown\"\n  },\n  {\n    \"question\": \"who runs down the track?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing in the screen?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what do leonardo dicaprio wear?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"who wear a suit?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"leonardo\"\n  },\n  {\n    \"question\": \"what is the man and women in aeroplane one of?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"who looks into a mirror at himself?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"leonardo\"\n  },\n  {\n    \"question\": \"what does a man run down?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a movie scene playing in?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is looking out the window of a plane as a man runs down the track?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what pursues leonardo dicaprio while wearing an old fashioned black and white suit?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what does tom hanks pursue while wearing an old fashioned black and white suit?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"leonardo\"\n  },\n  {\n    \"question\": \"who talks about the motion picture catch leonardo dicaprio if you can?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is a man looking in a mirrow a plane is taking off is pointing ot a woman?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking in a mirrow a plane is taking off a man is pointing ot a woman?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chasing another man in a hotel and on planes?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is having a conversation with other person?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking out from the plane window to kid?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a guy talk about the motion picture catch if you can?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"leonardo\"\n  },\n  {\n    \"question\": \"what is a man looking in a mirrow is taking off a man is pointing ot a woman?\",\n    \"video_name\": \"video8117\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what are group of people in red clothes doing?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is these are images of a an asian country complete with many people doing?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is women in fancy costumes and doing?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a girls doing?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are asian women doing?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is traditional chinese dancers doing?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is ritualistic choreographed dance in the countryside with flowing water falls and buffalo doing?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"wander\"\n  },\n  {\n    \"question\": \"what do women of a foreign nation comb?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what are asian women washing in a stream?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what did women comb their hair in?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what did women comb in the river?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what do asain people doing many acctivitys out side like washing?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what are asian women washing their air in?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what chicks running in the side of the river?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"bunch\"\n  },\n  {\n    \"question\": \"what are group of people in red clothes running on?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what are group of people in red clothes walking in?\",\n    \"video_name\": \"video8118\",\n    \"answer\": \"nature\"\n  },\n  {\n    \"question\": \"who is talking about stiff person syndrome?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is saying something about the body?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about a syndrome in the body?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a neurologic disease that causes stiff muscles and paralyzation?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to the audience explaining a neurological disorder?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives information about sps stiff person syndrome?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks next to a naked torso?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"what is a person saying something about?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man talks to the audience doing?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"who is showing his back?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"issue\"\n  },\n  {\n    \"question\": \"who talks about a neurological disease?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"youtuber\"\n  },\n  {\n    \"question\": \"who is talking about a disease?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses a medical issue?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about stiff person syndrome?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8119\",\n    \"answer\": \"disease\"\n  },\n  {\n    \"question\": \"who is taking interview?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the person taking?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are sitting?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many black men are discussing sports?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking to each other?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who speaks to another man for an interview?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what sits on the red part of the bed staring at the camera?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is answering questions in an interview?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking with a television show host?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"guest\"\n  },\n  {\n    \"question\": \"what is a man answering questions in?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a guest doing?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are 2 men doing?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a brown dog sits on the red part of the bed doing?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who discusses the role of unions in las vegas mma shows?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two black men doing?\",\n    \"video_name\": \"video8120\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man attaching to an airplane shooter?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"what does a man attach to a battery?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what does a man attach a battery pack to?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man attach a remote plane to?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"who places a toy on a table?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is giving an explanation on technology?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"attach\"\n  },\n  {\n    \"question\": \"who attaches a battery pack to something?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who attaches a remote plane to a battery?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adding an attachment to what looks like a toy of some kind?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is attaching a battery to an airplane shooter?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person place a toy on?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man adding to what looks like a toy of some kind?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"attachment\"\n  },\n  {\n    \"question\": \"what does a person place on a table?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a man build with a battery?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who builds something with a battery?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"attach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person building?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is showing how to use a contraption he made?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person assembling?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"who is building something?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is an airplane latched to?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"who is showing some tools?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man build something with?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"what is latched to a battery?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who is assembling an electronic device?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man attach to something?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"what is some one showing?\",\n    \"video_name\": \"video8121\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is playing a superhero?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots at people on some stairs iron man throuws the hulk into a truck the avengers jump at something?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"iron\"\n  },\n  {\n    \"question\": \"what is several flashes of marvel super heroes doing?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is crashing?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is the hulk thrown into?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does the hulk hit into?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what are the avengers doing?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"superhero\"\n  },\n  {\n    \"question\": \"what are people fighting in?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is the man playing?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"superhero\"\n  },\n  {\n    \"question\": \"who are action packed?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"super\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is iron man doing?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a truck doing?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a man running through the woods with?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"who is running through the woods with a bow?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does iron man shoot at people on some stairs iron man throuws the hulk into a truck the avengers jump at?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who does iron man shoot at people on some stairs throuws the hulk into a truck the avengers jump at something?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"iron\"\n  },\n  {\n    \"question\": \"who does iron man shoot at people on some stairs iron man throuws into a truck the avengers jump at something?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"hulk\"\n  },\n  {\n    \"question\": \"who hits into a truck?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"hulk\"\n  },\n  {\n    \"question\": \"who is thrown into a truck?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"hulk\"\n  },\n  {\n    \"question\": \"what does iron man shoot at people on some stairs iron man throuws the hulk into the avengers jump at something?\",\n    \"video_name\": \"video8122\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who is talking about a baby stroller?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing outside next to three black baby strollers?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is posing near some baby strollers?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving for baby trolley?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"who is standing outdoors with strollers?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving demo for?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"who strollers?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman moving?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is woman standing with?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is standing with three baby strollers?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is moving baby carriages?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing with stroller?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is posing with three strollers?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is talking about strollers?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video of a woman doing?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is video of mom doing?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8123\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who defends another player?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who defends a shot?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who makes a jump shot?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who tries to block the shot?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what does a basketball player defend?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"what does a basketball players make?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what does the player try to block?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who makes a three point shot against an opponent?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who does a basketball player defend?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who hits a jump shot in a basketball game?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is athletes doing?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are announcers doing?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a recap video of derrick rose doing?\",\n    \"video_name\": \"video8124\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"who landed on the ground?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is crashed in the bushes?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"drone\"\n  },\n  {\n    \"question\": \"who crashes into the ground?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man getting carried away by?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who crashes a personal aircraft?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is landing with a radio?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is zip lining?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is getting carried away by something?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crashing?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person hanging in?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what does a man crash into?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is hanging in the air?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the man land on?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is yelling about his technology?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"lining\"\n  },\n  {\n    \"question\": \"what is a man landing with?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"radio\"\n  },\n  {\n    \"question\": \"what is person recklessly doing?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"who falls into some bushes?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man falls into some bushes and his friends come doing?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a man in a doing?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a man yelling about?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who crashed into bushes?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"where does a man in a flying contraption crash?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who crashed on a human sized paper airplane?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crashes when he flies a remote flyer?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a flying contraption crash in?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what did a man crash on a human sized?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a man crash?\",\n    \"video_name\": \"video8125\",\n    \"answer\": \"aircraft\"\n  },\n  {\n    \"question\": \"what is food shown on?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what are being filmed?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a clear glass doing?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is shown on the table?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a person shows a table that has food paper towels dish doing?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what are common household items doing?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some snack items doing?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who shows a table that has food paper towels dish washing detergent and dishes on it?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what did ingredients lay out over?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is talking about food that other groceries can cook?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing a recipe?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are a variety of items laid out onto?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is on a table surrounded by other groceries?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is getting ready to pack for a trip?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person talking about that other groceries can cook?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do various food and othe item show on?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are laying on a counter?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"snack\"\n  },\n  {\n    \"question\": \"what are some snack items laying on?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"counter\"\n  },\n  {\n    \"question\": \"what are common household items sitting on?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"counter\"\n  },\n  {\n    \"question\": \"what are sitting on the counter?\",\n    \"video_name\": \"video8126\",\n    \"answer\": \"household\"\n  },\n  {\n    \"question\": \"what is woman working on?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is woman sitting on?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a group of people sit on a red couch doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a bunch of woman doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a fat girl doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a computer doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are the students noting down in?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what is sexy brunette in glass doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is sitting on the table?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do sexy brunette in glass talking to bunch of people in?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a woman describing women in?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is discussing with other women the intimidation that comes with women being in the computer science field?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is teaching some computer oriented subjects to the students?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who looks at the computer and talks to the other people?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a bunch of woman sitting inside learning about computer skills?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is describing women in computer science?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a bunch of woman sitting inside a room learning about?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does a woman in glasses work on in a room with people?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what do sexy brunette in talking to bunch of people in the room?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what brunette in glass talking to bunch of people in the room?\",\n    \"video_name\": \"video8127\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"what is an alien riding?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a cartoon character riding?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is an animated character riding?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what do cartoon play on?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a cartoon squid riding?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is squidward riding?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what play on the screen?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is riding a bike?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who puts on his hat and the rides his bike?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what is squisward riding?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is riding a bicycle?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a cartoon character prepare to ride?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"who prepares to ride a bicycle?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a man riding in a cartoon program?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what gets on a bike and rides it outside of the house?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who is going out for a bike ride?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who is riding a bicycle in a cartoon program?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a spongebob scene where squidward riding?\",\n    \"video_name\": \"video8128\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is there is a big hotel and its kitchen side many people doing?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what aim to please guests?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"establishment\"\n  },\n  {\n    \"question\": \"what can be a very noisy experience?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is there is someone in a busy kitchen doing?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is the kitchen of a very big fancy restaurant and everyone busy doing?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are an inside view of a busy kitchen where chefs doing?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is in a hotel kitchen a cheif chef doing?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"examine\"\n  },\n  {\n    \"question\": \"what is in a kitchen all the chefs are busy doing?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are people in a busy restaurant kitchen doing?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a busy kitchen of a restaurant where workers are engaged in doing?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what are group of people working hard in?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are people in a busy restaurant kitchen preparing?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a cheif chef examining going around in a hotel kitchen?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are working hard in the kitchen?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is examining the work going around in a hotel kitchen?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"cheif\"\n  },\n  {\n    \"question\": \"what are an inside view of a busy kitchen where chefs are cooking and stewards taking the orders from?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are doing their tasks in the kitchen?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who helps one equal out social tendencies and organization?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are all the chefs busy preparing in?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are group of people doing their tasks in?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are all the workers doing their tasks in?\",\n    \"video_name\": \"video8129\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is three scientist in black suits surround a device doing?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"what is a man in suit doing?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are businessmen doing?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is bunch of people in suit and tie doing?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what have been developed?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who is speaking about iranian scientists which is designed and manufactured in the country?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what have been checked?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what do a crowd of people gather to see displays of?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what are businessmen looking at new inventions at?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"convention\"\n  },\n  {\n    \"question\": \"what do the men in the suits talk to one another near?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what do three scientist in black suits surround studying something about an event and peoples?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what are group of people having in the shop?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are having conversation in the shop?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are group of people having conversation in?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are all persons talking each other on?\",\n    \"video_name\": \"video8130\",\n    \"answer\": \"company\"\n  },\n  {\n    \"question\": \"what is guy in a restaurant doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man with gloves cuts up an animal on a doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is man in black shirt doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in his kitchen doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a person is seen in a kitchen doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a cook prepares a squid by carefully doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman in black doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a woman cuts up an animal on a doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who exp?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person seen in cutting up a live squid?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a man with gloves cut up on a cutting board?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"who is moving a squid around on a table?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a chef clean?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"what then slices a live aquatic creature into piece?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who prepares a squid by carefully slicing it up?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is preparing some kind of fish or sea animal for cooking?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a woman cut up on a cutting board?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is man in black shirt slicing?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what does a chef cuts then slice a live aquatic creature into?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"piece\"\n  },\n  {\n    \"question\": \"what open a live aquatic creature?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a man wearing a gloe cutting apart?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"who cleans a squid?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does a cook prepare by carefully slicing it up?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"who is seen in a kitchen cutting up a live squid?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who guts fish in a kitchen with gloves?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting up a live squid in some marketplace as if to prepare for a meal?\",\n    \"video_name\": \"video8131\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a lady showing features of?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who demonstrates a baby stroller?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who was onn the floor?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman giving demo for?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"who is showing features of stroller?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is talking about to work a baby carriage?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing how to use a stroller?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving for baby trolley?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"who describes a baby stroller?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman show off s features?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman explaining the features of?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is showing how to use a baby stroller?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing how a baby stroller works?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is advertising the features of a stroller?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining the features of a stroller?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing the features of a baby stroller?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows off a baby stroller s features?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman advertising the features of?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is a woman using?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a lady showing?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a person showing?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does woman describe?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does lady demonstrate?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is using a stroller?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing a stroller?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what was the stroller onn?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who explains how to use features of baby stroller?\",\n    \"video_name\": \"video8132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is guy in beard doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man with beard doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an anger doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is there is a split screen with one doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is it looks like a man doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man in green shirt doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a boy in checks shirt doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is one guy doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"criticise\"\n  },\n  {\n    \"question\": \"what is a guy with a collared shirt and beard doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in the studio sits a bearded man and talks with doing?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"support\"\n  },\n  {\n    \"question\": \"what a boy in checks shirt wearing sitting speaking and still image of picture displaying on screen?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who is writing words on the board?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a boy in checks shirt wearing cloth sitting speaking and still image of displaying on screen?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what does studio 66 talk about?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who beard talking about something?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who beard talking about a class?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man writing words on?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what does a commentary about sports sound like?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what talks about football?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"who narrates what appears to be a recorded incident?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what does a bearded man and talks with supporting video sit in?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"who is looking?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who beard talking about something in studio?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is explaining about the behind the glass video in a channel?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"anger\"\n  },\n  {\n    \"question\": \"what does a man with a beard talk about sports on?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what did man with beard talking about?\",\n    \"video_name\": \"video8133\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"who speaks over aerial footage of a boat?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what is a motor boat going in to?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is attacking the people of sea shore on the sea?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"sunami\"\n  },\n  {\n    \"question\": \"what is a wonderful seeing with white color waves?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is the sunami attacking the people of sea shore on?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a boat with persons doing?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a boat doing?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is on the sea the sunami doing?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a shot from a very high spot doing?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are big boats doing?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"what is an aerial view is shown of a boat doing?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"drift\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a ship and water doing?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a water doing?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is shown of a boat drifting through the ocean?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what are being filmed from high above?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who does an announcer then introduce?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what is going in to the sea?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"motor\"\n  },\n  {\n    \"question\": \"what do big boats get information from commissioner office trees are near?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"shore\"\n  },\n  {\n    \"question\": \"what ship moving swiftly slowly?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is moving in the deep sea?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who then introduces a female announcer?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what are many people enjoying in sea?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does the beautiful greenish blue ocean water ripple slowly toward?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"shore\"\n  },\n  {\n    \"question\": \"what are many people enjoying a boat ride in?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is an aerial view shown of drifting through the ocean?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is the sunami attacking the people of on the sea?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"shore\"\n  },\n  {\n    \"question\": \"what do big boats get information from commissioner are near the shore?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what do big boats get office trees are near the shore?\",\n    \"video_name\": \"video8134\",\n    \"answer\": \"commissioner\"\n  },\n  {\n    \"question\": \"what does father perform dance before the boy in?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is dancing for a song with kid in home?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is a man dancing for a song with kid?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who does father perform dance before in a kitchen?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who performs dance before the boy in a kitchen?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"what is a father doing?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does father perform before the boy in a kitchen?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who dances with his toddler child in a kitchen?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man dancing for a song with in home?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is dancing around a child?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man dancing for a song with kid in?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who is dancing inside?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man dance in?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who was playing?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was singing?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man dancing in?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is a man dancing around?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who dances in his kitchen?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man dancing for with kid in home?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man dancing on?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is dancing in a kitchen?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances in the kitchen?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man and kid dancing and doing?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a man dancing in his house with?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"son\"\n  },\n  {\n    \"question\": \"who is dancing in his house with his son?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing near a man?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is a boy standing near?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing on a music?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man dancing in with his son?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what was the man doing?\",\n    \"video_name\": \"video8135\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is the woman in doing?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is news reader doing?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman and man doing?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"disagree\"\n  },\n  {\n    \"question\": \"what is the woman anchor is blue dress doing?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"who discusses with an author his book claiming reagan was not a good republican?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is the newsreader woman in black dress doing?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a newscaster discusses with an author his book doing?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"claim\"\n  },\n  {\n    \"question\": \"what is a shot of fox news where the news host doing?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do the newsreader woman in black dress asking with one person?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"question\"\n  },\n  {\n    \"question\": \"what is a woman asking to the man in the news tv channel?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"question\"\n  },\n  {\n    \"question\": \"what is a woman interviewing a man about his book on?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is responding to something in the studio?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing a man about his book on the news?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman interviewing a man about on the news?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what is the man responding to something in?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what is the man responding to in the studio?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is interviewing a man who has just written a book?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a female anchor interviews a male spokesperson on?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what anchor interviews a male spokesperson on the air?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who is talking with a man who wears black color coat?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is talking by a man whi is on the screen?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what did a reporter reading a comment claiming the author write with a bias?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what did a reporter reading a comment claiming the author write the book with?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"bia\"\n  },\n  {\n    \"question\": \"who is blue dress is reading something and talking to a man in the studio?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"anchor\"\n  },\n  {\n    \"question\": \"who interviews a man who has written a controversial book?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is asking a question to the man in the news tv channel?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a newscaster discuss with an author his book claiming reagan was not?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"republican\"\n  },\n  {\n    \"question\": \"what is the woman anchor blue is reading something and talking to a man in the studio?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who do the newsreader woman in black dress asking the question with?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did a man whi is on the screen write is being interviewed on fox news about a book?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a newscaster discuss with his book claiming reagan was not a good republican?\",\n    \"video_name\": \"video8136\",\n    \"answer\": \"author\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"when does a man talk?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a group performing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"cigarette\"\n  },\n  {\n    \"question\": \"what are actors doing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"drama\"\n  },\n  {\n    \"question\": \"who acting funny here?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is some people doing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is men in prisoner uniforms doing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a prisoner doing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is performing on stage?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a man in a jumpsuit doing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"when is a man talking?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man who doing?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"who is talking about something in a jail in stage?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man performing with some other actors?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a man talking about something in a jail?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is performing on stage with some other actors?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man in a jumpsuit talking?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is talking aon stage?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a cigarette?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks on stage?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who acts in a theatrical production set in a jail?\",\n    \"video_name\": \"video8137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving around inside of a truck?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"brad\"\n  },\n  {\n    \"question\": \"what is landing in the snow?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what do hordes of zombies climb on top of one another to reach?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what do a number of people pile up towards?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is brad pitt driving around inside of?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a movie preview for world war z showing pictures from?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a poster showing world war z there is a giant mountain with a helicopter on the poster?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"poster\"\n  },\n  {\n    \"question\": \"what shows a world war trailer or a movie z world war?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"escalate\"\n  },\n  {\n    \"question\": \"what is world war picture shown people are shooted the view of people are running here and there?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is shown people are shooted the view of the city people are running here and there?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what are people running from?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is a movie scene playing in?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a movie scene doing?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a movie preview for world war z doing?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is playing in the screen?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is brad pitt doing?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is it is a poster doing?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a black helicopter doing?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is this commercial doing?\",\n    \"video_name\": \"video8138\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what do a man put the food for?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what is a man giving to the parrot?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who put the food for parrot?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is learning to put the object into the bowl?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is a man wearing glasses teaching how to fetch?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a man in glasses stand beside?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a man in a light blue shirt and glasses train?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is a men in gray dress training to drop the objects in the bowl?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"who explains how a bird should be taught to follow instruction correctly to get the treat?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who was talking about a parrot which is eating and playing with him?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who feeds a green bird standing on a perch?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving food to the parrot?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man put for parrot?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man giving food to?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the men doing?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a men in grey dress doing?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what was a man doing?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man feeds a green bird doing?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person with nice shirt doing?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a red parrot doing?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what put it back?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a red parrot standing on inside?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who explain the parrot?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is standing on a thing inside?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what do a man explain?\",\n    \"video_name\": \"video8139\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"who is talking excitedly to three women?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who enters a barn?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are playing in the snow?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon kids playing in?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what does a 3d animated?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a cartoon character enter?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"barn\"\n  },\n  {\n    \"question\": \"what is being filmed?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who are walking in a snowy area?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"what are teenage women doing?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is some girls doing?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are cartoon kids doing?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animated girl doing?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a 3d movie doing?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is 3d animation of characters doing?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"who visit a shed full of presents?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"barbie\"\n  },\n  {\n    \"question\": \"what is a tall toy doing?\",\n    \"video_name\": \"video8140\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"what do the beach house walk in many people enjoy?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"nature\"\n  },\n  {\n    \"question\": \"who is someone in a booth operating?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"crane\"\n  },\n  {\n    \"question\": \"who opens a dor with a key?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in blue sitting inside?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what walk in many people enjoy nature and sea?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do a person with blue tshirt ready for start?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who opens up a panel inside of a construction truck?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man with blue t shirt start his vehicle with?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"concentration\"\n  },\n  {\n    \"question\": \"who check the line?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"who changes an option?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pressing buttons?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is sitting in a control tower?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who get ready the flight?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"who is operationg a ecavator?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt doing?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a person in blue shirt doing?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a man in blue doing?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is someone in a booth doing?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what do a man with blue t shirt start with a concentration?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is this person in vidoe doing?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what do a pilot check?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"who is a person operationg?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"ecavator\"\n  },\n  {\n    \"question\": \"what do a pilot get?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what was no video available for?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what does a man change?\",\n    \"video_name\": \"video8141\",\n    \"answer\": \"option\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some people on a street doing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is i see a group of females doing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are singing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are the group of girls doing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl in black color dress doing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are some girls doing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is pop music video doing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is girls and boys in black dress doing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are girls and boys doing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are dancing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is selena gomez doing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of woman doing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who dances in unison with other people infant of a building?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"selena\"\n  },\n  {\n    \"question\": \"what do a girl in black color dress wearing cloth dancing playing many girls beside dancing singing displaying on screen?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do girls and boys in black dress wearing outside dancing singing displaying on screen?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what brunette in black outfit dancing in the middle of the street?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"what do a group of people dance in front of some grafiti?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"hip\"\n  },\n  {\n    \"question\": \"what are a group of woman dancing for?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who gomez dancing with group in street?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"selena\"\n  },\n  {\n    \"question\": \"what do sexy brunette in dancing in the middle of the street?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"outfit\"\n  },\n  {\n    \"question\": \"what did selena gomez dancing with in street?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what did selena gomez dancing with group in?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who dances with back up dances?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what looks at them?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who comes out of the house?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who dances in the street with other young people while singing?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"selena\"\n  },\n  {\n    \"question\": \"what do a girl in black color dress wearing dancing music playing many girls beside dancing singing displaying on screen?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what are some girls dancing on?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does one lady come out of?\",\n    \"video_name\": \"video8142\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who does gymnastics?\",\n    \"video_name\": \"video8143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing a gymnastics routine?\",\n    \"video_name\": \"video8143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl dance in?\",\n    \"video_name\": \"video8143\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"who flips?\",\n    \"video_name\": \"video8143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8143\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is doing gymnastics?\",\n    \"video_name\": \"video8143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who dances in class?\",\n    \"video_name\": \"video8143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is there were balloons doing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is teenagers dance in a disney music video for doing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are pairs doing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are groups of women and men doing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are couples doing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of young kids doing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of pepole doing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does a woman dance around to?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are pairs dancing for?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing while people dance?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who dances around to a song?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl singing on stage at?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what are couples dancing in to live music?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"dancehall\"\n  },\n  {\n    \"question\": \"what are a group of young kids dancing to?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are couples dancing in a dancehall to live?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"when is a girl singing at a party?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on stage at a party?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8144\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does hand s is lying in a person?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is a kitten doing?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a greyish colored cat doing?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is video showing?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"diffrerent\"\n  },\n  {\n    \"question\": \"what is a kitten held in?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a cat lay on?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what does an adorable kitten walk on?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is showing diffrerent cats?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is held in someones hand?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what lays on someones foot?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who does hand s a kitten is lying in?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what s a kitten is lying in a person?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video slideshow of cat s and kittens doing?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what walks on green grass?\",\n    \"video_name\": \"video8145\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman on hollywire doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a video slideshow shows a woman doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a gossip hostess doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a girl shows off her style while doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is taylor swift doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a woman sitting in?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"who is woman talking about?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"what is speaking?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is taylor swift sitting in?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is kissing each other?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is sitting in a tree?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a celebrity?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a gossip hostess describing?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is talking about taylor swift?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is describing specific movie clips?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"gossip\"\n  },\n  {\n    \"question\": \"who is a woman talking about?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"taylor\"\n  },\n  {\n    \"question\": \"who shows a woman playing a song?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"who is host on an entertainment show with a feature on taylor swift?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is hosting a tv show about celebrity taylor swift?\",\n    \"video_name\": \"video8146\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a mans hand doing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is boxes doing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"connect\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"who is writing something for his latest study?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person presenting on white board?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"what is person presenting his study on?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is person writing for his latest study?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is presenting his latest study with writing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person writing with black pan on the paper?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is presenting his study on white board?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes what data scientists do for their work?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person writing to explain what a data scientist does?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"concept\"\n  },\n  {\n    \"question\": \"what do a man talking about making data drive predictions using the data at?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is configuration different stages of analysis by a scientist represented in?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what do a man talking about making data drive predictions using at hand?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"datum\"\n  },\n  {\n    \"question\": \"who is writing something with black pan on the paper?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is writing a concept map to explain what a data scientist does?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being used to draw boxes with information about data scientists?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"marker\"\n  },\n  {\n    \"question\": \"who is drawing diagrams on a poster with black ink?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is describing what a data scientist does do with certain diagrams and texts made on the board?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is person presenting with writing?\",\n    \"video_name\": \"video8147\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"what is a man tries doing?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is solving the rubic cube?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone using?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"rubix\"\n  },\n  {\n    \"question\": \"what does a man solve?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"puzzle\"\n  },\n  {\n    \"question\": \"what is someone solving?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"rubic\"\n  },\n  {\n    \"question\": \"who is showing some play tips?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is using a rubicks cube?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is doing a rubix cube?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person solving a rubik s?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who solves a cube puzzle?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is solving a rubik s cube?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to solve a rubik cube?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man tries solving a rubik s?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who attempts to solve a rubik s cube?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is hands doing?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what is a person solving a rubik s?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who is playing with a rubix cube?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a pair of hands solve?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"rubik\"\n  },\n  {\n    \"question\": \"what is a person solving s cube?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"rubik\"\n  },\n  {\n    \"question\": \"who is solving the rubrics cube 3x3?\",\n    \"video_name\": \"video8148\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is interviewed in a classroom?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman being interviewed in?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who is being interviewed about school?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what is a woman being interviewed at?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who talks into the microphone?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did tv news broadcast involving a teacher in?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what does a woman speak into about schools?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who is being interviewed in a classroom?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman speak to an interviewers in?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who speaks into a microphone about schools?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed at a school?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to an interviewers in a classroom?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed for tv?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking in the mike?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a journalist doing?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is tv news broadcast doing?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a lady speaking in?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"mike\"\n  },\n  {\n    \"question\": \"who is interviewed?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to a reporter?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving an interview for tv?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a teacher being interviewed about?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who is a woman talking to?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what does the woman talk into?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a woman interviewed in?\",\n    \"video_name\": \"video8149\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what is a person working on?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who shows how to disable certain features in a game?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to do something on the pc?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains something he is doing on a computer?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is narrating as his screen shows him playing a video game?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about computers?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person changing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is changing computer settings?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is working on a computer?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing mine craft?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows off features from a virtual roller coaster simulation?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is some animation doing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8150\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what shows a bird running through a field then exploding?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"how many people are shooting a creature with bows and arrows?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are people dressed in medieval outfits playing?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"how many man s are two woman s hit with arrow from top?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many woman s are hit two man s with arrow from top?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are people dressed in medieval outfits doing?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is girl and guy doing?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two woman s hit two man s with from top?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"what runs away and explodes?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"who is a man fighting with?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do elfs and warriors fight in?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what are hit two man s with arrow from top?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who battle a comic medieval out?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"medieval\"\n  },\n  {\n    \"question\": \"what do several medieval characters battle out?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"medieval\"\n  },\n  {\n    \"question\": \"who fight in battle scene?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"elf\"\n  },\n  {\n    \"question\": \"what is running on grass and then explodes?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what do clash of clans characters prepare for?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what are two woman s hit with arrow from top?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a woman and man in medieval garb blow up?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"who is fighting with a lady?\",\n    \"video_name\": \"video8151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being showcased?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is zoomed in on?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a black color car full view is seen and finally dash board some object doing?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is advertised?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does demonstration of audi a8?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a black color car full view dash some object is projecting from inside out?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a black color car full view dash board is projecting from inside out?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what are different parts of a car shown with?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what does a commercial for the audi a8?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what shows features of the audi a8?\",\n    \"video_name\": \"video8152\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone giving?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is folding a paper airplane?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do hands fold a red piece of into an airplane?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding origami?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who folds a red paper airplane?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding paper into a paper airplane?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding up a piece of paper?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a paper for paper craft?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making paper rocket using red paper?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone folding a piece of to make a paper airplane?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what do hands fold a red piece of paper into?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what did red piece of paper fold into?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is someone for paper craft?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is giving an origami tutorial?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make a paper airplane?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone folding a paper for?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person making using red paper?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper to make a paper airplane?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is showing how to fold a paper airplane?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man into a paper airplane?\",\n    \"video_name\": \"video8153\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who speak?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is starting to rumble badly?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who holds?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what happened?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"earthquake\"\n  },\n  {\n    \"question\": \"what is a long haired man in glasses doing?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man is startled while doing?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man with glasses and long hair sits in a chair doing?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what was a man doing?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with long hair and glasses doing?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with long hair doing?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in long hair doing?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man with long hair vest and glasses doing?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with long brown hair and in black and white dress doing?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what do a man try to speak?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman with glasses doing?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what starts?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"earthquake\"\n  },\n  {\n    \"question\": \"what does a man with long hair and glasses hear?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"noise\"\n  },\n  {\n    \"question\": \"what is a man in long hair speaking in?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"mic\"\n  },\n  {\n    \"question\": \"what is a man with long hair and glasses talking on?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a man with long hair sitting in?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what was a man talking with while an earthquake happened?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who is startled while speaking into a microphone?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits in the chair and talks over microphone?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was talking with a microphone while an earthquake happened?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with long hair vest and glasses talking into when the room starts shaking?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who speaks into a long microphone while an earthquake starts?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who try to speak something?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man with long hair have?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"jacket\"\n  },\n  {\n    \"question\": \"who sits in a chair?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man with long hair glass and a vest on talks to into?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is man with long hair inner?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what does a man with glasses and long hair sit in a chair trying out while the room is starting to rumble badly?\",\n    \"video_name\": \"video8154\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a host doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"converse\"\n  },\n  {\n    \"question\": \"what is a famous man doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person from the stadium doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is in the tv screen one man talks and another one sitting in the studio doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man sits at a doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"glow\"\n  },\n  {\n    \"question\": \"what did a man newsman sits at a light in a blue room?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a person from the stadium speaking to other person through?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"conference\"\n  },\n  {\n    \"question\": \"who is a person from the stadium speaking to through video conference?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a gentleman with black court doing?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is talking about links to different terrorist groups to a television anchor?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man sits at a glowing purple round table in a brightly light?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"who is speaking in front of tv?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many anchors speak to each other on a news set?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who tells a reporter about some of the things going on in syria?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a person explaining a concept in a show?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"infront\"\n  },\n  {\n    \"question\": \"who is speaking about the endangerment of syria and the importance of protecting another one sitting in the studio?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a gentleman with black court explaining about?\",\n    \"video_name\": \"video8155\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"want\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"who tries to sneak into the men s room?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what s angels where one of the men has to use the boys restroom?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"charlie\"\n  },\n  {\n    \"question\": \"what is video of a woman impatiently doing?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"pace\"\n  },\n  {\n    \"question\": \"who really has to pee?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is waiting before the toilet?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman waiting outside?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"who needs to go to the bathroom?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who tries to enter the boys room?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is waiting for the girls room?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who heads towards different bathroom signs?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who waits to use the restroom?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is waiting outside girls bathroom?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who wants to go into the boys bathroom?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is shown walking towards the boys restroom?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who tries to sneak into the boys bathroom since its urgent?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman wait to use?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"restroom\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman is shown doing?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what does a woman try to enter?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is by the bathrooms?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman hold?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"bladder\"\n  },\n  {\n    \"question\": \"who walks out?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is locked?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is a woman waiting before?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"toilet\"\n  },\n  {\n    \"question\": \"what does woman need to go to?\",\n    \"video_name\": \"video8156\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"what is a scientist talks about light doing?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"reflect\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a humanoid doing?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man describes the process of photons doing?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"scatter\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a screen doing?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a demonstration of a scientific experiment doing?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is there is some lights doing?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is a visual representation of doing?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who describes the process of photons scattering when beautiful and some photons hit an object?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who observes?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what is person presenting the path in?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what hits the wall and scatters?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is person presenting in his room?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what look beautiful and some photons?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are photons shot at?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is scattered off of a wall and scatter?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what does a man use an animation to teach?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"lesson\"\n  },\n  {\n    \"question\": \"what does a man use to teach a scientific lesson?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is explaining what the bullets will do when they hit the wall?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is presenting the path in his room?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks of because of the present of photons on the wall they will scatters lights everywhere?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is showing a graphic animation of a small balls of lights dispersing against a wall?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who talks about light reflecting off a wall and how a graphic animation of a small balls of lights dispersing against a wall reacts?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"who gives a lesson in science with an animation?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks of how the light hits the wall?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who uses an animation to teach a scientific lesson?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains how photons of light will refract and disperse off of a white surface?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what hit a wall and scatter in all directions?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what beams hit a wall and scatter in all directions?\",\n    \"video_name\": \"video8157\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what a football player scores?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"touchdown\"\n  },\n  {\n    \"question\": \"who hands the football to a fan?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who scores a touchdown?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a little boy riding?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"coaster\"\n  },\n  {\n    \"question\": \"what play of a little boy riding a ride making faces?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"where is a team playing football?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who gives a ball to the crowd and then a child rides a ride?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does foot player hand to a fan?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what did a football player just score in a game while a kid is scared on a rollor coaster?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"touchdown\"\n  },\n  {\n    \"question\": \"what did a football player just score a touchdown in while a kid is scared on a rollor coaster?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who just scored a touchdown in a game while a kid is scared on a rollor coaster?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does foot player hand the football to?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"fan\"\n  },\n  {\n    \"question\": \"who plays while vine clips play of a little boy riding a ride making faces?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"eminem\"\n  },\n  {\n    \"question\": \"what does a man give to the crowd and then a child rides a ride?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is playing football on a field?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what is a team playing on a field?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a team playing football on?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is scared on a rollor coaster?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is riding a roller coaster?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a foot ball player doing?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a team doing?\",\n    \"video_name\": \"video8158\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animated child doing?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a cartoon of a guy doing?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon girl watches doing?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"interest\"\n  },\n  {\n    \"question\": \"what is animated characters doing?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoon animal doing?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are cartoon people doing?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon of a person doing?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is watching two men play instruments?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"how many musicians are about to square off?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who watches interesting characters?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are playing many instruments at once?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is playing many violins?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are playing instruments?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do a 3d game play?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what play scene?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video8159\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is doing different kinds of sports on a field?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is jumping in a sand pit?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what do a boy blue dress wearing cloth standing taking a long jump inside ground displaying on screen?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what does the man take a jump into after standing and then after running?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"pit\"\n  },\n  {\n    \"question\": \"what does the man take into the pit after standing and then after running?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is running on a track?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is by himself practicing jumping?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets up from the pit?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an athlete attmepts to do?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what does a man get up from?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"pit\"\n  },\n  {\n    \"question\": \"what is a man running on?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who fails by falling?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"what does a man long jump into a sand pit then does it on?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what man on an athletics track practicing various tasks hurdles?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what does a man on a track run then performs?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is running on a red track a man in blue shorts?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is a man doing different kinds of sports?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what do a boy blue dress color wearing taking a long jump inside ground displaying on screen?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who is by himself practicing running at the track?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in red shirt jumping in?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"who jumps far into a sandy part?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing different kinds of sports on?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is running extremely fast then a long jumper is jumping extremely high speeds?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"sprinter\"\n  },\n  {\n    \"question\": \"what does a man on a track fall in before trying another jump?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"who takes a jump into the pit after standing and then after running?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who attmepts to do a long jump?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who long jumps into a sand pit then does it on a track?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what dress color wearing cloth standing taking a long jump inside ground displaying on screen?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is a man is by himself doing?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a man on a track runs then performs the high jump and falls in the sand before doing?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a boy blue dress color doing?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man on an athletics track doing?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is an athlete attmepts to do a long jump and fails by doing?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is the man takes a jump into the pit after doing?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8160\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"who talks on tv?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a news reporter talking about?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what do a group of announcers discuss?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"tragedy\"\n  },\n  {\n    \"question\": \"who is talking about a shooting?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who talks about a news story?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"who is reporting the news?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people riding through?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are two women talking about?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what is a woman reporting?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are talking about a shooting?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking about a man that went on a killing spree?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did a female providing a news cast on popular news stories?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"who is talking about the shooting incidents in the announcers?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a news segment?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a mass shooting on a cable news channel?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is news readers doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is news reporters doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is women on fox new doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is a news reporter doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a reporter talks about a mass doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a blonde female newsanchor in a green shirt doing?\",\n    \"video_name\": \"video8161\",\n    \"answer\": \"converse\"\n  },\n  {\n    \"question\": \"what is a girl performing a song on?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song and judge are laughing?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing a song on the voice?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who perform in front of judges?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what is a woman singing on as judges watch in awe?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what show going on with a houling sound of the judges?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"reality\"\n  },\n  {\n    \"question\": \"who is performing an audition for a singing competition?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is this girl doing?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what is a girl performing on the voice?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing on the voice as judges watch in awe?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person singing?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman singing?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a girl sing impressively on?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"when is a girl performing?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sings impressively on the voice?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing on stage?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who performs on a reality show?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do judges watch in?\",\n    \"video_name\": \"video8162\",\n    \"answer\": \"awe\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is a group of people outside a boat making or doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a group of men fix doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"stitch\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"sew\"\n  },\n  {\n    \"question\": \"what are several men doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is there s a video of people doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"sew\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is men sit on a dock doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"knit\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"sew\"\n  },\n  {\n    \"question\": \"what is men repair doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a group of sailors doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is men are outside doing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"sew\"\n  },\n  {\n    \"question\": \"what are some men fixing?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"net\"\n  },\n  {\n    \"question\": \"what did men sew?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"what do a group of men work near?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"dock\"\n  },\n  {\n    \"question\": \"what are a group of men stitching nets on?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a group of men fix fishing net sitting at?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"harbor\"\n  },\n  {\n    \"question\": \"where does a group of men fix fishing net sitting?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"harbor\"\n  },\n  {\n    \"question\": \"what did a group of people weave?\",\n    \"video_name\": \"video8163\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"where did a short news clip air?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"indium\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman report?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"newscast\"\n  },\n  {\n    \"question\": \"what does a hindi?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what is a host talking to?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a news reporter speak to?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who talks about two people?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"who reports a news story?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to the camera?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who speaks to the camera?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a news talking about?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what cast from the middle east?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what did a short news clip air in?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"indium\"\n  },\n  {\n    \"question\": \"how many people does a newscaster talk?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is talking about a story?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is talking about a man and a woman?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who do a female tv show is reporting on a story?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is doing a newscast?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a female tv show host is reporting on?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what is a host doing?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a female tv show host doing?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a newscaster doing?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a video of a news reporter doing?\",\n    \"video_name\": \"video8164\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"how many girls perform cups from the pitch perfect movie?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many females are showing their talent here?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do girls perform with glasses?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"how many teenage girls perform a synchronized song using cups on a table as the backing beat?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are playing with a cup and singing?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls play a rhythmic cup game while singing when i m gone?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are talking with cups in front of them?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are performing with cups?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do girls do?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are two young women doing?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two females doing?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is two teenage girls perform a synchronized song doing?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what are two females showing here?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"talent\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video8165\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is banter before beginning a special effects makeover?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what are a man and woman speaking in?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what are a man and a woman talking in?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do a man and a woman get?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many people are enjoying here?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many people are talking?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is peole doing?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a man and woman have banter before doing?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many people are agreeing with each other on a television show?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8166\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is playing hard rock music?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is playing the drums?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays some music?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is singer singing?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is playing a song?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a rock band playing?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what performs in a dark setting?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a rock band play?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is playing music?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is shaky footage of a band doing?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what do some people pretend to play in a music video?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is playing a song for a music video?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a rock band doing?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do the heavy metal band animals as leaders play in a music video?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8167\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is a man fixing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what does a person show?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"course\"\n  },\n  {\n    \"question\": \"what is someone walking through?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what are sneakers on?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is playing golf?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man describing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"who is fixing a hole?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing a golf tee?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking through garden?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing his golfing tee?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows off his indoor golf setup?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about golf tees?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man instal a man is discussing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"who is explaining using a golf tee?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows a golf course?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy playing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"who is assembling a small putting lane for golfing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who installed a man is discussing the golf tee?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about fixing a golf tee?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"golfing\"\n  },\n  {\n    \"question\": \"who did a man instal is discussing the golf tee?\",\n    \"video_name\": \"video8168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man unplug?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"disconnect\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is an instructional video on doing?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"rewire\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a person disconnect?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"who pulls the cord out of the clip?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to unclip some wires?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who works with a electrical wire?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the person pull out of the clip?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"cord\"\n  },\n  {\n    \"question\": \"who explains how to wire a car?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person showing?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"connector\"\n  },\n  {\n    \"question\": \"who is showing an electrical connector?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who unplugs a wire?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fixing some wires?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing some plugs?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who told how to remove?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who builds something?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man build?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who disconnecting a wire?\",\n    \"video_name\": \"video8169\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about an interview he s going to do?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"cast\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are computer generated players doing?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is male commentates over madden gameplay while doing?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are there doing?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who runs down the field quickly in a virtual game of football?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who plays a football game?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does guy talk about he s going to do?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what does a player run down quickly in a virtual game of football?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a video game character kick down the field?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does a video game character kick a football down?\",\n    \"video_name\": \"video8170\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man measuring to?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is man putting down?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a man measuring with?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"tape\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is measuring to the floor?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting down floor boards?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on the floor?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is measuring with tape?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is installing flooring?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a carpenter making measurements along?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is making measurements along a wall?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"carpenter\"\n  },\n  {\n    \"question\": \"who is demonstrating how to lay floor tile?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who measures the length of a strip of wooden flooring?\",\n    \"video_name\": \"video8171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does group performance by the competetors for?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"how many girls sing on stage?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many women are singing on a stage?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when does a young girl sing?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are three girls singing in front of judges?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many young girls are singing on stage?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many girls are singing on stage in front of judges?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when do young female singers sing?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are three women singing?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who preforms?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when do three girls sing?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are three young girls singing?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are 3 teenagers singing so beautifully?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are a group of girls doing?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are girls singing to?\",\n    \"video_name\": \"video8172\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is sponge bob square pants characters doing?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"bob\"\n  },\n  {\n    \"question\": \"what is sponge bob characters doing?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a video of spongebob and friends doing?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"bop\"\n  },\n  {\n    \"question\": \"what is a spongebob music video of them doing?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"bop\"\n  },\n  {\n    \"question\": \"what is sponge bob doing?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the animators doing?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are spongebob characters doing?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"bob\"\n  },\n  {\n    \"question\": \"what do cartoon show about?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do a spongue bob?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who are dancing?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who are bobbing their heads?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what is sponge bob dancing in?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is spongebob doing?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what show about sea creatures?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who bob music video?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"spongue\"\n  },\n  {\n    \"question\": \"what show for childrens?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is spongebob and squidward are outside doing?\",\n    \"video_name\": \"video8173\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is kevin spacey talking to?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men have a conversation in the office?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to another man?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"spacey\"\n  },\n  {\n    \"question\": \"who is nodding his head while talking with another guy?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man nodding while talking with another guy?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"nod\"\n  },\n  {\n    \"question\": \"what is kevin spacey doing?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"converse\"\n  },\n  {\n    \"question\": \"how many men are conversing?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"how many men talk to each other?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people talk in a tv show?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are having a conversation in an office?\",\n    \"video_name\": \"video8174\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a man and woman speaking about how hardcore video gamers make a living playing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many news anchors sit side by side in front of a night time cityscape?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when do a man and woman at a desk deliver news?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is newscasters talk about gamers that managed to maintain their hobby while still doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"pay\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is bob frier and sonni abatta are on the fox news program doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a suit and a woman doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a couple of news anchors cut to a story doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a newscast shows a man and woman doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what is two reporters doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a male and female newscaster doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video of a news report about a doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is a man in grey over coat doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is there is a woman with long hair doing?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what shows a man and woman delivering the news?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"newscast\"\n  },\n  {\n    \"question\": \"what sit side by side in front of a night time cityscape?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do video of a news report about a streaming?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man in gray over coat explaining here in tv?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are the news session from the tv channel the news readers clear in?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"reading\"\n  },\n  {\n    \"question\": \"what do two news anchors sit by side in front of a night time cityscape?\",\n    \"video_name\": \"video8175\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are newscasters doing?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news story doing?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two persons commenting about?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"preview\"\n  },\n  {\n    \"question\": \"what do a man and a woman discuss?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what do two anchors discuss on fox?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"how many anchors discuss a new show on fox?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many hosts talk about john mulaney the comedian?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is sitting in a red chair?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many persons are commenting about a preview?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who do two hosts talk about mulaney the comedian?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"john\"\n  },\n  {\n    \"question\": \"what do two anchors discuss a new show on?\",\n    \"video_name\": \"video8176\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"what is a man is seated inside the car and doing?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is the gentleman in the driving seat doing?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a middle aged man doing?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a middle aged man doing?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"complain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what is two men are in separate cars doing?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt doing?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many men are in separate cars driving?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to the camera?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is talking about his thoughts?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man seated inside?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is sitting inside of a car?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man sitting inside?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man looking around?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is describing about the car?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking around the road?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses his experience?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy sitting inside of?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man describing about?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"what is a man talking to?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a guy talking to?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is seated inside the car?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting inside a car?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are in separate cars talking?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who speaks about traffic outside pollutions?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does one old man inside car and talk about?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt relaxing in talking something?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did a man in blue shirt wear the seat belt a man in blue shirt sit in?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did a man in blue shirt wear a man in blue shirt sit in the car?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"seat\"\n  },\n  {\n    \"question\": \"what does a man sitting a car speak to?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man wearing sky blue shirt expressing in the heavy traffic?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"intolerance\"\n  },\n  {\n    \"question\": \"who is sitting inside a vehicle?\",\n    \"video_name\": \"video8177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do three boys dance in?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are people performing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many men are singing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many boys dance in another room?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are the girls and the boys performing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do 3 men and 3 women in 50 s attire sing on small stages?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"how many girls dance in a living room while three boys dance in another room?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are dancing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the girls and the boys doing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is some women and men doing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a short music video doing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8178\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"how many girls are speaking to each other?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do the two sisters with long and curly brown hair travel in?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what were two girls going on?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are two ladies moving in?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two women sits in a car doing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is with wavy blonde hair share the backseat of a car with a small rear window doing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two ladies doing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is two blonde women ride in the back seat of a vehicle while doing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a yellow car doing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is there is a cute woman doing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a car in yellow doing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is two female fiends doing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is both women doing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what are two girls sitting in?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what fiends talking each other sitting in the vehicle?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"how many girls were talking about something?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls chat in the back of a car as it drives?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls were going on the car?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many blonde women ride in the back seat of a vehicle while talking?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls were talking about something while going on car?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many blonde women ride in the backseat of a taxi and talk?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women sits in a car talking?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women sits in a car laughing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are sitting in the car?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many ladies are moving in a car?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what were two girls talking about?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does two women sit in talking?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does two women sit in laughing?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"how many women are enjoying?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young women sit?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are talking to each other?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young women talk in the backseat of a car?\",\n    \"video_name\": \"video8179\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a hamster cage seen with floor of wood shavings and confetti with blue tube as?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a hamster cage seen with floor of wood shavings and confetti with as toy?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"tube\"\n  },\n  {\n    \"question\": \"what do a boy describe a something about?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is man giving to the small mouse in his cage?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is woman recording the small house of in the room?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what has paper grass and wood ladder?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"who describe a something about a toy?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is shredded paper of many colors in?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"pile\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is inside a pet s cage which has been filled with various toys such as a miniature ladder made of sticks an indigo doing?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"tube\"\n  },\n  {\n    \"question\": \"what s cage which has been filled with various toys such as a miniature ladder made of sticks an indigo tubing piece?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"who is showing multicolored confetti inside an animal cage?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who discusses the interior of a small animal cage?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what sits in a cage near a blue tube?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"ladder\"\n  },\n  {\n    \"question\": \"who is recording the small house of the little animal?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is seen with floor of wood shavings and confetti with blue tube as toy?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"who is giving some food to the small mouse in his cage?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about what is in a hampster cage?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8180\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is pointing to the anatomy of a skeleton with a pen?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is an instructor pointing out bones of?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is a woman showing the spine bones of?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is a woman pointing to the anatomy of a skeleton with?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"who is pointing out bones of the body?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"instructor\"\n  },\n  {\n    \"question\": \"who talk about human body?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing a skeleton diagram?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what do a woman talk about?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is giving by lady?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"who is science lecture giving by?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is an instructor doing?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a teacher doing?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a teacher doing?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a woman explains the human spine doing?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who points out diagrams of a body in some room?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is pointing at parts of a human skeleton?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing the spine bones of a skeleton?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gives a lecture on the human skeletal system?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who explains the human spine using a projector and a model?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8181\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is the video game doing?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"entertain\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is in the video game a person doing?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what play scene?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does minecraft character explore?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is entertaining?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a 3d game play?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is discussing a game?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explores his secret room?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who narrates his actions in the game?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who is commentating while playing minecraft?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being shown as the player narrates his actions in the game?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does a man narrate a game of while running through a pink house?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is running through a room in a video game?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is moving across all rooms in the video game?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is trying something else in minecraft?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a video game character moving from to floor in a game?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a video game character moving from floor to in a game?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is playing an 8 bit adventure game?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving demo for some game?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a video game character moving from floor to floor in?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who narrates a game of minecraft while running through a pink house?\",\n    \"video_name\": \"video8182\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the cartoon character and the bee doing?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is shown in an animated form?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon show picture displaying on?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what pictures displaying on screen dancing?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many birds pant?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does a music video show several clips of?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many birds look at a woman?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what shows several clips of cartoon shows?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who shown on tv seen dancing for a song?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who mickey dancing the three caballeros 1945?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who saludos amigos 1943 the three caballeros 1945?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who does a woman s silhouette wear bright clothes ride dark horses act silly with sombreros and ogle?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who s silhouette famous cartoon characters wear bright clothes ride dark horses act silly with sombreros and ogle?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there is a duck doing?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the fiction character and the lady dancing with?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what meets a beautiful woman?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"duck\"\n  },\n  {\n    \"question\": \"who does the animated duck meet?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the fiction character and the lady doing?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is cartoon disney mickey doing?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is famous cartoon characters shown on tv seen doing?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a cartoon show pictures doing?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what are animated ducks doing?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the cartoon character and the bee playing in?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what sill enjoyed by many?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who do three birds look at?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is very old one?\",\n    \"video_name\": \"video8183\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a man plays guitar in the middle of a square while doing?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is music video of people doing?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a music video with people doing?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is one of victoria secret s angels is out on the town with a teddy bear and a group of doing?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what are people dancing in?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what performed in new york city?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing in the middle of a busy street?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who plays guitar in the middle of a square while dancing with a woman?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play in the middle of a square while dancing with a woman?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who dances around outside?\",\n    \"video_name\": \"video8184\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a yellow and ash color dress standing and doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a black hooded man doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in a grey hat and hoodie doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man with a black beard and hat doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is the man in the video doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is random guy showcases a peeled potato and promises to make something doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"interest\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a black hat doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man in a grey hat and grey hoodie doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a hoodie and hat doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is man in grey shirt doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person in black blouse doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who wears hat?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who spanish holding a potato?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"speaking\"\n  },\n  {\n    \"question\": \"what is person presenting with big potato?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does random guy showcases?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does random guy promise to make with it?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is the man in the video wearing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"sweater\"\n  },\n  {\n    \"question\": \"what is a guy in a gray sweat shirt doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is presenting something with big potato?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy in a gray sweat shirt talking about?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who showcases a peeled potato?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"random\"\n  },\n  {\n    \"question\": \"what is a man wearing a hat talking to?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man holding a potato talking to?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man in a hoodie and hat standing by talking about food?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a guy in a sweater talking about?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who promises to make something interesting with it?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"random\"\n  },\n  {\n    \"question\": \"what does a guy wearing a sweatshirt and black hat talk to?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man with a black beard and hat holding?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a guy in a sweater doing?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man wear?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what do a man speaking spanish holding?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is person presenting something with?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what did man in a gray hat and hoodie holding?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who explains with great interest about a recipe he is going to show using potatoes?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in a black hat demonstrating uses of?\",\n    \"video_name\": \"video8185\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is sitting?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a person showing sitting?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"bunch\"\n  },\n  {\n    \"question\": \"what is the white dog looking in?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is shaking the heads?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is looking in the camera?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are some different dogs doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a small white dog doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"pant\"\n  },\n  {\n    \"question\": \"what is a white dog doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"yawn\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two dogs are shown and the women doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is the white dog doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the small white dog doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a white puppy in the cat and the black dog doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what is a white color puppy is yawninganother black and white puppy doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is few humans doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"mock\"\n  },\n  {\n    \"question\": \"what is there is a white dog doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a small brown and black dog doing?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many dogs are shown?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many different puppies are featured individually a white puppy yawning during a car ride and a doberman puppy who is being urged to speak?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is showing bunch of puppies sitting?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do the white and black dog sit on in the room?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what do the white and black dog sit on the floor in?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is the small white dog looking for food in?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is the small white dog looking for in the house?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what yawns and a black and brown puppy barks?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"puppy\"\n  },\n  {\n    \"question\": \"what is a white dog yawning profusely in?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is yawning profusely in a car?\",\n    \"video_name\": \"video8186\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what show host discussing different animals?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is going on over a dog?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"argument\"\n  },\n  {\n    \"question\": \"what are talking about dog and cheetah?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has a cougar on a desk on the late night with david letterman show?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"trainer\"\n  },\n  {\n    \"question\": \"who asks about a dog?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"what is an argument going on over?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is on david letterman s desk?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"cheetum\"\n  },\n  {\n    \"question\": \"what are sitting on a talk show set?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"cheetah\"\n  },\n  {\n    \"question\": \"what talks about cheetah and a dog with them?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is a cheeta on s desk?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"what is a cheeta on david letterman s?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"who is talking to another man who is beside a dog and a leopard?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many man s are talking about dog and cheetah?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are with many people?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"cheetha\"\n  },\n  {\n    \"question\": \"what does david letterman ask about?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is man with cheetah doing?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are dogs and cheetahs doing?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a talk show host doing?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of people on a tv show stage like an interview show doing?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cheetah doing?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a cheetah doing?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is sitting on a desk?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"cheetah\"\n  },\n  {\n    \"question\": \"what are animals on?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cheetah sitting on?\",\n    \"video_name\": \"video8187\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what are people riding on?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who is enjoying his boat ride here?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men going on?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who is going to swim?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man enjoying here?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man talking in some different language while traveling in the sea?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man going to?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are two shirtless men talking about good energy while in?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what do a person surfing in a sea give?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"benefit\"\n  },\n  {\n    \"question\": \"what do a person surfing in a sea give benefit about?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"health\"\n  },\n  {\n    \"question\": \"what do a person describing about how the surfing give?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"benefit\"\n  },\n  {\n    \"question\": \"what is two spanish doing?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men half naked doing?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"what are two shirtless men doing?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man in an ocean and doing?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is shirtless guy doing?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there are two men doing?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what do a person describing about how the surfing give benefit about?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"health\"\n  },\n  {\n    \"question\": \"how many men are going on the boat?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are riding in a boat in a large body of water?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking something in some different language while traveling in the sea?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many shirtless men are talking about good energy while in the ocean?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two man doing?\",\n    \"video_name\": \"video8188\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a red women doing?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are two girls in red cloths doing?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman in a pink dress doing?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two girl in red dress doing?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a collage of sexy women who doing?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what are fit women doing?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"who is showing bunch of photo s of sexy brunette on screen?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who poses for a selfie in front of a mirror?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does beautiful women taking selfies with some app take in?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is a person showing bunch of photo s of sexy brunette on?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does women do with the clothes in red?\",\n    \"video_name\": \"video8189\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is a men walking down?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is a men wearing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a man in sunglasses outside talking to?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who speaks to another man outside for a video?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did guy wearing sunglasses on a hill walking down to the green dry below?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who talks about how water flows over the top of a valley?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in glasses standing around?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a men doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does white skin boy with black coolers walk along?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there are two players doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a gentle men doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a boy in sunglasses doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a young man doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is guy in black tshirt and sunglasses doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man in glasses doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in sunglasses outside doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man with doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"cool\"\n  },\n  {\n    \"question\": \"what is there is blue t-shirt man with doing?\",\n    \"video_name\": \"video8190\",\n    \"answer\": \"cool\"\n  },\n  {\n    \"question\": \"who pours oil into a pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is chef putting in the pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who adds olive oil to a pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pour vinegar in a pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does someone pour into a pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is cooking while stirring?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is gee added on?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"taw\"\n  },\n  {\n    \"question\": \"what is added on the taw?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"gee\"\n  },\n  {\n    \"question\": \"who adds garlic to oil in a pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does a man add to a pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a cook add to oil in a pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"who is going to cook something?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is chopping up garlic?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does a recipe making video a cook appear in?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is chopping small onions then putting them in an oiled pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting oil in the pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a chef in the kitchen doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is person in white clothes doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone pours oil into a pan and begins doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"who is putting into the pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a chef in white pours oil into doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a korean man doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a male chef pours what seems to be doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man adds olive oil to a pan and then adds minced garlic doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a korean cooking show doing?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"who begins stirring a small amount of white vegetables?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who pours what seems to be cooking oil into a pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"who is showing how to heat oil in a pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is frying a garlic in the pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who put oil in a pan and then garlic and chopped onions?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does a chef in white pour into frying pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who then adds minced garlic stirring with a wooden spoon?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show involving how to prepare with a frying pan?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what does a chef in white add chopped before stirring?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what did a chef put in a pan and then garlic and chopped onions?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who begins cooking?\",\n    \"video_name\": \"video8191\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do guys on sports center testing?\",\n    \"video_name\": \"video8192\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8192\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what do men back to back in?\",\n    \"video_name\": \"video8192\",\n    \"answer\": \"duel\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8192\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is an doing?\",\n    \"video_name\": \"video8192\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cowboy and a football player doing?\",\n    \"video_name\": \"video8192\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who gears up behind a football player?\",\n    \"video_name\": \"video8192\",\n    \"answer\": \"cowboy\"\n  },\n  {\n    \"question\": \"what is guys on sports center doing?\",\n    \"video_name\": \"video8192\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what are celebraty couples doing?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man with a mustache doing?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man with a mustache hugging his wife on?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what shows pictures of interracial couples for example?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is women and guy doing?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man in a button down shirt doing?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a graphic doing?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is there is lady doing?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are standing?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"celebraty\"\n  },\n  {\n    \"question\": \"what loves coco and khloe and lamar?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what are sitting close together in a show trailer?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"celebraty\"\n  },\n  {\n    \"question\": \"what pose with love quotes on an show?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who is explaining something as a woman leaning to a man?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who discusses hollywood shows and how many of interracial couples show interracial relationships?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the different interracial couples on reality shows?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man with a mustache hugging on a couch?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"wife\"\n  },\n  {\n    \"question\": \"what are various photos of american celebrity couples displayed with sensual music in?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what are various photos of american celebrity couples displayed with in the background?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is describing that a basketball player see a lot of interracial couples on tv as the video shows pictures of interracial couples for example?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone explaining as a woman leaning to a man?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man in a button down shirt holding in one hand while standing behind a woman in a black strapless shirt?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a man in a button down shirt holding a basketball in while standing behind a woman in a black strapless shirt?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who talks about interracial relationships?\",\n    \"video_name\": \"video8193\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what are in a cartoon television show women doing?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"stack\"\n  },\n  {\n    \"question\": \"what does a dalmatian pull clothing off of?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what is doing laundry outside?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does 101 dalmations?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a cartoon doing outside?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"laundry\"\n  },\n  {\n    \"question\": \"what are the animated characters doing?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"laundry\"\n  },\n  {\n    \"question\": \"what does a cartoon character do?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"laundry\"\n  },\n  {\n    \"question\": \"what does laundry?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a cartoon in which a dalmatian pulls doing?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"clothe\"\n  },\n  {\n    \"question\": \"what is a cartoon dog doing?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what are women stacking in a cartoon television show?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what does a dalmatian take down off the clothes line?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"sheet\"\n  },\n  {\n    \"question\": \"what is a cartoon dog pulling a blanket off of?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"clothesline\"\n  },\n  {\n    \"question\": \"what pulls sheets off the drying line?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"dalmation\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what shows a dog and people outside doing laundry?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what do two cartoon women hang out to dry while a puppy pulls the clothes down?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"laundry\"\n  },\n  {\n    \"question\": \"how many cartoon women hang laundry out to dry while a puppy pulls the clothes down?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is pulling a blanket off of a clothesline?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who hang laundry out to dry while a puppy pulls the clothes down?\",\n    \"video_name\": \"video8194\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is lil wayne doing?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is lil wayne keeps doing?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is dancing with a cegrette in his hand?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rapping by a car at night?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing while he dances outside between two cars?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man rapping by a car?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what does a black man in a trench coat sing?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man rapping by at night?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is rapping in a music video?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is artist doing?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who wayne music video?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"lil\"\n  },\n  {\n    \"question\": \"who keeps walking back and forth in the music video?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"wayne\"\n  },\n  {\n    \"question\": \"who is rapping?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"wayne\"\n  },\n  {\n    \"question\": \"what did a lil wayne?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does rapper hop around in?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances for a music video?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing near the vehicles?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings for a music video?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"rapper\"\n  },\n  {\n    \"question\": \"who is rapping by cars?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"wayne\"\n  },\n  {\n    \"question\": \"who hops around in music video?\",\n    \"video_name\": \"video8195\",\n    \"answer\": \"rapper\"\n  },\n  {\n    \"question\": \"what take the field and the game begins?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do a group of soccer players begin?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what walk out together?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what enters the field?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what gets ready to play soccer?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what are girls football team playing?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what does a soccer team enter?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what a woman grabs?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who grabs a soccer ball?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are playing a match?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"how many teams get ready for a soccer game?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are women soccer players doing?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are girls football team doing?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an all woman soccer team doing?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what get ready to play?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do a group of soccer players march onto?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who are walking out of the locker room?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do professional woman soccer players walk onto?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a video showing a woman s?\",\n    \"video_name\": \"video8196\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who tell about nikon cameras features?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"biz\"\n  },\n  {\n    \"question\": \"what does a person explain about?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"photography\"\n  },\n  {\n    \"question\": \"who explains about the photography?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who says soemthing?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"amn\"\n  },\n  {\n    \"question\": \"who points at a digital camera screen?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the camera features www?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes adjustments on a small screen?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person presses some buttons on a camera s?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who explain something with the electric instrument?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who points at the monitor screen?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"amn\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a finger doing?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8197\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what are people eating?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are people sampling?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do people review?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do a guy and girl try?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do groups of people taste test?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are people trying?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many men try food?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do some people try in a room?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do some people try some food in?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"how many couples discuss eating something which does not seem tasty?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what a man and women tasting?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is eating food?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do two men try?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and women doing?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is people are disgusted by a foul doing?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"sample\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is people review doing?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"disgust\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is three couples discuss doing?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what people sample?\",\n    \"video_name\": \"video8198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what remains and then gathers and chops some fresh mint?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"flavor\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are leaves cut on?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is processing some green leaves for further cooking in a kitchen?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is a woman in black dress cooking on a table kept in the kitchen?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"what is taken spinach is cut itno small pieces using knief in kitchen?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is wide bowl taken is cut itno small pieces using knief in kitchen?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"spinach\"\n  },\n  {\n    \"question\": \"what is wide bowl taken spinach is cut itno small pieces using knief in?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is explaining how to create salsa verde from fresh ingredients?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what a girl in black dress and a bowl vegetables cutting knife mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what a girl in black dress and a bowl vegetables cutting mixing dish inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what a girl in black dress and a bowl vegetables cutting knife mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is giving instructions on how to create a specific dish?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a female processing some green leaves for further cooking in?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a young woman cooks food in a pan on?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is a female preparing one dish on a glass mounted pot in?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what a girl in black dress and a bowl vegetables cutting knife mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is cutting some green leaves on the desk?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is preparing one dish on a glass mounted pot in a kitchen?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is in a kitchen a female doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is girl in black shirt doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman in a black long sleeve shirt doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl in black dress and a bowl vegetables doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman in black dress doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a lady in her kitchen sets up some cabbage to cook while doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is in kitchen wide bowl is taken spinach is cut itno small pieces doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a women with black dress doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is in a kitchen a woman places lid to a pan doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen doing?\",\n    \"video_name\": \"video8199\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who opens a door?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a band play in a room?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what the hanson brothers singing together in?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a boy rock band play?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing music?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what plays a song in a room?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what plays instruments?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a woman open?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is playing in a house?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what brothers singing together in a band?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"hanson\"\n  },\n  {\n    \"question\": \"what is playing in the living room of a home?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a youtube channel called watchmojo count down?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"list\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a list of music videos doing?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a band playing in?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does a band play a song in?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8200\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a moose doing?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a reindeer on ice doing?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"slip\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is there is a deer doing?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is this is a video of a deer doing?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a deer doing?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is reindeer doing?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what do a deer being pulled by?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is someone pulling?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what do a deer being pulled off?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what do animals swim in?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a deer slide on?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is being towed across ice with a rope?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what is a moose sliding on?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what do a reindeer on slipping?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"who is pulling the deer?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what slides on ice?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what did a beautiful deer scat in?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what does a deer try unsuccessfully to get?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"foothold\"\n  },\n  {\n    \"question\": \"what tries unsuccessfully to get a foothold?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what is a deer being towed across ice with?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is a deer being towed across with a rope?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is being pulled across the ice by its antlers?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what is a deer being pulled across by its antlers?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what scatting in the snow?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"who is drug across the ice?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"raindeer\"\n  },\n  {\n    \"question\": \"what is sliding on ice?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what is being pulled across some ice?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what is a deer being pulled across?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is a deer sliding on?\",\n    \"video_name\": \"video8201\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"how many men speak to a camera for a video segment?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking about sports on a show?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who highlights reported by two news anchors?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"nfl\"\n  },\n  {\n    \"question\": \"how many people are giving news?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are sports show hosts talking about?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a news story doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men talking about sports on?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"how many men are reporting on sports?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what cast talking about a sports game?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"radio\"\n  },\n  {\n    \"question\": \"how many man s are talking about something?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a short radio cast doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two male commentators doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are two man s talking about?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are two people giving?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a sport announcer doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are talking about something?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are newscasters doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are sports announcers doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what are sports show hosts doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sportscaster doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8202\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do an ice age?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing an ice age game?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a video game character running around in?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is a video game character running in?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what slides down the snowy hill?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"sloth\"\n  },\n  {\n    \"question\": \"when age video game?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing an animated video game?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is very entertaining?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is sid running in?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a player doing?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is cartoon clip doing?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8203\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman singing on the beach?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who hangs out on the beach?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing in the beach?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a young woman playing in?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is kneeling in water?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does woman hang out on?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who sings in a music video?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman singing a song on?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who played in the water?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is on the beach modeling and singing?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing a song on the beach?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who rubs the water at the beach?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is on the beach?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings on the beach at sunset?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is singing in a body of water?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is kneeling in the water at a beach?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings in various scenes during a music video?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"kneel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who dances on the beach and in the water?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the artist play in?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman on?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what highlights from a news report?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who discusses a softball game?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who is a local baseball game commentated by?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who describes the scene as the players play baseball?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"who hits the ball to the other team?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who hits the ball with a bat in the final play of a baseball game?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a batter doing?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is baseball players doing?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"who hits the ball?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who is playing baseball?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an announcer discuss?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is player doing?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what does a baseball player hit?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is taking place?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is a baseball game taking?\",\n    \"video_name\": \"video8205\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a clip of two people doing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a two piece band doing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two persons playing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a woman play?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who is playing an instrument?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"cello\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a band play in a room?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a man play in a room?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"cello\"\n  },\n  {\n    \"question\": \"how many persons are playing music?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what plays a song in a room?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is showing skills in violin here?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a band play a song in?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are two people playing musical instruments in?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a man play a cello in?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who plays a cello in a room?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman playing with a man playing the cello?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who is playing a cello?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person showing skills in here?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"who is playing a piano?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who plays a piano?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many musicians perform together?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are playing musical instruments in a room?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing the piano with a man playing the cello?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many people are playing musical instruments?\",\n    \"video_name\": \"video8206\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who starts singing to the girl?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings to girl?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man start singing to?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is sitting in the living?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is an asian family sitting in?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"living\"\n  },\n  {\n    \"question\": \"who is looking at that?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings a song to a girl sitting on a sofa?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is dancing for woman sitting on the couch?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who clapping in front a group of people?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is clapping at people in another room?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a girl with pig tails sit on?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who is singing a song to a woman?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man singing a song to?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does guy clap in a group of people?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what is a man singing to a woman?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is applauding girls?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is calling the children?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there are people doing?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is an asian family doing?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a video of a man doing?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is a man sings and dances for a woman doing?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"applaud\"\n  },\n  {\n    \"question\": \"what is a guy sings a song to a girl doing?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man clapping at people in?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is clapping?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewed?\",\n    \"video_name\": \"video8207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is somone playing involving simulated physics?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"forklift\"\n  },\n  {\n    \"question\": \"who is clicking?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a game involving simulated physics?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"somone\"\n  },\n  {\n    \"question\": \"what was very informative?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what does a man use?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person dragging?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"clipart\"\n  },\n  {\n    \"question\": \"who is using a computer program?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do graphics tutorial with?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"who is tinkering with a cartoon vehicle?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what make with man using by application?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"care\"\n  },\n  {\n    \"question\": \"who is dragging clipart?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is modified in a video game?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"mobility\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who uses a computer software?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a time lapse doing?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is somone doing?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"tinker\"\n  },\n  {\n    \"question\": \"what is care make with man doing?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"click\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video8208\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"what holing up sign and announcer announcing the team champion?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"who announcing winners of some tournament?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of people taking?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what do a woman announce winners of?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"tournament\"\n  },\n  {\n    \"question\": \"what are some protestors at?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"what are people celebrating in?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"mood\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is team doing?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is the doing?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what is several people doing?\",\n    \"video_name\": \"video8209\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who addresses the large crowd of people about terrorism?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"leader\"\n  },\n  {\n    \"question\": \"what is a man from russia giving?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who is translating via voiceover?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"journalist\"\n  },\n  {\n    \"question\": \"who is commenting on terrorism?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what is president of russia commenting on?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"terrorism\"\n  },\n  {\n    \"question\": \"what is an english journalist translating via?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"voiceover\"\n  },\n  {\n    \"question\": \"who is talking with the mike?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking with?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"mike\"\n  },\n  {\n    \"question\": \"who is talking about the situation in the country?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"who talks about terrorism in turkey?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"vladimir\"\n  },\n  {\n    \"question\": \"what is vladimir putin making about terrorism?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who makes an address to the public?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"vladimir\"\n  },\n  {\n    \"question\": \"who is making a speech about terrorism?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"vladimir\"\n  },\n  {\n    \"question\": \"what is vladimir putin making a speech about?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"terrorism\"\n  },\n  {\n    \"question\": \"what is man in elegant black coat talking on?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"pres\"\n  },\n  {\n    \"question\": \"what does an interpretation of vladimir putin giving?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who talks about terrorism in a conference?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"vladimir\"\n  },\n  {\n    \"question\": \"who translates vladmir putin publicly speaking about terrorism in english?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who speaks from behind a white podium between two flags?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"vladimir\"\n  },\n  {\n    \"question\": \"who talks on live russian news about vladimir putin?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"politician\"\n  },\n  {\n    \"question\": \"what is vladimir putin speaking about while an english journalist is translating via voiceover?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"terrorism\"\n  },\n  {\n    \"question\": \"what is president of russia doing?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is the president doing?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in elegant black coat doing?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"translate\"\n  },\n  {\n    \"question\": \"what is russian president doing?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a narrator translates vladmir putin publicly doing?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is speaking about terrorism while an english journalist is translating via voiceover?\",\n    \"video_name\": \"video8210\",\n    \"answer\": \"vladimir\"\n  },\n  {\n    \"question\": \"what does a pixelated creatures walk across?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what show for childrens?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what plays to video game footage?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is shown?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"videogame\"\n  },\n  {\n    \"question\": \"what do game play?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"footage\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is singing while supplying?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"weighter\"\n  },\n  {\n    \"question\": \"what is moving?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is singing as a videogame is shown?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what play footage of game?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do game play footage of?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cartoon fox doing?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what sings over a video that displays gameplay and an animated character?\",\n    \"video_name\": \"video8211\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is video of someone doing?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who is crafting?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is crafting a decorative piece of art?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"decoration\"\n  },\n  {\n    \"question\": \"what does a woman create?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"who is making a decoration?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who creates an american bow?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who makes hair clips with ribbon?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is teaching how to make a hair clip?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman crafting a decorative piece of?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"who is showing how to make a patriotic bow?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows how to attach a clip to a hair bow?\",\n    \"video_name\": \"video8212\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing a guitar in the middle of the sidewalk?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are children watching a man play?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are people gathering outside?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"bank\"\n  },\n  {\n    \"question\": \"who are several people watching?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"musician\"\n  },\n  {\n    \"question\": \"what is a man reciting?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is performing outside?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some children sitting in?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"recite\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"gather\"\n  },\n  {\n    \"question\": \"what are several people doing?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a crowd is outside a bank doing?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are many people listening to?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man performing with for a crowd on the street?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is performing with his guitar for a crowd on the street?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a crowd outside watching a guitar player perform?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"bank\"\n  },\n  {\n    \"question\": \"who plays guitar on the street for a crowd of people?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar in front of lot of people?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is outside a bank watching a guitar player perform?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who has a group of people surrounding him?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing in the middle of the sidewalk?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what do people watch a street performer play?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who are children watching play guitar?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reciting guitar?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do people watch play the guitar?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"who plays guitar for a crowd?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a tune on guitar?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing in front of lot of people?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what do a group of people watching a man play?\",\n    \"video_name\": \"video8213\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are different people doing?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is there are several scenes of a young boy doing?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who kicks a soccer ball during an advertisement?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is being discussed?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"where do a mom and kid sit with a soccer ball?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a fruit juice commercial that shows a boy doing?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is getting kicked?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are different people drinking?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what do kids drink?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what does child kick during an advertisement?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a fruit juice commercial that show a boy drinking?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"who is kicking a soccerball?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a fruit juice commercial that show a boy kicking?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what do a mom and kid sit on with a soccer ball?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who does a fruit juice commercial that show drinking the juice?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does a fruit juice commercial that show kicking the football?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is kicking a ball in the field?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does child kick a soccer ball during?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"who is a person kicking?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"soccerball\"\n  },\n  {\n    \"question\": \"what do children play?\",\n    \"video_name\": \"video8214\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are animated persons doing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is an animated educational video shows doing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man plays the drums while another man directs a group of doing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of cartoon characters doing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"hokey\"\n  },\n  {\n    \"question\": \"what is man playing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is playing music?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a animation band singing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do cartoon characters sing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoon people doing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"hokey\"\n  },\n  {\n    \"question\": \"what do animated characters sing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is a cartoon doing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"hokie\"\n  },\n  {\n    \"question\": \"what does a cartoon depict?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"hokey\"\n  },\n  {\n    \"question\": \"who is singing dancing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is singing song?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is doing the hokie pokie?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are doing the hokey pokey?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who s animated song?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what depicts the hokey pokey?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who directs a group of dancing children?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the drums while another man directs a group of dancing children?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a kid s animated?\",\n    \"video_name\": \"video8215\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is speaking to an audience?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to an audience?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is man talking?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is performing a comedy routine?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tells a sad story about a girl?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a video of a man doing?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man gives speach about americans not doing?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"understand\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a host doing?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is talking on a scene?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a presentation?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in front of an audience?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gives speach about americans not understanding the third world?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man tell a sad story about?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about something in a stage in a front of others?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the man on the stage speak to?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what is a man performing?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"routine\"\n  },\n  {\n    \"question\": \"what is a person arguing?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man speaking to?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is man talking on?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what does a man speak to?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is arguing something?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does man give about americans not understanding the third world?\",\n    \"video_name\": \"video8216\",\n    \"answer\": \"speach\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many people play around with star wars figurines?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are several people playing with?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what are two people playing with?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are several people doing?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two kids doing?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are dolls being made by?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many persons are talking about toys?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are playing with toy sculptures?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does hands s toys are being fought with?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many people are playing with action figures?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what came with moveable parts?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what do people battle with?\",\n    \"video_name\": \"video8217\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what is on a black back ground outside?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is a sun doing?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"shin\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the opening scene from the documentary baraka doing?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is soft music doing?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a white light doing?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"shin\"\n  },\n  {\n    \"question\": \"what is playing while a picture of a solar eclipse is on the screen?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what plays for the movie productions baraka?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"eclipse\"\n  },\n  {\n    \"question\": \"what is on the sky ans it is closed?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"moo\"\n  },\n  {\n    \"question\": \"what is recording the dark and bright side of the moon?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is shining behind a dark orb that is slowly moving upward in a black background behind gold capital lettering?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is someone recording the dark and bright side of?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"who appears in front of solar eclipse?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"baraka\"\n  },\n  {\n    \"question\": \"what is a picture of a solar eclipse on?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a static view of a solar eclipse as a title credit come on?\",\n    \"video_name\": \"video8218\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is clips of sports doing?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is athletes doing?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy gets elbowed in the face in doing?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who jumps off the ropes onto another wrestler?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who jumps on another man in the wrestling ring?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets elbowed in the face in wrestling?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what are athletes being shown in in short clips?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"actin\"\n  },\n  {\n    \"question\": \"what are some guys playing in a basket ball court?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a guy get elbowed in in wrestling?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what do sports montage set to?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who makes a huge jump then gets pounded back down?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"how many men are wrestling?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a wrestler make then gets pounded back down?\",\n    \"video_name\": \"video8219\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are dogs doing?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what are dogs doing?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"roam\"\n  },\n  {\n    \"question\": \"what are dogs doing?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"sniff\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two dogs doing?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two dogs doing?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is two dogs seems to be doing?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what gets closer?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a suzuki?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"how many dogs are playing around a parked motorcycle?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many dogs seems to be interacting with a bike rider?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many dogs stand next to a sport motorcycle?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what sniffs around a parked racing motorcycle?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what showcases a motorcycle while dogs circle?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many dogs walk around a motorcycle?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two dogs walk around?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what are dogs sniffing?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what are dogs checking out?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what are dogs roaming around?\",\n    \"video_name\": \"video8220\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man turns a bottle upside down and begins doing?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what does a man do an experiment with?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a man turn upside down?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is a man filling?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is a person exprementing?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man do with water?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who turns a bottle upside down?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing an experiment?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates a skill or experiment?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filling a bottle?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is exprementing something?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a fluid dynamics experiment on?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who fills up a bottle in a room?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what experiment on arabic television?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"fluid\"\n  },\n  {\n    \"question\": \"who begins filling a bottle with a red liquid?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man begin filling with a red liquid?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"who shows his juggle to bottle creation?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring liquid into a can with a tube?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how a siphon works?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does an experiment with water?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man pouring liquid into a can with?\",\n    \"video_name\": \"video8221\",\n    \"answer\": \"tube\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"who is tasting the food while other one explain about the preparation?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many men eat a bunch of different food?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men show ingredients for a mexican dish?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who try different dishes in aluminum foil containers?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking about food on the table?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is explaining different types of food to another man?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person while other one explain about the preparation?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"how many men are eating food together?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men talking about on the table?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are two men talking about food on?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what do men talk about the food they are eating on?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do men talk about they are eating on camera?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do two men eat a bunch of?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man explaining different types of to another man?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many men talks about takeout food?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a man explaining different types of food to?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are men talk about the food they doing?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two men eating together?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are some people eating?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does two men talk about?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"takeout\"\n  },\n  {\n    \"question\": \"what do other one explain about?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"preparation\"\n  },\n  {\n    \"question\": \"who is eating?\",\n    \"video_name\": \"video8222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a hot woman doing?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is showing a picture?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving a commercial presentation on bimbo foods?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving on bimbo foods?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"who holds up a sign then signs after?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving a commercial presentation on?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"bimbo\"\n  },\n  {\n    \"question\": \"who is dancing for a television ad?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who begans singing to an unsuspecting crowd of businessmen?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman hold up then signs after?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song and dancing?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who comercial in spanish?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"bimbo\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video8223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking while playing a video game?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is describing how to play a game?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who narrates his pokemon gameplay?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is playing pokemon?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is playing pokemon?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing pokemon with a charmander?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"who plays pokemon?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a kid playing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a child playing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a child narrate?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"gameplay\"\n  },\n  {\n    \"question\": \"what does a kid play?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is a gamer playing with a charmander?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a gamer doing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a gamer playing pokemon with?\",\n    \"video_name\": \"video8224\",\n    \"answer\": \"charmander\"\n  },\n  {\n    \"question\": \"what is a man inside of a white van doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is three automobiles on a large road with male drivers one doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are the three vehicles doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are three commercial work vans doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is three vans appear to be doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a mini van a car and an omini stops at a doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are two white and one black commercial vans doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are the peoples doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in a vehicle doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a men doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are some white and black vans doing?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"how many vehicles are preparing for the race on a street?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is explaining how to drive properly?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the white vans parked in?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"how many vehicles are lined up on a road to race?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are two white and one black commercial vans sitting on with their engines running?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are three commercial work vans preparing to to see who is the fastest?\",\n    \"video_name\": \"video8225\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person holds a picture of a child while doing?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person showing?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what is someone looking at?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"who do man and woman talk about?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is showing a photograph?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talk about a child?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man looking at?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what do a man and woman sit on?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"who is looking at a photo?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is talking a woman in a outside?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the child in a picture with a woman?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is watching a photography of a boy?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at a picture on a bench?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a person hold a picture of while talking to a woman on a bench?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is looking at the picture of another ladies?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who holds a picture of a small child and talks to a woman while on a bench?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks at a picture of a baby?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a picture of a child while talking to a woman on a bench?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking to a woman?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man watching a photography of?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did a video of a man and woman sitted on?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who does a man discuss the child in a picture with?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a man and lady talk on about a picture of a baby?\",\n    \"video_name\": \"video8226\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what is an individual describing what on?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is explaining an interface?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to use editing software?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what mkes it easier to progress?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"diagram\"\n  },\n  {\n    \"question\": \"who is demonstrating how to use a computer program?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains how to use computer imaging software?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a tutorial on some software?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is teaching how to use settings in an app?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaining?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"interface\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man explains how to use computer doing?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"browse\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8227\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a woman telling?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what does one beautiful and lovely women make?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is making a dish?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks in english with an asian language translation following about an asian recipe?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who list ingredients for cooking along with the items and a brown sauce?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a woman describing a shrimp and noodle with a red sauce?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is showing ingredients before cooking?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about what to use sauce with?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women describing with some sauce?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what is a women describing the rice noodles with?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is telling a recipe?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a dish plate and pawn inside plate soup in a bowl ready to serve to eat doing?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is showing a brown sauce?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman discusses a recipe and shows the ingredients she will be doing?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman list ingredients for doing?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is its a food item prepration for doing?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is some one in a kitchen doing?\",\n    \"video_name\": \"video8228\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what does the base ball bats man hit very hard?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"where are some baseball players playing a game?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are some players in?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who did a remix of crazy train set to a picture?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what has remixed ozzy ozbourne s song crazy train for texas rangers baseball?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who stands on a home plate while a catcher crouches behind him on a baseball field?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"what is a baseball ground where players are playing and famous song being played in?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what s crazy train song is remixed with a rap song?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"osbourne\"\n  },\n  {\n    \"question\": \"what does ozzy osbourne s crazy is remixed with a rap song?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what does a still image photo of blue dress wearing clothes players playing game throwing ball catching hand displaying on?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what has reed street remixed s song crazy train for texas rangers baseball?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"ozbourne\"\n  },\n  {\n    \"question\": \"what is a baseball player in a blue uniform swinging at while music is playing?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"pitch\"\n  },\n  {\n    \"question\": \"what s it seems a catcher and a batter at the home will remix anything into edm even ozzy?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"crazy\"\n  },\n  {\n    \"question\": \"what does a remixed version of crazy train by ozzy osbourne play against still?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what do soft ball players in white bottoms and blue tops wear with blue shirt?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"pant\"\n  },\n  {\n    \"question\": \"what do soft ball players in white bottoms and blue tops wear white pant with?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who crouches behind a batter at the home on a baseball field?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"catcher\"\n  },\n  {\n    \"question\": \"what does crazy train s it seems a catcher and a batter at the home will remix into edm even ozzy?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"anything\"\n  },\n  {\n    \"question\": \"what do soft ball players in white bottoms and blue tops wear?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"cap\"\n  },\n  {\n    \"question\": \"what are some baseball players playing on a field?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are all persons playing a base ball game in?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who are playing a game on a field?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what are some baseball players playing a game on?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what did a remix of crazy train set to a baseball player?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what does crazy train s it seems a catcher and a batter at the home will remix anything into even ozzy?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"edm\"\n  },\n  {\n    \"question\": \"what are some baseball players doing?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is its crazy train reed streets remix man near net doing?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a catcher and a batter at the home plate doing?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what are a baseball ground where players doing?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a still image photo of blue dress doing?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a players in blue color dresses doing?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is still pictures of men doing?\",\n    \"video_name\": \"video8229\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl high up off?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who rides down a zip line?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"where are people playing?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"who is swinging on a rope?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"where are people?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who is sliding down a swing?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is going down a zipline?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is about to get on a zipline?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is sitting in the cradle?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is high up off the ground?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is afraid to fall on a swing?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman swinging on?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"who is slinding on a rop hanging crop in a garden?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who set prepping?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman going down?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"zipline\"\n  },\n  {\n    \"question\": \"what is a woman slinding on hanging crop in a garden?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"rop\"\n  },\n  {\n    \"question\": \"what is a woman sliding down?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"swing\"\n  },\n  {\n    \"question\": \"what is a girl sitting in?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"cradle\"\n  },\n  {\n    \"question\": \"what are people playing at?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what are people at?\",\n    \"video_name\": \"video8230\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who speeds off?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what had colorful graphics?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a lego character drive around?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"who is playing a lego video game?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drives around town?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who jumps into a cop car?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who flies around a cartoon city?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who jumps into a lego ambulane?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drives through a city in an ambulance in a video game?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drives a lego star wars police car?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gets into a police car?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what is a police car doing?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8231\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does the sun have?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"flare\"\n  },\n  {\n    \"question\": \"what does a man admire?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"tornado\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"tornado\"\n  },\n  {\n    \"question\": \"what shows the sun being drained?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what has a solar flare?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"who are coming of the sun?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"solar\"\n  },\n  {\n    \"question\": \"who talks about creepy space stuff?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who admires a solar tornado?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about solar tornados?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man talking about the filaments on?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"what are solar tonardoes coming of?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"who describes the atmospheric effects of solar tornadoes?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about solar flares over video?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a group of planets are shown doing?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"rotate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the solar flares doing?\",\n    \"video_name\": \"video8232\",\n    \"answer\": \"burst\"\n  },\n  {\n    \"question\": \"who is making a paper airplane?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a paper air plane?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making paper rocket?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a paper airplane?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folds up a paper airplane?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is thowing a paper airplane?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person making rocket in?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person making in paper?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"who folds a paper airplane?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making rocket in paper?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who makes a paper plane?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to fold a paper airplane?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is finishing up a paper plane?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone thowing?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a person fold?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a person fold up?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"finish\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone finishing up?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a person make?\",\n    \"video_name\": \"video8233\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person talk about?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who shows images of a couple?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what does a slideshow show images of?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who talks about something?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what are some emotional images doing?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is screenshots of couples doing?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is people walk together doing?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is images of people doing?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is couples doing?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what are a woman and man doing?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a photo montage of couples doing?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a montage of photos doing?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is different pictures of couples doing?\",\n    \"video_name\": \"video8234\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what did a cartoon woman crying in the shower face?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is chased by a masked man?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is hiding behind the shower curtains?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is shown with running characters and no sound?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what shows a scary skeleton creature?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who runs in the shower?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is about a cartoon film?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is running around?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a cartoon woman running away from a white face?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is hiding in the shower?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is shown of a girl running away from a murderer?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated movie of a scary man doing?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"who is running from a man carrying a knife?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a cartoon woman doing?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is an animated woman doing?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"who is crying in a shower?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is running from a man wearing a mask?\",\n    \"video_name\": \"video8235\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a tutorial for a program where the person doing?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is man shows instructions for doing?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is showing tasks on a computer?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does a man demonstrate?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does some explain?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a computer lesson is in?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what is a computer is in progress?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"lesson\"\n  },\n  {\n    \"question\": \"who demonstrates a computer program?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is lesson is in progress?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man showing tasks on?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who shows instructions for creating a parameter?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does some move around a computer screen?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"cursor\"\n  },\n  {\n    \"question\": \"who is showing how to use a website?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who s computer that is being used?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"screenshot\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who creates a parameter in a program?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who descriping what he is doing on a computer screen?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who creates a parameter in a piece of software?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8236\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who messes with something sitting on a coffee table?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a little girl doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is toddler in a pink dress doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little child doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl messes with something doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a mother doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is little girl in pink dress says cute and doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a mom doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl in a pink jumper is shown and her mother doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is mothr doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a little girl in a pink outfit doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby with pink color dress doing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is happily running around?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is explaining how sean doesn t like the little girl s outfit?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who is the cute young girl take?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"bedsheet\"\n  },\n  {\n    \"question\": \"who is happily playing with toys indoors?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is wearing a pink dress?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is walking around the living room?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who does a woman talk about s clothes and displays the kid on screen?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby with pink color dress playing in?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"who is describing how a man name sean feels about the outfit?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"what is a baby wearing?\",\n    \"video_name\": \"video8237\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is reomoved?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what was boiled?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what is a bowl spoon doing?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is crabs doing?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is some one in a kitchen doing?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is being opened?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"what is being crushed?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"who is using a large cleaver to chop a crab in half?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a bowl spoon mixing cutting inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a bowl spoon mixing dish cutting inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who boils a crab in water and chops one in half?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cutting a crab open revealing its interior and all of the meat?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what open cooked crabs to remove the meat?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows how to take apart a cooked crab?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a large cleaver to show the meat off?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cuts big crab in to pieces and cooks it?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing how to cook and serve crab?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a woman cracks open cooked crabs to remove?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does crabs cooking in a pot of it s?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"shell\"\n  },\n  {\n    \"question\": \"what is put in the hot water then its taken out and made into pieces?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what is someone using to chop a crab in half?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"cleaver\"\n  },\n  {\n    \"question\": \"what is a lady cutting revealing its interior and all of the meat?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what are being cooked?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what are being cracked open to be eaten?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what did crap cleaningand?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is cut open?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what does some one in a kitchen cutting crab carefully with?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what was cut into pieces and splitted?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what cleaningand cooking?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"crap\"\n  },\n  {\n    \"question\": \"what is someone using to show the meat off?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"cleaver\"\n  },\n  {\n    \"question\": \"what does crabs then taken out of a pot s?\",\n    \"video_name\": \"video8238\",\n    \"answer\": \"shell\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is the athletics race of men is started while the audience in the stadium doing?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is men runn on a tack doing?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the race doing?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a track and field event doing?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"highlight\"\n  },\n  {\n    \"question\": \"what are several racers doing?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is athlete doing?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is starting?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do a group of men in shorts and tank tops running around a track in as part of a race?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what is a running athlete named kevin young among many runners on?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what begins as a group of men race around a crowded track?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what were a group of runners running in?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"when does a track and field event highlighting kevin young s?\",\n    \"video_name\": \"video8239\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is a girl inblue dress doing?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what is a massage parlor video shows several images of women doing?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is care world gorgeous you women beautician doing?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"who do sexy brunette massaging lying on massage table?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there is a women doing?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"treat\"\n  },\n  {\n    \"question\": \"where do sexy brunette massaging pretty girl?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"spa\"\n  },\n  {\n    \"question\": \"what is a masseuse doing?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"knead\"\n  },\n  {\n    \"question\": \"what brunette massaging woman lying on massage table?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"what is sexy brunette doing?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"who is kneading the limbs and back of a woman wrapped with a maroon towel on top of a white sheet?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"masseuse\"\n  },\n  {\n    \"question\": \"what is a women in red dress undergoing?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"treatment\"\n  },\n  {\n    \"question\": \"what do a girl inblue dress massaging a girl legs wearing?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a women in parlor doing is covered with whit towel?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a women doing for other women in a palor?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what do a girl inblue dress massaging wearing red dress?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a women doing body massage for other women in?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"palor\"\n  },\n  {\n    \"question\": \"who is giving cream massage to girl?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is shown giving a second woman a massage?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women gone to to do body massage?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"spa\"\n  },\n  {\n    \"question\": \"what did a lady giving massage to another lady wrap in?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"towel\"\n  },\n  {\n    \"question\": \"what do sexy brunette massaging pretty girl in?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"spa\"\n  },\n  {\n    \"question\": \"who do sexy brunette massaging in a spa?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what brunette massaging pretty girl in a spa?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"where is a women gone to do body massage?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"spa\"\n  },\n  {\n    \"question\": \"who dress massaging a girl legs wearing red dress?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"inblue\"\n  },\n  {\n    \"question\": \"who is a woman wearing nothing but a towel massaged by?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"who is lying down getting a massage?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman laying on?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a woman giving to girl?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"who is laying on a table?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is getting a full body massage?\",\n    \"video_name\": \"video8240\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are groups of girls doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a large number of women doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are many asian females in colorful traditional clothing doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is asian people with differant hats doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are group of ladies in pink shirts doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is bunch of sexy girls doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is the video of an asian group doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is asian people doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is asian woman in all sorts of dresses doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are several women in pink outfits and various other styles doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are group of women in pink dresses doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a group of men and women are outside doing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what do a person lift?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what are group of women in pink dresses performing?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do asian people with differant hats raise?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"who are some people watching on a boat?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are group of ladies in pink shirts standing in?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"column\"\n  },\n  {\n    \"question\": \"what are some people watching a woman on?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who lift a flag?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are banners being raised in?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is raised?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what is lifted?\",\n    \"video_name\": \"video8241\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"what is eating?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what donkeys meeting?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"mini\"\n  },\n  {\n    \"question\": \"what donkeys walking around?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"miniature\"\n  },\n  {\n    \"question\": \"what is a man feeding?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"behavior\"\n  },\n  {\n    \"question\": \"who is feeding a donkey?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many mini donkeys meeting?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about donkey behavior?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is walking in a grass land?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what eats out of a womans hand?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what are some people petting some donkeys at?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"farm\"\n  },\n  {\n    \"question\": \"what donkeys making noises?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"miniature\"\n  },\n  {\n    \"question\": \"who talks about the mini donkeys?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a donkey doing?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is video of donkeys doing?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is two mini donkeys doing?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is miniature donkeys doing?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is a donkey doing?\",\n    \"video_name\": \"video8242\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what does pope get handed?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what is a bus going on?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is riding near the sea and a crowd on a white vehicle with a combination curved windshield and roof behind the driver?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"pope\"\n  },\n  {\n    \"question\": \"what does a bus float away down?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"who gets handed a pizza?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"pope\"\n  },\n  {\n    \"question\": \"who drives by in his popemobile?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"pope\"\n  },\n  {\n    \"question\": \"what is man in black suit having with group of people?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"meeting\"\n  },\n  {\n    \"question\": \"what is pop mar-papa the great doing?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"bles\"\n  },\n  {\n    \"question\": \"what are pop on van many people doing?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is a shocking scene of a bus swallowed by doing?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"surge\"\n  },\n  {\n    \"question\": \"what is this is a sky news report doing?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is pop doing?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a pope doing?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is the pope driving by a crowd then a clip of a bus doing?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who gives updates on foreign relations and tragedies?\",\n    \"video_name\": \"video8243\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is walking near some rhinos?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man being nuzzled by?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"who is assaulted by a rhino?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who approaches a rhino too closely?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a hippo attacking?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman learn?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"lesson\"\n  },\n  {\n    \"question\": \"what is attacking a man?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"hippo\"\n  },\n  {\n    \"question\": \"what is a woman assaulted by?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"what does a woman approach too closely?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"who approaches a young rhinocerous?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman poked with in the rear as expected?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"horn\"\n  },\n  {\n    \"question\": \"what are a couple rhinos doing?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a hippo doing?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a rhino doing?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"who learns a painful lesson?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men walk behind a couple of rhinoceroses one of which attacks a man?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is poked with a horn in the rear as expected?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being nuzzled by a rhino?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are standing in a field and horn a man?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is rhino doing?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"charge\"\n  },\n  {\n    \"question\": \"who is head butted by a rhino?\",\n    \"video_name\": \"video8244\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the opening video to the dragonball z television shown doing?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who did bulma rides on a motorcycle while being chase by?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"what are characters getting ready for in a cartoon television show?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what is a woman riding a moped in?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a woman riding in a cartoon?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"moped\"\n  },\n  {\n    \"question\": \"who is driving a motorbike?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding a moped in a cartoon?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what superheros in action?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a warrior doing?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a woman driving?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what is a warrior fighting?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what is a cartoon woman riding?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what does a cartoon showing superheros in?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"who is fighting a battle?\",\n    \"video_name\": \"video8245\",\n    \"answer\": \"warrior\"\n  },\n  {\n    \"question\": \"what is a man filming?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is working on his gasket under his car?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what was the man doing?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man up under a vehicle doing?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a car mechanic doing?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"who crawls under a car?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving instructions on how to fix a car?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what mechanic repairing a car underwards?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who a person is folding up?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is working under an automobile?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy working on his gasket under?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who was working on the car?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking under the car?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy working on under his car?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"gasket\"\n  },\n  {\n    \"question\": \"who is showing how to work on a vehicle?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a car mechanic repairing?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is fixing a car?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what work on the screen?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"hardware\"\n  },\n  {\n    \"question\": \"what does a man crawl under?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do some hardware work on?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what was the man working on?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is filming his car?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person fixing?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person working under?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"automobile\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding up a baby stroller?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person looking under?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who gives instruction on vehicle work?\",\n    \"video_name\": \"video8246\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about food?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is presenting a thermometer and way of preparation?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something in a kitchen?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses thawing food and the danger zones of temperatures while doing so?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"chief\"\n  },\n  {\n    \"question\": \"what is a chef gives tips on doing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"thaw\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a male chief discusses doing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"thaw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man introduces food safety for doing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"thaw\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"thaw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"thaw\"\n  },\n  {\n    \"question\": \"what is an instructional about doing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"thaw\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who introduces food safety for thawing frozen foods?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who is talking about how to thaw food?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about temperature requirements and food safety?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who talks about thawing food and measures the temperature of food?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains how to know when food is thawed?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who gives tips on thawing food?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a person thawing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are people preparing?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is thawing food?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about cooking food?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about cooking?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man presenting a thermometer and way of?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"preparation\"\n  },\n  {\n    \"question\": \"who is showing about a food recipe?\",\n    \"video_name\": \"video8247\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are all vehicles doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is time lapse doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a foggy view of the roads down below with cars doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a time lapse video of ships doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is black and white surveillance footage of boats doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what are in a hazy weather boats doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is on a cloudy day outside a scene with boats doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a misty weather pattern doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"obscure\"\n  },\n  {\n    \"question\": \"what are some ships doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what did a person showing blizzard on?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a foggy view from a sky cam doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person recording the cars in from high building?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who is recording the street with many vehicles on it?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are some ships floating around on the ocean out?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what are some ships floating around on out side?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is person recording the cars in the city from?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is a misty weather pattern obscuring some boats on?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do a foggy view from a sky cam showing in a port?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"what do a foggy view from a sky cam showing boat traffic in?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"port\"\n  },\n  {\n    \"question\": \"where is person recording the cars from high building?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"where do a foggy view from a sky cam showing boat traffic?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"port\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is person recording with many vehicles on it?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what places in very attractively in the sky view of the china?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"what is not very clear?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"visibility\"\n  },\n  {\n    \"question\": \"who is recording the cars in the city from high building?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is filming a misty mountain landscape?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who blizzard on the camera?\",\n    \"video_name\": \"video8248\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is batman doing?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"question\"\n  },\n  {\n    \"question\": \"what is batman doing?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is batman doing?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is batman doing?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are actors doing?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a movie scene shows batman doing?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two mans doing?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who does two man fighting with?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"eachother\"\n  },\n  {\n    \"question\": \"who does batman hit in the face?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"nemesi\"\n  },\n  {\n    \"question\": \"who hits his nemesis in the face?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"who did a cut scene from?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"what did a cut from batman?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is batman fighting against?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"villain\"\n  },\n  {\n    \"question\": \"who does batman fight with?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"villain\"\n  },\n  {\n    \"question\": \"who is questioning a man?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does batman hit his nemesis in?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who is batman questioning?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a batman?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who fights bane?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"who fights with a villain?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"who is fighting against villain?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"who is hitting a man in mask?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"what shows batman fighting a man?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who does a movie scene show fighting a man?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"who does a movie scene show batman fighting?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is beating up bane in a scene from a batman movie?\",\n    \"video_name\": \"video8249\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"who is laying planks on the floor?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating how to lay flooring in front of a doorway?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a flooring contractor doing?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who is showing how to install flooring?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining how to fix something?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man cut?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is a man measuring with?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"tape\"\n  },\n  {\n    \"question\": \"who is working on his knees?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man matting in?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a man measuring?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who is measuring the floor?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is measuring a door?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts some wood?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is measuring with tape?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is matting in the house?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting in flooring?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man laying planks on?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is measuring a piece of flooring?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is installing flooring?\",\n    \"video_name\": \"video8250\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man with red cap doing?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man with a red hat doing?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man in blue color dress doing?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man in a purple shirt and red hat doing?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing guitar in the open place?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who performs in front of cityscape?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what do the man wearing a red hat play as he sing in to the mic?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what do a man in blue color dress wearing cloth holding a guitar in playing music singing song displaying on screen?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what do a man in blue color dress wearing cloth holding a guitar in hand playing music singing displaying on screen?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a man in blue color dress wearing holding a guitar in hand playing music singing song displaying on screen?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do a man in blue color dress wearing cloth holding in hand playing music singing song displaying on screen?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is enjoying the musc in the hot sun?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing guitar outside in an urban landscape?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man in blue color dress wearing cloth holding a guitar in hand playing singing song displaying on screen?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a man in a red baseball cap and a purple shirt play?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is a person enjoying in the hot sun?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"musc\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man wearing a red hat and pink shirt play?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person playing in the open place?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing outside in an urban landscape?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what do a man playing and acoustic guitar singing on a roof top with a sporting arena as the backdrop?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a man playing and acoustic guitar singing a song on a roof top with a sporting arena as?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"backdrop\"\n  },\n  {\n    \"question\": \"what is the men played in at the marine drive in lonely?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when is a man in a purple shirt and red hat singing into a microphone while with a large stadium in the background?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a woman with a guitar singing?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man in a purple shirt and red hat playing?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man in a red hat play?\",\n    \"video_name\": \"video8251\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a zoom in of a picture of an older gentleman in a black suit with glasses doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a heartbroken viewer doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a old man and a woman doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a black suit man doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a black suit man doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a man and a lady doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a picture of a bride doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a old man with his wife both doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is an old man doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is bride doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a newly married girl poses along with an elderly person who she doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a old man in white shirt and girl in white dress standing still image doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a man with glasses doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is a black suit man standing?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who smiles next to a bride?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a old man in white shirt and girl in white dress standing still image smiling displaying on screen?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who talks about the soul and body of a dead man?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a old man in white shirt and girl in white dress standing still smiling face displaying on screen?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"who does man with glasses smile next to?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"bride\"\n  },\n  {\n    \"question\": \"who is speaking of the man in the photo?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"heartbroken\"\n  },\n  {\n    \"question\": \"what is a man with glasses speaking about?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is an old man standing near?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"bride\"\n  },\n  {\n    \"question\": \"who is a man wearing black coat and white shirt with lined neck tie standing with with white dress and white scarf?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is standing near a bride?\",\n    \"video_name\": \"video8252\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are volley ball players doing?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a musical montage doing?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is highlight reel from basketball doing?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"when are volley ball players playing?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is dribbling is basketball?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows basketball clips?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what highlights with great songs?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what scenes with music playing with it?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who dunked the basketball?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what did player dunk?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what a basketball game scenes with playing with it?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who are playing in a stage?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"volley\"\n  },\n  {\n    \"question\": \"who does hakeem fake out with the dream shake?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"who attempts to slam dunk a basketball?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fakes out his opponent with the dream shake?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"hakeem\"\n  },\n  {\n    \"question\": \"what is playing while clips of basketball plays are shown?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a man attempt to slam dunk?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a man dribbling is?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what vines?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"vest\"\n  },\n  {\n    \"question\": \"what does a vine show?\",\n    \"video_name\": \"video8253\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a woman in a purple dress doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the woman in blue dress doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who writes?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is brunette woman doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl in blue shirt doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a blue shirt doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a blue shirt doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an actor doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who dress?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is talking about a deadly bug picture?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what do a giant guy throw away there was a minion girl on the floor?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"underwear\"\n  },\n  {\n    \"question\": \"who stars in his own movie?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"who is talking for a tv emission?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"what is the woman in blue dress talking about in front of camera?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman in a purple dress talking on?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a woman in a blue shirt talking about?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a woman with a blue shirt talking about?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who throw his underwear away there was a minion girl on the floor?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is there is a woman in blue doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about the movie doodlebug and director christopher nolan?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a young woman talking about director christopher nolan s?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"doodlebug\"\n  },\n  {\n    \"question\": \"who gives a review of the movie doodle bug?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving a review on the movie doodle bug?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a young woman talking about director christopher s movie called doodlebug?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"nolan\"\n  },\n  {\n    \"question\": \"who is talking about director christopher nolan s movie called doodlebug?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there is a lady in blue doing?\",\n    \"video_name\": \"video8254\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who pushes the button on a drum machine while another person plays the electric piano?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does someone push the button on a drum while another person plays the electric piano?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who presses one drum button as someone else plays a song on the keyboard?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pressing the keys on an electronic drum machine?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a person presses one drum as someone else plays a song on the keyboard?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"button\"\n  },\n  {\n    \"question\": \"what does a finger pressing a button of a sound producing machine and hand playing?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"who plays an electric keyboard?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does someone else play on the keyboard?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does someone else play a song on?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"who is playing a keyboard?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays the electric piano?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays the piano?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a piano?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing the piano?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays a song on the keyboard?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what does another person play?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who is playing piano?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a drum machine and a piano?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"pres\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a finger doing?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"pres\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8255\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is a person playing?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing dark souls?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a video game character exploring?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"castle\"\n  },\n  {\n    \"question\": \"who runs up stairs?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a video game character running around?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"dungeon\"\n  },\n  {\n    \"question\": \"who runs through an abandoned castle?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay of a man doing?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a game about doing?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who runs through a dungeon in a video game?\",\n    \"video_name\": \"video8256\",\n    \"answer\": \"knight\"\n  },\n  {\n    \"question\": \"who is describing how to avoid injury in a laboratory?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who glasses talking about how to use lab equipment?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a host talk about?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"safety\"\n  },\n  {\n    \"question\": \"who talks about lab safety?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a guy with a brown jacket talking in?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"what does a man in jacket stand in a lab with chemistry lab equipment including?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"glassware\"\n  },\n  {\n    \"question\": \"what does a man stand near a paper towel dispener then begins a message about?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"safety\"\n  },\n  {\n    \"question\": \"what is talking about how to avoid injury in a lab?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what does a man stand near a paper towel then begins a message about lab safety?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"dispener\"\n  },\n  {\n    \"question\": \"who talks about some frustration and hard work peovary injury in the lab and some good techniques for usign labnoratory equipments correctly?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who glasses explaining how to clean science equipment?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about how to avoid injuries in a lab?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in glasses doing?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is discussing some functions for a science expirement?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in jacket stands in a lab with chemistry lab equipment doing?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man in a brown jacket doing?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in glasses talks about doing?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"avoid\"\n  },\n  {\n    \"question\": \"what is a guy with a brown jacket doing?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in glasses doing?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who stands near a paper towel dispener then begins a message about lab safety?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who introduces the topic of how to avoid injury in the lab?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video8257\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman giving demo for?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"what available for a baby stroller?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"accessory\"\n  },\n  {\n    \"question\": \"who is presenting a baby stroller?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is using a baby stroller?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing a stroller?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a stroller?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman presenting?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a person showing?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is woman using?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman using?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman giving for baby trolley?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"who is demonstrating a baby stroller jogger?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing the features of a stroller?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman advertising the features of?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is an advertisement for a jogger stroller a woman in black doing?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is commercial for a light weight doing?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is an advertisement for a jogger stroller a woman in black using?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is advertising the features of a stroller?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman showing the features of?\",\n    \"video_name\": \"video8258\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is new doing?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who speaks on a a news panel?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are at a microphone talking?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking into a microphone?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are some men interviewing?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"what is a man talking into?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what are men having?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is conducted?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does group of middle eastern men in sports garb doing?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is two people are at a microphone doing?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a radio show of men doing?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is many men in a studio doing?\",\n    \"video_name\": \"video8259\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what shows scrolling text about clicking the link in the description great prices?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is talking about a product that he sells online?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"where is man in white shirt talking about his products?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"site\"\n  },\n  {\n    \"question\": \"what clicking the link and thanks for watching?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what does a bald headed man in a white shirt lean forward in?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what shows scrolling text about shipping reassuring the viewer that link great prices and fast shipping won t be disappointed?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what s video ends with thanks?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"what is a man in white doing?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a bald man in a white shirt doing?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is black text captions doing?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is text gives information about links and doing?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is man in white shirt doing?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is red screen doing?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a scrolling advertisement with a red background doing?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"claim\"\n  },\n  {\n    \"question\": \"what is a red screen shows doing?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is a fat bald man doing?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what gives information about links and shipping then thanks for watching?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who did white showing ending of a program describe hold the lines are great price and fast shipping?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a bald head man in white put up on a red background saying click on link great prices and fast shipping?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what captions scrolling upward through a red screen background?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is a fat bald man sitting down inside of?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a red screen show scrolling about clicking the link in the description great prices?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who encourages viewers to watch more?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"what is man in white shirt talking about his products on?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"site\"\n  },\n  {\n    \"question\": \"what does a red screen show scrolling about shipping reassuring the viewer that link great prices and fast shipping won t be disappointed?\",\n    \"video_name\": \"video8260\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is a young woman with a flower headband doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a young woman with dark nails and blonde hair and a nose ring doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl touches the screen of the camera while doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a woman with a nose piercing and a wreath of roses on her head doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a white girl in front of a camera doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a woman with flowers on her head doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is young girl with flowers in her hair doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman with fake flowers on her hair doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl with light brown hair doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is blonde woman with black nails doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a beautiful girl doing?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who touches the screen of the camera while is chatting with someone across the webcam?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young woman with dark nails and blonde hair and a nose ring talking into?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a young girl with black nails and a nose ring talk into?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is blonde woman with black nails recording in a room?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"what does a girl with blonde hair and a nose ring make gestures with?\",\n    \"video_name\": \"video8261\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is underway?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"sporting\"\n  },\n  {\n    \"question\": \"what match with men?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what does a wrestler get ready for?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what are wrestlers at?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what does a wrestler step off?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are people watching?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what match recording?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what is activities doing?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"surround\"\n  },\n  {\n    \"question\": \"who is talking while two boys walk around a wrestling competition?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"how many boys walk around a wrestling competition?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are the people participating in a high school wrestling?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"tournament\"\n  },\n  {\n    \"question\": \"what is a wrestling competition being held in?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"auditorium\"\n  },\n  {\n    \"question\": \"what is a crowd of people doing?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who gets ready for a match?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what are we doing?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is high school doing?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is an announcer doing?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who steps off the wrestling mat?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what is being held in an auditorium?\",\n    \"video_name\": \"video8262\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"who drives aroud curves through a wooden mountainside?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone in a car at the doing?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"steer\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"clutch\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is driving a honda car while talking about it s horsepower?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man test drive?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being driven?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing in a vehicle?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who speaks about a car as he drives it?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is clutching the steering wheel?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving down the road?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man speak about as he drives it?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing a test drive in?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what drives a car?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a man driving down?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man clutching?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"steering\"\n  },\n  {\n    \"question\": \"what is a person driving?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is the person driving?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving the car?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man driving down the road?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a guy drive through the street?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving a car down?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a guy drive a car through?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is doing a review on a car while driving?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the features of a car model?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car down the road?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a test drive in a vehicle?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing on a car while driving?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what do a video on a car rest drive?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man driving while talking about it s horsepower?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"honda\"\n  },\n  {\n    \"question\": \"who drives a car through the street?\",\n    \"video_name\": \"video8263\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who are warming up at the starting line of a race?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what does a woman in red take at the start of a race against 6 other women?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are a line of female track runners doing?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are female athletes doing?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"warm\"\n  },\n  {\n    \"question\": \"what are more players doing?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are several woman doing?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what is a track runner doing?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who are setting up in the blocks preparing to start a track race?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing to run a race?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"runner\"\n  },\n  {\n    \"question\": \"who are the runners in the red and white uniforms ready to begin the race is ready to give the signal to begin?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a line of track racers?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"stretch\"\n  },\n  {\n    \"question\": \"what do a group of track runners prepare to start running on?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what do the running race game and racers in the ground start?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are several woman setting up in the blocks preparing to start?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are the athlts ready to hear the starting bell in?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are a line of female track runners preparing for?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do girls prepare to race one another down?\",\n    \"video_name\": \"video8264\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman singing on?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who performs a song on the show the voice?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing guitor in a stage?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing while playing the guitar at a talent show?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does someone play?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing on the voice?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar and singing?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who do judges have their backs listen to?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings on competitive tv show?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing a song on the voice?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man play while judges have their backs turn and listen to him?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy performing on the voice?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a boy performing a song on?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a man playing in a stage?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"guitor\"\n  },\n  {\n    \"question\": \"when is a man playing guitor?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who plays a guitar while judges have their backs turn and listen to him?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is performing a song on some sort of talent show?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is male kid doing?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing a guitar for a contest?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is judges listen to a person doing?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who sings on stage of a tv show?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a singing competition contestant doing?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8265\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is depicted?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who are action packed?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"super\"\n  },\n  {\n    \"question\": \"who is a robot fighting?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"what is a clip of hulk and iron man doing?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is fighting a monster?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"who is destroying things?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"hulk\"\n  },\n  {\n    \"question\": \"what does a scene from the avengers?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is seen in a movie preview?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what appears?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what is a clip of the incredible hulk and another character doing?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are a huge man and a robot doing?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a movie trailer shows some heroes doing?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a robot doing?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are superheros doing?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is the avengers doing?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is the hulk doing?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"destroy\"\n  },\n  {\n    \"question\": \"who shows some heroes fighting each other?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what is a trailer for a super hero movie?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what does clips from avengers age of ultron with the iron man and hulk fight show?\",\n    \"video_name\": \"video8266\",\n    \"answer\": \"ultron\"\n  },\n  {\n    \"question\": \"who is rolling?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gymnatics?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rolls?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a move call?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"who is a man performing?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"backflip\"\n  },\n  {\n    \"question\": \"what called the backwards roll?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who is performing a backflip?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown doing a backflip?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people showing techniques in to better do backflips?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"who performs gymnastic drills?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing flips and rolls in?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who is doing flips and rolls in a gym?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who flips?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is video of gymasts doing?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8267\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is an older man doing?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a beard man doing?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is man explaining to on how to care for his monkey?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the little girl have?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what are two people having?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who does a man tell that the plant likes to be watered once a day and when the girl promises not to let it get dehydrated?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is cartoon of a man and woman doing?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a cartoon animation three people doing?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who was carinng for a monkey?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is explaining to a woman on how to care for his monkey?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tells the girl that the plant likes to be watered once a day and when the girl promises not to let it get dehydrated?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to a woman and a monkey?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his pet monkey?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is talking to the kid?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"beard\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what was the little girl carinng for?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"who is a beard man talking to?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who talks to a monkey and girl?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are having a conversation?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talk about watering plant?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what play for kids?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who has a pet monkey?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do cartoon characters talk about?\",\n    \"video_name\": \"video8268\",\n    \"answer\": \"watering\"\n  },\n  {\n    \"question\": \"who thought students should be given the freedom to learn?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing a picture on a white board?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the process of learning?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"wise\"\n  },\n  {\n    \"question\": \"what is a man drawing on a white board?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who is drawing cartoon in paper?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man give?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"who speaks about a teaching curriculum?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is an older man doing?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a wise man talks about the process of doing?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a presentation?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the person drawing in paper?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is the person drawing cartoon in?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who talks about teaching?\",\n    \"video_name\": \"video8269\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about trees?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who examines some plants outside?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is outdoors talking about trees?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is keeled in bushes?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking through some grass and bushes?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about different kind of trees?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks through all the trees he s planted?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kneeling down?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his trees?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"kneel\"\n  },\n  {\n    \"question\": \"what is a man is outdoors doing?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"gather\"\n  },\n  {\n    \"question\": \"who is in his garden?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who gathers plants?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is telling about plants?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man discussing what in?\",\n    \"video_name\": \"video8270\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"lavigne\"\n  },\n  {\n    \"question\": \"who swims?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"lavigne\"\n  },\n  {\n    \"question\": \"what do people swim under?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who sings a song while different people swim under water?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"lavigne\"\n  },\n  {\n    \"question\": \"what does a female rock band perform in while people frolic underwater in an indoor swimming pool?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what does singer avril lavigne sing while different people swim under water?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings while people swim under water?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"lavigne\"\n  },\n  {\n    \"question\": \"who is singing a song as some other people are swimming and dancing?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing with the other members of the group?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is a woman singing as some other people are swimming and dancing?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do different people swim under?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are people swimming in with their clothes on a woman with heavy makeup is singing?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are people swimming in with their clothes on a woman is singing in a band with heavy makeup on?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is there are people dressed in clothes underwater doing?\",\n    \"video_name\": \"video8271\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men are seated on the couch?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who discusses some roles of the courts?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are talking to a camera?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are discussing a topic?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking about a lawsuit?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about politics?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two men seated on?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what do some men sit in?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"lawsuit\"\n  },\n  {\n    \"question\": \"what are two people talking to?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are two men discussing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what is a lawyer doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"how many men sit in armchairs as one discusses politics?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is one doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two men are seated on the couch and doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is funny people doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8272\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men driving on the road?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are two men driving a car on?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do two men ride in down the road?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who enjoys driving the car?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do two men ride in a car down?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"how many men drive fast down the streets?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men drive at a high rate of speed?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is two guy one in black tshirt is driving a car and other in white shirt sitting next to?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two persons talking in while driving?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are two men riding in?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are two men driving around in?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are two men driving in?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do two men sit in?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are two men talking together in?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a men driving very fast?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"how many men sit in a car?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men are talking together in a car?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a men doing?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are the travelled perople doing?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is two men ride together in a car that doing?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what are in a car two men doing?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is this person enjoys doing?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is two guy one in black tshirt doing?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is bunch of guys doing?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is couple of guys doing?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is a men driving a test drive with explaining?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"how many persons are talking in a car while driving?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men ride together in a car that is speeding down a road?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are riding around in a sports car?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men ride in a car down the road?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking to each other?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are driving around in a car?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are riding in a car?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are driving in a car?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are driving a car on the road?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many humans ride along inside a sports car?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men drive a sports car at a high rate of speed?\",\n    \"video_name\": \"video8273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to dogs?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing with dog?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who speaks to two puppies?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what showcasing two small dogs?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what dogs on camera?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"cute\"\n  },\n  {\n    \"question\": \"who is talking to two dogs?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what talks to two puppies?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does one walk up to?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is kid playing with?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does little cute dog on?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is sitting?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are puppies on?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what do a black puppy and a white puppy paw at?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two puppies doing?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a camera doing?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"how many puppies play around near a potty mat?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a little white puppy being recorded by?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many small dogs did a short clip showcasing?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to a two puppies in a room and puppies walking toward s to kid?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video8274\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who fights some ghosts?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is overdosing?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is distraught?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is scared by ghosts?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a horrible demon attacking?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is attacking an old lady?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"demon\"\n  },\n  {\n    \"question\": \"what is a horrible demon doing?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"overdose\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about confronting a creature who took another girl?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is held in bondage by supernatural forces?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what feed on the fear of a family?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"paranormal\"\n  },\n  {\n    \"question\": \"what is a woman held in by supernatural forces?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"bondage\"\n  },\n  {\n    \"question\": \"who did scary images of old lady and a girl thats?\",\n    \"video_name\": \"video8275\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"what is a woman explaining the popularity of?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"veg\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what are lots of red fruits kept in a white bowl in?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what did a lady talking of something about the fruits keep on?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is speaking about the red berries advantages?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining the popularity of veg?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a white and blue bowl of cherries on a warn?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"plank\"\n  },\n  {\n    \"question\": \"what did a woman talking about growing fruits and vegetable while showing a white and blue bowl fill with?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what are the grapes on?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a chef talks about the tomatos that she has been doing?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"grow\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is there is a white bowl with blue trim doing?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bowl of what appeares to be cherry tomatoes is on the screen while a women talks about how she has been doing?\",\n    \"video_name\": \"video8276\",\n    \"answer\": \"grow\"\n  },\n  {\n    \"question\": \"what screen into a still image?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"loading\"\n  },\n  {\n    \"question\": \"what is loading a picture?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a name linger on as an upload bar progresses?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what lingers on the screen as an upload bar progresses?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"name\"\n  },\n  {\n    \"question\": \"what is a screen loading?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what loads until complete?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what is filling up?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what progresses?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"loading\"\n  },\n  {\n    \"question\": \"what is buffering on the system?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is something buffering on?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a progress bar doing?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a progress meter doing?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a screen doing?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is what appears to be a doing?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is something doing?\",\n    \"video_name\": \"video8277\",\n    \"answer\": \"buffer\"\n  },\n  {\n    \"question\": \"what do pictures of different landscapes appear on?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is an upright and oblong building doing?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"overlook\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is near the sea?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person near?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what does several slide of?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"wildernes\"\n  },\n  {\n    \"question\": \"what is person is near the sea and doing?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are a various natural scenes displaying in?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is by the beach and the mountains in picturesque images of ireland?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are a various natural scenes doing?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is a water scene trees mountain nice scene doing?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is pictures of beautiful sceneries doing?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what trees mountain nice scene displaying on screen?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is by the rocky beach and grassy hills?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is showing some photos from the sea near the mountains?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what plays as various nature scenes of ireland are displayed?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what plays while pictures of different landscapes appear on screen?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do pictures of the out doors scroll bye as?\",\n    \"video_name\": \"video8278\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who does guy grabs another slam to the ground?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who flips ray mysterio?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does the man suplexes?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"who gets then pinned?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who gets thrown?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who are fighting?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"how many wwe wrestlers go at a wrestling match between two men one in the ring?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two wrestling players doing?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a man flips ray mysterio and doing?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is wrestlers doing?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two wrestlers fighting in?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are two men wrestling on?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"how many wrestlers are fighting in the ring?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are wrestling on a ring?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a group of pro wrestlers fight in?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what another slams a wrestler to the ground?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does guy grabs another slam a wrestler to?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who go at a wrestling match between two men one in the ring?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"wwe\"\n  },\n  {\n    \"question\": \"who does a wrestler slam?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who is trying to get a knockout?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slams another wrestler?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"how many wrestling players are fighting?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two wwe wrestlers go at a wrestling match between two men one in?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"how many men are wrestling?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who suplexes his opponent?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man flip?\",\n    \"video_name\": \"video8279\",\n    \"answer\": \"mysterio\"\n  },\n  {\n    \"question\": \"who is seeing news where a news reader is reporting about a girl?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman seeing where a news reader is reporting about a girl?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a girl in a waiting room sees herself featured on a doing?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a girl looks up to see the doing?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a video of people doing?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a woman in an airport is pranked as they play doing?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is girl in doing?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is peoples doing?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what are students doing?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who is being filmed for live telecast?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"who sits in a public area as a news broadcast starts?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what starts?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"broadcast\"\n  },\n  {\n    \"question\": \"what is being filmed?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a woman sitting at?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what are young people directing?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what are students watching?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is sitting at the airport?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a newscaster being filmed for?\",\n    \"video_name\": \"video8280\",\n    \"answer\": \"telecast\"\n  },\n  {\n    \"question\": \"who see the goat?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who interacts with some alpachas in a pen?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some llamas inside of inside?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what do a man see?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what are inside of a pen inside?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"llama\"\n  },\n  {\n    \"question\": \"who is standing with a group of tan and brown animals?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking in the garden with few animals?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks on a cell phone next to a pack of llamas?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in blue denim and a black vest get from a white alpaca?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man wearing blue shirt jeans and blue jacket playing with?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"sheep\"\n  },\n  {\n    \"question\": \"who is meeting the animals on a sunny day outdoors?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tries to get uncomfortably close to a group of alpacas?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a guy in blue dress talking in?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a guy in blue dress doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy in a blue shirt doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is man on the phone in jeans and a sleeveless coat looks like doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an alpaca farmer in a black vest doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man closely doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is there are some animals doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8281\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"wrap\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"poke\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"tear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman mixing two different shades of together for a craft project?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"fur\"\n  },\n  {\n    \"question\": \"who shows how to prepare an object to be made into crafts?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing two different shades of fur together for a craft project?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pokes the wool with a needle?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who makes a craft project with fur?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing a tutorial with wool?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is made more dark by mixing two different shades of the fur by a person?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who is the fur color made more dark by mixing two different shades of the fur by?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a women doing with netted cloth?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is skilled worker doing?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is the fur colour is made more dark by doing?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is someone pulling apart?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"wool\"\n  },\n  {\n    \"question\": \"what does a woman make?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a woman poking?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"wool\"\n  },\n  {\n    \"question\": \"what is a person wrapping?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person showing a tutorial with?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"wool\"\n  },\n  {\n    \"question\": \"what is a woman working with?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a woman tearing up?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"fabric\"\n  },\n  {\n    \"question\": \"who makes a craft?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pulling wool apart?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is wrapping something in wool?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who messes with some fake hair?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a women doing something with?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who is poking wool?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is tearing up some fabric?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is working with hair?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is pinned by a needle?\",\n    \"video_name\": \"video8282\",\n    \"answer\": \"fur\"\n  },\n  {\n    \"question\": \"who describes how the renaissance was only possible because of the wealth of the italian city states?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man s explains why italy was ready for the renaissance while cartoons illustrate what he is saying?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a person with black color dress explaining about?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who describes the importance of wealth in the renaissance period?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains the reason for the birth of the renaissance in the italian city states while an animated clip illustrates the ideas?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"voiceover\"\n  },\n  {\n    \"question\": \"who explains that the renaissance happened in italy because the great wealth of its city states allowed animated rocks to patronize artists?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man explain that the renaissance happened in because the great wealth of its city states allowed animated rocks to patronize artists?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"italy\"\n  },\n  {\n    \"question\": \"what are talking?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what illustrates the ideas?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what are staying on the street?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are group of people staying on?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is discussing italy and the renaissance while a cartoon runs in the background showing what he is talking about?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what runs in the background showing what there is talking about?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is talking about the renaissance and how wealthy the italian states have been?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who s voice explains why italy was ready for the renaissance while cartoons illustrate what he is saying?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is and animation doing?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"stay\"\n  },\n  {\n    \"question\": \"what is animated rocks fell then a man doing?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in black suit then animated figures doing?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a king and different people from italy are shown and the speaker doing?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady and man doing?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is there is a old man doing?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person with black colour dress doing?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"where does a man explain that the renaissance happened because the great wealth of its city states allowed animated rocks to patronize artists?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"italy\"\n  },\n  {\n    \"question\": \"what generated graphics show an animation of cartoonish characters from the italian renaissance era?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is playing as a man describes the importance of wealth in the renaissance period?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who talks about how wealth helped the renaissance take off in italy?\",\n    \"video_name\": \"video8283\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is a man singing on stage with?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a black male singer performing to?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what preforms a song?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is a man singing with his band?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is performing on stage?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a black man singing?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a band preform?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings and sweats?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings and dances?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing on stage with his band?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man performing?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings on stage with his band?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a black male singer doing?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8284\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is playing a song on the piano?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man playing a song on?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a person playing a song on?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a man playing on a piano?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a person playing on the piano?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who demonstrated his skill on the keyboard?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing musical keyboard?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a song on a piano?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing piano?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays the piano?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is playing the piano?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this is a video of a man doing?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is playing the piano?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does someone play?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what did the man demonstrate his skill on?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what did the man demonstrate on the keyboard?\",\n    \"video_name\": \"video8285\",\n    \"answer\": \"skill\"\n  },\n  {\n    \"question\": \"what do a lady giving pose to on some where?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a lady wearing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what did an ethnic outfit of a shaded emerald?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who pose to the camera with different positions?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is modeling a green pant suit?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is wearing green color dress?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do a girl wearing green dress turning around to show?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who is posing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is turning while wearing a green dress that blends in with the green grass?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone in green dress doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is modeling a green traditional outfit from india that is decorated in gold?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in a green dress and green pants doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman with very dark long hair doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a indian woman doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"who pose to the camera on some where?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman with waist length black hair and doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a woman in green doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a snapshot of a woman doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a woman with waist length black hair and wearing a green and gold outfit turning in on a sidewalk next to green foliage?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"where is a woman with waist length black hair and wearing a green and gold outfit turning on a sidewalk next to green foliage?\",\n    \"video_name\": \"video8286\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a house on?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is on the beach?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does a girl clutch?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"pillow\"\n  },\n  {\n    \"question\": \"who is shown holding a pillow?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a young couple walking through?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is walking through the crowd?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who clutches a pillow?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a beautiful asian in red walk with?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown walking with a man in a crowd?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young couple doing?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is men and women doing?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is young couple doing?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is been showed?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what is a woman and a man doing?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman is shown doing?\",\n    \"video_name\": \"video8287\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who is driving a blue car down the road?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a car driving on as a camera focuses on the wheel?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is there is a car doing?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who is driving a volkswagen down the road?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is driving on the road as a camera focuses on the wheel?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a blue car doing?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is there is a blue car doing?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who is a person driving down the road?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"volkswagen\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a commercial shows a close-up of a car doing?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is this is a blue car doing?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person driving a volkswagen down?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is temporary driven by auto pilot with passenger in it?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is a blue van doing?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is its a blue car doing?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what does a camera focus on?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"who is a blue car temporary driven by auto pilot with in it?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"passenger\"\n  },\n  {\n    \"question\": \"what is a blue car moving on very fast?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is moving on a road very fast?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what focuses on the wheel?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man driving down the road?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"who is a blue car temporary driven by with passenger in it?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"what is a man driving a blue car down?\",\n    \"video_name\": \"video8288\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are two men using?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what do a tv show host grabs?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"funnel\"\n  },\n  {\n    \"question\": \"what are men and a kid doing?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what do two men play with?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what are men and a kid using?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"who is holding a pair of scissors?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who explains something that was once used as a special effect?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many guys play a telephone game with a kid?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men talk about how to make sound effects?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are holding cups connected by wire to demonstrate an experiment on tv?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are using a tubed object?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are three people holding cups connected by wire to demonstrate on tv?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what shows an old star wars special effect?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who do two guys play a telephone game with?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what do a tv show a funnel?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"how many men play with a toy?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two guys play with a kid?\",\n    \"video_name\": \"video8289\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"unpack\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"unbox\"\n  },\n  {\n    \"question\": \"who is taking things out of a box?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man unpacking to install valves into a blue mechanism?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what do a person examine things in?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"carton\"\n  },\n  {\n    \"question\": \"who is unboxing some parts?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about installing ball valves?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who examine things in a carton?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is about to install a ball valve?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person place in in a cardboard box?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"item\"\n  },\n  {\n    \"question\": \"who talks about installing some parts he just received?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is checking all the parts available to him?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who gets ready to install some ball valves?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows valves that he needs to install?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is unpacking a box to install valves into a blue mechanism?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who places in an item in a cardboard box?\",\n    \"video_name\": \"video8290\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone giving demo for?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a woman talking about?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman walking with?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is a woman pushing around?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who is pushing around a stroller?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman push a stroller through?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is walking with a stroller?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone giving for baby trolley?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"who is talking about a stroller?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pushes the stroller?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pushes a stroller?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a baby stroller?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is pushing a car seat stroller?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman push through a room?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman demonstrating the features of?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who pushes a stroller through a room?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating the features of a stroller?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is testing a baby stroller?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman push?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does the woman push?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman testing?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8291\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video8292\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does children s toys are on?\",\n    \"video_name\": \"video8292\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8292\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do kids play food is shown in?\",\n    \"video_name\": \"video8292\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are a bunch of home made deserts shown in?\",\n    \"video_name\": \"video8292\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are a few different pictures shown of kitty themed foods?\",\n    \"video_name\": \"video8292\",\n    \"answer\": \"hello\"\n  },\n  {\n    \"question\": \"what are pictures shown of kitty accessories?\",\n    \"video_name\": \"video8292\",\n    \"answer\": \"hello\"\n  },\n  {\n    \"question\": \"who is playing with a gun in front of a woman?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who finds a human set of teeth?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"fit\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what does a man make?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man fixing?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what are a silent clip of a movie where they doing?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what does a man try to piece together?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"who tries to piece together an object?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fixing a gun?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows some movie scenes?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who makes an unusual gun?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who assembles some bones?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to fix a fossil?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing with in front of a woman?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a movie trailer show?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is man and women doing?\",\n    \"video_name\": \"video8293\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who is folding a paper for paper craft?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person make with a blank paper?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person in a triangular form?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone for paper craft?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is person?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"oragami\"\n  },\n  {\n    \"question\": \"what does a man do?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what does the person fold?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds a piece of paper?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who folds the paper?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a paper airplane?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does paper origami?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding oragami?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man fold a piece of?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person fold a piece of?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person fold a piece of into an airplane?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone folding a paper for?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who makes something with a blank paper?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person fold a piece of white paper into?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who folds a piece of white paper into an airplane?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make a paper airplane on a table?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a paper in a triangular form?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folds origami on a black table?\",\n    \"video_name\": \"video8294\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cartoon children in robes doing?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"respond\"\n  },\n  {\n    \"question\": \"what is boys consult their grandfather about doing?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"advance\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl talks about a man s strategies for doing?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking to a crowd of children?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to an old man?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a cartoon character explain?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"strategy\"\n  },\n  {\n    \"question\": \"who do boys consult about advancing armies?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"grandfather\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains a military strategy?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what do animated characters discuss?\",\n    \"video_name\": \"video8295\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"slap\"\n  },\n  {\n    \"question\": \"what is sir doing?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what are students doing?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is students doing?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is being punished by his teachers?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shouting at students?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"sir\"\n  },\n  {\n    \"question\": \"who feels connection to boy?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does asian girl feel?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"connection\"\n  },\n  {\n    \"question\": \"what are students sitting in?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"what do others watch?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"who is a student reprimanded by as others watch the event?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"how many man s are talking to each other?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who watches a classmate get yelled at by a teacher?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is slapping a younger man s head in what appears to be a movie trailer?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reprimanded by a teacher as others watch the event?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"student\"\n  },\n  {\n    \"question\": \"who does a girl watch get yelled at by a teacher?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"classmate\"\n  },\n  {\n    \"question\": \"who is a man slapping s head in what appears to be a movie trailer?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a girl watch a classmate get yelled at by?\",\n    \"video_name\": \"video8296\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what is a man sits at a table while doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a person with blue shirt doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a happy man doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a boy in blue dress color doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a men in blue shirt doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a bearded man doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a blue shirt man doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the man in the grey colour dress doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man with a blue shirt doing?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is enjoying his hot dog and french fries he is licking his fingers after eating?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits at a table while smiling?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a men in blue shirt eating the man in the gray color mean on?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does a man sit at while smiling?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what do a man open very wide open and stuffs a big burger in his mouth?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does jazz music play in?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who open his mouth very wide open and stuffs a big burger in his mouth?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with a blue shirt eating?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is eating a meal in a fast food restaurant?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do the man in the gray color dress eating in the snacks shop?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"burger\"\n  },\n  {\n    \"question\": \"who sits at a table while eating food?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy with a beard bite into while music plays?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"sandwhich\"\n  },\n  {\n    \"question\": \"what do a boy in blue dress color wearing sitting on chair taking meals eating dish displaying on screen?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what does a happy man wearing a light blue shirt take out of a burger?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"bite\"\n  },\n  {\n    \"question\": \"who does a happy man wearing a light blue shirt take a large bite out of?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"burger\"\n  },\n  {\n    \"question\": \"who is a person with blue shirt eating?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"burger\"\n  },\n  {\n    \"question\": \"what does a man with a beard bite into?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"sandwhich\"\n  },\n  {\n    \"question\": \"what do a boy in blue dress color wearing cloth sitting on chair taking meals eating displaying on screen?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a man sit at while eating food?\",\n    \"video_name\": \"video8297\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who talk about a shooting?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is about a shooting?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what do some news casters talk about?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what is a new report about?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what are some people discussing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who discusses gun laws and mass shootings?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking to women on?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what are people in a news room discussing shooting?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"what are a group of people talking about?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking to women on fox news?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man reporting?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking about a news story?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reporting the news?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is fox news doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is news reporters doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is people are in a news room doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a fox panel doing?\",\n    \"video_name\": \"video8298\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who sits on a couch and talks with a friend?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a bunch of guys doing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a video about a guy in black doing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men at a frat house doing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is two man doing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"engage\"\n  },\n  {\n    \"question\": \"what were two of the men doing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a group of guys doing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men engaging in?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are men having?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what did barely light guys talk to each other in a?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"how many men are engaging in conversation?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is sitting in his sofa relaxing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits on a couch?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting on?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what does a young man sit on?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a young man sitting in relaxing?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"who is sitting on a couch?\",\n    \"video_name\": \"video8299\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is in a cookery show a foreign woman doing?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person putting some food in?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is someone cooking with sauce in a black pan?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is a woman explaining the recipe step by?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what is someone cooking chicken with in a black pan?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is some water and red sauce being added to a pot of meat on?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what does a woman add to the meat cooking in the pot?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a woman pours water into her pot of meat then tomato sauce and stirs it all around while doing?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl and a bowl spoon doing?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is person putting some water into?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"stew\"\n  },\n  {\n    \"question\": \"who are meals cooked by?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is person putting into the meat?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is cooking stew?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman explaining by step?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what is a person putting in a pot?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is meat simmering in when a woman adds a red sauce to the pot?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is cooking in a pot and red sauce poured over it?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who pours water and tomato sauce into a pot of diced meat?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking chicken with sauce in a black pan?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who adds sauce to the meat cooking in the pot?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining the recipe step by step?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating the preparation of a meat dish in a cookery show?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is meat doing?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"simmer\"\n  },\n  {\n    \"question\": \"what is raw meat doing?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person with an asian accent doing?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a stew in a black pan being created with?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is putting some food in a pot?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who mixes various ingredients into a pot on the stove?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting some water into the meat?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is simmering in a pot when a woman adds a red sauce to the pot?\",\n    \"video_name\": \"video8300\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what are two men talking about?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man talking with?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men talking on?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man in black cap doing?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a short clip of two hispanic men doing?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is one person doing?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is holding his ears?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men pretend to drive a car in an office?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks to a second man while the second man attempts to block out his speech with his hands?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man in black cap showing while talking?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"how many men are talking on a set?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is putting finger in his ear to not hear?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining something to his fellowman?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two men pretend to drive in an office?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do two men pretend to drive a car in?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"how many men are talking about something?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is other person putting in his ear to not hear?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what does the second man attempt to block out with his hands?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a man explaining to his fellowman?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who attempts to block out his speech with his hands?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pretends to be two different people?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who covers his ears?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with hand gestures?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are sitting?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is very talkative in a show?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many different people does man pretend to be?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man very talkative in?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is a man explaining something to?\",\n    \"video_name\": \"video8301\",\n    \"answer\": \"fellowman\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a person eating?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who talks about kim chi to a camera?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a food in a restaurant?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are men talking about from a restaurant?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who discusses food culture in korea?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person talking about in a restaurant?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who eats kimchi fries?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person talking about a food in?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what are men talking about food from?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who speaks to a couple outside?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is eating food?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking to people?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person speak to outside?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is someone eating?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a man eat?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who do people visit?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"restraunt\"\n  },\n  {\n    \"question\": \"who does a man eat?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"kimchi\"\n  },\n  {\n    \"question\": \"who eats food?\",\n    \"video_name\": \"video8302\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a big event to an audience in an anime show?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is talking in a show in an animated video?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man presenting onstage?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a cartoon announcing?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is announcing something?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is presenting an act onstage?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many cartoons talk together?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when is a anime man?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when does a man with pink hair announce s big event?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"today\"\n  },\n  {\n    \"question\": \"who is on stage?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"who is making a dramatic pose?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a man talking in in an animated video?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"when is a man wearing a uniform talking?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a an announcer in a cartoon conducting?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"ceremony\"\n  },\n  {\n    \"question\": \"what does a man with pink hair announce today s?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"who is crying?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"what is cartoon character doing?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a an announcer in a cartoon doing?\",\n    \"video_name\": \"video8303\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"who dressed as a woman?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who attracts male characters?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is conversating with the guys?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do a group of men try to get?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"attention\"\n  },\n  {\n    \"question\": \"how many people talk in a tv show?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who do a group of men surround?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is disguised in the attire of a woman?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dressed as a woman talking to a group of men?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flirting with a man?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a gay talking towards?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dressed as a woman?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did man dress as?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who enters a party?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is talking towards a man?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"gay\"\n  },\n  {\n    \"question\": \"who is a woman flirting with?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man dressed as?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the movie clip?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what does a woman enter?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what is a pink dress?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who dressed as a woman in a spanish language tv program?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a female character attract?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is a gay doing?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man dressed as a woman doing?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman and men doing?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman in a pink dress doing?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"flirt\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video8304\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is surrounded by beautiful women?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are dancing in a music?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are singing in a music?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are video people dancing in?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are video people singing in?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is singing here?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who as well sings?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing while lying down?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing with plenty of woman around him?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wearing sunglasses?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lays in the pile of woman?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are this is a scene from a music video people doing?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are men and women doing?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is in a music video a man doing?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what are in a music video people doing?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is laying with women while singing in a music video?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8305\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are people walking around mount?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"vistor\"\n  },\n  {\n    \"question\": \"what is a car driving around on?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is driving around on a track?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are tourists taking pictures of?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what are the travelers taking photographs of?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what do tourists walking around the mount?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"visitor\"\n  },\n  {\n    \"question\": \"what do people moving around the outside of mount?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are tourists doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a old man doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is tourists doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what did tourists taking pictures at the mt fuji?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"visitor\"\n  },\n  {\n    \"question\": \"what are a people doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what are the travelers doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are there is a beauteous city some people doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who center parking lot with visitors taking photos and pictures?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"mount\"\n  },\n  {\n    \"question\": \"what is mount fuji visitors center doing?\",\n    \"video_name\": \"video8306\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is water shown like with music?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is flowing in the river?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are flowing there?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is water shown like a river with?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a water flowing in?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what is calm pond with lush green hills doing?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what is a water doing?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is a nature video of a lake or a pond you can hear the nature and birds doing?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"chirp\"\n  },\n  {\n    \"question\": \"what is a body of water has wind doing?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a water scene trees mountain nice scene doing?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what trees mountain nice scene displaying on screen?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is an island with green grass sitting on?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"planet\"\n  },\n  {\n    \"question\": \"what is shown like a river with music?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is an island with green grass doing?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are near the mountain waters doing?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is a peaceful scene with a lake and doing?\",\n    \"video_name\": \"video8307\",\n    \"answer\": \"surround\"\n  },\n  {\n    \"question\": \"who does a commentator speak over a baseball game is interviewed?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks over a baseball game a man is interviewed?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"who is being interviewed as players play on the field behind him?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who commentating about major league baseball players?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what tells how a baseball player got the call to be part of the team?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is interviewed with a baseball field behind him?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"where do players play behind a baseball player?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who are people discussing?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a player doing?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what are baseball players doing?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"who does a commentator discuss?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is a person being interviewed about?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who describes being drafted by the padres?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is person commentating on?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who are walking back to the dugout?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who walks off the mound?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who is commentating on baseball?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is being interviewed about baseball?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who discusses a baseball player?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"what are baseball players walking back to?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"dugout\"\n  },\n  {\n    \"question\": \"who is playing baseball?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a baseball player walk off?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"mound\"\n  },\n  {\n    \"question\": \"what do players play on behind a baseball player?\",\n    \"video_name\": \"video8308\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a red pading floor with young wrestlers doing?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two players doing?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what match competition?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what do professional wrestling match?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"how many people are wrestling?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what match at a competition?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"when are two players fighting to win?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who ties up anothers legs?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what do a wrestling match at?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what are players playing in?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"how many men wrestle on a red and white mat?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many players are fighting on stage to win?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are wrestling on a gym mat?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys compete in a wrestling match?\",\n    \"video_name\": \"video8309\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game of two wrestlers doing?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two professional wrestlers in a video game doing?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two video game characters doing?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"how many wrestlers slam each other in the ring on a video game?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers are fighting on a mat?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who fight for championship?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do video game wrestlers fight for?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"championship\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing a wrestling video game?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is an animated video game?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what are two wrestlers fighting on?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what do a boxing match?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what match scene?\",\n    \"video_name\": \"video8310\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"what is a lady reviewing on the global news channel?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did sun tv news feed vedio put?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"vedio\"\n  },\n  {\n    \"question\": \"what is a woman with a bun doing?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is the program in the computer monitor watched by?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what was a vine?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what was the original video?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what is a woman on the news doing?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bbc new editor doing?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a news anchor is manually doing?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a live shot of some war footage doing?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman news reporter doing?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a bbc news analyst doing?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is this is a 6 second video doing?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does nice picture shown on big screen lady have?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is reviewing a viral video on the global news channel?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"when a live shot of some war footage showing exploding in a dark place?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what cameraman getting footage off of a screen with a lady talking about a certain subject?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what did nice picture shown on big screen lady dot?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what do a news cameraman getting footage off of with a lady talking about a certain subject?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is manually playing survalence footage for the camera?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who talks about a news video that has gone viral?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who talks about a video that shows lots of smoke?\",\n    \"video_name\": \"video8311\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is forested landscape doing?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"surround\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"hike\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what surround a large still lake?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what are some people hiking around in?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"nature\"\n  },\n  {\n    \"question\": \"what are seen in the background of a blue river?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"what is surrounded by many tall green covered mountains?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what are from a boat on the center of a lake?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what slowly travels down a river through a jungle?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what are shown while a man speaks?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"what does a boat slowly travel down a river through?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"jungle\"\n  },\n  {\n    \"question\": \"what does video scenery of a river along with hills surrounded by green grass a narrator give?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"statement\"\n  },\n  {\n    \"question\": \"what does a boat slowly travel down through a jungle?\",\n    \"video_name\": \"video8312\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is reporter doing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a video game journalist doing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who walks around?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an announcer doing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is describing attributes of a video game?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who speaks over clips of a game?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing a new video game?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a video game journalist showing off?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who live streams a video game?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8313\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a music video with two girls doing?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is country song and doing?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what was the female doing?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman dressed as an angel singing in?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who dances around for a music video?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing outside on a street?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what song and dancing people in the streets?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who is singing in a crowded city square?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings a song while in the middle of a city square?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what was wearing an angel costume?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what was the female wearing?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"costume\"\n  },\n  {\n    \"question\": \"who is singing outside?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many women are singing while dancing?\",\n    \"video_name\": \"video8314\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a movie scene with three persons doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is will smith doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there are three mens doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are at the restaurent three men doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three men are in the bar hotel and doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are scene from a movie where three guy s doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what were three men doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is three people doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many men were discussing the national football league?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men speak in a dark restaurant about the nfl?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are talking some imporatnt matter at the restaurent?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many people are talking while sitting around a table?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are in the bar hotel and telling some isuue?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what do three man talk about in hollywood movie?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are three men talking at the restaurent?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"matter\"\n  },\n  {\n    \"question\": \"what are men arguing with the city in?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"backdrop\"\n  },\n  {\n    \"question\": \"who talk about something in hollywood movie?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do three men speak in a dark restaurant about?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"nfl\"\n  },\n  {\n    \"question\": \"how many men angrily discuss a problem to solve?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are three men talking some imporatnt matter at?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"restaurent\"\n  },\n  {\n    \"question\": \"what do three man talk about something in?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"hollywood\"\n  },\n  {\n    \"question\": \"what do a group of men speak to each other over?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"how many men are speaking seriously together in hushed tones in a dark room?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who have a talk at a table in a public place?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men interact?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are men sitting at?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are some people sitting at?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are men arguing with in the backdrop?\",\n    \"video_name\": \"video8315\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who is talking to an athlete?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who enter a small football field?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does a cowboy take a football player on the field to settle?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many men are walking into a sport arena?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who has on bull ridiing attire?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who bryant on an episode of sports science?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"dez\"\n  },\n  {\n    \"question\": \"who takes a football player on the field to settle something?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"cowboy\"\n  },\n  {\n    \"question\": \"how many men talk on a sports show?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who leads another outside to settle a dispute?\",\n    \"video_name\": \"video8316\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who gives a presentation?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman put red dye in?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does woman give?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"who is talking while knitting?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sewing?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is foreign video of a woman doing?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a foreign clip a woman doing?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many women speak in hindi next to a champ university coat of arms?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do two indian woman in traditional clothing speak to?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is an indian woman doing?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"sew\"\n  },\n  {\n    \"question\": \"what do two women speak in next to a champ university coat of arms?\",\n    \"video_name\": \"video8317\",\n    \"answer\": \"hindi\"\n  },\n  {\n    \"question\": \"who is talking to a man on the voice?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who hangs out with adults?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a group discuss s outfit?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what discusses a man s outfit?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is giving a girl a high five?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people having?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is judged on a tv show?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"who is talking to a group of people?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a group discuss a man s?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"outfit\"\n  },\n  {\n    \"question\": \"who are speaking with a young girl on the show the voice kids?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking about something to a girl?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a crowd of people doing?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a group of actors doing?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are tv show hosts doing?\",\n    \"video_name\": \"video8318\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what does a man wear?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"outfit\"\n  },\n  {\n    \"question\": \"what is there is a man in black doing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a character dressed in a superhero costume doing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a clip from captain america with chris evans doing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is super hero captain america doing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is captain america doing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is man in black uniform doing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a movie scene of robot vehical jumping on snow land and still image of person doing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a movie scene soldier dress man doing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man with hair doing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who do a movie scene soldier dress?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man walking across?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what do super hero captain america wearing?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"mask\"\n  },\n  {\n    \"question\": \"what is picked up?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"helmet\"\n  },\n  {\n    \"question\": \"what do a movie scene of robot vehical jumping on snow land and still image of person standing displaying on?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who wears an outfit?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his team and what he hopes to accomplish?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"superhero\"\n  },\n  {\n    \"question\": \"who captain america wearing mask?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"super\"\n  },\n  {\n    \"question\": \"what do super hero captain america walking over with shield in his hand?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"who is walking across a bridge?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs around explosions?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who captain america walking over a bridge with shield in his hand?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"super\"\n  },\n  {\n    \"question\": \"what runs through the snow with a group of people?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"what stands alone before a man in black joins the rest of the avengers in battle?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"what walks on top of a craine in the middle of the mountains?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"what is a character dressed in a superhero costume carrying?\",\n    \"video_name\": \"video8319\",\n    \"answer\": \"shield\"\n  },\n  {\n    \"question\": \"what does a very young girl describe?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a girl brushing?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"what is small girl in?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is having a pen?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl sitting in front of a mirror applying eye shadow on?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"eyelid\"\n  },\n  {\n    \"question\": \"what does a young girl put on with different brushes?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a young gitl in a striped tank top applying eye makeup to?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who gives a makeup tutorial in front of a black and white background?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is demonstrating how to apply eye makeup with the eye shadow?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who puts on eye makeup with different brushes?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl having?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a girl in blue dress color cloth in her hand brush for make up beauty facial look doing?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is small girl is in her room and doing?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a young pre teen girl doing?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video8320\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does shane talk?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"who talks about his day?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"shane\"\n  },\n  {\n    \"question\": \"who is talking about his audition?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person pretending he giving?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who speaks about how well he did in his acting endeavor pretending to receive an award for his work?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do clip show giving a monologue wherein he compliments his own work and imagines accepting his oscar?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what do clip show actor giving he compliments his own work and imagines accepting his oscar?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"monologue\"\n  },\n  {\n    \"question\": \"what do clip show actor giving a monologue wherein he compliments his own work and imagines accepting?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"oscar\"\n  },\n  {\n    \"question\": \"who is talking about acting?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show actor giving a monologue wherein he compliments his own work and imagines accepting his oscar?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who rambling in a podcast?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man ramble in?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"podcast\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man speaks about how well he did in his doing?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is gay man doing?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"what is young man doing?\",\n    \"video_name\": \"video8321\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a lady try to ride on?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what does a girl try to learn to ride poorly in a bikini?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who fails?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who tries to ride on bicycle?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a girl try to learn to ride a bike poorly in?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"bikini\"\n  },\n  {\n    \"question\": \"what does a woman in a thong attempt to ride a bike trhough?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"obsitcle\"\n  },\n  {\n    \"question\": \"what does a girl in lingerie try to ride?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what does a woman in a thong attempt to ride trhough an obsitcle course?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is tiny short tries to ride a bike but fails?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is getting trained to ride a bicycle with failure attempts?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a scantily clad woman attempt to ride with the help of a man?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who tries to learn to ride a bike poorly in a bikini?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a womn doing?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"ride\"\n  },\n  {\n    \"question\": \"what is a woman with blonde hair doing?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who is a woman wearing a gray helmet elbow pads bra and thong leans to one side on a bicycle helped by?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a beautiful woman doing?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a girl in a white half top and black barely there shorts doing?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a female driver doing?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is boy doing?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8322\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is acting like a human?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a big cat relaxing in?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"bin\"\n  },\n  {\n    \"question\": \"what is sitting on a couch?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat sitting on?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what does a fat gray and white cat sets in various pose while it s?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"master\"\n  },\n  {\n    \"question\": \"what is a big cat siting on?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what does a fat kity cat lay on lazily?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is a cat sitting like a human in?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what are funny cats being recorded and available in to view the sofa one?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"subscription\"\n  },\n  {\n    \"question\": \"what is downloading the video is cat sitting like an men?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is lounging in a corner of an easy chair leaning on an armrest?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is layingon a couch and another islaying in a basket?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is relaxing in a bin?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is one video downloading is cat sitting like an men?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is one video downloading the video is sitting like an men?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is sitting in the basket like a human?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat layingon a couch and another islaying in?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what is sitting like a human in the basket?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is siting on a couch?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat sitting in like a human?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who is showing the subscribe button on their video?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is lounging in a corner of a lined box on a gym floor by weights?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"lounge\"\n  },\n  {\n    \"question\": \"what is subscribe for more cats doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a big cat doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a cat and black and white inside doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is it is funny to see cats doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is one video doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"download\"\n  },\n  {\n    \"question\": \"what is there is a cat doing?\",\n    \"video_name\": \"video8323\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a country music video doing?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what live performance of a country rock song?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"vintage\"\n  },\n  {\n    \"question\": \"who is music performed by?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is playing on stage?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when does a rock band perform?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what plays on stage?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is performed by country musicians?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what plays musical instruments?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what performs on stage?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what live performance video clip?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what preforms a song on stage?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"how many men sing a country song?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a musical group doing?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is performing a concert?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when does the band play?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band singing?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do three men sing?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what do country music live?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what is singing a song?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is a band playing?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is two men and a woman doing?\",\n    \"video_name\": \"video8324\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"who does a photographer photograph?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are some people preparing?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person shaking?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is chef cooking here?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is being photographed?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is shaking something?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who photographs a cook?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"photographer\"\n  },\n  {\n    \"question\": \"what is a man making in his food stall?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is making food in his food stall?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cooks some food in a kitchen?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filming a man cooking in a kitchen?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"cameraman\"\n  },\n  {\n    \"question\": \"who is showing some recipe?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cooking food here?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are some cooks doing?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cameraman doing?\",\n    \"video_name\": \"video8325\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"who is a man giving money to?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a man giving to a girl?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"money\"\n  },\n  {\n    \"question\": \"what do a man make to a little girl?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"donation\"\n  },\n  {\n    \"question\": \"who is giving money to a girl?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man is putting money in a child s?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who make donation to a little girl?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a poor boy something to eat?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting in a child s cup?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who gives girl money?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at bannanas?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"grandmother\"\n  },\n  {\n    \"question\": \"what do different people experience acts of?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"kindnes\"\n  },\n  {\n    \"question\": \"who is standing in a bus?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting something in a child s cup?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do different people experience?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"kindnes\"\n  },\n  {\n    \"question\": \"what does a man give?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"money\"\n  },\n  {\n    \"question\": \"what is a guy giving?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who gave the child some money?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a child money?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a young asian person is on a bus while a grandmother doing?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is this is a video of doing?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8326\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some fake horses standing around in?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a horse standing in a horse is jumping over a fence a horse is standing in the snow?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"barn\"\n  },\n  {\n    \"question\": \"what is a computer image of a horse standing in?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"barn\"\n  },\n  {\n    \"question\": \"what is outdoors?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what stand in snow?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what jump fences?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a horse standing in a barn a horse is jumping over a horse is standing in the snow?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what do cartoon horses stand in?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is a horse standing in a barn a horse is jumping over a fence is standing in the snow?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is standing in a barn a horse is jumping over a fence a horse is standing in the snow?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse standing in a barn a horse is jumping over a fence a horse is standing in?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what are some fake horses doing?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is various horses are shown outside doing?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is a computer animation of a young horse doing?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a horse standing in a barn is jumping over a fence a horse is standing in the snow?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a horse doing?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a computer image of a horse doing?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what generated horses in a stable the one outside labled father then another labled mother?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what colored horses in a barn and outside in the snow?\",\n    \"video_name\": \"video8327\",\n    \"answer\": \"multus\"\n  },\n  {\n    \"question\": \"who is talking about computer internal process?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining about something through?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"what is a person explaining about through system?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a men doing some work on?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what is a men doing on monitor?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person teaching about kernel and utilities through?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is an coloured paper rotating and machine doing?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man in checks shirt working on?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a men doing?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man in checks shirt doing?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man in checks shirt and wearing spectacles doing?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what that shows the cubes in different colors and displays district of columbia?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is teaching about kernel and utilities through computer?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does an animation that show the cubes in different colors and displays district of?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"columbium\"\n  },\n  {\n    \"question\": \"who shows traits of some computer functions?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in checks shirt and wearing spectacles watching?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"who is explaining about something through system?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes the various parts of an operating system for computers?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses?\",\n    \"video_name\": \"video8328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a gossip hostess doing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"racing\"\n  },\n  {\n    \"question\": \"what does steven spielberg have?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who has a horse?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"spielberg\"\n  },\n  {\n    \"question\": \"who shows several images and videos?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"who is talking about celebrities?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown then a horse race is shown?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is steven spielberg a fan of?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"racing\"\n  },\n  {\n    \"question\": \"what does a woman talks about steven spielberg s?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is a fan of horse racing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"spielberg\"\n  },\n  {\n    \"question\": \"how many people are on the red carpet posing for pictures?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about horse racing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a movie director and horse racing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"gossip\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a video of a woman doing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is couples doing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is its about a blog in doing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is this is a clip doing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two people are on the red carpet doing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8329\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two women taking?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who is a woman confronting?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people posing on?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"who is confronting a man?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what poses for a picture?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and a woman talking together about?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"how many friends are talking?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a couple pose for?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"how many women are taking a picture?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is two friends doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the girls doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"confront\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two friends doing?\",\n    \"video_name\": \"video8330\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who writes on the chalk board?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what did a man writing on a chalkboard in then talking?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what did a man writing on a chalkboard in classroom then sitting in?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what did a man writing on a chalkboard in then sitting in a chair?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who writes on a chalkboard?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who talks about teaching?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who lectures a classroom?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a teacher write things on?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"chalkboard\"\n  },\n  {\n    \"question\": \"who is talking to students?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who is teaching a class?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a teacher write on?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"chalkboard\"\n  },\n  {\n    \"question\": \"what does guy write on?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"chalkboard\"\n  },\n  {\n    \"question\": \"what does a man lecture?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what is a man teaching?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"who writes things on a chalkboard?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who is writing information on a chalkboard?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a professor doing?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a teacher in a classroom doing?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a teacher doing?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a teacher talks about doing?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is taneli nordberg english teacher doing?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a video of a teacher doing?\",\n    \"video_name\": \"video8331\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"who is playing with toys?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what shows a minature toy microwave?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing with a toy?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do kitty oven?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what oven toy?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"kitty\"\n  },\n  {\n    \"question\": \"who is opening a small microwave toy?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person playing with?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a person showing?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"miniature\"\n  },\n  {\n    \"question\": \"who plays with a small toy?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing a miniature oven?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is opening a toy hellow kitty oven?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person place a toaster oven on?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what oven?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"microwave\"\n  },\n  {\n    \"question\": \"who is putting items into a miniature toy oven?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who places a toaster oven on a table?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing with a toy microwave oven?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person place on a table?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"toaster\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is assembling a small kitty oven toy?\",\n    \"video_name\": \"video8332\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what said it was a invalid source?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking in the tv channel?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what falied to open?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a woman on the news doing with the director of a film?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman with a pink shirt doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is sexy brunette in pink top and black skirt doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is the tv journalist start doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is woman in red shirt doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"what is a woman news reporter doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a female news reporter doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the woman in the pink blouse doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is on a tv news program the female host in a black skirt and pink top describes the topics the program will be doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"addres\"\n  },\n  {\n    \"question\": \"what is woman in red shirt leading?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"emission\"\n  },\n  {\n    \"question\": \"what is a woman in a pink blouse and black skirt doing?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who start interviewing the main star and director?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"journalist\"\n  },\n  {\n    \"question\": \"what does a reporter announce a new movie about young love during?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what does the female host in a black skirt and pink top describe the topics will be addressing on a tv news program?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what discuss movie about the war of bangladeshs independence?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"outlet\"\n  },\n  {\n    \"question\": \"when does a woman in a pink shirt deliver the news?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"who announces a new movie about young love during a war?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what brunette in pink top and black skirt talking to the camera in the studio?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"when does the woman wearing a pink shirt talk?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a reporter announce a new movie about during a war?\",\n    \"video_name\": \"video8333\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what runs outside?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"coyote\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is running?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated dog doing?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a wolf doing?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"howl\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a cartoon clip doing?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a cartoon of a dog at night doing?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is shown running?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what does a wolf look to?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what is running in a field?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is an animated dog looking at?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what is looking at the moon?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what looks up at the stars in a field?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"coyote\"\n  },\n  {\n    \"question\": \"where is an animated dog running?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is shown looking up at the starry night sky?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what looks at the sky full of starts?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"wolf\"\n  },\n  {\n    \"question\": \"what sings a song against a backdrop of stars?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"where does a coyote look up at the stars?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are running towards one another and one howls at the moon while music plays?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated dog running in?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a song play in?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is howling at the moon?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"wolf\"\n  },\n  {\n    \"question\": \"what is a wolf howling at?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what howls at the moon?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a coyote look up at the stars in?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what looks to the moon?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"wolf\"\n  },\n  {\n    \"question\": \"what does an animated dog howl at?\",\n    \"video_name\": \"video8334\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what is a beautiful waterfall doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is a long waterfall doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"rush\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a large doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"surge\"\n  },\n  {\n    \"question\": \"what is an awesome view of multiple waterfalls doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a waterfall doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a very beautiful falls and lot of people doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a waterfall over some very green and rocky terrain with people doing?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"mill\"\n  },\n  {\n    \"question\": \"what is person recording the big waterfalls in?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what are watching a very beautiful?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"lot\"\n  },\n  {\n    \"question\": \"what does the camera pan around?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what pans around the area?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what falls down the brick wall really fast?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do people walk around within view of a watermill?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"when are all the tourist or a big water visited here to watch from the high mountains?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what cascades off of a hilltop down toward observers below?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a large surging waterfall flow over tall rocks into down below?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is flowing into the pool of water below it as the camera pans around the area?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"when are all persons standing near a big water?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who is recording the big waterfalls in the mountain?\",\n    \"video_name\": \"video8335\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a chapel with a group of people doing?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"chant\"\n  },\n  {\n    \"question\": \"what is a televisoin doing?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are all doing?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"pray\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"choir\"\n  },\n  {\n    \"question\": \"what is a choir in a church doing?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"practise\"\n  },\n  {\n    \"question\": \"what does a choir perfoms during?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"service\"\n  },\n  {\n    \"question\": \"who is showing a keyboard?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"televisoin\"\n  },\n  {\n    \"question\": \"what perfoms during a service?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"choir\"\n  },\n  {\n    \"question\": \"what is singing in a church?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"choir\"\n  },\n  {\n    \"question\": \"what are all praying in?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"what is singing in a cathedral?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"choir\"\n  },\n  {\n    \"question\": \"what sings?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"choir\"\n  },\n  {\n    \"question\": \"what is shown while the choir sings?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"what is a televisoin showing?\",\n    \"video_name\": \"video8336\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what are some persons doing?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man dressed like a woman with really large breasts doing?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a person with obvious fake breasts doing?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is a video of a tv doing?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of people interacting at?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what did the lady do?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"skit\"\n  },\n  {\n    \"question\": \"when are some people dancing?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do television show on at night?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"nick\"\n  },\n  {\n    \"question\": \"who did a funny skit?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what show on nick at night?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is a man dressed up as?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when do television show on nick?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what is a man dressed as a woman making?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"joke\"\n  },\n  {\n    \"question\": \"who is dressed like a woman at a business in front of coworkers?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is acting as a woman in front of others?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dressed up as a woman?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man dressed like a woman with really large breasts dancing?\",\n    \"video_name\": \"video8337\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who talks about the best technology stock to by right now?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person in a chair doing?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with dark hair and a shirt doing?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in white shirt giving on stock market?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"analysi\"\n  },\n  {\n    \"question\": \"what is a person in a blue dress shirt doing?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an african-american man is in the corner of the screen doing?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a tiny screen in the lower left corner has a black man doing?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there is a shirt man doing?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a dress shirt and black hair doing?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who describes a slide that gives information about which best technology stock to buy now?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a video presentation called applied materials?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking while the slide of the best technology stock to buy is shown?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the best technology stocks to buy?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt showing?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what is a person in a chair talking about?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what does a black man in an office give?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"ticker\"\n  },\n  {\n    \"question\": \"what is a man in white shirt giving his analysis on?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"what is being played about the best technology stock to buy now?\",\n    \"video_name\": \"video8338\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"tos\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are several women doing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what do dancers throw?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what does a group of people surf on?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what do the children throw the balls into?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what are several women throwing balls into?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what are a group of people throwing up then it cuts to them carrying surfboards over their heads?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do dancers grab?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"who is throwing a beach ball?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are kids playing with?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do kids play with?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are children dancing for?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a girl throwing?\",\n    \"video_name\": \"video8339\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a woman lying in?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what do a boy and a girl get ready in?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what is a woman putting on?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who do comedic romantic love?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a woman and a man doing?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a man and a woman stand in?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"who is talking to a man while getting ready to go out?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting on makeup while talking to a man?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do movie credits show the name of?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"director\"\n  },\n  {\n    \"question\": \"what is a woman putting on while talking to a man?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is putting on makeup?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what talks as a boy and a girl get ready in their bedroom?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what have a discussion while a boy and a girl get ready to go out?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are a woman and a man talking in from a movie?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what do a couple have while a boy and a girl get ready to go out?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"who is talking to a woman?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lying in bed?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what show the name of the director?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are a woman and a man talking in a clip from?\",\n    \"video_name\": \"video8340\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is shown of the animated series pokemon with spanish dub?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"how many young people talk to a pet resulting in the pet being very happy?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to an egg in a pokemon cartoon?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is sitting on another pokemon?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"who are talking to a pokemon?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what sits on the other?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is a pokemon sitting on?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a girl talking to in a pokemon cartoon?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who are cartoon characters talking to?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what does misty put on a poliwhirl?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a japanese animation of kids doing?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a pokemon doing?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some people doing?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two young people talk to a pet doing?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"result\"\n  },\n  {\n    \"question\": \"who were very colorful?\",\n    \"video_name\": \"video8341\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a runway model in a long pink dress walk at a fashion show?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do women in long pink dresses walk down at a fashion show?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"what does a young woman in a pink gown walk at a fashion show?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are a pretty woman s with pink dress doing in a show?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what dress fashion model walking on the show ramp?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who do a pink color dress walking on the show ramp?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who do fashion show its mifa catwalk in stage?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what show its mifa fashion girls catwalk in stage?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what walks to the back of the walk way in a dress?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are a pretty woman s with pink dress doing cat walk in?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"when do a fashion show with a lady in pink walking out?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what show with a lady in pink walking out on the stage?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what do fashion show its mifa fashion girls catwalk in?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a fashion show in progress doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women in pink dress doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a slim tall and beautiful lady with flowers on her dress and head and adorned in a pink dress doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women in pink dresses doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a fashion show with a lady in pink doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a pink colour dress fashion model doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is girl in pink dress fashion model doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do fashion show fashion girls catwalk in stage?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"mifa\"\n  },\n  {\n    \"question\": \"what are models walking down in a fashion show?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is bunch of models doing?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do models dressed in spring colors tread at an it smifia fashion show?\",\n    \"video_name\": \"video8342\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who is inspecting a cup?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who s hands are shown picking up and turning over a cup with a cartoon display printed on it?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who is holding a coffee mug?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man holding up?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"coffee\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what is music playing in?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a person inspecting?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is a man looking at?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is playing in the background?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a person take?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"coffee\"\n  },\n  {\n    \"question\": \"what does a person check out?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"who is showing stuff?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man examine?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"who is holding up a cup?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at a cup?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is hands doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"who checks a cup out?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a person showing a coffee mug with on it while music is playing in the background?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is looking at a children a cup mug while taking out the candy?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows off a new decorated coffee mug?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person looking at a children mug while taking out the candy?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"who looks at car themed cup?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crumples garbage?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who examines a cup?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man crumple?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"garbage\"\n  },\n  {\n    \"question\": \"who takes a coffee cup?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person s hands are shown doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"inspect\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"examine\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"grab\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8343\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man drives an old car on the open road and discusses how he doing?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the mn doing?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man drives around in his convertible doing?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who drives his car down the road?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses how he is wearing a lap belt?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives around in his convertible wearing a lapbelt?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing a lap belt for a 64 car?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car through the countryside?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives an old car on the open road?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving the information and awareness of car black seat belt in 1964?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is running fast?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is man driving a car on?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"lap\"\n  },\n  {\n    \"question\": \"what is a man driving a car through?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"countryside\"\n  },\n  {\n    \"question\": \"what is a man driving through the countryside?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive on the open road?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man describing for a 64 car?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"belt\"\n  },\n  {\n    \"question\": \"what does a man drive his car down?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who talks about lap belts?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car on road?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive down the road?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is man driving on road?\",\n    \"video_name\": \"video8344\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are twp women doing?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are two womens doing?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is mother and grandmother in aprons doing?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what is an older lady doing?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what are a woman and her mother doing?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a grand mother doing?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"sample\"\n  },\n  {\n    \"question\": \"what showcasing two woman eating a piece of desert on tv?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who feeds another woman some food in the kitchen?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are women sampling while cooking in a kitchen?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is feeding a younger woman?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"how many womens are talking?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is an older lady feeding?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who feeds a younger woman?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is eating food?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman being fed by?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"daughter\"\n  },\n  {\n    \"question\": \"who does a woman feed?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman eating?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who feeds another?\",\n    \"video_name\": \"video8345\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who highlights the plight of prisoners and how the kings ruled in olden times in mexico?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"presenter\"\n  },\n  {\n    \"question\": \"when does a man speak?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"who speaks about history?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a series of old painting depiction gentleman?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"ceremony\"\n  },\n  {\n    \"question\": \"who hastily describes a brief history of generals winning independence?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a history lecture on two generals pushing for independence with one becoming king of?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"mexico\"\n  },\n  {\n    \"question\": \"who dicusses a history lesson on spanish generals?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a war between two generals one of which became king?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what lecture on two generals pushing for independence with one becoming king of mexico?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"what do a history lecture on two generals pushing for with one becoming king of mexico?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"independence\"\n  },\n  {\n    \"question\": \"who do a history lecture on two generals pushing for independence with one becoming?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"mexico\"\n  },\n  {\n    \"question\": \"what is a history lecture on two generals doing?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a man talks about a war between two generals one of which became doing?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"king\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man hastily describes a brief history of generals doing?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what is drawings of soldiers doing?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the news reader doing?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a person doing?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8346\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a group of women stand in?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who look while a man talks?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man talk in?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what do several women stand in?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"row\"\n  },\n  {\n    \"question\": \"when are women standing?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who talks in the background?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks in spanish about some women?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"who stand next to each other?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is women are lined up doing?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are the ladies doing?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is group of girls doing?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman stares at a man that doing?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video of someone doing?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of women doing?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a group of woman doing?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of ladies doing?\",\n    \"video_name\": \"video8347\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman and three young children doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a group of children doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is african mother with an infant strapped on her back is shown doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"tuck\"\n  },\n  {\n    \"question\": \"what is a mother looks after her children and make them sleep by doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman with a baby on her back doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"tuck\"\n  },\n  {\n    \"question\": \"what is a black mom doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is a woman is doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is shown a black family where mother doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is six children are in a bed and a woman doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a old woman in red color dress doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is an african women tugged in the blancket to the kids doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a woman is preparing a children to?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a woman holding a baby arranging to cover there?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"what are six children in?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who care there?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"what is there are many children doing?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"who is is preparing a children to the bed?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who let the children lie on the floor to sleep and covers them with blanket?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"how many children are in a bed?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"six\"\n  },\n  {\n    \"question\": \"who looks after abandoned children after parents desert them?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who make there sleep by putting blanket over them?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"what did an african women tug in to the kids sleeping on the floor?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"blancket\"\n  },\n  {\n    \"question\": \"who cares for children abandoned by their mothers?\",\n    \"video_name\": \"video8348\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two men and two women doing?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is for people doing?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is four people doing?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is friends enjoy doing?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"how many couples go on a double date?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are sat having dinner around a table drinking champagne?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what are four people sat having dinner around drinking champagne?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are four people sat having around a table drinking champagne?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"what are a group of people eating near?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what gathers around a table?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what are two men and two women drinking at together?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are people sitting on?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what dining and drinking?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what does an asian family gather around?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are people having outside?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"what are four people sat having dinner around a table drinking?\",\n    \"video_name\": \"video8349\",\n    \"answer\": \"champagne\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is talking about a dog who lost his legs?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what only has two legs?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is born deformed?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"what is woman discussing?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is doing things?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"how many legs does dog only have?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is discussing a dog?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a 2 legged running?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"what did a 2 legged playing?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"what does a dog with only two legs run on?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what does a video slideshow show images of?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what did a person talking about a two legged?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what shows images of a dog?\",\n    \"video_name\": \"video8350\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what are the boat travellers enjoy in the ocean?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"ride\"\n  },\n  {\n    \"question\": \"what are the mountains doing?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"surround\"\n  },\n  {\n    \"question\": \"what is a wide expanse of doing?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is the video is narrated by a man who seems to be doing?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some boats doing?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what are there are some ships doing?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"what is a commentator doing?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a nature area doing?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone recording near the mountains?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is showing some mountains far away?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what are the boat travellers enjoy their ride in?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who are enjoy their ride in the ocean?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is recording the blue water near the mountains?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does mountain rivers captured in the video and a person explain by?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what pointed mountains next to a body of water that has many boats in it?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"what does a river cut through beside enormous mountains?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"who is talking about ways to travel in the river?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"who is recording the amazing mountains near the water?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what cuts through the land beside enormous mountains?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what are the boats sailing in in the middle of the mountain?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is narrated by a man who seems to be trying to convince the audience to visit the beautiful and scenic place?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who explains a boat trip across a beautiful river with mountains in the background?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes a boat trip along a river that is surrounded by mountains?\",\n    \"video_name\": \"video8351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is in a kitchen a man doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man stirs gravy in a frying pan as part of doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is in a kitchen somebody doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a man and a bowl spoon doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is some soup doing?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is somebody stirring a brown sauce in a saucepan on a stove in?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is cooking a dish on the stove before he goes to get his beef tenderloins in a kitchen?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man mixing something in the pan to prepare a dish in?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what do a man mixing something in the pan to prepare in home?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is somebody stirring in a saucepan on a stove in a kitchen?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a man cooking a dish on the stove before he goes to get his beef tenderloins in?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man cooking on the stove before he goes to get his beef tenderloins in a kitchen?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a man cooking a dish on before he goes to get his beef tenderloins in a kitchen?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is a person preparing by mixing ingredients?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is saute the dish in the pan?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stirs a pot of gravy and mushrooms?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"inhome\"\n  },\n  {\n    \"question\": \"what is a man stirring on his stove?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is boiling in a silver bowl?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what do a man and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a man and a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a man and a bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who stirs gravy in a frying pan as part of cooking a beef dish?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where do a man mixing something in the pan to prepare a dish?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who is stirring the dish that being cooked in a pan on the stove?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cooking something on a wide metal pot on a small stove?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone cooking on a wide metal pot on a small stove?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is stirring a brown sauce in a saucepan on a stove in a kitchen?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"who is mixing the meal in the black pan?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is frying a pan by tawa?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who instructs on how to make a meal?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stirring a pot on his stove?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man stirring a pot on?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is man mixing in the black pan?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"who is preparing a dish by mixing ingredients?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who prepares a sauce in a pan on a stove top in preparation for the adding beef?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does a man making a perfect dish go to get?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"beef\"\n  },\n  {\n    \"question\": \"who is cooking in?\",\n    \"video_name\": \"video8352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person in black color dress doing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is person is in the garage and doing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young man dressed in black discusses doing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"sell\"\n  },\n  {\n    \"question\": \"what is a salesmen doing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person in?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what do a person in black color dress wearing cloth closing door of a car standing speaking in front of car discusing on displaying on screen?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"who is recording a beautiful car which is parked?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a black shirt show off the interior of?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does a guy with a beard describe the features of?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who shuts a land rover trunk?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person wearing black dress closing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who walks around a land rover trunk?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a black van inside of a thing doing?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"part\"\n  },\n  {\n    \"question\": \"who is in the garage?\",\n    \"video_name\": \"video8353\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is describing making a turn?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is running faster on the road?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car running faster on?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"what is a yellow car doing?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is person in blue shirt doing?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man in blue shirt is test doing?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man in blue shirt doing?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a yellow car doing?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man in a blue and white stripe shirt doing?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"complain\"\n  },\n  {\n    \"question\": \"who drives a yellow sports car down an empty street?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is a yellow car driving in a scenic locale with lots of trees?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who drives a fancy yellow sports car on the road?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is travel in a car in main road?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding in a yellow sports car that driving on?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who drives a car that is hard to turn?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"complaining\"\n  },\n  {\n    \"question\": \"what is driving in a scenic locale with lots of trees on the side?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man in a blue and white striped shirt drive a yellow sports car on?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a yellow car driving in a scenic locale with lots of trees on?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a man in a car in main road?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is man in blue shirt driving?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving around a city street?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a yellow card?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive a fancy yellow sports car on?\",\n    \"video_name\": \"video8354\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a woman speak to a camera in?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who did a redhead talks about?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"albino\"\n  },\n  {\n    \"question\": \"who talks about albinism?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a young woman talk about?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"albinism\"\n  },\n  {\n    \"question\": \"what is a girl talking about?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman speak to in a room?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what shows information about human eye?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"discvery\"\n  },\n  {\n    \"question\": \"who is reporting details on the effects of albinism?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does discvery chanel video show information about?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"who speaks to a camera in a room?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8355\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what shot in call of duty?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who plays a shooter game?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man with an accent delightfully having?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what is a young man with an accent delightfully describing?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a guy playing he is killing a lot of people?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who carries a gun?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"shooter\"\n  },\n  {\n    \"question\": \"who is killing his enemies?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person shouting with?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does an animated character carry?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is telling about a video game?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shouting with the gun?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does an animated gun go side by near a building?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what shooter video game running around the map shooting?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays a shooter video game while he talks?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is it is a video game doing?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cartoon game doing?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is a young man with an accent is delightfully doing?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in a video game a person chase some person and doing?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who shoots other animated characters in an abandoned building?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who chase some person and shooting other animated characters in an abandoned building in a video game?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game he is killing a lot of people?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who gets excited about a video game in his tutorial?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what firing gun shot moving fast running displaying on screen?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do first person shooter running around the map shooting?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what goes side by side near a building?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does an animated gun go side by side near?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what does an animated gun go by side near a building?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks online?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video8356\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a thrown into?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a video of a metal object doing?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are a woman throws a large hammer at a screen while many men doing?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is an old commercial doing?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is this commercial doing?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is an old apple advertisement doing?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"who throws a large hammer at a screen while many men are watching?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"who talks about the release of the apple macintosh?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman throw a large hammer at while many men are watching?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is throwing a hammer at a screen?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is thrown into a large screen which then explodes?\",\n    \"video_name\": \"video8357\",\n    \"answer\": \"sledge\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what are wrestling champions doing?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two boys doing?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is there are two mens doing?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is players doing?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"how many people are fighting?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two wrestlers begin as the announcer introduces them?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who are fighting on the ground?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"how many wrestlers does the announcer introduce?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers are fighting?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when are fighting with each other?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are wrestling each other?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers compete in a match?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys on mat wrestling?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two people wrestling in while an announcer is talking?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"how many wrestlers begin their match as the announcer introduces them?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are wrestling in a competition while an announcer is talking?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many man s are fighting with each other?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are wrestling champions fighting on?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what do wrestlers compete in?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what do an amatuer wrestling?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what do two wrestlers compete in?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who introduces two wrestlers?\",\n    \"video_name\": \"video8358\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who was so perfect and brave?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what was very nice?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is surfing?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man is seen doing?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what are a variety of people doing?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a man surfs on a red surfboard doing?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"paddle\"\n  },\n  {\n    \"question\": \"what is an excellent surfer demonstrates doing?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"who demonstrates surfing moves including surfing through the curl of the wave?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what did a man riding a wave while on a surfboard in?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who surfs on a red surfboard paddling through the water?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is carving the waves of the ocean the man continues to paddle out to sea then surfs some more?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is seen surfing on a wave music plays in the background while he surfs?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man surf on a red surfboard paddling through?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who surfs on a red surfboard performing tricks on the waves?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man on a surfboard doing?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man carving the waves of the man continues to paddle out to sea then surfs some more?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is a boy playing in a sea waves very nicely without?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"fear\"\n  },\n  {\n    \"question\": \"who is a man carving the waves of the ocean continues to paddle out to sea then surfs some more?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing in a sea waves very nicely without fear?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are a variety of people surfing large waves in?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who is surfing he moves around on the wave like an expert?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does an excellent surfer demonstrate surfing moves including surfing through the placeholder placeholder of?\",\n    \"video_name\": \"video8359\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman applies makeup to her eyes doing?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what does the woman put on?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what do some one have?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is demonstrating how to get thick lashes with a make up brush?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is putting makeup like a ghost by looking the mirror?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who puts make up like a ghost seeing the mirror?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl putting like a ghost by looking the mirror?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what does the woman look in?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is a girl putting makeup like by looking the mirror?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"ghost\"\n  },\n  {\n    \"question\": \"who looks in the mirror?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts on the makeup?\",\n    \"video_name\": \"video8360\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about woman rights?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman wearing black sit at?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what does a woman wearing black make?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what is a girl talking about?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does rights and feminism s is talking about women?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking in front of a computer?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gives a talk about women s rights?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"professor\"\n  },\n  {\n    \"question\": \"who speaks about feminism in relation to childbirth?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady sitting at talking?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"who interviewed?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what s a woman is talking about women?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"feminism\"\n  },\n  {\n    \"question\": \"what is a woman sitting in a library giving?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is sitting at a desk talking?\",\n    \"video_name\": \"video8361\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does the woman have on?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"what does a woman nod?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a soldier woman doing?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is an asian woman in the navy doing?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a philippine person talk about?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"navy\"\n  },\n  {\n    \"question\": \"who is talking about sports accomplishments?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many people talk in a tv show?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who speaks to a woman in a field?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a female military member talk in?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who talks about the navy?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who has on army gear?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is interviewing someone who has won a competition?\",\n    \"video_name\": \"video8362\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the motor to device doing?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is an engine doing?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"leak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a machine or engine doing?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"leak\"\n  },\n  {\n    \"question\": \"who is working?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what torn apart?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is leaking some fluid?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is showing the components of a vehicle?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the motor to device sitting in?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man showing the components of?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who inspects a disassembled machine?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a video showing a car spare?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"part\"\n  },\n  {\n    \"question\": \"what needed some major repairs?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is looking at a machine?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a machine or engine leaking?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is a circular metal part?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is fixing a car?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a man fixing?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone looking at?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what does a person inspect?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is showing an engine?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is an engine leaking?\",\n    \"video_name\": \"video8363\",\n    \"answer\": \"fluid\"\n  },\n  {\n    \"question\": \"what is a woman in a striped shirt doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with t-shirt doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a home cook demonstrates how delicious broccoli stems are by doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is beautiful lady doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is in a kitchen a woman in a striped black shirt explains how she doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is an inhome chef works on a recipe by doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"sweat\"\n  },\n  {\n    \"question\": \"what is a woman in a black-and-blue striped sweater stands in the kitchen corner by wood cabinets container of doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is mixed vegetables is stirred by a lady who doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"expres\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is there is a brown hair woman doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl with stripes t-shirt doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is there is a woman cooking and doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who works on a recipe by sweating down a pan of vegetables?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"inhome\"\n  },\n  {\n    \"question\": \"who demonstrates how delicious broccoli stems are by cooking cooking broccoili just until tender and not browning them?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who is a woman in a striped shirt in a kitchen taking about?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"broccoili\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is woman explaining?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"reciepus\"\n  },\n  {\n    \"question\": \"who is doing a cooking show?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about the dish?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing a dish in the kitchen?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does an inhome chef work on by sweating down a pan of vegetables?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what a woman in striped shirt cooks?\",\n    \"video_name\": \"video8364\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what lie nearby?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are many peoples in?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"what do many peoples buy?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are some people shopping in?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"what is a person with a bag doing?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"purchase\"\n  },\n  {\n    \"question\": \"what is a meat market a guy in shirt doing?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"purchase\"\n  },\n  {\n    \"question\": \"what is people at the market doing?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what is a food market clerk doing?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a seafood restaurant doing?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is butch of people doing?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"who is buying a product at the market?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man purchasing something from the shop keeper in?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is a guy in shirt purchasing the sea food from?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is a guy in shirt purchasing from a shop?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are some people shopping around for?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"who prepares to buy an item from a bakery?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man prepare to buy from a bakery?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"item\"\n  },\n  {\n    \"question\": \"who is doing shopping of snakes in a business area?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is buying food at a market stand?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man buying at a market stand?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man buying at the market?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what does a man prepare to buy an item from?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"bakery\"\n  },\n  {\n    \"question\": \"what is a man buying a product at?\",\n    \"video_name\": \"video8365\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"what is an animated video of a boy teased on a bus who commits suicide by doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an animated character doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon shows a character doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a character doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a creepy black and white animation doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a stick figure character doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a man is seen doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a figure is seen doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what did a creepy black and white animation showing a character walking through a hallway and another character hang from?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what is an animation of a kid doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking around?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does an animated man walk down?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who is seen hanging by the neck?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man seen hanging by?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"neck\"\n  },\n  {\n    \"question\": \"who falls on a ranch house?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"nightime\"\n  },\n  {\n    \"question\": \"who walks down the hallway?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man walking into opening?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is black and white animation of character doing?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"commit\"\n  },\n  {\n    \"question\": \"what is seen hanging from a piece of playground equipment at night?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what does a dark cartoon character walk down?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who does a young animated boy hang himself from?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"swingset\"\n  },\n  {\n    \"question\": \"what does an animation of a kid hanging play with?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what did a cartoon figure hang himself from?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"who is walking into a door opening?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hanging from the monkey bars?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what shows a character hanging from monkey bars?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does an animated video of a boy teased on a bus who commit by hanging?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"suicide\"\n  },\n  {\n    \"question\": \"when is a figure seen hanging from a piece of playground equipment?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"who hung himself from a slide?\",\n    \"video_name\": \"video8366\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who gives commentary on a video game?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is shown as men are heard talking about it?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking while playing a video game?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates while his screen shows him playing a video game?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man narrates while his screen shows him doing?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a narrator describe?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes a video game?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is playing the game minecraft?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game is shown as men are heard doing?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone playing minecraft and doing?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someones doing?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the video game icon doing?\",\n    \"video_name\": \"video8367\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a lady?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is long jump?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is jumping on a track?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who runs down a track?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"what does an athlete preform?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what was conducting in the play ground?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl jumping on?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who follow it?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does an athlete run down?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what do a group of girls do?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are all the athlets reach in very well the audiance are promote them?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"finishing\"\n  },\n  {\n    \"question\": \"what are all the athlets reach their finishing point in very well are promote them?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"audiance\"\n  },\n  {\n    \"question\": \"who are participating in different sports?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"who preforms a long jump?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what was a athelatic game doing?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what is an assortment of video clips of people doing?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are athletes doing?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is many athletics doing?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who is playing the long jump in ground?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who s participating in a different sports competition?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"what do athletes compete in various track and field events at?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what is a person jumping in the sand and a group of people doing?\",\n    \"video_name\": \"video8368\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does a person run into?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is a man smoking?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"cigarette\"\n  },\n  {\n    \"question\": \"what are three women running away from?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is being chased?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is smoking?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"who runs into a building?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is smoking a cigarette?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do three women chase after a man in?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"how many women are being chased?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who do three women chase after in a suit?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is three ladies doing?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"how many women run after a man across a street?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many women chase after a man in a suit?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many women are running away from a house?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is three women doing?\",\n    \"video_name\": \"video8369\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"who is showing computer application?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is advertising a service?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man explain?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"feedback\"\n  },\n  {\n    \"question\": \"what is a man advertising?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"service\"\n  },\n  {\n    \"question\": \"what are presented?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"feedback\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"what is a commercial for doing?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"tutor\"\n  },\n  {\n    \"question\": \"what is this is someone doing?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who talks about being able to accelerate a child s learning abilities?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a person talk about being able to accelerate s learning abilities?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is talking about an educational program?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains feedback for teacher?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are shown on a blue background?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"who has his hand in the air?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8370\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who can t see?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a grandma and granddaughter doing?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is being played?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who is a woman talking to?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does an old woman go into?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"trance\"\n  },\n  {\n    \"question\": \"who is talking to another woman?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who goes into a trance?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who granddaughter talking?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"grandma\"\n  },\n  {\n    \"question\": \"who talked to the older woman?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an older woman doing?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is older woman doing?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"who is talking about something to another woman?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks with an older woman?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to an old lady?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many women appeared frightened?\",\n    \"video_name\": \"video8371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what play for a mario game?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"how many people are playing a video game together?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what play footage of a video game?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a cannon shooting out in a video game?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is shooting out a plane in a video game?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"cannon\"\n  },\n  {\n    \"question\": \"what are two people playing together?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what not loaded?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a cannon doing?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what are bombs doing?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"blast\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is group of people doing?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two people talk while doing?\",\n    \"video_name\": \"video8372\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is students doing?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a documentary about doing?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is a teacher doing?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are educators doing?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is telling about some research work?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about learning by experience?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man and a woman talk about a youth tech?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"who is talking about students?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about his students?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who is typing?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8373\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man singing into?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a musician singing?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man singing in?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"mike\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when is a band playing?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what rehearses in a gym?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"punk\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a punk band rehearse in?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing a song on mike and dancing?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man singing on mike and dancing?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is playing on a stage?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing in a mike?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy singing and doing?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"rehearse\"\n  },\n  {\n    \"question\": \"who is singing into a microphone?\",\n    \"video_name\": \"video8374\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a rock band doing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is giving a concert on a scene?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a rock band doing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are three persons doing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a music video with a man doing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a music band doing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are youths doing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a rock band preform?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what plays a song?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what does a band play?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what is a rock band performing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a rock band play?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are youths playing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what preforming a song?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what plays heavy metal music?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what preforms a song on stage?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"how many persons are playing musical instruments?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what plays metal music?\",\n    \"video_name\": \"video8375\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is shown of kids talking in a class room?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is a woman talking to about how to argue his opinion?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many kids talk in a classroom?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two cgi children in talking to each other?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who is talking to a man about how to argue his opinion?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is an animated girl lecturing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is wearing a hat?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who have a reasoned discussion?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are animated children talking in?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what is an animated girl wearing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what do two kids talk in?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what do two cartoon characters have?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"who is lecturing a boy?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many cartoon characters have a reasoned discussion?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two characters doing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are animated children doing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is animated characters talk to each other doing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is animated characters doing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is animated cartoon of girl doing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animation is shown of kids doing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animated girl doing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is an animated girl doing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two cgi children in a classroom doing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video8376\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who showcases a fancy cars features?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a car s is moving?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"headrest\"\n  },\n  {\n    \"question\": \"what does a clip showing feature in?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what features in a car?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"showing\"\n  },\n  {\n    \"question\": \"what s headrest is moving?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what shows the sleek interior of a new luxury car?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what does a video showcasing the inside of?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what showcasing the inside of a car?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does the video show off features of?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what shows off features of a car?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are the features of a car put on?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what does a car s?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"headrest\"\n  },\n  {\n    \"question\": \"what is a car s headrest doing?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a cars interior shows seats headrest doing?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8377\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is driving fast by the tall mountains and trees?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is looking at the top of a mountain with snow on it?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a far away mountain show snow up at?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"what does a far away mountain show up at the top?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is japan s most famous symbol?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"cone\"\n  },\n  {\n    \"question\": \"what is the symmetrical cone japan s?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"symbol\"\n  },\n  {\n    \"question\": \"what is the symmetrical cone s most famous symbol?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"japan\"\n  },\n  {\n    \"question\": \"what is a tall volcanic mountain covered by about half way down?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"where does a far away mountain show snow up?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"what covered mountain there are white letters on the screen showing facts about the mountains?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what did a large snow cover there are white letters on the screen showing facts about the mountains?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what s tallest mountain is shown along with fun facts?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"footage\"\n  },\n  {\n    \"question\": \"what is a mountain of a japan displaying in?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what do a person taking camera a mountain scene flowers moving vehical displaying on?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does footage of japan s is shown along with fun facts?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"where is a mountain of a japan displaying?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is man on?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"terrace\"\n  },\n  {\n    \"question\": \"who is on his terrace?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a mountain of a japan doing?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is hill with snow on top of mountain its taken by doing?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man is on his terrace and doing?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a large snow covered mountain there are white letters on the screen doing?\",\n    \"video_name\": \"video8378\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is being shown in an animated theater?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who speaks to another cartoon character?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are being show in a cartoon theater?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"muppet\"\n  },\n  {\n    \"question\": \"how many cartoon muppets stand beside a ladder in the sky?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who stand beside a ladder in the sky?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what plays in the front of a theater?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do animated muppets talk to each other on?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what does a muppets cartoon play with?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is an animated frog doing?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are some anime s doing?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cartoon characters having?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are having a conversation?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what plays with no sound?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are muppet babies being in a cartoon theater?\",\n    \"video_name\": \"video8379\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who discusses various cosmetics?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is commentating?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is describing make up?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl showing?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a girl explaining?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who makes a craft?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining makeup products?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is describing cosmetic products?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about makeup items?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman make?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what do a women talking about catrice longlasting browdefiner?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8380\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is being demonstrated in different ways?\",\n    \"video_name\": \"video8381\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a person clicking different things on?\",\n    \"video_name\": \"video8381\",\n    \"answer\": \"iphone\"\n  },\n  {\n    \"question\": \"what do a person buttons on a smartphone to find?\",\n    \"video_name\": \"video8381\",\n    \"answer\": \"wifi\"\n  },\n  {\n    \"question\": \"what is mobile phone with touch screen being operated by?\",\n    \"video_name\": \"video8381\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8381\",\n    \"answer\": \"click\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8381\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video8381\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a smartphone and a finger doing?\",\n    \"video_name\": \"video8381\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"who demonstrates how to use some of the functionality of a cell phone?\",\n    \"video_name\": \"video8381\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being shown with instructions to connect to an adapter?\",\n    \"video_name\": \"video8381\",\n    \"answer\": \"iphone\"\n  },\n  {\n    \"question\": \"who is clicking different things on a iphone?\",\n    \"video_name\": \"video8381\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man drink from a tub?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a guy suck in bathtub while his girlfriend in it?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man drinking out of?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"tub\"\n  },\n  {\n    \"question\": \"what does a guy suck the water in while his girlfriend in it?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"bathtub\"\n  },\n  {\n    \"question\": \"who is running around?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drink water from?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"tub\"\n  },\n  {\n    \"question\": \"who is using straw?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are teams playing?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what does the man drink?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"who drinks water from a tub?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"straw\"\n  },\n  {\n    \"question\": \"who drinks the liquid?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sucks the water in bathtub while his girlfriend in it?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is a man drinking s bath water?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who goes into a bathroom where he plays a prank on a woman?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking milk from a woman s bathtub through a straw?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drinks bathwater from a straw to try?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drinks the milk out of a girl s bath?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drinks from a bath with white liquid to see what s in the water?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drinks bathwater from a straw to see the woman in it naked?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drinks from a bath with a straw?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man drinking milk from a woman s bathtub through?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"straw\"\n  },\n  {\n    \"question\": \"what is a man drinking milk from a woman s through a straw?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"bathtub\"\n  },\n  {\n    \"question\": \"who is blowing into a straw in the bathtub?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking a woman s bath water?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a young man drink from a straw to try?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"bathwater\"\n  },\n  {\n    \"question\": \"who does a young man drink from a straw to see the woman in it naked?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"bathwater\"\n  },\n  {\n    \"question\": \"who is drinking water from a bathtub?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drink the milk out of a girl s?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is a man blowing into in the bathtub?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"straw\"\n  },\n  {\n    \"question\": \"what is a man a woman s bath water?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"drinking\"\n  },\n  {\n    \"question\": \"what is a man blowing into a straw in?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"bathtub\"\n  },\n  {\n    \"question\": \"what is a man drinking a woman s?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is drinking out of a tub?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sucking the froth of washing tub?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"blow\"\n  },\n  {\n    \"question\": \"what are teams doing?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"suck\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8382\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what do kids react to?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do children answer questions about?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is about a question time?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what were the children amused by?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are kids talking about?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are kids watching?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do children talk directly to?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did young kids being ask questions about?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a clip of young teenage kids doing?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what are multiple kids doing?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"who is asking a few kids a question?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a bunch of preteens asked their reactions of?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are children answering questions about?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do kids react to they were shown?\",\n    \"video_name\": \"video8383\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who did the beginning of the lego movie trailer narrate by?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"freeman\"\n  },\n  {\n    \"question\": \"what graphic shows off a video game that involves both marvel and lego?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who does a morgan freeman voice over for the lego marvel?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what does a morgan freeman over for the lego marvel superheros trailer?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a morgan freeman voice over for marvel superheros trailer?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"who freeman voice over for the lego marvel superheros trailer?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"morgan\"\n  },\n  {\n    \"question\": \"who speaks while three logos are shown in a meteor field?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a trailer for lego marvel super heroes narrate by?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"freeman\"\n  },\n  {\n    \"question\": \"who introduces a trailer for a video game narrated by morgan freeman?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many logos are shown in a meteor field?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who do a look at supporting the marvel lego super heroes toy and cartoon line?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"freeman\"\n  },\n  {\n    \"question\": \"what picture in black dress color cloth of old man in photo displaying on screen?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what is talking some thing in the scene?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a still image picture in black dress color cloth of old man in photo doing?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a old man in still image and cartoon of images doing?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a look at morgan freeman doing?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"support\"\n  },\n  {\n    \"question\": \"what is a man voice doing?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a red light doing?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is opens with a picture of morgan freeman followed by an animated outer-space made of legos with mr freeman doing?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a movie preview doing?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what streaks across what seems to be space?\",\n    \"video_name\": \"video8384\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what is talking to another goose over the phone?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is talking to other animals in a comedy of cartoons?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what has a sack hanging off its beak?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what speaks to some cartoon bears?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is delivering babies?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is duck operating in cartoons?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what stacks up some papers while the muppets stand in the background?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"stork\"\n  },\n  {\n    \"question\": \"who shown here?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what was very colorful?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what do the muppets stand in?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is operating computer in cartoons?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"duck\"\n  },\n  {\n    \"question\": \"what are cartoon animals playing in?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what are playing in an airport?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many cartoon characters shown here?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what works at an area that looks like a tower control?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"stork\"\n  },\n  {\n    \"question\": \"what is a bird has a sack doing?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what are strokes doing?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is duck doing?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what are cartoon animals doing?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animation of birds doing?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon goose doing?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a cartoon stork doing?\",\n    \"video_name\": \"video8385\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what does a woman talk to?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is talking about poaching?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is seated?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses poaching?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to a camera?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man talks about the problem of doing?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"poach\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"outbreak\"\n  },\n  {\n    \"question\": \"what is an australian man discusses doing?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"poach\"\n  },\n  {\n    \"question\": \"who talks about the problem of poaching?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining what he had captured on his video camera?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about by looking at laptop?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is being interviewed on a television show?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes something in two different scenes?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something by looking at laptop?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about how people use his service?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about an outbreak?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the impact of poaching of rhinos?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows his disdain for poaching of rhinos?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8386\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping an onion very rapidly?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shows off his dicing skills?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting onions?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who slices an onion up?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is dicing an onion very quickly?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is rapidly cut by a chef?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man dicing very quickly?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is chopping red onions?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person slice up?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone chopping very rapidly?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does indian chef show off?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"dicing\"\n  },\n  {\n    \"question\": \"who onions?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is quickly dicing up the onions?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone slicing with knife in a kitchen?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who minces up red onions?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person is quickly doing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is in the kitchen a man doing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who onions up?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is this is an indian chef doing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is slicing an onion in the kitchen?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is a man slicing into tiny squares?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man slicing an onion in?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man slicing in the kitchen?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is a red onion rapidly cut by?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is slicing a red onion into tiny squares?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing an onion with knife in a kitchen?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8387\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what does a man s is bleeding?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"chest\"\n  },\n  {\n    \"question\": \"who is a man talking with?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do an animal open?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who sits?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man s?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"chest\"\n  },\n  {\n    \"question\": \"what is a man in a brown tee shirt discusses special effects that cause it to look like a man s chest doing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"bleed\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are an animal open its mouth and other persons doing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a producer doing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in a gray sweater doing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a man in green sits and talks then people doing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a boy in brown color t shirt doing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a movie maker doing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man telling?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what open its mouth?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is a man with a second head doing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"who is talking with another person?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining the making of monsters in an alien movie?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"producer\"\n  },\n  {\n    \"question\": \"what is a man discussing about with a big monster?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is discussing about a movie with a big monster?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who expalins how he helped film a special effects scene?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who describes how a special effect scene was shot for a movie?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a man in a gray sweater talking to?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what pans over to a still from a movie?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does the video pan over to a still from?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is talk as the monster in?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"who is talking about his special effects?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who s chest is bleeding?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is telling some thing?\",\n    \"video_name\": \"video8388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is six doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are several men doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a marching band doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of musicians doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a percussion group doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a percussion group playing the drums on?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is practicing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"drum\"\n  },\n  {\n    \"question\": \"what are some people playing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what plays the drums?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are a group of musicians performing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what are a group of men and women doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are playing the drums on a field?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"percussion\"\n  },\n  {\n    \"question\": \"how many standing drummers each play a single drum?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"six\"\n  },\n  {\n    \"question\": \"where are a percussion group playing the drums?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a drum line doing?\",\n    \"video_name\": \"video8389\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"who is sitting on a couch telling other girls how to be fans?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about being a fan of something?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman sitting on telling other girls how to be fans?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is talking about how to be a fangirl?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"culture\"\n  },\n  {\n    \"question\": \"who glasses?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about pop culture?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about fangirls?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8390\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what play?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"narration\"\n  },\n  {\n    \"question\": \"what minecraft?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"what does the player navigate?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"inventory\"\n  },\n  {\n    \"question\": \"who review their inventory items?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a gamer counting?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"mushroom\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what do kids playing minecraft review?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"inventory\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is showing how to use a menu in a computer program?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is selecting items in a menu in minecraft?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who minecraft while giving commentary?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is counting his mushroom stews?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"what is a gamer doing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"select\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is it is a video of minecraft of doing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a gamer playing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who navigates his inventory?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8391\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the girl is enjiy the drugs and he doing?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman with red hair doing?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girl in black color dress doing?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is blonde woman doing?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a woman on a couch doing?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a woman in black doing?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman in a black dress is first doing?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"who gets out of chair?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who looks for something?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who looks through a hole?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what does desperate lady smoke lies in?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what does a smoking woman look through?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what does desperate lady look for?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is enjiy the drugs?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does the woman get out of?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who goes to investigate?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there is a women doing?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who smokes lies in sofa?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman in black sitting in?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does a smoking woman find in the wall?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"who crawls on the floor to the wall?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the woman crawl on the floor to?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is lying on the bed in the living room?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"who lounges around an apartment and peers through a hole in the wall in a film scene?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"actres\"\n  },\n  {\n    \"question\": \"what does a lady in a dark dress move a small table to reveal?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"peephole\"\n  },\n  {\n    \"question\": \"what does a lady in a dark dress move to reveal a peephole?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what do a girl in black color dress peeping into hole displaying on?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a girl in black color dress peeping into displaying on screen?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"who is looking through a hole in the wall?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the woman crawl on to the wall?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what do a girl in black color dress wearing sleeping?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what does a smoking woman find a hole in?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who finds a hole in the wall?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is blonde woman lying on in the living room?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a woman with red hair looking through?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what do a girl in black color dress wearing smoking?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who is trying to open the door their hair is super?\",\n    \"video_name\": \"video8392\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"sketch\"\n  },\n  {\n    \"question\": \"what does a person draw on?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"whiteboard\"\n  },\n  {\n    \"question\": \"what do a center on?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"society\"\n  },\n  {\n    \"question\": \"what is a person drawing?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"healthcare\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a hand doing?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what does person write on?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"who is a person writing with?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"sharpie\"\n  },\n  {\n    \"question\": \"what is a woman drawing?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"sketch\"\n  },\n  {\n    \"question\": \"who is drawing a commercial?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is writing with a sharpie?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who draws on a whiteboard?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains where to look for more information on society and health?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does an ad advertise?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"who is drawing a detailed sketch?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is drawing cartoons?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who writes on a board?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what was for a health organization?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"who is making a sketch?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing something?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a healthcare ad?\",\n    \"video_name\": \"video8393\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs live?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"when are a group of people singing?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing in an orchestra?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is performing for a crowd?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing on stage?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is a band playing?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band performing for?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a man singing in?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"orchestra\"\n  },\n  {\n    \"question\": \"what are singers singing in?\",\n    \"video_name\": \"video8394\",\n    \"answer\": \"orchestra\"\n  },\n  {\n    \"question\": \"who is coloring?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is drawing?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a man draw on?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"notebook\"\n  },\n  {\n    \"question\": \"who is erasing?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who draws?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"how many people are doing stuff at a table?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who unwraps a small packet while a child at the same table colors in a foreboding scene?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who colors in a coloring book while a woman prepares to use drugs?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a woman unwrap while a child at the same table colors in a foreboding scene?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"packet\"\n  },\n  {\n    \"question\": \"who starts doing drugs a table with a kid?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is using drugs in the dining room?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sit at table while child draws?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman start doing drugs a table with?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what do woman and child sit at while child draws?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is lighting the spoon?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are two people doing at a table?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what are two people doing stuff at?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a lady lighting?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who is about to burn something?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a child coloring and doing?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who draws on his notebook?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8395\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what holds hands and laughs?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who talks about being old?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl talking about?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when do a man and woman have?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"date\"\n  },\n  {\n    \"question\": \"who is talking indoors?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding a mans hands?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a man and woman speaking at?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who talks about dancing at clubs?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a woman exercising a couple is sitting on a date a woman is talking?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"future\"\n  },\n  {\n    \"question\": \"who talks about being an old lady at a club still dancing?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady and man doing?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8396\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a camel faced animal doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what faced animal talking in a baby voice?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what did an alpaca with a white muzzle deep black eyes bushy hair curve lips and recessed area above?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what is a alpaca advertising a animal far doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"munch\"\n  },\n  {\n    \"question\": \"what is a alpaca doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is an animal doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a animal in brown doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an alpaca named nutter butter talks about doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"visit\"\n  },\n  {\n    \"question\": \"what is a llammas mouth moves as if its doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animal staring at the camera and doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a llama doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the brown animal doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a camel doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what did a camel face talking in a baby voice?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what do a llamas mouth moves and talks during peruvian nutter?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what does a alpaca advertising far speaking with a human voice over?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is an animal s head doing?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is munching?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is looking straight in the camera?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is the brown animal looking straight in?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does an animal s is speaking by moving its lips rapidly?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a camel talking to with its lips?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what s head is speaking by moving its lips rapidly?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is talking to a camera with its lips?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"camel\"\n  },\n  {\n    \"question\": \"what moves as if its talking and hte eyes dart around?\",\n    \"video_name\": \"video8397\",\n    \"answer\": \"llamma\"\n  },\n  {\n    \"question\": \"what is soccer players doing?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some doing?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did a soccer game with a huge crowd and the player get with the soccerball?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"who did a soccer game with a huge crowd and the player get a goal with?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"soccerball\"\n  },\n  {\n    \"question\": \"who score a goal on a goalie?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do a sports montage with loud music?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do related vines play to?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do a sports montage video with?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do a 3d game play?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who score goals?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what play scene?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are some playing?\",\n    \"video_name\": \"video8398\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a bunch of kids doing?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl is shown doing?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"who is shown dancing?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are little kids doing?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who laughs at funny video?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do kids answer a question about?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who do kids react to running around?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"what do kids react to manikin?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what are children being interviewed in?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what does a girl laugh at?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is shown playing?\",\n    \"video_name\": \"video8399\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many people are having a conversation while sitting?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are a trio sitting on stage having?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"how many people sit in chairs and talk?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who speaks on a a news panel?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains something to two others?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two man s and a woman talking about?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many people discuss?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many people sit?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are people discussing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what is 3 people doing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a trio doing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men and a women doing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men and a woman doing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two men and a woman on a television set doing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two man s and a woman doing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there s two men doing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"elaborate\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is three people doing?\",\n    \"video_name\": \"video8400\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"when is a person singing?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when does the boy sing?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sings on the stage?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing on stage in front of audience?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"when is a boy singing in front of audience?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sings a song on a television show?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing jar of hearts on a television show?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing on a stage?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is boy doing?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8401\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man playing guitar in?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is playing an acustic guitar?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing an acoustic guitar?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sits?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man performing on?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person playing on guitar?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is performing on his guitar?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing in a room?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who strums the guitar strings using multiple finger picks?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"musician\"\n  },\n  {\n    \"question\": \"what is a person playing on a guitar?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a person playing a song on?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a musician strums the guitar strings doing?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing guitar in a room?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a song on a guitar?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a song on guitar?\",\n    \"video_name\": \"video8402\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who enter to a stage?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getting ready for his fight?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"when do a man enter?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man steeping up?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"staircase\"\n  },\n  {\n    \"question\": \"who prepares for his wrestling match?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a wrestler getting ready for?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"when is a man running?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is warming up?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who is steeping up a staircase?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running to the stage?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does college wrestling explain beat the streets program in?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"who runs up to a wrestling ring?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a wrestler doing?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"warm\"\n  },\n  {\n    \"question\": \"how many boys are walking on stage for a wrestling match?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who runs onto a wrestling stage before taking his shirt off?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what explains beat the streets program in commentary?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"who is preparing to compete at a wrestling event?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what does college wrestling explain beat in commentary?\",\n    \"video_name\": \"video8403\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a chef prepare?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is someone mixing?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is a woman demonstrating?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a person mixing?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is demonstrating a recipe?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is showing food recipe?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone making dough of?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"kind\"\n  },\n  {\n    \"question\": \"who is mixing food ingredients?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who prepares a meal?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is someone mixing in a bowl?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is making dough of some kind?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone mixing flour and water in?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is mixing flour and water in a bowl?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person that mixing some kind of up?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who prepares dough to fry in oil?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who mixes some food ingredients in a pan?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is mixing dough?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining how to cook something?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing some kind of food up?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person that doing?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8404\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is using a press in the kitchen?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pan on a stovetop?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who provides a description?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a cook fixing prepare?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do woman flipping a pan on?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"stovetop\"\n  },\n  {\n    \"question\": \"who is showing some food recipe?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who prepared a dish?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"fixing\"\n  },\n  {\n    \"question\": \"what does a man provide?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"description\"\n  },\n  {\n    \"question\": \"who is cooking something?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a lady showing?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is showing how to cook?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who works?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman making japanese pastry called taiyaki on?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is using a fish shaping lid to shape something on the grill?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is making japanese pastry called taiyaki on a stove?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gives instructions on how to cook a recipe?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the lady using shaping lid to shape something on the grill?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who describes how to cook while the woman works?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes fish shaped food on a stove?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman make fish shaped food on?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the lady doing?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person using a press in?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who demonstrates how to use a pan as a man provides a description?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is teaching how to cook taiyaki?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman make fish shaped on a stove?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person using in the kitchen?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"pres\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is cooking by doing?\",\n    \"video_name\": \"video8405\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"who has a pet giraffe?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is a person playing online?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what show on the screen?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is someone playing world of?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"warcraft\"\n  },\n  {\n    \"question\": \"what wow while talking about pets?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a beautiful cartoon show on?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do people talk about?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does the wow player have?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"giraffe\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"warcraft\"\n  },\n  {\n    \"question\": \"what is playing world of warcraft?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing in a computer online game?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game online?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man discuss while playing it?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"warcraft\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man discusses world of warcraft while doing?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is commentating while playing world of warcraft?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about pets in a video game?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about pets in an mmorpg?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who discusses world of warcraft while playing it?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains how to play a video game?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss world of while playing it?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"warcraft\"\n  },\n  {\n    \"question\": \"what is a hybrid bull human character doing?\",\n    \"video_name\": \"video8406\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what instructs on how to exercise?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"who television show?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what is mickey mouse doing?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an animated cow doing?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is mickey mouse is shown doing?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is micky mouse movie doing?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does someone play mickey s?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"mousekersize\"\n  },\n  {\n    \"question\": \"what is talking?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"what show for kids?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does mickey mouse try to get fat kids in?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"shape\"\n  },\n  {\n    \"question\": \"what is mickey mouse shown talking in?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what tries to get fat kids in shape?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"what do walt disney?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who plays mickey s mousekersize moves?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what play of mickey mouse game?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who disney cartoon movie?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"walt\"\n  },\n  {\n    \"question\": \"what is shown talking in a game?\",\n    \"video_name\": \"video8407\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"who plays with a plastic syringe full of a colored liquid?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is using an eye dropper?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what do a group of people prepare?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who shows a child how to paint?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man giving a syringe to?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is an adult showing how to use watercolors?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is someone showing steps to color water play with?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"who is giving a syringe to a girl?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing a child how to use watercolors?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"adult\"\n  },\n  {\n    \"question\": \"who is a man teaching how to use a syringe with the paints?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is showing steps to color water play with toddler?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who describes how to use an artistic kit to a young child?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who does a man show how to paint?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a man giving to a girl?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"syringe\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is an adult doing?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is children doing?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is how to color doing?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a child using?\",\n    \"video_name\": \"video8408\",\n    \"answer\": \"dropper\"\n  },\n  {\n    \"question\": \"what is a woman blowing in?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"who draw something?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a woman draw?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what do a pop sounding?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a music video show?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"what shows a band playing?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what plays music to an empty room?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what did a girl looks through a rain streak?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"who writes on a window with condensation in a music video?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is flying?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a young girl write on with condensation in a music video?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what does a young girl write on a window with in a music video?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"condensation\"\n  },\n  {\n    \"question\": \"who looks through a glass window with condensation on it?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is drawing on a window?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is blowing in a mirror?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a little girl drawing on?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"blow\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a music video with disparate shots of a girl doing?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a pop doing?\",\n    \"video_name\": \"video8409\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what was enjoyable?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who minecraft?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"who plays the game minecraft?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do game play?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do game play footage of?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who demonstrates about an online game?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who scrolls through his minecraft inventory?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what play footage of minecraft?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who narrating while playing minecraft?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to play a video game?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a scene being played in the game mine?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who is playing the video game called minecraft?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what shows glimpses of a modern video game?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is man playing?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8410\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who does a man put makeup on?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a makeup artists apply to a man sitting in a chair?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt describing for extras that play zombies in the walking dead?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who applies horor make up to a person sitting in a chair?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a blue shirt with glass applying to a man in a black hoodie?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who make up on the face of an actor?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what do male makeup artist creating a zombie look on?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"who talks about his appreciation for violent deaths in movies?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a guy in blue shirt applying makeup to a mans face and turn him to look like?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"what does a man wear?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who applies zombie makeup to a man sitting in a chair?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who wears a blue shirt?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a person putting makeup like?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"what is a person putting like an zombie?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who puts makeup on the man?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man put on the man?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is putting makeup like an zombie?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is 3 men in a room one with a blue shirt doing?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man applies horor make up to a person doing?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a make-up artist for the show the doing?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a make up men doing?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is male makeup artist doing?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is makeup artist doing?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt doing?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a makeup artists applies zombie makeup to a man doing?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video8411\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is holding a tiger on a leash?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses his cheetah with a talk show host?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a leopard walking over on a tv show?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is a man holding on a leash?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"who is playing guitar on stage?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown off on a television show?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"cheetah\"\n  },\n  {\n    \"question\": \"when is a man playing guitar?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what show host petting a cheetah?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man playing on stage?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is talking about animals?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man holding a tiger on?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"leash\"\n  },\n  {\n    \"question\": \"who discusses how a tiger hunts?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a cheetah doing?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a talk show host doing?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"who describes how a certain wild cat hunts its prey?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is man with cheetah doing?\",\n    \"video_name\": \"video8412\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who does some art on a cup?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is preparing nail polish?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who take the nail polish?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is someone painting the inside of?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is a woman playing with in a cup?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"who talks about the nail polish?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what do the girl take?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"who is mixing colors together?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does demonstration of making nail wrap at?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is some performing?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what does a person apply to a bowl?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is some doing?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman playing with liquid in?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"who adds drops of nail polish to liquid in a glass?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing with liquid in a cup?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is painting the inside of a cup?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who applies some makeup to a bowl?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman add drops of to liquid in a glass?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"what does a person apply some makeup to?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is being made?\",\n    \"video_name\": \"video8413\",\n    \"answer\": \"dye\"\n  },\n  {\n    \"question\": \"what are two people playing?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"sketch\"\n  },\n  {\n    \"question\": \"what listens and?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a man with a cowboy hat doing?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are the two men doing?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a cowboy hat doing?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man in a cowboy hat doing?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many men are talking together?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is an english cowboy doing?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man in a cowboy hat talk on?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"how many british men talk to each other?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a man with a cowboy hat talking to?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a man in a cowboy hat discussing a movie with a talk show?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who do an english talking to someone on stage?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"cowboy\"\n  },\n  {\n    \"question\": \"what do two men in front of a talk show?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who speaks to a tv show host?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are playing a sketch?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are discussing in the stage program?\",\n    \"video_name\": \"video8414\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what was shown?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"wagon\"\n  },\n  {\n    \"question\": \"what is a light doing?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"glow\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"camp\"\n  },\n  {\n    \"question\": \"what is a cup on?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"stump\"\n  },\n  {\n    \"question\": \"who shows a still of a campsite?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a cup of coffee in?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what does a person show a still of?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"campsite\"\n  },\n  {\n    \"question\": \"when falls on a camp site?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what jug on the wooden piece?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"coffee\"\n  },\n  {\n    \"question\": \"what is glowing at night?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is on a stump?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"when is a light glowing?\",\n    \"video_name\": \"video8415\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a video of different racially motivated protests doing?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are people at a rally doing?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what is protestors gathered and doing?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what plays during a montage of public conflicts?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"upbeat\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who points his finger at a person during a protest?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a set of clips of protests set to?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who does a man point his finger at during a protest?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man point his finger at a person during?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what s a little bit racist plays?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"everyone\"\n  },\n  {\n    \"question\": \"what does a man point at a person during a protest?\",\n    \"video_name\": \"video8416\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what is the crowd doing?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is singer doing?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are judges doing?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are a group of girls doing?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are three women doing?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"how many women sing a song before an audience?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are a group of girls on?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"when do three singers sing while the crowd loses it?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many women are singing on a stage?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when are a group of girls performing?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many women are competing on the voice?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many female vocalists amaze the crowd?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is performing in front of judges?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is reacting to a performance on the voice?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"how many young women sing while the audience rocks out?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many singers sing on stage while the crowd loses it?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what loses stage?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"when does the crowd lose?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are children singing?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are three women competing on?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"when are three women singing?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do teen girls battle on?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"when is singer performing?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do three female vocalists amaze?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is performing at the stage?\",\n    \"video_name\": \"video8417\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who has an injury in a game shown?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a basketball player doing?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"limp\"\n  },\n  {\n    \"question\": \"what is a video on basketball doing?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is basketball player number 23 doing?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"limp\"\n  },\n  {\n    \"question\": \"what are basketball players doing?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is injurded basketball player doing?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"limp\"\n  },\n  {\n    \"question\": \"what is on a basketball court with a player doing?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who gets hurt?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is limping?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who gets injured?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who does an nba player dunk on?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"who limps along the sidelines of the court?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"how many teams compete on the basketball court?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a narrated nba game someone get hurt on?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"layup\"\n  },\n  {\n    \"question\": \"what is a professional basketball player injured during?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who shoots a ball?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are basketball players playing?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who dunks on his opponent?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who are playing a professional match?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a man shoot?\",\n    \"video_name\": \"video8418\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a green minecraft monster carry?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does the minecraft character pick up?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"weapon\"\n  },\n  {\n    \"question\": \"what is very entertaining?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a minecraft zombie doing?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"collect\"\n  },\n  {\n    \"question\": \"who is carrying objects?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is there is an animated block person doing?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a 3d video done in the game mine craft doing?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a green video game character doing?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a minecraft character doing?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a minecraft clip of a green man doing?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is minecraft man doing?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what does an animated zombie pick up?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what huddled an animated figure walks towards another?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"who picks up the weapon?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what did animated figure huddle walks towards another?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what huddled an animated figure picks up a gun?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"who did animated figure huddle picks up a gun?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what did animated figure huddle an animated figure picks up?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does an animated zombie carry to a skeleton?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who carries a gun to a skeleton?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"what does an animated zombie carry a gun to?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what does a minecraft zombie collecting guns then bring them to?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is a green video game character carrying through a large room to a smaller white character sitting on the floor?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what shows a zombie carrying guns?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what characters one in green?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who picks up a gun?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"who brings guns to character?\",\n    \"video_name\": \"video8419\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a man sits in a large black truck doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is a man in a huge truck doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is a military officer doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a big black truck doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is a man with a brown shirt is inside a large black truck doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a large red truck and a man doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is in a huge vehicle sits a man and talks after doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is man hangs out of a train conductor s window doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is truck driver doing?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what did a container driver close mirror because of any damage?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"vision\"\n  },\n  {\n    \"question\": \"who talks about his vehicle being damaged?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man sit in a large black truck adjusting?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is a man in a huge truck hanging out?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is a person adjusting the mirror of?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what do a person inside the truck adjust mirror to him for visibility?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what do a person inside the truck adjust the side mirror to him for?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"visibility\"\n  },\n  {\n    \"question\": \"what is a man in a big black truck shaking at us thru the truck window?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"who talks about foreign military trucks?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"idiot\"\n  },\n  {\n    \"question\": \"who hangs out of a train conductor s window talking to someone outside?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does man hang out of a train s window talking to someone outside?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"conductor\"\n  },\n  {\n    \"question\": \"what does man hang out of conductor s window talking to someone outside?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who is sitting in a black large truck leaning out of the window?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man hang out of a train conductor s talking to someone outside?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"who sits in a large black truck adjusting mirror?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adjusting the mirror of the truck?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who closed the vision mirror because of any damage?\",\n    \"video_name\": \"video8420\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what are a bunch of girls doing?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are a group of women doing?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are a team of swimmers doing?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a womens synchronized doing?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are a bunch of girls swimming in?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are highlights of swimmers shown in?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who perform choreographed swimming routines?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pops out of a pool?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are women swimming in?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what do woman perform?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what are synchronised swimmers doing?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is woman perform choreographed doing?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"who is swimming?\",\n    \"video_name\": \"video8421\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is this is a video of a girl doing?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a female talking about?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is talking about a show?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about politics?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many people talk in a tv show?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do woman talks about the tv show?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"wing\"\n  },\n  {\n    \"question\": \"what do a woman talking about a tv show?\",\n    \"video_name\": \"video8422\",\n    \"answer\": \"wing\"\n  },\n  {\n    \"question\": \"who made the eyebrow coloring to the yellow dress wearing girl?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what are touched with the black vream for a final touch of beautification?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"who is doing makeup of eyebrows of a woman in the yellow dress?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is applying make up to a teenage girl s eyebrows?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the makeup artist make coloring to the yellow dress wearing girl?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"eyebrow\"\n  },\n  {\n    \"question\": \"who is touching with the nice brush to make a final touch?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"beautician\"\n  },\n  {\n    \"question\": \"what is a young girls with a yellow headband sitting someone is applying to a young girl?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is applying make up to a teenage girl getting ready to apply eye shadow?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does someone apply makeup to?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a young girls with a yellow headband sitting is applying eye makeup to a young girl?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who draws eyebrows using brush on the face of a lady?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who teaches viewers how to color in eyebrows?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady draws eyebrows doing?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is sexy blonde doing?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is the beautician doing?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a young girls with a yellow headband doing?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does a woman who is doing the makeup of a young girl describe?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"technique\"\n  },\n  {\n    \"question\": \"what does a female inside a white themed bathroom while someone else make?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is the makeup artist made the eyebrow doing?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"colmy\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is blonde woman in yellow clothes doing?\",\n    \"video_name\": \"video8423\",\n    \"answer\": \"make\"\n  },\n  {\n    \"question\": \"what is a graphic with two circles doing?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is computer graphics of a timer doing?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"count\"\n  },\n  {\n    \"question\": \"what is a program doing?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"simplify\"\n  },\n  {\n    \"question\": \"what is a blue and gray round graph doing?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what a blue and gray round graph showing in hours showing that the ion torrent is faster?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"lapse\"\n  },\n  {\n    \"question\": \"who is presenting the results of the latest study?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is simplifying a torrent program in description?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what describes a computer chip s capabilities while a woman narrates?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"sequence\"\n  },\n  {\n    \"question\": \"what are some pictures of things being shown on?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a seconds of time running in?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what is a program simplifying a torrent program in?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"description\"\n  },\n  {\n    \"question\": \"what does a woman explain about?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what does an animated sequence describe s capabilities while a woman narrates?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who explains about technology?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a program simplifying in description?\",\n    \"video_name\": \"video8424\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a person baking?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"who is making eggs?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is baking a cake?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person is shown doing?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"who is making an yellow bar?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man work with pan?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what does a man work with sponge?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"who is showing food recipe?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cooking something in a kitchen?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is shown creating an object inside of a weird pan?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pushes a sponge around a pan?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man using to shape a yellow substance in a square pan?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"who is using wood to shape a yellow substance in a square pan?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking cornbread on a pan?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man push around a pan?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"sponge\"\n  },\n  {\n    \"question\": \"who works with a metal sponge?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who works with a metal pan?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to make a square omelet?\",\n    \"video_name\": \"video8425\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lay on the ground near the brown homes?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is recording the small wooden houses near the street?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sit on the ground near the big house?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do expensive and new looking cabana styled houses sit on stilts on?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is presenting the brown houses near the street?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what structures on beaches with quiet music playing?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is ocean front houses doing?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is expensive and new doing?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is recording the small and beautiful houses near the beach?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what houses sitting on white sandy beaches?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what are built along a beach?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what are several brown houses built along?\",\n    \"video_name\": \"video8426\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is an animation with a girl in a cape and other kids doing?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are adventure doing?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are several children doing?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"what is several children doing?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is there are children doing?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a bunch of kids doing?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is little animated kids doing?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do a group of cartoon characters play?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what a little girl and female in a pink room with the letter k on?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who searches for a white rabbit?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do some animated characters jump around?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what preforms a song?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who jump around the letter k?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a band preform?\",\n    \"video_name\": \"video8427\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who gets fancy makeup done in time lapse by an artist?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who sits while a makeup artist applies eye shadow?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is helping a beautiful lady put on makeup?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a beautician make up her customer face doing?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is black haired woman doing?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is black haired woman doing?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is a girl in black dress doing?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is being applied in fast motion on a womans eyelid?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is doing a woman s make up in a room?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing makeup to other woman s eyes using brush?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a makeup artist apply?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"who is waiting for the make up to be done?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who applies eye shadow?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is waiting for the make up?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what has a pretty young woman makeup put on?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who do a make up applies make up to a womans eye?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is a person doing s make up in a room?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is makeup being applied in on a womans eyelid?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what is a person doing a woman s make up in?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do a beautician applying to a women in jewelry?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a beautician applying on the eyes of a woman?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who do a beautician make up face using a brush?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"customer\"\n  },\n  {\n    \"question\": \"what do a beautician applying makeup to a women in?\",\n    \"video_name\": \"video8428\",\n    \"answer\": \"jewelry\"\n  },\n  {\n    \"question\": \"what is some guy doing?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man under a truck doing?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a truck?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"muffler\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"base\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy crawl under?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is showing a car base?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person filming the bottom of?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does talks about the vehicle s?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"subframe\"\n  },\n  {\n    \"question\": \"who gives a closeup of the chassis of a truck?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is conducting a tutorial about car mechanics?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filming the rear sub frame assembly of his car?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is a man conducting a tutorial about?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is about the parts of a vehicle?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking about parts of a car?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who crawls under a vehicle?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is filming the bottom of his car?\",\n    \"video_name\": \"video8429\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man sitting in?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a person record?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"dashboard\"\n  },\n  {\n    \"question\": \"what is being displayed?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man showing components of?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is filming his cars dashboard?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing components of his car?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do an automobile center with stereo and storage compartment?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"dashboard\"\n  },\n  {\n    \"question\": \"who describes the functions of the controls on the dashboard in a car?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is describing the dash controls the slot to hold stuff?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what center dashboard with stereo and storage compartment?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"automobile\"\n  },\n  {\n    \"question\": \"who is speaking about the audio system?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how a radio work?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the controls in his car?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is sitting in a car?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man describe the controls in?\",\n    \"video_name\": \"video8430\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are some black cars driving around on?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what drives very fast around curves and through obstacles of tires?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do some high end luxury cars go racing around?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is there is a posh car doing?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what do black cars drive down around obstacles made of tires?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"curvy\"\n  },\n  {\n    \"question\": \"what are some black cars doing?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a black colored car leading in in a motor racing competition?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is some high end luxury cars go doing?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is in a motor doing?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a bunch of cars doing?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is several black sports cars doing?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a black colored car doing?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is race cars doing?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a black sports car doing?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is expensive luxury cars doing?\",\n    \"video_name\": \"video8431\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does mariah carey sing to nick cannon in?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is a guy with a white tank top lying with?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does music video clip of mariah carey and nick s?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"celebration\"\n  },\n  {\n    \"question\": \"what do nick cannon and mariah carey celebrating with loving scenes?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"anniversay\"\n  },\n  {\n    \"question\": \"who sings to nick cannon in bed?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"mariah\"\n  },\n  {\n    \"question\": \"what does mariah carey sing to nick in bed?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"cannon\"\n  },\n  {\n    \"question\": \"what does a young lady lie on?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what did a man and girlfriend lie together in with leopard covers?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are mariah carey and a man in?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what did an african couple lie on together?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a man and woman lie doing?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is nick cannon and mariah carey doing?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl and boy in white dress doing?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a black couple in a bed doing?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy with a white tank top doing?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are a man and a woman hugging out?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what lay on a bed together?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who does a young lady sing to?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman romance with song in?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"who lies on a bed?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who sings to a man?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do a man and woman lie facing each other in smiling?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who pulls the covers over their heads?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"mariah\"\n  },\n  {\n    \"question\": \"what do a girl and boy in white dress sleeping on?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"when are mariah carey and nick wished?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"anniversary\"\n  },\n  {\n    \"question\": \"what are man and woman having conversation on?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are a man and a woman in bedroom?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"romance\"\n  },\n  {\n    \"question\": \"who are having conversation on the bed?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are man and woman having on the bed?\",\n    \"video_name\": \"video8432\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is on the news talking about politics?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a old man in black coat color dress wearing sitting speaking and computer screen beside displaying on screen?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what does a man discuss the downfall of?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"who is a black suit talking in a program?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a news reporter telling the cons of?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"what is a reporter discussing the new usage of?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"what does a show host speak to while there is an ap graphic displayed next to him?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is telling the cons of apple pay?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who discusses the downfall of apple pay?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing the new usage of apple pay?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who speaks to the audience while there is an ap graphic displayed next to him?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a black suit is man doing?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a news reader doing?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a reporter in black coat doing?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a news reporter doing?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is man in black suit doing?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a old man in black coat color dress doing?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man is on the news doing?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man talking in a program?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what is guy in suit and shirt doing?\",\n    \"video_name\": \"video8433\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is walking around the street while taking a selfie?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man hold?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man taking?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"who walks?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man push?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"doorbell\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man walks down the street doing?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man walking and doing?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy walking and doing?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man films himself doing?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man records himself doing?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man walking on?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"corridor\"\n  },\n  {\n    \"question\": \"what is a man walks while doing?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who films himself walking around?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who records himself walking down the sidewalk?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks while talking to the camera?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man walk down talking to the camera?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is filming himself while walking down a street?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person walking around while taking a selfie?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who walks down the street talking to the camera?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking while holding a camera?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking down the street?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is walking while talking?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man record himself walking down?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what is a person walking down?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is taking a selfie?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pushes a doorbell?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a camera?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking on the corridor?\",\n    \"video_name\": \"video8434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do shrimp stir sits on a plate while man talks about it and moves it around?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what did a guy prepare in?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is very delicious?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is person presenting in the plate?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is imagine of a shrimp stir fry dish doing?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man narrates a video of shrimp stir fry doing?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is freshly cooked plate of shrimp stir-fry doing?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who stir fry sits on a plate while man talks about it and moves it around?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what does a guy show off the shrimp stir that he made?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who narrates a video of shrimp stir fry sitting on a plate?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows a completed dish of shrimp stir fry with udon noodles as the chef samples the result with chopsticks?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who does a cooking program show a completed dish of stir fry with udon noodles as the chef samples the result with chopsticks?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what does a cooking program show a completed dish of shrimp stir with udon noodles as the chef samples the result with chopsticks?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who does a man narrate a video of stir fry sitting on a plate?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who explains his daughter turned him onto the noodles video of shrimp stir fry with udon noodles?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man explain turned him onto the noodles video of shrimp stir fry with udon noodles?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"daughter\"\n  },\n  {\n    \"question\": \"what are prepared food nicely put in in a table?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who prepared in a kitchen?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man explain his daughter turned him onto the noodles video of shrimp stir with udon noodles?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who is using chop sticks to eat food?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are prepared food nicely put in plate in?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who talks about freshly cooked plate of shrimp?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man explain his daughter turned him onto the noodles stir fry with udon noodles?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what contains delicious noodles with lot of prawns in it?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who is presenting the food that was cooked?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows off the shrimp stir fry that he made?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is presenting the beautiful food in the plate?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being put on a large rectangular plate?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is person presenting the beautiful food in?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what are nicely put in plate in a table?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who does a guy show off stir fry that he made?\",\n    \"video_name\": \"video8435\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what everest action figure?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"patrol\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who points a toy box?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is presenting a popular toy?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a toy?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did paw patrol toy everest?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what was vibrant and colorful?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who discusses a toy named everest?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talking enthusiastically about a children s?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what paw patrol rescue snow mobile toy?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"everest\"\n  },\n  {\n    \"question\": \"what does a children s toy from the show is being reviewed?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"patrol\"\n  },\n  {\n    \"question\": \"what does a children s from the show paw patrol is being reviewed?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a children s toy from paw patrol is being reviewed?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking about a toy dog named everett?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person point?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a man presenting?\",\n    \"video_name\": \"video8436\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do a group of people dance in?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do a group of people dressed in all of the colors of the rainbow sing?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a group of people sing a kids song about?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are five people doing?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is two elderly women doing?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is cute doing?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"how many people are singing?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"how many people are dancing?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"what do color sing along?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"rainbow\"\n  },\n  {\n    \"question\": \"what sing along rainbow?\",\n    \"video_name\": \"video8437\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a man on a stage doing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person with blue colour dress doing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man on stage doing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a old man in blue color dress doing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a old person in blue color dress doing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a middle-aged man in a blue shirt doing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is good doing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is an old man doing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a motivational speaker in a blue shirt doing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a old man in blue color dress cloth doing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man on a stage talking to?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what do a old man in blue color dress standing?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who is wearing a blue shirt is talking?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person with blue color dress talking in a stage about?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what wear midddle men is take the class of their students in very well?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"tshirt\"\n  },\n  {\n    \"question\": \"what is a man on stage telling to an audience?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what do a old man in blue color dress wearing speaking standing on topic and audience watching displaying on screen?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is a man on stage telling a story to?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what do a old man in blue color dress cloth speaking on watching displaying on screen?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a man giving a seminar to?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a man giving to an audience?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"seminar\"\n  },\n  {\n    \"question\": \"what is an old man wearing is talking?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what do a old person in blue color dress wearing speaking on topic and audience watching displaying on screen?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do a old man in blue color dress speaking on topic audience watching displaying on screen?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is man in a blue shirt giving before an audience?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"who talks about people with multiple marriages being unhappy and theater and history people being different?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the unhappiness of renaissance period people with first and second spouses?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a person with blue color dress talking about something?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is giving a seminar to an audience?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in a blue shirt giving a lecture before?\",\n    \"video_name\": \"video8438\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does katy perry wear?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"costume\"\n  },\n  {\n    \"question\": \"what did people dress up in?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"who is dressed as an egyptian queen while talking about a music video?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"perry\"\n  },\n  {\n    \"question\": \"what is people dressed up in egyptian clothing and doing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what brunette singer singing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"what brunette singer dancing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"who wears an egyptian costume?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"perry\"\n  },\n  {\n    \"question\": \"what is a lady wearing full dress is talking?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"solor\"\n  },\n  {\n    \"question\": \"what is a lady wearing more solor is talking?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what do a girl in queen dress sitting on chair and many soldiers standing giving displaying on screen?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"dancing\"\n  },\n  {\n    \"question\": \"what is a woman in an egyptian costume looking at?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is wearing more solor full dress is talking?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what did the interior of palace where the queen is offer?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"diamond\"\n  },\n  {\n    \"question\": \"what does a woman dressed in a colorful egyptian outift sing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who did sexy brunette singing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who did sexy brunette dancing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what is katy perry is dressed as an egyptian queen while doing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is katie perry doing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a servant hands their doing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"king\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a woman in an egyptian costume doing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girl in queen dress doing?\",\n    \"video_name\": \"video8439\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what does a man give?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"what do two men pretend to fight in?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what match?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what ground?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"what is a wrestler winning?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what does hulk hogan fight in?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who is winning his match?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who hits another man while wrestling?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many wrestlers challenge each other?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is wwe sequence doing?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is wrestlers doing?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"trade\"\n  },\n  {\n    \"question\": \"what are two professional wrestlers doing?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a wrestler doing?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what is a wrestler gets punched while doing?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is a man hits another man while doing?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who gives commentary over wrestling?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fights in the ring?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"hogan\"\n  },\n  {\n    \"question\": \"how many professional wrestlers are fighting in a ring?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men pretend to fight in a ring?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is punching another man in a wrestling match?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wrestles another man in the wwe?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"hogan\"\n  },\n  {\n    \"question\": \"who gets punched while fighting hulk hogan?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who boots his opponent in the face?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"how many professional wrestlers are wrestling in front of a large crowd?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two professional wrestlers fighting in?\",\n    \"video_name\": \"video8440\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is outside?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is shown demonstrating highlights of a video crane?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are gathering?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"pople\"\n  },\n  {\n    \"question\": \"what showcasing a large event taking place in an indian country?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"celebration\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"who are socializing?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"pople\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a video is shown doing?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what are many pople doing?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"gather\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"attend\"\n  },\n  {\n    \"question\": \"what are some guy s doing?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a robot doing?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what set?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"demontrating\"\n  },\n  {\n    \"question\": \"what are people attending?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what are standing together?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is shown in a large room?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"crane\"\n  },\n  {\n    \"question\": \"what enjoy in a party?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what do some guy s enjoy in?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what moves around the room?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"crane\"\n  },\n  {\n    \"question\": \"what is a ceremony taking?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what does the crane move around?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is a robot playing?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is taking place?\",\n    \"video_name\": \"video8441\",\n    \"answer\": \"ceremony\"\n  },\n  {\n    \"question\": \"what is there are two people doing?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is a video of a young couple embracing and some friends doing?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a boy and a girl doing?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a clip of a young man woman doing?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are a boy and a girl doing?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what does a person cover?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is a man holding close?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding a woman close?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is foreign language rap about?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many people are talking?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is about a music?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"language\"\n  },\n  {\n    \"question\": \"who covers a popular song?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many people are walking?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a young man and girl hug at night and another two men look on in?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"envy\"\n  },\n  {\n    \"question\": \"what is shown in a home movie?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"language\"\n  },\n  {\n    \"question\": \"what are a boy and a girl hugging in?\",\n    \"video_name\": \"video8442\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are wrestlers ready in?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are two wrestlers fighting on?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"surface\"\n  },\n  {\n    \"question\": \"what do two wrestlers begin?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are two guys wrestling in?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are wrestlers doing?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are wrestlers fighting in?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who stays on the groud while another one resumes a position on top of him?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"how many wrestlers are fighting on yellow surface?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when are fighting with each other in wrestling?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many guys are wrestling in a competition?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a wrestler stay on while another one resumes a position on top of him?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"groud\"\n  },\n  {\n    \"question\": \"how many wrestlers begin a wrestling match?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is holding another man from behind?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are competing in a wrestling match?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many man s are fighting with each other in wrestling?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a man holding from behind?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what vesus hokit in a wrestling match?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"valencium\"\n  },\n  {\n    \"question\": \"who are going at t in wrestling?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what resumes a position on top of a wrestler?\",\n    \"video_name\": \"video8443\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"what are the two ladies marinating by adding salt to it?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what do the women in the apron talk about the food in?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what do the women in the apron talk about in the bowl?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many womean dress in white apron in the kitchen they just finished introducing themselves and started to talk about marinating chicken meat?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women making a dish using as one of the ingredient?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what do the women in the apron stand near?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what are two women making using chicken as one of the ingredient?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what are two ladies going to cook in a kitchen?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are two women in a kitchen talking about?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who dress in white apron in the kitchen they just finished introducing themselves and started to talk about marinating chicken meat?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"womean\"\n  },\n  {\n    \"question\": \"what do two middle aged women begin preparing?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what are two women giving?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"what are two ladies going to cook something in?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do the two women marinate before they begin preparing the dish?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"how many women stand with aprons?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many ladies are going to cook something in a kitchen?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are in a kitchen talking about food?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women marinate chicken before they begin preparing the dish?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many indian ladies prepare a chicken dish by opening the container of prepared chicken?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are making a dish using chicken as one of the ingredient?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many ladies are marinating the chicken pieces by adding salt to it?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are starting by showing how to marinate chicken with cilantro?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women talk about how to prepare a chicken meal in the kitchen?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are in a kitchen wearing aprons?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what were the two ladies doing?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what do two indian ladies prepare by opening the container of prepared chicken?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is the two women marinate chicken before they begin doing?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is two ladies in aprons doing?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two female chefs doing?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two womean dress in white apron in the kitchen they just finished doing?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what are two dark-haired women doing?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two women stand with aprons and doing?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are the two ladies doing?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"marinate\"\n  },\n  {\n    \"question\": \"what is two women are in a kitchen doing?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"how many women are giving a cooking demonstration?\",\n    \"video_name\": \"video8444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is perfo?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something in a stage?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man performing?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a black comedian perform for?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are people watching?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"who is performing on a stage?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs for a crowd?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"comedian\"\n  },\n  {\n    \"question\": \"what is a comedian telling?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"joke\"\n  },\n  {\n    \"question\": \"who do people enjoy the performance of?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who tells jokes on stage in front of an audience?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is crowd doing?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a comedian doing?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a comedian doing?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what does a comedian make jokes about?\",\n    \"video_name\": \"video8445\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is falling down song playing during spongebob?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what does sponge bob talk to patrick?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"patrick\"\n  },\n  {\n    \"question\": \"who is played in the background?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what plays to some animation?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"how many cartoon characters are singing?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who holds the net in his hand?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what did spounge bob sync to?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who talks to patrick then patrick leaves?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"sponge\"\n  },\n  {\n    \"question\": \"what is a video mix where spongebob singing?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"viral\"\n  },\n  {\n    \"question\": \"who synced to a song?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"spounge\"\n  },\n  {\n    \"question\": \"what is sky falling down playing during spongebob?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is talking to patrick while holding a butterfly net?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what is playing while spongebob is played in the background?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a song play to?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who talks to patrick?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what is a song doing?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is sky doing?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is spongebob doing?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is spongebob played in?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is talking to patrick?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are singing?\",\n    \"video_name\": \"video8446\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many children are on stage singing in front of judges while their family looks on from backstage?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many young people perform a song on the show the voice?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many children are singing on a stage?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when are three children singing in front of judges while their family looks on from backstage?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many people are singing on the stage?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who sings slowly for a huge audience and a panel of judges?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when are three children singing?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are three people singing?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are three kids performing?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"how many kids are performing a song?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a group of children doing?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are 3 young children doing?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what are three kids doing?\",\n    \"video_name\": \"video8447\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is manipulating a skinny wire so that it loops over itself while narrating what he is doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wires some fishing line?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is trying to make a knot?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to tie a fishing knot?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"manipulate\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"who is talking about twisting a piece of wire?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to tie a knot on a fishing wire?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is demonstration of doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking about wire?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is teaching how to tie a fishing knot?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is tying a knot?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who ties a fishing knot?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating a skill?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what do man showing how to twist?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who displays how to tie three loops in a wire?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a person wires?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what does a man tie?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"what is a man tying?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"knot\"\n  },\n  {\n    \"question\": \"what is a man demonstrating?\",\n    \"video_name\": \"video8448\",\n    \"answer\": \"skill\"\n  },\n  {\n    \"question\": \"what are president obama and his family doing?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is obama and his family doing?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man sings for a crowd doing?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is president obama doing?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what does president obama watching singing?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"who sings for a crowd including the president?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man performing at?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man singing before?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when is a man singing?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who does a black man sing for?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what does president obama watch singing live?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who sings for the president?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is performing at stage?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing before a crowd?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing on stage to many people?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man singing to many people?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing or performing on stage for the president and his family and other people?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who watches someone singing live?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what listens to singer?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who obama watching singing program?\",\n    \"video_name\": \"video8449\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what has a helicoptor left two skiers one in yellow and one in red on?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who are air dropped?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what did a helicopter and a snow cover with two men talking?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who has left two skiers one in yellow and one in red on a mountain?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"helicoptor\"\n  },\n  {\n    \"question\": \"what do two mountain surfers review while discussing about it?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"location\"\n  },\n  {\n    \"question\": \"what do a couple of snowboards land on top of a snowy mountain by helicopter and over look?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what are two mountain surfers dropped?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what a elecopter moving in air and red and yellow dress man hand touching speaking in snow land wearing displaying on screen?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"helmet\"\n  },\n  {\n    \"question\": \"what are two skiers one in yellow and one discussing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what is a yellow helicopter doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"drop\"\n  },\n  {\n    \"question\": \"what is a elecoptor doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a elecopter doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are one in a red jacket doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"decide\"\n  },\n  {\n    \"question\": \"what is a helicopter and a snow covered mountain with two men doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what have two mountaineers jumped from to the snow filled mountain in fully covered suits?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is two mountain surfers are air dropped and then they review the location while doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is two guys on top of a snow mountain doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a yellow helicopter doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man in a yellow and man in a red jacket pointing and doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a helicoptor has left two skiers one in yellow and one in red on a mountain and they doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a flight is on the skyanother two man doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a red jacket man doing?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two mountain surfers?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what are two male snowboarders outside on having a conversation?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who is a yellow helicopter flying with a red coat?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being dropped off on top of a snowy mountain?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"helmet\"\n  },\n  {\n    \"question\": \"what do a elecoptor moving in air and red dress person wearing in snow land standing showing hand displaying on screen?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"helmet\"\n  },\n  {\n    \"question\": \"what did a yellow helo hovers above then two men on a snow cover?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"mountaintop\"\n  },\n  {\n    \"question\": \"how many mountain surfers are air dropped?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did a man in a yellow and man in a red jacket pointing cover?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"how many mountain surfers review the location while discussing about it?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many mountaineers have jumped from the helicopter to the snow filled mountain in fully covered suits?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many male snowboarders are outside on a mountain having a conversation?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a elecoptor moving in air and red dress person wearing helmet in standing showing hand displaying on screen?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what did a man in a yellow and man in a red jacket talking about a snow cover?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what do a elecoptor moving in air and red dress person wearing helmet in snow land standing showing displaying on screen?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a flight on two man talking on the floor?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"skyanother\"\n  },\n  {\n    \"question\": \"what is a yellow helicopter dropping off a guy on?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what are two male snowboarders outside on a mountain having?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is dropping off a guy on a mountain?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"who review the location while discussing about it?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who is a yellow helicopter dropping off on a mountain?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who are outside on a mountain having a conversation?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is flying a person with a red coat?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is on the skyanother two man talking on the floor?\",\n    \"video_name\": \"video8450\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what is a runner doing?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a track competition with black runners and crowd doing?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is there are eight track runners doing?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do runners compete on while people in the stadium cheer?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"how many men s outdoor qualiers event has been conducted?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"2013\"\n  },\n  {\n    \"question\": \"what are the athletes running through the tracks?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do a track with black runners?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what is enjoying a seven man track race?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what are more players running on?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what help the others?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"runnig\"\n  },\n  {\n    \"question\": \"what does 2013 men s outdoor has been conducted?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what a group of young athletes race around?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what did a number of boys running race inside grind watching game shouting displaying on screen?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what did a number of boys running race inside grind audience watching shouting displaying on screen?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is player with red shorts?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"winner\"\n  },\n  {\n    \"question\": \"who races down the track ahead of the other runners?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"runner\"\n  },\n  {\n    \"question\": \"what does a runner wearing red outrun all of the other runners on?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what sports contacts an d that man fell down?\",\n    \"video_name\": \"video8451\",\n    \"answer\": \"runnig\"\n  },\n  {\n    \"question\": \"who is playing with toys?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is being played with by a child?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is playing with toy?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is showing the fruit mixer?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with gizmo?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who plays with cooking toys?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is making juice using vegetables?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does child use a toy to mix up?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what does child use to mix up some fruit?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a girl making using vegetables?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what is a girl showing?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"who makes food?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl preparing?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a kid playing with?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is child playing with?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"gizmo\"\n  },\n  {\n    \"question\": \"what does girl play with?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what did the toy seem to create?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what seemed to create a mess?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a girl make?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who uses a toy to mix up some fruit?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is child doing?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a greyish colored cat doing?\",\n    \"video_name\": \"video8452\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who is giving an interview?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who points a gun at another man?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man point a gun at?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man point at another man?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is talking into a microphone?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is reporter doing?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man point?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a celebrity giving?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who points a gun at another persons face?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a woman in bollywood?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a news show cover?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"bollywood\"\n  },\n  {\n    \"question\": \"what is a woman talking into?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who stars?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what covers a bollywood movie?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who points a gun?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a visual treat for the viewers?\",\n    \"video_name\": \"video8453\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about love vs judgement?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman anchoring?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is anchor doing?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"anchor\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is anchoring a show?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving commentary?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"presenter\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about love?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about judging people?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who commentating on people?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman presenter giving?\",\n    \"video_name\": \"video8454\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives down the road in a car?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car down the road?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car down a road?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about is sports car in spanish?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car while being commentated?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about driving a sports car?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a guy drive a car down?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a guy drive down a road?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving a car down?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man driving down a road?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving while being commentated?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving with a voice over?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving with over?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who test driving new car?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car very fast?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives his car?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do man test driving?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving very fast?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person driving?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drives a car down a road?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man driving down the road?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man test doing?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is spanish guy talks about doing?\",\n    \"video_name\": \"video8455\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who films himself walking around his home talking to his wife?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who videoing himself talking?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking in his house?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to someone and also the camera?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man record a video of himself in?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who asks guy about a horror movie?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who records a video of himself in the kitchen?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explaining something?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who walks in a house?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is videotaping himself?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is recording himself talking?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man walk in?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what do a boy explain?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what a man films himself walking around talking to his wife?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is a man walking in?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who talks to the camera about a horror movie buff?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about how his girlfriend is obsessed with horror movies?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and a women doing?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a man films himself doing?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"videotape\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8456\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is man kayaking and a man doing?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is kayaking in a body of water?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man in a kayak rowing in?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man paddling a kayak on?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"who is paddling a kayak on a river?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man paddling on a river?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"who paddles in a kayak?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown in slow motion?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"who paddles a kayak?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is paddling in a kajak?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kayaks in a river?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is paddling a row boat?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kayaking in the water?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a rowing machine?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a kayak shown in?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"who is in a kayak?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man kayak in?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what does a man paddle in?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what is a man paddling in?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"kajak\"\n  },\n  {\n    \"question\": \"what is a man paddling?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does a man paddle?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what is a man using?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"row\"\n  },\n  {\n    \"question\": \"who is kayaking?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"paddle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is this is a man doing?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8457\",\n    \"answer\": \"row\"\n  },\n  {\n    \"question\": \"how many wrestlers stand in an arena in a video game?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are getting ready to fight in ring in a video game?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers look at each other?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers are in the ring getting ready to compete?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what animated wrestlers about to wrestle?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who face off against each other?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"where are the two competitors?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many competitors are in a field?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what clip taken inside a wrestling game?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are the two competitors in?\",\n    \"video_name\": \"video8458\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8459\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"who play in a video game together?\",\n    \"video_name\": \"video8459\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"who is playing an online computer game?\",\n    \"video_name\": \"video8459\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is rolled to decide what character goes first in mario part?\",\n    \"video_name\": \"video8459\",\n    \"answer\": \"die\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8459\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a mario video game?\",\n    \"video_name\": \"video8459\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a video game doing?\",\n    \"video_name\": \"video8459\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8459\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8459\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a white shirt man doing experiments on?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are being put inside a glucose gel?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what is an explanation explaining the process of from plants?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"extraction\"\n  },\n  {\n    \"question\": \"who is talking about plant tissue and other experiments?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are plant tisses being parted in?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what undergoes to be cloned?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what does a narrator explain?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"extraction\"\n  },\n  {\n    \"question\": \"who explains the extraction process?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what are being parted in a dish?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"who takes tissue from a plant and places in a dish with alcohol then in a glucose gel?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"technician\"\n  },\n  {\n    \"question\": \"what do laboratory workers extract from plants while a narrator explains the extraction process?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"tissue\"\n  },\n  {\n    \"question\": \"who extract tissue samples from plants while a narrator explains the extraction process?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"laboratory\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a white dress color cloth doing?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an explanation doing?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone in a lab doing?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man with an accent doing?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who a white dress color cloth wearing doing experiment displaying on screen?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"laboratory\"\n  },\n  {\n    \"question\": \"who demonstrates the process of cutting up plant material for experimental growth in a clean white lab?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who takes an orchid sample and extracts a plant tissue sample?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what runs in the background showing each step as a white shirt man describes a plant and places in a dish with alcohol?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is the scientist doing the plant tissue extraction process in a highly sterile condition in?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"what is explaining the process of tissue extraction from plants?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"explanation\"\n  },\n  {\n    \"question\": \"what is in a clean white lab a man demonstrates the process of doing?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what a white dress color cloth wearing person inside laboratory doing displaying on screen?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what does a video run in the background showing as a white shirt man describes a plant and places in a dish with alcohol?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what a technician extracts plant tissue samples in petri dishes in?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"laboratory\"\n  },\n  {\n    \"question\": \"who is doing the plant tissue extraction process in a highly sterile condition in the lab?\",\n    \"video_name\": \"video8460\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"who is speaking to the camera?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman hosting?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl speaking to?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do two children and a woman speak to?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is hosting a show?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are members of a family speaking to?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"how many children discuss a person named rosie?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who sit in front of a camera in the tlc show 19 kids and counting?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"duggar\"\n  },\n  {\n    \"question\": \"who is talking to two children?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two kids doing?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the duggar children sit in front of a camera in the tlc show 19 kids and doing?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"count\"\n  },\n  {\n    \"question\": \"what are some kids doing?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy and girl doing?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is boy and girl doing?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are members of a family doing?\",\n    \"video_name\": \"video8461\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man narrate?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is shooting arrows?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing minecraft video game?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who narrates a video game?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"videogame\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8462\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"when solstace at stonehenge?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"who is displayed?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"stonehenge\"\n  },\n  {\n    \"question\": \"what is sun rising at?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"stonehenge\"\n  },\n  {\n    \"question\": \"what did still shoot of at night?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"stonehenge\"\n  },\n  {\n    \"question\": \"what did winter solstace at?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"stonehenge\"\n  },\n  {\n    \"question\": \"what is rising at stonehenge?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"what is given in relationship to its astronomical importance?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what sets behind stonehenge?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"when did still shoot of stonehenge?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what does a video show several images of?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"stonehenge\"\n  },\n  {\n    \"question\": \"what is video showing a picture of?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"stonehenge\"\n  },\n  {\n    \"question\": \"what shows several images of stonehenge?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is information given in to its astronomical importance?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"relationship\"\n  },\n  {\n    \"question\": \"who does the sun set behind?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"stonehenge\"\n  },\n  {\n    \"question\": \"what is text doing?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is sun doing?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"rise\"\n  },\n  {\n    \"question\": \"what is a video of the sun doing?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"rise\"\n  },\n  {\n    \"question\": \"what is a video of the stone hedge with the sun doing?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"shin\"\n  },\n  {\n    \"question\": \"what is showing a picture of the stonehenge?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is shown with information about the winter solstice?\",\n    \"video_name\": \"video8463\",\n    \"answer\": \"stonehenge\"\n  },\n  {\n    \"question\": \"who is explain some thing in the stage?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the cnn republican debate wolf blitzer seem zooming up to a older man with white hair and a women with?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who introduces the republican party political debate on tv?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is many people doing?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some award show glimpses shown on cnn tv where two hosts doing?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what are a man is explain some thing in the stage and people doing?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is donald trumps son doing?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a republican debate live on cnn the camera doing?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what are lots of people doing?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a republican debate live on the camera is panning around the room to show the crowd and stage?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"cnn\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"who trumps son sitting in the audience of a presidential debate?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"donald\"\n  },\n  {\n    \"question\": \"what do a republican debate live on cnn is panning around the room to show the crowd and stage?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what live on cnn the camera is panning around the room to show the crowd and stage?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"debate\"\n  },\n  {\n    \"question\": \"what show glimpses shown on cnn tv where two hosts are presenting?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"award\"\n  },\n  {\n    \"question\": \"what do a republican debate live on cnn the camera is panning around to show the crowd and stage?\",\n    \"video_name\": \"video8464\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what match between two teams and the server scores?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"who serve the volley ball?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did the hand ball players perfomed in very well in?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"cort\"\n  },\n  {\n    \"question\": \"what do the boy serve?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"volley\"\n  },\n  {\n    \"question\": \"what did a get?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what gets finished?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who hits?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a boy bounce?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"volley\"\n  },\n  {\n    \"question\": \"what does a white dress player hit the ball and black dress player missed?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what is there is a boy doing?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is a large group of boys doing?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two teams doing?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a volleyball player doing?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"who has served a volleyball from afar the other team has failed to return the ball?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what has a young boy served a volleyball from afar the other team has failed to return?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what has a young boy served from afar the other team has failed to return the ball?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what has a young boy served a volleyball from the other team has failed to return the ball?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"afar\"\n  },\n  {\n    \"question\": \"what has a young boy served a volleyball from afar has failed to return the ball?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"who wears white dress hits the ball in stadium?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is serving an ace in a gymnasium?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what does a young volleyball player in a white shirt spike?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"who then makes a shot from the side of the court?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a man wear hits the ball in stadium?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what does a guy serve up during a volleyball match?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"who bounces a volley ball?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do a group of young people play a game of?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"who serves up a volleyball during a volleyball match?\",\n    \"video_name\": \"video8465\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"when does a band play guitar and drums?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is shown playing chords beside a keyboardist?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what plays guitar and drums on stage?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is playing guitar on stage?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is music band doing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a musical group doing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a bass player is shown doing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who plays guitar on stage?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what plays music?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are all singing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a band play?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is playing a show?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a band play on stage?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when is a person playing guitar?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who are showing performing a song?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are men playing instruments in?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a person playing on stage?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a band playing for?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is playing on stage?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing for a concert?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing on a stage?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are band members showing performing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"when is a band playing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are band members doing?\",\n    \"video_name\": \"video8466\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does food fry in a?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"hash\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what a man cooks?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does someone grill?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what does food fry in a pan of?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who prepares potato cakes to be cooked in hot oil?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who shows how to fry hashbrown cakes?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do someone cooking something in a hot pan with?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a cook prepare potato cakes to be cooked in?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a cook prepare to be cooked in hot oil?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is being made in a frying pan?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who grills cheese in butter?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is frying onions in a pan?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what tutorial on making small hashbrowns?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what melted in a sauce pan?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what did cheese melt in pan?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is cooking hash browns?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cooks a fried potato?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what frying in a pan of oil?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a recipe being made in pan?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"who is cooking hashbrowns?\",\n    \"video_name\": \"video8467\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this person is test doing?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what drive a car?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what does a person drive down the road in a video game?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"what does not work?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what drives on the otheside of the road?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do an anime drive?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is test newcasting about vehicle?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates a video game?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man narrate?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who drives a jeep down the road in a video game?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being driven in a video game?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about video game play while driving car in the game?\",\n    \"video_name\": \"video8468\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is showed slowly?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a very little small cute birds inside?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"who whispers something to three birds?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is on the handle another also hanging?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a person showing bunch of parrot closer to?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do a white bird a bird with a green face and a gray bird sit in?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"who do two parrots in a bird cage one white chick and on?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"adult\"\n  },\n  {\n    \"question\": \"what sits on a perch in a cage while a green bellied bird sits on a perch and another peeks its head out of a box?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a baby bird with white feathers and a yellow beak looking at?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"owner\"\n  },\n  {\n    \"question\": \"what are three birds sitting in a cage two sitting on while one is in card board house?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"branch\"\n  },\n  {\n    \"question\": \"how many birds are shown in a cage while a man whispers something to them?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are three birds shown in while a man whispers something to them?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what are a white bird and a colorful bird in?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a white color bird doing?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are white and colorful parrots doing?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a bird is on the handle another also doing?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a baby bird with white feathers and a yellow beak doing?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a cage with a green and yellow bird doing?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the small white bird is in the house and doing?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"stay\"\n  },\n  {\n    \"question\": \"what is a chicken baby white color and color bird doing?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is three birds doing?\",\n    \"video_name\": \"video8469\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many men wrestle in an amatuer event?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are wrestling infront of an audience?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"how many guys are wrestling with eachother in a tournament?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers grapple on a mat?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a wrestling match taking place in?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what is taking place in a gym?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are two men wrestling infront of?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what match?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"how many guys are wrestling?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are wrestling?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are wrestling strongly?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a wrestling match taking in a gym?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what do two wrestlers grapple on?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is 2 guys doing?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a video of men doing?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is there are two people doing?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is there s two men doing?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video8470\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman drinking a glass of?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"wine\"\n  },\n  {\n    \"question\": \"who is talking while holding a wine glass?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who is talking about the republican national convention?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman with a drink in hand doing?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"flub\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a woman in a yellow top doing?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is drinking a glass of wine?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is holding a cup?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about republicans?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about politics?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who holds a cup?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks about the republican national convention?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman hold?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is a woman holding?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"who is performing live?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman in a yellow top holding?\",\n    \"video_name\": \"video8471\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are people being taught in?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what do mean and women learn in?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"who is teaching computer skills of technology?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what did a video about giving kids unlock tablets at?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who talks about giving children control over their technology devices?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many students are on a laptop computer?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a teacher teaching computer skills of?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what learn in class?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"mean\"\n  },\n  {\n    \"question\": \"what are persons attending with laptops?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"what work on computers and electronics?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"mean\"\n  },\n  {\n    \"question\": \"what are the students working on computers in?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what are students working on?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what are persons doing?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"attend\"\n  },\n  {\n    \"question\": \"what are some students doing?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are students doing?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are the students doing?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is a teacher doing?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a group of students is shown doing?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8472\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what has its headlights on?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being shown driving down a virtual street?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a visualization is played doing?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a vehicle simulation doing?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a computer generated graphic of a car doing?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a graphics screen doing?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what is the screen doing?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is a gray car moves between blue borders on a reflective road doing?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a step by step sequence from an animation and graphics tool doing?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person is carefully doing?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what moves along a path in a virtual reality like world?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is progressing forward there is text on the screen?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is person carefully driving the new gray car on?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what did computer generate example of a car heads up?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does a moving object or something in the road see in the road side?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"who is carefully driving the new gray car on a street?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what drives down a road that has digital trees to both sides of it?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car drive down passing by black trees?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"what is the screen scrolling down at a very slow speed is blue?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what does a camera move along in a virtual reality like world?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what rides slowly down a straight highway with trees?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving down the highway with blue lines?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is scrolling down at a very slow speed the background is blue?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a computer simulation in blue of a car driving with a head up?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a car driving down with blue lines?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what generated example of a car heads up computer display?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what drives down a virtual landscape passing by black trees?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is playing as quirky music plays in the background?\",\n    \"video_name\": \"video8473\",\n    \"answer\": \"simulation\"\n  },\n  {\n    \"question\": \"what are a choir and pianist doing?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"consist\"\n  },\n  {\n    \"question\": \"what is a group of singers are on stage doing?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is people in church doing?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is singing together?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"choir\"\n  },\n  {\n    \"question\": \"when are a group of singers performing a musical piece?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"accapella\"\n  },\n  {\n    \"question\": \"who is on a talk show?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a choir sing alongside?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what are a choir and pianist performing?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what sing alongside a piano?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"choir\"\n  },\n  {\n    \"question\": \"what plays a song in a room?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a band play a song in?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a band play in a room?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is sing while being led by the director?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"choir\"\n  },\n  {\n    \"question\": \"what do men and women sing in a choir on stage with?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what are a group of singers on stage performing?\",\n    \"video_name\": \"video8474\",\n    \"answer\": \"piece\"\n  },\n  {\n    \"question\": \"what is person presenting all of on the web site?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is there is a man with gun doing?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is tropic thunder scenes play in preview menu doing?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a movie website that doing?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a movie scene doing?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"bomb\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is different videos of motion pictures in a software for doing?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what did a movie website that is showing?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what do several images appear in a collage appears next to individual images?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who is presenting the video clips on movie clips site?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do several images appear in text appears next to individual images?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"collage\"\n  },\n  {\n    \"question\": \"what does see highlight being played about?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is presenting all of his videos on the web site?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what play in preview menu showing actors talking?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"thunder\"\n  },\n  {\n    \"question\": \"what did several clips for the movie tropic all playing simultaneously?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"thunder\"\n  },\n  {\n    \"question\": \"what is person presenting on movie clips site?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what website that is showing different movie choices?\",\n    \"video_name\": \"video8475\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are soccer players doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is scene from a soccer game after doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is girls on a soccer team doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is a commentator doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"who celebrate after a victory?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is women soccer team celebrating doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is group of doing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what do a group of female soccer players celebrate?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what do female soccer players celebrate after?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"victory\"\n  },\n  {\n    \"question\": \"who is discussing a soccer game?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"what are women celebrating?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"victory\"\n  },\n  {\n    \"question\": \"what is a commentator discussing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do women play?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who are celebrating?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is celebrating?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8476\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a panoramic view of a high tech city is seemed to be doing?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"amaze\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who rides a helicopter through the city in awe?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is awesome?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"who is giving bird eye view of the city?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is shown in a film that is taken from a helicopter or airplane?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what limits photograph taken from high point in day time?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what pans over a view of the city landscape?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is an aerial shot of a city being shown from?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is a city shown in that is taken from a helicopter or airplane?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what do an aerial view of a city take from?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is a person giving bird eye view of?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is the city being filmed from above by?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is being filmed from above by a helicopter?\",\n    \"video_name\": \"video8477\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what does cat licking a baby s?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"who is a kitten licking?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who does the cat make laugh?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what makes a baby laugh?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what licks a baby s toes?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a pussy cat doing?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"lick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a kitten doing?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"lick\"\n  },\n  {\n    \"question\": \"what is a dad doing?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a cat makes a baby laugh by doing?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"lick\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"lick\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who is a cat licking?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is cat doing?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"lick\"\n  },\n  {\n    \"question\": \"what is licking a baby?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is shown getting the cat s toes licked by a cat?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is holding a baby who is laughing at a cat licking its foot?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a pussy cat licking the legs of?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who giggles while the cat licks his foot?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is licking the legs of a baby?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is laughing while a cat licks his foot?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what makes a baby laugh by licking a baby?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is holding his baby while the cat licks his toes and makes him laugh?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"dad\"\n  },\n  {\n    \"question\": \"what is licking a baby s foot?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is licking a baby s toes?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who does a cat lick s toes?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a cat make by licking a baby?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what licks a giggling babies feet?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is a cat licking s foot?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a dad holding while the cat licks his toes and makes him laugh?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a cat licking s toes?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a cat licking a baby s?\",\n    \"video_name\": \"video8478\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is chicken cooked by?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is cooked by a woman?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what does someone thaw in a sink?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a woman mix chitlins with?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is talking about a recipe?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman prepare to cook?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"holiday\"\n  },\n  {\n    \"question\": \"what does someone thaw meat in?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what is a hand separating in a metal sink?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is talking about chitlins?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cleans chitlins in the sink?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is separating meat in a metal sink?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is showing a recipe being prepared?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who demonstrates how to cook chitlins?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who thawing meat in a sink?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who prepares to cook a holiday meal?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is handling raw meat?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what looked delicious?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is the video doing?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"thaw\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"loosen\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what is a person handling?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is showing how to cook?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8479\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewed?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy eating?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is shown sitting?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are children eating?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do some children try outside?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man sitting in talking?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are kids eating?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who seems to be explaining something here?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating some food?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are young children eating?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man seem to be explaining here?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is talking in a room?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are young children doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are impoverished children doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is few small people doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a middle aged man doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man seems to be doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are small kids doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is sitting in a room talking?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two kids eating on after which a man seated is talking?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"roadside\"\n  },\n  {\n    \"question\": \"how many kids are eating on roadside after which a man seated is talking?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two kids doing?\",\n    \"video_name\": \"video8480\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a woman in?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman speaking about?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who is in the pool?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about the girls?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking about fashion?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing shoe ads?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gives the latest beauty rundown?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"blogger\"\n  },\n  {\n    \"question\": \"who are getting out of the pool?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is reporting on keds commercials?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a type of shoes?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who speaks to a woman at poolside?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about taylor swift?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who celebs?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is woman playing?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a woman discussing?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"shoe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is reporter doing?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8481\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is the grand show of function?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what is an advertisement the grand show of?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"function\"\n  },\n  {\n    \"question\": \"what shows several video clips?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do late night sneak?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"preview\"\n  },\n  {\n    \"question\": \"what are joan rivers and cheryl crow on david letterman?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do a late show?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"title\"\n  },\n  {\n    \"question\": \"who do a crowd cheering for late show?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what are a group of people cheering in?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"when sneak peek preview?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what is the late show comes to a close by doing?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a crowd doing?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is a crowd doing?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what plays out for the late show with david letterman?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what does the announcer for the late show with david letterman talks about the guests for tomorrow s?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who are joan rivers and cheryl crow on s show?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"who does an advertisement play out for the late show with?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"what comes to a close by panning over the audience?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is clapping?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what does the late show come to by panning over the audience?\",\n    \"video_name\": \"video8482\",\n    \"answer\": \"close\"\n  },\n  {\n    \"question\": \"what did water being pour into with a powdered substance?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a baking mix stirred in while oil is added?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is mixing ingredients for a recipe?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person mixing ingredients for?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is mixing ingredients in a bowl?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is added?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is teaching how to cook?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman prepare?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who is mixing ingredients together?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are flour mixing with?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are mixing with water?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"who is making dough?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is stirred in a bowl while oil is added?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"baking\"\n  },\n  {\n    \"question\": \"what poured into a bowl with a powdered substance?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"who prepares a dough?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is slowly doing?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are flour doing?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is someone mixing ingredients in?\",\n    \"video_name\": \"video8483\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is this is a small child doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a kids doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kid live doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is small girl doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who live streaming a videogame?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who also discusses a video game?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what does a boy say he would rather play?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a small boy describing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who makes hot dogs?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who do kid live streaming?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"videogame\"\n  },\n  {\n    \"question\": \"what does a child also discuss?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who stands in front of a grill?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what did a child turning hotdogs into a game let a play?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is grilling hotdogs?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who says he would rather play a video game?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is describing a video game?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is doing something misschieviously?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is recording himself playing a game?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what did a child doing a let s play?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is the boy doing misschieviously?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a child playing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a kid playing?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a kids talking about?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a young boy play?\",\n    \"video_name\": \"video8484\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are clips of a movie doing?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what did the man jump for?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"joy\"\n  },\n  {\n    \"question\": \"who jumped for joy?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings in a music video?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the telugu tv channel program?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is following a woman?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are various scenes doing?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is a man following?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are clips of a movie playing in with music?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what are ads shown on in a foreign language?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"what video and song?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are clips of a movie playing in the background with?\",\n    \"video_name\": \"video8485\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a vulgar cartoon doing?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is cartoon clip for kids doing?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is cartoon males doing?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"swear\"\n  },\n  {\n    \"question\": \"what is a cartoon on a young guy doing?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"curse\"\n  },\n  {\n    \"question\": \"what are animated characters doing?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"swear\"\n  },\n  {\n    \"question\": \"what is video of a cartoon doing?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"who walks up stairs?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what short video game animation?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"parody\"\n  },\n  {\n    \"question\": \"who gets injured in a video game?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is talking about beans?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who breaks his own legs?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is carrying a gun?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what animation parody?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a cartoon character carrying?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who falls?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a cartoon character break?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"leg\"\n  },\n  {\n    \"question\": \"who felt down?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who breaks both of his legs?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what swearing and walking up stairs and hurting themselves?\",\n    \"video_name\": \"video8486\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who do soccer players wrestle over the ball?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"eachother\"\n  },\n  {\n    \"question\": \"who wrestle eachother over the ball?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do soccer players wrestle eachother over?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is two rugby teams doing?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what match being played between a white team and a blue team?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are two teams playing on a field one man falls?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are two teams playing soccer on one man falls?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what scuffle one team in blue the other in white?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many teams are playing soccer on a field one man falls?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are playing a rugby game in the ground?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what is nice game played by players doing?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two different teams one dressed in white and one dressed in blue doing?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a two team doing?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of players doing?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a blue and white color two team boys players doing?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what a blue and white color two team boys players playing watching running throwing dashing clapping hands displaying on screen?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who are two teams playing soccer on a field falls?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a base ball game being played between two teams in?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are a group of players playing foot ball in?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are two teams playing soccer on a field?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did football get?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what are two teams playing?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"who tackle?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what played by players wearing blue shirts and players wearing white shirts on opposite teams?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are some people playing rugby on?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what got the goal?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are two different teams one dressed in white and one dressed in blue playing?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are a group of players playing in the ground?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"where are some people playing rugby?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what do a blue and a white soccer team have?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what are a group of players playing in with a ball?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are a group of players playing in a ground with?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are a two team playing a rugby game in?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who drops the ball then it is picked up by another player who scores?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is scored in a rugby match?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what are a two team playing in the ground?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does rugby player drop then it is picked up by another player who scores?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"how many teams are playing football?\",\n    \"video_name\": \"video8487\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman ie doing?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about makeup jars?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"who make uo?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving tips on how to pack things such as face cream eye cream or tooth paste?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving a review of jars for beauty products?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about small jars for makeup?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who ie explaining about a cosmetics equipment?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about facial care products?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about cosmetic products?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about makeup?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who demonstrates how to use various products?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman holding?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"what does a beautiful brunette talk about?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is holding a package?\",\n    \"video_name\": \"video8488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing a delicious dish with cleaned prawns and other ingredients?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a bowl prawn mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a bowl prawn mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a bowl prawn mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who holds a bowl of shrimp over a pot with yellow liquid?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a white bowl full of shrimp over another white bowl of melted butter?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who prepares a seafood soup in a foreign language?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is about to dip shrimp into some butter?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do shrimp in a bowl being held over with melted butter in it?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does a man prepare in a foreign language?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"what is someone preparing with cleaned prawns and other ingredients?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a man prawn and a bowl mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a man prawn and a bowl mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a man prawn and a bowl mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who bowl being held over a pot with melted butter in it?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is putting a cooked shrimp meal into a white bowl?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who explains the process of how to cook great food?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is being shown?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is explaining in a foreign language how to make buttered shrimp?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a tv channel named how to cook great foodcom doing?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man prawn and a bowl doing?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a bowl prawn doing?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who prawns?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8489\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what shown here?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"where are lyrics from a rock song superimposed?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what is playing while pictures of exploding bombs are displayed?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are lyrics from a rock song superimposed over?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what are photographs of warfare scenes displayed with?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what shows the lyrics to a popular song?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is playing while lyrics are shown?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what lyrics and photo slide show?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what pictures with explosions?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what do the words flash on?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is being detonated?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"bomb\"\n  },\n  {\n    \"question\": \"what is stills of places doing?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"explode\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8490\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is a news report shown of pulling a gun on kids?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"cop\"\n  },\n  {\n    \"question\": \"who pulls a gun at a swimming pool?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what shows a cop pulling a gun on a black teen?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is shown of a cop pulling a gun on kids?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"who acted inappropriately?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who displays a story about police brutality?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is pinning a woman to the ground?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who draws a gun on a 14 year old girl and a reporter talks about it?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"policeman\"\n  },\n  {\n    \"question\": \"who is a police officer pinning to the ground?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a reporter display a story about?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"brutality\"\n  },\n  {\n    \"question\": \"what does a police officer pull at a swimming pool?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a police officer pinning a woman to?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what cast showing police brutality?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is arresting a young woman?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"cop\"\n  },\n  {\n    \"question\": \"who is reporting a conflict?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a cop arresting?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a news cast showing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"brutality\"\n  },\n  {\n    \"question\": \"who talks about a woman getting abused by a police officer?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to arrest a woman which is being reported on news?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what is a cop doing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"arrest\"\n  },\n  {\n    \"question\": \"what is the news shows a cop doing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what anchor is talking?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a police officer doing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is police officer doing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a news story about a cop doing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"arrest\"\n  },\n  {\n    \"question\": \"what is a news report is shown of a cop doing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a news cast doing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a police officer doing?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"pin\"\n  },\n  {\n    \"question\": \"what is a man reporting?\",\n    \"video_name\": \"video8491\",\n    \"answer\": \"conflict\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"weird\"\n  },\n  {\n    \"question\": \"who shouts about things?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a young man doing?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"who flailing arms around?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"who is yelling?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is very excited?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flailing around his arms?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks into a web cam?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is waving his arms around?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making weird noises?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"flail\"\n  },\n  {\n    \"question\": \"what is a white guy exclaims while doing?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"whip\"\n  },\n  {\n    \"question\": \"what is a man surges his strength while doing?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"flail\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"who surges his strength while talking hypermaniacally imploring the viewer to click for more videos?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who exclaims while making other excited arm motions?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who makes lots of odd hand motions?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"manchild\"\n  },\n  {\n    \"question\": \"what does a man surge while talking hypermaniacally imploring the viewer to click for more videos?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"strength\"\n  },\n  {\n    \"question\": \"who speaks excitedly in a funny voice?\",\n    \"video_name\": \"video8492\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a polar bear dive into?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is playing in the water?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what does the brown dog jump in?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what plays with a toy?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is dog jumping into?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a polar bear playing in?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a polar bear excite?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what takes a plunge?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what excites the audience?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is in the water?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what splashes in the water?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what does a polar bear splash in?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a bear in?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what struggles to get out?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what swim?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a polar bear play with?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what jumps in the water?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a polar bear in a park eat?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what dives into water?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is an exper diver and swimmer that it takes out the bite from deep water?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is the dog an exper diver and swimmer that it takes out from deep water?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bite\"\n  },\n  {\n    \"question\": \"what is the dog an exper diver and swimmer that it takes out the bite from?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what seems like the bear is trying to catch something in the water?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what jumps into the water at a zoo and retrieves a toy?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is diving in to the water in order to catch a fish?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what does a polar bear jump into at a zoo and retrieves a toy?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is being seen caputuring a fish for dinner?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is splashing in water as tourists are heard talking in voice over?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what swims in the water to grab the object?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a polar bear splashing in as tourists are heard talking in voice over?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do a bear catching as spectators watch?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what does the brown dog swim in the water to grab?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what jumps into water then plays around while people watch?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is trying to catch something in the water?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is a white color bear swimming in?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does polar bear jump into then plays around while people watch?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is jumping into the water?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does the brown dog swim in to grab the object?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a polar bear take?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"plunge\"\n  },\n  {\n    \"question\": \"what is a polar bear doing?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is dog doing?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a bear doing?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is a polar bear doing?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"splash\"\n  },\n  {\n    \"question\": \"what is a white colour bear doing?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a polar bear jumps into water and creates a splash while doing?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a bear is in the water and it seems like the bear doing?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a bear cub doing?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8493\",\n    \"answer\": \"thrash\"\n  },\n  {\n    \"question\": \"who is talking about a celebrity?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is describing about hot news?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about celebrities?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is reporting on celebrity news?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing celebrity news?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl hosting?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"what is a girl describing about?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a woman reporting on?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who is hosting celebrity gossip show?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman discussing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"what is a woman telling?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is telling the news?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about gossip news?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a girl talking about?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who is talking about hot off the net?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"recount\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the start of a show called hot off the net with a women doing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about celebrity gossip on a show?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talks about how a girl was caught doing?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"cheat\"\n  },\n  {\n    \"question\": \"who talks about how a girl was caught cheating?\",\n    \"video_name\": \"video8494\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a gentleman with black court explaining about?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a person turn a tray inside of?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"fridge\"\n  },\n  {\n    \"question\": \"what does a person look at all the different items of food in?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"fridge\"\n  },\n  {\n    \"question\": \"what is sitting inside of a tupperware bowl?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"who explain and how is prepare the food?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are many plastic trays kept a hand is turning one tray which contain number bottles with some stuff filled and closed in?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"cupboard\"\n  },\n  {\n    \"question\": \"who looks at food items on a lazy susan inside a refrigerator?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who turns a tray inside of a fridge?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a fulkl refridgerator with a lot fo?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"organizer\"\n  },\n  {\n    \"question\": \"what are kept a hand is turning one tray which contain number bottles with some stuff filled and closed in a cupboard?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what is organized in containers in a refrigerator?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what has a spinning tray with different condiments and fruit on shelf below?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"refrigerator\"\n  },\n  {\n    \"question\": \"who looks at all the different items of food in the fridge?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are many plastic trays kept is turning one tray which contain number bottles with some stuff filled and closed in a cupboard?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does an open refrigerator have a spinning tray with different condiments and fruit on below?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"shelf\"\n  },\n  {\n    \"question\": \"what is some liquid doing?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a gentleman with black court doing?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is in a cupboard many plastic trays are kept a hand doing?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is an open refrigerator has a doing?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a refrigerator filled with shelves doing?\",\n    \"video_name\": \"video8495\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is a young girl with a large polka dot bow in her hair doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a black and white bow doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is young ethnic female in her bedroom doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl with polk a dot bow doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cute girl with nice headgear standing in a room doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a pre-teen girl with a black and white polka dot bow doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a young girl with curly dark hair doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is girl with beautiful head gear doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl in blue dress doing?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who a dot bow talking into a microphone about wanting people to watch?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who a dot bow talking into a microphone about wanting people to comment on their favorite barbie outfit?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is giving a fashion tutorial about different outfits?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who is talking about a style of makeup?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a cute girl with nice headgear standing in a room talking through?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what do girl with polk a dot bow talking into about wanting people to watch?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what do girl with beautiful head gear talking through?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a young girl with curly dark hair speaking into?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what do girl with beautiful head gear standing in?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who introduces a barbie doll fashion show?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a young girl with a large polka dot bow in talking about having a fashion show?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what do girl with polk a dot bow talking into about wanting people to comment on their favorite barbie outfit?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who dress talking over the mic?\",\n    \"video_name\": \"video8496\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what gets hit?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did a bus crash into?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a bus crash into?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are some guys driving?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a train crash into?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did some guys meet in a road?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"accident\"\n  },\n  {\n    \"question\": \"what does a video of a bus hitting a car on a street then a person try to jump into?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does driver try to do wrong things on?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what drives in front of a bus?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what shows vehicles driving on the streets?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"what did some guys meet an accident in?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who tries to do wrong things on the road?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what happens?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"accident\"\n  },\n  {\n    \"question\": \"what is a traffic camera shows vehicles doing?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a video of a bus doing?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is various clips of car accidents doing?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8497\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are few vegetables placed together like tomato and cucumber in?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what or bowl with baby tomatoescucumbers and limes?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what sit in the large white bowl?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who vegitables?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"tamato\"\n  },\n  {\n    \"question\": \"who explains the differences between red and green tomatoes?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is given on specific crops that will work for a certain garden?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"advice\"\n  },\n  {\n    \"question\": \"who presents a brief introduction to the course about gardening methods for crops that can be grown in small spaces?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is delicious and colorful food in?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is talking about different kinds of vegetable plants?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman presents a brief introduction to the course about doing?\",\n    \"video_name\": \"video8498\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a military engineer discusses doing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"scout\"\n  },\n  {\n    \"question\": \"what are an army photos doing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are photographers doing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is pictures of soldiers doing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a person use?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"where is a system developed shown that the air force used?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"iraq\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are moving on?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what is a man using?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is using a computer?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are photographers fixing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who uses a computer?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does video footage showcasing?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"surveliance\"\n  },\n  {\n    \"question\": \"who is showing some pics?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a military engineer discuss scouting?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who talks about a military system?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is shown that the air force used in iraq?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"who talks about man who created system used in iraq and afghanistan?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what showcasing a surveliance system?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"footage\"\n  },\n  {\n    \"question\": \"what did woman talkign about system develop for?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"force\"\n  },\n  {\n    \"question\": \"what is a system developed shown that the air force used in?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"iraq\"\n  },\n  {\n    \"question\": \"what is a woman doing for a news report on a war?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"who is doing commentary for a news report on a war?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses scouting technology?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"engineer\"\n  },\n  {\n    \"question\": \"what do a person talking about an air force?\",\n    \"video_name\": \"video8499\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"what is the audience is shown doing?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are some contest judges doing?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"whistle\"\n  },\n  {\n    \"question\": \"what is an audience doing?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"applaud\"\n  },\n  {\n    \"question\": \"what is a musician doing?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is the crowd doing?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is crodw doing?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are people clapping after?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what is cheering?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"contest\"\n  },\n  {\n    \"question\": \"who is clapping?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a musician performing on?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is an audience applauding?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"perfomer\"\n  },\n  {\n    \"question\": \"who is the crowd cheering at?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is cheering at a performer?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is performing on the voice?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"musician\"\n  },\n  {\n    \"question\": \"what is applauding a perfomer?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does a man begin to play on a foreign version of the tv show the voice?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man begin to play the guitar on a foreign version of the tv show?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who enters the stage on a tv show?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is shown clapping as part of a singing competition?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who begins to play the guitar on a foreign version of the tv show the voice?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is performing on the show the voice?\",\n    \"video_name\": \"video8500\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8501\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a woman and a man doing?\",\n    \"video_name\": \"video8501\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8501\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8501\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a girl talks about a school s?\",\n    \"video_name\": \"video8501\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8501\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video8501\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people being questioned about?\",\n    \"video_name\": \"video8501\",\n    \"answer\": \"kenya\"\n  },\n  {\n    \"question\": \"who do people talk about?\",\n    \"video_name\": \"video8501\",\n    \"answer\": \"kenium\"\n  },\n  {\n    \"question\": \"who are people being interviewed about?\",\n    \"video_name\": \"video8501\",\n    \"answer\": \"grafitus\"\n  },\n  {\n    \"question\": \"how many men are wrestling for an audience?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are shown wrestling?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many woman s are fighting on stage?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is preparing a meal in the kitchen?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gets hurt while in a wrestling match?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what gets hurt when the other slams girl to the mat?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"how many wrestlers are competing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a person preparing a meal in?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"how many youths wrestle?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what looks to get badly injured?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"who is wrestling?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"who gets slammed at wrestling?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when gets knocked out?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who does a girl throw?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what are two men wrestling for?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"when are two woman s fighting?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are fighting on stage?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"how many people are wrestling?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a person preparing in the kitchen?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"when gets injured?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is girl gets slammed at doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is one kid doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two woman s doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is while doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is video of two boys doing?\",\n    \"video_name\": \"video8502\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who adds a blue tail?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being constructed using blue and white paper?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who is working on an origami figure?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to make an airplane?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is teaching people how to fold an airplane?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding a paper for paper craft?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is someone folding a paper for?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone for paper craft?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who puts together a paper airplane?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making rocket using paper?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being constructed?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"aircraft\"\n  },\n  {\n    \"question\": \"what does a person make?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person put together?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a person add?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"who is making a paper plane?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making a paper aircraft?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a paper object?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who makes a paper airplane?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person making using paper?\",\n    \"video_name\": \"video8503\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a beautiful young woman uses a doing?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"rejuvenate\"\n  },\n  {\n    \"question\": \"who looks?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who sits?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a lady make up by brush?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what does a young woman use?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does woman pick up a facial product then uses?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a nice promotional for a water park doing?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"expres\"\n  },\n  {\n    \"question\": \"what is a woman in a room doing?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what does a woman use?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a woman apply?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"moisturizer\"\n  },\n  {\n    \"question\": \"who applies moisturizer?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who uses a large phone?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman apply cream from a square box onto?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who sits at a couch?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman sitting down on in a room?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman sitting down on a couch in?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is sitting down on a couch in a room?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a young woman sit at?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a music video of a girl not doing?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"fake\"\n  },\n  {\n    \"question\": \"what is an oriental girl doing?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is a woman in a room looking at?\",\n    \"video_name\": \"video8504\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is talking about his new video series where he will be going to different restaurants stuffing his face with food?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is visiting tokyo restraunts?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being shown in a bowl?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"salada\"\n  },\n  {\n    \"question\": \"who visits various restaurants to eat?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing his new series in which he goes to restaurants in tokyo?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is some salada being shown in?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a poster of a restaurant hang outside with on it?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are passing the shops?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a man describing in which he goes to restaurants in tokyo?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"series\"\n  },\n  {\n    \"question\": \"who visits tokyo?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is vlogging his experience?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in a fake deep voice while showing a restaurant from the street?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man visit?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"tokyo\"\n  },\n  {\n    \"question\": \"what is a man vlogging?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"what are walking?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is there are two people doing?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is a man visiting?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"tokyo\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"where are the people walking neat the shops and restaurants?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"who discusses his upcoming series where he eats at dining establishments?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show that travels the world and trys different types of meals?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"who talks about some food he wants to try an asian restaurant?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about his restaurant named niku soba?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about feeding his face at tokyo restaurants?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about he wants to try an asian restaurant?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is on a corner with advertisements?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what are the people walking neat the shops and restaurants in?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what does a man talk about some food he wants to try?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are the people doing?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is boys doing?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"visit\"\n  },\n  {\n    \"question\": \"what is a man discusses his upcoming series where he eats at doing?\",\n    \"video_name\": \"video8505\",\n    \"answer\": \"din\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people discussing?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do a cbs?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"newscast\"\n  },\n  {\n    \"question\": \"what did an interview anout?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"earthquake\"\n  },\n  {\n    \"question\": \"what broadcast about earthquakes?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does man talk about?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"earthquake\"\n  },\n  {\n    \"question\": \"who talks about an earthquake?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what anout a giant earthquake?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are political pundits sitting at talking?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is four people doing?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are newscasters doing?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man talks about a possible 90 earthquake doing?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who speaks to a woman for a news segment?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to newscasters at a table?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people on the news talk about?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"weather\"\n  },\n  {\n    \"question\": \"what are political pundits doing?\",\n    \"video_name\": \"video8506\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is doing gymnastics?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is dancing in a yard?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is outside practicing gymnastics?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who performs dancing moves?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who was wearinng black shorts?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing gymnastics in?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who is doing gymnastics in the grass?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who makes a jump in the grass?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is posing in front of a white house?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who jumps outside?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a girl dancing in?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"leap\"\n  },\n  {\n    \"question\": \"what is a girl is outside doing?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a girl performs doing?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a young child doing?\",\n    \"video_name\": \"video8507\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"who is preparing something delicious?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what do people place on their plates on an assembly line counter?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who cuts a watermelon?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who slices a watermelon?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what did the two persons prepare?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"variety\"\n  },\n  {\n    \"question\": \"who stirs a pot?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a blonde woman slice?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what are kitchen items displayed in?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who puts food?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are displayed in the kitchen?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who makes pasta?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman cutting taking different dishes?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what does a man stir?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does a person put?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is blonde woman preparing?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a woman cut?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what does a man make?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"where does a place where food is served in buffet plate getting shifted from hot side?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who discusses cooking food assembly line style at a buffet?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a place where food is served in buffet plate getting shifted from to chilled side?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what are a man and woman in a home kitchen making?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do the people place the different types of on the plates?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did a man in a women plate food in?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what did a man in a women plate in a kitchen?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman discuss cooking food assembly line style at?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"buffet\"\n  },\n  {\n    \"question\": \"who adds spaghetti to a white plate?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slides counters side to side?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting watermelon and others taking different dishes?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is shows which can serve hot food or cold food and drinks?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"buffet\"\n  },\n  {\n    \"question\": \"what are different types of soft drinks put on to cool?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"how many persons get ready to serve variety of dishes?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who bowls?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many persons prepared variety of dishes?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a place where food is served in buffet plate getting shifted from hot side to?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a man in a women doing?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"plat\"\n  },\n  {\n    \"question\": \"what is there is a food court a woman doing?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is blonde woman doing?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is demostration of doing?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a woman discusses doing?\",\n    \"video_name\": \"video8508\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are soccer players doing?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are some kids doing?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is some young boys get in a fight after doing?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are some soccer players doing?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is clips of people doing?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a group of young boys doing?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a group of soccer players doing?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a fight doing?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do a group of male soccer players get into?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are men fighting on?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what do some young boys get in after playing a soccer match?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who are fighting?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are a group of soccer players having?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"where are soccer players fighting?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where are men fighting?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are soccer players fighting on?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what do a fighton?\",\n    \"video_name\": \"video8509\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"how many men are recreating a reality police show?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is performing in front of a group of judges?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what tries to arrest a boy that starts to run?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who is arresting some one in street?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man run away from trying to arrest him?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"cop\"\n  },\n  {\n    \"question\": \"who caught the chaser?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who flees a police officer?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who runs away from a cop trying to arrest him?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a police man catch?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"chaser\"\n  },\n  {\n    \"question\": \"who was in his boxers?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getting arrested?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who behind handcuffed and running away?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who made video of cops and robbers?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"fan\"\n  },\n  {\n    \"question\": \"what is a man arresting some one in?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who does a person flee?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"arrest\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man runs away from a cop doing?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a cop doing?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"arrest\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8510\",\n    \"answer\": \"recreate\"\n  },\n  {\n    \"question\": \"what did a woman in the kitchen stirring cut up potatoes in pan?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"who is cooking food on a stove in a kitchen?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirs some food up in a pan?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who demonstrates how to soften and brown potatoes?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cooking potatoes on the stove in a kitchen?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cubed potatoes in a pan?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is removing cap of a pan?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is in a kitchen a woman doing?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cooking some cut peices of pinapple in a pan?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman cooking potatoes on in a kitchen?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is a woman cooking potatoes on the stove in?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who shows how to cook?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman cooking on a stove in a kitchen?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman in the kitchen doing?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"who cooks food in a skillet?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person stir up in a pan?\",\n    \"video_name\": \"video8511\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who talks about how to burn calories by swimming?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about calories burned in swimming?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains how many calories a person can burn while doing various activities?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about calories burned in activities?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving information on how bicycling and swimming burns calories he is stating that they both burn calories?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the news?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a bearded man talking about?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking about burning calories?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks flamboyantly about sports?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking to the camera?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a bearded man doing?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man speaking to?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is discussing swimming?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man in a red t-shirt doing?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man talks about how to burn calories by doing?\",\n    \"video_name\": \"video8512\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"who is riding his cycle?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are bike bloopers featured in?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a kid rides a wheely and lose?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what hits the ground?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"when is a boy riding?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"what started removing?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"who falls off?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what came off?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what runs alone and?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what does the front fork hit?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a man on a bicycle lose?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"tire\"\n  },\n  {\n    \"question\": \"what do a person rides a wheelie on because the front tire came off?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who wheeling a bycycle on road falling down and old man and lady wheeling falling down displaying on screen?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is riding a bike when the wheel fall off?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what a wheelie on their bike because the front tire came off?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a montage of bike mishaps unfold on?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a boy rides on a bicycle that has lost front wheel and falls down a lady sit behind on?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what does a man attempting to do a wheelie on his bike lose?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what is a boy riding when the wheel fall off?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is on the back of a bike?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the front wheel come out of the cycle and the boys fall down in as the boys?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"bush\"\n  },\n  {\n    \"question\": \"what is there is a boy doing?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is as the boys does doing?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8513\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who breaks down leafy vegetables?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone slicing bok then icing the vegetables in?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a person cooking on a stove?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a knife cut then it is added to a pot of boiling water?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone slicing then icing the vegetables in a kitchen?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"bok\"\n  },\n  {\n    \"question\": \"what does a woman add to a stirring pot?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"part\"\n  },\n  {\n    \"question\": \"who is cooking food on a stove?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is putting the vegetable in to the water?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is added to boiling water in a silver pot then moves to a bowl of ice water?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone slicing choy boiling water in a kitchen?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"bok\"\n  },\n  {\n    \"question\": \"what is a person putting the vegetable in to?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is someone slicing bok choy boiling water in?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who puts vegetables and lettuce in the boiling water?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what cuts green leafed food then it is added to a pot of boiling water?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is slicing bok then icing the vegetables in a kitchen?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person put in the boiling water?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"lettuce\"\n  },\n  {\n    \"question\": \"what is a person putting in to the water?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"who is chopping?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman break down?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"leafy\"\n  },\n  {\n    \"question\": \"what is person putting in?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is putting in the water?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are vegetables cooked in?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is slicing the vegetables?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person cooking food on?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is carefully cooking greens in a pot?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explain how is prepare the food?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is the lady telling how to make the kitchen item in tasty method in?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what plays while someone cooks greens in a pan?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is somebody doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is in the kitchen the lady doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is in a cookery program the preparation of vegetable soup is shown doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who adds the leafy part to a stirring pot?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are an inhome chef cuts up vegetables for a recipe they doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a knife cuts green leafed food then it is added to a pot of doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is green food is added to doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is a person that is carefully doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is boiling greens in salted boiling water then moves cooked greens to a bowl?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is telling how to make the kitchen item in tasty method in the kitchen?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing bok choy boiling water in a kitchen?\",\n    \"video_name\": \"video8514\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who reviews the effects of education spending on the chinese province of tibet?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what report from tibet?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what report about education spending in tibet?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what are children writing at a small desk in?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who draws a picture?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is shown about education?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what is a news story shown about?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"what are the childrens doing?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what does tibetian childrens on?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is asian kids doing?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a group of school children doing?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a group of children doing?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what does a child draw?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what do news report from?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"tibet\"\n  },\n  {\n    \"question\": \"what are kids writing on?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what is a line of children doing?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what shows children in school?\",\n    \"video_name\": \"video8515\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is singing a song on grassland?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is playing to the scene of kids doing random things?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a boy singing a song on?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what do kids stand on the field listening to?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a boy singing on grassland?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a boy singing on ground?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are a team of female athletes being congratulated on?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"victory\"\n  },\n  {\n    \"question\": \"who is running on track?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are a yong boys playing in?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is singing a song on ground?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a girl running on?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"where is a boy singing a song?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kids stand on the field laughing and doing?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what are the young boys and girls doing?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a yong boys doing?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a runner doing?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a female runner is seen doing?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"finish\"\n  },\n  {\n    \"question\": \"who did a congratulations video to high school students set to songs such as who run the world by?\",\n    \"video_name\": \"video8516\",\n    \"answer\": \"beyonce\"\n  },\n  {\n    \"question\": \"what is umpire doing?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this is a person doing?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is commentary on a video game doing?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a video game character kick a football down?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a video game character kick down the field?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is playing a college football game?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates his football video game gameplay?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays a football game?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is playing a sports game?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does guy play?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is playing a football game?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what people are about to begin?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8517\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"when do a girl singing beautifully?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is on stage singing?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what beautifully on stage?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"who is singing for an audience?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a woman singing a song?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing in a reality show?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing song?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman singing on stage?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing a song on stage?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what kaam singing a song onstage?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"laura\"\n  },\n  {\n    \"question\": \"what do laura van kaam singing onstage?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings a song on a stage?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl on?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what does the woman sing?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman singing for?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a girl singing?\",\n    \"video_name\": \"video8518\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is drive a car?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are cars riding down?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what appeared to be driving slow?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do three cars drive down?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what review video?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are three cars being driven down?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do three cars travel slowly on while demonstrating their features?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"how many cars drive down the street?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a car displayed from several angles on?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"how many cars travel slowly on a road while demonstrating their features?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what drives down the highway a close up of the steering wheel and the trunk?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is displayed from several angles on the road?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives down the highway with other cars?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"how many cars are being driven down a road?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does a car drive down a close up of the steering wheel and the trunk?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what is three cars travel slowly on a road while doing?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is the first car appeared to be doing?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone is drive a car and doing?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is cars doing?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a foreign language speaks as a car drives down the highway a close up of the doing?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"steer\"\n  },\n  {\n    \"question\": \"what is cars doing?\",\n    \"video_name\": \"video8519\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what show showing cottage cheese being strained?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is straining liquid from food?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman straining food into?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what does a woman put into a bowl?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman straining into the sink?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who puts something into a bowl?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman straining from rice in a sink?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is teaching how to prepare a dish?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman put something into?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what holding a bowl into a colander and draining fluid?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who strainign something in the sink?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is straining food into the sink?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman rinse?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who rinses something?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone straining liquid from?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is straining water from rice in a sink?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing some food?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do cooking show showing being strained?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"cottage\"\n  },\n  {\n    \"question\": \"what is a woman draining?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what was being prepared?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is prepared?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is draining rice?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is washing some food items for cooking?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"strain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"drain\"\n  },\n  {\n    \"question\": \"what is a hand doing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8520\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is playing a piano?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what shows a hand playing keys on a piano?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is played from the perspective of the player?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is being played by someone?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who is playing the piano?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what plays a piano?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is playing the piano?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a piano being played by?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a hand play?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who shows how to play a piano?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this video shows a hand doing?\",\n    \"video_name\": \"video8521\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a girl show off?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"frown\"\n  },\n  {\n    \"question\": \"who faces?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is frowning?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who makes a face at the camera?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is shown eating then a woman is frowning?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is eating chips?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is eating in the kitchen?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what made video clip involving several people?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what does a boy make a face at?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a boy make at the camera?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who is making faces while eating?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy eating in?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is home made video clip doing?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"who speaks to the camera at the dinner table?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is little kid doing?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are a group of people sitting at making frown faces?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a young child is shown doing?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are a little boy and his family doing?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"frown\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is family doing?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8522\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what shows a slideshow of a girl?\",\n    \"video_name\": \"video8523\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who does a video show a slideshow of?\",\n    \"video_name\": \"video8523\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what pictures displaying on screen of a girl?\",\n    \"video_name\": \"video8523\",\n    \"answer\": \"random\"\n  },\n  {\n    \"question\": \"what is a slideshow of a girl doing?\",\n    \"video_name\": \"video8523\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8523\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is random pictures doing?\",\n    \"video_name\": \"video8523\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what are teenagers doing?\",\n    \"video_name\": \"video8523\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8523\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cook doing?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"who is cooking on the stove?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking in a pot?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing food recipe?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cooking a dish?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person cooking on?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is stirring flour?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone cooking in?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman stirring?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"what is someone mixing in a bowl?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone mixing flour and water in?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is mixing flour and water in a bowl?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is putting flour into the pan?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to prepare a recipe?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman stirring in a metal bowl?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person putting into the pan?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"who is stirring something in a metal bowl?\",\n    \"video_name\": \"video8524\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a group of people sing inside?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"who interviews a child in a mall?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a broom up high there is loud singing in the background?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in a mall where people are singing?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what are a group of people singing in as people watch?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"what do a large group of people stand around listening to loud music?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"what are people in a mall by go round?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"merry\"\n  },\n  {\n    \"question\": \"what are a bunch of people surrounding a merry go indoors?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"what are a bunch of people doing?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"surround\"\n  },\n  {\n    \"question\": \"what is a busy doing?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"raise\"\n  },\n  {\n    \"question\": \"what are people in a mall by a merry go?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"what are people singing together inside?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"broom\"\n  },\n  {\n    \"question\": \"who is holding a broom?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people going about their business in?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"who is holding a camera?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is yelling at a shopping mall?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a bunch of people surrounding go round indoors?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"merry\"\n  },\n  {\n    \"question\": \"what are people going about in a mall?\",\n    \"video_name\": \"video8525\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"who are animal mascots fighting?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people in costumes doing?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are a group of people dressed as animal doing?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are animal mascots doing?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are character mascots doing?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is mascots doing?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is people dressed up as animals doing?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what are people in costumes doing?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"who is a guy getting?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getting a man?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who do several mascots trash?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what are people in costumes driving?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who are beating up a man?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are people in costumes attacking?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do people in animal costumes beat up?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people dressed in costumes pretend to kill a man then drive off in?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who are a group of people dressed as animal attacking?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people dressed in costumes pretend to attack drive off in?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who gets beat up by people in costumes?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets mauled by people dressed as animals?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are character mascots beating up?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people in costumes beating up?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"what teddy bears killing a young man?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who does a video showing teddy bear killing?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man get ripped in?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"who got ripped in half?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people make?\",\n    \"video_name\": \"video8526\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is siting?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man sitting in playing guitar into a microphone?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing an acoustic guitar?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays guitar in his shorts?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does kid play in his shorts?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is sitting in a chair playing guitar into a microphone?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video8527\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a little boy in his room doing?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is boy doing?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a boy doing?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what does a kid show off?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does kid show off?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"gameboy\"\n  },\n  {\n    \"question\": \"what is a boy showing?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a boy holding up?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who shows off his electronic toy?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is showing a box?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is showing a toy?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who shows off his gameboy system?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does the boy show to the camera?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is holding up a game?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who shows his new toy to the camera?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who shows a toy to the camera?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is showing a gaming system?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a boy show a toy to?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a boy show to the camera?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who shows you how hand held device?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is talking about his nerf cover for his 3ds?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is showing an electronic device?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does the boy show his new toy to?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is chatting a little about it?\",\n    \"video_name\": \"video8528\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are three man doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a scene shown from in which some people stand inside a building?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a scene is shown from a film in which some people stand inside a building and doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in suit doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a scene from an indian movie doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is in a room three men in suite doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what discuss on a matter of discussion in a room?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"how many indian men talk while a third man slowly spins in place?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men talk to each other in an east indian language?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men stand in an office while cars pass by outside?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are asian men doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is shown from a film in which some people stand inside a building?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what do three men stand in while cars pass by outside?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are men all dressed in suits doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a third man slowly spin in?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who slowly spins in place?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are three man looking and one eating?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"where does a third man slowly spin?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what do people in suit discuss on a matter of discussion in?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are some men in talking to each other?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is shown from a film in which talking seriously?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"how many men stand?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who are looking and one eating ice cream?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are several men in suits doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is three guys doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a sequence from a typical bollywood film where the people doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a group of men in business suits doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is seems to be an older add about someone doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is some men are in a crowd doing?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a scene shown from in which talking seriously?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what stand?\",\n    \"video_name\": \"video8529\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a screen doing?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what is there are some graphics doing?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a message about doing?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"broaden\"\n  },\n  {\n    \"question\": \"what is astronaut doing?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"blast\"\n  },\n  {\n    \"question\": \"what is an inspirational tidbit of information doing?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what is text doing?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"encourage\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video content is not doing?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a collage of photos doing?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is delivering very inspiring messages about science?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a person wearing a white space suit fly through?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what is a screen delivering very inspiring messages about?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what does a man fall from into the planet earth?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who is showing information on the screen?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is not displaying after press play button?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"content\"\n  },\n  {\n    \"question\": \"what is a person showing on the screen?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what does a message about expanding one s through an understanding of science?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"knowledge\"\n  },\n  {\n    \"question\": \"what is a person showing information on?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does some graphics of the satellite and the city in full light a couple seeing the rocket go into?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"who falls from space and views over a large city at night?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a message about broadening horizons s through an understanding of science?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"knowledge\"\n  },\n  {\n    \"question\": \"what do grand views accompany encouraging sayings to promote trust in?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what scape with buildings from above while music plays?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"how many people did astronaut blasting off towards the earth skyscrapers all light up beautifully in the night light holding hands?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who falls from space into the planet earth?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does a man fall from space and views over a large city?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what do grand views accompany encouraging sayings to promote in science?\",\n    \"video_name\": \"video8530\",\n    \"answer\": \"trust\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are 2 kids fun talking with food on?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are 2 kids fun talking with on table?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are kids that being picky with?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are children trying?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is kids are shown doing?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is children doing?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are a kids doing?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"rotate\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a boy and a girl doing?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"excite\"\n  },\n  {\n    \"question\": \"what is 2 kids are fun doing?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the kids going eat?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"lunch\"\n  },\n  {\n    \"question\": \"what are a boy and a girl exciting about?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is a kid rotating?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"what are kids talking about?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are kids commenting on?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do kids react to?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is rotating a silver plater?\",\n    \"video_name\": \"video8531\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what are some vegetables kept on the white plate on?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is showing the salad in the white plate?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what holds a colorful mixture of sliced green and red vegetables?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is filming some food on a tray?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows off his stir fry dish to customers?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what did different types of sliced vegetables place to be cooked in?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what did a garden salad on a white plate there are fresh green carrots and tomotoes a chef knife lie next to?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what sit on a table with assorted vegetables on it?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is a person filming on a tray?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are vegetables kept in?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"atray\"\n  },\n  {\n    \"question\": \"what is person showing in the white plate?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"what is a person filming some food on?\",\n    \"video_name\": \"video8532\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what is talking to a man at a dance?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman singing to a man at?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a young female talking to a man at?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is singing to a man at a dance?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are couples doing?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a young female doing?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a teenage boy and girl doing?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is a young female talking to at a dance?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing while staring at a man?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings to a guy at a dance?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings to a man in a music video?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there are kids doing?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do romantic love?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is a woman singing to at a dance?\",\n    \"video_name\": \"video8533\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what does a man talk while in?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who talks while in the rain?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in the rain?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do different angry men stare at?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is fighting with other s?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man standing in doing a monologue?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who is walking with many other people with him?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tries to look tough in the rain?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hits few men in a fight and then talks?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who yells while being pelted with rain?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"buff\"\n  },\n  {\n    \"question\": \"what does a man try to look tough in?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who is standing in the rain doing a monologue?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a bunch of men doing?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is muscular guy doing?\",\n    \"video_name\": \"video8534\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is presenting how to drive and jump with motorbike?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing some tricks with his motorbike on the game?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a video game character rides a motorcycle off of?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"when is the motorcyclist driving on the roof of the parking garage then drives off the roof and lands on the ground?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"hitch\"\n  },\n  {\n    \"question\": \"who is driving on the roof of the parking garage then drives off the roof and lands on the ground without a hitch?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"motorcyclist\"\n  },\n  {\n    \"question\": \"what is person jumping from big building on?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is person jumping from into road in a gameone?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what is a man riding around on doing tricks?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is person driving?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what is person riding?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"who is riding fast?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"rider\"\n  },\n  {\n    \"question\": \"what is an animated character racing?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is person jumping on?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is racing a motorcycle?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is driving his motorbike?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a guy rides through the city streets and sidewalks?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is person doing some tricks with on the game?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"who is riding his motorbike?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is jumping on the street?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person riding in bike through in a gameone?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what is person jumping from on the game?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is person jumping from bridge into in a gameone?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is person riding in bike through bridge in?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"gameone\"\n  },\n  {\n    \"question\": \"what is person riding in through bridge in a gameone?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who stunts by jumping from top?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"rider\"\n  },\n  {\n    \"question\": \"what is person jumping from bridge into road in?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"gameone\"\n  },\n  {\n    \"question\": \"what racers running the race and the road?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who makes a very high jump?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"rider\"\n  },\n  {\n    \"question\": \"what is person doing some tricks with his motorbike on?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is jumping from bridge into road in a gameone?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who rides his motorcycle through the city streets and sidewalks?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is animated men doing?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the motorcyclist doing?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a video game man jumps his dirt bike off the roof of a building and lands perfectly while doing?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is an animated character doing?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is riding in bike through bridge in a gameone?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is jumping from big building on the game?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is riding around on a motorcycle doing tricks?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speeds through a city road jumps off a ram to land in the streets below?\",\n    \"video_name\": \"video8535\",\n    \"answer\": \"daring\"\n  },\n  {\n    \"question\": \"what is a woman petting?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what does a rabbit fall?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"how many rabbits are petted by their keeper?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who narrates the behavior of rabbits?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are bunnies petted by?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who are two rabbits petted by?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"keeper\"\n  },\n  {\n    \"question\": \"who is petting a rabbit?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what falls off a wall?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"who is speaking about rabbits?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a group of rabbits doing?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is documentary doing?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who talks about rabbits while rabbits run around?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what are many rabbits doing?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is rabbits doing?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is several rabbits doing?\",\n    \"video_name\": \"video8536\",\n    \"answer\": \"hop\"\n  },\n  {\n    \"question\": \"who is walking around while waiting to start wrestling?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what match with commentary?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what do an amatuer wrestling?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what do two men wrestle in?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what do two young men have?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"how many wrestlers are fighting?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who looks worried as he paces around before the next match?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"how many men are wrestling each other?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is wrestler doing?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"when are fighting with each other?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do wrestlers about to have?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"how many man s are fighting with each other?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers prepare to wrestle each other?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young men have a wrestling match?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men wrestle in competition?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who paces around before the next match?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8537\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a woman in black doing?\",\n    \"video_name\": \"video8538\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8538\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8538\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is sexy blonde doing?\",\n    \"video_name\": \"video8538\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who is doing face make up with a brush?\",\n    \"video_name\": \"video8538\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing make up with a brush?\",\n    \"video_name\": \"video8538\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is used to make the application uniform?\",\n    \"video_name\": \"video8538\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is used to brush out execess?\",\n    \"video_name\": \"video8538\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what does a woman heavily apply a pale makeup powder to?\",\n    \"video_name\": \"video8538\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8538\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a blonde headed woman with exotic contact lenses applying?\",\n    \"video_name\": \"video8538\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what are the crash courses itself doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a guy with a checkered shirt doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is the words did you know with different facts doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is a man in a checkered shirt doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon dolls flag doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a checkered shirt and glasses sits in a chair doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the men doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is in front of a blackboard an person is seated and doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person talks about the movie and add he did by doing?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are crashing down?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who talks about the movie?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is wearing formal clothes?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the men telling around news and their placebehind the globe?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what is person presenting?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"who describe a story in the society?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who add he did by sitting on the table?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a cartoon dolls flag holding and a person in checks shirt sitting beside speaking on topic discusing displaying on screen?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"beside\"\n  },\n  {\n    \"question\": \"when is a man in a checkered shirt talking about china s?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"who is seated in front of a blackboard?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what dolls flag holding and a person in checks shirt sitting beside globe speaking on topic discusing displaying on screen?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who did the words do know with different facts scrolling with animated pictures?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about how china was the first country with a modern government?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is presenting his project?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person talk about?\",\n    \"video_name\": \"video8539\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a woman sitting?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"ina\"\n  },\n  {\n    \"question\": \"what does the grim reaper approach?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a psa talking about?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"driving\"\n  },\n  {\n    \"question\": \"what is a women in?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what approaches a car?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"death\"\n  },\n  {\n    \"question\": \"what is a creepy person doing?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a psa doing?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a scary man doing?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"approach\"\n  },\n  {\n    \"question\": \"what is a video clip shows a man doing?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"approach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the grim reaper is slowly doing?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"approach\"\n  },\n  {\n    \"question\": \"who is in a car?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who approaches a car?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"reaper\"\n  },\n  {\n    \"question\": \"what walked up to the couples car?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"who had long hair?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is approaching a couple in a vehicle?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does killer from scream try to get inside?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is trying to get in the couples car?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"creepy\"\n  },\n  {\n    \"question\": \"what does the grim reaper approach with two passengers?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who approaches a car with two passengers?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"reaper\"\n  },\n  {\n    \"question\": \"what is there are two people doing?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who tries to get inside a car?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"killer\"\n  },\n  {\n    \"question\": \"who is sitting ina car?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slowly approaching a car?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"reaper\"\n  },\n  {\n    \"question\": \"what is the grim reaper slowly approaching?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what shows a man approaching a car?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does death approach?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a woman in?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did the woman have?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what are people inside of?\",\n    \"video_name\": \"video8540\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is there is a girl doing?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who is practicing about game?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is shooting a bow and arrow?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is shooting a crossbow?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl hit a target with?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"what is a little girl shooting?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"crossbow\"\n  },\n  {\n    \"question\": \"what does a girl hit with an arrow?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"who is shooting a toy bow and arrow?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who shoots a nerf bow and arrow?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with a bow and arrow?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is shooting with a bow and an arrow?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who hits a target with an arrow?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with bow and arrow?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is this girl doing?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl practicing about?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is loading?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does girl shoot?\",\n    \"video_name\": \"video8541\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is man in black shirt doing?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is animal behavior video doing?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a black tshirt man doing?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in black shirt doing?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is guy in glass with black tshirt doing?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with glasses doing?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a black shirt and glasses doing?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a behavioral counselor explains how judging people is different from doing?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"what is a man with glasses speaking about?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who explains problematic behaviors in animals in the sea and on the land?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did guy in glass with black tshirt talking to?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a man wearing a black shirt talk about?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"behavior\"\n  },\n  {\n    \"question\": \"who discusses types of behavioral issues?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"specialist\"\n  },\n  {\n    \"question\": \"who analyses the behavioral pattern between animals and humans?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"psychoanalyst\"\n  },\n  {\n    \"question\": \"who explains about the behavior of the animals which may be problematic?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains how judging people is different from judging the behavior of animals?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"counselor\"\n  },\n  {\n    \"question\": \"who is showing information on the screen?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about some animals outside?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person showing information on?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a person showing on the screen?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what is a black tshirt man talking from?\",\n    \"video_name\": \"video8542\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what is singers doing?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are two ladies doing?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"when is a child singing?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is a duet performed by in a music competition?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"contestent\"\n  },\n  {\n    \"question\": \"how many young people are on a stage singing?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many vocalists perform live on stage?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is performed by contestent in a music competition?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"duet\"\n  },\n  {\n    \"question\": \"who is singing on a stage?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is a young girl singing?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do two girls and a boy sing?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many ladies are rocking with melody?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when do three vocalists perform live?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what are two ladies rocking with?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"melody\"\n  },\n  {\n    \"question\": \"what are children singing?\",\n    \"video_name\": \"video8543\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who stands at a party with his family?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"arthur\"\n  },\n  {\n    \"question\": \"what scene where a group of kids are arguing with a friendly chef?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is arthur at?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"who is at a party?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"arthur\"\n  },\n  {\n    \"question\": \"what did food contest rig in?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are at a bake sale?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does arthur stand at a party with?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what rigged in cartoon?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"contest\"\n  },\n  {\n    \"question\": \"what does arthur stand at with his family?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon of a man doing?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what are a cartoon scene where a group of kids doing?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a clip from the show arthur where a person is taste doing?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what are a group of cartoon characters doing?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"who announces the winner of a cook off?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a scene from the children s show?\",\n    \"video_name\": \"video8544\",\n    \"answer\": \"arthur\"\n  },\n  {\n    \"question\": \"what is smoke being expelled into inside a stadium?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is being expelled into the air inside a stadium?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is smoke being expelled into the air inside?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what set to a video of football game preparations?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is white and green smoke doing?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"emanate\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does the smoke fill?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what about smoke from a soccer game from the fans?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is filled with smoke?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what did the smoke engulf?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what is a soccer stadium filled with?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what fills the air?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is being shot out in a stadium?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what do fans have smoke at?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what engulfed the stadium?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is smoke being shot out in?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what do fans have at a game?\",\n    \"video_name\": \"video8545\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a red racing car with big black wheels doing?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"rev\"\n  },\n  {\n    \"question\": \"what is music playing and some people doing?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a supercar doing?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a red sports car revving?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what does a very nice red sports car starting it s?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is person recording in his garage?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is person recording the red car in?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a very nice red sports car doing?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a red sports car doing?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"who begins to accelerate the engine to high rpm in order to check the engine?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when does the person begin to accelerate the engine in order to check the engine?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"rpm\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does the person begin to accelerate to high rpm in order to check the engine?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what does the person begin to accelerate the engine to high rpm in order to check?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what drive video of a red fancy sports car?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what does a shiny red lamborghini sit in under bright lights?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"showroom\"\n  },\n  {\n    \"question\": \"what is on the road which is red color?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is recording the red car in his garage?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a futuristic red car parked inside?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what does the person begin to accelerate the engine to high rpm in to check the engine?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"who starts the sports cars?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is parked on the floor?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a red car parked on?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does a red sports car start it s up?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a red racing car with big black wheels reving?\",\n    \"video_name\": \"video8546\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what are people at each other?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"firing\"\n  },\n  {\n    \"question\": \"what is a man escaping from?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"explosion\"\n  },\n  {\n    \"question\": \"what are men fighting in?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a man carrying?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man looking around with?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"flashlight\"\n  },\n  {\n    \"question\": \"who is carrying a gun?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is escaping from an explosion?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking around with a flashlight?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tries to remain safe in an action film?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with gun hiding behind?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who flash light?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what goes off behind a group of men?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"explosion\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"escape\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man with a gun doing?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is a man with gun doing?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who runs from an explosion in a dark tunnel?\",\n    \"video_name\": \"video8547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of kids doing?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what sings along?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what are some women playing on a stage?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when is another man playing guitar?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band performing a song to?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a band performing to a crowd?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what plays the guitar to the fans?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is playing guitar in stage?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a group of young men sing on while a crowd of girls watch them?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performing a song to a crowd?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when does a group of kids preforming i m yours?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when does a woman playing a guitar sing as the audience sings along?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is singing in front of an audience?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is another man playing in stage?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when are some women playing guitar?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when is a band playing?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is playing on stage?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when are some people singing?\",\n    \"video_name\": \"video8548\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is seen holding an white paper?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is clapping?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman and a man sitting at together?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what starts the hero then m0ves on?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who does the video start then m0ves on?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"hero\"\n  },\n  {\n    \"question\": \"who is a white shirt man touching?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does an entertainment reporter talks about a famous actor s?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what stars as a teenage thief alongside tom hanks?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"leonardo\"\n  },\n  {\n    \"question\": \"who is several clips of a movie who s leading actor?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"leonardo\"\n  },\n  {\n    \"question\": \"what talks about what movie leo dicaprio s filmed?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who discusses a famous actor and some of the movies he has been in?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"who is having conversation with woman in the office?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what starts the hero touching the nipple of the lady?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did sexy blonde talking to the actor leonardo dicaprio on?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who does the video start the hero touching the nipple of?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who does the video start touching the nipple of the lady?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"hero\"\n  },\n  {\n    \"question\": \"what is a man is seen doing?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is there are many people gathered in a hotel and doing?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a woman and a man doing?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a white shirt man doing?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is sexy blonde doing?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is scenes from a movie with a young leonardo dicaprio doing?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the video starts the hero doing?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is movie scenes from tom hanks movies that show men and women doing?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is several clips of a movie who s doing?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"what is a man and a lady doing?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the watchmojo video narrator doing?\",\n    \"video_name\": \"video8549\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is the small girl in pink clothes playing in?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a baby playing with in the home?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"towel\"\n  },\n  {\n    \"question\": \"what does a little girl wearing pink pick up?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"who is the cute young girl take?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"bedsheet\"\n  },\n  {\n    \"question\": \"what is a baby playing with a towel in?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what does a young girl in pink pick up then tries to put it on but fails?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"what do a pink color dress baby take from the floor?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"towel\"\n  },\n  {\n    \"question\": \"what is a baby with a pink dress playing with?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"towel\"\n  },\n  {\n    \"question\": \"what do a pink color dress baby take a towel from?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who inpinky laying with a pink blanket?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does an infant girl dressed in pink pick up?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"who is playing with a pink color towel?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is playing with a towel in the home?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what do a cute baby girl in pink dress holding?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"where is a baby playing with a towel?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is a female toddler doing?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cute baby girl in pink dress doing?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a little girl inpinky doing?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the small girl in pink clothes doing?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little girl in a pink dress doing?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a little girl doing?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby with a pink dress doing?\",\n    \"video_name\": \"video8550\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who discusses his road rage?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are friends fighting near?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is this is a clip from a street fight and someone doing?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who talks about his road rage?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy talks enact?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"scenario\"\n  },\n  {\n    \"question\": \"who is talking about video clips?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is a video of people doing?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are dumb people doing?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are friends doing?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is video of a guy doing?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is giving feedback on other videos?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"entertainer\"\n  },\n  {\n    \"question\": \"who is talking about something about a people in a road?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who obscenities to demonstrate how bad his road rage is?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about driving a car?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about something about a people in?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what admits to having road rage?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what enacts a scenario?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who talks about road rage problems?\",\n    \"video_name\": \"video8551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man pours liquid over himself while doing?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is comedic parody of doing?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what was the man doing?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"spill\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what is a man shirtless doing?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what was the man?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is doing weird stuff?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring water on himself?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man pouring on himself?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do two guys talking about faucet?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man shirtless pouring water on?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"who was spilling water?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring water on his body?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"shirtles\"\n  },\n  {\n    \"question\": \"what is a man shirtless pouring on his body?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does an amped college kid say?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"who is pouring water bottles on himself?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pour into his mouth from water bottles?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who talks about the problems of faucet water?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours liquid over himself while talking about racism and sexism?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours water from plastic bottles onto himself?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"shirtles\"\n  },\n  {\n    \"question\": \"who pours water into his mouth from water bottles?\",\n    \"video_name\": \"video8552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"carve\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a kid in red shorts doing?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person shows how to create a refreshing summer drink doing?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a watermelon is prepared for doing?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who shows how to create a refreshing summer drink using a watermelon?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is prepared for eating?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a person cutting up?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what does man cut?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what is someone cutting?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what is a man slicing up?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"who is showing some food recipe?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person cut up?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"who is cutting up a watermelon?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts a watermelon up?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing up a watermelon?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts open a watermelon?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person cut a hole into?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what does a person cut into a watermelon?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"who cuts a hole into a watermelon?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a kid in red shorts slicing?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"who is cutting a watermelon?\",\n    \"video_name\": \"video8553\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are various ingredients for a delicious dish laid out on?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is explains a lady with green dress explaining the things required?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"preparation\"\n  },\n  {\n    \"question\": \"who is checking the food ingredients placed on the table in the kitchen?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making a dish in the kitchen?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stand near the vegetables in the clear bowl?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are garlic vegetables meals kept in?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who talk about each one?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explain and how is prepare the food?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman in a green apron doing?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a female chef with a dark complexion and green apron stands in front of glass bowls doing?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is person in green clothes in doing?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman speaking in a foreign language doing?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is noodles preparation method is explains a lady with green dress doing?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a bunch of ingredients spread on a counter ready for doing?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman wearing a green apron cooking in?\",\n    \"video_name\": \"video8554\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what shows gordon ramsay about to enter what may look to be a restaurant casa roma?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what does a man in black happily enter the name of?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who is wearing black shirt?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is entering in the room?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what looked more like a bar?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what is a lady entering in?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a lady wearing?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who walks in the front door?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"who shows the front door sign of a restaurant?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"what does a man in black read the name of?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who is preparing to inspect a restaurant to grade?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what did a old restaurant casa roma since 1958 having a look around the inside view?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what does tv chef gordon show the front door sign of?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what sign an airplane and a man walking into a room?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who ramsey shows up to casa roma in the city of lancaster to see what the restaurant looks like inside?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"what does gordan ramsey describe the sign of than proceeds inside in the city of lancaster chef?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"casa\"\n  },\n  {\n    \"question\": \"who describes the sign of casa roma than proceeds inside in the city of lancaster chef?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"gordan\"\n  },\n  {\n    \"question\": \"what stopped when gordon entered the place?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is chef gordan ramsay doing?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a city sign an airplane and a man doing?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a man in a black shirt doing?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8555\",\n    \"answer\": \"btalking\"\n  },\n  {\n    \"question\": \"when are a group of people stamp dancing in front of a crowd?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a white boat on the thames?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"london\"\n  },\n  {\n    \"question\": \"what is a crowd of people doing?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of men and woman doing?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people are stamp doing?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a group of performers doing?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of teenagers doing?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a music video with people doing?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a stomp type video with people doing?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is tens doing?\",\n    \"video_name\": \"video8556\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"when is a person performing?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do judges applaud for?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"how many women watch on the set of the voice kids?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing from gangnam style while two women watch on the set of the voice kids?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who dances on a gameshow?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pretend he is swinging?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what do a man dancing backstage of the show?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what do three people cheer for a contestant on?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is doing the dance from gangnam style while two women watch on the set of the voice kids?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing while women are watching him and laughing?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do three people cheer for on the voice?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"what is a man doing on a television game show?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does a man dance on?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"gameshow\"\n  },\n  {\n    \"question\": \"how many people cheer for a contestant on the voice?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a man doing the dance from while two women watch on the set of the voice kids?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"style\"\n  },\n  {\n    \"question\": \"who is doing an expressive dance on a television game show?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pretends he is swinging a rope?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man dance around on?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"who dances around on a set?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are women watching?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is three people doing?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is people on a stage and a man doing?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people cheer for a person doing?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is performing on stage?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people on?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8557\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a car yellow is running?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a man watching?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car yellow?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is watching car?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man walking in?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"who is repairing a car in his clean garage?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy with a green shirt talking in?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is person repairing in his clean garage?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is wearing a spectacle?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking in a garage?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is yellow color is running?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"spectacle\"\n  },\n  {\n    \"question\": \"who tours through his work space used to restore classic cars?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows cars?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a green shirt doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a old man in green dress and car parking and machinery parts doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is man in green shirt doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man who is a mechanic doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is the man with spectacles doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a green shirt doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy with a green shirt doing?\",\n    \"video_name\": \"video8558\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what leads along a race track?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what run?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a man cross?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what is a horse racing on?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are horses running in?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are horses racing on?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what wins the race?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is racing on the track?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is riding a horse at top speed in a race?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who celebrates as he crosses the finish line?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding at top speed in a race?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are men racing horses around?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who crosses the finish line?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a horse win?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is horse doing?\",\n    \"video_name\": \"video8559\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is pulling off driving his lamborghini?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a new lamborghini car on?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who turns on a road?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"lamborghini\"\n  },\n  {\n    \"question\": \"what does a black lamborghini turn on?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is driving a sports car?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a black car?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is driving a beautiful car?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who pulls up to a busy road before it makes a left turn?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"lamborghini\"\n  },\n  {\n    \"question\": \"what is a car moving on?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is someone driving?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a road make?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is moving on road?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what makes a left turn?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is driven?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"lamborghini\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man in a black car doing?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8560\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is showing highlights of his show?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"what are a man and a talk show host preparing?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what murray on tv?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"what is david letterman showing highlights of?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what is broadcast?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"cookery\"\n  },\n  {\n    \"question\": \"what murray with david letterman on the late show?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"what skits?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what are a man and a talk show host doing?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a sequence of 3 short clips mainly doing?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"focu\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is david letterman doing?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is david letterman doing?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"how many men are cooking on a talk show stage?\",\n    \"video_name\": \"video8561\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does the lady put into the vessel with eggs?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"corn\"\n  },\n  {\n    \"question\": \"what is all put into the mixie?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what are mixed together into other containers?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does square white bowl ingredients are arranged on a white surface?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"who adds some coloring to it?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does square white bowl ingredients are held within a glass measuring cup?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"what is someone adding many ingredients in the bowl in?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who adds all different ingredients?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirs some coloring well?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is the egg all put into?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"mixie\"\n  },\n  {\n    \"question\": \"what were kept?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what was put?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"powder\"\n  },\n  {\n    \"question\": \"what is poured?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is smashed?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what does the lady stir well?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"coloring\"\n  },\n  {\n    \"question\": \"who bowls?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the lady add to it?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"coloring\"\n  },\n  {\n    \"question\": \"what is someone adding many ingredients in in a kitchen?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a girl and a bowl spoon doing?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is ingredients are arranged on a white surface and are held within a glass doing?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some one in a kitchen doing?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who adds the ingredients into the small steel pot with a spoon?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is bowls of ingredients that start to dissapear hands start doing?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what stirred well then some cream is put into the mixie?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"powder\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is adding many ingredients in the bowl in a kitchen?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what did a woman adding different ingredients into a clear bowl whisk to mix?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what does square white bowl bowls ingredients are held within a glass measuring cup?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"who puts some corn flour into the vessel with eggs?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does square white bowl bowls ingredients are arranged on a white surface?\",\n    \"video_name\": \"video8562\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"who rides a motorcycle?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person on on the streets?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding by bike?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stopping on his motorcycle?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a person rides?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding by?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what are two motorcycles at?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"intersection\"\n  },\n  {\n    \"question\": \"what is a person stopping on?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"how many motorcycles are at an intersection?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is the rider of a red motorcycle being told will be put onto youtube?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"ride\"\n  },\n  {\n    \"question\": \"how many motorcyclists talk to each other at a stop light?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are at a stop light on their motorcycles?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is on a motorcycle on the streets?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do two people on motorbikes wait at?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"intersection\"\n  },\n  {\n    \"question\": \"what do two guys on motorcycles wait at?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"intersection\"\n  },\n  {\n    \"question\": \"what are some guys standing with in a road junction?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is the rider of a red motorcycle being told his ride will be put onto?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"what are two people on motorbikes doing?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a clip of two people one on a motorcycle doing?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"stop\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is man on a motorcycle doing?\",\n    \"video_name\": \"video8563\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what does a monkey climb down a boy is seated along with the monkey few men are walking in a forest?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"who does a monkey watch a monkey is climbing down the tree as?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is climbing down a tree while a little boy watches close by?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what over tells about a boy who was taken as a child and raised by monkeys?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a national geographic documentary cover about feral behavior among a young boy?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what is climb a tree while a small boy watches?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"who does a monkey climb down a tree is seated along with the monkey few men are walking in a forest?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what climbs down a tree a boy is seated along with the monkey few men are walking in a forest?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is the brown monkey falling from while small kid sits near a boy?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what watches a monkey is climbing down the tree as a boy?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"who is sitting on the grass with animals?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"how many men are walking through the jungle?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does a young boy sit with while some men walk down a path?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is falling from a tree while small kid sits near a boy?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"who tries to recall his childhood memories of being raised by monkeys?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a child sitting in watching the monkey running around while the men analyze the actions of both the child and monkey?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what does a monkey climb down a tree a boy is seated along with few men are walking in a forest?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what comes down from the tree which is watched by a boy sitting on the ground?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what does a monkey climb down a tree a boy is seated along with the monkey few men are walking in?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what do some men walk down?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what are three men walking through?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"jungle\"\n  },\n  {\n    \"question\": \"who sits near a boy?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who does small kid sit near?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a monkey run down?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what runs down a tree?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a young man who was adopted by monkeys as a child walking in with an animal behaviorist who is studying his case?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"jungle\"\n  },\n  {\n    \"question\": \"who was adopted by monkeys?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a monkey watch is climbing down the tree as a boy?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what does a monkey watch a monkey is climbing down as a boy?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is a monkey climb while a small boy watches?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is a small monkey climbing down while a little boy watches close by?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"who is sitting in the forest watching the monkey running around while the men analyze the actions of both the child and monkey?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what are a monkey climbs down a tree a boy is seated along with the monkey few men doing?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a monkey comes down from the tree which is watched by a boy doing?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young man who was adopted by monkeys as a child doing?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a small monkey doing?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the brown monkey doing?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is the small kid doing?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a monkey on trees and child doing?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is national geographic doing?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who sits with a monkey while some men walk down a path?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who watches?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who watches close by?\",\n    \"video_name\": \"video8564\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who describes the directions of the game?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who does i m not just sounding asking questions about being drunk?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a third person video game?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is exitedly talking about a roleplaying dating game?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who describes how he goes about trying to attract women?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many female silhouettes are shown while a guy talks about how to get a girlfriend on a purple and pink screen?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is the men played?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a narrator describe the directions of?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is learning something from it?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about how to get a girlfriend?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is person learning from it?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are more letters displayed on?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is person playing?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what shows people how to get a girlfriend with text in the background?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is and i m not just doing?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what is a guy is exitedly doing?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man talks and laughs in the background as we see the screen of a game he doing?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a young man describes how he goes about doing?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a presentation of how to get a girlfriend doing?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8565\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who is pouring cream into a glass of spinach?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting food in a cup?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting salad ingredients in a glass?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing green leaves with cream in a glass?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man pouring into a glass of spinach?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"who is putting lime into it?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man shaking?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is a man holding?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"gla\"\n  },\n  {\n    \"question\": \"who is making a drink?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating a food preparation method?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting into it?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"lime\"\n  },\n  {\n    \"question\": \"who is holding a glas?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting food in?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is a man putting in a cup?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is showing how to make a salad in a cup?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shaking food?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a tutorial on how to make a salad?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who assembles a salad in a glass cup?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is young man doing?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is guy in the kitchen doing?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8566\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are robots running away in?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon figures having?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"adventure\"\n  },\n  {\n    \"question\": \"what are animated robots running away from?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"mob\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does cartoon robot hit?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"how many robots that are being attacked?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"who speak to one another?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do cartoon battle with chasing?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what show with robots?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what hits another robot?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what battle scene with chasing?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are having an adventure?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon character hit then gets chased?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who hits another one then gets chased?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is the animated characters doing?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is cartoon battle scene with doing?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a one-eyes animated character doing?\",\n    \"video_name\": \"video8567\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"who is a woman talking to on the stage?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is performed in a tv show?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"who was wearing a red dress?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who has his arms crossed on stage?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a woman talking to a man?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do a man and a woman act while another woman watches?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many persons are joking on a stage?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to a man on the stage?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to an audience on stage?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is about a hindi tv show?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"variety\"\n  },\n  {\n    \"question\": \"what was the woman doing?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are aman and two women doing?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man and woman doing?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are on a stage two persons doing?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"joke\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"variety\"\n  },\n  {\n    \"question\": \"who watches?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what was the woman wearing?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"when are two persons joking?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do kapil s show in?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what show in sony channel?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"kapil\"\n  },\n  {\n    \"question\": \"when are a man and woman talking?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8568\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is giving demo for some phone?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is demonstrating how to use a camera on a smart phone?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man taking?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what is a man using?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is doing a tutorial in taking photos on motorola phone?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone reviewing?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is using a cellphone to take a picture?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a person showing off a photo app on?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is showing how to use an application?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person using to take a picture?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"cellphone\"\n  },\n  {\n    \"question\": \"who demonstrates a cell phone app?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who talks about a phone?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reviewing a phone?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is taking a photo?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a phone?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8569\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks on?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is many dogs in white and black barking snow land and person doing?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a polar bear is shown doing?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is sled dogs bark at a polar bear that doing?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"stalk\"\n  },\n  {\n    \"question\": \"what is a man in the snow watches a polar bear hunt him and his crew of doing?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what is a man in a black coat doing?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a british documentary with a polar bear and commentator with sled dogs doing?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the big dogs are on the mountain and doing?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are the big dogs on?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is a very cute dog doing?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what is a man in a cold climate doing?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what do many dogs in white and black barking snow land and person standing speaking in black dress displaying on?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is shown walking across a snowy surface while a man looks on?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"who is meeting big white bear on the mountains?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what walks by as the eskimos watch from the far end?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is man meeting on the mountains?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what pause as giant white polar bear crosses their path?\",\n    \"video_name\": \"video8570\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game clip of a man doing?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a clip of someone doing?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a male commentates over a video game while doing?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the video game wasvery doing?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"engage\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does the player drive?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"firetruck\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drives a firetruck?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who drives his character in a car?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who plays a game and talks about santa claus?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who takes a shortcut in a driving simulation game?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what commentates over a video game while driving around in a car?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"who is talking while driving a car on a video game?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what commentates over a video game while talking about santa?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what wasvery engaging?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8571\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is in a pit with cobras?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does one on the head smack in a pit of cobras is moving snakes?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man inside of a pit of cobras is very dangerous?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who does one on the head smack in a pit of cobras has to?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picks up a few of snakes?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who snakes inside of a run down room?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man grabs at snakes and throw them around?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who stands in a room full of snakes?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boy in white color dress wearing cloth holding snake catching in displaying on screen?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a boy in white color dress wearing cloth holding snake catching in hand displaying on?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is inside of a pit of cobras the scene is very dangerous?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is carrying a blue sack a couple of men are commenting on a video of a man walking around in a pit of cobras?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"handler\"\n  },\n  {\n    \"question\": \"what is a snake handler carrying a couple of men are commenting on a video of a man walking around in a pit of cobras?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"sack\"\n  },\n  {\n    \"question\": \"what is a man in a pit of cobras with a blue cloth doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"smack\"\n  },\n  {\n    \"question\": \"what is a snake handler is the subject of this television program doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a couple of men doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is in a pit of cobras this man doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is lot of snakes in the video a person doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"maintain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what is person in white shirt doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy in white color dress doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man is in a pit of cobras doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a person with a blue blanket doing?\",\n    \"video_name\": \"video8572\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do a vintage music video of procol harum singing a whiter shade of?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"pale\"\n  },\n  {\n    \"question\": \"who sings while standing in front of men?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what sing a whiter shade of pale?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"procol\"\n  },\n  {\n    \"question\": \"what do procol harum sing a whiter shade of?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"pale\"\n  },\n  {\n    \"question\": \"what is a group singing?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does rock band sing?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is singing a song?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do a guy wiith?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"mustache\"\n  },\n  {\n    \"question\": \"what does a man with a mustache lip sync?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wiith a mustache singing?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what sings a song?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who sings in front of a church and his band mates?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man sings while doing?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a video of a rock group doing?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is talking outside in an old video?\",\n    \"video_name\": \"video8573\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who records their new shoes?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman display?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"puma\"\n  },\n  {\n    \"question\": \"what is someone wearing?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"puma\"\n  },\n  {\n    \"question\": \"what explains about the new shoes?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who gives a review for puma classic?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is wearing black puma sneakers?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing black and white sneakers off?\",\n    \"video_name\": \"video8574\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who talks about hunger games?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman describing scenes in?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who talks about shirtless actors?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is describing scenes in a movie?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about the hunger games?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about different men in the entertainment industry?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"who talks about peeta?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what cast showcasing movie trailers?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who seems to be explaining something here?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a lady seems to be doing?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about entertainment?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what discusses movies?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"randolph\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"who is telling the news?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does woman talk about?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"peetum\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"hunger\"\n  },\n  {\n    \"question\": \"who did a short news cast showcasing?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is talking about news?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who reviews current movies?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is reviewing an actors performances?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a lady seem to be explaining here?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman telling?\",\n    \"video_name\": \"video8575\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does a woman prepare?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who prepares garlic to cook?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping garlic?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women cutting?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"who is mincing garlic?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is cutting garlic with a kitchen knife in a kitchen?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting something with knife in a kitchen?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman cutting with a kitchen knife in a kitchen?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what is a woman cutting garlic with a kitchen knife in?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is cutting garlic in a kitchen?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone cutting with knife in a kitchen?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who shows people how to chop garlic?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a person cutting in a kitchen?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"who is explaning a food recipe?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who prepares a recipe?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady explaning?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is cutting garlic?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing something?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is preparing a meal?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady slicing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person cutting garlic in?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"mince\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is in a kitchen a woman doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8576\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what are a woman and a man doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an english man in a suit doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with glasses doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a couple in an office begin doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two women and one men in a office doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a specs girl doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a women in spectacles doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what looks on?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a blonde woman sitting from them talking about hot yoga?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"accros\"\n  },\n  {\n    \"question\": \"who is sitting down?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is an english man in a suit talking to with his wife?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"therapist\"\n  },\n  {\n    \"question\": \"who is giving counciling to couples?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking to a woman?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is an english man in a suit talking to a therapist with?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"wife\"\n  },\n  {\n    \"question\": \"what are 2 girls and a man having?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are people enjoying here chatting with each other?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"togethernes\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is given to couples by a lawyer?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"counciling\"\n  },\n  {\n    \"question\": \"who shows various scenes from a movie?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who is some counciling given to couples by?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"lawyer\"\n  },\n  {\n    \"question\": \"what are a woman and a man sitting on while a blonde woman is sitting accross from them talking about hot yoga?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who is talking to a two ladys in a movie trailer?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a women in spectacles talking to while other female looks on?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting accross from them talking about hot yoga?\",\n    \"video_name\": \"video8577\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what does a man narrate?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what was fun?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing games?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what was the video game?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"who is playing a video game in a castle?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man playing a video game in?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"castle\"\n  },\n  {\n    \"question\": \"what is a man playing in a castle?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is commentating while playing minecraft?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about minecraft?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who narrates his minecraft gameplay?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a person talking about?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a minecraft character doing?\",\n    \"video_name\": \"video8578\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is drinking beside a girl?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what seems to be enjoying their time here?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"lot\"\n  },\n  {\n    \"question\": \"who is a man drinking beside?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is drinking beer?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does lot of people seem to be enjoying here?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"who is drinking soda?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drinks beer?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does boy drink?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"who drinks a beverage?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who turns around?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are girls talking at?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what are people dancing at?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what is a person drinking?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"soda\"\n  },\n  {\n    \"question\": \"what is a man drinking?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"what does a man drink?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"beverage\"\n  },\n  {\n    \"question\": \"how many women are talking together in public?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a group of teenagers doing?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are characters doing?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is lot of people seems to be doing?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are tow girls doing?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is drinking beer while the woman with him turns to talk with an african american girl?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who talks to the pair of a drinking man?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"how many girls speak to each other at a party?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two girls speak to each other at?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what is being played of two girls talking to each other?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what are characters talking to each other in?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what is the man drinking while the woman with him turns to talk with an african american girl?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"who is at a party with friends?\",\n    \"video_name\": \"video8579\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a video from a hollywood movie a person talking over the phone in the video?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"who describes how will smith a white shirt role in the pursuit of happiness really resonated with him personally?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is trying to start a career in the stock market?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"dad\"\n  },\n  {\n    \"question\": \"what does a black man in a white shirt act in where he sits at a desk?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are civil engineers drawing some pictures at their office in?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what will a behind the scenes look at a smith movie shows a person in 70s garb the movie is the pursuit of?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"happiness\"\n  },\n  {\n    \"question\": \"what will a behind the scenes look at a smith movie shows a person in the movie is the pursuit of happiness?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"garb\"\n  },\n  {\n    \"question\": \"what is camera man doing?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is will smith doing?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is it is a video from a hollywood movie a person doing?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are in the team civil engineers doing?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is will smith doing?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a man in a suit doing?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a single dad doing?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is there are people doing?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are people dressed in white button down shirts and ties doing?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a white shirt man doing?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what will a behind the scenes look at a smith shows a person in 70s garb the movie is the pursuit of happiness?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what will a behind the scenes look at a smith movie shows a person in 70s garb is the pursuit of happiness?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are people dressed in white button down shirts and ties sitting at tables in?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what is the team a video from a hollywood movie a person talking over in the video?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is the team a video from a hollywood movie a person talking over the phone in?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man in a suit talking on?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a man in a suit working in?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what are civil engineers drawing some pictures at in the team?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what does a man wear?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who sits at a desk?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what about will smith on the movie called pursuit of happiness?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"article\"\n  },\n  {\n    \"question\": \"who will a behind the scenes look at a smith movie shows in 70s garb the movie is the pursuit of happiness?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man sit at?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"who wears a white shirt?\",\n    \"video_name\": \"video8580\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an announcer doing?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who does a man talk about?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"videogame\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about a mario video game?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is describing a mario party scene?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who are displayed underneath numbers?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who talks about a videogame?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8581\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"surround\"\n  },\n  {\n    \"question\": \"what are the machine doing?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a crane doing?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a crane moving?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what are a group of people working on?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"motor\"\n  },\n  {\n    \"question\": \"what is being lifted?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what are men using to move an engine?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"hoist\"\n  },\n  {\n    \"question\": \"what are carrying through crane?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what are men using a hoist to move?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what do a group of men raise?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is moving the engine?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"crane\"\n  },\n  {\n    \"question\": \"who are the machine carrying through?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"crane\"\n  },\n  {\n    \"question\": \"what do people lift?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what are some guys taking out?\",\n    \"video_name\": \"video8582\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man with a green shirt doing?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is turning a mixer on?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is using a mixer to prepare some type of food?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did cooking video clip narrate by?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man loading with food?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"who is blending ingredients?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are added to a mixer?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who mixes shrimp butter and flower?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a chef turning on?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"what are shrimp added to?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"what is a man preparing?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is showing how to cook?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mixes food in a kitchen aid mixer?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man use to mix shrimp and flour?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person making with shrimps?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what narrated by a man?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man loading a mixer with?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is mixing something in a pan at the kichen?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a chef putting things into?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"who pours some liquid into a mixer?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who uses a stand mixer to mix shrimp and flour?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting things into a mixer?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is making a dish with shrimps?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is loading a mixer with food?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man using to prepare some type of food?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"what is a man mixing in a pan at the kichen?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a person pour into a mixer?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what does a person pour some liquid into?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"who does a man use a stand mixer to mix?\",\n    \"video_name\": \"video8583\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is putting autograph?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person record autographs?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who is signing something?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"what a person signs?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"autograph\"\n  },\n  {\n    \"question\": \"what is a celebrity signing?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what an actress signs?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"autograph\"\n  },\n  {\n    \"question\": \"what is a music video of an english socialite doing?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a celebrity doing?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who signs autographs?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"actres\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"autograph\"\n  },\n  {\n    \"question\": \"who is autographing a fan s possession?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what set to musicof a women surrounded by people?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is signing a piece of paper?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman autographing a fan s?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"possession\"\n  },\n  {\n    \"question\": \"who signs autographs for fans?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what an autograph for someone?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman autographing s possession?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"fan\"\n  },\n  {\n    \"question\": \"who signing autographs for a girl?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who records a celebrity signing autographs?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do a boy sign autographs for?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a person signs an autograph for?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is signing autographs?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting autograph in something?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a boy sign for a girl?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"autograph\"\n  },\n  {\n    \"question\": \"what is a woman signing a piece of?\",\n    \"video_name\": \"video8584\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what do a cover for?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what does a man build?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is recording?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a gas tank doing?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a segment doing?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an instructional video on doing?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is someone displaying?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the person talking about?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who is showing parts of a motorcycle?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives information on motorcycle repair in his garage?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a guy break down on a motorcycle?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"tank\"\n  },\n  {\n    \"question\": \"who shows area beneath a gas tank?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a vehicle?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man showing parts of?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is sitting on some wood?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"tank\"\n  },\n  {\n    \"question\": \"what does man show beneath a gas tank?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what is a gas tank sitting on?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"who is talking about pipe line?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a guy break down a gas tank on?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who breaks down a gas tank on a motorcycle?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is displaying an engine casing?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who builds something?\",\n    \"video_name\": \"video8585\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an engaging man giving a history lesson about?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"egypt\"\n  },\n  {\n    \"question\": \"when do many picutures of egypt through time communicate?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"what is a person speaking about egyptian history in?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"who is talking about egyptian ancient history?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with spectacles and gray over coat saying?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"when is a person speaking in a program?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"what is a boat slowly in?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is slowly in the water?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a boy in front of laptop explains the egypt pyramid and doing?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man at a desk doing?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is several pictures of what a man at a desk doing?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who speaks about the history that are not the symbol of egypt?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"john\"\n  },\n  {\n    \"question\": \"who is speaking about egyptian history in a program?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what sits next to a globe and talks about the pyramids in egypt?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is giving a history lesson about ancient egypt?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"engaging\"\n  },\n  {\n    \"question\": \"what gives a quick lesson on the history of ancient egypt?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"green\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who speaks about the history typical talk about egypt some damaged places of photographs is shown?\",\n    \"video_name\": \"video8586\",\n    \"answer\": \"john\"\n  },\n  {\n    \"question\": \"who does the man in the blue shirt talk about his job to?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"interviewer\"\n  },\n  {\n    \"question\": \"what is a dark haired man wearing a blue button down shirt talking in a room with an orange stripe on?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is a guy in a blue button up shirt interviewed about?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"careear\"\n  },\n  {\n    \"question\": \"what do man talking about athlete with a anchor in?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does the man in the blue shirt talk about to the interviewer?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"job\"\n  },\n  {\n    \"question\": \"what does the man talk about to the interviewer?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"job\"\n  },\n  {\n    \"question\": \"what is a guy in a blue shirt talking about?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who talk to another in a news center?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does the man talk about his job to?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"interviewer\"\n  },\n  {\n    \"question\": \"what is a man in a dark blue button-up shirt doing?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what does a interview of a guy who wear?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a young man in blue shirt doing?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a dark haired man doing?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt doing?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is guy in blue shirt doing?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy in a blue shirt doing?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video interview?\",\n    \"video_name\": \"video8587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a few people doing?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"balance\"\n  },\n  {\n    \"question\": \"what are several kids doing?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some guy s doing?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is teens doing?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is this is a giant beach ball for the disney channel and kids doing?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are young adults doing?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are young kids doing?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is group of people doing?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a group of young people doing?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are several kids playing with giant beach balls in?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are playing together?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what are some people playing with?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are some guy s hitting?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what did a group of people hit a giant inflatable ball into?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what are hitting a big ball?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a group of teenagers keep a giant beach ball in?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what are a few people balancing on their hands?\",\n    \"video_name\": \"video8588\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"how many girls are kissing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did two women kiss each other to?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many women are kissing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who loves another woman?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman love?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who touches another woman sensually?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who a woman touches?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women kiss while a sad song plays?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are two women in dresses doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are two woman doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is two females doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is the two ladies doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"embrace\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many females kissing while music plays?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many ladies share a few sensual moments?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are 2 women doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a video song in which two girls doing?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"how many women kissing each other to music?\",\n    \"video_name\": \"video8589\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about a product?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who advertises a water filter?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man reviewing water filter for?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"proone\"\n  },\n  {\n    \"question\": \"who is pitching a water filter product?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"salesman\"\n  },\n  {\n    \"question\": \"who is giving information about war things?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a pro one device?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing off a new model of?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"filter\"\n  },\n  {\n    \"question\": \"who is showing off a new model of a filter?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about some filter?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a product on a show?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is zooming on some objects?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man show off?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"filter\"\n  },\n  {\n    \"question\": \"what does a man advertise?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"filter\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"who shows off a water filter?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man giving information about?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is the camera doing?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"zoom\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is infowars commercial doing?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a salesman doing?\",\n    \"video_name\": \"video8590\",\n    \"answer\": \"pitch\"\n  },\n  {\n    \"question\": \"what do an actor and a leader of a country sit next to each other in?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do morgan freeman and nelson mandel sit by side and smile?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is morgan freeman being interviewed about?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who begins talking about how kids can relate to someone?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a old man in white shirt doing?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a old man doing?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is there is a old man doing?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is there are two pictures of morgan freeman and nelson mandela accompanied by the voice of a caller to a radio show doing?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is photos of two black men with a woman doing?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a old man in white shirt talking to?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is morgan freeman doing?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman begins doing?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is morgan freeman and nelson mandela doing?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is pictures of an old black man and old black lady doing?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who was two older gray men on photos one is a moviestar and the other one?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"politician\"\n  },\n  {\n    \"question\": \"who phone in questions about morgan freeman?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who freeman standing next to south african nelson mandela?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"morgan\"\n  },\n  {\n    \"question\": \"how many old men are being photographed in many ways?\",\n    \"video_name\": \"video8591\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is eating a baguette and egg?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking while he eats breakfast using a baguette to cut into an egg?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is tasting a dish with a baguette?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using bread to pick up egg from a dish?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who eats breakfast using a baguette to cut into an egg?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy using to pick up egg from a dish?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"who eats an asian hot pot dish?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about food?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is eating food?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who eats some food?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is this is a man doing?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a persons doing?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is eating?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person eating?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a person eat?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who eats food?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8592\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is playing the guitar?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is moving from a chair with guitar?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man play in front of a microphone?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person moving from with guitar?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a person moving from a chair with?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who sits in a recording studio?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar and singing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who prepares for session?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does kid guitar player prepare for?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"session\"\n  },\n  {\n    \"question\": \"who plays guitar?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a song?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who works on his new song?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"guitarist\"\n  },\n  {\n    \"question\": \"what are singers singing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who plays a guitar in front of a microphone?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is performing with a guitar and his voice?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in room playing guitar doing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a silent black and white collage display of a man doing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8593\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who walks around a dead body on the floor?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks to his chair as a man lays in the floor?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"johnny\"\n  },\n  {\n    \"question\": \"who is talking sinisterly in a dark room?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a movie trailer show?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does johnny depp walk to as a man lays in the floor?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who appears really creepy?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"edward\"\n  },\n  {\n    \"question\": \"what does a man lay in?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who shows some movie scenes?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who is looking at himself in a mirror in a scene from a movie?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who speaks to a lady?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"edward\"\n  },\n  {\n    \"question\": \"who does edward scissorhands speak to?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is the main character looking at himself in in a scene from a movie?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"who lays in the floor?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man walk around in a room where another person is lying dead on the floor in?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"convince\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in a movie a man walks around in a room where another person doing?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is in a scene from a movie the main character doing?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who walks around in a room where another person is lying dead on the floor in a movie?\",\n    \"video_name\": \"video8594\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man give a tour of?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"mini\"\n  },\n  {\n    \"question\": \"what view of a small car and its headlights?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who walks around a car?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is presenting a car?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man get out of?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man walk around?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is showing his car?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows off his car?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who looks at theheadlights?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person presenting?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a guy show off?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what was very small?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person showing?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who gets out of a car?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getting out of a very small car describing yellow headlights?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is getting out of a running vehicle?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a person is video doing?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8595\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is serving food?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who grilling potatoes?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who fries the fish and pottato?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is grilling some potatoes?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many persons are cooking?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are smoking bacon?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are grilling meat and potatoes?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who puts potatoes on a barbecue grill?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is this is a video of doing?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what were the potatoes in?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"pail\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person serving?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are two men grilling?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what are two men?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"who is grilling?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8596\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about his camera choice?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"who is talking to the camera?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking to?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who discusses what camera he uses to film his videos?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who uses?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man use for a man is talking about the camera?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking about cameras?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who uses for his videos a man is talking about the camera?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the types of camera he uses?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"who is talking about something in a room?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a statement in a video log?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man use for his videos is talking about the camera?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man use for his videos a man is talking about?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man talking about something in?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man talking about in a room?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a high school kid like on a high school kid talks about the lens?\",\n    \"video_name\": \"video8597\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what rolls down a conveyer belt?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a potato roll down?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"conveyer\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are some potatoes doing?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a potato doing?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a potato sits on a conveyor belt and looks forward to doing?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"become\"\n  },\n  {\n    \"question\": \"what are wet potatoes doing?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is in a factory a potato makes it s way on a doing?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is in the kitchen person doing?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a patatoes inside market doing?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what does a potato moving down a conveyor belt have?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who explains about the potato that is going to owen before a is converted into chips?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are rolling down a belt of bars?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"wet\"\n  },\n  {\n    \"question\": \"who is recording the yellow potatoes in the kitchen?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing the moving of the yellow potatoes?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman with a british accent provide for a potato making its way down a conveyor belt?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"narration\"\n  },\n  {\n    \"question\": \"what drops with other potatoes on a moving rolling pipes?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a potato moving down a conveyor belt expressing at soon being turned into a potato chip?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"joy\"\n  },\n  {\n    \"question\": \"what does a woman with a british accent provide spirited narration for making its way down a conveyor belt?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a woman with a british accent provide spirited narration for a potato making down a conveyor belt?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what makes it s way on a moving belt?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is person recording the yellow potatoes in?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what sits on a conveyor belt?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what describes how it has always wanted to be a chip?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what looks forward to becoming a chip?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is person recording in the kitchen?\",\n    \"video_name\": \"video8598\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did mortal kombat?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"babality\"\n  },\n  {\n    \"question\": \"what is freddy wins a mortal kombat match with a babality doing?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"finish\"\n  },\n  {\n    \"question\": \"what does a man narrate play?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is rained upon?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who narrates his video game play?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does freddy win by?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"babality\"\n  },\n  {\n    \"question\": \"what does a video game character meet with?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"defeat\"\n  },\n  {\n    \"question\": \"who wins by babality?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"freddy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character meets with doing?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"humiliate\"\n  },\n  {\n    \"question\": \"what did a baby on mortal kombat?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"fatality\"\n  },\n  {\n    \"question\": \"who is being rained on in a video game?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who kombat babality demo?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"mortal\"\n  },\n  {\n    \"question\": \"who emits lightning then falls down in tears?\",\n    \"video_name\": \"video8599\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a person speaking about something in a live program in?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"cnbc\"\n  },\n  {\n    \"question\": \"what is man in red blouse leading on cnbc?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man in red blouse leading a tv show on?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"cnbc\"\n  },\n  {\n    \"question\": \"what is the man in a purple sweater giving on a news network?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what does a black man in a sweater offer?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"advice\"\n  },\n  {\n    \"question\": \"what is the man explaining by waving his hands in the studio?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a black reporter talks about doing?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is there is a man in red doing?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an african american in a collared shirt and sweater doing?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man without hair doing?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a balck man in dressed in purple doing?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a janitor in a red shirt doing?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in red blouse doing?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"what is a man explains how to save money doing?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who explains how to save money using careful living and a financial professional?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tells that he believes that anyone can invest but that someone needs the heart of a teacher?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who is speaking about something in a live program in cnbc?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining something by waving his hands in the studio?\",\n    \"video_name\": \"video8600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing magic with color papers?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about paper crafts?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing origami?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man folding pieces of?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing craft work?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folds the paper?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing magic with?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who folds paper?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what does someone fold?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does the man fold?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is folding pieces of paper?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person folding two pieces of?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person fold a piece of up?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is folding a small piece of colored paper?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a pair of hands fold?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folding two different pieces of paper?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who folds a piece of paper up?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a pair of hands fold pieces of?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man folding colored pieces of?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person folding a small piece of?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding two pieces of paper?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a man folding two different pieces of?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding colored pieces of paper?\",\n    \"video_name\": \"video8601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man shown in while another picture of three people in it?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what do two men and a woman stand wearing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"leather\"\n  },\n  {\n    \"question\": \"who looks like an esteban?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is there are still images of latino singers doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"who is standing between two men in a film shot?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is two men and a woman stand doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is wearing a scarf?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown in a picture while another picture of three people in it?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a montage of photos doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is photo montage of a man doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is ricky martin doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is these man and woman doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl and two men doing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"scarf\"\n  },\n  {\n    \"question\": \"who does a woman look like?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"esteban\"\n  },\n  {\n    \"question\": \"what martin standing with other singers?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"ricky\"\n  },\n  {\n    \"question\": \"who are some pictures shown of?\",\n    \"video_name\": \"video8602\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"what matches?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"montage\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is highlights from various doing?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two competitors doing?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is we watch doing?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are wrestlers doing?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a song plays over multiple people doing?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are two competitors wrestling in?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"how many men wrestle on a mat with a referee present?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are wrestling on a mat?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many competitors are wrestling in a gym?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men wrestle on with a referee present?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"where are men wrestling?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are two boys wrestling on?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what are men wrestling on?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what do an amatuer wrestling?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what plays over multiple people wrestling?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"how many men are wrestling?\",\n    \"video_name\": \"video8603\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who held a small dog?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are men and women doing?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cnn report doing?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is man on cnn doing?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men and women talking on about their rescue dogs?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"cnn\"\n  },\n  {\n    \"question\": \"what is a dog eating from a plate?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is eating food from a plate?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who pets his dog in a room?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who throws a tea party for dogs?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man throw for dogs?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"who interact with dogs?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people talking about?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"rescue\"\n  },\n  {\n    \"question\": \"what do people throw for rescue dogs in a living room?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what is a dog eating food from?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what are people having with their dogs?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what did the man hold?\",\n    \"video_name\": \"video8604\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what shows part of a music video from the artist beyonce?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is beyonce the vocalist is dressed in a pink dress doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is ladi in white gaun singing song about girl and some other girls are also doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is an girl in white dress and two kids doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is beyonce dances seductivley doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a music video with a woman doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a women and girls doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is one sexy girl singing and dancing also girl doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"how many sisters are dancing on beat of a song?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who is dressed in a pink dress wearing a tiara singing about being a grown woman?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"vocalist\"\n  },\n  {\n    \"question\": \"what is a women in pick dress doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a women in pick dress dancing to?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who does a music video with a woman dancing around singing i m?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a music video with a woman wearing a princess costume m?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what are two sisters doing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who dances seductivley wearing a pink dress and beads?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"beyonce\"\n  },\n  {\n    \"question\": \"who is dancing a pop song?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is laughing on the camera?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a women with white hair long dress and crown on dancing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what do a women with white hair long dress and crown on singing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what are a women and girls dancing for?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a girl laughing on?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl dancing?\",\n    \"video_name\": \"video8605\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"what are at a hospital someone is being wheeled away in a stretcher?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"sell\"\n  },\n  {\n    \"question\": \"who is pretending to eat of a plate?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady being rushed into?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"who is talking in sign language?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who uses sign language?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who eats rice?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman go to?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"who goes to the hospital?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is a man selling?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"language\"\n  },\n  {\n    \"question\": \"what does a man use?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"language\"\n  },\n  {\n    \"question\": \"who is hurt?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is eating?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man eat?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what asian boy is on?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"stretcher\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman being rushed into?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"what does a man give to various people?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"advice\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is guy crying and doing?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"communicate\"\n  },\n  {\n    \"question\": \"who is shown helping other people with problems?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a family at a hospital someone is being wheeled away in?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"stretcher\"\n  },\n  {\n    \"question\": \"who is being moved while unconscious in a hospital?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a family at a hospital is being wheeled away in a stretcher?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are a family at someone is being wheeled away in a stretcher?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"who show some sign s of eating?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating something?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives advice to various people?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is selling food?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on a stretcher?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is being rushed into a hospital?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being rushed into the hospital?\",\n    \"video_name\": \"video8606\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about car parts?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man showing the rear sub frame assembly of?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who is showing how to work on a vehicle?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person showing the underside of a car in?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is a person showing the underside of in a garage?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is spmone showing the drive shaft of?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is showing the drive shaft of a car?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"spmone\"\n  },\n  {\n    \"question\": \"who is showing the underside of a car in a garage?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about the drive shaft of a vehicle?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing car parts?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is spmone doing?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8607\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what match with professional casters?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what match with two teenage looking boys?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"how many wrestlers prepare to start a match?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young men have a wrestling match?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers get ready for their match?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are wrestling?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys are wrestling on a mat?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young wrestlers begin the third period of their televised match?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many athletes wrestle on a red mat?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many highschool boys compete in a wrestling match?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who compete in a wrestling match?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"highschool\"\n  },\n  {\n    \"question\": \"what does an exciting wrestling match take?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a referee starts a doing?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a wrestling match with two teenage doing?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is two boys doing?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what was very entertaining?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what do two wrestlers get ready for?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what do two young men have?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what do two wrestlers prepare to start?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what are two guys wrestling on?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"how many kids enter an arena to start a wrestling match?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do wrestlers continue?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who starts a wrestling bout of two players?\",\n    \"video_name\": \"video8608\",\n    \"answer\": \"referee\"\n  },\n  {\n    \"question\": \"what does a old lady wearing hat holding a machinery equipment in hand car beside speaking on topic discusing displaying on?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a woman wearig black suit cream color hat and a green color scarf describing about?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a woman showing a bunch of in the back of a truck?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"extention\"\n  },\n  {\n    \"question\": \"what is woman with orange hat taking from the bag?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"who shows there?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what has bring?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who a woman films gathering tools from the bed of a truck?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"what do woman showing a large extension cord and a smaller extension cord in the back of a pick up?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what has showing some auto electrical equipment in the back side of a van?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who is showing the tools kept in the van to tug the vehicle?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is showing a bunch of extention cords in the back of a truck?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are long black and yellow wires tangled in the back of a white pick up?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a woman wearing a hat pick up from the bed of a pickup truck?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"extension\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman films herself doing?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"gather\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady with an orange hat doing?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman wearig black suit cream color hat and a green color scarf doing?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a old lady doing?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a female has bring and doing?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8609\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what play?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are the players playing basketball in?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who dunks a basketball?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what dunks the basketball?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"michael\"\n  },\n  {\n    \"question\": \"what does michael jordan slam dunk?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what preforms a song?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who are playing a game?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a basketball player slam dunk?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are basketball players playing?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is shown in highlights?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"deandre\"\n  },\n  {\n    \"question\": \"what is basketball game doing?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what are basketball players doing?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the players doing?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two teams doing?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is made?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who shows off his skills?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a band preform?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a man dunk?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who gets the ball stolen from him?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are the players playing in the ground?\",\n    \"video_name\": \"video8610\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what did a title in red text squidward?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"suicide\"\n  },\n  {\n    \"question\": \"what did cartoon fish fall from the sky and then the words stayed on the screen?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"suicide\"\n  },\n  {\n    \"question\": \"what did cartoon fish fall from the sky and then the words squidwards suicide stayed on?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what fell from the sky and then the words squidwards suicide stayed on the screen?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what did a very short clip showing squidward?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"suicide\"\n  },\n  {\n    \"question\": \"what are falling from the sky?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what about squidwards suicide?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is the video about?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"suicide\"\n  },\n  {\n    \"question\": \"what does a animation about squidwards?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"suicide\"\n  },\n  {\n    \"question\": \"what does a still image show?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what shows some text?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what are fish falling from?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is about squidwards suicide?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are fish doing?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are fishes doing?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a very short clip doing?\",\n    \"video_name\": \"video8611\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is moving on track?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what gives away smoke?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a cartoon train rolling down?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what rolls around a track?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a toy train moving on?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what drives along a road?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what does an animated train roll around?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what does a toy train give away?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what does a train drive along?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is rolling down a street?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what train chugging around?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what train traveling?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is yellow?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is kissing each other?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is a train moving in a kid s?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a cartoon train doing?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"chug\"\n  },\n  {\n    \"question\": \"what is a cartoon train doing?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a cartoon train doing?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a song about a train while doing?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a toy train doing?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a train doing?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is cartoon of a train doing?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what train driving on a road in a cartoon town?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is moving in a kid s tv show?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is riding around town in a cartoon?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what do a cartoon train driving on in a cartoon town?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8612\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a woman announce?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are girls playing?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a soccer player kick?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what did the opposite party win?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what won the game?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"who kicks a goal?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is talking about a women s soccer game?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who announces a soccer match?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is trying to stop the football?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"keeper\"\n  },\n  {\n    \"question\": \"who is playing soccer and score a goal?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who comments over footage from soccer?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is an announcer talking about a women s?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are women from the usa football team making?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"who is commentating on a female soccer playing making a goal?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are players on a field playing?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is the sports man doing?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are players on a field doing?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is goal keeper doing?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is an announcer doing?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video8613\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is jumping on a playground?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is going up stairs?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"where does a child play?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who is climbinb stairs?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"where is a child playing?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what is a little girl jumping on?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what is a child shown jumping off?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"who is playing in his yard?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who plays at a park?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what does a child play at?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is a child playing on?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"where is a little girl jumping?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what is a child?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"climbinb\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a child playing in?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"who is doing?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is playing on the playground?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is shown jumping off a playground?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a little kid doing?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a child is shown doing?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8614\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what head asking for a rating?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do a cartoon face being typically homosexual?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"stereo\"\n  },\n  {\n    \"question\": \"who asks for comments and ratings for his video?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what an animated character asking for the viewer to comment and rate?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a cartoon head asking for?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"rating\"\n  },\n  {\n    \"question\": \"what discusses being gay and fabulous?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is someone tilting?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is shown talking?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what face being stereo typically homosexual?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated character doing?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is an animated figure is shown doing?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"tilt\"\n  },\n  {\n    \"question\": \"what is a man in makeup doing?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cartoon character doing?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a cartoon of a man doing?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a cartoon man with colorful hair doing?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon head doing?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a cartoon video of a women doing?\",\n    \"video_name\": \"video8615\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a playstation and computer sit on?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"who hooked up to a computer monitor?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"playstation\"\n  },\n  {\n    \"question\": \"what sits on a table next to a monitor?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"playstation\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"hook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video of a person doing?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does a video game console sit on with some games?\",\n    \"video_name\": \"video8616\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"who is showing the interior of a factory where plates are broken and is explaining?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what has food splattered on the floor and doors of the appliances?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a metal door have on it a stainless steel kitchen has broken dishes on the floor?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is shown someone has ransacked it?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what has sauce on it a stainless steel kitchen has broken dishes on the floor?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what are some chefs in white outfits doing?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man with a white out fit doing?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what are a plates doing?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"splash\"\n  },\n  {\n    \"question\": \"what is an man doing?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a professional kitchen shown has ransacked it?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who instpects a kitchen that is a complete mess with food and dishes on the floor?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a bunch of dishes broken on?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what looks terrible after a bunch of dishes are broken on the floor?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who talks while workers and other staff show a restaurant kitchen with broken dishes on the floor?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is recording the kitchen of a big restaurant?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man instpects a kitchen that is a complete mess with food and dishes on?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is someone showing the interior of where plates are broken and is explaining?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"factory\"\n  },\n  {\n    \"question\": \"what is a man with a white out fit standing in?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is surveyed with a man giving orders?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are some chefs in white outfits standing in?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is an industrial kitchen surveyed with giving orders?\",\n    \"video_name\": \"video8617\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what say professional video advertisement with social media logos above them?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what do icons of social media and words fly into?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a software displaying on screen twitter youtube facebook displaying on?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who advertiment showing the logos of twitter and youtube?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"viedo\"\n  },\n  {\n    \"question\": \"what is pink text doing?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"note\"\n  },\n  {\n    \"question\": \"what is an advertisement for a professional video company doing?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the words professional video advertisement doing?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"rise\"\n  },\n  {\n    \"question\": \"what is a professional video advertisement doing?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are an advertisement of a video doing?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a black screen with social media icons doing?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"pop\"\n  },\n  {\n    \"question\": \"what is a rofessional viedo advertiment doing?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is words in pink doing?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"letter\"\n  },\n  {\n    \"question\": \"what is a software doing?\",\n    \"video_name\": \"video8618\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who is playing with some toys?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does small figurines s is showing a variety of children?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a video showing characters of a children s?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who plays with toys?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is playing with toy figurines?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing with?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"examine\"\n  },\n  {\n    \"question\": \"what is video of people doing?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there s someone doing?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is hands doing?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"construct\"\n  },\n  {\n    \"question\": \"what is different stages of doll making doing?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a clip of people doing?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is examining all toys carefully?\",\n    \"video_name\": \"video8619\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making a hair accessory?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what decorations?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sewing?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who prepares some arts and crafts on a table?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman threading into a piece of garment?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"string\"\n  },\n  {\n    \"question\": \"who makes hair clips from ribbon?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does crafts?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is working on ornaments?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing magic?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who makes arts and crafts?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sewing objects together?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is threading string into a piece of garment?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who bow?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"sew\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"thread\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8620\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what moves across a computer generated globe?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"what is a satellite flying over the earth in?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is a satellite flying over in a animation?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what is a satellite circling the earth in?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what scans the surface with a beam?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"what simulation showing the satellite mapping of the earth?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is circling the earth in outer space?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"what does a video of a remote sensing satellite orbit?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what that shows a satellite flying around the world?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what do a nasa computer simulation showing the satellite mapping of?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what is a satellite circling in outer space?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what does a satellite scan with a beam?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"surface\"\n  },\n  {\n    \"question\": \"what does a satellite fly over?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what does an animated illustration of earth s thick snow caps and ocean can be seen from the outer space?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"atmosphere\"\n  },\n  {\n    \"question\": \"what is flying over the earth in a animation?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"what flies over the earth?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"who is explain about a stelite and space?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a satellite doing?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what is a nasa computer simulation doing?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is computer animation that shows a satellite doing?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a satelite doing?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what does a satellite scan the surface with?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"beam\"\n  },\n  {\n    \"question\": \"what is a video of a remote doing?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"sense\"\n  },\n  {\n    \"question\": \"what is there is a satellite doing?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a satellite doing?\",\n    \"video_name\": \"video8621\",\n    \"answer\": \"orbit\"\n  },\n  {\n    \"question\": \"who is looking at a rubicks cube?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does cube on a table s a group of people are looking at?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"rubik\"\n  },\n  {\n    \"question\": \"who is doing a rubic s cube?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who completed a rubix cube?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what gathers around a rubiks cube?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who completes a rubix cube?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person attempting to solve a rubik s?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who has tried to solve a rubik s cube?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what are a team of people doing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some guys taking?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some boys playing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what did a man complete?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"rubix\"\n  },\n  {\n    \"question\": \"what does a person complete?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"rubix\"\n  },\n  {\n    \"question\": \"what does solving rubics off?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what are some boys doing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video8622\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a cartoon bunny doing?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a cartoon bunny screams while doing?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video game bunny doing?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animated man doing?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cartoon man doing?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is screaming?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is talking?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon bunny holding up?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"who argues with a scary rabbit in a cartoon television show?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who screams while holding a sign?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who a video game bunny trying to scare?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what bunny trying to scare a boy?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what yells and waves a sign around?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is holding up a sign?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated man talking to?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"who talks about games?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a rabbit?\",\n    \"video_name\": \"video8623\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"peruse\"\n  },\n  {\n    \"question\": \"what are in the computer game the scissors doing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is man describes doing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who minecraft gameplay?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is swinging a sword in a video game?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does man describe playing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does the player run down?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what is a person perusing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"dungeon\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the player use to destroy a monster?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what is a man discussing?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is fighting off enemies?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes playing video game?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who uses his sword to destroy a monster?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what are the scissors cutting in the computer game?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"what is a man swinging in a video game?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who does the player use his sword to destroy?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"who is commentating while playing minecraft?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is perusing a dungeon?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who runs down a hallway?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who is discussing the game minecraft?\",\n    \"video_name\": \"video8624\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"compost\"\n  },\n  {\n    \"question\": \"what is a clip of a man doing?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in a farm guy doing?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a presenter doing?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing vermicomposting?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"gardening\"\n  },\n  {\n    \"question\": \"who is composting scrapes of vegetation with worms?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing near a box of compost?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to prepare a box for gardening?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing a vegetables in plastic container in a farm?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who shows how to make a bed for worms?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about gardening?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is showing how to make a compost bin?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who messes with warms?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what is a man composting with worms?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"vegetation\"\n  },\n  {\n    \"question\": \"what is guy showing a vegetables in plastic container in?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"farm\"\n  },\n  {\n    \"question\": \"what is a man composting scrapes of with worms?\",\n    \"video_name\": \"video8625\",\n    \"answer\": \"vegetation\"\n  },\n  {\n    \"question\": \"what does a man play by watching his hands movement on the monitor screen?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man in a plaid shirt demonstrate?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who is a person operating with the help of a computer?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"who tests out a new bionic arm using a computer?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a person playing with a artificial intelligence hand?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a game with a artificial intelligence hand?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is operating a robert with the help of a computer?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays video game by watching his hands movement on the monitor screen?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is controlling the machine on the computer monitor?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a robotic arm to play a computer game?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person controlling on the computer monitor?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a person playing a type of?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is person working with?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"controller\"\n  },\n  {\n    \"question\": \"what are numbers displayed on?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is working with his controller?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is moving the numbers?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the man hold in his hands?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who holds the machine in his hands?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the man move the objects on?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a man using to play a computer game?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"who moves the objects on the screen?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man using to play a game on a screen?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what is this is voiced over by a female with a slightly heavy accent it appears that a guy in a plaid shirt doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is playing a type of puzzle game?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is using a mechanical arm to play a game on a screen?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"manipulate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what is a guy tests out a new bionic arm doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is controlling the computer using new part of the engine?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man plays video game by doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8626\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what followed by still life images from the 1980s?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what shows various media from the 80s?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are several toys being shown in?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what flash on the screen with no relation?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"random\"\n  },\n  {\n    \"question\": \"who is playing with toys?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does inspector gadget intro?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"theme\"\n  },\n  {\n    \"question\": \"what are displayed before movie figures appear?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"price\"\n  },\n  {\n    \"question\": \"what intro theme?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"inspector\"\n  },\n  {\n    \"question\": \"what is a girl singing?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what appear?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon film doing?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is this is the doing?\",\n    \"video_name\": \"video8627\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone explaining in a game?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"friendship\"\n  },\n  {\n    \"question\": \"what is someone explaining friendship cookies in?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who gives friendship cookies in minecraft?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks at his inventory in minecraft?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with his friends on a video game?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining friendship cookies in a game?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who provides a voiceover description of his actions while playing a video game?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a computer online game?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are playing minecraft?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are a couple playing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a guy playing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what play?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and woman play minecraft while doing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what are a couple doing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man provides a voiceover description of his actions while doing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are several people doing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8628\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is rolling bread?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is rolling doe?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen spreading on it?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who gives instructions for a recipe?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a woman rolling dough out on?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"surface\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a woman making a roll?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"snack\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman rolling?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman making in a kitchen?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman making some food in?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is showing how to roll out dough?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman uses a doing?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen doing?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who uses a rolling pin to flatten out a piece of bread?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making some food in a kitchen?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman use a rolling pin to flatten out a piece of?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what does a woman use to flatten out a piece of bread?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"rolling\"\n  },\n  {\n    \"question\": \"who spreads peanut butter on dough?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"snack\"\n  },\n  {\n    \"question\": \"who makes a desert in the kitchen?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen rolling?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who dough out on a surface?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women showing?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"who is making a snack?\",\n    \"video_name\": \"video8629\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who speaks about some games?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a little girl talk to?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is there is a girl is explains about the market she doing?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two young girls doing?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a girl kids doing?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a rushed market area where the young girl with free hair doing?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two young girls walk down a busy street and then one starts doing?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is appears to be two sisters doing?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"wander\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a little girl in pink color dress doing?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is two young girls doing?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what does one of the girls describe?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"coaster\"\n  },\n  {\n    \"question\": \"who talks to the camera?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who goes to a carnival and talks about a roller coaster?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many young girls are walking through a theme park?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are shown at the fair one of the girls begins to describe a roller coaster called the crazy mouse trap?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young girls walk down a busy street and then one starts talking?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a small girl walking around an amusement park with?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"sister\"\n  },\n  {\n    \"question\": \"what does a young girl at an amusement park describe?\",\n    \"video_name\": \"video8630\",\n    \"answer\": \"spinning\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do two older men discuss?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"who does a man talk about?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"mcgeorge\"\n  },\n  {\n    \"question\": \"who is giving a political speech?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks on tv?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is being interviewed on tv?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men talking in?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an gentle old man doing?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person telling in about a person?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what interviewed in a lecture hall?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"how many older men discuss war?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about mcgeorge bundy?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an old man talks and then picture of another man shown during?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"how many men are talking in the show?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who is a person telling in background about?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about war in a documentary?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is telling in background about a person?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who speaks to a man for an interview?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing the actions of another in an unknown context?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about intentions?\",\n    \"video_name\": \"video8631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a jean jacket challenges a man doing?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is the woman invites the attention of man who doing?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman and man talk on a balcony doing?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"overlook\"\n  },\n  {\n    \"question\": \"what is a movie scene boy doing?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a couple stand on balcony doing?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the couple doing?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are a blonde woman and a man doing?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a blonde woman and a man standing on talking to each other?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"balcony\"\n  },\n  {\n    \"question\": \"who smoke a cigarette while a girl ask him if he wants to play truth of dare?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man smoking?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"cigarette\"\n  },\n  {\n    \"question\": \"who is smoking a cigarette?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who ask there if he wants to play truth of dare?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what do a man smoke while a girl ask him if he wants to play truth of dare?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"cigarette\"\n  },\n  {\n    \"question\": \"what are enjoying edward norton and emma stone?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what stand on balcony playing truth or dare?\",\n    \"video_name\": \"video8632\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a tlc show doing?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animated stage doing?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is in an empty theater a film doing?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man walking through?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"who is walking through a market?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are several men doing?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what show being show in a theater setting?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"reality\"\n  },\n  {\n    \"question\": \"what do a short clip showing a television show inside of?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"theater\"\n  },\n  {\n    \"question\": \"what do a group of men go?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"shopping\"\n  },\n  {\n    \"question\": \"when is playing video clips from a television show?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a tlc show playing in?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"theater\"\n  },\n  {\n    \"question\": \"what is playing in a theater?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is showing in an empty theater?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is an animated stage playing from a television show?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are several men walking around in?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"what do a reality show being in a theater setting?\",\n    \"video_name\": \"video8633\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is coloring?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did the turtle have?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"shell\"\n  },\n  {\n    \"question\": \"what is a person coloring in?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"drawing\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is coloring in a picture of a turtle on the computer about?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"tortoise\"\n  },\n  {\n    \"question\": \"who is coloring in a drawing?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what turle in a computer game?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a computer program being used to paint a picture of?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what had a distinct shell?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"who is coloring a black and white drawing using computer software?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is tutorial for doing?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a demonstration of doing?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a simple animation doing?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8634\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what does a woman show off in a room?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a woman showing a black top with?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"print\"\n  },\n  {\n    \"question\": \"what is a woman explaining a piece of?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what does a woman show off a shirt in?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is folding?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women showing?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a woman showing with popsicles on it?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who is holding up a tank top?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows off a popsicle shirt?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who reviews a tank top?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding up a shirt?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows off a shirt?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is showing off a top?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman review top?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"tank\"\n  },\n  {\n    \"question\": \"what does a girl show off?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"popsicle\"\n  },\n  {\n    \"question\": \"what is a woman holding up?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what do a woman show with an ice candy pattern?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who is explaining a piece of clothing?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a woman showing with icecream print?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"who is showing a black top with icecream print?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shown a dress with an ice candy pattern?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shoes off a top with an ice cream pattern on it?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing a tutorial about a top?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is showing a small shirt with popsicles on it?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows off a shirt in a room?\",\n    \"video_name\": \"video8635\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who show off the latest trends?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what are walking the catwalk?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is a female model walking down?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are several runway models walking?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what are walking in a fashion show?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what is a model walking on?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are women walking down?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is walking?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are models walking up and down?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is walking down a runway?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is walking on the runway?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what show with women walking the catwalk?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some women s doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are several runway models doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are several models doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is video of a fashion show runway with models doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a model doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a few women doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a female model doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do video of a fashion show with models walking?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is fashion show with women doing?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are several models walking up and down with a large crowd watching them?\",\n    \"video_name\": \"video8636\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who is a woman talking to?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what the woman grabs?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what are two girls in?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"how many women are talking?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a woman pick up in a kitchen?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"note\"\n  },\n  {\n    \"question\": \"who is talking to another woman?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many young women are arguing?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are in a house?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women disagree?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who argues with another asian woman?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman pick up a note pad in?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"how many womans are speakin each other?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who picks up a note pad in a kitchen?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who grabs the paper?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"squint\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two confused doing?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two women in a television show doing?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two young women doing?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8637\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are fighting for a ball?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is a foot ball being past to?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what are group of players fighting for?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is being past to another player?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what are more players playing ball on?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are two college football teams playing?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does another player make down?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what are running?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is completed?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"who makes a touch down?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what match where a player trying to grab a ball from another player?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what highlights of quaterbacks throwing the football to receivers who caught the balls?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who make some incredible plays on the field while music plays?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"how many footbal teams battle in a football game?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what plays while clips of college football games are shown?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a game of rugby played?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"alongwith\"\n  },\n  {\n    \"question\": \"what are a bunch of football players trying to score?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"touchdown\"\n  },\n  {\n    \"question\": \"what were a group of players playing on ground?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what were a group of players playing the match on?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what show in which two teams fighting hard with each other?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are more players playing on the ground?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are a bunch of atletic players in a court playing a game of?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is football game highlights of quaterbacks doing?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are more players doing?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two college football teams doing?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what were a group of players doing?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a bunch of atletic players are in a court doing?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a bunch of football players doing?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is an americal football show in which two teams doing?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is players doing?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is an american football match where a player doing?\",\n    \"video_name\": \"video8638\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what is a lady explains in detail how she doing?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the young lady with dark eyebrows doing?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"shape\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a model demostrates how to apply mascara to the eyes while doing?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman with green eyes applies makeup to her face while doing?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a girl applies makeup to her eyelashes while doing?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what demostrates how to apply mascara to the eyes while wearing purple fingernail polish?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"who uses a thin brush to apply makeup to eyes?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who appplies make up with a eye liner liquid pencil for a perfect line?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows how to apply some liquid eye liner?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman use a thin brush to apply to eyes?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what does a woman use to apply makeup to eyes?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what does a woman with green eyes apply makeup to while describing the process?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who shows how to do eye makeup?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes?\",\n    \"video_name\": \"video8639\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is in the water relaxing?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is sitting in the river water?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what do a monkey with a red face sitting shoulder deep in?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a primate animal sit in?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is in the water falling asleep?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a monkey in relaxing?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do classical japanese woodwinds play in?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what has a pink face?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"primate\"\n  },\n  {\n    \"question\": \"what does a primate animal have?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what is thinking in the cold water?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a monkey in falling asleep?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what sits in the water?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"primate\"\n  },\n  {\n    \"question\": \"what do the monkey see just like a man?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"expression\"\n  },\n  {\n    \"question\": \"what is standing in a pool of water looking off into the distance?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is having a deep bath in the river?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is the monkey having a deep bath in?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what do a monkey with a red face sitting deep in water?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"shoulder\"\n  },\n  {\n    \"question\": \"what is the monkey having in the river?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what see the expression just like a man?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a monkey is in the water relaxing and doing?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a red faced primate sits partially submerged in doing?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"ripple\"\n  },\n  {\n    \"question\": \"what lounges peacefully in a hot spring while classical japanese woodwinds play in the background?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"macaque\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is red faced monkey blinking and gracefully doing?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the grey monkey doing?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"think\"\n  },\n  {\n    \"question\": \"what is a water scene monkey doing?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is monkey with frost on fur calmly doing?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what is a monkey with a red face doing?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is small monkey with red face doing?\",\n    \"video_name\": \"video8640\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a couple of people doing?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is two man doing?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two men in uniform doing?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a clip of men doing?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"how many men wrestle?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about wrestling news?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who grapples with another wrestler on the mat?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what acc on game?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what do the wrestling title acc on?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is commentating wrestling?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who won?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who is wrestling?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are wrestling?\",\n    \"video_name\": \"video8641\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"when is a young woman singing in front of a cheering crowd?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who freak out?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does girl sing?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a woman singing?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a contestant sing in?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what does a girl sing?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings a love song?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings in a competition?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl sing on the show?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing on the the voice?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings on the show the voice?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is a woman singing on tv?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on stage on tv?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings a song on a stage?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing on stage in front of a cheering crowd?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what applauds a young girl who sings on stage?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video8642\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is food being placed in a sizzling black skillet on?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is in a kitchen showing how to fry shrimp tempura style?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing a liquid in a bow a wok is on a stove food is being added to a hot wok?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is frying in the pan?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man in a kitchen drop a prawn into?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is cooking something in the black pan?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person mixing a liquid in a bow a wok is on a stove is being added to a hot wok?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person mixing a liquid in a bow a wok is on food is being added to a hot wok?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is a person mixing a liquid in a wok is on a stove food is being added to a hot wok?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"what is a person mixing a liquid in a bow is on a stove food is being added to a hot wok?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"wok\"\n  },\n  {\n    \"question\": \"what is a person mixing in a bow a wok is on a stove food is being added to a hot wok?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what does a man in a kitchen drop into batter?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"prawn\"\n  },\n  {\n    \"question\": \"what is being placed in a sizzling black skillet on the stove?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who discusses how to properly cook some meat?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is person cooking in the black pan?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man in a kitchen heat?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is kept on the gas stove?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"tawa\"\n  },\n  {\n    \"question\": \"what frying fish in a pan in the kitchen?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who prepares shrimp in a pan?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man prepare in a pan?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is heating the black pan?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does someone fry fish in a pan in?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who whisks together a mix?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing the sauce?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man mixing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what does a man whisk together?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is in the kitchen someone doing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a man with an australian accent doing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the man is in a kitchen doing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is man in a black shirt doing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man in a white kitchen doing?\",\n    \"video_name\": \"video8643\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a greyish colored cat doing?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man explain?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video segment?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the benefits of defensive satellites?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a satellite near?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"what does man talk about?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what is near earth?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"who is talking about a satellite?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains space patents?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about satellite technology?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses satellite patents?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about in space?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"what is a man talking about satellite in?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who is talking about satellite in space?\",\n    \"video_name\": \"video8644\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is showing multiple scenarios of the unfortunate events of rape?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who fights with a woman in a bedroom who resists him?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown dropping something into two drinks?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays while people mistreat each other?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"ballad\"\n  },\n  {\n    \"question\": \"how many tablets is someone mixing in juice?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who pins a woman against a headboard by draperies?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is madly in love with another women as both are making love here?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man fight with in a bedroom who resists him?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a people doing?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does another man place into someones cup a man is resisting the act of rape?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"drug\"\n  },\n  {\n    \"question\": \"who is throwing things in anger?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is there is a woman in doing?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is the man and the woman go out doing?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"resist\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a boy hugs a girl a girl was pushed by a boy on the table and a boy doing?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who places drug pills into someones cup a man is resisting the act of rape?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does another man place drug pills into someones cup is resisting the act of rape?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does another man place drug pills into someones cup a man is resisting the act of?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"rape\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what do people fight in while others have a party?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is mixing two tablets in juice?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are both making here?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what do others have?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what are a people dancing in?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what do the man and the woman then have?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what does sad music play in?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"where are a people dancing?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is someone throwing things in?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"anger\"\n  },\n  {\n    \"question\": \"what is someone mixing two tablets in?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what are women being battered in?\",\n    \"video_name\": \"video8645\",\n    \"answer\": \"scale\"\n  },\n  {\n    \"question\": \"what is the men telling hiw to make the vegetable noodles in simply method in?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are vegetables chopped by a chef in in a kitchen show?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who cuts ginger chili and onions and greens?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person using to cut some celery?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is the man cutting the vegetables with on the table in the kitchen?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is using a knife to cut some celery?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is working in a kitchen chopping vegetables?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"gorden\"\n  },\n  {\n    \"question\": \"who are vegetables chopped by in black shirt in a kitchen show?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who explains how to prepare an exotic dish useing ginger garlic and scallions?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who ramsey chops up fresh vegetables in the kitchen?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"what is program the blacked dressed some aged chef cutting red chillis coriander leaf and garlic by his left hand with in a tv cookery?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who prepares a dish by finely chopping chili and fresh spring onions?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"who ramsey chops up fresh vegetables in his kitchen?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"what is gorden ramsey working in chopping vegetables?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is the men telling to make the vegetable noodles in simply method in the kitchen?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"hiw\"\n  },\n  {\n    \"question\": \"what does gordon ramsey prepare by finely chopping chili and fresh spring onions?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is cutting the vegetables with knife on the table in the kitchen?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a chef in black cuts up vegetables on a counter while doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is gorden ramsey doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person with black t-shirt doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is gordon ramsey prepares a dish by finely doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a man in a black shirt quickly doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is in a tv cookery program the blacked dressed some aged chef doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is there is a man in a kitchen doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is in the kitchen the men doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man in a black shirt doing?\",\n    \"video_name\": \"video8646\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"who appeared anxious?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a hollywood?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what walks towards a man?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"what does a man feared by a girl s?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did a girl possess by trying to attack a man?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"demon\"\n  },\n  {\n    \"question\": \"who did a girl possess by a demon trying to attack?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does some demonic creature walk towards?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who possessed by a demon trying to attack a man?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who comes back from the dead in movie teaser?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"daughter\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a girl possessed by a demon doing?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a horror preview about doing?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"bring\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a movie clip with a woman doing?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8647\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what do women discuss their problems on?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do two woman talk to?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does woman talk about?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"miscarriage\"\n  },\n  {\n    \"question\": \"what are the girls speaking?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman talking into?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman talking in?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what did the lady have?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"miscarriage\"\n  },\n  {\n    \"question\": \"what is a woman talking to?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman sitting in?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is talking in a chair?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video segment?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking into the camera?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about having a miscarriage?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to the camera?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting in a chair?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman in a blue shirt discuss?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"miscarriage\"\n  },\n  {\n    \"question\": \"who had a miscarriage?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who talk to the camera?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady in a blue shirt doing?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of women doing?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are the girls doing?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is this is a video of a girl doing?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is ladies doing?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8648\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a person displaying on the table?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what are four young girls doing?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is hands doing?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is showing the sweet potatoes on the chopping board?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is displaying food on the table?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone showing on the chopping board?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"sweet\"\n  },\n  {\n    \"question\": \"who is preparing food with sweet potatoes?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who demonstrates how to select the best sweet potato making sure its not too wide?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is looking at sweet potatoes?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are being prepared?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a person pick up?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone looking at?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"sweet\"\n  },\n  {\n    \"question\": \"what is someone preparing food with?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"sweet\"\n  },\n  {\n    \"question\": \"who picks up a potato?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking potatoes?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking yams?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone preparing with sweet potatoes?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is washing potatoes?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many young girls are sitting?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many young girls are laughing?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what is a person displaying food on?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8649\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who is a man interviewing?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is interviewing a woman?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman hold while listening to a man speak?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a woman asking at a news conference?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"question\"\n  },\n  {\n    \"question\": \"what did woman arrested in abu dhabi killing?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"who holds a microphone while listening to a man speak?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is asking a question at a news conference?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a reporter wait to ask at a press conference in abu dhabi?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"question\"\n  },\n  {\n    \"question\": \"who speaks to a standing woman at a press conference about a mall slaying?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who waits to ask a question at a press conference in abu dhabi?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is telling the news?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"anchor\"\n  },\n  {\n    \"question\": \"what is an anchor telling?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a woman nodding?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is held?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"convention\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man speaks to a doing?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a news clip of a woman doing?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"nod\"\n  },\n  {\n    \"question\": \"what is a woman holds a microphone while doing?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is an anchor doing?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is reporters doing?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is woman arrested in abu dhabi mall doing?\",\n    \"video_name\": \"video8650\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what does a hottie drive?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does the woman drive into?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"dealership\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"hottie\"\n  },\n  {\n    \"question\": \"who talks about cars?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives into the dealership?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman driving?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are people testing out?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what sings?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"hottie\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is being advertised?\",\n    \"video_name\": \"video8651\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man run into when trying to catch a basketball?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who runs into the crowd when trying to catch a basketball?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps into a crowd while playing basketball?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dives into the audience to get the ball?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what a mash of sports clips including a basketball clip of someone diving into?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what does a basketball player jump into?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does basketball player fall into?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who falls into the crowd?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who jumps into the crowd?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a basketball player jumping into?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who jumped between the audience?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"sportsman\"\n  },\n  {\n    \"question\": \"what a basketball player accidentally trips into?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is jumping into the crowd?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a professional basketball player dive into?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are men playing in a college match?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who player accidentally trips into the audience?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a man jump into while playing basketball?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what a mash of sports clips including a basketball clip of into the crowd?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did sportsman jump between?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a basketball player doing?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a basketball player doing?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a man jumps into a crowd while doing?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man runs into the crowd when doing?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a mash of sports clips doing?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is basketball highlight of the miami heat s dwayne wade doing?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8652\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man speaking with girl in?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is speaking with girl in car?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man speaking with in car?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are a man and woman talking in?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are a man and a woman sitting in?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are the couples romance in?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are the couples in the car?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"romance\"\n  },\n  {\n    \"question\": \"what are couples in?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"mood\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a male and female in a car doing?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video of a man a woman doing?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8653\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is stirred?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"stew\"\n  },\n  {\n    \"question\": \"who is teaching how to cook?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman stirring in a pan?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"gravy\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who aking some food?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman display?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does person aking?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is making a recipe?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who displays a dish?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirs gravy?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking something?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is used to mix cooking sauce around a pan?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"spatula\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who stirs a sauce in a pan?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a spatula is used to mix doing?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who stirs a pot of bubbling orange sauce?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirs an orange substance in a pot?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is stirring brown gravy in a pan?\",\n    \"video_name\": \"video8654\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a beaver jump on?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what squirrel tossing something?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who makes a narrow escape?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"gopher\"\n  },\n  {\n    \"question\": \"who destroys a car?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"gopher\"\n  },\n  {\n    \"question\": \"what breaks some boards?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what jumps on an object?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"beaver\"\n  },\n  {\n    \"question\": \"what do cartoon squirrel tossing?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a gopher destroy?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does animated gopher make?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"escape\"\n  },\n  {\n    \"question\": \"what is a furry creature stomping on?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what does a small furry creature throw?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what is stomping on a sign?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"what is cartoon squirrel doing?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"tos\"\n  },\n  {\n    \"question\": \"what does a beaver throw an object into?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a furry creature doing?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"stomp\"\n  },\n  {\n    \"question\": \"what is a cartoon animal doing?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are some animated characters having?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"who throws some wood into the road where a truck runs it over?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"gopher\"\n  },\n  {\n    \"question\": \"what does an animated gopher throw some wood into where a truck runs it over?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does an animated gopher throw into the road where a truck runs it over?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what throws some boards in a street where a car hits the boards?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what throws an object in a cartoon television show?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what throws a large piece of wood?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is in the middle of a road?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does an animal throw a large piece of?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what does a beaver throw into the field?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what does a small animal throw in a cartoon television show?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what is throwing a piece of junk?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is an animal throwing a piece of?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"junk\"\n  },\n  {\n    \"question\": \"who throws a sign and sighs?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"gopher\"\n  },\n  {\n    \"question\": \"who freaks out?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"gopher\"\n  },\n  {\n    \"question\": \"what throws an object into the field?\",\n    \"video_name\": \"video8655\",\n    \"answer\": \"beaver\"\n  },\n  {\n    \"question\": \"what mixes a yellow substance?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"who is mixing ingredients in a mixer?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person mixing ingredients in?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"who is mix something?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is whisking a mixture?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing some food recipe?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who mixes ingredients together?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who mixes together a recipe?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a mixer mix?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"substance\"\n  },\n  {\n    \"question\": \"what is a woman whisking?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a lady showing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is teaching how to cook?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stirs eggs in a metal bowl with a mixer?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"what is a yellow paste of some kind is mixed in a doing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone is mix something and doing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is this is a doing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is video of a blender doing?\",\n    \"video_name\": \"video8656\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"who rides a motorcycle?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is parked?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man arriving on?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what is someone riding?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what the guy parks?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what a person rides?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a person riding on?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"when did a person stop?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"moment\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is arriving on his motorbike?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stopped a moment?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is riding on a motorcycle?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who rides his motorcycle to a building?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who parks a bike?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle then stops and gets off?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dressed in black rides up to an office building on a red motorcycle?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was riding a motor byke with helmet for a moment?\",\n    \"video_name\": \"video8657\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who holds up an old piece of computer equipment for display?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with glasses and brown jacket doing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a old man standing and doing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a guy holds up a round disk while doing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a scientist describes a silicon wafer and its use in doing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who looks at disks in the light to examine hte finish and luster?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who is checking the metal pieces in machine?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about silicon wafers and their usefulness for integrated circuits?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a old man doing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man holding different shiny metal discs in?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who holds up a round disk while talking about it?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is looking in the different cd in the room?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a old man holding material in hand and silicon material on topic discusing displaying on?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is having some round material in his hand?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who displays a very thin circular silicon wafer?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a old man standing discusing displaying on?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a guy hold up while talking about it?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"what is a man with glasses and brown jacket showing?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"wafer\"\n  },\n  {\n    \"question\": \"what intergrated circuits on a three inch silicon waffer?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"complex\"\n  },\n  {\n    \"question\": \"what is person looking in the different cd in?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is holding different shiny metal discs in his hand?\",\n    \"video_name\": \"video8658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are in another bowl water?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"prawn\"\n  },\n  {\n    \"question\": \"what are taken by someone?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what is in a kitchen man doing?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a chef at his doing?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is person is in the kitchen and doing?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is in a kitchen a man doing?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a hand doing?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what are egg taken by?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is person in?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what did a hand handling white shrimp in a white bowl then un cooked eggs pour in?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what are prawn put in?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is cooking a prawn fry on a bowel?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pouring some water for the batter in a glass bowl?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is going to make a receipe using green peeled fresh prawn?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is presenting the full list of ingredients in a kitchen?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing the ingredients in the white plate?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing the squish in the white plate?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows the shrimp that he has prepared to cook in a meal?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who explains what he is doing with shrimp that he left the tails on water and an egg?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is presenting the ingredients in the white table?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a person cooking on a bowel?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"prawn\"\n  },\n  {\n    \"question\": \"what is a person cooking a prawn fry on?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"bowel\"\n  },\n  {\n    \"question\": \"who is person showing in the white plate?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"squish\"\n  },\n  {\n    \"question\": \"what is man presenting the full list of ingredients in?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is a person pouring some water for in a glass bowl?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who sits in a bowl and then a man dumps in an egg?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what does a man cleaning the prawn to cook very nice in?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a person pouring for the batter in a glass bowl?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are put in a bowl?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"prawn\"\n  },\n  {\n    \"question\": \"who is in the kitchen?\",\n    \"video_name\": \"video8659\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who commentating a volleyball game?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man commentate?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do people play a game of?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what are playing volleyball?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are group of people playing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what is a man commentating?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"who is commentating a volleyball match?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many teams play at the olympics?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many teams are playing vollyball?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two teams playing in a gym at the olympics?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what are two teams playing volleyball in at the olympics?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what do men play a heated game of?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what is playing against each other in a fierce battle?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"who is talking about the mens olympic volleyball game?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"what are teams playing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what is a commentator doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a volleyball team doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is footage of a team doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are teams doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two mens teams doing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two teams playing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"vollyball\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"how many teams are playing volleyball in a gym at the olympics?\",\n    \"video_name\": \"video8660\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is football players are shown doing?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are teams doing?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a soccer game doing?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"occur\"\n  },\n  {\n    \"question\": \"what are two teams playing?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what highlights with 2 goals scored?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are football players shown playing with?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who are shown playing with music?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a soccer game occurring with?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who shoots a goal during a soccer game?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"where is a very exciting soccer game being played out?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a soccer player shoot during a soccer game?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"who scores a goal in soccer?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is occurring with dramatic music?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a very exciting soccer game being played out on?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"how many teams are playing soccer?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are teams playing?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what player scores goal?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are the playing?\",\n    \"video_name\": \"video8661\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a chef making?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what were the two chefs preparing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a chef stir?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is making a dough?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what are a man and a woman giving?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"who is cooking on tv?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man stir potatoes in?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a man mixing a pot of food on?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what does the man mix in a pot on the stove?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who stirs a pot?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who stirs potatoes in a pot?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who talks as a chef stirs a pot?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man mixing a pot of on the stove?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many chefs were preparing a dish?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who mixes the food in a pot on the stove?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing a pot of food on the stove?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are the people doing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what were the two chefs doing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man a woman doing?\",\n    \"video_name\": \"video8662\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who plays minecraft?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does guy play?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what was very enthralling?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a boy eat?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who tries to get to a high place?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a computer game character doing?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person weilding a sword walking around in?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"castle\"\n  },\n  {\n    \"question\": \"who eats chicken in minecraft?\",\n    \"video_name\": \"video8663\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are some people in a kitchen preparing to serve?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do the people stand in to order food from the restaurant?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what do the people stand in line to order from the restaurant?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do the people stand in line to order food from?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what are group of people in?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do people stand in line to be served treats?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what are in a kitchen?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who speaks to an employee?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"manager\"\n  },\n  {\n    \"question\": \"what do patrons wait in?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"who does a manager speak to?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"employee\"\n  },\n  {\n    \"question\": \"what do people stand in line to be served?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what do people stand in to be served ice cream treats?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what are some people in a kitchen doing?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is in this vintage foreign language video four people doing?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is women stand in line one doing?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is man walking and doing?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people stand at the counter of a restaurant while a man talks to another man who doing?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"dispense\"\n  },\n  {\n    \"question\": \"what are ladies in shorts at an icecream parlour doing?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is there is a hospital a man doing?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"who walks into a shop a worker opens the cap and lets the ice cream flow into the cone?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a women waiting for to be pais in the cash counter?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"who is talking to a nurse that is busy working in a hospital?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man walk into a shop opens the cap and lets the ice cream flow into the cone?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"worker\"\n  },\n  {\n    \"question\": \"who talks to another man who is dispensing ice cream in a cone?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man walk into a worker opens the cap and lets the ice cream flow into the cone?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are ladies in shorts at an icecream parlor waiting to buy?\",\n    \"video_name\": \"video8664\",\n    \"answer\": \"icecream\"\n  },\n  {\n    \"question\": \"what were four players playing a tennis on?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"how many teams are playing tennis?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what were four players playing on the stadium?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are some people playing badminton on?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what do two teams ust got done playing a round of?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what are two teams playing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are some people playing on a court?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"what scored?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what wins?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what do four poeple playing waering blue and red uniforms?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"badmington\"\n  },\n  {\n    \"question\": \"how many players were playing a tennis on the stadium?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many teams ust got done playing a round of their sport?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who play a game of badminton against one another?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"how many people are playing bad mitten a blue team and a red team?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what were a four members with pink and blue dressing playing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"shuttlecock\"\n  },\n  {\n    \"question\": \"what does playing double it s like in a tennies court?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"tourney\"\n  },\n  {\n    \"question\": \"what do tennis players in pink and purple leave after the round?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what do tennis players in pink and purple leave the green court after?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"what do different badminton players play a game of against one another?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"what is the tennis players doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two teams ust got done doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is four tennis players doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of four people doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is four poeple doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are four people doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a red team and a blue team doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what were there a four members with pink and blue dressing doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is in the indoor stadium doubles shuttle game doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a team in magenta doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two doubles teams play badminton by doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"volley\"\n  },\n  {\n    \"question\": \"what were four players doing?\",\n    \"video_name\": \"video8665\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone showing in a computer?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"heart\"\n  },\n  {\n    \"question\": \"who discusses heart disease?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is given on a serious illness?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what does a male voice speak about?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"disease\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"disease\"\n  },\n  {\n    \"question\": \"what is a man explaining?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"disease\"\n  },\n  {\n    \"question\": \"what is circulating?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"heart\"\n  },\n  {\n    \"question\": \"what speaks about chagas disease?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is explaining a disease?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone showing heart in?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is showing heart in a computer?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who talks about common causes of death?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about causes of death?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is lying in the hospital due to getting a heart disease?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"heart\"\n  },\n  {\n    \"question\": \"what is animated video doing?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a narrator doing?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a heart doing?\",\n    \"video_name\": \"video8666\",\n    \"answer\": \"circulate\"\n  },\n  {\n    \"question\": \"what are more letters displayed on?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is on a wooden table sideways?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a listing of features describe the benefits of counter top materials?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"surface\"\n  },\n  {\n    \"question\": \"who is talking about the benefits from the new product?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are some animated wood panels doing?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is it appears to be a power point slide doing?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a computer generated graphic doing?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some wooden slats doing?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is 3 key benefits of cart board were explained doing?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a high quality finish more hygienic as dirt can not penetrate more sustainable due to heat and water resistance seems they doing?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video8667\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man is highlighted doing?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a basketball player doing?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a basketball player appears to have been injured on the play although he s doing?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is two teams doing?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a player s trying to shake off?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who appears to have been injured on the play although he s trying to shake it off?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what highlights from a basketball game?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"showing\"\n  },\n  {\n    \"question\": \"what does a basketball player appear to have been injured on although he s trying to shake it off?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who dunks the ball?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what highlights that spotlight players?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who runs around the court?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who s trying to shake the play off?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who compete on the court?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is highlighted playing basketball?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a basketball player dunk?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is highlighted in games?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what plays over a basketball highlight?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is trying to score?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are a group of men playing?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do professional basketball players compete on?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what does a basketball player run around?\",\n    \"video_name\": \"video8668\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does the woman throw back?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what bloopers?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is a woman expressing?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"what does a woman laugh at?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"mistake\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a woman look up at?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"ceiling\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who looks up at the ceiling?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is anchor doing?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is telling about bloopers?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to someone behind the camera?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8669\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what did guy with hut and beard holding?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a black t-shirted man with a hat doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a still photographer doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is guy with hut and beard doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in a fedora grey hat doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in a hat speaking and doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a man with a hat and black shirt doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a man in a gray hat and black shirt doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of asian or islamic friends doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a man in a hat photographs a woman doing?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what does a man wearing a straw hat take with another man and a woman?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what does a man speak to as others pose for photographs?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man in a gray hat and black shirt talking to?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"how many people are posing camera by raising their thump?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who talks about his job as a fashion phtographer?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera as others pose for photographs?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands with a camera taking pictures of different groups of individuals?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people talk about whats happening downstairs at?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"convention\"\n  },\n  {\n    \"question\": \"what do others pose for?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"who and beard talking?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what are on the scene?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is saying some to somone?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are group of people on?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what does a man in tshirt and hat stand in front of group of people at?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"who and beard holding camera?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"where are group of people?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what are three people posing by raising their thump?\",\n    \"video_name\": \"video8670\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a comical clip doing?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man gestures while doing?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is boys doing?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person angry on?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a man yell on?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is talking on the phone?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is yelling on the phone?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is angry on phone?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who yells on a phone?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was a man talking on the phone to?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is a man talking in about something to someone?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what was a man talking on to his friend?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who freaking out on a cell?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rapping while on his cell phone?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is an humorous skit of two people doing?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"who was talking on the phone to his friend?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who frantically talks on the phone while in the bathroom?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who gestures while talking on a mobile phone in a bathroom?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"freak\"\n  },\n  {\n    \"question\": \"what is this is a video of chinnese guy doing?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what was he doing?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what did a young man freak out on?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"cell\"\n  },\n  {\n    \"question\": \"what is a man yelling on?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is talking in a phone about something to someone?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking on?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone feeding to puppy?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what feeds a hamster?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is feeding a baby animal?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a puppy feeding from?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what does a person bottle feed?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"what is a person feeding?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is bottle feeding?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is someone feeding with a bottle?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"who is feeding milk to puppy?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a little baby monkey drink from?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what was fed by a baby bottle?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is someone feeding a young animal with?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is a puppy being fed from a baby bottle?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"who is feeding a young animal with a bottle?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is drinking milk with baby nibble bottle?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is fed from a bottle?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is a baby animal fed from?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is a dog is bottle doing?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is bottle doing?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is dog doing?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8672\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"who is bald with a beard?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does man talk about?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who discusses spongebob?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people talk on?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"panel\"\n  },\n  {\n    \"question\": \"what s spongebob?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man bald with?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"beard\"\n  },\n  {\n    \"question\": \"who talks about spongebob?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about spongebob squarepants?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"who spongebob square pants?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about spongebob square pants?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a bald man talking about?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who talks about the spongebob squarepants cartoon?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the show spongebob squarepants?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bald man doing?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who discusses how bizarre spongebob is?\",\n    \"video_name\": \"video8673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows space men floating among strange blue rocks?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are cartoons floating around in?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what are cartoon characters floating in?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what is flying on the sky?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what do animated aliens float in?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who are floating in space?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are 4 characters floating in in the middle of a meteor field?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a toy flying on?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what characters floating around?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is space cartoon characters doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is four cartoon characters doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is four aliens doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is an animated sequence of four children doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is a toy doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a cartoon of some robots doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what are 4 characters doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is an animated video shows space men doing?\",\n    \"video_name\": \"video8674\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what do soccer players make?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"goald\"\n  },\n  {\n    \"question\": \"what does a team play soccer on?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who kicks a ball?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a football player moving continuously?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are some guys playing football in?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a man kick?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a song play in?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a football player placing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who make a goald?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who scoring a goal in soccer?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a team play on a field?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is moving the ball continuously?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what plays soccer on a field?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"who is placing a goal?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"where does a team play soccer?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does the man dribble with proficiency?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are some guys playing in a ground?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does the man dribble the soccer ball with?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"proficiency\"\n  },\n  {\n    \"question\": \"what does the announcer give the highlights of?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who are soccer players playing in a professional match?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who gives the highlights of the game?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what is soccer players doing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what are soccer players doing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a soccer player doing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is a football player doing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are people playing while a song plays in the background?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who dribbles the soccer ball with proficiency?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are playing soccer in a professional match?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is soccer doing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video8675\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon girl doing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"skip\"\n  },\n  {\n    \"question\": \"what is a children s cartoon of child doing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an animated girl doing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what is cartoon girl doing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cartoon pig doing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what is cartoon doing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"stomp\"\n  },\n  {\n    \"question\": \"what are a cartoon boy and girl doing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what was the little animated girl doing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"skip\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is skipping?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who walks?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are planting?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who stomps?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is an animated girl talking to?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what is gardening?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what generated cartoon of a young girl and boy?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is talking to an anime?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are a cartoon boy and girl talking on?\",\n    \"video_name\": \"video8676\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what do pictures of a the little mermaid cupcake with?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"ariel\"\n  },\n  {\n    \"question\": \"what is two mermaid with red hair sitting on?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what are some mermaid dolls sitting down on?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what did a mermaid in an underwater setting and a mermaid out of?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a woman discuss while images of a little mermaid cake are shown?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"cupcake\"\n  },\n  {\n    \"question\": \"who demonstrates how to make a cake with a mermaid on top?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks about baking as the finished mermaid cupcake is shown on screen?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses cupcake molds while images of a little mermaid cake are shown?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are sitting down on a rock?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"mermaid\"\n  },\n  {\n    \"question\": \"what is the finished mermaid cupcake shown on?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what charterer on display in a sort of collection?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what is two mermaid with red hair doing?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some mermaid dolls doing?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a lady speaking about the mermaid ariel doing?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman thanks viewers for doing?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is fish girl model doll with fish as green colour doing?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is there are two barbie dolls doing?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a plastic violet doing?\",\n    \"video_name\": \"video8677\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"who is walking towards the ocean?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who wades out into the ocean?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a young woman walking naked to?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"who is walking naked to a lake?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman shown walking anked into?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what does a woman in white walk into?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is walking into the ocean?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a music video of a girl doing?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman is shown doing?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is shown walking anked into the ocean?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is talking into the ocean?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks into the water?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman walking in?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who is walking into a lake?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking into?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is a woman walking into?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what does a girl walk into?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a lady walking in?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman walking towards?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what does a woman wade out into?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who is walking in the beach?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is walking in the ocean?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a girls walk into?\",\n    \"video_name\": \"video8678\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who puts a disney bag down?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who shows disney products?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing various items made by a celebrity?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man a video of a person organizing feminine hands holding children s?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what does a man a disney bag hands holding children s?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who is looking at some girls toys?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing small make up bags?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who discussed a few products?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows off different celebrity candy?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing some make up things?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man s hands doing?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what does a man put down?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what did the pouch have?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"zipper\"\n  },\n  {\n    \"question\": \"what is a woman showing off?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a person show off?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"what does person show?\",\n    \"video_name\": \"video8679\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what is a house on?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what do warriors march in?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what do fantasy characters prepare for?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"who prepare for battle?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"fantasy\"\n  },\n  {\n    \"question\": \"what is an ad for a movie a part of?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"clipping\"\n  },\n  {\n    \"question\": \"what looked devastating?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is on fire?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"where do warriors march?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is the fire looked doing?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"devastate\"\n  },\n  {\n    \"question\": \"what is an ad for a movie doing?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman with a horse doing?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a hood doing?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is movie clip of a woman doing?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"who is a woman with a horse talking to?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a woman holding an animal talking to?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to an army commander in a movie scene?\",\n    \"video_name\": \"video8680\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man and a boy rub each other s?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a man and a boy playing on?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who does a boy play with?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what are a man and a boy sitting at playing with each others hair?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what are a father and a son comparing while sitting on a sofa?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who plays with his son on the couch?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are touching each others head after an hair cut?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"what are a man and a young boy shown playing together on after which an advertisement is shown?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what are a young man and his dad rubbing each other s it s a commercial for vodafone?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what are a father and a son doing?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"compare\"\n  },\n  {\n    \"question\": \"what are a father and son doing?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a man and a boy doing?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man and a boy doing?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man and a young boy are shown doing?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a young man and his dad doing?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what are father and song doing?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8681\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who asks viewers to subscribe to his channel?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a facebook video forever computing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is quickly asking viewers to comment like at the end of a video?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who asks viewers to hit the like button?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking some thing in the room?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with computer moniters shown behind him?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what did a person talk about the new model of computers and mobile phones launch in?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"who is quickly asking viewers to follow him on facebook and twitter at the end of a video?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many phones are next to each other and a man wearing a plaid shirt talks?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a guy talk with computer moniters behind him in?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who talks with computer moniters behind him in his room?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man ask viewers to subscribe to?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"who is talking about mobile phone?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking in the room?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a man talking some thing in?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a man ask viewers to hit?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"button\"\n  },\n  {\n    \"question\": \"what is at the end of a video a man is quickly doing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a check shirt man doing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is at first you see 4 types of phones on the screen then you see a gentleman in a plaid shirt doing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in a plaid shirt doing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is four phones are next to each other and a man doing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man talks about a facebook video forever doing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"compute\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man in a grey and black button up shirt doing?\",\n    \"video_name\": \"video8682\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"how many anchors are talking about music album?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people welcome people to an episode of their show?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are talking about an event?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a tv show taking?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what do a man and a woman talk about?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what are two people hosting?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are two people talking about?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what are people talking about?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are two anchors talking about?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is taking place?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are video jockeys talking before?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who are talking before show starts?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many people are hosting a show?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is anchors doing?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two anchors doing?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what are video jockeys doing?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8683\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is looking at a pamphlet?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing a booklet?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows off a booklet?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did an instruction booklet for?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who looks at seat selections for a theater or a movie?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing a movie from a brochure?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows the paper that comes with a dvd?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who points out certain figures on a paper?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who discusses the brochure from a dvd?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man interviewing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"pamphlet\"\n  },\n  {\n    \"question\": \"what is a man describing from a brochure?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a man describing a movie from?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"brochure\"\n  },\n  {\n    \"question\": \"who is looking over a movie book?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing a pamphlet?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about monkey and keys?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flipping through a pamphlet?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is looking at a folded piece of pictures?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man show off?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"booklet\"\n  },\n  {\n    \"question\": \"what is a person flipping through?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"pamphlet\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a pair of hands doing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video of a guy doing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is holding a paper?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what booklet for a game?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"instruction\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person holding?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is person showing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"booklet\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8684\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"how many guys are drinking?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two guys try they ve made?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"fridge\"\n  },\n  {\n    \"question\": \"who is drinking a liquid?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do men don?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do two men drink?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are men drinking?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do two guys talk in?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man drinking?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"how many people are tasting something here?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two people here?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is showing his fridge?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what does a man prepare in the kitchen?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is two young men doing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"how many guys talk in a kitchen?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"how many guys try a drink they ve made?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who prepares some food in the kitchen?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men drink something?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man prepare some food in?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a couple of people doing?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what do a couple of people recording a show in?\",\n    \"video_name\": \"video8685\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woman preparing foods on?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is cooking a vegetable dish?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who uses grain alcohol and dye?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing food recipe?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is showing how to cook?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking something?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a chef cooking?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is instructing how to cook something?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman preparing in a dish?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"alcohol\"\n  },\n  {\n    \"question\": \"what is a cook doing?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is preparing grain alcohol in a dish?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing foods on the table?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing how to prepare a recipe?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman preparing grain alcohol in?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving a tutorial?\",\n    \"video_name\": \"video8686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a clip of an airplane and people doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is moving very fast?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what spins quickly?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what is shown moving quickly?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what is ticking away?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what are people waiting in?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"lobby\"\n  },\n  {\n    \"question\": \"what is an airplane flying in?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is flying in the sky?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what hands spin around quickly to show time passing by?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"when does clock hand spin around quickly to show passing by?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what does a plane fly and clocks tick people sit at?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what is flying while people are waiting in the lobby?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what flies and clocks tick people sit at an airport?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what are showing a sped up air flight and passengers waiting in an airport?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"split\"\n  },\n  {\n    \"question\": \"how many split screens are showing a sped up air flight and passengers waiting in an airport?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what is plane doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what were the clocks doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"when is shown here?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is a clock at an airport doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a clock doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a clock is shown doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a clock doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"tick\"\n  },\n  {\n    \"question\": \"what is a plane doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are four split screens doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is airplane doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is an airplane doing?\",\n    \"video_name\": \"video8687\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"who folds a piece of paper into an airplane?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folding a piece of paper into a paper airplane?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man folding a piece of into a paper airplane?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what does a person fold a piece of into an airplane?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person fold a piece of paper into?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who folds a paper airplane?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a man flying?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone building?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a person fold?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is building a paper airplane?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making a paper airplane?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is flying a paper airplane?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making paper rocket?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is some making?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8688\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is mario doing?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what was the video game?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"who is playing video game of race?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this is a gamer doing?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a big ball with teeth throw?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who play in a mini game together?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"what is a person playing video game of?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what was fun?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does someone play?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"what does a person playing the video game mario?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"who is racing against his friends?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"what are on train tracks?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"who plays a mario game?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person playing the game mario?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what are mario characters on?\",\n    \"video_name\": \"video8689\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a lady cooking?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"who subscribe and speaking?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is being shown on?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a company logo and subscription sitting on?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"how many women talk about recipe subscribe weelicious visit weelicious?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video segment?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a blonde haired woman holding a spatula leading into an option to subscribe to a food oriented site in?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is playing while some various images are shown?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is going between a kitchen show?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"who is cooking a recipe?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do one women talk about subscribe weelicious visit weelicious?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who sits happily wearing a blue polo shirt?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a blonde haired woman holding leading into an option to subscribe to a food oriented site in a kitchen?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"spatula\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman sits happily doing?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a blonde woman doing?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is in a kitchen a blonde haired woman doing?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women in black top doing?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a company logo and subscription doing?\",\n    \"video_name\": \"video8690\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is talking to a policeman and another man?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining to the police what s happening in the video?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to another guy while another man watches?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who does guy talk to while another man watches?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is talking to a police officer?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining to police?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who talks to a man?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who is talking to an officer?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking to a police officer while wearing a fuzzy hat?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a police officer talk to?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to civilian?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"officer\"\n  },\n  {\n    \"question\": \"who watches?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something to police?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a clip of a police officer doing?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two police officers doing?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is police officer doing?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in a coat doing?\",\n    \"video_name\": \"video8691\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a candle doing?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"burn\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being picked up out of water?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"what comes out of different objects?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is shown of food cooking?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a video shown of?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is being cooked?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is burning?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what is elegant doing?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"din\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8692\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a child handed?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"sunda\"\n  },\n  {\n    \"question\": \"what does a boy open screaming?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"what does advertisement where the kid gets a bad haircut and his mom share to dad via smartphone?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who takes a photo?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"mom\"\n  },\n  {\n    \"question\": \"who opens his mouth screaming?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is handed a sundae?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what does a man look at with a picture of a crying child?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who takes a picture a boy screaming?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who looks at his phone with a picture of a crying child?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking a picture of his upset son?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who s funny action captured on phone?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who shouting in front of the ice cream?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is there is a kid that keeps doing?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8693\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what zips around?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what driives over the dirt as it almost turns over?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what does an vehicle making sharp turn on?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what drives over a test course and almost tips?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what has stabilizers on either side of it?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what drives recklessly in a parking lot?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what does the van driives over as it almost turns over?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what drives really fast through a parking lot?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what is driven very fast on the sandy street?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what performs rough terrain driving?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"what does not fall over because it has stabilizers on either side of it?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what does a silver van perform?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"terrain\"\n  },\n  {\n    \"question\": \"what goes offroad?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what does a white van drive over?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"terrain\"\n  },\n  {\n    \"question\": \"what drives over rough terrain?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what is a truck with a wheel doing?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a white van on industrial ground doing?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a van doing?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a small van doing?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is vans doing?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a white van performs high speed doing?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does not?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"when does a white van perform driving maneuvers while a silver van performs rough terrain driving?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what performs high speed driving maneuvers while a silver van performs rough terrain driving?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what is being shown doing different tricks and manuevers?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what did vans performing a driving stunt on two wheels call?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what is going over several obstacles on a closed course?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what has the drifting of the car been showed in?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a truck with a wheel moving in?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"where does a white van drive?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"terrain\"\n  },\n  {\n    \"question\": \"what drives very fast through the dirt road behind buildings?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is driving across dirt like a four by four?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what does a small van driving recklessly and with tire coming off?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what almost turns over?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what is going in the soil road?\",\n    \"video_name\": \"video8694\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who talks about a man and the gifts he gets even after death?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a group of children sit at?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is talking about a religious leader?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is displayed?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what do the children sit in?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what pictures from the old times?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a picture of many kids seated in a classroom in the past?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what is a narrator doing?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does man talk about a man and the gifts he gets even after?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"death\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is children doing?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are pupils doing?\",\n    \"video_name\": \"video8695\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is swimming in the pool?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman talking about sports in?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"britain\"\n  },\n  {\n    \"question\": \"what is interviewer talking the the popularity with?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what is interviewer talking with swimming?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"popularity\"\n  },\n  {\n    \"question\": \"who is swimming?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man swim in?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who swims in blue goggles?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who swims in a pool?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man swimming in?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who is talking about sports in britain?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about swimming becoming more popular in britain?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a news reporter doing?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a newscaster doing?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is interviewer doing?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"where is a woman talking about sports?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"britain\"\n  },\n  {\n    \"question\": \"who is talking in front of a swimming pool?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking in front of a pool?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"who is talking the the popularity with swimming?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"interviewer\"\n  },\n  {\n    \"question\": \"who is talking about swimming?\",\n    \"video_name\": \"video8696\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is playing guitar and singing?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing while playing the guitar?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy sings while doing?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who plays guitar?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is singing while playing guitar?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings while playing a guitar?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is playing a guitar and singing?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8697\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"coerce\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is the baby doing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a small child doing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a small baby doing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a baby on the floor making noises with someone doing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is small baby in white t shirt doing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is father doing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what s excitedly?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"coo\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a baby sleeping in?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a baby lying on laughing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"what is a baby lying on moving around?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"who opens mouth?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who shakes hand?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a small child laying in?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a small child shake?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a father coax to do so?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"who coaxes a blanket to do so?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"who is talking to a baby in pink who is lying on a quilt?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a small child open?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who is a person or a father making to talk?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is laying in bed?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who does a man try to get to say mama and?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who talks to his baby while the baby lays on the bed?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is a man coercing to talk as the baby makes noises?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is small baby in white t shirt lying on?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a baby lying on making noises?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"what does a baby lie on someone trying to get the baby to say mama and dada s back on?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"what does the baby wearing the pink out fit lay on?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who tries to get a baby to say mama and?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sleeping in bed?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who does a guy talk to while the baby lays on the bed?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is lying on a blanket laughing?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is also try to repeating the same?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is lying on a blanket moving around?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who does a man try to get a baby to say and?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"mama\"\n  },\n  {\n    \"question\": \"what does the baby lay on?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is lying on a blanket making noises?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is talking to a baby who is laying on a bed?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes noises?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is coercing a baby to talk as the baby makes noises?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lies on someone trying to get the baby to say mama and dada s back on a blanket?\",\n    \"video_name\": \"video8698\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are two players playing in the gym?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"who singles tennis match won on a wide shot?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is played by four males on an inside court?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do a group of people play a rough game of?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"what does woman single match won on a wide shot?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what is the table tennis players are played in very well the color of the back ground red in?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"cort\"\n  },\n  {\n    \"question\": \"how many men are playing a table tennis game semi final?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the man in shorts hit the birdie over the net on?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is badminton players doing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the players doing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two players doing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two players doing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a two men doing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two female tennis players doing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are women s singles semi final and men s doubles game of badminton doing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what is a man in a british accent doing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many players are playing badminton match in the gym?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what were two dress players and two blue dress players doing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people gathered in to watch tennis match?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"who states semifinal women?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"who enjoy the game?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what does a badminton singles semifinal then double is also shown?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what has a man reflected back very well in a professional tennis match?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what were two dress players and two blue dress players playing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do tennis players enjoy?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are two players playing badminton match in?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who has reflected the tennis ball back very well in a professional tennis match?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two teams of young people play a game of?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"badmitton\"\n  },\n  {\n    \"question\": \"what are the players playing?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are people gathered in the stadium to watch?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what match?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"teni\"\n  },\n  {\n    \"question\": \"what do two female tennis players performing a match on?\",\n    \"video_name\": \"video8699\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man prance about?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what does a boy funky dances around?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a boy riding?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"broom\"\n  },\n  {\n    \"question\": \"what does the man pretend to ride?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is the boy dancing at?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what does various dances?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy making by dancing?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"who does funky dances around his house?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is riding a broom?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who pretends to ride the room?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do boy dances with a llama head on?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"who acts silly rides a stick horse and dances?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who danced with props?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is making fun by dancing?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who dances around a living room?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a boy dancing and almost fall off?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who is dancing at home?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who prances about his home?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is the boy dancing?\",\n    \"video_name\": \"video8700\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who eats a chicken wing?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is eating some food?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"sample\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is eating using his left hand?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is sampling food?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is eating roasted chicken?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a boy eat?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what does a boy take a bite of?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who takes a bite of food?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy eating food with his fingers in?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what is a boy eating with his fingers in a classroom?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who eats something with spoon?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a kid sitting at eating chicken?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is eating food with his fingers in a classroom?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is sitting at a table eating chicken?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is eating a peice of spicy fried food?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is eating something?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a young boy sampling?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is in a classroom a boy doing?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are some kids doing?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a kid eating?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a boy eating?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what do kids react to spicy?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are children eating?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is two boys doing?\",\n    \"video_name\": \"video8701\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what is a plate doing?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"balance\"\n  },\n  {\n    \"question\": \"what is balancing on a woman s hips?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what does a man balance chicken on a woman s?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"hip\"\n  },\n  {\n    \"question\": \"what does a man putting a plate of food on a woman s?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"butt\"\n  },\n  {\n    \"question\": \"what does a person putting a plate of food on a woman s?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"butt\"\n  },\n  {\n    \"question\": \"what does a man eat off a womans butt?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does man tries to eat from a plate of food balanced on a woman s?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"hip\"\n  },\n  {\n    \"question\": \"what does a man balance a plate of chicken wings on a woman s?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"buttock\"\n  },\n  {\n    \"question\": \"who eats food off a womans butt?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who balances chicken on a woman s hip?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who balances a plate of chicken wings on a woman s buttock?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"grab\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"balance\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who is grabbing food?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman balance a plate on?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"hip\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is chrissy teigan doing?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what teigan playing with john legend?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"chrissy\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man grabbing?\",\n    \"video_name\": \"video8702\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is man and girl in black romantically doing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a movie scene girl and boy siting and doing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a tshirt man doing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and women doing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is this is a scene doing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is man in black t shirt doing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are in the dark light the youth doing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"who is talking with a woman?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"tshirt\"\n  },\n  {\n    \"question\": \"what are a man and a woman inside?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a young man take off in front of a girl?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who is talking with a lady?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when do a young man and a young woman share?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"moment\"\n  },\n  {\n    \"question\": \"who is a tshirt man talking with?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a man and a woman standing in?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"verentum\"\n  },\n  {\n    \"question\": \"who takes off his shirt in front of a girl?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a romantic scene from a movie?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is showing a girl the tattoo on his back?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what are a man and woman having by a railing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are a man and woman having a conversation by?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"railing\"\n  },\n  {\n    \"question\": \"what do a man and a woman stand on?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"balcony\"\n  },\n  {\n    \"question\": \"who is removing his shirt?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"tshirt\"\n  },\n  {\n    \"question\": \"who is a man talking with?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are a man and a woman standing inside of?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"what is a tshirt man removing?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what does a young man and a woman talk and then the man take off?\",\n    \"video_name\": \"video8703\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who is taking blood from a female patient lying down?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"physician\"\n  },\n  {\n    \"question\": \"what did a woman in a pink shirt receive from a man?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"injection\"\n  },\n  {\n    \"question\": \"what is a girl with pink dress lying in the bed and doctor giving?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"treatment\"\n  },\n  {\n    \"question\": \"what is a physician taking from a female patient lying down?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"blood\"\n  },\n  {\n    \"question\": \"what is a man narrating?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a woman in a pink shirt have drawn?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"blood\"\n  },\n  {\n    \"question\": \"who did a woman in a pink shirt receive a drug injection from?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sick?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the doctor put?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"injection\"\n  },\n  {\n    \"question\": \"who is narrating the video?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"inject\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl with pink dress doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a doctor gives a woman doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a doctor with a women doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a women in pink t-shirt doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a woman at a clinic doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a lady in pink dress doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a woman in a pink shirt doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a woman is sick and doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a woman in a pink shirt has her blood drawn and a man doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is there is a woman in pink doing?\",\n    \"video_name\": \"video8704\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who is talking into the camera?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"beg\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who is commentating?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person giving?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"who talks about his youtube channel?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is telling about subscription?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is begging viewers to subscribe?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about music?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is giving some information?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is begging viewers to comment on his videos?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking into?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a person explaining about?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a boy telling about?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"subscription\"\n  },\n  {\n    \"question\": \"what is a guy talking into?\",\n    \"video_name\": \"video8705\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is two females doing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a two girls doing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is women s single tennis match video doing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a red and blue color dress players doing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what were two girls doing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many girls are playing shuttle cock game?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two people play a game of against one another?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"what do two women play?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"what are a two girls playing?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"cock\"\n  },\n  {\n    \"question\": \"what do two women playing playing shuttle cock?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what were two girls playing in stadium?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do two women play a hotly contested badmitton game in?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what are two women playing in an indoor stadium?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"badminton\"\n  },\n  {\n    \"question\": \"what were two girls playing the tennis match in?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what are some people playing outside on a court?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many women play badminton?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women play badminton on a green court with a purple border?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women play a hotly contested badmitton game in a stadium?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls were playing the tennis match in stadium?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are playing badminton match in an indoor stadium?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are standing while two women play badminton?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"how many people play a game of badminton against one another?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does women s match video showing a small part of the match?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do a pair of athletes play a challenging game of?\",\n    \"video_name\": \"video8706\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what is a guy in minecraft doing?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man talks while doing?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what was the video game doing?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"entertain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"who narrates his minecraft gameplay?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a person talking about?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing mindcraft?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man narrate?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who switches with a sword in the minecraft game?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hits various switches with his sword in minecraft?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking as he plays a video game?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks while playing minecraft?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about minecraft?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what was entertaining?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who commentates on his minecraft gaming experience?\",\n    \"video_name\": \"video8707\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some models doing?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a bubble girl doing?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who performs as female models walk down the runway?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who performs in the background?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"taylor\"\n  },\n  {\n    \"question\": \"what does taylor swift perform in?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is a brown hair lady singing?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"son\"\n  },\n  {\n    \"question\": \"what do female models walk?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what is a lady coming by?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do female models walk down?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do models walk down?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is goin on?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is coming by walk?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is singing holding a mike?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is the woman singer singing while the women models are walking on the fashion show ramp?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who walks down a run way with music going in the background?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"who is singing the song while the women models are walking on the fashion show ramp?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what does a victoria s down the runway while taylor swift performs in the background?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what does a victoria s secret model struts down while taylor swift performs in the background?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who s secret model struts down the runway while taylor swift performs in the background?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"victorium\"\n  },\n  {\n    \"question\": \"who sings as models walk down a runway?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"taylor\"\n  },\n  {\n    \"question\": \"who sings while a model in a black dress walks down a runway?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"taylor\"\n  },\n  {\n    \"question\": \"what are models in black outfits walking on?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"what are other showing on a fashion show?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what does a model in a black dress walk down?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what shows many models in beautiful black gowns along side american country music star taylor swift on the runway for a fashion show?\",\n    \"video_name\": \"video8708\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who does a woman talk to?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"what is a young couple are shown doing?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a young lady and young man discuss what they doing?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"feel\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who does a man talk to outside?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a boy and girl doing?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks to a boy?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking to a woman who is clearly upset?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a young couple shown talking on?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is talking to a girl outside?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are shown talking on the street?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is talking to a woman?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to a woman outside?\",\n    \"video_name\": \"video8709\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man explains on doing?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"manufacture\"\n  },\n  {\n    \"question\": \"who is explaining with folded hand?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaining about?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who discusses lamborghini manufacturing?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about a car?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a car?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the car features?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man explaining with?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who explains on manufacturing a car?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8710\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a bald headed man doing?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who explains the marburg virus has many of the same symptoms as ebola?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a deadly virus?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a very serious virus?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about diseases?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about viruses?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a virus?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about illness?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about health?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what headed man talking about the human body?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"what does a man explain has many of the same symptoms as ebola?\",\n    \"video_name\": \"video8711\",\n    \"answer\": \"marburg\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a voice describes make up tips while first doing?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is showing nail polish?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what wand?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"mascara\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"make\"\n  },\n  {\n    \"question\": \"what about eyebroes?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is showing?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"who does a girl share?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"who is showing make up tips?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a girl talking about?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who shares life hacks?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about makeup?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who shows how to properly open beauty product lids?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is teaching how to open a eye polish?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what describes make up tips while first holding a nail polish bottle then a mascara wand?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who shows tips for nail polish and mascara?\",\n    \"video_name\": \"video8712\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a bands photo doing?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is posing with two other men?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are pictures of musical artists being shown with?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"overlaid\"\n  },\n  {\n    \"question\": \"what is given over photos of a rock band?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"warning\"\n  },\n  {\n    \"question\": \"how many men are playing instruments in a band?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a photo of a child three men and a musician are shown and the caption reads adapt to the doing?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a slideshow of a man with the words adapt to the doing?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is photos of guys and kids doing?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who are pictures shown of?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did photo montage set to?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what montage set to music?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what are three men playing instruments in?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who has pictures of a band?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what slideshow on abc world news?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what does a slideshow have pictures of?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is showing?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what is picture of a man doing?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the clips of the man doing?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are picture of man doing?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is photos are shown of a rock group doing?\",\n    \"video_name\": \"video8713\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man inside of a car doing?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person shows the arch which states doing?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man is in his car and doing?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man stopped at a stop light talks to a camera about his feelings doing?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is a man in a car doing?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who shows the arch which states boating and fishing mentioned in it?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man stop at light talks to a camera about his feelings regarding the santa monica pier?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"stop\"\n  },\n  {\n    \"question\": \"who describes the santa monica pier?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is boating?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a arch displayed in?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is displayed in the city?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"arch\"\n  },\n  {\n    \"question\": \"who is in his car?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man inside of a car using to point?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what is person sitting in?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is person visiting?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"santum\"\n  },\n  {\n    \"question\": \"what is a man speaking about?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"who is sitting in the car?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do person sitting in a car point to?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"site\"\n  },\n  {\n    \"question\": \"where is a arch displayed?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who is visiting santa monica?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is speaking about fishing?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a car pointing at outside?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what sign to the santa monica pier?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"entrance\"\n  },\n  {\n    \"question\": \"who points out a pier?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stopped at a stop light talks to a camera about his feelings regarding the santa monica pier?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what burr giving a tour of the santa monica pier in the daytime?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"who points out the curved sign of the santa monica pier?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where do person sitting in a car point?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"site\"\n  },\n  {\n    \"question\": \"who points to and talks about the entrance to the santa monica pier?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting on the car watching?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"arch\"\n  },\n  {\n    \"question\": \"who points out santa monica pier and talks about its history?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who zooms into the welcome board of a place a car parks beside his car?\",\n    \"video_name\": \"video8714\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the different games tennis food ball doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is group of boys doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the players doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video of guys doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of young men doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of basketball players doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is basketball video doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is several groups of people doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a voiced over scene of guys doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is videos of different kids doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is children are at a park doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some men playing basketball outside then makes a trick shot?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are some men playing outside then someone makes a trick shot?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are some men playing basketball outside then someone makes?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"what is life doing stunts and tricks with the ball?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are the players showing some amazing tricks with?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is basketball doing stunts and tricks with the ball?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what does video of guys playing basketball then guy riding bike then kid fall over with?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do a group of young people play together outside?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who swats a ball when a group of black men is shot?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do a group of black men play on an outdoors basketball court?\",\n    \"video_name\": \"video8715\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a song doing?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are superimposed over video game images?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what fileld with different sentences of text?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a song playing as a video game is shown?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is playing as a video game clip is shown?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are lyrics displayed on?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what did the artist need?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"job\"\n  },\n  {\n    \"question\": \"who needed another job?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"what is a song playing as a video game?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what do the lyrics show on?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8716\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a man telling about?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"torque\"\n  },\n  {\n    \"question\": \"what is a boy and a girl doing?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a person showing?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video of a man doing?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is showing an engine?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is telling about a machine?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes how to identify the parts on an engine?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who teaches viewers how to fix an engine?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes an engine part in detail?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about torque specs?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a car part?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining parts of an engine?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing some engine?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what a boy and a girl acting in?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is talking about an engine?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man explaining parts of?\",\n    \"video_name\": \"video8717\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is person driving fast on the street?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a small running?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"faster0\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a voiceover doing?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is bolt and his protecter doing?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is an animation film doing?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man talks about fear and villians as bolt a superhero dog runs through the city doing?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a large brown bear with tan snout enters upright into a brightly-lit kitchen doing?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a white dog doing?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is person driving his car fast on?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a small super power dog named bolt doing?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animation film playing in?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is playing in the screen?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what do a voiceover showing clips from with a man talking about the villain?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what narrates aspects of the villains that appear in the movie?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what small cute white dog then bear has on which some animals are placed?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who does a man talk about fear and villians as bolt a superhero dog runs through the city performing crazy feats to save?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"owner\"\n  },\n  {\n    \"question\": \"what does a man talk about fear and villians as bolt runs through the city performing crazy feats to save his owner?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"superhero\"\n  },\n  {\n    \"question\": \"what gets into adventures with male narrator description?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what did a small super power dog name playing around?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"bolt\"\n  },\n  {\n    \"question\": \"who is driving his car fast on the street?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about fear and villians as bolt a superhero dog runs through the city performing crazy feats to save his owner?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about fear and villians as a superhero dog runs through the city performing crazy feats to save his owner?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"bolt\"\n  },\n  {\n    \"question\": \"who is talking while showing clips from the movie bolt?\",\n    \"video_name\": \"video8718\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man discusses the video game he doing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"hop\"\n  },\n  {\n    \"question\": \"what is a man talks while doing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is instruction to doing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"pay\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is explaining video game?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do video game play of a character in?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"valley\"\n  },\n  {\n    \"question\": \"who talks while playing a video game?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss he is playing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who commentates a video game?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what play of a character in a valley?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is hoping for something?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man commentate?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone explaining?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man hoping for?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who do video game play of in a valley?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating battle pets in wow?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game which could be divinity?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who plays video games online and talks about birds and tokens?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who talks over a video game scene?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who discusses the video game he is playing?\",\n    \"video_name\": \"video8719\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is audience doing?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a large crowd doing?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a large crowd doing?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a crowd doing?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a large crowd of people doing?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a large crowd listening to?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is listening to music?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what do a crowd rocks out to?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are people enjoying at?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what dances?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who do a rock concert with a male lead?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what is a large crowd enjoying at an outdoor music venue?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing in front of a huge crowd?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what plays at an outdoor festival while the crowd dances?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is enjoying a live band at an outdoor music venue?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what show where the singer interacted with the audience?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is crowd doing?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is cheering together here?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is cheering?\",\n    \"video_name\": \"video8720\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is talking to another person about a character in another game?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a video game character?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does music play in?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who does a guy talk to while music plays in the background?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a video game in street interview?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands by the windows and talk about gaming strategy?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person with brown color dress explaining about?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is speaking about something to another person?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is telling someone how to work a video game character?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to another man while music plays in the background?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man talking to another person about a character in?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a man talk about a video game in?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is man in gray shirt having in the building?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man with short hair talking in?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"what is man in gray shirt having an interview in?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who is a man talking to about a character in another game?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man telling how to work a video game character?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a man talking to another person about in another game?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who seems to be describing tactics in a video game?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is in a large building stands a man and doing?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is speaking about a video game character and the moves that the character is capable of performing?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person with brown colour dress doing?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man with short hair doing?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man seems to be doing?\",\n    \"video_name\": \"video8721\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is using mobile?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what was a person adjusting?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"playlist\"\n  },\n  {\n    \"question\": \"who is navigating screens on a tablet or phone in a dark room?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating how to do something on your smartphone?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who was adjusting his playlist?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a smartphone?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what quotes?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"reading\"\n  },\n  {\n    \"question\": \"what is someone using?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"smartphone\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is this is a video of a phone doing?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"download\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is in a dark room a man doing?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"navigate\"\n  },\n  {\n    \"question\": \"what was he doing?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a hand doing?\",\n    \"video_name\": \"video8722\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what does a woman put on?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who are three reporters interviewing?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what make up tutorial?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"online\"\n  },\n  {\n    \"question\": \"what is a woman putting on?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman applying?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"make\"\n  },\n  {\n    \"question\": \"who make up?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do an online make up?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"who is applying makeup?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts on makeup?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining how to apply makeup?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who is putting on makeup?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are three reporters doing?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who shows how to put on makeup?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows how to put makeup on?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many reporters are interviewing a man?\",\n    \"video_name\": \"video8723\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is getting ready on the pit stop?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what is a man taking with a sport person?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are the other team members making the racers ready for?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does an indy race car driver talking about the dangers of high speed prepare for?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is being shown inside of a place?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is talking about the technicalities of the race?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"who are asking questions to the racer while the other team members are making the racers ready for the race?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"pres\"\n  },\n  {\n    \"question\": \"who are the press members asking questions to while the other team members are making the racers ready for the race?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"racer\"\n  },\n  {\n    \"question\": \"who is being interviewed for the features of new car made?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"engineer\"\n  },\n  {\n    \"question\": \"what do the racer in white dress in talking to media persons while the team members are making the car ready for?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a guy with white color dress explaining about make?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is taking a interview with a sport person?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is having some special features than the other as explained the company man?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are the press members doing?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is the racer in white dress in doing?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man explains the dangers of doing?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"navigate\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is an interview about the turn of the car and risk of doing?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"damage\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a boy in white dress color doing?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are some great event takes place and people doing?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a guy with white colour dress doing?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does some great event take?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who are making the car?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what takes place?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what are the team members making?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is an interview with an indy race car driver doing?\",\n    \"video_name\": \"video8724\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a band meeting fans and then doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what are a group of musicians doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"greet\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are actors doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what is a video of guys doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a clip of a band doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what is a four person band doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is another man playing in stage?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are a group of people getting?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"autograph\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what performs and signs autographs?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what a group signs?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"autograph\"\n  },\n  {\n    \"question\": \"when is another man playing guitar?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what signs autographs before singing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"when does a group of musicians then perform?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do fans interact with at a show?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a casting crew for a tv show doing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what are a group of musicians giving out?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"autograph\"\n  },\n  {\n    \"question\": \"what are people performing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what do fans interact with a band at?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a casting crew for a tv show signing?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"autograph\"\n  },\n  {\n    \"question\": \"who is playing guitar in stage?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did band signing autographs for fans then put on?\",\n    \"video_name\": \"video8725\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a cartoon boy doing?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon character goes ice doing?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is a child in a cartoon doing?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is cartoon of a girl doing?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is couple doing?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is in a cartoon television show a young girl doing?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who goes ice skating?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is skating with a hockey stick in a cartoon television show?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who skates on the ice?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a girl playing hockey in?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what play on the show?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a girl playing hockey?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what does the child skate on?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what do cartoon play on?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is playing ice hockey?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing hockey in a cartoon?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is the girl playing hockey?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"who is skating?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing icehockey?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is walking on a ice mountain?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a cartoon character go?\",\n    \"video_name\": \"video8726\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what are photos and articles from space displayed on?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"screenshot\"\n  },\n  {\n    \"question\": \"who is announcing the news that nasa is planning to announce travel to mars?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man presenting on the computer?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"what is man presenting his study on?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what did nasa announce is solved very soon?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"mystery\"\n  },\n  {\n    \"question\": \"what is a moon orbiting a earth in?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what does a male speaker announce s recently posted discoveries?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"nasa\"\n  },\n  {\n    \"question\": \"what is a moon orbiting in the space?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"who is presenting his study on the computer?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what announced mars mystery is solved very soon?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"nasa\"\n  },\n  {\n    \"question\": \"what is a man offering on the latest findins regarding mars?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"opinion\"\n  },\n  {\n    \"question\": \"what is a man showing pictures of?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"planet\"\n  },\n  {\n    \"question\": \"who is talking about mars?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing pictures of the planet?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is picture of mars on computer screen with man doing?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a moon doing?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"orbit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"what is a page doing?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"offer\"\n  },\n  {\n    \"question\": \"what is a still satellite photo of mars on a computer screen with a man doing?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who announces nasa s recently posted discoveries?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what is about a nasa mars mystery press release?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a picture of what could be the moon or mars on?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is offering his opinion on the latest findins regarding mars?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is orbiting a earth in the space?\",\n    \"video_name\": \"video8727\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"who describes how the fantasy game system works online?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on a laptop computer?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about a website?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining a fantasy marketplace?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is operating a laptop?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown using a computer?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a laptop?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a man talk about?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"what is a man operating?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who is reviewing a website?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what is a person is shown on their laptops doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video of men doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what does a person record?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what is a person is shown doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is a man reviewing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man explaining?\",\n    \"video_name\": \"video8728\",\n    \"answer\": \"marketplace\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who pours vinegar over potatoes and other ingredients?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who adds potatoes to a sink of raw chitterlings?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who soaks potatoes?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts whole potatoes into a bowl with chitlins?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing food to cook?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person preparing to cook?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person putting potatoes in a sink with?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is making food with potatoes?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person making with potatoes?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who puts whole potatoes in water with chitlins?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is placing potatoes and vinegar in a sink?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman put whole potatoes into with chitlins?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is putting potatoes in a sink with something else?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman making chitlins in?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"who is making chitlins in a sink?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman put whole potatoes in with chitlins?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a woman put into a bowl with chitlins?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"whole\"\n  },\n  {\n    \"question\": \"what is a person placing in a sink?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"vinegar\"\n  },\n  {\n    \"question\": \"who shows how to make a southern style recipe?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person putting potatoes in with something else?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what is a person placing potatoes and vinegar in?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what does a woman put in water with chitlins?\",\n    \"video_name\": \"video8729\",\n    \"answer\": \"whole\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people outside doing?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video is shown of soccer players doing?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are players playing?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what did a man kick?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who kicked a soccer ball?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking a soccer ball into the goalpost?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking a foot ball in a ground and put goal?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who swears at players?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what does a group of people cheer on a player s?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"who scoring in a soccer game?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who turns kicking in the goal?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does soccer players taking turn kicking in?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what is a man kicking in a ground and put goal?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what does a coach give to a soccer team?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"who gives some practice tips to a soccer team?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what is a man kicking a soccer ball into?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"goalpost\"\n  },\n  {\n    \"question\": \"what is a man kicking into the goalpost?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is shown of soccer players messing around?\",\n    \"video_name\": \"video8730\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are singers doing?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"when are a group of people performing?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"when lit a band is performing on a brightly?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what plays on a stage as lights flash?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a band play on as lights flash?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what did stage light is performing on a brightly?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who sings at a mic?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is performing with a charismatic singer?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when does a band play?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who shows a rock concert?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"bbc\"\n  },\n  {\n    \"question\": \"what does a band perform music on?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"bbc\"\n  },\n  {\n    \"question\": \"what plays on stage?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when does a band playing tune?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what plays on a stage in front of an audience as if it never happened before?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what preforms a song?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does bbc one show?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"when are singers performing?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what performs music on bbc one?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what preforms a song on stage?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a band perform on bbc one?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a man and a woman singing on indoors?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what tunes on stage?\",\n    \"video_name\": \"video8731\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"who is showing some tools?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is working?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does man show?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"tube\"\n  },\n  {\n    \"question\": \"what is a man assembling?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"who shows a tube?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man working on a auto part in?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"who talks about some hardware tools?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows a gauge in a room?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man describing a piece of with piping attached?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who is working on a auto part in a garage?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing a piece of equipment with piping attached?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is assembling a hose?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is in a garage a man doing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8732\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is explaining a situation?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who narates still pictures?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is describing footage?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is reporters doing?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is foreign video of a man doing?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"proposition\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a narrator doing?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who does foreign video of a man proposition?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"prostitute\"\n  },\n  {\n    \"question\": \"what did a guy and girl romance catch on?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"cctv\"\n  },\n  {\n    \"question\": \"who stares at a woman with very large breasts who is leaning against a wall?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes what happens on a cctv video?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what covers people how get naked in public?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a man stares at a woman with very large breasts who doing?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what does a woman discuss?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"bollywood\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses bollywood porn?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a narrator explaining?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"situation\"\n  },\n  {\n    \"question\": \"what is witnessed on closed circuit television?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"encounter\"\n  },\n  {\n    \"question\": \"what is a person describing?\",\n    \"video_name\": \"video8733\",\n    \"answer\": \"footage\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does a man pick?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"who is holding an arrow?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does guy take out of quiver?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"who is holding a bow and arrow?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picks an arrow?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who takes arrow out of quiver?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what are people dressed in costumes from centuries ago acting in?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is preparing to shoot a bow and arrow in display of skill in front of a group of people?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows off his bow and arrow to the crowd?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is ready to aim using the bow while people are watching him?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds up an arrow and grins toward a woman?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man show off his bow and arrow to?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who holds onto a spear outside?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is about to notch his bow?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man picks an arrow and is ready to aim doing?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a medieval group of people doing?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old movie doing?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people dressed in costumes from centuries ago doing?\",\n    \"video_name\": \"video8734\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a man holding in the room?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man holding a guitar in?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man discussing with another man?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many men are talking about music?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does guy talk to while holding a guitar?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is holding a guitar in the room?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man discussing music with?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a man with a guitar?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing music with another man?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to other guy while holding a guitar?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is giving the interview?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the other have?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are two men talking about?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a person giving?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being interviewed while holding guitar?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy talks to other guy while doing?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8735\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is swimming with chrocodile?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is disguised as an alligator?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man put on his back?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"alligator\"\n  },\n  {\n    \"question\": \"what is a man in the water with?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"who swims underneath a alligator?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in with a crocodile?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is swimming with an alligator?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man put an alligator on?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"what is a guy?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is a man handling?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is a man working with?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is a man swimming with?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is man swimming with?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"chrocodile\"\n  },\n  {\n    \"question\": \"what is a man in with an alligator?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man disguised as?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"alligator\"\n  },\n  {\n    \"question\": \"what does a man swim underneath?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"alligator\"\n  },\n  {\n    \"question\": \"who is handling a crocodile?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working with a crocodile?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is tempting a crocodile?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is swimming with a crocodile?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing under a crocodile?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man standing under?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"who puts an alligator on his back?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts an aligator with his head?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man swimming in with a crocodile or alligator while touching it without fear?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"who swims with an alligator?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"tempt\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is swimming in a river with a crocodile or alligator while touching it without fear?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who swims with an alligator on his back?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in the water with an alligator?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in the water with a crocodile?\",\n    \"video_name\": \"video8736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing sims?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is enjoying in a animated game?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a video of a sims?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what barked all night?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is dog playing in?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is laying on the ground?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a dog laying on?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is playing in home?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is howling on the floor?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"when did the dog bark?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what is animated dog howling on?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is giving demo for some game?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is dog doing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who sits on the floor with a green orb on top of it?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"dalmation\"\n  },\n  {\n    \"question\": \"what is in a animated game a dog doing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is there is a video game dog doing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a video game with a dalmatian dog doing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an animated dog doing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what is a sims dog doing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"howl\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a dog on sims doing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is howling?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is animated dog doing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"howl\"\n  },\n  {\n    \"question\": \"what is a dog on sims sitting on?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does a dalmatian sit on in a game of the sims?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a dalmatian in a computer game doing?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is barking?\",\n    \"video_name\": \"video8737\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is talking about education?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks the classroom?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who is speaking in german?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a teacher walk?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are children in?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what are people having?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man speak about the role of teachers in?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who is talking about a schooling system?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about how teachers help and support one an other?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about the benefits of teaching?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks about the role of teachers in primary school?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing the importance of teachers?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talks about working togother in regard to?\",\n    \"video_name\": \"video8738\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"safety\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a person fixing?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is fixing a car?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing some engine?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a videoon replacing pan gasket?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"transmission\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who shines a flashlight on a car engine?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a person demonstrating on how to replace a transmission gasket on?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a short video clip doing?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do a videoon replacing the transmission pan?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"gasket\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8739\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"chant\"\n  },\n  {\n    \"question\": \"what is a news reporters doing?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what is reporter doing?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is reporters doing?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is narrating various news stories?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman narrating?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is being shown on television?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a street rally being shown on?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what does a group of people sitting outdoors at?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"who is talking about old soviet era things?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who narrates various world news events while clips of the events play?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people protesting in?\",\n    \"video_name\": \"video8740\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a travelogue doing?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a camera doing?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what is shots of the forbidden city mostly of stone dragons doing?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"decorate\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who shows a chinese temple?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"who shows some building s and houses?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a slideshow show?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"temple\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"architecture\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"travelogue\"\n  },\n  {\n    \"question\": \"what are being shown?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"style\"\n  },\n  {\n    \"question\": \"who temples showcased?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"ancient\"\n  },\n  {\n    \"question\": \"what is being displayed outside?\",\n    \"video_name\": \"video8741\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what were sports man doing?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man on stage doing?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what play of madden 25?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who gives a speech about ai in football video games?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how a football video game is made?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the nfl draft?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who compares football to war tactics?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown in a video game?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a man compare to war tactics?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who were playing on the ground?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being shown of madden 25?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what does a man compare football to?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what were sports man playing on?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what review by broadcasters?\",\n    \"video_name\": \"video8742\",\n    \"answer\": \"nfl\"\n  },\n  {\n    \"question\": \"what is a man thanks mandopony for doing?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is a man thanks his viewers for doing?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"subscribe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"thank\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"thank\"\n  },\n  {\n    \"question\": \"who gives his thanks?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is providing an audio advertisement for his page?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what specifys in video game animations?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"who thanks his viewers for subscribing?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sees a montage of video game clips?\",\n    \"video_name\": \"video8743\",\n    \"answer\": \"viewer\"\n  },\n  {\n    \"question\": \"what does a pc tips service offer instructions to tweak?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"what steps to take if using a dedicated graphics card?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"demonstrating\"\n  },\n  {\n    \"question\": \"who is a man in a black shirt giving?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"tech\"\n  },\n  {\n    \"question\": \"who dressed in a black polo shirt providing instructions to help establish connections for some technology?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the gentle man wearing black shirt describing the bias of neighbor the modern accessories on?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who gives instruction on how to use some of his technology on a computer?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits in the chair wearing a black shirt and talks?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the product that is in front of him?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a graphics card and how to insert it in the computer?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man sits in the chair doing?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is technical support guy doing?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a young man in a black shirt doing?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is the gentle man doing?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young man dressed in a black polo shirt doing?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is it professional doing?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a male in black shirt doing?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there is a man in black doing?\",\n    \"video_name\": \"video8744\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is dancing to music?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"where is an animated skeleton dancing?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are skeletons dancing to?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a skeleton dancing to unfitting?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what skeleton dancing to music?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what dances with cartoons?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what did a computer animated skeleton dancing to?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is dancing in a field?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is an animated skeleton dancing in?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is dancing in a music video?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is a skeleton dancing to?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a cartoon skeleton doing?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a computer animated skeleton doing?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a nice doing?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a skeleton doing?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is an animated skeleton doing?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is animated skeleton doing?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do a skeleton singing?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are skeletons doing?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what dances around?\",\n    \"video_name\": \"video8745\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is a minecraft player doing?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who mincraft walking through a farm with his character?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"what is a man discussing?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"scenery\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing trees?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is discussing the scenery?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving commentary?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks through a cornfield in minecraft?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many men are talking while playing minecraft?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who shows his minecraft and lack of trees?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing minecraft with a friend?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing with a friend?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who plays the video game minecraft?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a man playing minecraft with?\",\n    \"video_name\": \"video8746\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is chicken meals are ready for doing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who s kitchen corner program showing a fresh chicken pieces in a bowl?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"tes\"\n  },\n  {\n    \"question\": \"who spins out rays before a bowl of diced chicken appears?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"starburst\"\n  },\n  {\n    \"question\": \"who s kitchen corner is showing an advertisement let s have fun?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"tes\"\n  },\n  {\n    \"question\": \"what is a yellow advertisement is displayed before doing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person is in the kitchen and doing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is tess s kitchen corner doing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a female chef named tess doing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a typical start to a kitchen and recipes show where the presenter starts doing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is tess s kitchen corner program doing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are ready for cooking?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is person in?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is in the kitchen?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who prepares to give a lesson on making a delicious meal?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does tess s is showing an advertisement let s have fun?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a woman on a cooking show have a bowl full of?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is displayed before showing some chicken that a lady is preparing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what does a woman prepare to give on making a delicious meal?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"lesson\"\n  },\n  {\n    \"question\": \"what is in a vessel in the kitchen corner show?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a loud noise doing?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are monkeys doing?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"groom\"\n  },\n  {\n    \"question\": \"what is a monkey looking for?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a monkey sit on?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"rooftop\"\n  },\n  {\n    \"question\": \"what do monkeys hang out in?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"temple\"\n  },\n  {\n    \"question\": \"what is looking for food?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what did a clip of rhesus macaque monkeys in?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"thailand\"\n  },\n  {\n    \"question\": \"where does a monkey sit?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"rooftop\"\n  },\n  {\n    \"question\": \"what is sitting in an old building?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is ringing throughout the streets?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"noise\"\n  },\n  {\n    \"question\": \"what sits on a rooftop?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is monley doing?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"where did a clip of rhesus macaque monkeys?\",\n    \"video_name\": \"video8748\",\n    \"answer\": \"thailand\"\n  },\n  {\n    \"question\": \"what is a reporter talking about being slow?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"marijuana\"\n  },\n  {\n    \"question\": \"who smokes marijuana in the street?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman discuss the legalization of?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"marijuana\"\n  },\n  {\n    \"question\": \"who narrates a pro marijuana video?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a news piece?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what does a man smoke in the street?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"marijuana\"\n  },\n  {\n    \"question\": \"what covers marijuana businesses growing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"who discusses the legalization of marijuana?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man smoke marijuana in?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a woman?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"who is smoking?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a news story cover growing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"marijuana\"\n  },\n  {\n    \"question\": \"what are a crowd of people?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"marijuana\"\n  },\n  {\n    \"question\": \"who does a news lady state that police is harassing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"marijuana\"\n  },\n  {\n    \"question\": \"who is talking about marijuana business being slow?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are some?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"marijuana\"\n  },\n  {\n    \"question\": \"what are some doing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is people march in the street doing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"advocate\"\n  },\n  {\n    \"question\": \"what are people smoking on the streets?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"marijuana\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news story covers marijuana businesses doing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"grow\"\n  },\n  {\n    \"question\": \"what is a news lady states that police doing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"haras\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a crowd of people doing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"who states that police is harassing marijuana growers?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"when are peoples enjoying?\",\n    \"video_name\": \"video8749\",\n    \"answer\": \"festival\"\n  },\n  {\n    \"question\": \"who is a man talking?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"witha\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"engage\"\n  },\n  {\n    \"question\": \"what is a dark middle aged man doing?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a classic indian love?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who did dark haired speaking inside a room?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a young woman and an old man doing?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an indian woman doing?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a foreigner couple doing?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman is in the hallway doing?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who is laughing while explaining a sitation to a girl?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in the hallway talking to a man in a doorway?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what haired woman and man speaking inside a room?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"who is a woman in the hallway talking to in a doorway?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are having conversation near the wall?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in the hallway talking to a man in?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"doorway\"\n  },\n  {\n    \"question\": \"what are arguing about something wierd?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"foreigner\"\n  },\n  {\n    \"question\": \"what are a foreigner couple arguing about?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking witha girl?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a woman with a red dot on speaking to a man in a foreign language?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"forehead\"\n  },\n  {\n    \"question\": \"who is talking to the girl?\",\n    \"video_name\": \"video8750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing cooking show?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is telling the ingredients?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is made?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"stew\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is some food being cooked in pan?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what is cooking in the pan at kitchen?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is man preparing in the black pan?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is preparing something delicious in the black pan?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a receipe in the srilankan style?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows off a pan filled with a fish stew?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking the vegetable in the big pan in the kitchen?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does an overview of a very beautiful and scrumptious looking sizzling in a pan?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who prepares a stir fry that includes many different vegetables and meat?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is shown cooking in pan while music plays?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"stew\"\n  },\n  {\n    \"question\": \"what is the vegetable thali of sri lanka prepared in a pan slowly doing?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"heat\"\n  },\n  {\n    \"question\": \"what is a bowl spoon doing?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a fish stew is shown doing?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is an overview of a very beautiful and scrumptious doing?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a dish doing?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what do a bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is sri lankan fish stew shown accompanied by?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is being cooked in a metal pan?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who shows off food that s cooking in a black pan?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a person making in the srilankan style?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"receipe\"\n  },\n  {\n    \"question\": \"what does someone doing a cooking demonstration making fish stew sri?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"style\"\n  },\n  {\n    \"question\": \"what is someone cooking in the big pan in the kitchen?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"what is a fish stew shown in pan while music plays?\",\n    \"video_name\": \"video8751\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who talks on the phone?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking on the phone?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman reporter discuss?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does a man talk on?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a man talking on?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a commentary of an avengers?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a women on tv news doing?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who discusses current movie news?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman commentator doing?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a news reader doing?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is giving news on marvel and showing previews of a movie?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who describes a scene from the avengers?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about the x men movies and the plot?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about the avengers movie?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a superhero movie?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a female host previews an upcoming marvel?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"release\"\n  },\n  {\n    \"question\": \"who is speaking about new movies?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8752\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what will that be used in?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is teaching how to cook?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking in the kitchen using a recipe that calls for olive oil and curry powder?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows how to make food with curry powder and olive oil?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cooking in using a recipe that calls for olive oil and curry powder?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is showing the ingredients to a recipe?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows the ingredients for a recipe?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman telling about the ingridents needed for?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman in a kitchen give?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a woman showing the ingredients to?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who explains ingredients for a meal?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is telling the recipe for chili?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is preparing food in kitchen?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing some ingredients?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman preparing in kitchen?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman preparing food in?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen gives doing?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8753\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what did a baseball game victory set to?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what did a baseball team that just win?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who are celebrating after a win?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what does a baseball team jump together during?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what jumps together during a game?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who are shown celebrating victory?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what are baseball players celebrating after?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what are two guys hugging to each other in?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a baseball player doing?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are a baseball players doing?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a team doing?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what are baseball players doing?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is baseball players are shown doing?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"how many guys are hugging to each other in a ground?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did various clips of baseball victories set to?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what celebrates its victory?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is montage of baseball players doing?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what celebrates?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are baseball players shown celebrating?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"victory\"\n  },\n  {\n    \"question\": \"what does a baseball team celebrate?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"victory\"\n  },\n  {\n    \"question\": \"who are hugging?\",\n    \"video_name\": \"video8754\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what sings about ned stark?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"lannister\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does peter dinklage do?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"lounge\"\n  },\n  {\n    \"question\": \"when do people sing?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing a game of thrones song?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"dinklage\"\n  },\n  {\n    \"question\": \"who dinkel singing with attractive lady back up singers?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"peter\"\n  },\n  {\n    \"question\": \"who is singing a song about ned?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"dinklage\"\n  },\n  {\n    \"question\": \"who is singing with a group of women?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is tyrian from game of thrones singing a humorous song about?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who do peter dinkel singing with back up singers?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is tyrian from game of thrones singing about the show?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings about game of thrones?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"dinklage\"\n  },\n  {\n    \"question\": \"what is peter dinklage singing a game of?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who does a lounge act?\",\n    \"video_name\": \"video8755\",\n    \"answer\": \"dinklage\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a halloweed woman doing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is dressed up like a sugar skull?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows how to do scary makeup?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is dressed up in face paint?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a women with a painted face moving around in a room?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who talks about halloween makeup?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who wierd makeup on?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman have?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a halloweed woman showing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"costume\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a video of a woman doing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman is dressed up like a sugar skull and doing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women with a painted face doing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman dressed up in?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"who has facial makeup?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman show off?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a girl show off?\",\n    \"video_name\": \"video8756\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what does judge give to child on the voice?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"critique\"\n  },\n  {\n    \"question\": \"who responds to the judge of a talent competition?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking to a little girl on stage?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a girl and judge doing?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl receiving from a panel of talent judges?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"feedback\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"what are judges doing?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who gives critique to child on the voice?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is receiving feedback from a panel of talent judges?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is about to sing in a show?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who judge talking on the voice?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking on the voice?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a girl and judge talking on?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who impressed the judges?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"who sings on the voice?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when did a little girl being interview?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a little girl sing on?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a little girl talking on?\",\n    \"video_name\": \"video8757\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what are lots of jockeys running their horses in a race lots of betters are eagerly watching?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are lots of jockeys running their horses in lots of betters are eagerly watching the race?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what a group of horse riders riding the horse on?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a magnificent horse race taking place on?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what a group of horse riders riding on the race?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a magnificent horse race taking on the ground?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what race down the track together in a race?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are some horses racing each other on?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are riding their horses on the grass?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are group of horses running fast to win?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are group of people riding their horses on?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what are running fast to win the first place?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are bourses running with the jockeys standing up?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is the announcer doing?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a large group of jockeys doing?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is horses doing?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are some horses doing?\",\n    \"video_name\": \"video8758\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who gives fantastic poses nice make up like princess?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman with crown doing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a female celebrity doing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady model doing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a shooting scene where actress prepare for shoot looks for last time doing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"finish\"\n  },\n  {\n    \"question\": \"what is katty perry doing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is brunette woman in long dress giving?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is looking?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"lad\"\n  },\n  {\n    \"question\": \"what is a woman discussing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman dressed in?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"costume\"\n  },\n  {\n    \"question\": \"what do katty perry wearing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"constume\"\n  },\n  {\n    \"question\": \"what perry wearing egyptian style constume?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"katty\"\n  },\n  {\n    \"question\": \"what do a lad make up with?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"gold\"\n  },\n  {\n    \"question\": \"who is dressed in costume?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman is dressed in costume and doing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who make up with gold?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"lad\"\n  },\n  {\n    \"question\": \"what perry dressed up as an egyptian for a video?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"katy\"\n  },\n  {\n    \"question\": \"what is a woman with crown acting in?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does a woman wearing egyptian clothing talks and sit in?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a woman with blonde hair singing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who does lady give fantastic poses nice make up like?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"princes\"\n  },\n  {\n    \"question\": \"what is a woman in egyptian dress doing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lad doing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is sexy brunette doing?\",\n    \"video_name\": \"video8759\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a woman train?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who trains a dog?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pretending to shoot dogs?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are some guys giving instruction to?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who are getting their dogs to do tricks?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what are some guys giving to a dog?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"instruction\"\n  },\n  {\n    \"question\": \"how many dogs are playing dead for their owners?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what learns to play dead?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what do dogs play dead on?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what little dogs playing dead?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"cute\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video of dogs doing?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is playing dead?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is different kinds of dogs doing?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what are dogs doing?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is dogs doing?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is cute little dogs doing?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"what are three dogs doing?\",\n    \"video_name\": \"video8760\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the magical flying cycle?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"drone\"\n  },\n  {\n    \"question\": \"what is someone showing drones in?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is delivering drinks?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"chopter\"\n  },\n  {\n    \"question\": \"who is discussing hover craft?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does drone bring man cup of?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what brings man cup of juice?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"drone\"\n  },\n  {\n    \"question\": \"what does hover drone deliver drinks to?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what do a man and a woman get together?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"drinking\"\n  },\n  {\n    \"question\": \"who is demonstrating the features of a hovering vehicle?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who moves through a yard to a couple?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"hoverbike\"\n  },\n  {\n    \"question\": \"what is a drone flying through as it carries a glass of orange juice to an elderly couple sitting on a bench?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is a drone delivering a glass of juice to?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is delivering a glass of juice to a man?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"drone\"\n  },\n  {\n    \"question\": \"what does a hoverbike move through a yard to?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what does a hoverbike move through to a couple?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"what is a drone delivering a glass of to a man?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what carries a glass of orange juice to an elderly couple sitting on a bench?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a man demonstrating delivering orange juice?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"hover\"\n  },\n  {\n    \"question\": \"what is delivering drinks to a couple?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"drone\"\n  },\n  {\n    \"question\": \"who is operating a remote control hovercraft outdoors?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about a new hoverbike?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a drone delivering drinks to?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what hover bike with commentary?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"generation\"\n  },\n  {\n    \"question\": \"what do a second generation hover with commentary?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what delivers drinks to old couple?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"hover\"\n  },\n  {\n    \"question\": \"who is showing drones in air?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does the air carry a glass of to an elderly couple sitting on a bench?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is flying through the air as it carries a glass of orange juice to an elderly couple sitting on a bench?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"drone\"\n  },\n  {\n    \"question\": \"who is demonstrating a hover board delivering orange juice?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what flys over the woods holding a glass of juice?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"drone\"\n  },\n  {\n    \"question\": \"what is man discussing?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"hover\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a quad chopter doing?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a drone doing?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a drone doing?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a drone flys over the woods doing?\",\n    \"video_name\": \"video8761\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what do men talk about?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"what do multiple men talk about?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"who is talking about professors?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about instructors not being able to connect with their students like they used to?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does people talking about the issues in today s?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"who discusses how the education system is broken?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a group of adults talk about children s?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"what do a video about how education doesn t?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who speaks to an audience on stage?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to people?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking to people?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8762\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who does hulk hogan points and fight?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"warrior\"\n  },\n  {\n    \"question\": \"who is fighting in a wwe match?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"hogan\"\n  },\n  {\n    \"question\": \"what and fights the ultimate warrior?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"hulk\"\n  },\n  {\n    \"question\": \"what are wrestlers fighting inside in front of a huge cheering audience?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"how many men are wrestling on a ring?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who do a wwe boxing match with?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"hogan\"\n  },\n  {\n    \"question\": \"who is wrestling?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is hulk hogan wrestling another wrestler in?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are two men wrestling on?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what do a clips form?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"who is hulk hogan wrestling in a ring?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who is wrestling another wrestler in a ring?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"hogan\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a wwe doing?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is hulk hogan doing?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are wrestlers doing?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is wrestlers doing?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"who do a clip from an old wrestling match with?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"hogan\"\n  },\n  {\n    \"question\": \"what is about a wrestling competition?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"how many wrestlers are fighting in a boxing ring?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are participating in a wrestling match?\",\n    \"video_name\": \"video8763\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what are a man in a yellow apron and a woman doing?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a man and a woman in a kitchen doing?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man is ready for doing?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"who is demonstating how to do something in a kitchen?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman making?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what did the man wear?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"apron\"\n  },\n  {\n    \"question\": \"who is ready for cooking?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two people in the kitchen making?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who wore a yellow apron?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man teaching how to fold up a garbage bag?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who opens a bag to put something inside?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are in the kitchen making something?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is showing a woman some kitchen tips?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man and a woman in a kitchen preparing green baggies for?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is teaching his mother how to fold up a garbage bag?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman working with?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what is two chefs doing?\",\n    \"video_name\": \"video8764\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is opening a box of toy cars?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is opening up a box of toy?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does man unbox?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is opening a box?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man unbox?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a person open?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"gift\"\n  },\n  {\n    \"question\": \"what is someone opening?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a person opening?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is unpacked?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is unboxing toys from the disney movie?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"unbox\"\n  },\n  {\n    \"question\": \"who unboxes car themed toys?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who unboxes a toy?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens a gift box?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a toy box being opened by?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who opens a box for a toy car?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is the review of new toy car?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who opens a box with toys inside?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person opening up a box of?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a guy open for a toy car?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who is on stage dancing?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man singing?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who opens up a toy car package?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being opened by a person?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is someone opening a box of?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is on stage singing?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man dancing?\",\n    \"video_name\": \"video8765\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what creepy hallway?\",\n    \"video_name\": \"video8766\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"what flashes at the end of a scary hallway?\",\n    \"video_name\": \"video8766\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what is shown in front of a television screen?\",\n    \"video_name\": \"video8766\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what is a glowing arcade cabinet in?\",\n    \"video_name\": \"video8766\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who walks down a dark hallway?\",\n    \"video_name\": \"video8766\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8766\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what do a dark creepy?\",\n    \"video_name\": \"video8766\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what slides with back ground music?\",\n    \"video_name\": \"video8766\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is woman putting into the meat?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is mixing olive oil?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman mixing?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is olive oil pour into?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is in a kitchen woman doing?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is in the kitchen the men doing?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is woman putting some oil into?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is oil is mixed with grind meat put in the bowl and mixed thoroughly before doing?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is person adding into the red meat?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is person adding some oil into in a kitchen?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a woman add to food in a white bowl?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is the men telling hiw to make the vegetable noodles in simply method in?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a woman mix into ground beef in a white dish?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is putting some oil into the meat?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is the men telling to make the vegetable noodles in simply method in the kitchen?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"hiw\"\n  },\n  {\n    \"question\": \"who is putting some oil the the meat in a kitchen?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is mixed with grind meat mixed thoroughly before cooking?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is adding some oil into the red meat?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is mixed with grind meat put in the bowl?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is making a dish with a olive oil?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding some oil into the meat in a kitchen?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking a dish with olive oil?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who adds olive oil to food in a white bowl?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who mixes oil into ground beef in a white dish?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is person adding some oil into the meat in?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is woman putting some oil the the meat in?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woman cooking a dish with?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a woman making with a olive oil?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is person adding into the meat in a kitchen?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is pour into uncooked meat?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a woman cooking with olive oil?\",\n    \"video_name\": \"video8767\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is ariel views of a mountainous region with people doing?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"hike\"\n  },\n  {\n    \"question\": \"what is epic music doing?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is dramatic music overlaps doing?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what overlaps panning footage of mountain range?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does dramatic music overlap panning footage of?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what views from the lord of the rings movies?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"how many people are running through a very rocky and mountainous terrain?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two man in?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"how many persons are walking in the hill?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is walking with his friends on the big rocks?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are walking on the high mountain rocks?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are two persons walking in?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"who are in the hill?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filming a misty mountain landscape?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are some people traveling around scape?\",\n    \"video_name\": \"video8768\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is a dark-skinned man doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in black tshirt doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is bearded guy in black tshirt doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in a black shirt doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is there is a check shirt man doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is there is a black tshirt man doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with black t-shirt doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is guy with an ax doing?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what was the injury happened in?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what does a man in black tshirt stands and describe the crime taken place with the scene of a man is hit with by another one?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"axe\"\n  },\n  {\n    \"question\": \"what does a man in black tshirt stands and describe the crime taken place with the scene of a man is hit with huge axe by?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"what does the man wearing the black tshirt and eye glass with his hands?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men are having a fight?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is dooing the safty dance then?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men walking on?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what was happened in the front?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"injury\"\n  },\n  {\n    \"question\": \"what are two men having?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man dooing then?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"safty\"\n  },\n  {\n    \"question\": \"what does a crazy man attack another with?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"axe\"\n  },\n  {\n    \"question\": \"what is a man in a black shirt describing where two men are staging a battle?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who was chased by other and hit by a person explaination on wrong wound?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who hits a man back side while the injury was happened in the front?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who attacks another with an axe?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did bearded guy in black tshirt talking to?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is standing in front of a black screen talking about some movie tropes?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a mistake made in a movie?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are walking on the street?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking about a video of a man hitting him?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was a person chased by other and hit by a person explaination on?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"wound\"\n  },\n  {\n    \"question\": \"who is talking about a video of a man sneaking up behind someone?\",\n    \"video_name\": \"video8769\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing a song in the studio?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"what is a young woman sings into a microphone before doing?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"skip\"\n  },\n  {\n    \"question\": \"who sings in a room with candles?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is inside of a studio singing passionately there is a white candle inside?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a young woman sing into before skipping down the sidewalk as the music continues?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who sings into a microphone before skipping down the sidewalk as the music continues?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings a mariah carey song in a studio with candlelight?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"grande\"\n  },\n  {\n    \"question\": \"what sings a song in a very high pitched voice?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"grande\"\n  },\n  {\n    \"question\": \"what do ariana grande singing in?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what do a lady sing?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what grande singing in the studio?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"ariana\"\n  },\n  {\n    \"question\": \"what is a lady inside of a studio singing passionately there is inside?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what is a lady inside of singing passionately there is a white candle inside?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what is woman with beautiful hair singing in?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what does a woman with a great voice sing into?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who sing a song?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who go out?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8770\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a black man doing?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is its a pop singer doing?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is man in car doing?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is singing in a music video?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who derula singing in a music video?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"jason\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who derulo singing?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"jason\"\n  },\n  {\n    \"question\": \"who derulo dancing?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"jason\"\n  },\n  {\n    \"question\": \"what does a man sing?\",\n    \"video_name\": \"video8771\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man preparing a dish with?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a man mixing soy sauce and honey together in?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is the man making a sauce in?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is the man making in the kitchen?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a man mixing honey with?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man preparing with soy sauce and honey?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a man preparing with soy sauce?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who mixes a sauce in a bowl?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man mixing with soy sauce?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"honey\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who is making a sauce in the kitchen?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is mixing soy sauce and honey together in a bowl?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing a recipe with soy sauce and honey?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing a dish with soy sauce?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mixes honey and soy sauce in a plate?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is mixing honey with soy sauce?\",\n    \"video_name\": \"video8772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shows off the paw patrol toy?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows off puppy toys?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing with some toys?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who plays with toys?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is explaining about a toy?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman displaying the features of?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a girl explaining about?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a man review?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who reviews his dog figurines?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays with paw patrol toys?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who holds onto a action figure in a room?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman hold onto a action figure in?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is displaying the features of a toy?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8773\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who closes a stopper?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing with toys on?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who puts cotton on a small container?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone stuffing into a vial?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what does man put on a small container?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"cotton\"\n  },\n  {\n    \"question\": \"who reviews a science toy?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing with a toy?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man put cotton into?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is playing with a toy?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a small mixer toy?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"cotton\"\n  },\n  {\n    \"question\": \"what does a man put into a toy?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"cotton\"\n  },\n  {\n    \"question\": \"who is fixing a plastic toy?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man review?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what do hands put an orange piece and red piece on top to hold in?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"cotton\"\n  },\n  {\n    \"question\": \"what is there is a guy doing?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what does a man put into a clear container?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"stopper\"\n  },\n  {\n    \"question\": \"what does a man close?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"stopper\"\n  },\n  {\n    \"question\": \"who puts a stopper into a clear container?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to use a machine to stuff an animal on your own?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stuffing cotton and plastic into a vial?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing with toys on the table?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do hands pack into some sort of purple and yellow toy?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"cotton\"\n  },\n  {\n    \"question\": \"what do hands put an orange piece and red piece on to hold in the cotton?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"where do hands put an orange piece and red piece to hold in the cotton?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"what is someone playing with?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who puts cotton into a toy?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man fixing?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what is a person playing with?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8774\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a man with a microphone giving using slides on a tv controlled by a laptop computer?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what is visual data presentation in another language french man talking in?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what slides the person is explaining the matter in the power point?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"who does presentation slide is explaining the matter in the power point?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when is a man with a microphone standing in front of a laptop?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a young man in an ill fitting suit give?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what is a man in a beige suit giving to some people?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"who is showing images on a screen?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a presentation on a small screen?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing in front of a computer giving an presentation?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy with a mic doing?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is visual data presentation in another language french man doing?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man in an ill doing?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"fit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man with a microphone doing?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who speak to tv programm for visionaries inside the creative mino?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains visual data preparations and visual predictions at a french speaking conference?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man ina suit on a stage next to a monitor talks while doing?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what is a french man giving on a small screen?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what does a guy in a stage talk into with a laptop?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what does a guy in a stage talk into a microphone with?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man speaking into?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a man showing images on?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is speaking into a microphone?\",\n    \"video_name\": \"video8775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a chef showing off a piece of there made?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is a woman sprays chicken breasts with olive oil and salts and peppers them before doing?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is cleaned by a spray to cook it?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who shows the uncooked meat?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"marinate\"\n  },\n  {\n    \"question\": \"what is a woman on a cooking show doing?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a female chef doing?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the lady talks about doing?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who are chicken and fresh vegetables making is preparing chicken and fresh vegetables for a dish?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are chicken and fresh vegetables making someone is preparing chicken and fresh vegetables for?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a woman pepper before baking?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is putting stuff on raw chicken that is in a white bowl on a table top?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cooks chicken in a white dish in a kitchen?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who coats chicken breast in olive oil and salt and pepper?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who peppers chicken breasts before baking?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who prepares two chicken breast with olive oil salt and pepper?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman putting on raw chicken that is in a white bowl on a table top?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"who is showing off a piece of chicken there made?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is showing how to prepare big chicken breasts?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what does a woman prepare with olive oil salt and pepper?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is describing how to prepare oven baked chicken breasts?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do she sprays olive on chicken breasts?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person show?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is baked to eat?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what do she sprays olive oil on?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who is doing cooking show?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is telling the ingredients?\",\n    \"video_name\": \"video8776\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is speaking about vehicle maintenance?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man checking in a car?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is working on an engine?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about oil changes?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about new car technology?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"linu\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man anchoring?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man speaking about?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"maintenance\"\n  },\n  {\n    \"question\": \"who is anchoring a show?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a man checking the oil in?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about cars?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who spark plugs?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is checking the oil in a car?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reporting on electric cars?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about while pictures of car parts are shown?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"anchor\"\n  },\n  {\n    \"question\": \"who is talking about car facts while pictures of car parts are shown?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about the lack of need for oil changes or spark plug replacements due to electric vehicles?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the good things about electric cars?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is giving a review on electrical vehicles?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8777\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"how many cartoons are having a conversation?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"who is wearing a hat?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what looks at some petals?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what does a girl show?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"what are four animated characters discussing?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"what are four cartoons having?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are the characters observing?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"what is an animated girl wearing?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what is a cartoon family having around a kitchen table?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who fails to be romantic?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who s burgers discuss a body?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"bob\"\n  },\n  {\n    \"question\": \"what is an animated girl doing?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does characters from bob s burgers discuss?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what are the characters doing?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"observe\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"dump\"\n  },\n  {\n    \"question\": \"what are four animated characters doing?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cartoon family doing?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a family of cartoon characters doing?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what s burgers family look at rose petals in the kitchen?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"bob\"\n  },\n  {\n    \"question\": \"how many animated characters are discussing flower petals?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what shows a cartoon family at a dinner table?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what did a family looking at some rise pedals on?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is having a conversation around a kitchen table?\",\n    \"video_name\": \"video8778\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do a non working?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do a cutscene from?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is getting out of a truck?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what s intro credits?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what does a family s?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"intro\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is a man talking about?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"wife\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are several different people doing?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is it doing?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what trailer?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a showing?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a bunch of scenes from a movie with people doing?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8779\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men having?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men have guns and they doing?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"aim\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man pulls out a gun from behind his back and points it at two men doing?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what are two men with guns one in a suit doing?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who is about to shoot someone in forest?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pull out in front of others?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"how many men are having a gun fight?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who points a gun at two men pointing guns at him?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pulls out a gun from behind his back?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men have guns?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men point guns at each other?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man pull out from behind his back?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a man point at two men pointing guns at him?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what do men point guns at one another in?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do males with guns about to shoot each other in a forest set to?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who holds his hands up while two men point their guns at him?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men poiting their guns at man in the woods?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who pulls a gun out in front of others?\",\n    \"video_name\": \"video8780\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is old disney cartoon characters doing?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do video segment from beauty and the beast animate?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what sing about a romantic couple?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"household\"\n  },\n  {\n    \"question\": \"who look outside a window?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do some cartoon characters look outside?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are cartoon dishes singing?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who are singing?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are singing?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"household\"\n  },\n  {\n    \"question\": \"what are singing a song?\",\n    \"video_name\": \"video8781\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a computer graphic doing?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an indie games screen has just ended and a new game doing?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is someone presenting the online game on?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what is the person explaining about the game?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"indie\"\n  },\n  {\n    \"question\": \"when is person playing a game?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"limit\"\n  },\n  {\n    \"question\": \"what is person playing with time limit?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone presenting on the monitor?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is person presenting on the screen?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"what is being shown to an audience?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"what is a demonstration being shown to?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what comes up of a different game?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what does a computer game play on?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is beginning?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did a man play called a man is giving a review of a game?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"block\"\n  },\n  {\n    \"question\": \"what plays on the screen?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is person presenting the latest study on?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a mans voice doing?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who played called bub block a man is giving a review of a game?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did man giving a review of an indie game bub?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"block\"\n  },\n  {\n    \"question\": \"who talks while a computer game plays on the screen?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"who comment on the trial of a video game?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about the game indie games?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what graphic is showing off an indie game that was made called bub block?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is presenting the latest study on the screen?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who reviews an indie game and comments that he will buy the trial of a video game?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the person explaining about indie games?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what did a man play called bub block a man is giving a review of?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is presenting the online game on the monitor?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who did a man play called bub block is giving a review of a game?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a game with time limit?\",\n    \"video_name\": \"video8782\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is talking about a movie ratings?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"personality\"\n  },\n  {\n    \"question\": \"when does host lizzy lovette talks about will smith s it seems his real name is willard?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"childhood\"\n  },\n  {\n    \"question\": \"what does host lizzy lovette talks about will smith s childhood it seems is willard?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"name\"\n  },\n  {\n    \"question\": \"what does a woman sit in with somewhat sexy dress and talks?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what brunette in white top and black jacket talking to the camera?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"who is sitting in a chair talking about the actor will smith?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman wearing white tops black jacket red skirt describing about?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"personality\"\n  },\n  {\n    \"question\": \"who is a woman sitting in a chair talking about will smith?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"who sits in a chair while talking about will smith?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"what is a woman sitting in talking about the actor will smith?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who sits in a chair with somewhat sexy dress and talks?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a entertainment reporter sit in while talking about will smith?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does a girl sitting on the green chair with black over coat speak about?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what is a woman with black dressing giving speech about?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman in black dressing doing?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady named lizzy doing?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is text appears in front a of a star a woman doing?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a entertainment reporter sits in a chair while doing?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sexy brunette in white top and black jacket doing?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a television personality doing?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is australian woman doing?\",\n    \"video_name\": \"video8783\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is crafting?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what leaves?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is i person doing?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"mold\"\n  },\n  {\n    \"question\": \"what is there s a girl doing?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is someone?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"material\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"who is showing how to make a leaf out of some substance?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing how to cut out things in fondant?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting out a leaf from plasticine?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is using a cookie cutter on a different piece afterwards?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting lines into dough?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting leaves out of clay?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cutting out from plasticine?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"what is a woman cutting out a leaf from?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"plasticine\"\n  },\n  {\n    \"question\": \"who is talking about arts and crafts?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what clip on making a leaf?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a person cutting lines into?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who is making leaves from clay?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is molding green material?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who preforms some arts and crafts?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts out a leaf shape?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman making leaves from?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"clay\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who makes crafts?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman cut out?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"shape\"\n  },\n  {\n    \"question\": \"what is a person using on a different piece afterwards?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"cookie\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8784\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is young teenager doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a young teen skates on top of a truck while doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a young man in a black t-shirt doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"file\"\n  },\n  {\n    \"question\": \"what is a kid rides on top of a train while doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is idiot doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"seek\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is an amazing footage of a selfie taken by a boy who doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a boy in blue color dress doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young boy is on top of a doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who is filming himself on top of a train?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a person with blue shirt taking?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is filming himself with a selfie stick while standing on a train that is moving along a highway?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on top of a train running from car to car?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who rides on top of a train on a bridge?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running on the top of a vehicle whilst holding his camera to video tape the scene?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who skates on top of a truck while holding a camera?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"teen\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"who is taking a video of himself surfing on the train?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who takes video of himself running on top of a train?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is young teenager taking a video of himself walking on top of a moving train with cars and water on?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who is taking a video of himself walking on top of a moving train with cars and water on either side?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"what do a boy in blue color dress wearing moving on top of train and car moving beside water scene person standing watching?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"where is young teenager taking a video of himself walking on top of a moving train with cars and water?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is filming himself walking on top of a train?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man rides on top of a train and laugh for?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8785\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is hosts doing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are couple doing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is guy and girl doing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are explaining about one kind of festival?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is tow people doing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what are two people introducing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are two people talking about?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"how many people talk about their upcoming concert and album?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when are couple explaining about one kind?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"festival\"\n  },\n  {\n    \"question\": \"how many people are talking about a concert?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two people in front of fake trees discussing a dance show of?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"sort\"\n  },\n  {\n    \"question\": \"what do two people talking on a show about?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is making something from paper?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"someine\"\n  },\n  {\n    \"question\": \"how many people are introducing a song?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is someine making from paper?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someine making something from?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"how many people are talking?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two people in front of fake trees doing?\",\n    \"video_name\": \"video8786\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is guy playing minecraft and doing?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a first person view of a player doing?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does a minecraft character put on?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"armor\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a minecraft character stuck in?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what view of a player moving through minecraft?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does minecraft gamer put on?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"armor\"\n  },\n  {\n    \"question\": \"who is showing a video of minecraft?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates a tutorial for minecraft?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing a video of?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is stuck in a room?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does a video gamer get trapped in?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a video game scene going on of?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is narrating while playing minecraft?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts on iron armor?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what gets trapped in a room?\",\n    \"video_name\": \"video8787\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is jumping?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is player doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is telling how to play while playing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a cartoon game doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a guy shoots a gun in a game while doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is screen recording of first person shooter video game with voice over of man with german accent doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in the video game kids a gun doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is this is an video of video game an man doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man runs backward in an animated game then starts doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man plays a video game where he doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man talking to as to what is going on in the game?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who runs to kill all?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"hero\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is about the shooting of the aliens?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a man play while giving commentary about another game?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a first person shooter video game?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shooting all over the room in the video game kids?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who shoots a gun in a game while talking?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who plays a game while giving commentary about another game?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking while playing a fictional first person shooting game?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a video game where he is shooting other players?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a video game where the player has a first person perspective and shoots other characters?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what firing gun shot moving fast killing displaying on screen?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who do a russian speaking giving comentary on a video game?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy shoot in a game while talking?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what are a shooting game enemies?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what does a guy shoot a gun in while talking?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating playing the video game?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do screen recording of first person shooter with voice over of man with german accent talking about being in to video games?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking about his video game team?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking abuot the video game?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking to his audience as to what is going on in the game?\",\n    \"video_name\": \"video8788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what has a female newsreporter talks about the author of a new book about jesus sparked alot of?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"controversry\"\n  },\n  {\n    \"question\": \"what do a lady in the sleeveless dress giving to the people?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does a woman on a tv show talks about a scholar s?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what has a female newsreporter talks about the author of a new book about jesus sparked?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"controversry\"\n  },\n  {\n    \"question\": \"what do a girl wearing purple dress start reading in the news channel?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who interviews a man about islam and the christian religions?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talk about the christianity of the jesus in the fox channel?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who highlights the writing and book about christianity of an author who had earlier written about islam?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who talks about a christian book written by a former muslim?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses a man who wrote a book about jesus?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady in blue dress doing?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a report doing?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a studio talks about a book doing?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl in blue color dress doing?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman with shoulder length black hair doing?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do a girl in blue color dress wearing siting speaking and television screen with black shirt man beside displaying on screen?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"beside\"\n  },\n  {\n    \"question\": \"what is there is a woman with beautiful eyes doing?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a black reporter with dark hair doing?\",\n    \"video_name\": \"video8789\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"when did game of thrones females cuddle?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"who is being sexual rapped by another girl?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"how many women pretend to have sexual intercourse?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many woman s are having sexual relationship?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are having sex?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is straddling another woman?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are in bed together?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are preparing to make out in bed?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"embrace\"\n  },\n  {\n    \"question\": \"what are two women preparing to make out in?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is two ladies doing?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who is a woman straddling?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are having sexual relationship?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two woman s having?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"relationship\"\n  },\n  {\n    \"question\": \"what do two women pretend to have?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"intercourse\"\n  },\n  {\n    \"question\": \"what are two women in together?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"how many women are embracing?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women having?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"sex\"\n  },\n  {\n    \"question\": \"what are game of thrones season 1 scene where girls doing?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8790\",\n    \"answer\": \"straddle\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"decorate\"\n  },\n  {\n    \"question\": \"what is a person carefully doing?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"who is giving a tutorial on nail painting design?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating how to create designs on fingernails?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to paint nails with a design?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is teaching how to paint fingernails?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who give a nail art?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"what is being painted?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"fingernail\"\n  },\n  {\n    \"question\": \"who is showing how to decorate nails?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman decorating?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what do the artist give?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"who is demonstrating a nail painting technique?\",\n    \"video_name\": \"video8791\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is asked question son tv?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing at the stage?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl asked?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"question\"\n  },\n  {\n    \"question\": \"when is a girl performing?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is answering questions from a panel of judges?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl on?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is on the voice?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is young girl doing?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl singer on the voice doing?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video8792\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a person preparing with meat in a kitchen?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what is a person preparing a rice with in a kitchen?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man explain prepare?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man how prepare?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a man mix together in a pan?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a man cooks a non veg dish and explain about?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"flavor\"\n  },\n  {\n    \"question\": \"what is a person preparing a rice with meat in?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who mixes onion and meat together in a pan?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man mixing with onions in the kitchen?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is man mixing the meat with onions in?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is prepare the food?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what does a man mix raw lean beef and chopped onions together in pan with a wooden spoon?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"sautee\"\n  },\n  {\n    \"question\": \"what are pan onions mixed into with a wooden spoon in a frying?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a person preparing with minced meat and grated cheese?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"patty\"\n  },\n  {\n    \"question\": \"what are pan onions mixed into ground beef with a wooden spoon in?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"what did a guy mixing the onions and the mince in a frying pan?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is chef john from food wishes a youtube doing?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a cook explains the mixture of onion and lean meat with tomatoes to prepare a burger doing?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a neatly sliced onion in small size doing?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is in the kitchen man doing?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who stirs lean beef and chopped onions in a saute pan?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains the mixture of onion and lean meat with tomatoes to prepare a burger filling?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is preparing a patty with minced meat and grated cheese?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what stirs up onions and ground beef with a spoon?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who demonstrates how he makes sloppy joes in a skillet?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what did a guy mixing the onions and the mince meat in pan?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"who is preparing a rice with meat in a kitchen?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are mixed into ground beef with a wooden spoon in a frying?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"who describes his recipe for making sloppy joe sandwiches?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who stirs a mixture of rice and red beans?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"who is cooking in the kitchen in a frying pan?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing the ingredients with big brown spoon?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who mixes raw lean beef and chopped onions together in a sautee pan with a wooden spoon?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing the meat with onions in the kitchen?\",\n    \"video_name\": \"video8793\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a beautiful young red headed mermaid swim sees a man a blue old woman mermaid is talking to the beautiful young one?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"mermaid\"\n  },\n  {\n    \"question\": \"what does a beautiful young red headed mermaid swim a man plays with?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who talk to another caharacter?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"princes\"\n  },\n  {\n    \"question\": \"who do a princess talk to?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"caharacter\"\n  },\n  {\n    \"question\": \"who is being shown?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"mermaid\"\n  },\n  {\n    \"question\": \"who talks to a purple lady?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"redhead\"\n  },\n  {\n    \"question\": \"who swims around?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"redhead\"\n  },\n  {\n    \"question\": \"who does a beautiful young red headed mermaid swim the mermaid sees a blue old woman mermaid is talking to the beautiful young one?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a cartoon girl and animal jumping on body of male guy girl image still shown doing?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a large grey-and-white dog jumps and runs closer to a man doing?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman in red hair doing?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a beautiful young red headed mermaid swims a man plays with his dog and the mermaid sees him a blue old woman mermaid doing?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is in a bubble while a princess talk to another caharacter?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining the popularity of the famous disney film of the little mermaid?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about box office while clips from the little mermaid play?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the difference between domestic box office and world wide box office takes for the little mermaid?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about the amount of money a movie made?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"what does a person discuss the difference between domestic box office and world takes for the little mermaid?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"who is talking about the famous cartoon show mermaid?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a beautiful young red headed mermaid swim plays with his dog?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about while clips from the little mermaid play?\",\n    \"video_name\": \"video8794\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what is a man on a stage talking to?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"when is a comedian making jokes about anthrax?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a comedian is on stage doing?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a comedian doing?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"addres\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man on a stage doing?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man on stage doing?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who preforms a comedy show?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jokes on stage?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when is a comedian telling a joke?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is talking on stage?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hosting a live show?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does a person telling joke?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a comedian performing?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a man talking?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is giving a speech?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a man hosting?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a man preform?\",\n    \"video_name\": \"video8795\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"pack\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy talks about what he s doing?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"pack\"\n  },\n  {\n    \"question\": \"what is guy with tips on doing?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"pack\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"pack\"\n  },\n  {\n    \"question\": \"who is giving packing advice?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is packing a bag?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"advice\"\n  },\n  {\n    \"question\": \"who is packing his clothes?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man going on?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"trip\"\n  },\n  {\n    \"question\": \"who is about to describe what he is bringing with him?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about what he s packing?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is showing items he has packed?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is istting in front of a lot of clothes talking to a camera?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about how to pack for a trip?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about packing a bag for his trip?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving tips on going on a trip?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives tips how to pack a bag for a long trip?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is going on a trip?\",\n    \"video_name\": \"video8796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men playing in which the main character is running around firing a weapon on a pyramid of yellow blocks?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is shown in the clip?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a male play?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"how many men are playing a video game in which the main character is running around firing a weapon on a pyramid of yellow blocks?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a vidoe game shown in?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who shoots an arrow in a video game?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what plays minecraft?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is people chat while doing?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is shooting arrows?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8797\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people video doing?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what are the lights doing?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"blink\"\n  },\n  {\n    \"question\": \"what is thousands of people doing?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what illuminates?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what are the lights blinking in?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what do a fireworks display in?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what do fireworks go off in?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what are fireworks shot from?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"tower\"\n  },\n  {\n    \"question\": \"what display in a city?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"firework\"\n  },\n  {\n    \"question\": \"when do a fireworks show?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what show at night?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"firework\"\n  },\n  {\n    \"question\": \"what looks beautiful with lights and crackers?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"when do a massive fireworks display?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what are people taking pictures of?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"tower\"\n  },\n  {\n    \"question\": \"what is the lighting work going on?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is going on the building?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"lighting\"\n  },\n  {\n    \"question\": \"what are fireworks being displayed off of?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"where do a fireworks display?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what display with crowd taking pictures?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"firework\"\n  },\n  {\n    \"question\": \"what records a fireworks display that is centered around a tall building?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what display at night?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"firework\"\n  },\n  {\n    \"question\": \"where are the lights blinking?\",\n    \"video_name\": \"video8798\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what recites letters?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is shown teaching the alphabet?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what do anthropomorphic letters dance in?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what do letters sing in?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what do letters drop from?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"ceiling\"\n  },\n  {\n    \"question\": \"what does a kid s show about?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"alphabet\"\n  },\n  {\n    \"question\": \"what sings about what sound letters describing the make?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"alphabet\"\n  },\n  {\n    \"question\": \"what is flying?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"letter\"\n  },\n  {\n    \"question\": \"what are in a cartoon television show cartoon letters doing?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"expres\"\n  },\n  {\n    \"question\": \"what f flies?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"letter\"\n  },\n  {\n    \"question\": \"what are expressing happiness in a cartoon television show?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon letters expressing in a cartoon television show?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"happiness\"\n  },\n  {\n    \"question\": \"what teaches children the sounds letters make?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are different letters sounding out they sound?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"who s show about the alphabet?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what are different animated letters flying through?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what alphabets explaining how it sounds?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are different animated letters doing?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is animated cartoon of doing?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is an animated letter doing?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a cartoon of letters doing?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is video of cartoon alphabets doing?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a animation is shown doing?\",\n    \"video_name\": \"video8799\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who are women staring at other people another man is holding?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who are women staring at other people is holding a baby?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are women staring at other people is fishing?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what are women staring at other people a man is?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"what are three people in?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"mood\"\n  },\n  {\n    \"question\": \"who is a man holding?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a person holding?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a woman staring at?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what pictures from a television show?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many people are in angry mood?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is staring at a man?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding a baby?\",\n    \"video_name\": \"video8800\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are three men having in the living room?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is talking about the channels?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are three men standing in?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"how many guys stand?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who presents guest on his show?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"christian\"\n  },\n  {\n    \"question\": \"what is bunch of guys in tshirt doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there are three man doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three guys stand and the man stands in the middle with black tshirt doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are three athletic men doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the guy in the middle just finished his you tube video and doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"plug\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is three guys stand together while a guy doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in black shirt doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three men doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many persons are taking about the taylor christian?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is a channel mainly of prank videos?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"richkidstv\"\n  },\n  {\n    \"question\": \"how many men are having conversation in the living room?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does the man stands in the middle with black tshirt say?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"bye\"\n  },\n  {\n    \"question\": \"how many men are standing in a room?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is richkidstv a channel mainly of?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"prank\"\n  },\n  {\n    \"question\": \"what are three athletic men standing in talking about different topics?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are one in white one in black and one in a blue nike shirt doing?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"how many athletic men are standing in a group talking about different topics?\",\n    \"video_name\": \"video8801\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who sits at the table with hamburgers and sauce and someone comment on it?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a one lady eating in a train?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"burger\"\n  },\n  {\n    \"question\": \"who is calling someone in a train?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman in a gray shirt sitting at a table in?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who is eating burger in a train?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is having snacks in a restaurant?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person sitting down at eating a burger?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"resturant\"\n  },\n  {\n    \"question\": \"who is a woman in a room sitting with?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"burger\"\n  },\n  {\n    \"question\": \"who ordered food in restaurant?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman at a burger joint reaching towards?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do a lady giving pose to on some where?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman in a grey shirt doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is sitting down at a resturant eating a burger?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did an image of a lady in a restaurant being serve?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"burger\"\n  },\n  {\n    \"question\": \"who pose to the camera on some where?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a woman in a room doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a one lady eating burger in?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a woman in a gray shirt sitting at in a restaurant?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what do a women with black top showing to others sitting on the dinning chair?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a women with black top showing her hand to others doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a lady doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a still picture of a woman in a diner with doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is in restaurant girl ordered food and she started to eat doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is in a train a one lady doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a woman at a burger joint doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"reach\"\n  },\n  {\n    \"question\": \"what is black haired woman doing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are people sitting in?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who is relaxing?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did girl order in restaurant?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is sitting in a restaurant?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a one lady calling in a train?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did girl order food in?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what is a one lady calling someone in?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is black haired woman sitting in?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what is a woman having snacks in?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what does a woman at a restaurant with burgers on the table reach out?\",\n    \"video_name\": \"video8802\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is men sweep a roof while a voice explains about doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is a man sweeps off a roof doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"sweep\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what were they doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"unroll\"\n  },\n  {\n    \"question\": \"who is repairing a roof?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is brushing sand?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sweeps off a roof using a push broom?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man explain installation of?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"who is unrolling something?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about a mat?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains installation of a roof?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sweeping dust off?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a man sweeping off the floor?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"dust\"\n  },\n  {\n    \"question\": \"who is demonstrating how to install the weather watch?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sweeping dust off the floor?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what were men putting?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is a man repairing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is a man brushing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is a man unrolling?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man explaining about?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"who is doing home improvement?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"improvement\"\n  },\n  {\n    \"question\": \"who is talking about how to perform a roofing project?\",\n    \"video_name\": \"video8803\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing an object to other man?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does one man hold up?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what are two men talking about?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what are two men in?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who holds up a small metal?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person presenting something in?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what is person presenting in the classroom?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do a man in a white shirt object in?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is presenting something in the classroom?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man showing to other man?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what is couple of guys in in glass with shirt doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is couple of guys in shirt and tie doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are both in shirt and tie doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what are both in shirt and tie showing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"circuit\"\n  },\n  {\n    \"question\": \"how many men are in the classroom?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking about some thing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does the man in the white shirt and tie stand near the board and show?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what is speaking about the contents of a package?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"vintage\"\n  },\n  {\n    \"question\": \"what does a man in white shirt twist?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what is a movie scene od two person one doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"how many coworkers talk about a packaged integrated circuit?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men explain what an integrated circuit is?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who did a man talking of something about the semi?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"conductor\"\n  },\n  {\n    \"question\": \"who ask s the other person what is integrated circuit?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a white shirt man doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt and glasses doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a vintage video doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two men from the 1950s discuss an integrated circuit while one man holds up a small metal cap with wires doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"protrude\"\n  },\n  {\n    \"question\": \"what is two mn in a room doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a man showing an object to?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men in white shirts doing?\",\n    \"video_name\": \"video8804\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do german soldiers get into?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what are soldiers getting ready for?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who is an officer talking to?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what are two soldiers interacting in?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who talks to another?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"solider\"\n  },\n  {\n    \"question\": \"who is a soldier talking down to?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who is speaking to a superior person in a movie?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"how many soldiers are talking to each other?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many soldiers are interacting in a movie?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking down to another soldier?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who converse with each other?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"who speaks to a soldier outside?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who is talking to a soldier?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"officer\"\n  },\n  {\n    \"question\": \"how many soldiers argue in front of other soldiers?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks to his commanding officer?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what is a soldier doing?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are two soldiers doing?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are soldiers doing?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is soldiers doing?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a soldier talks to his doing?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"command\"\n  },\n  {\n    \"question\": \"what is a soldier doing?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an officer doing?\",\n    \"video_name\": \"video8805\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is shown in a magazine?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do pictures of young women show on?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"page\"\n  },\n  {\n    \"question\": \"who pans through a japanese fashion magazine?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is holding a pen?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is looking at a magazine?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a japanese?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"magazine\"\n  },\n  {\n    \"question\": \"what is someone holding?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what is someone looking at?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"magazine\"\n  },\n  {\n    \"question\": \"what is a woman shown in?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"magazine\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"magazine\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"magazine\"\n  },\n  {\n    \"question\": \"who is showing some pictures from a garments fashion magazine in tokyo?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is being looked at?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"magazine\"\n  },\n  {\n    \"question\": \"what is a video of someone doing?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a catalog of girls doing?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"clothe\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8806\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a lady and a guy doing?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do a man and women dance in?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are a woman and a man dancing in?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what dances together?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is discussed?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a man and woman dancing in?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a short newscast doing?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video of a girl doing?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is couple dancing and woman doing?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is couples doing?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a woman and a man doing?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what did an introduction to an interview of a couple that have a latin base?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"company\"\n  },\n  {\n    \"question\": \"what salsa dance while music plays?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what did a couple salsa while music plays?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the people doing?\",\n    \"video_name\": \"video8807\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who talks back to a cop and handcuffs him to the table?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a white shirt man talking from?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who did police interrogate in jail?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who are talking with telephone?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did police interrogate a person in?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"jail\"\n  },\n  {\n    \"question\": \"what are three man talking with?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what does a man talk back to a cop and handcuffs him to?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who involved slieght of hand magic?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who sits in an interrogation room while wearing handcuffs?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who harassed by the cops in the jail?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"prisoner\"\n  },\n  {\n    \"question\": \"who did man handcuffed to a table with others interrogate?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"prisoner\"\n  },\n  {\n    \"question\": \"what did trailer for movie involve slieght of?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who does a magician talk with and fools?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"agent\"\n  },\n  {\n    \"question\": \"who is meeting his old friend who is in prison?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a prisoner harass by the cops in?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"jail\"\n  },\n  {\n    \"question\": \"who is being interrogated by a police officer?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks with and fools an fbi agent?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"magician\"\n  },\n  {\n    \"question\": \"who is tricked into being chained to a table while the other runs free?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a man with red tie doing?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is trailer for a movie about a group doing?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man sits in an interrogation room while doing?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are three man doing?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is with dark and long hair straightens his arms in front of him and pulls at his cuffs to show another man that he doing?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is police doing?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"interrogate\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what is person in black suit doing?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a white shirt man doing?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man handcuffed to a table with others doing?\",\n    \"video_name\": \"video8808\",\n    \"answer\": \"interrogate\"\n  },\n  {\n    \"question\": \"what is a man with a red bordered shirt having?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"snack\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a really creepy looking guy talk about food in?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a guy with a checkered shirt doing?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man having?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"grind\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a gentlemen with brown hair and a plaid shirt stands in his kitchen doing?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who is making a dish?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a really creepy doing?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is man in colorful shirt making in the kitchen?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is man in colorful shirt making something in?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man wearing an orange and blue button down shirt holding a blender that is half full of?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is a man standing in the kitchen taking a jar of?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"who is making a dish using tortillas chips and sprouted sweet potato?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who prepares to add tortilla chips to his tortilla soup recipe?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy with a checkered shirt holding a bucket of?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what does a man in a red and blue plaid shirt discuss adding tortillas to?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what does a really creepy looking guy talk about in his kitchen?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a man prepare to add to his tortilla soup recipe?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"tortilla\"\n  },\n  {\n    \"question\": \"who is having grind mixer?\",\n    \"video_name\": \"video8809\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was the female artist playing?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"instrument\"\n  },\n  {\n    \"question\": \"when is a young girl with a guitar performing?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is playing the guitar on stage?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings for a televised competition?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing on a talent show?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing on the voice?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings on a stage?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl playing on stage?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when does a young woman sing?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sings on a talent show?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who was playing an instrument?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who plays guitar?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young woman play?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl playing?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a woman play?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when is a girl playing the guitar?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a little girl performing on?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what was the female artist doing?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young girl with a guitar doing?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video8810\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is talking with other man?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a kid with a thing sitting inside?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a young boy watch with a film projector?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is a boy boxing with in a room?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a boy watch movies of who passed away?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"who does a young boy fight a man and talks to?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a boy boxing with a man in?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is person sitting in?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a kid with a thing doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is sitting in his room?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is person talking with?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a small boy fighting with?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is fighting with dog?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a commercial features a young boy doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is small kid doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who is fighting with a man in a living room?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a commercial feature a young boy watching on a projector?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"footage\"\n  },\n  {\n    \"question\": \"what did kid watching old video throw projecter then other clips form?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what does a commercial feature a young boy watching old footage on?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"projector\"\n  },\n  {\n    \"question\": \"who does a commercial feature watching old footage on a projector?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who watches an old movie with a film projector?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are a movie trailer scene a mother and her kid doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a female actor doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is boy doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a young boy and his mom doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"reminisce\"\n  },\n  {\n    \"question\": \"who is watching?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is a boy fighting with in a living room?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a movie scene boy doing?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is boxing with a man in a room?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who fights a man and talks to a lady?\",\n    \"video_name\": \"video8811\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a music video showing people and prophets in?\",\n    \"video_name\": \"video8812\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what is several scenes doing?\",\n    \"video_name\": \"video8812\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what plays to religious pictures?\",\n    \"video_name\": \"video8812\",\n    \"answer\": \"hymn\"\n  },\n  {\n    \"question\": \"what that depicts religion?\",\n    \"video_name\": \"video8812\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what addresses a social problem?\",\n    \"video_name\": \"video8812\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a religious song doing?\",\n    \"video_name\": \"video8812\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a video that depict?\",\n    \"video_name\": \"video8812\",\n    \"answer\": \"religion\"\n  },\n  {\n    \"question\": \"what does a song address?\",\n    \"video_name\": \"video8812\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"what is a portrait of people doing?\",\n    \"video_name\": \"video8812\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video8812\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a collage of people of different ethnicities doing?\",\n    \"video_name\": \"video8812\",\n    \"answer\": \"pray\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the interviewer doing?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is miley cyrus doing?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is jimmy fallon doing?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a late night talk show where the male doing?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"who is being interviewed during a late night talk show?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is interviewed?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"miley\"\n  },\n  {\n    \"question\": \"what is a talk show host doing?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"when do miley cyrus on a talk show late?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do miley cyrus on the tonight show with?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"fallon\"\n  },\n  {\n    \"question\": \"who is talking to jimmy fallon on his talk show?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"miley\"\n  },\n  {\n    \"question\": \"who is interviewed on a tv talk show?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does interview on jimmy kimmel?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"miley\"\n  },\n  {\n    \"question\": \"what is a man and women doing?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a talk show host interviewing?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"guest\"\n  },\n  {\n    \"question\": \"what fallon speaking with miley cyrus?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"jimmy\"\n  },\n  {\n    \"question\": \"who do jimmy fallon speaking with?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"miley\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video8813\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is a judge judging?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"what do the judges make?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"decision\"\n  },\n  {\n    \"question\": \"who is speechless?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who watch excitedly?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is judging a performer?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"when do judges watch a woman sing?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who do judges watch sing on stage?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is judged on a tv show?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"who do judges from a show turn around to face?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"what do judges on the television show being impressed by the person singing?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who performs a song for the show the voice?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who sings on stage in a tv show?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what shows judges reacting with open mouths to person singing as family members watch excitedly?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is singing a song and judges listening scene?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a judge doing?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is scene shows judges doing?\",\n    \"video_name\": \"video8814\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"who do two young boys wearing fireman hats talk with?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"who are a man and two boys going to?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"jim\"\n  },\n  {\n    \"question\": \"who is showing 2 boys around a fire station mainly in the workout room?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who showed the two children the workout facility?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many small boys are walking behind a men to see what is there is next room?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does two little kids wearing red colored helmets follow went into the gym?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks children through a building including the gym?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does two little kids wearing red colored helmets follow a man went into?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two small boys doing?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is two little kids doing?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two young boys doing?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man and two children doing?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a fireman in a hoodie doing?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two boy doing?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man walks children through a building doing?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what are some people in fire hats doing?\",\n    \"video_name\": \"video8815\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is catching the ball?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is animated cartoon character catching?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do minecraft characters try to catch?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who does a woman talk about?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does minecraft zombie try to catch?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who does woman coach practive drills with?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what are a group of minecraft characters playing?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what does a blocky cartoon character play with a human?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what fires footballs at minecraft baddies?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is the coach teaching to catch football?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"who stands on the basketball court?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a machine fire footballs at?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who tries to catch football?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who try to catch a ball?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who does practive drills with minecraft characters?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is teaching zombie and spider to catch football?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"who talks about minecraft vr?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"launch\"\n  },\n  {\n    \"question\": \"what is a video of a woman doing?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is animated cartoon character doing?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is the coach doing?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what are a group of minecraft characters doing?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8816\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what shows off american football video game?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who celebrate in a video game?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who get ready to make a play?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is talking about a video game?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who patted the player on the helmet?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"who is a man talking about dogg while clips from a football video game are shown?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"snoop\"\n  },\n  {\n    \"question\": \"who is talking about snoop dogg while clips from a football video game are shown?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sports man doing?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are 3d rugby players doing?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who are moving around?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8817\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"reallity\"\n  },\n  {\n    \"question\": \"what are children singing?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when are several young girls singing?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when a lady singers performing?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who singers performing on the stage?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are singing a song on stage?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are three woman s singing on stage?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"when are three woman s singing a song?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are a group of girls singing?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many woman s are singing a song on stage?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when does a group of girls sing while a man in a chair listens?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a lady singers doing?\",\n    \"video_name\": \"video8818\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"how many cars are ready to street race?\",\n    \"video_name\": \"video8819\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does display of ford escort mk1?\",\n    \"video_name\": \"video8819\",\n    \"answer\": \"brain\"\n  },\n  {\n    \"question\": \"who reviews a ford escort?\",\n    \"video_name\": \"video8819\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many different cars are shown?\",\n    \"video_name\": \"video8819\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does someone review?\",\n    \"video_name\": \"video8819\",\n    \"answer\": \"escort\"\n  },\n  {\n    \"question\": \"what are two cars ready to?\",\n    \"video_name\": \"video8819\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what was blue?\",\n    \"video_name\": \"video8819\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is shown showing different cars?\",\n    \"video_name\": \"video8819\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what dodge daytona 1970 toretto then picture of ford escort mk1 brian?\",\n    \"video_name\": \"video8819\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a video is shown doing?\",\n    \"video_name\": \"video8819\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a montage of photos doing?\",\n    \"video_name\": \"video8819\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is riding a motor bike uphill?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what tries to start a bike?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt lifting?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what do a person in blue color dress wearing cloth ryding falling down inside forest and other man starting bike person beside standing displaying on screen?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who comes up in the hill on a orange motor bike?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man crashing a orange motorcycle and a man rev on a yellow motorcycle?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is fell down when riding in a bike?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what appears from the cliff?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what comes up a hill flipping the rider over the handle bars while a second motocross bike s engine dies before even moving?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"motocros\"\n  },\n  {\n    \"question\": \"who does a trail motorbike crash sits on a yellow motorbike and revs its engine?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person rides a motorcycle and fall off on?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what rider going up a rock then falling then another starting a bike and then stalling out?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what a dirt bike rider going up then falling then another starting a bike and then stalling out?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what crashes another man sits on a yellow motorbike and revs its engine?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what does another one try to start?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what do a guy drive ad then falling off it?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who falls down?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who falls?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what falls down?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who driving his mountain bike ad then falling off it?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a person in blue color dress doing?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is one motocross bike comes up a hill doing?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what does a bike appear from?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a person riding uphill?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"motor\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man in blue t-shirt doing?\",\n    \"video_name\": \"video8820\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are three actors having on a movie set?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are three people discussing on a movie set?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"energy\"\n  },\n  {\n    \"question\": \"what does a man discuss on the set of his movie?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"atmosphere\"\n  },\n  {\n    \"question\": \"what are two men and a women sitting on?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what do two men and a women discuss?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what does a man describe on a set to another man and a woman?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"atmosphere\"\n  },\n  {\n    \"question\": \"what are three people engaged in while sitting in chairs?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"who describes the atmosphere on a set to another man and a woman?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many actors are having a conversation on a movie set?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many people are engaged in a discussion while sitting in chairs?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is talking to another man and woman who are sitting on chairs?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the atmosphere on the set of his movie?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men and a woman doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is three people are engaged in a discussion while doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is three people doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a black suit jack that looks like patrick dimpsey from the side doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men and a women doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a woman and two men doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many people are discussing the energy on a movie set?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a conversation between three persons like a news debate?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is 2 men and one woman in the middle sitting in high chairs while one of the men doing?\",\n    \"video_name\": \"video8821\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men are having a conversation about a shooting?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is newscast doing?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news reader doing?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is newscasters speak about a school doing?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"how many men are discussing a tragedy on a tv show?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do newscasters speak about a school shooting on the news program?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"info\"\n  },\n  {\n    \"question\": \"what are two men discussing?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do two men discuss?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what do news report about?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"tragedy\"\n  },\n  {\n    \"question\": \"who is reporting the news?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what report about school tragedy?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do newscasters speak about shooting on the news program info wars?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"how many men discuss a shooting?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men discussing on a tv show?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"tragedy\"\n  },\n  {\n    \"question\": \"what are two men having a conversation about?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what is a man reporting the news about?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what discusses responses to a shooting?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"who speaks to a man on camera?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what does a guest on infowars discuss shooting?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"mas\"\n  },\n  {\n    \"question\": \"who is reporting the news about a shooting?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are discussing the news?\",\n    \"video_name\": \"video8822\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men wrestle in an amatuer event?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are two men wrestling on?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"how many wresters go at an amatuer event in the ring?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men wrestle at?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"how many men wrestle at a match?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are wrestling on a mat?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers grapple on a mat?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two wresters go at an amatuer event in?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what do two wrestlers grapple on?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"how many people are wrestling?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are wrestling?\",\n    \"video_name\": \"video8823\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking about something to a woman?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is phil talking on?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what si going on?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"reallity\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is talks to a woman who doing?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"deal\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is phil doing?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who makes excuses on the dr phil show?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking on his show?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"who confronts the woman?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a man holding a piece of?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who talks to two people on his show?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"who talks to a woman on his show?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"who is holding a piece of paper?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks with a man and woman?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"who does the host confront?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do phil tv show?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"extract\"\n  },\n  {\n    \"question\": \"who is talking to people?\",\n    \"video_name\": \"video8824\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"observe\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is an asian woman doing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is wearing a leather jacket?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a women wear while music plays?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"leather\"\n  },\n  {\n    \"question\": \"who is looking at a leather jacket?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing off a leather jacket?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who admires a leather jacket?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who wears a leather jacket?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who holds up a leather jacket?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who wears a jacket?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who shows off a leather jacket?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman show off?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"leather\"\n  },\n  {\n    \"question\": \"what does woman admire?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"leather\"\n  },\n  {\n    \"question\": \"who is holding up a jacket?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women looking at?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"jacket\"\n  },\n  {\n    \"question\": \"what does a lady wear?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"leather\"\n  },\n  {\n    \"question\": \"what does a woman hold up?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"leather\"\n  },\n  {\n    \"question\": \"what does a woman wear?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"jacket\"\n  },\n  {\n    \"question\": \"what is a woman showing off?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"leather\"\n  },\n  {\n    \"question\": \"what is a person wearing?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"leather\"\n  },\n  {\n    \"question\": \"what is a woman holding up?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"jacket\"\n  },\n  {\n    \"question\": \"what does woman hold?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"jacket\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8825\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a new television show doing?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a woman talks about a movie doing?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"who talks about a movie starring debra messing?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is a celebrity giving?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"how many people are talking?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is giving an interview?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who talks about a film?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about celebrity?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about television shows?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a man and a woman talk about?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who reviews a new drama on a chat show?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a girl talking about?\",\n    \"video_name\": \"video8826\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"what is a girl holding a can in?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is talking about different words on a television show?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who explains the difference between fog and frog?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a cartoon girl spelling in a forgien language?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"word\"\n  },\n  {\n    \"question\": \"who is holding a can in a cartoon?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks about the words fog and frog?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is spelling the word fog in a forgien language?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who explains how to spell something?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon of a woman doing?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who wore a very sporty cap?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is wearing a red bag?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is an animated girl talking about?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a girl wearing?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a cartoon girl doing?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"spell\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is an animated girl doing?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cartoon girl doing?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is on a television show a cartoon character doing?\",\n    \"video_name\": \"video8827\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men that are into movies doing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man and another person doing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some men on a show doing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is both doing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two young men doing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a couple of men doing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two guys in white dress doing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two boys in white dresses doing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what do two guys in white dress talking about?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"hollywood\"\n  },\n  {\n    \"question\": \"who speak about will smith and other actors and their respective characters?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two people discussing on the screen?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what are two men that are into movies holding together?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are two people discussing a topic on?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a man and another person talking both are wearing?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"how many men are talking on the tv news?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are discussing the talents of actor will smith that made generations of people from all demographics and background love him?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who do two young men wearing shirts talk about?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men hosting a show where they go through a movie?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"list\"\n  },\n  {\n    \"question\": \"how many people are discussing a topic on the screen?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are two men wearing white describing s performance in a movie?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"how many men are hosting a show where they go through a movie top 10 list?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men explain how will smith plays in a movie?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking about will smith in movie reviews?\",\n    \"video_name\": \"video8828\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man makes a young man cry by doing?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is older guy doing?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is two men talk about doing?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"steal\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many men converse in a movie clip?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men talk about stealing land and the bible?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who cries while a man talks to him?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking to an upset young man?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes a young man cry by talking to him?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who confronts another?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes him cry?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to a boy?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man talk to?\",\n    \"video_name\": \"video8829\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a man in suit doing?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man on the stage doing?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man in a suit doing?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone in a blue suit doing?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what does a guy talk to about stem education?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is not knowing stem education about it before?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks on the stage?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a lecture?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hosting a show?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man not knowing about it before?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"when does the man talk?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is someone hosting?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man explaining?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"who lecture here?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about stem education?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man give a speech about?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"what does a man talk about stem in front of an audience?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"who talks to an audience about stem education?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what do a male giving a speech about an important topic do?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is talking about something in a stage?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a male science teacher give a presentation about stem education to?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what does a male science teacher give about stem education to the crowd?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what does a male science teacher give a presentation about to the crowd?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"who talks about stem education in front of an audience?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a presentation on stage?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone in a blue suit speaking at?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"conference\"\n  },\n  {\n    \"question\": \"what does a man give about stem education?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"when is a man in suit talking?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a guy talk to an audience about?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"who gives a speech about stem education?\",\n    \"video_name\": \"video8830\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the people wandering in the supermarket to get?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are the people wandering in to get something?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"supermarket\"\n  },\n  {\n    \"question\": \"what is about showing the electronic shop?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are more peoples going in?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who promotes computers for cheap?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people walking through?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"what does many people walk through as a man promotes computers for cheap?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"what s a speaker discusses the drawbacks of society?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who does obsession with technology s discusses the drawbacks of society?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what is very crowded with hundreds of potential shoppers?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"shopping\"\n  },\n  {\n    \"question\": \"what shows a shop of multimedia devices?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"shopping\"\n  },\n  {\n    \"question\": \"what does obsession with technology s a speaker discusses the drawbacks of?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"society\"\n  },\n  {\n    \"question\": \"what does a shopping mall show a shop of?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"multimedium\"\n  },\n  {\n    \"question\": \"what are a bunch of people walking around in?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"what is a sped up view of several people doing?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are the people doing?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"wander\"\n  },\n  {\n    \"question\": \"what are a bunch of people doing?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is this video is about doing?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is many persons doing?\",\n    \"video_name\": \"video8831\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is texting?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is seeing very happy?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a girl message?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what does a movie trailer show?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what a girl taps?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what did a cut from a movie?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who shows some movie scenes?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who taps the wall?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young girl reveal below a bed sheet?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"cast\"\n  },\n  {\n    \"question\": \"who knocks on a wall and texts a friend?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did a cut scene from?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is texting to master?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who taps on the wall to another person?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl laying in bed then doing?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"message\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is girl texting and doing?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8832\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who sings at a wedding?\",\n    \"video_name\": \"video8833\",\n    \"answer\": \"groom\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8833\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a couple singing and doing?\",\n    \"video_name\": \"video8833\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a newly wed couple doing?\",\n    \"video_name\": \"video8833\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is shown with music and dancing?\",\n    \"video_name\": \"video8833\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"what does the groom sing at?\",\n    \"video_name\": \"video8833\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"what does a singer perform at?\",\n    \"video_name\": \"video8833\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"what are people at?\",\n    \"video_name\": \"video8833\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8833\",\n    \"answer\": \"marriage\"\n  },\n  {\n    \"question\": \"who performs at a wedding?\",\n    \"video_name\": \"video8833\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a red apron doing?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt with a red apron doing?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man has tasted his dish and now he doing?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a home cook doing?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what is there is a man in the kitchen doing?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man in a red apron doing?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what has a man tasted?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who has tasted his dish?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man stand in?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a man wear?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"apron\"\n  },\n  {\n    \"question\": \"who stands in the kitchen?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating food?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wearing a white shirt and a red apron standing in explaining one ingredient he mentions is cilantro?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man wearing a white shirt and a red apron standing in explaining how to cook a recipe?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a chef with red apron taste in the white bowl?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a man wearing a red apron taste then prepares to add the final ingredient?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a man wearing a red apron taste a dish then prepares to add?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"ingredient\"\n  },\n  {\n    \"question\": \"what does a man in red apron taste from a bowl with spoon in a homes kitchen?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who does a man in the kitchen state he will return later to add to the dish is cooking in the kitchen?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating explain about something that s not chewy and then decided to add cilantro?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in the kitchen state he will return later to add to the dish a man is cooking in?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a man in the kitchen state he will return later to add to a man is cooking in the kitchen?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who wears a red apron?\",\n    \"video_name\": \"video8834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lades out a bowl of soup from a cooking pot on top of a stove?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what bowls?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is talking about a tasty malaysian soup that contains lotus root?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is hands doing?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman in a white apron doing?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a purple shirt doing?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do images of the soup appear on?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is in a bowl that comes with a matching spoon?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"who adds several items to a steaming bowl of soup?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who serves a bowl of soup woth stuff in it?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a woman talks about lotus root while images of the soup appear on screen?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is in a bowl with a matching spoon?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is holding a white and blue bowl in the kitchen?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing a bowl of already made soup?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who makes a bowl of soup?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman with a purple shirt showing?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman make a bowl of?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is someone holding a white and blue bowl in?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is shown in a white and blue bowel?\",\n    \"video_name\": \"video8835\",\n    \"answer\": \"bowel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is an african woman doing?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is an indian woman doing?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is an old land doing?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is line of people doing?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is cooking food?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a man set up on a table?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is setting a table?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cooks some food?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man set up food on?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sets up food on a table?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman preparing something over?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a woman preparing over a fire?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman cooking on a street side?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a woman grill while people wait outside?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is preparing something over a fire?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man setting while others stand outside a building?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is cooking something on a street side?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who grills food while people wait outside?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is setting a table while others stand outside a building?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking in the farm?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking outdoors?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people serving?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who outdoors?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do others stand outside?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is a woman cooking in?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"farm\"\n  },\n  {\n    \"question\": \"what is a man setting?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what a woman cooks?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is an old land cooking?\",\n    \"video_name\": \"video8836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a girl taking with it?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"who takes pictures of him?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is taking a selfie with it?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman sit on with puppy?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who sits on couch with puppy?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who snuggles with the puppy on the couch?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who petting a dog that is laying on a couch?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who nuzzles?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is sexy brunette doing?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a gril in a black hoodie got a puppy and it doing?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl in a black hoodie sweat shirt doing?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8837\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is typing on a laptop?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are children using in a school?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what are children using technology in?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who discusses technology and kids?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a smart phone?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking a girl is playing with?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are the students seriously searching from the lap top and mobile phone?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking is about being a teacher?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about students having a participatory culture?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking while video of a classroom is shown?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an asian man discuss?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what is a man typing on?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what are young students using?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the students are seriously doing?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is there are students in a school doing?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are young students doing?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what are a bunch of women doing?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a girl using?\",\n    \"video_name\": \"video8838\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are an anime s doing?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the animated characters doing?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is spongebob squarepants doing?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is spongebob doing?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is sponge bob show doing?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video of spongebob squarepants doing?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is screaming?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a video of spongebob squarepants preforming?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are characters being shown with on a cartoon television show?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"who recalls memories of mr crab?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who is dancing with another cartoon character?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does video from spongebob squarepants?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what does spongebob recall memories of?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"who will spongebob squarepants dancing to i always love?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what squarepants cartoon?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"sponge\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video8839\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what sails on the sea?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what sails through the night towards a lighthouse?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what floats in the sea to the tune of twinkle twinkle little star?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"when do a sailing vessel sails towards a lighthouse?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what did an animation for the song twinkle?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is showing a red ship sailing?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is some animated boat floating in?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is floating in a water?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is the rhymes for children?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is a boat going through while a girl sings a song?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what a ship sails on?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what does a girl sing?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is twinkle star doing?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is some animated boat doing?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is a computer animation doing?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what floats of?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is going through the water while a girl sings a song?\",\n    \"video_name\": \"video8840\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does a scary character throw him in?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who throws him in the box?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who throws scorpion into a furnace?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"krueger\"\n  },\n  {\n    \"question\": \"what kruger throwing scorpion into a furnace?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"freddy\"\n  },\n  {\n    \"question\": \"who is playing a computer online game?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who throws him into the fire?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who finishes an opponent?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"freddy\"\n  },\n  {\n    \"question\": \"who does freddy finish?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what kruger stabs and burns another man?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"freddy\"\n  },\n  {\n    \"question\": \"who does freddy fight?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what kruger in a video game?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"freddy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game of freddy doing?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what is freddy kruger doing?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"who do freddy kruger throwing into a furnace?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"scorpion\"\n  },\n  {\n    \"question\": \"what does a man throw him into?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who kills a man?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do freddy kruger throwing scorpion into?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"furnace\"\n  },\n  {\n    \"question\": \"what does freddy krueger throw scorpion into?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"furnace\"\n  },\n  {\n    \"question\": \"what is video of guy doing?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"who does a man kill?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does freddy kruger throw an opponent into?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"incinerator\"\n  },\n  {\n    \"question\": \"who does freddy kruger throw into a incinerator?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"who opens a fiery box grabs another scary character?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who kills scorpion in a game of mortal kombat?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"krueger\"\n  },\n  {\n    \"question\": \"who fights an opponent?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"freddy\"\n  },\n  {\n    \"question\": \"who throws an opponent into a incinerator?\",\n    \"video_name\": \"video8841\",\n    \"answer\": \"kruger\"\n  },\n  {\n    \"question\": \"who is talking about a puddle of blood in a video game?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is hunting for clues after finding blood?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are solving a mystery in a video game?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who narrates while playing grand theft auto 5 online?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are characters doing?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"hunt\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a gamer narrates while doing?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who walks around?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who walks through a hedge maze?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is done with commentary?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"gameplay\"\n  },\n  {\n    \"question\": \"what do two characters in a game find a pool of?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"blood\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men solving in a video game?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"mystery\"\n  },\n  {\n    \"question\": \"what does a video game of two thugs with bloody weapons make through a hedge maze?\",\n    \"video_name\": \"video8842\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what is a lonely girls tapping on?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is tapping on something?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is knocking on the wall?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a person knock on?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a girl knocking on?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who knocks on a board?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a girl sitting on?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who is sitting on a couch?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a woman sitting on a sofa knock on?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl looks at a doing?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a lonely girls doing?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young girl looks at doing?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is asian girl close ups and doing?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what do a woman holding a mobile phone knock on?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is sitting down?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does someone rap at?\",\n    \"video_name\": \"video8843\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is an older woman doing?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who teaches a little girl some dance steps?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does an older black woman teach how to dance?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what are two women in yellow shirts dancing in?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what are a small and big girl doing?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do a woman and a young girl give?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do a women and a small child practice?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"routine\"\n  },\n  {\n    \"question\": \"what do a girl in yellow dress color cloth standing waving dancing with small kid beside dancing displaying on screen?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is teaching a little girl dance moves?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman in orange boots dancing with?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is teaching a young girl dance moves?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what are two women in yellow shirts doing?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl in yellow dress color cloth doing?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a yellow dress color cloth girl doing?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a woman and a little girl both doing?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman in orange boots doing?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what dress color cloth girl practicing dance dancing on floor with small kid wearing yellow dress displaying on screen?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"who do a yellow dress practicing dance dancing on floor with small kid wearing yellow dress displaying on screen?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what are black mom and her daughter doing?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who gives instructions on a dance with a small girl following along?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a yellow dress color cloth girl practicing dance dancing on with small kid wearing yellow dress displaying on screen?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what do a yellow dress color cloth girl practicing on floor with small kid wearing yellow dress displaying on screen?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"dancing\"\n  },\n  {\n    \"question\": \"who is doing dance instructions with a small child?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is walking a young girl through a dance routine?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a yellow dress color cloth girl practicing dance dancing on floor with small kid wearing displaying on screen?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what do a girl in yellow dress standing waving hand dancing with small kid beside dancing displaying on screen?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who is an older woman walking through a dance routine?\",\n    \"video_name\": \"video8844\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many people are dancing together in a room?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a group of people dancing to the song smooth criminal by michael jackson after?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what did kids practicing than performing a choreograph?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is dancing to a michael jackson song?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"how many people are performing on stage?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are men wearing red hoodies and red hats as well as gray hoodies as pants dancing to mario in a hallway?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are men wearing red hoodies and red hats as well as gray hoodies as pants dancing to mario music in?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who is a group of people dancing to the song smooth criminal by after practice?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"jackson\"\n  },\n  {\n    \"question\": \"what are a group of people ding to mario and micheal jackson music?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"skit\"\n  },\n  {\n    \"question\": \"how many people dance to a super mario remix?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls does a musical video that involve dancing to video game music?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many persons are dancing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two people dancing together in?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a dance team doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are a bunch of women doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a musical video that involves two girls doing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"when are two people performing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8845\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a old man doing?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a guy talks about problems encountered by doing?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"who talks about a female swimmer?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is teaching swimmers how to swim?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains about swimmming?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"master\"\n  },\n  {\n    \"question\": \"what is a person swimming in while an old man talks?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who is swimming in swimming pool while an old man talks?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about swimming mistakes?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is swimming in a pool?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what does the woman swim in?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is a woman swimming in?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who is narrating?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who swims in the pool?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is swimming?\",\n    \"video_name\": \"video8846\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are soem women doing?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is its a women doing?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is girls doing?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a blonde woman in an angel costume doing?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"when is a woman singing cheers?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"weekend\"\n  },\n  {\n    \"question\": \"how many women are singing in public?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is singing cheers to the weekend?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women sing in times square?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who dance on the street?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"where does a woman dance around?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what do two woman dance on?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who dances around in the city?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman dance around in?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who sing?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8847\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are highlights from various football games doing?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are rugby players doing?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a football game shown with playing?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do a sports montage with loud music?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who throws a strange touchdown?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"quarterback\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is football players doing?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a compilation of football touchdowns from?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"nfl\"\n  },\n  {\n    \"question\": \"what is a vine shows highlights to doing?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what made a touchdown?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"what are short clips of football games shown on?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what shows highlights to sporting events?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what do a sports montage video with?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who are being shown on tv?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does a quarterback throw?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"touchdown\"\n  },\n  {\n    \"question\": \"what does a football player launch?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is shown with rap music playing?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what did the receiver catch?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are rugby players playing in?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what caught the ball?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"receiver\"\n  },\n  {\n    \"question\": \"what did somebody make?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"touchdown\"\n  },\n  {\n    \"question\": \"who are playing in the ground?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"who launches the ball?\",\n    \"video_name\": \"video8848\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is photographed?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is followed?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a star get out of?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who gets out of his sports car?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"cristiano\"\n  },\n  {\n    \"question\": \"who gets out of his car?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what gets out of a car?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who is getting out of a car?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets out of his black sports car?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking out of his exotic car?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks stuck up out of his sports car?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking in the street with reporters?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is being followed by reporters?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person walking in with reporters?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who shows up to a school campus?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8849\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does person commentate on?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what teaser in scary way?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"who commentating on a movie?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks over scary scenes?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is transforming into a werewolf or something?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a movie trailer fill with?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"suspense\"\n  },\n  {\n    \"question\": \"who filled with suspense?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what do a film teaser in?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"who is raising his hands?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is looking around?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"transform\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8850\",\n    \"answer\": \"raise\"\n  },\n  {\n    \"question\": \"who is a scene in the movie of the rajinikanth and the hero taking with?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"vilon\"\n  },\n  {\n    \"question\": \"what s raining?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what are several men walking towards with umbrellas?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who rajinikanth in a tamil movie scene?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"tamil\"\n  },\n  {\n    \"question\": \"what is raining men underneath umbrellas on a rainy night are carrying umbrellas while it is pouring down raining?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"smock\"\n  },\n  {\n    \"question\": \"what does the people walk in with the black umbrella?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is pouring down raining?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"smock\"\n  },\n  {\n    \"question\": \"what are more persons wet on?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what walks towards two?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who mamuti?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"tamil\"\n  },\n  {\n    \"question\": \"what did a few people walk in the rain holding umbrellas to meet?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a few people walk in holding umbrellas to meet someone?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a few people walked in the rain doing?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are two me doing?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is men in a white smock doing?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of indian guys doing?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is more persons are wet on the rain and doing?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are it is a stormy night and several men doing?\",\n    \"video_name\": \"video8851\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is making a paper craft?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding a white paper?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do paper plane folding tutorial?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does somebody fold a piece of?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what folds a piece of paper?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"what work in a piece of paper?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a person at the table?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding origami?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person fold paper to?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a person folding paper at?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what tutorial video clip?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds paper to relaxing music?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is showing how to fold paper?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person folds paper to doing?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is folding a white sheet of paper?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person folding a white sheet of?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding paper at the table?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a young man folding a piece of?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what explain how to fold a paper plane?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person fold to relaxing music?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is paper plane doing?\",\n    \"video_name\": \"video8852\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is the hands and cooktop of a woman doing?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman listing and doing?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"combine\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a girl and a bowl doing?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is ingredients are added to a metal doing?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what does the hands and cooktop of a woman preparing what appear to be?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a woman combining ingredients for a dish in a pan on?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what does a woman put into a pan to cook?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"ginger\"\n  },\n  {\n    \"question\": \"what do someone try to cook to add chilly and spice in the pan?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who gives some cooking tips?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a woman listing pan on?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what does a woman give?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is put?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"dhal\"\n  },\n  {\n    \"question\": \"what is the tomato put into along with red chilli butter and pepper?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"dhal\"\n  },\n  {\n    \"question\": \"who try to cook to add potato red chilly and spice in the pan?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who pan on a stove?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"listing\"\n  },\n  {\n    \"question\": \"what does a woman put potatoes and spices into a pot on?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who adds potatoes to a silver pan on a hot burning stove?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who puts potatoes and spices into a pot on the stove?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who adds ingredients to a metal bowl on the stove?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who adds several spices to a dish on the stove?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a chef add potatoes to pan on a hot burning stove?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who adds ingredients to a meal in a metal pot on the stove?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are ingredients added to a metal mixing bowl atop?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"what is put into some dhal along with red chilli butter and pepper?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"who puts and ginger into a pan to cook?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a woman pouring ingredients into a pan in to make food?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what do a woman pouring ingredients into a pan in order to make?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman put potatoes and spices into on the stove?\",\n    \"video_name\": \"video8853\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a tshirt man talking from?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what did man on computer scroll through on monitor in front of him?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what did man on computer scroll through program on in front of him?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"who is sitting in his room?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man sitting in?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is talking from a room?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"tshirt\"\n  },\n  {\n    \"question\": \"who is talking about his new computer program?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a tshirt man doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young man in a tshirt discusses how to overclock your processor while doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in a gray shirt doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a boy in black color dress doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man on computer doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is guy in grey tshirt doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a screen on a computer doing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what s a man is using a computer?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"menu\"\n  },\n  {\n    \"question\": \"what does dropdown menu s a man is using?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what did guy in gray tshirt showing on the screen?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"who is explaining how to add space to a chip?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting before a gray computer screen explaining its contents?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tshirt showing information on the screen?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"what did guy in gray tshirt showing information on?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is doing some search on the computer?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a screen on a computer showing?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"mation\"\n  },\n  {\n    \"question\": \"who does dropdown menu s is using a computer?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who scrolling through program on monitor in front of him?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who tshirt talking in front of camera?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"gray\"\n  },\n  {\n    \"question\": \"who describes how to improve the performance of an asus laptop?\",\n    \"video_name\": \"video8854\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what reports a man facing federal weapons charges?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do the people hold?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"vigil\"\n  },\n  {\n    \"question\": \"what do people hold?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"candlelight\"\n  },\n  {\n    \"question\": \"what do a news anchor discussing?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what does woman narrate?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what anchor discussing a story?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who narrates a news story?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are being interviewed?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when does video showing people holding candles outdoors?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the news reports a man doing?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is reporters doing?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"support\"\n  },\n  {\n    \"question\": \"what is a news report of a woman doing?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"defend\"\n  },\n  {\n    \"question\": \"what is a news reporter talks about people doing?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"gather\"\n  },\n  {\n    \"question\": \"when are a bunch of people gathered outside to support?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"doomsday\"\n  },\n  {\n    \"question\": \"what is a crowd doing?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video8855\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are basketball player doing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is sportsman doing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the players doing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two basket ball team doing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who runs back and forth?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who are basketball player playing?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what team trying to goal?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who are playing basketball?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who makes a dunk?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a basketball player make?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"what is a basketball game going on?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what do men play in front of crowds of peope?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who dunks the ball?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are the players playing in the stadium?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who misses a shot in basketball?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what are the players playing football in?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"how many men are working out?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a basketball player dunk?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is going on the television?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are some guys playing in a basket ball court?\",\n    \"video_name\": \"video8856\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who plays an acoustic guitar?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays guitar?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing for the camera?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing his guitar for?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a bald man in a black t-shirt doing?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man playing guitar in?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing in a room?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing his guitar?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing on a guitar?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man playing in a dark room?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing guitar in a room?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing his guitar for the camera?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a song on a guitar?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing acoustic guitar in a dark room?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing a song on?\",\n    \"video_name\": \"video8857\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are girls giving about food?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two blonde women doing?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two ladies doing?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is two woman doing?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are girls giving interview about?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two women reviewing?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are two women talking about?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"wine\"\n  },\n  {\n    \"question\": \"how many blond women talk about wineries and food?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are talking in front of a camera?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women talk about drinking wine?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two girls speaking about?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many women talk about eating?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talk about a winery and food trucks?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do girls talk about?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"malibu\"\n  },\n  {\n    \"question\": \"how many women are reviewing some food?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are talking about wine?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are speaking about food?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talk about wineries and food?\",\n    \"video_name\": \"video8858\",\n    \"answer\": \"blond\"\n  },\n  {\n    \"question\": \"what is a man performs a dunk while the doing?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"defend\"\n  },\n  {\n    \"question\": \"what is a player doing?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are boys doing?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is footage of guy doing?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who performs a dunk while the defending player falls to the ground?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a basketball player dunk?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do men play basketball on?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"who falls to the ground?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"defending\"\n  },\n  {\n    \"question\": \"what do men play on a court?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does the defending player fall to?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a man dunk?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are boys playing?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is about a basket ball competition?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"footage\"\n  },\n  {\n    \"question\": \"who dunks a basketball?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what dunking basketball?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"footage\"\n  },\n  {\n    \"question\": \"who manages to score?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is making a slam dunk in basketball?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting the basket ball into the basket?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what does a man perform while the defending player falls to the ground?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"what do a replay of a good basketball play to?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man making a slam dunk in?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a player putting into the basket?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who are making dunks over music?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a player putting the basket ball into?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who dunks the ball?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a man making in basketball?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"what are basketball players making dunks over?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does footage of guy dunk?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who dunks on the other man?\",\n    \"video_name\": \"video8859\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is being explained?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"what is a man screencasting?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what walkthrough?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does someone play?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"warcraft\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man comments on how to do power-leveling while doing?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a video game?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing his world of warcraft strategy?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is describing updates to a video game?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses power leveling in the video game he plays?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is commentating over the video game world of warcraft?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss leveling in the video game he plays?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"power\"\n  },\n  {\n    \"question\": \"what plays world of warcraft?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man discussing his world of?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"warcraft\"\n  },\n  {\n    \"question\": \"what is streaming an mmorpg?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is screencasting a video game?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does someone play world of?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"warcraft\"\n  },\n  {\n    \"question\": \"who is someone streaming?\",\n    \"video_name\": \"video8860\",\n    \"answer\": \"mmorpg\"\n  },\n  {\n    \"question\": \"what raps and?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is two young men doing?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video of a person doing?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two boys making?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does one man play while another sings?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays guitar while another sings?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play while his partner raps?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"how many men are singing?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is rapping?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many boys are making rap music?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys freestyle to guitar?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are playing the guitar?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what raps while another plays guitar?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"who plays the guitar while his partner raps?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings while another man plays guitar?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wraps as another man plays a guitar?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tries to rap while his friend plays guitar?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what are two men playing?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does another man play?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does another play?\",\n    \"video_name\": \"video8861\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays the sims?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is about to drink from a toilet?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a woman make the dog drink out of?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"toilet\"\n  },\n  {\n    \"question\": \"what does a woman s describes a virtual scene where a dog enters a bathroom?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is being played with a dog in a bathroom?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who s background voice describes a virtual scene where a dog enters a bathroom?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing a game of sims a virtual simulation game?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who is playing the sims?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an individual doing?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a person doing?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what play footage of the sims?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who makes the dog drink out of the toilet?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who plays the sims 3 and commentates?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person arranging?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is commentating?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking while playing sims?\",\n    \"video_name\": \"video8862\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person playing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a cartoon dolls of baby doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a child playing in the backyard and doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is a childrens video game a young blonde toddler doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game of children doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are baby games where babies doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a colorful graphic doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a computer game of a toddler and mother doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is there is a yellow hair boy doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video game doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who arrived?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"what is animated kids doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who does an animated girl talk to?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a computer game doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who talks to a baby?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do an animated girl and a baby play in then mom comes out?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"backyard\"\n  },\n  {\n    \"question\": \"who is controlling the kids what to do?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing game?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is woman with blonde hair being controlled by?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does game play of a child s video game a babyand a mother are all in interacting?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"who does game play of a child s video game a babyand are all in a yard interacting?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who plays with game play of a child?\",\n    \"video_name\": \"video8863\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is discussing gun control?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is showing on tv?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what does a talk show discuss?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"illnes\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a news show discussing?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what do a news anchor?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what discusses mental illness?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what anchor discusses gun control?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does a man on the news talk about?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what is a person on a news show talking about?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"who is reporting news about a shooting?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what talks about the shooting in south carolina?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking about the news?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man reporting news about?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person on a news show doing?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news show doing?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a news report doing?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a news reader doing?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man on the news doing?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8864\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what does a man pour into the middle of his flour mixture?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what does a man stir with a whisk?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is a man in a kitchen preparing pancakes he s wearing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who is busy in cooking in the kithchen?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a gentlemen stirring with a tan batter in a kitchen?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what does a man stir yellow liquid with?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"what is a gentlemen stirring a recipe with a tan batter in?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is mixing the ingredients in the kitchen?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folds in a yellow liquid into his flour mixture in a pancake batter?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stirs yellow liquid with a whisk?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone stirring food inside of?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does a man in a kitchen have?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does a man in a kitchen pour into the center of his flour mixture?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"dessert\"\n  },\n  {\n    \"question\": \"who is mixing the ingredients?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing the dessert?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pours a yellow liquid into the middle of his flour mixture?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stirring food inside of a pot?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a male chef mixing ingredients in while describing the recipe?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the chef in white coat doing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man is busy in doing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man in a kitchen doing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is in a kitchen a gentlemen doing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a man in an apron with dark brown hair doing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a male chef doing?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what show demonstrating how to stir whats in the bowl?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who pours some liquid into a flour mixture?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is mixing ingredients in a bowl while describing the recipe?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"who is showing how to cook pancakes in a kitchen?\",\n    \"video_name\": \"video8865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is lying around?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is large and immobile?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog lying down on?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is lying down on the floor?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a news scene of the dog s?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a woman describing a dog s?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"condition\"\n  },\n  {\n    \"question\": \"what is a woman describing s medical condition?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is describing a dog s medical condition?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a video of a dog?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who shows several images of diseased dogs?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a dog with a large belly doing?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8866\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are cats doing?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person walks through their house doing?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"videotape\"\n  },\n  {\n    \"question\": \"who is walking through a house while small dogs also walk around?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a girl petting?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is filled with animals?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what does a person record the animals in?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is petting a cat?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is petting animals?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person giving a tour of?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is someone walking through while small dogs also walk around?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does home s cats are walking around in?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what moves toward and zooms in on a housecat outdoors?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"roam\"\n  },\n  {\n    \"question\": \"who is filming animals?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are a black dog and brown cat being shown around?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what has at least three small pets?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what s cats are walking around in someone?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who records the animals in their house?\",\n    \"video_name\": \"video8867\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a girl opening?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"what does a girl sit in?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a girl in blue color dress doing?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what was the woman doing?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is a woman is excited about doing?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"what is brunette woman doing?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman explains about the book she doing?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a girl from britain who doing?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the doing?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman with brown hair doing?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who does a girl open?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"what is a lady taking?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"papaer\"\n  },\n  {\n    \"question\": \"what do a girl in blue color dress speaking holding a book in displaying on screen?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a young girl look into?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"who is excited about finding extra bookmarks in the packaging?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking while opening up a package on camera?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a young girl with brown hair pull something out of?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"who is describing the contents which include a book and a card?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does the wearing wearing the blue blouse hold in a bedroom?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"what does the wearing wearing the blue blouse hold the package in?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what does a young girl sit in?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is very excited about opening a package containing notes?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a girl in blue color dress speaking holding in hand displaying on screen?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what does a girl in a room with a british flag on the wall remove?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is taking a news papaer?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who looks into a bag?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who opens a package excitedly?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sits in a room?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is opening a package?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is brunette woman talking about something in?\",\n    \"video_name\": \"video8868\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who s hands open the packaging of constructive toys?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does girls explain?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"connection\"\n  },\n  {\n    \"question\": \"what block toys?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what is someone demonstrating?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"unbox\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a first person view of someone doing?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman opening?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"who is showing some toys?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is opening a bag?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows a pack of toy building blocks?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays with blocks that have numbers on block toys?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is opening up a bag of toys?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what view of someone showing off block toys?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are th different lego pieces placed on?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is playing with block toys?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who showcases a few toy blocks?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is demonstrating toy blocks?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays with toys?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who unwraps toys?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a person playing with?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"block\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8869\",\n    \"answer\": \"unwrap\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a video of a guy doing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is an animation doing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is drawn?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a person draws a gameboard in with a black marker while doing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is writing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what does a person draw?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is someone drawing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is drawing something?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining economic concepts?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person drawing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who explains the concept behind what the man is drawing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is drawing examples using images of the game monopoly?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who draws a gameboard in with a black marker while describing what he is drawing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man drawing a cartoon in while another man explains the concept behind what the man is drawing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what is a man drawing in fast motion while another man explains the concept behind what the man is drawing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon in fast motion while another man explains the concept behind what the man is drawing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person draw in with a black marker while describing what he is drawing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"gameboard\"\n  },\n  {\n    \"question\": \"who draws a board game?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a clip of someone doing?\",\n    \"video_name\": \"video8870\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car goes doing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a differently doing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a fast car doing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a race car doing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is there is a car doing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"who is going around the track?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"racecar\"\n  },\n  {\n    \"question\": \"what goes racing down the road?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is racing down the road?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being driven?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car go racing down?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a racecar going around?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a car racing down?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is racing a car on a track?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man racing a car on?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a man racing on a track?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is racing around a track?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a fast car racing around?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a car driving fast on?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is driving fast on a track?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a differently looking car running on?\",\n    \"video_name\": \"video8871\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking to?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man sitting in?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does a man speak directly to the camera from?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what does a man speak to?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is sitting down?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to the camera?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a mid-aged man doing?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man speak directly to from his couch?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does a man talk straight towards seemingly in an interview?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is sitting in a chair?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to someone?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk straight towards a camera seemingly in?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who speaks directly to the camera from his couch?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks straight towards a camera seemingly in an interview?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man having a conversation in a room with?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what is a man having in a room with no sound?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is a man with white tshirt doing?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man having a conversation in with no sound?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who sits on the couch and talks?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is having a conversation in a room with no sound?\",\n    \"video_name\": \"video8872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are multiple people answering questions about?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are different couples shown at a table in a white walled room about?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"nutraloaf\"\n  },\n  {\n    \"question\": \"what are people talking about while the food details are being shown?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are different couples shown at in a white walled room speaking about nutraloaf?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is talking about a food?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are different couples shown at a table in a white walled room speaking about?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"nutraloaf\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are multiple people doing?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is different couples are shown at a table in a white walled room doing?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man and women doing?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are being shown?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who did multiple people talk?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"nutraloaf\"\n  },\n  {\n    \"question\": \"what does a news type video discuss?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"prison\"\n  },\n  {\n    \"question\": \"what are people talking about?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are multiple people answering?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is young men and woman doing?\",\n    \"video_name\": \"video8873\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the beauty lady doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman with short hair doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman gives an inspirational speech of doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"ease\"\n  },\n  {\n    \"question\": \"what is the woman in brown dress doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman it doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a brown shirt doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman appreciates to the public for doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is this video is about a woman doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is brunette woman doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is brunette woman sitting on?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who gives an inspirational speech of easing future stress?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"what are some books and small devices on inside?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is sitting on a chair?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"what is a woman sitting talking on a video?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a woman in a brown shirt discussing?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"feminine\"\n  },\n  {\n    \"question\": \"what does a woman with brown hair sell?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"who exercises that help strengthen a woman s pelvic muscles?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman discusses exercise that help strengthen s pelvic muscles?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking in front of camera while sitting in the chair?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting a chair talking on a video?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is about a woman describing a pelvic product?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a woman with brown hair sit in?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does the woman with the short brown hair sit in a chair next to?\",\n    \"video_name\": \"video8874\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what is playing in the ball?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat playing in?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are all very happy?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"cute\"\n  },\n  {\n    \"question\": \"who is more?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"moar\"\n  },\n  {\n    \"question\": \"what is pink?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what are playing with toys?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"how many screens is a white fluffy puppy seen with more puppies and kittens?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are recommended for the interested viewer?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what do images of puppies and kittens appear on screen as?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do images of puppies and kittens appear on as music plays?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a small white dog sitting in beyond the person?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is a small white dog sitting in the street beyond?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what are various pet animals doing?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are a bunch of little puppies doing?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this is an ad doing?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"solicit\"\n  },\n  {\n    \"question\": \"what is a dogs video doing?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is cute shootings of puppies and kittens doing?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is manny different scenes of dogs and cats doing?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a small white dog doing?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a dog doing?\",\n    \"video_name\": \"video8875\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are cartoon characters playing?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what featured minions?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many cartoons talk together?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a minion launched in in a game?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what animated video of various game and movie characters?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is launched in the air in a game?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"minion\"\n  },\n  {\n    \"question\": \"what is a minion launched in the air in?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a minion video game being played by?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is launched across a room?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are flying around the room?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon character launched across?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who are playing a game?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon characters flying around?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are characters doing?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an angry bird like video doing?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is animated clip of characters doing?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video8876\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"who is wearing a brown shirt?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking to the camera?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gave a speech?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a talk?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who speaks to camera?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking into?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what did the man give?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who is talking into the camera?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in the road side?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a man somberly talking directly to?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does guy give?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who somberly talking directly to the camera?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks in spanish to the camera?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something in a road?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking to?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who speaks in a foreign language about something in a poverty stricken street?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man somberly doing?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a short clip of an indian man doing?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is commercial of man doing?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person wearing?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is video of a man doing?\",\n    \"video_name\": \"video8877\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are surfers talking to about their lifestyle and sport?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a man surf through a tube shaped wave then smashes?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"who is sckating in the sea water?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is skating in the sea water in very dangerous?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a red color dress laughing with his friends?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man surf through shaped wave then smashes his board?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"tube\"\n  },\n  {\n    \"question\": \"what is a guy with a yellow beanie doing?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"job\"\n  },\n  {\n    \"question\": \"what were a group of guys doing some funny actions on?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who surfs through a tube shaped wave then smashes his board?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about surfing with guys?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many surfer men describe how the day was a waste of their time?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when did a compilation of several men talking about their day surf being ask questions?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"who talks about surfing while surfers talk about eating tacos?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what dress man laughing with his friends?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is there are many people enjoy doing?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what are surfers doing?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a red colour dress man doing?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are three men in black doing?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a man in green tshirt doing?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is all the outside man excited to perform surfing and doing?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is a compilation of several men doing?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8878\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do a distressed spanish discussing in a car?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what do a woman sitting in the back seat of a car with another man have?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what does a boy and girl going on an auto while the boy speaks something and girl start?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what are a girl and boy doing?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is actor ajith and asin doing?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man and woman with dark hair doing?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman in a red shirt doing?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does the boy speak?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are a girl and boy traveling in?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"auto\"\n  },\n  {\n    \"question\": \"who speaks something and girl?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does a woman in a red shirt talk with in a beige shirt in the back of a vehicle?\",\n    \"video_name\": \"video8879\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who climbs down a ladder?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people walking in to get interviewed?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is being interviewed in the office?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is entering a room to get interviewed?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some people placing at a job interview?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do men use to watch fake interviews in a comedy show?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what was being recorded?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what are people giving for job?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are people giving interview for?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"job\"\n  },\n  {\n    \"question\": \"what do private cam show of?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what show of an interview?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"cam\"\n  },\n  {\n    \"question\": \"what does a man climb down?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"ladder\"\n  },\n  {\n    \"question\": \"what are people walking in for?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a person being interviewed in?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what is peephole cameras doing?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are the guys doing?\",\n    \"video_name\": \"video8880\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"who describes how difficult a video is to shoot and beat shaq s records?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what does a man narrate something about while a video plays showing a basketball hoop?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is showing the height of a basketball backboard?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"who is doing some scientific calculations on how to break shaq s record?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates something about basketball while a video plays showing a basketball hoop?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does narrator discussing the height above a basketball hoop needed to break shaq s?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what does a man narrate while a video plays showing a basketball hoop?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what that shows descriptions of basketball facts?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a sport about basketball?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what plays showing a basketball hoop?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a sport science video about?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does basketball player attempt to break?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"who are getting ready to play basketball?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is rotating around a basketball hoop?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a video that show descriptions of?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who attempts to break shaqs jump record?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does man talking about breaking shaq s?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is the camera doing?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"rotate\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is narrator doing?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is illustrations are shown on a basketball backboard doing?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man narrates something about basketball while a video plays doing?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a video play showing?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a commentator doing?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a basket ball player doing?\",\n    \"video_name\": \"video8881\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what do a group of guys play?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"what does a monster truck flip on then several young men shout while playing beer pong?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what tumbles over on itself?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a person drive around a field?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"offroad\"\n  },\n  {\n    \"question\": \"what buggy flipping over?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"dune\"\n  },\n  {\n    \"question\": \"what is being flipped over?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what get wracked?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what flips over?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is crashing?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what do a car crashes and guys play?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"who crashes on a dirt road?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"tumbler\"\n  },\n  {\n    \"question\": \"what rolls over a cheer on a friend?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who drives an offroad car around a field?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person drive an offroad car around?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where does a monster truck flip then several young men shout while playing beer pong?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who does a truck roll over a cheer on?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is an off road vehicle doing?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a type of monster truck crashes and men are shown doing?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is crashing of a car while doing?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is a monster truck flips on its side then several young men shout while doing?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a car driving through an open field doing?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what flips on its side then several young men shout while playing beer pong?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"what is a race truck doing?\",\n    \"video_name\": \"video8882\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what do a bowl spoon mixing cream dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"where did white chocolate moose pour into container with handle and a blue object?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"middle\"\n  },\n  {\n    \"question\": \"who pours white chocolate in to a mold while describing the process?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"winan\"\n  },\n  {\n    \"question\": \"what do a bowl spoon mixing cream dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what is a bowl spoon doing?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what do a england speaking accent women whosing around a bowl white cholate mose pouring it into with some blue stuff in it?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what was some cream poured into?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what is smashed?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what is made?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what did some cream pour into then shaked?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman with a british accent doing?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"whip\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a england doing?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a winan pours white chocolate in to a mold while doing?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what was poured into the container?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what poured into the container then shaked?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"who is adding milk or cream into a pitcher with a blue substance in the center?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman with a british accent whipping with a wire whisk?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what poured into container with handle and a blue object in the middle?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what did white chocolate moose pour into container with handle and a blue object in?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"middle\"\n  },\n  {\n    \"question\": \"what did white chocolate moose pour into with handle and a blue object in the middle?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what do a england speaking accent women whosing around a bowl white cholate mose putting it in?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"freezer\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"who is someone adding milk or cream into with a blue substance in the center?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"what does a woman use to store some white chocolate mousse?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what is someone adding into a pitcher with a blue substance in the center?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"who uses a special container to store some white chocolate mousse?\",\n    \"video_name\": \"video8883\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a guy with dreadlocks doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man who s hair bands drinking tea in tea cup talk to?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man with dreadlocks doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man videos himself doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man is happily doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with long hair doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is there is is a black shirt man doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy with tight hair doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man with dreadlocks states that people will be doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a man who s hair bands doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man in black doing?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man drinking a coffee in?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"who is happily explaining something with other people at the background?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking a coffee in a cup?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy with tight hair drinking?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"tea\"\n  },\n  {\n    \"question\": \"who videos himself discussing preparing to interview people?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talk about something in the office?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man happily explaining something with other people at?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a man happily explaining with other people at the background?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man with dreadlocks and a cup of coffee speak with many people in?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man drinking in a cup?\",\n    \"video_name\": \"video8884\",\n    \"answer\": \"coffee\"\n  },\n  {\n    \"question\": \"what preforms a song?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is inteviewing someone on a news show?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman and other three doing?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are news reporters doing?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a host doing?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news clip doing?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a talk show doing?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is four news anchors doing?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what does a band preform?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman inteviewing on a news show?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do reporters discuss a freedom of?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"issue\"\n  },\n  {\n    \"question\": \"what does woman and other three discussing about the texas?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"storm\"\n  },\n  {\n    \"question\": \"what show talking about the texas attack?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about a texas attack?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who are asking an interviewee questions?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what attack about a terrorism attack?\",\n    \"video_name\": \"video8885\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what are two men cutting?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a man make?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what do two adults describe?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what are guys doing?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what do men barbecue and slice up?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a man grilling and doing?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who slice meat?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are men preparing?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man putting tin foil into?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"bbq\"\n  },\n  {\n    \"question\": \"who is slicing barbecued meat?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do men remove from a bbq?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who makes bbq meat?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do men cut up outdoors?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man putting into his bbq?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"foil\"\n  },\n  {\n    \"question\": \"who do men remove meat from?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"bbq\"\n  },\n  {\n    \"question\": \"how many adults describe their cooking process?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are cutting barbecued meat?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who do two adults pull a meat off?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"bbq\"\n  },\n  {\n    \"question\": \"what do two adults pull off a bbq?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what do a man slice?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what slice up meat?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"barbecue\"\n  },\n  {\n    \"question\": \"what do men cooking bbq?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who describes how he sets up a bbq?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are guys cooking outside?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many men are showing how to prepare grilled meat?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many adults pull a meat off a bbq?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is putting tin foil into his bbq?\",\n    \"video_name\": \"video8886\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man rapping and people doing?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is foreign music video with subtitles doing?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is singing in a club?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people dancing on?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"who dances spanish music?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is dancing in a hallway?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do the artists dance in?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"globe\"\n  },\n  {\n    \"question\": \"what is a woman dancing in?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who rapping?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does a guy dance?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man singing in?\",\n    \"video_name\": \"video8887\",\n    \"answer\": \"club\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person who has gone through a traumatic experience while doing?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"drown\"\n  },\n  {\n    \"question\": \"what is clouds of bubbles swirl all around a person doing?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is an underwater view doing?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person in the middle of doing?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"rush\"\n  },\n  {\n    \"question\": \"what is some bubbling stuff inside the water and some one doing?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"who shows?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"scuba\"\n  },\n  {\n    \"question\": \"who is surrounded by bubbles from a crashing wave?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains that under sea experiences are very dangerous?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who speaks about his desires for life a close up of a stream is shown?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is clouds of bubbles swirl all around a person swimming in?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who explains that the sea is quite difficult to overcome the obstacles in the sea?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person explain that under experiences are very dangerous?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"who narrates one of his diving experiences?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"scuba\"\n  },\n  {\n    \"question\": \"what do a person showing under water view on?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"when is a narrator talking?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"past\"\n  },\n  {\n    \"question\": \"who swims underwater?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking while images of rolling churning water plays about the things he would like to do with his life?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man swimming in?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is talking about his past?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is swimming in the water?\",\n    \"video_name\": \"video8888\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are group of ladies who look beautiful doing?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a few muslim women follow each other in various presentations in which instructors doing?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is footage of a group of people doing?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is it was like a exhibition where all the people doing?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there are many woman with their head covered in cloth doing?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what are people eating at?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what are people looking around in?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are all chatting in?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what are all having in a restaurant?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are a man and more peopoles in?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"retaurant\"\n  },\n  {\n    \"question\": \"what are all having nice food in?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what are having conversation while sitting?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are group of ladies who look beautiful sitting on?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are group of people having while sitting?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what does footage of a group of people meeting inside what seem to be?\",\n    \"video_name\": \"video8889\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"how many people are talking into the camera?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man and a woman are hosting a children s?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"how many people are hosting a show?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is man and woman doing?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is telecasting?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two people hosting?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are two people talking into?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a couple presenting?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"episode\"\n  },\n  {\n    \"question\": \"what is presenting an episode?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are a man and a woman talking about?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a tv show doing?\",\n    \"video_name\": \"video8890\",\n    \"answer\": \"telecast\"\n  },\n  {\n    \"question\": \"what do various people running down forest trail in?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are some guys running on for olympic?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are some guys running on road for?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"olympic\"\n  },\n  {\n    \"question\": \"what is woman in green clothes having?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is a woman running down in green?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are a woman and several other people participating in?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"who is running down a road in green?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a boy running in?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is parking?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is a lady running on?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is running hard on a trail and a woman running?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is an ambulance?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"parking\"\n  },\n  {\n    \"question\": \"who is running in a race?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do runner athletes compete in?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"distance\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is running on the road?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is woman in green clothes having bottle of?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who compete in long distance?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"runner\"\n  },\n  {\n    \"question\": \"what plays in the background as a boy is running in a race?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman in a lime green shirt running down a dirt road through?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what does a song play in as a boy is running in a race?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what does a girl in a green shirt run down while music plays?\",\n    \"video_name\": \"video8891\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what is a man is in the kitchen doing?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person with black coat and white cap doing?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is greg in the kitchen doing?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man with white hat doing?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"amaze\"\n  },\n  {\n    \"question\": \"what is a bowl of chicken noodle soup doing?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what did greg make?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who s kitchen online show exhibits a white square bowl of chicken noodle soup?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"greg\"\n  },\n  {\n    \"question\": \"who is cooking a soup in his kitchen?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who made chicken soup?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"greg\"\n  },\n  {\n    \"question\": \"what is a square bowl of food on?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is in the bowl ready to serve?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is person cooking in his kitchen?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what does a man sing?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is man with white hat preparing in a kitchen?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is man with white hat preparing a soup in?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a person with black coat and white cap trying?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what does greg s kitchen exhibits a white square bowl of chicken noodle soup?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"online\"\n  },\n  {\n    \"question\": \"who is in the kitchen cooking chicken noodle soup?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what appears over the bowl a white bowl is filled with soup?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what does greg s online show exhibits a white square bowl of chicken noodle soup?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does amazing chicken soup greg can get from greg s?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does text appear over a white bowl is filled with soup?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a white colored bowl of chicken soup and a guy sing?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does text appear over the bowl a white bowl is filled with?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what does text appear over the bowl is filled with soup?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is person cooking a soup in?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video8892\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what did the man fold in half?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does person fold a piece of?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a ruled paper?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the man fold the paper in?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"who folded the paper in half?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who folds a piece of paper?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the person fold the paper to make?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what did the person fold to make an airplane?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man folding a piece of?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who folded the paper to make an airplane?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is this is a video doing?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is a video of someone doing?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is folding a piece of notebook paper?\",\n    \"video_name\": \"video8893\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a video of a women doing?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"paino\"\n  },\n  {\n    \"question\": \"what is a girl in a pink sweater doing?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman using?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who is laughing while sitting down at a piano?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a blonde girl in a pink sweater play?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a girl in a pink sweater playing?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who plays a song on the piano?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a blonde girl in a pink sweater sit on?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who plays at the piano?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"who is playing the paino?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing a piano?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is using a piano?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a blonde mother play at?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is woman playing?\",\n    \"video_name\": \"video8894\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a guy and a girl doing?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"romance\"\n  },\n  {\n    \"question\": \"what is a music video on the beach with two teens doing?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who sing rhyming music video?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do girl and boy sing rhyming?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are two people singing on?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a boy and a girl doing?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a young boy and girl singing in while walking on the beach?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"rhyme\"\n  },\n  {\n    \"question\": \"what is a woman sitting on on the beach?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what is a woman sitting on a bench on?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is sitting on a bench on the beach?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many people are singing on the beach?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who dances around on the beach with a woman?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a boy an a girl singing by?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do a man a woman dance on?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who dancing and singing in a beach?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are a man and a woman singing on?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are teenage boy and girl singing on?\",\n    \"video_name\": \"video8895\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are a group of people playing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are four video game characters in?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are racing carts?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"nintendo\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are mario and his friends doing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is mario cart race with a chomp chomp doing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is this is the start of a doing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are nintendo characters doing?\",\n    \"video_name\": \"video8896\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what are parents doing?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is little girl doing?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who wore a blue vest?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a girl looking for?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"who is handing a man a pack of cigarettes and the daughter is asking them a question?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding a box?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man wear?\",\n    \"video_name\": \"video8897\",\n    \"answer\": \"vest\"\n  },\n  {\n    \"question\": \"what a group of video game characters having?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game of pirates on an island doing?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a video game pirate doing?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who are running around on a beach?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are lego pirates doing?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are video game characters running around on?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is playing legoman on an island fighting the pirates?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what are video game characters doing?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who are preparing to laucnch a catapult?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are grabbing a coconut?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what are lego pirates grabbing?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"what is a video game pirate moving?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what are video game characters preparing to laucnch?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"catapult\"\n  },\n  {\n    \"question\": \"what is playing a lego video game?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are fighting?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8898\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a dietician speak to?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are two woman s and a man talking to each other about?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are a man and woman?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"shopping\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does the woman discuss?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did a woman parchaced?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who discusses the food?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about food?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who parchaced kitchen items?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman talking about the grocery s?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"today\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two woman s and a man doing?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"when are a man and a woman being asked to describe the groceries they bought to a female dietitian?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what is a dietitian doing?\",\n    \"video_name\": \"video8899\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who picks up the grill?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to bake a cake?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman prepare for a recipe?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is assembling a cake?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who makes layers of cakes?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a layer of cake placed on as part of a cooking demonstration?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"sheet\"\n  },\n  {\n    \"question\": \"what is a woman assembling?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"who decorates a cake?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing a dessert?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the person pick up?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what does a woman decorate?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what does a woman prepare some food for?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what are people cooking?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"dessert\"\n  },\n  {\n    \"question\": \"who bakes?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman prepare while explaining the process?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what cakes ready to apply cream?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"who prepares some food for a recipe?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a clip of a woman doing?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman prepares food while doing?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is as part of a cooking demonstration a layer of cake is placed on doing?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"stack\"\n  },\n  {\n    \"question\": \"who is stacking colorful layers for a cake?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who prepares food while explaining the process?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explains how to create a layered cake?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is describing how to make and bake a multi colored cake or other item?\",\n    \"video_name\": \"video8900\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are four men moving down an assembly line?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a group of men push out of a room?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who comments on a production line?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people pushing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man explain the process of?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"manufacturing\"\n  },\n  {\n    \"question\": \"what are men shown pushing a car in?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"factory\"\n  },\n  {\n    \"question\": \"what are a group of men pushing a car inside?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"warehouse\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is men are shown doing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is four people doing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what are four men doing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are men shown pushing in a factory?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are workers doing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"how many men are moving a car down an assembly line?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what did men pushing a car and another man being interview about?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who explains the process of car manufacturing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of men pushing inside a warehouse?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is workers doing?\",\n    \"video_name\": \"video8901\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man looking out to look at another man who jumped from the window to his death?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what does a news short review?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"horror\"\n  },\n  {\n    \"question\": \"what did someone just jump out of?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is a man looking out?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what are people looking out?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what just jumped out of a window?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a trailer doing?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man and a girl doing?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what did a man jump from?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what short reviews a horror movie?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is looking out the window?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking out a window?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is insidious chapter 3 the part of?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who jumped from a building?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the part of scary movie?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"chapter\"\n  },\n  {\n    \"question\": \"who looks out a window to see a body below?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at some thing through window?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking out a window to look at another man who jumped from the window to his death?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking?\",\n    \"video_name\": \"video8902\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there are crocodiles about to eat the group of people doing?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are cartoons running in?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what swim away in a lake?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do cartoon alligators swim away in?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what do alligators enter?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who are alligators pursuing?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do alligators approach the people at?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"shore\"\n  },\n  {\n    \"question\": \"what are a few crocodiles doing?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what are alligators doing?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are alligators doing?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"pursue\"\n  },\n  {\n    \"question\": \"what is cartoon of alligators in the water doing?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what are some animated guys doing?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some animated guys walking in?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do two women watch as people wade through?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what are a few crocodiles entering at night?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what do alligators follow women into a swamp in?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do cartoon of alligators in the water chasing people as two women watch behind?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"when are a few crocodiles entering a lake?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"how many women are eaten by alligators?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women watch as people wade through a river?\",\n    \"video_name\": \"video8903\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is wearing coat?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman in a white robe doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a women is in an make up room doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a girl speaking doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman with long brown hair and dark lipstick wears a white shirt in the bathroom while doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman with heavy makeup doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is young lady doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"reassure\"\n  },\n  {\n    \"question\": \"what is a pretty woman with full lips and long hair doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman touches her ears while doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is an actress doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman in a white bathrobe in a very spacious bathroom records herself doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"plan\"\n  },\n  {\n    \"question\": \"what is there is a woman in white doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a women with white dress doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is brunette woman in white clothes doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a brunette woman doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is fighting?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a lady wearing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"coat\"\n  },\n  {\n    \"question\": \"what does a woman with long brunette hair discuss?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"outfit\"\n  },\n  {\n    \"question\": \"what is a woman with heavy makeup wearing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"robe\"\n  },\n  {\n    \"question\": \"what is a pretty woman with full lips and long hair wearing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"robe\"\n  },\n  {\n    \"question\": \"what does a woman with long brunette hair wear?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"blouse\"\n  },\n  {\n    \"question\": \"what is brunette woman in white clothes talking in?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"who is speaking about something in beauty parlor?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman with heavy makeup talking in?\",\n    \"video_name\": \"video8904\",\n    \"answer\": \"bathrom\"\n  },\n  {\n    \"question\": \"who do a man on a talk show interviewing?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who do a talk show?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"interviewing\"\n  },\n  {\n    \"question\": \"what are two men having?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what do two men talk on?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what did both men have?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does jon stewart conduct?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who do john stewart talking to?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"interviewer\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who interviews another man in a studio?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many man s are talking to each other?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what stewart talking to an interviewer?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"john\"\n  },\n  {\n    \"question\": \"who stewart interviews a man?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"jon\"\n  },\n  {\n    \"question\": \"how many men are having a conversation?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what show host interviewing guest?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men talk on a show?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is john stewart doing?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man on a talk show doing?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video8905\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some roses and the wordings kept on for someone?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what did bunch of people placing rise as condolence on?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"gate\"\n  },\n  {\n    \"question\": \"what did bunch of people placing rise as on the gate?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"condolence\"\n  },\n  {\n    \"question\": \"what does a man discuss while others visit a memorial?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"what do others visit?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"memorial\"\n  },\n  {\n    \"question\": \"what are some roses and the wordings kept on the fence for?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is displaying a video of a person who has passed?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"who talks about some unspecified tragedy calling for tightened security?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is speaking about a resolve that is needed to prevent violence?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about an unfortunate event of someone passing?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reading a news about the tightning of the security sytem and the reserve by the military goernment?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who discusses military security while others visit a memorial?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are many people planting roses into as a reminder of what happened?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what are people paying to the dead with flowers which are put on the grills?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"homage\"\n  },\n  {\n    \"question\": \"what is there is a woman in white doing?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a few people doing?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is reporter talks about some unspecified tragedy doing?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is the world news doing?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"pay\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8906\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who faces down nick fury?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"loki\"\n  },\n  {\n    \"question\": \"what do two men talking to each other in a sci fi?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who stands inside what appears to be a spaceship?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a man in a movie?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what talks to thor in one of the avenger movies?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"nick\"\n  },\n  {\n    \"question\": \"what does msn exclusives previews a scene from an avenger s?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is a man with an eye patch talking to?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do the avengers interrogate?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"loki\"\n  },\n  {\n    \"question\": \"what does loki face down?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"fury\"\n  },\n  {\n    \"question\": \"who are having a discussion?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"super\"\n  },\n  {\n    \"question\": \"who are talking in a movie?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has his arms crossed?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two man talking in?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are super heros having?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what exclusives previews a scene from an avenger s movie?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"msn\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with an eye patch doing?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two man doing?\",\n    \"video_name\": \"video8907\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a old man in black coat color dress doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is talking about the man on the screen?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do old man in formal wear talking about?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a guy in a suit doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is old guy in coat and white shirt doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a black suit doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a white man in a suit doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in black suit doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is old man in formal wear doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt and a jacket stands in front of a blue curtain doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is an old man talking about on the screen?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wears coat and doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old man doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with black suit doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"who is talking in front of a tv?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a suit stands near a huge monitor doing?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"when is man in black suit talking about old person?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"who wears coat?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy in a suit talking about on the tv?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man wear?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"coat\"\n  },\n  {\n    \"question\": \"what do a old man in black coat color dress wearing speaking standing on topic and still image on screen displaying on screen?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do a old man in black coat color dress wearing cloth speaking standing on topic and still image on displaying on screen?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is an old man talking about the man on?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who discusses american jurisprudence and oliver holmes?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is man in black suit talking about from history?\",\n    \"video_name\": \"video8908\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do credits for video produced by onesource automotive fort walton?\",\n    \"video_name\": \"video8909\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what do closing credits for an automotive repair video appear on?\",\n    \"video_name\": \"video8909\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is shown of credits to an automotive show?\",\n    \"video_name\": \"video8909\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what s involved in making the documentary?\",\n    \"video_name\": \"video8909\",\n    \"answer\": \"list\"\n  },\n  {\n    \"question\": \"what credits from an automobile video?\",\n    \"video_name\": \"video8909\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who provided the sound effects?\",\n    \"video_name\": \"video8909\",\n    \"answer\": \"audiomicro\"\n  },\n  {\n    \"question\": \"what block with words?\",\n    \"video_name\": \"video8909\",\n    \"answer\": \"title\"\n  },\n  {\n    \"question\": \"what do credits roll for?\",\n    \"video_name\": \"video8909\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8909\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8909\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what did audiomicro provide?\",\n    \"video_name\": \"video8909\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"who adds sauce and mozzarella cheese to a pizza?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone making a pizza step by?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"who then sprinkles cheese on top?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who prepares a pizza then sprinkling cheese?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man add sauce and mozzarella cheese to?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"who attempts to make a pizza in a pan?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person spread pizza sauce onto?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"crust\"\n  },\n  {\n    \"question\": \"who is spreading cheese on a pizza?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man attempt to make in a pan?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"who demonstrates how to make pizza prepared dough?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is added to a pizza followed by cheese?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is making a pizza step by step?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"where does a person then sprinkle cheese?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"what does a person spread onto a crust?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what does a person then sprinkle on top?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"who prepares a pizza spreading sauce on the dough?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what does a person then sprinkle cheese on?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"top\"\n  },\n  {\n    \"question\": \"what is a cook preparing?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is making a pizza?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making pizza?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did person demonstrating making a home make?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what is someone making by step?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"who spreads pizza sauce onto a crust?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing a nice dish?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a cook doing?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is a man prepares a pizza doing?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8910\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what does the man s movements creatures inside a man s?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what does a thought in the man s adjusts the forks?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"brain\"\n  },\n  {\n    \"question\": \"what do 3d animated characters in brain control?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what s movements creatures inside a man s brain control?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows how the brain helps people do things?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what controls the brain?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is controlling a mans hand?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"brain\"\n  },\n  {\n    \"question\": \"who sleeps in the background?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does another character sleep in?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what does cartoon control?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"brain\"\n  },\n  {\n    \"question\": \"what is the brain controlling?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is pink?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"brain\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what did a computer generate cartoon figure operates while another character sleeps in the background?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what generated cartoon figure operates a control panel while another character sleeps in the background?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a character from inside out doing?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what did a computer generate operates a control panel while another character sleeps in the background?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated character doing?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what is animated cartoon doing?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are animated children s show where fictional characters doing?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is the brain doing?\",\n    \"video_name\": \"video8911\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"who does woman talk to across a table?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an arabic woman sit at with a man?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does woman talk to a man across?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who speaks with man at a dinner?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are man and woman having?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"what is a woman having?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"what do news anchor talking and a clip of a couple having?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"who are having a conversation?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is having dinner?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a man and a woman talking in?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what do a man and a woman talk at?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what is a woman and a man dining together in?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what do a spanish speaking while at a dinner table?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who sits at a table with a man?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does an arabic woman sit at a table with?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is news anchor doing?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is in a restaurant a woman and a man doing?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"din\"\n  },\n  {\n    \"question\": \"what are a woman and man doing?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman and a man doing?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man and woman doing?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a beautiful woman doing?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking to a fat man in a restaurant?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to a man for an interview?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what anchor talking and a clip of a couple having dinner?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who talks to a man across a table?\",\n    \"video_name\": \"video8912\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who hit a home run?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what sports clips to?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are people playingg?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what did the baseball player hit?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what are athletes playing?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what features several different sports?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what sports video that change music quickly?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what are two videos of men playing baseball and football being played with music in?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is shown here?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are athletes doing?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two videos of men doing?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is various scenes of doing?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what is a clip showing various sporting events playing with music in?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a clip showing various sporting events playing with in the background?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who makes the catch over the defender?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what are two videos of men playing baseball and football being played with in the background?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is various vine clips of sports doing?\",\n    \"video_name\": \"video8913\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is a polite sign shown behind?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the other group walk on?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do clothing models walk down?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do fashion models walk down?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do others walk down?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are models walking down?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what are models on?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what did a fashion show with muslim inspire?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what are a group of people on while others walk down a runway?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are a group of models?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what walks on a runway?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what walk down the runway?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what is shown behind the woman?\",\n    \"video_name\": \"video8914\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who somefood?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does a woman put on churros?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"sugar\"\n  },\n  {\n    \"question\": \"what is a woman in the kitchen doing?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a woman serving in a kitchen?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman preparing in a kitchen?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who shows how to prepare a pastry?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman preparing food in?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who puts cinnamon on churros?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman in the kitchen rolling some treat in?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"cinnamon\"\n  },\n  {\n    \"question\": \"what is a woman mixing with some flour?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is preparing food in a kitchen?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who rolls fried dough in sugar?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make cinnamon twists?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts sugar on churros?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing some food with some flour?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is serving food in a kitchen?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman serving food in?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what were the pastries prepped by?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does woman put on churros?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"cinnamon\"\n  },\n  {\n    \"question\": \"who rolls up some churros?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who plates churros?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video8915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what and patrick moving up and down?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what are bouncing around?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who is spongebob?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is a unique character?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who dances with other characters?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"sponebob\"\n  },\n  {\n    \"question\": \"what are jumping one on another?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do squidward and patrick have off under the sea in front of a pineapple house?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who have a dance off under the sea in front of a pineapple house?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"how many cartoon characters are jumping one on another?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is in front of his house?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what are three cartoon characters doing?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is squidward and patrick doing?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are & squidward doing?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are and squidward doing?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"what are in a cartoon television show the characters doing?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are drawings of cartoon characters doing?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a funny doing?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video8916\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what laughs?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is taking interview?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"debate\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is two men are on stage doing?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a tv show with people doing?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two men discussing?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a man in a suit doing?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man taking?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are two people debating on?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"how many people are debating on a topic?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men discuss social issues?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are discussing politics and news?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who speaks on a a news panel?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are two men having a discussion?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many men are on stage discussing something?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are two men discussing something?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are two men having on stage?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"how many men are having a discussion on stage?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men on stage discussing?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many man s are talking to each other?\",\n    \"video_name\": \"video8917\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are imitating young boys voices?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who prepares to do another mans hair?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what does kids voice a man doing another man s?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is doing someone s hair?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting another mans hair?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a hairdresser and client speak to each other with?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who does another mans hair?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is about to get a haircut?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does a man do?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"imitate\"\n  },\n  {\n    \"question\": \"what is two men in a beauty salon are lip doing?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"sync\"\n  },\n  {\n    \"question\": \"what is a man spraying?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does a man cutting another man s?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a man doing s hair?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is spraying another man hair?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing someone s?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is doing hair?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man cutting a man s?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is about to cut hair?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man prepare to do?\",\n    \"video_name\": \"video8918\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"when is a man talking?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is talking on stage?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two man and a woman talking about?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is performing while people laugh?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making judges laugh?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is laughing at what a man is saying?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to judges on a stage?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show where the contestant is talking to judges?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"talent\"\n  },\n  {\n    \"question\": \"who is performing for judges?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a talent show where the contestant doing?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an indian tv show with a man doing?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what are several people doing?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are two man and a woman doing?\",\n    \"video_name\": \"video8919\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"when is a child screaming?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"when did a children play around?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"who the children hug?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"what celebrates christmas?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a girl on?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"when does a family celebrate?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"who do christmas see?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"santum\"\n  },\n  {\n    \"question\": \"who is screaming on christmas?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"when did a father suprising his children?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"who cries in his father s arms at christmas?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"son\"\n  },\n  {\n    \"question\": \"when does son cry in his father s arms?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"who does son cry in s arms at christmas?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"who starts crying while hugging someone?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who suprising his children on christmas?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"when see santa claus?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"who claus when kids realize it is their dad?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"santum\"\n  },\n  {\n    \"question\": \"who is on the couch?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what reacts excitedly as christmas see santa claus?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what are a pair of children doing?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"embrace\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"unwrap\"\n  },\n  {\n    \"question\": \"what is a kid starts doing?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a children doing?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what are a boy and a girl doing?\",\n    \"video_name\": \"video8920\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"who tells how to edit pictures on a computer?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is showing an editing software?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did a man talks over screen capture footage of?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is showing how to use a particular computer program?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who teaches a tutorial about editing?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is explaining what he is doing on the computer?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to use a computer program?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a video tutorial online?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking about software?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person talking about?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"who ends their tutorial on their computer?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a kid do online?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is a person giving?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"who is giving a software tutorial?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a boy do online?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is this video clip doing?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a boy teaches a tutorial about doing?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8921\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what do a clip from the show?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"recreation\"\n  },\n  {\n    \"question\": \"how many men are having a conversation?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many actors are being friends?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who introduces himself to the star of the show as another actor on the show?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hugging another man?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two actors talking about?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who talks to his friend?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man talk to?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"who is a man hugging?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men talking to?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who talks to an actor?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does an old man shake hands with?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two actors doing?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is this is the video of guys doing?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is this is a clip of a couple actors from parks and recreation doing?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who shakes hands with another man outside a bulding?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men talk to each other on a tv set?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"how many actors are talking about a show?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking to eachother?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who shakes hands with another man?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men having?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"how many men are talking to a camera?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does the man talk to?\",\n    \"video_name\": \"video8922\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what are women models walking down?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"when is about a fashion show?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are models walking?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who walks down the runway?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what do two women walk down?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are women?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"modeling\"\n  },\n  {\n    \"question\": \"who is walking the catwalk?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when do girls catwalk?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is ladies doing?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is models are shown doing?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are women models doing?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what does a model walk down?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are models displaying on the runway?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"how many women walk down a runway?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a woman walking?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what are models displaying purple dresses on?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is someone messing with?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"who is showing the repairing of laptop?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man taking apart?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what is being made?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"item\"\n  },\n  {\n    \"question\": \"what is man showing parts of?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone showing the repairing of?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who is showing parts of a computer?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is showing a computer part?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is messing with a device?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about working with electronics?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is taking apart an electronic device?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who is giving a tutorial about working on an electronic device?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about fixing a computer part?\",\n    \"video_name\": \"video8924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a band playing a song?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are two people on stage singing to?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is playing a song on stage?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what performs on stage in front of a crowd?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band playing on stage?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when does tom jones perform with a young man?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who performs on stage with a young man?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what does an all male rock band perform?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"when is a rock band playing?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a rock band doing?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people on stage doing?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what performs live?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a band play?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what plays a song?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what performs live for audience?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is performing on stage?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing on stage?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"when does a band play?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what plays on a stage?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does rock group perform live for?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"when is a band performing?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what lit up?\",\n    \"video_name\": \"video8925\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band playing on stage?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what preforms a song on stage?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is a band playing a country song?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what plays instruments in front of audience?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing a country song on stage?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man playing with a band in a live concert?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing a guitar with in a live concert?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is playing a guitar with a band in a live concert?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is about a band playing a country song?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is giving by a team?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a country band doing?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is music band doing?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is this video is about a band doing?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is giving a concert performance?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a musical program giving by?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what stage performance?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what do a country music stage?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who sound good?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is a band giving?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what sings?\",\n    \"video_name\": \"video8926\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a news reporter doing?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman talking about in front of others?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking about hillary clinton?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is talking about something in front of others?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about hilary clinton?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to an audience on stage?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is hillary clinton doing?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a news reporter talking about?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who is speaking about hillary clinton?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what talks about hillary clinton?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking about politicians?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is holding a pressconference?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who does the news talk about?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who is a man speaking about?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who is on the news?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who does the man talk about?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what is hilary clinton on?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is reporting the news?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is hillary clinton holding?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"pressconference\"\n  },\n  {\n    \"question\": \"what is a women talking in?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"conference\"\n  },\n  {\n    \"question\": \"what is a man reporting?\",\n    \"video_name\": \"video8927\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a woman posing on?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what does a woman in a bikini pose beside?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"who is relaxing in a bathing suit?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking near a river?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is posing on the beach?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what poses for the camera?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"swimsuit\"\n  },\n  {\n    \"question\": \"what is a girl enjoying in independent?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what is a woman walking around in?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"bikini\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what does a swimsuit model pose for?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman walking near?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"who is giving pose?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is laying?\",\n    \"video_name\": \"video8928\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person playing as in a video game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what is a man playing using a deer mod?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"gtum\"\n  },\n  {\n    \"question\": \"what does a deer get hit by in a video game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a deer running across in a video game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a person playing as an animal?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did the deer get hit by in the game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did the deer get hit by a car in?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does moose find way in city in?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a deer in a video game get hit by?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what gets hit by a car in a video game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what gets hit by a car then a person?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what is a person playing a video game as?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what does moose find in video game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is running across a road in a video game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what play of grand theft auto 5?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what just got run over in game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"antler\"\n  },\n  {\n    \"question\": \"what did the antler just get run over in?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a deer get hit by then a person?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a video game deer running around?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who does a deer get hit by a car?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what got hit by a car in the game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"who is playing a video game as an animal?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing as a deer in a video game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing gta using a deer mod?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what finds way in city in video game?\",\n    \"video_name\": \"video8929\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"when is a man standing?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people watching?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking to an audience causing people to laugh?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks on a a news panel?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is bill murry being interviewed by?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"what is a man doing an interview on?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"talkshow\"\n  },\n  {\n    \"question\": \"who does a standing bill murray talk directly to the studio audience of the late show with?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"what is a man doing on a talkshow?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man talking to causing peoples watching a to laugh?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is talking on the david letterman show?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what murray talks directly to the studio audience of the late show with david letterman?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"standing\"\n  },\n  {\n    \"question\": \"who is being interviewed by david letterman?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"murry\"\n  },\n  {\n    \"question\": \"who is standing on stage?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing an interview on a talkshow?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking to causing people to laugh?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what reacts to bill murray on david letterman?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is talking to an audience causing peoples watching a to laugh?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is peoples doing?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is people in the audience of david lattermen and bill murray doing?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a star doing?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is walking among willow trees with a digital sword a person is attacking his enemies?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do an information and demo page of a fps video game where player hit and get?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what do an information and demo page of a fps video game where player hit and kill?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"enemy\"\n  },\n  {\n    \"question\": \"how many guys are having a headset chat on minecraft about a possible disease one player has?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing with a jagged sword chasing a pig?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is this gamer doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is minecraft game footage with the guy doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is subtitled doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men who doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animated game shows a person doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who plays the game minecraft and talks to a friend at the same time?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are two guys having chat on minecraft about a possible disease one player has?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"headset\"\n  },\n  {\n    \"question\": \"who are two guys having a headset chat on minecraft about a possible disease has?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who makes him laugh?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what are two guys having a headset chat on minecraft about a possible disease?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what does a guy play as he talks to another guy?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is character passed through the imagination world in?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is passed through the imagination world in the cartoon?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who plays a video game as he talks to another guy?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is attacking a pig with a huge sword?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"what shows a person killing animals in a green forest?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what shows a person walking with a sword?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is trying to destroy his enemies with a riffle?\",\n    \"video_name\": \"video8931\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what laughs?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the audience doing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is an audience doing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt doing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is watching two men talking?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is on a interview show?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking on a talkshow?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many man s are talking to each other?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is giving an interview in a tv show?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a talk show host and laughing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who interacts with a talkshow host?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is laughing while a man is being interviewed?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is interviewing an older man?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are laughing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men is an audience watching talking?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who makes the audience applause?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man make?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a young man interviewing?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men talking on?\",\n    \"video_name\": \"video8932\",\n    \"answer\": \"talkshow\"\n  },\n  {\n    \"question\": \"what is an animated woman doing?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is animation of girls doing?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is two cartoon characters doing?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are young girls doing?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a cartoon family doing?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do cartoon blonde characters talk in?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"who talk in the snow?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are young girls walking in?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"when is an animated family outside?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"who is an animated woman talking to?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking to a girl?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a young girl speakig with in a cartoon television show?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is walking outdoors in the snow?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is sad bad what the other girls said?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is running in a snow mountain in an animated video?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a cartoon family walking outdoors in?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is outside in the winter?\",\n    \"video_name\": \"video8933\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what rams into another at an intersection?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a short clip of vehicles doing?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a traffic cam shows a car doing?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a truck doing?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is cameras doing?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what are cars doing?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is there are cars doing?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is hitting a car on traffic signal?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what shows a car trying to drive around another car?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"what does a traffic cam show trying to drive around another car?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a traffic cam show a car trying to drive around?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a truck hitting on traffic signal?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what gets into an accident on a rainy day?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what speeds through an intersection?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is crashing into another car?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what ends another vehicle?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a truck hitting a car on?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"what is shown in clip?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"accident\"\n  },\n  {\n    \"question\": \"what do cars drive down?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is an accident shown in?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what does a vehicle rear end?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what are cars driving on?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a person driving?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a car speed through?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"intersection\"\n  },\n  {\n    \"question\": \"who is driving a truck?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a car crashing into?\",\n    \"video_name\": \"video8934\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are a ladies doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a girl and a lion doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a tiger doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a lion doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a large cat is shown doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a tiger doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is a very huge tiger doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a couple of women doing?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do two girls walk a lion into?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is the men passed with the lion?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are the two ladys lay on the road with?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what do a tiger walking on wiping body and two girl sleeping beside displaying on screen?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who rubs all over it?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is the men passed the road with?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what do two girls walk into the street?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"who walks with a large animal?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is shown playing with?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what do two girls lie down with?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"who do the ladies walk?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"how many girls are sitting?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a girl and a lion walking across?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are the two ladys lay on with the lion?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is walking with a woman in the road?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"who are lay on the road with the lion?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who joins another woman with a lion?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a couple of women petting a very large female lion on?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is crossing the street with big lion and friend?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many girls lay down with a lion?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is walking across the street with a tiger?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a woman walk an enormous lion across a blue screened?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who crosses a backdrop of abbey road from the beatles with a giant lion?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks an enormous lion across a blue screened road?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did two women and a female lion lie down in while music plays?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who does a woman join with a lion?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a lady walking across the street with?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"who walks along with a very large trained jungle cat?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady walking across with a tiger?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is man crossing with big lion and friend?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a woman cross a backdrop of from the beatles with a giant lion?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is shown being petted by its owners?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"how many girls walk a lion into the street?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a woman join another woman with?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"how many ladys are lay on the road with the lion?\",\n    \"video_name\": \"video8935\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are girls performing gymnastics on?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"what does a girl dance in?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who are training in gymnastics?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances in class?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what gymnasts practice on the bars?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who instructs on gymnastics technique while young female gymnasts practice on the bars?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is coaching several young gymnasts?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a gymnastics team with an instructor doing?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what are some girls doing?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what are woman doing?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who is teaching young girls how to balance on the bar?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman instruct on while young female gymnasts practice on the bars?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"technique\"\n  },\n  {\n    \"question\": \"what do a group of gymnasts hold themselves up on?\",\n    \"video_name\": \"video8936\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video8937\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video8937\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8937\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what plays to a collage of pictures?\",\n    \"video_name\": \"video8937\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a group of people stand in?\",\n    \"video_name\": \"video8937\",\n    \"answer\": \"painting\"\n  },\n  {\n    \"question\": \"what is on a leaf?\",\n    \"video_name\": \"video8937\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is a rain drop on?\",\n    \"video_name\": \"video8937\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"what sings about a little light while pictures of biblical scenes are shown?\",\n    \"video_name\": \"video8937\",\n    \"answer\": \"choir\"\n  },\n  {\n    \"question\": \"what is soldiers doing?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what are soldiers doing?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are a group of ww1 soldiers doing?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a war scene with a lot of soldiers doing?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a movie about a war and men doing?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"dodge\"\n  },\n  {\n    \"question\": \"what are soldiers doing?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"charge\"\n  },\n  {\n    \"question\": \"what does an army fight?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what are soldiers running through while being bombed?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are soldiers fighting each other in?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"who is dodging bombs?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what fights a war?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"what did the go into?\",\n    \"video_name\": \"video8938\",\n    \"answer\": \"trench\"\n  },\n  {\n    \"question\": \"what is parked on a large runway under clouds?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what sits upon a runway as a woman with curly brown hair and blue shirt talks about the gray plane?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"who talks about having to fly one side of the country to the other?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what was like flying inside of it?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"plan\"\n  },\n  {\n    \"question\": \"who is very big?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"globemaster\"\n  },\n  {\n    \"question\": \"what is a woman with a blue shirt smiling in?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is presentation of the big white airplane which named?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"globemaster\"\n  },\n  {\n    \"question\": \"what is sitting on an airfield motionless with clouds in the sky?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"plan\"\n  },\n  {\n    \"question\": \"what does a woman tensely describe flying a spacecraft on a plane across?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"where is a woman with a blue shirt smiling?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who describes flying a spacecraft on a plane across the country?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a plane that is parked on the runway?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what parked on a tarmac under a gray cloudy sky?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is a lady with blue dress explaining about?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is being shown while a woman talks about having to fly one side of the country to the other?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is a woman with a blue shirt doing?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a very big flight doing?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a pretty women doing?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a aeroplane standing in airport and girl in green dress cloth doing?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman with frizzy hair doing?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a plan doing?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman tensely describes doing?\",\n    \"video_name\": \"video8939\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what do a game scene of a box figure falling down with?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a man throw into anothers chest in minecraft?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who throws a sword at another character?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who throws a sword at a zombie?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is throwing a sword at a zombie?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who throws a sword into anothers chest in minecraft?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a minecraft character throwing a sword at?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"who throws his sword at a creeper?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who throws his weapon threw the air killing someone?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"block\"\n  },\n  {\n    \"question\": \"what is a minecraft character throwing at a zombie?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what a video game character throwing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what is a person playing throwing a sword?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who killed with thrown sword?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what did minecraft zombie kill with?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who throws a sword?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what character throwing a sword?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who throws the sword?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game throwing a sword?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a block man throws his weapon threw the air doing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what is a clip of an animated character doing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a game scene of a box figure doing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a minecraft character doing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is minecraft video doing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8940\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a young stoner try to demonstrate on his computer?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"proces\"\n  },\n  {\n    \"question\": \"who is exploring files on his computer?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is explaining how to import songs?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains how to use computer software?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about computers?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is working on a computer?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a boy exploring files on?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who tries to demonstrate a process on his computer?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"stoner\"\n  },\n  {\n    \"question\": \"what does a young stoner try to demonstrate a process on?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who talks about how to use a computer?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what do some one give?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is demonstrating how to perform certain functions on a computer?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"who is going through files on a computer?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person working on?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8941\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a girl in a sweater is attached while doing?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"slap\"\n  },\n  {\n    \"question\": \"what is a woman attacks another woman doing?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl talking on?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a woman talking on?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is talking on the phone?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking on a phone?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks on the telephone?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing with scissors?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who attacks another woman holding a phone?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking on the phone then gets attacked?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman speak on?\",\n    \"video_name\": \"video8942\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what is parking at a garage?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who is working on cars?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who works on a car?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a truck parking at?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"who is repairing the car?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a truck at a garage?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"parking\"\n  },\n  {\n    \"question\": \"what does a woman work on?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who lays under a car as she fixes it?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing mechanic work under?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a girl working on at a shop?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a woman performing on a vehicle?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"maintenance\"\n  },\n  {\n    \"question\": \"what is a girl working on a vehicle at?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"who is underneath a truck fixing it?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman performing maintenance work on?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does a woman roll under a car with?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"what is a woman working on?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a woman roll under with a skateboard?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is working on a vehicle at a shop?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing maintenance work on a vehicle?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing mechanic work under a car?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who rolls under a car with a skateboard?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing under a car?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a lady repairing?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is working on a vehicle?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman is underneath a truck doing?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is mechanic doing?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a truck doing?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a truck doing?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8943\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"tear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sportscaster doing?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking about football?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person lighting up?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"flame\"\n  },\n  {\n    \"question\": \"what pictures from a football game?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are on the field?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"sportsman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are two sportsman on?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is tearing apart the falcons for being awful in 2012?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the performance of an american football team?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is being tackled by another man in american football?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does sportscaster speaking on atlanta falcon winning?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"how many sportsman are on the field?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who makes fun of falcons?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lighting up a small flame?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"where are two sportsman?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a sports anchor talks about?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does man make?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is held?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"conference\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8944\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what do a person in black color dress wearing speaking?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is a man with an orange shirt jumping with a friend on?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"skyscraper\"\n  },\n  {\n    \"question\": \"what do a boy in black dress wearing speaking with other persons inside glass jumping displaying on screen?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what are two men testing the structural strength of on a very high platform?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do a person in black color dress wearing jumping inside glass cabin with other persons and yellow t shirt man sitting displaying on screen?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do a person in black color dress wearing cloth jumping inside with other persons and yellow t shirt man sitting displaying on screen?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"cabin\"\n  },\n  {\n    \"question\": \"who is a person wearing block dress jumping with?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what did two guys jump up and down in a glass elevator really high in?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"how many men jump on a pane of glass outside of a tall building to test if it is safe?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys jumped up and down in a glass elevator really high in the air?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are testing the structural strength of something on a very high platform?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men stand on a platform suspended high above the city?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a man with an orange shirt jumping with on a skyscraper?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who is working while wearing an orange shirt with his company logo on it?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does people standing on a glass observation deck and a man wearing a west coast label?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is guy in tshirt doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person in black color dress doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a boy in black dress doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man with an orange shirt doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is people stand in a tiny glass room that doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8945\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is a female journalist interviewing in a foreign language?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is having an interview in the night club?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do an anchor from a television station interviewing a man?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed by a reporter of television in a restaurant?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is a woman interviewing in a peach colored shirt in a busy restaurant?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many women are having an interview in the bar?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who interviews a man in an asian language?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed by a woman about the preparation he made?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who interviews a man in a crowded indoor area?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is interviewing an asian mas in a busy place?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady having?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"mike\"\n  },\n  {\n    \"question\": \"what are noodles kept in?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who is a lady talking with?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is having mike?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is talking with a boy?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are two women having in the bar?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are an both speaking a language from?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"orient\"\n  },\n  {\n    \"question\": \"what are two women having an interview in?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"what are an both speaking from the orient?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"language\"\n  },\n  {\n    \"question\": \"who is interviewing a man in a peach colored shirt in a busy restaurant?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is man having in the night club?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is the chef being interviewed by a reporter of television in?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who interviews a man wearing a peach shirt in a busy restaurant?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is interviewing a man in a foreign language?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"journalist\"\n  },\n  {\n    \"question\": \"what is asian man and woman doing?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a beautiful lady reporter doing?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a female journalist doing?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is an asian woman doing?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman interviews a man doing?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a peach shirt is interviewed by a woman doing?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is an anchor woman from a television station doing?\",\n    \"video_name\": \"video8946\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who are a man and woman talking to outside?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are a man and a woman talking to?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are discussing life?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is laughing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who does a man hold?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"wife\"\n  },\n  {\n    \"question\": \"what are three people discussing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what a man interviews?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who holds his wife?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does an older woman talk to?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what has failed to load?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who talks to a man?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a man consult outside?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who interviews an old couple?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to an older couple?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to an elderly couple?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who consults a woman outside?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking each other while one women seating beside one man?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is narrating a story about bond between a mother and a son?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are an old lady and two others doing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old couple doing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a middle aged man doing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a clip from a tv show doing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8947\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what are the character talking with to the military men in the hollywood movie?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what does a woman in white pants and a black shirt talk about?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are talking with the forest to the military men in the hollywood movie?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is speaking with another army man?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"who does a white man playing a black man convince that he doesn t know who he is?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what are two men with weapons talking to each other in?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what are two men with weapons doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who downey jr acts with ben stiller in a movie?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is clip from tropic thunder where to actors doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a black man doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an army man doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two persons of army doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are in the hollywood movie the character doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man discusses the plight of actors doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a white man doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do two men dressed in military fatigues carryout?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what do shots from a motion picture in where two people chat?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"how many men talks to each other while in the woods?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what talks to a man wearing military gear in a jungle?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"stiller\"\n  },\n  {\n    \"question\": \"who discusses the plight of actors playing mentally challenged roles?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many military men talk together about the role of a character in a movie called simple jack?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is ben stiller talks to a man doing?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is talking about a new movie that ben stiller starred in?\",\n    \"video_name\": \"video8948\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what does a woman dive off into a pool?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what does a woman jump off of into a pool?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"highdive\"\n  },\n  {\n    \"question\": \"what is a person jumping off in to a pool?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is a person jumping off a building in to?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who removes some clothes?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dives in to a swimming pool?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dives into a pool?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman dive into water from?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what do a women with red hair diving into a pool then taking off?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what does a woman shed part of?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"outfit\"\n  },\n  {\n    \"question\": \"what does a woman remove?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what does a woman dive into from a roof?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a woman dive off a roof into?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who is swimming underneath water which creates visually nice video?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is diving into a pool while wearing a dress?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who falls from a higher place swan diving into a pool of water?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who jumps off of a highdive into a pool?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dives off a roof into a pool?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is swimming in a pool with a black dress on?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dives from a balcony into a swimming pool below?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"statuesque\"\n  },\n  {\n    \"question\": \"what do a girl in black dress swimming inside water removing displaying on screen?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who is jumping off a building in to a pool?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who dives into water from a roof?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dives into a pool of water?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman with swimming suit plunging into?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman diving into while wearing a dress?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what do a lady in bikini dress and swimming under?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a statuesque woman dive from into a swimming pool below?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"balcony\"\n  },\n  {\n    \"question\": \"what does a woman jump off of a highdive into?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what do a girl in black dress swimming inside removing dress displaying on screen?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does woman with swimming suit get rid of?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a women with red hair doing?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is woman with doing?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a woman falls from a higher place swan doing?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a woman with long hair diving and then doing?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a lady in bikini dress and doing?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a woman dives into water from a roof and removes her dress underwater doing?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"reveal\"\n  },\n  {\n    \"question\": \"what is musician mariah carey doing?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a girl in black dress doing?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8949\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"living\"\n  },\n  {\n    \"question\": \"what appears to shake then a restaurant table is shown that also shakes?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"living\"\n  },\n  {\n    \"question\": \"what records an earthquake in a living room?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a video record in a living room?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"earthquake\"\n  },\n  {\n    \"question\": \"what is shown during an earthquake?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"living\"\n  },\n  {\n    \"question\": \"what is trying to video tape the living room with unsteady hands?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does not load?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is video clip of national geographic doing?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a living room shown during?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"earthquake\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is national geography channel doing?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a person presenting during earthquake?\",\n    \"video_name\": \"video8950\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what holds a red sign next to a lion holding a red sign?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what hops onto the screen with a subscribe logo a lion also jumps into the screen bumping the elephant out of the way?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what does an elephant hop onto the screen with a subscribe logo a lion also jumps into the screen bumping the elephant out of?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what does an elephant hop onto with a subscribe logo a lion also jumps into the screen bumping the elephant out of the way?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does an animated elephant and lion nudge each other for the camera s?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"attention\"\n  },\n  {\n    \"question\": \"what hops into screen followed by a lion?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what is a grey elephant jummpig across a crean witha sign that says subscibe a lion doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"butt\"\n  },\n  {\n    \"question\": \"what is an elephant hops onto the screen with a subscribe logo a lion also jumps into the screen doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"bump\"\n  },\n  {\n    \"question\": \"what is a very cute elephant doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what are a cartoon elephant and lion doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is an elephant holds a red sign next to a lion doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is cartoons animals doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is an elephant hops along doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a cartoon elephant walks around doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a elephant and a lion doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a an elephant doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a youtube channel doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are an elephant and a lion doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are in a cartoon a lion and an elephant doing?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"who are a lion and an elephant advertising to youtube in a cartoon?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"suscribe\"\n  },\n  {\n    \"question\": \"what does a cartoon elephant walk around holding a subscribe?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"button\"\n  },\n  {\n    \"question\": \"what are a lion and an elephant advertising to youtube suscribe in?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon elephant walk around holding?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"button\"\n  },\n  {\n    \"question\": \"what is a elephant and a lion playing together in?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what are an elephant and a lion standing on?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what hops along carrying a red box on their trunk?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what walks around holding a subscribe button?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"where is a elephant and a lion playing together?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what are a cartoon elephant and lion holding?\",\n    \"video_name\": \"video8951\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"who is having conversation with other lady?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what do two women sit in while doing makeup?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what do a beautician applying to a women in a running car?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is blonde woman doing?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman with glasses doing?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is blond girl in white shirt doing?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many women ride in a limousine?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two ladies doing?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a specs woman doing?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many women are sitting?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does one of the women apply to the other?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"how many ladies are talking?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking about makeup?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two women discussing about?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"appearance\"\n  },\n  {\n    \"question\": \"what is a woman in glasses applying to a blonde woman to prepare for the red carpet?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what do two women ride in?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"limousine\"\n  },\n  {\n    \"question\": \"what is a specs woman talking about?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what do two ladies make up?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"how many women are discussing about the appearance?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking about preparing another woman for the red carpet?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what are two ladies make up?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"how many women sit in a vehicle while doing makeup?\",\n    \"video_name\": \"video8952\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a game show host doing?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is family feud clip of the host doing?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is family feud game show doing?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is in a clip from a television game show the host doing?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is steve harvey doing?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is the audience doing?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is video of steve harvey doing?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what not loaded?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"harvey\"\n  },\n  {\n    \"question\": \"what fued steve harvey dances on the stage on the tv show?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what did family fued steve harvey dances on on the tv show?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is cheering during a game hosted by steve harvey?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does family feud clip of the host reacting to a player s?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"who is laughing in a clip from a television game show?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what did family fued on the stage on the tv show?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"harvey\"\n  },\n  {\n    \"question\": \"what did video of steve harvey laughing about an answer submit on?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is jumping up and down while the contestants and audience are laughing hysterically in a clip from a television game show?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"when are people playing a game show?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are people playing on stage?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do a tv show?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what show starring steve harvey?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what fued game show?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who do family feud game show starring?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"harvey\"\n  },\n  {\n    \"question\": \"who do a game show is laughing hysterically?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what show host is laughing hysterically?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what did family fued?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do people talk on?\",\n    \"video_name\": \"video8953\",\n    \"answer\": \"panel\"\n  },\n  {\n    \"question\": \"who talks to a group while in a large cloud then speaks to the camera at a red carpet event?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses the fashion of others at a social gathering?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a crowd of people doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"mingle\"\n  },\n  {\n    \"question\": \"what is the beautiful woman with black jacketblack hat and dark sunglasses doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a large group of people doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is young people are shown doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is one beautiful women doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is the lady is proabably a model doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is lots of people are gathered for and doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is there are many people with different outfits doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is here the model are gathered and one of them was interviewed by a news reporter doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is there is a black caped women doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with black coat doing?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who speaks to a camera for an interview outside?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a girl wearing hat with long hair with google beside?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"beside\"\n  },\n  {\n    \"question\": \"what does a woman talk to while in a large cloud then speaks to the camera at a red carpet event?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are a crowd of people mingling on?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a woman introduce a video from a fashion event and interviews a woman about?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"outfit\"\n  },\n  {\n    \"question\": \"what is the beautiful woman with black jacketblack hat and dark sunglasses explaining to?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are people walking in?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are gathered?\",\n    \"video_name\": \"video8954\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what do a group of people dance on?\",\n    \"video_name\": \"video8955\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who are children dancing on a beach with watching?\",\n    \"video_name\": \"video8955\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what do kids dance to a mickey show?\",\n    \"video_name\": \"video8955\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are kids dancing on?\",\n    \"video_name\": \"video8955\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are children dancing on with disney characters watching?\",\n    \"video_name\": \"video8955\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are mickey and minnie doing?\",\n    \"video_name\": \"video8955\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a group of teens doing?\",\n    \"video_name\": \"video8955\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video8955\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is girls get together in doing?\",\n    \"video_name\": \"video8955\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video8955\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who are watching people dance on surfboards?\",\n    \"video_name\": \"video8955\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"what is three men doing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is performing a song with acoustic instruments?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"how many guys sing an acoustic song?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is performing a song in a studio?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are a group of musicians doing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are guys doing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is footage of band rehearsing and doing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are a band of men doing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is sitting down?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what do three guys sing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does artist play?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays guitar?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"what are guys singing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is playing together in a studio?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"how many men perform?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men sing?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a band playing together in?\",\n    \"video_name\": \"video8956\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what does a video show then a basketball play?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who try to catch a ball?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what do two baseball players try to catch?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what shows a baseball catch then a basketball play?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who launches a ball?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who catches the ball?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who is catching a ball?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"what does basketball players dribble a ball and a man put his hands on?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"how many baseball players try to catch a ball?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are playing basket ball in a basket ball court?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a collage of various doing?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what is a man catching and doing?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a video of sports highlights doing?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some guy s doing?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the players doing?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are some guy s playing in a basket ball court?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what is a pitcher doing?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what amazing sports clips?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a baseball player launch?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a baseball player catch?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a pitcher catching?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are the players playing?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8957\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is on the floor?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"frame\"\n  },\n  {\n    \"question\": \"what is flying around?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is hovering?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is an object doing?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is an object doing?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"hover\"\n  },\n  {\n    \"question\": \"what is their was a craft of some sort doing?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"hover\"\n  },\n  {\n    \"question\": \"what is a bike frame on?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who does a camera rotate over?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"hovercopter\"\n  },\n  {\n    \"question\": \"who is showing some small helicopter?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what shows a drone while music plays?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is zoomed in on by a camera?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"hovercraft\"\n  },\n  {\n    \"question\": \"what does a video show while music plays?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"drone\"\n  },\n  {\n    \"question\": \"what flys around another drone on the floor?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"drone\"\n  },\n  {\n    \"question\": \"what is a hovercraft zoomed in on by?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what rotates over a hovercopter?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what pans around a black hovercraft?\",\n    \"video_name\": \"video8958\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is there is a man in red doing?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what are different people doing?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a guy in a red jacket doing?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a group of tourists doing?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is boat load of individuals doing?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what does a voyage group explain the wonders of they re taking?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"trip\"\n  },\n  {\n    \"question\": \"what do a group of people on a boat look at?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what do people stand on?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"deck\"\n  },\n  {\n    \"question\": \"what explains the wonders of the trip they re taking?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"voyage\"\n  },\n  {\n    \"question\": \"what are people standing on taking different photographs of other people in a smaller boat?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what do people watch some people move on the life boat to an ice mountain?\",\n    \"video_name\": \"video8959\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a british man doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a boy with glasses doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person in blue color dress doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in elegant blue suit doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person in black color dress doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two men in suits doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man with a blue suit doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a striped tie sits doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a blue blazer doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men speaking one man is wearing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what do a person in blue color dress wearing sitting speaking with other boy on topic discusing displaying on screen?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who discusses one and two party government systems?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"newsman\"\n  },\n  {\n    \"question\": \"who are two men speaking is wearing a suit?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is asking about international politics?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with black suit doing?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a british man in a blue shirt having with another man?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who do a british man in a blue shirt having a conversation with?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a british in a blue shirt having a conversation with another man?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are discussing the effects of reform between two particular political systems?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men dressed in business suits discuss world politics on a televsion news program?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did two men dress in business suits discuss on a televsion news program?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"how many men are speaking one man is wearing a suit?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a man with a blue suit talking to?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man in elegant blue suit talking in?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what do a person in black color dress wearing speaking sitting beside other boy walking displaying on screen?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what did two men dress in discuss world politics on a televsion news program?\",\n    \"video_name\": \"video8960\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who jumps on the trampoline?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is jumping on the trampoline?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does the boy flip on?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is a kid jumping on?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is a young boy jumbping on?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what does a boy jump on?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is a man bouncing in a bouncing net in?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"what is a child jumping on while explaining how to do a back flip?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"who is jumping on a trampoline while explaining how to do a back flip?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is teaching how to perform a backflip?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is bouncing in a bouncing net in a outdoor?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a little boy playing and doing?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"jumbping\"\n  },\n  {\n    \"question\": \"what is there is a little boy doing?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who flips on a trampoline?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is jumbping on a trampoline?\",\n    \"video_name\": \"video8961\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a doctor performing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"procedure\"\n  },\n  {\n    \"question\": \"who is administering medical treatment?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the doctor do?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"procedure\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is someone performing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"surgery\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what are medical professionals doing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"administer\"\n  },\n  {\n    \"question\": \"what is a doctor doing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"what are some doctors doing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"surgery\"\n  },\n  {\n    \"question\": \"who talks about a medicine?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a medical procedure?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a doctor doing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person administering?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"treatment\"\n  },\n  {\n    \"question\": \"who is performing a medical procedure?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who is performing surgery?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a procedure?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who do doctors treat?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"patient\"\n  },\n  {\n    \"question\": \"what are doctors perforing?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"procedure\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video8962\",\n    \"answer\": \"medicine\"\n  },\n  {\n    \"question\": \"what is a type of species?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is talking about someone named chop sticks and how he s territorial of his enclosure?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do sexy blonde in black top talking to?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a lady in a black tshirt doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is black t-shirt women doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women in black top doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is one women doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a redheaded woman doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman in black tops doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sexy blonde in black top doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a black shirt is enthusiastically doing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about food items in the kitchen?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is speaking about chopsticks as though a type of species is a living thing?\",\n    \"video_name\": \"video8963\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are young kids doing?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two kids doing?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are boys doing?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is boy and a girl doing?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a recording of a persons television doing?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a clip from a tv show doing?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"how many boys are talking to each other?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids are talking?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is in a comedy skit?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who prepares to leave for school?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what do the opening to a show on?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"nickelodeon\"\n  },\n  {\n    \"question\": \"how many boys are having a discussion?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a scene from a children s?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is laughing?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what does a kid prepare to leave for?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what are kids talking in?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are young kids talking in?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are children talking in?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are two boys having?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what are boys talking in?\",\n    \"video_name\": \"video8964\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is playing with a car inside?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is an attractive women with blonde hair and glasses playing with?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a girl wearing glasses feeding after making a click sound with a plastic toy?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is explaining how to train a cat with a clicker?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about how to train a cat using a clicker and food?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl having pink streaks on blonde hair feeding after making a click sound with a plastic toy?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who shows how to train a car with a clicker?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is a blonde woman playing with inside?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is the pet cat needs more attention of?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"owner\"\n  },\n  {\n    \"question\": \"who uses a clicker to teach a cat when it gets treats?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is needs more attention of the owner?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a woman with specs playing with?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a woman use a clicker to teach when it gets treats?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a woman use to teach a cat when it gets treats?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"clicker\"\n  },\n  {\n    \"question\": \"what does a woman with specs pay to the clicking sound?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"attention\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what does a woman in glasses snap?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what is an attractive women with blonde hair and glasses doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman with specs doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman with blonde and pink hair doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a women in a black out fit with pink and blond hair doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a blond lady in a black shirt doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a young women doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"click\"\n  },\n  {\n    \"question\": \"what is a blonde woman doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman with pink blonde hair and a pink streak doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a girl with pink hair doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is a blond haired woman doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a young woman talks about how to train a cat doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8965\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who do models in black colormulticolor tight dress taking?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"who shows several images of a woman?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what do a lady starring a mobile phone placing on?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a woman showing in various outfits?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"what does sexy brunnette picture being displayed on holding a phone?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who does a slideshow show several images of?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does sexy brunnette picture being displayed on screen holding?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a still image of girl with glass in her hand doing?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl in still photo doing?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is agirl posing in dress doing?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a slideshow of a woman doing?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who pictures being displayed on screen holding a phone?\",\n    \"video_name\": \"video8966\",\n    \"answer\": \"brunnette\"\n  },\n  {\n    \"question\": \"what is a man kicking a soccer ball into?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what is a man kicking into the goal?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who kicks a goal?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is video of people doing?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of men playing?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is shown with the player making a goal?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who shoots a goal during a soccer game?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who scores a goal inside an indoor soccer arena?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is soccer players doing?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is kicking a soccer ball into the goal?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who scores a goal?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a soccer player shoot during a soccer game?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what does a soccer player kick?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what do guys play?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what a man scores?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is playing soccer?\",\n    \"video_name\": \"video8967\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is performing maintenance on the brakes of a car?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on the wheel of a car?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who examines a car s wheel well and brake disc?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what has taking off the tire of a car to work on the brakes maybe?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man performing on the brakes of a car?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"maintenance\"\n  },\n  {\n    \"question\": \"what has someone taking off the tire of to work on the brakes maybe?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is working on a car rotor?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man examine s wheel well and brake disc?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who stands beside a motor part?\",\n    \"video_name\": \"video8968\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many broken phones are laying on a table?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who shows two nexus 7s with broken screens?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about the cell phones?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is explaining the features of mobile phones?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy with glasses doing?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is in the video a man doing?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are two broken phones doing?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is showing the audience something in the video?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two broken phones laying on?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who points at two broken screens?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing the audience something in?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is discussing phones?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows his broken screen nexus devices?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows his broken tablet screens?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing screens?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what have cracked screens?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"cell\"\n  },\n  {\n    \"question\": \"who is showing his phones?\",\n    \"video_name\": \"video8969\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is cutting something using the overlap method?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man showing the overlap?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"method\"\n  },\n  {\n    \"question\": \"who mark?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts rubber?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what does the man cut?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"tape\"\n  },\n  {\n    \"question\": \"what does a man cut?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"rubber\"\n  },\n  {\n    \"question\": \"what is a man installing?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"flooring\"\n  },\n  {\n    \"question\": \"what is man fixing?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does man explain?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is the person explaining?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who makes some measurements?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fixing a floor?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is removing tape from a plank?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts the tape?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes how to use a specific method?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man check with floor sheet?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"mark\"\n  },\n  {\n    \"question\": \"what is a man removing from a plank?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"tape\"\n  },\n  {\n    \"question\": \"who shows how to cut overlapping tape?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cutting using the overlap method?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is explaining how to fix something?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a man check the mark with?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who explains something on video?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man removing tape from?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"plank\"\n  },\n  {\n    \"question\": \"who is installing wood flooring?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who check the mark with floor sheet?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on the floor?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a mat?\",\n    \"video_name\": \"video8970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a man drive a car down?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a guy drive while a woman rides along with him?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a car down the road?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving while a girl sits as passenger?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car with a female passenger?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a car while a woman rides along with him?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is driving a car while a girl sits as passenger?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a couple travelling in a car doing?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a young man driving a high performance sport?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving with a female passenger?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drives a woman in his car then take?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive down the road?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what driving around?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what did the man drive?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who does a girl sit as?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"passenger\"\n  },\n  {\n    \"question\": \"who drove the vehicle?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits as passenger?\",\n    \"video_name\": \"video8971\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a few people doing?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what had extremely large characters?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are a group of people playing?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who tests to see if running will get him shot by spongebob?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video8972\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a stop motion animation of two drive interacting at?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"intersection\"\n  },\n  {\n    \"question\": \"what plays while phil collins sings?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"what is woman driving near the gray jeep?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a game of car parking and moving on road trafic light displaying on?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does two people in two different cars having a discussion over a phil collins?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is an animated clip of a guy in a sports car doing?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a stop motion animation of two drives doing?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is two cartoon cars doing?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a red animated car doing?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a video shows two cars doing?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a game of car parking and doing?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what plays while a man in a red car is at a stop light next to a silver van?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what shows two cars driving down the road while music plays?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does an animated red car sit near a silver animated mini then drives off?\",\n    \"video_name\": \"video8973\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"who does an indian woman bow before?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a lovely woman express to a handsome tall man?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"who does a girl with dark colored hair talk to?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does an indian woman then talk to?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a woman in a red and black dress talking to in a pull shirt with a book bag over his arm?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who then talks to a man?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who runs up to man who in blue shirt carrying backpack in a village?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks romantically to indian guy at basketball court?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is on a basketball court a nervous girl doing?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is it was a telugu movie where the heroine doing?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman in a red and black dress doing?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a woman with dark straight hair talking to in a sunny day?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman runs up to man who in blue shirt doing?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a woman with dark straight hair doing?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who bows before a man?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"stop\"\n  },\n  {\n    \"question\": \"what are man and woman having on a sunny day?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who stands surprised at the words of woman stands in front of him?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does indian girl talk romantically to indian at basketball court?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who stands in front of a women who talks to him in a foreign language?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are having conversation on a sunny day?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does indian girl talk romantically to indian guy at?\",\n    \"video_name\": \"video8974\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does an attractive woman describe?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who prepares side dishes?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes a recipe?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explains a recipe for a side dish?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows off how to make a recipe?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is making a nice fancy side dish?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is preparing an appetizer in the kitchen?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a preparation procedure in cooking?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving a cooking tutorial?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman in a kitchen give?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a woman cooking in?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is making a potato recipe?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman talks about a preparation procedure in doing?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen gives doing?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who demonstrates?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does woman prepare?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who is cooking in the kitchen?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8975\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt walking with down?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who went somewhere?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"boyfriend\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is walking home alone and with no one?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy with bag walk out of in a sad mood?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who walks with backpack and tennis raquet down the street?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks with a backpack on his back while music plays?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a dejected looking man wearing a blue shirt and backpack walk down stairs then along?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what is a man in a blue and white shirt walking down with a backpack?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man in a blue and white shirt walking down the street with?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"backpack\"\n  },\n  {\n    \"question\": \"what is a guy in a blue shirt walking down the street as?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt carrying?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"backpack\"\n  },\n  {\n    \"question\": \"what an indian man carrying a back pack exits?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"loarge\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt wearing a backpack walking away from?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does a man with a blue shirt and a backpack slung over one shoulder walk out of?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does a solemn man wearing a blue shirt with white long sleeves and a backpack walk away from?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a guy in a blue shirt walking down as music plays?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man with a blue and white shirt doing?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a sad man doing?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an indian man dressed in a light blue t-shirt with a back pack doing?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt doing?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a dejected doing?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man with blue and white shirt and backpack doing?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an indian man doing?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a guy in a blue shirt doing?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a solemn man doing?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a blue and white shirt doing?\",\n    \"video_name\": \"video8976\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of woman doing?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what are a room full of men and women doing?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is clip of people doing?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is men and women doing?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some guy s doing?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a room full of men and women dancing in?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"unison\"\n  },\n  {\n    \"question\": \"what are people shaking?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is a group singing?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who do the people do?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is singing a song?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are woman exercising with?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who are dancing in a dance class?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are dancing together in a room?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who are exercising with dance?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are some guy s dancing together in?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are women shown in dancing for exercise?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is women are shown in a room doing?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are woman doing?\",\n    \"video_name\": \"video8977\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a guy with a microphone singing to people?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man in black singing at a concert?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man in black singing a song at?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what do a male artist blows smoke in?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"reverse\"\n  },\n  {\n    \"question\": \"what is preforming on stage?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is an band preforming?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what plays a hard rock song?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what do others sing?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do other people play?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is person smoking while others sing a song?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"cigarette\"\n  },\n  {\n    \"question\": \"what cigerete dinking wine dancing playing music singing displaying on screen?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what do a person smoking cigerete dinking wine dancing playing displaying on screen?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what do a person smoking cigerete dinking playing music singing displaying on screen?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"dancing\"\n  },\n  {\n    \"question\": \"what is an live event organised by destiel band and the song shine bright like?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"diamond\"\n  },\n  {\n    \"question\": \"who is smoking a cigarette while a band plays a hard rock song?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown as a male artist blows smoke in reverse?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is smoking a cigarette while others sing a song?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who smokes a cigarette and the rest of his band rock out during a concert?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy in a black shirt singing to people?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is preforming diamonds in the sky on video with lyrics?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is performing in a music video in front of an audience?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man smoking while a band plays a hard rock song?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"cigarette\"\n  },\n  {\n    \"question\": \"what does a man smoke a cigarette and the rest of his band placeholder placeholder out during?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what do a man at a bar with a beard blow cigarette dance to?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"what is group of men in all black doing?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is members of a rock band doing?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8978\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a vine shown showing highlights?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what highlights are shown to hip hop?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who make jump shots?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is shown showing sport highlights?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what does basketball highlight are shown to?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"hop\"\n  },\n  {\n    \"question\": \"what play basketball and soccer?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what do basketball players make?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what do school teams play?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are playing?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what shows a few clips from sports vines?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a vine shown?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are basketball sports clips doing?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is baseball players doing?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a vine is shown doing?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is this is a video about subscription to doing?\",\n    \"video_name\": \"video8979\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"who are posing to the above photo?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"cub\"\n  },\n  {\n    \"question\": \"who does a baby tiger grow up to be?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"what are posing in various locations while a song plays?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"what is playing while different pictures of tigers are displayed?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who grows up to be a vicious tiger?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"who are laying on the branch and grass?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are there is small tiger and group of tigers doing?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are sitting?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are a baby tiger and a tiger in?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what are baby tigers doing?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is the song eye of the tiger doing?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are small tiger cubs doing?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what are a cub doing?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is images of several tigers doing?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video8980\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who did several flips?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young woman doing hand stand outside?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who performs physical tricks?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does cartwheels on lawn?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who cartwheels?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does girl do?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"cartwheel\"\n  },\n  {\n    \"question\": \"who is doing gymnastics?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is doing a cartwheel?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does two cartwheels and a handstand?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is doing cartwheels outside in the yard?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does gymnastic flips around in a grassy yard?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does cart wheels and other gymnastic moves on the lawn?\",\n    \"video_name\": \"video8981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is ridding a car?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man open while driving?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man ridding?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car sliding across?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is driving a car?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone driving?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person driving?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is sliding across snow?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man test the brakes on?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone opening to show the snow?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who tests the brakes on his car?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is opening the door to show the snow?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a man driving on a road cover in?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a close-up of somebody doing?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a greyish colored cat doing?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who opens door while driving?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is driving?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video8982\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a couple of people in a big room each of them doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two men working on the computers in?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who is explaining the men on the screen?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"instructor\"\n  },\n  {\n    \"question\": \"what is a man in rose tshirt walking in?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what does a person take to the few peoples on the class?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"seminar\"\n  },\n  {\n    \"question\": \"what are many students working on their computers in?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what do a person in white color dress wearing speaking on topic white board explayning and many persons sitting on computer person explayning?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do standing in front of a computer adjust wires behind?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what are the men sitting in?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is talking about his experience in college and his goals after?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are few people talking about?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what are a group of people in?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"how many men are sitting?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is the instructor explaining the men on?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a person in white color dress wearing speaking on topic white board explayning and many persons sitting on computer person teaching?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is in a corner an adult leans an arm on a brown desk and looks over the shoulder of a child doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man discusses his education in computer and technology while doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who looks over the shoulder of a child using a gray keyboard and a black screen with white text?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"adult\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person in white color dress doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man in red shirt doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in rose tshirt doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are many students doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is people in school at the computer lab doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are few people doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many men are working on the computers in a classroom?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who takes some seminar to the few peoples on the class?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a young man who is a student in a computer science program doing?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who leans an arm on a brown desk?\",\n    \"video_name\": \"video8983\",\n    \"answer\": \"adult\"\n  },\n  {\n    \"question\": \"who is explaining while cooking some dish involving potatoes and broccoli?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking adding potatoes and broccoli to a saute?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who adds potatoes to a frying pan?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about how to cook something?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman add potatoes to pan?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"who cooks in frying pan?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person cooking in a pan?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who adds potatos to a pan?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman add to a pan?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking a vegetable dish in a pan?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is this doing?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"saute\"\n  },\n  {\n    \"question\": \"what is a woman cooks in doing?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8984\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who wear sitting on chair?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an asian man in a suit talk about?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"how many men are sitting?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a black suit man talking from?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is telling some thing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a two men talking in?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man telling?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is dressing well?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy in a suit sitting in?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what do man in formal wear sitting on?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who wears a suit and talks about business?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a gentleman representing a corporation speak to?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a nicely dressed young man doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in formal wear doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is some expert doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a two men doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a man wears black coat doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a gentleman speaking in chinese and doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"represent\"\n  },\n  {\n    \"question\": \"what does a gentleman speaking in chinese speak to?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a black suit man doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who wears black coat talking something to media?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking in the room?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about some aspects of semiconductors?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy in a suit doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young man with black suit doing?\",\n    \"video_name\": \"video8985\",\n    \"answer\": \"expres\"\n  },\n  {\n    \"question\": \"what does ryan adams?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"tyga\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is an anchor doing?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is man talks about doing?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is reporting news?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man reporting?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"what is an anchor telling?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is telling the news?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"anchor\"\n  },\n  {\n    \"question\": \"what does man talk about?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what adams talks about tyga?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"ryan\"\n  },\n  {\n    \"question\": \"what does a host ask for?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"subscription\"\n  },\n  {\n    \"question\": \"who is reporting entertainment news?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking about public figures?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who talks about dancing performance?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does ryan adams talks about?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"tyga\"\n  },\n  {\n    \"question\": \"who asks for a subscription?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who promotes another video?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a dance performance?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about entertainment news?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a host promote?\",\n    \"video_name\": \"video8986\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a woman with pink hair doing?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a woman describes towels she doing?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"pack\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is in a bedroom a girl doing?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"towel\"\n  },\n  {\n    \"question\": \"who is folding some cloths?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl showing the camera a towel in?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"who is showing the camera a towel in a bedroom?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman with pink hair?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"laundry\"\n  },\n  {\n    \"question\": \"what is a woman describing?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"towel\"\n  },\n  {\n    \"question\": \"who is folding towels?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a towel?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about towels?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman folding towels in?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is folding up some towels?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who shows off towels?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is describing a towel?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video8987\",\n    \"answer\": \"towel\"\n  },\n  {\n    \"question\": \"what is there is a boy who falls while doing?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a man tries doing?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a man in shorts doing?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what crashes?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who then falls?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"heavyset\"\n  },\n  {\n    \"question\": \"what does a man try surfing in?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"puddle\"\n  },\n  {\n    \"question\": \"what fail clips?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"compilation\"\n  },\n  {\n    \"question\": \"what do kids skim on the water?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what do kids skim board on?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a car flipping over on?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what included several bloopers?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who tries to surf in a puddle?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who surfs on a mud puddle?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"heavyset\"\n  },\n  {\n    \"question\": \"what flips?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is flipping over on the road?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who tries surfing in a puddle?\",\n    \"video_name\": \"video8988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a musical group doing?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a musical group playing and people doing?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is group doing?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a band composed of older gentlemen doing?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what plays a song to dancers?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is a person doing something with?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what is a person doing with glass?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what show with dancers?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays at a concert?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is doing something with glass?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what plays country music?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a band play at?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a band play?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is performing for dancing people?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a man playing in a stage?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"guitor\"\n  },\n  {\n    \"question\": \"when is a man playing guitor?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is playing guitor in a stage?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when do a band of mature men play?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video8989\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are mum and daughter doing?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a female kid and her mother doing?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a mom and daughter doing?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a mother and daughter doing?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what are a woman and a girl doing?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are an asian mother and daugther doing?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman and a young girl doing?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"what did a woman and a young girl wake down?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do women walk down?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"district\"\n  },\n  {\n    \"question\": \"what are mum and daughter standing in?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who had a nice handbag?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are standing in a street?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"daughter\"\n  },\n  {\n    \"question\": \"what do an asian mother and daugther then stop to talk to?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are a woman and a girl walking along?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are an asian mother and daugther walking down?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are a mom and daughter walking around around?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"who does a woman giggle iwth?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what did the girl have?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"handbag\"\n  },\n  {\n    \"question\": \"what are people walking down?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do a group of people walk down?\",\n    \"video_name\": \"video8990\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a slideshow shows pictures of various objects doing?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is a toy radio doing?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a picture of people doing?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is there is a doing?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"weigh\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the items for?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"advertising\"\n  },\n  {\n    \"question\": \"what is a toy radio playing?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what is advertisement going on?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is playing a song?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"radio\"\n  },\n  {\n    \"question\": \"what is going on screen?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"who is talking about a product?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a pictures of vary being shown?\",\n    \"video_name\": \"video8991\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy in white color dress doing?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a boy in white color dress wearing speaking on topic discusing seeing board explaying displaying on screen?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is a guy on stage doing?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a speaker at a tedx conference doing?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is this is a ted talk with a gentleman doing?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man on a stage doing?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who gives a lecture to a large group about patterns in nature?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man on a stage talking to?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a man teaching on the stage with mike?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man explain with a screen?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what does a young man give with a screen behind him?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what is man talking about his latest project on?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is person talking about on the big screen?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what does a man give to a large group about patterns in nature?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"who is talking about his presentation on the big screen?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man explain some thing with?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is talking about his latest project on the screen?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining the screen that is projected to the audience?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a boy in white color dress wearing cloth standing speaking on topic discusing seeing displaying on screen?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"who gives a presentation with a screen behind him?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a presentation at the ted talks?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining finding patterns commonly found in biology while standing in front of an audience on stage?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about how a common biological pattern is formed?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is teaching something on the stage with mike?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a presentation concerning a pattern existing in the years on a chart?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man on a red light stages speaks to?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a man wearing khakis and a dress shirt demonstrating ideas to?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what did a man stands on a large red light?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a speaker at a tedx conference talking about?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"biology\"\n  },\n  {\n    \"question\": \"who is explain some thing with a screen?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about something in board?\",\n    \"video_name\": \"video8992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what appears on a white background?\",\n    \"video_name\": \"video8993\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is a logo doing?\",\n    \"video_name\": \"video8993\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is the ted ideas worth doing?\",\n    \"video_name\": \"video8993\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is the graphics for the company have doing?\",\n    \"video_name\": \"video8993\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are the three purple dots doing?\",\n    \"video_name\": \"video8993\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video8993\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is played while music is played?\",\n    \"video_name\": \"video8993\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"who is red and black text displayed as an ad for?\",\n    \"video_name\": \"video8993\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"what are animated and edited frames shown for?\",\n    \"video_name\": \"video8993\",\n    \"answer\": \"promotion\"\n  },\n  {\n    \"question\": \"what scene many persons sitting beside drinking wine speaking smoking on topic displaying on screen?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are many men with facial hair drinking?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"wine\"\n  },\n  {\n    \"question\": \"what do a group of men in old fashioned clothing sit around?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are many men with facial hair speaking one man is?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what persons sitting and drinking speaking displaying on screen?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who are many men with facial hair speaking is smoking?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what scene in which people are talking about bribing congress?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what many persons sitting beside table and speaking smoking drinking discusing on topic displaying on screen?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"how many men discuss bribes and the legality thereof in their current situation?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what is a movie scene many persons doing?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a movie scene persons doing?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who sits?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do men all sit at?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are a movie scene in which people doing?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are many men with facial hair doing?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a group of men with facial hair all speaking together in?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a scene from a movie doing?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is three men with mustaches doing?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of men with facial hair are all doing?\",\n    \"video_name\": \"video8994\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are two large breasted women lounging in lingerie and a bikini as?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who pose on the ground and a couch?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"bikini\"\n  },\n  {\n    \"question\": \"what the woman models lying on a couch and the ground?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"bikini\"\n  },\n  {\n    \"question\": \"what does a pretty woman in underwear lie down on?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what does beautiful women wearing bikinis and a man sing in?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what pose laying down while rock music plays in the background?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"bikini\"\n  },\n  {\n    \"question\": \"what is brunette woman in white lingerie having?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"session\"\n  },\n  {\n    \"question\": \"who models the bikini lying on a couch and the ground?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women were lying wearing under garment showing fashion show?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is lying down on a couh?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is bikini clad models pose doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is there is a hot and sexy lady doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is women pose for a camera in doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are two large breasted women doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"lounge\"\n  },\n  {\n    \"question\": \"what is a seductive collage of women doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is the woman models the bikini doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is compilation of pinup models doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a woman with doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is beautiful women doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what were two women doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is modle doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what does music play in?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what does rock music play in?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a woman lying down on?\",\n    \"video_name\": \"video8995\",\n    \"answer\": \"couh\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a news program talks about the charleston church doing?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a youtube clip doing?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is cnn news report doing?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cnn report doing?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"focu\"\n  },\n  {\n    \"question\": \"what occurred at a church?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what is a man doing on a church shooting?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"newscast\"\n  },\n  {\n    \"question\": \"who reports on a shooting tragedy?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"what do cnn news report talking about shooting?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"charleston\"\n  },\n  {\n    \"question\": \"what report talking about charleston church shooting?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a man doing a newscast on shooting?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"what are reporters giving a physical description of?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"shooter\"\n  },\n  {\n    \"question\": \"who is doing a newscast on a church shooting?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting up police tape?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows police officers outside a crime scene?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"what covers a shooting?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what does a news story cover?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what is a man putting up?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"tape\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a terrible shooting occur at?\",\n    \"video_name\": \"video8996\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"who s song using colors?\",\n    \"video_name\": \"video8997\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what teaches the colors?\",\n    \"video_name\": \"video8997\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is teaching children colors?\",\n    \"video_name\": \"video8997\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what does an animated kid s?\",\n    \"video_name\": \"video8997\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is an animation doing?\",\n    \"video_name\": \"video8997\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is an animated kid s song doing?\",\n    \"video_name\": \"video8997\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is an animated 3d clip doing?\",\n    \"video_name\": \"video8997\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a group of cartoons doing?\",\n    \"video_name\": \"video8997\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who sings about the sea and sky in a cartoon television show?\",\n    \"video_name\": \"video8997\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do an animated film with a green paint bucket and blue paint?\",\n    \"video_name\": \"video8997\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what are a group of girls doing?\",\n    \"video_name\": \"video8997\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is playing pokemon?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a video game character wearing?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"who does ash approach?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what then runs away from a video game scene?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"ash\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a guy playing?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who narrates over footage of a video game being played?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a guy playing as ash from pokemon battle?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is the voice of a video game player looking for?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who appears in the pokemon game?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"nidoran\"\n  },\n  {\n    \"question\": \"what has the voice of a video game player just finished?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"level\"\n  },\n  {\n    \"question\": \"what is a video game scene going on of?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"pokelon\"\n  },\n  {\n    \"question\": \"what approaches a wild pokemon?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"ash\"\n  },\n  {\n    \"question\": \"what is playing a pokemon gameboy game?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the voice of a video game player has just finished a level and doing?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video8998\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl standing in?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman standing in?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a girl near?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is displayed in the video?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"who is standing in the water?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is near a beach?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is in a yellow bikini?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman posing on the beach in?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"swimsuit\"\n  },\n  {\n    \"question\": \"what is a woman posing on in a swimsuit?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what does a girl stand by wearing an orange bikini top?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is posing on the beach in a swimsuit?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stands by some water wearing an orange bikini top?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who made a compilation of photos of actresses?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl stands by some water doing?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is hot woman doing?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a model displayed in?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is looking sexy?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is list pictures of girls doing?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video8999\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl in a bathing suit in an instructional video on doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman in swimwear doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman is in a bathing suit doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"position\"\n  },\n  {\n    \"question\": \"what is session is started by doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman demonstrates how to wear protective gear in doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"tan\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman is in a blue tanning booth and another woman in voice over doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is a woman in a bathing suit doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what is there is a woman in bikini doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a caucasian lady doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman in a black and white bikini demonstrates proper doing?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who gives step by step instructions on how to operate a spray tan booth?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes how to operate a tanning booth?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person in a bikini doing something with?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what is a person in a bikini doing with a device?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a woman wearing bathing suit stand on?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what does woman with head cover and with little dress demonstrate?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"procedure\"\n  },\n  {\n    \"question\": \"what does a woman wearing bathing suit raise arms in?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"booth\"\n  },\n  {\n    \"question\": \"who demonstrates how to wear protective gear in tanning salon?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is in a blue tanning booth?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating how to operate a tanning machine?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is started by holding hand in front of a start sensor and place eye wear?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"session\"\n  },\n  {\n    \"question\": \"what is a woman in a bathing suit stepping into tanning booth?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what does a woman give by step instructions on how to operate a spray tan booth?\",\n    \"video_name\": \"video9000\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"blend\"\n  },\n  {\n    \"question\": \"what is cut?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"drill\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"drill\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what does a person inserts a hand mixer into a hole in a watermelon s?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"pulp\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who uses a hand mixer to puree the inside of a watermelon?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who grinds up the inside of a watermelon?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"who is preparing a dish with a watermelon?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who uses a blender inside a watermelon?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person use a hand mixer to puree the inside of?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what do a person drills inside a square hole in?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what does a person use to puree the inside of a watermelon?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"what is someone cutting?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what does a person grind up the inside of?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what is a person preparing with a watermelon?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a person preparing a dish with?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"who is mixing something inside a watermellon?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person grinds up the watermelon s?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"pulp\"\n  },\n  {\n    \"question\": \"what is used as a bowel?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is cutting a watermelon?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making a watermelon drink?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person drilling into?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"watermelon\"\n  },\n  {\n    \"question\": \"what is someone mixing inside a watermellon?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is drilling into a watermelon?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a water melon used as?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"bowel\"\n  },\n  {\n    \"question\": \"who is someone mixing something inside?\",\n    \"video_name\": \"video9001\",\n    \"answer\": \"watermellon\"\n  },\n  {\n    \"question\": \"what is group of horses doing?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is horse racers doing?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is intense horse doing?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a horse race the jockey in blue and the one in black doing?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"vie\"\n  },\n  {\n    \"question\": \"what is horse jockey s doing?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man is excitedly doing?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"what are riding their horses on the grass?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what racers jumping hurdles in a race?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are group of people riding their horses on?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what does horse racers jumping hurdles in?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do the horses jump?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"obstacle\"\n  },\n  {\n    \"question\": \"what did horse race and around many croud in?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are a horse race the jockey in blue and the one in black vying for?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who take their horses for an offtrack hurdle race?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is excitedly announcing a horse race as the horses jump over hedges and come towards the finish line?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man excitedly announcing as the horses jump over hedges and come towards the finish line?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is a steeple chase horse race that is very dramatic narrated by?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"sportscaster\"\n  },\n  {\n    \"question\": \"who s racing on a grassy track with an announcer commentating?\",\n    \"video_name\": \"video9002\",\n    \"answer\": \"jockey\"\n  },\n  {\n    \"question\": \"what is a red jersey man doing?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a critic doing?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two men are competitively doing?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a two men doing?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two men compete in a game of table tennis by vigorously doing?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"volley\"\n  },\n  {\n    \"question\": \"how many men are playing an intense game of ping pong the player in the green wins?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are playing a game of ping pong?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men compete in a game of table tennis by vigorously volleying the ping pong ball over the net?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are playing a table tennis game?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a pair of men play a ping pong match in?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"how many men compete against one another in a game of table tennis?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is giving commentary about a paddle and ball game being played by two men on a table?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in red shirt doing?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is two players doing?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a red jersey man playing a with?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are two men playing a game of?\",\n    \"video_name\": \"video9003\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"what are added to 3650 degree f?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is being fried in a?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person using to mix some food?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who pan?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is in the kitchen someone doing?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is someone taking the food out to using spoon?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman is doing?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are baked to 3650 degree f?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is someone cooking in the white pan?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman take something from a hot pan in with a red spoon?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who cooks food in a white pot on the stove?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is is frying a dish in the non stick pan?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a pan browns small peices of that are laddled into another dish?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a woman take from a hot pan in the stove with a red spoon?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who prepares a stove top casserole with onions and potatoes?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who takes something from a hot pan in the stove with a red spoon?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who later places potatoes on the same?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying meat in a pot then put the meat in a bowl?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking or placing the food in a white bowl in the kitchen?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cooking or frying potatoes in the kitchen?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what someone is cooking or frying potatoes in?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what did a person taking food item out from panl and put in the serving pot than put in to pan?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person frying in a pot then put the meat in a bowl?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is taking the food out to another plate using spoon?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone taking out to another plate using spoon?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is using a red spoon to mix some food?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a women stir meat cubes in a hot pan on then throws in some onions?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is cooking food in the white pan?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what someone is cooking or placing the food in a white bowl in?\",\n    \"video_name\": \"video9004\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is tv show graphic with song whip and nae nae doing?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is displaying?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"title\"\n  },\n  {\n    \"question\": \"what is sun doing?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"reflect\"\n  },\n  {\n    \"question\": \"what is a title doing?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a song doing?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a short video clip for a music video doing?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who did a video about kap?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"warrior\"\n  },\n  {\n    \"question\": \"what about kap warrior?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is shown with the words kap warrior with a song playing?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what showcasing electronic music with a logo on the center of the screen?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what did a music video showcasing electronic music with on the center of the screen?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"logo\"\n  },\n  {\n    \"question\": \"what pulsates in time to a song?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"logo\"\n  },\n  {\n    \"question\": \"what pulses in front of the ocean?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"logo\"\n  },\n  {\n    \"question\": \"what did a music video showcasing with a logo on the center of the screen?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"when is the lake tranquil?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"sunset\"\n  },\n  {\n    \"question\": \"what plays to a warrior show intro?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"hip\"\n  },\n  {\n    \"question\": \"what is tranquil at sunset?\",\n    \"video_name\": \"video9005\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"who is cooking pork and noodles while describing how to do there?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl and a bowl spoon doing?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is in a kitchen person doing?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a cook doing?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman chef doing?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person frying up in a pan?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman chef cooking pork in?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"what is person cooking on the pan in a kitchen?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is frying up some meat in a pan?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using orange tongs to stir meat?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do cooking show frying pork in pan on the stove?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who is grilling the meat using big tool on a pan?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what show frying pork in a fry pan on the stove?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is toasing chicken pieces in a pan in a kitchen?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking the meat on the pan in a kitchen?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman use tongs to turn over in a frying pan on a stove top?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"who uses tongs to turn pork over in a frying pan on a stove top?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what does a woman use tongs to turn pork over in pan on a stove top?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"what is person cooking the meat on the pan in?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do cooking show frying in a fry pan on the stove?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is being fried in a black pan?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman chef cooking in a skillet?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what do cooking show frying pork in a fry pan on?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is person grilling using big tool on a pan?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is being fried in the pan by someone?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"who is using tongs to mix up some meat?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman toasing chicken pieces in a pan in?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a girl and a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is cooking pork in a skillet?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person using to stir meat?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is a woman cooking while describing how to do there?\",\n    \"video_name\": \"video9006\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what purchases an item at a local festival?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what discusses items coats and items have bought at a craft fair?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who records his family asking about items people bought at a fair?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a group of people waiting for?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is filming other people outdoors?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man record asking about items people bought at a fair?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who carries the cast iron?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is holding a metal box?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do people hang out at?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"fair\"\n  },\n  {\n    \"question\": \"what does the girl carry?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"cast\"\n  },\n  {\n    \"question\": \"what is a girl holding?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man records his family doing?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a man from the army doing?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is several people at fair doing?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some girls doing?\",\n    \"video_name\": \"video9007\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"who is putting paper in a pan?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman walking through a cake recipe?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is some dough put in?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is put in a bowl?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who is talking about some food?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who demonstrates how to prepare food?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is a woman putting in a pan?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a woman preparing for a cake?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"tin\"\n  },\n  {\n    \"question\": \"who is walking the audience through a cake recipe?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing a tin for a cake?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is arranging dish in a kitchen?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining how to prepare a cake tin?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman preparing a tin for?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"who is teaching how to prepare a dish?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who discusses how to make some food dish?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a helpful video for anyone doing?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9008\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what kisses the woman on the cheek?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a female in?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who gives a kiss to a girl in a pink top?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are an indian couple talking with?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what are a man and a woman sitting in?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what do a man and woman talk in?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who kisses his woman good bye?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a girl?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kissing the girl?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are talking with no sound?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what does a man give to a girl in a pink top?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who leaves?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who bends over?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is man in bed doing?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are an indian couple doing?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in a bed?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who does a man kiss?\",\n    \"video_name\": \"video9009\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a male voice over talks as a computer game with zombies play on?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what live video game home screen shows available options while zombies in the background walk towards the entrance to an arena?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"xbox\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a male voice-over doing?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"conclude\"\n  },\n  {\n    \"question\": \"what is the men doing?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what is a young man is prepared to play the video game dead doing?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"rise\"\n  },\n  {\n    \"question\": \"what is the video game dead doing?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"rise\"\n  },\n  {\n    \"question\": \"what generated zombie looking people walk slowly by a polished building as a young man talks in the background?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is prepared to play the video game dead rising two on the xbox 360 console?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is computer generated zombie doing?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is about a person descibing a video game for windows?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what narrating a video game in the image?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what do an xbox live home screen shows available options while zombies in the background walk towards the entrance to an arena?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do an xbox live video game shows available options while zombies in the background walk towards the entrance to an arena?\",\n    \"video_name\": \"video9010\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is eating?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are a man seated at by a river?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what are a man seated at restaurant windows by?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"who do a lady in the sleeveless dress sitting opposite to?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are seated at restaurant windows by a river?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a women in black dress explaining about?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who do robert downey jr in a movie talking to while he is eating?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who do a girl in sleeveless dress speak to?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are a man and a lady on a date at a table grabs the mans tie?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what jr in a movie talking to a lady while he is eating?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"what is a gentleman with black court explaining about?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man an a woman doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a women in black dress doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is blond woman doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a blonde woman and a man doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a gentleman with black court doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is beautiful blonde lady doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a lady in the sleeveless dress doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman with brown hair doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl in sleeveless dress speak to a man and doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a blonde woman in a black shirt doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is robert downey jr in a movie doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cute woman with brown hair doing?\",\n    \"video_name\": \"video9011\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"flirt\"\n  },\n  {\n    \"question\": \"what does the girl knock on?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a girl lying in?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a girl playing on?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a girl look down at?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"cast\"\n  },\n  {\n    \"question\": \"what is a girl laying on smiling?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what do a woman smiling and know?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"who is in bed with an injured leg?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a trailer for a movie with a girl doing?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what does a girl in bed knock on?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who lays in bed?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"who is knocking on the wall?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a teenage girl knock on?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does a teenage girl lay in?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a girl knocking on?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is lying in bed?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what a girl taps on at night?\",\n    \"video_name\": \"video9012\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what did basketball game set to?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what set to music?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what highlights of players scoring?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what players scores an easy two points?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who dribbles past his opponent?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is made in a basketball game?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"how many teams are playing basketball?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who plays basketball on the court?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a basketball player hit a fade away?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"jumper\"\n  },\n  {\n    \"question\": \"who hits a fade away jumper?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do players take?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"gol\"\n  },\n  {\n    \"question\": \"what is kissing?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is player doing?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is basketball players doing?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is basketball highlights of players doing?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"who are running around?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who does a basketball player dribble?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what are two teams playing?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is players doing?\",\n    \"video_name\": \"video9013\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is a cartoon helicopter doing?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a cartoon plane doing?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a game depicts a helicopter doing?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game with a helicopter doing?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animated helicopter doing?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a cartoon of a helicopter doing?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what vieo game?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"patrol\"\n  },\n  {\n    \"question\": \"what did tools help?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"community\"\n  },\n  {\n    \"question\": \"what depicts a helicopter flying over trucks?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a game depict flying over trucks?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"who plays a children s video game?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person play a children s?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a computer online game?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a cartoon helicopter carry to trucks?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what carries fruit to trucks?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is flying in the sky?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is an animated helicopter flying in?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is a cartoon helicopter flying in?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"who plays an app game?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a helicopter drop items into?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does pet patrol vieo?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what drops items into a car?\",\n    \"video_name\": \"video9014\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is a picture of multiple hamburgers is shown with french fries doing?\",\n    \"video_name\": \"video9015\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video9015\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is a burger with its been placed in the plate?\",\n    \"video_name\": \"video9015\",\n    \"answer\": \"ingredient\"\n  },\n  {\n    \"question\": \"what plays while different hamburgers are shown?\",\n    \"video_name\": \"video9015\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many different cheeseburgers are displayed two with yellow american cheese and one with swiss cheese then only one cheeseburger with yellow american cheese is shown?\",\n    \"video_name\": \"video9015\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who has cheese pickle and mayonnaise?\",\n    \"video_name\": \"video9015\",\n    \"answer\": \"burger\"\n  },\n  {\n    \"question\": \"what are three different cheeseburgers displayed two with yellow american cheese and one with then only one cheeseburger with yellow american cheese is shown?\",\n    \"video_name\": \"video9015\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what with stuffed with vegetables and cheese on a picture of multiple hamburgers?\",\n    \"video_name\": \"video9015\",\n    \"answer\": \"burger\"\n  },\n  {\n    \"question\": \"what are burger with more vegetables kept in?\",\n    \"video_name\": \"video9015\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who has lettuce tomatoes and onions and the fries next to jazz music?\",\n    \"video_name\": \"video9015\",\n    \"answer\": \"burger\"\n  },\n  {\n    \"question\": \"who is with many ingredient its been placed in the plate?\",\n    \"video_name\": \"video9015\",\n    \"answer\": \"burger\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do a young man and a young woman carry on a conversation on?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are the youths doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a film clip doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a shirt less boy and girl doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is two couples doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a shirtles man talking to a girl on?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what does a film clip showing leonardo dicaprio sitting on with a beautiful woman?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what plays while young people spend time on a beach?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many people seems to be in a very happy mood as they are running around all over the place?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to a girl on a beach?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a shirtles man talking to on a beach?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are the youths enjoying with their sunbath in the sea shore?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"journey\"\n  },\n  {\n    \"question\": \"what is a scene from a movie shows a man and a woman doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is lying down outside on a beach?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a shirtles man doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"who is a person chasing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many people are running?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what do young people spend time on?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is girl and boy in with stick in their hands?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is chasing another person?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is laying on the beach?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are the man and woman running enjoying on?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"when do young people spend on a beach?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"who is in the water with stick in their hands?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many people are running around all over the place?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are some people enjoying in the beach and some in?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what are a shirt less boy and girl laying on?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"how many people are in romantic mood?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a woman laying on?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are all persons playing in?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what are all persons wearing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"bikini\"\n  },\n  {\n    \"question\": \"what are a girl and a boy doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some men & women doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is girl and boy running and doing?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what do a young man and a young woman carry on on a beach?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are two people in?\",\n    \"video_name\": \"video9016\",\n    \"answer\": \"mood\"\n  },\n  {\n    \"question\": \"what is a man rides on a strange doing?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a drag doing?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is in the bike race one blue shirt rider s bike suddenly repair then two helpers doing?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a man on a drag doing?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man in a spider man custom doing?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is spiderman has his own batmobile but it shortly breaks down after doing?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a man in a spiderman inspired race suit drag doing?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does one blue shirt rider s suddenly repair then two helpers pushing the bike to the safety place in the bike race?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who has his own batmobile?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"spiderman\"\n  },\n  {\n    \"question\": \"who is driving his motorbike fast?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on the bike?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"racer\"\n  },\n  {\n    \"question\": \"who is having problems on the race?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man on a motorcycle speed on?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what did a man in a spiderman inspire race suit drag racing?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding a vehicle while being pushed back by 2 men?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what did a man in a spiderman inspire drag racing a motorcycle?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who looks like spider man riding a odd looking motercycle?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who looks like spider man being pushed back by pit crew?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is being pushed on a motor cycle outside?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"spider\"\n  },\n  {\n    \"question\": \"who is being pushed back on a racing bike?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the racer on?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is the man having problems on?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is the man driving fast?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what does spiderman have?\",\n    \"video_name\": \"video9017\",\n    \"answer\": \"batmobile\"\n  },\n  {\n    \"question\": \"what does a basketball player make?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"what did a man throw down?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are sports clips doing?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does different sports highlight are being shown in a compilation video from?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what are sports clips playing within while music is playing?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"frame\"\n  },\n  {\n    \"question\": \"what does multiple clips of sports highlight set to?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do several basketball players make?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"slam\"\n  },\n  {\n    \"question\": \"what is clips of different doing?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"who is playing basketball?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who make slam dunks?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who makes a dunk?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who threw down an amazing dunk?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does footage of sports while rap music play in?\",\n    \"video_name\": \"video9018\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a man shooting while a teenager looks on?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are two players playing basket ball in?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what are two players having a training in?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what are two players playing in a court?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what are two players having in the gym?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"training\"\n  },\n  {\n    \"question\": \"what do two play in the playing court?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what is placing the ball correctly in the net?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"coacher\"\n  },\n  {\n    \"question\": \"what is a coacher placing correctly in the net?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is making most shots?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is practicing shooting a basketball?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do two basker wearing black and white dress?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who looks on?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"what a black and white dress color boys wearing inside stadium practicing basket ball game displaying on screen?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is a man in black throwing to the basket?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what a black and white dress color boys wearing cloth inside stadium practicing displaying on screen?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who is shooting a basketball into a hoop inside a gymnasium?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many players are playing basket ball in a court?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is screaming like anything because he is placing the ball correctly in the net?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"coacher\"\n  },\n  {\n    \"question\": \"how many persons are in the basket ball court?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many players are having a training in the gym?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who makes several free throws in a row and then misses some?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting basketballs at the goal while being very loud?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting a basketball while a teenager looks on?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in black throwing ball to?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what a black and white dress color boys wearing cloth inside practicing basket ball game displaying on screen?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what is a coacher screaming like because he is placing the ball correctly in the net?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"anything\"\n  },\n  {\n    \"question\": \"what does two people playing basketball and the one with a hat make?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"what is the coacher giving to the sports persons?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"training\"\n  },\n  {\n    \"question\": \"who is coaching the basket ball player?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"coacher\"\n  },\n  {\n    \"question\": \"what coat where man in black dress trying to drop ball on basket?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what is a man shooting into a hoop inside a gymnasium?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is giving training to the sports persons?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"coacher\"\n  },\n  {\n    \"question\": \"what is a black and white dress color boys doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two players doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a coacher doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a person in black practice doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is two black basketball players doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is one young man doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in black doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is two basker ball players doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is basket ball coat where man in black dress doing?\",\n    \"video_name\": \"video9019\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who is looking at a camera during a wrestling event?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is giving an interview at a sporting event?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who a man interviews?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"who is talking about wrestling?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person looking at during a wrestling event?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is a man interviewing?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"who stands in front of his teammates?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"gymnist\"\n  },\n  {\n    \"question\": \"what was the coach interviewed during?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is a man giving at a sporting event?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who was interviewed during a match?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"who interviews a wrestling coach?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing a wrestling coach?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is interviewing a sports coach?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is someone interviewing?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is interview during doing?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video9020\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"who talks about baseball specifically pitches?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a pitcher throw?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"fastball\"\n  },\n  {\n    \"question\": \"what is a person pitching on the field?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who does a pitcher stricking out?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"what is about a cricket match?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"who is talking about a game?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who throws a fastball?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"who speaks about a baseball game?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"what is a person pitching a ball on?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who discusses how hard a pitch is thrown?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"pitch\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"pitch\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is record doing?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what does a man pitch at over 100 mph?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who stricking a batter out?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"who is talking about base ball?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is a person pitching a ball?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who pitches a baseball at over 100 mph?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pitching a ball on the field?\",\n    \"video_name\": \"video9021\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is in the kitchen a woman doing?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"who adds some ingredient?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is added the kukumapoo into it?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"masala\"\n  },\n  {\n    \"question\": \"who is adding some ingredients?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what contains yellow gravy?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is mixed onto the water?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"masala\"\n  },\n  {\n    \"question\": \"what is the masala mixed onto?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the masala added into it?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"kukumapoo\"\n  },\n  {\n    \"question\": \"who is making scrambled eggs?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does someone add?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"ingredient\"\n  },\n  {\n    \"question\": \"what does a person mix?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"powder\"\n  },\n  {\n    \"question\": \"what does a bowl contain?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"gravy\"\n  },\n  {\n    \"question\": \"who is showing what to put in?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who stirs up some soup sprinkles a spice in and drops a shot of liquid into it?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirs?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person stir a bowl of yellow soup in a white bowl with?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who describes how to make a food dish with several ingredients?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who agitates the juice in the bowl with spoon?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person stirring in a bowl?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"who is a bowl of yellow broth on the table is adding spices to it?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who put some root along with some oil?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman stir up sprinkles a spice in and drops a shot of liquid into it?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"who is stirring some orange suit in a bowl?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who adds a few threads of saffron to a bowl of yellow soup in a white bowl?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirs a bowl of yellow soup in a white bowl with a spoon?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a bowl of yellow broth on the person is adding spices to it?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who mixes the turmeric powder?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what adds ingredients to a bowl of yellow soup in a white bowl?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person stirring some orange suit in?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who puts items in a bowl?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a person put along with some oil?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"root\"\n  },\n  {\n    \"question\": \"what does a woman add a few threads of to a bowl of yellow soup in a white bowl?\",\n    \"video_name\": \"video9022\",\n    \"answer\": \"saffron\"\n  },\n  {\n    \"question\": \"who is a woman talking to?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the show no longer on?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what do excited man and woman embrace?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking to a man?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is no longer on the air?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is a woman explaining to?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does various clips from tv show with?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"audio\"\n  },\n  {\n    \"question\": \"what do a man and a woman talk to each other in?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do a man and a woman dance inside?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is explaining to a man?\",\n    \"video_name\": \"video9023\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is an advertisement doing?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a women talking about what written on?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is talking with a small picture down in the bottom right of the screen?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about why an idea may not be on television?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the anchor doing?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a blue screen with a woman doing?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a producer doing?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is just a blue screen with a quote and a picture of a book and audio of a woman doing?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do blue screen with the words why isn t already on telivision?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"idea\"\n  },\n  {\n    \"question\": \"what is there is a screen with the sentence why isn t your idea already on television while a person doing?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is on a purple and white screen?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who asks question why isn t your idea already on television?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who can any be the reason?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"thi\"\n  },\n  {\n    \"question\": \"who is narrating?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do isn t already on television?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"idea\"\n  },\n  {\n    \"question\": \"what is a lady asking?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"question\"\n  },\n  {\n    \"question\": \"who is also giving ideas?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what can thi any be?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"reason\"\n  },\n  {\n    \"question\": \"who is asking a question?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what t your idea already on television?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"isn\"\n  },\n  {\n    \"question\": \"what do isn t your idea already on?\",\n    \"video_name\": \"video9024\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what creat with a light blue polish?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"how many line dots creat with a light blue polish?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is a slideshow of text doing?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is an instructional video on doing?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video of someone doing?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"who describes how to paint fingernails?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a woman applying?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"polish\"\n  },\n  {\n    \"question\": \"who is showing nail art?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shows how to paint nails?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is applying nail polish?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9025\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who highlights details about the mainstay of the story on which the film the pianist is based on?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"introductory\"\n  },\n  {\n    \"question\": \"what were the pics of the pianist 2002 movie seens displayed with?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"message\"\n  },\n  {\n    \"question\": \"who sits in a chair at a piano while a nazi soldier stands by?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a picture of a man doing?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are man and woman having in the living room?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are some people in a movie acting?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what movee clip?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"planist\"\n  },\n  {\n    \"question\": \"what did the planist movee?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who listens?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is descriptions of a movie are shown over a still from the movie consisting of a man at a piano with a dour man doing?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a police man standing and doing?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a woman plays at the piano for her husband just doing?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"return\"\n  },\n  {\n    \"question\": \"what is some people are in a movie doing?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"who explains the historical background of the film the pianist?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what moves over movie clips with classical music?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what does a man sit in at a piano while a nazi soldier stands by?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does red text move over with classical music?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is music playing while text the trailer of which is released in 2002?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does red text move over movie clips with?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who are having conversation in the living room?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is rated number 5 being based on an autobiography?\",\n    \"video_name\": \"video9026\",\n    \"answer\": \"pianist\"\n  },\n  {\n    \"question\": \"what are four girls running away in?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"fear\"\n  },\n  {\n    \"question\": \"what are four young girls running with?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"fear\"\n  },\n  {\n    \"question\": \"what do four girls look around in then run away quickly?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"panic\"\n  },\n  {\n    \"question\": \"how many women are running away?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what is a man hitting something with?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"how many girls are scared?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what is a man hitting with a stick?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is hitting something with a stick?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many girls are running away in fear?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many girls look around in panic then run away quickly?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what are four women standing together in when something causes them to run away in two separate groups after which two anxious men are shown?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"anticipation\"\n  },\n  {\n    \"question\": \"how many young girls are running with fear?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many girls are running?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many women are standing together in anticipation when something causes them to run away in two separate groups after which two anxious men are shown?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what are four women doing?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are some girls doing?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of young people doing?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of 4 young girls doing?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"split\"\n  },\n  {\n    \"question\": \"what is a dramatic movie doing?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is four girls doing?\",\n    \"video_name\": \"video9027\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what does country legalize?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"marijuana\"\n  },\n  {\n    \"question\": \"who narrates about marijuana legislation?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is reporting on recent legislation?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is being legalized in a country?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"marijuana\"\n  },\n  {\n    \"question\": \"what does a woman narrate about?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"legislation\"\n  },\n  {\n    \"question\": \"what is a woman reporting on?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"legislation\"\n  },\n  {\n    \"question\": \"what legalizes marijuana in news?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is slow to grow?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"marijuan\"\n  },\n  {\n    \"question\": \"what are people?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"marijuana\"\n  },\n  {\n    \"question\": \"who is clapping?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is marijuana being legalized in?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who is spinning around smoking a marijuana cigarette?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is new report about doing?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"legalize\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is its about a news about doing?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9028\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what shows various sports activities?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who makes a goal?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"hockey\"\n  },\n  {\n    \"question\": \"what did the hockey player score?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what does a hockey players make?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what play by players?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"hockey\"\n  },\n  {\n    \"question\": \"who scored a goal?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"hockey\"\n  },\n  {\n    \"question\": \"what is hockey players and then basketball players are shown doing?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a player putting into the basket from distance?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who is putting a basket ball into the basket from distance?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is a player doing?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is athletes doing?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is best of vine sports guys doing?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are highlights of various sports doing?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what best of vine sports guys playing hockey on with a huge crowd?\",\n    \"video_name\": \"video9029\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what sings on a boat?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do animated pirates sing on?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"who is on a ship?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is shown in total darkness?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does a cartoon sing on?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a ship in?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is in the ocean?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is a boat shown in?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"darknes\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon pirate on?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is a cartoon pirate singing on?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"who scour the seas?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a cartoon monster pirate captain stand on?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does a talking mouse on a pirate ship walk?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"plank\"\n  },\n  {\n    \"question\": \"who is singing on a ship?\",\n    \"video_name\": \"video9030\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a lady walking in?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what does a dog play in?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"what is a girl describing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing the sims 3?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking in a garden?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is describing a video game?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing the sims?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl cleaning rose?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is playing the sims video game?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"who is cleaning a girl name rose?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing the sims viedo game?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is play the sims while talking about front of a horse stable?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what plays in a yard?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a video game character walking down?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"who is showing some video game?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a gamer doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a lady is play the sims while doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9031\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman in blue an emablmer speaking about dead people in?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"morgue\"\n  },\n  {\n    \"question\": \"what does a person lie on under a blanket?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does a person lie on a table under?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"who is lying on something after his death in a room?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman being interviewed about as an embalmer?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who lies on a table under a blanket?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person lying on something after his death in?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is person lying on after his death in a room?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a mortician adjust?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is person lying on something after in a room?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"death\"\n  },\n  {\n    \"question\": \"what is embalming people?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"job\"\n  },\n  {\n    \"question\": \"what do a hospital mortuary room and a doctor treat?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"case\"\n  },\n  {\n    \"question\": \"what is a person in a full bodied suit preparing?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"who talks about corpses and enbalming and how people deal with death?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person in a full bodied suit doing?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in blue an emablmer doing?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a lady embalmer explains how the job a an embalmer is equally noble and doing?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"challenge\"\n  },\n  {\n    \"question\": \"what is a patient lies under white blanket on silver doing?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a larger redhaired woman doing?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what is in a room person doing?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a patient lying on bed inside hospital doctor doing?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is talking about working on people who have passed away?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who lies under white blanket on silver operating table with nurse?\",\n    \"video_name\": \"video9032\",\n    \"answer\": \"patient\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person jump from?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is a man standing on?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"ledge\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man s about to jump off?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who looks out over the edge?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps from building?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who s about to jump off the building?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where does a man look out?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"edge\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is standing on a ledge?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who looks like he s about to jump off the building?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who overlooks a city from atop a roof before jumping?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls off the edge of the top of a building?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands on the ledge of high building and jumps?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what does a man look out over?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"edge\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a movie scene doing?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a movie clip of a child doing?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man overlooks a city from atop a roof before doing?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is jumping from a height building?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man overlook from atop a roof before jumping?\",\n    \"video_name\": \"video9033\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is dogs doing?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is several dogs doing?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a montage of dog owners doing?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is different people doing?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some guys giving to a dog?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"instruction\"\n  },\n  {\n    \"question\": \"what are some guys giving instruction to?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is playing with pets?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing with the dogs?\",\n    \"video_name\": \"video9034\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what wins a fight?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"kreuger\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what geyser?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"blood\"\n  },\n  {\n    \"question\": \"what does a video game mortal?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"fatality\"\n  },\n  {\n    \"question\": \"what do the english?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does freddy krueger perform?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"fatality\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing mortal kombat x with freddy kreuger?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is someone playing mortal kombat x with?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"kreuger\"\n  },\n  {\n    \"question\": \"what is a geyser on the ground spewing?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"blood\"\n  },\n  {\n    \"question\": \"what is someone playing with freddy kreuger?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"kombat\"\n  },\n  {\n    \"question\": \"what does a fighting scene from a beat em up?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what characters killing each other?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what mortal kombat fatality?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who restarts the mission?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who dies in a game?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does freddy kreuger win?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who performs fatality?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"krueger\"\n  },\n  {\n    \"question\": \"what does a character restart?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"mission\"\n  },\n  {\n    \"question\": \"what does a character die in?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a geyser on the ground doing?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"spew\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a volcano erupting and then zombies doing?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two video game characters doing?\",\n    \"video_name\": \"video9035\",\n    \"answer\": \"kill\"\n  },\n  {\n    \"question\": \"what s a fire department wan two children with red cap are trying to get in the van?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what are small kids with blue dress and red hat getting into?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what are a little boys in firemans helmets shown by some firemen?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a kids doing?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is fire fighters doing?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are it s a fire department wan two children with red cap doing?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who fighters showing the kids their fire truck from the inside?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what do two young boys dressed up as firemen inspect?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what fireengine two boys and one man there?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what fire fighters showing the kids their fire truck from?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"inside\"\n  },\n  {\n    \"question\": \"who are a few firemen letting young children inside?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"firetruck\"\n  },\n  {\n    \"question\": \"what does a fire truck s a fire department wan two children with red cap are trying to get in?\",\n    \"video_name\": \"video9036\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girls doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are tv hosts are surprised by a new form of yoga where the moms doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are wtwo people doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are news reporters doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are newscasters doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man and woman news reporter and moms doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is two news anchors one male and one female remark how cute a baby doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"visit\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a couple of news anchors doing?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who does lady hold?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"how many people analyze the events?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a lady speaking to a man in a tv news program about?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do women in athletic clothing carry their babies during?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"workout\"\n  },\n  {\n    \"question\": \"what talk to one another during a news program?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"how many people talk in one video and lady with baby in another video?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a man wearing suit white shirt and neck tie and a lady in colorful tops giving in a tv channel?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what are newscasters doing about a yoga class?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"what are wtwo people talking at while watching a video of moms dancing with babies?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is speaking to a man in a tv news program about something?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who are talking to a mom and child during a yoga party?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what are the mother and the kids played in in very well?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"playzone\"\n  },\n  {\n    \"question\": \"what are talking at a table while watching a video of moms dancing with babies?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"wtwo\"\n  },\n  {\n    \"question\": \"who holds a baby?\",\n    \"video_name\": \"video9037\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a food vendor preparing?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"who is cooking in a restaurant kitchen?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where are men preparing food?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"indium\"\n  },\n  {\n    \"question\": \"who is flipping dough in his hands?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man preparing some sort of flatbread in?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man preparing some sort of in a kitchen?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"flatbread\"\n  },\n  {\n    \"question\": \"where did street food find?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"indium\"\n  },\n  {\n    \"question\": \"who prepares flat bread in a kitchen?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing some sort of flatbread in a kitchen?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man flipping in his hands?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who is hand making tortillas?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man making tortillas?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a person pat?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did street food find in?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"indium\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what found in india?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is cooking in the kitchen?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking in a restaurant?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing bread?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"vendor\"\n  },\n  {\n    \"question\": \"what are men preparing in india?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking naan?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who pats some dough?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a street vendor cooking?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"naan\"\n  },\n  {\n    \"question\": \"what is a person cooking in?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are men preparing food in?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"indium\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a food vendor doing?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a street food vendor is shown doing?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"pound\"\n  },\n  {\n    \"question\": \"what is a street vendor doing?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is in a kitchen a man doing?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9038\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"how many girls having talk about the fashion?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is blonde woman with nice jackets having?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what do two girls wearing wollen coat talk about?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who is taking a interview with a other woman?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman in white dressing talking to?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is interviewing women on the street asking them what brand of clothing they are wearing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are talking about what one of them is wearing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a women in pink sweater and black cap talking to another women in?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"cap\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a young woman interviewing women on asking them what brand of clothing they are wearing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who interviews a girl who is wearing ripped jeans?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is two girls in design dress doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a journalist interviews a woman doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman interviews a girl who doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two women with hats doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is the reporter doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a furry coat asks another woman what she doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman in white dressing doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women in pink sweater and black cap doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do two girls in design dress wearing standing holding mic in hand on street and person walking beside discusing on topic?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do two girls having talk about?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is a woman taking with a other woman?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what do women talk about outside in the cold?\",\n    \"video_name\": \"video9039\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who is in a wrestling ring?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people in doing?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are multiple wrestlers doing?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are five people doing?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a wrestler doing?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"file\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking in a wrestling ring?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a wrestler talking on?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"wwe\"\n  },\n  {\n    \"question\": \"what does the man talk into?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks into the microphone?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are standing in a wrestling stage while one with the microphone talks about filing a lawsuit?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"who speaks into a microphone at a wwe match?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who talks to another inside of a pro wrestling ring?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about filing a lawsuit on wwe?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a man about wwe?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are people in wrestling ring talking about?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"wwe\"\n  },\n  {\n    \"question\": \"who is a man talking to about wwe?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about filing a lawsuit?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what is a man talking to a man about?\",\n    \"video_name\": \"video9040\",\n    \"answer\": \"wwe\"\n  },\n  {\n    \"question\": \"what is a white person wearing black coat speaking with while news text is running bottom of the page?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man wearing white shirt black coat and blue necktie giving in atv channel?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a black suit man doing?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who discusses the american federal reserve?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"what relates to spending in the united states?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"economy\"\n  },\n  {\n    \"question\": \"what do a male news anchor with gray hair talks in front of a background of a city in?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"sunlight\"\n  },\n  {\n    \"question\": \"what cast showing about the economy?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a black suit man speaking from?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"who talks about world financial issues?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a black suit man talking from inside?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what is running bottom of the page?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is news text running bottom of?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"page\"\n  },\n  {\n    \"question\": \"what is a man wearing white shirt black coat and blue necktie giving news in?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what anchor with gray hair talks in front of a background of a city in sunlight?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is the old man in coat talking in?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"who read the tv flash news and market rates?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a black suit man doing?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a white person doing?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the old man in coat doing?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man dressed in a suit doing?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in black suit doing?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a black suit with a blue tie doing?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is this news cast doing?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man is on the news doing?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a news anchor as it relates to spending in the united states?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"economy\"\n  },\n  {\n    \"question\": \"what does a man with deep set eyes report?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what anchor discusses the economy as it relates to spending in the united states?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is on the news talking about politics?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man dressed in a suit reporting live?\",\n    \"video_name\": \"video9041\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is eating something?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks on a cell phone?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking on the phone?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is another man calling someone on?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are two persons eating from?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is a man talking on?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is another man talking on in a snowy area?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is eatching with sticks?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is calling someone on his phone?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who eats something with chopsticks while another man talks on a cell phone?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating with chopsticks sitting on the dirt?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is eating with chopsticks in the snowy wilderness?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man eat while another man talks on a cell phone?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is speaking on the phone during a prank?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man sitting with a woman on a beach put a piece of food in with chopsticks?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who is talking on his phone in a snowy area?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man speaking on during a prank?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"how many persons are eating from mountain?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man speaking on the phone during?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"prank\"\n  },\n  {\n    \"question\": \"who is another man calling on his phone?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who eats fresh sashimi he caught outside while a man calls a group of people indoors all speaking an asian language?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man sitting with a woman on a beach put a piece of in his mouth with chopsticks?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do asian eat with chop sticks by?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who calls a group of people indoors all speaking an asian language?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is asian people doing?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person eats fresh sashimi he caught outside while a man calls a group of people indoors all doing?\",\n    \"video_name\": \"video9042\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who are run with the ropway?\",\n    \"video_name\": \"video9043\",\n    \"answer\": \"traveller\"\n  },\n  {\n    \"question\": \"what is 90 meters?\",\n    \"video_name\": \"video9043\",\n    \"answer\": \"capacity\"\n  },\n  {\n    \"question\": \"what do people pass?\",\n    \"video_name\": \"video9043\",\n    \"answer\": \"picturesque\"\n  },\n  {\n    \"question\": \"who are the traveller run with?\",\n    \"video_name\": \"video9043\",\n    \"answer\": \"ropway\"\n  },\n  {\n    \"question\": \"what carries passengers while going high over mountains and green forests?\",\n    \"video_name\": \"video9043\",\n    \"answer\": \"gondola\"\n  },\n  {\n    \"question\": \"what ride giving different views of land while people are filming their cameras?\",\n    \"video_name\": \"video9043\",\n    \"answer\": \"tmy\"\n  },\n  {\n    \"question\": \"what do a tour ride giving different views of while people are filming their cameras?\",\n    \"video_name\": \"video9043\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what do people ride up a steep mountain?\",\n    \"video_name\": \"video9043\",\n    \"answer\": \"gondola\"\n  },\n  {\n    \"question\": \"what ride with tourists up a mountain wth some facts on the gondolas time and distance?\",\n    \"video_name\": \"video9043\",\n    \"answer\": \"gondola\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9043\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what are the tourists doing?\",\n    \"video_name\": \"video9043\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are people dancing in?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what are a bunch of people dancing with?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are a group of young people throwing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is performing a choreographed dance routine?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do dancers perform song about?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are a team of dancers performing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group performing routine?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do people dance together with?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what do four women dance to a beach theme?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are a group of men and women doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a bunch of girls doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a bunch of people doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is some people doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are several young men and young women doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are many men and women doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of young people doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are a team of dancers doing?\",\n    \"video_name\": \"video9044\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who talks about cars?\",\n    \"video_name\": \"video9045\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9045\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9045\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is footage of the chevrolet doing?\",\n    \"video_name\": \"video9045\",\n    \"answer\": \"pop\"\n  },\n  {\n    \"question\": \"who videos a black toyota car that is for sale?\",\n    \"video_name\": \"video9045\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what pans the interior and exterior of a vehicle?\",\n    \"video_name\": \"video9045\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a camera pan the interior and exterior of?\",\n    \"video_name\": \"video9045\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what do a beautiful car in show in?\",\n    \"video_name\": \"video9045\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is being filmed from all sides?\",\n    \"video_name\": \"video9045\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is being walked around?\",\n    \"video_name\": \"video9045\",\n    \"answer\": \"malibu\"\n  },\n  {\n    \"question\": \"who is being shown?\",\n    \"video_name\": \"video9045\",\n    \"answer\": \"chevy\"\n  },\n  {\n    \"question\": \"what are two people playing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is commentating?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are a pokemon video game playing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who plays a pokemon game?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a pokemon video game?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing a pokemon video game?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"who narrates his characters while he plays a pokemon video game?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are playing a pokemon game?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what plays pokemon mystery dungeon while slightly commentating about what is going on?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"how many people are playing a game?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a gamer doing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a male plays pokemon mystery dungeon while slightly doing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is image of someone doing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9046\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who watch a bubble animal float away?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who are laughing at a bubble animal?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is watching a bubble fly in the air?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"sponge\"\n  },\n  {\n    \"question\": \"who watch a air bubble float through the sea?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what does a giant elephant shaped bubble heads for squidward s?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what do spongebob squarepants characters watch float through the sea?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what do spongebob squarepants characters watch a air bubble float through?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"who are watching a bubble fly in the air?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"sponebob\"\n  },\n  {\n    \"question\": \"what is looking at something?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are spongebob and patrick looking at?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"balloon\"\n  },\n  {\n    \"question\": \"what do spongebob and patrick watch float away?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"how many cartoon characters are laughing at a bubble animal?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who watch a bubble elephant?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who watch something float away?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what do spongebob and patrick watch?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what is laughing?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is speaking?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated cartoon looking at?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who are watching an elephant bubble float towards squidward s house?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who are looking at a balloon?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what is sponge bob doing?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is two cartoon characters doing?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are two cartoon characters doing?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is the two characters doing?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is an animated cartoon doing?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is cartoon doing?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are sponebob and patrick doing?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are spongebob and patrick doing?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is spongebob and patrick doing?\",\n    \"video_name\": \"video9047\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"where are a large group of runners running towards the camera?\",\n    \"video_name\": \"video9048\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who explains how to run a turn while a group of runners pass by?\",\n    \"video_name\": \"video9048\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a large group of runners running towards the camera on?\",\n    \"video_name\": \"video9048\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are more players running in?\",\n    \"video_name\": \"video9048\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are many players running together in?\",\n    \"video_name\": \"video9048\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who gives strategy for a race?\",\n    \"video_name\": \"video9048\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a group of athlete running a long run race and young men are about to take?\",\n    \"video_name\": \"video9048\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what are a large group of runners running towards on a field?\",\n    \"video_name\": \"video9048\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a group of numbered racers run on a grass course in a field of dried grass by a railing with triangular flags doing?\",\n    \"video_name\": \"video9048\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who do a new video game which seems much like a children show discusses a new video game which seems much like a children?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is the video game skylanders being reviewed by?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man promoting to life video game?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is the person dubbing to the cartoon character?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is driving a some vehicle?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon man driving?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what are animals in ski clothing riding over a mountain?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"jet\"\n  },\n  {\n    \"question\": \"what are animals in ski clothing riding jet packs over?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is a cartoon character talking are standing on clouds and posing?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a comedy dragon doing?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a cartoon man doing?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is there is a bug doing?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what is an adver5tisement about the cartoon movie trialler is shown and the person doing?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"dub\"\n  },\n  {\n    \"question\": \"what is bunch of cartoon characters doing?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is trying to shoot something from the sky?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who explains about an expansion on the skylanders series?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking various cartoon characters are standing on clouds and posing?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is promoting the toy to life video game?\",\n    \"video_name\": \"video9049\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does text superimposed over a faded indiana jones stating that spielburg claims that he will never cast another actor in?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"role\"\n  },\n  {\n    \"question\": \"what are a person picture and few quotes displayed on?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are a person with hat and some wordings shown on?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who is harrison ford?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"indiana\"\n  },\n  {\n    \"question\": \"what does picture of indiana jones with text over the screen regarding the movie indiana jones and the actors as a woman read?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is a woman reading from steven spielberg discussing how he doesn t intend to ever have another actor be indiana jones but harrison ford?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"quote\"\n  },\n  {\n    \"question\": \"who wears a brown fedora while a woman reads a quote about harrison ford s indispensability?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"indiana\"\n  },\n  {\n    \"question\": \"what does indiana jones wear while a woman reads a quote about harrison ford s indispensability?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"fedora\"\n  },\n  {\n    \"question\": \"what appears over the man s face a man is looking into the distance?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who is reading a quote from steven spielberg discussing how he doesn t intend to ever have another actor be indiana jones but harrison ford?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does text appear over s face a man is looking into the distance?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does text appear over the man s face is looking into the distance?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reciting the paragraph on the screen regarding the movie indiana jones and the actors?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who ford as indiana jones as a woman talks?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"harrison\"\n  },\n  {\n    \"question\": \"what does text appear over the man s face a man is looking into?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"distance\"\n  },\n  {\n    \"question\": \"what does text appear over the man s a man is looking into the distance?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who is a woman reading a quote from discussing how he doesn t intend to ever have another actor be indiana jones but harrison ford?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"spielberg\"\n  },\n  {\n    \"question\": \"who reads a quote about harrison ford s indispensability?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did actor harrison ford as as a woman talks?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"indiana\"\n  },\n  {\n    \"question\": \"what is a lady reciting on the screen regarding the movie indiana jones and the actors?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"paragraph\"\n  },\n  {\n    \"question\": \"who says that harrison ford is the only actor who will be indiana jones?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"spielberg\"\n  },\n  {\n    \"question\": \"who reads a quote regarding indiana jones being only played by harrison ford?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who reads a commnet from steve spielberg?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is there is a man with cap doing?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is white words on a screen with a background of a man doing?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is text superimposed over a faded indiana jones doing?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"state\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a cap man doing?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is in white lettering covers the face of a man doing?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"recite\"\n  },\n  {\n    \"question\": \"what is a woman reads a quote doing?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is indiana jones doing?\",\n    \"video_name\": \"video9050\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does a boy play on on the voice?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing in a music competition?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who beautifully singing?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do boy sing?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do young kid beautifully playing?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when is a boy singing?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is playing guitar and singing?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who playing guitar and singing?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a young man play?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who singing a pop song?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a boy play on guitar on?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who plays on guitar on the voice?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a young man sing in a tv singing contest?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young asian boy singing and doing?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is boy singing and doing?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are judges doing?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"who sings a song in a tv singing contest?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who beautifully playing guitar?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who plays the guitar on stage?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays guitar to judges?\",\n    \"video_name\": \"video9051\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what are military persons taking out?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"enemy\"\n  },\n  {\n    \"question\": \"who is holding a glass?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people shown in?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"who is a man drinking out of?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"gla\"\n  },\n  {\n    \"question\": \"who is drinking out of a glas?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking to another man about?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is a man talking to about something?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a big group of soldiers poking at with sticks?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is talking to another man about something?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a few military men stand in?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are men standing on?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what are soldiers standing in?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what are some soldiers doing?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are soldiers doing?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is nazi type soldiers in uniform followed by people doing?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"trudge\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are a group of nazis doing?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what are a big group of soldiers doing?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"poke\"\n  },\n  {\n    \"question\": \"what is a movie about a war with military people doing?\",\n    \"video_name\": \"video9052\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does the man point to the polish easter eggs in?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what is black?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"curtain\"\n  },\n  {\n    \"question\": \"what does the man point to the polish in a basket?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"easter\"\n  },\n  {\n    \"question\": \"who films a basket of decorated eggs?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who points to the polish easter eggs in a basket?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man stand at selling small items?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"booth\"\n  },\n  {\n    \"question\": \"what is been showed?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"what is a plant sitting on?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"easter\"\n  },\n  {\n    \"question\": \"what is sitting on a table?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"who do nalepianki and skrobanki easter eggs in a basket on a table being displayed by?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a short clip showcasing a medium size indoors?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what pans over several easter baskets?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is showing some easter egg?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who easter eggs in a basket on a table being displayed by a man?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"nalepianki\"\n  },\n  {\n    \"question\": \"who stands at a booth selling small items?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man stands at a booth doing?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"sell\"\n  },\n  {\n    \"question\": \"what is a plant doing?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who did info for a brand call?\",\n    \"video_name\": \"video9053\",\n    \"answer\": \"skrobanki\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a clip of a man and woman doing?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a short trailer for a movie doing?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"deal\"\n  },\n  {\n    \"question\": \"what is a valentine to the wonderfully romantic notion of doing?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is an ad for a movie doing?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is driving a car while there are mountains in the background?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a story about doing?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who thinks about his wanted valentine in different scenes?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows some scenes from a movie?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what is a man driving near desolate hills?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving a car near?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"desolate\"\n  },\n  {\n    \"question\": \"who is driving a car near desolate hills?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving while there are mountains in the background?\",\n    \"video_name\": \"video9054\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is disney doing?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some scenes from a tv show doing?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some teenagers doing?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"who casts a spell to alter another girls hair?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is school?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what is a comedy show?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a band performing a song?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performing a song on stage?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a girl in purple hair cast on another girl?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"spell\"\n  },\n  {\n    \"question\": \"what is a band performing on stage?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who does a girl in purple hair cast a spell on?\",\n    \"video_name\": \"video9055\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does man go out after removng seat belt red car is parked from?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is a man on the wheels talking about the easyness of parking and the camera coming out of the logo when reverse gear on for?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"polo\"\n  },\n  {\n    \"question\": \"what does man go out after removng seat belt is parked from car?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a red color volkswagen car?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows a camera hidden in his fuel door?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is the inside of a maroon car being demonstrated by in drivers seat?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a car giving a review on a volkswagen car is red with what seems to be a leather interior?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving his new car volkswagen golf?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do tv show showcases the premiere benefits of a car in which he is sitting in?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who pulls up in a red shirt?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do tv show host showcases the premiere benefits of in which he is sitting in?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who sits inside the car?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who goes out after removng seat belt red car is parked from car?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about something?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the man in the tshirt drive really fast?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is the red sedan driven by?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting in to the car?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gets out of the red sedan?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets off from a maroon car?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is driven by a man?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"sedan\"\n  },\n  {\n    \"question\": \"what does a man sit inside?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person speaking about?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person sitting in to?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who then gets off?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a red color car moving on road inside person sitting with ash dress speaking on displaying on screen?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what do a red color car moving on road inside person sitting with ash dress speaking on topic displaying on?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is the men doing?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a british man doing?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is tv show host showcases the premiere benefits of a car in which he doing?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the driver of the car doing?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a men in a red car doing?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a red color car doing?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man on the wheels doing?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9056\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who races at a man?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is jumping?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a cartoon man rub?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"mustache\"\n  },\n  {\n    \"question\": \"who a cartoon monster races at?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a cartoon man sitting at?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"what tries to attack a man?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"what does a cartoon bear run into?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what runs into a wall?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is sitting at a bar?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who does a creature try to attack?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rubbing his mustache?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon man doing?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a cartoon man doing?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what is a fox doing?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is an animated cartoon of a bear running to doing?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is an evil doing?\",\n    \"video_name\": \"video9057\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a animation doing?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who falls down the stairs and explodes?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what results after an animated character falls down the steps and knocks over another character?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"explosion\"\n  },\n  {\n    \"question\": \"who steps backwards?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who does an animated character knock over?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what falls down stairs and explodes?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who falls down the steps?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who falls backwards down stairs?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who falls down some stairs?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who does an animated character fall down a flight of stairs into?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is showing two wooden dolls fell off the staircase and eventually disintegrated?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who falls down a flight of stairs into his friend?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"how many wooden dolls is a cartoon showing fell off the staircase and eventually disintegrated?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who fell down a set of stairs?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who knocks over another character?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is cartoon characters break while doing?\",\n    \"video_name\": \"video9058\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who do a clip of the show?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"scooby\"\n  },\n  {\n    \"question\": \"who shows his badge?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what doo cartoon clip?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"scooby\"\n  },\n  {\n    \"question\": \"what are cheer leaders?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what cartoon in which men discussing?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a cartoon cop show?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"badge\"\n  },\n  {\n    \"question\": \"who flashes his badge?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the man flash?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"badge\"\n  },\n  {\n    \"question\": \"who are the scooby doo characters speaking to?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what talks to a man in a brown shirt?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"scooby\"\n  },\n  {\n    \"question\": \"who does the scooby gang talk to in a brown shirt?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows off his badge to the scooby doo characters?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who are entertaining audience?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is a cartoon character holding up?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"badge\"\n  },\n  {\n    \"question\": \"what do a clip from an old school scooby doo?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"episode\"\n  },\n  {\n    \"question\": \"what men discussing something?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do scooby doo?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon character is engaged in doing?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does guy show off to the scooby doo characters?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"badge\"\n  },\n  {\n    \"question\": \"who is holding up a badge?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is engaged in talking with partners?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who shows his badge in a cartoon?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to the scooby gang?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"detective\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is cartoon in which men doing?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are cheer leaders doing?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"entertain\"\n  },\n  {\n    \"question\": \"what are the scooby doo characters doing?\",\n    \"video_name\": \"video9059\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is jumping?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is baby doing?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a cat following?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"flashlight\"\n  },\n  {\n    \"question\": \"what is a baby playing with?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a baby laughing at?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who does a cat entertain?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what does a baby watching cat s?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who sits on the floor in the living room?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is laughing at a cat chasing a moving light?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is trying to catch the reflection of light on the floor?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is laughing as a cat runs from point to point?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"crack\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby on the floor doing?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is following a flashlight?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a baby laughing at chasing a moving light?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a baby sit on in the living room?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is running across the child?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is a cat running across?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is playing with a cat?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what entertains a baby?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is laughing at a cat?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what runs from point to point?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what chases a reflection on the floor?\",\n    \"video_name\": \"video9060\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is dancing discreetly while a man stands stationary?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dance to shake an office building off?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing in the background unbeknownst to the boy?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing in front of the camera while a girl in the background is dancing?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is standing in front of the camera while a taylor swift song is playing?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who stands stationary?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances in the background of a kid?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing to taylor swift?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people singing in?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what do boy and woman dance to shake off?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who is dancing inside an office building?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stands around in different locations?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is dancing behind a person?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman dancing in unbeknownst to the boy?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is dancing for a song?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances behind a boy and a women?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a girl dancing behind?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman dancing for?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is a man giving?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"ineterview\"\n  },\n  {\n    \"question\": \"who is giving an ineterview?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy and a women are lip doing?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"sync\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a short clip of a woman doing?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9061\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is sneezing?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what sneezes over repeatedly?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what can t stop sneezing?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is sneezing uncontrollably?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a brown dog shake?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what keeps sneezing?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does dog sneeze?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"lot\"\n  },\n  {\n    \"question\": \"what does a dog sneeze on?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is doing funny activities?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what sneezing repeatedly?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is sneezing in a room?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog on?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a dog sneezing in?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what sneezing multiple times?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what sneezes on a bed?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is on a bed?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a brown and black dog sneezing on?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a dog on a pillow shake fiercely?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what sneezes repeatedly while laying on a blanket?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is dog doing?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"sneeze\"\n  },\n  {\n    \"question\": \"what is a small dog sneezes repeatedly while doing?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a dog keeps doing?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"sneeze\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"sneeze\"\n  },\n  {\n    \"question\": \"what is a dog is on a bed and keeps doing?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"sneeze\"\n  },\n  {\n    \"question\": \"what is a brown and black dog doing?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"sneeze\"\n  },\n  {\n    \"question\": \"what is sneezing while lying on a bed?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what sneezes a lot?\",\n    \"video_name\": \"video9062\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a group of dancers dance wearing?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"when are a group of people dancing?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are some people dancing on a stage with?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"strobe\"\n  },\n  {\n    \"question\": \"when are some people dancing with strobe lights?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do people doing a dance rountine?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"when is a dance being performed?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performing?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people dancing on?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"when is art performed?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performed on stage?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is being performed on stage?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is artistic dancing by cartoonish doing?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of dancers dances doing?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a dance group doing?\",\n    \"video_name\": \"video9063\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who do a funny clip of bill murray appearing on the late show with?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"who is doing some experiment with another another man?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is bill burray sovered with?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"foam\"\n  },\n  {\n    \"question\": \"who is sharing a drink with a talk show host?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was ill murray covered in?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"who gives another man a bottle?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does murray give vodka to talk?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does murray give to talk show host?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"vodka\"\n  },\n  {\n    \"question\": \"who was covered in cake?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who is sovered with foam?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"burray\"\n  },\n  {\n    \"question\": \"who gives vodka to talk show host?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who is pouring a drink?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is bill murry being interviewed by?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"how many men are doing funny acts?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men on a talk show sharing?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man doing with another another man?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a man sharing with a talk show host?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"who is being interviewed by david letterman?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"murry\"\n  },\n  {\n    \"question\": \"what is talk show hosts pouring?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"who is interviewed by a tv host?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who do an actor talking to a talk show?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is bill murray covered in something being interviewed by?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is talk show hosts doing?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what are two men on a talk show doing?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is an actor doing?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9064\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"who describes his visit to a hospital?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a boy learning about by a doctor he is walking with?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what does boy take with scientist?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"tmy\"\n  },\n  {\n    \"question\": \"what is the boy shown many thing about?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what does a boy walk through beside a doctor?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"what does boy take tour of with scientist?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"who walking around the hospital with a doctor and sharing his experience?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do an older doctor and a young boy walk down the hallway of?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"who is walking next to a doctor?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is a child walking next to?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who is learning about bio technology by a doctor he is walking with?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who then demonstrate karate outside?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a young boy walking with an older man as he mention he interested in?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"biotechnology\"\n  },\n  {\n    \"question\": \"who takes tour of lab with scientist?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who walking with a doctor and sharing what he saw inside a hospital?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy walks down a hall with a man in a doctor s shirt followed by the boy doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a boy doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a old man in white color dress and boy in blue dress doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is small boy doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a man and a young boy doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who does boy take tour of lab with?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a doctor and a boy doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is boy takes tour of lab with scientist and learns about the power of doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"heal\"\n  },\n  {\n    \"question\": \"what is the boy is shown many thing about bio technology and then he understands the power of doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"heal\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who understands the power of healing through bio technology?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who walks through a hospital beside a doctor?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is shown many thing about bio technology?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who talks about how much he s interested in science?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does a boy walk through a hospital beside?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who learns about the power of healing through biotechnology?\",\n    \"video_name\": \"video9065\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9066\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a flowering plant and other display on?\",\n    \"video_name\": \"video9066\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what are people playingg?\",\n    \"video_name\": \"video9066\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what do a series of photos show?\",\n    \"video_name\": \"video9066\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is displayed here?\",\n    \"video_name\": \"video9066\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"plat\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what does some make?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is being prepared?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does not play?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a person demonstrate?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is a person plating cooked?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is demonstrating how to transfer a recently cooked dish from a frying pan to a plate?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who uses a plate to flip food out of a hot frying pan?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person use to flip food out of a hot frying pan?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what does a person use a plate to flip out of a hot frying pan?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who shows how to cook some food?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a person showing how plate?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who demonstrates a cooking method?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing food recipe?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cooking a meal?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is plating cooked food?\",\n    \"video_name\": \"video9067\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who parody?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who is acting?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who being handcuffed and running?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is two young men are role doing?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cop doing?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"arrest\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a skit doing?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a teenager doing?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"who do a teenager pretending to be?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"cop\"\n  },\n  {\n    \"question\": \"who does a man flee?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who flees a police officer?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many young men are role playing a policeman arresting a shirtless suspect on a residential street?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who dressed as a cop arrests a shirtless boy for pornography?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who imitates the television show cops where a man is arrested?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does a young man dressed as a cop pretend to arrest?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what made a parody of the show cops?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"skit\"\n  },\n  {\n    \"question\": \"who do a skit showing pretend arresting a pretend criminal?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"cop\"\n  },\n  {\n    \"question\": \"who do a skit showing a fake cop pretend arresting?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"criminal\"\n  },\n  {\n    \"question\": \"what does a boy imitate cops where a man is arrested?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is arresting some one in street?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man arresting some one in?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9068\",\n    \"answer\": \"reenact\"\n  },\n  {\n    \"question\": \"who is giving a speech on stage?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is lady preaching by doing?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is giving a speech at a conference?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stands?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady receiving?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"award\"\n  },\n  {\n    \"question\": \"what does woman give?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a woman speaking at?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"what does woman speak at?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"what is a woman at a podium doing?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who gives a speech?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman at a podium speaking to?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is talking about something in a stage in front of others?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman speak behind?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"who speaks behind a podium?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks at the podium?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking at a podium?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving an important speech?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"who is receiving an award?\",\n    \"video_name\": \"video9069\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is vacuuming?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man use?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a man filling up?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man is on the ground doing?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"connect\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"vacuum\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is an instructional video on doing?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"void\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"connect\"\n  },\n  {\n    \"question\": \"what does not have audio?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"who shows how to empty the septic tank of an rv vehicle?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"aman\"\n  },\n  {\n    \"question\": \"who is on the ground connecting a tube to a pipe?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating a skill relating to an automobile?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how a hose is connected into the ground?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the use of a hose?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man demonstrating relating to an automobile?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"skill\"\n  },\n  {\n    \"question\": \"what is a man using?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"who connects hose to a drain?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crouched next to a vehicle?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on a vehicle?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man crouched next to?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is using a hose?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss the use of?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"who uses an air hose?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who work with a vehicle?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"mechanic\"\n  },\n  {\n    \"question\": \"who is holding a hose?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working outdoors?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filling up a truck?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to fix something?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what do a mechanic work with?\",\n    \"video_name\": \"video9070\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are on a runway models doing?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a model doing?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do models walk along?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are women walking down?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is walking on the runway?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"who walks down a runway?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what do models in a catwalk on?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"who walk on the catwalk?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what show runway with women?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what are models showing off clothing lines on?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is playing while women are walking down a runway?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who walks upon a catwalk?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a model walk down?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do fashion show?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are models walking?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what are models showing off on a runway?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what are models walking down?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are women shown going down?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do fashion models walk on?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what does a woman walk upon?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what is a model walking on?\",\n    \"video_name\": \"video9071\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is an animated frog doing?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"manage\"\n  },\n  {\n    \"question\": \"what is cartoon doing?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what are characters from a cartoon doing?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are muppet charachters doing?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who are performing a play?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"muppet\"\n  },\n  {\n    \"question\": \"what does a children s television show is being shown in?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"theater\"\n  },\n  {\n    \"question\": \"what does a children s is being shown in a theater?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is being shown in an animated theater?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is on the big screen?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"frog\"\n  },\n  {\n    \"question\": \"what is managing a stage show?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"frog\"\n  },\n  {\n    \"question\": \"what is an animated frog managing?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are muppet charachters performing?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do muppets characters act out?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"when do the drama show?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what show stage?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"drama\"\n  },\n  {\n    \"question\": \"who is directing the other muppet babies characters?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"kermit\"\n  },\n  {\n    \"question\": \"what are characters from a cartoon putting on?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is shown on the screen of a cartoon movie theater?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who play around with each other on a theater screen?\",\n    \"video_name\": \"video9072\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what wins with a white shirt by adidas?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are some runners doing?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a bunch of racers doing?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is athletes doing?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"sprint\"\n  },\n  {\n    \"question\": \"what run laps around the track field in a race?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are some runners racing each other on?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is an competition of runners going on?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what are encouraging atheletes running on the track?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what a group of atheletes running on the track participating in?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a bunch of racers competing on?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what plays as professional runners race on a track?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"where does a group of men running in running competition and last one person fall on a red colored track?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what are more players running in?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is going on in the stadium?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what is a running competition going on in?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what gets to the finish line?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what does a group of men running in running competition and last one person fall at on a red colored track?\",\n    \"video_name\": \"video9073\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are some cartoon characters doing?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who explores a basement?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"who is playing a videogame?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is a person playing?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"videogame\"\n  },\n  {\n    \"question\": \"what does video game pirate explore?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"basement\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what ninja running around a room?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who runs around the hull of a ship in a video game?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"who is playing a video game about lego pirates?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what character going up a set of stairs?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing about lego pirates?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a vieo game character look around?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what did a video game pirate running through?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what pirate running through a scene?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a video game ninja running around?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is a person playing a video game about?\",\n    \"video_name\": \"video9074\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band on stage with a man doing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a video of a band doing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are people dancing at?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what preforming on stage?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is sing on stage?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does a band preform?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performing on stage?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"when is a band performing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"when is a man sing?\",\n    \"video_name\": \"video9075\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is someone working on?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"who fixes a piece of machinery that appears to be a miniature tank?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man fixes a piece of that appears to be a miniature tank?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"machinery\"\n  },\n  {\n    \"question\": \"who is fitting some spares in his experiments?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who handled a robot?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mounts a camera on a mechanism?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is setting up a miniature vehicle?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who builds something?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is setting up a machine?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person setting up?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"miniature\"\n  },\n  {\n    \"question\": \"who is working on a robot?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is operating a robot?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man handle?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a man operating?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is a man setting up?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what does a man build?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"fit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9076\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"how many cars are racing down the street?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cars are racing?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who drives in a fake scene?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"mazda\"\n  },\n  {\n    \"question\": \"who is playing an online computer game?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a red mazda car running on?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"how many red cars are seen racing on a road course?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two cars drive side by on a simulated track and tunnel?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what do two cars drive by side on a simulated track and tunnel?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is played while a mazda drives in a fake scene?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many cars drive side by side on a simulated track and tunnel?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did driving cars set to?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are two cars racing down?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is two red cars are seen doing?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are two cars doing?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a red mazda doing?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is speeding?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9077\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what review with gameplay?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a guy play about a game?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is commentating while playing minecraft?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy play minecraft and talks about?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who plays minecraft and talks about a game?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what did a clip capture in from the players point of view with a voice over from the player?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what did a clip capture in minecraft from the players point of view with over from the player?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is using a sword in minecraft?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what captured in minecraft from the players point of view with a voice over from the player?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do video game review with?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"gameplay\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a video of minecraft doing?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a walkthrough of minecraft where the guy doing?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"burn\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9078\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are floating in a circle?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are four animated space aliens circling in?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what do animated aliens float in near what appears to be a black hole?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who is looking at himself in a mirror?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are cartoon space people floating in?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"who discuss a problem?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are floating in a vortex?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do aliens float inside?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"tunnel\"\n  },\n  {\n    \"question\": \"what are cartoon characters floating in?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"vortex\"\n  },\n  {\n    \"question\": \"what do several cartoon aliens discuss?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"what animations talking?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a man looking at himself in?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is cartoon aliens doing?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is aliens doing?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is animated clip of soldiers doing?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is cartoon robots doing?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cartoon space people doing?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is clip of cartoon animations doing?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are four animated space aliens doing?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what are in a cartoon television show characters doing?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9079\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is clapping?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a man in brown dressing standing on the stage wear?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what does the man in the marron top stand on stage and talk in?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"mic\"\n  },\n  {\n    \"question\": \"what is man in red clothes talking for?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is man in pink clothes talking on?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is presenting his project to a crowd of people?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in long red dress giving lecture on?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is giving speech or lecture to the audience present?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is an indian man presenting to a crowd of people?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"who applaud from people?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in long red dress giving on animation?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"who speak to the logo?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person giving to the audience present?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"who is explain about a 3d?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing in the stage?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man speak to?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"logo\"\n  },\n  {\n    \"question\": \"who did a red color dress is talking on the stage?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when did a red color dress man is talking?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what did a man in a red tunic presenting a technical talk at a ted conference to?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is 3d object reconstructed shown and a man in brown doing?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a red color dressed man doing?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a red tunic doing?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in a maroon shirt doing?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a guy in purple robe doing?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man in pink clothes doing?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in red clothes doing?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is ted talk of a man doing?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is an indian man doing?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what dressed man is talking on the stage?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who did a splash seems to be like a human running appears and rotates in a tex program screen?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"liquicd\"\n  },\n  {\n    \"question\": \"what did a man in a red tunic presenting at a ted conference to audience applause?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what did a man in a red tunic presenting at a ted conference?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who explains his newest invention that appears to be green foam?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"where is man in pink clothes talking?\",\n    \"video_name\": \"video9080\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who listens?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"pencil\"\n  },\n  {\n    \"question\": \"who talks to a couple about an election?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is winnie doing?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three persons doing?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is students talk about doing?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"elect\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a scene from a movie of a guy doing?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a clip taken from an older tv show doing?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"who are three persons talking?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"eachother\"\n  },\n  {\n    \"question\": \"what does a child sit in?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who sits in a classroom?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is holding a pencil?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a man with a pencil?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"winnie\"\n  },\n  {\n    \"question\": \"who is winnie talking to with a pencil?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is smarter than the brown haired boy?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"how many persons are talking eachother?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is winnie talking to a man with?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"pencil\"\n  },\n  {\n    \"question\": \"what are a boy and a girl doing?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking to a girl and a boy?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are a boy and a girl talking to?\",\n    \"video_name\": \"video9081\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman talking about while clips are shown?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what do two people use to push themselves in chairs?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who is talking about the tv show brooklyn 99?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about brooklyn nine nine?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a lady giving?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a woman discussing?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady with?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a man dance around in?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what does a guy and a girl use while rolling back on a chair?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"extinguisher\"\n  },\n  {\n    \"question\": \"who is with a show?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are people having in office?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what are people having fun in?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"who is discussing a tv show?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a movie?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving movie updates?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who dances around in an office?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a movie while clips are shown?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many people use fire extinguishers to push themselves in chairs?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a guy and a girl uses a fire extinguisher while doing?\",\n    \"video_name\": \"video9082\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"who lays in a pile of woman?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing while a woman is being displayed?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing provocatively in a music video?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances around for a music video?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being displayed?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is laying down?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"beyonce\"\n  },\n  {\n    \"question\": \"who is covered in a pile of women?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rapping?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is surrounded by a group of beautiful women?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing while a woman dancing lying on the bed is shown?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is a music video of a woman doing?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"writhe\"\n  },\n  {\n    \"question\": \"what is beyonce doing?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9083\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is talking to two children?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what do kids react to manikin dancing?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do kids discuss having seen before?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are young children being interviewed by?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are children being interviewed on kids react?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"fact\"\n  },\n  {\n    \"question\": \"what are kids being interviewed in?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what is students doing?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are little kids doing?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is kids react to manikin doing?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is an adult doing?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a host doing?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9084\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is shown for the song twinkle twinkle little star?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is animated cartoon of characters doing?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is an animated star doing?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is an animated boy doing?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a cartoon star doing?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crying?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who cries?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is seen by a boy who sheds a tear?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is crying to the star?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who sees a star in a cartoon?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a cartoon crying to?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what flies around a boy who sheds a tear?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is traveling through the night sky?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what interacts with a boy prince?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who is shedding a tear?\",\n    \"video_name\": \"video9085\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"choose\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"what is played while a character plays through a level building fps?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"tehcno\"\n  },\n  {\n    \"question\": \"who modifies a room in a video game?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is scrolling through game parts on a screen?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is changing the settings on a game?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person scrolling through game parts on?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a person scrolling through on a screen?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what did a minecraft texture and mod video set to?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is being shown for a video game?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"item\"\n  },\n  {\n    \"question\": \"what is someone changing the settings on?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who does music play over garry s gameplay?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"mod\"\n  },\n  {\n    \"question\": \"what plays over garry s mod gameplay?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does music play over s mod gameplay?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"garry\"\n  },\n  {\n    \"question\": \"what is performed in a computer?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a shooting game performed in?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is discussing software?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a computer program?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays through a level building fps?\",\n    \"video_name\": \"video9086\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what was scary?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a pirate battles with a zombie pirate doing?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a pirate doing?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two people sword doing?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man fighting?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"who is fighting with a monster in a cave?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fights off a monster in a movie?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is fighting to a ghost with sword?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man fighting to with sword?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"ghost\"\n  },\n  {\n    \"question\": \"what fight scene from pirates?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what are men dressed as pirates fighting?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what is the clips of a movie?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a man fighting to a ghost with?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"how many people sword fighting?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man fighting with?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"ghost\"\n  },\n  {\n    \"question\": \"who is a pirate fighting?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"what do sword fight?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is a movie the clips of?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what do pirates battle one another in?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"cave\"\n  },\n  {\n    \"question\": \"who is a man fighting?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"who is fighting a skeleton?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fighting a zombie?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fighting with a ghost?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fighting a monster?\",\n    \"video_name\": \"video9087\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"what does a man drag fanning under?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is sinking in the sea water?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man knock fanning off of?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"who is strugling with the water waves?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a big fish catch the man in while he swimming?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what do a person in blue color cloth wearing dress inside swimming water displaying on screen?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man named mick fanning riding a surfboard in the water he accidentally says?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"word\"\n  },\n  {\n    \"question\": \"who gets attacked by a shark while surfing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"fanning\"\n  },\n  {\n    \"question\": \"what do a person in blue color cloth wearing dress inside water swimming moving ups?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do a person in blue color cloth wearing dress inside swimming water moving ups?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do a person in blue color cloth wearing dress inside water swimming displaying on screen?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is getting attacked by a shark in the water?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"fanning\"\n  },\n  {\n    \"question\": \"what does a man in the ocean with a surfboard disappear from?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"who is a man named mick fanning riding a surfboard in the water there is?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"commentating\"\n  },\n  {\n    \"question\": \"who is speaking while a surfers paddles in the water?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"what do a person in blue color cloth wearing dress inside water swimming water displaying on?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a surfers paddle in?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what comes?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"who knocks fanning off of a shark?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a big fish catch in sea while he swimming?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drags fanning under water?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does mick fanning get attacked by while surfing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"who catch the man in sea while he swimming?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is trying to get on his surfboard while a shark comes?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the men mick fanning is attack the blue whale in adventurly in?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is mick doing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"fan\"\n  },\n  {\n    \"question\": \"what are waves doing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is man seen doing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a person in blue color cloth doing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"struggle\"\n  },\n  {\n    \"question\": \"what is a man in the water doing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a commentator doing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a ocean with a man doing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9088\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"who is detailing a car?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman performing about the safety features and website of their cars while showing the interior of a car?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"voiceover\"\n  },\n  {\n    \"question\": \"who safety video?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what is a women advertising on the vehicle presented?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"safety\"\n  },\n  {\n    \"question\": \"what is a person talking about something on?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a driver safety?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"what is being displayed?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being presented?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person talking about on car?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman detailing?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about something on car?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman describe the features of?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"detail\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who describes the features of a vehicle?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is performing a voiceover about the safety features and website of their cars while showing the interior of a car?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video9089\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is small girl doing?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a little boy showing?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"mole\"\n  },\n  {\n    \"question\": \"who does a man talk about?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who has a disease?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a boy have?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"disease\"\n  },\n  {\n    \"question\": \"who is shown with some disease?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a child shown with?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"disease\"\n  },\n  {\n    \"question\": \"who talks about a kid?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a little boy that a mole cover?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"what did a child with a disease causing a mole to cover?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"who is showing a large mole?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a video show a child with?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"who is talking about a deformed boy?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows a child with deformed skin?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who does a video show with deformed skin?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what shows a child with a skin disease?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a video discussing a disease that cause moles to grow on?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a child with a disease doing?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"cause\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9090\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a wrestler accepting?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"award\"\n  },\n  {\n    \"question\": \"what does a man hold?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"trophy\"\n  },\n  {\n    \"question\": \"what has the player been given?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"award\"\n  },\n  {\n    \"question\": \"what is a sports man holding?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"trophy\"\n  },\n  {\n    \"question\": \"what does a man accept?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"trophy\"\n  },\n  {\n    \"question\": \"what is receiving an award?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone receiving?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"award\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a wrestler receive?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"award\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"who is receiving a shield?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a sports man doing?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is an athlete doing?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"what is a man receiving?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"shield\"\n  },\n  {\n    \"question\": \"what do some athletes clap in?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"gymnasium\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what is a sports person doing?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"who holds a trophy?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has been given award?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who is holding winning trophy?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who accepts a trophy?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a wrestler doing?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"accept\"\n  },\n  {\n    \"question\": \"who receives an award?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who talks about wrestlers?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what is an athlete receiving for wrestling at the university of virginia?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"trophy\"\n  },\n  {\n    \"question\": \"who is receiving a trophy for wrestling at the university of virginia?\",\n    \"video_name\": \"video9091\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who is a excavator being operated by?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is being operated by the character?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"excavator\"\n  },\n  {\n    \"question\": \"what is a cartoon driving a piece of?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"machinery\"\n  },\n  {\n    \"question\": \"who is playing with toys while narrating?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who acts out adventures with action figures?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is driving a piece of heavy machinery?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do the toys seem to be talking about?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what can help kids learn how to work in a fast food restaurant?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who voices while playing with toys?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a toy bulldozer driven by a toy animal talking to?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what seem to be talking about food?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who plays with a toy truck?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a toy bulldozer driven by a toy animal doing?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the toys seem to be doing?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what moves around?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"bulldozer\"\n  },\n  {\n    \"question\": \"what shows children toys in action?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is in a toy truck?\",\n    \"video_name\": \"video9092\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who looming an item?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who is threading an object?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who works on a very interesting craft?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man using to shape plastic?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"hook\"\n  },\n  {\n    \"question\": \"what does a person doing an arts and craft?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"who is shown creating a 3d object?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing with fine tools?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what does a person attach to a plastic toy?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"rubber\"\n  },\n  {\n    \"question\": \"who is using a hook to shape plastic?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing people how to make something using rubberbands?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing craft work with fine tools?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who bends some wires together?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing craft work?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do hands sculpt?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a person loom?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"item\"\n  },\n  {\n    \"question\": \"who is doing his art work?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person threading?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a person showing?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"who attaches rubber bands to a plastic toy?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"loom\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"thread\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"twist\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person is shown doing?\",\n    \"video_name\": \"video9093\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"who is playing his guitar?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a teenage boy play?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is performing a song?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a boy singing?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a boy performing?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a teenager playing?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a teenage boy sing for?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"who sings for an audience?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"who is singing while playing the guitar?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man playing in a stage?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"guitor\"\n  },\n  {\n    \"question\": \"when is a man playing guitor?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who plays guitar in front of an audience?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a song on a guitar for his fans?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing in front of a group of people?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a teenager performing in front of a small audience?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who plays guitar to an audience?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitor in a stage?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play in front of an audience?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man singing and doing?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is boy doing?\",\n    \"video_name\": \"video9094\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the kids wearing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who goes off to sing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"boyfriend\"\n  },\n  {\n    \"question\": \"who is a girl confronting?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"boyfriend\"\n  },\n  {\n    \"question\": \"who runs wearing different costumes?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"how many children are fighting with small sticks?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do kids in costumes play in?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what does a boy is wearing costumes and doing various pose in?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"confront\"\n  },\n  {\n    \"question\": \"what is boys doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what are children in wolverine costumes doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the kids doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two boys in costumes doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two children doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is small kids doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a kid runs doing?\",\n    \"video_name\": \"video9095\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a fiction movie scene doing?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"how many men are sword fighting?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what fight scene from the pirates of the caribbean?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who has a sword trying to protect himself?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sword figthing a skeleton?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"who fihgts with cadaver?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fights with other pirates?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"what is a pirate figthing a skeleton?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who fights with some monster outside?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are pirates doing?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who is fighting a zombie?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man has a sword doing?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what does a man fihgts with?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"cadaver\"\n  },\n  {\n    \"question\": \"what is there are pirates doing?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two men fighting?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who is a man fighting?\",\n    \"video_name\": \"video9096\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dressing?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy comb?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is getting ready?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person hiding under?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"who combing his hair?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man doing in the mirror?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a man looking in?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what does a man leave a man is fixing?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is hiding under a desk?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man looking at him in?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is a man doing his hair in?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"who is looking in the mirror?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks at himself in the mirror?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man leave is fixing his hair?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fixing himself up in the mirror?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man leave is getting dressed in front of a mirror then?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at him in a mirror?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing his hair in the mirror?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who leaves a man is fixing his hair?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who leaves a man is getting dressed in front of a mirror then?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man look at himself in?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what do a man fix himself up in?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"comb\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is a man without a shirt doing?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"style\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9097\",\n    \"answer\": \"groom\"\n  },\n  {\n    \"question\": \"what does a long red train run over a bridge on?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what does a long red train run over on a track?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what is the big red train driving on in the mountain?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"railway\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is moving through the country with music playing in the background?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is the big red train driving on the railway in?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is made surreal?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what is a red train moving through with music playing in the background?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what does the scene switch to?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is running in the bridge?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who do a train moving sitting?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"passenger\"\n  },\n  {\n    \"question\": \"what switches to first person?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what do a train going under?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what is a train running in?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what is a red passenger train going through?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"countryside\"\n  },\n  {\n    \"question\": \"what do a train moving and many passenger traveling displaying on screen?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what is a red color train doing?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is the big red train doing?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what passes through verdant mountains and under archways along a clear track?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a red train doing?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a scenic view shows a large red passenger train doing?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is there is a red train doing?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is train doing?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"who do a train moving traveling water scene bridge displaying on screen?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"passenger\"\n  },\n  {\n    \"question\": \"what travels along its tracks as the scene switches to first person?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what travels along its tracks as the path is made surreal?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what heads down a steep hill and around a large curve?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"commuter\"\n  },\n  {\n    \"question\": \"what is running on a big track among the mountain it is going through a various places?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what shows a large red passenger train traveling along a curved mountain side?\",\n    \"video_name\": \"video9098\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what is a dark haired woman instructs the viewer on proper makeup application for doing?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"highlight\"\n  },\n  {\n    \"question\": \"what is the beautiful doing?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman shows the makeup that she doing?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is brunette woman doing?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a girl in black dress a brush in her hand brush for make up beauty facial look doing?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a black woman doing?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking about makeup looks like mascra would a tutorial for how to do makeup lady is darker skin?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"foundation\"\n  },\n  {\n    \"question\": \"what is a lady showing?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what is a woman putting on?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is showing the foundation?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating the different pieces used?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman with black hair doing?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what does a young black woman put makeup on?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who is showing the facial cream?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is putting on makeup?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women applying in a face?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"lotion\"\n  },\n  {\n    \"question\": \"what does a woman show then uses a brush to apply to face?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what does a woman show makeup then uses to apply to face?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is a women applying the lotion in?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who get ready to apply the facial cream?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is showing color facial creme and nail polish?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows makeup then uses a brush to apply to face?\",\n    \"video_name\": \"video9099\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is leading a woman with a horse down a road?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on an animal?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding on?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"who is shown in several clips in what appears to be a tv show?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what are a woman and a disfigured man doing?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a woman and a beast doing?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a woman and a beast walking along with?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do a group of peasants walk around with zombies?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what is a man leading a woman with a horse down?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is on the forest with a woman?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an horrible man on with a woman?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"who is an horrible man on the forest with?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a woman and a disfigured man walking in a forest leading?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are a woman and a disfigured man walking in leading a horse?\",\n    \"video_name\": \"video9100\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what is a group of kids lip doing?\",\n    \"video_name\": \"video9101\",\n    \"answer\": \"sync\"\n  },\n  {\n    \"question\": \"what is young girls doing?\",\n    \"video_name\": \"video9101\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are some kids doing?\",\n    \"video_name\": \"video9101\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are children singing?\",\n    \"video_name\": \"video9101\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"how many young girls sing a sassy song?\",\n    \"video_name\": \"video9101\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are singing?\",\n    \"video_name\": \"video9101\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do kids sing a cover of?\",\n    \"video_name\": \"video9101\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are some kids dancing?\",\n    \"video_name\": \"video9101\",\n    \"answer\": \"bit\"\n  },\n  {\n    \"question\": \"what do two young girls sing?\",\n    \"video_name\": \"video9101\",\n    \"answer\": \"sassy\"\n  },\n  {\n    \"question\": \"who are running?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are computer generated heroes doing?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon shows little kids in costume doing?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"decide\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are characters in a kids game doing?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are five cartoon characters doing?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is five cartoon characters discuss doing?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what are the characters from super why doing?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what are a bunch of kids doing?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"how many cartoon characters discuss picking one of three doors to enter?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"who ponder where a white rabbit went?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are the characters from super why helping alice decide on?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"how many cartoon characters are talking in a room?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"who discuss picking one of three doors to enter?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what shows little kids in costume looking for another friend?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many animated characters interact in a cartoon?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"what show with young boys and girls in a room?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"carton\"\n  },\n  {\n    \"question\": \"what do carton show with young boys and girls in?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are deciding which door they should go through?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what pick which door to go through?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do five animated characters interact in?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do some cartoon characters run into?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what run into a room?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what generated heroes are talking?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what are five cartoon characters talking in?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are talking in a room?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do costumed kids discuss to enter through?\",\n    \"video_name\": \"video9102\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what are a group of small children doing?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is a small girl with pink dress doing?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of young girls doing?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is little kids doing?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is running around playing at a baseball game?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who runs around outside of a field during a ball game and talks to a boy on his bicycle?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a baby running in to catch the cycle?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what do tiny boy and cute girl play with the ball and cycle in?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"what does a young girl run on a baseball field towards a boy on?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is riding a bike as a girl watches him?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is running in a playground to catch the cycle?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who runs up to a boy riding a bike and grabs his tshirt?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who runs on a baseball field towards a boy on a bike?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"where is a baby running to catch the cycle?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"where do tiny boy and cute girl play with the ball and cycle?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"who pulls on his shirt?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who watches tiny boy and cute girl?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a little girl pull on?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a boy riding as a girl watches him?\",\n    \"video_name\": \"video9103\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a man is voice doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people play minecraft while doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this is a video of two people doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a couple of people doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a couple people doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is minecraft players doing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"decide\"\n  },\n  {\n    \"question\": \"who is someone showing on computer?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are playing the video game minecraft on a computer?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what does the player hold?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is someone running around with?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"axe\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone showing video graphics on?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is running around with an axe?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who holds the pick axe?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what do a boy and a girl team up in?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a video game being shown on?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is showing video graphics on computer?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is being shown on full screen?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing the minecraft video game?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a couple people playing the video game minecraft on?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man chatting with a woman while playing minecraft online?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is voice chatting with a woman while playing minecraft online?\",\n    \"video_name\": \"video9104\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is selecting different colors of eye shadow?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing a makeup tutorial with an eyeshadow palette?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who illustrates?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who applies various shades of makup?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a pale skinned lady doing?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what does a pale woman apply various shades of?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"makup\"\n  },\n  {\n    \"question\": \"what is a woman doing with an eyeshadow palette?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is a girl applying makeup to?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a lady make up by brush?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a girl with very pale skin applying makeup to?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a woman selecting different colors of?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"what does a girl with red hair apply makeup to?\",\n    \"video_name\": \"video9105\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is as video doing?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is someone plays with magnetic beads doing?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is showing how to build a 6x6 cube in under 2 minutes?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many hands take apart the cyber cube?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man try to build in under 2 minutes?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who plays with magnetic balls?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who then rips the cube apart?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who tries to build a 6x6 cube in under 2 minutes?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing with a cube?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing with?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what do two hands take apart?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"cyber\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who beads apart?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows the camera a cube made of magnetic balls?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays with magnetic beads turning round magnets into shapes?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person then rip apart?\",\n    \"video_name\": \"video9106\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is lady is busy doing?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is food services workers doing?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is this is a video of a woman doing?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"who is writing on a piece of paper while someone carries out food?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is serving dishes?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone serving in the restaurand?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who serves pastries and food?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone serving food in?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"restaurand\"\n  },\n  {\n    \"question\": \"who is serving food?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman serve?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does someone carry out?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does woman serve?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is prepared?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is food put on?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"who serves street food?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who carries out food?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a scene from inside a restaurant as food is prepared?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who prepares some food for customers in a restaurant?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who takes a platter of food to be served?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is busy preparing food?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what services workers putting together plates of food?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a man take a platter of to be served?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman prepare for customers in a restaurant?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does food service workers putting together?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is serving food in the restaurand?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is put on a tray?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does food service workers putting together plates of?\",\n    \"video_name\": \"video9107\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman rolling?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"doe\"\n  },\n  {\n    \"question\": \"who makes dough?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is rolling?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is prepared?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a tutorial by a woman on doing?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what does a chef demonstrate?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is rolling something?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about the different sizes?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is instructing on decorative baking?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman instructing on?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"baking\"\n  },\n  {\n    \"question\": \"what is a woman rolling dough with?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is rolling dough?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who demonstrates a recipe?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is rolling doe?\",\n    \"video_name\": \"video9108\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman broadcasting as well as english being taught?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a tv announcer doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with brown hair and a blue shirt doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news reporter doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is an anchorwoman in a blue sleeveless dress doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is special english another is to charge employers for doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"connect\"\n  },\n  {\n    \"question\": \"what is a news woman doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a clip from a various news segment with a woman doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman news reporter doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is news reader doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in blue dress doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"what is pretty blonde doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"broadcast\"\n  },\n  {\n    \"question\": \"what is a woman on the news doing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an anchorwoman in a blue sleeveless dress reporting in front of a blue and green screen with changing shapes?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what anchor speaks to the camera for a news segment?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking about methods of teaching in different universities?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is speaking about an article on screen?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what achors talks about online tests and scores in universities?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is broadcasting news as well as english being taught?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman with brown hair and a blue shirt talking about?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"online\"\n  },\n  {\n    \"question\": \"what is a woman in blue dress announcing?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what is a news reporter speaking about an article on?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a news reporter speaking about on screen?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"article\"\n  },\n  {\n    \"question\": \"what is a woman on the news talking about?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what do students tend to have anchor talking about the problems?\",\n    \"video_name\": \"video9109\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a clip with a woman doing?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a newscaster doing?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who is reporting the news?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"who is explaining why strict gun control isn t helpful in stopping violent crime?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes the problem of gun violence in chicago?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is talking about something about gun control?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about gun violence?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"what anchor discusses gun violence?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is doing a newscast?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving a presentation?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a newscaster talking about?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"violence\"\n  },\n  {\n    \"question\": \"what do a female news anchor?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"violence\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"newscast\"\n  },\n  {\n    \"question\": \"what is a woman reporting?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is speaking?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is news woman doing?\",\n    \"video_name\": \"video9110\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an image of a woman is manipulated doing?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a photoshop tutorial doing?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a photoshop clip of doing?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a computer person doing?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is someone using?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"photoshop\"\n  },\n  {\n    \"question\": \"what is someone doing photoshop on an image in?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"who photoshops an image of a woman?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a photoshop clip of touching up a woman s?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what does a woman s?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what is someone doing photoshop on in fast motion?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what does a woman s is edited?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what does person photoshops?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who is using photoshop?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who s photograph is edited?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does person photoshops picture of?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"who photoshops picture of model?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a person photoshops an image of?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is someone doing on an image in fast motion?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"photoshop\"\n  },\n  {\n    \"question\": \"what tutorial featuring a photo of a woman?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"photoshop\"\n  },\n  {\n    \"question\": \"who is editing the photo of a model on photoshop?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who editing a picture of an attractive woman in a white blouse?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a photo of a model in a white dress shown with playing?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who do a photoshop tutorial featuring a photo of?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing photoshop on an image in fast motion?\",\n    \"video_name\": \"video9111\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"drop\"\n  },\n  {\n    \"question\": \"who is bouncing a ball?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone bouncing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a person bouncing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who does science?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what does a man do?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"who is bouncing an egg?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is an egg bounced on top?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is bounced on a table top?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what is a man bouncing on a table?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what does a man bounce on a table?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what is a man bouncing an egg on?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does a man bounce an egg on?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who bounces an egg on a table?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is bouncing an egg on a table?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dropping an egg on the table which is not breaking?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man playing with a bounce?\",\n    \"video_name\": \"video9112\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animated plumber doing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a lady in a video game doing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a girl describing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is an animated plumber fixing?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"who is describing a video game?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing sims?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing the sims video game?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays the sims and talks about a video game?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is screencasting while playing a video game?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a lady in a video game fixing a leak in?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"bathtub\"\n  },\n  {\n    \"question\": \"what is a lady in a video game fixing in a bathtub?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"leak\"\n  },\n  {\n    \"question\": \"who is commentating while playing a simulation game?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing a commentary while playing the sims?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is fixing problem?\",\n    \"video_name\": \"video9113\",\n    \"answer\": \"plumber\"\n  },\n  {\n    \"question\": \"what does a person color in?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"drawing\"\n  },\n  {\n    \"question\": \"who does a person draw?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a person coloring in?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"drawing\"\n  },\n  {\n    \"question\": \"who is a person drawing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does the person draw?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"chararacter\"\n  },\n  {\n    \"question\": \"who is paining in one cartoon character?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is drawing squidward?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does an artist draw?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a person drawing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who coloring in a drawing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"pain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is an individual doing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who is coloring in a drawing?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who draws a cartoon character?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who draws a cartoon chararacter?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon character?\",\n    \"video_name\": \"video9114\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains how to bake slices of potato?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining how to cook a certain kind of food?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who makes food?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is demonstrating?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what potatos?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who flips some cookies on a baking sheet?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what does someone make?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who baking some potatoes?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about snack?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cooking potatoes?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is making a potato dish?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what frying potatoes in the oven?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shows to fry the foods?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"snack\"\n  },\n  {\n    \"question\": \"who is preparing a recipe?\",\n    \"video_name\": \"video9115\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are four anime s doing?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is cartoon with four characters doing?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are cartoon planes doing?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are cartoon children doing?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is animated characters doing?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a cartoon where they doing?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are childrens characters doing?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what characters flying planes?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are flying in airplanes?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many anime s are flying in air with flight?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"when are flying in air with flight?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what are four anime s flying in with flight?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what are four anime s flying in air with?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what are flying?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are flying?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do animated characters take?\",\n    \"video_name\": \"video9116\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who is talking ans wearing white color dress?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking in the room?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a white shirt man talking?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is wearing a head set microphone?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what man talking in a class room?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who explains about ibm algorithm?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy talk about at a seminar?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"intelligence\"\n  },\n  {\n    \"question\": \"who talks about artificial intelligence at a seminar?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what plugged a man is giving a presentation to the audience with a ear?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"piece\"\n  },\n  {\n    \"question\": \"what do a person in white color dress wearing speaking on topic white board explayning and many persons sitting displaying on screen?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do a person in white color dress wearing cloth speaking on white board explayning and many persons sitting displaying on screen?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"who did piece plug is giving a presentation to the audience with a ear?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man in white color check talked about the important topic in the briefing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what did piece plug a man is giving to the audience with a ear?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what is a man in a pink striped shirt talking about ibm computers at?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"conference\"\n  },\n  {\n    \"question\": \"what is a person with full hand shit explaining?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a guy talk about artificial intelligence at?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"seminar\"\n  },\n  {\n    \"question\": \"what does a man explain about?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"algorithm\"\n  },\n  {\n    \"question\": \"what is a man in a pink striped shirt doing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person in white color dress doing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person with full hand shit doing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person on the stage explains something to the people doing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"hear\"\n  },\n  {\n    \"question\": \"what is a man in a plaid shirt doing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a dress shirt doing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"gesture\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in a white plaid shirt doing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a white shirt man doing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with curly hair stands in front of a room doing?\",\n    \"video_name\": \"video9117\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is somebody doing?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"whip\"\n  },\n  {\n    \"question\": \"what are the players doing?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is the player in white shirt doing?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what are runners doing?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is somebody whipping to make a delicious dish?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"sugarflor\"\n  },\n  {\n    \"question\": \"what do several runners finish with an audience cheering?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"harley\"\n  },\n  {\n    \"question\": \"what is whipping sugarflor and eggs to make a delicious dish?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"what do a group of athletes jump hurdles on?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is the player in white shirt winning?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"hurdle\"\n  },\n  {\n    \"question\": \"what do runners run down?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are runners competing in?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does men finish?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a men jumping in?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"copetision\"\n  },\n  {\n    \"question\": \"what are the players starting to pass?\",\n    \"video_name\": \"video9118\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man explain with a diagram?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a man explain some thing with?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"diagram\"\n  },\n  {\n    \"question\": \"what is person presenting his latest study from?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"biology\"\n  },\n  {\n    \"question\": \"who speaks about genetic engineering?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person presenting about the nano technology?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"what is person presenting from biology?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"what does a man speak about?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"engineering\"\n  },\n  {\n    \"question\": \"who talks about biotechnology and humans?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what does person teach some physics point of?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"who is showing some principles of biotechnology?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is explain some thing with a diagram?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what depicts an illustration of a pink and yellow ring on the left half?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who teaches some physics point of view?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about molecules and certain types of antibodies?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is presenting his project about the nano technology?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the narrator showing some principles of?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"biotechnology\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a voice off-screen talks about recombinant dna technology while the screen shows drawings doing?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"illustrate\"\n  },\n  {\n    \"question\": \"what is the narrator doing?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"who is talking about reconstructing artificial dna?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a diagram of a device being shown to?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is presenting his latest study from biology?\",\n    \"video_name\": \"video9119\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who uses a selfie stick to show action shots of his skiing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"skier\"\n  },\n  {\n    \"question\": \"what do the paraglide rider ride in adventurely on?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"iceland\"\n  },\n  {\n    \"question\": \"what is a man doing some sort of in the snow that includes skis?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"where is a person filming some stuff?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who holds a stick camera while skiing in different areas?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds on to the pole while skiing down the hill?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"skier\"\n  },\n  {\n    \"question\": \"who is doing some sort of sport in the snow that includes skis?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where do the paraglide rider ride in adventurely?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"iceland\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a young man doing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man films himself doing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is a man in black suit doing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is in a black helmet and ski outfit doing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what is a man holds a stick camera while doing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is a man dressed in black doing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"who ride in adventurely on the iceland?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"paraglide\"\n  },\n  {\n    \"question\": \"what is the skier holds on to the pole while doing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what does ice skaters doing skating on?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is a person filming in side?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what is leaning forward in a black helmet and ski?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"outfit\"\n  },\n  {\n    \"question\": \"what skaters doing skating on ice?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is a person filming some stuff in?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what did the girl wearing the black dress and make?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is the men engaged in riding in the ice land?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"adventure\"\n  },\n  {\n    \"question\": \"who is filming some stuff in side?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in black suit performing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what does a man hold while skiing in different areas?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9120\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"who practices rolling backwards on an inclined mat?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man practices doing?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is this guy doing?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"who is playing guitar on stage?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"tumble\"\n  },\n  {\n    \"question\": \"what an adult practices?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"skill\"\n  },\n  {\n    \"question\": \"who is person practicing?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"backflip\"\n  },\n  {\n    \"question\": \"who is practicing gymnastics?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who performs somersaults?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is practicing a backflip?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is practicing stretching exercises?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who practices on mats?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"gymnast\"\n  },\n  {\n    \"question\": \"what is a man playing on stage?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who practices a gymnastic skill?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"adult\"\n  },\n  {\n    \"question\": \"who preforms some stunts?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"gymnast\"\n  },\n  {\n    \"question\": \"who rolls over backwards on a mat?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man playing guitar?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man doing backwards tumble on?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"who demonstrates a gymnastic move in a gym?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man roll over backwards on?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9121\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is in a car?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing off a car?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"mustang\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing off?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a mustang?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who features on the dashboard of a mustang?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man demonstrating the interior of?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man describing the interior of in a foreign language?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"mustang\"\n  },\n  {\n    \"question\": \"who fiddles with switches and the gear shift?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in a mustang describing the features?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the details of the car?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating the interior of a car?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the interior features of the yellow car?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing the interior of a mustang in a foreign language?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man is in a mustang doing?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9122\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who sings in a music video?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who raps in a music video?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do nicki minaj rapping in?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who rapping in a music video?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did nicki minaj song music video?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"hip\"\n  },\n  {\n    \"question\": \"what did nikki minaj with lil wayne?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who did nikki minaj video with?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"wayne\"\n  },\n  {\n    \"question\": \"what did nicki minaj hip hop song?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who dances around for a music video?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who minaj hip hop song music video?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"nicki\"\n  },\n  {\n    \"question\": \"who minaj video with lil wayne?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"nikki\"\n  },\n  {\n    \"question\": \"who minaj rapping in a video?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"nicki\"\n  },\n  {\n    \"question\": \"who sings and dances?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do others dance in?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is rapping?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who raps?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings in a music video while others dance in the background?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"vocalist\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is nicki minaj doing?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is female rapper and back up dancers doing?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9123\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"who did girl tlling that he is sexy?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a blonde girl doing?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is speaking with a younger girl in a dark room in a movie scene?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a boy holding a bottle?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who tlling a guy that he is sexy?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who pays a compliment to a man?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a girl talking to holding a bottle?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does a woman pay a compliment to?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman pay to a man?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"compliment\"\n  },\n  {\n    \"question\": \"what does a young girl confess to an older man?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"attraction\"\n  },\n  {\n    \"question\": \"what does a scene from the movie american?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"who is standing in a doorway?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who offers a girl alcohol?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman having indoors?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is a man standing in?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"doorway\"\n  },\n  {\n    \"question\": \"what does a man offer?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"alcohol\"\n  },\n  {\n    \"question\": \"who is being played?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is in a movie scene an older man doing?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is teenage girl doing?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is young couple in a dark room doing?\",\n    \"video_name\": \"video9124\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man putting on paper?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"glue\"\n  },\n  {\n    \"question\": \"who is making a craft?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the simple kids craft show?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is simple enough for children?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a man gluing?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is making a paper flower?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a pesron creating?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"what is a man putting glue on?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person using to make a craft?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"glue\"\n  },\n  {\n    \"question\": \"who is gluing paper?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing with crafts?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is putting glue on paper?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person applying gum with?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a person applying with a machine?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"gum\"\n  },\n  {\n    \"question\": \"who shows how to do arts and crafts?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing an experiment with crafts?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a glue gun to make a craft?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is applying gum with a machine?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is creating a craft project?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"pesron\"\n  },\n  {\n    \"question\": \"what do a kids craft video showing someone stick something to a heart shaped paper with?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"glue\"\n  },\n  {\n    \"question\": \"what is made with a hot glue gun?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"what do a kids craft video showing someone stick something to a heart shaped with glue?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a teacher doing?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a pesron doing?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"glue\"\n  },\n  {\n    \"question\": \"what is a kids craft video doing?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do a kids craft video showing someone stick something to shaped paper with glue?\",\n    \"video_name\": \"video9125\",\n    \"answer\": \"heart\"\n  },\n  {\n    \"question\": \"what does a clip play of a surfer in?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"who does a clip play of in action?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what is a man riding through a very large wave?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"surfboard\"\n  },\n  {\n    \"question\": \"who is enjoying with sea waves nicely?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about his feelings about surfing while a clip plays of him in action?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what plays of a surfer in action?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is a person enjoying with nicely?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"who talks about surfing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who talks about how happy he is while riding a small pipe?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"who bails out?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a surfer fall over in the attempt of surfing is riding a really big wave?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"who takes pictures from underneath a wave?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"photographer\"\n  },\n  {\n    \"question\": \"what is a surfer doing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what did a man talking of something about a guy skate in?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a surfer talks about his feelings about doing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is water doing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"splash\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is while a person doing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is an under water adventure in the sea doing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a surfer wearing a blue shirt taken down by?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"who is riding a surfboard through a very large wave?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls over in the attempt of surfing a surfer is riding a really big wave?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what is water doing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what splashing while a person on the surf board playing in the water?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is filmes from various angles including an amazing underwater shot?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what is a camera attached to a surfboard shows us images of doing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a surfer is filmes from various angles doing?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"who rides his surfboard through a barrel wave?\",\n    \"video_name\": \"video9126\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a soccer player scores?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"who makes a goal?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are people playing sports in?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a soccer player hop over?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is scoring a goal?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who scores a goal?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are soccer players running around on?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what did one of the players just kick in the goal?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what did one of the players just kick the ball in?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"who are running around on a field?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"where are soccer players running around?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is coring the goal for his team?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who hops over a wall?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a professional soccer game that set to?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a soccer player doing?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"core\"\n  },\n  {\n    \"question\": \"what is happening?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a soccer player scoring?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what does a soccer player make?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what is there are people doing?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is soccer players doing?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a soccer player doing?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video9127\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who gets stabbed by a woman?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"who is talking to a masked man?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"who does batman get stabbed by?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to a woman?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"who and bane talking to one another?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"what does woman stab batman in?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"who is a superhero fighting?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"villain\"\n  },\n  {\n    \"question\": \"who is fighting a villain?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"superhero\"\n  },\n  {\n    \"question\": \"who stabs batman in the back?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is stabbed by a woman?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"who is batman stabbed by?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to bain?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"what is a woman stabbing batman with?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is a woman stabbing with a knife?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"how many man s are talking to each other?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who s batman gets stabbed by the child of ra?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"ghul\"\n  },\n  {\n    \"question\": \"who does al ghul s gets stabbed by the child of ra?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"batman\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stabbing batman with a knife?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a superhero doing?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"stab\"\n  },\n  {\n    \"question\": \"what is batman and bane doing?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is batman doing?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is christian bale as batman confronts bane in the end of dark knight rises and finds out talia alghul has been doing?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is it is the movie doing?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is the two people doing?\",\n    \"video_name\": \"video9128\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on a show?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings a song about love?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing on a stage for a talent show?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"what does a woman sing into while judges respond positively?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings on stage in front of an audience?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings sam smith?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does girl sing a song about?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"who is singing on the stage?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who had a solid voice?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings into a microphone while judges respond positively?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a little girl sing?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"smith\"\n  },\n  {\n    \"question\": \"what did the girl have?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who turns around for a girl auditioning for the voice kids?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"what is a young girl singing on?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a judge turns around for a girl doing?\",\n    \"video_name\": \"video9129\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"who is a person doing a tutorial of on a computer?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"who is doing a tutorial on a computer?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the menu for the moma website have images of?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a person doing a tutorial of a website on?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person using an application in to buy movie tickets?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what does the menu for the moma website have?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a person using in order to buy movie tickets?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"what the change colors and displays on a screen?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person doing a tutorial on?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what do computer graphics the change colors and displays on?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is an online mobile application being displayed on?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are images of art hung on in the room?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what are images of art hung on the wall in?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are various web adresses and a site displayed to?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"effect\"\n  },\n  {\n    \"question\": \"what are hung on the wall in the room?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"who is finally arrived at after a long load time?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"moma\"\n  },\n  {\n    \"question\": \"who is doing a tutorial of a website on a computer?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using an application in order to buy movie tickets?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a software being displayed with?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"menu\"\n  },\n  {\n    \"question\": \"what shot on a web page to buy tickets and few more others?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a smartphone emulator doing?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is giving a tutorial on how to make a meme using phone software?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what emulator showing what momacom looks like in the emulator?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"smartphone\"\n  },\n  {\n    \"question\": \"what is being displayed with its menus?\",\n    \"video_name\": \"video9130\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"where are people cosplaying different characters from anime and shows?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"japan\"\n  },\n  {\n    \"question\": \"how many people touch their masks made to resemble a camera cube with centered black lens one of which is covered in colorful flowers?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a crowd of people doing?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is small girl doing?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is people in costumes are in in asian city and doing?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are a people doing?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is asians on a crowded street in various unique costumes doing?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is an event doing?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there are some more people doing?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"gather\"\n  },\n  {\n    \"question\": \"how many people wear?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is bunch of sexy models in fashionable outfits doing?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an event involving costumed social network enthusiasts in?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what are people cosplaying different characters from anime and shows in?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"japan\"\n  },\n  {\n    \"question\": \"what are people with fancy dresses going on?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are a crowd of people standing in?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does asian people making face while on?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what does asian people being silly face while on?\",\n    \"video_name\": \"video9131\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what is trying to get food?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"alligator\"\n  },\n  {\n    \"question\": \"what are wild animals in?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"what walking around?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is fed?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is an alligator doing?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a crocodile doing?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"bite\"\n  },\n  {\n    \"question\": \"what is a crocodile doing?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a video shows a jackal doing?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a crocodile eating something in?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what showcasing different types of animals?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what shows a jackal walking around an closed area?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a crocodile biting onto?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does an alligator and some jackals in?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"zoo\"\n  },\n  {\n    \"question\": \"what is being fed in a zoo?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is a crocodile being fed in?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"zoo\"\n  },\n  {\n    \"question\": \"what is eating something in pool?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is biting onto something?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is a crocodile eating in pool?\",\n    \"video_name\": \"video9132\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is cartoons doing?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is four airplanes doing?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is animated characters doing?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are an anime s doing?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a cartoon of kids doing?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are the animated characters doing?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are an anime s flying with?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"when are flying with flight?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"who are flying in ships?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are riding airplane?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what s animated series super why?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"what are cartoon characters riding?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a children s clip?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who flies?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are flying?\",\n    \"video_name\": \"video9133\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who gives a tutorial on how to play a video game?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains a video game that is showing on the screen?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about hunted while playing a video game?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who commentating on a video game?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing survival in a game?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"calony\"\n  },\n  {\n    \"question\": \"what is calony playing survival in?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is screencasting a video game?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is calony playing in a game?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"survival\"\n  },\n  {\n    \"question\": \"who is discussing a video game?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are cartoons shown in?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is a man screencasting?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man discussing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking about a new build for world of warcraft?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man explains a video game that doing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a discription and instructions for doing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is calony doing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man talks about hunted while doing?\",\n    \"video_name\": \"video9134\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is someone in?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who gives a description of the seats in a honda?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting in a car?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talks about the car?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person showing the interior of?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person showing the interior of?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man explain the features of?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man describing the backseat of?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who explains the features of a vehicle?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows off the seats of a car?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"who is showing the interior of a car?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is speaking about the interior of a car?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing the backseat of a vehicle?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does somebody show off the seats of?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is the man talks about?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who shows a car interior?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is in a car?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone sitting in?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a person show?\",\n    \"video_name\": \"video9135\",\n    \"answer\": \"interior\"\n  },\n  {\n    \"question\": \"what are in battle with other person outdoors?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what flies?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"bee\"\n  },\n  {\n    \"question\": \"what dolls showing arrow shooting military bomber bombing bird flying fan moving displaying on screen?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who a cartoon dolls showing arrow shooting military bomber bombing bird flying moving displaying on screen?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"fan\"\n  },\n  {\n    \"question\": \"what a cartoon dolls showing shooting military bomber bombing bird flying fan moving displaying on screen?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"what fires under soldiers firing arrows and two characters fight before a bee flies?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"cannon\"\n  },\n  {\n    \"question\": \"what is shooting while a lot of different items go by?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"cannon\"\n  },\n  {\n    \"question\": \"who fight with each other while animals get along with one another?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon graphic doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"illustrate\"\n  },\n  {\n    \"question\": \"what is a cannon doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is bunch of cartoon characters doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animation of archers and a cannon doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is cartoon doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what is a cartoon of arrow firing and doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a cannon fires under soldiers doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a different types of doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is soldiers doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is there are black and white cartoon midevel solders doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a cartoon dolls doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a group of cartoon soldiers doing?\",\n    \"video_name\": \"video9136\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a woman boiling a vegetable in?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a pot of vegetables cooking on?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is showing people how to cook a certain dish?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is boiling a vegetable in a kitchen?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman adding ingredients to that is cooking?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is preparing food in kitchen?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man preparing in kitchen?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who adds salt and cooks meal?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking carrots and onions?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the chef sprinkle in?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"who is cooking food with a poodle in the kitchen?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man preparing food in?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are vegetables cooked in?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sprinkled in some salt?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is adding ingredients to food that is cooking?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cooking with a poodle in the kitchen?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a pot of vegetables doing?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9137\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"who is listing the ingredients needed to make ganache?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows how to bake a cake?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is saying the ingredients for a dish?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make ganache for a recipe?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a cake and showing which items are included?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing a cake recipe?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making cake?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is following a recipe?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about how to complete a recipe?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who teaches veiwers how to cook?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making ganache?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman following?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman discussing?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is woman preparing?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"list\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9138\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is riding on a cartoon star?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is playing a song?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is riding on a star?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are a girl and a star riding on?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is sailing on water?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is a cartoon girl riding on?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who is riding a star?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sits on a bear?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a ship sailing on?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a girl riding?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a girl sit on?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what plays of a girl on a star and a ship?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is an animated scene of a girl doing?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a girl and a star doing?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what did a clip from an animation to the song twinkle?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who sits on a star and a ship sails on the sea?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing a rhymes and a baby with star on the sky?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is sitting on a star in an animated video?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9139\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what performs on stage?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what performs on a stage?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what do musicians performing live on?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"when does a band perform?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a band playing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man perform?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what do a live by a musical group?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what is playing on stage?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who performs a guitar solo?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing with his band playing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what performs live?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band performs on stage doing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who dances in between musicians performing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is musicians doing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what performs on stage showing a guitar solo and a man singing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is playing a guitar solo followed up by another man starting to sing while a woman dances in between musicians performing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what perfoms a song on stage?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing with a band?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9140\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is climbing a wall?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is a robot gecko climbing?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does the man look to have made?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man show talks about?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"who is talking about a robot?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about robots?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about some robotics?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks to have made something unusual?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows talks about a robot?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what can a man describing do such as climbing up a pole?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"who is discussing robotics with viewers?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes how to use a robot?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a mechanical robot that climbing up?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"surface\"\n  },\n  {\n    \"question\": \"what does a man on the history channel talk about?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a mechanical robot that doing?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a robot gecko doing?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9141\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is decorating icecream?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows tiny utensils decorating a dessert?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person show some food on?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"who shows some food on a tray?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what sprinkles is used to top ice cream?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is showing how to prepare ice cream with toppings?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pours sprinkles on top of ice cream?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what desserts on a saucer?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"minature\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is a person shows themselves doing?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"decorate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"decorate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"decorate\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who puts sprinkles on a tiny bowl of ice cream?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person show on a tray?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does the minature desserts on?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"saucer\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"dessert\"\n  },\n  {\n    \"question\": \"what is a person eating?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"who does food s?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"iteam\"\n  },\n  {\n    \"question\": \"what is someone serving?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"breakfast\"\n  },\n  {\n    \"question\": \"what does a person show tiny utensils decorating?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"dessert\"\n  },\n  {\n    \"question\": \"what is a person decorating?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man decorating?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"icecream\"\n  },\n  {\n    \"question\": \"what are sprinkles applied to?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"dessert\"\n  },\n  {\n    \"question\": \"who is decorating food?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who prepares a very small sundae?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is eating a little meal?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making dessert?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is serving breakfast?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what s a food iteam?\",\n    \"video_name\": \"video9142\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is video of a girl doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is the young girl doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is little girl doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kid seems to be doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is child doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is playing with a toy?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who works on a craft project?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is attempting to make cakepops?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is explaining how to make cake pops?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sits behind some ingredients?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is arranging a doll?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is doing an puzzle?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young girl make?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who describes how to make a sugary sweet?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who makes food?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"puzzle\"\n  },\n  {\n    \"question\": \"what is a girl playing with?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is preparing to bake something?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a girl arranging?\",\n    \"video_name\": \"video9143\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"what are a woman and a man hugging?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"eachother\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a woman and a man doing?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"expres\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman reviewing?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"horror\"\n  },\n  {\n    \"question\": \"what does a girl turn in?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a woman sitting on?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does movie reviewer talk about?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"horror\"\n  },\n  {\n    \"question\": \"who turns in a chair?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is reviewing a horror film?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about the cast of the movie insidious chapter 3?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting on a chair?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a woman talks about a tv show s?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"plot\"\n  },\n  {\n    \"question\": \"who talks about horror film?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"reviewer\"\n  },\n  {\n    \"question\": \"who talks about a horror film?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who preforms a ritual in a house?\",\n    \"video_name\": \"video9144\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"who is showing paper art?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is handling a sword and paper?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone building?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is building a paper sword?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make a sword out of paper?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who folds a piece of paper into a sword?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is holding a sword made out of paper?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains how to make a paper sword?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person fold a piece of paper into?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who is showing off how to make a paper sword?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making a paper sword?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a person fold a piece of into a sword?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9145\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a woman with a bag doing?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there are some fashionable ladies doing?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a young woman doing?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a girls doing?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is ladies doing?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is various images of a woman doing?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is blonde woman which is very beautiful doing?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a slide show of fashionable teens doing?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is some young women walk in the city doing?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is cara delevigne doing?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is blonde woman walking slowly on?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do various young women walk in?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who is walking slowly on a street?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is blonde woman which is very beautiful walking on?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who are various clips of pictures shown of with blonde hair while upbeat music plays?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who s photographs are seen in different dresses and outfits?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is having photo session on the street?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what are various clips of pictures shown of a celebrity with while upbeat music plays?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does the woman s are seen in different dresses and outfits?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"where do various young women walk?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is a woman with a bag walking on?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is wearing various model designer fashions and styles?\",\n    \"video_name\": \"video9146\",\n    \"answer\": \"delevigne\"\n  },\n  {\n    \"question\": \"what is couple of guys in tshirt driving and doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a man drive a car speedy and another man doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is couple of guys doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is two friends doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two men speak to each other while doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is 2 men inside a car man in black t-shirt doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"how many people are driving in very fast?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a driver and a passenger speed through a windy road while doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"rev\"\n  },\n  {\n    \"question\": \"what are the two people doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man driving into a mountion very fast?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is car driving?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two boys doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are some guys inside a car doing?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is dangerous place?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"driving\"\n  },\n  {\n    \"question\": \"how many men speak to each other while driving down the road?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who drive a car speedy and another man sitting in the side?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many guys take their sports car for a fast ride?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man driving his car into very fast?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"mountion\"\n  },\n  {\n    \"question\": \"how many people are talking some matter in serious?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are some guys inside a car driving around?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"when do two men testing driving a sports car and being quite impress?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"who is driving his car into a mountion very fast?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two guys take for a fast ride?\",\n    \"video_name\": \"video9147\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is carrying an egg on a spoon?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl in?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"what does a girl play?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who plays a game?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is in the yard?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many young girls are sitting?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what a girl grabs a spoon from?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"backyard\"\n  },\n  {\n    \"question\": \"how many young girls are laughing?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what does a girl use a spoon to transport?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what does a girl use to transport an egg?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who competes in egg carrying competition?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is over by the inflatable slidfe?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl carrying on a spoon?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what is a little girl carrying an egg on?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"what does a girl pick up with a spoon?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what does a girl pick up an egg with?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who is outside running at a birthday party?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who uses a spoon to transport an egg?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who runs towards balloons?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who picks up an egg with a spoon?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"who walks with an egg on a spoon?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are four young girls doing?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is little girl competes in egg doing?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is there was a girl in backyard doing?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"balance\"\n  },\n  {\n    \"question\": \"what is this is a video of kids doing?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is young girl doing?\",\n    \"video_name\": \"video9148\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what are three kids doing?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are three people singing on?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"how many people are singing on the voice?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"how many kids are singing on stage to judges?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when are three kids singing to judges?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do a group of three people sing?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"how many kids are performing a song?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what do young contestants perform together on?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what are three kids performing?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are a boy and a girl singing for?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what do three sing together on?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a boy singing?\",\n    \"video_name\": \"video9149\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man playing with in the room?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who talks about being a great basketball player?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what do a boy play by himself in a gym?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do a boy play basketball by himself in?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who is asking the questions about why he can t be the best?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"who questions himself on why he cannot be a great basketball player while footage of a young basketball player is showing?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is a young kid shooting hoops while the commentator is asking the questions about why he can t be the best in?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what is a man playing with a ball in?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who dribbles a basketball down the court?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who practices basketball in the gym alone?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who practices dribbling of basket ball in the court?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who dribbles a basketball in a gym alone and shoots?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a person practising basket ball lonely with?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"interest\"\n  },\n  {\n    \"question\": \"what is a person practising lonely with great interest?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"who does dribbling moves with a basketball?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing with a ball in the room?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting hoops while the commentator is asking the questions about why he can t be the best in a gym?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who playing basketball by himself in a gym?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a young man dribble a basketball down?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what a player alone practices dribbling of basket ball in?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what does a young man dribble down the court?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a young man dribbling moves with?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what a player alone practices dribbling of in the court?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what does a young boy dribble in a gym alone and shoots?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do a boy in ash color dress wearing cloth practicing basketball inside displaying on screen?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"who dribbles a basketball?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes a goal?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a man dribble?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a boy in ash color dress doing?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young kid doing?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person in red shorts in doing?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a narrator questions himself on why he can not be a great basketball player while footage of a young basketball player doing?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who makes a shot?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"practise\"\n  },\n  {\n    \"question\": \"what is in a gym a young kid doing?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a young man make?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"what does a young boy make?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what do a boy in ash color dress wearing practicing basketball inside stadium displaying on screen?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who is practising basket ball lonely with great interest?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a lone man practices basketball hoop in while the narrator talks about being a great basketball player?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"gymnasium\"\n  },\n  {\n    \"question\": \"what do a boy in ash color dress wearing cloth practicing inside stadium displaying on screen?\",\n    \"video_name\": \"video9150\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is scientists found barracudas and other fish offshore while doing?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a diver doing?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a narrator describes a scene doing?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is an explorer underwater doing?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"capture\"\n  },\n  {\n    \"question\": \"what is a man in doing?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"sum\"\n  },\n  {\n    \"question\": \"what is still-shots of colorful ocean fish and the diving camera-man doing?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"who describes a scene involving fish such as grouper and barracudas?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is a diver with fins doing?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what does a man document with finding fish underwater?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"what is person under?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is under the water?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who documents his experience with finding fish underwater?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about his experience swimming in the deep sea with?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what do scooba diver in with fish and coral?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a man in the ocean taking pictures of different fish in?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is a scuba diver under water there are?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man in summing costume and other summing things in?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"who talks about his experience swimming in the deep sea with various fish?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what diver in blue water with fish and coral?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"scooba\"\n  },\n  {\n    \"question\": \"who is explaining what scientists saw in the deep ocean?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a scuba diver under there are many colorful fish?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is swimming under the water filled with fish?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is under water there are many colorful fish?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"scuba\"\n  },\n  {\n    \"question\": \"who is seen in a large school of barracuda in circle formation near surface?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"diver\"\n  },\n  {\n    \"question\": \"what do different pictures of fish and scuba divers display on?\",\n    \"video_name\": \"video9151\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are rugby players doing?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"dash\"\n  },\n  {\n    \"question\": \"who are on a field?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does football highlight are shown to?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are american football players on?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a football player catch?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who gets tackled hard?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who show?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"official\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who gets hit?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who catches the ball?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what highlights are shown to rap music?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who are dashing to each other?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"who a person is folding up?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what do the football players try to catch?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"where are american football players?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who try to catch the ball?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is shown with rap song in background?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is folding up a baby stroller?\",\n    \"video_name\": \"video9152\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing with toys?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is playing with a toy?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is assembling a toy?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does the childs assemble?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is someone playing with?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a girl doing at?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"tur\"\n  },\n  {\n    \"question\": \"what is a girl playing with?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a girl assembling?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who was very creative?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is playing with a toy?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is doing at tur?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is constructing a board game slide?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who plays with a small play set?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"construct\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"fit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who does an arts and crafts project on camera?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is young girl doing?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9153\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what does a slideshow of photos play to?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who holds a racoon?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is holding a snake?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what holds a snake?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"slash\"\n  },\n  {\n    \"question\": \"what does slash hold?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"what does the first lady hold?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"racoon\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"who was in black and white?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"photgraph\"\n  },\n  {\n    \"question\": \"what are being shown?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what is a man shown sitting on with his pet snake?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who shows a woman with a racoon?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a short music video doing?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is scenes of people doing?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is shown sitting on a couch with his pet snake?\",\n    \"video_name\": \"video9154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows what is in a common double a battery?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who keeps the magnet on the table?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man keep on the table?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"magnet\"\n  },\n  {\n    \"question\": \"what is a man attaaching two batteries together in to complete an experiment?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what does a man conduct with battery and magnet?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a main experimenting with battery and wire?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does man then place into a square on the positive side?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"copper\"\n  },\n  {\n    \"question\": \"what is a man attaching to the battery?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"magnet\"\n  },\n  {\n    \"question\": \"what is a man attaching the magnet to?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"what is a man doing with a battery an magnet?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is presenting his trick with two batteries?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man keep the magnet on?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is holding a battery and a magnet?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person presenting with two batteries?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"what do a man take?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"circuit\"\n  },\n  {\n    \"question\": \"what did the man put the parts together to create?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"gadget\"\n  },\n  {\n    \"question\": \"who take a copper circuit?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting a magnetic together with?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"what does a man put together at the negative side?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"who is presenting his new tricks with two batteries?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who put the parts together to create a gadget?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man make doing experiment by sticking magnet with duracell battery?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"copper\"\n  },\n  {\n    \"question\": \"what did a man make a copper frame doing by sticking magnet with duracell battery?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who made a copper frame doing experiment by sticking magnet with duracell battery?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"attach\"\n  },\n  {\n    \"question\": \"what is the man talks about doing?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a main doing?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is this russian man doing?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who places magnet on negative side of aa battery?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts the battery together at the negative side?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining how to do an experiment using a aa battery and some wire?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many batteries is a man attaaching together in order to complete an experiment?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks about using the battery with a magnet in his research table?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a black shirt doing with magnets and batteries?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is attaaching two batteries together in order to complete an experiment?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man place on negative side of aa battery?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"magnet\"\n  },\n  {\n    \"question\": \"who is doing a experiment with a battery an magnet?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is attaching the magnet to the battery?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about some electrical circuit with the help of battery and wire?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who then places copper wire bent into a square on the positive side?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to make something with a battery?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who conducts an experiment with battery and magnet?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting a magnetic together with a battery?\",\n    \"video_name\": \"video9155\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a person in brown color dress wearing speaking standing on topic discusing and bafallo still image injection displaying on screen?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what does a man wear blue dress talking something about?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"what does a man wear blue dress talking about the cow?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man wear talking something about the cow?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a person in brown color dress wearing cloth speaking standing on topic discusing and bafallo still image injection displaying on?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"where is the cow?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"what is to the left?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"what is the cow to?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"what is a person in brown color dress doing?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt and a black and blue tie doing?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a guy in a blue button up shirt and tie doing?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man wears blue dress doing?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what did a man in a blue shirt and a black and blue tie standing next to a blue question mark sirenge and above?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"who is explaining about the how the cows should be treated?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about a guy that administered a vaccine?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man starts to explain some highlight of saving advancements of small pox in medical history?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"who wears blue dress talking something about the cow?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who begins to describe techniques used to make life saving vacinations?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt and tie doing?\",\n    \"video_name\": \"video9156\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a cartoon with children inside doing?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is animated cartoon with doing?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a cartoon fox doing?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who looks worried while a robot creature dances?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what dances?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"what mocks the psy video gangem style?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is using a megaphone?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who dances funny?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a cartoon character do?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a cartoon fox using?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"megaphone\"\n  },\n  {\n    \"question\": \"who does a dance?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what watches as another animate character dances funny?\",\n    \"video_name\": \"video9157\",\n    \"answer\": \"wolf\"\n  },\n  {\n    \"question\": \"what are being fed?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"llama\"\n  },\n  {\n    \"question\": \"who is petting?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are being groomed?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"llama\"\n  },\n  {\n    \"question\": \"what are being petted?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"llama\"\n  },\n  {\n    \"question\": \"what is standing?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what are small camels with thich fur doing?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a little deer doing?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what are an animals doing?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman strokes and pets some alpacas while doing?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are few alpascas doing?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is petting a llama among a group of llamas?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a women pets domesticate at a farm while the llamas are being fed?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"llama\"\n  },\n  {\n    \"question\": \"what did a women pets domesticate llamas at while the llamas are being fed?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"farm\"\n  },\n  {\n    \"question\": \"who pets a small animal that is in a pen with others?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pets a llama that is in group on grass area?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who petting a couple of animals that are standing next to each other?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is holding a green string while playing with the sheep?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone petting among a group of llamas?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"llama\"\n  },\n  {\n    \"question\": \"what is playing with the animals?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is looking each other?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"who are few alpascas standing close is petting them?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are standing close a woman is petting them?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"alpasca\"\n  },\n  {\n    \"question\": \"what are an animals standing in group on?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"carriage\"\n  },\n  {\n    \"question\": \"who is showing love towards an animals?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are an animals standing in on the carriage?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is having the body of a goat and miniature of camel as neck and head?\",\n    \"video_name\": \"video9158\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is animation of the cover of a movie chef doing?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a movie poster is shown doing?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is poster doing?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what are a picture of a bus and passenger doing?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a still image of pictures photoes of girl and boys and children doing?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what shows a poster for chef by jon favreau?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what do a group of people work together in on a movie poster?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is shown scrolling down the screen for the movie chef?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"poster\"\n  },\n  {\n    \"question\": \"who is in red?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"word\"\n  },\n  {\n    \"question\": \"what is being played for the movie chef?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do a group of people smile in?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a red food truck on the bottom of the chef?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"poster\"\n  },\n  {\n    \"question\": \"what scrolling over a dvd case for the movie chef?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who lean over the side of a food truck?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what has a red food truck drawn on the bottom of it?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"poster\"\n  },\n  {\n    \"question\": \"what does animation of the cover of a movie chef panning up screen as jazz music play in?\",\n    \"video_name\": \"video9159\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what does a girl explain?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"procedure\"\n  },\n  {\n    \"question\": \"who is doing craft work?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman describe designing process?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"nail\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"sticker\"\n  },\n  {\n    \"question\": \"who is doing craft designs?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who explains a manicure procedure?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman describe a nail designing?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"proces\"\n  },\n  {\n    \"question\": \"who describes a nail designing process?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make something?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about nail sticker sheets?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a product look like someone made some kind of?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"sticker\"\n  },\n  {\n    \"question\": \"who does a product look like made some kind of a sticker?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shows how to create a nail design?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing a colorful sticker?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what looks like someone made some kind of a sticker?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"who is demonstrating an alternative method for nail decoration?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is displaying a design used for painting nails?\",\n    \"video_name\": \"video9160\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is holding candy?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is demonstrating some stickers from the movie cars?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person holding?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"candy\"\n  },\n  {\n    \"question\": \"who showcases?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is video of someone doing?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is playing with toys?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is showing the foot well under the door jam area of the car?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens a box of disney cars toys?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who removes the pieces from the box of a cars branded model kit?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who shows off something from the movie cars he has?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing well under the door jam area of the car?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"who is unwrapping cars merchandise?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who plays with plastic cars toys?\",\n    \"video_name\": \"video9161\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"ply\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person records himself doing?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this is a video of a guy doing?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is plying guitar?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is holding a guitar?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is listening to music?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the boy play?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy plying?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man listening to?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boy play?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person record himself playing?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who played the guitar?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who plays the guitar in front of the camera?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who covers a song on guitar?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boy play in front of the camera?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who records himself playing an electric guitar?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays guitar along with a song?\",\n    \"video_name\": \"video9162\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is designing a game?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does guy ensure looks good?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a video is shown doing?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"animate\"\n  },\n  {\n    \"question\": \"what is an animation of a person doing?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"who ensures a video looks good?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does person develop?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who animations on pc?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what modification and development?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is being animated?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a person designing?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"who is creating a computer animation of a walking man?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking while working on an animation?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how he does animation in a computer program?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown animating a minecraft character?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who develops character in game?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who modifies a minecraft character model?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9163\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is black haired woman walking near?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a toursist who is fond of a tokyo fashion clothes designer explain why?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"excitement\"\n  },\n  {\n    \"question\": \"who did a promo page of about a shop name with a good stocks of goods?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"hayatochirus\"\n  },\n  {\n    \"question\": \"what does lot of sale offer have described about the sale offer in the shopit?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"excitement\"\n  },\n  {\n    \"question\": \"what are the people passing near the shops on?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does lot of sale offer have all the excitement described about the sale offer in?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"shopit\"\n  },\n  {\n    \"question\": \"who is walking near the shop?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is selling things with art on the corner?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what are there is a town many people doing?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is black haired woman doing?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are the people doing?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a yellow restaurant doing?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"sell\"\n  },\n  {\n    \"question\": \"what is a women in black dress doing?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are the people walking on?\",\n    \"video_name\": \"video9164\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man on a chair doing?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who sits?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do person playing guitar solo for the song dance with?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing along to a song on guitar?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting in a chair playing the guitar?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dance on an electric guitar?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a cream color electric guitar?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting in playing the guitar?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who plays electric guitar live on video?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man play electric guitar live on?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing voilin intrestingly?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man play live on video?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing with his guitar?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays shut up?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing intrestingly?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"voilin\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is man playing with?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is this is a video of a person doing?\",\n    \"video_name\": \"video9165\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do two professional wrestlers leave?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what do two professional wwf wrestlers fight in and out of?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what smackdown wrestling match?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"how many men are fighting wrestling?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are wrestling?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are wrestlers fighting outside?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what do a wwe wrestling?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what do two wrestler fight in?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are two men wrestling in?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who is wrestling?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two professional wrestlers fighting in?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"how many professional wrestlers are fighting in the ring?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is there are men doing?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"how many professional wrestlers leave the ring?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does ray mysterio do flip on another guy?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"crazy\"\n  },\n  {\n    \"question\": \"how many men are wrestling in a ring?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many professional wrestlers continue to fight?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do scene from wwe smackdown wrestling?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who slams another wrestler on the mat?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what are wrestlers doing?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two professional wrestlers doing?\",\n    \"video_name\": \"video9166\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are some guy s playing in a ground?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who runs?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what do baseball players celebrate?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"victory\"\n  },\n  {\n    \"question\": \"who does a baseball team celebrate after?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"homerun\"\n  },\n  {\n    \"question\": \"what celebrates after a homerun?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who jumps into his team to celebrate?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are playing baseball in a ground?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are some guy s playing baseball in?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is jumping into a group of men all from the same team?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a game doing?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is an old clip doing?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is athletes doing?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some guy s doing?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are a bunch of baseball players doing?\",\n    \"video_name\": \"video9167\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"who narrates part of the churro creation process?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is an alpaca stuffed animal doing?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is cooking?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"puppet\"\n  },\n  {\n    \"question\": \"who is being rolled in cinnamon and sugar?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"churro\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"pastry\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a cartoon puppet doing?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"animate\"\n  },\n  {\n    \"question\": \"what is a puppet doing?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a puppet doing?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"tos\"\n  },\n  {\n    \"question\": \"what is a stuffed animal doing?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what did a stuff animal is making?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are hot churros rolled in?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"cinnamon\"\n  },\n  {\n    \"question\": \"what did a stuff tells churros how to make churros?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"llama\"\n  },\n  {\n    \"question\": \"who describes how to make a dish?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a stuff is making desert?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is showing how to make churros?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who rolls around in cinnamon and sugar?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"churro\"\n  },\n  {\n    \"question\": \"what did an alpaca stuff is cooking churros?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"who explains how to cook churros?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a stuff is preparing churros?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"who is cooking pastry?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what stuffed animal is cooking churros?\",\n    \"video_name\": \"video9168\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what do young kids play in?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"daycare\"\n  },\n  {\n    \"question\": \"what is a child?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what do a silent commercial of children playing as in a day care?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"who is talking to children playing in a play area?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is inside with children?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who is finger painting?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is multiple kids doing?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a child is finger doing?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is a group of kids doing?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a silent commercial of children doing?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a teacher is inside with children and kids doing?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9169\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two cats playing on?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"counter\"\n  },\n  {\n    \"question\": \"what are pets walking around?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is laying on a couch?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what did the dog relax on?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what does a dog lay on?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"how many cats greet each other?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is taking home vide?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what lays on a couch?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a tour of the animals in a woman s?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what relaxed on the couch?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is two cats doing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is couple of cats doing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are pets doing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are the cats doing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what are two cats doing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"how many cats are kissing each other in the living room?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two cats doing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"sniff\"\n  },\n  {\n    \"question\": \"what is standing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"how many cats are playing on a counter?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are the cats kissing?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is girl taking?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is the dog laying on?\",\n    \"video_name\": \"video9170\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is a man fixing?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who lays down the weather watch?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"roofer\"\n  },\n  {\n    \"question\": \"who is applying weather watch to a roof?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men put special adhesive shingling to a roof?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is applying a sheet to a roof?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is installing material to a roof?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did two men put shingling to a roof?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"adhesive\"\n  },\n  {\n    \"question\": \"what is a man applying weather watch to?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is a man installing to a roof?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"material\"\n  },\n  {\n    \"question\": \"what is a man applying to a roof?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"sheet\"\n  },\n  {\n    \"question\": \"who stuff to a roof?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man installing material to?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"who is working?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man applying a sheet to?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what do man climbing stuff to?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"who is installing a weather device?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing on a roof?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on a roof?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fixing a roof?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing work?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man standing on?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what do man ading stuff to?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is a man installing?\",\n    \"video_name\": \"video9171\",\n    \"answer\": \"weather\"\n  },\n  {\n    \"question\": \"what is a boy make up her body and doing?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is sexy girl in pink hair and heavy tatoo s doing?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the make up men doing?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a guy with full makeup doing?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"behave\"\n  },\n  {\n    \"question\": \"who is a guy with full makeup behaving like?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what does sexy girl in pink hair and heavy tatoo s talking to?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who seaks to the camera for an interview?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talk about color of lip stick?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a gay guy with pink hair doing?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person with tattooed hands dyed red hair blue eyeshadow and black mascara applying?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"lipstick\"\n  },\n  {\n    \"question\": \"what do a boy make up?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what does pink hair and heavy makeup begin?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"who is telling about the lipstick he used for the make up accoridng to his face structure?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is applying eye shadow?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is a man make up like?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl applying?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"who is make up like woman?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a girl rubbing with fingers?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"who is applying eye liner with brush?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a crossdressed male with pink hair give?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what did one man making makeup with colored hair lipstic?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"eyebrow\"\n  },\n  {\n    \"question\": \"what is a gay guy with pink hair talking about?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is rubbing eye shadow with fingers?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl applying eye liner with?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"who is showing how to do a lipstick application?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a girl applying with brush?\",\n    \"video_name\": \"video9172\",\n    \"answer\": \"liner\"\n  },\n  {\n    \"question\": \"who is talking about different dresses and where fashionable clothes such as a green top are from?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman with curly hair holding a woman is talking while holding a green shirt?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what is a black color dressed lady taking?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a young woman in black dress showing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who is a woman with curly hair holding clothing is talking while holding a green shirt?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what haired woman speaking about a yellow outfit?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"curly\"\n  },\n  {\n    \"question\": \"who is holding up fashionable clothes such as a green top?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman with curly hair holding?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a woman in a black dress with dark curly hair discusses her fashion choices specifically doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"mention\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman with long dark curly hair doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young woman with long wavy hair lifts up black hangers doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl with black curly hair and a british accent doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with curly hair doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl in black dress choosing dresses and doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a british woman doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a girl in black dress color cloth doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a young woman in black dress doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a curly haired woman doing?\",\n    \"video_name\": \"video9173\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what does man turn into a music studio?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who djs from inside his car?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man singing in holding a mic?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man make elctronic music in?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is wearing headphones?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing loudly in a car?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man singing loudly in?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man singing in wearing headphones?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"headphone\"\n  },\n  {\n    \"question\": \"who is in a car?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who singing in the car?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a man make in his car?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is singing in his car wearing headphones?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wearing a big headphone?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing while holding a microphone?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes elctronic music in his car?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who turns his car into a music studio?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man singing into while hearing headphones in his car?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who is singing in his car holding a mic?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy sing in?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who sings into a microphone in his car?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings the song a popular song in a car?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing a song sitting in a car?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing into a microphone while hearing headphones in his car?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video9174\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who does a man in a white shirt start kissing on a bed with passion?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gets in bed?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man hugging a lady in?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a man wearing a white sweater get off?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who pushes his lover on the bed?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a couple kissing in showing the love a man with white dressing have for one another?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is a man hugging in the bed?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a man push a woman down on before sex?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are a couple in kissing and abou to make love?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a man push a woman down onto?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a man in a white shirt start kissing a woman on with passion?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who starts passionately kissing a woman?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is man in white shirt having nice time with?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"wife\"\n  },\n  {\n    \"question\": \"what does a man push his lover on?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who walks across the room?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is music plays while a man in a white shirt starts doing?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what was a man gets in bed and begins to kiss a woman who doing?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"seduce\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man walks over to a bed and starts passionately doing?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what does a man in a white shirt start kissing a woman on a bed with?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"passion\"\n  },\n  {\n    \"question\": \"what is a man walks across the room and pushes his lover on the bed and begins doing?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who walks over to a bed?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man wearing a white shirt get up from?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who does a man push down onto the bed?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man wearing a white sweater start making to a woman?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"who does a man push down on bed before sex?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man wearing a white shirt walk towards?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is a man with white dressing having sex with?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man wearing a white shirt push a woman onto?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is hugging a lady in the bed?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are in bed kissing and abou to make love?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who does a man wearing a white sweater start making love to?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a man wearing a white shirt push onto the bed?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pushes a woman down onto the bed?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pushes a woman down on bed before sex?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a seducing video between a man and a woman who wear?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"saree\"\n  },\n  {\n    \"question\": \"what plays while a man in a white shirt starts kissing a woman on a bed with passion?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is kissing in bed showing the love a man with white dressing have for one another?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who walks to a woman in a bad?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man wearing a white shirt walk across?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"who does a man push on the bed?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"lover\"\n  },\n  {\n    \"question\": \"what does a man get in?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who gets up from his chair?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man start passionately kissing?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man walk across?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a man walk over to?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a man and woman kissing in?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a man get up from?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does a man push a woman down on bed before?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"sex\"\n  },\n  {\n    \"question\": \"when is man in white shirt having with his wife?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is a man with white dressing having with a woman?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"sex\"\n  },\n  {\n    \"question\": \"who begins to kiss a woman who was laying there?\",\n    \"video_name\": \"video9175\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a bottle ignited for?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who conducts an experiment?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing science experiments?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a science experiment?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who can put in in water?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man conduct?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who does science?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is shaken up?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what does a man do?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what collapsed?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is ignited for an experiment?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what can man heated a put in in?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man doing with fire?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a man doing some of of?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is doing an experiment with fire?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a can over a flame?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing some of of science experiment?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a scientific experiment doing?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing an experiment with?\",\n    \"video_name\": \"video9176\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what does a woman sit by a man in?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a woman sitting in front of a man on?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"how many people talk in a tv show?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is laying down?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a video running on?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is running on television?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a woman dismissing other people from?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who tends to a man in bed?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man in a bed and a women doing?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man in bed while his family doing?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"mourn\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"dismis\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who does a woman sit by in a bed?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in bed sick and people doing?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is several asian people doing?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is dismissing other people from the room?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting in front of a man on a bed?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sits by a man in a bed?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9177\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some still shots of classroom pictures shown on?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is explain about a education subjects?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people sitting around in?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"who did the early department at the university not include?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is talking about some very old photo graphs?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a men in telling about some pictures which shown on?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who speaks to the camera for an interview?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where are a group of people sitting around?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what is a man talking about on older days?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is talking about a computer on older days?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"attend\"\n  },\n  {\n    \"question\": \"what is a men in doing?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old man doing?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is bunch of people doing?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is butch of people doing?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is documentary about the university of missouri where many talented people are shown walking and doing?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is old pictures of people in doing?\",\n    \"video_name\": \"video9178\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what does a man get?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"dialysi\"\n  },\n  {\n    \"question\": \"what is a man walking in?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets his blood taken?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets dialysis?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about how a man spends 3 hours on dialysis?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about his job?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking in the hospital?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks on a tv show?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks through an infirmary?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is briefly shown?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"healthcare\"\n  },\n  {\n    \"question\": \"who is walking around?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man get taken?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"blood\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"job\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a clip of a man doing?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a black man doing?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9179\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what does the man in the jacket talk in?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"what does a person ask for to the lady in red dress?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt inside of?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"who stands at the counter order a drink?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are group of people having together in the night club?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"who does a man in a bar speak with?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is a man ordered a pitcher of from the bartender wearing red at the bar?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"who asks the lady tender for the finest lager in the house?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man with college attire at a bar ordering?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"what does a man ask for the finest lager in the house?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"tender\"\n  },\n  {\n    \"question\": \"what did a man with college attire at ordering beer?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"who asks for a drink to the lady in red dress?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is ordered a pitcher of beer from the bartender wearing red at the bar?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with peoples on the retaurant?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is at a bar and orders the finest lager in the house?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are having nice time together in the night club?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is there is man inside a restaurant doing?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man is doing?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what is a man with college attire at a bar doing?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is is standing?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the woman in teh red top fix the man a drink at?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"counter\"\n  },\n  {\n    \"question\": \"what is a man is talking in?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what are relaxing in the night club?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who comes to the pub?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who walks up to the bar?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is is talking in the restaurant?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a group of people have?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what does a person come to?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"pub\"\n  },\n  {\n    \"question\": \"what does a man walk up to?\",\n    \"video_name\": \"video9180\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"cute\"\n  },\n  {\n    \"question\": \"what is cute kid sitting in with so many articles?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is sitting in the room with so many articles?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"cute\"\n  },\n  {\n    \"question\": \"what is the small girl in pink dress explaining in the room?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking about how to clean a hamster cage?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who wears pink dress talking something to a lady?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who announces the need to clean the cage before putting shavings in?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a small girl wear talking something to a lady?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what is the small girl in pink dress explaining something in?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is the small girl in pink dress doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a little lady doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is cute kid doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a little girl in a pink shirt doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a small girl wears pink dress doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl announces the need to clean the cage before doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a little girl in a pink t-shirt hosts a tutorial video doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is blonde girl doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl in a pink shirt is in her room doing?\",\n    \"video_name\": \"video9181\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"where do a video game showing soccer players perform tricks and manuevers?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what generated soccer players kick around a soccer ball on a soccer field?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who did several computer generate kick around a soccer ball on a soccer field?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who kick the ball in a soccer stadium in fifa?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a man kicking down a soccer field?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a male character in a football video game do?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a male character in a football video game run around?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a soccer player in a blue jersey dribble?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do a video game showing soccer players perform tricks and manuevers on?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what do men dressed in shorts and jerseys kick across a field while music plays?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do men dressed in shorts and jerseys kick a ball across while music plays?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who controls the soccer ball on the field?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is kicking a soccer ball down a soccer field?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a soccer player in pink shorts manipulate down a grassy field?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do some virtual soccer players in a video game perform?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"movement\"\n  },\n  {\n    \"question\": \"what is in a stadium a man in a soccer jersey doing?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does good stamina and high physical and mental endurance require?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is man in red-blue shirt doing?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two boys one in pink dress while other in blue doing?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are a couple of players doing?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what are one in red and one in blue doing?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what are one in red and one in blue kicking?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a player doing?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is player doing?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game doing?\",\n    \"video_name\": \"video9182\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are sports clips set to?\",\n    \"video_name\": \"video9183\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do a sports montage to?\",\n    \"video_name\": \"video9183\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what was sports clips at least one?\",\n    \"video_name\": \"video9183\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what shows various sports clips?\",\n    \"video_name\": \"video9183\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are people playing in a stadium and at a beach?\",\n    \"video_name\": \"video9183\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do people play on a field and a sandy court?\",\n    \"video_name\": \"video9183\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who kicks the ball and dribbles past other soccerplayers?\",\n    \"video_name\": \"video9183\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a professional soccer game set to pop?\",\n    \"video_name\": \"video9183\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a poorly recorded soccer and volleyball-like game is shown where groups of people doing?\",\n    \"video_name\": \"video9183\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9183\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are sports athletes doing?\",\n    \"video_name\": \"video9183\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a reporter reporting about fish on?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a reporter reporting about on abc news?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a woman talking about with different genetic materials?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"salmon\"\n  },\n  {\n    \"question\": \"who is talking about different fish grown and genetic power?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are two fish shown by side on tv?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who is reporting about fish on abc news?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who discusses how scientists added genes from other fish to the atlantic salmon so they will grow faster?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about salmon with different genetic materials?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two fish shown side by on tv?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"how many ladies are having a conversation near the water?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is on the water?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a fish on?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do a women describe the interior organ of?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"how many biotechnology professionals discuss how genetics can be used to improve the breed of fish?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who discuss how genetics can be used to improve the breed of fish?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"biotechnology\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news report doing?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a news-reporter doing?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9184\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is drawing in a power the drawing of?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is winking at camera?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what do drawing in a power point?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what wears a tie?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is digitally painting a cartoon character?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what s eyes are repeatedly changing colors?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is drawing a picture?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a cat winking at?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is watching a show?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a cartoon cat wear?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is being zoomed in and out on?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is someone digitally painting?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a blue cat wearing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"scarf\"\n  },\n  {\n    \"question\": \"what is someone drawing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is someone watching?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is wearing a scarf?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who shows the process for animating a cat?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is an person shows the process for doing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"animate\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"wink\"\n  },\n  {\n    \"question\": \"what is a blue cat s eyes are repeatedly doing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what is a blue cat doing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what shows how a animated cat color a cartoon cat using computer software?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone is digitally doing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is someone shows how they color a cartoon cat doing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is giving a tutorial on ms paint?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is being drawn?\",\n    \"video_name\": \"video9185\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is speaking at a podium?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does video about finland s?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"who talks about finland s superior education system?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking seminar on?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"assessment\"\n  },\n  {\n    \"question\": \"what is a man speaking to a group from?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"who talks about his countries educational sucesses?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a presentation?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about finland s?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"education\"\n  },\n  {\n    \"question\": \"what is a man speaking at?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking on student assessment?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"seminar\"\n  },\n  {\n    \"question\": \"what is a man speaking to from a podium?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what s educational system?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"finland\"\n  },\n  {\n    \"question\": \"who is giving a presentation at a podium?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a speech in front of a crowd?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking to a group from a podium?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what seems to be giving lecture to the crowd gathered here?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"passi\"\n  },\n  {\n    \"question\": \"who is taking seminar on student assessment?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is pasi sahlberg doing?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"addres\"\n  },\n  {\n    \"question\": \"what is a man making in front of a crowd?\",\n    \"video_name\": \"video9186\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what does a woman discussing the avengers?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is a woman talking about?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"avenger\"\n  },\n  {\n    \"question\": \"what is a woman describing?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"who is describing the avengers movie?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about avenger characters?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about the hulk and other superheroes?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is presenting news about the avengers?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who tells about the latest news of the avengers?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is reporting on marvel and the movies created by marvel?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who reveals avengers news from the recent movie?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about entertainment?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does entertainment news segment about the avengers?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who talks about the movie the avengers?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a video clip doing?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news reporter doing?\",\n    \"video_name\": \"video9187\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what does a man put something in?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"trunk\"\n  },\n  {\n    \"question\": \"who closes the car?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who then closes the trunk?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person close?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does the man wearing the suit point?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"who is fairly older than the rest?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"gentleman\"\n  },\n  {\n    \"question\": \"what are brad pitt and other actors shown in?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does a man put in a trunk?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man then close?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"trunk\"\n  },\n  {\n    \"question\": \"what are different selections of a film in?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"preview\"\n  },\n  {\n    \"question\": \"who does a man surrounded by other men speak aggressively to?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts something in a trunk?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speak to all peoples you are going down?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did trailer of a hollywood movie watching the family with their tv on?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"living\"\n  },\n  {\n    \"question\": \"what did trailer of a hollywood watching the family with their tv on living room?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what did trailer of a hollywood movie watching with their tv on living room?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what are a movie scene in which alongwith human figures there are some text captions regularly present on?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who hollywood movie watching the family with their tv on living room?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what is a man with a very bad attitude doing?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"treat\"\n  },\n  {\n    \"question\": \"what is trailer of a hollywood movie doing?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is an angry old man doing?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are movie trailer and few scenes of the movie shown which?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is one gentleman fairly older than?\",\n    \"video_name\": \"video9188\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"what does a girl dance at home with?\",\n    \"video_name\": \"video9189\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what do the girls stand near as they dance and sing?\",\n    \"video_name\": \"video9189\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what are a group of four females dancing to?\",\n    \"video_name\": \"video9189\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a group of four females doing?\",\n    \"video_name\": \"video9189\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the young girls doing?\",\n    \"video_name\": \"video9189\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9189\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is four girls doing?\",\n    \"video_name\": \"video9189\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"how many guys are wrestling in a competition?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did two wrestlers competing at an event set to bad to?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"bone\"\n  },\n  {\n    \"question\": \"what does someone get thrown into in wrestling?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"how many people are wrestling with each other?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a clip of two men doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a wrestler doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is its a fighting place two man doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is someone gets thrown into the air in doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two guys wrestling in?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what is a wrestler wearing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"uniform\"\n  },\n  {\n    \"question\": \"what are people wrestling on?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what do guys wrestlingin?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"how many people are wrestling?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is wearing a green uniform?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what match with rock music background?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"how many men are wrestling?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are seen wrestling?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is there are men doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who gets thrown into the air in wrestling?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is two men are seen doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two players doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two wrestlers doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video9190\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who does a man in suite talking about law study?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"carrier\"\n  },\n  {\n    \"question\": \"who is talking about the rules and standards in the city?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is speaking about rules standards distinction?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a old man in black coat color dress wearing cloth speaking standing and still image of displaying on screen?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what do a old man in black coat color dress wearing speaking standing and still image of road scene displaying on screen?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who does a man in suite shaking hands study?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"carrier\"\n  },\n  {\n    \"question\": \"what does a man in a dark jacket teach a lesson about?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"law\"\n  },\n  {\n    \"question\": \"who is doing a presentation for law students?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wear talking about rules and standards of a driving car?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man in a black suit coat doing?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a black suit man doing?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in suite shaking hands and doing?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy in formal wear doing?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in suit stands in front of a tv screen doing?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man in suit stands in front of screen doing?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is ian ayres doing?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man in black suit doing?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a old man in black coat color dress doing?\",\n    \"video_name\": \"video9191\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does a person fill with water?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what does a young man fill a cup with tap with thrilling music playing in the background?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who claps shoes together?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person fill a glass with?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man filling up with water?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is a man filling up a cup with?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a young man fill a glass from?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"who fills a glass with water?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a young man fill from a sink?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who fills a glass from a sink?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filling up a cup with water?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a young man fill with tap water with thrilling music playing in the background?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"who fills a cup with tap water with thrilling music playing in the background?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown getting a glass of water?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who bangs his shoes together?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"tense\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"slam\"\n  },\n  {\n    \"question\": \"what is a young man bangs his shoes together and fills a cup with tap water with doing?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"thrill\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is weird guy doing?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"grab\"\n  },\n  {\n    \"question\": \"what is a man banging shoes together and doing?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"who is clapping shoes?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9192\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"who reviews the hunger games movies?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video segment?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about hunger games?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about movies?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a movie?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gives a news cast?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does a woman give?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who does a reporter comments on a movie s?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"director\"\n  },\n  {\n    \"question\": \"what a woman describing the trailer for the hunger games?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what tv celebrity gossip about the hunger games?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"franchise\"\n  },\n  {\n    \"question\": \"what is a girl explaining about?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who is explaining about fashion?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is the host in the video doing?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is news reader doing?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman on a talk show doing?\",\n    \"video_name\": \"video9193\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the different types of fighting game?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a man outside while young men wrestle on mats inside the gym?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who is outside a gym while young men wrestle on mats inside the gym?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are wrestlers doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is several young men doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what are multiple boys doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is boys doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a wrestling doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a team of male wrestlers doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is a wrestling match taking place in?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what is young boys doing?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who is a man holding down?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are wrestlers fighting in?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is a wrestling match taking in a gym?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are multiple boys wrestling on?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is talking about boys wrestling?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is practice the different types of?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is taking place in a gym?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"who is holding down another man?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what highlights of wrestling with kids?\",\n    \"video_name\": \"video9194\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do camera from nasa s discover has returned with photos?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is discover channel doing?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about pictures taken from the discover satellite?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about a camera from nasa?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about from nasa?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a man talk about a camera from?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"nasa\"\n  },\n  {\n    \"question\": \"who is describing a space camera that has returned the first photo of the earth from a million miles away?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about science?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what describes how a satellite works?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about a nasa camera?\",\n    \"video_name\": \"video9195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is arguing?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a short comical news clip doing?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are a live special report where men and women doing?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"who did comedians play?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who jumps onto camera for a news segment?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping around in front of a camera?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the ben and jerrys stock?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lot of profanity being said by?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do several people talk about?\",\n    \"video_name\": \"video9196\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what is a comedian doing?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who was very tall?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"comedian\"\n  },\n  {\n    \"question\": \"what does a man give?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"who stand up comedy?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a comedian walk?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"who is talking while on stage?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man giving a speech on a talk show to?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"when is a man telling jokes?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is telling jokes on the stage?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing make making the crowd laugh?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what does a comedian rile up a crowd into?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"laughter\"\n  },\n  {\n    \"question\": \"what does a comedian rile up into laughter?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a man doing comedy on stage make making?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who do black stand up performs in front of a small audience?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"comedian\"\n  },\n  {\n    \"question\": \"who is doing comedy on stage make making the crowd laugh?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man talking while?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who gives a presentation?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do black man doing stand up?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what does a comedian perform?\",\n    \"video_name\": \"video9197\",\n    \"answer\": \"standup\"\n  },\n  {\n    \"question\": \"what does a person take pieces of?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what melt?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what does a person take?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what does butter put in a metal bowl that is placed over a pot full of simmering water then mixes them together as they melt?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what does a man combine in a pan?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what puts pieces of chocolate in a metal bowl that is placed over a pot full of simmering water then mixes them together as they melt?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"who stirs the ingredients together?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man add to chocolate?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what added in pan to butter again white chocolate is added?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what is a chef mixing in a silver bowl to make a dessert?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who is making a dessert in a bowl?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who places ingredients into a silver bowl?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do chocolate squares in a bowl a spatula mixing with the chocolate then melting the mixture over simmering water?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"who is adding chocolate in the bowl in a kitchen?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who mixes various ingredients together in a metal bowl?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tempers butter in a bowl over steam?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do chocolate squares in a bowl mixing butter with the chocolate then melting the mixture over simmering water?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"spatula\"\n  },\n  {\n    \"question\": \"who a man with a string accent telling how to make something?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what do chocolate squares in a bowl a spatula mixing butter with the chocolate then melting over simmering water?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"what do chocolate squares in a bowl a spatula mixing butter with then melting the mixture over simmering water?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who is mixing chocolate in a silver bowl to make a dessert?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is making smooth mix of chocolate and butter in a bowl after placing the bowl over hot water?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man temper in a bowl over steam?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"who is showing himself mixing butter and chocolate in a bowl?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt mixing in a bowl?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who combines butter and chocolate in a pan?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person making in a bowl?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"dessert\"\n  },\n  {\n    \"question\": \"what is a person making a dessert in?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a man melt over a water bath?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what is someone in a kitchen stirring a piece of into the bowl?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"paneer\"\n  },\n  {\n    \"question\": \"what is someone adding in the bowl in a kitchen?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what is someone adding chocolate in the bowl in?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who takes pieces of chocolate?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone adding chocolate in in a kitchen?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who melts butter over a water bath?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone in a kitchen stirring a piece of paneer into?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what did chocolate cubes add in pan to butter again is added?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who adds butter to chocolate?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt mixing food in?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a male chef doing?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is chocolate squares in a bowl a spatula doing?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is someone in a kitchen doing?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a person takes pieces of chocolate and butter puts them in a metal bowl that is placed over a pot full of doing?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"simmer\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man in his kitchen doing?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man with a string accent doing?\",\n    \"video_name\": \"video9198\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"when does a man walk through a deserted city street?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what are the night filled with vehicles as a man walks alone in?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cars shown on in an animated show?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is driving down the road?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who walks down a dark street?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who walks at night through a deserted city street?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does a man walk slowly?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what is a car driving down?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is watching a show?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a cartoon character stand in?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do a boy walk in?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is someone watching?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who walks alone?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks slowly at night?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows many cars?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon character walk down?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"when are filled with vehicles as a man walks alone in a cartoon?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"who stands in a road?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is anime doing?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who walking in an road?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a cartoon with a man doing?\",\n    \"video_name\": \"video9199\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about sims while playing?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who reviews the sims pets?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person talks about sims while doing?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are animals doing?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"communicate\"\n  },\n  {\n    \"question\": \"what is cartoon clip doing?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is various animals are seen doing?\",\n    \"video_name\": \"video9200\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are people at?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are people talking on?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are people enjoying at?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is about a beach and some people?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are people on?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what did clips of young adults on the beach from the movie psycho?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is teens are show doing?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a clip of a television show doing?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what do a clip of a television show featuring people on?\",\n    \"video_name\": \"video9201\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"how many kids are singing to judges?\",\n    \"video_name\": \"video9202\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9202\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a childrens doing?\",\n    \"video_name\": \"video9202\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is footage of children doing?\",\n    \"video_name\": \"video9202\",\n    \"answer\": \"engage\"\n  },\n  {\n    \"question\": \"what does a childrens showing?\",\n    \"video_name\": \"video9202\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who performance by young asian girl?\",\n    \"video_name\": \"video9202\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is judged on a tv show?\",\n    \"video_name\": \"video9202\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9202\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does a man in a blue shirt and back pants talk to with a white screen in the back?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does a man who seems to be a motivational speaker move?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who stands?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving an informational speech to a group of people about telling someone something?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing on a stage with a headset microphone?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a old person in blue color dress wearing speaking on topic discusing audience watching displaying on screen?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is the man giving to a group of people about telling someone something?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a man with a long sleeve shirt talking to?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is speaking the man is gesturing with his hands?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a old person in blue color dress wearing cloth standing speaking on topic discusing watching displaying on screen?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a man standing on with a headset microphone?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is a man speaking is gesturing with his hands?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a button up shirt giving with a white projector screen behind him?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a guy with grey side burns doing?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a motivational speaker in a blue shirt doing?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is man in blue shirt doing?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a old person in blue color dress doing?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man with a long sleeve shirt doing?\",\n    \"video_name\": \"video9203\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman giving?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is the news archor doing?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is talking about a man?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"archor\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is an announcer reporting on?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"tragedy\"\n  },\n  {\n    \"question\": \"who talks about a shooting?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is giving a news report?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about the news?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is reporting on a tragedy?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what is the reporter covering shooting story?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"newtown\"\n  },\n  {\n    \"question\": \"what is an announcer doing?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what does a news reporter talk about?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what is the reporter doing?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"who is the news archor talking about?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a news anchor talks about a man comforting students after?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"what anchor talks about a man comforting students after a shooting?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what kelly giving news report about newtown shooting?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"megan\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about the newton shootings on a cable news channel?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what talks about a tragedy in newton?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a news anchor talks about a man doing?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"comfort\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about newtown and the school tragedy?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"who is covering the newtown shooting story?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is talking about shooting in brasil?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is talking about a man who did a good deed?\",\n    \"video_name\": \"video9204\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who interviews on bbc world news wearing headphones in bedroom?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is interviewed about the rising cost of bus tickets?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is partaking in a live interview on bbc?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"professor\"\n  },\n  {\n    \"question\": \"what does bbc news reporter talk about the raise in bus ticket to a protester through?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"conference\"\n  },\n  {\n    \"question\": \"what is a woman wearing headphones talking to a man on?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a woman with long hair talking from?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is a woman wearing headphones talking to on the news?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a person in blue color dress wearing cloth holding paper in hand and girl in speaking displaying on screen?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what do a person in blue color dress wearing cloth holding in hand and girl in television screen speaking displaying on screen?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what do a person in blue color dress wearing holding paper in hand and girl in television screen speaking displaying on screen?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is a professor partaking in a live interview on?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"bbc\"\n  },\n  {\n    \"question\": \"who does a woman sitting in a room talk to?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who talks about the raise in bus ticket to a protester through video conference?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a woman is on a computer screen doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman is interviewed about the doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"rise\"\n  },\n  {\n    \"question\": \"what is a news outlet doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a person in blue color dress doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a bbc news clip of a san paulo woman doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman with long hair doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young woman interviews on bbc world news doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a professor doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"partake\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is bbc world news reporter doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9205\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is play punching a faucet?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about bottled water?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is another man throwing water on?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is another man throwing on a car?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man yelling at in a kitchen?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"faucet\"\n  },\n  {\n    \"question\": \"who yells at a faucet then punches it?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man yelling at a faucet in?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is yelling at a faucet in a kitchen?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man punch a faucet and then another man sprays water on while the previous man shows excitement?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is punching a faucet?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is throwing water on a car?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cussing at a faucet of water?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the previous man show?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"excitement\"\n  },\n  {\n    \"question\": \"who shows excitement?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are cheer leaders?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does a man yell at?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a man yell at then punches it?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"faucet\"\n  },\n  {\n    \"question\": \"what is a man punching?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"faucet\"\n  },\n  {\n    \"question\": \"who is water being advertised by?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"smosh\"\n  },\n  {\n    \"question\": \"what is a spoof advertisement for bottled water?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are entertaining audience?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is being advertised by smosh?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man punching a faucet?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is talking about the benefits of bottled water?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who yells at a sink?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who punches a faucet and then another man sprays water on a car while the previous man shows excitement?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are cheer leaders doing?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"entertain\"\n  },\n  {\n    \"question\": \"what is in a kitchen a man doing?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man is play doing?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"cus\"\n  },\n  {\n    \"question\": \"what is a parody video doing?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"who punches a faucet to show how much better bottled water is?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9206\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does woman look at?\",\n    \"video_name\": \"video9207\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"who shows how the color to be selected and make up for eye lid?\",\n    \"video_name\": \"video9207\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is an east asian woman demonstrating the application of purple eyeshadow with?\",\n    \"video_name\": \"video9207\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"who sits in front of a blue and white snowflake background?\",\n    \"video_name\": \"video9207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is an east asian woman demonstrating the application of with a brush?\",\n    \"video_name\": \"video9207\",\n    \"answer\": \"eyeshadow\"\n  },\n  {\n    \"question\": \"who looks at eye shadow?\",\n    \"video_name\": \"video9207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is brunette woman doing?\",\n    \"video_name\": \"video9207\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is an asian lady doing?\",\n    \"video_name\": \"video9207\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9207\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is an asian woman with a pretty face doing?\",\n    \"video_name\": \"video9207\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is an east asian woman doing?\",\n    \"video_name\": \"video9207\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who is trying to get away from a monster?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did a computer generate man is fighting with?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"dragon\"\n  },\n  {\n    \"question\": \"who did a computer generate is fighting with a dragon?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing the foot well under the door jam area of the car?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what generated man is fighting with a dragon?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a cartoon clip doing?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a character doing?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a computer generated man doing?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is an animated cartoon of a monster doing?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is animated clip of a man doing?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a cartoon men doing?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"bet\"\n  },\n  {\n    \"question\": \"what is a man showing well under the door jam area of the car?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"who gets his face smashed while a creature entreats upon him?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is 3d animated dinosaur doing?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who is crawling?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being dragged?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a character fighting?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"what a cartoon men betting?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"who does an animated man battle?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"dragon\"\n  },\n  {\n    \"question\": \"what men betting a animal?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who does a cg cartoon character face?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"who is fighting a large monster?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who battles a dragon?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an animated character get smashed while a creature entreats upon him?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who is kicking teeth?\",\n    \"video_name\": \"video9208\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting foam darts at a target?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who shoots a soft arrow into a pool float?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what was very pretty?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"pattern\"\n  },\n  {\n    \"question\": \"what does the girl shoot?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"nerf\"\n  },\n  {\n    \"question\": \"what does a girl use?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does girl shoot?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does small girl shoot?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"crossbow\"\n  },\n  {\n    \"question\": \"who is shooting a toy?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who shoots crossbow?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is firing a toy bow?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who uses a toy bow?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl shoot into a pool float?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"arrow\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a girl shooting foam darts at?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"what is a girl shooting at a target?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"foam\"\n  },\n  {\n    \"question\": \"who is a toy crossbow shot by?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is shooting a toy bow and arrow?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is shooting a bow and arrow?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is shooting a bow and arrows?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who shoots toy arrows?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is shot by a girl?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"crossbow\"\n  },\n  {\n    \"question\": \"who plays with a bow and arrow?\",\n    \"video_name\": \"video9209\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a person make?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is a person?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman explains how to begin doing?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a tutorial where a woman doing?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is person folding a piece of?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of on a table?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of paper on?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who makes paper origami?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains how to begin folding paper?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who thru a paper folding project?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper on a table?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman fold a piece of in half?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds a piece of paper in half?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person fold a sheet of in half?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds a sheet of paper in half?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone on a purple table?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding paper on a purple table?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person fold a sheet of paper in?\",\n    \"video_name\": \"video9210\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"fondle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is fake new reporters doing?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"flirt\"\n  },\n  {\n    \"question\": \"what are news reporters doing?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did people pretend to be news anchors and read?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who are hugging?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is given a massage on the air while the other is harrassed by a man?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"what is a newscaster given a massage on while the other is harrassed by a man?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a newscaster given on the air while the other is harrassed by a man?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"who is massaging another man shoulders?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is trying to kiss a woman?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fondling a woman?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are giving massages?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"when do a woman and man dance around?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is a man fondling?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being very inappropriate?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a person reading?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are people on?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is reading something?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do some funny things occur on?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is the other harrassed by?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is kissing each other?\",\n    \"video_name\": \"video9211\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a set of people doing?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who is singing on a television show?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what celebrates when judges turn around to watch an audition?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is performing?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is someone watching?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a woman sing on?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is watching a show?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a girl singing on stage with watching from behind stage?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a singer getting worked up?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who sings on the voice?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who show?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"when do a woman singing on the reality show?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who performs on a reality singing competition show?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a girl singing on the talent show?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who sings on a televised competition show?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is performing for a group of judges?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is getting the crowd worked up?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"when is a singer singing?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on live tv?\",\n    \"video_name\": \"video9212\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what do women roast in a pan?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"piece\"\n  },\n  {\n    \"question\": \"who is conducting a cooking show?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is person putting the food in?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what is person putting in white pan?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a female cook lie on to a plate?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what is a woman conducting?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is this is a video of some doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman turns over something cooking in a pan on the stove doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a girl and a plate and a spoon doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman cooks a piece of meat in a pan doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"roast\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is there is woman and she doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a women cooking a piece of meat in?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is a women cooking a piece of in the stove?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who flips the dish in the fry let it roste?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman turn over something cooking in a pan on the stove using?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"spatula\"\n  },\n  {\n    \"question\": \"what does a woman turn over something cooking in a pan on using a black spatula?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who turns over a fish fillet with a black spatula?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who flips the meat frying in the pan over with the spatula?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying a dish in non stick tawa?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who turns over something cooking in a pan on the stove using a black spatula?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking while the view is a sizzling entree being placed on a white plate by a spatula?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing a food item in a white tray?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who prepared a food item in the kitchen?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a person preparing in a white tray?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did a lady prepare in the kitchen?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did a lady prepare a food item in?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is some one preparing on a white color pan on gas stove?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does the woman flip in the pan over with the spatula?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"what does the woman flip the meat frying in the pan over with?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"spatula\"\n  },\n  {\n    \"question\": \"what do a woman cooks a piece of meat in a pan using?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"spatula\"\n  },\n  {\n    \"question\": \"who is putting the food in white pan?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a sizzling entree being placed on a white plate by a spatula?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"who flips the dish in the fry pan?\",\n    \"video_name\": \"video9213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car moving on?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is moving on the road?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving down?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do great fail?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"montage\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a car swerves out of the way of two cars doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is different car crashed doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"occur\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is reckless caars doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what crashed occuring?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what shows a car driving through an intersection?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"dash\"\n  },\n  {\n    \"question\": \"how many cars swerve in front of the car?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a dash cam show driving through an intersection?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving at high rate of speed?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what swerves out of the way of two cars crashing into each other?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is speeding down a road nearly causing an accident?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car speeding down nearly causing an accident?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is some one diving a car in?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what caars driving down the road?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"reckles\"\n  },\n  {\n    \"question\": \"what does reckless caars driving down?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is some one in a road?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what avoids hitting another car?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car avoid hitting?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving down a road?\",\n    \"video_name\": \"video9214\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is driving on a gray road?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"lamborghini\"\n  },\n  {\n    \"question\": \"what does a shiny black sports car drive very slowly down through orange and white safety cones?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who speaks into the window?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pulling up then pulling off?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"sportscar\"\n  },\n  {\n    \"question\": \"what does a woman speak into?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is photographed by many people?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a black car driving around?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is the black car driven carefully on?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is driving around a road?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driven carefully on the street?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did an beautiful sports car by ferrari company with black color view by?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"public\"\n  },\n  {\n    \"question\": \"what is the black car doing?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who drives the black sports car as the wipers clean the window?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who leans over to speak to people who are driving in a small black sports car?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the person drive the black sports car as the wipers clean?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"who is driving on a street out side?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"lamborghini\"\n  },\n  {\n    \"question\": \"what is a black lamborghini driving on out side?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a black lamborghini driving on a street out?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is preparing for long traveling?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what comes after one another in the entrance gate?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is there is a posh car doing?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are a woman leans over to speak to people who doing?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a black car doing?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"stop\"\n  },\n  {\n    \"question\": \"what is driver doing?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"stop\"\n  },\n  {\n    \"question\": \"what is a fast sportscar doing?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a black sports car doing?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a black lamborghini doing?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who leans into the passenger window?\",\n    \"video_name\": \"video9215\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a motorcycle perform flips?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"midair\"\n  },\n  {\n    \"question\": \"what is singing music?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a band preform?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are people performing?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are people singing?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a clip from the music video for this is how we roll a country song that features dirt bikes miraculously not doing?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are motorcycles doing?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"how many men sing a song and dance while a motorcycle performs flips midair?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what georgia line music video with people on motorcycles doing stunts?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"florida\"\n  },\n  {\n    \"question\": \"what is the band singing?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what did a florida georgia with people on motorcycles doing stunts?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are some guys singing and other person riding?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who are some guys singing riding bike?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what performs flips midair?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what are motorcycles jumping over?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"what preforms a song?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is singing in a music video with motorcycles?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who is singing about theirs motorcycles flying in the air?\",\n    \"video_name\": \"video9216\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is edward norton talking to?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is looking with smile?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a hard rock song play in?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a man looking with?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"who is posing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is edward norton wearing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is there is an actor doing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the still of the mans and also the womans doing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is count down of names of movie doing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"accord\"\n  },\n  {\n    \"question\": \"what is a guy with a gray shirt standing out?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what cover page and a actor in the movie?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what cover and the actor in the movie?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is presenting the beautiful books that he read?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a screen shot of still picture moving in and out?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"who is talking to someone?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"norton\"\n  },\n  {\n    \"question\": \"who is wearing a gray shirt?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"norton\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is edward norton doing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a guy with a gray shirt doing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a screen shot of still pictures doing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a picture doing?\",\n    \"video_name\": \"video9217\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who shows food in a pot?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking with red beans?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows how to cook beans?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman show in a pot?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman holding food in over a pot?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman show food in?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a woman talks about doing?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"soak\"\n  },\n  {\n    \"question\": \"who has a handful of beans?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"squeeze\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who talks about soaking beans?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is having red beans in a pan?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is teaching how to soak kidney beans?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who had a pot full of beans?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a woman squeezing beans in?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who shows cooked beans from a pan?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing how to prepare some food?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is squeezing beans in a pot?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is teaching how to prepare food?\",\n    \"video_name\": \"video9218\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is break dancing on stage?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing in street?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing in a stage?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a tv showing a break dance?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"when is a man break dancing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a vintage video of doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"breakdancing\"\n  },\n  {\n    \"question\": \"what is a man is break doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is another man dancing in?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do guys break having?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what are people walking?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"what are bboys?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"who are shown?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a collection of film footage with different people doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the b-boy dancer doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people are moon doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is men break doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is guys break doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are different dancers doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"breakdancing\"\n  },\n  {\n    \"question\": \"what is bboys are break doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is break dancers doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a tv doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a television doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"when is a man dancing?\",\n    \"video_name\": \"video9219\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is showing off their nails?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does girl show off?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"who is showing make up tips?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"who is painting easter designs on nails?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are painted with easter themed decorations?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"who is talking about lovable nails and the different styles?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a girl painting on nails?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"easter\"\n  },\n  {\n    \"question\": \"who shows off nail designs?\",\n    \"video_name\": \"video9220\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a boxy cartoon man being dressed by?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is a minecraft man being lifted by?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"machinery\"\n  },\n  {\n    \"question\": \"who is operated on by technological equipment?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is being lifted by machinery?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is being lifted up to put on clothes?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who hangs by his arms while a robot puts boots on his feet?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dressed by video game robots?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is being electronically lifted of the ground?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who lifted by robot hands?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a computer animation doing?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a person being electronically lifted of?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what did minecraft character lift by?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is a person operated on by?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is being raised up?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9221\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who are the judges talking to?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"what does a woman play?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"reallity\"\n  },\n  {\n    \"question\": \"who plays guitar?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is about to play guitar?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who critiques a performer in a foreign language?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is trying out for a part on the voice kids?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking to a girl in a stage?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks to the performer on the stage?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"when does a judge talk to the performer?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who has just performed a song on the voice?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does a judge talk to on the stage?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"who is about to sing on the voice?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is evaluated on a gameshow?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a young person evaluated on?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"gameshow\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are the judges doing?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a guitar doing?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are judges doing?\",\n    \"video_name\": \"video9222\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man with red tie and a lady with blue dress speaking about america s?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who sit in front of a television that says america s news hq?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who smith in a blue dress and ed henry in a red tie sitting next to each other?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"sandra\"\n  },\n  {\n    \"question\": \"what do a man and woman on a tv show?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do an woman in a blue dress and man in a black suit and red tie giving with no audio?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what discuss the 2008 financial crisis?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who are leading?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who are siting?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a man and women report?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what are a man and a woman addressing?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what do a woman in a blue dress and a man in a red tie discuss?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do news outlet and anchors discuss?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"crisi\"\n  },\n  {\n    \"question\": \"who is a lady talking with?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking with a girl?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do an woman in a blue dress and man in a black suit and red tie giving the news with?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"audio\"\n  },\n  {\n    \"question\": \"how many news anchors discuss the 2008 financial crisis?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a woman in a blue dress and a man in a red tie addressing?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are man and woman doing?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a woman in a blue dress and a man in a red tie doing?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"addres\"\n  },\n  {\n    \"question\": \"what is sandra smith in a blue dress and ed henry in a red tie doing?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man with red tie and a lady with blue dress doing?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a woman in blue doing?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in blue doing?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9223\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what did a short representation of a two player arcade?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are fighting?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"smashbrother\"\n  },\n  {\n    \"question\": \"what are shown?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"supersmash\"\n  },\n  {\n    \"question\": \"what are 2 characters doing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are characters doing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people on a videogame doing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are smashbrother characters doing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is supersmash bros doing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"supersmash\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9224\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who does an indian reporter discuss?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"actres\"\n  },\n  {\n    \"question\": \"who holds a microphone?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing an interview?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses an actress?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is speaking in a microphone?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who does interviews?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman hold?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a celebrity speaking in?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who does a man discuss?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"bollywood\"\n  },\n  {\n    \"question\": \"who is the new reporting on?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who does a man talk about?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who talks about a celebrity?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is posing for pictures?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the queen of seduction doing?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the new doing?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is reporter doing?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is commentary doing?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a celebrity doing?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is being photographed at different venues?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is posing on the red carpet?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses a bollywood celebrity?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about an actress?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is back?\",\n    \"video_name\": \"video9225\",\n    \"answer\": \"bollywood\"\n  },\n  {\n    \"question\": \"who dresses up in a bright wig?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does girl perform?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what is a yellow-haired girl doing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what did the girl have playing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what was a woman in a wig doing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what does a girl in a wig make?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a girl talking enthusiastically into?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who had fun playing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are kids in?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"what is a person talking into?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what did a girl doing sports commentary in the backyard or a game play on a blow up?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what did a girl doing sports commentary in the backyard or a game play on up toy?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"blow\"\n  },\n  {\n    \"question\": \"who was on a blow up play toy?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl playing on?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"balloon\"\n  },\n  {\n    \"question\": \"who tries to score shots on a basketball hoop while another girl with a blonde wig announces?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is commentating on a fun competition?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is the girl had fun doing?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who plays on a jumper machine?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking into a microphone?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing on a balloon?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking enthusiastically into a microphone?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who performs physical competition?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what was a girl on up play toy?\",\n    \"video_name\": \"video9226\",\n    \"answer\": \"blow\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who potatos?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man places potatoes on a doing?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what is a man skinning?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man preparing in outside park?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person putting potatoes in?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is skinning potatos?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man preparing food in?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who is preparing food in outside park?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is a man preparing food?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who places potatoes on a cutting board?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is taking potatoes out of a bowl?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who pours potatoes out of a bowl?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking potatoes out of a bowl?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who shows how to prepare potatoes?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is handling potatoes?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who arranging potatoes?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is putting potatoes in a bowl?\",\n    \"video_name\": \"video9227\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is seated?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man who lived in the jungle is now doing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are the man and woman doing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a person is seated and doing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man rides in vehicle doing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man in red t-shirt doing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who holds?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is follow up on a young man who doing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man tries to improve his life after doing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"spend\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is guy in purple tshirt doing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who plays?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does an african man rides in a van and play?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who tries to improve his life after spending many years away from society?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the man and woman traveling by while the man is playing the guitar?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man play while riding a van through a jungle and a narrator talks about his learning difficulties?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing music while traveling in a car along with a friend?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing guitar while moving on the road in a car it is a clip of national geographic channel?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a woman laugh beside as a narrative explains the guitar playing man?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who laughs beside a person as a narrative explains the guitar playing man?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a national geographic spot about a man who grow up in?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"wild\"\n  },\n  {\n    \"question\": \"who plays guitar while riding a van through a jungle and a narrator talks about his learning difficulties?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a black man play as he travels in a car?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a clip of national geographic channel?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing while moving on the road in a car it is a clip of national geographic channel?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person playing while traveling in a car along with a friend?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the ladies sitting in?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does a man try to improve after spending many years away from society?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what did a man who lived in the jungle live in?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"jungle\"\n  },\n  {\n    \"question\": \"who plays a guitar as he travels in a car?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about the aircraft crash?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man who lived in the jungle travel in?\",\n    \"video_name\": \"video9228\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what do two men make?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what are two men showing?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what are two peoples doing?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is clip of people doing?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what was the man doing?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is eating?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts the bottom off an ice cream carton?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who creates an ice cream sandwich the other man is really surprised at how he did it?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man create an ice cream sandwich is really surprised at how he did it?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man eating using a spoon?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what does a man create sandwich the other man is really surprised at how he did it?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what do two men make sandwiches?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what is man eating?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"who is eating ice cream?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are showing some art?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a guy make sandwich out of it?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"how many peoples are playing with chocolate?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is cutting up an old ice cream box and tried to make an ice cream sandwich out of it?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who scoops some food out of an ice cream container?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating ice cream with a cookie?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who watches another man prepare a weird sandwich?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes an ice cream sandwich out of it?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is eating ice cream using a spoon?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men make ice cream sandwiches?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who was eating ben jerry ice cream?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man watch prepare a weird sandwich?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man eating ice cream with?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"cookie\"\n  },\n  {\n    \"question\": \"what is a man eating with a cookie?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what does a man watch another man prepare?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what are two peoples playing with?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"video9229\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a movie scene the hero doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a father dressed in business attire doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"offer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a black suit young man doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a black suit man doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is actor will smith talks to his son while doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"where is a father dressed in business attire offering his son words of encouragement?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"rooftop\"\n  },\n  {\n    \"question\": \"what is a father dressed in business attire offering his son words of on a rooftop?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"encouragement\"\n  },\n  {\n    \"question\": \"what is a father dressed in business attire offering his son words of encouragement on?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"rooftop\"\n  },\n  {\n    \"question\": \"who is holding onto a fence?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a movie scene of boy in black color dress wearing cloth standing speaking with girl in blue dress displaying on?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who listens carefully?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who will actor smith talks to while leaning against a chain link fence?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"son\"\n  },\n  {\n    \"question\": \"what is will smith doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man holding onto?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"who is speaking to a small boy?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who will smith talks to his son while leaning against a chain link fence?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what do a movie scene of boy in black color dress wearing speaking with girl in blue dress displaying on screen?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is there are two people doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is hero of the film doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man and a child near a gril doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a movie scene of boy in black color dress doing?\",\n    \"video_name\": \"video9230\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who plays with dolls who wear clothes?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who plays with the dolls in the pink dresses?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many barbie dolls are talking while one is examining the foot of one of the dolls to see if it is hurt?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is tinkerbell doll and other dolls a girl using to try to put shoes on the tinkerbell doll?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"who is playing with barbie toys very nicely?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are talking while one is examining the foot of one of the dolls to see if it is hurt?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"barbie\"\n  },\n  {\n    \"question\": \"what is a person playing with very nicely?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"barbie\"\n  },\n  {\n    \"question\": \"what did a doll tell to another doll to remove?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"shoe\"\n  },\n  {\n    \"question\": \"how many young girls are playing with frozen barbies one is inspecting the other s hurt foot?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing with some dolls?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are three barbie dolls doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a number of dolls in hand and dancing shoes doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is tinkerbell doll and other dolls a girl doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is young girls play with small dolls that have pink clothes on one doll doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is so many little dolls barbie nicely hair style very doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"glitter\"\n  },\n  {\n    \"question\": \"what are few barbie dolls doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is several little girls doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two young girls doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"video9231\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is video game type video with man doing?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a boy in blue dress doing?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who runs down a grassy hill with a dog?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a dog run to?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a puppy following?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"running\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is a man in a video game running around?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what runs to a man?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who did animated dog running up and down a hill follow by?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is person walking on with dog behind him?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who is standing on grass as a dog runs to him?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a person running and a dog follow instructs the dog to do sit lay and hand shake?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a video game running around on?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does an animated man run down a grassy hill with?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is running with the brown dog behind him?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing ith his corgi dog?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking slowly with brown dog behind him?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man standing on as a dog runs to him?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who is walking on the grass with dog behind him?\",\n    \"video_name\": \"video9232\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is obama gives speech about people doing?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is president obama doing?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is barrack obama doing?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is addressing peoples?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"barack\"\n  },\n  {\n    \"question\": \"what does the president give?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what does obama talk to?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who gives a speech?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what is obama giving?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who is giving a speech?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the president giving?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is barack obama doing?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"addres\"\n  },\n  {\n    \"question\": \"who talks to a crowd?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"who obama giving a speech to supporters while using examples from history to explain his point?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what does president obama giving to supporters while using examples from history to explain his point?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who gives speech about people standing up for rights?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"who talks to a large crowd of people?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"barack\"\n  },\n  {\n    \"question\": \"what did people gather ta hear the speech of?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"who obama speaking to a large crowd?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"who gives a speech about oppressed people?\",\n    \"video_name\": \"video9233\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"who is arguing with another man?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was very demonstrative?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man arguing with?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many man s are talking to each other?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who has a discussion with another man in the street?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"barefoot\"\n  },\n  {\n    \"question\": \"who is walking with another man on the street?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a child talking to a man with?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what do two mean walk down in front of a vendor speaking in a foreign language?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"how many men talk outside in the street?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who yells at another?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is a child talking to with hand gestures?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a man with hand gestures?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a dark man rapidly doing?\",\n    \"video_name\": \"video9234\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are men loading their guns with?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"ammunition\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are four man s doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is men in training session doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is three men doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people loading?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"ammo\"\n  },\n  {\n    \"question\": \"what is loading there guns?\",\n    \"video_name\": \"video9235\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who walks in the corridor?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wearing special glasses?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaining to men?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who shows an animation?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who works on a computer?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a green shirt walking through an office to?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"workspace\"\n  },\n  {\n    \"question\": \"what is a man in a green shirt walking through to his workspace?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what does a man work on?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does a man show?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what does a man walk in?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"corridor\"\n  },\n  {\n    \"question\": \"what does a man examining the length of a person s when opening a glove compartment?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"who is showing a simulation of opening a glove compartment in a car from the drivers seat?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains the graphics shown of the new car?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in collared shirt walk down hall into?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a man in collared shirt walk down into room?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"where is a man in a green shirt walking through an office?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"workspace\"\n  },\n  {\n    \"question\": \"who is explaining new technology to men?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with glasses speaking about?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who explains a simulation of a motor vehicle operator attempting to open the glove compartment?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man with glasses doing?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a green shirt doing?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a shirt man doing?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what are industrial designers doing?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"examine\"\n  },\n  {\n    \"question\": \"what is a man explains a simulation of a motor vehicle operator doing?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who does a woman say is in a coma?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does woman look at in a hospital bed?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman say a boy is in?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"coma\"\n  },\n  {\n    \"question\": \"who walking around in a dark house?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is haunted in a movie trailer?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking down the hall?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do horror movie teaser?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what teaser clip?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"horror\"\n  },\n  {\n    \"question\": \"who says a boy is in a coma?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a movie trailer show?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a girl walking down?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"what trailer to insidious?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who looks concerned?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows some movie scenes?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who is attending by his relatives?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"patient\"\n  },\n  {\n    \"question\": \"who looks at man in a hospital bed?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is patient doing?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"attend\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9237\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is in an elevator?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people waiting for?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"what opens with people inside?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"who is dancing in the elevator?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the man dance on?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"what does a person dance in?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"what is a person dancing in?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"who is dancing in an elevator?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who inside does a strange song and dance to the people waiting to get on?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances in an elevator?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man dancing in?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"what is a man dancing in while people watch?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"what is an elevator door opens and a man inside does a strange song and dance to the people doing?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man in a cowboy hat doing?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who does a funny dance in an elevator?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances on the elevator?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people going in?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"who is dancing in an elevator while people watch?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"what opens?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"who was very rowdy?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who yells?\",\n    \"video_name\": \"video9238\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"what is singing a song?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what runs free in a street?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"who does a goat ram?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what rams a man?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what do two people intimidate with violence?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is walking toward people?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"who is kicking away an animal?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kicks the cattle?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking at a goat?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two people intimidate a goat with?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"violence\"\n  },\n  {\n    \"question\": \"who kicks at a bull?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is in the road hitting people?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"how many people intimidate a goat with violence?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is assaulted as it runs free in a street?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"who does a goat face off with in a street?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what faces off with a man in a street?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is an animal with a bell causing?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"trouble\"\n  },\n  {\n    \"question\": \"who attacks a goat walking towards him?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a goat being shooed away by a man in?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who do a goat being shooed away by in the street?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking the goat?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a goat face off with a man in?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is the man kicking?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is a cow doing?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is being kicked?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is a group singing?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a goat run free in?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man kicking away?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is a man kicking at?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is attacking?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what does a man kick at?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what is an animal with a bell doing?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"cause\"\n  },\n  {\n    \"question\": \"what is after presumably doing?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"scar\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9239\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"who are standing with out shirt?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who are doing some thing?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is person having problems with in the mountain?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what are a boys standing with out?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what are a boys doing?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is person having problems with his skin in?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is a boy taking in the river?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"how many boys are frantically trying to swat leaches off of their skin?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what boys taking a bath displaying on screen?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is covered in water in a natural area?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who do the boys stand of something that irritates?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"shirtles\"\n  },\n  {\n    \"question\": \"what a movie scene boys taking displaying on screen?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"who is taking a bath in the river?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is having problems with his skin in the mountain?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is in the water and forest taking bath?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy taking a bath in?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"how many boys stand in the woods drying their bodies?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a few young boys doing?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is three boys stand in the woods doing?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"dry\"\n  },\n  {\n    \"question\": \"what are a boys doing?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a group of boys doing?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"slap\"\n  },\n  {\n    \"question\": \"what is two boys are frantically doing?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is young men in a middle of the bush almos naked and doing?\",\n    \"video_name\": \"video9240\",\n    \"answer\": \"scratch\"\n  },\n  {\n    \"question\": \"what are japenese kids doing?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is japanese people doing?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a man singing and doing?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who laughs at a boy while he sings and dances badly?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who does a young girl laugh at while he sings and dances badly?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who spins around in the living room of a house?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is laughing at a man dancing?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances badly?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing around?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man entertain?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"girlfriend\"\n  },\n  {\n    \"question\": \"what is a woman laughing on?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is korean boy making?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who is making a girl laugh?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who entertains his girlfriend?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting on the sofa?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is laughing on a couch?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing song?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is woman sitting on?\",\n    \"video_name\": \"video9241\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is drawing a graph with pictures?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who speaks about life expectancy and education?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when does a woman talk?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"expectancy\"\n  },\n  {\n    \"question\": \"who drawling people on a canvas?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who draws animations to demonstrate?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman drawing?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a person drawing?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is someone drawing?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is drawing a picture?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is coloring several people?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing cartoon characters?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing several people?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a hand drawing with pictures?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"graph\"\n  },\n  {\n    \"question\": \"who talks about life expectancy?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person drawing on a white board?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is drawing cartoons?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a cartoonist beautifully explaining through drawings?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"concept\"\n  },\n  {\n    \"question\": \"who draws pictures of people running a chart of life expectancy and an old man gripping his chest?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who draws a man on a chalkboard?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a scene on a white board?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is woman talks about health and education while doing?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is hand doing?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"drawl\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a hand doing?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a cartoonist beautifully doing?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who talks about health and education while drawing cartoons?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who beautifully explaining a concept through drawings?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"cartoonist\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9242\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what did rock concert record from?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who performs on stage?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who plays at a concert?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"rockband\"\n  },\n  {\n    \"question\": \"when does a hardcore rock band perform?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what recorded from the audience?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"who is singing on a stage?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is performing on stage?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is a band performing?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performing on a stage?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does rockband play at?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what are some boys singing?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band performing on stage?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when is a woman singing?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are people performing?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when does a singer perform?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a band performing a song?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"when are some boys playing a guitar?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is this is a video of a band doing?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some boys playing in the stage?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when does a man in a tank shirt sing?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performing a song on stage?\",\n    \"video_name\": \"video9243\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who describes a museum?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"voiceover\"\n  },\n  {\n    \"question\": \"what does a man narrate about?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"museum\"\n  },\n  {\n    \"question\": \"what did people roam in?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"what does a voiceover describe?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"museum\"\n  },\n  {\n    \"question\": \"what are peoples looking?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"who narrates about a museum?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who talks about an open air museum?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being talked about to tourists?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"village\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"roam\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people and children doing?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is groups of people doing?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"visit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about a museum while clips of the museum are shown?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone talking about while clips of the museum are shown?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"museum\"\n  },\n  {\n    \"question\": \"what do people and children walking around a norsk?\",\n    \"video_name\": \"video9244\",\n    \"answer\": \"museum\"\n  },\n  {\n    \"question\": \"how many people are talking?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are actors talking about?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are people protesting in?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man interviewing murray?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"what is a man interviewing?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"who is interviewing bill murray?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"what bill murray?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing tom hanks?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man being interviewed about?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is a person giving interview to?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being interviewed about a movie?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a comedian giving to a reporter?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is being interviews about ghostbusters?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who is giving interview to a man?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a comedian giving an interview to?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is being questioned about filming a movie?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"who does an interview about the ghostbusters?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"what is a person giving to a man?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is bill murray doing?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are actors doing?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9245\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what goes down a track?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a white and gray passenger train traveling on a train track through with large green plains and mountains?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"countryside\"\n  },\n  {\n    \"question\": \"what do a trees mountain water scene and train moving displaying on?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what plays as a country skyline can be seen?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a picture of a small town by water and a train moving after a car move down?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a train go down?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what shows what looks like a city?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is traveling through the european country side?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is so lovely to watch?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who is shown?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"sceneary\"\n  },\n  {\n    \"question\": \"what can be seen?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is seen?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"scenery\"\n  },\n  {\n    \"question\": \"who is recording the beautiful places while traveling?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is there is music doing?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a white and grey passenger train doing?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a gray and white train with red doors doing?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a train doing?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a trees mountain water scene and train doing?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"when is the train going while the beautiful scenery is seen?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is passing through a mountain community near a lake?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is the countryside of a rural area shown from a car window and next to?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is going at fast speed while the beautiful scenery is seen?\",\n    \"video_name\": \"video9246\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a hero confront?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"nemesi\"\n  },\n  {\n    \"question\": \"what tried to win?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"enemy\"\n  },\n  {\n    \"question\": \"what show for kids?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does the smoke plume rise from?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is taunting another cartoon?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what rises from the mountain?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"who confronts his evil nemesis?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"hero\"\n  },\n  {\n    \"question\": \"what is a cartoon taunting?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what has a villain from dragon ball z revealed?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is in an animated scene two characters are outside under a menacing sky doing?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"glare\"\n  },\n  {\n    \"question\": \"what are characters doing?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"taunt\"\n  },\n  {\n    \"question\": \"what is an episode of dragonballz with vegeta doing?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what did a short clip taken from a teenagers anime?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many characters are outside under a menacing sky glaring at each other in an animated scene?\",\n    \"video_name\": \"video9247\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a reporter and two other men seated on?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"where are people riding horses?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"who is being interviewed while riding a horse?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a few people riding on talking to each other?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"horseback\"\n  },\n  {\n    \"question\": \"who is interviewed while on a horse?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"jockey\"\n  },\n  {\n    \"question\": \"what are a group of people on horses having?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is being interviewed while on a horse?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"jockey\"\n  },\n  {\n    \"question\": \"who is speaking to a person on horseback?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who s on horses about to race?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"jockey\"\n  },\n  {\n    \"question\": \"who is riding a horse outside?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is horses and their jokeys doing?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person riding outside?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a jockey riding on?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is at a race track?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are people riding horses in?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"grassland\"\n  },\n  {\n    \"question\": \"who is riding on a horse?\",\n    \"video_name\": \"video9248\",\n    \"answer\": \"jockey\"\n  },\n  {\n    \"question\": \"who slides?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is this is a video of a guy doing?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does man talk about?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who discusses materials?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"who talks about how a small change in a system can result in a larger correlated change?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a speech while sitting down in a lab?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is discussing oxiders in bulk form?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something in lab?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing new invention in lab?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talks in a doctor s?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"what is a man showing new invention in?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"what is a man discussing oxiders in?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"form\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"laboratory\"\n  },\n  {\n    \"question\": \"what is a man showing in lab?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"invention\"\n  },\n  {\n    \"question\": \"who is talking about science?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is talking in a laboratory?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his technology?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who showcasing his services?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy talking about?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"who is talking about wires?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9249\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what does a woman giving a review for a woman s?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what does a woman giving a review for a woman s piece of?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"who shows off a dress in a room?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman show off a dress in?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a woman show off in a room?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who reviews a shirt?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does woman show off?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who is talking about dress?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who describes a blouse?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"blogger\"\n  },\n  {\n    \"question\": \"who is talking about clothes and fashion?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who shows off a shirt?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a video blogger describe?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"blouse\"\n  },\n  {\n    \"question\": \"what does a woman review?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is a girl talking about?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who is talking about fashion?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman showcasing?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"wardrobe\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video of a woman doing?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9250\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man interviewed about?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"theater\"\n  },\n  {\n    \"question\": \"who gives an interview?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting in talking about ballet?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"theater\"\n  },\n  {\n    \"question\": \"who is sitting in a theater talking about ballet?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about being succesful with several plays?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who bourne talking about the ballet sleeping beauty?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"matthew\"\n  },\n  {\n    \"question\": \"what play promotion?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"who is interviewed about theater?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what play?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who are a group of people dancing talking?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does dancing star?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a ballet of doing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a scene doing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"preview\"\n  },\n  {\n    \"question\": \"what is matthew bourne doing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is there are people doing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do sleeping beauty play?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"promotion\"\n  },\n  {\n    \"question\": \"what does a man give?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"when are some people dancing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is many people doing?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do people participate in?\",\n    \"video_name\": \"video9251\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man driving out of a garage?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car out of a garage?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man in old vw bug pull out of?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is openeing to reveal an old volkwagen beetle?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what opens showing an antique car ready to ride?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is being driven out of a garage?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who does a garage door open to reveal on?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"volkswagen\"\n  },\n  {\n    \"question\": \"what raises to show a volkswagon?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"elevator\"\n  },\n  {\n    \"question\": \"what does a garage door open for?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a garage door lift revealing?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what opens for a vehicle?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is coming out of garage?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what pulls out of a garage?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what lifts revealing a car?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what coming out of the drive way?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car pull out of?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what does a garage open showing ready to ride?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"antique\"\n  },\n  {\n    \"question\": \"who does an elevator door raise to show?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"volkswagon\"\n  },\n  {\n    \"question\": \"what opens to reveal on old volkswagen?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a garage opens doing?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a garage door opening and a bug car doing?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a garage door lifts doing?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"reveal\"\n  },\n  {\n    \"question\": \"what is an old car being driven out of?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9252\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what flies over the sea while rocky cliffs are shown in the background?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what flies near a boat then a couple talks then a person walks near big smoke stacks?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a bird fly over while rocky cliffs are shown in the background?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what does a bird fly in pan of a cliff face meeting?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"shore\"\n  },\n  {\n    \"question\": \"what does a bird fly near then a couple talks then a person walks near big smoke stacks?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is enjoying the cruise in the sea?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"pair\"\n  },\n  {\n    \"question\": \"what do rock cliffs and the ocean surround tourists as?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a pair enjoying the cruise in?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"how many couples describe their experiences traveling to grand circle?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a pair enjoying in the sea?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"cruise\"\n  },\n  {\n    \"question\": \"what is surrounded some huge mountains?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what enjoys the scenery?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"pair\"\n  },\n  {\n    \"question\": \"what are rocky cliffs shown in?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what flies in pan of a cliff face meeting the shore?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a pair enjoy?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"scenery\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is pan of a cliff face doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what is older people doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a pair doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is two couples describe their experiences doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a huge on the large bod of water with a black bird doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is there is a mature woman doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are its a big mountain and water all persons doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man with a green cap and blue jacket doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9253\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who sings in a music video?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do two men sing into microphones at?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what looks like an adult party with a group of men singing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is singing while people act silly?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings at a party?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what plays while people are dancing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does tom jones sing at?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"how many men sing into microphones at a party?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is playing music?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are while a band plays people doing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a music video with band playing and people doing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is men and women doing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is singing to a group of people who are dancing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a clip of people doing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a band plays while people doing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9254\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a soldier doing?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a soldier doing?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are soldiers doing?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are men in the army doing?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is army man doing?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are soldiers in war doing?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is huddling in a snow covered embankment when a light appears through the trees in the sky overhead?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who is firing his gun?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what is taken of soldiers?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a solider see?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"shooting\"\n  },\n  {\n    \"question\": \"who is sitting on the ground?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what do soldiers sit in?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"who is laying down?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what is a soldier doing?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"huddle\"\n  },\n  {\n    \"question\": \"what is a soldier doing?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a soldier doing?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"die\"\n  },\n  {\n    \"question\": \"what is an army man in?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"situation\"\n  },\n  {\n    \"question\": \"who is in critical situation?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"who is sitting outside in the cold?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who sees a shooting star?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"solider\"\n  },\n  {\n    \"question\": \"what is army man sitting in?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is a soldier sitting outside in?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"cold\"\n  },\n  {\n    \"question\": \"who is dying laying in snow?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who is sitting in a land?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"who is looking at a sky and star?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"who is sitting on a snow covered bank?\",\n    \"video_name\": \"video9255\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a lady displays food doing?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is woman preparing?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who is mixing ingredients?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a dough?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a lady display?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"coloring\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what does a person create?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who play dough?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making play dough?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making playdoh?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do kids playing with play?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who creates play dough?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who displays food coloring?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is showing how to mix color with flour?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is clip of person doing?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make homemade play dough?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman roll up a piece of putty on?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does a woman roll up a piece of on a table?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"putty\"\n  },\n  {\n    \"question\": \"who is making a mixture using yeast?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who makes home made play doh?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman making using yeast?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"who rolls up a piece of putty on a table?\",\n    \"video_name\": \"video9256\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a customer doing?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a commercial for doing?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"pay\"\n  },\n  {\n    \"question\": \"what is two mobile phones are kept for doing?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"charge\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"pay\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is able to do multiple wireless things from being charged to paying a bill?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who charges?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"samsung\"\n  },\n  {\n    \"question\": \"what is a man paying with?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who pays wirelessly?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"samsung\"\n  },\n  {\n    \"question\": \"what does a man put down to be charged?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a commercial highlight?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"cellphone\"\n  },\n  {\n    \"question\": \"what s qualities are advertised?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who puts his phone down to be charged?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is paying with his phone?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a commerical for a cordless samsung?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"charger\"\n  },\n  {\n    \"question\": \"who is using samsung pay to make purchase?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"customer\"\n  },\n  {\n    \"question\": \"who is showing how to use the instrument?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many mobile phones are kept for charging?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a customer using to make purchase?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"samsung\"\n  },\n  {\n    \"question\": \"what is being advertised in an ad?\",\n    \"video_name\": \"video9257\",\n    \"answer\": \"samsung\"\n  },\n  {\n    \"question\": \"who is showing a phone?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who scrolling through phone?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who is using a smartphone?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"pres\"\n  },\n  {\n    \"question\": \"what is a person records themselves doing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is texting?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a phone app?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using a smart phone?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a guy scroll through?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is using a phone?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does phone s laying on?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is a person using?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is using his phone?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a person looking at?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a person use?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man using?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what s laying on a table?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"who is showing how to use a phone application?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is demonstrating a samsung wireless phone?\",\n    \"video_name\": \"video9258\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being presented?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"muscle\"\n  },\n  {\n    \"question\": \"what has been parked in front of the building?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a 1970 dodge datona is showecased in?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do a black dodge daytona from 1970 is on?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what do a black dodge is on display?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"daytona\"\n  },\n  {\n    \"question\": \"what do a 1970 dodge is showecased in the video?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"datona\"\n  },\n  {\n    \"question\": \"what is a car of 1970 on?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are shown in different settings?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"muscle\"\n  },\n  {\n    \"question\": \"who has pictures of cars?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what are shown sitting still in the video a jenson?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is stopped at the entrance?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a classic?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"muscle\"\n  },\n  {\n    \"question\": \"what is a car stopped at?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"entrance\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two car are shown doing?\",\n    \"video_name\": \"video9259\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who wear talking about chinese products?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man in a foriegn country discuss the conditions of?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who is explaining a money value in a particular country?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows some money?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person take out from the pocket?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"mobile\"\n  },\n  {\n    \"question\": \"what is showed which is blue color?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"arch\"\n  },\n  {\n    \"question\": \"what does a person take out there from?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"pocket\"\n  },\n  {\n    \"question\": \"what does a person show?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"money\"\n  },\n  {\n    \"question\": \"who takes out there from the pocket?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about money and other things that are chinese?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"who is a man speaking on a city road is holding items a person is driving by buildings?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in blue shirt doing?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a commentator doing?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy in formal wear doing?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirts doing?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is there is a blue shirt man doing?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is on a chinese street a man doing?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is in?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking on a city road the man is holding items a person is driving by buildings?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about how an area near china has all chinese products and services?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the magnitude of chinese influence in a neighboring country?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9260\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is blinded by a man s white teeth?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"wordgirl\"\n  },\n  {\n    \"question\": \"what does a girl wearing a pink space suit float around in?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a clip from a cartoon?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is blinded by bright teeth?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who play underwater?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what superheros?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is flying around?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are flying?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is an animation clip doing?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a cartoon show of monkey in superhero costume a doing?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is cartoon of doing?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"blind\"\n  },\n  {\n    \"question\": \"what are the cartoon toys doing?\",\n    \"video_name\": \"video9261\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what do soldiers get into?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what are soldiers climbing into?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what are military people boarding?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what do soldiers go to?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what are military people using?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"artillery\"\n  },\n  {\n    \"question\": \"what did a cut from a movie about war?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is a montage of army scenes doing?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what shows soilders in battle soldier are walking to a their plane then?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"who does a plane show soilders in battle are walking to a their plane then?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what do a couple of military men walk in while in the snow?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what does a plane show soilders in soldier are walking to a their plane then?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what is soldiers doing?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are soldiers doing?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what are soldiers doing?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are soldier doing?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are soilders doing?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are military people doing?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a ww2 clip doing?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video9262\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is seen from a hillside village overlook the inlet as a train rolls by?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is a nature based village doing?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"exist\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is an amazing and doing?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"breathtaking\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what did landscape of a house and a lake follow by passing on the tracks?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is nestled by the edge of water beneath foggy mountains?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what is a nature based village existing in?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"nature\"\n  },\n  {\n    \"question\": \"what ship going through the river along a very beautiful place?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"cruise\"\n  },\n  {\n    \"question\": \"who is recording the blue water near the city center?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a tiny village nestled by at the bottom of a mountain?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a town nestled by the edge of water beneath?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"beneath\"\n  },\n  {\n    \"question\": \"what do a cruise ship going through along a very beautiful place?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is person recording near the city center?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is nestled by the water at the bottom of a mountain?\",\n    \"video_name\": \"video9263\",\n    \"answer\": \"village\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is small children go down a stage for doing?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"when are contestants?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"when is a young boy?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is on stage?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are people performing on a stage?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when are people performing a song?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is showing contestants on the tv show the voice?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what are a group of kids on?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is entering the stage on the voice?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"when is a little boy entering on the voice?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do a short clip taken from the show?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"how many kids are on a talent show?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a little boy entering the stage on?\",\n    \"video_name\": \"video9264\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is on a computer?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man show?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person on?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who shows where to download ubuntu?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows his computer setup?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to download the windows installer?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"download\"\n  },\n  {\n    \"question\": \"what is mouse doing?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do mouse moving around the download screen for a windows installer on?\",\n    \"video_name\": \"video9265\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"who is a man dressed as?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"who is standing on a boat?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"what sees a cannonball?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"what did jack sparrow on?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what does captain jack sparrow see?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"cannonball\"\n  },\n  {\n    \"question\": \"what does johnny depp play?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"sparrow\"\n  },\n  {\n    \"question\": \"what is captain jack sparrow on?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who is on a ship?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"what is a pirate standing on?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who is on a boat?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"who is working on his ship?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"what is on a boat?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"who is dressed as a pirate?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dressed like a pirate?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"johnny\"\n  },\n  {\n    \"question\": \"who sparrow on a ship?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"jack\"\n  },\n  {\n    \"question\": \"who plays jack sparrow?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"johnny\"\n  },\n  {\n    \"question\": \"what is a pirate on?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who is standing on a pirate ship?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"what is struggling on the deck of a ship?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"sparrow\"\n  },\n  {\n    \"question\": \"what is a clip from the movie pirates of the caribbean?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"captain\"\n  },\n  {\n    \"question\": \"who is looking at a black round object roll across the boat?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"johnny\"\n  },\n  {\n    \"question\": \"what is a pirate doing?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is a pirate doing?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a pirate doing?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is jack sparrow doing?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"struggle\"\n  },\n  {\n    \"question\": \"what is johnny depp doing?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is johnny depp dressed like?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"pirate\"\n  },\n  {\n    \"question\": \"what is a pirate working on?\",\n    \"video_name\": \"video9266\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what does a woman in a kitchen show the camera packages of?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is not close to being done?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is a woman washing?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are people pointing out?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who shows how to prepare food?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is about to prepare a meal?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl preparing?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do couple in a kitchen discuss?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do people display they have?\",\n    \"video_name\": \"video9267\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"sprinkle\"\n  },\n  {\n    \"question\": \"what is a woman adds different ingredients into a stir fry that she doing?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is two women in a kitchen doing?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a cooking show taking with a chef talking?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a woman cooking in making mushrooms and other vegetables?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is stirring?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a woman putting salt and red pepper flakes in?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"what is a cook adds salt and red chili flakes to a hot pan doing?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"who adds various ingredients and cooks them in a pan?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is taking place with a chef talking?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is a cooking show taking place with talking?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is someone adding red chilly flakes in the pan in?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is cooking in the kitchen making mushrooms and other vegetables?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting some salt in the vegetables in a black pan?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sprinkling garlic powder for taste to the mixture with mushrooms?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is adding some salt in the red chili flakes?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who adds salt and red chili flakes to a hot pan containing mushrooms and other ingredients?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"how many women add spices to the food cooking in the skillet?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is adding red chilly flakes in the pan in a kitchen?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is sauteing mushrooms capsicum and other vegetables in a frying pan?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting salt and red pepper flakes in their skillet?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman adds garlic powder to a vegetable dish she doing?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9268\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are some people playing in an outdoor place?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are men listening to?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are watching the new products?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are men shopping for goods in?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"what do a man buying a dress and wear that and sing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do footage of a rather hispanic festival where there are clothes for sale live getting together?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who browses through shirts and shoes while shopping?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man browses through shirts and shoes while doing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is there are some people doing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are several people doing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is a group of people are outside doing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some boys doing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are some boys playing while others are purchasing goods from shops?\",\n    \"video_name\": \"video9269\",\n    \"answer\": \"instrument\"\n  },\n  {\n    \"question\": \"who plays with a beanbag?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who opens giant egg present?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who opens a large package?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what does a young girl play with?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"beanbag\"\n  },\n  {\n    \"question\": \"what does a young girl rip?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"beanbag\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a small child open?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"when does girl open?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"who is opening a present?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is tearing the papers?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who rips a beanbag?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young girl rip open with anna and elsa from frozen on it?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"pinatum\"\n  },\n  {\n    \"question\": \"what is a little girls opening with something in it?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"pinatum\"\n  },\n  {\n    \"question\": \"what is young girl doing?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"tear\"\n  },\n  {\n    \"question\": \"what is a little girls doing?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"rip\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"tear\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is opening a blue pinata with something in it?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who rips open a pinata with anna and elsa from frozen on it?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with a frozen toy?\",\n    \"video_name\": \"video9270\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who dances around in a house?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sings the song?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does person sing?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a person dance around in?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does lil boosie sing?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who uses profanity?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"rapper\"\n  },\n  {\n    \"question\": \"who sings for a music video?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"rapper\"\n  },\n  {\n    \"question\": \"who raps in a crowded room?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is boosie rapping with a group of women around him?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is in a rap music video?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a group of people rap in?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is rapping with many people behind him?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to appear rich and successful in a music video?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"rapper\"\n  },\n  {\n    \"question\": \"who is rapping in the video surrounded by a group of people dancing?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings a rap song?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"boosie\"\n  },\n  {\n    \"question\": \"who is rapping a song with a group of women around him?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"boosie\"\n  },\n  {\n    \"question\": \"what singing and dancing at a time?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is boosie doing?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is black people in a large group doing?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is a rapper doing?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a rp vieo and people doing?\",\n    \"video_name\": \"video9271\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does a cartoon play?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do children dance with?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"pig\"\n  },\n  {\n    \"question\": \"what plays and children dance?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon characters dancing to?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who are dancing to a song?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what figures dancing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what figures singing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a group of kids doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are an animated boy and girl doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is animated video of children doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are three dimensional cartoon characters doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is cartoon people doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is cg cartoon characters doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are characters that are cartoons doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is children doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is cartoons doing?\",\n    \"video_name\": \"video9272\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who talks about valence electrons in the valence orbit?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"cell\"\n  },\n  {\n    \"question\": \"what is person presenting his project about?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"valence\"\n  },\n  {\n    \"question\": \"what are electrons being shown orbiting the table of elements is shown?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"nucleu\"\n  },\n  {\n    \"question\": \"what is a woman explain about a electron with?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"diagram\"\n  },\n  {\n    \"question\": \"what is a woman explain about with a diagram?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"electron\"\n  },\n  {\n    \"question\": \"what does a woman talk about in the valence orbit?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"valence\"\n  },\n  {\n    \"question\": \"who is presenting his project about valence orbits?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman describing the electrons inside the atom then a diagram of a periodic table show up describing as an octet configuration?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"argon\"\n  },\n  {\n    \"question\": \"what are an animated illustration about electrons which present in?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what electrons orbit the nucleus in an atomic model?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"valence\"\n  },\n  {\n    \"question\": \"who is talking about electrons in the outermost or valance orbit of a cell while a cell is being shown?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explain about a electron with a diagram?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is person presenting about valence orbits?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"what is a lady with very cute voice doing?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a computer generated graphic doing?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is clip showing and doing?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is there is a diagram of an atom and a woman doing?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a computerized diagram doing?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a yellow element with green electrons doing?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is science video doing?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are some green balls doing?\",\n    \"video_name\": \"video9273\",\n    \"answer\": \"rotate\"\n  },\n  {\n    \"question\": \"what is looking at something?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated cartoon looking at?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a cartoon character start floating in squidward is getting upset at the people in krusty krab?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who starts playing the clarinet squidward is getting upset at the people in krusty krab?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what are laughing at squidward?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who starts floating in the air squidward is getting upset at the people in krusty krab?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what are shown underwater being abused by an octopus?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon character start playing squidward is getting upset at the people in krusty krab?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"clarinet\"\n  },\n  {\n    \"question\": \"who do a clip from the tv show?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what do cartoon character laugh at squid word then leave?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who does a cartoon character start playing the clarinet is getting upset at the people in krusty krab?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who speaks to the camera?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is laughing?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon character speak to?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a recording of a tv doing?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an animated cartoon doing?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is cartoon character doing?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are fish doing?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is sea creature swimming and doing?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a cartoon character start floating in the air is getting upset at the people in krusty krab?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what si shown?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what spongebob?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon characters shown underwater being abused by?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"octopu\"\n  },\n  {\n    \"question\": \"what gets laughed at?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what are fish laughing at?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what are cartoons laughing at?\",\n    \"video_name\": \"video9274\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"what does a cartoon of a little man shivering followed by an man in a top hat and glass on?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is shaking from being too cold in a cartoon television show?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what show power puff girls?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who shivers in a classroom?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who shakes because he is cold?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are cartoon kids in?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what are cartoon characters in?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what watch a video?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do boy shivers watch?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man talking on?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who was shivering?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is shivering?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is cold?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking on a television?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do famous cartoon show?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"power\"\n  },\n  {\n    \"question\": \"who are in a classroom?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are a cartoon in which children in a classroom asked to invent by a cartoon teacher?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"who are sitting in class?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is scared?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are some cartoon characters sitting in?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon of a little man doing?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"shiver\"\n  },\n  {\n    \"question\": \"what is a child shivers while a man doing?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is an animated boy doing?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"shiver\"\n  },\n  {\n    \"question\": \"what is cartoon people doing?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is in a cartoon television show a young boy doing?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what was the boy doing?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"shiver\"\n  },\n  {\n    \"question\": \"what did a cartoon red head in a classroom as they watch a video?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what a kid shivers in?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who are in school?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what headed boy shivers in a classroom as they watch a video?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what did a cartoon red head boy shivers in as they watch a video?\",\n    \"video_name\": \"video9275\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what are some boys doing?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is two children doing?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man jumping on?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"who flips over a mattress on a trampoline?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is kid jumping on?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what do kids jump on?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what are some boys jumping on?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what does a boy a back flip on?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"who is jumping on a trampoline?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boy a back flip onto?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"who jumps on a trampoline?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man jump on?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"who does a back flip on a trampoline?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy jumping over to get onto his trampoline?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"mattres\"\n  },\n  {\n    \"question\": \"who does a back flip onto a trampoline?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy jumping off a mattress into?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is a boy jumping off into a trampoline?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"mattres\"\n  },\n  {\n    \"question\": \"who is jumping over a mattress to get onto his trampoline?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is jumping off a mattress into a trampoline?\",\n    \"video_name\": \"video9276\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman in black leather doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is fashion show runway walk doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a group of women doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is fashion show of women doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a fashion show doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what show runway?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what do fashion models walk on?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are models walking down?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is a person walking down?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do a fashion show?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is a woman walking?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what is there is a female model doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is walking down a runway?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what walk involving several models?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what walks the catwalk with a purse?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are models walking as part of a fashion show?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do models walk down at a fashion shoot?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"who did a fashion show featuring something call?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"moschimo\"\n  },\n  {\n    \"question\": \"who walk on the runway?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who is walking a catwalk?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of women modeling down?\",\n    \"video_name\": \"video9277\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"who is talking to his friend?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who have two guys just seen?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a beautiful woman hold?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"umbrella\"\n  },\n  {\n    \"question\": \"who moves his arms weirdly?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman holding?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"umbrella\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who is holding an umbrella?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to another man?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds an umbrella?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many men are arguing?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking to each other?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys have just seen a beautiful woman?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does various pictures of different parts of a woman s?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"how many men are talking outside after seeing a woman?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men have a comedic discussion in a foreign language?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is clips from a bollywood movie doing?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9278\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what demonstrated how to apply a skin moisturizer?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is a women doing for other women in a palor?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what does a girl masaging explaining washing hands?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is a women putting a type of lotion on?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what does the care world organization describe by ayurveda method?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what is a women doing body massage for other women in?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"palor\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady demonstrates of doing?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is an indian woman demonstrates the application of make-up as she doing?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is an oriental woman doing?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is pretty girl doing?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9279\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what do a cartoon on the show?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what shows misty with togeta?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what does one of people release into the sky?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what does one of people release an animal figure into?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what does a pokemon excerpt show misty with?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"togetum\"\n  },\n  {\n    \"question\": \"who does a cartoon character release back into the sky?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what does a girl say goodbye to?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what does a female cartoon character release?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"who lets togetic go?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"misty\"\n  },\n  {\n    \"question\": \"what does a girl let go free?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"who lets a creature go free?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a group of people say goodbye to they love?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"what shows a group of figures standing together while one of people releases an animal figure into the sky?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is a scene from pokemon where a doing?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what does battle?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is cartoon with a girl doing?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"send\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animation shows a group of figures doing?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what does a cartoon pokemon do?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video9280\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is the commentator describing showing genes?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"what did a computer generate image of?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"structure\"\n  },\n  {\n    \"question\": \"what is colorful graphics of doing?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"branch\"\n  },\n  {\n    \"question\": \"what is the commentator doing?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a large molecule is displayed on computer screen with man doing?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a men doing?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a program on computer shows light color blue streaks doing?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"represent\"\n  },\n  {\n    \"question\": \"who discusses a 3d model of genes?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what describes what software created the lines?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what generated image of genetic structure?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who uses a colorful diagram of a shape with branches to teach a science lesson?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a computer program that identifies genes?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is displayed on computer screen with man pointing details?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"molecule\"\n  },\n  {\n    \"question\": \"who is a large molecule displayed on computer screen with pointing details?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do colorful graphics of branching creations teach?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what does a man use a colorful diagram of a shape with branches to teach?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what does a colorful diagram of a shape with branches rotate on?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a large molecule displayed on with man pointing details?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what explain a man for the people?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"map\"\n  },\n  {\n    \"question\": \"who is describing a software showing genes?\",\n    \"video_name\": \"video9281\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who performs on the voice?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is the little girl singing?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what watches?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what watches from backstage?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what does a young girl perform on?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who sings on a tv show?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings as judges listen?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are people watching on the voice?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what is a young girl impressing an audience with?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"who sing on a tv show?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are people watching a girl singing on?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a girl singing on with judges sitting in chairs?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on a stage with judges sitting in chairs?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did a little girl singing on stage during a television show call?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing on a television show while a group of judges listens from chairs?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a little girl with brown hair audition on?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing on a talent contest?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"impres\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9282\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who is a man in a baseball hat talking to in a suit?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is an adult talking to about an interview?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a man dressed casually being interviewed by a child in with a red tie?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what is a man in a baseball hat talking to a kid in?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"what is an adult talking to a child about?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is a boy wearing suit shirt and red necktie answering to his elders about?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what do the boy in the red tie and black suit sit at?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what gets taught some dance moves by smooth young interviewer?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what has a discussion with a young black man in a suit?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what does actor tom hanks get taught by smooth young interviewer?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is a man dressed casually being interviewed by in a suit with a red tie?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is talking to a child about an interview?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"adult\"\n  },\n  {\n    \"question\": \"who do the boy in the red tie and black suit talk to?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a black boy while sitting at a table with plates and glasses on it?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man and then teaches him some dance moves?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a small boy with coat doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in a baseball hat doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in black doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a baseball cap talks to a small african boy who doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a new york yankees hat doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an adult doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is small boy doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a suit boy doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man with cap doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a black suit boy doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a middle aged man doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a white man speaks to a black boy while doing?\",\n    \"video_name\": \"video9283\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what matches the blue can on the ground?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is being filmed?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is a person presenting?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone discussing?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does the can rest under?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is presenting a car?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is discussing a blue vehicle?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is going along showing the car?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does the blue car match can on the ground?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does the blue car match the blue can on?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is looking very shiny?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a blue car doing?\",\n    \"video_name\": \"video9284\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who serenades a white horse?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who sings next to a horse?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman singing next to?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse in a woman touch the horse face the woman came near the horse and remove the rope?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who is singing next to a horse?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who touches the horse?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing to a horse?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do some horses don t respect?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is petting a horse?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is stroking a white horse?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does shania twain sing with on stage?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"when is a woman singing a song with horse?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a woman singing with horse in a stage?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a horse in the grass a woman touch face the woman came near the horse and remove the rope?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what walks around on stage?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is singing a song with horse in a stage?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a horse in the grass touch the horse face the woman came near the horse and remove the rope?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is in the grass a woman touch the horse face the woman came near the horse and remove the rope?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who sings while a horse walks around on stage?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks up to a white horse in a country music video?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a girl singing and doing?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"stroke\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"approach\"\n  },\n  {\n    \"question\": \"what is a woman singing a song with in a stage?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a country singer serenade?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"when does a horse walk around?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what a woman touches?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman singing to?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman stroking?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a girl petting?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a woman sing next to?\",\n    \"video_name\": \"video9285\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are snakes having huge food in?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"stomach\"\n  },\n  {\n    \"question\": \"what are large snakes full of?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are snakes having in stomach?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are large snakes?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are the animals on?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the snake and the pythons features reflect in?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who doubts the authenticity of the images?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"presenter\"\n  },\n  {\n    \"question\": \"who does the man wearing the tshirt hold as the animals are on display?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"manican\"\n  },\n  {\n    \"question\": \"who stands beside a giant snake while others open their mouths?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hold a doll and lots of giant pythons?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what hoaxes scenes on the road side in a city?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"anaconda\"\n  },\n  {\n    \"question\": \"what are displayed with large boas?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"snake\"\n  },\n  {\n    \"question\": \"what are stories from asia of snakes eating drunk guys probably just?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"hoax\"\n  },\n  {\n    \"question\": \"what are biggest snake hoaxes displayed with?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"boa\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a snakes hoaxes pictures in south-east asia doing?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man in a white a-shirt holds a sexdoll then a reticulated python is shown doing?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man is shown with a blow-up doll then a picture of several very large snakes is shown while a man doing?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is stories from asia of snakes doing?\",\n    \"video_name\": \"video9286\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a woman dance around on?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are some guys talking about?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who dances around on camera?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"imitate\"\n  },\n  {\n    \"question\": \"what is a video of vines doing?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is teenagers doing?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9287\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"how many women are showing off clothes at a fashion show?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who show black ladies walking down a runway?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who is walking on a wooden floor?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do women walk down presenting fashions at a fashion show?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"who show shows off new clothing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"who walk down a makeshift runway?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do women in fashion show shows off?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what are womens doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who turn to pose?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are some models doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is fashion model show black ladies doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women walk down an open area doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is women walk down a catwalk doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is various women doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are black women in very high heels doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is a pair of women walk on a small runway doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is chubby doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is three women doing?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what do woman walk down?\",\n    \"video_name\": \"video9288\",\n    \"answer\": \"makeshift\"\n  },\n  {\n    \"question\": \"who perform fashion show on the tv channel?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walk down the runway of a fashion show with music playing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"where are group of ladies in long dresses walking?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what do the slow motion fashion show different from the conventional cat walk on?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"what are various models showcasing fresh dress models on?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what are female models walking on showing off their fashionable red and brown outfits?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"how many women are some people watching?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are looking perfect?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are walking?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do some woman perform on the tv channel?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what are group of ladies in long dresses walking on?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what are models walking on during a fashion show?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what do women walk around displaying at a fashion show?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what are various models showcasing on fashion show?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"when is a lady wearing red color dress?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a cat walk with two women one doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what are some models doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a number of models doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are group of ladies who look perfect doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are group of ladies in long dresses doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are group of ladies doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are female models doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are many women doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is at a fashion show women walk around doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9289\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who drives a car and talks to the camera?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is shown driving on a dirt road as a man narrates in spanish?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"suv\"\n  },\n  {\n    \"question\": \"what is a man giving a review of a white suv?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is speeding down an unpaved road?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is discussing driving in a car?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is test giving a review of a white suv?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do people drive?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car driving on?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"terrain\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks while driving his car?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talks while doing?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is driving on dirt terrain?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"where is a car driving?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"terrain\"\n  },\n  {\n    \"question\": \"who is test driving?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates in spanish?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive a car and talks to?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is guy in the car doing?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a white suv is shown doing?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who talks while driving a car?\",\n    \"video_name\": \"video9290\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who threw a man into the fire?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a man throw into the fire?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man throw a man into?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who a video game clip with?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"krueger\"\n  },\n  {\n    \"question\": \"who is thrown into a fire?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who does a man throw into fire?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man throw another man into?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"how many scary characters are fighting?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do mortal kombat fiery?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"fatality\"\n  },\n  {\n    \"question\": \"what does freddy krueger throw someone into?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who throws someone into a fire?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"krueger\"\n  },\n  {\n    \"question\": \"who throws another man into fire?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what fiery fatality scene?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"kombat\"\n  },\n  {\n    \"question\": \"what clip with freddie krueger?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does freddy krueger throw into a fire?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do freddy kruger throwing scorpio in to?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"furnace\"\n  },\n  {\n    \"question\": \"what mortal kombat fatality?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what a video game character getting thrown into?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who is thrown into a burning chamber?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what kruger throwing scorpio in to a furnace?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"freddy\"\n  },\n  {\n    \"question\": \"who do freddy kruger throwing in to a furnace?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"scorpio\"\n  },\n  {\n    \"question\": \"what character getting thrown into fire?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a video game mortal?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"fatality\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is shown throwing another character into a burning flame?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is video game characters doing?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two scary characters doing?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is freddy kruger doing?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what characters fighting?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a scene from a violent video game doing?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animated character is shown doing?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a game doing?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"who is stabbed?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a guy thrown into?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who slices someones throat in a video game?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"krueger\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9291\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man driving around the city in a video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a person talking about on grand theft auto?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man discussing the features of in a video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does a player navigate down the road?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a kid drive on the highway in a video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a player navigate the truck down?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a truck driving on?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what sits in the middle of the road?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man driving in an video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is driving an eighteen wheeler?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a person driving?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"wheeler\"\n  },\n  {\n    \"question\": \"what was full of action?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what was the video game full of?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a player describing while be drives a virtual bus?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who navigates the truck down the road?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a vehicle in a video game doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a truck doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a player doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man drives a truck in grand theft auto while doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a gameplay video of gta with an english man doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who drives a cement truck on the highway in a video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is driving a dump truck around the city in a video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing a game while be drives a virtual bus?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who drives a truck in grand theft auto while describing it?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a vehicle on grand theft auto?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is discussing the features of a vehicle in a video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing how his vehicle drives around in a video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a vehicle in an video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving a dump truck around in a video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what does a kid drive a cement truck on in a video game?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what is driving on the road?\",\n    \"video_name\": \"video9292\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a clip for 19 kids and doing?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"count\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what stands around an ambulance looking concerned?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is getting into a car?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who steps into a bus outside?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are some girls talking to?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is two young women doing?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the people doing?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is some girls doing?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some girls doing?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man getting into?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is family stands around an ambulance doing?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video9293\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when is child singing?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing on a television show?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing on a reality show?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what do judges listen to show contestant sing?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who do judges listen to a game show sing?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9294\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is brunette woman in red shirt talking in?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who are having an interview in the room?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do sexy brunette in red top talking to?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what did woman in red microsoft shirt talks about on a buisness level?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what did lady in red explain at microsoft?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"career\"\n  },\n  {\n    \"question\": \"what are man and woman having in the room?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who smiles?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"aldy\"\n  },\n  {\n    \"question\": \"what is talking?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"aldy\"\n  },\n  {\n    \"question\": \"what are man and woman having an interview in?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is having conversation with beautiful brunette woman?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about working for a computer company?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman on red t shirt doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"offer\"\n  },\n  {\n    \"question\": \"what is a woman smiles and talks about doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a aldy doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a woman in a red t-shirt doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the beauty ful lady doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the women doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady model doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with dark blonde hair wears a red tee shirt doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is brunette woman in red shirt doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a red microsoft shirt doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is sexy brunette in red top doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a red shirt doing?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who microsoft shirt talks about computer science on a buisness level?\",\n    \"video_name\": \"video9295\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do an infomercial about?\",\n    \"video_name\": \"video9296\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is someone giving demo for?\",\n    \"video_name\": \"video9296\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"what is someone giving for baby trolley?\",\n    \"video_name\": \"video9296\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"who does a commercial show?\",\n    \"video_name\": \"video9296\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is shown off?\",\n    \"video_name\": \"video9296\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video9296\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is being shown from different views?\",\n    \"video_name\": \"video9296\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who created ad showing how a stroller works?\",\n    \"video_name\": \"video9296\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being displayed?\",\n    \"video_name\": \"video9296\",\n    \"answer\": \"carriage\"\n  },\n  {\n    \"question\": \"what is a person created ad doing?\",\n    \"video_name\": \"video9296\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9296\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is driving a cart?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with two other peoples?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are hearing the latest news?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a man reading a man is addressing several men are walking and talking?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are group of people hearing?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who does a man with gray hair talks about making a historical movie and show with blond hair one of the sets for the movie?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man reading is addressing a large group several men are walking and talking?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reading a man is addressing a large group several men are walking and talking?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is about the history of the united states?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who talks in a room and rides in a carriage?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses his favorite moments in the making of a movie?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"director\"\n  },\n  {\n    \"question\": \"who talks about the sets for a movie about abraham lincoln?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"cart\"\n  },\n  {\n    \"question\": \"what are sitting?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is commentary about a movie doing?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is a man possibly a director doing?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video9297\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"when is a girl laughing?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"critique\"\n  },\n  {\n    \"question\": \"what is a panel of judges doing?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a talent search show doing?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a video with two men doing?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the clip is from a talent tv show doing?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what do young girls perform on?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what do a talent search show starring?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"charlotte\"\n  },\n  {\n    \"question\": \"who is laughing on stage?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a man critiquing to at least two little girls on a television show?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what is from a talent tv show involving children?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who gives a thumbs up to a girl?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who does a judge give a thumbs up to?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a judge give up to a girl?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"thumb\"\n  },\n  {\n    \"question\": \"who is being critiqued on the voice?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl being critiqued on?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is a panel of judges talking to?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what show starring a good charlotte?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"talent\"\n  },\n  {\n    \"question\": \"who is critiquing the performance to at least two little girls on a television show?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who judged by judges?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"trinity\"\n  },\n  {\n    \"question\": \"what do judges and a family cheer on?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is talking to a girl standing in a stage?\",\n    \"video_name\": \"video9298\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is this is a video of a black lab happily doing?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"respond\"\n  },\n  {\n    \"question\": \"what is a black dog doing?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is video of a dog at your feet doing?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"beg\"\n  },\n  {\n    \"question\": \"what is the black dog doing?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a black dog runs to greet someone and then sits doing?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"wag\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a chipper black female dog doing?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is female dog doing?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"beg\"\n  },\n  {\n    \"question\": \"what is a little black dog wags its tail doing?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is a small black dog doing?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"pay\"\n  },\n  {\n    \"question\": \"what runs to greet someone?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog playing with its owner in?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"shelter\"\n  },\n  {\n    \"question\": \"what does a black dog then sit wagging?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what is a black dog?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"energy\"\n  },\n  {\n    \"question\": \"what then sits wagging its tail?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who does a black dog come running in to jump on?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"owner\"\n  },\n  {\n    \"question\": \"who is the black dog walking to in the house?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"owner\"\n  },\n  {\n    \"question\": \"who is a dog playing with in the shelter?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"owner\"\n  },\n  {\n    \"question\": \"what comes running in to jump on his owner?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who do black dog very excite to see?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a little black dog wags waiting for food?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what is the black dog walking to his owner in?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who does a black dog run to greet?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing with its owner in the shelter?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is a chipper black female dog playing with?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"master\"\n  },\n  {\n    \"question\": \"who offers treats to an excited black labrador puppy?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"owner\"\n  },\n  {\n    \"question\": \"what is a black dog full of?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"energy\"\n  },\n  {\n    \"question\": \"what is walking to his owner in the house?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is full of energy?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is begging for treats from a female who is not shown only heard in a video clip?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what a little black dog wags its tail waiting for?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what very excited to see person behind camera?\",\n    \"video_name\": \"video9299\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a scene from sponge bob with squidward doing?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a squid doing?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are an animated cartoons doing?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who takes an order at the krusty krab?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what does squidward take at the krusty krab?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what is squidward doing?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what does squidward work at his restaurant?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"register\"\n  },\n  {\n    \"question\": \"what are an animated cartoons talking about?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"when does squidward have?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"moment\"\n  },\n  {\n    \"question\": \"who is squidward waiting on?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"customer\"\n  },\n  {\n    \"question\": \"what is man preparing in cartoons?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"who works a cash register?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is waiting on a customer?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who has an embarassing moment?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who works the register at his restaurant?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who is preparing ship in cartoons?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is acting unhappy with his job?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is squidward acting unhappy with?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"job\"\n  },\n  {\n    \"question\": \"what is squidward doing?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is this is a clip with no audio of squidward from spongebob squarepants doing?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what does squidward work the register at?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"what does a cartoon character work?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"register\"\n  },\n  {\n    \"question\": \"what is talking?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"what spongebob?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is working?\",\n    \"video_name\": \"video9300\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a guy explains the steps of doing?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is folding a paper?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person fold up a piece of?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing paper art?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing origami?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding blue paper?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy explain the steps of?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folds up a piece of paper?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains the steps of folding paper?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is person?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a young man?\",\n    \"video_name\": \"video9301\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who encourages a man hanging from a line high above?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who is speaking with other?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who swings on a trapeze as a man times him with a stop watch?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a person hanging?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is there is a orange jacket man doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a coach encourages a man doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in an orange shirt doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man with a stop watch talks about a man doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a guy in orange jacket doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man in an orange jacket doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man with a stop watch doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what does a man swing on as a man times him with a stop watch?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"trapeze\"\n  },\n  {\n    \"question\": \"who is training the player by using his stopwatch?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is hanging from a bar while another man times him?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man standing in a field with timing people for different tasks?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"stopwatch\"\n  },\n  {\n    \"question\": \"what is a man standing in with a stopwatch timing people for different tasks?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is standing in a field with a stopwatch timing people for different tasks?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hanging the rope?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"where is a man standing with a stopwatch timing people for different tasks?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a man hanging from while another man times him?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"who is a person training by using his stopwatch?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who is a man in an orange shirt timing at how well he can hold out before falling into the net?\",\n    \"video_name\": \"video9302\",\n    \"answer\": \"trapeeze\"\n  },\n  {\n    \"question\": \"what do a group of kids perform on?\",\n    \"video_name\": \"video9303\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"when are kids singing a song?\",\n    \"video_name\": \"video9303\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are kids singing on stage?\",\n    \"video_name\": \"video9303\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are children singing in?\",\n    \"video_name\": \"video9303\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"when are kids performing?\",\n    \"video_name\": \"video9303\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are a few kids singing to a panel of judges?\",\n    \"video_name\": \"video9303\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are a young group of kids singing on the talent show?\",\n    \"video_name\": \"video9303\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a group of children doing?\",\n    \"video_name\": \"video9303\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9303\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9303\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did a group of children audition for on a singing competition?\",\n    \"video_name\": \"video9303\",\n    \"answer\": \"spot\"\n  },\n  {\n    \"question\": \"when are three kids singing?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is someone looking at?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"sheet\"\n  },\n  {\n    \"question\": \"when do kids sing together?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performed by contestent in a music competition?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"duet\"\n  },\n  {\n    \"question\": \"when is a boy singing?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do three young people sing?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does young singer begin?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is singing on a stage?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is looking at sheet music?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who begins performance on stage?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"how many young people sing on stage?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many kids are singing on stage?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when are a group of people performing?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is a duet performed by in a music competition?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"contestent\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9304\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is there is a soccer game and the crowd doing?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what does footage taken in a stadium showcasing a soccer game taking?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who play a game in a soccer stadium?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is made?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what does footage taken in a stadium showcasing taking place?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is running?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a goal?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is screaming?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a goal is made?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do people enjoy?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a soccer player kick?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is soccer is made?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what do soccer players play in a soccer stadium?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who kicks the ball?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who makes corner kick and crowd cheers?\",\n    \"video_name\": \"video9305\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are anime characters doing?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"leap\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is dragon ball z music video shows omega shinran doing?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is lightning doing?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"strike\"\n  },\n  {\n    \"question\": \"who are anime characters leaping through the air to attack while their power effects are flashing in the background?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are fighting?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is lightning in?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is lightning striking?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is in a trippy cartoon?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"dragon\"\n  },\n  {\n    \"question\": \"what shows various characters in a line up?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"dragon\"\n  },\n  {\n    \"question\": \"what are anime characters leaping through to attack the bad guy while their power effects are flashing in the background?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who are leaping through the air to attack the bad guy while their power effects are flashing in the background?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what is a scene from a cartoon shown with over top of it?\",\n    \"video_name\": \"video9306\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is the woman entering?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what was the women open?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what opens?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who walk?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is the woman going to?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does the front door go to?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a door opens you see shoes of someone doing?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a black and white scene of a woman doing?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"return\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person with tied shoes doing?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what was the women enter in to?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a person wearing tennis shoes walk into?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what goes to the kitchen?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what does a person walk through into the house?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who is going to the kitchen?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person walk through the door into?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a man in black pants and shoes doing?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person with tied shoes walking in to?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who walks through the door into the house?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man come in the room then put on the floor go over to the cabinet?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"backpack\"\n  },\n  {\n    \"question\": \"who is entering the room?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man come in the room then put a backpack on the floor go over to?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"what does a man come in then put a backpack on the floor go over to the cabinet?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who go to the kitchen ane take the food maker?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who do a lady go to the kitchen ane take?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"maker\"\n  },\n  {\n    \"question\": \"who does the front door open enter?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man in black pants and shoes walking into?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what opens a woman enter?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"who comes in the room then put a backpack on the floor go over to the cabinet?\",\n    \"video_name\": \"video9307\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are beautiful woman walking in a fashion show?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who are walking a runway in a fashion show?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do models walk down at a fashion show?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are beautiful woman doing?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is runway model doing?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is some models doing?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what were the women doing?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman walking?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what does a model walk down?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do several models walk down?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what do female models walk across?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who is walking the runway?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks down the runway?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what do the models walk?\",\n    \"video_name\": \"video9308\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"who tries to take a piece from it?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who failed?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone picking up with chopstick that s on a plate?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is playing as a person picks up sea food?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what did an exploration of something about the dish serve on?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what was some sandwich taken in while the stuff fell off?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who is in the kitchen and cooking shrimp salad?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did some of chopsticks fall down to?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is some shrimp and squid being served as?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what was taken in spoon while the stuff fell off?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what fell off?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"who tried to eat shrimp salad with chopsticks?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a person pick up?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person eating?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what are some sandwich kept on?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who is eating shrimp salad?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what was placed on the table?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is playing while a shrimp dish is being shown?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are kept on the plate?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what was shrimp salad placed on?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is picking up shrimp salad with chopstick that s on a plate?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing the results from a shrimp salad recipe?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who picks up sea food?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person try to take from it?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"piece\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is some music doing?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is very jazzy music doing?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9309\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is helping a donkey?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a girl take on donkey?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"care\"\n  },\n  {\n    \"question\": \"what do many donkeys surround?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a girl take care on?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what is a woman helping?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what is a woman grooming?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"who hoofs?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"cleaning\"\n  },\n  {\n    \"question\": \"who is grooming a donkey?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what about donkeys?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do a lady take special care for?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"smooth\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"groom\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"who tends to a donkey in a barn?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who take special care for a donkey?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a girl smoothing down the hoof of?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what do a lady take for a donkey?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"care\"\n  },\n  {\n    \"question\": \"who takes care on donkey?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is smoothing down the hoof of an animal?\",\n    \"video_name\": \"video9310\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is in a stall?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"where does a horse stand?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is eating some grass?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is eating hay?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse is in a stall and it doing?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is eating in a stall?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is horse doing?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a horse eating?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"hay\"\n  },\n  {\n    \"question\": \"what is horse doing?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what does a horse stand in?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is in the stable?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what were the horses inn?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"barn\"\n  },\n  {\n    \"question\": \"what is a horse in?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"stall\"\n  },\n  {\n    \"question\": \"what stands in a field?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse eating in?\",\n    \"video_name\": \"video9311\",\n    \"answer\": \"stall\"\n  },\n  {\n    \"question\": \"what are trucks moving around in?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a computer online game?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are being shown with a subscribe button?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a children s with different types of vehicles?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is divided into quarters each showing a cartoon truck?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animated red truck doing?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what are animated trucks doing?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is four different animated cars doing?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the screen is divided into quarters each doing?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are trucks doing?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is trucks doing?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what trucks in different windows?\",\n    \"video_name\": \"video9312\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is walking down a hall?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is scary skit of a girl doing?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"bang\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what trailer?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does a woman act violently in?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"what is a woman walking down?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"who hit a wall in bathroom with bag?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is throwing a fit in a bathroom?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a woman hit a wall in bathroom with?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"what trailor with a woman being crazy in it?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a woman banging on the walls of a bathroom stall?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"purse\"\n  },\n  {\n    \"question\": \"what does an angry white woman hit on the stall?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"purse\"\n  },\n  {\n    \"question\": \"who is hiting bag on wall?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman hitting a wall with?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"handbag\"\n  },\n  {\n    \"question\": \"what is girl hiting bag on?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is girl hiting on wall?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"who acts violently in a bathroom?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does an angry woman let off?\",\n    \"video_name\": \"video9313\",\n    \"answer\": \"emotion\"\n  },\n  {\n    \"question\": \"who kissed a woman on the forehead?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kissed a woman on the forehead before walking away?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did a man kiss on the forehead?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who kisses a woman on the head?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kisses his mother on the forehead and leaves?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kissed an old lady then walked away?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man kiss a woman on?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"forehead\"\n  },\n  {\n    \"question\": \"who did a woman kiss on the forehead before walking away?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a woman kiss a woman on before walking away?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"forehead\"\n  },\n  {\n    \"question\": \"who says good bye to his mother?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a man kiss then walked away?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is attempting to hack a computer?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who says goodbye to his mother?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a man kissing bye to?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who do a man saying bye to?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who is kissing a woman?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man kissing?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking with an old woman that s sitting on a bench?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man kisses and older woman then walk off?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who then walked away?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is a woman kissed a woman on the forehead before doing?\",\n    \"video_name\": \"video9314\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what does two men talking to each other on man smoke?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"cigarette\"\n  },\n  {\n    \"question\": \"who is watching dragnet?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talk to each other?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the mens doing?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"smock\"\n  },\n  {\n    \"question\": \"who are two men taking about?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are actor doing?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"who are two men discussing in a black and white television show?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many men are discussing a woman in a black and white television show?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking about a woman?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who are two men talking about?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many men are taking about a woman?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what does not play?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many men are engaged in a discussion?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is smoking?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is smocking while talking?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person watching?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"dragnet\"\n  },\n  {\n    \"question\": \"what are two men engaged in?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"video9315\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what explain a man for the people?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"map\"\n  },\n  {\n    \"question\": \"who is talking about the world cup and uruguay sport?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a graphic related to sports teams float over?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who talks about a video game as he shows off part of the game?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a sports announcer talk about the uruguay rugby team before?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who is describing the prospects for uruguay s rugby season?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who talks about the uruguay rugby team before a match?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"where does a graphic related to sports teams float?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what has a flag with a yellow sun with pointed rays beside two horizontal blue stripes white text and magenta squares?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what match with an announcer giving strategy using a blue graphic?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a commentator doing?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who shows off part of the game?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man show off part of?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the doing?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is world cup campaign chart doing?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"telecast\"\n  },\n  {\n    \"question\": \"what is an announcer doing?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a soccer game and a board describing who will be doing?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9316\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is giving a speech?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what does a chief guest come from?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"who is talking the president?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is a man talking?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"who does a journalist talk about?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what is the president giving?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is president obama talking to?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is talking to a crowd?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what is president obama annoucing?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who comes from flight?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"guest\"\n  },\n  {\n    \"question\": \"who talks about the president?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"journalist\"\n  },\n  {\n    \"question\": \"who is annoucing something?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"who talks about news?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about what the president can and can t do?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talk about something in front of others?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the powers that a president has?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what that discusses the presidential responsibilities related to appointing judges?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is giving a news broadcast about obama s judicial appointments?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes what a president s responsibilities include?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news clip that discusses the presidential responsibilities related to doing?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"appoint\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9317\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is showing how to fix a vehicle?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who speaks about how the work he is doing is tough?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on a car engine?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does video of car mechanic?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is repairing a car?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fixing a car?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man repairing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what mechanic work?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking about doing a car repair?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person fixing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a man still working on?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is showing an engine?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing how to fix a part on a car?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is still working on the car?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is he is still doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9318\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"who is performing at stage?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who steps onto the stage?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who performs for judges?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who walks onto a stage?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"who are people clapping for?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"when does a young man walk?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when does a kid step?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who comes to the stage?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is kid performing at?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when does a kid come?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is clapping?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks out?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"talent\"\n  },\n  {\n    \"question\": \"what is cheering for an audition participant?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what does the voice a young man sing for judges on?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"who is clapping for a boy walking on the scene?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what applaud a kid that did a good performance?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is a man clapping for walking on the scene?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is prepared to sing on television a man is playing the music on piano for him?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is the audience doing?\",\n    \"video_name\": \"video9319\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what does a man lay on with a baby?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a funny talking man with a beard lay in with his baby?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a man lying on with his little baby?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who does a funny talking man with a beard lay in bed with?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who says he has been left alone with the baby that has a pacifier and is right beside him?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man laying next to a baby in?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"crib\"\n  },\n  {\n    \"question\": \"who introduces them as dominick and parker?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a dad doing?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"who is lying next to his very young baby while talking?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man and young baby doing?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a man and his baby take a selfie video of themselves doing?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a man lays in a bed next to his baby who doing?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"suck\"\n  },\n  {\n    \"question\": \"what is a funny doing?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in white shirt and baby in blue shirt doing?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who lies on a bed with a little baby?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"who is laying on a bed with a baby?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is laying next to a baby in a crib?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lays on the ground with a baby?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who films himself next to his baby as he sucks a pacifier?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a guy laying on a bed with?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a man laying next to in a crib?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is lying on a floor with his little baby?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man lay on the ground with?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a guy laying on with a baby?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who lays in a bed next to his baby who is sucking on a pacifier?\",\n    \"video_name\": \"video9320\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do penguins walk in?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what does a penguin walk on?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what starts walking?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what tries to walk?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"penguin\"\n  },\n  {\n    \"question\": \"what waddle around?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is walking?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"penguin\"\n  },\n  {\n    \"question\": \"what are penguins slipping on?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what are penguins walking on?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what walks on the ice?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"penguin\"\n  },\n  {\n    \"question\": \"what is a baby penguin following?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"penguin\"\n  },\n  {\n    \"question\": \"what is following an adult penguin?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"penguin\"\n  },\n  {\n    \"question\": \"what explores the life of penguins?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who penguin being followed by a baby penguin?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"what do penguins wander around on?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what are a group of penguins walking around follows its elder?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"penguin\"\n  },\n  {\n    \"question\": \"what stumbles as it tries to walk?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"penguin\"\n  },\n  {\n    \"question\": \"what is a group of penguin doing?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are a group of penguins doing?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a penguin doing?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are penguins doing?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"slip\"\n  },\n  {\n    \"question\": \"what is penguins doing?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the penquins group starts doing?\",\n    \"video_name\": \"video9321\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what does a room that catches fire later start on?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who walks up into a trailer?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gets trapped in a burning trailer?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses acting with a younger colleague?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"actres\"\n  },\n  {\n    \"question\": \"who does a woman walk up into?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who is shown panicking in a locked trailer?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is trapped in a room that catches fire?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is many people engaged in doing?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an older actress discusses doing?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman is shown doing?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"panic\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who walks up to a group of women?\",\n    \"video_name\": \"video9322\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is backing up in the street?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what prepares to raid a person?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"swat\"\n  },\n  {\n    \"question\": \"what is the video of military men?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"documentary\"\n  },\n  {\n    \"question\": \"who looks at the camera?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is given?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"documentary\"\n  },\n  {\n    \"question\": \"what does a boy look at?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are the police looking in?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a military personnel running with?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what are looking in a field?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who searched by police?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an ambulance backing up in?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who runs?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who does a swat team prepare to raid?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is news doing?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"where are the police looking?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is cops doing?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who interviews a kid after an incident?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a photo of a man shown then soldiers walk around?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who did a few tactically dress take positions?\",\n    \"video_name\": \"video9323\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who peeks out at the hallway and a man peaks?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did a bottle hit by?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what hit by door?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is rolling in the hallway and a man peaks out of a door looking at it?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"who stands in fear as he stares at a glass bottle that he hit with his door?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what rolls down a hallway?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is a bottle rolling on?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what open a door?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what do an anime open?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what does a bottle roll down?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who watches?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is rolling on the floor?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what does a glass bottle of milk roll across?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a man staring at rolling on the floor?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is animated video doing?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is animated sequence doing?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a bottle of milk rolls down the hall and someone doing?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a bottle doing?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what rolls across the floor of absolut milk?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"who is staring at a bottle rolling on the floor?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what rolls down a hallway as a boy peeks out at it?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what figure opening a door an knocking over a bottle?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does an empty bottle roll down as a boy peeks out at it?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what does a can roll towards while a person watches?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do a cartoon figure opening a door an knocking over?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what do a cartoon figure opening an knocking over a bottle?\",\n    \"video_name\": \"video9324\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who drives in a vintage car?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person drive a car down?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who drives a car down the road?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man driving and doing?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a 64 cadillac doing?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does the man drive?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man review?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"cadillac\"\n  },\n  {\n    \"question\": \"what is a man driving down?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a car go down?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what goes down a street?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a black car?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a 64 cadillac being driven down?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a person drive down the road?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being driven down a road?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"cadillac\"\n  },\n  {\n    \"question\": \"who reviews a 1965 cadillac?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a class 8 truck drive down?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is driving down the road?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving an expensive car?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives the old car?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a classic car?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a convertible?\",\n    \"video_name\": \"video9325\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are students singing in?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"who sing?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what is two boys sneak up to a girls doing?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of school children doing?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what are a bunch of kid doing?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"sneak\"\n  },\n  {\n    \"question\": \"what is 2 kids doing?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"sneak\"\n  },\n  {\n    \"question\": \"what do two children sneak into?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"classrooom\"\n  },\n  {\n    \"question\": \"what do girls sing in?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"choir\"\n  },\n  {\n    \"question\": \"who takes cover?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who runs up to a wall?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does a kid take?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what do boys sneak up on a girls music class to get one girl s?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"attention\"\n  },\n  {\n    \"question\": \"what are a group of kids all in?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"how many children sneak into a classrooom?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are boys running in as girls in uniform sing in a classroom?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what is giving details about movie produced by?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many boys sneak up to a girls performing choir?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys run and slide against a wall where in the next room kids are singing?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do girls in uniform sing in?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who sing in a classroom?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"uniform\"\n  },\n  {\n    \"question\": \"what does a kid run up to?\",\n    \"video_name\": \"video9326\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what are people eating?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is a man eating?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what do three men try out together?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are the friends enjoying together?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who are three boys eating?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"burger\"\n  },\n  {\n    \"question\": \"who is showing food?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are showing the food they are about to eat?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many asian men review hot dogs?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are eating burger?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men try out food together?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what do some guys talk about?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are three men showing they are about to eat?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many men are eating?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are sitting?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is eating a hot dog?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are the friends doing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are three boys doing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is three young men doing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9327\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a car running very fast on?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is racing on road?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car racing on?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a race car drive around?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a car racing down?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what a car races down?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what drives around a track?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what speeds down a road?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what races down a road?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a fast car racing down?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is running very fast on the road?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is racing down a race track?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car speed down?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what drives along a track?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is racing down a track?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is racing around a track at a very high speed?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a racing car going round?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"racetrack\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a fast car doing?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is car doing?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a car drive along?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is race car doing?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a car racing around at a very high speed?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is going very fast?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what sounds awesome?\",\n    \"video_name\": \"video9328\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what bollywood rumors segment?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"hindi\"\n  },\n  {\n    \"question\": \"who is talking about celebrities?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a bearded man have taken on the red carpet?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what do movie stars walk?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"carpet\"\n  },\n  {\n    \"question\": \"who has his photo taken on the red carpet?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walk the red carpet?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is posing for pictures?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who is shown on the red carpet?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what did hindi bollywood?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man and woman doing?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"pause\"\n  },\n  {\n    \"question\": \"what is a celebrity doing?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9329\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what music video?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what a country music?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man singing outdoors by?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who outdoors by a truck?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what is a man playing on a farm?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a guy playing on a farm?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing a guitar on?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"farm\"\n  },\n  {\n    \"question\": \"what is a guy playing a guitar on?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"farm\"\n  },\n  {\n    \"question\": \"what does a man playing the guitar outdoors by?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a man with a guitar sing on?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"farm\"\n  },\n  {\n    \"question\": \"what does a man in a baseball hat play?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing a guitar on a farm?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is playing the guitar in the field?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man singing and doing?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is silent video doing?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9330\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a man drive his car down?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who drives his car down the road?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person driving through a city?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving a car through?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is a person driving a car through?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who is driving a car through the city?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive down the road?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives down the street?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car while talking?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving down?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive down?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives around?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving through the city?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man driving and doing?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is driving a car through a city?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving while talking?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving down the street?\",\n    \"video_name\": \"video9331\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a video game character walking with?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"cane\"\n  },\n  {\n    \"question\": \"who commentating on a game?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who plays a videogame?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing the sims?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining a video game?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman commentate on?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what fall in the game?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what do snow fall in?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person walking with in a game?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what is someone making 3d graphical design of?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is commentating over a video game?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a girl explaining?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person walking with a stick in?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is making 3d graphical design of a game?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about having a barn in the sims?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is walking with a stick in a game?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what does a girl play?\",\n    \"video_name\": \"video9332\",\n    \"answer\": \"videogame\"\n  },\n  {\n    \"question\": \"who is grilling cheese burgers on a grill?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who barbecues his cheeseburgers?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking cheese bacon burgers in the grill?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man grill?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what does a guy grill?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is a man bbqing?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"who is grilling?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"bbqing\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what do two men cook in outdoor grill?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do two men cook something in?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"outdoor\"\n  },\n  {\n    \"question\": \"who is bbqing cheese bacon burgers?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking food on the grill outside?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men cooked something in outdoor grill?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is flipping burgers on a grill?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man grilling some burger patties on?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a person cooking cheese bacon burgers in?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a man cooking on the grill outside?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person cooking in the grill?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"who grilling cheese bacon burgers?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man flipping burgers on?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"who grilling bacon burgers?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man grilling cheese burgers on?\",\n    \"video_name\": \"video9333\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a character doing?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a minecraft character doing?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a minecraft video shows a character doing?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animation shows a woman doing?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is in game footage of a mine craft character doing?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is walking up stairs in minecraft?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what play?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who walks upstairs?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is walking up some gray steps to a wooden door?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does a minecraft character walk up?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"stair\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who walks up a stair?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who slowly walks up the stairs?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what shows a character climbing a staircase?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what shows a woman walking up a staircase?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who climbs stairs to reach a doorway?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing video game?\",\n    \"video_name\": \"video9334\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is on a black stove?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is frying the prawns and fish?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a wok having added to it while it is on a black stove?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone making in the kitchen?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is someone making a dish in?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is someone heating oil in?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"wok\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"heat\"\n  },\n  {\n    \"question\": \"what is in a fry pan the dried prawns and fish put together and doing?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is instructional cooking video doing?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is music doing?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a cooking video of doing?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a cooking demonstration of how to prepare food doing?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what are fish being added to to be fried?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"wok\"\n  },\n  {\n    \"question\": \"what is having food added to it while it is on a black stove?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"wok\"\n  },\n  {\n    \"question\": \"who is heating oil in a wok?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is being used as ingredients are added?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"wok\"\n  },\n  {\n    \"question\": \"what are being added to a wok to be fried?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is adding ingredients to the hot wok to fry them?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is adding some ingredients on the hot pan?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing in the background step by step instructions for a meal are shown along with subtitles?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is stirring food inside of a pot?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who frying something in the oil in kitchen?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who put dry pawns and shrimp in a hot wok?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows ingredients how to fry dried prawns and shellfish?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is making a dish in the kitchen?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone heating in a wok?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is someone stirring food inside of?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what are dried prawns pan fried in?\",\n    \"video_name\": \"video9335\",\n    \"answer\": \"wok\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a video game truck smashing in its way?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"everything\"\n  },\n  {\n    \"question\": \"what does the video game have lots of?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what has lots of action?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who plays a driving game?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does the video game have?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what is a video game truck smashing everything in?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"who does a sidescrolling game that follow across terrain?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"hummer\"\n  },\n  {\n    \"question\": \"what is video game of a truck doing?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay of person doing?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game truck doing?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"smash\"\n  },\n  {\n    \"question\": \"what is a video game doing?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a jeep doing?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what does a sidescrolling game that follow a hummer across?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"terrain\"\n  },\n  {\n    \"question\": \"what is a jeep doing?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is moving fast on road hitting people and blocks away?\",\n    \"video_name\": \"video9336\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"what is an older woman shops for garlic in a street market doing?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is an older woman in a market place doing?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a old woman doing?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who goes to the local grocery store for garlic?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"grandmother\"\n  },\n  {\n    \"question\": \"who comes?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are walking?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who walks?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are some people inside of?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a old lady take?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what is an older woman doing?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who shops at a local fresh fruits and vegetables market for garlic?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are visiting the shops?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who shops for garlic in a street market setting?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who goes to the grocery store to buy some garlic?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"grandmother\"\n  },\n  {\n    \"question\": \"who takes some garlic?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a grandma named mila go to to buy garlic?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"who is buying garlic from a salesman?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is looking for garlic in a store?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a grandmother go to the grocery store to buy?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what is a woman buying from a salesman?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"who is a woman buying garlic from?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"salesman\"\n  },\n  {\n    \"question\": \"who comes into a vegetable shop?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a grandma doing?\",\n    \"video_name\": \"video9337\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"who is demonstrating the word digging by digging in the sand?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is scooping sand out of a hole?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is fills then empties a bucket of sand?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is digging a hole in the sand?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a child demonstrating the word digging by digging in?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is a child demonstrating by digging in the sand?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"digging\"\n  },\n  {\n    \"question\": \"who is filling a bucket with sand?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl scooping out of a hole?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a boy diigging?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is a kid playing in?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"who is diigging a hole?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a girl filling with sand?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"bucket\"\n  },\n  {\n    \"question\": \"who is digging a beach sand?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is playing in the sand?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a girl filling a bucket with?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is a girl fills then empties a bucket of?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"scoop\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young child doing?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what are childrens doing?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9338\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are in the big mountains?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"com\"\n  },\n  {\n    \"question\": \"who talk about a alpacas animal?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing various alpacas?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing the availability of alpacas for sale?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a alpacas breeding?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman describing the availability of alpacas for?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"sale\"\n  },\n  {\n    \"question\": \"who is talking about some animals including dogs and alpacas?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the breeding about the say images animals all are standing on?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what are some animals seen in?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is discussing the website for alpaca ordering?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where did the breeding about the say images animals all are standing?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is a woman describing the availability of for sale?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what is photos of wild liama in green field doing?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a collection of images set to a woman doing?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the breeding about the said images animals all doing?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is there are animals in jungle doing?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what is some animals are seen in this video and they are seen doing?\",\n    \"video_name\": \"video9339\",\n    \"answer\": \"graze\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is crying?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who was the girl consoled by?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who consoling another woman on a bed in a room?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did a woman console on a bed in a room?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a woman console another woman on a bed in?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what did a woman console another woman on in a room?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"how many women are sitting on a bed?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are sitting on a bed talking?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do two girls on television show talking?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are two girl sitting on talking?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a woman put around another woman?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what are two women sitting on?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are teams playing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"console\"\n  },\n  {\n    \"question\": \"what is a prisoner doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"console\"\n  },\n  {\n    \"question\": \"what are teams doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two girl doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two girls on television show doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two woman doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is one sad one doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"comfort\"\n  },\n  {\n    \"question\": \"what is a couples girls doing?\",\n    \"video_name\": \"video9340\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is excited?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a group of women walking down a sidewalk near a very large crowd as a crazy man talk to?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"pres\"\n  },\n  {\n    \"question\": \"who is a man surrounded by?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what would rather interview the most ignorant person three girls at a public place and young man can find than beautiful women?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"pres\"\n  },\n  {\n    \"question\": \"who do three women talk about on tv?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who excitedly talks to a reporter?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the ladies looking at?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does a man excitedly talk to?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is an african american man being interviewed by?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is speaking to news reporters with microphones?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many women are speaking to each other?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is a man speaking to with microphones?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is surrounded by news reporters?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many women talk about their friend on tv?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who gets excited?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are three women doing?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are a girls doing?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is three girls doing?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of women doing?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are group of ladies are outdoors and they doing?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are a group of girl doing?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is group of girls doing?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the women doing?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets interviewed?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"student\"\n  },\n  {\n    \"question\": \"what are outdoors?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is young people outside a school very excited about a news crew doing?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a movie scene with three girls doing?\",\n    \"video_name\": \"video9341\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is two men on wave runner in ocean doing?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"rescue\"\n  },\n  {\n    \"question\": \"who did two men on wave runner in ocean rescue?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an athlete doing?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what did two men riding on a wave runner rescue another man from?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"who do two men on a wave runner rescue from the ocean?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two men on waverunner rescue stranded surfer in?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who is driving his machine in the sea with high speed?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did two men riding on a wave runner rescue from the ocean?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are men sitting on in water?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"hovercraft\"\n  },\n  {\n    \"question\": \"what is person driving in the sea with high speed?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who reveals that he is safe in the hands of two men on a jet ski after an apparent accident in the water?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person driving his machine in with high speed?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is a larger boat beside?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"beside\"\n  },\n  {\n    \"question\": \"what is beside people?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what circles people?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"how many men are traveling in the water with small vehicles?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are men sitting on hovercraft in?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are people floating in while a boat circles them?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what are two men traveling in with small vehicles?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"how many people are in the ocean riding on a jet ski as a larger boat is beside them?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is being rescued from waters onto a jet ski?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what do two men on a wave runner rescue a man from?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"when is person driving his machine in the sea?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"who is rescued onto a jet ski?\",\n    \"video_name\": \"video9342\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an indian woman in a colorful outfit carry plates of into another room?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did a woman give to a man reading a book in another room?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who does an indian woman give a cucumber to?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an indian woman give to a man?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"who sliced some fruits?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does an indian woman in a colorful outfit carry plates of food into?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who takes food in a plate?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the woman take in a plate?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman carry plates of?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did a woman cut in half?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is a indian movie scene playing in?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who cuts a cucumber?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks out of the room?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a woman cut a cucumber in?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"what is a woman wearing a red dress making for a boy?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is a woman wearing a red dress making food for?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who carries plates of food?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is slicing the cucumber?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is a indian movie scene doing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman cut a cucumber in half and gave it to a man doing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"who cut a cucumber in half?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is an indian woman in a pretty dress doing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what does an indian woman with colorful clothes serve a man with a floral shirt admires?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"whole\"\n  },\n  {\n    \"question\": \"what does an indian woman in a colorful outfit carry into another room?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman carry through a bead curtain as a man watches?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who gave a cucumber to a man reading a book in another room?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady sliced some fruits and take to the next room and a guy doing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what does the woman take food in?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who carries food through a bead curtain as a man watches?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is reading a book?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking into a room where a man is reading?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing the vegetables?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who watches?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting down?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is woman preparing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who gives a cucumber to a man?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman decorating?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is a man reading?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"who is decorating the meal?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing something?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who goes back to kitchen?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman slicing?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what does a woman walk out of?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a woman carry?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does an indian woman cut?\",\n    \"video_name\": \"video9343\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a guy playing?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is crashing into other cars in a video game?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes commentary over a driving game?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a computer online game?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do video game review with?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"gameplay\"\n  },\n  {\n    \"question\": \"what is video game doing?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what review with gameplay?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a car game?\",\n    \"video_name\": \"video9344\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a large group of birds doing?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are a flock of birds doing?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a bunch of bees doing?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a swarm of birds doing?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a group of birds doing?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a flock of birds doing?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are flying?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do birds fly in?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what are birds flying in?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what are birds doing?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are cartoon birds doing?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what do video of birds fly in?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what do a flock of birds fly through?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is a swarm of birds flying through?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what does a huge flock of yellow birds fly through?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what do a huge flock of birds fly through?\",\n    \"video_name\": \"video9345\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"who is changing the background color on a photograph of a woman wearing a white dress?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing how to edit a photograph on the computer?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gives a photo editing lesson using an unspecified computer program?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explains on photo editing in a software?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman showing how to use feature in?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"photoshop\"\n  },\n  {\n    \"question\": \"what does a woman describe while screen captured footage of photoshop plays?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"proces\"\n  },\n  {\n    \"question\": \"what captured footage of photoshop plays?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who shows how to edit a picture?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is editing picture in computer?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did screen capture footage of?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"photoshop\"\n  },\n  {\n    \"question\": \"who demonstrates photo editing tools?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman demonstrate?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"editing\"\n  },\n  {\n    \"question\": \"what s editing effects are demonstrated?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"illustration\"\n  },\n  {\n    \"question\": \"what is someone changing on a photograph of a woman wearing a white dress?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman gives a photo doing?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is a woman is explains on photo doing?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a software for doing?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is a woman demonstrates photo doing?\",\n    \"video_name\": \"video9346\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what does a blond woman in a red shirt sit in?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who reviews a leather basket used to carry things?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is blonde woman presenting in the room?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what does a lady wear red dress talking something about?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what does a woman with short blond hair sit in?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does a blond woman in a red shirt display?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"pillow\"\n  },\n  {\n    \"question\": \"what do a woman in red dress explaining about?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"cushion\"\n  },\n  {\n    \"question\": \"what is a woman with blonde hair talking to?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what does a lady wear red dress talking about a product?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman with short blond hair holding up cat bed and talking about it?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"snakeskin\"\n  },\n  {\n    \"question\": \"what does a blonde woman in a chair talk about with spots?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what does a lady wear talking something about a product?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is blonde woman doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"who is talking a bout a bed for a cat?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in a red shirt doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a blonde woman with a red shirt sitting down in?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a lady wears red dress doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with short blond hair doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman with blonde hair in a red shirt doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is blonde hair woman in brown doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a woman in white color hair doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in red dress doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a blonde woman with a red shirt doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman with blonde hair doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what did blond woman in crimson dress showcasing a custom make?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"pillow\"\n  },\n  {\n    \"question\": \"what is a woman in a red shirt doing?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who wears red dress talking something about a product?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is explaining some thing about a hat a lady wanted to wear?\",\n    \"video_name\": \"video9347\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what is models back down a catwalk doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do fashion show in which girls wear different types of?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what are models walking down showing various types of clothing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are models walking down a runway showing various types of?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what do models back down wearing avant guard clothing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what do various women walk down while some music plays?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what are women walking down at a fashion show?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"catwalk\"\n  },\n  {\n    \"question\": \"what do models back down a catwalk wearing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what do models strut on the runway in mostly black and white clothes and high heels as?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are in the fashion show ramb the walking of the girl doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"amaze\"\n  },\n  {\n    \"question\": \"what is a fashion show with models doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman with very short black hair wears a black suit and white tie while doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are several women doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a bunch of models doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are many different women doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is models one by one strut down a long runway doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are models doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a group of models doing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what show of homely girls wraring business casual clothing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"who walk down a stage modeling clothes at a fashion show?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do models one by one strut down wearing expensive high fashioned clothing?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what does a woman in a lady suit with a tie walk down?\",\n    \"video_name\": \"video9348\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person winding around a stick?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"ribbon\"\n  },\n  {\n    \"question\": \"who is doing an arts and crafts project?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person wrapping beads on?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"who is adding balls?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a handmade craft?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are white flowers added to in a craft?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"handmade\"\n  },\n  {\n    \"question\": \"who is performing live?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crafting?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person winding ribbon around?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what is someone doing with some artificial flower?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what are white flowers added to green paper in?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"wind\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"wrap\"\n  },\n  {\n    \"question\": \"what is a short clip of a woman doing?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who is wrapping beads on a stick?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is winding ribbon around a stick?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is showing how to make a type of craft item?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing some craft work with some artificial flower?\",\n    \"video_name\": \"video9349\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is shown talking on the dr phil show?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a theater screen show people are being shown on the big screen at?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"who phil showing in a cartoon theater?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"what show people are being shown on the big screen at dr phil?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"theater\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doctor phil doing?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is screen doing?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is several males doing?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what are several men doing?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is a couple of men doing?\",\n    \"video_name\": \"video9350\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is singing song in a concert?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"when are two different men singing?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is singer singing in a concert?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing on a large stage?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing a song on a television show?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are singing on the voice?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who sings a song on a stage?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man singing to a huge audience he is holding a microphone?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on stage to a huge audience he is holding a microphone?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are singing on a television show?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many different men are singing on a stage?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men perform a singing duet on a tv show?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is singer singing song in?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are two men singing on?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what programe?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9351\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does a person preform?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who are people watching perform?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man speaking to?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a man talking to?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are two women watching?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what show in a sony channel?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"who is talking to a crowd?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is performing for judges?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are a panel of judges watching a man talk?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who preforming on stage?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who entertains the judges on a game show?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands in front of a audience on a gameshow?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man delivering a talk?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are women and men talking on stage in?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"how many women are watching a guy talk?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when are women and men talking in a show?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is delivering a talk on stage?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a panel of judges watching on stage?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is speaking to a crowd?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man delivering on stage?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are women and men doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are a panel of judges doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what is a person on stage doing?\",\n    \"video_name\": \"video9352\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do two attractive ladies talking outside who have?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who do two pretty women discuss amongst in a foreign language?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"amongst\"\n  },\n  {\n    \"question\": \"how many women are outside?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two pretty women discuss amongst in a foreign language?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"amongst\"\n  },\n  {\n    \"question\": \"what do two friends seen animatedly chatting between themselves in?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"locality\"\n  },\n  {\n    \"question\": \"what are a two girls talking?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"where do two friends seen animatedly chatting between themselves?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"locality\"\n  },\n  {\n    \"question\": \"how many friends seen animatedly chatting between themselves in their locality?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women with dark hair talking out?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what are rwo women having with one another?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are two women discussing in a foreign language?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are two indian women talking about while outside?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many women sit?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are standing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women with dark hair doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women outside doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two attractive ladies doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two young women sit outside an one of them does all the doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two girls one in yellow and black doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two attractive women doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two women are outside and doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is two friends seen animatedly doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"what are two young woman doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are a two girls doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two indian women doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two ladies doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are two dark haired women doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many girls are talking some thing?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many ladies are speaking to each other out doors they have trees behind them?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are talking with trees standing behind them?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are speaking outdoors while giving unsolicted advise?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many pretty women discuss amongst themselves in a foreign language?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young women sit outside an one of them does all the talking?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many attractive women are standing outside talking to one another?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women outside are talking to each other?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are discussing something in a foreign language?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many indian women are talking about something while outside?\",\n    \"video_name\": \"video9353\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the men from top gear doing?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are a large vehicle is on fire and three men doing?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three men doing?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what were three men doing?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a red truck doing?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"burn\"\n  },\n  {\n    \"question\": \"what is fire fighters doing?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is firefighters doing?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three guys doing?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is the three men from top gear doing?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"how many men argue while firemen attempt to put out the fire with water?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what do firemen attempt to put out the fire with?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do three guys talk to one another with going on behind them?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what do firemen attempt to put out with water?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is water poured in to stop it?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what do 3 men with british accents have?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is poured in order to stop it?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"how many men were watching?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men talk about a car?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"where do men stand?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what do men watch burn?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"tractor\"\n  },\n  {\n    \"question\": \"what burns and?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is burning?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what do three men talk about?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a truck on?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a large vehicle on?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what do men stand in?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is on fire?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what do 3 men with british accents finally notice?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a building on while 3 men with british accents have a casual conversation and finally notice the fire?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is burning while three men talk about a car?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"how many men are talking standing away from a large vehicle?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are firefighters putting out fire as 3 men having?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"how many men are talking while a truck is burning?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men were talking about the burning vehicle?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is on car while 3 men with british accents have a casual conversation and finally notice the fire?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"how many guys talk to one another with a fire going on behind them?\",\n    \"video_name\": \"video9354\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is driving around erratically while a man describes how to play the video game?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person drive down the road in a video game?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"who drives a jeep down the road in a video game?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who describes how to play the video game?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what drive a car in game?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man demonstrating?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone explaining?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a guy narrate?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does car race show in?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows in video game?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is demonstrating a video game?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining video game?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a anime drive in game?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who narrates a video game?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what do a anime drive a car in?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is talking about vehicle spawns in grand theft auto 5?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9355\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is person is in the kitchen and doing?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl and a bowl knife doing?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"list\"\n  },\n  {\n    \"question\": \"what is a recipe for a tomato and crab dish given in as well as the necessary tools?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who is cutting up some onions inside?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is in the kitchen?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person in?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a list of ingredients and tools needed in doing?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is person is in the kitchen and doing?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what did a woman narrating a recipe with the text of the recipe and the utensils need displayed on?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is standing in front of some pots?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is arranging utensilslarge saucepan and spoons as a preparation to cook something?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl knife cutting vegetables spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl knife cutting vegetables spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is this is a cooking guide doing?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is all the ingredient for the dish has been displayed in this video where some one doing?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl knife cutting vegetables spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9356\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"how many women are sitting?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women sitting in laughing hysterically?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"how many ladies are laughing about choking?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"what are two women talking in?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what are the two women laughing on?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"how many women are shown laughing together?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are talking?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women shared a laugh?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two ladies doing?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"how many women are laughing on camera?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is one woman starts doing?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"choke\"\n  },\n  {\n    \"question\": \"what are the two women doing?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are two woman doing?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is two women are shown doing?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many women are sitting in a classroom laughing hysterically?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who starts choking while talking to another woman?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are talking in a classroom?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what did the two women share?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who are laughing together?\",\n    \"video_name\": \"video9357\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a black chrysler sports car with a mans voice doing?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is in his black car?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a black car with black pain doing?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who surveys?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who describes the gullibility of consumers towards american cars?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the functions of a black car with custom decals?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what is on the road near the grass some stickers are pasted on the car?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who talks about the car that is in the video?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a black chrysler sports car with a mans voice talking about it s?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"conception\"\n  },\n  {\n    \"question\": \"what does a male speaker describe the functions of a black car with?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"custom\"\n  },\n  {\n    \"question\": \"what is a car on the road near the grass some stickers are pasted on?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is parked by some bushes and trees?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a shiny black sports car bear with the letter i and a heart?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"sticker\"\n  },\n  {\n    \"question\": \"who explains his opinion on consumers buying american cars?\",\n    \"video_name\": \"video9358\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs across the beach?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is walking in the sand?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a boy run across?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a person walking in?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what swim in a nature video?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is discussing a recent shark bite injury to a girl?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a beach scene doing?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is reporter doing?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is shark doing?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is there are different scenes of the ocean with someone doing?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is waves doing?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a man discussing bite injury to a girl?\",\n    \"video_name\": \"video9359\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"who was staring at a potato?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is holding morgan freeman?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is doing a skit?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who does everything the man?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"pewd\"\n  },\n  {\n    \"question\": \"what does pewds do?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"everything\"\n  },\n  {\n    \"question\": \"what is a animated character doing?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"skit\"\n  },\n  {\n    \"question\": \"what does a cartoon character holding morgan freemans?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what does a cartoon man holding morgan freeman s?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a man holding a cell phone in?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a man holding in a cartoon?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is holding a cell phone in a cartoon?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an animated man look at then morgan freeman s head?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is looking at his cell phone in a cartoon television show?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a potato that is actually morgan freeman?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does an animated dude stares at morgan freeman s?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what does a cartoon staring at a potato which is morgan freemans?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who looks at a phone then morgan freeman s head?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does everything in a cartoon animation?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"pewdiepie\"\n  },\n  {\n    \"question\": \"what was the character staring at?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what was the character doing?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is in a cartoon television show a man doing?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a pewdie pie cartoon of himself doing?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a cartoon person doing?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a cartoon man doing?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a comedy about a guy doing?\",\n    \"video_name\": \"video9360\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in green shirt putting on the red car?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a person place on the back of a red car?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"rack\"\n  },\n  {\n    \"question\": \"who is trying to put something on his red car?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person place on back of red car?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"rack\"\n  },\n  {\n    \"question\": \"what is a man installing a piece of on the back of a vehicle?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what is the person keeping on the car backside?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what do a man attaching a rack to an orange dodge?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who attaches a thing to the back of a car?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about how to apply a piece of equipment to the back of a truck?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who places a rack on back of red car?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who places a rack on the back of a red car?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man placing onto the back of and suv a man is latch a rack on a car?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what did a man demonstrating the assembly of putting a bike rack on?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"suv\"\n  },\n  {\n    \"question\": \"who is attaching a tool to the back of a red truck?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates how to attach a device to the rear of a car?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is placing a bike rack onto the back of and suv a man is latch a rack on a car?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a green collared shirt and green hat attach?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"rack\"\n  },\n  {\n    \"question\": \"what does additional fit in at the back to facilitate carrying luggage?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man in a green collared shirt and green hat stand beside?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is keeping one machine on the car backside?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man attaching to the back of a red truck?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"tool\"\n  },\n  {\n    \"question\": \"who is installing a piece of equipment on the back of a vehicle?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to use something on a car?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is man in green shirt doing?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is instruction video on doing?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"attach\"\n  },\n  {\n    \"question\": \"what is in a green shirt and gray hat doing?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"mount\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"attach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9361\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is chasing people down the street?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what is a bull doing?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are bulls doing?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is scenes of bulls doing?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what are people running from bulls in?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what hit a guys and others are running?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"what attacks people?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what is a bull running?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"muck\"\n  },\n  {\n    \"question\": \"what is running a muck?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what chases people around a street?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what is running over people?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"what is going to hunt the people?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"who do a cow chase?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what attacks people in a city?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what chase a guys?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"what is bulls run around doing?\",\n    \"video_name\": \"video9362\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what does a woman take from playing tennis?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"who sits down after a match?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who recovers from a game of tennis?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stabs monica seles?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a tennis player sit down after?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who is sitting down after making tennis?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a tennis player sitting in?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who engage in a match?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do some tennis players engage in?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a man stab?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"monica\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what break during a tennis match?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"tea\"\n  },\n  {\n    \"question\": \"who is sitting in a chair?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who takes a break from playing tennis?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman takes a break from doing?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a tennis player doing?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is some people doing?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is tennis player doing?\",\n    \"video_name\": \"video9363\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a white man in black shirt doing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who wears head phone?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a baseball cap and headphones sit at a desk playing on a computer?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what does a man wear?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is several people in a room with computers multiple monitors doing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man with large headphones on doing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a man in black doing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a boy with few computer screens together and with head phones doing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a news anchor describes a charity doing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is a man sits at a desk doing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man wears head phone and doing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man sitting at playing a game with a headset and microphone?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is sitting at his computer playing a game with a headset and microphone?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits at a desk looking at several large computer monitors while discussing donations he has received for his work?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man set in front a a group of different sized?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does a man set in a a group of different sized computer screens?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"who does a man in a baseball cap and headphones sit at a desk playing on a computer speaks?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what does several people in a room with computers multiple monitor playing?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who sits in front of a microphone and multiple computer screens?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sets in front a a group of different sized computer screens?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about the streamer house channel and how a baseball cap and headphones are making a living by playing video games?\",\n    \"video_name\": \"video9364\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a few lab workers doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doctors doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a scientist doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are a few male scientists talk about an experiment they doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"undertake\"\n  },\n  {\n    \"question\": \"what is a doctor doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are people doing experiments in?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is scientists doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a scientist demonstrating?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is demonstrating a machine?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what are the men in the lab doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are a few lab workers showing off?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who is explaining the voltage on a screen?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains what is shown on a screen?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what do a few male scientists talk about they are undertaking?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is two men in lab coats doing?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man explaining the voltage on?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a man explaining on a screen?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"voltage\"\n  },\n  {\n    \"question\": \"what are the men in the lab working on?\",\n    \"video_name\": \"video9365\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what are cartoon characters talking about?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"dehydration\"\n  },\n  {\n    \"question\": \"what does a young girl have?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"trouble\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who has trouble communicating?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are a cartoon man and girl having?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who explains the meaning of dehydrated?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who are talking about dehydration?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are a man and a young girl with a monkey having in a cartoon set in someone s home?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is trying to understand what dehydrated means on wordgirl?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a girl that is explaining dehydration to him?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do old man in cartoon doesn t understand?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"dehydration\"\n  },\n  {\n    \"question\": \"who explains something to a man with a beard?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a cartoon of a woman and man doing?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a girl and her monkey doing?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a young girl has trouble doing?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"communicate\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9366\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do two men play while the man in blue wins two points against the man in yellow?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what is a man in yellow dress playing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are two men playing ping competing at a tournament?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"how many players play table tennis in the tournament?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are surrounded by sponsor advertisements?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men play table tennis at a sponsored tournament?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are playing ping pong on a blue table?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a yellow and blue color dress players playing game inside tennis game audience watching displaying on screen?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"how many men are playing ping pong competing at a tournament?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men play at a sponsored tournament?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are two players playing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are two men surrounded by?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"sponsor\"\n  },\n  {\n    \"question\": \"what is a red tshirt boy playing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do two players play in the tournament?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do two players play table tennis in?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"tournament\"\n  },\n  {\n    \"question\": \"how many players are playing table tennis?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men playing on a blue table?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"what do two men wearing shorts play a game of?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many men play table tennis while the man in blue wins two points against the man in yellow?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men on a court playing ping?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"what is there is a man with yellow doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a man in yellow dress doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two players doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is players doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a superb parry of quick shots and doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is video of two chinese men doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a yellow and blue color dress players doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men on a court doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are two men doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a red tshirt boy doing?\",\n    \"video_name\": \"video9367\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who points to a a cilindrica object that he is holding that is black and silver?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person showing the part of?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is indicating a shoe hole of a part of a device?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explain about some product?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is displaying different gun parts?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains about a iron case and the shoulder that fits in the hole?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man having in the hand?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"who is explaining a technical utensil?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man holding an equipment machinery part in hand explayning displaying on?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who describes the casing of a piece of machinery?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates about the small motor uses to the video?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining the different options of a mechanical part?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing some kind of small device?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is presenting the functions of the black product for camera?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man having some product in?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is giving information about different gun parts?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is having some product in the hand?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person presenting the functions of the black product for?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a person showing some kind of?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"who is showing the part of engine?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is demonstrating?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone explaining?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what is a man displaying?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a male person explaining?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"utensil\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what do a man explain about?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what is a male person doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"indicate\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man points to a a cilindrica object that he doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"who is explaining an electronic device?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is this person doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who is showing what may be the aperture of a camera lens?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about a mechanical part?\",\n    \"video_name\": \"video9368\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are two men sitting on talking?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"how many men are sitting in a jail cell?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are sitting?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men sit?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men sit in a prison cell?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men speak together in a prison cell?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many man s are talking to each other?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are sitting on beds talking to each other?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men talk in a jail cell?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are sitting in a prison?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is trying to start conversation with another man in a small room?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people sitting in?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"prison\"\n  },\n  {\n    \"question\": \"what is two men in a small dark room doing?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many men are sitting on a bed talking?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are tow people doing?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video9369\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what do game play?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"footage\"\n  },\n  {\n    \"question\": \"what do game play footage of?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"who talk to each other?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are animated characters talking in?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does someone narrate?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what play footage of pokemon?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who provides commentary for an interactive role playing video game?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is pokemon characters doing?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a man provides commentary for an interactive role doing?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are animated characters doing?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is friends doing?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what does a man provide for an interactive role playing video game?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who narrates a pokemon game?\",\n    \"video_name\": \"video9370\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a car drive down the road on the side?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"countles\"\n  },\n  {\n    \"question\": \"who is driving a car down the street?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is moving items from one car to another?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a car drive down the road past countless trees on?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what driving on the road and a guy in a red sweater driving?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are people loading two vehicles in while a guy talks while driving down the road?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"how many surfers load up their surfing gear?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a male in a red shirt driving using only one hand than a couple of people start to load up a room in?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving at high speeds inside of the vehicle the inside of the vehicle is really unorganized?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men move cargo from a green van to a car then a man drives his car down the road?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is preparing to go surfing in south jersey talking about combo swells?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to the camera between shots of the road and time lapse video of men arranging things items in the back of a van?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many surfers talk about upcoming waves?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many vehicles are people loading in fast motion while a guy talks while driving down the road?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"where does a car drive down the road past countless trees?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what drives down the road past countless trees on the side?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man wearing a hat stars and another man in a yellow cap drives down a road then remodel?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what do two surfers load up?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what do a couple of people start to load up?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who talks while driving down the road?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is being turned into a living area?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what had a man made to relax after his tour trip or adventures trip as lonely?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do two men move from a green van to a car then a man drives his car down the road?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"cargo\"\n  },\n  {\n    \"question\": \"what is a man moving items from to another?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who had made his car to relax after his tour trip or adventures trip as lonely?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a ball cap help unload from into the other?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who talks about where he s driving to in his car?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a car driving on the road and a guy in a red sweater doing?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is in a car a male in a red shirt doing?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man talks about where he s doing?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is looks like a show that focuses on doing?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"pimp\"\n  },\n  {\n    \"question\": \"what is surfer doing?\",\n    \"video_name\": \"video9371\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a man barbequeing some patties on?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a person cooking meat patties on?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a person cooking burgers on?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a person grilling burgers on?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a person cooking on a grill?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is cooking hamburgers on a grill?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is grilling some burgers?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone cooking hamburgers on?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"who grills hamburgers?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are hamburgers being flipped on?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"who is grilling?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is some flipping burgers on?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"who is flipping some hamburgers on a grill while narrating?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is grilling burgers on a grill?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"barbeque\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"barbecue\"\n  },\n  {\n    \"question\": \"who is cooking burgers on a grill?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is some doing?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is hamburgers doing?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cooking meat patties on a grill?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is there are burgers doing?\",\n    \"video_name\": \"video9372\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking about some makeup item?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who then places some makeup item inside a purse?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting makeup into a bag?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about product lip balm?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is giving a review on makeup?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a woman then place inside a purse?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman putting into a bag?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman putting makeup into?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"what does a woman then place some makeup item inside?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"purse\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman giving?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what is a woman putting things in?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"purse\"\n  },\n  {\n    \"question\": \"who is doing make up?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is reviewing products?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman applying cream on?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"who is giving beauty tips?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing makeup?\",\n    \"video_name\": \"video9373\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining how to play a game?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man in black shirt talking about the game on?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there is a man in tshirt doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bold head guy in tshirt doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man in the video doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person with bald head doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a gentleman with facial hair doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is in front of a projector that doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man talking s?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"hearthstone\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what plays behind there?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is man in black shirt doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man videoing s?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"hearthstone\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about playing a game on his computer?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who has a mustache and talks while a game plays behind him?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"who s hearthstone game?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man in the video talking about?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is talking about the characters in the game he played?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in black shirt talking about on computer?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who reviews a video game for a television show?\",\n    \"video_name\": \"video9374\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many guys wrestle each other in a match?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are fighting?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"how many wrestlers grapple on a mat?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two guys wrestle each other in?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"how many wrestlers are fighting?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men wrestle in a wrestling match?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"who does wrestler jump over?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what do two wrestlers grapple on?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what do an amatuer wrestling?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"how many people are wrestling?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who jumps over his opponent?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"how many men are wrestling?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two boys doing?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is there are two men doing?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what match?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is an interesting scene of doing?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are a pair of wrestlers doing?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9375\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is happening?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what run?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are a group of horses racing on?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what do horses leap out of the gate in?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do horses leap out of in a race?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"gate\"\n  },\n  {\n    \"question\": \"what horse racing?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is going on in a race course?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are people racing horses on?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are a group of horses racing at?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is horse doing?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are some horses doing?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is video of people horse doing?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a group of horses doing?\",\n    \"video_name\": \"video9376\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man giving demo about?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who reviews an suv?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"cherokee\"\n  },\n  {\n    \"question\": \"who does a man walk away from?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"suv\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who does a man review?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"suv\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"what is being shown off?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"cherokee\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"interior\"\n  },\n  {\n    \"question\": \"what is reviewed?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man discussing a jeep s?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who walks away from an suv?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who describes the performance benefits of a jeep?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks next to a car in the wilderness?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a jeep cherokee?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man describe the performance benefits of?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"who discusses the jeep cherokee?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving demo about car?\",\n    \"video_name\": \"video9377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is talking while a cartoon cow sings?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"minnie\"\n  },\n  {\n    \"question\": \"who speaks to another cartoon character?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is talking to a disney cow character who is singing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"minnie\"\n  },\n  {\n    \"question\": \"what talks about how busy the day is with other disney characters?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"when does mickey mouse very happy singing with other cartoons playmates in the club house?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"today\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a cartoon in which mickey mouse and friends doing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a minnie mouse doing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cartoon mice doing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is minnie mouse and clarabelle doing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is minnie mouse doing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three man doing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what sings?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are dancing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"who are singing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what starts singing a song?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"what does a cow start singing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what play to kids?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is describing a car?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is three man describing?\",\n    \"video_name\": \"video9378\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who are talking each other?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people stand?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does a british man in a business suit with a blue shirt talk about including the structure of american businesses?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"who is talking with glasses and microphone coming off his head?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands with a microphone headset and talks to an audience about business?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the structure of ceos of america?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many other men are working with?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is bunch of people in suit and tie doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a british man in a business suit with a blue shirt talks about business doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is three men in suits doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is three older men in suits doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bald man in a suit doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three people doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are three man doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with head mike doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three people stand and a man with eyeglasses and microphone doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bald guy in suit doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a old suit man doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is an older man doing?\",\n    \"video_name\": \"video9379\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person is on a show doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a tv talk show a lady doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a tv show of a man doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a spanish tv show with the host doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a person seems to be doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"who is on a show talking to an audience member?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"compare\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do a tv talk show a lady is asking to the anchor?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"question\"\n  },\n  {\n    \"question\": \"what does a man talk on a show with?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"sound\"\n  },\n  {\n    \"question\": \"what is a man hosting?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man talking to?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a man speaking to?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is hosting a talk show?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to an audience?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking comments?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking to a crowd?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fields questions from the audience?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person on talking to an audience member?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk on with no sound?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking to an audience member in a talk show?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who seems to be answering questions from an audience?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking to an audience member on a show?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a woman from the audience?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a woman in the audience?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks on a show with no sound?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what show a lady is asking some question to the anchor?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who do a tv talk show is asking some question to the anchor?\",\n    \"video_name\": \"video9380\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is added to a picture of an alpaca?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what generated video of a talking lama is played?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a lion looking?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who does alpaca speak in chipmunk voice to introduce as nutter butter?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"who has dubbed a voice over the alpaca as if it was the one talking?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do an alpaca name nutter butter saying to come visit?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what s being shown on the screen along with its moving lips?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what has a person dubbed over the alpaca as if it was the one talking?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is the big brown animal recording itself with?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what has a person dubbed a voice over as if it was the one talking?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what is talking in a funny voice?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"who is talking in a kid cartoon voice to the camera?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"lama\"\n  },\n  {\n    \"question\": \"what nutter butter saying to come visit kuska alpaca farms?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what is the brown animal looking straight in?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is moving its facial muscles?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"fluffy\"\n  },\n  {\n    \"question\": \"what is looking straight in the camera?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is moving its mouth?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"alpaca\"\n  },\n  {\n    \"question\": \"what is an animal nutter butter giving?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"introduction\"\n  },\n  {\n    \"question\": \"what is looking its face?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what is an alpaca moving?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"what does lama photo s being shown on along with its moving lips?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is there is a funny video of a goat doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is an alpaca doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lion doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is an alpaca doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is an animal nutter butter doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a computer generated video of a doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a animal doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the big brown animal doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is this appolusa lama doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a fluffy animal doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is the brown animal doing?\",\n    \"video_name\": \"video9381\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who performs long jump in black shorts on a red track?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who races down a track and leaps into the sand?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is running on the track to do the long jump?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who takes a long run to jump into the pit?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"sportswoman\"\n  },\n  {\n    \"question\": \"when does the sportswoman take to jump into the pit?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"who is running down a track and landing into a pit of sand?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do the running race game and racers in the ground start?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is person in white shirt jumping on?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman running on?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what does a female athlete run down?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who runs down a long track?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who is running on the track?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who long jumps into a sand pit?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who is taking a timed practice run?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"runner\"\n  },\n  {\n    \"question\": \"what is a man running on to do the long jump?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what does the sportswoman take a long run to jump into?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"pit\"\n  },\n  {\n    \"question\": \"what do the man in the white shirt jump in?\",\n    \"video_name\": \"video9382\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"who does a woman sitting on a bed speak to?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what was the girl talking on?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"how many women are talking?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women talking in?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are two women having?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what does a youtube channel called watchmojo count down?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"list\"\n  },\n  {\n    \"question\": \"what did a hollywood?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"how many women are fighting?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking on the phone?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who was talking on the phone?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"slap\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what was the girl doing?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there are several women doing?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"converse\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"who talks on the phone before being interrupted?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many women are talking in a room?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a girl talk on before being interrupted?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"how many women are having a conversation?\",\n    \"video_name\": \"video9383\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when is a man dancing?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what plays for a crowd?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a rock band perform before?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does large crowd attend?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what does a band play for?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what concert?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what performs before an audience?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is performing live on stage?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a rock band playing for?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is playing for a concert?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what goes wild at a rock show?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does a rock band perform onstage at while the audience cheers and claps?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"when does a band perform to a large crowd?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what performs on stage to a large crowd?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is performing on stage for an audience?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what performs onstage at a concert while the audience cheers and claps?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what attends live concert?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is dancing in a stage?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is taking place with a large audience?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a hard-rock band doing?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a musicians doing?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a rock band doing?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is there is a band doing?\",\n    \"video_name\": \"video9384\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who does a woman in a black shall sing into?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"soul\"\n  },\n  {\n    \"question\": \"who is talking with white color hair?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is wearing black color dres?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does the woman wearing the black dress sing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do a girl in black dress color cloth speaking standing folding hands to body and boy in blue dress displaying on?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is standing on stage?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a model girl with beautiful typical curling hair improvise?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is a woman in black with short blonde hair and heavy make up talking about in a very casual way?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"when is a woman standing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is lady gaga doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a woman with white color hair doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is she is an artist she might be doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is a blond-haired woman doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman in black with short blonde hair and heavy make up doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is a lady wearing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is women bushy hair doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl in black dress color cloth doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a model girl with beautiful typical doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"curl\"\n  },\n  {\n    \"question\": \"what is a white young lady with big blonde hair doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a video about doing?\",\n    \"video_name\": \"video9385\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"who plays guitar on a talent show?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"talent\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"who do others watch?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"when is a woman singing?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a girl performing?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a young girl play?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing guitar and singing?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a audition of a singer on a show call?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is performing on a stage?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings on a competition show?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who impressed the judges?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young girl sing on while others watch and commentate?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who sings whitney houston?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does young girl play on stage?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when does young girl play guitar?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who plays guitar on stage?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings on stage in front of an audience?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings a whitney houston song while performing on the voice?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a girl sings a whitney houston song while doing?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who sings on television while others watch and commentate?\",\n    \"video_name\": \"video9386\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who opens a toy egg?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who opens toy egg?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with princess dolls?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young girl open with a doll in it?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who is opening an egg?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays with dolls?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who opens a plastic egg?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with dolls?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is little girl playing with?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"princes\"\n  },\n  {\n    \"question\": \"what does little girl open?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a young girl open?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"who is opening a big plastic egg?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who opens an easter egg?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with toys?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a little girl open an egg full of?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what is little girl doing?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is child doing?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who opens an egg with a doll in it?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who opens an egg full of stuff?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9387\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do a man in a car show?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who gets into a black car?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting in a car?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man sitting in?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who switches cars in his garage?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man switch cars in?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is showing cars in graphics?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"choose\"\n  },\n  {\n    \"question\": \"what is a video simulation of a man doing?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is in his garage on grand theft auto?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filming himself playing a video game involving fancy cars?\",\n    \"video_name\": \"video9388\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do smart phone app?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man using apps on?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who demonstrates his smart phone?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what app review?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who does a man explain?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"smartphone\"\n  },\n  {\n    \"question\": \"who searches through the app store?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man using on his phone?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"app\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man demonstrate?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"smart\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is scrolling the screen of his cellphone and talks about different mobile applications?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to download his app from the google playstore?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reviewing various features of applications on his smartphone?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who reviews apps on a cell phone?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talking about how to find good apps for?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"download\"\n  },\n  {\n    \"question\": \"who is using apps on his phone?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains smartphone apps?\",\n    \"video_name\": \"video9389\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"tag\"\n  },\n  {\n    \"question\": \"what is a person tying?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"knot\"\n  },\n  {\n    \"question\": \"what does guy make?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"knot\"\n  },\n  {\n    \"question\": \"what does a person prepare?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what a man threads?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"lure\"\n  },\n  {\n    \"question\": \"who is making a tag?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person doing something with?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"who makes a knot?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a person doing with wire?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is tying a knot?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who threads a lure?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who prepares some fishing wire?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing something with wire?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is demonstrating how to tie some fishing flies?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone tying a knot with?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"what is someone tying with fishing line?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"knot\"\n  },\n  {\n    \"question\": \"who is tying a knot with fishing line?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is demonstrating how to tie a knot in fishing line?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who know?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is an instructional video on doing?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9390\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is several women doing?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a model doing?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is presenting the ad of bra?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do the fashion show for?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"gilr\"\n  },\n  {\n    \"question\": \"what does an advertisement for ladies sport?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"brazier\"\n  },\n  {\n    \"question\": \"what is a model presenting the ad of?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"bra\"\n  },\n  {\n    \"question\": \"what show for gilrs?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9391\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"how many men is explaning the terminoater movie and the hero arnaldo?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"when is a guy with a black coat and shades talking about the movie terminator 2?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"judgement\"\n  },\n  {\n    \"question\": \"who is giving a review of the terminator 2 movie?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who recaps events and characters from terminator 2?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reviewing the movie terminator part 2?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was a movie terminator two beard explaining about?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"somemovie\"\n  },\n  {\n    \"question\": \"what is a guy with a black coat and shades doing?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is teeling a new about a movie?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in sunglasses discuss?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a movie terminator two was displayed and then a man with black dress and beard doing?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in a jacket doing?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man recap events and characters from?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"terminator\"\n  },\n  {\n    \"question\": \"what is bearded guy in shades and jacket doing?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man holds an orb in front of a square-paneled wall with an open cube which doing?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"extend\"\n  },\n  {\n    \"question\": \"what is man in black coat and dark glasses is busy doing?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in doing?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"cool\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9392\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is jumping up a washing machine?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what are playing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is jumping onto furniture?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is recording cat video?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a cat jumping up?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"washing\"\n  },\n  {\n    \"question\": \"who is petting a cat?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a cat jumping onto?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"furniture\"\n  },\n  {\n    \"question\": \"what is on a table?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat on?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is being caressed?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a person recording?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person petting?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is standing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is an english girl doing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what are a cats doing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9393\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what a boy into an airplane?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone for paper craft?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who makes something out of paper?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a boy folding paper into?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what work by a man using paper?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what a man folding paper into?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what a man folding into a plane?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a paper airplane?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone folding a paper for?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a paper for paper craft?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are two hands folding a piece of?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is craft work by a man doing?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who folding paper into a plane?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what are two hands doing?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who demonstrates how to fold the wings of a paper airplane?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"how many hands are folding a piece of paper?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is someone?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who demonstrates how to make a paper airplane?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is showing how to make a paper airplane?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what does a person make something out of?\",\n    \"video_name\": \"video9394\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a group of students doing?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is a student texting with?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a woman using?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what does a man point out that collaboration is needed in today s hi?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"when does a man point out that collaboration is needed in s hi technology world?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"today\"\n  },\n  {\n    \"question\": \"who discusses technology in the younger generations?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a phone?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who points out that collaboration is needed in today s hi technology world?\",\n    \"video_name\": \"video9395\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what pulls up near one another?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what are assecending the place?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is shown for kids?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what go the race?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is this video shows lego versions of characters from the cars movie doing?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a lego set doing?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a mac truck a race car and a tow truck doing?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are three lego toy cars from the movie cars doing?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is a game video of cars doing?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a pixar cars toy collector makes a stop animation of cars doing?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what drive up to the cars?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what are a mac truck a race car and a tow truck standing in a line are moving?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what do macks team truck go?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a mac truck a race car and a tow truck standing in lego cars are moving?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what shows lego versions of characters from the cars movie driving around with honking sound effects?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what pause then a red firetuck toy and a collection of like toys?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"blank\"\n  },\n  {\n    \"question\": \"what are macks team truck assecending?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is being filmed by a human being?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what are start with different horns speadly?\",\n    \"video_name\": \"video9396\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an man doing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two guitarists doing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an older man doing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who plays good?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two people playing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does the man play?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is an man playing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy play?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man telling?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is telling a story?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to another man while playing the guitar?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wants to jam with billy since he plays good?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows someone a guitar chord?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are playing guitar?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men talking guitar?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men playing guitar?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an electric guitar?\",\n    \"video_name\": \"video9397\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is football player with doing?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is a football player doing?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is an athletic doing?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who dances while wired up to motion capture technology?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man dancing on?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what do marshawn lynch on?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"who is dancing while others watch his skeleton as he moves?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing on a field?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who moves?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what dances around?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"where is a man dancing?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who has motion sensors attached to them?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"athlete\"\n  },\n  {\n    \"question\": \"who is attached to sensors and dances in front of the screen to watch himself?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is wired so all his moves go to a computer?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"athelete\"\n  },\n  {\n    \"question\": \"who lynch on sports science?\",\n    \"video_name\": \"video9398\",\n    \"answer\": \"marshawn\"\n  },\n  {\n    \"question\": \"what is there is a men doing?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is in a kitchenthere is a man doing?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who is talking about a indian shrimp recipie with vegetables?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is some soup in a bowl doing?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who tells about the receipe in the kitchen show?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is filming a pile of food on a plate?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is placed in a bowl kept in table?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who narrates over a cooking tutorial video?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who preparing food in a kitchenthere?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone filming a pile of food on?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is someone filming a pile of on a plate?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is being shown on?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and showing the ingredients for?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what do a man prepare in a kitchenthere?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a lady cooking?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who does a plate with a food dish that have?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what do a man prepare food in?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"kitchenthere\"\n  },\n  {\n    \"question\": \"who is cooking a recipe?\",\n    \"video_name\": \"video9399\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two anime s doing?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is freddy doing?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a video game character bursts into flame before doing?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"shove\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is freddy kreuger doing?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what did mortal kombat?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"fatality\"\n  },\n  {\n    \"question\": \"how many cartoon characters fight together?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a freddy kruger?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who does a video game character kill?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"who attacks another?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who does freddy krueger eviscerate?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what cut scene?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"fighting\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who fight together?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many anime s are fighting with each other?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who performs a fatality in mortal kombat?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"krueger\"\n  },\n  {\n    \"question\": \"what did a fighting game cut?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is performing a fatality in the game?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"freddy\"\n  },\n  {\n    \"question\": \"what kruger video game?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"freddy\"\n  },\n  {\n    \"question\": \"what does a video game character burst into before dragging another down to hell?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"flame\"\n  },\n  {\n    \"question\": \"what is freddy performing in the game?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"fatality\"\n  },\n  {\n    \"question\": \"what is freddy performing a fatality in?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who eviscerates his opponent?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"krueger\"\n  },\n  {\n    \"question\": \"what kreuger performing a fatality in mortal kombat 9?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"freddy\"\n  },\n  {\n    \"question\": \"who kombat violent fatality scene?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"mortal\"\n  },\n  {\n    \"question\": \"what do freddy kreuger performing in mortal kombat 9?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"fatality\"\n  },\n  {\n    \"question\": \"what does a video game character burst into before shoving its claws into another?\",\n    \"video_name\": \"video9400\",\n    \"answer\": \"flame\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"seal\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is making paper art?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who folds a paper airplane on a table?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person fold on a table?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a person fold a paper airplane on?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what a person folding up a piece of?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folding up a piece of paper?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing paper art?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person doing with paper?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person doing something with?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person creating origami from?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone talking?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is talking and folding paper?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person creating from paper?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"who is creating origami from paper?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing something with paper?\",\n    \"video_name\": \"video9401\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is rubbing his forehead while a baby sleeps with him?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a red shirt laying in bed realize the little baby is in beside him?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a man in red laying in?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is a baby laying next to?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"dad\"\n  },\n  {\n    \"question\": \"who does a man in a red shirt laying in bed realize is in bed beside him?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is the baby having nice time with his father on?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are the father and baby infatnts on the bed?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what are the father and baby infatnts sleep on?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a baby laying beside a man in?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is playing a with his kids by shouting?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lying on the bed with his small baby?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man in a red shirt who has just awoken startled by sleeping next to him?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is laying next to the dad?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a man in red scared by a baby to that he did not expect?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"who sleeps with the man?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are a man and a baby asleep in inside?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who does a baby sleep with?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man in red scared by to his left that he did not expect?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a man laying in?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who laughs?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who awakes?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a baby hugging?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"who is playing a with his kids by looking him suddenly?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is a man in red scared by a baby that he did not expect?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"left\"\n  },\n  {\n    \"question\": \"what is a man rubbing while a baby sleeps with him?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"forehead\"\n  },\n  {\n    \"question\": \"what did a man and a baby lie down on?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is laying in a bed?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a very tired looking man crawl into?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is man lying on with his small baby?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is a baby laying beside in the bed?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is laying beside a man in the bed?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a man with a pillow sleeping with?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man in red doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man in a red shirt who has just awoken is startled by a baby doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"who does a baby wake up in a funny way?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"dad\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a very tired doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is here the man doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is home video of a a baby doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"scar\"\n  },\n  {\n    \"question\": \"what is a man with a pillow doing?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"who did a baby wake up from a long nap?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"who wakes the dad up in a funny way?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is having nice time with his father on the bed?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who waking the father up from a long nap?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who rolls over to snuggle with the man which surprises the man?\",\n    \"video_name\": \"video9402\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a man in brown coat doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who describes characters in certain disney movies?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"gentleman\"\n  },\n  {\n    \"question\": \"what holds hands with prince charming in the woods?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what is showing a film of sleeping beauty and peter pan?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a suit man doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is it doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cute lady doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is i see a prince doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is an older man discusses the work he did on the doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is an older man talks about the disney movies doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is an older man talks about the movies doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a man talking about the work he has performed with certain animation characters such as peter sleeping?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"who is a man talking about the work he has performed with certain animation characters such as peter?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what review about lovable disney classics?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is talking about the work he has performed with certain animation characters such as peter pan?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about the work he has performed with certain animation characters such as peter?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"what does a man describe while the cartoons play?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what does an animated man and woman having a romantic conversation as peter pan chase?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"what are moving around an area?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are some cartoon characters moving around?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what is brown coat sitting a cartoon?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"sight\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"who talks while cartoons play on the screen?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with man?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"cute\"\n  },\n  {\n    \"question\": \"who is a cute lady talking with?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man touching?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do cartoons play on?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is touching a girl hand?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the work he did on the sleeping beauty and peter pan animated films?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who a man in brown coat sitting a cartoon dolls catching hand and opening drawaer jumping hiding displaying on screen?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about the work he has performed with certain animation characters such as peter sleeping beauty?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes various disney cartoons while the cartoons play?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an older man discuss he did on the sleeping beauty and peter pan animated films?\",\n    \"video_name\": \"video9403\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"protest\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"chant\"\n  },\n  {\n    \"question\": \"what is the man talks about woman doing?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"want\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a crowd of people doing?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is talking in a room in the first part while in the second part a woman is talking to a crowd?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a lady talk into?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"megaphone\"\n  },\n  {\n    \"question\": \"who is talking in the kitchen?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks into a megaphone?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman talking to in the second part?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a woman speaking with in front of some people?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"megaphone\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about woman wanting birthing rights?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking with a megaphone in front of some people?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to a crowd with a megaphone?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks and a group of women protest?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of people protesting for?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"birth\"\n  },\n  {\n    \"question\": \"who is talking to a crowd in the second part?\",\n    \"video_name\": \"video9404\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is this is a video doing?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the big balloons in red color doing?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"release\"\n  },\n  {\n    \"question\": \"what is red balloons doing?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a citywide celebration doing?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what do red balloons float in?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what do red balloons with small red boxes tied to the people of the city drop into?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what floats around?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"balloon\"\n  },\n  {\n    \"question\": \"what did people gather in a releases balloons in the air?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"where did people gather a releases balloons in the air?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what do some people have in the street while a balloon floats around?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what are watching the red balloons in the sky?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are the big balloons in red color flying high in?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what do some people have fun in while a balloon floats around?\",\n    \"video_name\": \"video9405\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is today crucial for?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what do the people walk in?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who glasses talking?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a distinguished doing?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man in glasses doing?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a black suit doing?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in glasses doing?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a old man wears specs doing?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a black suit man doing?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old man wearing?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"spectacle\"\n  },\n  {\n    \"question\": \"what is a white man in a suit and glasses doing?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"when is crucial for the world?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"today\"\n  },\n  {\n    \"question\": \"who explains about sustainable development in a tv channel?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man wear with glass in his eyes explain about something very interestingly?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who starts to give an explanation of sustainable development with how crowded the world is today?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wears specs talking about something to media?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the crucial topic of sustainable development?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person in suit is seated and doing?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does the man wearing the suit and eye glass as the people walk in the group?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is telliing some thing in the above scene?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who glasses speaking about sustainable developmet?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man start to give an explanation of with how crowded the world is today?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"development\"\n  },\n  {\n    \"question\": \"what does a white man in a suit and glass talking about?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"development\"\n  },\n  {\n    \"question\": \"who does a man in glass speaking about?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"developmet\"\n  },\n  {\n    \"question\": \"who weared black dress with glass in his eyes explain about something very interestingly?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wearing a spectacle?\",\n    \"video_name\": \"video9406\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a pink horse doing?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what play footage of sims?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a beautiful horse shown in?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who is talking about sims pets?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing with a red dog?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who talks about pets in a simulator?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing the sims games?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do game play?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"footage\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is talking about the pets in video games?\",\n    \"video_name\": \"video9407\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person recording?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what are three reporters doing?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"photoshop\"\n  },\n  {\n    \"question\": \"what do a tutorial on?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is on photoshop?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is the tutorial on?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"photoshop\"\n  },\n  {\n    \"question\": \"who is doing a photoshop tutorial?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who shows how to edit a photo?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is explaining how to use photoshop?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is editing a photo on a computer?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is narrating a video that explains how to use a certain photo editing program?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a tutorial of an image editor?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many reporters are interviewing a man?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who are three reporters interviewing?\",\n    \"video_name\": \"video9408\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is soup with shrimp and vegetables shown in?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is prepare the food?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a man explain prepare?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is being shown in a bowl?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"salada\"\n  },\n  {\n    \"question\": \"what is displayed in the white bowl?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man how prepare?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is some salada being shown in?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what are delicious ingredients mixed together in?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"prawn\"\n  },\n  {\n    \"question\": \"who shows off thier fried prawns dish?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is presenting the recipe for making a salad?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make singapore prawn noodles soup?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9409\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is explaining how to use an application on an ipad?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone using?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"ipad\"\n  },\n  {\n    \"question\": \"who is person describing?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"app\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is describing a app?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is using an ipad?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man talking about easy command on?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is teaching how to use an application?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a person talking about a ipad?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"who is explaining how to use applications on an ipad?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at folders?\",\n    \"video_name\": \"video9410\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is solving a rubix cube?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person solving s cube?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"rubik\"\n  },\n  {\n    \"question\": \"what is a person solving a rubik s?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is a person setting?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a child discussing?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"rubik\"\n  },\n  {\n    \"question\": \"what is playing game?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is setting the cube?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person attempt to solve?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"rubix\"\n  },\n  {\n    \"question\": \"what does someone solving a rubik s?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who plays with a rubix cube?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who attempts to solve a rubix cube?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is discussing a rubik cube?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a close-up of somebody doing?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who is solving a rubik s cube?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person solving the rubik s?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9411\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what does a woman coughs and laughs and then talk to?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a girl talking on?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"webcam\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking to the camera?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman speaking to?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is nicole guerriero video from her youtube video doing?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is female shown here doing?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a woman talks about her doing?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9412\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a blue color dress cloth boy displaying on?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is standing in a boat which is on dry land he is discussing ways to make money with the boat?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what dress cloth boy displaying on screen?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who do a blue color dress displaying on screen?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do a man in blue shirt and royal blue shorts in a boat go to take in sea?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"ride\"\n  },\n  {\n    \"question\": \"who makes an investment for the future by purchasing an old boat with ideas of remodeling it?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"jerry\"\n  },\n  {\n    \"question\": \"what is a guy in a light blue shirt standing in?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who do a blue color dress wearing standing speaking inside boat?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who named jerry standing in a small boat on a dry lake bed?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what dress cloth boy wearing standing speaking inside boat?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what do a person wearing a t shirt with cap standing on?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is person in blue shirt staying on?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a guy in a light blue shirt doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in a white hat and blue tank top stands on a small boat on the shore doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a blue color dress cloth boy doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is person in blue shirt doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in blue t shirt doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy named jerry doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is guy in small crappy boat doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"pitch\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt and shorts has bought his boat and doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"invite\"\n  },\n  {\n    \"question\": \"what is a man named jerry doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the man with blue t-shirt and white cap in doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the men doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a man in blue doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a light blue tank top standing in a boat that is on a concerete surface doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt and royal blue shorts in a boat doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is jerry makes an investment for the future by doing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"purchase\"\n  },\n  {\n    \"question\": \"what is the men telling?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what do a man in blue shirt and royal blue shorts in a boat go to take a ride in?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is person in blue shirt wearing?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"who named jerry presenting his own boat which he made?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what has a man in blue shirt and shorts bought?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt and royal blue shorts in a boat talking about?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"investment\"\n  },\n  {\n    \"question\": \"what is a man in blue dress on?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is the men standing in?\",\n    \"video_name\": \"video9413\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is diana madison doing?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are two woman doing?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two woman s doing?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is whitney port doing?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is diana madison interviewing?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"designer\"\n  },\n  {\n    \"question\": \"who are talking to each other on a show?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women talk on a talk show?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are talking on a show?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two woman talking to each other on?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are talking to eachother?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many woman s are sitting?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is talking to a television host?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"whitney\"\n  },\n  {\n    \"question\": \"who is interviewing designer whitney port?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"madison\"\n  },\n  {\n    \"question\": \"who is being interviewed for tv?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is interviewing another woman?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what speaks on a talk show?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"whitney\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many woman s are talking to eachother?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman interviewing?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do women talk on?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"panel\"\n  },\n  {\n    \"question\": \"what are two women talking on?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are sitting?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9414\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking to a baby goat?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a baby goat doing?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a baby goat held up in?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is someone holding a goat in?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is someone holding in hand?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what did a baby goat getting?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a baby lamb being held in?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"who goat getting a bath?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is holding a goat in hand?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is holding an animal in his hands?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is giving a baby goat who is calling out a bath?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is held up in the air?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is being held in a bathroom?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is crying?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is being displayed?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is being bathed?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a person holding?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what looks very upset at being held?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a baby goat getting?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who goat bleating?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does little deer squeak in?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"who is holding a baby goat?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a billy goat?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what squeaks in the bathroom?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what is someone holding in his hands?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is getting a bath?\",\n    \"video_name\": \"video9415\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a brown horse prance happily around?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what runs around?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what bucks?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what jumps?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is jumping around?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what do single hourse doing?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what runs in a?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what frolics joyously in its corral?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman watching jumping around?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a brown horse jump up and down in?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"excitement\"\n  },\n  {\n    \"question\": \"what are the animated characters doing?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a brown horse with white doing?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is here the women in this video doing?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"understand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what buck in the fenced area?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who stands by the edge of a corral in which a horse runs?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what corral with a metal fence?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is recording the brown horse which is having fun?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man talking about a horse that jumping around in?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"excitement\"\n  },\n  {\n    \"question\": \"what jumps up and down in excitement?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is watching a brown horse jumping around?\",\n    \"video_name\": \"video9416\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are walking?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are underwater?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"muppet\"\n  },\n  {\n    \"question\": \"who talk to one another?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is on the theater screen?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what show for kids?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is the cartoon for kids?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are a group of animated characters floating in?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who play on screen in an empty theater?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"muppet\"\n  },\n  {\n    \"question\": \"what are a group of animated characters doing?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is muppet babies doing?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of cartoon babies doing?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are cartoon heroes doing?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is muppet babies cartoon doing?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are animals are dressed and doing?\",\n    \"video_name\": \"video9417\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who talks about his feelings on cutting trees in a rain forest?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what does a man talking about losing the rainforest and the earth s?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"climate\"\n  },\n  {\n    \"question\": \"what is a person with black coat explaining?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man in a suit and a long tie talk in front of floor to?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is a man with a suit talking in?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a suit and tie doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person with black coat doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is an educated doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in black suit doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is shown to give the importance of bio diversity in a rain forest?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"aviation\"\n  },\n  {\n    \"question\": \"what is a scientist talks about his feelings on doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is birds doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a guy with glasses doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who speak to tv programm for visionaries inside the creative mino?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking some thing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man in the black suit doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man with a suit doing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is wearing a spectacle?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video9418\",\n    \"answer\": \"spectacle\"\n  },\n  {\n    \"question\": \"what is a girl talking to?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"webcam\"\n  },\n  {\n    \"question\": \"what does the girl hold up?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what does a woman talk directly to?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman speaks in spanish doing?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl talking about?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what does a female speak about?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"froot\"\n  },\n  {\n    \"question\": \"who speaks in spanish holding up a box of fruit loops cereal?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about fruit loops cereal?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a girl talk about?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what speaks about froot loops?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who talks about fruit loops?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking to a webcam?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking in the living room?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who holds up the fruit loops?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about a product?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks directly to the camera?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what froot loops?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"advertising\"\n  },\n  {\n    \"question\": \"what is a women showing?\",\n    \"video_name\": \"video9419\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what are a group of young men doing?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who are two men fighting?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who then gets?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman getting up?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"who do two guys attack?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is getting beat up?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who throws a ball at a woman s head?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men fight a woman who yelled at them?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man throw a ball at a woman s?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who yells at kids?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"how many guys attack a woman playfully?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are fighting a woman?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who beat up by two older kids?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who berades the young men?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is yelling at boys?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is blonde?\",\n    \"video_name\": \"video9420\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many children sing hallelujah on the voice?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many kids are singing on stage?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are three teenagers singing before a live audience?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"how many girls sing on stage?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings hallelujah on stage?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is singer doing?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who performs on a talent show?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who sings in front of a live audience and panel of judges?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many girls are singing a song in a stage?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many teenagers are singing a religious song before a live audience?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when are three kids singing?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does girl sing?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"hallelujah\"\n  },\n  {\n    \"question\": \"what do three children sing hallelujah on?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"when do three girls sing?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is performing at the stage?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"how many youngsters perform on stage?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when did the three performers sing?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do three youngsters perform?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when does a girl sing?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many performers sang on stage?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when is singer performing?\",\n    \"video_name\": \"video9421\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is barack obama doing?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is barack obama doing?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is barrack obama doing?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is obama doing?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is president obama doing?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who gives a speech about change to a crowd?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"who is making a speech outside?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"barack\"\n  },\n  {\n    \"question\": \"what does barack obama give?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is barack obama telling?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who addresses the nation?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what does president obama address?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"nation\"\n  },\n  {\n    \"question\": \"what is president obama speaking at?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"who is speaking at a podium?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what does obama give?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who is making a speech?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"what is obama making?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is obama giving?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what gives a speech?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"barack\"\n  },\n  {\n    \"question\": \"what is telling something?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"barack\"\n  },\n  {\n    \"question\": \"what does obama give a speech about to a crowd?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what does president obama give?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is barack obama making outside?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"who gives a speech?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"what does obama give a speech about change to?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is speaking in front of the public?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"who talks about historic events?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"obama\"\n  },\n  {\n    \"question\": \"what is a man wearing a suit giving?\",\n    \"video_name\": \"video9422\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what does a young man in india working with a group called animal aid find beside a busy street?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is helping to the small dog on a street?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what rescue an injured dog from the side of the road?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"who is attending a dog lying on the street?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rescues an injured dog after explosion?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picks a dog laying on the side of the road?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picks up a dog that s laying on the ground?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who picks a dog up a dog is dying on the side of a busy road?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is man in black shirt with black hair doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"attend\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a person picks up a dog that s doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who gently picks up a small dog from the side of the road?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man in india doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is man on side of street picks up a wounded and doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"die\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is a man picks a dog doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what was young man from animal aid rescues street dog who doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"die\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"die\"\n  },\n  {\n    \"question\": \"what is laying in the road side and a man pick it to van?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a man pick up a dog is dying on the side of a busy road?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is lying down in the street?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dying dog lying down in?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what did a man picking injure from street?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what did a man picking injure dog from?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a man rescue after explosion?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a young man take a dog to rescue?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"who injured dog from street?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man gently pick up from the side of the road?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is helping out a dog that is injured and sick and almost dead?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man rescue an injured dog after?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"explosion\"\n  },\n  {\n    \"question\": \"what does a man pick a dog up is dying on the side of a busy road?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who takes a dog to rescue van?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man attending lying on the street?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what do animal aid rescue from the side of the road?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a young man take to rescue van?\",\n    \"video_name\": \"video9423\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who are talking to one another?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a contestant doing?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man on stage doing?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a show with a man on a stage and judges doing?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are show hosts doing?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video of a man on stage doing?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is performing onstage?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what program where a man performs for judges?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"reality\"\n  },\n  {\n    \"question\": \"who is getting judged by a panel of judges?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is making laughing others?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man talking to a group of people?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is talking to a group of people on a stage?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who amuses the judges of a talent show?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a show with on a stage and judges watching and laughing?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are a group of people judging?\",\n    \"video_name\": \"video9424\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is people at a news station doing?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what are newscasters doing?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is a weather woman doing?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a very hyper man doing?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of comedians doing?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a female doing?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do people talk about?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"money\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who jump and yell?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what do the live show for?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what do some people fool around on?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what are newscasters yelling?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who yells a weather woman is talking about going for a run?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"anchorman\"\n  },\n  {\n    \"question\": \"what is turning over a broadcast to another member of the team?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who does the anchorman yell then leaves then?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"weather\"\n  },\n  {\n    \"question\": \"who does the anchorman yell is talking about going for a run?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"weather\"\n  },\n  {\n    \"question\": \"what is a man doing with a chair stuck on him?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"newscast\"\n  },\n  {\n    \"question\": \"who yells a weather woman then leaves then?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"anchorman\"\n  },\n  {\n    \"question\": \"what is a female turning over to another member of the team?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"broadcast\"\n  },\n  {\n    \"question\": \"what do a group of comedians performing on a tv live?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is doing a newscast with a chair stuck on him?\",\n    \"video_name\": \"video9425\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man and a woman discuss?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"relationship\"\n  },\n  {\n    \"question\": \"what is a man not doing?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women in blue dress doing?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is couple of people doing?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a women in blue shirt doing?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what was the young man doing?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"console\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are a man in a white muscle shirt and a woman in a light green shirt doing?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what are scene from a tv show where couples doing?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is there is a women and a men doing?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman talking in?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who was the young man consoling?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who was consoling the young woman?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a women in blue shirt fighting with?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows a man and woman reunited?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do a man and a woman finish with a hug?\",\n    \"video_name\": \"video9426\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are parts going by on?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what does a man describe?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"activity\"\n  },\n  {\n    \"question\": \"what is small part put in?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is put in the machine?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"part\"\n  },\n  {\n    \"question\": \"who describes the activity?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting some things together?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a worker in a factory doing?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man inside laboratory doing?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"plug\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is an old video doing?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a man putting some metal things in to?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what are small switches being placed onto while a man describes the activity?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who operates a machine in an assembly line?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does complicated maneuvers on a machine?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting some metal things in to a machine?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a worker in a factory placing fuses into?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what do the parts of precision instruments require by microscope?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"inspection\"\n  },\n  {\n    \"question\": \"who places the parts in to the machine?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man place small electronic parts into then another person inspects small electronic parts?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is someone placing parts into while they are going by on a machine?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"switch\"\n  },\n  {\n    \"question\": \"who is doing a experiment in the lab?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing a experiment in?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"what is a man doing in the lab?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what does a man operate in an assembly line?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what does a man inside laboratory pluging pin into displaying on screen?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what did an old video discussing the advancements bring about by the ferret?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"switch\"\n  },\n  {\n    \"question\": \"who is doing some tricks with his new machine?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the parts of precision instruments require inspection by?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"microscope\"\n  },\n  {\n    \"question\": \"who places small electronic parts into a machine then another person inspects small electronic parts?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who places a small pin size bulb in a holder and another person checks for any defective?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is placing parts into a switch while they are going by on a machine?\",\n    \"video_name\": \"video9427\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a machine doing?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is this is a video for a laser cutter doing?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is laser machine doing?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is presentation of the machine and its functions while doing?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a piece of copper tubing cut by?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"machinery\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what the machine accurately drills into pieces?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what is cut by a robotic machine?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what drills the brown rod into pieces?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what does laser machine cutting what appear to be?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"copper\"\n  },\n  {\n    \"question\": \"what is a medal piece object continuously being cut by?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is presenting how the new machine works?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is making a product in the industry?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is being cut using a machine in a factory?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what is doing something to a copper pipe?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what do a rod and a drilling machine cutting moving round displaying on?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a rod and a drilling machine doing?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is cutting a metal pipe automatically while it rotates on its axis?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is drilled by machine?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"steel\"\n  },\n  {\n    \"question\": \"what is a machine cutting automatically while it rotates on its axis?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what is a steel drilled by?\",\n    \"video_name\": \"video9428\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"dunk\"\n  },\n  {\n    \"question\": \"what are different players doing?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is clips of athletes doing?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what do a sports montage video with?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is dunking a basketball?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who threw the ball?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"quarterback\"\n  },\n  {\n    \"question\": \"what shows multiple sports highlights?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who throws a touchdown pass?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"quarterback\"\n  },\n  {\n    \"question\": \"what plays over mixed sports stunts?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does sports clips from sport vines?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what do a sports montage with loud music?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are sports clips being shown within?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"frame\"\n  },\n  {\n    \"question\": \"who is running to the end zone?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does a quarterback throw?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what is a person dunking?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what compilation?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what did the quarterback throw?\",\n    \"video_name\": \"video9429\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is playing while different sport games are taking place?\",\n    \"video_name\": \"video9430\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are different sport games taking?\",\n    \"video_name\": \"video9430\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are taking place?\",\n    \"video_name\": \"video9430\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what is been showed?\",\n    \"video_name\": \"video9430\",\n    \"answer\": \"hocky\"\n  },\n  {\n    \"question\": \"who hockey?\",\n    \"video_name\": \"video9430\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is a song doing?\",\n    \"video_name\": \"video9430\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is football players doing?\",\n    \"video_name\": \"video9430\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video9430\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9430\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man drawing a cartoon in while another man explains the concept behind what the man is drawing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"who draws cartoons to explain an economic principle?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man drawing in fast motion while another man explains the concept behind what the man is drawing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is drawing a loaf of bread and a cash register?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon in fast motion while another man explains the concept behind what the man is drawing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a person doing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who talks about business strategies?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an artist doing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who narrates business principals to a drawing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"illustrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who is drawing something?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who explains the concept behind what the man is drawing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man narrate business principals to?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"drawing\"\n  },\n  {\n    \"question\": \"what is a person drawing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"monopoly\"\n  },\n  {\n    \"question\": \"what does a man draw out?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"what is an artist drawing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"register\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"what is a man narrating over?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is someone drawing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who draws out a business plan?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing a monopoly board?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man narrate to a drawing?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"who illustrating how to make people work?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is narrating over an animation?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing a cash register?\",\n    \"video_name\": \"video9431\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"what is followed by a playful calf at a zoo?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what plays with a big one in a concrete cage?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what are a mother and baby elephant doing?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a black elephant inside jail with baby elephant doing?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the big grey elephant doing?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a mother elephant with her baby in the zoo with people doing?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a small elephant doing?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the elephant makes its kid happy by doing?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an elephant gets up and doing?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is an elephant baby doing?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the big gray elephant looking for food in?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is an elephant followed by a playful calf at?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"zoo\"\n  },\n  {\n    \"question\": \"what gets up?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what does an elephant walk forwards and backwards with a baby elephant at?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what do a big elephant and a small elephant walk around in?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what makes its kid happy by playing with it in funny way?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what are a big and small elephnant in together?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is the big gray elephant looking for in the cage?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who does the elephant make happy by playing with it in funny way?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who does the mother elephant teach how to hop?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is walking slowly and sadly inside a small cage with its mother?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"where does an elephant walk forwards and backwards with a baby elephant?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what teaches the baby how to hop?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what are a mother and baby elephant walking in?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what walks forwards and backwards with a baby elephant at its side?\",\n    \"video_name\": \"video9432\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is a last screaming into a phone and doing?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what are a woman and a man doing?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"who do a last talking to?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a woman talking on?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what do two people speak excitedly on?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what do a man and woman scream into?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what do a last screaming into?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are a woman and a man talking on?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are a man and woman talking on?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what do a indian woman and man overly excite on?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what do a lady and man talk on?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who calls another man on the phone who is in a store and very excited?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is yelling to a man over the phone?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a happy indian couple yell at each other on?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is screaming on a cell phone to a man?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a man and a woman talking to each other on?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"how many people speak excitedly on the telephone?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a woman screaming on a cell phone to?\",\n    \"video_name\": \"video9433\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what do each other play?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is showing computer graphics?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man plays minecraft while doing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man talks while doing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"stroll\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person strolling?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is video game play doing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is someone showing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who plays minecraft with his friend?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is commentating while playing minecraft?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man play minecraft with?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who plays minecraft while commentating?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what play showing a popular video game and males providing commentary while two players play?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many players prepare to descend a dark staircase?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two players prepare to descend?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"staircase\"\n  },\n  {\n    \"question\": \"what does a man play with his friend?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is strolling the park?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many players play?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what show for kids?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is two friends doing?\",\n    \"video_name\": \"video9434\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are scientists wowed by lights in?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"what are scientists using when the electricity surges?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what is some sort of scientific device exploding with?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"electricity\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are sparks flying from?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"spaceship\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do scientists work on together?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what do scientists watch?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"explosion\"\n  },\n  {\n    \"question\": \"what are sparks doing?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is some sort of scientific device doing?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"explode\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what are scientists doing?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a strange object in a room doing?\",\n    \"video_name\": \"video9435\",\n    \"answer\": \"spark\"\n  },\n  {\n    \"question\": \"how many girls sing and dance?\",\n    \"video_name\": \"video9436\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is singing a song and dancing?\",\n    \"video_name\": \"video9436\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what do two girls sing?\",\n    \"video_name\": \"video9436\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9436\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what instruments singing and dancing to the music?\",\n    \"video_name\": \"video9436\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9436\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is clip of person doing?\",\n    \"video_name\": \"video9436\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man singing and doing?\",\n    \"video_name\": \"video9436\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group singing and doing?\",\n    \"video_name\": \"video9436\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a group of adolescents doing?\",\n    \"video_name\": \"video9436\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is talking about the building he made?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone running around on?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is playing minecraft?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his minecraft house?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who likes man is talking about a video game?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was the video game?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"who does a man like is talking about a video game?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running around on minecraft?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video game caster doing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a minecraft player doing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a clip from a video game doing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what play?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who minecraft?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what was fun?\",\n    \"video_name\": \"video9437\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is some participants doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what are the winners of an automobile race doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is three of people doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is a race car doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is men in white jumpsuits in front of a checkered wall doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the winners of the formula car race spray each other with champagne while proudly doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is racecar drivers jump onto numbered circular platforms doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"indicate\"\n  },\n  {\n    \"question\": \"what is victorious drivers in doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is two race car drivers doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is winners doing?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what are car race players having?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what do racecar drivers jump onto numbered circular platforms indicating their placement in by a checkerboard wall?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who jump onto numbered circular platforms indicating their placement in the race by a checkerboard wall?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"racecar\"\n  },\n  {\n    \"question\": \"what do racecar drivers jump onto numbered circular platforms indicating in the race by a checkerboard wall?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"placement\"\n  },\n  {\n    \"question\": \"what does celebration of a race car driver melden auto s?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"victory\"\n  },\n  {\n    \"question\": \"who is playing online game with formula one players?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is driving on a track as people cheer?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do some participants celebrating on stage after a drag?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is player in white clothes?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"winner\"\n  },\n  {\n    \"question\": \"what is person playing with formula one players?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who are having cup?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a race car driving on as people cheer?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is driven fast?\",\n    \"video_name\": \"video9438\",\n    \"answer\": \"formula\"\n  },\n  {\n    \"question\": \"who draws the spongebob character squidward in pencil?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating how to draw the character squidworth from sponge bob?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man drawing?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is drawing squidward?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man draw?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who shows how to draw squidward?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a person draw?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who shows how a picture of squidward can draw a cartoon squid?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating how to draw squidward?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon character?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who draws a cartoon character?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gives directions for the drawing?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"what shows how to make a cartoon character?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is a man drawing a picture of?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who shows how to draw spongebob characters?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to draw a cartoon character?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing a picture of squidward?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who draws a cartoon?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawling squidward on a piece of paper?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9439\",\n    \"answer\": \"drawl\"\n  },\n  {\n    \"question\": \"who sing a sleeping song?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are riding a bus?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is an animated woman holding?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is holding a baby?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a children s song plays to?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what do cartoon characters sing?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"sleeping\"\n  },\n  {\n    \"question\": \"what does a children s plays to animation?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is carrying a sleeping baby on a bus?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the wheel on the bus nursery rhyme?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what sings the people on the bus with lyrics?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what does the bus with the people bounce on?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is the wheels on the bus sung by?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is an animated woman doing?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who ride on a bus as the wheels on the bus plays?\",\n    \"video_name\": \"video9440\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is solving a rubix cube?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a person work a rubick s?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what does a person solving a rubik s?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who is using a ribic s cube?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who works a rubick s cube?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person solving s cube?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"rubik\"\n  },\n  {\n    \"question\": \"what is trying to solve a rubix cube?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person solving a rubik s?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what is a person playing with rubik s?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who is demonstrating how to solve a rubik cube?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is solving a rubic cube?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is solving a rubik s cube?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing with a rubix cube?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person work s cube?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"rubick\"\n  },\n  {\n    \"question\": \"what play with cubes?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone solving?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who is playing with rubik s cube?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does person working on rubik s?\",\n    \"video_name\": \"video9441\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"who is playing hockey?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are playing a ice skating hockey in a hockey court?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who are skating?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"hockey\"\n  },\n  {\n    \"question\": \"who are playing hockey?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"hockey\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are some guy s doing?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are hockey players doing?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what are hockey players doing?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is audience doing?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a professional hockey game doing?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what s best sports vines clips?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"world\"\n  },\n  {\n    \"question\": \"what are some guy s playing hockey in a hockey court?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is overlaid on an ice hocky game?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who are playing on a ice rink?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"hockey\"\n  },\n  {\n    \"question\": \"what do people play?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"hockey\"\n  },\n  {\n    \"question\": \"what do people nearly score?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what are players playing hockey in?\",\n    \"video_name\": \"video9442\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"where did people gather?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what did people gather at?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who discusses his canvas art?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what gets ready to preform?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who discusses getting a tattoo?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is busy in stage before an act?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is group of people busy in stage before?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what talks to one another on a set?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man talking to a set up crew before?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a man discuss getting?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"tattoo\"\n  },\n  {\n    \"question\": \"when is group of people busy before an act?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is talking to a set up crew before a show?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about how a guy named gabe approached the narrator about having a piece of the narrator s art tattooed on his body?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what does a band talk to one another on?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what are some people playing?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what will practice tomorrow?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does a young man discuss?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"canva\"\n  },\n  {\n    \"question\": \"what acoustic?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"trophy\"\n  },\n  {\n    \"question\": \"when will the band practice?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"tomorrow\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is group of people doing?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9443\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two males doing?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"annoy\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"snatch\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a man interviewing?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who has grown very annoyed?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who takes a photo of a man on the street?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is snatching some thing from another person?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crossing the street while recording another man?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking through a microphone at people on the street?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many males are talking to a very angry female?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"who speaks to people on the street?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman crossing while recording another man?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is attempting to get people on the street to talk to him?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking through at people on the street?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what do some young men annoy?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"random\"\n  },\n  {\n    \"question\": \"who is man snatching some thing from?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who is interviewing an old woman?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taping people on?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a guyw atching people corss?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is man snatching from another person?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is taping people on camera?\",\n    \"video_name\": \"video9444\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a mechanic doing?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"unscrew\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is this is a video of doing?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who is repairing a car in a garage?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person fixing?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man repairing?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a mechanic work on?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a mechanic repairing?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does mechanic take apart?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is fixing a car?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is repairing a car?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who works on a car?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"mechanic\"\n  },\n  {\n    \"question\": \"what does mechanic take apart front of?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who does work on a vehicle?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person using to work on a car?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"drill\"\n  },\n  {\n    \"question\": \"who is using a drill to work on a car?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man removing bolts from?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is unscrewing nuts from a car?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is removing bolts from a car?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man repairing a car in?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"who takes apart front of vehicle?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"mechanic\"\n  },\n  {\n    \"question\": \"what is a person unscrewing nuts from?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man repairing in a garage?\",\n    \"video_name\": \"video9445\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are morgan freeman and brad pitt starring in together?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what two detectives then kick down?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who tells another he will be with him day and night and tell him who his friends and enemies are?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a montage of scenes from a film doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are many men in the criminal justice field doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are morgan freeman and brad pitt doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is morgan freeman and brad pitt doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man with formal wear doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and a younger man doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what are morgan freeman and brad pitt doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two detectives doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a movie trailer doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a man with cap doing?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many detectives then kick down a door?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does the movie star celebrity actor morgan freeman is showing a very suspenseful movie?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who stars celebrity actor morgan freeman a movie trailer is showing a very suspenseful movie?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what do the man in the black hat drive in?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are morgan freeman and brad pitt playing characters in together?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"how many detectives are driving around?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who did actor morgan freeman and actor brad act together?\",\n    \"video_name\": \"video9446\",\n    \"answer\": \"pitt\"\n  },\n  {\n    \"question\": \"what does a girl enter?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a little girl in a white t-shirt doing?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a little girl goes into a funhouse at a carnival up some doing?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a young girls doing?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl with blonde hair is at an amusment park doing?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a little blonde girl doing?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a blonde long-haired girl doing?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is there is a girl doing?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who enters a fun house?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young blonde girl go to a fun house at?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"carnival\"\n  },\n  {\n    \"question\": \"what is a little blonde girl exploring at an outdoor carnival?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is at an amusement park going into the fun factory?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is speaking about a game being played in a fun park?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who goes into a funhouse at a carnival up some moving stairs?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who walks through an amusement park course to enjoy a specific ride?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who walks on a ramp at a carnival fun house?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a child speaking about being played in a fun park?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is inside the gaming side and the jolly mood?\",\n    \"video_name\": \"video9447\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who has a disturbing flashback?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who remembers seeing something on his arm in a dream sequence?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pulls a long syringe from the top of a statue head?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and woman sitting on discussing the tattoo murders?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"who a movie suspense?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"daydream\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman sitting on a bench discussing?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"tattoo\"\n  },\n  {\n    \"question\": \"who is startled by a memory of a needle being put in his arm?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man remember seeing on his arm in a dream sequence?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who has a tattoo?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man dream about?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"tattoo\"\n  },\n  {\n    \"question\": \"what does a man have?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"disturbing\"\n  },\n  {\n    \"question\": \"who is shown talking to another man in his office?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what suspense movie trailer?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who dreams about a tattoo?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was hired to solve murders?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"hypnotist\"\n  },\n  {\n    \"question\": \"who is daydreaming about different images?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who thinks about a news story and another man?\",\n    \"video_name\": \"video9448\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of naked men doing?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"grow\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is several images of people doing?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"die\"\n  },\n  {\n    \"question\": \"what are naked men doing?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who falls down?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of naked men playing cards at?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is falling down as he reaches a door?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what watch naked people play cards?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"wan\"\n  },\n  {\n    \"question\": \"who falls to the floor?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who reaches a door?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man fall to?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does a man reach?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what do naked people play cards in?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are naked men sitting at playing cards?\",\n    \"video_name\": \"video9449\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what is a chief commander doing?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of militaries doing?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is military men doing?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are several servicemen doing?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two men have a serious discussion while doing?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who is holding a glass?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking to people?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to some soldiers?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"commander\"\n  },\n  {\n    \"question\": \"what is video of a man doing?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of militaries talking about?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many men have a serious discussion while watching other soldiers?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9450\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what follows two girls?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"who is feeding a horse?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who approaches a horse?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what does a girl spend time with?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"who is petting a horse?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are kids playing with in grass?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a girl spend with a horse?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"how many girls does a horse follow?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who spends time with a horse?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are kids playing with horse in?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is females doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is standing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a child approach?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a girl feeding?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a young girl feeding?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a little girl petting?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"who feeds and touches a horse outside?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is two small blonde girls doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9451\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animated grey shark in the middle of a blue water simulation background doing?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"rotate\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is somebody doing?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what does an animated gray shark in the middle of a blue water simulation rotating in a circle on the screen of a monitor?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what does jawsome game and the person start?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who starts the game?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does someone start?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is on the sea water?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is started?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"jawsome\"\n  },\n  {\n    \"question\": \"what are previewed?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what moves around in a circle?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is discussing some of the shark game that is being played?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"who discusses a video game that is a shark simulator?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what rotates three hundred and sixty degrees in front of a blue background?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what is a guy reading the words on screen a shark rotating round on?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a guy reading the words on screen a shark rotating on the screen?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"what does the large fish move around in?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what floats in the water in a video game?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what is a video game about jaws being played by?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a shark float in in a video game?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who talks about jawsome a shark simulation program?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what floats in the water and changes shape?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what does an animated gray shark in the middle of a blue water simulation background rotating in on the screen of a monitor?\",\n    \"video_name\": \"video9452\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"who is talking while watching a cartoon with a hermit crab?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a recording of a tv screen where someone doing?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are pokemon characters doing?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who catches a pokemon in a game?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who was caught?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are moving around?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"who was bound tightly?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a kid play?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person narrating?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing pokemon with commentary?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does the person catch?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"who is a person watching?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"televison\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a boy playing with commentary?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"who is narrating a video game?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who catches a pokemon?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays a pokemon game?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is watching televison?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does someone catch?\",\n    \"video_name\": \"video9453\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who talk about something?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who discusses recent purchases?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks about makeup?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is commentating?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a girl talk about?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a girl talk about?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is telling some story?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a girl telling?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9454\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do several dogs act silly on?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are some guy s giving instruction to to do something?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are some guy s giving to a dog to do something?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"instruction\"\n  },\n  {\n    \"question\": \"what are some guy s giving instruction to a dog to do?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are giving instruction to a dog to do something?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is playing with dogs?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a vidoe of dogs doing?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are different dogs doing?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is people s doings doing?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9455\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a block man doing?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is someone showing?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does man walking around a minecraft world play?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a person changing?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a man play on it?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play on someone?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is showing video graphics?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who talks while he plays minecraft?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who creeps to another character in a video game?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who climbs up a wall in a video game?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what do footage from the game mine craft in?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do footage from the game mine in game?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who plays minecraft and comments on someone?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a pixelated video game?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is commentating while playing minecraft?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays minecraft and comments on it?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who climbs on strange pink blocks?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who considers how he will build?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is changing game angles?\",\n    \"video_name\": \"video9456\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what car race gets started?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do a driving simulation?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what simulation video game?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"driving\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car race taking in a video game?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is giving commentary in game footage of a racing game?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who do game play footage of?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"forza\"\n  },\n  {\n    \"question\": \"who is playing a racing video game?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man driving in a video game?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is while someone giving in game footage of a racing game?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"who is driving a car in a video game?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what play footage of forza motorsports?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is taking place in a video game?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do cars race around a track in?\",\n    \"video_name\": \"video9457\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing game?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining the lesson?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is demonstrating software?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is demonstrating a computer game?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what drags the photo?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"who is playing the sims?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the mouse drag?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what is someone demonstrating?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"what is a lady explaining?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"lesson\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person demonstrating?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who talks about a game?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is demonstrating how to set up characters in a pc game?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who navigates a menu on a video game?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains some kind of a video game?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who creates siblings in the sims?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl playing?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9458\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is an picture doing?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is pictures of two soccer players doing?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who are shown as kids in pictures?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do an picture moving in?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who has his hands in his pocket?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what aboutt all famous people?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"what are images of soccer players from youth to adulthood shown by side?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what player when they were young?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who suarez shown as a young boy?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"lui\"\n  },\n  {\n    \"question\": \"who are shown with their baby pictures?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are images of soccer players from youth to adulthood shown side by?\",\n    \"video_name\": \"video9459\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who does a fox s?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"prey\"\n  },\n  {\n    \"question\": \"what s prey?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"what is a fox playing in?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is a fox burrowing itself in?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is jumping into some snow?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"what is playing in the snow?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"what is a fox in?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is burrowing itself in snow?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"what is in the snow?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"what does a fox hunt mice under?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is a fox jumping into?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is jumping in the snow?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"what does a fox dive into the snow?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what jumps for it s prey?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"what is jumps in the air?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"what were stirring about the icy blanket?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a fox doing?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"burrow\"\n  },\n  {\n    \"question\": \"what hunts mice under the snow?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"what is a fox is in the snow and doing?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a fox doing?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a wolf in the snow with a male doing?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what were field mice doing?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a fox doing?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"hunt\"\n  },\n  {\n    \"question\": \"what does a fox hunt under the snow?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what is a fox jumping in?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is fox doing?\",\n    \"video_name\": \"video9460\",\n    \"answer\": \"plunge\"\n  },\n  {\n    \"question\": \"who screams at the sky as he travels with his band in a car?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who travels with his band in a car?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what are a group of musicians driving?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are a group of musicians performing?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who drives in a desert?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where does a man drive?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"how many friends are driving in the car?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what are four friends doing?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are a group of musicians doing?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"how many guys do a music video showing an artist singing on a stage and in another track on a nice ride?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what drives around in a car?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what drives down the road?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive in?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who laughing loudly?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who screams?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who screams wildly?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a car drive down?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does the band drive around in?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a guy scream at as he travels with his band in a car?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what are four friends driving in?\",\n    \"video_name\": \"video9461\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are people enjoying?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a group of men rapping as a crowd of people do?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is young team doing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is this is a video of people doing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what were they doing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are a group of kids doing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is kids outside doing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a woman and a man doing?\",\n    \"video_name\": \"video9462\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does a man in blue collard shirt remove to professional athletes surprise in bathroom?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what do two men stand in while arguing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"what is dr phil seen sawing off to escape shackles?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"who ends up cutting the wrong foot?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"what did a person in blue dress fall?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"backside\"\n  },\n  {\n    \"question\": \"what do the man in the blue shirt hold in his hand?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"shoe\"\n  },\n  {\n    \"question\": \"who is celebrating how celebrity has escaped a trap?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person in blue dress take while other person shock because he removed shoe along with leg?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"shoe\"\n  },\n  {\n    \"question\": \"who is celebrating how celebrity shaquille oneal points that he has accidentally cut his foot off?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds up a foot?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"what do the man in the blue shirt hold the shoe in?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who then falls down?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"what does a man cut off?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what is the other still chained to?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does phil end up cutting?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what does a bald man hold up?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"who cuts off his own foot?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a bald white man holding in his hand?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what is a bald white man holding his right foot in?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what did a person in blue dress remove along with leg?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"shoe\"\n  },\n  {\n    \"question\": \"how many men stand in a bathroom while arguing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is seen sawing off his own foot to escape shackles?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"who cuts off his foot to save professional athletes surprise in bathroom?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"phil\"\n  },\n  {\n    \"question\": \"what is bald guy with mustache doing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is phil cuts off his foot to save himself and shaq but ends up doing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is phil doing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is dr phil is seen doing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"saw\"\n  },\n  {\n    \"question\": \"what is two men stand in a bathroom while doing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a bald white man doing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is there is a man in white doing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt doing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is there is a man in blue doing?\",\n    \"video_name\": \"video9463\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what did a gamer changes the options in a game call?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is displaying in front of the screen?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what did menus over a video game that is moving from right to leave behind?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"menu\"\n  },\n  {\n    \"question\": \"what does a man have to breach?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"account\"\n  },\n  {\n    \"question\": \"who is talking about how his account has been hacked?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has noticed that his minecraft account has been hacked?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people talk about account security?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who has noticed that he wishes to find a way to retrieve his account?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is telling about the game?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man telling about?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who has to breach his account?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do two people talk about?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what play on pc talking about accout being hacked?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is seen with different options checked in boxes?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a computer screen doing?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"state\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a video game of software doing?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is minecraft game play on pc doing?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is menus over a video game that doing?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does video game footage of the popular game minecraft caption on the bottom screen?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who is stating that his account has been hacked on the video game minecraft?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men talk about what to do with a possibly hacked minecraft account?\",\n    \"video_name\": \"video9464\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is wrestlers are in the ring doing?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a wrestler talk to other wrestlers?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"trash\"\n  },\n  {\n    \"question\": \"who did wrestling match hype up by?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is speaking through a microphone?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many persons are talking?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks on stage?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what are wrestlers doing?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are wrestlers talking to?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a man speaking through?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"when does a wrestler talk?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do wrestlers talk in a sporting ring?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"gesture\"\n  },\n  {\n    \"question\": \"who talks trash to other wrestlers?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an announcer doing?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a wrestler at a match doing?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what hyped up by host?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who speaks to a man in a wrestling ring?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a wrestler at a match talking to other wrestlers and some people with host?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who does a man speak to in a wrestling ring?\",\n    \"video_name\": \"video9465\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"when do the couples dance?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a couple dancing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are two people dancing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do two people dance together?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is dancing in the stage?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are people?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"ballroom\"\n  },\n  {\n    \"question\": \"what dance onstage?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"ballroom\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what does a couple perform?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what dances for judges?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"when do two ballroom dancers compete?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who compete on stage?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"ballroom\"\n  },\n  {\n    \"question\": \"what is a man and a women doing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"when are a man and woman dancing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what performs dance on stage?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"how many people dance together on a stage?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a man and a woman dancing on a tv show?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"ballroom\"\n  },\n  {\n    \"question\": \"how many ballroom dancers compete on stage?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"how many people are dancing on stage?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a bald guy on doing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man and a woman are ballroom doing?\",\n    \"video_name\": \"video9466\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a boy running in?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone commentates themselves doing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man in video game doing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a guy plays a doing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a game character doing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a video game character have?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is running around in a video game with a sniper rifle shooting things?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does someone commentate playing a freeform game?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who plays a shooting video game?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who plays game where video games can shoot other people?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who taunts the games characters?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does someone commentate video games playing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"freeform\"\n  },\n  {\n    \"question\": \"who is playing shooting game?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running in the ground?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is firing?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who then targets another man who is hiding behind a tree in the video game?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who commentates video games playing a freeform game?\",\n    \"video_name\": \"video9467\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays a card game with his friends?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what did animated characters gather at to play poker?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who loses a game of poker?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a cartoon of guys doing?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon of historical figures doing?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animated show of men doing?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who are playing a game of cards?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are animated characters doing?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are male cartoon characters doing?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is three cartoon humans doing?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is three older men doing?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon of men doing?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does an animated character lose a game of?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"poker\"\n  },\n  {\n    \"question\": \"what did animated characters gather at the table to play?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"poker\"\n  },\n  {\n    \"question\": \"what are animated characters playing cards at?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who play a game of cards?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon man play with his friends?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"who are playing cards?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who played cards?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who play cards?\",\n    \"video_name\": \"video9468\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is football players are shown doing?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are professional football players doing?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a sports show doing?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a sports player doing?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is several videos doing?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is holding a cup?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to many journalists?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits on the bench?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does a football player sit on?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what is showing various sports clips?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"when did the top chad on espn?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"ochocinco\"\n  },\n  {\n    \"question\": \"who are sitting on the bench?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what did the top chad ochocinco moments on?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"espn\"\n  },\n  {\n    \"question\": \"who lifts weights while being questioned?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking rest and then talks to a reporter?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is a football player taking rest and then talks to?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are professional football players sitting on?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"who is getting interviewed?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who are shown talking?\",\n    \"video_name\": \"video9469\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is oil doing?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"leak\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a camera doing?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"videotape\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone working on?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who is looking through a car engine?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is videotaping car parts?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a person show different parts to?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person showing mechanical parts to?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"who shows different parts to a car?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to fix a vehicle?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing mechanical parts to a device?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is working on an engine?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is fixing a car?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is oil leaking from?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a camera videotaping?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man looking at?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a person fixing?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"part\"\n  },\n  {\n    \"question\": \"what is leaking from the engine?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is looking at an engine?\",\n    \"video_name\": \"video9470\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pronounces the world fog in spanish?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a cartoon girl doing?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a cartoon girl doing?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon girl doing?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"pronounce\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"spell\"\n  },\n  {\n    \"question\": \"what is a short clip of a show doing?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is an animated woman doing?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cartoon girl doing?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is children s cartoon doing?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is super hero girl teaches doing?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"spell\"\n  },\n  {\n    \"question\": \"who is teaching people words?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is talking about fog?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what was very colorful?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who teaches spelling?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"hero\"\n  },\n  {\n    \"question\": \"what is the word being taught?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"fog\"\n  },\n  {\n    \"question\": \"what is an animated woman talking about?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"fog\"\n  },\n  {\n    \"question\": \"who spells out a word?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who reads some letters?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does children s explaining how to read?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon girl spell out?\",\n    \"video_name\": \"video9471\",\n    \"answer\": \"word\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are english sentences doing?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who is wearing a cute dress?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what shows the lyrics?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a girl wearing?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"cute\"\n  },\n  {\n    \"question\": \"what are being shown?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what plays to a picture of a girl with lyrics?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what plays while the screen shows the lyrics?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does song being played in background with lyric on?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are words being displayed in?\",\n    \"video_name\": \"video9472\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is professional athletes doing?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are many men doing?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what vine and music?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what are hockey and soccer players doing?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is a hockey player doing?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is a group of football players doing?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is hockey players doing?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who scores a goal in hockey?\",\n    \"video_name\": \"video9473\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about government?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining is something?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about branches?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"government\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is the person explaining is?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking about cheque bounce?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaining the branches of?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"government\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is explaining the branches of government?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about branches of the government?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man talks about how our government works while doing?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is talking about checks and balances?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9474\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"how many people talk while one plays a video game?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is seen with different game levels and other players names joining the game?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"menu\"\n  },\n  {\n    \"question\": \"what are images of a video game flashing quickly across?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does one play?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who a hammer is smelted in fire?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people discuss?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what do a high powered gun a animate shooting?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a game been played by the person in?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what points at different areas on a screen then goes to it?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"cursor\"\n  },\n  {\n    \"question\": \"who carries a high powered gun?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man a hammer is smelted in?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who is a game been played by in his computer?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is been played by the person in his computer?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is whos chaos game on doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are images of a video game doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what is two people are on audio chat while we see one of them doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is different images are shown one is a chaos sign and the ironside then images of a search and destroy game while as girl doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a menu is seen with different game levels and other players names doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"join\"\n  },\n  {\n    \"question\": \"what are players in a game lobby doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is player doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is an introduction screen to a video game players video starts a man speaks to people while doing?\",\n    \"video_name\": \"video9475\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a animated clip of a character doing?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a cartoon fighter doing?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"cortona\"\n  },\n  {\n    \"question\": \"what is a character from halo doing?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what gameplay footage?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is firing two riffles?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a character from halo shooting?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"weapon\"\n  },\n  {\n    \"question\": \"who is shooting a gun while a song plays?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what did a animated clip of a character shooting a weapon set to?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a cartoon fighter shooting while a song plays?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is an animated soldier dual wielding and doing?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what do a video showing gameplay?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"footage\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9476\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what denies to help the yellow one?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what does the brown lion deny to help?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"what are two animated lions battling to protect atop a cliff?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"territory\"\n  },\n  {\n    \"question\": \"what are two animated lions battling to protect their territory atop?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what does a lion hang off while another grabs a person?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what hangs off a cliff while another grabs a person?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what helps another animal from the edge of a cliff?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what lions fighting while one is requesting the assistance of the other lion?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is recording a screen playing a scene from the movie the lion king?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many animated lions are battling to protect their territory atop a cliff?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is struggling to hang on to the edge of a cliff while another lion grabs the king with his claws?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what is trying to kill the other lion there is fear in dying lions eyes?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"how many animated lions were fighting each other on hill side?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a person recording playing a scene from the movie the lion king?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what was a lion falling from hill held back?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what hangs onto the side of a mountain with front paws while looking up with round yellow eyes?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what is scar kills his brother mufasa by doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a lion doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"struggle\"\n  },\n  {\n    \"question\": \"what is one lion doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is the lion doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"king\"\n  },\n  {\n    \"question\": \"what are two animated lions doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what is a clip of the bad lion doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is cartoon lions doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is scene from the movie lion doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"king\"\n  },\n  {\n    \"question\": \"what is a tan lion hangs onto the side of a mountain with front paws while doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what were two animated lions doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a lion doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9477\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"who is wearing a black tuxedo a black shirt and a black tie while being interviewed?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"who is interviewed?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"who talks in front of a crowd?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is being recorded while he talks?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what about south whales?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is wearing a suit and tie?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is explaining about his history?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is tom jones doing?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in a suit doing?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"when is a man explaining?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"who is talking about music?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about materials?\",\n    \"video_name\": \"video9478\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do two men and a woman talk in?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are three people wearing aprons in?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is shown with people joking around?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who are speaking?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing how to cook?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what show conversation?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what are people talking in?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do spanish cooking show?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what does three chefts discussing about?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what are three person doing?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what takes place during a cooking segment?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what is three chefts doing?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is there are people in a kitchen doing?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is chefs doing?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cooking show is shown with people doing?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"joke\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"how many people are wearing aprons in a kitchen?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does a discussion take during a cooking segment?\",\n    \"video_name\": \"video9479\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a person talking about in a video game?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who shows off yellow car in video game?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about a car in a video game?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game driving a car?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does person show off yellow car in?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is being rotated around a computer graphic rendered car?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does person show off in video game?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a car in a video game on?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a clip of a doing?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car in a video game is on a road and a man doing?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man describe?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man playing driving a car?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what drives on a rural road?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is showing off a video game?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is describing the car?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes a gta vehicle?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person showing off?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is showing car features?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man describing?\",\n    \"video_name\": \"video9480\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are some kids doing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what are kids playing at?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is kids goofy?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"skiing\"\n  },\n  {\n    \"question\": \"what skiiing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are the kids doing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy in a goofy suit water doing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is kids on a beach doing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is group of children doing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is goofy water doing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what are a group of kids doing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing on water?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"stunt\"\n  },\n  {\n    \"question\": \"who is doing stunt on water?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing stunt on?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are some kids pulling with mikey mouse then a dog is water boarding?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what are some kids pulling a rope with then a dog is water boarding?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"mikey\"\n  },\n  {\n    \"question\": \"who play tug of war and water ski?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what do group of children performing tug of war events on a disney beach with mickey while goofy?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are the kids playing tug of with mickey mouse?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what are a group of kids playing tug of?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what are the kids playing tug of war with?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"what do a group of kids play on a beach?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"tug\"\n  },\n  {\n    \"question\": \"what are a group of kids playing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"tug\"\n  },\n  {\n    \"question\": \"what do a group of kids play tug of on a beach?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what do a group of kids play tug of war on?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are kids playing tug of?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what are kids playing?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"tug\"\n  },\n  {\n    \"question\": \"what are the kids playing with mickey mouse?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"tug\"\n  },\n  {\n    \"question\": \"what do a group of children play?\",\n    \"video_name\": \"video9481\",\n    \"answer\": \"tugowar\"\n  },\n  {\n    \"question\": \"who gets ready to ride a tiny bike?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone putting on?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"helmet\"\n  },\n  {\n    \"question\": \"who is putting get in to a small bike?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what putting on a helmet and getting on a mini motorcycle?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is video of a person doing?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who attempts to sit on a bike that is much too small for a kid?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is about to get on a miniature motorcycle?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does a man attempt to sit on a bike that is much too small for?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who climbs on to a miniature motorcycle?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a dish?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is putting helmet?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man rides?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is preparing to ride a mini bike?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a kid prepare to ride?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who rides a bike?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is putting a helmet on?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who attempts to ride a very small bike?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is standing over a mini bike?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is riding a small motor bike?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who prepares to ride a mini motorcycle?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is trying to ride a small bike?\",\n    \"video_name\": \"video9482\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is soup is kept on the bowl and it was taken in the spoon for doing?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"dip\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is soup kept on?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is someone dipping a spoon in to a crock full of hot soup in to eat it?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what is scooped out of the white bowl?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what focuses on a white pot full of the soup?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a bowl of soup scooped with in a porcelain pot?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"what is full of soup and broccoli along with some cheese?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is dipping a spoon in to a crock full of hot soup in order to eat it?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about a broccoli cheese soup recipe?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a woman describe while the camera focuses on a white pot full of the soup?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"who describes broccoli cheese soup while the camera focuses on a white pot full of the soup?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what was taken in a white spoon?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what dips into a bowl of creamy broccoli cheese soup?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"what is kept with some soup?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is kept on the bowl?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is a bowl kept with?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is been prepared?\",\n    \"video_name\": \"video9483\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this is a band doing?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what performs a cover of a goo goo dolls song?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing a song in a studio?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song into a microphone?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing while another plays the keyboard?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings a cover of a song?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings a song in a room?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man sing a cover of?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman singing into a microphone?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman singing a song into?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"how many people are performing a song?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who sings with a band in a recording studio?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is covering a popular song?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did the artist have?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a band covering?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does another play?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what are two people performing?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who had a pretty voice?\",\n    \"video_name\": \"video9484\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"what is on a beach the camera doing?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"pan\"\n  },\n  {\n    \"question\": \"what is beach scene and shots of lawn chairs and forest doing?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"surround\"\n  },\n  {\n    \"question\": \"what is there are white flowers doing?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"bloom\"\n  },\n  {\n    \"question\": \"what lined with beautiful trees while a woman sings?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are champaka plants doing?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what is a garden with colorful trees flowers nice scene girl doing?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is almost funeral styled song while doing?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a beach with tents on it and lot s of trees doing?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"breeze\"\n  },\n  {\n    \"question\": \"what is about nature s beauty sea shore from the view of trees more trees with some wheel looks very beautiful?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are bearing white cute flowers?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"champaka\"\n  },\n  {\n    \"question\": \"what is the camera admiring the beauty of it on?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are beauty of the sea shore and the trees swing in in the nature?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"wind\"\n  },\n  {\n    \"question\": \"what are beauty of the sea shore and the trees swing in wind in?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"nature\"\n  },\n  {\n    \"question\": \"what is panning around on a beach?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is admiring the beauty of it on a beach?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what a nice panaramic view of the trees and a old fashioned home site off?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who a garden with colorful trees flowers standing displaying on screen?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what does champaka plant with white flowers add more beauty to?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"greenery\"\n  },\n  {\n    \"question\": \"what is on the plant is showed which is white color?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"what are champaka plants bearing?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"cute\"\n  },\n  {\n    \"question\": \"what does champaka plant with white flowers add to the greenery?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is kept in the shed?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"cart\"\n  },\n  {\n    \"question\": \"what shines on the sand and sea?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"what are the flowers in the tree swing in very well in?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is the camera panning around on?\",\n    \"video_name\": \"video9485\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a virtual house is shown specifically the bedroom doing?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is shown specifically the bedroom featuring dogs and horses?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is showing off a home in the sims?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman showing off in the sims?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what do a overview of a females sim?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing the sims?\",\n    \"video_name\": \"video9486\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a few men doing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is cartoon clip doing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is gameplay with cars doing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is scene from a video game players doing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are a group of friends doing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"how many people are enjoying talking to each other?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a few men play?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are two people playing?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many people are playing a video game?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are animated characters riding vehicles on?\",\n    \"video_name\": \"video9487\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is shows a woman in a pink dress doing?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"focu\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the small girl doing?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman in brown hair doing?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a flower of design cloth little girl doing?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is an asian woman in an old dress doing?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is the small girl looking perfect in?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what has a girl long flowing?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"outfit\"\n  },\n  {\n    \"question\": \"what does a girl wear?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what is woman dressed in?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"who has long flowing hair?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did toy dress in?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is shown while a woman talks about the outfit?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"outfit\"\n  },\n  {\n    \"question\": \"what is a woman in brown hair wearing pink dress looking like?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"who is dressed in pink dress?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who wears a pink dress?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what dressed in bridal wear?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who talks about the outfit?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is looking perfect in pink clothes?\",\n    \"video_name\": \"video9488\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who other are also following?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do men ride in an alleyway?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is man singing all over various places of city with?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man on?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"cycyle\"\n  },\n  {\n    \"question\": \"what is this is a music video doing?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the old man with silver haired a doing?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do men ride bicycles and rap in?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"alleyway\"\n  },\n  {\n    \"question\": \"what did a man in blue shir with cap shake his body and a man in bare body with black glass beat?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"instrument\"\n  },\n  {\n    \"question\": \"who is playing the drums a man is singing a group of people are sitting on bikes?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drums while men ride bicycles and rap in an alleyway?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"drummer\"\n  },\n  {\n    \"question\": \"what drums people riding cycle guy in white dress singing?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"drummer\"\n  },\n  {\n    \"question\": \"who is a man playing the drums is singing a group of people are sitting on bikes?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on the cycyle?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with brown hair singing?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what did the old man with silver haired with sun glasses on his eyes?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what did the old man with silver haired a rolling something with on his eyes?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"what drums people dancing?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"drummer\"\n  },\n  {\n    \"question\": \"who is on the water and a man cycling?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is singing all over various places of city with his band?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a rock band doing?\",\n    \"video_name\": \"video9489\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a band preform?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who performs music live?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sang?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who preforms a song in a room?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a musician with long hair perform with?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who sings to an audience?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing for an audience?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar and singing?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"musician\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a musician doing?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is an old clip of a man doing?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man singing for?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who is playing a guitar and singing?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man sing to?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what preforms a song?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who plays guitar?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played the guitar?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does a man sing?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video9490\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a giant drop?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are a woman screaming on?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who sized giant seen biting off?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"goliath\"\n  },\n  {\n    \"question\": \"who is eating a human a man?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are screaming on the ground?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are some naked people out side doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is giant sized humans doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are giants doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a giant doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is small people doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a giant man doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a goliath sized giant seen doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"bite\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a couple of creatures doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a movie scene man naked doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a giant like figure is threateningly doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"spit\"\n  },\n  {\n    \"question\": \"what is movie trailer with giant humans doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a giant drops something and another giant bites a man in half doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"cause\"\n  },\n  {\n    \"question\": \"what does a giant drop on the ground and two people fight for it?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is doing some stuff in a place?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do others on the floor scamper for?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is eating people while small people are at his feat?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is a person doing some stuff?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what does another giant bite a man in half causing to burst into the air?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"blood\"\n  },\n  {\n    \"question\": \"what bites a man in half causing blood to burst into the air?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"giant\"\n  },\n  {\n    \"question\": \"what sized humans eating and playing with regular sized humans?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"giant\"\n  },\n  {\n    \"question\": \"who sized giant seen throwing smaller bodies while others on the floor scamper for food?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"goliath\"\n  },\n  {\n    \"question\": \"what does another giant bite a man in half causing blood to burst into?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what are some naked people out side fighting for?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing in a place?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what is a person doing some stuff in?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a giant has a human in his mouth and doing?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is drinking something from the glass with group of people?\",\n    \"video_name\": \"video9491\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does british boy talk about?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who looks at connections in the back of a computer tower?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is describing the back of a computer?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is explaining parts of a pc?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is showing the vga port on his computer?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is hooking something up?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is fixing a computer?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about his computer?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a guy messing with?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person fixing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is showing how to fix a computer?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a boy hooking up?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who displays the ports on his pc?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a boy showing the vga port on?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person shown talking about?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a boy showing on his computer?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"port\"\n  },\n  {\n    \"question\": \"who is shown talking about a computer?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pointing at a computer tower?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is messing with a computer?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person is shown doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"hook\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy describing the back of?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9492\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"who is getting ready to cut up a pink and white volleyball?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing a special type of colourful ball?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who has a pink volleyball wearing a green hat?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is someone showing a special type of?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is explain about the volley ball?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do guy in baseball cap hold as he speaks?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a man wearing baseball cap holding?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"volleyball\"\n  },\n  {\n    \"question\": \"what is talking with valley ball?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"gay\"\n  },\n  {\n    \"question\": \"what is a men having a ball in?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is one gay talking with?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"valley\"\n  },\n  {\n    \"question\": \"what is a man lifts a white soccer ball with black-and-white zebra patterned stripes and pink panels while doing?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in a hat doing?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a guy in a hat doing?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man with a nike hat doing?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy has a pink volleyball doing?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is one gay doing?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is there is a t-shirt man doing?\",\n    \"video_name\": \"video9493\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"how many persons are talking about some crazy people and their habits?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is an older man in a cowboy hat and a blue shirt doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"how many men are sitting in the room?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what had a old man with blue shirt and black explaining with laugh?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what had a old man with blue shirt and black explaining something with?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is an older man doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is older person in blue shirt talking about?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are a two men sitting in?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is man with black cat sitting on the black chair in?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do a old man in blue dress wearing sitting speaking beside other old man on topic discussing displaying on screen?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what is an old man doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is wearing a black cowboy hat?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who changes into a hat and a blue shirt talking?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who changes into a hat and a blue shirt laughing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what had a old man with blue shirt and black sitting in?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what are many guys doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a blue shirt and black cowboy hat doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some men with southern accents doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a old man in blue dress doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person with blue dress and black hat doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man with black cat doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man with a cowboy had and blue button shirt doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a two men doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in a black hat and blue shirt doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a old man with blue shirt and black had doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is older person in blue shirt doing?\",\n    \"video_name\": \"video9494\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who are talking while one of there is praying?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in an orange robe sitting out?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who does a woman in orange on the ground speak to?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman in a bright orange sari doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who comes in to ask a question?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does another woman come in to ask?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"question\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a lady wearing an orange sari sitting on talking to a lady wearing a green sari?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who dressed in orange speaking with another indian woman?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who bows to another while a person narrates?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman in an orange outfil bestowing knowledge to?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in an orange outfil bestowing to another woman?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"knowledge\"\n  },\n  {\n    \"question\": \"who is a woman in orange performig a cermony with?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman in orange performig with another woman?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"cermony\"\n  },\n  {\n    \"question\": \"what did an indian woman dress in with another indian woman?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"speaking\"\n  },\n  {\n    \"question\": \"what is indian movie doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman in an orange outfil doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"bestow\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a women dressed in an orange sari doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"meditate\"\n  },\n  {\n    \"question\": \"what is a woman in an orange robe doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what does a woman wearing an orange outfit sit on while holding a necklace?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is woman in orange clothing doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a women doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"meditate\"\n  },\n  {\n    \"question\": \"what is looks like a few indian women doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are two woman doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9495\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who puts on boots gets in a truck?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is going to drive a car?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who puts on boots then leaves the house to get into a truck?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts on boots exits a house?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a girl put on boots gets in?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who opens a truck door?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts on boots?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks out a door?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who walks to a car?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is putting on boots?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman walk to?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a woman getting in?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who is walking outside?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman open?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a woman walk out of?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does a woman walk out?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who is getting in a truck?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks out of a house?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when does a girl prepare?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"who is putting on shoes?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a girl walk to?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who prepares for the day?\",\n    \"video_name\": \"video9496\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who strangers a flower?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"how many women hand flowers to people?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man singing with in a music video?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a man singing in as people go?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is playing his guitar in a music video?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a boy play?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy singing in?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who plays guitar?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a guy playing?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who playing the guitar and singing?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing in a park?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man playing in a music video?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man singing strangers?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"where is a boy singing?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who is smelling a flower?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a girl smelling?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"who is singing a song for girl?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man playing the guitar with random clips of two girls handing strangers?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"what is music video with guy doing?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is in a music video a man doing?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man singing and doing?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young man sings outdoors with fans doing?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"who sings about anything being possible while two women hand flowers to people?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man sing about being possible while two women hand flowers to people?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"anything\"\n  },\n  {\n    \"question\": \"who sings while other people hand out flowers?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings outdoors with fans cheering?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing in a crowd as people go?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing with a crowd in a music video?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9497\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a person use a machine to place on a wheel?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"tire\"\n  },\n  {\n    \"question\": \"what does a person use a machine to place a tire on?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what does a person use to place a tire on a wheel?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what are two men in work uniforms racing against the clock building?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"alloy\"\n  },\n  {\n    \"question\": \"what does a man use a large red machine to put a tire on?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"rim\"\n  },\n  {\n    \"question\": \"what is a tire from a racing car quickly being placed on?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"who rim together using a machine?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two men work together to construct in a work shop?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who puts a tire?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men in a ware house working on?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"job\"\n  },\n  {\n    \"question\": \"what does a man use a large red machine to put on a rim?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"tire\"\n  },\n  {\n    \"question\": \"what does a man put?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"tire\"\n  },\n  {\n    \"question\": \"what do a man rim together using?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is recording how the team is changing the tires?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man changing the tires of with other people?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"how many men work together to construct a car in a work shop?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men in work uniforms racing against building alloy tires?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"clock\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is inside a factory there are some people doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is male mechanic in a blue uniform doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are at a racing car garage the man explains that they doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man in a blue polo doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man puts a tire and rim together doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what are two men in a ware house doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are two men in work uniforms doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is changing the tires of a car with other people?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"who uses a large red machine to put a tire on a rim?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who uses a machine to place a tire on a wheel?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is show doing?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"highlight\"\n  },\n  {\n    \"question\": \"who explains that two men are racing against time and also show tires being mounted on the alloy wheels at a racing car garage?\",\n    \"video_name\": \"video9498\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a knife?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a gray haired man hold?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"how many children watch?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is a man holding?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a baby?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men have a conversation in a house while children look on?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does a man holding a baby talk to with a knife?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men talk to one another in a room?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does two children wondering about the adult s?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"how many men talk while three children watch?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a midevil man holding a baby having?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"how many men talk while children watch?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is with his children discussing with another man?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two men talk to one another in?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a man holding a baby talk to a man with?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man is with his children doing?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man with kids doing?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a midevil man doing?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two children doing?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"wonder\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9499\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what does a man walk through a fire station?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"cihldren\"\n  },\n  {\n    \"question\": \"who are two kids being toured around a firehouse by?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many little children follows a man?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who leads two children through a fire station?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the kids follow a fireman though a fire house on?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"tmy\"\n  },\n  {\n    \"question\": \"who does two little children follow?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two kids being toured around by a man?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"firehouse\"\n  },\n  {\n    \"question\": \"what are two excited little children touring?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"station\"\n  },\n  {\n    \"question\": \"what does two little children watch all kinds of motor vehicles and later two kids trying to stand on?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"leg\"\n  },\n  {\n    \"question\": \"who is showing two young boys around the station house?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who points out certain equipment and answers questions?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many little children watches all kinds of motor vehicles and later two kids trying to stand on single leg?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many children does a man lead through a fire station?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two excited little children doing?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"tmy\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is here the man with his kids doing?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what are two small boys doing?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a fireman in a blue shirt doing?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a father doing?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is two little children follows a man and watches all kinds of motor vehicles and later two kids doing?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are the boys doing?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two childs doing?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"how many children is a fireman in a blue shirt showing in winter coats parts of the fire station including the paramedics truck?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids are being toured around a firehouse by a man?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who walks some cihldren through a fire station?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many young boys get a tour of a fire station from one of the firemen?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who takes two children of a tour of the fire house?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many young boys are given a tour of a fire station by a fire man?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many small boys are walking behind a men to see what is there is next room?\",\n    \"video_name\": \"video9500\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a woman frying in a pan?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who shows how to fry croquettes?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is explaining about a recipe?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is teaching how to cook?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman following?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a girl cooking?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a person add some food to pan?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"what is a woman explaining on?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a woman explaining about?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is following a recipe?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking something?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is explaining on cooking?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women demonstrating?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"croquette\"\n  },\n  {\n    \"question\": \"who drops croquets into boiling oil?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is instructional cooking video about doing?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does a person add to a frying pan?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman drops croquets into doing?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who gives cooking instruction while preparing food?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who adds some food to a frying pan?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is frying something in a pan?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman gives doing?\",\n    \"video_name\": \"video9501\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man strum?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does the man play?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person giving?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who strums a guitar?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving guitar lessons?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is teaching how to play guitar?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives tips about musical instruments?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining how to play a specific song on a guitar?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video9502\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman in overalls talking about?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a young woman promoting patch to help?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"what do a girl in white and black strip dress wearing speaking on topic jeans still image displaying on screen?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who is talking about things to do with old jeans?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is listing the best ways to modify old or damaged jeans?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is telling the feature of the ladys jeans?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"beauty\"\n  },\n  {\n    \"question\": \"who discusses patches and tears used on jeans as a fashion statement?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving a fashion tutorial about blue jeans?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about different fashion jeans with supporting clips?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who describes how to repair torn jeans with different patches?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who explains how to repair holes in jeans with other fabrics?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about how jeans with patches or rips is trendy?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in overalls doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"list\"\n  },\n  {\n    \"question\": \"what is a girl in white and black strip dress doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young asian woman doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the beauty women doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a young gal doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a young woman in denim overalls discusses doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"patch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are the jeans displayed to?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"right\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9503\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a small choir of girls in uniform doing?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a group of girls doing?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the girls doing?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a brunette woman with glasses and a black shirt doing?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is there are some women doing?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are girls in private school outfits doing?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are show some dance many girls doing?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are girls in private school outfits dancing in a gym to?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a small choir of girls in uniform standing on a gymnasium floor singing together?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are girls in private school outfits dancing in to music?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what are a group of girls dancing for?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a group of girls dancing in?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"what are black skirt dancing in?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what are dancing in a line?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"skirt\"\n  },\n  {\n    \"question\": \"what is woman in black shirt doing some exercises in?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who is a brunette woman with glasses and a black shirt dancing then a bunch of wearing white shirt?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are the girls in black and white dress dancing on?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are young teen girls singing together while on a indoor basketball court?\",\n    \"video_name\": \"video9504\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman talks about doing?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen doing?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is a female chef in a white coat doing?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman in a chef uniform doing?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a female chef doing?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who picks up?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is a chef about to boil?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"who handles a large crab?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person holding in the hands?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"who picks up a dungeness crab?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what does a chef in a white jacket pick up?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"who picks up a live crab with a pair of tongs?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a female chef in a white coat showing how to cook a crab?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who handles a live crab in the kitchen?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who talks about putting a live crab in a pot to boil?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who prepares to put a live crab in the kitchen in a pot to cook?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who discusses the proper way to cook a crab?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"who gets ready to cook a live crab in the kitchen?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a big crab in the hands?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is about to boil a live crab?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who picks up a crab with tongs?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"sheff\"\n  },\n  {\n    \"question\": \"what does a female chef pick up?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"dungenes\"\n  },\n  {\n    \"question\": \"what does a woman handle?\",\n    \"video_name\": \"video9505\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what tries to give comfort to a child while the child cries on mother s shoulder?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"calico\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"embrace\"\n  },\n  {\n    \"question\": \"what is a white cat with yellow eyes circled in separate brown and black fur looks up leans onto and meows at two people doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is cartoon couples doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a cartoon lovers doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a cartoon cat doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what is an animation clip of a boy and a girl doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is there is a young boy doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is two cartoon characters doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is rubbing up on the legs of two people hugging each other?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what a cartoon dolls kissing each other displaying on screen?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what warms to two hugging girls that are crying?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what dolls cat and dolls kissing each other displaying on screen?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a calico cat try to give to a child while the child cries on mother s shoulder?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"comfort\"\n  },\n  {\n    \"question\": \"who does a calico cat try to give comfort to while the child cries on mother s shoulder?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a small cat doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what is bunch of cartoon characters doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what comes around each other?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who did a girl finally reunite with again?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"what is a cartoon dolls cat and dolls doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what does the child cry on mother s?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"shoulder\"\n  },\n  {\n    \"question\": \"who cries on mother s shoulder?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what takes place between a cat and two people?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"affection\"\n  },\n  {\n    \"question\": \"what is a fat animated cat doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is animated cat warms to two doing?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"who does the child cry on s shoulder?\",\n    \"video_name\": \"video9506\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who is being bathed in milk by the servants?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"mistres\"\n  },\n  {\n    \"question\": \"what are a group of woman doing?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is a woman enjoying?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"spa\"\n  },\n  {\n    \"question\": \"who is sensually rubbed?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a group of women doing?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what are five women doing?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"who is being anointed?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"mistres\"\n  },\n  {\n    \"question\": \"who are five women washing?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the mistress being bathed in by the servants?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what is a woman getting from other women?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what shows a women being touched sensually?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many women are washing a woman?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"who is getting a massage from other women?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who has a massage to music?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman washing with the help of other women?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"who is enjoying the spa?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a group of women rub?\",\n    \"video_name\": \"video9507\",\n    \"answer\": \"eachother\"\n  },\n  {\n    \"question\": \"what is two people are in the garage and doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a person in a garage doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person in brown color dress doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person inside car garrage doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is two people are in the garage and doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is there is a man with specs doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a car restoration professional in his garage shows some of the classic cars to friend who doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man in his garage doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is the man in green t-shirt doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is cars taken apart are in a garage with a man doing?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two people in?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is assempled?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is explaining why a car is a good car to buy for restoration?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wearing glasses and a green shirt talking about the cars in?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what does a man stand by parts of old cars in?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"how many people are in the garage?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is the body of the car displayed in in the car factort?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"secssion\"\n  },\n  {\n    \"question\": \"what do men in a garage talk about they are going to restore?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who stands by parts of old cars in the room?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a person in brown color dress wearing standing inside car garage speaking many cars beside displaying on screen?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do a person inside car garrage standing shoting displaying on screen?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"speaking\"\n  },\n  {\n    \"question\": \"what are cars taken apart in with a man wearing glasses being filmed by a black camera?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"who is explaining about a machine in front of a camera?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining about in front of a camera?\",\n    \"video_name\": \"video9508\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a lady having?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"lipstick\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a lady talking with?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who is having lipstick?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does music and cosmatics products intro?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"advertiesment\"\n  },\n  {\n    \"question\": \"what does a women in blue show?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what is a women doing makeup with brush for?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who is talking with lavender dress?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who sings a song in the background?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do an instagram blogger closing out with a kiss?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what did a woman blow then the a recent video credit is displayed?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who very interested to explain about some beauty matter?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what shows women trying to share something and social network links?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who blew a kiss then the a recent video credit is displayed?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a young woman with a youtube show about makeup advertise?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"episode\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video outro?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many pink lipsticks does a women in blue show?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is this video shows women doing?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a product page demo doing?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"title\"\n  },\n  {\n    \"question\": \"what is this is a home page for doing?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9509\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many pokemon characters scurry off screen?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many pokemon characters talk to each other?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing a pokemon game featuring pikachu?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person playing a pokemon nintendo?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who scurry off screen?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"who runs around in a video game?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"pikachu\"\n  },\n  {\n    \"question\": \"what do two pokemon characters scurry off?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who talk to each other?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is a person playing featuring pikachu?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what play?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a pikachu doing?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is pikachu doing?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a pikachu talking in?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what video game characters going down?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what characters going down a path?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is talking in a game?\",\n    \"video_name\": \"video9510\",\n    \"answer\": \"pikachu\"\n  },\n  {\n    \"question\": \"what is driving?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car drive along?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what follows the car as it drives?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does the camera follow as it drives?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person riding on road?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving down an empty road?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving down a windy row?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is riding red car on road?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does an ad showcasing speeding down a highway?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives along a long stretch of road?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what drives along a road?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what races along a curvy road?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person riding red car on?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is shots of nature in the mountains and then other shots of a car doing?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is test doing?\",\n    \"video_name\": \"video9511\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who discusses an actor that hse has been working with in a movie?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"actres\"\n  },\n  {\n    \"question\": \"what do a girl in black dress color cloth speaking sitting discusing on topic waving displaying on screen?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what do a girl in black dress speaking sitting discusing on topic waving hand displaying on screen?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who discusses working with leonardo dicaprio on entertainment channel?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"actres\"\n  },\n  {\n    \"question\": \"who does a woman with an australian accent and blond hair talk about?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"leonardo\"\n  },\n  {\n    \"question\": \"what is a woman with blonde hair and a black shirt doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who does actress discuss working with on entertainment channel?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"dicaprio\"\n  },\n  {\n    \"question\": \"what is a beautiful lady in black dress telling something interesting to?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does a famous actress discuss that hse has been working with in a movie?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what is sexy blonde in black top doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a beautiful lady in black dress doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a blonde woman talks about how much she liked doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is there is a women in black dress doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a blond woman with long hair doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is model doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a blonde woman in a black shirt doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what does an overly makeuped woman with poofy hair talk at?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a blond woman describes doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a famous actress discusses an actor that hse has been doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a blonde haired woman doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl in black dress color cloth doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is actress discusses doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is the beauty doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"complain\"\n  },\n  {\n    \"question\": \"what does actress discuss working with leonardo dicaprio on?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"entertainment\"\n  },\n  {\n    \"question\": \"what are the players doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a beautiful lady in black dress telling to someone?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is blonde woman in black dress giving?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are the players wearing uniforms madly running here and there to get?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a blonde woman with a tall hairstyle wear?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what does a blonde haired woman wearing a black shirt give?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what do sexy blonde in black top talking to?\",\n    \"video_name\": \"video9512\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is dhoni talking to?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what does a hindi?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"when are a man and woman?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sing?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dance?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is talking to a female?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"dhoni\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an indian couple doing?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is dhoni doing?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is different men and women doing?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is indian people doing?\",\n    \"video_name\": \"video9513\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is filming a white car interior seat?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does toyota s with lot of back seat space?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is displayed on the interior and exterior?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does an advertisement of toyota cars show mirror and driving?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"safety\"\n  },\n  {\n    \"question\": \"who is talking about the interiors of a white car?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explains the many features of a sports utility vehicle?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about the new suv with anti brake system and rear window wiper?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a white color car doing?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what is a car parking on road and doing?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is grey toyota suburban advertisement with female voice doing?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"concern\"\n  },\n  {\n    \"question\": \"what is the inside of an suv is displayed while doing?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what s new car with lot of back seat space?\",\n    \"video_name\": \"video9514\",\n    \"answer\": \"toyotum\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what does a group sing for?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what sings for a video?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do african kids sing a song of?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"hope\"\n  },\n  {\n    \"question\": \"who sings a song on stage?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays while some men playing instruments?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what plays while there are scenes of children singing?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is playing a guitar for some kids?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men playing guitar for black kids?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men singing guitar for black kids?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9515\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is at a doing?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what is audiences at soccer games doing?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are events of unrest doing?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"occur\"\n  },\n  {\n    \"question\": \"what are fans doing?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are fireworks doing?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"explode\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what are soccer fans doing?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"what is about to start?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what was unfurled that stated money matters more than football at a sporting event?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what form various complex designs at sports games?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what does signs at a variety of soccer match are holding up?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what was a flag unfurled that stated money matters more than at a sporting event?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what a group of people in a stadium wave?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what are people cheering at?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what does not load?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are occurring at a soccer field?\",\n    \"video_name\": \"video9516\",\n    \"answer\": \"unrest\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what are a woman and man doing?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are two men and a woman doing?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people speaking to while shots of them in a kitchen are interspersed?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are two men and a woman talking on in front of a bank of theater seats?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who tries to open a water bottle?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a fat man try to open?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what do a man and woman talk in?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are a woman and man talking on?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who showed on television?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are a man and woman speaking directly to?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what did a fat man show on?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a man setting?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are people cooking?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is setting the table?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video9517\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are judges doing?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"what is a video from the voice of people doing?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"celebrate\"\n  },\n  {\n    \"question\": \"who is about to singing on stage in front of judges?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who takes a bow?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who are judges judging?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is a woman singing?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do people perform on?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"when do men back?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does the girl take?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a girl in a red skirt prepare to perform on?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is singing on stage for judges?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is preparing to sing to a panel of judges?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9518\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when do a group of young men sing?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a chinese boy band doing?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"boyband\"\n  },\n  {\n    \"question\": \"when does an asian rock band perform?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what performs for a crowd?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does boy band perform for?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"when does an asian boyband sing?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a live performance?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is giving a concert performance?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when do a group of men sing together?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a band giving?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what does a boy band do?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"what do k pop performing?\",\n    \"video_name\": \"video9519\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a fat guy with a tie doing?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man is been arrested by doing?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"lock\"\n  },\n  {\n    \"question\": \"what is restraints are put on a mans ankles doing?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the video is of movie footage doing?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man on a death chair while he doing?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a prison inmate being tied down to a chair by?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what are man and woman in?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who are in the room?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is watching a bystander?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are man and woman having in the room?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who is been arrested by locking him with chain?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a prison inmate being tied down to by the police?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who are having conversation in the room?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a prisoner attached to an electric chair and stares down?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"executioner\"\n  },\n  {\n    \"question\": \"who is a man watching?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"bystander\"\n  },\n  {\n    \"question\": \"what are man and woman having conversation in?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is attached to an electric chair and stares down his executioner?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"prisoner\"\n  },\n  {\n    \"question\": \"who is a fat guy with a tie looking at?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a prisoner being strapped into an electric chair watched by in a suit?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a prisoner being strapped into an electric chair watched by a man in?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"suit\"\n  },\n  {\n    \"question\": \"who is being tied down to a chair by the police?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"prison\"\n  },\n  {\n    \"question\": \"what might be occuring a prisoner is being tied down by police officer?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"execution\"\n  },\n  {\n    \"question\": \"who are restraints put on a mans ankles sitting in an electric chair is surrounded by guards in a barred room?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is of movie footage showing quinton tarrentino being fastened into an electric chair?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who do people strap s arms and legs to an electric chair?\",\n    \"video_name\": \"video9520\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is listening to a heated conversation between four men?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who walks near a bunch of men talking?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is passing by a jolly group of men?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who looked troubled?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who are a group of men looking at?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman walk along?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"roadside\"\n  },\n  {\n    \"question\": \"what indian movie scene?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"south\"\n  },\n  {\n    \"question\": \"who walks along the roadside?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a south indian?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is teased by men and she stares at them?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what is a hooded woman doing?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman walks near a bunch of men doing?\",\n    \"video_name\": \"video9521\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is a celebrity doing?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"comedian\"\n  },\n  {\n    \"question\": \"what is robin williams performing?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"routine\"\n  },\n  {\n    \"question\": \"when is a man performing?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does robin williams doing stand up?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"who is talking on the stage?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what wiliams performing a stand up comedy act?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"robin\"\n  },\n  {\n    \"question\": \"when is a man talking?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is giving a presentation on stage?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does robin wiliams performing a stand up?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"who does stand up?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"robin\"\n  },\n  {\n    \"question\": \"who is doing startup comedian?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who speaks on a stage?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"robin\"\n  },\n  {\n    \"question\": \"who is performing a comedy routine?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"robin\"\n  },\n  {\n    \"question\": \"what williams doing stand up comedy?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"robin\"\n  },\n  {\n    \"question\": \"who is performing on stage?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does robin williams speak?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is robin wiliams doing?\",\n    \"video_name\": \"video9522\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are a group of children running across a field of grass a group of children are chasing a boy carrying?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is being chased in a ruby game?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what does a young boy with a football run through for a touchdown in a youth league football game?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"defense\"\n  },\n  {\n    \"question\": \"what do young children play tackle the white team attempts to prevent the red and blue team from scoring?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are running?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are scoring a point?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what does a small child in a jersey rush down with an american football in his arms past all the other players and scores?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are fighting for the ball?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are group of people scoring?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what are group of people fighting for?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are two teams playing on a football field?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are the boys running in the field playing?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who has a great run playing football?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is being played a two teams wearing helmets?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"what are the boys running in playing football?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where are the boys running playing football?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who are a group of children running across a field of grass a group of children are chasing carrying a football?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is the two teams doing?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does hip hop music playing in the background at a kid s?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is young children play tackle football the white team attempts to prevent the red and blue team from doing?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is two teams doing?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many teams are playing football on a football field?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do young children play tackle football attempts to prevent the red and blue team from scoring?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what are a goup of children wearing protective football gear a group of children are playing?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are a goup of children wearing a group of children are playing football?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"protective\"\n  },\n  {\n    \"question\": \"what do little boys running inside ground running chasing holding ball in hand dash displaying on?\",\n    \"video_name\": \"video9523\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do adventure time cartoom?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what are some anime s doing?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"when are eating something?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what are some anime s eating?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"when cartoom clip?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"adventure\"\n  },\n  {\n    \"question\": \"what is little cartoon faces opening and closing mouths and one purple one just doing?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what do many faces eat endlessly in?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what open their mouths?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are chewing something?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"mnay\"\n  },\n  {\n    \"question\": \"what are mnay animated cells chewing?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are in a cartoon television show characters doing?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is an animated of doing?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"chomp\"\n  },\n  {\n    \"question\": \"what is a school of doing?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"chomp\"\n  },\n  {\n    \"question\": \"what is a cartoon of a bunch of angry doing?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are a bunch of cartoon faces doing?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"chomp\"\n  },\n  {\n    \"question\": \"what are a bunch of baby creatures doing?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"beg\"\n  },\n  {\n    \"question\": \"what are characters eating little bits of in a cartoon television show?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is shown from a cartoon on cartoon network?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what are a bunch of baby creatures begging for?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are mnay animated cells doing?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"chew\"\n  },\n  {\n    \"question\": \"what is a scene shown from on cartoon network?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a scene shown from a cartoon on?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is from the adventure time tv show?\",\n    \"video_name\": \"video9524\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is a clip of a chef doing?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what does the person flay?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a chef slice up?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is cleaning fish?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is dissecting a fish?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices up a fish?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who gutting a fish?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being analyzed for its anatomy?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what does a man gutting?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who flays the meat?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is fileted with a sharp knife?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is explaining the parts of the fish?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man cutting out the guts of?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man showing the different internal organs of?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man cutting while a person is explaining the parts of the fish?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is cutting out the guts of a fish?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing the different internal organs of a fish?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting open a fish while a person is explaining the parts of the fish?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining the parts of?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is the shark being analyzed for?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"anatomy\"\n  },\n  {\n    \"question\": \"what is person cleaning?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is men teach people the different parts of a fish while doing?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is men dissect a fish doing?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is being butchered?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man dissecting?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9525\",\n    \"answer\": \"dissect\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this is a video of someone doing?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who gets into a car?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a man entering?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does video game character get into?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who fastly get in to the car?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is entering a car?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running across a dark street?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running in a video game?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man fastly cross the road by?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what do a man fastly cross by run?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a video game character driving?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what play footage of grand theft auto?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person riding in in a video game?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who fastly cross the road by run?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets into a car in grand theft auto 5?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is walking around on grand theft auto?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is riding in a car in a video game?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a man fastly get in to?\",\n    \"video_name\": \"video9526\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is putting dirt into a container?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is outside mixing dirt with paper?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting dirt into?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"who is mixing up dirt and paper in a container?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting paper and a sand together in a box talking about that in a outside?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting paper in a tub of soil?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mixes dirt and various other sundries in a box?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to prepare a compost bin?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is putting paper and dirt in a box?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man is outside doing?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man putting in a tub of soil?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man run his hands through?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what is being made in a tray?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"compost\"\n  },\n  {\n    \"question\": \"what is someone putting in a box?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a compost being made in?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"who makes a compost box?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting into a container?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"who describes what makes a good soil?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who works in a garden?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown doing gardening?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man make?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"compost\"\n  },\n  {\n    \"question\": \"what does a man work in?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"who runs his hands through some dirt?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone putting paper and dirt in?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who is making a compose for his flowers?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man mixing up in a container?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man mixing up dirt and paper in?\",\n    \"video_name\": \"video9527\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man produces smoke by doing?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what is a man rubbing?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"material\"\n  },\n  {\n    \"question\": \"what s burning?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"material\"\n  },\n  {\n    \"question\": \"what does a man do?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who does science?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing a science experiment?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man produce by rubbing his fingers together?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"who rubs something in between his thumb and forefinger to create smoke?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is then making a battery rotate to create a tiny motor?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rubbing oil between two fingers?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is rubbing some material?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person rubbing between two fingers?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who produces smoke by rubbing his fingers together?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man then making rotate to create a tiny motor?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"who makes smoke come from his fingers?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rubbing his fingers together to produce smoke?\",\n    \"video_name\": \"video9528\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do people at an autoshow overlook a large engine in?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did a car with the front part open displaying?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what are group of people checking out in a car show?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are reviewing the black car which looks amazing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what are checking out a car in a car show?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is a bunch of men doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what do a group of man stand and observer the engine of a car at?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"expo\"\n  },\n  {\n    \"question\": \"who is standing around with a group of people showing of the inside of his car?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do several people inspect built car?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"custom\"\n  },\n  {\n    \"question\": \"what were a group of men watching in the new car?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are the men looking at the car parts and accessories at?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"exhibition\"\n  },\n  {\n    \"question\": \"what is the internal structures of a car shown with?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is crowd doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what are several men doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what do several people inspect a beautiful custom built?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what were a group of men doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a car with the front part opened doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what do people at an autoshow overlook in a car?\",\n    \"video_name\": \"video9529\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is jeremy clarkson doing?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is jeremy doing?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is television presenter jeremy clarkson doing?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is the narrator doing?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is talking about constructing an electronic car?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the intelligence of a vehicle?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man describe the intelligence of?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is talking about an electric car?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"clarkson\"\n  },\n  {\n    \"question\": \"what is the narrator describing?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is jeremy describing?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is describing a car?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"jeremy\"\n  },\n  {\n    \"question\": \"who is describing the machine?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is describing about the base of a car?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown describing the chassis of a car?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a racing car?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is television presenter jeremy clarkson describing the inner workings of on display in a parking lot?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who discusses the details of a bettery operated vehicle?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates as the inner workings of an atv are shown?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the drive system of an electric car?\",\n    \"video_name\": \"video9530\",\n    \"answer\": \"clarkson\"\n  },\n  {\n    \"question\": \"who interviews a person on camera?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a television program host talking with?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"interviewer\"\n  },\n  {\n    \"question\": \"who talks about fake molotov story?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"colbert\"\n  },\n  {\n    \"question\": \"who talks about throwing molotov cocktails?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"stephen\"\n  },\n  {\n    \"question\": \"who is talking about not throwing maltov bottles?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something to a man?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man talking about throwing a bottle light on?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who colbert talks about throwing bottles?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"stephen\"\n  },\n  {\n    \"question\": \"what is stephen colbert doing?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is stephen colbert talks about doing?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is stephen colbet talks about doing?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who do a man talking to a talk show?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a television program host doing?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who colbert interviewing a man?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"stephen\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does guys talk about?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"cocktail\"\n  },\n  {\n    \"question\": \"what is interview about doing?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do stephen colbert interviewing?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is interviewed for a video?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"stephen\"\n  },\n  {\n    \"question\": \"who is talking to another man?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is stephen colbert interviewed for?\",\n    \"video_name\": \"video9531\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a black suit doing?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person in black color dress doing?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who talks about the rise and fall of robert downey jr s career and personal life?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the person talk that in hollywood everyone is having some kind of?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"what does the person talk that in everyone is having some kind of problem?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"hollywood\"\n  },\n  {\n    \"question\": \"who talks that in hollywood everyone is having some kind of problem?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a woman talk about the rise and fall of robert s career and personal life?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"downey\"\n  },\n  {\n    \"question\": \"who is shown in many different situations from movies to jail in a jumpsuit?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"what jr on the cover of a magazine then in cuffs being led out of a courthouse?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"who is making various facial expressions in at attempt to resemble someone famous?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the man first hold then is arrested and is in court?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"award\"\n  },\n  {\n    \"question\": \"what does a man on a magazine cover then hold then goes to jail then plays on a movie?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"award\"\n  },\n  {\n    \"question\": \"what does a man on a magazine cover then hold an award then goes to jail then plays on?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who first holds an award then is arrested and is in court?\",\n    \"video_name\": \"video9532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is woman in blue shirt doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman sits in driver seat of car and pulls adjustment lever to move doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"steer\"\n  },\n  {\n    \"question\": \"what is a man in sunglasses talks to the camera while doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is women in casual wear doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is the woman in blue t-shirt doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with glasses doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the women doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man dressed in a blue shirt demonstrates how the tilt of a doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"steer\"\n  },\n  {\n    \"question\": \"what is a woman discusses the adjustable doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"steer\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"adjust\"\n  },\n  {\n    \"question\": \"what is a woman in blue doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a woman in blur wearing spects doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is lady on the wheel doing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman in blue driving?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a lady in the blue tshirt start?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a lady on with stearing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is on the car with stearing?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who sits in a car?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man with glasses saying?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a woman sit in?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man with glasses driving?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a woman pull adjustment lever to move?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what do women in casual wear lifting?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"steering\"\n  },\n  {\n    \"question\": \"what does a woman pull to move steering wheel positions?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"adjustment\"\n  },\n  {\n    \"question\": \"who pulls adjustment lever to move steering wheel positions?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses the adjustable steering wheel of an automobile?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man in sunglasses talk to while sitting in a car?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who wearing a blue shirt inside a car explaining some of the features of the car?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who advises on how to use a steering wheel?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sits in driver seat of car?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman in blur wearing spects sitting in?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what illustrates how to use adjustable steering mechanism?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"volkswagen\"\n  },\n  {\n    \"question\": \"what do a woman wear a blue shirt inside explaining some of the features of the car?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a woman wear inside a car explaining some of the features of the car?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what does a woman discuss the adjustable steering wheel of?\",\n    \"video_name\": \"video9533\",\n    \"answer\": \"automobile\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"kickball\"\n  },\n  {\n    \"question\": \"what are some people showing?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does man play outdoors?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who kick ball?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a game outdoors?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what do guys talk about?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"knuckleball\"\n  },\n  {\n    \"question\": \"who is introducing a game of kick ball?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a ball and talks to a friend?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man introducing a game of?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"how many men participating in kickball and talking about pitching a knuckle ball?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who do a few guys play?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"kickball\"\n  },\n  {\n    \"question\": \"what do guy playing dizzy kick?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who demonstrates about a particular ball?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do some men play a game of?\",\n    \"video_name\": \"video9534\",\n    \"answer\": \"kickball\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a red sports car doing?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a man test doing?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man drives a sportscar car while doing?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a ferrari doing?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a red sport car doing?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a fast car?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone driving?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives a sports car on a winding road?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"who is talking about a sports car he is driving?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a sportscar car while reviewing it?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car on the road?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man drive while reviewing it?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"sportscar\"\n  },\n  {\n    \"question\": \"who does mechanics s is talking about a car?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man test drive on a winding road?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who test driving an expensive red car?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person driving a car on?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person driving on the road?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does mechanics s a man is talking about?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is racing through the streets?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"ferrarus\"\n  },\n  {\n    \"question\": \"what is driving the car?\",\n    \"video_name\": \"video9535\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman with red hair doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what is there is a woman with short hair doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman in black doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with red hair delivering on television?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what do the woman wearing the black dress sit at?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what is a lady in the black dress speaking about the news which given in?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"twitter\"\n  },\n  {\n    \"question\": \"who did lady news reporter speaking about a convict?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"killer\"\n  },\n  {\n    \"question\": \"who is talking about viewers response to a story?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who talks about some of the lastest news?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is presenting live on tv at the sky news studio?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"journalist\"\n  },\n  {\n    \"question\": \"who is advising viewers to tweet opinions about a previous story?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"anchor\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman with red hair delivering the news on?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is news reporter doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a journalist doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is kay burley doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is lady news reporter doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is an anchor woman doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"advise\"\n  },\n  {\n    \"question\": \"what is a lady in the black dress doing?\",\n    \"video_name\": \"video9536\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a cartoon man doing?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is animated comic scene of guy doing?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a knife expert doing?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cartoon man doing?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is a cartoon about a man doing?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who plates dinner for his date?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a server rambunctiously prepare s entree tableside?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who prepares a woman s entree tableside?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"server\"\n  },\n  {\n    \"question\": \"what does a server rambunctiously prepare a woman s tableside?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"entree\"\n  },\n  {\n    \"question\": \"who cuts up some food to show off to a woman?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man cut up some food to show off to?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting the fruits using knife?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a man cut up to show off to a woman?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what does an animated character jump up from?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who jumps up from the table?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what shown here with one male and one female character?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"who wields a knife?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon man wield?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does a 3d?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who chops and plates some food?\",\n    \"video_name\": \"video9537\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man in glasses doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man talks about his film preferences while doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is there is a old man doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a old man with white hair doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a couple of men doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what covers for movies are being shown?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"dvd\"\n  },\n  {\n    \"question\": \"who is a man talking to about movies?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes about his favorite movie to someone?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"sirector\"\n  },\n  {\n    \"question\": \"who is talking to another man about movies?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in glasses sitting in talking about different movies that are available for streaming?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is explaining how to use a program to watch movies?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing the movies you can access on a particular website?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his film preferences while showing many thumbnails?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a couple of men talking about movies that displayed on?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what discusses graphical interface of console displaying streaming movies?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is several movies on a screen and a mouse doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is short video of a man with glasses doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is show discusses graphical interface of console doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9538\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"sample\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are 2 men doing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two men have a sampling of mexican food in front of them at a table and doing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two men talk about the food they doing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what do two younger guys try?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who talks to him?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men describing?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"everything\"\n  },\n  {\n    \"question\": \"what do two men have a sampling of in front of them at a table?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many men try mexican food?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men have a sampling of mexican food in front of them at?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"how many people are eating food?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men talk about they are eating?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do the men eat?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do two men discuss?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are 2 men eating?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many guys are sampling different types of food?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men have a sampling of mexican food in front of them at a table?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men talk about the food they are eating?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are sitting in front of a lot of food?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many younger guys try some mexican food?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is eating while another man talks to him?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are describing everything?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two guys sampling different types of?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many men discuss mexican street food?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two people eating?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do two men try?\",\n    \"video_name\": \"video9539\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a lady with a cucumber in front of her doing?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in the kitchen doing?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"sugar\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"dehydration\"\n  },\n  {\n    \"question\": \"what is woman preparing?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman talking in?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking in the kitchen?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking in a kitchen?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about dehydration?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about sugar cravings?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about in a kitchen?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman talking about some food in?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who talks about symptoms of dehydration?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in the kitchen talking about?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"health\"\n  },\n  {\n    \"question\": \"what is a woman talking about while standing in the kitchen?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"dehydration\"\n  },\n  {\n    \"question\": \"who is talking about some food in a kitchen?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about the symptoms of dehydration?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about dehydration while standing in the kitchen?\",\n    \"video_name\": \"video9540\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who sings into a microphone on stage?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings for judges?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who preforms on a singing competition?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who is speaking about the video games?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a girl singing on stage for the show?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing on a television show while judges listen from behind large chairs?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who s girl sings love song on stage?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who does voice kid s sings love song on stage?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young girl in a cheetah dress sing on?\",\n    \"video_name\": \"video9541\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who jumps over another player?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are shown on vine?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who does a football player jump over?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what are football videos shown on?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"vine\"\n  },\n  {\n    \"question\": \"what does football highlight with playing?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a football highlight video show?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"amazing\"\n  },\n  {\n    \"question\": \"who are catching?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who are running?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what highlights with music playing?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who highlights are shown to weezer?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"nfl\"\n  },\n  {\n    \"question\": \"what is a bunch of football clips about players making good plays?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are shown performing impressive feats?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is various types of doing?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what is various football players are shown doing?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are football players making during their games?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"amazing\"\n  },\n  {\n    \"question\": \"what is rugby players doing?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is two football teams doing?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is football players doing?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are american football players doing?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"who are making amazing plays during their games?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9542\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what game where players are running and walking across a field?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"where do football players practice in a stadium before a game?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who practice on the field in a stadium before a game?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what do football players practice on in a stadium before a game?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are men throwing on a baseball feild?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a football quarterback throw?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are people walking on?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a man catch?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is displayed?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a football team doing?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a football team doing?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are football players doing?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is football players are shown doing?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is football players doing?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is football players doing?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"tos\"\n  },\n  {\n    \"question\": \"what are on a baseball feild men doing?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does the player toss?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a football player walk onto?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what do football players practice on the field in a stadium before?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do football players practice on the field in before a game?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"where does the player walk?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does the player walk on?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who tosses the ball?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who warm up prior to a game?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who are shown throwing footballs?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is playing on a green field?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who throws the ball?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"quarterback\"\n  },\n  {\n    \"question\": \"where are people walking?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who walks onto the field?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who are practicing throws?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who catches a football?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks on the field?\",\n    \"video_name\": \"video9543\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is a video game finishes then there is a donkey kong doing?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is diddy kong doing?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a finish screen is shown and a game character doing?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does the monkey dance in?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"celebration\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do a bonus round in?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what dances in celebration?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a video game monkey doing?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is diddy kong jumping in?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"what is enacted?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what round in donkey kong?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"bonu\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is jumping in mario party?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"diddy\"\n  },\n  {\n    \"question\": \"what do characters from mario party fly around?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is dancing in the middle of the screen?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who does a video game finish then there is kicking items into barrels?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"donkey\"\n  },\n  {\n    \"question\": \"what finishes then there is a donkey kong kicking items into barrels?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is shown here?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9544\",\n    \"answer\": \"finish\"\n  },\n  {\n    \"question\": \"what persons laughing and sitting and speaking displaying on screen?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who talks to a prisoner about what he is going to do with him?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who do brad pitt talking to?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does two man talking seriously about?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what pitt talking to another man?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"brad\"\n  },\n  {\n    \"question\": \"what is a guy in black shirt and a cap doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a clip from the movie inglorious bastards and people doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is two mans doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are a two men doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many army men are talking each other in front of a dilapidated building?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking in the television channel?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a clip from the movie inglorious bastards and people are laughing in?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is a guy in black shirt and a cap talking to?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two army men doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is brad pitt doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a couple of men doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a movie scene persons doing?\",\n    \"video_name\": \"video9545\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"who is walking through the woods in a thick brush area?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who walks down a steep hill in a wooded area?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man in army green clothes doing?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what are we doing?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a forest grass land trees person doing?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is army man doing?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who cuts down some vines?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks down the hill near the huge green trees?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what land trees person walking inside displaying on screen?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"who climb down the hill near the big trees?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking through the jungle before he cuts down some vines?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking down a decline in a thick forest?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man walking throw a forest with dry leaves on?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who gets down the mountain for trecking and enjoying?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking in the mountain through bad path?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man walking throw with dry leaves on the ground?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what is man walking in the mountain through?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what did a man walking in the forest and cut?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is man walking in through bad path?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what cuts branches of bushes?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man walking through before he cuts down some vines?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"jungle\"\n  },\n  {\n    \"question\": \"who threw a forest with dry leaves on the ground?\",\n    \"video_name\": \"video9546\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is someone folding a paper for?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone for paper craft?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is giving an origami tutorial?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is folding origami?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is a man folding a piece of?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man fold a piece of on a tabletop?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone giving?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"tutorial\"\n  },\n  {\n    \"question\": \"what is a man folding a green piece of?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man fold a piece of green paper on?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"tabletop\"\n  },\n  {\n    \"question\": \"who is folding a green piece of paper on a table?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folds a piece of green paper on a tabletop?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding a green piece of paper?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing step in folding a piece of paper known as oragomy?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a tutuorial on folding origami?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person folding a green piece of paper on?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a person folding a green piece of on a table?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is showing how to make an origami model?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding a paper for paper craft?\",\n    \"video_name\": \"video9547\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is there are two men doing?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is soldiers doing?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man in a jacket and sunglasses doing?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is two people engaged in doing?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man speak to outside?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people engaged in talking here?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are speaking?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who speaks to another man outside?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a person giving interview to?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to another man on a shooting range?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men speak to one another at a shooting range?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking about increases in an unknown subject?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving interview to a man?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person giving to a man?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who asks questions at a gun range?\",\n    \"video_name\": \"video9548\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what does sopmeone use while using an application?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what are done using the software?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"dna\"\n  },\n  {\n    \"question\": \"what are dna models done using?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is manipulated?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is dna models are done doing?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is some science and dna doing?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is sopmeone uses his computer while doing?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is an arrow doing?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a science or biology animation doing?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"illustrate\"\n  },\n  {\n    \"question\": \"what points at different areas on a screen then goes to it?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"cursor\"\n  },\n  {\n    \"question\": \"what is some one opening from a computer?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what plays an important role in organic chemistry?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"formula\"\n  },\n  {\n    \"question\": \"who uses a computer program to work on atom structures?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"who is creating graphics on a computer via an application?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who uses his computer while using an application?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"sopmeone\"\n  },\n  {\n    \"question\": \"what does a scientist use to work on atom structures?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who shows how to use a computer program?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is some one opening a saved program from?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what plays while a computer program is manipulated?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is adjusting settings a person is working on graphics on the computer?\",\n    \"video_name\": \"video9549\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"wax\"\n  },\n  {\n    \"question\": \"what is a woman puts is shown doing?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"wax\"\n  },\n  {\n    \"question\": \"what is a woman rubbing?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what does a woman wax?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what is a woman demonstrating?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"removal\"\n  },\n  {\n    \"question\": \"what do the girl hand stick?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"sticker\"\n  },\n  {\n    \"question\": \"what stick the sticker?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is demonstrating hair removal?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone sticking plastic sheet on?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who demonstrates how to wax arm?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a girl wax using a strip?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a woman use tape to remove hair from?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"forearm\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9550\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what does a man describe the instrument panel in?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who shows the inside of his car?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pointing at his cars dashboard?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man describe in his car?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"instrument\"\n  },\n  {\n    \"question\": \"what is a person showing the interior of?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man show the inside of?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man review in a car?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"dashboard\"\n  },\n  {\n    \"question\": \"what do the console of?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person in?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is in a car?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man showing a car s?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"stereo\"\n  },\n  {\n    \"question\": \"what does a man review some dashboard features in?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is speaking about the audio system?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"who reviews some dashboard features in a car?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes some features on the inside of his car?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens a compartment in the car?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the controls in his car?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the instrument panel in his car?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing s stereo system?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is showing a car s stereo system?\",\n    \"video_name\": \"video9551\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what play?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing video game?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows off his minecraft mansion?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does someone perform?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"walkthrough\"\n  },\n  {\n    \"question\": \"what does a narrator explain?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does man show off?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a video game character explore world?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is talking while playing a video game?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a video game while narrating?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who enters a house in minecraft?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is discussing the video game he is playing?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone playing while narrating?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who performs a minecraft walkthrough?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man discussing he is playing?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who explains minecraft play?\",\n    \"video_name\": \"video9552\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what do two women talking about a japanese face?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"wrap\"\n  },\n  {\n    \"question\": \"how many girls play with a sex toy?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who explains the meaning of a product?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a lady explain the meaning of?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"how many women are showing off a product?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing in the beach?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are discussing?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two women show off on camera?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"how many women show off a product on camera?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are discussing a product?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls open a product?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women use a strange product?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who tries on a face strap that s supposed to make the face smaller?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are trying on a kogoa which means small face?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are two women discussing?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what do two girls open?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what do two women use?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what do two women show off a product on?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"how many women are talking about a new product?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women showing off?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what is a young woman playing in?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is ladies doing?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do two women trying a japanese face?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"mask\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video9553\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"weapon\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man holds a stick while doing?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man who looks like a shepherd doing?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who holds a very large stick?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people playingg?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is there are people doing?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is holding a weapon?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a stick while talking to a croud?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man hold while talking to a croud?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what does a woman in a white gown address?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is talking to a beautiful princess with a crowd of people present?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to pricess?\",\n    \"video_name\": \"video9554\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do two children walk while another follows?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what are kids wearing?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"who takes off?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do two boys walk?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"how many boys walk home?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is following two other kids?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many children walk home while another follows?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are seeing very sad?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is one woman hands her biking helmet to another before doing?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people with back packs doing?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some kids doing?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two kids doing?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who follows two boys?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does one woman hand to another before walking away to a boy s house?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"biking\"\n  },\n  {\n    \"question\": \"how many boys does a girl follow?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys looked troublesome?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many other kids is a girl following?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who runs after two other children?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is following a boy and a girl?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who chases after two boys while they walk home?\",\n    \"video_name\": \"video9555\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what does a woman show while talking?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"vitamin\"\n  },\n  {\n    \"question\": \"what is choclate taken from?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"fridge\"\n  },\n  {\n    \"question\": \"what is taken from the fridge?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"choclate\"\n  },\n  {\n    \"question\": \"what is a woman giving a tour of?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"refridegerator\"\n  },\n  {\n    \"question\": \"what is a woman wearing a watch showing off?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"protein\"\n  },\n  {\n    \"question\": \"what is person showing the ingredients and chocolates in?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"fridge\"\n  },\n  {\n    \"question\": \"what is a woman having a varieties of?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who is showing the ingredients and chocolates in the fridge?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"who is having a varieties of a chocolate?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is refrigerator doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman shows her vitamin supplements while doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9556\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man with a long beard doing?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a guy with a beard doing?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in white coat doing?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a muslim reporter doing?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a light color jacket and a black shirt doing?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with a beard doing?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is long bearded man with bald head doing?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is two persons doing?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man with a beard interviewed on sky news on?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man with a beard discussing?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what is a man with a beard interviewed on on the street?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who did the tv channel telecast the is john identified?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"terror\"\n  },\n  {\n    \"question\": \"what scrolls on the bottom of the screen?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is giving his story on the news answering a question by claiming the asker is being racist?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a bearded man in a light tan jacket and black turtleneck on camera while news text scrolls on the bottom of the screen?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"sweater\"\n  },\n  {\n    \"question\": \"what does an interview with a commentator from local community about someone and the commentator speak about?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"islamophobium\"\n  },\n  {\n    \"question\": \"what telecasted the is terror jihadi john identified?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"who is speaking about why the question he was asked is racist?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what did a man with a long beard standing infront of on the street?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what did a man with a long beard standing infront of a shop on?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a bearded man giving on the news answering a question by claiming the asker is being racist?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"what is long bearded man with bald head facing?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is being interviewed on a news segment about jihadi john?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a bearded man giving his story on answering a question by claiming the asker is being racist?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what did a bearded man in a light tan jacket and black turtleneck sweater talks on while news text scrolls on the bottom of the screen?\",\n    \"video_name\": \"video9557\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"mine\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game is played that involves doing?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"destroy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is mining something in minecraft?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is played that involves destroying things?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is being played?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing video game?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what that talks about a video game?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9558\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who hugs another man?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men talking together inside of?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who a man hugs?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men having?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are talking together?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who is shaking hands?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to another man?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many actors have a discussion behind the scenes of a television show?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to a guy on the same show?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to another man for an interview?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking together inside of a room?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people talk about their friendship on a tv show?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many men are talking to eachother?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do andy and gerry from parks and recreation make?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"pact\"\n  },\n  {\n    \"question\": \"who pratt hugs another man?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"chri\"\n  },\n  {\n    \"question\": \"how many men are having a conversation?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two actors have behind the scenes of a television show?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a clip from the tv show parks & recreation doing?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is an old man doing?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is jerry and andy doing?\",\n    \"video_name\": \"video9559\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are students in?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"what does a woman walk into?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what do students listening lecture in?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who is talking some incident?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about some technology?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is pedagogy is displayed?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"session\"\n  },\n  {\n    \"question\": \"who walks into a classroom?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy in suit and tie doing?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are students doing?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person talking?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"incident\"\n  },\n  {\n    \"question\": \"what are the students doing?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks about technology in future careers for students?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is students doing?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"who discusses technology for young adults students?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to get in touch with his daughter?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about penn manor?\",\n    \"video_name\": \"video9560\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who miss shots?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do an nba?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what plays over two teams?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"who got blocked?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a basketball team playing?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what did basketball game set to?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who are playing basketball?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what set to music?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is going on between two teams wearing red and white?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"how many basketball players miss shots?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what play on the court while music plays over them?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who leaps into the crowd to save the ball?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what plays while footage of a basketball game is aired?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many basketball teams play on the court while music plays over them?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are basketball players playing?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do two basketball teams play on while music plays over them?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a basketball team doing?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are basketball players doing?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is player doing?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video9561\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is driving on a test track?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving on a road?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what tomich reviewing the honda civic?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"gabriel\"\n  },\n  {\n    \"question\": \"what do gabriel tomich reviewing civic?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"honda\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what weaves around a turn?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a car weave around?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is driving fast?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving a car on?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man telling?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a new car on?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a silver car on?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is on the road?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about a silver car?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is telling the news?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is on a track?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a spanish announcer doing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is driving a car on a road?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is gabriel tomich doing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is an older reporter doing?\",\n    \"video_name\": \"video9562\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a cartoon boy doing?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a person is warned about doing?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is character doing?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a carton girl doing?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who does a cartoon show being attacked by a squid?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is swimming in water when a creature with three tentacles appears?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who jumps on a rock as another encounters danger in the water in a clip for an animated show?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs around the room?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does an animated character run around?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what was funny?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who is swimming?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon show a boy being attacked by?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"what is a person warned about swimming in?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is telling a cartoon boy to get out of the water?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"carton\"\n  },\n  {\n    \"question\": \"what is character swimming in when a creature with three tentacles appears?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is a carton girl telling to get out of the water?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what shows a boy being attacked by a squid?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is warned about swimming in the water?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does one man jump on as another encounters danger in the water in a clip for an animated show?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what are the main characters going on in a cartoon television show?\",\n    \"video_name\": \"video9563\",\n    \"answer\": \"adventure\"\n  },\n  {\n    \"question\": \"who folds a piece of paper into origami?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who folding a piece of paper into a paper airplane?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a paper for paper craft?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a person folding a piece of into a paper airplane?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man fold a piece of into origami?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone folding a paper for?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone for paper craft?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who video of a man folding?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"oragami\"\n  },\n  {\n    \"question\": \"who is folding origami?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man fold a piece of paper into?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is doing origami?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man showing some craft?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what did a person teach the making?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is someone?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is video of a man doing?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who taught the making paper models?\",\n    \"video_name\": \"video9564\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is the man marinate the raw ingredients and prepare it for doing?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man and a bowl doing?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man adds vinegar and fish sauce into a white bowl filled with assorted vegetables doing?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man adding ingredients to while he instructs?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does cut vegetables add by someone?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is man putting in the salad he made?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who marinate the raw ingredients?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who can hear voices?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are taken in the bowl?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what are cut vegetables taken in?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what was black?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who instructs?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person preparing by putting vegetable and some sauce in one bowl?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is adding oil to a bowl with vegetables in it?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person adding to a bowl with vegetables in it?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is someone preparing in a bowl in a kitchen?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a man and a bowl pouring mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a man and a bowl pouring mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is a salad like dish being prepared in a white bowl by?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone preparing a delicious dish in a bowl in?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is someone preparing a delicious dish in in a kitchen?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is telling how to mix ingredients together to make some soup?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does cut vegetables add fish sauce by?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a man and a bowl pouring mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is adding ingredients to a bowl while he instructs?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing something by putting vegetable and some sauce in one bowl?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing a delicious dish in a bowl in a kitchen?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what adds fish sauce by someone?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who adds vinegar and fish sauce into a white bowl filled with assorted vegetables including onions and lettuce?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man adding something in the cut vegetables to make?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is being added to a semi full bowl of ingredients?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is putting some oil in the salad he made?\",\n    \"video_name\": \"video9565\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman singing while holding a mic?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings with a headset and microphone?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing into a microphone?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who was holding a microphone?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman singing into?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what was the woman holding?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is woman singing?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman wearing headphones singing a song into?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a woman wearing headphones singing into the microphone?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman singing while wearing headphones?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings a love song in a studio?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what was the woman doing?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who is singing while reading from a piece of paper?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing while looking at a piece of paper?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song while wearing headphones?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song while holding a mic?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings while the lyrics show on the bottom of the screen?\",\n    \"video_name\": \"video9566\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a plate and a bowl mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who gives a vegetable based breakfast recipe from indian culture?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is thanking everyone for watching how to make a breakfast item?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the finished product of what looks to be a veggie patty?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"who is telling thanks to the audiance for introducing the south india vegetable dishes?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is the chef doing?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"thank\"\n  },\n  {\n    \"question\": \"what is a breaded food doing?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a plate and a bowl doing?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a cookie doing?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what do a plate and a bowl mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is preparing something on the red plate?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a plate and a bowl mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a man thanking for watching how to make a breakfast item?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"everyone\"\n  },\n  {\n    \"question\": \"what is a pongal kept in?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is pongal kept on?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is kept in the plate?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"pongal\"\n  },\n  {\n    \"question\": \"who is kept on the plate?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"pongal\"\n  },\n  {\n    \"question\": \"who is thanking his viewers for watching him complete a recipe?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is sitting on a round red plate?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is kept in a plate on the table?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is person preparing on the red plate?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is the food kept in a plate on?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is the food kept in on the table?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is sitting on a red plate that a man just made?\",\n    \"video_name\": \"video9567\",\n    \"answer\": \"cookie\"\n  },\n  {\n    \"question\": \"what is it doing?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the installation of some software doing?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what is something doing?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a downloading screen doing?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a loading bar doing?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what is a computer application doing?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is this is a video of something doing?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"download\"\n  },\n  {\n    \"question\": \"what is a tutorial on doing?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"download\"\n  },\n  {\n    \"question\": \"what is loading?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"what is something loading on?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is software running on?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is performing in front of a group of judges?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to use a computer program?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is displaying on a computer screen?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"downloading\"\n  },\n  {\n    \"question\": \"what is loading on a computer?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what was very informative?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is progressing?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"loading\"\n  },\n  {\n    \"question\": \"what is running on a screen?\",\n    \"video_name\": \"video9568\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"what is kissing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is a husband and wife doing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man in black shirt doing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a baby laughs every time a man and woman kiss the woman doing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"over-emphasizing\"\n  },\n  {\n    \"question\": \"what is baby doing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a touching and lovable scene of a child so happy and doing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"giggle\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a girl and boy doing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is the man kissing?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"wife\"\n  },\n  {\n    \"question\": \"who is a man kissing while a woman and a baby laugh?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what kisses repeatedly in front of an infant child who laughs each time?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is kissing a woman while a woman and a baby laugh?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kissing a woman that is holding a baby?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man in black shirt kissing with?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are both facing to face?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who is kissing his wife?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man and a woman kiss and a small baby laugh?\",\n    \"video_name\": \"video9569\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is 2d animation doing?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a minecraft animated short video doing?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what are a minecraft video where a boy and a girl doing?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what are minecraft characters doing?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is minecraft characters doing?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two characters in minecraft doing?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who are holding hands?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what avatar video?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do the man and woman drop into?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"frame\"\n  },\n  {\n    \"question\": \"what are a cartoon boy and girl in together?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who dressed in similar outfits?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what do a minecraft animated featuring its characters?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does two video game characters jump down onto?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what do a man and a woman drop down from?\",\n    \"video_name\": \"video9570\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is a pokemon going?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what mingle with each other?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is commentating while playing a video game?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who shows gameplay in a pokemon game?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"who plays a kiddie video game?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is going star gazing?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what takes a break to go stargaze?\",\n    \"video_name\": \"video9571\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is sade doing?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman is shown doing?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a lady with child doing?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"who errands?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman holding?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who runs all over town before making music?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does the woman carry around?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who has a busy day of running errands?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who performs several errands with an infant?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what does a woman run before making music?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"who is visiting many different places?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing various tasks?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is performing various tasks?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a bohemian woman going?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"who is taking the bus?\",\n    \"video_name\": \"video9572\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a group singing?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"how many teenagers sing a duet on the voice?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"when are a group of singers singing?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are the group of teenagers singing?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"how many kids are singing on stage?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what do two girls and one boy sing in?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"harmony\"\n  },\n  {\n    \"question\": \"when is a group singing?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is singing a song?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"when are three kids singing?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are people singing?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is singing on a stage?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who sings with two girls?\",\n    \"video_name\": \"video9573\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy in a wet suit doing?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a beautiful water doing?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a water scene and man doing?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is man in a black wet suit doing?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a teen boy doing?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is person doing some surfing on with waves?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is person doing on the sea with waves?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"surfing\"\n  },\n  {\n    \"question\": \"what is a surfer riding some very rough waves in?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is a man surfing around on in the day?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are men surfing with south american music playing in?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"when is a man surfing around on a beach?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what did a man on a surfboard in the ocean?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"who cruises the crest of a moderately big wave all the way to shore?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"who rides a small tunnel wave in the ocean?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"who cruises the crest of a long wave?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"who is doing some surfing on the sea with waves?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is surfing in a wet suit with foreign music playing in the background?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a beautiful water surfing in low tides and but lose in a short span of time?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"balance\"\n  },\n  {\n    \"question\": \"who is surfing around on a beach in the day?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding some very rough waves in the ocean?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"what did a man on a surfboard rides a wave in?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who surfing on waves on sea and some others watching him?\",\n    \"video_name\": \"video9574\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an older woman with red hair doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman in a purple shirt doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in purple doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"encourage\"\n  },\n  {\n    \"question\": \"what is a lady in a purple shirt with messy hair doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a white woman with brown hair in pink dress doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with pink dress and loose hair doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is an older lady doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a woman with red hair talk in a room with books on?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what is a person with a wig talking in?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a woman wearing a purple shirt talk to?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman with pink dress and loose hair explaining?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman in a purple shirt talking about?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"course\"\n  },\n  {\n    \"question\": \"what is a woman in a purple shirt doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman in a purple shirt talks about people doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a person with a wig doing?\",\n    \"video_name\": \"video9575\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is bunch of kids in wet tshirts doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are bunch of kids wet in eater doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is this is a video clip from a movie doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is boys doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a 3 young boys doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is some boys are all wet doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a boy doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a scene from a movie of kids and play doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is kid s doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"tackle\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a movie scene little boys inside water doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what are four boys doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who s pulling on the ears of the one on the bottom?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is about a child in the sleeper hold?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what scene little boys inside water flowing inside forest displaying on screen?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"where does kid s pulling on the ears of the one?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"bottom\"\n  },\n  {\n    \"question\": \"who are playfully wrestle around in the mud for dramatic effect?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what do a group of kids ruff around beating eachother up?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"housing\"\n  },\n  {\n    \"question\": \"what do a group of kids ruff around being silly?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"housing\"\n  },\n  {\n    \"question\": \"how many kids are having fun while riding in water?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what is a group of kids doing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"how many boys are wrestling in a river?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"who s tackling each?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what are four boys wrestling in?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what are some boys close to a small creek?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"what does kid s pulling on the ears of the one on?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"bottom\"\n  },\n  {\n    \"question\": \"who has a smaller kid in a sleeper hold while his friends encourage him?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"chubby\"\n  },\n  {\n    \"question\": \"what are four kids having while riding in water?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"how many boys are playing?\",\n    \"video_name\": \"video9576\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what is from a famous cartoon program?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is sitting on a horse?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is there game that where the lady is explaining the about the game and the functioning of the horse?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is it is he game that where the lady doing?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl with a blue shirt climbing on?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what do cartoon one women in horse and speak to?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"calmly\"\n  },\n  {\n    \"question\": \"what is a woman standing with in the desert?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman standing with a horse in?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what is a girl talking about a video game with?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a girl riding a horse step down from?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who speaks over some video game footage?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a girl wearing blue shirt step down from?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does girl in blue tshirt stand next to?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does girl in blue tshirt jump from?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is standing with a horse in the desert?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a video game with a horse?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"where is a woman standing with a horse?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what is shown for the childrens on the screen a girl ridding a horse?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who rides a horse on the icey slope?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sets on a horse that is decorated with blue accessories?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who then gets to the ground?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does the narrator discuss as part of an online game?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a small girl sitting on?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a small girl then get to?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl with a blue shirt doing?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9577\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"who goes underwater?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"diver\"\n  },\n  {\n    \"question\": \"what is a diver working on underwater?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is diver repairing inside water?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what are people under?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is jumping in to a water with oxygen set?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is diver repairing machine inside?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man jumping in to a water with?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"oxygen\"\n  },\n  {\n    \"question\": \"who is repairing something underwater?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"diver\"\n  },\n  {\n    \"question\": \"what is a man jumping in to with oxygen set?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is working on a machine underwater?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"diver\"\n  },\n  {\n    \"question\": \"what are two men talking is diving into water?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are two men talking someone is diving into?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is diving underwater fully dressed in protective gear?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is diving the sea?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a diver under?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is men diving under?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a diver repairing?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"underwater\"\n  },\n  {\n    \"question\": \"who is repairing machine inside water?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"diver\"\n  },\n  {\n    \"question\": \"how many men are talking someone is diving into water?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a diver doing?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is diver doing?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a diver doing?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a video for doing?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9578\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what does something voice dubbed over the men two men discuss with children?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many men are talking using kids voices?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a man and another man speak to each other in?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who talk to each other?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking to each other?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does two men talking to each other with a kid s?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men in a doctors office are lip doing?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"sync\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two kids voices are dubbed over a video where a doctor doing?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"examine\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many voices are dubbed over a video where a doctor is examining a man?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men does something voice dubbed over the men discuss something with children?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what voices dubbed over the men two men discuss something with children?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many men talk to each other with children voices dubbed over their voices?\",\n    \"video_name\": \"video9579\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is the brown dog in?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a black color cartoon dog eating?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"when are the animals having together?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what are the animals eating?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is an animated cartoon cat doing?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a black colour cartoon dog doing?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a cute little puppy is seen doing?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"gorge\"\n  },\n  {\n    \"question\": \"what is the brown dog is in the kitchen and doing?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a cartoon puppy dog is happily doing?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is there is a dog doing?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is in the kitchen?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who puts dog food into a yellow bowl for the puppy to eat?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who puts some dog food into a yellow bowl?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person put into a yellow bowl for the puppy to eat?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is eating out of a yellow bowl then from a blue bowl?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is given a bowl of dog food?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a puppy having in an animation film?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is a small dog given a bowl of?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a person put into a yellow bowl?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a gray and white cartoon puppy eating?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what eats all of it?\",\n    \"video_name\": \"video9580\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is flowing across a mountain while a woman is talking in the background?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"fog\"\n  },\n  {\n    \"question\": \"what does commercial to highlight the travel to or certain climate process of?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"destination\"\n  },\n  {\n    \"question\": \"what is some kind?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a woman talking in?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is making cloulds?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who is talking in the background?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is some kind is seen?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is smoke is seen?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"kind\"\n  },\n  {\n    \"question\": \"what roll lazily over the majestic enormous mountains?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"thick\"\n  },\n  {\n    \"question\": \"what is either rising or setting?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"what is fog doing?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"who explains a panorama of a large mountain with clouds moving overhead?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is presenting some photos from the fire in mountain?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what plays over scenery of mountains while a woman speaks?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what rolls over the top of a mountain range while the sun is either rising or setting?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"fog\"\n  },\n  {\n    \"question\": \"who is speaking in a language other than english?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is fog flowing across while a woman is talking in the background?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what rolls over a mountiain top as though the mountain is making cloulds?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"fog\"\n  },\n  {\n    \"question\": \"what rolls over the tops of the mountains?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"thick\"\n  },\n  {\n    \"question\": \"what is fog rolls over the top of a mountain range while the sun is either doing?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"rise\"\n  },\n  {\n    \"question\": \"what is there is a beautiful mountain we with clouds doing?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a beautiful place of water doing?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is beautiful mountain scene with dense fog doing?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"flow\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a woman explains a panorama of a large mountain with clouds doing?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are some giant white waves doing?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video9581\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is on a busy street and stats on the building show in white lettering?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what are the dimensions of a skyscraper displayed on intermittently?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a building stretch endlessly up into?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what do many stairs consist in?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what stretches endlessly up into the sky?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is on a black back ground?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is a person showing information about?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what pans up a very tall city building with intermittent facts about the building flashing on the screen?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is shown as the dimensions of it are displayed on the screen intermittently?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"skyscraper\"\n  },\n  {\n    \"question\": \"who is showing information about the building?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is information about a high rise building displayed on?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is recording the big building near the street?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is there are huge buildings doing?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9582\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"who is a man talking to a woman at?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"diner\"\n  },\n  {\n    \"question\": \"what is a woman presenting to a group of men?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"suitcase\"\n  },\n  {\n    \"question\": \"what are a group of people making?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"drug\"\n  },\n  {\n    \"question\": \"who tries to open a box?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and woman talking at?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is opening a brief case?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does one open?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"breifcase\"\n  },\n  {\n    \"question\": \"what are two people discussing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man opening?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"case\"\n  },\n  {\n    \"question\": \"what is a person smoking?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"cigarette\"\n  },\n  {\n    \"question\": \"what did people gather for?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what does a man try to open?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what the couple eating food?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who does a woman speak with as he opens a briefcase?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are discussing something?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who speaks with a man as he opens a briefcase?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do a spanish?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is video of a man and woman doing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"converse\"\n  },\n  {\n    \"question\": \"who is a man talking to at a diner?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is some people doing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a spanish man and lady and doing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a restaurant the couple doing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is smoking a cigarette?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking to a woman at a diner?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"who is presenting a suitcase to a group of men?\",\n    \"video_name\": \"video9583\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is flying in a flight in a air?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what drives through the ocean with fish?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what are following a boat in a cartoon?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a cartoon character underwater doing?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is an anime doing?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is in the water with several fishes following it?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what are the animated fishes doing?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a disney show is on and a boy doing?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what moves with a school of fish?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what is an anime flying in a flight in?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is on?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what follow behind an underwater vehicle?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a red submarine in with several fishes following it?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are the animated fishes swimming in?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what do a school of fish follow?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"who is flying in a plane?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is an anime flying in in a air?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what is a boy flying in?\",\n    \"video_name\": \"video9584\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what was very tiny?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"what is finished?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"dessert\"\n  },\n  {\n    \"question\": \"who treats?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"decorate\"\n  },\n  {\n    \"question\": \"what is a video of someone doing?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"scoop\"\n  },\n  {\n    \"question\": \"what is demonstration of doing?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is spoon doing?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"scoop\"\n  },\n  {\n    \"question\": \"what is they are makng bowls out of chocolate doing?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person decorating?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what does a person making bowl out of?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what does a video of someone scoop a tiny amount of?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"who prepares some food for a recipe?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what bowls from balloons in a kitchen?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who is making food on the table?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman prepare some food for?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a person making on the table?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does chocolate bowl from balloons in?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a woman prepare for a recipe?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person making food on?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is making solidified chocolate cups?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who uses tiny utensils?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who bowls out of chocolate?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what balloons in cooking?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"who is decorating cake?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is placed inside of a plastic egg?\",\n    \"video_name\": \"video9585\",\n    \"answer\": \"candy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is toad doing?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what play with four characters?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"what does a liveplay of mario party nintendo?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing mario party with a group?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing mario party with?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is playing a mario video game?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing with a group?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"who is playing an online computer game?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who play in a video game together?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"what does a person playing the game mario?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9586\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a scene from a movie a man doing?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is man in a suit doing?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is at the hopspital the injured person doing?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is there is a bald headed shirtless blackman doing?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is actor robert downey jr points a gun at a man doing?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is man is in the hospital and doing?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what is man who doing?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is movie scene in which one doing?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"who is in the hospital?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who enters a hospital room?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"what does actor robert downey jr point at a man laying in a hospital bed?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a scene from a movie a man pointing at a man in a hospital bed?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a injured person in while a man comes?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who points at man in bed?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man point at in bed?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a injured person take a gun to shoot?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a distressed man pull on a currently hospitalized adversary?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does guy in suit and tie take out to shoot black guy?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who takes a gun to shoot a man?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the injured person telling in the doctor at the hopspital?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"pain\"\n  },\n  {\n    \"question\": \"what does a man point at man in?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is man being visited by his old friend in?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"who pulls out a gun?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a injured person take to shoot a man?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does robert downey jr enter?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"who is being visited by his old friend in hospital room?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who points a gun threatening to shoot a patient in a movie at another man that is injured and in a hospital bed?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pull from suit jacket in hospital room?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who pulls out a gun threatening to shoot a patient in a movie?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"who draws a gun on a black man on a hospital bed?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pulls a gun from suit jacket in hospital room?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is man who is lying in hospital bed having problems with?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is in bed while a man comes?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who downey jr points a gun at a man laying in a hospital bed?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"who pulls a gun on a currently hospitalized adversary?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being visited by his old opponent in hospital?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is movie scene in which one lying on pointing a gun?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who does guy in suit and tie take out the gun to shoot?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a person on the bed in hospital while other person come with?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is lying on the bed?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person lying on?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a man pull out?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is meeting his bad friend?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man in?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"who is person meeting?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who comes?\",\n    \"video_name\": \"video9587\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a football player sit in?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man have?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"forehead\"\n  },\n  {\n    \"question\": \"who is injured?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are athletes under?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"pressure\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"engage\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are sports pics shown with?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who does a slideshow show various clips of?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is a man falling down is helping him?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what pans into an athletes shoe?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is falling down another person is helping him?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has a swollen forehead?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sit in ground?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what shows various clips of soccer players?\",\n    \"video_name\": \"video9588\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what is three girls doing?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a group performing?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl singing along with?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"how many women are playing instruments in a field and in front of a tractor?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who s singing a song and play violin?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who plays instruments in a field?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are singing?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman singing and doing?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"video9589\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"partake\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what are animated kids doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a cartoon is shown with children doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"stretch\"\n  },\n  {\n    \"question\": \"who is doing yoga?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are children playing soccer in?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are children playing in a cartoon?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what show how to do yoga?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon kids doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are animated kids practicing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"yoga\"\n  },\n  {\n    \"question\": \"what is an animated boy doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"yoga\"\n  },\n  {\n    \"question\": \"what are several kids performing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who are exercising?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are dancing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are running?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are children playing with in a cartoon television show?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kids show that shows them activities doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"what are several kids doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is shown with children playing soccer?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do a bunch of cartoon children play?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are in a cartoon television show children doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do a bunch of cartoon children do?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"yoga\"\n  },\n  {\n    \"question\": \"who partaking in various sports?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is shown with children stretching?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are the cartoon characters doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is video of some cartoon children doing?\",\n    \"video_name\": \"video9590\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what do a live with a band on stage?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what are a group of people playing on stage?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what performs for a live audience?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is performing a concert?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is doing a live show?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing a song?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what sings?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what performs?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a live with a woman as the lead singer?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what plays on stage in front of a jumbo screen?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is music group doing?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a singer doing?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is in action with electric guitars a large screen and an audience?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what performs in front of a live audience?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what did a crowd with a female singer on the big screen?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"when are a group of people playing music?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who do a live concert with as the lead singer?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when does a band play in front of a jumbo screen?\",\n    \"video_name\": \"video9591\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are the players falling on?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does the girl run in?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who runs in the race?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does the woman runner is falling many times and again running in the women s?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is tripping over hurdles?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a young person in a red tracksuit jump over then fails miserably tripping over the next two?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"hurdle\"\n  },\n  {\n    \"question\": \"who is running hurdles?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many girls were running in the hurdles to win the race?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who tries to hurdle over two obstacles failing both times?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"runner\"\n  },\n  {\n    \"question\": \"what does little boys running inside ground running chasing falling down touching stick displaying on?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is running track at a meet and falling over the hurdles?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did footage of a young track runner trip over?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"hurdle\"\n  },\n  {\n    \"question\": \"what do hurdles track meet going on as the far hurdler attempts to fall flat footed on?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"hurdle\"\n  },\n  {\n    \"question\": \"what is a girl running at a meet and falling over the hurdles?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who tries to hurdle over two obstacles falling both times?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"runner\"\n  },\n  {\n    \"question\": \"what is young girls are shown racing and a girl in red keeps doing?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a young person in a red tracksuit jumps over one hurdle then fails miserably doing?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"trip\"\n  },\n  {\n    \"question\": \"what is a runner tries to hurdle over two obstacles doing?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"fail\"\n  },\n  {\n    \"question\": \"what is there is kid doing?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is footage of a young track runner doing?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"trip\"\n  },\n  {\n    \"question\": \"what is the woman runner doing?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a track meet girls doing?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a track runner doing?\",\n    \"video_name\": \"video9592\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who interviewed about a fight that he was in?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"carter\"\n  },\n  {\n    \"question\": \"what tracy mcgrady is being interviewed in the beyond the glory movie?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what did vince carter interview about that he was in?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who talks about being confused about what happened?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about basket ball?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking to the camera?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who s career?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about his life?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man s?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"career\"\n  },\n  {\n    \"question\": \"what is a man speaking to?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"who is doing?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is discussed?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"style\"\n  },\n  {\n    \"question\": \"who talks about his basketball history?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who talks to the camera before a series of images rapidly play?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does vince carter sit in a chair giving on beyond the glory?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who sits in a chair giving an interview on beyond the glory?\",\n    \"video_name\": \"video9593\",\n    \"answer\": \"carter\"\n  },\n  {\n    \"question\": \"what does a woman protect from tanning risks?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what does a woman in tanning salon put on cover as well as nose plugs and goggles?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what do a lady wearing a bathing suit cap on?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what do a lady putting a shower cap on?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is blonde woman in after the shower?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"who is in the bathroom after the shower?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"who demonstrates using shower accessories properly?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what over tells how to uses a hair cover during tanning?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a blonde woman in a bikini put on?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"protection\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman puts a cap on her head and protects her face from doing?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"tan\"\n  },\n  {\n    \"question\": \"what is lady with doing?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is the woman with the glasses on her head puts on the head doing?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman in doing?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"tan\"\n  },\n  {\n    \"question\": \"what is a woman in a bikini doing?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who is demonstrating the need to prepare for tanning beds?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman demonstrates doing?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who puts on a tanning cap while another woman talks?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is using eye wear lip balm and nose filter?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is voice over tells how to uses a hair cover during doing?\",\n    \"video_name\": \"video9594\",\n    \"answer\": \"tan\"\n  },\n  {\n    \"question\": \"what is a guy in a pink shirt talking to?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the man in white shirt explaining on the stage?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is taking a class to the students?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking to the students?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"who is teaching a class?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man teaching?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"who is speaking about something to viewers?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the usefullness of an algorith to a small audience?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"lecturer\"\n  },\n  {\n    \"question\": \"who is giving a presentation of hacking specifically deep learning for social good?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what leads a class while wearing a white shirt?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"when is a man in white shirt talking?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is the man in white shirt explaining something?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a gentleman with an ear microphone giving in a lecture hall?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is a smart young man in check dress doing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in white shirt doing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man in white shirt doing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a male leads a class while doing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a pink checkered shirt doing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is guy in white shirt doing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a guy in a pink shirt doing?\",\n    \"video_name\": \"video9595\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man speak to in an airport?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a man speak to the camera in?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what does man read a paper on?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"who is sitting on a bench?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is at a train station?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting on at a train station?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"who is sitting on a bench at a train station?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to the camera in an airport?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to camera while reading newspaper?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking next to a train?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting on a bench in a train station talking to?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who reads a paper on a bench?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting on?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking while seated?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man reading?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"newspaper\"\n  },\n  {\n    \"question\": \"who is reading the newspaper?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting in?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"railway\"\n  },\n  {\n    \"question\": \"what does man read on a bench?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is sitting in a outside market speaking in a foreign language?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking next to?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"who is speaking about a politics?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits at a train station?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who talks to camera while waiting for a train?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting in railway station?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man at a train station doing?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man talks to camera while doing?\",\n    \"video_name\": \"video9596\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a dragon doing?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"flap\"\n  },\n  {\n    \"question\": \"what is a minecraft character doing?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video game characters doing?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are being used in a game of minecraft?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who rampages around a screen while spongebob makes a surprise appearance?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what does a minecraft dragon rampage around while spongebob makes a surprise appearance?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what characters throwing things at a house?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what video game characters throwing things at?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who squarepants video game?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who is flapping around on the ground?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"dragon\"\n  },\n  {\n    \"question\": \"what is a dragon flapping around on?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does spongebob squarepants?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who makes a surprise appearance?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what does an animated dragon try to take?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"flight\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does spongebob make?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"appearance\"\n  },\n  {\n    \"question\": \"who tries to take flight?\",\n    \"video_name\": \"video9597\",\n    \"answer\": \"dragon\"\n  },\n  {\n    \"question\": \"what do young people in natural and urban environments perform?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"parkor\"\n  },\n  {\n    \"question\": \"who is opening something on computer?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is jumping from the wall?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person opening on computer?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is jumping outdoors?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is various people do doing?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"amaze\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is person opening something on?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is series of clips doing?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is young boys do doing?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a montage of young men doing?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is person jumping from?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is jump and flip off of everyday objects doing?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"include\"\n  },\n  {\n    \"question\": \"who is working?\",\n    \"video_name\": \"video9598\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in a yellow shirt doing?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a player doing?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is one man playing in a bowling match and another man doing?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is men at doing?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is talking through a countdown of sports clips?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a man bowl in?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a bowler hit?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"spare\"\n  },\n  {\n    \"question\": \"what does a bowler throw?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"bowling\"\n  },\n  {\n    \"question\": \"who bowls in a competition?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is bowling professionally?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hits a spare?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"bowler\"\n  },\n  {\n    \"question\": \"who is playing bowling?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does another man jump on top of top of two boys during?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a countdown of impressive play on?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"espn\"\n  },\n  {\n    \"question\": \"who throws a bowling ball?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"bowler\"\n  },\n  {\n    \"question\": \"what does short clip showcasing taking place?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who jumps on top of top of two boys during a game?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what showcasing a lacrosse game taking place?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what does short clip showcasing a lacrosse game taking?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what shows highlights from different sports?\",\n    \"video_name\": \"video9599\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is performing a song outdoors?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man playing in a music video?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitor?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who walking with his mother?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is this is a video song of a guy doing?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is person playing?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does handsome man play?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays guitar?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a boy play?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who do a boy walk with?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is in a music video a man doing?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"guitor\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man singing with in a music video?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is singing while playing the guitar while many people jump and cheer?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing his guitar in a music video?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing with people dancing around him followed by two women handing out flowers?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing with a crowd in a music video?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar with people dancing around him followed by two women handing out flowers?\",\n    \"video_name\": \"video9600\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does man perform?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who is beat waving his hands?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when did man beatboxing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who performs on stage?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes different types of instrumental music using his mouth on stage?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does a man with a microphone make sounds?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who beatboxing in front of an audience?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who beat boxing for a live crowd?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who beat boxes into the mic?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is singer singing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who performs a song on stage?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is beat boxing on stage?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who beatboxing on stage?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is beatboxing into a microphone?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man beatboxing into?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a man makes different types of instrumental music doing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"beatboxing\"\n  },\n  {\n    \"question\": \"what is a man is beat doing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a man beat doing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"beatboxing\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is beatboxing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who beat dancing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who beat boxing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a beat boxer doing?\",\n    \"video_name\": \"video9601\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is video of three men doing?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three women doing?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is three woman doing?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three men with mullets doing?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is comedy actress doing?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"how many people are talking in a hindi film?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is three men doing?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is scene from a indian movie doing?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what do the hindi on a screen?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what does a man cover in a room?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who points his finger?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are several men in?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"how many men are fighting?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does a man point?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"who show?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"comdey\"\n  },\n  {\n    \"question\": \"what do the hindi movie clips on?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who acting in the old hindi movie?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"who look at three men while they fight?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who covers his mouth in a room?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are starting to fight?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are pointing at three women?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does a man cover his mouth in?\",\n    \"video_name\": \"video9602\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a woman receives an doing?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"excite\"\n  },\n  {\n    \"question\": \"what is a woman on her way out the door gets a call from a man doing?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a person is frantically doing?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady looks through her purse for a phone then answers it doing?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a woman and a man doing?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person frantically answering?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what skit conversation?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what do a man and woman excitedly talk over?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are a woman and a man talking on?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are a man and woman talking on?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who receives an exciting phone call?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did indian comedy skit?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"how many people talk to each other over the phone?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two people talk to each other over?\",\n    \"video_name\": \"video9603\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who looks out a window then someone fights?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person lying in a woman is fighting with a man?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what shows how upset people are after experiencing rape the video is in black and white?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is a person lying in bed is fighting with a man?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a person lying in bed a woman is fighting with?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lying in bed a woman is fighting with a man?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a series of clips is shown doing?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is the music video shows how upset people are after doing?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a black and white graphic doing?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who sit near the window?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a girl sitting alone thinking the fight between some one then wipe?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who lay in the bed?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a person clean?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a woman lying on?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a person look out then someone fights?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what does a person look out a window?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did the woman lie in?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what do the woman sit near?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is a girll laying on being depressed?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is kissed by a amn?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is lying on bed?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cleans a box?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a girl alone doing?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is a lady kissed by?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"amn\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a song is played and a woman doing?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a girll doing?\",\n    \"video_name\": \"video9604\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what do a sports montage with loud music?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who jumps over another player?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what do a sports montage video with?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who does a football player jump over?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who is playing football?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what makes a touchdown?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a football teams make?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"touchdown\"\n  },\n  {\n    \"question\": \"who shows the best beat drops in sporting footage?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is players doing?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person shows the best beat drops in doing?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a quick highlight reel of great sport happenings doing?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is players doing?\",\n    \"video_name\": \"video9605\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who discusses skiing calling an interview a jam session then some skiing is displayed?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who james woods discussing his freestyle like jam sessions out on the slopes?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"slopestyle\"\n  },\n  {\n    \"question\": \"what does a man in a white shirt skiing down a snowy track and speak in?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man wearing white shirt and pink trouser skating on?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what are a snowboarder in a snowy mountainous practices on?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"course\"\n  },\n  {\n    \"question\": \"who is faster snow riding?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do person in white shirt call?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"section\"\n  },\n  {\n    \"question\": \"what is person in white shirt talking on with snow?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with long hair doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is person in white shirt doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is young man doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"refer\"\n  },\n  {\n    \"question\": \"who skies down the slope while a guy talks?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man discusses doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt with long hair speaks of doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"snowboard\"\n  },\n  {\n    \"question\": \"what is slopestyle skier james woods doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is news reporter doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video9606\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"who is a man holding his arm around?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what shows images of eharmony?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man holding around a woman?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what is talking?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what shows different activities?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"promo\"\n  },\n  {\n    \"question\": \"what do people meet their significant other on plenty of?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is holding his arm around a woman?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man and a woman advertise?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"who appear in front a an animated laptop?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is this is a doing?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"date\"\n  },\n  {\n    \"question\": \"what is an old man with glasses doing?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a smiling couple doing?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9607\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is explaining his research?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man demonstrating?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"who is talking about diagnostic technology?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man discussing diagnostic techniques on?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"project\"\n  },\n  {\n    \"question\": \"who is talking about technology?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking on?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"when does a man discuss through metal?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"who is discussing a new technology?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people playingg?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who is talking on the news?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating a device?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in a suit doing?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what does a man discuss wave frequencies through?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates the behind the scenes of a factory?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a suit explaining to another man while looking at a metal track?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is discussing diagnostic techniques on their project?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man discussing?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"who discusses wave frequencies through metal?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaining?\",\n    \"video_name\": \"video9608\",\n    \"answer\": \"research\"\n  },\n  {\n    \"question\": \"what were two pilots traveled in?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"who is flying around in space?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"astronaut\"\n  },\n  {\n    \"question\": \"who is driving a big container?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a movie scene from interstellar with matthew doing?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a scene from the movie gravity doing?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is mathew mcconaughey and anne hathaway doing?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two astronauts doing?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"what is an astronaut doing?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is an astronaut flying around in?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what are two people flying in looking worried?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"spaceship\"\n  },\n  {\n    \"question\": \"what does mathew mcconaughy s character yells to cut before saying that a snow land and man are out of orbit?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what do astronauts in white pressure suits fly a spacecraft to?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who mcconaughey and anne hathaway sitting in a spacecraft in the movie interstellar?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"mathew\"\n  },\n  {\n    \"question\": \"what do astronauts in white pressure suits fly to tense music?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"spacecraft\"\n  },\n  {\n    \"question\": \"who does mathew mcconaughy s yells to cut the main engine before saying that a snow land and man are out of orbit?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is wearing safety helmet in the airplane?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many men are in a space ship with helmets on?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many pilots were traveled in space?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are flying in a spaceship looking worried?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many astronauts have just made a tense situation through an extremely stressful situation in space?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are riding in a space shuttle that is out of control?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who s character yells to cut the main engine before saying that a snow land and man are out of orbit?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"mcconaughy\"\n  },\n  {\n    \"question\": \"what is person wearing in the airplane?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"safety\"\n  },\n  {\n    \"question\": \"what does the man announce they are out of?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"orbit\"\n  },\n  {\n    \"question\": \"what is person wearing safety helmet in?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what have two astronauts just made through an extremely stressful situation in space?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"situation\"\n  },\n  {\n    \"question\": \"what do mathew mcconaughey and anne hathaway sitting in in the movie interstellar?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"spacecraft\"\n  },\n  {\n    \"question\": \"who announces they are out of orbit?\",\n    \"video_name\": \"video9609\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are running fast on the grass?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are a bunch of horses doing?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is commentating a horse race?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man commentating?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are some horses doing?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a group of horses doing?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is british broadcaster doing?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"announce\"\n  },\n  {\n    \"question\": \"what is a man announces the positions of racers doing?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is a horse race in which altivo and adamsworth appear to be doing?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what are a bunch of horses racing each other on?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what did a group of horses running in race grind chasing watching displaying on screen?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what a group of horse riders riding on the race?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is about a horse race at the derby?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who describes the action of a horse race as it occurs?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"sportscaster\"\n  },\n  {\n    \"question\": \"who announces the positions of racers competing in a horse race?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a group of horse riders riding the horse on?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are some horses racing each other on?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is happening while a man is commentating it?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are group of horses running fast on?\",\n    \"video_name\": \"video9610\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what are four persons doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are a bunch of people doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are various people in front of computers doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is in the tv channel doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are teenage youtubers doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is youtubers doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is various youtubers try to explain what happened in a video they re doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what are all persons talking each other on?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are men and woman taking in a discussion held?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"part\"\n  },\n  {\n    \"question\": \"how many people are having conversation?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are four persons discussing about?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"topic\"\n  },\n  {\n    \"question\": \"what is channel discussing the morality of the youngsters in in the tv?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"audiance\"\n  },\n  {\n    \"question\": \"what do young people sit at?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what do young people talk about?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"culture\"\n  },\n  {\n    \"question\": \"what is random people behind computers vividly doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many persons are discussing about the topic?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"who are reacting to a video on the laptop?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"how many people are having conversation in the studio?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are teenage youtubers reacting to on the laptop?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are teenage youtubers reacting to a video on?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who are taking part in a discussion held?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many people are sitting?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a few men and a woman sit with laptops open doing?\",\n    \"video_name\": \"video9611\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what does a band play?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man driving a jeep down?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a bonfire burning on flat ground has vertical branches slanted toward the center and is surrounded halfway by pointed yellow flames in?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"darknes\"\n  },\n  {\n    \"question\": \"what does a man drive down the road and a bonfire burns on?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what does a car drive down then a bonfire burns as a band plays music?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do video shoot inside a taxi and a bon fire in?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"who is driving a van down a road?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shoot inside a taxi and a bon fire in the dark?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man driving a van down?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a man drive a fire started from a bundle of sticks is displayed?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives down the road then a bonfire burns as a band plays music?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is burning a person is riding a car in a fire camp?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"who is driving a jeep down the road?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a yellow shirt driving screen change to a random fire music playing?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"upbeat\"\n  },\n  {\n    \"question\": \"what is a person driving down the street the screen transitions into a wood structure on?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who drives down the road and a bonfire burns on the beach?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what sings while a vehicle drives down a road and a bonfire burns?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who drives a car a fire started from a bundle of sticks is displayed?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving down the street the screen transitions into a wood structure on fire?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is burning on flat ground has vertical branches slanted toward the center and is surrounded halfway by pointed yellow flames in the darkness?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"bonfire\"\n  },\n  {\n    \"question\": \"what is a man driving down the road?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"what is a man driving down a road?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"van\"\n  },\n  {\n    \"question\": \"what is being filmed?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"ride\"\n  },\n  {\n    \"question\": \"what plays music?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is burning?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"bonfire\"\n  },\n  {\n    \"question\": \"what is a cars doing?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man in a yellow shirt doing?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is in the darkness a bonfire doing?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"burn\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"when is a fire shown burning?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what drives down a road and a bonfire burns?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is shown burning at night time?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is displayed a man is driving a car then?\",\n    \"video_name\": \"video9612\",\n    \"answer\": \"bonefire\"\n  },\n  {\n    \"question\": \"what is a mechanic doing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what is a man with dirty hands doing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is a man fixing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is changing his carbreak?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man installing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"brake\"\n  },\n  {\n    \"question\": \"who replaces a brake pad on a wheel?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fixing a metal part on what appears to be a tire?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who works on the wheel of a car?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"mechanic\"\n  },\n  {\n    \"question\": \"who is fixing a part of a car?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working with tools on a bike?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is teaching how to fix car brakes?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man puting the brake pad on?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man with dirty hands working on?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what is a man fixing a part of?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a mechanic working on?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is installing car brake pads?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who repairs a car wheel?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to change brakes?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working on car breaks?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"mechanic\"\n  },\n  {\n    \"question\": \"who takes apart his tire rotor?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fixing a car?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man working with tools on?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what a man repairs?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what is a man fixing on what appears to be a tire?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"part\"\n  },\n  {\n    \"question\": \"who is a boy changing?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"carbreak\"\n  },\n  {\n    \"question\": \"what does man take apart?\",\n    \"video_name\": \"video9613\",\n    \"answer\": \"rotor\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what looks delicious?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what was finished?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"recipie\"\n  },\n  {\n    \"question\": \"what is one recipie was finished and doing?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is there is a men doing?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a weird doing?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are there s a huge noise among the audience and they doing?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a plate of strange food seems to be doing?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is white color cut with some red color material which is slightly doing?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is food with sauce looks delicious and doing?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is some material in the cup like a dish but it doing?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"stimulate\"\n  },\n  {\n    \"question\": \"what does one of the dish can move it certainly in?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is one recipe with some sauce and it doing?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what shows an elegant entree in a restaurant?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what contain something inside it which could not be guessed?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is some party taking in an event?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is taking place in an event?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"party\"\n  },\n  {\n    \"question\": \"what cut with some red color material which is slightly moving continuously?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is food with sauce sitting on?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what does a plate of strange food seem to be moving on?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is some party taking place in?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what stimulate like a living things?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is sitting on a plate?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what bowl with some type of food on it?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what shows the food upclose?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what like things in the bowl?\",\n    \"video_name\": \"video9614\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what cyrus getting interviewed?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"miley\"\n  },\n  {\n    \"question\": \"who is interviewed?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"miley\"\n  },\n  {\n    \"question\": \"who do jimmy fallon talking with?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"miley\"\n  },\n  {\n    \"question\": \"what is jimmy fallon doing?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a short clip of miley cyrus doing?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who has short hair?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"miley\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what fallon talking with miley cyrus?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"jimmy\"\n  },\n  {\n    \"question\": \"who is getting interviewed by a talk show host?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a man and woman arguing about fake arms use in?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who interviews a woman on a stage?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is miley cyrus being interviewed by?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"fallon\"\n  },\n  {\n    \"question\": \"who speaks with a talk show host?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"miley\"\n  },\n  {\n    \"question\": \"who is interviewed by jimmy fallon?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"miley\"\n  },\n  {\n    \"question\": \"who is miley cyrus interviewed by?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"fallon\"\n  },\n  {\n    \"question\": \"who is interviewed on live tv?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"miley\"\n  },\n  {\n    \"question\": \"who is a woman being interviewed by?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"fallon\"\n  },\n  {\n    \"question\": \"what does miley cyrus have?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what miley cyrus about fake arms?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"fallon\"\n  },\n  {\n    \"question\": \"who is being interviewed by jimmy fallon?\",\n    \"video_name\": \"video9615\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who runs?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who runs through a field at a park?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who says running?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does a boy running across the roads and sit on?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who runs across a sidewalk?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does a child run across?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who runs across the sidewalk?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who runs across a yard?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a little boy running across?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a little kid run across?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"who is running across a field?\",\n    \"video_name\": \"video9616\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are two young children doing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are two kids doing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two children sit on the floor maybe doing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are a brother and sister doing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the kids talked while doing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are little kids doing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are cheer leaders doing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"entertain\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are two children doing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what do two children laugh at?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many children are watching something?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many children are watching television?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids are watching tv?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids are playing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two children sitting on the floor watching?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"how many children are laughing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many children are getting excited?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two children sit on the floor maybe watching?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what are two children sitting on watching a television show?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"how many children laugh at something?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young children are laughing?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids are sitting on the ground?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many children sit on the floor maybe watching television?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many children are sitting on the floor?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids are sitting on the floor?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many children are sitting on the floor watching a television show?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young children are sitting on the floor?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two young children sitting on?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are two kids sitting on?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are two children watching?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who are entertaining audience?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are cheer leaders?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what are children sitting on?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are two children sitting on?\",\n    \"video_name\": \"video9617\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a woman dressed nicely and doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl in brown color dress doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a red-headed woman is shown doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman in red hair doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a woman with red hair doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is red headed woman doing?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what does a woman sitting looking up and to the right seem to be waiting for?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who aeroplane on land cars moving on road displaying on screen?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman sitting at gazing out at a airplane being loaded?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is sitting on a bench watching people pass by?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a girl holding a mobile in hand aeroplane on moving on road displaying on screen?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"who does the screen display 7 days in europe sits patiently on the plane?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman with red hair sitting on while calm music plays?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what displays 7 days in europe a lady sits patiently on the plane?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"where is a woman in red hair traveling in?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who is looking thoughtful about taking a trip on an airplane?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting at an airport gazing out at a airplane being loaded?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a women walk around while music plays in the background?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"europe\"\n  },\n  {\n    \"question\": \"who is traveling in europe by airplane?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who waits in an airport terminal then an airliner out on the target at nighttime is shown?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is red headed woman traveling in europe by?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who is about to travel to europe?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does music play in?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is red headed woman traveling in by airplane?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"europe\"\n  },\n  {\n    \"question\": \"what is beautiful woman in?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who is in the city?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is about to get on a plane?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a girl in brown color dress wearing cloth sitting and mobile in hand aeroplane still displaying on screen?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"where is beautiful woman?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what did a girl sitting aeroplane on moving on road displaying on screen?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what does a woman dressed nicely seem to be waiting for?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman sitting on watching people pass by?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what is a woman in red hair traveling in to?\",\n    \"video_name\": \"video9618\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is cartoon children doing?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoon children doing?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a cartoon of people doing?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are this a animatedvideo kids doing?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who sing?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who dance?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is running?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"rhyme\"\n  },\n  {\n    \"question\": \"who are dancing?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are animated characters singing?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are cartoon children playing in?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what are kids playing in?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who are playing in the rain?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"where are kids playing?\",\n    \"video_name\": \"video9619\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who does crust s is showing a cut away of the earth?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what is shown to be on different objects and in rock?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did view of ground water seep up to from below?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"surface\"\n  },\n  {\n    \"question\": \"what does crust s a scientist is showing a cut away of?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"who is seeping up to the surface?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"groundwater\"\n  },\n  {\n    \"question\": \"what are explaining some thing is playing are?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what form on an aircraft wing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is person presenting his latest study on?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"what is groundwater seeping up to?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"surface\"\n  },\n  {\n    \"question\": \"what pictures that have parts of equipments in images of water with water droplets on it?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"outer\"\n  },\n  {\n    \"question\": \"where are a words and some picture displaying?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is shown forming on the exterior of a landed spacecraft?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is displayed with the water forms on the spacecrafts landing gear?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"message\"\n  },\n  {\n    \"question\": \"who is sticking to the legs of a spacecraft?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"groundwater\"\n  },\n  {\n    \"question\": \"what are a picture explaining is playing are?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what seeping into a spacecrafts landing gear?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what gathers water then a diagram of soil shows more water?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what that contains images related to earth science?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does heavy mechanical equipment gather then a diagram of soil shows more water?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does heavy mechanical equipment gather water then a diagram of soil shows?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is presenting his latest study on monitor?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what s a scientist is showing a cut away of the earth?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"crust\"\n  },\n  {\n    \"question\": \"what are a words and some picture displaying in?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is person presenting on monitor?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"study\"\n  },\n  {\n    \"question\": \"what is a scientist doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who rises to the surface of the ground while water droplets form on an aircraft wing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"groundwater\"\n  },\n  {\n    \"question\": \"what is mars has been proven to have water as depicted by the pictures doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a variety of slideshow images doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what are a words and some picture doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is the stones and water forms on the spacecrafts doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is images of water doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"seep\"\n  },\n  {\n    \"question\": \"what are a picture doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is water is shown doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"form\"\n  },\n  {\n    \"question\": \"what is groundwater doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"seep\"\n  },\n  {\n    \"question\": \"what are different form of waters doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is view of ground water doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"seep\"\n  },\n  {\n    \"question\": \"what is the message is displayed with the water forms on the spacecrafts doing?\",\n    \"video_name\": \"video9620\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays pokeman fire red?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filming himself playing pokemon game?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who explain how to play pokemon?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about his pokemon video game?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a 3d game play?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what play scene?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is pokemon guy doing?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a guy play?\",\n    \"video_name\": \"video9621\",\n    \"answer\": \"pokeman\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is a new car doing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is cars doing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are dogs doing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what are dogs doing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is video of dogs doing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video of a couple of cards doing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"stop\"\n  },\n  {\n    \"question\": \"what are some dogs doing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"how many dogs cross the road?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is drive a car in a road?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"how many dogs walk across a busy street?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are dogs walking across the road in?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do two dogs cross?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a dog crossing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is driving the car?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are dogs crossing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is crossing the street?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are dogs walking across in a video?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is someone drive a car in?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is someone drive in a road?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are some dogs crossing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do a two large dogs cross safely?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does cars driving and dog crossing?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video9622\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a woman fighting with?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is fighting?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who escapes captivity?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do two people struggle in?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"warehouse\"\n  },\n  {\n    \"question\": \"who is fighting several men?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who beating up people in a movie?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is fighting with a man?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who listens from a cell phone?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to break a chair?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what fights men in the avengers?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"widow\"\n  },\n  {\n    \"question\": \"how many people struggle in a warehouse?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is on a cell phone while people are fighting?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who attacks a man in a scene from the avengers movie?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"johansson\"\n  },\n  {\n    \"question\": \"what is going on between a man and a woman?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are a man is on a cell phone while people doing?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a woman attached to a chair doing?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is man and woman doing?\",\n    \"video_name\": \"video9623\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is entry 10 from a top list doing?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who back doing a very good play in an american football game?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"running\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who runs the ball down the field past the other players?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who runs the ball down the field?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does a football player run the ball down?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what sports video?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"ten\"\n  },\n  {\n    \"question\": \"what does a football player run down the field past the other players?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who runs through and past his competitors?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does a football player run down the field?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who storms down the field?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are players playing?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does top ten sport?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what a football player storms down?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a football highlight is being shown?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"reel\"\n  },\n  {\n    \"question\": \"what highlights reel is being shown?\",\n    \"video_name\": \"video9624\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is ingredients for doing?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is some ingredients are put in vessel and kept for doing?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is in a kitchenthere is a man doing?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is there is a women doing?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what was a person doing?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone preparing delicious chicken and veggi dish in?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is cooking some food inside of a pot?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a man prepare in a kitchenthere?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does an in home chef describe a chicken and vegetable recipe he is making in?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what do a man prepare food in?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"kitchenthere\"\n  },\n  {\n    \"question\": \"what is someone cooking some food inside of?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is someone cooking inside of a pot?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are some ingredients put in?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"vessel\"\n  },\n  {\n    \"question\": \"who prepares veggies in a large pan on a stove?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is preparing delicious chicken and veggi dish in a kitchen?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who describes the process of making chicken stock and vegetables?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who prepares some ingredients in a kitchen?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who chopped up vegetables in a pot?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"where does an in home chef describe a chicken and vegetable recipe he is making?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who preparing food in a kitchenthere?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a chef prepare veggies in a large pan on?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who makes stock and boiled vegetables for a soup?\",\n    \"video_name\": \"video9625\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are the people doing?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what are three guys doing?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a guy holding?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man sitting on?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talk to each other?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do some men sit in?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is holding a guitar?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is sitting on the floor?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many guys are sitting around talking about nothing serious?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who is teaching someone how to say something in a new language?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do musicians try to speak foreign languages before?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"who teaches another a german phrase?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lying about what someone means?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are three guys sitting around talking about?\",\n    \"video_name\": \"video9626\",\n    \"answer\": \"nothing\"\n  },\n  {\n    \"question\": \"what are military men walking in?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"winter\"\n  },\n  {\n    \"question\": \"what is a man drinking from?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who is drinking from a glass?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of soldiers doing?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is stalingard soldiers doing?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a short clip of a military men doing?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what are few people doing?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are military men doing?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is military men doing?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man dismisses a group of soldiers and a scene of soldiers doing?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are stalingrad clips shown from?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"germany\"\n  },\n  {\n    \"question\": \"what did people struggling to walk through snow cover?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are a group of soldiers crossing?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"who shows some scenes from a movie?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who dismisses a group of soldiers?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"struggle\"\n  },\n  {\n    \"question\": \"who narrates over a video about stalingrad?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the russian army doing?\",\n    \"video_name\": \"video9627\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is giving birth?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are doctors talking to?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a doctor deliver?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are doctors performing?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"surgery\"\n  },\n  {\n    \"question\": \"what is a woman giving?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"birth\"\n  },\n  {\n    \"question\": \"what are a team of doctors doing?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"deliver\"\n  },\n  {\n    \"question\": \"what are doctors doing?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are doctors doing?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what did labor ward turn into?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who enters a crowded operating room in which a woman is giving birth?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who delivers a baby?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who is entering a room with three surgeons?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are a group of doctors helping give birth?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of doctors helping a woman give?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"birth\"\n  },\n  {\n    \"question\": \"what look at a woman giving birth?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who are a team of doctors delivering?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"how many people talk in a tv show?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a group of doctors doing?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"who turned into fun place?\",\n    \"video_name\": \"video9628\",\n    \"answer\": \"labor\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are needles of speed meter doing?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"rise\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the engine doing?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"rev\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does a person accelerate quickly in?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who records a car s meters?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person record s meters?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is revving in the car?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"who accelerates quickly in a vehicle?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the engine revving in?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what drives really fast?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is going up?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"gauge\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a person driving?\",\n    \"video_name\": \"video9629\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a girl talking about?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a girl talking while in?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what do a girl explain?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is talking about long hair?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a video of a girl doing?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman is in her room doing?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a girl playing with her hair and doing?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who explain something to camera?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9630\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"who pours some spices on food?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who tries out a very deliciously looking meal?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does someone sprinkle on a plate of food then takes a bite with a spoon?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"who is about to eat a plate of breakfast?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sprinkles pepper on a plate of food then takes a bite with a spoon?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is eating some meat?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses his meal of steak and eggs?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is garnishing something?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tries some new food?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"garnish\"\n  },\n  {\n    \"question\": \"what is a man tries out a very deliciously doing?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is its a food item for doing?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is seasoning?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who seasons the meat?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking breakfast?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is talking about his food?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person garnishing?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what the person seasons?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a man try?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man cooking?\",\n    \"video_name\": \"video9631\",\n    \"answer\": \"breakfast\"\n  },\n  {\n    \"question\": \"how many children are playing together?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do kids sit at?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who do children talk about?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"who tells a fact?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who did the girls talk about?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"what are kids talking at?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what does a young boy tell?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"fact\"\n  },\n  {\n    \"question\": \"what do children talk to?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many children are talking?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what shows children doing?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is dancing while a young boy tells a fact?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who are children talking on camera to off camera?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are children talking on camera to a man off?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are children talking on to a man off camera?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is kids react to strange doing?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two children doing?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video shows children doing?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is young girl doing?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what shows children talking?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9632\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"where is a video game character running?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"rooftop\"\n  },\n  {\n    \"question\": \"who is running across rooftops in a video game?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is running on top of a building?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running by thrashing all the hindernce?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is cartoon clip doing?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is running rooftops?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who plays a sidescrolling video game?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who jumps over multiple obstacles?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a video game character running on?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"rooftop\"\n  },\n  {\n    \"question\": \"who collects coins?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who goes with jumping?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video9633\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a old man with suit doing?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy with a mic on his head doing?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy in black tshirt and coat doing?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a suit doing?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with gray hair doing?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is older man with white hair with a ear to mouth microphone doing?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a old man doing?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man with white color hair doing?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in formal dress doing?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in formal dress speaking to while standing on stage?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who speaks about the details behind science fiction?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who does a person in black dress draw paint and color for?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"cartoonist\"\n  },\n  {\n    \"question\": \"who talks about creating fantastic images?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person in black dress draw for the cartoonist?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"who talks about being an artist?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the fiction movies?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man in black jacket and shirt stand on stage in front of lght bulb covered?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who discusses how he pictured things before culture was saturated with images?\",\n    \"video_name\": \"video9634\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is couple doing?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a european teenage boy is interviewed by a reporter while doing?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a boy is interviewed while doing?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is reporter doing?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who sits on a bicycle and talks to a reporter?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is a european teenage boy interviewed by while sitting on his bicycle?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a boy sitting on a bicycle being interviewed by?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who interviews a young boy on a bike?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is interviewed while on a bicycle?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy on?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is being interviewed on a bike?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man being interviewed on?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is interviewed while sitting on his bike?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on his bike?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is interviewed on tv?\",\n    \"video_name\": \"video9635\",\n    \"answer\": \"biker\"\n  },\n  {\n    \"question\": \"how many wrestlers are fighting?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does the man try to throw out of the ring?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"who lifts another?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what do wrestlers fight in?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are a group of men in having a wrestling match?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"wwe\"\n  },\n  {\n    \"question\": \"what are a group of men in wwe having?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what does a man throw another wrestler out of?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who is in a wrestling match on wwe?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who throws another wrestler out of the ring?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a wwe wrestling match with many people doing?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who trys to throw his opponent out of the ring?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do professional wrestlers beat each other up in?\",\n    \"video_name\": \"video9636\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what do two mens walk into to get the meat out of the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a man remove some food from?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"what does a man remove from the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do two mens walk into the kitchen to get out of the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a man take out out of the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many mens are describing about their family?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men take out of an oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man investigating?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is showing to another man?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man showing to?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is investigating a room?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many other people look on?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man take out of the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what are two mens describing about?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"who smiles?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do two men take food out of?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"who takes a dish out of the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking out out of owen?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who watches?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many men moved towards kitchen picking up grilled chicken from the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many mens walk into the kitchen to get the meat out of the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is taking food out of an oven while a woman watches and smiles?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pulls a turkey out of an oven while two other people look on?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men take food out of an oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did two men move towards picking up grilled chicken from the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is taking out food out of owen?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking out of an oven while a woman watches and smiles?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did two men move towards kitchen picking up from the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who takes out food out of the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who removes some food from the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pull a turkey out of while two other people look on?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"what is a man in an old movie taking out of the oven?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did two men move towards kitchen picking up grilled chicken from?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"what is two men moved towards kitchen doing?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a black and white show with two men doing?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"examine\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"investigate\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what are two mens doing?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9637\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what did a cartoon set on in the fall season?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who are walking through a pumpkin patch?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon with pumpkins and ghosts doing?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is cartoon show doing?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is cartoon doing?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is there s a bunch of cartoon kids doing?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what are three small girls doing?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"how many small girls are walking in a row?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are three small girls walking in?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"row\"\n  },\n  {\n    \"question\": \"who do cartoon show telling to go away?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what set on a street in the fall season?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"when are children traveling through a pumpkin patch?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"how many people are standing in front of a house in a new scene?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cartoons talk together?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what show telling someone to go away?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are then standing in front of a house?\",\n    \"video_name\": \"video9638\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is soya sauce added in?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"tawa\"\n  },\n  {\n    \"question\": \"what does the lady stir well?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is lady cooking vegetables and doing?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a girl and a bowl doing?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a girl and a bowl spoon doing?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a lady in her kitchen doing?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"pore\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is added in th tawa?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what does the lady add some chilli sauce into the pan with?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl spoon pouring mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl spoon pouring mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who adds ingredients together in a pot on the stove?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did women pore sauce to?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is cooking the food by adding something from bottle?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is stirring food inside of a pot?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is pouring the oil with vegetable in the heating vessel to fry?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl pouring spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl pouring spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl pouring spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl pouring mixing dish inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who adds some chilli sauce into the pan with mixed vegetable?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is cooking the food by mixing something using spoon?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl spoon pouring mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does the lady add into the pan with mixed vegetable?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"chilli\"\n  },\n  {\n    \"question\": \"what did women pore to cooking vegetables?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who works on a recipe by adding sauce to a pan of vegetables?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"inhome\"\n  },\n  {\n    \"question\": \"who stirs soya sauce well?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a lady pouring sauce into?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what is someone stirring food inside of?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a lady pouring into the container?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what does an inhome chef work on by adding sauce to a pan of vegetables?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is some wine and chili sauce added to?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"salad\"\n  },\n  {\n    \"question\": \"what is someone cooking by adding something from bottle?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone cooking by mixing something using spoon?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a cook pour a black sauce from a clear bottle a dark sauce from a metal spoon and a reddish sauce from?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"who is pouring sauce into the container?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a lady pouring with vegetable in the heating vessel to fry?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who pours a black sauce from a clear bottle a dark sauce from a metal spoon and a reddish sauce from a bottle?\",\n    \"video_name\": \"video9639\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is some in a kitchen doing?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is its a food item prepration for doing?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a cheif doing?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"list\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman cooking in her kitchen and doing?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"commentate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there a men doing?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who explaning how to make coconut chutney in the malayalam language kerala?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is speaking a foreign language?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is describing food?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman describing?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman speaking?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"language\"\n  },\n  {\n    \"question\": \"who is telling?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"cheif\"\n  },\n  {\n    \"question\": \"what is some food in bowls being shown for?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is explaining how to make a recipe in a foreign language?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing all ingredients of the recepie?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"cheif\"\n  },\n  {\n    \"question\": \"who gives recipe for the preparation of food item?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who explains how to prepare indian garam masala and the ingredients?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are the ingredients needed to prepare a special dish kept in?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what did a ghee and ingredient on table serve on?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a cheif showing all ingredients of?\",\n    \"video_name\": \"video9640\",\n    \"answer\": \"recepie\"\n  },\n  {\n    \"question\": \"who is drawing a picture on the computer?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a demonstration of completing a computer animation of a cat like?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"who is showing how to edit images in a computer program?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a short clip of someone doing?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a person drawing a picture on?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person drawing on the computer?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who is drawing a furry in mspaint?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person draw?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a person drawing on?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what do a computer graphics program making?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"drawing\"\n  },\n  {\n    \"question\": \"what is being painted?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"fox\"\n  },\n  {\n    \"question\": \"who draws a picture?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who program making a drawing?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what wolf on computer?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is drawing on a computer?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone drawing a furry in?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"mspaint\"\n  },\n  {\n    \"question\": \"what is someone drawing in mspaint?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"furry\"\n  },\n  {\n    \"question\": \"what do someone coloring wolf on?\",\n    \"video_name\": \"video9641\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man filming?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what is a man explaining?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what does a man demonstrate?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"who shows off his computer system setup?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is explaining his computer equipment?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives a video demonstration of his computer setup?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about a piece of electronic equipment on his desk?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"who is showing computer?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who demonstrates origami?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is filming his computer equipment?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a system?\",\n    \"video_name\": \"video9642\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two little worms doing?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is an animated caterpillar doing?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is an animated clip where animals are shown as worms doing?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animated worm doing?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what are cartoon worms doing?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are colorfully striped cartoon worms doing?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"inch\"\n  },\n  {\n    \"question\": \"what is two earthworms became friends and the other one doing?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what are worms doing?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what do animated worms inch around on?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"how many animated worms move dramatically?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are worms moving along?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what adventure time people?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"worm\"\n  },\n  {\n    \"question\": \"what are two little worms crawling on?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what two worm adventure?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what are having a conversation?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do worms in a cartoon inch?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what are two cartoon worms having?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are moving around?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do animated characters slink around?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is falling in love with another animated caterpillar?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"caterpillar\"\n  },\n  {\n    \"question\": \"what are colorfully striped cartoon worms inching along?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"how many earthworms became friends?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is crying by seeing two earthworms?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"how many worms inch through a hot place?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does face s an animated worm is waving in front of another worm?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"how many little worms are crawling on ground?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cartoon worms are having a conversation?\",\n    \"video_name\": \"video9643\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is standing around outside?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is someone s girlfriend doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"share\"\n  },\n  {\n    \"question\": \"what is blonde woman in t shirt doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girlfriend of someone doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is sexy blonde in bikini top doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with a white tank top doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman is vividly doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman in a tank top doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who s girlfriend describes a strange sensory experience?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands by the windy water and talks about an event?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving an interview outdoors near the lake?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what do sexy blonde in bikini top talking to?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is blonde woman in t shirt talking near?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who does a man s describes a strange sensory experience?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"girlfriend\"\n  },\n  {\n    \"question\": \"who is talking neat to the wate?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman in a tank top talking by a lake with evergreen trees in?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a girlfriend of someone explaining?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"what is a lady talking neat to?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"wate\"\n  },\n  {\n    \"question\": \"what does someone s girlfriend is sharing from the background of a lake and a lot of trees?\",\n    \"video_name\": \"video9644\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"what do a sports montage with loud music?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are various sports clips shown in?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"frame\"\n  },\n  {\n    \"question\": \"what is a video clip doing?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is players doing?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a football player doing?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what has red uniforms?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what packed different clips?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"who catches a touchdown?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what do a sports montage video with?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who shows footage of sports vines?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are players playing in the stadium?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are players playing football in?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what does a football player make?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what does a football player catch?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"touchdown\"\n  },\n  {\n    \"question\": \"who makes a catch?\",\n    \"video_name\": \"video9645\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are a baby and a child doing?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who do a babysitter caring for?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who claps?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a babysitter doing?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"care\"\n  },\n  {\n    \"question\": \"what is a cartoon baby girl doing?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is an interactive baby doing?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who moves characters to different positions?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"what is cartoon children are able to launch basketballs at a doing?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what does the child play with a toy and with a basketball hoop a baby and a child are playing on the swing?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what care where a boy have to click things for points?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"who spins a hula hoop while a young boy claps?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a computer game where a boy control a female toddlers with mouse clicks?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what does a computer game where a boy control a female toddlers action with?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"who are able to launch basketballs at a moving hoop?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do a child and baby play in as player moves characters to different positions?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"how many women are being controlled what to do by the player?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what moves a baby from a hooded stroller to a red swing in a playground with a basketball hoop?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"while\"\n  },\n  {\n    \"question\": \"who is put into a swing in a video game?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do interactive flash in which a doll is managed through the day?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is standing by a baby in a stroller?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who do a babysitter playing games with outside?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what care where babies play outside?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what does a young girl spin while a young boy claps?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"hula\"\n  },\n  {\n    \"question\": \"who plays with a toy and with a basketball hoop a baby and a child are playing the baby plays on the swing?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what does the child play with a toy and with a basketball hoop a baby and a child are playing the baby plays on?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"swing\"\n  },\n  {\n    \"question\": \"what is a cartoon baby put into in a video game?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"swing\"\n  },\n  {\n    \"question\": \"who is a little girl standing by in a stroller?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who does a while hand move from a hooded stroller to a red swing in a playground with a basketball hoop?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is playing outside with a basketball and hoop?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is a little girl standing by a baby in?\",\n    \"video_name\": \"video9646\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who runs?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who knocks?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who are running?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"footnall\"\n  },\n  {\n    \"question\": \"what is a team doing?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a vine of doing?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what does a football players make?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"block\"\n  },\n  {\n    \"question\": \"what highlights?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"hockey\"\n  },\n  {\n    \"question\": \"who makes a huge block?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"where do two team play a ball game?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are shown?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what did a player push while palying?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"what is a team playing football on?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what do two team play on a field?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do two team play a ball game on?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is playing football on a field?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"who pushed the other one while palying?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who does a football player run straight at?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who runs straight at another player?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what play a ball game on a field?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"where is a team playing football?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are various notable sports clips shown with playing?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a team playing on a field?\",\n    \"video_name\": \"video9647\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"compose\"\n  },\n  {\n    \"question\": \"what is three musicians doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are three guy doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are guys doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are a couple guys doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a group of people speak to one another in?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does whole another guy play on?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who sits nearby with a guitar?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who plays on a guitar?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"how many boys are composing song?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are talking while a guy sits nearby with a guitar?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who laughs loudly?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are sitting around talking to each other?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are two boys composing?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are guys talking in?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a guy sit nearby with?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talk to each other?\",\n    \"video_name\": \"video9648\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy riding a show?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is riding a horse outside?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits in the saddle?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding outside?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is being ridden?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what spins around?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is riding a horse on field?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing stepping tricks with his horse outside for people?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a horse dance in while a man sits in the saddle?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"arena\"\n  },\n  {\n    \"question\": \"where is a person riding a horse?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what dances in an arena while a man sits in the saddle?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who rides a horse in place while a crowd watches?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man sit in?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"saddle\"\n  },\n  {\n    \"question\": \"what is a person riding a horse on?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a person riding on field?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man on a horse doing?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"trot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are a man and a trained horse doing?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are a man and a trained horse performing for?\",\n    \"video_name\": \"video9649\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is playing basketball?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a basketball player leap and touches the top of?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"backboard\"\n  },\n  {\n    \"question\": \"who shoots a layup?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is reaching up high?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who is jumping?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what does a basketball player shoot?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"layup\"\n  },\n  {\n    \"question\": \"who howard almost touches the top of the backboard?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"dwight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who leaps and touches the top of the backboard?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who jumps clear to the top of the board behind a basketball hoop?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is touching a basket ball post in a basket ball court?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a basketball player doing?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a athlete doing?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a basketball player doing?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a professional basketball player doing?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man jumping and doing?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a basketball doing?\",\n    \"video_name\": \"video9650\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who assembles a blue toy?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who s plastic toy?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who assembles a play doh toy?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is fixing a cap for a plastic box?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing with some toys?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is assembling a toy house?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is being put together?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a child s?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what does person show off?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a person assemble?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is someone assembling?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what does a persib assembling?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who shows off a toy?\",\n    \"video_name\": \"video9651\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a boy is shown doing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a is shown doing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a game caster doing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who commentates over trove gameplay?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a pc video game?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is shown playing a video game?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing minecraft?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man commentate over?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"gameplay\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9652\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many persons are drinking a cup of juice?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a segment of the late show where bill murray doing?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what was bill murray doing?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is david letterman doing?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is david letterman doing?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is telecasting?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is david letterman interviewing murray?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"bill\"\n  },\n  {\n    \"question\": \"what are two persons discussing?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is interviewing bill murray?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about video games?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many persons are discussing some thing?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who do a scene from a comedy show with?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"what is a man dressed as a jockey doing?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is being interviewed by david letterman?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"murry\"\n  },\n  {\n    \"question\": \"who was talking about a horse race?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"who is on the david letterman show?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"murray\"\n  },\n  {\n    \"question\": \"what is a comedy show doing?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"telecast\"\n  },\n  {\n    \"question\": \"what are two persons drinking a cup of?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"who is bill murry being interviewed by?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"who is talking on a tv show?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a very funny talk show host?\",\n    \"video_name\": \"video9653\",\n    \"answer\": \"letterman\"\n  },\n  {\n    \"question\": \"who does a person draw on a piece of paper?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is demonstrating how to color squidward?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what the squidward a man coloring in has just drawn?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man coloring a drawing of?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what is a man demonstrating how to?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who is coloring a drawing of squidward?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person drawing?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who drawing and coloring a cartoon image?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a person color?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is drawing something?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing cartoons?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who coloring a cartoon character?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is coloring in squidward?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shows how to draw squidworth?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone coloring in?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who is a man drawing from sponge bob squarepants?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who shows how to color in a drawing?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who draws a cartoon character on a piece of paper?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a man drawing and doing?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who is drawing a character from sponge bob squarepants?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about the procedure of coloring the cartoon picture?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is coloring squidward from the show spongebob squarepants on nickelodeon?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to color the cartoon character squidward?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man coloring squidward from the show spongebob squarepants on?\",\n    \"video_name\": \"video9654\",\n    \"answer\": \"nickelodeon\"\n  },\n  {\n    \"question\": \"what did the students walk towards?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what is passing a neighborhood?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what stops at the school?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what is dropping kids off?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what does a school bus stop at?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what do kids prepair to get on?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"bus\"\n  },\n  {\n    \"question\": \"what is a school bus passing?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"neighborhood\"\n  },\n  {\n    \"question\": \"what is about children getting on the bus too goo to school?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are moving to sit in the school van?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is picking up little children both girls and boys?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"schoolbu\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is young kids doing?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"load\"\n  },\n  {\n    \"question\": \"what is a school bus doing?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what are the children s doing?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a school bus doing?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a schoolbus doing?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is children doing?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a yellow school doing?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what picks up a girl with a pink backpack?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what is picking up a lot of kids?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what line up?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what does music play in?\",\n    \"video_name\": \"video9655\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who does bambi sit by along with other disney movie scenes?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"what is sleeping a prince?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a music track play in?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is a baby deer sleeping?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"prince\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a commercial that doing?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what are both the doges doing?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a deer is wake up in forest and a cartoon man and woman doing?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the deer and the romance couple doing?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a baby deer doing?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is bambi wakes up from doing?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what were an animated cartoon characters doing in forest?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who are dancing two dogs are eating spaghetti?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"princes\"\n  },\n  {\n    \"question\": \"what are some cartoon characters moving around?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"how many dogs are princess dancing are eating spaghetti?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when is a commercial that promoting disney movies?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"who sits by mother along with other disney movie scenes?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"bambi\"\n  },\n  {\n    \"question\": \"what is a commercial that promoting over time?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what is wake up in forest?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what are animals in with a prince and princess?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what are moving around an area?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are several disney movie scenes accompanied by?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who sings while disney animated films are shown?\",\n    \"video_name\": \"video9656\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a type of small mammal with a long tail doing?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a monkey is on top of a cage and a person doing?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is i see a cute animal doing?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a monkey and a man doing?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what does the mini monkey s are exciting?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what does cage s a very small monkey is being fed part of on top of it?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what s action are exciting?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what does a monkey take easily form the hand of a man?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is feeding the monkey?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person feeding?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what does the mini monkey s?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what looks happy?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what does a small monkey eat that a person hands it?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"who does a monkey take food easily form the hand of?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is feading a nuts to a small animal?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who feeds a small animal that jumps around?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who feeds a small monkey a treat on top of cages?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the mini monkey s action doing?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"excite\"\n  },\n  {\n    \"question\": \"what does man feed a treat on top of cages?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what walks across a cage and then grabs a piece of fruit?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is having fruits offered by someone?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what does a type of small mammal with a long tail take from someone?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"treat\"\n  },\n  {\n    \"question\": \"what does a type of small mammal with a long tail take a treat from?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a furry little creature with a long tail like?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what takes food easily form the hand of a man?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what does a little monkey walk across a cage and then grabs a piece of?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what eats a banana that a person hands it?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"who makes noises at?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what s a very small monkey is being fed part of a banana on top of it?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is a man giving to a small monkey?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is on top of a cage?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"who is giving food to a small monkey?\",\n    \"video_name\": \"video9657\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who plays?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays angry birds?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a player commentates while doing?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy in the corner doing?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what play footage of angry birds?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is discussing a game of angry birds?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing video graphics game?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who demonstrates how to play angry birds?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who commentates while playing angry birds?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who comments on a game as he plays?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing angry birds?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a physics game?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what show for kids?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a man comment on as he plays?\",\n    \"video_name\": \"video9658\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a robot doing?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"what is a robot doing?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a robot is slowly doing?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what is superheroes doing?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what moves slowly?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what stands at an angle while a man holds a big hammer?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what does a robot stand at while a man holds a big hammer?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"angle\"\n  },\n  {\n    \"question\": \"what is looking at a man with a hammer?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is entering a hall talking to some one?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"what is a robot entering talking to some one?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"what are superheroes sensing?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"what is going on of avengers?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who threatens the avengers?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"ulton\"\n  },\n  {\n    \"question\": \"who holds a big hammer?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is slowly beginning to move?\",\n    \"video_name\": \"video9659\",\n    \"answer\": \"robot\"\n  },\n  {\n    \"question\": \"who types a whole lot of words using a typewriter?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who types the words on a white piece of paper?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a title page on white paper rolling under with a rubber ring when two final words are typed through a raised ribbon?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"crossbar\"\n  },\n  {\n    \"question\": \"what started as an individual is typing different words and phrases on a typewriter?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is typed on a typewriter as high pitched squeals are heard?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"document\"\n  },\n  {\n    \"question\": \"what is a document typed on as high pitched squeals are heard?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"typewriter\"\n  },\n  {\n    \"question\": \"what is the matter typed from on to it?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"typewriter\"\n  },\n  {\n    \"question\": \"what is typed from the typewriter on to it?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"matter\"\n  },\n  {\n    \"question\": \"who extends paper forward then types a few words?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"writer\"\n  },\n  {\n    \"question\": \"what is an individual typing different words and phrases on?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"typewriter\"\n  },\n  {\n    \"question\": \"what is two woman and a man watching writing machine?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is man sitting on with two blonde women?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is someone typing something on the paper with?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"typewriter\"\n  },\n  {\n    \"question\": \"what is someone typing on the paper with typewriter?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is person presenting on white piece of paper?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is typing different words and phrases on a typewriter?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"what is someone typing something on with typewriter?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is sitting on the table with two blonde women?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a person types a whole lot of words using?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"typewriter\"\n  },\n  {\n    \"question\": \"what is writing the introduction to a music video?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"trio\"\n  },\n  {\n    \"question\": \"what is the details of persons involved in a movie documentary or short film being typed on?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"typewriter\"\n  },\n  {\n    \"question\": \"what is one boy and two girls doing?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a paper with doing?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is a matter being typed on using a typewriter by someone?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young trio doing?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a person types a whole lot of words doing?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is two woman and a man doing?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a title page on white paper doing?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is being typed on paper using a typewriter by someone?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"matter\"\n  },\n  {\n    \"question\": \"who is presenting something on white piece of paper?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is typing something on the paper with typewriter?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who finishes a screenplay on a typewriter?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is music started as an individual doing?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9660\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"compare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man in a car and doing?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man talks about doing?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man reviewing?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is getting ready to race another car?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about his car power compared to his opponent?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about vehicles?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"gear\"\n  },\n  {\n    \"question\": \"what do man test driving?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who does a man talk about his car power compared to?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"who is talking about sports cars?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is about to race a car?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting in a sports car discussing the specifications about the car?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who test driving car?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reviewing a sports car?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a mercedes?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in a race car?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man about to race?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is man about to a car?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who sits in a car and talks about it?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a car down the road?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about racing the other vehicle shown?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the features of a car?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about horsepower and weight of a car?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive down the road?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive a car down?\",\n    \"video_name\": \"video9661\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a kid explaining about?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an airplane flying over?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what do a class slipper on?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"pillow\"\n  },\n  {\n    \"question\": \"what do a glass slipper on?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"cushion\"\n  },\n  {\n    \"question\": \"what does the story of cinderella s is discussed in a cartoon picturing the shoe?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is flying over a mountain?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who is explaining about the cartoon?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what slipper on a pillow?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"what slipper on a cushion?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what shows a sparking ring on a pillow?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who narrates the story about a glass slipper only fitting a great dancer?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is the story of cinderella s show is discussed in a cartoon doing?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is cartoon scene doing?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an airplane doing?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is little einstein character doing?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a clip of a cartoon doing?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a child narrates the story about a glass slipper only doing?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"fit\"\n  },\n  {\n    \"question\": \"what is a cartoon image of a glass slipper doing?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a video shows a doing?\",\n    \"video_name\": \"video9662\",\n    \"answer\": \"spark\"\n  },\n  {\n    \"question\": \"how many women are fighting?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does a mma fighter fight?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what does women s free style fighting?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who do two women fight?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"ufc\"\n  },\n  {\n    \"question\": \"how many women are wrestling?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who fights an opponent?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"fighter\"\n  },\n  {\n    \"question\": \"what does women s fighting match end?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"style\"\n  },\n  {\n    \"question\": \"what is a man commentates on women s doing?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a video is played doing?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two female ufc fighters doing?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many girls fight each other in a video game?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is played showing a ufc fight between two female contestants?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who gets on top of another?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many women fight ufc?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is women s free style doing?\",\n    \"video_name\": \"video9663\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who is preparing a recipe?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking something?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman frying?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"pastry\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is showing food recipe?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a woman fry?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what do someone squirtting dough into?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"frypan\"\n  },\n  {\n    \"question\": \"what does a person bring in a pan to a boil?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is frying dough?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what dough into a frypan?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about frying dough?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what does a person bring some water in a pan to?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"who fries dough in oil?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who brings some water in a pan to a boil?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who piping icing out of a piping bag?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making fried pastry?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who explains how to fry dough?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"pip\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9664\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"when is a woman dancing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is performing on a stage?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what lead bank signing a song?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"when is a young girl performing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when does a young female artist sing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do female lead bank signing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when does a girl with facepaint sing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when do girl singing live?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do female lead signing a song?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"bank\"\n  },\n  {\n    \"question\": \"what is performing for a crowd?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what live on the stage?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what is a band performing for?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a woman singing with?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing with a band?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing on a stage?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what preforms a song in a room?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is female lead bank doing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a singing group doing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"when do a singing group wearing face paint performing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9665\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is giving demo for car?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing how his car windows work?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is operating his car s window?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting in rolling the window up and down?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is sitting in a car rolling the window up and down?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking pushing the power window buttons of the car?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is somebody doing?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is filming himself in a car?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is rolling up and down a window?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who inspects what features work on a car?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man operating his car s?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what demonstrates how his car windows roll up and down?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person discussing?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone giving?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man close?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is a man operating s window?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is discussing a car?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what driving a filming?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man rolling up and down?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is a man filming himself in?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who closes a car door?\",\n    \"video_name\": \"video9666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is sports vines doing?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is football players doing?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is players doing?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a rugby game doing?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what are several men doing?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is progressing?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who try to catch the ball?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are shown to music?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are football plays shown to?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do football players try to catch?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are several men playing?\",\n    \"video_name\": \"video9667\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are a bunch of cars doing?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a red sports car is shown doing?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is people at a car show doing?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a car along a field?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a red car with it s open?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"hood\"\n  },\n  {\n    \"question\": \"what do two people drive?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are fast cars shown off at?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"how many people drive a red car?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did cars at showcased at?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about cars?\",\n    \"video_name\": \"video9668\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is models doing?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is cartoon women walks around a stage while a man doing?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a computer generated fashion show and dance with girls doing?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man stands in spotlight doing?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does cartoon women walk around while a man standing in the yellow spot light sings?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a red man doing?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are some animated models doing?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some computer generated models doing?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are some animated models walking around in?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what generated fashion show and dance with girls walking around a character in the middle under a spotlight?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does a man stand in spotlight dancing with models walking on stage around him for?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what are group of people walking on?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what does a man stand in dancing with models walking on stage around him for audience?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"spotlight\"\n  },\n  {\n    \"question\": \"when are some computer generated models walking?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are walking on the scene?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are watching few girls?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"when are more animated images roundind?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are few girls doing with the music?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"what shines down on a performer while models in bras and panties walk around the edge of an oval stage past colored footlights and the audience?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"spotlight\"\n  },\n  {\n    \"question\": \"who walks around a stage while a man standing in the yellow spot light sings?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is standing on the circle or dias singing a song?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"where are group of people walking?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what did video of a computer generate is played with music?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what did video of a computer generate fashion is played with?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what supports a cartoon dancer in the spot light?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a red man standing at the center dancing to?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"when do the models walk as the audience watches?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are few girls doing ramp walk with?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who stands in spotlight dancing with models walking on stage around him for audience?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does dance music support in the spot light?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what watches?\",\n    \"video_name\": \"video9669\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is person flying with?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who is recording the windmills?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing the countries and the windmills in the world?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does electricity come from the high seas to?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"consumer\"\n  },\n  {\n    \"question\": \"what comes from the high seas to the consumer?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"electricity\"\n  },\n  {\n    \"question\": \"what wind turbines in the ocean?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do a video showing wind turbines in?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who is talking about a wind power plant?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown then an view of clouds and land followed by a picture of a windmill?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"map\"\n  },\n  {\n    \"question\": \"who is flying with airplane?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is an animated white wind blower doing?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"who explains how windmill produces current from ocean?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what produces alternative current like traditional power plants on land?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"shore\"\n  },\n  {\n    \"question\": \"who explains how man made windmills save energy?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is charted as it comes from the high seas to the consumer?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"electricity\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who explains how man made windmills work their benefits?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9670\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man demonstrates an experiment doing?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is man shows an experiment doing?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is lighting a candle he showing the lighter gun?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is lighting the candle without touch the candle?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a man lighting?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what is a man lighting up?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what the man lights?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what a man lights?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"who is doing a science experiment?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is lighting up a candle?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lighting a candle?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lights the candle?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lights a candle?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a candle in a room?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man lights a candle in?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man doing an experiment with?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what is a man doing with a candle?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a man lighting for an experiment?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"what is a man lighting a candle for?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a person lighting without touch the candle?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"candle\"\n  },\n  {\n    \"question\": \"who is doing a candle experiment?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing an experiment with a candle?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows an experiment using candles?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates an experiment using a candle and a lighter?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lighting a candle for an experiment?\",\n    \"video_name\": \"video9671\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"cuddle\"\n  },\n  {\n    \"question\": \"what was the cat doing?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"nurse\"\n  },\n  {\n    \"question\": \"what is mama cat doing?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"cuddle\"\n  },\n  {\n    \"question\": \"what is a mother cat doing?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a momma cat doing?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"snuggle\"\n  },\n  {\n    \"question\": \"what is a kitten doing?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"snuggle\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is sleeping?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"who kitten being held?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who does a cat snuggle with?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a cat cuddling?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what snuggling with another cat?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is hugging a kitten quite adorably?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what was nursing a kitten?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat hugging?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is hugging a kitten?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is cuddling another cat?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who does a momma kitten cuddle with?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a cat hugging quite adorably?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what was the cat nursing?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what does a cat snuggle with?\",\n    \"video_name\": \"video9672\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person showing cooked?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who pokes at some fried potatoes on a plate?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is describing how he finished a tray of cottage fries?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing what completed cottage fries should look like?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing how cottage fries should look and sound like?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is explaining how to make cottage fries?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person poke at some fried potatoes on?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who is putting cottage fries on display?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man demonstrating?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a man putting cottage fries on?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who is a man putting on display?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"cottage\"\n  },\n  {\n    \"question\": \"who is talk about some snacks?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about college fries?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains how to make cottage fries?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about food?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing cooked potato slices?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is a man talking about?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"college\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is demonstrating a recipe?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is describing a fried food?\",\n    \"video_name\": \"video9673\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a media person interviewing?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"industrialist\"\n  },\n  {\n    \"question\": \"what do two persons sit in?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what is jim cramer interviewing a man about?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"company\"\n  },\n  {\n    \"question\": \"what is there are two people doing?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are two men in a studio doing?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is the seed nest owner?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is speaking about the investing the money?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is bald on top and older than the first man?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two mana re doing?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who interview the another man in the news channel?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is asking a guy about how he makes money?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"interviewer\"\n  },\n  {\n    \"question\": \"how many men are talking on the tv news?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men sit on stools while one interviews the other?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men discuss finance together on a talk show?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are having a heated discussion on a television show?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is saying about some enquiries to the media persons?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who has just a purple dress shirt on with slacks?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing an industrialist?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are two men in a studio conducting?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"how many mana re talking each other?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is being interviewed about his company seedinvest?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being interviewed by a tv personnel?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is jim cramer interviewing about his company?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing a man about his company?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"cramer\"\n  },\n  {\n    \"question\": \"who is an interviewer asking about how he makes money?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who interviews another man who describes how he makes funds through the stock market?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many persons sit in the studio?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is an interviewer doing?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is the news reporter doing?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a media person doing?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is jim cramer doing?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who make?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in formal wear doing?\",\n    \"video_name\": \"video9674\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"who is playing video game?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone showing video graphics on?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing video graphics on computer?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is attacking a video game enemy?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone shooting at others in game?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who is someone showing on computer?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who speaks in french?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is climbing a hill?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a minecraft character doing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what appears to be a maze and exciting?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a minecraft character climbing?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is shooting blue fire at others in game?\",\n    \"video_name\": \"video9675\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who pulls a sweater down off a shelf?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pull a sweater down off?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"shelf\"\n  },\n  {\n    \"question\": \"who is terrified?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who glasses?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man holding?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what does a man shoot?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what does man pick up?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what a man grabs?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"who is trying to find something?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a cloth?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person picking up a red color clothing from?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"closet\"\n  },\n  {\n    \"question\": \"who picks up a red shirt?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who grabs a blanket?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shocked after taking a piece of cloth off a cabinet?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person go through various clothing articles in?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"closet\"\n  },\n  {\n    \"question\": \"what is a man shocked after taking a piece of cloth off?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"cabinet\"\n  },\n  {\n    \"question\": \"who shoots a clothing commercial?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who goes through various clothing articles in a closet?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man pull down off a shelf?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"sweater\"\n  },\n  {\n    \"question\": \"who picks up a red piece of clothing and freaks out?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"who is acting in a trailer of a parody of a scary movie?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who is picking up a red color clothing from the closet?\",\n    \"video_name\": \"video9676\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man in a red stripe?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a man in a red and white shirt driving?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving while describing his impressions of the vehicle?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did a man in a strip discussing his impression of a car?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a man explaining the performance of?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man wearing a red shirt that driving?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving inside the car?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a car review and test enthusiast highlight the features and benefits of he is driving and testing at the moment?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does the spokesman describe the impressive handling and steering of?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"mpv\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did a man in a strip red shirt discussing his impression of?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man in a red narrate?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"journey\"\n  },\n  {\n    \"question\": \"what did a man in a strip driving a car?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a man driving inside?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is there is a tshirt man doing?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the driver of the car doing?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is discussing how he likes a car?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a car review and test enthusiast highlights the features and benefits of a car he doing?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in red t shirt doing?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a red and white shirt doing?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man in a stripped red shirt doing?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is driving the car by speaking about something when driving?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is explaining the performance of the vehicle?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man in a strip red shirt driving?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the impressive handling and steering of the mpv?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"spokesman\"\n  },\n  {\n    \"question\": \"who discusses the benefits of the company car buyer?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what is a person driving by speaking about something when driving?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car while describing his impressions of the vehicle?\",\n    \"video_name\": \"video9677\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are churros on?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what did latino woman talking about cooking some fried foods dip in?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who is finished with teaching how to prepare a food?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a foreign speaking woman talk about?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"toast\"\n  },\n  {\n    \"question\": \"who talks about food recipes?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what sticks dipped in chocolate?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"toast\"\n  },\n  {\n    \"question\": \"who is talking about some food?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does french toast stick dipped in?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who talks about churros and chocolate?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does someone talk about?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is latino woman doing?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman is finished with doing?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is food doing?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9678\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is showing computer parts?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who talks about his computer parts?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man talk about?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"motherboard\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what did a man get for?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who got for his computer?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who will list all the components in the description?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is looking at electronic products?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who discusses the features of a sata drive?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing an array of electronic devices?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the various components in his computer build for a vmware based computer?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing all the latest gadget he got?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who documents the contents of a package he receives?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses boxes with computer parts in them?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man document the contents of he receives?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"who talks about building his own pc?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes his pc parts he chose for his build?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about what motherboard he chose?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who talks about a motherboard?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man talks about doing?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9679\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does information about a flight scroll past an image of?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what are an astronaut talking through the radio and yellow words going down with the earth in the background?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a man speaking over about a difficult flight complete with bad weather and conditions?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"radio\"\n  },\n  {\n    \"question\": \"what generated image of earth with text scrolling in front of it?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what do yellow words scroll from bottom to top on?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do yellow words scroll from to top on a screen?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"bottom\"\n  },\n  {\n    \"question\": \"what is an astronaut doing?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there doing?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"end\"\n  },\n  {\n    \"question\": \"what is a blue animation doing?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"represent\"\n  },\n  {\n    \"question\": \"what is words doing?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who talks while an image of earth is shown on the screen?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does yellow text about flight information float up while someone talks wounded soldiers?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what cross the pacific ocean on a picture of the earth?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"who is speaking over radio about a difficult flight complete with bad weather and conditions?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the planet earth floating out in?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what is floating in space with yellow text?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"planet\"\n  },\n  {\n    \"question\": \"what is a man who is talking about the flights on?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what does end scene of a movie a casting roll on?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is the planet earth doing?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is an uninformative video doing?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what is on google earth is a man who doing?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is information about a flight doing?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what are a letters doing?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"scroll\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is an image of earth shown on?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what follows?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"narration\"\n  },\n  {\n    \"question\": \"what scroll up?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who talks wounded soldiers?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is floating out in space?\",\n    \"video_name\": \"video9680\",\n    \"answer\": \"planet\"\n  },\n  {\n    \"question\": \"what are soccer players fighting on?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a riot start during?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing sport?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"who is fighting?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are sports people fighting on?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what starts during the game?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"riot\"\n  },\n  {\n    \"question\": \"what is a team fighting?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"what are people watching?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a sport team playing?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what are people running around on?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is fighting another team?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"team\"\n  },\n  {\n    \"question\": \"who are fighting on the field?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"where are people running around?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are soccer fans taken down by?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"what rush on the field?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do soccer fans rush on?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where are sports people fighting?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are taken down by security?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"where are soccer players fighting?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what match that turns into a fight?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do a soccer match that turns into?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who are fighting during a soccer match?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"where do soccer fans rush?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is sports clips of athletes doing?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a team doing?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a sport team doing?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are soccer players doing?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are sports people doing?\",\n    \"video_name\": \"video9681\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what did a woman with a stuff?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"who has given a woman a flower?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many women are looking at clothing?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man giving a stuffed to a woman?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"when are a mother and daughter spending together?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a couple having together?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"who is a lady shopping with?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"daughter\"\n  },\n  {\n    \"question\": \"what does a japanese man give?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"what are having fun together?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who gives a flower?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and and woman kissing?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"eachother\"\n  },\n  {\n    \"question\": \"what are two women looking at?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"clothing\"\n  },\n  {\n    \"question\": \"what did a girl being surprised with a stuff by male friend?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"who did a girl being surprised with a stuff animal by?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who is a man giving a stuffed animal to?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a mom and daughter enjoy doing?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are a mother and daughter doing?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"spend\"\n  },\n  {\n    \"question\": \"what is man present a women with a rose and then she kisses him on the cheek and they go doing?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are a man and and woman doing?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"surprise\"\n  },\n  {\n    \"question\": \"who gives a red rose wrapped in yellow tissue to a woman?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man give a red rose wrapped in yellow tissue to?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is surprising a woman with a rose?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving a stuffed animal to a woman?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man give a red rose wrapped in to a woman?\",\n    \"video_name\": \"video9682\",\n    \"answer\": \"tissue\"\n  },\n  {\n    \"question\": \"what do a man and two women perform?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"who walking with his mother?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"when is the comedy performance going?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are people performing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do indian actors do?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"improvisation\"\n  },\n  {\n    \"question\": \"who do a boy walk with?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"what is going on stage?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who wields a giant wheel while talking to two women who then attack him?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is judges doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is it is a hindi comedy show doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a hindi comedy show starring kapil sharma?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"improvisation\"\n  },\n  {\n    \"question\": \"when do a foreign game show with contestants acting out skits?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what show with contestants acting out skits on stage?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who did man doing comedy act slap by?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who preforming a play with two women?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a skit show pretend to drive?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a comedian doing about driving with women?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"skit\"\n  },\n  {\n    \"question\": \"who did man got slap by?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a foreign game show with contestants doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"what is a man wields a giant wheel while doing?\",\n    \"video_name\": \"video9683\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman in a kitchen carefully doing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person is seen doing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a female chef demonstrates her technique for doing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is in a kitchen a person doing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a perosn using to cut an onion?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a perosn doing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is white onion cut in half then a cut half is placed flat against with the curved part held down with fingertips for further slicing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"surface\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a person slicing for a meal that there going too make?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is cut in half then a cut half is placed flat against a surface with the curved part held down with fingertips for further slicing?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a man cut into pieces with a knife?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what do a women chops one large onion with into slices?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does a man cut some fruit into pieces with?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a lady choping to prepare salad?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is using a knife to cut an onion?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"perosn\"\n  },\n  {\n    \"question\": \"who is choping the onion to prepare salad?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is preparing vegetables to be used for cooking?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts some fruit into pieces with a knife?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what slices white onion with sharp knife on the table?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"who is showing how to chop a large onion in a kitchen?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman narrating the chopping of with a large knife?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who narrates directions with a demonstration of how to chop an onion?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is narrating the chopping of an onion with a large knife?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a onion for a meal that there going too make?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does somebody slice with sharp knife on the table?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person showing how to chop a large onion in?\",\n    \"video_name\": \"video9684\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who throws spinning back kicks?\",\n    \"video_name\": \"video9685\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9685\",\n    \"answer\": \"karate\"\n  },\n  {\n    \"question\": \"who are some people doing?\",\n    \"video_name\": \"video9685\",\n    \"answer\": \"acrobat\"\n  },\n  {\n    \"question\": \"what is guys doing?\",\n    \"video_name\": \"video9685\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9685\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video9685\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video9685\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are children and adults doing?\",\n    \"video_name\": \"video9685\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is the boy throws doing?\",\n    \"video_name\": \"video9685\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9685\",\n    \"answer\": \"practise\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9685\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is touching a woman in pain?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man give to a woman giving birth?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"aid\"\n  },\n  {\n    \"question\": \"who assists a woman in pain?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mans arm?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does woman crying into man?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"who is crying in pain?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is in pain?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women giving?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"birth\"\n  },\n  {\n    \"question\": \"what is a woman crying in?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"pain\"\n  },\n  {\n    \"question\": \"what is a woman in?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"pain\"\n  },\n  {\n    \"question\": \"who gives aid to a woman giving birth?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman giving?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"birth\"\n  },\n  {\n    \"question\": \"who helps young woman who is screaming?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is old lady helps young woman who doing?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9686\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a red haired man with black t-shirt speaking in a england accent about how to prep a crab as he doing?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"tear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is gordon ramsey doing?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is unshelled?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"where did a man cut some meat to prepare the dish?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who stands and stuff crab shells and place on a plate with cooked crab legs?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who prepares crab meat on a blue dish?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what are lobster meat and chili butter served in?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"shell\"\n  },\n  {\n    \"question\": \"what does a chef place on a table?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what stuffed by a blond man in a kitchen?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a chef place crab meat on?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does a cook rub butter onto?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"lobster\"\n  },\n  {\n    \"question\": \"what is a man showing how to with other food?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"lobster\"\n  },\n  {\n    \"question\": \"who places crab meat on a table?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what did a man cut to prepare the dish in home?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man showing how to stuff lobster with?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a chef prepare on a blue dish?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"what did a man cut some meat to prepare in home?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what did a man cut some meat to prepare the dish in?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is garnished with ingredients by a man to make a dish?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"crab\"\n  },\n  {\n    \"question\": \"who prepares the seafood to and place on the platter?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut some meat to prepare the dish in home?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rubs butter onto the lobster?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does a cook rub onto the lobster?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"who is showing how to stuff lobster with other food?\",\n    \"video_name\": \"video9687\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks at a celebrity on the computer?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a man have a picture of s face on the computer screen?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man talking about a colorworks ad on?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"watchmojo\"\n  },\n  {\n    \"question\": \"who does a commercial for color work watching a ad its for make up?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is looking at a picture of a woman on a computer screen?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has a picture of a woman s face on the computer screen?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is talking about a colorworks ad on watchmojo?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a older man doing?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is a commercial for color works a black guy doing?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what does a person look at a celebrity on?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who does a person look at on the computer?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who is editing a photo on computer?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing make up?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is on the tv?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is editing a picture?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is editing a photo?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a computer program?\",\n    \"video_name\": \"video9688\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is mixing spices in a bowl together?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some powder and stuffs put together into to make a mix?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what are some powder and stuffs put together into the bowl to make?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what pan with an assortment of ingredients being poured into it?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"silver\"\n  },\n  {\n    \"question\": \"what did more cooking powder add on?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what added on the container?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"powder\"\n  },\n  {\n    \"question\": \"what is a man mixing spices in together?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what are ingredients put in a pan with to boil it?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is adding many spices and sauces to a bowl in order to season?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who adds a red powder to a shiny metal bowl which contains orange and brown powder and a yellowish minced ingredient?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating how to prepare a meal warning to be careful after adding a certain ingredient?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who adds food coloring to some food he is cooking and warns people to be carful?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who throws a lot of random greasy ingredients into a metal bowl?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mixes various spices in a metal bowl?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man add coloring to some food he is cooking and warns people to be carful?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who talks about the danger of adding a certain spice?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"when is a person adding many spices and sauces to a bowl in order?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is in a big bowl doing?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who adds the ingredients to the stainless bowl?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is the chef doing?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is man adds food coloring to some food he doing?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is we see a bowl with a mix of ingredients a chef puts red powder in and warns against doing?\",\n    \"video_name\": \"video9689\",\n    \"answer\": \"stain\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt looking too when compared to the old man standing near him?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who is wearing a beige suit?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what continues?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who explains the condition of someone in the hospital to the press outside of a building?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is addressing a group of people holding microphones outside of a building?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when do an older man on the news talking but pause before speaking again?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"while\"\n  },\n  {\n    \"question\": \"what does an old man in a gray sport coat talking about someones?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"condition\"\n  },\n  {\n    \"question\": \"who explains the condition of a person to a newschannel?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"beige\"\n  },\n  {\n    \"question\": \"what is there is an old man doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is an old man in a grey sport coat doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a white jacket doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man in a suit speaks to people while doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man in a suit and tie doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an older man on the news doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a white suit is interviewed doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is a man in blue shirt doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a bald headed old man doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a white suit with a blue tie doing?\",\n    \"video_name\": \"video9690\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is driving at night?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"mazda\"\n  },\n  {\n    \"question\": \"when is a red mazda driving?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what drives around at night?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a car?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is driving an car?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"mazda\"\n  },\n  {\n    \"question\": \"what is a mazda driving?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being driven?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"when does a car drive around?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what is being driven on the road?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man drive a mazda on?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what drives on the slick road?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a red car drivnig on at dark?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a man demonstrate driving a car as?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what is featured?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is drivnig on a road at dark?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who does a man drive on a track?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"mazda\"\n  },\n  {\n    \"question\": \"what does a man demonstrate driving as an advertisement?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driven on a simulated track to show off its interior?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a mazda on a track?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who zooms around in a new car commercial?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a commercial for the mazda 3 the card sliding around?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"corner\"\n  },\n  {\n    \"question\": \"what is a red car being driven on?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a commercial for the mazda 3 the card doing?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a man demonstrates doing?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a red mazda car doing?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a red mazda doing?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is he doing?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who demonstrates driving a car as an advertisement?\",\n    \"video_name\": \"video9691\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are other men standing behind?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did one to one interview with a person name?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"john\"\n  },\n  {\n    \"question\": \"what is a news interview about a portfolio taking with the ceo of blackberry john chen?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who is hoping to 500 milion in a year?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about 230 million in a year?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about buisnesses and money?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man speaking about 230 million?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"year\"\n  },\n  {\n    \"question\": \"what does ceo of blackberry discuss growing the economics of?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"company\"\n  },\n  {\n    \"question\": \"what is man in black suit in?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"office\"\n  },\n  {\n    \"question\": \"who discusses growing the economics of his company?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"blackberry\"\n  },\n  {\n    \"question\": \"who is trying to get up to 500 million in the next year?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy in glass and coat doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man with black suit doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is ceo of blackberry discusses doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"grow\"\n  },\n  {\n    \"question\": \"what is the old man with spectacles doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an asian man doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a suit doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is an asian man with glasses doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in black suit is in the office and doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a chinese man doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is ceo of blackberry on cnbc doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is black berry ceo the executive chair of blackberry s and he is one of the member of the board of directors doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is john chen stock expert doing?\",\n    \"video_name\": \"video9692\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who did oil pour on a container by?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what poured on a container by a lady?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is adding fish sauce and fish paste to a pot?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding ingredients to a pot of food?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does an old woman add into a large steel metal pot for cooking?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is adding fish sauce into a pot in a kitchen?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who adds sauce into a large steel metal pot for cooking?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who adds fish sauce and fish paste to a large stainless steel cooking pot?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who adds soy sauce and fish paste to a dish?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did oil pour on by a lady?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what does an old lady add?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"paste\"\n  },\n  {\n    \"question\": \"what is an old woman cooking in?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is cooking in the kitchen?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does women put ingredients in a vessel with to boil it?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who adds fish paste?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who cook adding additional ingredients?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do older woman cook adding liquid to?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"what does a woman add soy sauce and fish paste to?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who cook adding liquid to a spoon?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and showing the ingredients for?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is an old lady adding to the vessel?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is an old lady adding sauce to?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"vessel\"\n  },\n  {\n    \"question\": \"what is a woman adding fish sauce and fish paste to?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does a woman in a kitchen use fish sauce and paste to make?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what do an old lady in orange dress wearing mixing pouring to prepare to serve to eat inside kitchen displaying on screen?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do an old lady in orange dress wearing mixing pouring to prepare dish to serve to eat inside displaying on screen?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is adding sauce to the vessel?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman adding into a pot in a kitchen?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a old woman doing?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is an old lady in orange dress doing?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is an old women doing?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is older woman doing?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is the old woman doing?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is an old woman adds sauce into a large steel metal pot for doing?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is an old woman doing?\",\n    \"video_name\": \"video9693\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man baking potatoes on?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"who is baking potatoes on the grill?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to bake potatoes?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who places some potatoes on the grill?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting potatoes on a grill?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting potatoes on?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what does a man place some potatoes on?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"who puts potatoes on the girl?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does a man put potatoes on?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who barbequeing potatoes?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who grilling potatoes?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is cooked on the grill?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is food cooked on?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is grilling potatoes?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows how to bake potatoes on a grill?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is baking potatoes on a grill?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9694\",\n    \"answer\": \"barbecue\"\n  },\n  {\n    \"question\": \"who is display on a screen?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what talks about an infamous pokemon episode?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is pokemon is described as doing?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"send\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an ambulance doing?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is standing near ambulance?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what explains about a pokemon expisode that caused seizures?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who is described as sending some kids to the hospital for seizures?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is pokemon clip doing?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone standing near?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is explained?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"storyline\"\n  },\n  {\n    \"question\": \"what is discusses?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what is shown across a blue screen with pokemon showing in background?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is flashing its lights?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"ambulance\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video9695\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does man show off?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does a man fold up?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a man assembling?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does a man displaying feature on?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who folds up a stroller?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is assembling a stroller?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows off baby stroller?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who features on a stroller?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to open a jogging stroller?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolly?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding a stroller?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to fold a jogging stroller?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is being displayed?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9696\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is promoting a baby monitor app?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is being compared to another phone?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is watching kid on phone?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is girl watching on phone?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a phone being compared to?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is girl watching kid on?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does the woman have?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"monitor\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is using the phone?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a child singing?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman checking?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is being shown?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"iphone\"\n  },\n  {\n    \"question\": \"what is a woman using?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is being shown?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who has a baby monitor?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do a man in a commercial explaining a baby monitor?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man in a commercial doing?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a phone doing?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"promote\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9697\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who is talking some thing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman talking about a movie inside?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is sitting down in side?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady speaking about something with?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"mood\"\n  },\n  {\n    \"question\": \"what is a woman talking about inside the room?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is an asian woman sitting down in?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is black haired woman talking about something in?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who has very clear skin and long black hairneck chain also nice?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman talking?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman with long black hair doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman wearing a white shirt discussing to internet viewers?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is a lady speaking about with happy mood?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl in white dress doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is black haired woman doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a white shirt and black hair doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young asian woman doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with black hair and choker doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an asian woman doing?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"where is an asian woman sitting down?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what does a girl in white dress wearing color cloth standing speaking on topic discusing displaying on?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is talking about a movie inside the room?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman with a white shirt and necklace with an english accent review?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is speaking about something with happy mood?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a female actor comments on current tv show specifically?\",\n    \"video_name\": \"video9698\",\n    \"answer\": \"walking\"\n  },\n  {\n    \"question\": \"what is a man doing with chemicals?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is being pored into beakers?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is a man pouring liquid into?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"chemistry\"\n  },\n  {\n    \"question\": \"who is explaining the steps?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filling a beeker?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is doing a experiment?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone providing steps to?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is doing an experiment?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is someone filling?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"beeker\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a person preparing?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what is a man performing with liquid?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is preparing a science project?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is providing steps to liquid experiment?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is doing some experiment with chemicals?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is pouring purple liquid into the glass vessel?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours some liquid into a beaker?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pouring solution into a test tubes?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours a liquid into two glass tubes?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is performing an experiment with liquid?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring liquid into chemistry containers?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person pour into a beaker?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what does a person pour some liquid into?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"beaker\"\n  },\n  {\n    \"question\": \"what is a man pouring into the glass vessel?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"what is a man pouring into a test tubes?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"solution\"\n  },\n  {\n    \"question\": \"what is a man performing an experiment with?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what does a man pour into two glass tubes?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"who explains how to do a experiment?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is science experiment doing?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"transfer\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9699\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a melody music played with?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who plays music on his keyboard?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the piano?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man play on his keyboard?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is playing the piano?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a piano indoors?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing piano?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing a piano?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing the piano?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is played with a piano?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"melody\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a person playing indoors?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what does a man play music on?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a musician doing?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9700\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did derrick rise shooting a game winning?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"shot\"\n  },\n  {\n    \"question\": \"what did derrick rise shooting winning shot?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what does a basketball player make?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what is a professional basketball game taking?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what does a basketball player sink?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what do men play on a court?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who makes a basket?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what do men play basketball on?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"who sinks a jump shot?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"who manages a three pointer goal?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what rose shooting a game winning shot?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"derrick\"\n  },\n  {\n    \"question\": \"what do players in red and players in white play?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what shows a basketball player shooting a basket?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"highlight\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is derrick rose doing?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what do men play in front of a crowd?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a highlight reel shows a basketball player doing?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what highlight where a player makes a long three point shot?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"basketball\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9701\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a cowboy telling an astronaut that he is?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is a cowboy telling that he is a toy?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"astronaut\"\n  },\n  {\n    \"question\": \"who is watching some balls bouncing around?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does some cartoon game and run fall down?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who does some cartoon game and run try to get up?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is yelling at an astronaut?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"cowboy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who is a cowboy yelling at?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"astronaut\"\n  },\n  {\n    \"question\": \"what are another outside under?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"moon\"\n  },\n  {\n    \"question\": \"who is scrwaling?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is running?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"doll\"\n  },\n  {\n    \"question\": \"who are doing very dramatic things?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who sits on the floor in the cartoon?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who looks on as a group of rats work together to cook?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is telling an astronaut that he is a toy?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"cowboy\"\n  },\n  {\n    \"question\": \"what is a cowboy doing?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is the baby doing?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a cartoon video clip doing?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a unicycle doing?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"juggle\"\n  },\n  {\n    \"question\": \"what is a cartoon dolls and vegetables doing?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is the high pitch call for tre toy has awakened him and doing?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"nod\"\n  },\n  {\n    \"question\": \"what are cartoon images doing?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are showing with a clip from a buzz lightyear movie where one character is yelling at another while they are outside under the moon?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what juggles colorful balls a baby falls down and woody yells at buzz lightyear?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"unicycle\"\n  },\n  {\n    \"question\": \"who does a unicycle juggle colorful balls falls down and woody yells at buzz lightyear?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are cartoon images showing with from a buzz lightyear movie where one character is yelling at another while they are outside under the moon?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who runs fast as the baby sits on the floor in the cartoon?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the high pitch call for tre toy nodding for?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what does a watching how pepole are cooking suddenly dash run on?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does baby on floor and some astraunuts on?\",\n    \"video_name\": \"video9702\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"how many mens are close to camera?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are several men doing?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"strike\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a group of people pose for the camera smilin and doing?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a white colour t shirt doing?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a white t shirt doing?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are the young people doing?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are three young boys doing?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a group of man doing?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is guy in shades with white tshirt doing?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what are a group of black people doing?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"loiter\"\n  },\n  {\n    \"question\": \"what are some black men doing?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are some black men looking at?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who are a few men giving in front of building?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"bose\"\n  },\n  {\n    \"question\": \"how many men do funny poses in front of the camera and laugh?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many young boys are showing funny faces and expressions in the scene?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are several men striking a pose for?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"how many mens make funny things?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what do the three men do poses in front of the camera and laugh?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"funny\"\n  },\n  {\n    \"question\": \"where are three young boys showing funny faces and expressions?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what t shirt wearing google and woman and gentle man standing beside?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what are three young boys showing funny faces and expressions in?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what does a white color t wearing google and woman and gentle man standing beside?\",\n    \"video_name\": \"video9703\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a yellow school bus doing?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is an animated schoolbus doing?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a digital reenactment of a bus doing?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is rolling over in a simulated action?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what is a computer game bus doing?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is yellow school bus graphic image doing?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is a bus doing?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a bus lying down on the road in a cartoon scene?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is an animated school bus doing?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is there is a bus doing?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a school bus flipping through the air and crashes on?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is flipping through the air and crashes on the ground?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what is a school bus doing?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what bus graphic image flipping around?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what does a school bus roll over and over in?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"accident\"\n  },\n  {\n    \"question\": \"what yellow school bus flipping around?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what flips?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what rolls over and over in an accident?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what does an animated bus roll over in?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what is a computer game bus crashing on?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what flips through the air and crashes to ground on it?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what flips over in graphic design display?\",\n    \"video_name\": \"video9704\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what is a display of shrimp doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is shrimp tempura cooking in a pan then displayed on a plate then a person s hand doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cook expertly fries large shrimp and presents it on a plate while doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is instructions on doing?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is sauce poured in?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person preparing for prawns fry?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what does a man cooks shrimp in a skillet then begin to prepare?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is person preparing in a black pan in kitchen?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a person s pouring ingredients into a glass bowl for a dipping sauce?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who sit on a paper towel on plate in a kitchen?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is preparing something in a black pan in kitchen?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is frying a prawn in a pan?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing a sauce for prawns fry?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who s hand pouring ingredients into a glass bowl for a dipping sauce?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person frying in a do pan?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"prawn\"\n  },\n  {\n    \"question\": \"what is poured in the bowl?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is telling how the recipe of it?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a cook present hand on?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who does a cook expertly fry?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who expertly fries large shrimp?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is showing how to cook sea food?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is putting the products into the white plate?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a cook present on a plate?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who presents hand on a plate?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who prepares shrimp and a dipping sauce?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who makes a shrimp meal and a dipping sauce?\",\n    \"video_name\": \"video9705\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is first person footage of a person doing?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a male driving car doing?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is driving down a residential street?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person driving?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving through?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"neighborhood\"\n  },\n  {\n    \"question\": \"what do car show on?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is driving a car?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person drive around?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"neighborhood\"\n  },\n  {\n    \"question\": \"what show on the road?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who does a review of a basic compact guy?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving through a neighborhood?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a car driving down while colors flash around?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is driving a car for review?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving through a suburban street?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving a car for?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a man driving for review?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives around the neighborhood?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is driving down the street while colors flash around?\",\n    \"video_name\": \"video9706\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a girl using?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a girl texting on?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what did girl texting with?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman sending?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"who is using his phone?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a girl holding?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are being sent back and forth?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"send\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who is holding a phone?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl making using cell phone?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"who is making call using cell phone?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many girls are texting each other?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a girl using to text message another person?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"cellphone\"\n  },\n  {\n    \"question\": \"what did a girl in the living room texting on the phone to?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a girl in the living room texting on to someone?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is using a cellphone to text message another person?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is sitting in a chair?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who texting with someone else?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is the woman sitting in?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is using a mobile phone?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is sending a text?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is using a smartphone?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is texting on a cell phone?\",\n    \"video_name\": \"video9707\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what does a person record?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"desktop\"\n  },\n  {\n    \"question\": \"who is explaining something in mac os?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining how to use actions on the computer?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining how to do actions on a computer?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man explaining in mac os?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is teaching how to use an application?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about a software program?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who apps?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man explaining something in?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"mac\"\n  },\n  {\n    \"question\": \"who describes how to use a program?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining the computer screen?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who talks about a computer?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"what is a man explaining?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining a computer program?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing some application?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone explaining?\",\n    \"video_name\": \"video9708\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is children exit a yellow bus with a doing?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a woman is safely doing?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what was a lady who doing?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a girl in black color dress doing?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is small kids doing?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"exit\"\n  },\n  {\n    \"question\": \"what is the mother doing?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what are young children doing?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is little kids doing?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what do a girl in black color dress wearing standing beside a bus school children getting down from bus walking displaying on screen?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who does a blonde woman in front of a bus help safely exit it?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who is a woman safely helping off the bus?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what are children exiting?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what are children avoiding?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"who is safely helping school children off the bus?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who helps children as they get off a school bus?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what guard wearing orange helping several children off a yellow school bus?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"crossing\"\n  },\n  {\n    \"question\": \"who is giving a tutorial about how to leave a bus?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady who was working as bus attender briefing about?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what do a crossing guard wearing helping several children off a yellow school bus?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what explains how to properly exit a bus as a line of children walk down the steps in a line in front of a school?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"safety\"\n  },\n  {\n    \"question\": \"what do a girl in black color dress wearing cloth standing beside a bus school children getting down from bus walking displaying on?\",\n    \"video_name\": \"video9709\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who performs on the voice?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a young man sing out in front of an audience?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"heart\"\n  },\n  {\n    \"question\": \"who listens to a young boy singing?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings on competitive tv show?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who listen?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"adult\"\n  },\n  {\n    \"question\": \"what does a young boy perform on?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"when is someone singing?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a boy singing?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do a boy sing?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who singing a song?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are the judges doing?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"who sings into a microphone to a panel of judges?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings his heart out in front of an audience?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs for judges and audience on television?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings in a musical competition television show?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what do a child contenstant on the show?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing while adult judges listen?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what does a boy audition on the show?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does boy perform for judges and audience on?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who closes his eyes as he listens to a young boy singing?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"who auditions on the show the voice?\",\n    \"video_name\": \"video9710\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"how many oriental youths talk to each other?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is having a discussion about going for dinner?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who does asian boy ask out on a date?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who are having a conversation?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do the couple talk in?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are woman and man having?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is a girl and boy doing?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a girl and woman doing?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and a woman are seen doing?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a young woman and a young man doing?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are an asian couple doing?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two asian people doing?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who asks a young woman to go on a date?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what talk in the screen?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who does a boy smile at?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who asks girl out on a date?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"when does a man ask a young woman to go?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"date\"\n  },\n  {\n    \"question\": \"who does a man ask to go on a date?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when does asian boy ask girl out?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"date\"\n  },\n  {\n    \"question\": \"what are talking about buying something?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who talks about video games?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to a man outside?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who smiles at a girl?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what talk to each other?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"who does a woman speak to outside?\",\n    \"video_name\": \"video9711\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing a country song on a stage?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings a country song on stage to an audience?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is having a concert?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"when is a man dancing?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a country music singer performing?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing in a stage?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what walks down the stage?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is a country band having?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is a man singing on a stage?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who is singing to a big crowd?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what do a live with a man singing?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"when is a man singing a country song?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man perform in front of a crowd?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"who sings a country song on stage?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does country star walk down?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what sings?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what is a country music singer doing?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is walking down a stage while singing a country song?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs country music in front of a crowd?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a singer doing?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"when is a man walking down while singing a country song?\",\n    \"video_name\": \"video9712\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a dinosaur doing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a short clip made doing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a stop motion film of legos doing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a stop motion video of a toy trex doing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"destroy\"\n  },\n  {\n    \"question\": \"what is a toy dinosaur doing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a toy dinosaur is shown doing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"stomp\"\n  },\n  {\n    \"question\": \"what are three animated doing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is toy dinosaurs doing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video starts out static and then goes into a stop motion doing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animation shown of?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what is a stop motion film of legos moving things shown in?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"recording\"\n  },\n  {\n    \"question\": \"what then goes into a stop motion involving legos?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is shown stomping around on cars?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"dinosaur\"\n  },\n  {\n    \"question\": \"what made of legos?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is shown of lego blocks?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what made using legos?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who is making a lego movie?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a short clip make using?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what starts out static?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are three animated doing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is shown?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"lego\"\n  },\n  {\n    \"question\": \"what is standing?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"dinosaur\"\n  },\n  {\n    \"question\": \"what does a stop motion video of a toy trex destroying?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what made with lego figures?\",\n    \"video_name\": \"video9713\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is crying?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what pony looking extremely sad?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is crying?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who cries?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is crying about the death of a friend in a cartoon television show?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a cartoon pony doing?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a cartoon pony doing?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a cartoon unicorn doing?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a computer generated pony princess doing?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a my little pony doing?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is an anime doing?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the cartoon pony doing?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"who is showing video graphics on computer?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is talking about something?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what generated pony princess is talking?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who gives a tearful apology?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"unicorn\"\n  },\n  {\n    \"question\": \"what is in a cartoon television show a horse doing?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is an anime talking about?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone showing video graphics on?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is someone showing on computer?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who did a computer generate is talking?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"princes\"\n  },\n  {\n    \"question\": \"what does an animated unicorn give?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"apology\"\n  },\n  {\n    \"question\": \"what animated character?\",\n    \"video_name\": \"video9714\",\n    \"answer\": \"pony\"\n  },\n  {\n    \"question\": \"what do instructions on how to do laptop repair on?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is someone filming?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"who is explaining what to do with the technology?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives someone instructions on how to build a computer?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who records the back of a tv?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"somone\"\n  },\n  {\n    \"question\": \"what is a person showing?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is footage of a livestream of someone doing?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is boys doing?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who inspects the laptop?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does someone inspect?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"what do a tutorial on?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who is using a computer program?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is filming an object?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people talking about?\",\n    \"video_name\": \"video9715\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who is talking on skynews about a possible fictional death in argentina?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a old gentlemen sitting without tie and a black over coat give to sky news?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what does a old gentlemen sitting without tie and a black over coat give interview to?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does a man with gray hair wearing a dark suit coat speak on?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who discusses the economy and current state of argentina?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who claims that adolf hitler never actually died in a bunker?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man claim that adolf hitler never actually died in?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"bunker\"\n  },\n  {\n    \"question\": \"who explains a fiscal report from earlier years?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what is a man with black suit doing?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man in black suit talking to in sky news program?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is man in suit doing?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is with a short neck in an open-collar shirt looks down and up in front of a blue-and-white background while doing?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a old gentlemen doing?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what does a white fat man in suit discuss?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"argentina\"\n  },\n  {\n    \"question\": \"what is a man with gray hair doing?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is british man on sky news doing?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a black suit man doing?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is in sky news program a man in black suit doing?\",\n    \"video_name\": \"video9716\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cat doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a cat swipes at a small tv doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"mimic\"\n  },\n  {\n    \"question\": \"what is the brown cat doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is the brown car doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a cat watches doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a cat bats at the air while doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is cat watches a boxing match and appears to be doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"what is a calico cat swats at boxers doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a cat sits in front of a small tv doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a tan cat doing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what swats at boxers fighting a round?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"calico\"\n  },\n  {\n    \"question\": \"what is sitting up on its hind legs?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a tan cat using to hit an elevated tv set showing a boxing match?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"paw\"\n  },\n  {\n    \"question\": \"what is mimicking boxing on television?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does cat watch?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"what actively swipes with the boxers?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what seems to be winning?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"calico\"\n  },\n  {\n    \"question\": \"what is swinging like the boxers do?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what appears to be pretending to box?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is watching boxing on tv?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what swipes at a small tv showing boxing?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what watches boxing on tv and pretends to fight in air?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is using its white paws to hit an elevated tv set showing a boxing match?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what watches a boxing match on television?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat watch boxing on tv and pretends to fight in?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is watching television in the living room?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what bats at the air while watching a boxing video?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is watching the battle on the screen?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what is the brown cat watching in the living room?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what is the brown car watching the battle on?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is the brown car watching on the screen?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what watches a boxing match?\",\n    \"video_name\": \"video9717\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what is person showing the new application on?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"smartphone\"\n  },\n  {\n    \"question\": \"what do the man do?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"proces\"\n  },\n  {\n    \"question\": \"who do the process?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is a iphone opens to the app store to search for a specific app by doing?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what appear?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is daikin doing?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"guide\"\n  },\n  {\n    \"question\": \"what is a mobile displaying pictures different images doing?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"download\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is person presenting the new app on?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"smartphone\"\n  },\n  {\n    \"question\": \"who uses his phone to search for download and open an app?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what pictures different images touching screen displaying on screen?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"displaying\"\n  },\n  {\n    \"question\": \"who opens to the app store to search for a specific app by typing the name?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"iphone\"\n  },\n  {\n    \"question\": \"who uses a finger to type out stop on an apple iphone?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person messing around with?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is person showing on his smartphone?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"application\"\n  },\n  {\n    \"question\": \"what points and taps a phone to show how to download a certain app?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"who is person presenting on his smartphone?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"app\"\n  },\n  {\n    \"question\": \"what does a man use to search for download and open an app?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is using the function of a cell phone?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is explaining about a mobile phone usage?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who download one important application in his cellphone?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is messing around with a phone?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is presenting the new app on his smartphone?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing the new application on his smartphone?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing information on the phone?\",\n    \"video_name\": \"video9718\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do the tv show performing?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is clapping his hands?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many boxes appear on the screen showing two different videos for the voice kids?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does the groups that will compete each other take?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who transition to new videos?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a live concert taking?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is the tv show the voice contestants doing?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"applaud\"\n  },\n  {\n    \"question\": \"what is taking place?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"what show the voice?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what are people on?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what do competition reality show?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is clapping?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is applauding?\",\n    \"video_name\": \"video9719\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is there is a man in a red suit jacket doing?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do several hispanic men sing?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do guys singing gangnam?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"style\"\n  },\n  {\n    \"question\": \"who is singing a popular song?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing in a music video?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings a song in his music video?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who does a parody to a song and dances?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who performs a song while dressed in various brightly colored suits?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings during a music video?\",\n    \"video_name\": \"video9720\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men run away from animals that doing?\",\n    \"video_name\": \"video9721\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"how many men run away from animals that are trying to kill them?\",\n    \"video_name\": \"video9721\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does the person in an elephant costume attack?\",\n    \"video_name\": \"video9721\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video9721\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"how many men are running away from a group of people in animal costumes?\",\n    \"video_name\": \"video9721\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are attacked by people dressed as animals at the beach?\",\n    \"video_name\": \"video9721\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are people in funny costumes doing?\",\n    \"video_name\": \"video9721\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is kept crushed?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is kept cooked?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what smashed?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what are some potatoes cut into pieces in?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is going on in a plate with potato smashed?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a bowl with blue decorations sitting on?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does a woman display mashed in a blue and white bowl?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is the cooking going on in with potato smashed?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what does a woman discuss in a blue and white porcelain bowl?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is the cooking going on in a plate with?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a bowl with yellow food in potato based dish as someone finish it into?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what do a plate and a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a bowl with blue decorations doing?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a plate and a bowl spoon doing?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a plate bowl spoon doing?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a womans voice doing?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a female chef doing?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do a plate and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what do a plate bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a plate bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a plate bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who talks about a bowl of yellow colored food?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who displays mashed potato in a blue and white bowl?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses food in a blue and white porcelain bowl?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is shown with what appears to be a macaroni or potato based dish?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is in a blue and white bowl on the counter?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is speaking while there is a picture of food in a blue bowl with a spoon in it?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a plate and a bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9722\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who spins a copper wire around a propeller in circles?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"batterie\"\n  },\n  {\n    \"question\": \"what does a guy make out of a standard battery?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"propeller\"\n  },\n  {\n    \"question\": \"what is a man doing with a battery an magnet?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a person making out of a battery?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a wire on a battery spinning fast on?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are wires connected to while they are spinning?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"what does a man do with a battery and rotating wire?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"when does a batterie build?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what builds speed?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"batterie\"\n  },\n  {\n    \"question\": \"what is bent?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what does a man do with a battery and wire?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"who is discussing how his experiment using a battery and what looks to be copper wiring works?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what rested on a battery the object rotates around the battery first slowly gaining speed as time passes?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what placed on a pen battery rotating fast in clockwise direction?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"copper\"\n  },\n  {\n    \"question\": \"who makes a spinning propeller out of a standard battery?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what did copper wire placed on a pen size rotating in clock wise direction?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"when did metal wire rest on a battery the object rotates around the battery first slowly gaining as time passes?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is being used connected to wire to generate enough energy to spin the wire around?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"what does a guy speaking about a spinning wire that spin on?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"battery\"\n  },\n  {\n    \"question\": \"who is making a toy out of a battery?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is going around on top of a battery?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"propeller\"\n  },\n  {\n    \"question\": \"who does an experiment with a battery and rotating wire?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a copper wire place on a pen battery rotating fast in?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"clockwise\"\n  },\n  {\n    \"question\": \"who does a science trick with a battery and wire?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a experiment with a battery an magnet?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when passes?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is this shows a science experiment with two copper wires attached to and doing?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is a wire on a battery doing?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a guy makes a doing?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what are wires are connected to a battery while they doing?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is metal wire is bent and rested on a battery the object rotates around the battery first slowly doing?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"gain\"\n  },\n  {\n    \"question\": \"what is copper wire placed on a pen sized battery doing?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"rotate\"\n  },\n  {\n    \"question\": \"what is a copper wire placed on a pen battery doing?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"rotate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9723\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"how many men are singing through a microphone?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men shout into speakers?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men play?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are two men singing through?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"how many men are singing into microphones?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are singing excitedly?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men recorded their lyrics?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men play music?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men sing very enthusiastically?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a split video of two guys doing?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is two singers doing?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9724\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings with carly rae jepsen?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"who hanks dances?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"who sings with tom hanks as a group of dancers dances with them on the street?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a group of people dancing in?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a group of dancers dance with them on?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who hanks and a costar?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what are actors dancing in?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who does tom hanks?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"costar\"\n  },\n  {\n    \"question\": \"what are people dancing in?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who hanks dancing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"who hanks talking?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what is tom hanks doing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of peoples doing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a short clip of two famous actors doing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are actors doing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are an actor and a singer doing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is peopel doing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is video of people doing?\",\n    \"video_name\": \"video9725\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does three perons riding?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"what are three men riding in?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"what do three men ride in?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"jeep\"\n  },\n  {\n    \"question\": \"what do soldiers fight?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what are a group of soldiers looking at?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"scenery\"\n  },\n  {\n    \"question\": \"how many men ride in a jeep?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what shows a soldier at battle?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"what does a video segment show a soldier at?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"battle\"\n  },\n  {\n    \"question\": \"what are three men driving?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"how many men are driving an army jeep?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who does a video segment show at battle?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who falls down while running?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"what are a group of soldiers doing?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"how many men are riding in a jeep?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video9726\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a sullen lady doing?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman with a cut on her face is upset doing?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is being interrogated?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what does the woman shake?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who gets lectured?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman sitting in?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a woman talking at?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who does a woman try to defend?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"who is talking at the table?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting in a chair?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sits in a chair annoyed?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman sitting in talking?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a woman sitting on talking?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what sits in a chair?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"agent\"\n  },\n  {\n    \"question\": \"what does agent maria hill sit in?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who does discusses s nick fury s actions with an unseen woman?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"director\"\n  },\n  {\n    \"question\": \"who is sitting on a chair talking?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a video clip from the show?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"shield\"\n  },\n  {\n    \"question\": \"what do a video clip from the show agents of?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"shield\"\n  },\n  {\n    \"question\": \"what does discusses s director s actions with an unseen woman?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"fury\"\n  },\n  {\n    \"question\": \"who sits in a chair with a blank expression?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sitting in a chair talking?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video9727\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man i doing?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"who explains about a disease called kuru disease?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"disease\"\n  },\n  {\n    \"question\": \"what is a man looking at?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"brain\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"decease\"\n  },\n  {\n    \"question\": \"what does a popular youtuber explain?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"disease\"\n  },\n  {\n    \"question\": \"who is looking at a brain?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains the kuru disease?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"youtuber\"\n  },\n  {\n    \"question\": \"what made video about a medical condition?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what did home make about a medical condition?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who discusses kiru disease?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses kuru disease?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about kuru decease?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains kuru disease which rots your brain?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talking about kuru?\",\n    \"video_name\": \"video9728\",\n    \"answer\": \"disease\"\n  },\n  {\n    \"question\": \"what is an indian woman doing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what haired woman wearing a black dress sitting on a white couch?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"what is a woman is seated on a couch and doing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a brown haired heavily accented woman doing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a dark haired woman doing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a friendly indian woman ends her video after doing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a black dress color cloth doing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what a black dress color cloth speaking sitting inside kitchen meals dish to prepare explayning displaying on?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is the food is placed in the plate while the woman on white sofa doing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who did a dark haired wearing a black dress sitting on a white couch?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sits on a white chair and talks about recipes?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is seated on a couch?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining about a food recipe?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a lady in the sleeveless black dress explain about?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"what is the food placed in while the woman on white sofa is talking?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is a person sitting on a white cushioned chair wearing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what did a dark haired woman wearing sitting on a white couch?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who is sitting in a chair is talking then waves goodbye?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is placed in the plate while the woman on white sofa is talking?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a pretty girl doing?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman seated on?\",\n    \"video_name\": \"video9729\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what did elephant get a does of?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"lsd\"\n  },\n  {\n    \"question\": \"what is in the grass?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what is an elephant in?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what gets lsd?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"who talks about an elephant?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what picture shown here?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what does an elephant get?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"lsd\"\n  },\n  {\n    \"question\": \"what is a short news clip doing?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what got a does of lsd?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man talking about an elephant at?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"zoo\"\n  },\n  {\n    \"question\": \"what shows an image of an elephant?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"what does a video segment show an image of?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what over discusses an elephant that was given lsd?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is talking about an elephant at a zoo?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a short news clip talking about an elephant research gave to?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"lsd\"\n  },\n  {\n    \"question\": \"who explains an experiment done on an elephant?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about an elephant in a zoo which was given an injection of lsd?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man talking about at a zoo?\",\n    \"video_name\": \"video9730\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"who is using a white electric mixer in a kitchen?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman in a red apron use to blend a white substance?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"what does the woman wearing the red apron mix with a hand mixer?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a red color girl and a bowl spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a red color girl and a bowl spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what does a red color girl and a bowl spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a woman in a red apron use a hand mixer to blend?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"substance\"\n  },\n  {\n    \"question\": \"what is a girl wearing black tops and white color mixer mixing on a table?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a girl wearing black tops and white color mixer mixing something on?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a woman in a red shirt whipping forming stiff peaks?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who is mixing the food item in a glass pot?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did bbc woman in red smock stirring up?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is mixing food in a mixing bowl?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady in a red apron making?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what do person in the kitchen using mixer to mix stuff in?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"what is a person with a red shirt using?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"what is a woman with a red apron using?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"what is person with red shirt preparing in the kitchen?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"dessert\"\n  },\n  {\n    \"question\": \"what is person with red shirt preparing dessert in?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woman mixing in a mixing bowl?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is person with red shirt doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman with a red apron doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person with a red shirt doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is bbc woman in red smock doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a red color girl and a bowl spoon doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman in a red shirt doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"whip\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is person in the kitchen doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is woman in a red apron doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"blend\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9731\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does two hippos having?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"sex\"\n  },\n  {\n    \"question\": \"what are two rhinos having?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"sex\"\n  },\n  {\n    \"question\": \"what are some rhinos?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"mating\"\n  },\n  {\n    \"question\": \"what is a rhino humping?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"what is mounted on the other?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"what are rhinoceros with each other?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"mating\"\n  },\n  {\n    \"question\": \"what is humping another rhino?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"what are two animals having?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"sex\"\n  },\n  {\n    \"question\": \"what does two hippopotamus involved in here?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"sex\"\n  },\n  {\n    \"question\": \"what do two animals have?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"intercourse\"\n  },\n  {\n    \"question\": \"what is a rhino doing?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"hump\"\n  },\n  {\n    \"question\": \"what are rhinoceros doing?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what are some rhinos doing?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"how many rhinos are having sex?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many animals are mating?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two rhinocerous doing?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what is there are a pair of rhinoceros doing?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"copulate\"\n  },\n  {\n    \"question\": \"what are two animals?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"mating\"\n  },\n  {\n    \"question\": \"how many animals have intercourse?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many animals are having sex?\",\n    \"video_name\": \"video9732\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a woman driving?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a foreign lady doing?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a spanish speaking woman doing?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is an indian woman doing?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who do a spanish speaking presenting a car?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks near a car?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is speaking about a a car?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is talking in front of a car?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is talking while standing in front of a black car?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is driving?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is telling about a car features?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a spanish speaking woman presenting?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a woman talk near?\",\n    \"video_name\": \"video9733\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what do a skinny dalmation and a chubby one ware watching?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"what are two dogs doing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is dogs doing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what seem to be afraid?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are two dogs talking to?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"duck\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do animals hear on the ground?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"stomp\"\n  },\n  {\n    \"question\": \"what do two dogs talking to a bird hear on the ground?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"stomp\"\n  },\n  {\n    \"question\": \"what talks to the dogs?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is playing video game?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are cartoon dogs?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is cartoon characters doing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what do animals hear a long stomp on?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a skinny dalmation and a chubby one ware doing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is talking to a dog in a cartoon?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what shows two dogs talking to a bird?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what here seems to be angry with the other one?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a video clip of animals doing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many dogs are talking to a duck?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are scared of something?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are 3 cartoon characters doing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon bird doing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon shows two dogs doing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do two dogs talking to a bird hear a long stomp on?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are talking?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon dogs scared of?\",\n    \"video_name\": \"video9734\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do many potatoes move through?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"machinery\"\n  },\n  {\n    \"question\": \"what is potatoes doing?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is in a kitchen the machine doing?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are yellow and green potatoes being washed in?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who talks in the background?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what are some potatoes being lead to?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"doom\"\n  },\n  {\n    \"question\": \"what does a lady talk in?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is the machine putting the vegetables in something black in?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are being selected for cooking?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what are fruits cleaned in with a well automated machine?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are wet yellow fruits being washed using?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what passes food through the processor?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what are the yellow potatoes cleaned in the water in?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"factory\"\n  },\n  {\n    \"question\": \"what are the yellow potatoes cleaned in in the factory?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the machine putting the vegetables in in a kitchen?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are potatoes washed by a large machine in?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"factory\"\n  },\n  {\n    \"question\": \"what does an industrial machine pass through the processor?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are cleaned in the water in the factory?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what does an industrial machine pass food through?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"processor\"\n  },\n  {\n    \"question\": \"what describes the commercial washing of potatoes in a comical way?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is putting the vegetables in something black in a kitchen?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who narrates while yellow and green potatoes are being washed in automated equipment?\",\n    \"video_name\": \"video9735\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is changing the channel on the tv?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who do a man and boys sit in a bedroom watching?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what do a group of friends sit on?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are boys playing console?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing games?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is someone changing on the tv?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what do a group of friends watch?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"multimedium\"\n  },\n  {\n    \"question\": \"who is looking at a tv?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who drinks coffee while his son plays video games on the television?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drink while his son plays video games on the television?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"coffee\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is kids hang out in their bedroom doing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is home footage of kids doing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is friends doing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a group of young boys doing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are boys doing?\",\n    \"video_name\": \"video9736\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did a group of people in distress and injure in?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what are group of people giving to the kids?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what does women walk in treats people and talks to adults?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what are giving some help to the kids?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"how many women are walking?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do doctors in a camp treating to the victims hurt by?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"chemical\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the two doctors who travelled with bbc states that sudden increase in causalities is over doing?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"whelm\"\n  },\n  {\n    \"question\": \"what is 2 girls doing?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news video doing?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is doctors in a camp doing?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"treat\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are men and woman doing?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"who gives information about bad condtions in a refugee camp?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who are traveling through a very hot area to care for unfortunate people?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"where did a group of people in distress and injure?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"who is talking about casualties in a refugee camp?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many women are helping to some people?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"where does women walk treats people and talks to adults?\",\n    \"video_name\": \"video9737\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what do people cheer in?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what are some men arguing at?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"club\"\n  },\n  {\n    \"question\": \"who gives love proposal tips?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who passionately explains something to another man?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of men having in a foreign language?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"who is giving another man a piece of paper?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many hispanic men are talking at a dance club?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many men are talking to each other?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what did hispanic men talk in?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"club\"\n  },\n  {\n    \"question\": \"who is taking?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what does friend give?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"proposal\"\n  },\n  {\n    \"question\": \"what are four men doing?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is comrades doing?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of indian men doing?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of men doing?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is group of men doing?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are four hispanic men doing?\",\n    \"video_name\": \"video9738\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman stiring in a skillet on a stovetop?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is giving a cooking demonstration using a flat spoon to saute it?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man cooking a special type of pasta in?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a woman stiring in a skillet over a low flame?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person in a kitchen showing in a stove?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person in a kitchen showing some food in?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is woman mixing something in the black pan in?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is telling the ingredients?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing cooking show?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person giving using a flat spoon to saute it?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"what is man cooking a special type of in the kitchen?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what do a woman cooks a dish of food in a pan on?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what is woman mixing in the black pan in a kitchen?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is mixing something in the black pan in a kitchen?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"who is cooking a special type of pasta in the kitchen?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is person in the kitchen doing?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is an inhome chef adds spice to a dish she doing?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman cooks a stir fry mix on her stove while doing?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a foreign lady doing?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is in a kitchen woman doing?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person in a kitchen doing?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is stiring some food in a skillet over a low flame?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is stiring food in a skillet on a stovetop?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who works on a stir fry dish in a small black wok?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"inhome\"\n  },\n  {\n    \"question\": \"who is making a dish with grated vegetables on a pan?\",\n    \"video_name\": \"video9739\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man hitting a ping pong ball on?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who serves a ping pong ball?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did two men hit the ball across?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what did two men hit across the table?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do the table tennis player expose by dropping the ball into the cup by accurate shot with the bat?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"talent\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a caucasian young man doing?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a guy playing against himself at?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"who appears to successfully score on his opponent who is not pictured then the word pongfinity appears onscreen?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man appear to successfully score on his opponent who is not pictured then pongfinity appears onscreen?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"word\"\n  },\n  {\n    \"question\": \"what do two men play?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"what bounces across the blue ping pong table?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is a caucasian young man practicing holding a red bat in his hand?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"tabletenni\"\n  },\n  {\n    \"question\": \"who is playing against himself at ping pong?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is the table tennis player expose his talent by doing?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"drop\"\n  },\n  {\n    \"question\": \"what is a guy in black t-shirt doing?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"practise\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a gentleman with black t-shirt doing?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is guy in navy blue tshirt doing?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing ping pong?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a trick shot with a ping pong ball on a ping pong table?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what does a man in a black polo shirt hit a ping pong ball with?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"paddle\"\n  },\n  {\n    \"question\": \"who gets the ball inside of a cup on the opponent side of the table?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men play ping pong?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who demonstrates how to play ping pong by himself?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hitting a ping pong ball on a table?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men hit the ball across the table?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who performs a ping pong trick shot in a large high ceiling room?\",\n    \"video_name\": \"video9740\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is craft an art piece?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making some oragami art?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who wraps a ribbon around a stick?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is arranging paper florets?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is some doing some crafts at?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is folding fabric to make something?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who worked on a craft project?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is built?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a man craft?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"piece\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"who is crafting?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person working on with a stick and a ribbon?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who folds up a piece of jewelry?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is working on a craft with a stick and a ribbon?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does manly hands wrapping strips of baby s with ribbon to put into a bouquet?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"breath\"\n  },\n  {\n    \"question\": \"what is a person arranging?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is making a flower for a fower arrangement?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person fold up a piece of?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"jewelry\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is an individual doing?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is manly hands doing?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"wrap\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9741\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what does chris helmsworth discusses avengers?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"ultron\"\n  },\n  {\n    \"question\": \"who discusses the avengers?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"hemsworth\"\n  },\n  {\n    \"question\": \"what is a man being interviewed about?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who explains about his film?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what does a actor explain about?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man talking about in a superhero movie?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"acting\"\n  },\n  {\n    \"question\": \"who is talking about the avengers movie?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"hemsworth\"\n  },\n  {\n    \"question\": \"who is being interviewed about a movie?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what thor talking about the new movie?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"who is talking about the avengers movies?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hemsworth talks about avengers 2?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"chri\"\n  },\n  {\n    \"question\": \"what is an actor explaining the making of?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who hemsworth talks to an interviewer?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"chri\"\n  },\n  {\n    \"question\": \"who talks about making an avengers movie?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does chris helmsworth discusses avengers age of?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"ultron\"\n  },\n  {\n    \"question\": \"who is talking about his role in a movie?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who avengers age of ultron?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"helmsworth\"\n  },\n  {\n    \"question\": \"who is talking about his acting in a superhero movie?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what about avengers?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is explaining the making of a movie?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"who hemsworth talks about avengers?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"chri\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an actor doing?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is an actor doing?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is chris hemsworth doing?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the actor doing?\",\n    \"video_name\": \"video9742\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy yelling at who is being percieved as troubled?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"twin\"\n  },\n  {\n    \"question\": \"what did a man recently star in a man is interviewed about?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is yelling at his twin who is being percieved as troubled?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who did a man recently star in is interviewed about a movie?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman walking slowly behind a man with?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what acts in the roles of identical twins in an argument?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"leonardo\"\n  },\n  {\n    \"question\": \"who is talking with a man who is silence?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman s is giving a review of the movie the video show leonardo dicaprio in a movie?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a woman s voice is giving a review of the movie show leonardo dicaprio in a movie?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a woman s voice is giving a review of the video show leonardo dicaprio in a movie?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who s voice is giving a review of the movie the video show leonardo dicaprio in a movie?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking slowly behind a man with long hair?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who recently starred in a man is interviewed about a movie?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man with long hair pointing at?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"who is a woman in victorian clothes really playing two characters?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"leonardo\"\n  },\n  {\n    \"question\": \"who stands by another who looks just like him?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a list of films containing a certain criteria in?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"who is a woman walking slowly behind with long hair?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is leonardo dicaprio portrayed as two different characters in?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a movie scene boy doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a movie trailer that stars leonard di caprio doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is guy with long hair doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a list of films doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"pertain\"\n  },\n  {\n    \"question\": \"what is a list of films doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a cute woman doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"think\"\n  },\n  {\n    \"question\": \"what is a woman in victorian clothes is really leonardo dicaprio doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man with long hair doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what is boys with long hair doing?\",\n    \"video_name\": \"video9743\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a group of men blindfolded and doing?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"smell\"\n  },\n  {\n    \"question\": \"when is a man being blindfolded?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is a man wearing covering?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"who is blind folded to perform a task on a sports tv show?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wearing an eye sniffing something?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are cleaning a glass room?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is judged on a tv show?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"what is a man wearing sniffing something?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"who is wearing an eye covering?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being blindfolded on stage?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what are men attempting?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are two men cleaning?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what do men attempt?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"who is blind folded?\",\n    \"video_name\": \"video9744\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"cap\"\n  },\n  {\n    \"question\": \"what provides commentary?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what does a male provide?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"what are men watching?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"who is wearing a cap?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do race car drivers cheer in?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who cheer in the crowd?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what interviews people in a room?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cheer from the sidelines?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what do members of a cricket team watch something off then?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do members of a cricket team watch off screen then?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are men in an audience excited watching?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what are a bunch of teammates doing?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is an audience clapping and doing?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is men in an audience are excited doing?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is video of people doing?\",\n    \"video_name\": \"video9745\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who helps an old woman with a cart?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks goes through his day helping people?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pushing a cart in a street?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is watering his flowers while people walk under the water?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pushes a cart with an old lady?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who watering the plants?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does water fall down to?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what does a man push with an old lady?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"cart\"\n  },\n  {\n    \"question\": \"what is a young man pushing a cart in?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a young man pushing in a street?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"cart\"\n  },\n  {\n    \"question\": \"what does a man walk around looking at people?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"who is watering a garden?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is watering plants?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what falls down to the sidewalk?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"when does a man walk goes helping people?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what does a man waters a plant and help a woman move?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who walks around town looking at people?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what have humans helping?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"intensity\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man walks around town doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man walks goes through his day doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what was a man doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man watering and doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a scene of people doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"who was watering his garden?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is basically humans have doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what was a man watering?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what is a man watering?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"who helps a food cart lady?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who helps out his neighbors?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people walk under?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is boy doing?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what do a man and woman lift up?\",\n    \"video_name\": \"video9746\",\n    \"answer\": \"cart\"\n  },\n  {\n    \"question\": \"what is woman in blue shirt talking in?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who explains to viewers how to deep clean homes in a kitchen?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do women in blue dress talking about?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what do sexy blonde in blue dress talking to?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a woman explain to viewers how to deep clean homes in?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who talks about the necessity of cleaning a house?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is offering to show deep cleaning techniques throughout a home?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is brunette woman in blue shirt talking in?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is sexy blonde in blue dress doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady dressed in a blue shirt doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman talks about the necessity of doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is woman in blue shirt doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is brunette woman with blue shirt doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is brunette woman in blue shirt doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is women in light blue dress doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is women in blue dress doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is woman in a blue shirt doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady with blue shirt doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is in the blue top wearing lady doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"offer\"\n  },\n  {\n    \"question\": \"what is a woman in a blue shirt doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with brown hair doing?\",\n    \"video_name\": \"video9747\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a recipe for slow cooker beef pot roast given by?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is placed in white plate?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do beef pot with carrots and sauce?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"roast\"\n  },\n  {\n    \"question\": \"what is taken in a white plate?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is food item placed in?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is kept in food item?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"fork\"\n  },\n  {\n    \"question\": \"what is a fork kept in?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are placed?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"where did a beef dish in a white bowl with carrots and a fork?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is hef john from foodwishescom doing?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a beef dish with carrots doing?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the men doing?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what pot roast with carrots and sauce?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"beef\"\n  },\n  {\n    \"question\": \"what is presented for a pot roast with gravy and carrots recipe prepared in a slow cooker?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what did a dish of pot roast with carrots mash?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"gravy\"\n  },\n  {\n    \"question\": \"who talks about a pot roast recipe he has prepared?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is talking about the meal on white plate?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is presented in a white bowl?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what did a beef dish in a white bowl with carrots and a fork on?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who is reviewing a dish that he has prepared?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person talking about on white plate?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is person talking about the meal on?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video9748\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what a woman chops up?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what onions?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is a woman chops green peppers while doing?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is a vegetables doing?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a clip of a woman doing?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is in a kitchen someone doing?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what does a woman chopping onions for?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is slicing a green onion in a kitchen?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a vegetable with a knife?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone slicing a green onion in?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who chops a green pepper and an onion?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a green bell pepper and an onion?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dicing up a pepper and an onion?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person cutting a vegetable with?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who vagitables on chopping board?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone slicing in a kitchen?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is chopping onions and bell peppers?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who chops up a pepper?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping peppers?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who onions for a recipe?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who chops up peppers and onions?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who shows how to mince vegetables?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts some onions?\",\n    \"video_name\": \"video9749\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a man hold up?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a woman help?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man pointing?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a movie clip shows a gunman doing?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"turn\"\n  },\n  {\n    \"question\": \"what is a man with a gun and a woman with white hair doing?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man with a gun abandons two doing?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"cower\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a man standing with?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who does a man holding a gun up while a women help?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is running to outside to seek help?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who holds up a gun at a woman?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who points his gun towards a woman in a room?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man hold up a gun at?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who holds a gun a two women?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows a gunman turning away?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who helps someone move?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is another woman lying on?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is standing with a gun?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man hold up at a woman?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"how many white women does a man with a gun threaten?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cowering women does a man with a gun abandon?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is a man pointing a gun at while another woman is lying on a bed?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pointing a gun at a woman while another woman is lying on a bed?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who then leaves a women?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a gun?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pointing a gun?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who points a weapon?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a gun up?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lying on a bed?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man pointing at a woman while another woman is lying on a bed?\",\n    \"video_name\": \"video9750\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is moving?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"insect\"\n  },\n  {\n    \"question\": \"what is a animation doing?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person in brown color dress doing?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man describes the doing?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is an insect doing?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is there is a young man doing?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy with glass in shirt doing?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is using an animation to speak about polymers and monomers in the human body?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who narrates an animation that teaches a science lesson?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the breaking down of biological components of the cellular level by describing what a polymer is?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the definition of a polymer and monomer?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"nerd\"\n  },\n  {\n    \"question\": \"who gives a talk about polymers and monomers?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what do a person in brown color dress wearing speaking sitting beside skeleton structure human body displaying on screen?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is a man using to speak about polymers and monomers in the human body?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"who describes the breaking down of biological components of the cellular level by describing how a polymer is broken down into monomers?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a person in brown color dress wearing sitting speaking on topic and skeleton structure beside human body displaying on screen?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do a person in brown color dress wearing cloth sitting speaking on topic and skeleton structure beside displaying on screen?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"who is showing information on the screen?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person showing on the screen?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"who explain the polymers monomers and cells?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a person showing information on?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9751\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who addresses the contestants?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"what are more peoples in?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"round\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is in a kitchen show a chef doing?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is chef doing?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a foul mouthed chef expresses his disappointment with a group of people he doing?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a chef stands behind domed silver platters arranged in round circles on top of circular tables across from a dozen people doing?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a chef stands with recipes and some people doing?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who does chef ramsey accept?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"member\"\n  },\n  {\n    \"question\": \"who accepts a team member?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"ramsey\"\n  },\n  {\n    \"question\": \"what is a cook doing?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what did a foul mouth chef expresses his disappointment with a group of people he is?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"training\"\n  },\n  {\n    \"question\": \"who stands with recipes and some people standing away listens to him?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who did a chef talking of something about the dish prepare by?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"ramsey\"\n  },\n  {\n    \"question\": \"who is talking about the taste of the food prepared by others in a kitchen show?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is talking to people in a room?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is critquing a bunch of new cooks dishes?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is talking with group of ladies?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what mouthed chef expresses his disappointment with a group of people he is training?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"foul\"\n  },\n  {\n    \"question\": \"what did a foul mouth chef expresses with a group of people he is training?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"disappointment\"\n  },\n  {\n    \"question\": \"what is a chef talking to people in?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who did a foul mouth expresses his disappointment with a group of people he is training?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is inviting the dignitories?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who is making fun of one of the contestants on his show?\",\n    \"video_name\": \"video9752\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"treat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is speaking about how to get more information about cpr?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"where is a white and red screen directing people?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"site\"\n  },\n  {\n    \"question\": \"who provides instructions on what to do in case of a heart emergency?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a white and red screen directing people to?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"site\"\n  },\n  {\n    \"question\": \"what is on a red and pink background?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is about giving the first aid?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are displaye?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9753\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a message followed by various people from thailand doing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"what are more words are displayed one by one on the screesome peoples doing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"pray\"\n  },\n  {\n    \"question\": \"what is a montage of people in doing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"thank\"\n  },\n  {\n    \"question\": \"what is a red t-shirt man doing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"raise\"\n  },\n  {\n    \"question\": \"what is a man in work out doing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"clothe\"\n  },\n  {\n    \"question\": \"what is a group of young asians says thanks to a coach by doing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"what is text appears on the screen as though someone doing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is text shows thank you message and young people are seen doing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"thank\"\n  },\n  {\n    \"question\": \"what is man in red shirt doing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"bow\"\n  },\n  {\n    \"question\": \"what is there is a man with cap doing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is typing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a message follow by various people from thailand bowing to?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is that a man with cap salute your gurus for a better performance?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"thailand\"\n  },\n  {\n    \"question\": \"what followed by various people from thailand bowing to the camera?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"message\"\n  },\n  {\n    \"question\": \"what does a man in work out clothing give up a black page with white type writer text suggests thanking coaches?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"thumb\"\n  },\n  {\n    \"question\": \"what does a man in work out clothing give a double thumbs up a black page with white type suggests thanking coaches?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"writer\"\n  },\n  {\n    \"question\": \"what did a message follow by various people from to the camera?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"thailand\"\n  },\n  {\n    \"question\": \"what appears on the screen as though someone is typing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what does text appear on as though someone is typing?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what thank a man with cap message?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what is about people saying thank a man with cap in thai?\",\n    \"video_name\": \"video9754\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"who is using a stroller?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman show?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman using?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what does a woman demonstrate?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"carriage\"\n  },\n  {\n    \"question\": \"who is a woman showing?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman demonstrating?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who stroller review?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what do athletic baby stroller?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"who does a short clip showcasing?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who shows a baby stroller?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who demonstrates a baby carriage?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating a baby trolly?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing a stroller?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving demo for?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"who is putting zip in a baby stroller?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving demo for baby trolley?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing some features on a three wheeled stroller?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stroller on three wheels with an under seat basket?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what showcasing a roller stroller?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who shows how to use a baby carriage?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman giving for baby trolley?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"demo\"\n  },\n  {\n    \"question\": \"what is a woman putting in a baby stroller?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"zip\"\n  },\n  {\n    \"question\": \"what do a baby stroller on three wheels with an under?\",\n    \"video_name\": \"video9755\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what enjoy food kept on the table?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a lady tasting a lady and a man in restaurant discuss about?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is blonde woman talking with man in?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a man in a room talking about?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do a couple enjoy kept on the table?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is blonde woman talking with in black shirt?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with man in black shirt?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"who is a man with a black shirt sitting down with?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are tasting a lady and a man in restaurant discuss about the food?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man and a lady doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man and woman doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what do a man and woman take?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"who does a couple take?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"selfie\"\n  },\n  {\n    \"question\": \"what takes selfie?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what does a man with sun glass on talking to a woman?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what do a man and woman talk over?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"who is talking with a man?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"who is blonde woman talking with?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man and woman drink with a fish tail in it?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"beverage\"\n  },\n  {\n    \"question\": \"what are two people on a date taste testing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are two people on a date testing new food items?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"who takes the snaps using mobile?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are a lady and a man in restaurant discuss about the food they doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"taste\"\n  },\n  {\n    \"question\": \"what is a man with sun glasses on his head doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman and man doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is blonde woman doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two people on a date are taste doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a room doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with a black shirt doing?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video9756\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a six-legged baby doing?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is clip doing?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is video of a guy doing?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is youtuber danger dolan counts down a list doing?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"regard\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who counts down a list regarding physical abnormalities?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"danger\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man watching?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is a girl laying by?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"mother\"\n  },\n  {\n    \"question\": \"who is watching his dog?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a video image show?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what shows a deformed child?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is describing a mole on another man?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses different news articles?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is discussing unusual human deformities?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what counts down a list of humans with unusual appendages?\",\n    \"video_name\": \"video9757\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who talks about his technology job?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a korean man talk about?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"tech\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"laptop\"\n  },\n  {\n    \"question\": \"who is discusssing companies?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is interviewed?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is using a laptop?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about tech jobs?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shaking hands with many people?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for an interview?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of old men doing?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"who is talking in a computer cafe?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is students doing?\",\n    \"video_name\": \"video9758\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person opening with a toy inside?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who set?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"unbox\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"unbox\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who opens car themed toys?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person show off?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"who is showing off the cars gift set?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is opening an egg with a toy inside?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man opening?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is unboxing some toys?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing with some toys?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is opening a egg?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is opening a toy egg?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is opening a plastic egg?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is opening a toy?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does man open?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person opening an egg with inside?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is someone opening?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who shows off a product?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is opening a gift set?\",\n    \"video_name\": \"video9759\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a cookery show that doing?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is food doing?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is some food doing?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is someone cooking in a pot of boiling liquid?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is cooking food in a pot of boiling liquid?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who frying some kind of twisted shapes?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who fries dough in hot oil?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what show that is showing how to make a frying dish?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"cookery\"\n  },\n  {\n    \"question\": \"who is frying churros?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is frying dough?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making churros?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is fried in oil?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is boiling in a pot?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who frying some food?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being prepared?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is boiling in a pan?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are prparing?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is food boiling in?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is dough fried in?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a woman frying?\",\n    \"video_name\": \"video9760\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is significance and objectives of it doing?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"network\"\n  },\n  {\n    \"question\": \"what is it is a lecture with a man doing?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man gives a presentation on the benefits of it doing?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"network\"\n  },\n  {\n    \"question\": \"what is a series of text based graphics are displayed doing?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a slide shows text doing?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man talks about network it and how it helps people collaborate doing?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does network help people collaborate using?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what does a slide help two way communication it facilitates?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"collaboration\"\n  },\n  {\n    \"question\": \"what does a slide help express a judgement?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"anyone\"\n  },\n  {\n    \"question\": \"what is a person showing information on?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"when does network complement emerge?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what does a slide help anyone express?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"judgement\"\n  },\n  {\n    \"question\": \"what is seen on the screen?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what are letters displayed on?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is text seen on?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a man talk about it?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"network\"\n  },\n  {\n    \"question\": \"who talks about network it?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what employees?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a person showing on the screen?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"what scrawls across the screen to teach a lesson?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"information\"\n  },\n  {\n    \"question\": \"who gives a presentation on the benefits of there networking?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a lecture with a man describing network it?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who narrates about network network while text is seen on the screen?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what provides a means to facilitate collaboration judgement?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"network\"\n  },\n  {\n    \"question\": \"who is narrating a power point presentation?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do network something about the information technology facilitate collabpration allow?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"judgement\"\n  },\n  {\n    \"question\": \"what provides a means to communicate with each other?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"network\"\n  },\n  {\n    \"question\": \"what helps two way communication it facilitates collaboration among employees?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a black screen with a man describing network it?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"what do network something about the information technology facilitate collabpration allow expressions of?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"judgement\"\n  },\n  {\n    \"question\": \"what shows text blog symbols?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what shows text describing network it with mail?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what shows words about network it and symbols of envelopes and red arrows?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is showing information on the screen?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a slide help it facilitates collaboration among employees?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"communication\"\n  },\n  {\n    \"question\": \"what is significance and objectives of a slide networking expressed in?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what helps anyone express a judgement?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what helps people collaborate using a set of?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"network\"\n  },\n  {\n    \"question\": \"what complements emerge on time?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"network\"\n  },\n  {\n    \"question\": \"what does a host narrate about network while text is seen on the screen?\",\n    \"video_name\": \"video9761\",\n    \"answer\": \"network\"\n  },\n  {\n    \"question\": \"what is a lady taking?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"who is taking a class?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what do women in black dress giving to students in a class room?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"lecture\"\n  },\n  {\n    \"question\": \"what is a woman in black blouse and a skirt doing?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a professor stands in front of class doing?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is there is a lady doing?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is there is teacher doing?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is woman in black shirt doing?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a woman is in front of a classroom doing?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a girl in black color dress doing?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who stands in front of class discussing sub atomic particles?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"professor\"\n  },\n  {\n    \"question\": \"what do a girl in black color dress wearing speaking in front of black board to students explayning on topic discusing displaying on screen?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who is in front of a classroom discussing a science concept?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl in a black dress doing a lecture infront of about electrons?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"what is a teacher with a black dress doing?\",\n    \"video_name\": \"video9762\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who does a man with glasses watch he loves from a distance?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a commercial doing?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who is a man meeting?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who glasses?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man waving to?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man looking at?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"meet\"\n  },\n  {\n    \"question\": \"what does a man with glasses watch the woman he loves from?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"distance\"\n  },\n  {\n    \"question\": \"who sits on a chair in the woods?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a man stares a woman from the distance before doing?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"what plays in an andy garcia film?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"who is telling hai?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is meeting a woman?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is waving to a woman?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at girl?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man telling?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"hai\"\n  },\n  {\n    \"question\": \"what is the man waves to the woman who doing?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is movie clip of a man doing?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is michael bolton doing?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who waves to the woman who is sitting done on the chair?\",\n    \"video_name\": \"video9763\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is boy doing?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is at home talking to his friend?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is an aisain male talking in?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is talking in the kitchen?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"aisain\"\n  },\n  {\n    \"question\": \"what is an asian guy at talking to his friend?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who avoids doing dishes?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about pajamas and dishes?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are talking about two male room mates?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about himself being lazy?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"ryan\"\n  },\n  {\n    \"question\": \"who refuses to do the dishes?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a glass?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who is trying to justify being lazy lounging around his house?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two person doing?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is an aisain male doing?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an asian guy is at home doing?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video of a guy doing?\",\n    \"video_name\": \"video9764\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a horse race happening on?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are a group of people racing?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are some horses racing around?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are horses running at?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"churchill\"\n  },\n  {\n    \"question\": \"what is the house racing performing on?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are many people on?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"horseback\"\n  },\n  {\n    \"question\": \"what is performing on the ground?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"racing\"\n  },\n  {\n    \"question\": \"what is the house racing doing?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are some horses doing?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are horses doing?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who commentates over a horse race?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are some guy s doing?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"raid\"\n  },\n  {\n    \"question\": \"what are raiding a horse in a race?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is happening on the track?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what are horses in?\",\n    \"video_name\": \"video9765\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many spanish men are talking to eachother?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what actors doing funny?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"comedy\"\n  },\n  {\n    \"question\": \"what are two spanish men doing?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who speaks to another man in a room?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking to each other?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is touching another man s face?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man speak to in a room?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men console each other?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man speak to another man in?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is a man touching s face?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man touching another man s?\",\n    \"video_name\": \"video9766\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is a man in a cowboy hat doing?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"exit\"\n  },\n  {\n    \"question\": \"what is man jumps out of a dumpster and goes and knocks on a door after doing?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"escape\"\n  },\n  {\n    \"question\": \"what is a man escaping from?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"dustbin\"\n  },\n  {\n    \"question\": \"what does man jump out of?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"dumpster\"\n  },\n  {\n    \"question\": \"who jumps out of a trash bin an runs down the street?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man gets out of a garbage walk up to?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is a man in a cowboy hat exiting?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"trash\"\n  },\n  {\n    \"question\": \"who is jumping out of a garbage box?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man knock on after putting on a cowboy hat?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who is coming out of a dumpster?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who climbs out of a mailbox?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who walks up to a house?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is escaping from dustbin?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping out from dustbin?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who knocks on a door after putting on a cowboy hat?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who climbs out of a garbage?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy climb out of?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"mailbox\"\n  },\n  {\n    \"question\": \"what does a guy walk up to?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a man jumping out from?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"dustbin\"\n  },\n  {\n    \"question\": \"who goes?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hiding in the trashcan?\",\n    \"video_name\": \"video9767\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to others in a stage?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when is a boy talking to some judges?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who holds a microphone on stage in front of judges?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is little kid doing?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who sings for judges?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is on stage talking to some judges?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are judges doing?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a teenager doing?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"what is a young man is on stage doing?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"answer\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"finish\"\n  },\n  {\n    \"question\": \"what is a boy speaks to into a microphone to several judges then the scene cuts to a girl doing?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a boy is on stage doing?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking to a panel of judges?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a young man answering questions from a panel of judges?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is auditioning on a tv show?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"who is talking to judges?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who talks to the judges?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is crying?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl need?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a girl on?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is on stage answering questions from a panel of judges?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on the voice?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who are judges talking to?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"contestant\"\n  },\n  {\n    \"question\": \"what did getting praise on?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who needs a hug?\",\n    \"video_name\": \"video9768\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are a large group of dancers dancing to?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are instructor and dancers practicing in in front of a mirror?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what performs a dance exercise routine?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what do an aerobics exercise set to?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a group perform routine?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a family having?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"coversation\"\n  },\n  {\n    \"question\": \"what exercise set to music?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"aerobic\"\n  },\n  {\n    \"question\": \"who are practicing in a studio in front of a mirror?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"instructor\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are instructor and dancers doing?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is group doing?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is group doing?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is having coversation?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what are a large group of dancers doing?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9769\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is fixing a computer?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person connecting something to?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"system\"\n  },\n  {\n    \"question\": \"what is a person fixing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a person connecting to system?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is working?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a boy hooking up?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is plugging in his electronics?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is connecting something to system?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person plugging cables into?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is trying to fix the problem?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is plugging cables into their computer?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains how to plug a cable into his computer?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who displays plugging something into a port on his pc?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who explaining how to plug something into his computer?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is showing how to plug in the parts for a computer tower?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is trying to fit a cable into a pc s cable slot?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is showing where to plug in cables to a computer?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is hooking something up?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a kid display plugging into a port on his pc?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"hook\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"connect\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"connect\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a kid displays doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"plug\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"plug\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9770\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl in?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who does gymnastics?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl doing different things in?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"gym\"\n  },\n  {\n    \"question\": \"who is doing a gymnastics floor routine?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is running around on a mat?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is in the gym?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is practicing gymnastics?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who practising gymnastics?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a child running around on?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"who is doing gymnastics?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is doing different things in a gym?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl doing routine?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a clip doing?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9771\",\n    \"answer\": \"practise\"\n  },\n  {\n    \"question\": \"what are some cartoon characters moving around?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what does a man make?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a golden bird fly through?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"canyon\"\n  },\n  {\n    \"question\": \"who makes a funny voice?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a white color bird flying around?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what does the animation of the bird and other cartoon not match?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"audio\"\n  },\n  {\n    \"question\": \"who mocks animated characters voices in parody?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a bird flying in then a scene from the little mermaid plays?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a boy rides a golden eagle and ariel swim up to?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what birds flying inside forest displaying on screen?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is flying in a cartoon then a scene from the little mermaid plays?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a yellow animated bird fly through then white birds fly over a cityscape?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"valley\"\n  },\n  {\n    \"question\": \"who rides a very large golden eagle as animated bird flies through some mountains?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrated to be less obnoxious than penny?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"cody\"\n  },\n  {\n    \"question\": \"what is flying through various landscapes?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what are moving around an area?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what flies through a canyon?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is bunch of cartoon characters doing?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a large animated bird doing?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is animated bird doing?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a white colour bird doing?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a cartoon movie birds doing?\",\n    \"video_name\": \"video9772\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"who plays grand theft auto 5?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a person comment about?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who comments about the game?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about a feature of an upcoming video game?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tells of rumors of a new game features?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about features of a video game?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what goes off a ramp and into the air while a person comments about the game in a video game?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about gta video game?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the video game have a lot of?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what has a lot of action?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is driving in grand theft auto?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what falls from a high to low place?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a video game car flying through?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"analyze\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game car doing?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9773\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is going in the sky?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what is a rocket going in?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is a toy rocket launched into over a forest?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what did a rocket shotting out of a green hillside and fling off into?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a toy rocket launched into the sky over?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what are more trees displayedand a roacket is running on?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what has a satellite been launched to from the launching station?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"orbit\"\n  },\n  {\n    \"question\": \"what is some one filming a blue sky out?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what did a rocket launch into?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is flying up straight into the sky?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what takes off from a heavily wooded area?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"who is recording the beautiful city and the planes?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what takes off into the blue sky?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what is some one filming out side?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"blue\"\n  },\n  {\n    \"question\": \"what leaves a vapor trail?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what launched into blue sky?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what does a toy rocket leave?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"vapor\"\n  },\n  {\n    \"question\": \"who are more trees displayedand is running on the sky?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"roacket\"\n  },\n  {\n    \"question\": \"who was shooting off a rocked in the woods into the calm blue sky?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is launched into the sky over a forest?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what was someone doing?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what shotting out of a green hillside and fling off into the air?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what is a rocket doing?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is there are tree around the video focuses on the sky as a rocket doing?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a rocket doing?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"where has a satellite been launched from the launching station?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"orbit\"\n  },\n  {\n    \"question\": \"what is shot into the sky trailing a white cloud of vapor?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what goes off into the wide blue sky over the trees?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what is lauching into a blue sky smoke is emerging from the base of the rocket?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what has been launched to the orbit from the launching station?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"satellite\"\n  },\n  {\n    \"question\": \"what is a rocket lauching into a blue sky is emerging from the base of the rocket?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a model rocket is shot into the sky doing?\",\n    \"video_name\": \"video9774\",\n    \"answer\": \"trail\"\n  },\n  {\n    \"question\": \"who are kids interacting with?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who do kids talk to?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who asked the children questions?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are kids in a classroom doing?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man speak to children in?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who speaks to children in a classroom?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"nod\"\n  },\n  {\n    \"question\": \"what is a comedian doing?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is class of children doing?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is jimmy kimel doing?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is kid doing?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a child nodding?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who is talking to jimmy kimmel?\",\n    \"video_name\": \"video9775\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a cartoon cow doing?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is talking to other?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"micky\"\n  },\n  {\n    \"question\": \"what does a cartoon discuss?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what discusses a dance?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is minnie mouse talking to?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"what do several disney characters discuss?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"ballroom\"\n  },\n  {\n    \"question\": \"what is talking to a cow?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"minnie\"\n  },\n  {\n    \"question\": \"what is talking to minnie mouse?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon character cow speak to minnie?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what is talking to a minnie mouse?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a fairie cow tell that something is marvelous?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"minnie\"\n  },\n  {\n    \"question\": \"what talks to the audience in a disney show?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"what tells minnie mouse that something is marvelous?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"fairie\"\n  },\n  {\n    \"question\": \"who discuss a ballroom event?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what is speaking?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"cow\"\n  },\n  {\n    \"question\": \"what is a cow doing?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is one micky mouse doing?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animated cow doing?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is minnie mouse doing?\",\n    \"video_name\": \"video9776\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what did a cartoon to the song mary have?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"lamb\"\n  },\n  {\n    \"question\": \"who is in class in a cartoon?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who speaks to some children outside?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who speaks to his teacher in front of the class?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sing in a foreign language?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who does a boy speak to in front of the class?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who teaches?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"nursery\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a children s shows kids in a classroom?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what does a children s tv program shows kids in?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"who explains to his teacher about the sheep of another student?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"student\"\n  },\n  {\n    \"question\": \"what does a children s cartoon music video of mary had?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"lamb\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a children s tv program shows kids in a classroom and doing?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does some children song about mary s?\",\n    \"video_name\": \"video9777\",\n    \"answer\": \"lamb\"\n  },\n  {\n    \"question\": \"what do judges interview young contestant on?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is judging a little boy?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who contestant on show?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what do kids perform on the show called?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is talking to a young kid?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is getting positive comments from the judges?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is judges doing?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video of a show doing?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what does a young boy speak to the judges on the tv show?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a judge doing?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who speaks to the judges on the tv show the voice?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy on stage doing?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"who is a judge judging?\",\n    \"video_name\": \"video9778\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do fireworks go off in?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what are fireworks doing?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"blast\"\n  },\n  {\n    \"question\": \"what are fireworks doing?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"explode\"\n  },\n  {\n    \"question\": \"what is fireworks doing?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"explode\"\n  },\n  {\n    \"question\": \"what did the fireworks go off in?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is watching fireworks?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are fireworks blasting in?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what show in a large city?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"firework\"\n  },\n  {\n    \"question\": \"who is recording fireworks?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a crowd doing?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what do fireworks explode in?\",\n    \"video_name\": \"video9779\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is an old woman doing?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is scene from a horror movie doing?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an older woman who is blind doing?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a young girl and older woman where the older woman is a medium doing?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what is a psychic medium tries doing?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a old women doing?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a blind woman talks to a girls who isn t doing?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"respond\"\n  },\n  {\n    \"question\": \"what is a old women talking?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is an old woman talking to?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"spirit\"\n  },\n  {\n    \"question\": \"who does a woman try to contact?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who sits with a woman who attempts to contact a ghost named lilly?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"who talks to a girls who isn t responding?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to the camera from the shadows?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is trying to communicate with someone named lilly?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is calling out for a girl named lilly?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman speak to from the shadows?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who tries to talk to lily?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman attempt to contact?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"spirit\"\n  },\n  {\n    \"question\": \"who is talking to a spirit?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who tries to contact someone?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who attempts to contact a spirit?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who waits in anticipation?\",\n    \"video_name\": \"video9780\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is a female researcher doing?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is person who is president doing?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman talks about a slide doing?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is president obama is on the right side of the screen doing?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a slideshow doing?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a speaker giving?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"who describes what precision medicine is?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who is explaining different medicines?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"researcher\"\n  },\n  {\n    \"question\": \"what is obama picture displayed on?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is talking in the mike?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is displayed on the screen?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"who talks about a slide showing information on precision medicine?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"mike\"\n  },\n  {\n    \"question\": \"who is reading a news about precision medicine?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a person describe the president s?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"initiative\"\n  },\n  {\n    \"question\": \"who gives a presentation on a matter of science?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is person who is president talking for?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who does a person describe s precision medicine initiative?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what is a lady reading a news about?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"precision\"\n  },\n  {\n    \"question\": \"what s lecture on precision medicine?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what did graphics and a picture of president obama that discuss?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"precision\"\n  },\n  {\n    \"question\": \"who describes how precision medicine combines diagnostics and therapeutics?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who describes the president s precision medicine initiative?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gives a lecture on precision medicine?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving a presentation?\",\n    \"video_name\": \"video9781\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman who has two separate uteruses and cervixes is pictured doing?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what does a narrarator describe a woman s?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"condition\"\n  },\n  {\n    \"question\": \"what does a woman have?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"anatomy\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does an woman play as?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"who is a person explaining about?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who are women posing for?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"photoshoot\"\n  },\n  {\n    \"question\": \"who is explaining about the girl?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who has weird anatomy?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about having two uteruses?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays as a model?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a woman with two sets of genitals?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man narrate the story of a woman s?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"condition\"\n  },\n  {\n    \"question\": \"what does a man talking about a womans?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"genital\"\n  },\n  {\n    \"question\": \"who does a narrarator describe s medical condition?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes a woman s medical condition?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"narrarator\"\n  },\n  {\n    \"question\": \"who shows a woman in various poses?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"who narrates the story of a woman s medical condition?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man talk about with two sets of genitals?\",\n    \"video_name\": \"video9782\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a bus doing?\",\n    \"video_name\": \"video9783\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9783\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what does a animated school bus drive down?\",\n    \"video_name\": \"video9783\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is an animated woman doing?\",\n    \"video_name\": \"video9783\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a bus riding down?\",\n    \"video_name\": \"video9783\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is an animated woman holding?\",\n    \"video_name\": \"video9783\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who s show about kids riding to school on a bus?\",\n    \"video_name\": \"video9783\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what are people of the bus doing?\",\n    \"video_name\": \"video9783\",\n    \"answer\": \"chat\"\n  },\n  {\n    \"question\": \"who is holding a baby?\",\n    \"video_name\": \"video9783\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a bus driving on?\",\n    \"video_name\": \"video9783\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is singing on a bus?\",\n    \"video_name\": \"video9783\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"aim\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is sygornie weaver doing?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a movie with a guy doing?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what clip from the alien movies?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what weaver pointing a gun?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"sygornie\"\n  },\n  {\n    \"question\": \"who does a man teach how to use a gun?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who teaches a woman how to use a gun?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown how to shoot a gun before running down a hallway?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do sygornie weaver pointing?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who holds a gun?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"sigourney\"\n  },\n  {\n    \"question\": \"who is aiming a gun?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what weaver then running?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"sygornie\"\n  },\n  {\n    \"question\": \"what is a man shooting?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a woman holding?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a woman aiming?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"how many people run away?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does the woman aim?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is shooting a gun?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a gun?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who aims the gun?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who wields a large gun?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does sigourney weaver hold?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a man wield?\",\n    \"video_name\": \"video9784\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"re-enacting\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what are a man and woman running down with blue beach chairs and umbrellas?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is person walking on?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is playing with the kids?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"how many other people are running?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is walking on the beach?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are sun bath reflect in in the sea shore play of the lovers and the girls?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"secssion\"\n  },\n  {\n    \"question\": \"who is walking along the beach with video camera that he has turned into a video game?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what plays as people jump over children people run on the beach by blue lounge chairs and mario brothers?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is running around on the beach recorded from a pov camera?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does music play as people jump over children people run on by blue lounge chairs and mario brothers?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is recording the beautiful beach near the sky?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what has a nice white sand beach video been shown girls are roamming around?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"pikini\"\n  },\n  {\n    \"question\": \"what is someone walking along with video camera that he has turned into a video game?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is sleeping on the beach while two other people are running?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone walking along the beach with that he has turned into a video game?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are reflect in the secssion in the sea shore play of the lovers and the girls?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"when are some people walking around on a beach?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what is a man sleeping on while two other people are running?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are some people walking around on during the day?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is walking fast along the beach with so many benches?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone walking fast along with so many benches?\",\n    \"video_name\": \"video9785\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"how many reporters talk to each other about famous wines?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many people sit in chairs?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are talking in the tv channel?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are two men and one woman speaking about in a well lit room?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"wine\"\n  },\n  {\n    \"question\": \"what is telecat the interview of the great business men?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what do a woman and two men have on a news channel?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"who do tv show is having a conversation with his invitees who have no trouble opening up?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what are two men together and one woman having all dressed up formally?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is bbc news doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what anchor interviews guests about the price of wine?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"how many people sit on a blue bench talking to each other?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a woman with short hair doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman and two men doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two men and one woman doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is three people sit on a blue bench doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a luxuries setting of a studiowhere the two important persons doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"attend\"\n  },\n  {\n    \"question\": \"what are a three men doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three people doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a lady in black color dress doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is three people sit in chairs and doing?\",\n    \"video_name\": \"video9786\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are three girls doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is three women doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are three women doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are group of women doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three beautiful girls doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a girl with large breast doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are stop voucher the on road three girls doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is one cute sexy girl doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are three woman doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are three well dressed girls doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a teenage girl doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is three friends doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are three woman walking in the road and one man asking to middle woman?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is startled by an older man?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many beautiful girls are walking on the road?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many women are walking on the street?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who walks on a street with two other women?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are walking in the road and one man asking something to middle woman?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are three woman walking in the road and one man asking something to?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are talking while walking on the street?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who do women walking down the street being mean to?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"homeles\"\n  },\n  {\n    \"question\": \"who is one of the girls talking to thema is asking for money?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"beggar\"\n  },\n  {\n    \"question\": \"how many women are talking with a man?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a girl running on?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is one of the girls talking to thema beggar is asking for?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"money\"\n  },\n  {\n    \"question\": \"what are three women walking on?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is running on the road?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who are three women talking with?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are three beautiful girls walking on?\",\n    \"video_name\": \"video9787\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is floating over a forest?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is looking in a mirror?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"queen\"\n  },\n  {\n    \"question\": \"what is a snow queen looking in?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"who meets a man?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl seem to be flying in here?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a girl floating over?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"who stands in the snow?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is flying?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what snows around?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a woman flying in?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what does a woman stand in?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"who does a girl meet?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flying in the sky?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who seems to be flying in air here?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman fly through the air looking at in a movie?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"who flies through the air looking at a mirror in a movie?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is flying in air while it snows around?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who hold on while flying through the air?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman fly through the air looking at a mirror in?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a woman with white hair flying through?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a woman flying in while it snows around?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a woman with long white hair and dressed all in white sailing through over snow covered ground?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is blowing?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"wind\"\n  },\n  {\n    \"question\": \"who is flying over a snowy landscape?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman with white hair holds while wind doing?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"blow\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is a girl seems to be doing?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a snow queen doing?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a woman with long white hair and dressed all in white doing?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"what is a woman with white hair doing?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is in a movie a woman flies through the air doing?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is the woman hold on while doing?\",\n    \"video_name\": \"video9788\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man sprawaled against while another falls asleep on a throne?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is sent to prison by the evil king?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"prisoner\"\n  },\n  {\n    \"question\": \"what is an animated king henry died in a dungeon while doing?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"king\"\n  },\n  {\n    \"question\": \"what is a man in black and red doing?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"lend\"\n  },\n  {\n    \"question\": \"what is the person talks about doing?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"king\"\n  },\n  {\n    \"question\": \"what is there are different males doing?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is this is a cartoon about the history of succession of doing?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"king\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the helpless man in black shirt doing?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are the people doing?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a cartoon dolls person doing?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an animated king doing?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what does another fall asleep on?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"throne\"\n  },\n  {\n    \"question\": \"who is sprawaled against a wall while another falls asleep on a throne?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did the person talks about king edward the iii took over as?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"king\"\n  },\n  {\n    \"question\": \"what does an animated cartoon about the history of a region s?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"monarchy\"\n  },\n  {\n    \"question\": \"what is a cartoon prisoner sent to by the evil king?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"prison\"\n  },\n  {\n    \"question\": \"what is a man in black and red lending against?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is sitting in a jail cell by himself?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting a crown on his head?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"king\"\n  },\n  {\n    \"question\": \"what does a new man take?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"crown\"\n  },\n  {\n    \"question\": \"what is an animated king putting a crown on?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what are the people staying on?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who takes the crown?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the helpless man in black shirt sitting on?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is telling the story of edward the 4th?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an animated king putting on his head?\",\n    \"video_name\": \"video9789\",\n    \"answer\": \"crown\"\n  },\n  {\n    \"question\": \"what is animated character doing?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"rap\"\n  },\n  {\n    \"question\": \"what is animated doing?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is squidward scenes doing?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animated character doing?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do squidward scenes playing with a lil wayne?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is an animated character singing?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a cartoon man sing?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does squid word explain?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who s yelling is auto tuned?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"what is an animated character talking animatedly at?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who sings to a hip hop song?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who is talking animatedly at a door?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is squdward in spongebob riding?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what explains something?\",\n    \"video_name\": \"video9790\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"what is a women reporting about a celebrity in?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a reporter talking about?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman presenting?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a person giving?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who show?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a female news reporter doing?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is pretty girl doing?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"who discusses movies?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does grace randolph talk about?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who is a women reporting about in a band?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"what does grace randolps talks about on beyond the trailer?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what randolps talks about a movie on beyond the trailer?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"grace\"\n  },\n  {\n    \"question\": \"who is presenting the news?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is giving news on girls?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about celebrity news?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"randolph\"\n  },\n  {\n    \"question\": \"who is talking about celebrities?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a movie?\",\n    \"video_name\": \"video9791\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a pink and yellow flower and girl doing?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"who are some flowers kept in water is apply something on back of other lady?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is care world gorgeous you women beautician doing?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is women in black dress doing?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman dressed in black doing?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what is brunette in black top massaging and doing?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what does an indian woman discuss?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"spa\"\n  },\n  {\n    \"question\": \"who discusses spa therapies?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a women doing for other women in a palor?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what do women in black dress explaining about?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"care\"\n  },\n  {\n    \"question\": \"what is a women doing body massage for other women in?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"palor\"\n  },\n  {\n    \"question\": \"what do brunette in black top rubbing to woman?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what plays of the beautiful flowers and a woman getting a massage?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are some flowers kept in a lady is apply something on back of other lady?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who top rubbing oil to woman?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"who is a woman dressed in black massaging s shoulders?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who gives a second woman a massage in a spa?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is shown giving a massage to another woman?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do brunette in black top rubbing oil to?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who top massaging?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"brunette\"\n  },\n  {\n    \"question\": \"what are some flowers kept in water a lady is apply on back of other lady?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are shown?\",\n    \"video_name\": \"video9792\",\n    \"answer\": \"daisy\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what twain being interviewed?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"shanium\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a preview of a band doing?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is playing a song?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does interview with artist shanai?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"twain\"\n  },\n  {\n    \"question\": \"what does shania twain give?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what does an abc news reporter do?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what shanai twain?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who is interviewed on the news?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"musician\"\n  },\n  {\n    \"question\": \"what is dancing with back up dancers?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"shanium\"\n  },\n  {\n    \"question\": \"what gives an interview?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"shanium\"\n  },\n  {\n    \"question\": \"what is another playing?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a musician interviewed on?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is shania twain doing?\",\n    \"video_name\": \"video9793\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is describing a time about an old ass whore giving people a really dirty look?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"when is a kid describing about an old ass whore giving people a really dirty look?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"who is doing something with the black lady?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what play of a woman with cat ears?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing the sims video game?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing with the black lady?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl playing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a girl describing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a cartoon talking with?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is talking with someone?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is describing a video game?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing sims?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is talking about sim game play?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a girl use really excessively while playing a video game?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"word\"\n  },\n  {\n    \"question\": \"who navigates around a virtual game?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a video game?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who uses the word really excessively while playing a video game?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sims?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl uses the word really excessively while doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an animated figure doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9794\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"what is a game character doing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is description of an animated video game doing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what is computer game shown here with doing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is being played?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who minecraft?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what shown here with shooting scenes?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman reviewing?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is reviewing a game?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about a minecraft clone?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a new computer game?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is shown in a minecraft like game?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9795\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man use wires and apple slices to conduct?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"electricity\"\n  },\n  {\n    \"question\": \"who hooks some wires up to apple slices?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who uses wires and apple slices to conduct electricity?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man hook some wires up to?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"who is connecting wires to apple?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in uniform doing with electricity involving apples and wires?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a person connecting wires to?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man creating electric with?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"what does man perform?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who pin?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who clip?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is producing current?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"what together apple slices?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is creating electric with apple?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is experimenting with apples?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs science experiment?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"connect\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an apple doing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"produce\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"wire\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9796\",\n    \"answer\": \"connect\"\n  },\n  {\n    \"question\": \"what does a football player run down the field?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what pictures from a football game?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what cast given for a football game?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does a football player run the ball down?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who talks about a football team?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talking about a falcon?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who discusses the score of a football game while pitures of it are shown?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about game rugby?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who runs the ball down the field?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is giving commentary on an american football game?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who celebrates with his teammates?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who are on the play ground?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"sportsman\"\n  },\n  {\n    \"question\": \"who is talking about football?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone talking about?\",\n    \"video_name\": \"video9797\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man cracks a plant before doing?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"peal\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who cut the onion and peels the skin?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does a man peel?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man peeling?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is pealing something to cook?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who peeling an onion?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man cracks before cooking it?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what is the man peeling while explaining?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who cracks a plant before cooking it?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to peel an onion?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is peeling an onion while explaining?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is peeling an onion?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone pealing to cook?\",\n    \"video_name\": \"video9798\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is reviewing a mobile?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who talks about a phone?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what moto x?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a man telling about?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"cellphone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is showing a cellphone?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"review\"\n  },\n  {\n    \"question\": \"who is talking about a motorola x cell phone?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a cell phone?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who x phone demonstration?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"moto\"\n  },\n  {\n    \"question\": \"who is telling about phone features?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a person records a close-up of them doing?\",\n    \"video_name\": \"video9799\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is crashing on the road?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what sweeps down a road?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is going fast?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone drive very fast?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car in?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"wreck\"\n  },\n  {\n    \"question\": \"what did a car fall in to?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a car crashing on?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is someone make?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"accident\"\n  },\n  {\n    \"question\": \"what does rally car go flying off?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is in a wreck?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what fell in to the ground?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a race car crash along?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"racetrack\"\n  },\n  {\n    \"question\": \"what does a car then fall down?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"valley\"\n  },\n  {\n    \"question\": \"what loses control?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car lose?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what is a car being flipped down?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"who is make an accident?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what then falls down the valley?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what crashes along a racetrack?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does a car sweep down?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is being flipped down the hill?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what goes flying off track?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"rally\"\n  },\n  {\n    \"question\": \"what is drive a car very fast?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is scenes of cars doing?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is rally car goes doing?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a yellow and white car doing?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a compilation of cars doing?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is cars doing?\",\n    \"video_name\": \"video9800\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who are dancing slowly on an important day?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does the in the tuxedo dance with?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances with his daughter while music plays?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"what plays while a man and woman dance at a wedding?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is a girl with a pink dress in a ballroom dancing with?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with a man?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who does a father dance with while music plays?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"daughter\"\n  },\n  {\n    \"question\": \"what does a woman in a long pink dress lay on the chest of a man in a tuxedo?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who dances with a woman with a pink dress and veil?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a lady talking with?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man and woman dance at?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"wedding\"\n  },\n  {\n    \"question\": \"who is crying?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who dresses with a woman in a pink dress and veil?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a father daughter dance with the girl dress from to toe in bright pink?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what are man and woman doing?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl with a pink dress is in a ballroom doing?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is wizards of waverly place video doing?\",\n    \"video_name\": \"video9801\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who dances in the background while a guy doesn t move?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a boy standing and a girl doing?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who dances behind a guy who is facing the camera and talking?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing to music while a man stands unaware?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman dance in while a guy doesn t move?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is dancing in the hallway behind a boy?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is dancing in the background as a man speaks?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song and dancing and a man standing alone with out any reaction?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing while a man stands stationary?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a person dancing in the hallway behind?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a woman dancing to while a man stands unaware?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is standing still while a woman dances behind him?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a woman dancing in as a man speaks?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is dancing in the background of a high school hallway?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person dancing in behind a boy?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what is a woman dances behind a guy who doing?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who is walking behind a young man?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who doesn t move?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who speaks?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands unaware?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands stationary?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is shake it by taylor swift doing?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is young girl doing?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is woman in the background doing?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who dances behind a boy?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances behind a guy?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who just stands there while a girl dances behind him?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who does a girl dance behind?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who does a woman dance behind?\",\n    \"video_name\": \"video9802\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"how many men are wrestling?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are grappling?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who takes his opponent from behind?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who does a black wrestler take from behind?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two guys wrestling in?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what are two wrestlers competing in?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what do two boys wrestle in?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what do two young men wrestle on?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what do two young boys wrestle on?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what do some guys wrestle on?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"grapple\"\n  },\n  {\n    \"question\": \"what are two guys doing?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"how many men are wrestling each other?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two wrestlers doing?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are two young wrestlers doing?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"how many boys wrestle in a competition?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys are wrestling in a competition?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young wrestlers are wrestling each other at a match in front of a crowd of onlookers?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young men wrestle on a mat?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys are wrestling each other while being cheered on?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young boys wrestle on the ground?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many wrestlers are competing in a match?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what match between a guy in green and a guy in blue?\",\n    \"video_name\": \"video9803\",\n    \"answer\": \"wrestling\"\n  },\n  {\n    \"question\": \"what is a split screen showing at once?\",\n    \"video_name\": \"video9804\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what moves through the pages?\",\n    \"video_name\": \"video9804\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are running?\",\n    \"video_name\": \"video9804\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is showing several movie scenes at once?\",\n    \"video_name\": \"video9804\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is film clips available for doing?\",\n    \"video_name\": \"video9804\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what is com advertisement doing?\",\n    \"video_name\": \"video9804\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the home screen for a movie doing?\",\n    \"video_name\": \"video9804\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what is a split screen doing?\",\n    \"video_name\": \"video9804\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what clip on a display that has user options to control what to watch?\",\n    \"video_name\": \"video9804\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what did disney characters singing old macdonald have a farm in?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is playing of mickey and friends to the old mcdonald theme?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who are dancing?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are singing?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is this an animation video of cartoons doing?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are disney characters doing?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what did disney characters singing old macdonald have in the rain?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"farm\"\n  },\n  {\n    \"question\": \"what are characters from video games doing?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is animated characters doing?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do animated characters do?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do disney characters dance to?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who do cartoon characters dance to?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"mcdonald\"\n  },\n  {\n    \"question\": \"who dance to a song?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what do 3d animated characters dance to?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who do animated disney characters sing?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"macdonald\"\n  },\n  {\n    \"question\": \"what a group of disney characters?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who dance to old mcdonald?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who sing old macdonald?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what are a bunch of cartoon characters doing?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is disney cartoons doing?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who are characters from video games dancing to old mc had a farm?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"donald\"\n  },\n  {\n    \"question\": \"what are characters from video games dancing to old mc donald had?\",\n    \"video_name\": \"video9805\",\n    \"answer\": \"farm\"\n  },\n  {\n    \"question\": \"who is driving his black car fast on the street?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person driving his car so fast on?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what is a person riding very fast in a place?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what was in the roaed?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"what is a person riding a car very fast in?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a person driving at a very speed?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is riding a car very fast in a place?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a car driving very fast on a curvy road with trees on?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who is driving his car so fast on the path?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person driving his black car fast on?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is flying like a race car?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what was no one in?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"roaed\"\n  },\n  {\n    \"question\": \"what is person driving fast on the street?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who talks in french?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person driving so fast on the path?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving around on a gray road?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person driving on the curve roads?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"where is a person riding a car very fast?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is driving on a windy country road?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"where is a car driving very fast on a curvy road with trees?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who is driving the car at a very speed?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is driving very fast through curvy roads in a forest?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car on the curve roads?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drives down a windy road past the tall trees?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a tree line someone drives a car at high speed down?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what did a tree line street someone drives at high speed down?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"when is cross country racing of a rally in the racing car gaining?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"who did a tree line street drives a car at high speed down?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is driving very fast on a curvy road with trees on the side?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what lined street someone drives a car at high speed down?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"when did a tree line street someone drives a car down?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car driving on a winding road and the sun doing?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"glare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is cross country racing of a rally in the racing car doing?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"gain\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9806\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is discussing a nasa article about mars?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"who is shown then a red planet as a man narrates?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"website\"\n  },\n  {\n    \"question\": \"what glows red on a planet as a man talks about beliefs?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"horizon\"\n  },\n  {\n    \"question\": \"what does a red hot line on the surface of the mar s?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"planet\"\n  },\n  {\n    \"question\": \"who shows various pictures while talking about conspiracy theories?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is rising around a red planet while an announcer is discussing a nasa article about mars?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is a discussion of a mystery of the planet mars being solved in?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"progress\"\n  },\n  {\n    \"question\": \"what is person opening on his computer?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"page\"\n  },\n  {\n    \"question\": \"what is a planet being filmed from?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what is being filmed from space outside?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"planet\"\n  },\n  {\n    \"question\": \"who is talking over a video clip of a planet or moon talking about how it s not a mistake?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking about space and activitry?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is opening a web page on his computer?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a bright and narrow yellow light separates a gradually doing?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"darken\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is person opening a web page on?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a light doing?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"rise\"\n  },\n  {\n    \"question\": \"what is a picture of planet and somebody doing?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man shows various pictures while doing?\",\n    \"video_name\": \"video9807\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon hero doing?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who are speaking?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what show on tv?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who get yelled at by another cartoon character?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what squarepants cartoon with a kids?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what does a spongebob squarepants with a kids?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is talking to other cartoon heroes?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what did a clip from the cartoon sponge?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"bob\"\n  },\n  {\n    \"question\": \"who yells at spongebob and patrick?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"squidward\"\n  },\n  {\n    \"question\": \"who talk about another cartoon character?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who and patrick talking to each other?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who are talking to squidward on an episode of spongebob squarepants?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"how many cartoon characters get yelled at by another cartoon character?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this is a spongebob squarepants cartoon doing?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is spongebob and patrick doing?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are spongebob and patrick doing?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is spongebob squarepants and patrick star talk to squidward tentacles who ends up doing?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"yell\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are spongebob squarepants and patrick doing?\",\n    \"video_name\": \"video9808\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men standing behind?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what are two men talking about?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"how many men are having a discussion next to a cool green motorcycle?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are discussing how to race a motorcycle?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks in front of a green bicycle?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the benefits of riding on his sweet motorcyle?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are standing behind a motorcycle?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking about a motorcycle?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking about his motorbike to a friend?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is talking about a bike?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about to a friend?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what are men talking near?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is a man talking about his motorbike to?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is a man in doing?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is rider doing?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9809\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what s of pretty girls being showed on clipart?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what does a lady in a redshirt sit on?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are a women in different colored dress posing for?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what does photo s of pretty girls being showed on?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"clipart\"\n  },\n  {\n    \"question\": \"what does two beautiful hot and sexy girls pictures come as?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what is a woman in a red shirt doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what did montage featuring photographs of women set to?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a women in different coloured dress doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is some women models pictures are shown as a slide show presentation and a women doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is first glamour girl with grey doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is several pictures of women in dresses doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is the images of different models doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"pose\"\n  },\n  {\n    \"question\": \"what is a brunette girl doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is montage doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is three young & beautiful fashion girls doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are it s about models who doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who is sitting in red dress and one girl standing in blue dress?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what set to some crazy music the last picture is a woman in a blue dress?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do first glamour girl with gray dressing giving stand posesecond girl with giving sitting pose and third glamour girl with blue dressing giving stand pose?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"dressing\"\n  },\n  {\n    \"question\": \"what did pictures of woman set to some crazy music is a woman in a blue dress?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is women are seen doing?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9810\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many men have a discussion?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are talking to each other?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are talking about something?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking in prison?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to another man?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men interact within a prison?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men talk in a control room?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what gerard depardieu in a french movie clip?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"reno\"\n  },\n  {\n    \"question\": \"how many man s are talking to each other?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is trying to initiate conversation with an unresponsive man?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are having a conversation while sitting down?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two man s doing?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is walking back and forth?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two men have?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what is scene of a man doing?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men talking in?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"prison\"\n  },\n  {\n    \"question\": \"what are two people talking about?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do two men interact within?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"prison\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video9811\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman does an instruction video on doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"edit\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is worker doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who edits a photo online?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is playing with light effects on a computer?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is editing picture on computer?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what flare photoshop tutorial?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"len\"\n  },\n  {\n    \"question\": \"who does an instruction video on using photo manipulating software?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining about the options of pc application software?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is working with photoshop and talks about a particular layer?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes an image?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is editing photos?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is describing a computer screen?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a lens flare?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"photoshop\"\n  },\n  {\n    \"question\": \"who is discussing software?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"worker\"\n  },\n  {\n    \"question\": \"what does someone play around with?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what does a girl edit online?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"what does a woman describe?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what is a person describing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is worker discussing?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"software\"\n  },\n  {\n    \"question\": \"who plays around with photo shop?\",\n    \"video_name\": \"video9812\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a character doing?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle at high speeds in a video game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video gamer doing?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle through a city in a video game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives a motorcycle in a video game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"biking\"\n  },\n  {\n    \"question\": \"who rides his bike through a city in grand theft auto 5?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is chasing on motorcycle in a game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a man riding at high speeds in a video game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding a bike in a game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding a motorcycle through in a video game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is a man riding through a city in a video game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what a person on a video game rides?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a character chasing on motorcycle in?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a character chasing on in a game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding a bike in?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what a man rides?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding in a game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a video gamer driving?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what video game character rides?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is driving a motorcycle?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a biking game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who rides a motorcycle?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a person rides through a city in grand theft auto 5?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9813\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a squid doing?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a scene from spongebob squarepants where the townspeople doing?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is an angry mob doing?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are spongebob characters doing?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a character pull out of a briefcase?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"torch\"\n  },\n  {\n    \"question\": \"who run down the road?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what is an angry mob chasing?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is chasing someone?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"mob\"\n  },\n  {\n    \"question\": \"what do cartoon people run across?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what run across the screen?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do some cartoon characters run down?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is standing?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"squid\"\n  },\n  {\n    \"question\": \"what are animated characters shown running through?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what chase sponge bob and patrick with torches and pitchforks?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who pulls a torch out of a briefcase?\",\n    \"video_name\": \"video9814\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a woman throw a plant at a man s?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"groin\"\n  },\n  {\n    \"question\": \"who throws a plant at a man s groin?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do people cheer as racers cross?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what flashes pictures on a screen that involve dancing race cars and swimming?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is music plays and you see a bunch of different people doing?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is intense musical montage doing?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a music video of people doing?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what is a music video flashes pictures on a screen that involve doing?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a music video of a mix of things a woman in water a race car a house plant doing?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9815\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a blonde women doing?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"eavesdrop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a child bite?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what has issues?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a girl?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"eavesdropping\"\n  },\n  {\n    \"question\": \"what is a woman in?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"who is eavesdropping?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what was the girl on?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are people talking on?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is in the bathroom?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who was on the phone?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is in a bathroom stall?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is the girl on the phone in?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"distraught\"\n  },\n  {\n    \"question\": \"what is a blonde women pulling napkins from?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"dispenser\"\n  },\n  {\n    \"question\": \"what does a teenage girl try to get at a public restroom?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"tissue\"\n  },\n  {\n    \"question\": \"who tries to get tissue at a public restroom?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"who is pulling tissues out of a dispenser?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being shown in various clips from a television show?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is doing various activities like watching television?\",\n    \"video_name\": \"video9816\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a player in red make?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what is soccer is an doing?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"exhilarate\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is vines are shown about different doing?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"sport\"\n  },\n  {\n    \"question\": \"what is video of athletes doing?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is scored?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who scores a soccer goal?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is soccer?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"exhilarating\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what a man scores?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is soccer players doing?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of people playing?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is an exhilarating sport?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who are vines shown highlights?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"sporting\"\n  },\n  {\n    \"question\": \"who score goals?\",\n    \"video_name\": \"video9817\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a girl eye browse a pencil in her hand brush for make up beauty facial look doing?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a girl a brush in her hand make up box brush for make up beauty facial look doing?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is music playing and a girl with no makeup on doing?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"who is applying eye makeup while listening to music?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is applying eye makeup with a black brush?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is applied in time lapse to a lady with green eyes?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a young woman applying while listening to music?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is makeup applied in to a lady with green eyes?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"lapse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a woman applying with a black brush?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is listening to some music inside?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman listening to inside?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9818\",\n    \"answer\": \"make\"\n  },\n  {\n    \"question\": \"what report about police?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who introduces a video?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what did a news cast showing?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"brutality\"\n  },\n  {\n    \"question\": \"what does man news reporter introduce?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what covers another police misconduct situation?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is reporting the news?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man telling in the tv?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a news reporter reporting about?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"conduct\"\n  },\n  {\n    \"question\": \"what cast showing police brutality?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who talks about a police incident?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a man reporting?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is reporting about police conduct?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is telling news in the tv?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reporting on a police officer holding back teenagers?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows a video of chaos on a police takedown?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who introduces a news video clip?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a news cast doing?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a news reporter doing?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is an abc news reporter gives commentary on a video doing?\",\n    \"video_name\": \"video9819\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"designate\"\n  },\n  {\n    \"question\": \"who navigates a menu on a video game?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman showing?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"art\"\n  },\n  {\n    \"question\": \"who narrates the use of a computer program?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining about computer programming?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing some art?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person explaining about?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"programming\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9820\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man in a black shirt doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a ted talk with an older male speaker doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are humans doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what are the man talks about how 7 million people doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a black collard shirt doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with a black shirt doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in black shirt doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a old man in black color dress doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is ted talks video doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with a doing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"bald\"\n  },\n  {\n    \"question\": \"what does a man in black with glasses give a tedt talk about?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"what do a old man in black color dress wearing speaking standing and audience watching displaying on screen?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"when is a man with a black shirt standing?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who talks about how 7 million people are learning to communicate with each other at warp speed globly?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a black collard shirt talking to about global brain among people?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"when does a man wearing a black shirt talk?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man in a black shirt talking about at a ted conference?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"globalization\"\n  },\n  {\n    \"question\": \"what is a man in a black collard shirt talking to the audience about among people?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"brain\"\n  },\n  {\n    \"question\": \"who explain abt earth?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands on astage?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man stand on?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"astage\"\n  },\n  {\n    \"question\": \"what do a man explain?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"earth\"\n  },\n  {\n    \"question\": \"who discusses the history of human interaction from past to present?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the interconnectivity of human information networking?\",\n    \"video_name\": \"video9821\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is doing a makeup review?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what was the woman applying?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"lipstick\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who explains about lip?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman applying?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what is a girl talking?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman explain about?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"lip\"\n  },\n  {\n    \"question\": \"what is a woman applying gloss?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"lip\"\n  },\n  {\n    \"question\": \"who was applying lipstick?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing lips makeup?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is applying lip stick?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting on red lipgloss?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks about lip stick?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stick?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is applying lip gloss?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who performs in an ad of lipstick?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who demonstrates how to put on a lipstick?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what applies makeup and talks about the benefits?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"youtuber\"\n  },\n  {\n    \"question\": \"who is talking something?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is a girl putting on?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"lipglos\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video segment?\",\n    \"video_name\": \"video9822\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a bunch of soccer games doing?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are different teams doing?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there are teams of men doing?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"dash\"\n  },\n  {\n    \"question\": \"what is a rugby player falls down doing?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is the players are in battle for the ball and doing?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"win\"\n  },\n  {\n    \"question\": \"what is the balls are taken very violently from the opponent and runs vigorously towards the post for doing?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is the rugby players run down the field and get hit many times while doing?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what are more players doing?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who falls down trying to go through the opponent s defense line?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"where was a foul done?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who run down the field?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"who are the balls taken very violently from?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"what do the through ball players play in?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what do the rugby players run down?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what was done on the field?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"foul\"\n  },\n  {\n    \"question\": \"what was a foul done on?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are more players playing?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"foodball\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"where do the through ball players play?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"playground\"\n  },\n  {\n    \"question\": \"what s aggressive plays are shown?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who does a rugby player fall down trying to go through s defense line?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"who get hit many times while carrying the ball?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"who fight after a foul was done on the field?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a rugby player fall down trying to go through the opponent s?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"defense\"\n  },\n  {\n    \"question\": \"what does a beautiful match of by different teams?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"what matches of rugby by different teams?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"what do a group of young people play a game of?\",\n    \"video_name\": \"video9823\",\n    \"answer\": \"rugby\"\n  },\n  {\n    \"question\": \"how many women have a conversation while seated at a kitchen table?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who stands scared?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is one fronting the other about?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"drinking\"\n  },\n  {\n    \"question\": \"what s a video about the concerns of alcoholism two ladies are sitting down around a table while one is fronting the other about their drinking?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who is a woman in a black dress talking to?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is believed to ease the tension reversely it increases mental problems and tensions?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"alcohol\"\n  },\n  {\n    \"question\": \"what do sexy brunette in black dress talking to the girl in?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is a woman with dark hair sitting down inside of?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are some women at a table talking in?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who do sexy brunette in black dress talking to in shirt?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a movie scene girl in black color dress doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is an advertisement about doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a lady tries to help out her friend who is traumatized due to her companions doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are it s a video about the concerns of alcoholism two ladies doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is sexy brunette in black dress doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two ladies doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some women at a table doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a black dress doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman with dark hair doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman in a black dress doing?\",\n    \"video_name\": \"video9824\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is man talking about while sitting on big chair?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"phrenology\"\n  },\n  {\n    \"question\": \"what does a person with brown coat speak about?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"phrenology\"\n  },\n  {\n    \"question\": \"who does a man in glasses talk about?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"phremology\"\n  },\n  {\n    \"question\": \"what does a man in nerdy glasses and a beige suit jacket talks about phrenology the science of analyzing bone structure of the skull s?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is talking about the first phrenologist?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man in brown suit talking about?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"phrenology\"\n  },\n  {\n    \"question\": \"what does a young man in glasses talk about?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"phrenology\"\n  },\n  {\n    \"question\": \"what is person talking about while sitting on the chair?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"phrenology\"\n  },\n  {\n    \"question\": \"what does a man with brown suit explain about?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"phrenology\"\n  },\n  {\n    \"question\": \"what do a person in brown color dress wearing sitting speaking on topic displaying on screen?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what is the blond haired man doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man in a blazer and t-shirt doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person in brown color dress doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man in brown suit doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in glasses with blonde hair doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in nerdy glasses and a beige suit jacket talks about phrenology the science of doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"analyze\"\n  },\n  {\n    \"question\": \"what is a man in a brown suit coat in a black chair doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is the man with spectacles and brown coat doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with eyeglasses doing?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking about phrenology while sitting on big chair?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in glass with sitting in a chair?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is talking about phrenology while sitting on the chair?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who glasses with blonde hair sitting in a chair?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an intelligent man with glasses sit in?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does a man in nerdy glasses and a beige suit jacket talks about phrenology the science of drawing conclusions about one s?\",\n    \"video_name\": \"video9825\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is there in cartoon?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is car and kid there in?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is driving around?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is mickey mouse doing?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is driving a car?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"what is an animated micky doing?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a video shows mickey mouse doing?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a smart car doing?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a colorful compact car doing?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a cartoon car doing?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is mickey mouse driving?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does mickey mouse drive?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is riding in a car?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"what shows mickey mouse driving a car down the road?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a video show mickey mouse driving a car down?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a video show mickey mouse driving down the road?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does mickey mouse drive while children sing?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a video show driving a car down the road?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"what drives a car while children sing?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"what is driving through the trees?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are kids singing while mickey drives?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what drives a smart car?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"mickey\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"micky\"\n  },\n  {\n    \"question\": \"what is an animated micky driving?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is mickey mouse riding in?\",\n    \"video_name\": \"video9826\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gaga performance of applause?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a lady gaga?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who is wearing different outfits while dancing and singing?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a narrator tell whats wrong with?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who tells whats wrong with a movie?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who gaga applause video?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who preforms on stage?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who trys to be artistic?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"who gaga music video?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"applause\"\n  },\n  {\n    \"question\": \"what withe a female singer?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who sings in a music video?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who did music video withe?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what does applause lady gaga?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"when does a woman preform?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does lady gaga?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"applause\"\n  },\n  {\n    \"question\": \"what does a lady gaga performance of?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"applause\"\n  },\n  {\n    \"question\": \"what is lady gaga doing?\",\n    \"video_name\": \"video9827\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is scenes of people doing?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is pictures of celebrities doing?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is paris hilton has a pet on her shoulder and poker champ dan bilzerian doing?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are celebrities doing?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is assorted people are shown doing?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"cuddle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a man carrying?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"who shows celebrities and their pets?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what did paris hilton have a dog on?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"shoulder\"\n  },\n  {\n    \"question\": \"who is cuddling puppies?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pictures with animals?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"who is carrying a goat?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a baby goat?\",\n    \"video_name\": \"video9828\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where did a video montage on the subject of gun violence?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"america\"\n  },\n  {\n    \"question\": \"what are some guys doing?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a still picture of people doing?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is calling the people to action?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are some guys standing together in?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does comments being displayed s pragmatism?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"hitler\"\n  },\n  {\n    \"question\": \"what is about racial discrimination?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone calling the people to?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"action\"\n  },\n  {\n    \"question\": \"what is the video about?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"discrimination\"\n  },\n  {\n    \"question\": \"what is being depicted?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"racism\"\n  },\n  {\n    \"question\": \"what is pictured?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"crime\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what is shown in about the ferguson missouri murder?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"quote\"\n  },\n  {\n    \"question\": \"who talks about how hitler is loved from his results?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"houser\"\n  },\n  {\n    \"question\": \"what does comments being displayed that promote hitler s?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"pragmatism\"\n  },\n  {\n    \"question\": \"what montage on the subject of gun violence in america?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what compares about the ferguson missouri murder to jews?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"quote\"\n  },\n  {\n    \"question\": \"where are some guys standing together?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what did a video montage on the subject of gun violence in?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"america\"\n  },\n  {\n    \"question\": \"what shows comments from an online website?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is some men doing?\",\n    \"video_name\": \"video9829\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is there is a man in a dark blue swim suit slowly doing?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a man in a swimming pool doing?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a swimmer doing?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man in a black bathing suit doing?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a male doing?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what was some people doing?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a woman in doing?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is here the swimmer doing?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is demonstrating a method in which only the legs are used?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"swimmer\"\n  },\n  {\n    \"question\": \"who does a series of exercises in a large outdoor swimming pool?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"swimmer\"\n  },\n  {\n    \"question\": \"what is a man in a black bathing suit swimming in?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what looks refreshing a male is swimming in the pool?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is swimming in the water pool?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"swimmer\"\n  },\n  {\n    \"question\": \"what does a man in trunks swim slowly in?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what does the water look refreshing is swimming in the pool?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what does the water look refreshing a male is swimming in?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who is swimming?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is swimming slowly across a pool on his stomach?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman in swimming suit plunge into in the swimming pool?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what looks like the tranquility of swimming?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a swimmer demonstrating in which only the legs are used?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"method\"\n  },\n  {\n    \"question\": \"what do clear water what kind of photographer not cover?\",\n    \"video_name\": \"video9830\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a man kayaking on?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what did guy riding kayak in?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"who is kayaking on a river?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what kayak in river?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who kayaking through nature?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are a group of people on?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"who paddles in a yellow kayak?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a group of people kayak in?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"jungle\"\n  },\n  {\n    \"question\": \"what does a person kayak through?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"nature\"\n  },\n  {\n    \"question\": \"what did a man and some families kayak down a river in?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"jungle\"\n  },\n  {\n    \"question\": \"what did a man and some families kayak down in the jungle?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what are a group of people swimming in a boat is walking on the tree?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what are a group of people swimming in a monkey is walking on the tree?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what are a group of people swimming in a boat a monkey is walking on?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"who is on a boat riding down stream?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who kayaking on a river and a monkey in a tree?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what was in the tree?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is video of a man doing?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"row\"\n  },\n  {\n    \"question\": \"what is persons doing?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"explore\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are people exploring?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"jungle\"\n  },\n  {\n    \"question\": \"what was the monkey in?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9831\",\n    \"answer\": \"kayak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay from a game doing?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is ridden down the road in a video game?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is someone showing?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing a race game?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is riding a bicycle?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing computer graphics?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what do scene from a racing theme?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what player rides a motorcycle?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what a video game character rides around on?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a bicycle ridden down in a video game?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what did a computer generate person is riding in a computer game?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"who rides a motorcycle in a video game?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who did a computer generate is riding a motorbike in a computer game?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what generated person is riding a motorbike in a computer game?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what did video game play of a violent game where a man is being chase by police on?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what play footage of grand theft auto?\",\n    \"video_name\": \"video9832\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does the bald man with the suit tell to translate to the other man that the medicine has to stay in united states?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"hank\"\n  },\n  {\n    \"question\": \"what are group of people in?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"medication\"\n  },\n  {\n    \"question\": \"what find best?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"prescription\"\n  },\n  {\n    \"question\": \"who say something to other person?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man holding bottles of?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"medication\"\n  },\n  {\n    \"question\": \"what are all persons talking each other in?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is speaking about medicines and a local hospital?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is translating instructions from one man to another man in a different language?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining how prescription medications should be handled?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"who hanks offering drugs to police offers?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"tom\"\n  },\n  {\n    \"question\": \"what explains requirements for transporting medicines?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"security\"\n  },\n  {\n    \"question\": \"who carries a 4 small tube size bottle?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding bottles of medication?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are in the room?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with checks shirt doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is bald guy in suit and tie doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is group of people are in the room and doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is tom hanks doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"offer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man carries a 4 small tube size bottle and doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man in a flannel shirt doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is an authoritative figure doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man speaking to another man inside of a room with people doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is airport security figure explains requirements for doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"transport\"\n  },\n  {\n    \"question\": \"what is a man in a business suit doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is guy in check shirt doing?\",\n    \"video_name\": \"video9833\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what do people use like tv that s new to them?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"technology\"\n  },\n  {\n    \"question\": \"what do black and white television clips display across?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are a group of people doing on a stage?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"ballet\"\n  },\n  {\n    \"question\": \"what is a black and white old timey video doing?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a suit man doing?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a black and white commercial doing?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a black and white description of the electronic age doing?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what are a black and white film from the past many people doing?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"engage\"\n  },\n  {\n    \"question\": \"what is the old man doing?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is new york time doing?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an old black and white movie scene doing?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many men stand in suits in black and white clips?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who narrates a history of developments in electronics such as tv in the 20th century?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about the invention of television?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking while standing to a man sitting near to him?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are a group of people doing ballet?\",\n    \"video_name\": \"video9834\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"how many girs are sitting at a desk looking at a laptop one girl has a large yellow stuffed animal?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is reading from an apple laptop while laying on a pikachu pillow?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two girs sitting at looking at a laptop one girl has a large yellow stuffed animal?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what have a group of person a created?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are two girls watching some movie in?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what are a group of person updating?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are two girls watching in the computer?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are two ladies sitting at looking at a laptop together?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what are two women sitting at talking to two other people?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what are two groups of people watching?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what are a women and a man sitting in?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is about a ghost movie?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what are two women sitting at together looking at a laptop?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"how many girls are talking by sitting in the chairs?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are watching some movie in the computer?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are sitting at a desk talking to two other people?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many ladies are sitting at a desk looking at a laptop together?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are sitting at a desk together looking at a laptop?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two groups of people takling about?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what do two girls for run bitch run discuss current events?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what are two women in a room doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are a group of person have a created a video blog and doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"update\"\n  },\n  {\n    \"question\": \"what is a couple of young girls doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two woman doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two groups of people doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are a women and a man doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is two different sets of people doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what are the two girls doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two ladies doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two girs doing?\",\n    \"video_name\": \"video9835\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"who is showing how to make hopping john with black beans?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who talks about black eyed peas?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman stirring?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man making food in?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is making food?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a woman demonstrate?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man making in kitchen?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is stirring food?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who demonstrates some cooked food?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making food in kitchen?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing food with black eyed peas?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making a pot of hopping john?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who had a pot full of beans?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a woman preparing with black eyed peas?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is woman preparing?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is soup being stirred with beans and rice in?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is being stirred with beans and rice in someone?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"who prepares black eyed peas?\",\n    \"video_name\": \"video9836\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is running faster?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a man telling about?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays a violent computer game?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is telling about someone?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shooter game featured by gamer for instuctions?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shoots the gun at the man in the video game?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do streaming of a violent first person shooter?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a video game of shooting?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is going through buildings with a gun in hand?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a video game which is firing games?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does the person shoot at the man in the video game?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who talks as he plays a violent computer game?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to kill his enemies in the online game?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing game shouting the soliders?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a first person shooter game?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is playing a first person shooter game?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"gamer\"\n  },\n  {\n    \"question\": \"who is playing game having gun?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing shouting the soliders?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is playing a first person video game?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man playing a first person shooter then kill?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a person playing having gun?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what does a man playing a first person shooter dodge?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a screen doing?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is it is a video game which doing?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man off screen speaks while doing?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a gamer doing?\",\n    \"video_name\": \"video9837\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are pokemon doing?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what dance on top of barrels?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who move around an animated movie?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"who are dancing?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are dancing together?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what characters dance?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do characters dance together in?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what some cartoon characters?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do some pokemon?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is pokemon doing?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are pokemon dancing in?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who are dancing in the show?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"how many pokemon are dancing together?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are dancing on barrels?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what are two pokemon doing?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who stand on top of barrels?\",\n    \"video_name\": \"video9838\",\n    \"answer\": \"pokemon\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is an animated horse in?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"barn\"\n  },\n  {\n    \"question\": \"what is in a barn?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are animated horses presented in?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"barn\"\n  },\n  {\n    \"question\": \"what are animated horses accompanied by?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are several animated horses standing around in?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"barn\"\n  },\n  {\n    \"question\": \"when is a cartoon horse shown at its childhood stage?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"adulthood\"\n  },\n  {\n    \"question\": \"what are standing in some buildings?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do a brown horse standing inside house compound displaying on screen?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"who asks for comments?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"maker\"\n  },\n  {\n    \"question\": \"what does a brown horse standing in different positions with the words adult showing on the horse the horse also have?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what stands in snow and also inside barn with farm in the background?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"pony\"\n  },\n  {\n    \"question\": \"what is shown at its childhood stage then at adulthood?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what plays while a brown horse can be seen inside of a barn with wooden floors?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what can be seen inside of a barn with wooden floors?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does music play in?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what generated images of a horse are played while music plays in the background?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what stands near the fence and in the barn?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are some cartoon horses doing?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what generated horses are shown in a barn and out side of it they mostly tan or brown in color with white splotches?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is there is one brown colour animation horse doing?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are several animated horses doing?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is there is a horse doing?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a brown horse doing?\",\n    \"video_name\": \"video9839\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who acts like a child in front of a green screen?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is telling about something?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking in a nightclub?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man shouting about?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"who shouting in a ground?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who was wearing sunglasses?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wearing a wig?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who yells towards a camera?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shouting about a drink?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in bad wig yell at while displaying a can?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who does a man act like in front of a green screen?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"nightclub\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"wig\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what does a man yell towards?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who is yelling?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a blonde wig energetically discusses molly while doing?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man in bad wig yells at the camera while doing?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a strange doing?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what was the man doing?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do a boy shout in?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a man with blonde hair and black sunglasses doing?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is a person telling about?\",\n    \"video_name\": \"video9840\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who announces a track meet from the olympics?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shows the contestants who are participating in a track event?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"overlay\"\n  },\n  {\n    \"question\": \"what is shown with athletes names with spectators on the auditorium?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what does the men s are displayed?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"meter\"\n  },\n  {\n    \"question\": \"what are the players waiting on?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what do the players get ready for?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"running\"\n  },\n  {\n    \"question\": \"what are on the line?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are group of people on?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"who is talking about the order of runners on a track?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many meter results does the men s are displayed?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"800\"\n  },\n  {\n    \"question\": \"what is a man talking about the order of runners on?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what does a man announce meet from the olympics?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a score board shown with athletes names with spectators on?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"auditorium\"\n  },\n  {\n    \"question\": \"what does the final standings for the men s?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"footrace\"\n  },\n  {\n    \"question\": \"what do track and field athletes stand on as the men s 800 meter results are displayed?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what has a track and field with many athletes lined up at stat of race?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"olympic\"\n  },\n  {\n    \"question\": \"what is on a long view of race ground on the screen different players names and doing?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"correspond\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is athlete doing?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are the players doing?\",\n    \"video_name\": \"video9841\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays a video game?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what streams a person playing game?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing a game?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fighting in a video game?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who destroys his enemies?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a man fighting in minecraft?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"enemy\"\n  },\n  {\n    \"question\": \"what is a man fighting a large enemy in?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is a man playing where he fights an enemy?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is fighting a large enemy in minecraft?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a video game where he fights an enemy?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who game streams playing game?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a kid play?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what game streams a person playing?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what seemed childish?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is playing a video game?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who minecraft while live streaming?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is game streams himself doing?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9842\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is demonstrating an experiment with a bottle?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating how an invention of his works?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing an experiment with some drink?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man funneling liquid from to a bottle?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"what did not work?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a man performing?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what does a person drain?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"who is a tube placed in?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"what is placed in a pitcher?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"tube\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing an experiment?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is performing a science experiment?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drains a bottle?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man place the end of into a pitcher of red liquid?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"what is a man doing an experiment with?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man doing with some drink?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a man demonstrating with a bottle?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"experiment\"\n  },\n  {\n    \"question\": \"what is a man demonstrating an experiment with?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"who is holding a bottle with two hoses in it?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is funneling liquid from a pitcher to a bottle?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man funneling liquid from a pitcher to?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"who places the end of one hose into a pitcher of red liquid?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man place into a pitcher sitting on a table?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"tube\"\n  },\n  {\n    \"question\": \"what is a man holding with two hoses in it?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"who places a tube into a pitcher sitting on a table?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing how to use a device in a jug of juice?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man places a tube into a pitcher doing?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"siphon\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is an asian male doing?\",\n    \"video_name\": \"video9843\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who is recording the city from the terrace?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are some scenes of a village being filmed by?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a very mass landscape shown far off in while an unseen man talks?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"distance\"\n  },\n  {\n    \"question\": \"what are the roof of village homes seen with hills and trees in?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are place and the beauty?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what does a man narrate about?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"firmware\"\n  },\n  {\n    \"question\": \"what do a person show monuments of?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is person recording the city from?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"terrace\"\n  },\n  {\n    \"question\": \"who show monuments of the city?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person recording the landscape from?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"terrace\"\n  },\n  {\n    \"question\": \"what is a seagull standing on top of a chimey pipw on?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is person recording from the terrace?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what is man recording the beautiful city from?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"terrace\"\n  },\n  {\n    \"question\": \"who narrates about firmware?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man recording from the terrace?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"who is recording the landscape from the terrace?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is a seagull doing?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a shot of a roof with a brick chimney doing?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"overlook\"\n  },\n  {\n    \"question\": \"what is a roof of the house with some container and a bird doing?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the narrator talks about doing?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"hop\"\n  },\n  {\n    \"question\": \"who talks about hoping that his fans liked a specific video?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who recites about a monumental site on the background of a mountain?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is standing on top of a chimey pipw on a roof?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"seagull\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"who is recording the beautiful city from the terrace?\",\n    \"video_name\": \"video9844\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showing off?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"microscope\"\n  },\n  {\n    \"question\": \"who is talking about a microscope?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"scientist\"\n  },\n  {\n    \"question\": \"what are the two men filming in?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"what are two men by?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"microscope\"\n  },\n  {\n    \"question\": \"what is a scientist talking about?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"microscope\"\n  },\n  {\n    \"question\": \"what are two men talking about?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"what do scientists use?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"microscope\"\n  },\n  {\n    \"question\": \"what are two persons talking in?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"lab\"\n  },\n  {\n    \"question\": \"what do two men look in?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"microscope\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the scientest talk about?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"microscope\"\n  },\n  {\n    \"question\": \"what are men in a lab discussing?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"microscope\"\n  },\n  {\n    \"question\": \"how many men look in a microscope?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is showing off an electron microscope?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is men are in a lab doing?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are the two men doing?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"how many men are getting ready to examine something under a giant microscope?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a scientist doing?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many men are filming in a lab?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are by a microscope?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many persons are talking in the lab?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"how many men are talking about a device?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many scientists are spaeking with each other?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a couple of guys in lab coats prepare to use?\",\n    \"video_name\": \"video9845\",\n    \"answer\": \"microscope\"\n  },\n  {\n    \"question\": \"what is put up on the screen?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"text\"\n  },\n  {\n    \"question\": \"what are different paints shown on?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is text put up on?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does cement primer duo the product have?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what do various paint across the screen with text accompanying them?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what does the product s are shown in the presentation along with trade mark name?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"importance\"\n  },\n  {\n    \"question\": \"what does the product s importance are shown in along with trade mark name?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what does a commercial for an acrylic wall putty?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"company\"\n  },\n  {\n    \"question\": \"what are the various products for painting walls being shown in?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what plays while different paints are shown on the screen?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are displayed while text is put up on the screen?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what s importance are shown in the presentation along with trade mark name?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what is the various products for doing?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"paint\"\n  },\n  {\n    \"question\": \"what is various paint products slide across the screen with text doing?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"accompany\"\n  },\n  {\n    \"question\": \"what is a various coloring and paint product for wall doing?\",\n    \"video_name\": \"video9846\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what does a wrestler throw his opponent out of?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who does a wrestler throw out of the ring?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"who reports on a wrestling match?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"what do wwe smackdown wrestling?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what are eight men wrestling in?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who is wrestling?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do many wrestler fighting inside?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what do scene from a wwe smackdown wrestling?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"what does one wrestler attempt to throw another out of?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are a group of wrestlers doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is a wwe match doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"occur\"\n  },\n  {\n    \"question\": \"what are eight men doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is several men doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are several wrestlers doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is many wrestler doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is wrestlers doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is occurring where a man is being stomped?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"match\"\n  },\n  {\n    \"question\": \"who attempts to throw another out of the ring?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"how many men are wrestling in a ring?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"eight\"\n  },\n  {\n    \"question\": \"who throws his opponent out of the ring?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what is there are several wrestlers int he doing?\",\n    \"video_name\": \"video9847\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who complains about the sun then buys window coverings?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many old couples are experiencing health problems?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"where do wife and husband enjoy life?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is demonstrating how to use pull down shades?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who enjoy life at home?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"husband\"\n  },\n  {\n    \"question\": \"what does a woman complain about the sun then buys?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is guy and girl doing?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"change\"\n  },\n  {\n    \"question\": \"what are two old couples doing?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"experience\"\n  },\n  {\n    \"question\": \"what is a woman and a man doing?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a woman complain about then buys window coverings?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"sun\"\n  },\n  {\n    \"question\": \"what is an older couple doing?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is living together?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what do wife and husband enjoy life at?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what do wife and husband enjoy at home?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"life\"\n  },\n  {\n    \"question\": \"what needed replacement windows?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what did the house need?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"replacement\"\n  },\n  {\n    \"question\": \"what complain about too much light?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are two old couples experiencing?\",\n    \"video_name\": \"video9848\",\n    \"answer\": \"health\"\n  },\n  {\n    \"question\": \"what does a man break?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"who is starting a fire?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person working with?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who is working with a fire?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man starting?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what a man firing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is a man making with tree limbs?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a person throwing sticks on?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who is building his large waist high fire?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is throwing sticks on a fire?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who explains how to keep a fire burning?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a fire in the woods?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a fire with tree limbs?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is burning?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who breaks dry wood?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts into the camp fire?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who firing a wood pieces?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a fire doing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"burn\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9849\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is being fed through a machince?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"copper\"\n  },\n  {\n    \"question\": \"what is a copper pipe being fed through?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"machince\"\n  },\n  {\n    \"question\": \"what is putting fire on a brown pipe?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is cut by a laser?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"copper\"\n  },\n  {\n    \"question\": \"what is a pipe attached uner a machine that cuts into and at times dissects?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"pipe\"\n  },\n  {\n    \"question\": \"what are pieces of copper pipe sliced off in?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a pipe attached a machine that cuts into and at times dissects the pipe?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"uner\"\n  },\n  {\n    \"question\": \"what does a machine with a laser cut?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"copper\"\n  },\n  {\n    \"question\": \"what is being cut using a machine in a factory?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what did a piece of copper pipe sticking out of a machine being turned and cut off at?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"angle\"\n  },\n  {\n    \"question\": \"what is attached uner a machine that cuts into and at times dissects the pipe?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"pipe\"\n  },\n  {\n    \"question\": \"what does a machine with a heated tip cuts and slice?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"bronze\"\n  },\n  {\n    \"question\": \"what is a laser cutting tool milling?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"copper\"\n  },\n  {\n    \"question\": \"what is trimming a metallic brown pipe in a specific manner automatically?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a piece of copper pipe doing?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what is an exploration of something about the machine doing?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a machine doing?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"trim\"\n  },\n  {\n    \"question\": \"what is a copper pipe cut by?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"laser\"\n  },\n  {\n    \"question\": \"what is a laser doing?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is there is a machine doing?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a demonstration of a copper pipe doing?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a machine that doing?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what cuts off pieces of a copper pipe?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is cutting a pipe in different patterns?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a machine that putting on a brown pipe?\",\n    \"video_name\": \"video9850\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is an anime doing?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"blow\"\n  },\n  {\n    \"question\": \"what is patrick doing?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is spongebob doing?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"blow\"\n  },\n  {\n    \"question\": \"what is spongebob squarepants doing?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"blow\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"patrick\"\n  },\n  {\n    \"question\": \"who screams?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who is blowing bubbles?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what does patrick find funny?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"shape\"\n  },\n  {\n    \"question\": \"what blows some bubbles?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is created out of the water as patrick laughs?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"what is a strange creature created out of as patrick laughs?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what bob blowing bubbles?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"sponge\"\n  },\n  {\n    \"question\": \"what did a scene from the show call?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"sponge\"\n  },\n  {\n    \"question\": \"what does a bubble and patrick laugh squarepants blows?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"sponge\"\n  },\n  {\n    \"question\": \"what squarepants blows bubbles?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what bubbles into a caterpillar shape?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"who finds a caterpillar shape funny?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"patrick\"\n  },\n  {\n    \"question\": \"what is blowing some bubble?\",\n    \"video_name\": \"video9851\",\n    \"answer\": \"anime\"\n  },\n  {\n    \"question\": \"what do two visitors speak about a star hotel dinning room in?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"language\"\n  },\n  {\n    \"question\": \"what do a person in white dress speaking inside kitchen preparing dish walking displaying on screen?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"standing\"\n  },\n  {\n    \"question\": \"what do a person in white dress color standing speaking inside kitchen preparing walking displaying on screen?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who has dropped many glasses and plates all over the floor in a kitchen?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shuffle through piles of broken plates after an earthquake?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"how many visitors speak about a star hotel dinning room in another language?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is walking through and video taping a kitchen that has been completely destroyed?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is walking over a lot of broken white dishes in a large kitchen?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what have all the dishes fallen on causing a huge mess in a kitchen on a cruise ship?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are all the plates on in an industrial kitchen?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what have fallen all over the floor in a kitchen at a restaurant?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what have all the dishes fallen on the floor causing in a kitchen on a cruise ship?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what kitchen workers shuffle through piles of broken plates after?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"earthquake\"\n  },\n  {\n    \"question\": \"what are all cups and some else vessels felldown from the desk and brokens in?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"restarunt\"\n  },\n  {\n    \"question\": \"what look at an restaurants kitchen with plates all over the floor?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"inside\"\n  },\n  {\n    \"question\": \"how many visitors come?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is in a kitchen on a cruise ship all the dishes have fallen on the floor doing?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"cause\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is in a star hotel doing?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"din\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person in white dress color doing?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man and a girl doing?\",\n    \"video_name\": \"video9852\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what climbs up a side of a black cube made of gridded frames around open squares leading to kaleidoscopic gray formations?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a person climbs in a large cubic labyrinth apparently doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a dark figure climbs up a side of a black cube made of gridded frames around open squares doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"what is a person in black doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a scarey scene of someone doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are man and woman doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man is in the room and doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is man in dark room doing?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"who is climbing a stucture indoors the interior of the structure is white?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man in?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a man on?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"who is climbing up the side of a shadowy grid wall?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are man and woman talking about indoors?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a man disappear through?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who is on the church?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are talking about something indoors?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is in the room?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who disappears through a door?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who climbs in a large cubic labyrinth apparently trying to leave there?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who climbs up and out of a dark room through an opening in the wall?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a person climbing indoors the interior of the structure is white?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"stucture\"\n  },\n  {\n    \"question\": \"what does a man trapped inside a cubed grid climb up?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what does a man in dark clothes climb?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"ladder\"\n  },\n  {\n    \"question\": \"what does a man in dark clothes enter?\",\n    \"video_name\": \"video9853\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"who shows a child with deformed skin?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"who does a slideshow show with deformed skin?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is observing a boy s physical condition?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"what did a surgeon perform on a six year old child in order to remove a large mole?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"surgery\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a doctor doing?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"operate\"\n  },\n  {\n    \"question\": \"what is a doctor doing?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"observe\"\n  },\n  {\n    \"question\": \"what does a slideshow show a child with?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"who performed surgery on a six year old child in order to remove a large mole?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"surgeon\"\n  },\n  {\n    \"question\": \"what is a doctor observing a boy s?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"condition\"\n  },\n  {\n    \"question\": \"who is a doctor observing s physical condition?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking about a boys mole?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did video on a boy name?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"condition\"\n  },\n  {\n    \"question\": \"what is someone explaining about?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"disease\"\n  },\n  {\n    \"question\": \"what does a boy have?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"condition\"\n  },\n  {\n    \"question\": \"who does a boy travel to?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who does a man talk about?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who has a medical condition?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking about a boy?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about disease?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who travels to a doctor?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who talks about a kid?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is examined by expert doctors?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is a man talking about?\",\n    \"video_name\": \"video9854\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who tries to teach the child?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"nanny\"\n  },\n  {\n    \"question\": \"who is talking to a child?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are many adults talking to?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does the nanny try to teach?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who does a child argue with?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"nanny\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is misbehaving?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is angry?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who are some grownups talking to?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what are a girl and a woman talking to each other in?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who argues with a nanny?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is disrespectful to the super nanny?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what do a nanny giving to a little girl?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what are some grownups doing?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are many adults doing?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a tv show doing?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"misbehave\"\n  },\n  {\n    \"question\": \"what is guy and girl doing?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a girl and a woman doing?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking at the table then the girl is being a real brat in the kitchen?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does new rules s is expected to follow super nanny?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a group of girl in a kitchen doing?\",\n    \"video_name\": \"video9855\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon girl singing with?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who gives a star a kiss?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who kisses the star?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who kissing a star?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl kiss?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what a girl kisses?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"floating\"\n  },\n  {\n    \"question\": \"what the girl kisses?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who kisses a floating star?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sing the song?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing with a star?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does window s comes to a little girl?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what does window s a star is flying through?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a girl looking at as a woman sings?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what does video cartoon girl give kiss to twinkle?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what s a star is flying through the air?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what s a star comes to a little girl?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what does video cartoon girl give to twinkle twinkle little star?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what did an animation for the song twinkle?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"who is looking at a star as a woman sings?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who gives kiss to twinkle twinkle little star?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a young girl sing twinkle twink little star out?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what do the girl sing?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does window s is flying through the air?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a star doing?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is an animated girl doing?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is star doing?\",\n    \"video_name\": \"video9856\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who are fighting while a large group of men are surrounding them watching?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"prison\"\n  },\n  {\n    \"question\": \"how many mans does character put head up another mans butt?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"one\"\n  },\n  {\n    \"question\": \"how many men are in a fight in a prison while others watch?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do other inmates wince in?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"disgust\"\n  },\n  {\n    \"question\": \"who was thought to be the underdog in the fight?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"prisoner\"\n  },\n  {\n    \"question\": \"who puts one mans head up another mans butt?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what do men react to a movie scene depicting?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"prison\"\n  },\n  {\n    \"question\": \"what are fighting against each other outdoors?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"how many men confronts?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who kicked his ass?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who surprised everyone?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"prisoner\"\n  },\n  {\n    \"question\": \"what did the smaller prisoner surprise?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"everyone\"\n  },\n  {\n    \"question\": \"what is there is a orange shirt man doing?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are men in prison doing?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a group of persons doing?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is men react to a movie scene doing?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what is hancock doing?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a guy in an orange shirt doing?\",\n    \"video_name\": \"video9857\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is this video shows a person doing?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is filming a horse in a barn?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is leading a horse in the stable?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is horse doing?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who guides a horse around a track?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"wander\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"who is taking care of a horse?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"trot\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"who is walking along side a horse?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a horse led around?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"barn\"\n  },\n  {\n    \"question\": \"what is a man leading in the stable?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is wandering here and there?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is walking around?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man leading?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a man train?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse trotting through indoors?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"who is leading a horse?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man handling?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is led around a barn?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who trains a horse?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is trotting through dirt indoors?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is being handled by a person?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"mule\"\n  },\n  {\n    \"question\": \"what shows a person walking a horse?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a person taking care of?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is a mule being handled by?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is handling a horse?\",\n    \"video_name\": \"video9858\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing on stage?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is doing interpretive dancing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing around on a television show?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a dance with indian people displayed without?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"explanation\"\n  },\n  {\n    \"question\": \"who interpretive dance?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man performing interpretive?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"when is a guy dancing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a man performing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"dancing\"\n  },\n  {\n    \"question\": \"who preforms?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is acting?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is performing on a stage?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"video9859\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who dressed in black standing outside at a table mixing a bowl of hamburger with blue gloves to make meatloaf?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the black shirt dress chef is mixing hygienically by two hands with gloves is shown for the preparation of vegetarian food mushroom?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"cookery\"\n  },\n  {\n    \"question\": \"who prepares a meat loaf recipe in a large white bowl?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands outside washes something in the white bowl on the table?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did the black shirt dress is mixing hygienically by two hands with gloves a cookery program is shown for the preparation of vegetarian food mushroom?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what dressed chef is mixing hygienically by two hands with gloves a cookery program is shown for the preparation of vegetarian food mushroom?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"who stands outside preparing a meal in a white bowl?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man with a hat mixing up?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is the black dress chef with gloves in both hands mixing in a white bowl in a cookery program?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what did a man in a dark colored shirt mixing grind in a white bowl with his hands?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"beef\"\n  },\n  {\n    \"question\": \"what did a man dress in black standing outside at a table mixing a bowl of with blue gloves to make meatloaf?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"hamburger\"\n  },\n  {\n    \"question\": \"what did a man dress in black standing outside at a table mixing a bowl of hamburger with blue gloves to make?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"meatloaf\"\n  },\n  {\n    \"question\": \"who is speaking about a meatloaf dish that he is creating?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an elderly man with a baseball cap mixing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"meatloaf\"\n  },\n  {\n    \"question\": \"what is a man in a dark blue shirt and baseball hat making?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"meatloaf\"\n  },\n  {\n    \"question\": \"what is a older man in a dark hat and t-shirt doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man dressed in black standing outside at a table doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is an elderly man with a baseball cap doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person stands outside doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is the focus is on a older guy doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is in a cookery program the black dress chef with gloves in both hands doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man with a hat doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is in a black outfit and cap mixes meatloaf ingredients with blue-gloved hands on a white table outside a tan house with doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a dark colored shirt doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a older guy with a black hatblack t shirt is outdoors with a white table and blue gloves on he doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a cookery program is shown for the preparation of vegetarian food mushroom the black shirt dressed chef doing?\",\n    \"video_name\": \"video9860\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"how many men shake hands?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a man play with himself practicing his pitch?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is being filmed how boring?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a boy hitting on table tennis board?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do a boy in black dress playing with ball?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are two people playing just casually?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"who hits the ball over the table?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates a ping pong trick shot?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are shaking hands?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the man hold?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"paddle\"\n  },\n  {\n    \"question\": \"when did two men finish table tennis?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"how many people are playing table tennis just casually?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did two men finish for the day?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"who holds the paddle?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing table tennis?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two young men demonstrate shots?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"what did a table tennis game one hit?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who plays some table tennis with himself practicing his pitch?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy in black dress playing table tennis game with?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who hits a ping pong ball with a ping pong racket?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays over some men preparing to play table tennis?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a boy in black dress doing?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two man doing?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is a man plays some table tennis with himself doing?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is pongfinity one man doing?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"what is strong music plays over some men doing?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are two players doing?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"finish\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"how many young men demonstrate ping pong trick shots?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is shown playing the sport of ping pong for a brief sequence?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many men finished table tennis for the day?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is bouncing ping pong balls on a table?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many players are finishing table tennis game and leaves?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is hitting a ball on table tennis board?\",\n    \"video_name\": \"video9861\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is hillary clinton standing at?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"podium\"\n  },\n  {\n    \"question\": \"who speach with lowa?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what does hillary clinton address at in iowa?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what does hillary clinton talk to at a political rally?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is hilary clinton talking in iowa at?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"rally\"\n  },\n  {\n    \"question\": \"what is catapulting a ball up in the air?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who tries to convince voters in iowa?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who is standing at a podium?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who does clinton try to convince voters in?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"iowa\"\n  },\n  {\n    \"question\": \"who appears before an audience?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what does hilary clinton appear before?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"who tours the country?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what does hilary clinton tour?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"country\"\n  },\n  {\n    \"question\": \"what do clinton speach with?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"lowa\"\n  },\n  {\n    \"question\": \"who addresses the crowd at in iowa?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what do hilary clinton speaking to?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is the news report?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"rally\"\n  },\n  {\n    \"question\": \"what clinton speaking to an audience?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"hilary\"\n  },\n  {\n    \"question\": \"what is hillary clinton doing?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"addres\"\n  },\n  {\n    \"question\": \"what is hillary clinton doing?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is hilary clinton talking in at a rally?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"iowa\"\n  },\n  {\n    \"question\": \"what is a tiny machine doing?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"catapult\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a rally?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what do hillary clinton addressing?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what clinton addressing a crowd?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"hillary\"\n  },\n  {\n    \"question\": \"who does cnn talks about hillary clinton s run for?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"president\"\n  },\n  {\n    \"question\": \"what anchor reporting a story about a hilary clinton?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who talks to a crowd at a political rally?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who is talking in iowa at a rally?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what does a woman talks about hilary clinton s?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is hilary clinton doing?\",\n    \"video_name\": \"video9862\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is small ring type displayed on?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what has showing something new machine?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"pres\"\n  },\n  {\n    \"question\": \"what sends out light?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is running making bright flashes?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is displayed on the screen?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is displayed performing an intricate operation?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"drill\"\n  },\n  {\n    \"question\": \"what sparks?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is working to build something?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"machinery\"\n  },\n  {\n    \"question\": \"what displays an electrical industrial machine?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"pres\"\n  },\n  {\n    \"question\": \"what has the press tv showing?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is beginning to spark?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"machinery\"\n  },\n  {\n    \"question\": \"what appears to be welding?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is the press tv has doing?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a gadget is placed and people doing?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"observe\"\n  },\n  {\n    \"question\": \"what is an automatic metal doing?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is machinery doing?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is special industrial drill is displayed doing?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is there is a steel machine that has doing?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what is a round key doing?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who is showing how the new machine works for television?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is there is a keychain with the doing?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"begin\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what did an automatic metal cutting machine cut a piece of into a key chain?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what is placed?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"gadget\"\n  },\n  {\n    \"question\": \"what does a complicated machine send out?\",\n    \"video_name\": \"video9863\",\n    \"answer\": \"light\"\n  },\n  {\n    \"question\": \"what is there is a duck doing?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is talking about the duck cartoon?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who discusses a cartoon that he had drawn when he was working?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"animator\"\n  },\n  {\n    \"question\": \"what does a animator discuss that he had drawn when he was working?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what overlaps?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"brief\"\n  },\n  {\n    \"question\": \"what is there is duck doing?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a daffy duck cartoon image split in?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"middle\"\n  },\n  {\n    \"question\": \"where is a daffy duck cartoon image split?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"middle\"\n  },\n  {\n    \"question\": \"what is an animated psychological test doing?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what was a animator discusses a cartoon that he had drawn when he doing?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"spark\"\n  },\n  {\n    \"question\": \"what is bunch of cartoon characters doing?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9864\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what talks about the car?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a man sit inside while a women describes its operation?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man demonstrating the center console of?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who adjusts different parts of a car?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits in a car?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is starting a red color car?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a young man adjust different parts of?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is showing all functions?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a young man sit in?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a womans voice talk about?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who explores said car?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man explore said?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a female voice explaning all the details and perks about?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who explains the features on a car while a man explores said car?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman narrates and a man demonstrate various features of?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man is seared behind the wheels of a car doing?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man in black t-shirt doing?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is there is a man in black doing?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in blue jean doing?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is person in black t shirt doing?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"who is sitting in a car touching various parts of it while a womans voice talks about the car?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows off different features of a red hatchback while woman narrates?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman explain the features on while a man explores said car?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man sitting in touching various parts of it while a womans voice talks about the car?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is seared behind the wheels of a car demonstrating it s features?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits inside a car while a women describes its operation?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is explaning all the details and perks about a car?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is starting the engine of his red vehicle?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating the center console of a vehicle?\",\n    \"video_name\": \"video9865\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what vegetarian to cut place very sweet and delirious item?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a women cleaning along with the men?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"how many persons are cleanong a fish?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two cooks preparing at a market?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what do the fish stall the fish cutter cutting?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are two cooks preparing fish at?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"what are two people cutting using a knife?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what are two people cutting meat using?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are two men working in?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what are two men cutting?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what are two persons cleanong?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"how many men are cutting the meat?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a man and a woman keeping everything in in a shop?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"order\"\n  },\n  {\n    \"question\": \"what are a man and a woman keeping everything in order in?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are two cooks doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is this is a fish market the people doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"sell\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what are a couple in smocks doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"how many chefs prepare a bunch of fish siting in ice?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cooks are preparing fish at a market?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are working in meat shop?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are cutting meat using a knife?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two chefs prepare a bunch of siting in ice?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"how many people there are different kind of fishes?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a man and woman at an asian market prepping to be sold?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are some people selling at an outdoor market?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what are a man and a woman keeping in order in a shop?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"everything\"\n  },\n  {\n    \"question\": \"what are more fishes kept in?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what are fishes doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the shop doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is men and women doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what are two persons doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"cleanong\"\n  },\n  {\n    \"question\": \"what is the fish stall the fish cutter doing?\",\n    \"video_name\": \"video9866\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a guy with glasses doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is you tube video of a guy doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a visibly excited car analyst and critic explains how incredible his doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a cars doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is guy in dark glasses doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man with doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"cool\"\n  },\n  {\n    \"question\": \"what is a man with doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"cool\"\n  },\n  {\n    \"question\": \"what is a person with black t shirt doing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who glasses talking?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"who is happy because he bought the lamborghini gallardo?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did a person buy?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"lamborghini\"\n  },\n  {\n    \"question\": \"what does guy in dark glass showing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is showing off his brand new lamborghini car?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at some expensive cars?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is wearing black color dress?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a cars moving on road and boy in black color dress wearing speaking displaying on screen?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what is a man with cooling glass talking about?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who stands near an orange sports car while another above him drives around?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a car which is purple and orange?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person with black t shirt wearing spectacles describing about?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who do variety of the attractive video promoation done by?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"who glasses showing a car?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"who bought the lamborghini gallardo?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man wearing?\",\n    \"video_name\": \"video9867\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"audition\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a child singing on?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a young boy audition for?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a young boy sing?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings a song in front of judges during a singing competition?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing in front of an audience?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings on stage in front of audience?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who singing to a panel of judges?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is performing a song on the voice?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings during a televised singing competition?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is auditioning on the show the voice?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing while judges and an audience watch?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did little boy singing let it go on?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what does a little boy sing?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a boy performing a song on?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who singing to judges?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who auditions for the voice?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings a song?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing on the voice?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who do judges listen to?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"what let it go on the voice?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what is a boy performing on the voice?\",\n    \"video_name\": \"video9868\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are a man and woman in business dress doing?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"check\"\n  },\n  {\n    \"question\": \"what is lady doing?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is looking to a mirror?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who does a woman view in a mirror?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"what is a woman checking?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman looking in?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what dresses up as old people?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"how many people are talking?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is looking in a mirror?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a lady looking to?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what are a man and woman in business dress looking into?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"how many people are looking at themselves in a mirror on a television show?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is looking in the mirror and laughs?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is looking in the mirror?\",\n    \"video_name\": \"video9869\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is laughing while a cat plays?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a baby play in while the cat looks on?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"seat\"\n  },\n  {\n    \"question\": \"what is playing with a baby?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what plays with a child?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is playing with a cat?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is baby playing with?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is laughing in a bed?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is on the rocking chair laughing?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what plays with a babies toy?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"where does a baby play while the cat looks on?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"seat\"\n  },\n  {\n    \"question\": \"who is a cat playing with while the baby is on the rocking chair laughing?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is playing with a baby while the baby is on the rocking chair laughing?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is an animal playing with?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are a cat and baby doing?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is baby doing?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kid laughs while cat doing?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is playing with toys near a baby?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is a cat playing with?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who laughs while cat is playing?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a baby laughing in?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what looks on?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is being carried?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who does a car play with?\",\n    \"video_name\": \"video9870\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is recording himself near the house outdoors?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man with gray hat walking near?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what did bearded guy in gray tshirt talking to?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man in t-shirt doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a man with cap doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man films himself doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is man with grey hat doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"grow\"\n  },\n  {\n    \"question\": \"what is a man in a beanie and a grey hoodie doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is bearded guy in grey tshirt doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is walking on a sidewalk around his house?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who walks with some white dogs?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking through his house?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy walking on a sidewalk around?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a man explaining the things in?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a man walking through?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"who is explaining the things in his house?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who inside looks concerned?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in sweatshirt walk along side of brick home through yard and greets wife in?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"robe\"\n  },\n  {\n    \"question\": \"who films himself talking about how he just got a bare essentials?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy walking on around his house?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"who is walking through his yard?\",\n    \"video_name\": \"video9871\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a first person shooter game?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who guitar solo?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays a very nice song on his acoustic guitar?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who suts?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing beautifully?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does man play?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what do a person playing guitar?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"solo\"\n  },\n  {\n    \"question\": \"who does a person play?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays his guitar?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a person playing gee?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"tar\"\n  },\n  {\n    \"question\": \"who is playing guitar beautifully?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making jokes?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who plays a guitar acoustically?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays an acoustic guitar?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays acoustic guitar?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gee tar?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing an acoustic guitar?\",\n    \"video_name\": \"video9872\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does a man make?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"homemade\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what is this is a doing?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"garnish\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man garnishing?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is making pizza?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who prepares a pizza with cheese and peppers?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting red and green peppers on a pizza?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting red and green peppers on?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"who shows how to prepare pizza?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cooking something?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what puts peppers and tomato on their food?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"who makes a homemade pizza?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does somebody put peppers and tomato on?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does somebody put on their food?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is being made with toppings?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"who is garnishing a dish?\",\n    \"video_name\": \"video9873\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two people playing against each other then two different people are playing tennis?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do tennis playing play on a blue tennis court while many people watch?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"how many people are playing tennis against each other then two different people are playing tennis?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men play tennis in the us open in front of a huge crowd?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are playing a professional tennis game on a blue court?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a yellow and black color dress players playing inside stadium tennis game audience watching displaying on screen?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do a yellow and black color dress players playing game inside stadium tennis game audience watching displaying on?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who play the tennis very energitic in the tennis ground?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what play tennis on a blue tennis court while many people watch?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"what matches both showing the ball being hit out of bounds?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what match on a blue surface with a green border?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are a couple of men doing?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what match on a blue court between two men with one man in red and one man in a lime green shirt?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are two people hitting back and forth on a blue court?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what does a tennis player wearing yellow and black then return by jumping up?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what matches between several different tennis players?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what does a tennis player wearing yellow and black then return by twisting his legs behind the baseline?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a yellow and black color dress players doing?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is tennis doing?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many people are hitting a tennis ball back and forth on a blue court?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did people gather in the stadium to watch?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do the men in shorts play as the people watch?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what do two men play in the us open in front of a huge crowd?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what does two different tennis match both showing being hit out of bounds?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who do the tennis players play very energitic in the tennis ground?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what are some people playing outside on a court?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"what did people gather in to watch tennis game?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what is two different tennis matches both doing?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a tennis player doing?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a green jersey man doing?\",\n    \"video_name\": \"video9874\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a middle aged man with glasses doing?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is there is someone doing?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are movie scene from a tamil movie two mens doing?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are five men doing?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are the all people doing?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"wait\"\n  },\n  {\n    \"question\": \"what were a group of men doing?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an old man and boy doing?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are three boys doing?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a lot of men doing?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a middle aged man with glasses looking at?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many men stand outside of a cathedral?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what were a group of men sitting in?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who looks around for a music vid?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the men slowly move around as the music plays?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"how many boys are standing?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is going for an album song?\",\n    \"video_name\": \"video9875\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"who falls down?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"what is a man playing in?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what does a baseball player play in?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who plays in the field?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"who is playing in th sand?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does two guys seem to be enjoying in?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where does a baseball player play?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who does a man get helped up by?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets helped up by another man?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who laid out on the baseball field?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of men playing on?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who are describing an event that took place during a game?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"baseball\"\n  },\n  {\n    \"question\": \"how many guys seems to be enjoying in sports field?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"where does two guys seem to be enjoying?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a group of young men having at a baseball stadium?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"where are a group of men playing?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a group of guys doing?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who falls over?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two guys seems to be doing?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are baseball players doing?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man on the ground doing?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video9876\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is playing football?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man talk about?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"college\"\n  },\n  {\n    \"question\": \"what does a quarterback throw?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what are some teams playing?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does a football player catch?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who catches a big play?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who talks about a football player?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what stats given for a college player?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who talks about college sports?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a video evaluating jameis?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"winston\"\n  },\n  {\n    \"question\": \"who throws passes to receivers?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"quarterback\"\n  },\n  {\n    \"question\": \"what does a football player launch a pass down?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a man on espn talk over?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who does a video showing sports center jameis?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"winston\"\n  },\n  {\n    \"question\": \"who launches a pass down the field?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who does an edition of sports center that is highlighting jameis?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"winston\"\n  },\n  {\n    \"question\": \"who throws a long pass?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"quarterback\"\n  },\n  {\n    \"question\": \"what does a football player launch down the field?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an edition of sports center that doing?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"highlight\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some teams doing?\",\n    \"video_name\": \"video9877\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did people scare by ghosts from?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is haunted by spirits?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what are sitting in hall?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"peole\"\n  },\n  {\n    \"question\": \"who see the ghost?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"daughter\"\n  },\n  {\n    \"question\": \"what do father and daughter see?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"ghost\"\n  },\n  {\n    \"question\": \"what are some peole sitting in?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"hall\"\n  },\n  {\n    \"question\": \"who is looking for things using a flashlight?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is horror clip with a masked person doing?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are some peole doing?\",\n    \"video_name\": \"video9878\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who smiles at a kid singing on a competition show?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"judge\"\n  },\n  {\n    \"question\": \"who is singing a bee gees song on the television show the voice kids?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what did the young performer impress?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does a young boy sing on?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"when is a little child singing?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who impressed his audience?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"performer\"\n  },\n  {\n    \"question\": \"who sings on a show?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a little girl singing on?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who sings for judges?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little kid singing on?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who sing a pop song for judges?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what do a child singing on the television show?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who sings on the show the voice?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is performing on the voice kids?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a little girls sing on the show?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is singing on the voice?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings for judges on a tv show?\",\n    \"video_name\": \"video9879\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"how many men are laughing?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who slaps another man?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a short clip showcasing asian?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who gets hit?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"student\"\n  },\n  {\n    \"question\": \"what are people in?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"who is a man hitting?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is hitting a boy?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man slap?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hits his students?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what are asian children in uniforms attending?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"how many asian men are looking at girls?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is being punished by his teachers?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are two asian men doing?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is the life of an asian student doing?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are asian children in uniforms doing?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"attend\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a person smacks a person in the head while doing?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who smacks a person in the head while speaking chinese?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many asian men are telling jokes?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a clip from a movie doing?\",\n    \"video_name\": \"video9880\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is cooking a meal in a kitchen?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirred the food in a pan?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the woman stir in a pan?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who cooks food in a skillet?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cooks some food on the stovetop?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who cooks various chopped vegetables in a frying pan?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cooking a meal in?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman stirs a skillet full of doing?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is in a kitchen a woman doing?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who stirs a skillet full of cooking veggies?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cooking in a kitchen?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"who is making vegetables in the kitchen?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirs food in a pan?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"receipe\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is making a receipe?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking a vegetable dish?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman stir in a pan?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is preparing in a kitchen?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman preparing in?\",\n    \"video_name\": \"video9881\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does one lady lead?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what is a news reader reading?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is reading the news?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"reader\"\n  },\n  {\n    \"question\": \"who leads the discussion?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a young man nod in?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"agreement\"\n  },\n  {\n    \"question\": \"who says a few words?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with two people?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are three people on the sky news network doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a women in black dress doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a girl speaking and still images on screen picture doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is black haired woman doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three women doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a news reader doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is woman in the middle of two others doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two girls and a man doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a news program has three people in panel doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two ladies and a boy was in the video doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman in black doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a short hair woman doing?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what was two ladies and a boy in discussing about the unemployment?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many different people speak about youth unemployment on the news channel?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is going on in the tv channel?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"what is a women in black dress explaining about?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who nods in agreement?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did two women and a man discuss from three different screens place side by over identifying information and issue description?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what did two women and a man discuss from three different screens place by side over identifying information and issue description?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what do three different people speak about on the news channel?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"unemployment\"\n  },\n  {\n    \"question\": \"what do a girl speaking and still images on screen picture displaying on?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is asking question to some people?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"reader\"\n  },\n  {\n    \"question\": \"what has three people in panel talking about youth employment in the uk?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"program\"\n  },\n  {\n    \"question\": \"what is a news reader asking to some people?\",\n    \"video_name\": \"video9882\",\n    \"answer\": \"question\"\n  },\n  {\n    \"question\": \"what is game character doing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video game character doing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are 3d cartoon characters doing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a cartoon bull on fire with other characters doing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is 3d animated warriors doing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a clip taken from a video game doing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"sample\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are dancing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does one character invite others to share in a video game?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did a dragon make in a game?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what did a dragon make something fun in?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who made something fun in a game?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"dragon\"\n  },\n  {\n    \"question\": \"who invites others to share his food in a video game?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a video game character cooks a meal and look for to sample it?\",\n    \"video_name\": \"video9883\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is two baton pass doing?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what does the person with 406 win?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is athlete doing?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are several men doing?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are the players running in?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what is going on?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what are african runners doing?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a group of people running a race on as people cheer?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are a group of people running on a track as people cheer?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a group of men racing down a track in?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what are a group of men racing down in competition?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what a group of young black men race down?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what pass racing contestants neck and neck to the finish line?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"baton\"\n  },\n  {\n    \"question\": \"how many men running track fiercly towards the finish line?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many baton pass racing contestants neck and neck to the finish line?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many black men run across a finish line in a road race?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"six\"\n  },\n  {\n    \"question\": \"what a group of young athletes race furiously down?\",\n    \"video_name\": \"video9884\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"who is a woman interviewing about a movie?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what is a woman interviewing an actor about?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what do woody allen talking with news reporters about?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is some one talking with one old man and young bay?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what does old guy in glass talking at to the reporters?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"carpet\"\n  },\n  {\n    \"question\": \"who do woody allen talking with about the movie?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is interviewed by the reporter?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"director\"\n  },\n  {\n    \"question\": \"who is the movie director interviewed by?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what allen talking with news reporters about the movie?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"woody\"\n  },\n  {\n    \"question\": \"who is a man with glasses talking to?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is woody allen interviewed on the red carpet at?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"event\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some celebrities doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is old guy in glasses doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old man an boy in black dress doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is a costumer maker being highlighted giving feedback?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what is woody allen doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is director woody allen doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a movie director doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the two men doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with glasses doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"how many different men talk about their relationship with one another?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is very busy with the interview in the media people?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do an old man an boy in black dress sitting speaking?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"how many men are giving answers to media separately?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is being highlighted and the actor giving feedback?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"costumer\"\n  },\n  {\n    \"question\": \"who is talking about director woody allen not being able to cast downey in a movie?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is interviewing an actor about a movie?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who glasses talking at red carpet to the reporters?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what do woody allen speaking to a reporter that cuts to robert downey jr sitting in?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is talking about how expensive press conference would be to cast someone on a movie?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"director\"\n  },\n  {\n    \"question\": \"who is interviewed on the red carpet at an event?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"woody\"\n  },\n  {\n    \"question\": \"what is woody allen doing?\",\n    \"video_name\": \"video9885\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl scared of?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who does a woman watch while reacting?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"trailer\"\n  },\n  {\n    \"question\": \"who reacts to scary movie?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl reacting to?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is watching a movie?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman looking at?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is looking at something?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is scared of a movie?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman watching providing commentary on it?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is reacting to a video?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is reacting to a movie clip?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who watches a movie trailer while reacting?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is watching a movie providing commentary on it?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is watching a trailer for a horror movie?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who s reaction while watching a horror movie?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who s reactions to a trailer are being recorded?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does girl react to?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a woman watches a movie trailer while doing?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a video of a girl doing?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a girl s reaction while doing?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a young lady watching?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a girl watching and doing?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl watching?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what is a young lady doing?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9886\",\n    \"answer\": \"react\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who appears?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"zombie\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person is shown as doing?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game is shown doing?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"capture\"\n  },\n  {\n    \"question\": \"what is a video game with monsters doing?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is plants vs zombies game play doing?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the video game is time doing?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"consume\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do video game review with?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"gameplay\"\n  },\n  {\n    \"question\": \"what is shown capturing squares?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what review with gameplay?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is time consuming?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is shown as playing a video game?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do plants vs zombies game play placing while zombie marches forward?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"who is placing new upgrades on the board?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a video game similar to checkers?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the video game?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"time\"\n  },\n  {\n    \"question\": \"what is a person placing new upgrades on?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9887\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what do band singing i love rock and roll at?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what do band singing i love at a concert?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a band singing i love rock and roll to?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is singing i love rock and roll to a crowd?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band playing in open space with a huge audience?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what is performing in front of a live audience?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what do a band preforming on stage the song i love?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"what is a city doing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is joan jett doing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is playing concert in open space with a huge audience?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what do people play on a stage in front of a large crowd?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what do people play music on in front of a large crowd?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what performs for a large crowd?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who is performing onstage?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"joan\"\n  },\n  {\n    \"question\": \"what is a band giving?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"when does a man sing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a band performing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is giving a live concert?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when are some people performing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is on stage performing?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a band sing i love?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what sing i love rock and roll?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what love rock and roll at a concert?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what is playing at a big concert?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band playing live in?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"arena\"\n  },\n  {\n    \"question\": \"what is playing live in a arena?\",\n    \"video_name\": \"video9888\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what did blue and green fireworks explode over the light spires located at a bend of a reflecting river under a blue sky with pink clouds?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"castle\"\n  },\n  {\n    \"question\": \"what are fireworks shooting over as the disney logo appears?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"castle\"\n  },\n  {\n    \"question\": \"what is seen with fireworks behind it as it sits in a land with a river?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what has fireworks coming out behind it?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what sits in a land with a river?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what has fireworks exploding above it?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what firewalls behind the big house?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what appears?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"what sequense to disney movie featuring castle and fireworks?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"opening\"\n  },\n  {\n    \"question\": \"what did blue and green fireworks explode over the light castle spires located at a bend of a reflecting river under a blue sky with?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what are fireworks doing?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is the disney theme song doing?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is blue and green fireworks explode over the lit castle spires located at a bend of a doing?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"reflect\"\n  },\n  {\n    \"question\": \"what is the disney castle has fireworks doing?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"explode\"\n  },\n  {\n    \"question\": \"what overlays an animated graphic of a castle surrounded by water and forests as the music crescendos the disney logo appears under the castle and www?\",\n    \"video_name\": \"video9889\",\n    \"answer\": \"instrumental\"\n  },\n  {\n    \"question\": \"what do a runway with wildly color clothing and have?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"literature\"\n  },\n  {\n    \"question\": \"what is person in green shirt talking about in the shop?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is person in green shirt talking about something in?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"who describes fabric and textiles that he has designed?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what pictures being panned with a young man in a decorative hat inside out?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is sitting in a room with a hat on?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a person with green hair and oriental dress an young man in strange clothing is sitting and speaking?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is talking with different cloths are placed behind him in the store?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking perfect?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about fashion and garments?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who speaks about designing a large version of a design being a total self expression?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"designer\"\n  },\n  {\n    \"question\": \"what does a man describe that he has designed?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"fabric\"\n  },\n  {\n    \"question\": \"when is woman walking?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is walking on the stage?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person with green hair and oriental dress is show an young man in strange clothing doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what show where model shows some unique dresses and one person wearing a cap talking about something?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"fashion\"\n  },\n  {\n    \"question\": \"what is a fashion show where model shows some unique dresses and one person doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a designer speaks about doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"design\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is there is a man with a cap doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man in multi-colour dress doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is person in green shirt doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is various t-shirts with crazy characters on them and the creator doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an artist doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person with orange cap doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is guy in cap doing?\",\n    \"video_name\": \"video9890\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are engine capacityspeciality and the car images prsenting in?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"secssion\"\n  },\n  {\n    \"question\": \"what is a custom race car shown with the hood up and the engine in?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what is a car engine with 460 ponds with the red strips in the frontcar in?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"what is someone filming in the parking lot?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person explaining the features of?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is showing 4 27 model car?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who discusses a race car and how much horsepower it has?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a few race cars seem to have parken in?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what sits out in the sun with the hood open?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man describing the motor of?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is describing the motor of a car?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about the race car 427 cobra enginge?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a nice doing?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a car with a hood open and the engine compartment doing?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who discusses the engine of the old style racing car?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is filming a parked car in the parking lot?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"where does a few race cars seem to have parken?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"who does the gray sports car have bright red stripes down?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"hood\"\n  },\n  {\n    \"question\": \"who is describing the engine that is used in a cobra race car?\",\n    \"video_name\": \"video9891\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays a song?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are people singing?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a band play?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what does the man sing?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is playing together?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are they doing?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a band singing?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are people performing?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is singing a song?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who sings the song?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing music?\",\n    \"video_name\": \"video9892\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a newscaster doing?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"narrate\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a short clip doing?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is crowd seems to be doing?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is hillary clinton doing?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is applauded by the crowd?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who speaks to a crowd?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who poses with children?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what clinton doing a speech?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"hilary\"\n  },\n  {\n    \"question\": \"what does the video show?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"campaigning\"\n  },\n  {\n    \"question\": \"what clinton hilarious moments?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"hilary\"\n  },\n  {\n    \"question\": \"what do hilary clinton doing?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"speech\"\n  },\n  {\n    \"question\": \"what is clinton applauded by?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what does hillary clinton speak to?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is hillary clinton walking into?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who is a reporter talking about?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who makes the political rounds?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who is talking about hillary clinton?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what shows hilary clinton campaigning?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who hurries into a door escorted by many men?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a newscaster narrating footage of hillary clinton s?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"campaign\"\n  },\n  {\n    \"question\": \"who discusses hillary clinton s bid for presidency?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman discuss hillary clinton s?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"presidency\"\n  },\n  {\n    \"question\": \"who is walking into a building?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who is standing with lots of kids?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a woman discuss hillary s bid for presidency?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"who takes a photo opportunity with children?\",\n    \"video_name\": \"video9893\",\n    \"answer\": \"clinton\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man avoids doing?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"communicate\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"refuse\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two young men doing?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"who is talking to his roomnates who are in different room?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are two friends having?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"fun\"\n  },\n  {\n    \"question\": \"what was a person in?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what are two men talking in?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who do the boys meet boy?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"courier\"\n  },\n  {\n    \"question\": \"who does a person communicate with?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who avoids helping his roommates?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was in the kitchen?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the man ask for?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"who communicating with other person?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who asks for help?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who asks another man to help him with chores?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking in a kitchen?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who doesn t help his friends with anything?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the youtube nigahiga doesn t want to help?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"anyone\"\n  },\n  {\n    \"question\": \"how many friends are having fun?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a man doesn t help his friends with?\",\n    \"video_name\": \"video9894\",\n    \"answer\": \"anything\"\n  },\n  {\n    \"question\": \"who is doing all kind of sounds on stage?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on stage being a human beatbox?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"mimic\"\n  },\n  {\n    \"question\": \"what is a man uses a microphone to make some beat doing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who uses a microphone to make some beat boxing noise?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"beat-boxing\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"beatboxing\"\n  },\n  {\n    \"question\": \"what s making machine noises with his mouth at a public event?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs on stage sounds with his mouth?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is the man doing all kind of sounds?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when is a man singing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a man performing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man beatboxing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is making noises?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is singing on a stage?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when did a man beatboxing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is performing on stage?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mimicking sounds?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man perform on stage sounds with?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"when is a man beat boxing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a man being a human beatbox?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man s making with his mouth at a public event?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what does a man use to make some beat boxing noise?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"when does a man perform sounds with his mouth?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man s making machine noises with at a public event?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who is on stage beat boxing?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who beatboxing on stage?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who preforms a song on stage?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is beatboxing on stage?\",\n    \"video_name\": \"video9895\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a small knife to clean?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does man cut a fish head with in a table?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is sitting with a dead fish in front of him?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a young man cut up on a white plate?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what does man cut a fish head with a knife in?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does man cut with a knife in a table?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who is explaining how to cut the fish?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates how to make a particular incision through down to the bone of fish as he talks?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man process a small fish on a tray in?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"lap\"\n  },\n  {\n    \"question\": \"what is someone using to clean?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man keep a fish on?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what did a man keep on the tray?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who cuts a fish head with a knife in a table?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is using a small knife to gut a fish on a cutting surface?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is using a small knife to cut the upper fin and head of a fish?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts teh fish with a knife on a white board?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gives instructions while skinning a fish with a knife?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting up a fish on a cutting board outside?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to clean and scale a fish on a tray?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is removing the fins of the fish on the cutting plate with a knife?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows how to make the first cut when filleting a fish he does so on a white cutting board?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts of the head of a caught fish on a cutting board?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts up a fish on a white plate?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone using to gut a fish on a cutting surface?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does the person cut teh with a knife on a white board?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who kept a fish on the tray?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person using to cut the upper fin and head of a fish?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a man cutting up on a cutting board outside?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man removing the fins of on the cutting plate with a knife?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man removing the fins of the fish on the cutting plate with?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does the person cut teh fish with on a white board?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who processes a small fish on a tray in his lap?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man gives instructions while doing?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a person cuts of the head of a caught fish on a doing?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person on his doing?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man kept a fish on the tray and doing?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man shows how to make the first cut when doing?\",\n    \"video_name\": \"video9896\",\n    \"answer\": \"fillet\"\n  },\n  {\n    \"question\": \"who triumphs through his day?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when does asian man triumph?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what does a guy walk down?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is watering his garden?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who waters plants?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who waters his plants?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks down the street?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what follows a man watering his garden?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who water his flowers and walking down the street?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man watering?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what does a man walk through the street doing various actions with?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"narration\"\n  },\n  {\n    \"question\": \"who watering plants and walking down a street?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who waters the plants with a hose?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what follows a man talking to a food cart person?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is doing various things set to a foreign language?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks through the street doing various actions with narration?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy watering plants and doing?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a young man water his flowers and doing?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the video follows a man doing?\",\n    \"video_name\": \"video9897\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do two men play inside a ping pong stadium?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are two players hitting on table tennis match?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who won the set and all audience claps?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what watches on?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what watches?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is a chinese table tennis match which?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"relay\"\n  },\n  {\n    \"question\": \"how many men play competitive ping pong in a blue court as a crowd watches?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who battle fiercly over points on table?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"what do two men play in a blue court as a crowd watches?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"ping\"\n  },\n  {\n    \"question\": \"what are two men playing a competitive game of as a crowd watches on?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"pong\"\n  },\n  {\n    \"question\": \"how many men are playing a competitive game of ping pong as a crowd watches on?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who single match in an exciting stage and the man in red wins over the other?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"tenni\"\n  },\n  {\n    \"question\": \"who is playing ping pong against another player?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many players are having amazing battle for a point?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many players are hitting the white ball on table tennis match?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men play a game inside a ping pong stadium?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do a man in a blue shirt and a man in a red shirt play match while the crowd cheers?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is there is a red tshirt man doing?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is sports coverage of two asian men doing?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two player doing?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a good player doing?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are two players doing?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a red and blue color dress players doing?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9898\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are clouds doing?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is some pictures of a tropical asian doing?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is recorded?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what plays as a narrator describes scenic views?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is talking while different outdoors scenes are shown?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about various different landscapes?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who describes scenic views?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is talking about the scenery?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is about nature?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are clouds moving in?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"scenery\"\n  },\n  {\n    \"question\": \"what is classical music about?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"nature\"\n  },\n  {\n    \"question\": \"what is featured?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"who flash by?\",\n    \"video_name\": \"video9899\",\n    \"answer\": \"landscape\"\n  },\n  {\n    \"question\": \"what does a voa video ad aiirs on?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"what youtube?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what tube channel?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what is a woman advertising?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"what does a woman invite people to like?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"what is a company doing?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a group called voa doing?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"request\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is advertising a youtube channel?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does an animation for someone s?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"youtube\"\n  },\n  {\n    \"question\": \"who talks about joining voa on as graphics go across the screen?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what s youtube channel along with twitter and facebook?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"advertisement\"\n  },\n  {\n    \"question\": \"what is a woman talks about doing?\",\n    \"video_name\": \"video9900\",\n    \"answer\": \"join\"\n  },\n  {\n    \"question\": \"who talks about his duties as a director of data sciences for a college?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a fat man with glasses talking in?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do a person in black color dress wearing speaking with other person displaying on screen?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who is talking about how he is the director of data science operations?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"kircher\"\n  },\n  {\n    \"question\": \"who kirchner the director of data science talks about the importance of ground truth in data science?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"tim\"\n  },\n  {\n    \"question\": \"what is a man with a glasses and a greying gotee giving while standing in front of a beige wall?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is tim kircher doing?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is it is about the importance of ground truth in data science and the person who doing?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is tim kirchner doing?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man in black shirt doing?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person in black color dress doing?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man with glasses and a goatee doing?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a fat man with glasses doing?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a white man in a dark colored shirt doing?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is white male brown hair pale skin and glasses doing?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is fat man is something doing?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9901\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is almost hit by a car?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is nearly hit by a car?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who hits a truck?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who runs across a busy street?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is getting hit by a car?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are people crossing in a video game?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who nearly gets hit by a truck?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman nearly get hit by?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a woman nearly hit by?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a girl getting hit by?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a pedestrian almost get hit using?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is crashing on car?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is crossing a street?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person almost hit by?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a woman hit?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a girl crashing on?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone crossing?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a pedestrian run into?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"traffic\"\n  },\n  {\n    \"question\": \"what shows a female pedestrian nearly miss a truck?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is hitting a girl in road signal?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a pedestrian almost gets hit doing?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a pedestrian doing?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is a truck doing?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is footage of a pedestrian doing?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is stupid lady doing?\",\n    \"video_name\": \"video9902\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what starts knocking food over?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a video game cat knocking all the items off?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is knowcking food onto the ground?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat knowcking onto the ground?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does an animal in a video game knock over at a picnic?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is being narrated over with a cat jumping on a picnic table surrounded by a group of people?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are people sitting at with a animal jumping around?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are people sitting at a table with jumping around?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is a cat knowcking food onto?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is jumping on a table?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is the cat making?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what is jumping on a picnic table?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat start knocking over?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is the cat jumping on?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is making some mess?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what jump on the dining table?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what spill all the food items?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat jump onto?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a video game being narrated over with jumping on a picnic table surrounded by a group of people?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what jumps onto the table?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what has been shown?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is player doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video game cat doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a cat in a virtual reality game doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a cartoon dolls doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a cat jumps onto the table and starts doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a racoon doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is the puppy dog doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a gaming video doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"focu\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is this is a video of someone doing?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what dolls sitting peoples on chair and vegetables on table elephant moving displaying on screen?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is running around knocking things off of a picnic table?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is doing some mischievieous things in the dining hall?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what knocks items off a picnic table with people all around?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is jumping up onto a picnic table in a video game?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"racoon\"\n  },\n  {\n    \"question\": \"what is tapping all the food item that are kept on the table in an animation video?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"when does an animal in a video game knock over the food?\",\n    \"video_name\": \"video9903\",\n    \"answer\": \"picnic\"\n  },\n  {\n    \"question\": \"how many people fight in a dark room with strobe lights flashing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the other person try to call for?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"who is shoving another man?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does two men fight and the winner make?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"who is a man assailing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls to the ground?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stealing his phone?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man stand by?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"window\"\n  },\n  {\n    \"question\": \"what is a man convulsing in?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is a man shoving?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man fall to?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what are two men fighting in?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who then fell down?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who screams?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was scared?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man stealing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is convulsing in a room?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two people fight in a dark room with strobe lights doing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a person knocks over another person doing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"flail\"\n  },\n  {\n    \"question\": \"who appears to mortally wound another person while a third person attempts to help?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many men are fighting in a room?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who fall down as a light strobes?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does one person appear to mortally wound while a third person attempts to help?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who knocks over another person flailing around?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did two people struggle in a dimly light?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is assailing another man?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tried to call for help?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stood by the window?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what attempts to help?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"scream\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"shove\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"convulse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9904\",\n    \"answer\": \"assail\"\n  },\n  {\n    \"question\": \"what generated square people are running?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what shows characters running to and fro?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what shows people crossing back and forth through a hall?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are minecraft characters running across?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who chase each other while a woman sings?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is playing a video game?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who are running across screen?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what is cartoon video doing?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is an animated video shows people doing?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is a video game clip?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who are running back and forth?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do a minecraft?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"what is playing a game?\",\n    \"video_name\": \"video9905\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are computer characters doing?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are characters of a video game doing?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are animated characters doing?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a music video doing?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a video features doing?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a series of small furry woodland creatures begin doing?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what are video game characters doing?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is animated cartoon characters doing?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what do a youtube for a woman song?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does video game character s feel while music plays?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what s feel the screen while music plays?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are dancing to music on a screen?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what are computer characters dancing to music on?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are computer characters dancing to on a screen?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what features dancing foxes and pop music?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what lyrics with animated characters?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who pretends to run?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what are jumping?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9906\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is small kid doing?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who opens a large purple egg?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who pulls a frozen toy out of a big egg?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with a doll that s still in the box?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a young girl pull out of a big egg?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who take a doll in the back?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is playing with a toy?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl playing with?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who finds a toy?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"when do a girl open?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what does music play in?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is girl playing with?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a child find?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is small kid lifting?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"who open a big present?\",\n    \"video_name\": \"video9907\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is giving an interview?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about helping children?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who teach the childrens?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who talks about how to improve education?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what does teacher take in class room?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"what does teacher take class for kids in?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"clas\"\n  },\n  {\n    \"question\": \"who talks about helping children while scenes from a classroom are shown?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about how to help children in a classroom setting?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to a camera for an interview?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who takes class for kids in class room?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what is a woman giving?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a woman talks about doing?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is a women talks about doing?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is this is a woman doing?\",\n    \"video_name\": \"video9908\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon dolls doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are some people watching a man playing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a player attempt at super mario brothers 3?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"who is playing video game?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing a first person video game?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who do people watch play a video game?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are many more persons watching?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is played at speed?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"when is mario played?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do people watch a man play?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is man playing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is playing game?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a video game doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is sitting with group of people?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes what the world record score is?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a crowd of people doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an enthusiastic group of the much loved mario game doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is a young man speaks while doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a room full of men doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"set\"\n  },\n  {\n    \"question\": \"what does a crowd of people sitting next to each other as one man play?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are a large group of boys doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man setting playing mario in front of a group of people?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what are a large group of boys watching one boy play?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who describes how to play a video game?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are some people watching playing a video game?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who talks to a room full of people behind him as they watch him play a video game?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks while sitting with his back to the rest to the class of sitting and standing students?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man demonstrate to a room full of boys?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who attempts a speed record at super mario brothers 3?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"player\"\n  },\n  {\n    \"question\": \"who are a large group of boys watching play a video game?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did an enthusiastic group of the much love learning the tricks of the trade in a group demonstration?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"mario\"\n  },\n  {\n    \"question\": \"what dolls moving jumping and group of boys sitting speaking displaying on screen?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is setting a world record playing mario in front of a group of people?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who watch as mario is played at speed?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"college\"\n  },\n  {\n    \"question\": \"who demonstrates a video game to a room full of boys?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the world record for super mario brothers and a trick?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a roomful of people watch a man play where a small man jumps up and ducks through pipes?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who do a roomful of people watch play a video game where a small man jumps up and ducks through pipes?\",\n    \"video_name\": \"video9909\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman in a gray shirt put on wax paper?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"material\"\n  },\n  {\n    \"question\": \"who is forming meatballs in a kitchen?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is in a kitchen a woman doing?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"form\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who is teaching how to cook a dish?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is young girl doing?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"who explains a way to prepare meatballs?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is prepared?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman in a gray shirt put material on?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is person preparing?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone preparing?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who makes meatballs?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing some food?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing ground beef?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what meatballs in a tutorial?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who was giving cooking tips?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman forming meatballs in?\",\n    \"video_name\": \"video9910\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"donation\"\n  },\n  {\n    \"question\": \"what is playing while displaying world vision donations?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what plays to foreign people dancing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video segment?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about some donation?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what showcasing young african children in a third world country?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is workers doing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is presentation of people doing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what is a commercial with a grown man and doing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is clip of people doing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is african kids doing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"learn\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a song plays to foreign people doing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a song doing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is africans doing?\",\n    \"video_name\": \"video9911\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is recording the birds which fly outdoors?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do birds fly out of a pond formed in an uneven grassy field by metal poles slanted roof building?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"warehouse\"\n  },\n  {\n    \"question\": \"what does then fly away when a green lights shines their way a few birds swim in?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is covered with a lot of birds?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"pond\"\n  },\n  {\n    \"question\": \"what are a pond in the middle of green land and birds taking?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"who is recording the grass and the water in it?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do birds fly out of a pond formed in an uneven grassy field by metal poles slanted building larger warehouse?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"roof\"\n  },\n  {\n    \"question\": \"what is filled by grass and water?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a group of birds doing?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is there are many birds doing?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is there are some birds doing?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an exploration of some birds doing?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are a birds doing?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is birds doing?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are in a field ducks doing?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is ducks doing?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a grassy land with building in the background and birds doing?\",\n    \"video_name\": \"video9912\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man describing in about a car brand?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"detail\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt talking about?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"when channel video about cars?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"history\"\n  },\n  {\n    \"question\": \"who explains the features of the truck?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is parked in the grass?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a red truck parked in?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a red truck appear periodically in?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is presenting a car?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a car?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do history channel about cars?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does man explain the features of?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who is speaking about cars?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do history channel doing a car show?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"segment\"\n  },\n  {\n    \"question\": \"who is talking about trucks?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is telling about big cars?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man talk to while a red truck appears periodically in the background?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who talks to a man about his interests in monster trucks?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"announcer\"\n  },\n  {\n    \"question\": \"what appears periodically in the background?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who is describing in detail about a car brand?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man presenting?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man in a white shirt doing?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who talks to a camera while a red truck appears periodically in the background?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who speaks to a camera for an interview?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9913\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"who is making a rocket craft?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person fold into a paper airplane?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds a paper airplane?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what work by woman in the show?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who is folding origami?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person shown into an airplane?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man folding a piece of?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person fold a white piece of into an object?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making paper plane?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folds paper into a paper airplane?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person fold a white piece of into a plane shape?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is shown folding a paper into an airplane?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folds a white piece of paper into an object?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folds a white piece of paper into a plane shape?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person shown folding a paper into?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person is shown doing?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is footage of a person doing?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is someone?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"what does a man fold?\",\n    \"video_name\": \"video9914\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old woman doing?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a group of women doing?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a group of women doing?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an old woman talking with others at?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who scolds a young girl at the table?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do the woman upset?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"teen\"\n  },\n  {\n    \"question\": \"what are woman gathered around?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what do several women interact around?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who does a woman speak to outside?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who upset the teen?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking to others?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are gathered around a table?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are talking to each other at a table?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is speaking to a table of women?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to another woman outside?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking with others at a table?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two women talking to each other at?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are a group of women talking at?\",\n    \"video_name\": \"video9915\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"albinism\"\n  },\n  {\n    \"question\": \"what does a girl discuss?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"albinism\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a red haired woman doing?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is a girl explaining?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"albinism\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who discusses abnormal animals and people?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"who discusses albinism?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is showing pictures of albino animals?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks about albinism in front of a camera?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to the camera for a video segment?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses albinism in all types of animals?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a red haired woman talking about?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"albinism\"\n  },\n  {\n    \"question\": \"who is explaining albinism?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl showing pictures of?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"albino\"\n  },\n  {\n    \"question\": \"who is reporting on different animals?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is telling about animals?\",\n    \"video_name\": \"video9916\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is being unboxed?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"unbox\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"unwrap\"\n  },\n  {\n    \"question\": \"what is someone opening?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what does a man open?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who gets plane stickers?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is taking decals out of a plastic egg?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who opens a plastic egg and retrieves some toys from inside of it?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is opening up an egg with prizes inside?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who unpacks cars chocolate eggs?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are a pair of hands opening?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who unwraps a toy?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who opens an easter egg?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who opens egg to get prize?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person open?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"easter\"\n  },\n  {\n    \"question\": \"who opens a toy egg?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets decals?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing stickers?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is opening a plastic egg?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does person open to get prize?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what does person open egg to get?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"prize\"\n  },\n  {\n    \"question\": \"what does a person unwrap?\",\n    \"video_name\": \"video9917\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"claim\"\n  },\n  {\n    \"question\": \"what is still life images doing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"exit\"\n  },\n  {\n    \"question\": \"what is bunch of old ladies doing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the video shows pictures of woman doing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is exiting a dupont factory?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman exiting?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"factory\"\n  },\n  {\n    \"question\": \"what is a woman talking in?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person made a video about a photo of a woman doing?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is talking in a phone?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman seem to have a cell phone in?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who walk among others?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a person make a video about a photo of a woman using in 1938?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what did a person make about a photo of a woman using a cell phone in 1938?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"when is 1938?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"year\"\n  },\n  {\n    \"question\": \"what show of old pictures of women at the dupont factory?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"who made a video about a photo of a woman using a cell phone in 1938?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what shows pictures of woman standing outside a factory?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is shown supposedly on a cell phone in 1938?\",\n    \"video_name\": \"video9918\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do man and women fight in?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what are shots of a woman and man in a movie shown over?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a woman break?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"who is threatening a man with a broken glass?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who defends from a man?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is getting tensed for girl?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who breaks a bottle?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man intruding on a women in?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"who does a man walk towards?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who covers his ears because he is going crazy?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a woman defend from?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks on a tv show?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fight in older film?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man getting tensed for?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did a cut scene from?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what did a cut from a movie?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is threatening a man?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is shown rubbing his neck?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks towards a woman?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is scene of a girl doing?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9919\",\n    \"answer\": \"intrude\"\n  },\n  {\n    \"question\": \"what are chefs shown making in a kitchen?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are chefs shown making food in?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is preparing meal at restaurant?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a group of people prepare?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do a group of people serve?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who made some gourmet food?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a person preparing at restaurant?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is a person preparing meal at?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who is cutting meat to cook?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting meat?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are chefs preparing?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what did the chef make?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is chefs doing?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is chef people doing?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what are chefs doing?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person cutting to cook?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is being plated?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is prepared?\",\n    \"video_name\": \"video9920\",\n    \"answer\": \"gourmet\"\n  },\n  {\n    \"question\": \"who is crushing a pack of cookies into a fine powder in a cookery show?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what snaps are crused into a fine powder in a bag by a man?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"ginger\"\n  },\n  {\n    \"question\": \"who uses a small club to crush ginger snap cookies in a plastic bag to a fine crumb?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who serves a pieces of cake with vanilla wafers?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is crushing cookies in a plastic bag with a wooden baton?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does thin dry ginger snap are crused into a fine powder in a bag by?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts ginger snaps in a bag to crush ginger snap cookies into crumbs?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man discussess ginger snaps while doing?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is in a cookery show a chef doing?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"crush\"\n  },\n  {\n    \"question\": \"what is a creamy cake is in the table and someone doing?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"crush\"\n  },\n  {\n    \"question\": \"what is a man plate in cake and biscuits in plastic cover doing?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"decorate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"crush\"\n  },\n  {\n    \"question\": \"who crushes ginger snaps to make a dessert?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crushes ginger snap cookies in a plastic bag?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man use to crush ginger snap cookies in a plastic bag to a fine crumb?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"club\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"snack\"\n  },\n  {\n    \"question\": \"who is showing his favorite snack?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are put in a bag?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"gingerbread\"\n  },\n  {\n    \"question\": \"what are gingerbread cookies crushed to make?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"crust\"\n  },\n  {\n    \"question\": \"what are gingerbread cookies put in?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"what is person decorating on the table?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what are crushed to make pie crust?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"gingerbread\"\n  },\n  {\n    \"question\": \"what does a man put gingersnaps into?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"bag\"\n  },\n  {\n    \"question\": \"what do a man plate in cake and biscuits in plastic cover hitting with making into powder displaying on screen?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what do a man plate in cake and biscuits in plastic cover hitting with stick making into displaying on screen?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"powder\"\n  },\n  {\n    \"question\": \"what does a man discussess snaps while placing ginger snap cookies into a bag?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"ginger\"\n  },\n  {\n    \"question\": \"what is person decorating the beautiful meal on?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does a man crush snaps to make a dessert?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"ginger\"\n  },\n  {\n    \"question\": \"what does a man crush ginger snaps to make?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"dessert\"\n  },\n  {\n    \"question\": \"what is in the table and someone crushing the biscuites?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"who discussess ginger snaps while placing ginger snap cookies into a bag?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man use a small club to crush in a plastic bag to a fine crumb?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"ginger\"\n  },\n  {\n    \"question\": \"who crushes gingersnaps with a wooden dowel?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is decorating the beautiful meal on the table?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person put snaps in a bag to crush ginger snap cookies into crumbs?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"ginger\"\n  },\n  {\n    \"question\": \"who is presenting the dessert that has been made?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who puts gingersnaps into a bag?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a bag of ginger snap is crushed for?\",\n    \"video_name\": \"video9921\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a cook doing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the lady doing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is adding eggs to pasta in a recipe?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman describing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone cooking?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did a woman prepare?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who prepared food?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking food?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person mix food in?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is describing a recipe?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing food?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing food recipe?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is blending the rice?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a person mix in a bowl?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is the lady blending?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"who mixes food in a bowl?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is mixing some eggs in a bowl?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does a woman mixing egg yolks in?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is throwing eggs onto the rice?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is explaining how to make a recipe?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating how to cook a food?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a cook mixing some eggs in?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is the lady throwing eggs onto?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what is a woman adding eggs to pasta in?\",\n    \"video_name\": \"video9922\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a man walks through a resort hotel doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is long hair guy with beard in blue tshrt doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with dreadlocks doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man walking and speaking and hair tied up doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man with long hair doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is there is a luxurious restaurantwhere the young man with blue over coat and a different hair style doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is in a luxuries restaurant where people doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is in the hotwel room the long hair men doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man with dreadlocks in his hair doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"recode\"\n  },\n  {\n    \"question\": \"what is a person speaking and doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the man with big hair doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is walking through the street?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man speaking at?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man walking through?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is speaking at his camera?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the long hair men telling in very loudly in the hotwel room?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"matter\"\n  },\n  {\n    \"question\": \"what is a person explaining by holding self camera in his hand?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a young man describe his experiences at at a large hotel?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"conference\"\n  },\n  {\n    \"question\": \"what does restaurant where people involving with different entertainment and the person speak something about in a luxuries?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"restaurant\"\n  },\n  {\n    \"question\": \"who is explaining something by holding self camera in his hand?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who walks through a resort hotel talking about kanye west?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes his experiences at a conference at a large hotel?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man walking and speaking and hair tie up wearing in displaying on screen?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who is talking about a taking a picture with him?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a seeing kanye west?\",\n    \"video_name\": \"video9923\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is driving through a city street?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving a car on?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a man drive down the road?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving along an empty road?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive a car down?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is driving a car down a street?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car on the road?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving on the road?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who drives a car down the road?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives down a city street?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives down street in city?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man drive down?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a young man drive down?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is driving a convertible?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is having a conversation?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive alone down?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man having?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a long haired man drive?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives alone down a narrow street?\",\n    \"video_name\": \"video9924\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing a song and dancing?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks in the foreground?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing in a library?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who just stands around?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a young man speak in?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"foreground\"\n  },\n  {\n    \"question\": \"what is a woman dancing in?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"library\"\n  },\n  {\n    \"question\": \"who stands stationary?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a music video with taylor swift doing?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who dances to taylor swift while a young man speaks in the foreground?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances to a song about players playing?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances in the background as a boy talks?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who haters hating while a disinterested man just stands around?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stands still while a woman behind him dances?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing behind a still man in a library?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing discreetly while a man stands stationary?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman dance in as a boy talks?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a teenager doing?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman dances to a song about players doing?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what do a teenager dancing inside of a school to?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a woman dancing behind a still man in?\",\n    \"video_name\": \"video9925\",\n    \"answer\": \"library\"\n  },\n  {\n    \"question\": \"what kisses passionately against a wall?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is a man kissing s neck?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man kissing a woman s?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"neck\"\n  },\n  {\n    \"question\": \"who is a man holding hands with?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making out with a girl?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is a guy making out with?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does two hand touching and then a man kiss?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what a couple kisses passionately against?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is holding hands with a woman?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kissing?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is touching?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what kiss passionately?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who kisses a woman passionately against a wall?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kissing a woman s neck?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kisses a young womans neck while standing against a wall?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is two hand doing?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a man kisses a young womans neck while doing?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man and woman are passionately doing?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"embrace\"\n  },\n  {\n    \"question\": \"what is an indian couple doing?\",\n    \"video_name\": \"video9926\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who is talking about a baby stroller?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman displaying?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is woman telling about?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"luggage\"\n  },\n  {\n    \"question\": \"who is woman presenting?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is using a stroller?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is presenting a stroller?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who demonstrates a baby carrier?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is displaying a stroller?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding onto a baby carriage?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is telling about luggage?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman show the various features of?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is talking about a stroller and baby carrying case?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing the features of a stroller?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows the various features of a stroller?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman demonstrate?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"carrier\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is a man discussing the features of?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is a woman using?\",\n    \"video_name\": \"video9927\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who talks to another man on the couch?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what are people of difference races doing?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is some doing?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"swear\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is some young people doing?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a series of videos of people doing?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a collection of vines doing?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is black people doing?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who compares the laughs of black and white people and two groups of woman cheer?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9928\",\n    \"answer\": \"clap\"\n  },\n  {\n    \"question\": \"who is driving?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is driving around?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"roam\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what does a man explain?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"agreement\"\n  },\n  {\n    \"question\": \"who explains an agreement?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drives around with a car?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man roam by car?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"city\"\n  },\n  {\n    \"question\": \"what did a man roam the city by?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving in a car?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does commentary to his car drive?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving around a parking lot?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man in a hawaiian shirt drive?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives down the road in a car?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to find joe on a television show?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is video of a man doing?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who roaming the city by car?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drive around with?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving in?\",\n    \"video_name\": \"video9929\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who interviews another man on a television show?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking on a news program?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two newscaster doing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two foreign guys doing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is some kind of news program with two guys doing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a politician doing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a news person doing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a journalist doing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is being interviewed by another man?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man being interviewed by?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving interview on tv?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two newscaster talking about?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is a news person interviewing?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is man giving on tv?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what does two man s giving to tv?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"who s giving interview to tv?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is interviewing someone?\",\n    \"video_name\": \"video9930\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do various soldiers walk in?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"trench\"\n  },\n  {\n    \"question\": \"what do soldiers fortify in trenches in preperation for assault?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"position\"\n  },\n  {\n    \"question\": \"who is walking through the trenches during a war?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"who hears some noise of a person shouting?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an oriental man walking through the trenches during?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"what is a war prisoner walked through on a battle field?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"ditch\"\n  },\n  {\n    \"question\": \"what are many men engaging in battle on the battle field a man is searching for?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who was pushed to walk by a army person while many men hear some noise of shouting?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who was taken by a police man while he hears some noise of a person shouting?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did asian soldiers escort in green through trenches?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walked through a ditch on a battle field?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"prisoner\"\n  },\n  {\n    \"question\": \"who are many men engaging in battle on the battle field is searching for something?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is there are some militants doing?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a person was taken by a police man while he hears some noise of a person doing?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what is a person was pushed to walk by a army person while they hear some noise of doing?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"shout\"\n  },\n  {\n    \"question\": \"what are many men doing?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"engage\"\n  },\n  {\n    \"question\": \"what is an oriental man doing?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is men in war and doing?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a prison doing?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are soldiers in together during a war?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"trench\"\n  },\n  {\n    \"question\": \"what are soldiers in a trench together during?\",\n    \"video_name\": \"video9931\",\n    \"answer\": \"war\"\n  },\n  {\n    \"question\": \"who rides his bike through the neighborhood?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man rides his bike through?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"neighborhood\"\n  },\n  {\n    \"question\": \"who is riding on a bike?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man riding on a wooded path?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a man rides through the neighborhood?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is someone riding on?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what a man rides?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a person riding?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who rides a bike?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person recording while traveling down the road?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"journey\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle down the street?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a bicyclist rides down a road in a video shot from the bicyclist s point of?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what does a bicyclist rides down a road in a video shot from the bicyclist s?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"who is recording a journey while traveling down the road?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"who is riding a bike on a wooded path?\",\n    \"video_name\": \"video9932\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows off a toy?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy unbox?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a person playing with?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does man show off?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who is using playdoh?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man review?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"science\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"playdoh\"\n  },\n  {\n    \"question\": \"what is being demonstrated?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a man playing with?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who reviews a science toy?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing with a toy?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who unboxes a toy?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what has a screw off top?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a person playing with a toy on?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is explaining how to use a toy?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing with a toy on the table?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a clip of a man giving a review on a kid s?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"who takes out an object from a toy?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a bag filled with cotton balls?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing with on the table?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is being discussed?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is this is someone doing?\",\n    \"video_name\": \"video9933\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what does a wrestler present to the crowd?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"champion\"\n  },\n  {\n    \"question\": \"what does a wrestler make into the ring?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"entrance\"\n  },\n  {\n    \"question\": \"what does winner of the wrestling greet?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what is a wrestler walking around in a video game?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what does a wrestler present his champion belt to?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what play footage of wwe 2k16?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who presents his champion belt to the crowd?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what is an animation of a wrestler showing his belt after winning in a wrestling video game?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"who is walking around a ring in a video game?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what does a wrestler make his entrance into?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who makes his entrance into the ring?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what is played?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is gameplay footage of someone doing?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is in a video game a wrestler doing?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is it is an animation of a wrestler doing?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is winner of the doing?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9934\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are indian men sitting in talking?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what are some men relaxing next to?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"who does a man speak to outside?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are three men sitting on?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do a few guys talk in?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does three men sit on?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who speaks to another man outside?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting on the road?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting on?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"how many men are hanging out on a grassy hill?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are talking each other on the road side?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many indian men are smoking on the side of the road while talking among themselves?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"where are some men relaxing next?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"how many men sits on road?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are sitting on the road?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what a couple of indian men talking to each other in?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a group of men sitting in?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what are some guys on road talking about?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is three men doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is three men sits on road and doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are three indian men doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is three guys doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is three actors doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are indian men doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is group of men doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a couple of indian men doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are some guys on road doing?\",\n    \"video_name\": \"video9935\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people looking at?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person talking about?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man walking around talking about food?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"market\"\n  },\n  {\n    \"question\": \"what is a man getting food from?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"buffet\"\n  },\n  {\n    \"question\": \"who is talking in the shopping complex?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man getting from a buffet?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is getting food from a buffet?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about food?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man in black glasses and a white top talking in?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"who is walking through a food court discussing possible food choices?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking around a market talking about food?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is people are all busy doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with a hat on doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man walks through a buffet doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"decide\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in food court doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a man in black glasses and a white top doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9936\",\n    \"answer\": \"visit\"\n  },\n  {\n    \"question\": \"what flies a paper plane?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"who is doing rocket on a paper?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is throwing a unique paper airplane?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flying a paper airplane outside?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a boy test prepare to show how to make one?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"viewer\"\n  },\n  {\n    \"question\": \"who does a person show how to make a paper airplane?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what prepares to show the viewer how to make one?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"test\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"who flies a paper airplane outside?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows a man how to make a paper airplane?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who throws a paper airplane?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man flying outside?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who is flying paper airplanes?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man throwing?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who flies a paper airplane?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man throw?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a guy fly?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what does a person throw?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what did a person make?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person flying?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone doing on a paper?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"rocket\"\n  },\n  {\n    \"question\": \"who is throwing a paper plane?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who made a paper plane?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a boy test fly?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone doing rocket on?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man fly outside?\",\n    \"video_name\": \"video9937\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is a woman adds salt and lemon juice to her dish that she doing?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a girl and a bowl doing?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl pouring spoon mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who adds the spices to the pot of food?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting some ingredients into the soup?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the woman cooking by adding ingredients to it in the big pot in the kitchen?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is woman adding some salt into in a kitchen?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is woman adding some salt into the soup in?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is woman adding into the soup in a kitchen?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"who is giving a cooking tutorial live?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman putting some ingredients into?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is a person using to mix up some soup?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who is putting some salt?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing the soup?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is woman preparing?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"soup\"\n  },\n  {\n    \"question\": \"what is woman putting?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"who is adding some salt into the soup in a kitchen?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is using a spoon to mix up some soup?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone frying after putting butterpepper in the black nonstick pan?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl pouring spoon mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who is cooking the food by adding ingredients to it in the big pot in the kitchen?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl pouring spoon mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl pouring mixing dish inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who adds salt mint leaves and lemon juice into a hot pot?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is frying something after putting butterpepper in the black nonstick pan?\",\n    \"video_name\": \"video9938\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who sings a song while others play instruments?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings as a band plays all around him?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who perform in the band perform and girl dance in the show?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man sing while others play instruments?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do the person perform in the band perform in the show?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man in suit singing on the stage?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do the person perform in the band perform and girl dance in?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"when is a man in suit singing a song?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are group of people playing?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are singing a song?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who plays the drums?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"drummer\"\n  },\n  {\n    \"question\": \"what are playing the guitar?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what plays all around there?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are the purple dots moving to?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"right\"\n  },\n  {\n    \"question\": \"what are group of people singing?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what do the person perform in perform and girl dance in the show?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what are the purple dots doing?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a rock band jams in front of many bright lights doing?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"mask\"\n  },\n  {\n    \"question\": \"what is a multiple piece band doing?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is linkin park which is a band doing?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"preform\"\n  },\n  {\n    \"question\": \"what is a music video for a band doing?\",\n    \"video_name\": \"video9939\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what talks about the car?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who talks about a product?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who s voice talks?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is advertising a car?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman voice talk about?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a woman talk about?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"what does the review about?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a white car being discussed on?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"carfax\"\n  },\n  {\n    \"question\": \"what is being discussed on carfax?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is displayed while a woman talks about a product?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person giving a walkthrough of?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who reads through a carfax history report?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is shown in a car fax commercial?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"acura\"\n  },\n  {\n    \"question\": \"who is giving a walkthrough of a car?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman s?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"advertise\"\n  },\n  {\n    \"question\": \"what is a woman advertising?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is parked?\",\n    \"video_name\": \"video9940\",\n    \"answer\": \"acura\"\n  },\n  {\n    \"question\": \"what are two cartoon chickens doing?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are chickens doing?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is cartoon of a chicken doing?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is cartoon chickens doing?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are cartoon animals doing?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is animation of animals doing?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an cartoon chicken doing?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are interacting?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are two cartoon chickens eating?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"corn\"\n  },\n  {\n    \"question\": \"what is an animals discovers chickens doing?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is shown in a field area with other animals?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"gopher\"\n  },\n  {\n    \"question\": \"what are chickens eating?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"corn\"\n  },\n  {\n    \"question\": \"who finds that chickens are eating his corn?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"gopher\"\n  },\n  {\n    \"question\": \"what is eating corn in a field?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many cartoon chickens are eating corn?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who do 3d animated chickens try to eat?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"gopher\"\n  },\n  {\n    \"question\": \"what does an animation of a kid s?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a gopher finds that chickens doing?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what does a gopher find that chickens are eating?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"corn\"\n  },\n  {\n    \"question\": \"what is a chicken doing?\",\n    \"video_name\": \"video9941\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"communicate\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a woman doing?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a web page doing?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who describes how to join parties on xbox?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gives recommendations?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who demonstrates how to use an interface properly?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who describes how to use a computer program?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who scrolls through an online computer site and talks?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do some chat option and other add are explained in the xbox guide?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"who is demonstrating how to navigate xbox live?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is doing a tutorial on a video game?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what offers instructions on how to perform a task?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is scrolled through with other members for a game visible?\",\n    \"video_name\": \"video9942\",\n    \"answer\": \"menu\"\n  },\n  {\n    \"question\": \"what is a cartoon of a boy doing?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what does an old man make on tv?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"announcement\"\n  },\n  {\n    \"question\": \"what does a man talk on a tv to kids in a classroom in?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a man talk on a tv to kids in in a cartoon?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"classroom\"\n  },\n  {\n    \"question\": \"what shows a child watching television?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is shown from cartoon network?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are in school?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon shown from?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are cartoon characters in?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"who is shivering?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is scared?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon man in a top hat doing?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who makes an announcement on tv?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks on a tv to kids in a classroom in a cartoon?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dexter listening to on the tv?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getting excited in a cartoon television show?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is listening to a man on the tv?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"dexter\"\n  },\n  {\n    \"question\": \"what is a cartoon shows a child doing?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"demand\"\n  },\n  {\n    \"question\": \"what is an animated boy doing?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"shiver\"\n  },\n  {\n    \"question\": \"what is an animation of children in a classroom doing?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is dexter doing?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"listen\"\n  },\n  {\n    \"question\": \"what is a cartoon man in a top hat wearing?\",\n    \"video_name\": \"video9943\",\n    \"answer\": \"hat\"\n  },\n  {\n    \"question\": \"what did actor robert during a television interview?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"downey\"\n  },\n  {\n    \"question\": \"what is a man wearing a black shirt sitting in talking?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a black tshirt man talking to?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who downy junior talking about what he was like as a teenager in an interview?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"who is talking about being a teenager?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"who talks in an interview about his views when he was younger?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"who robert downey jr talks during a television interview?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what is robert downy jr sitting in giving an interview about a movie he made?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"char\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an actor doing?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a black tshirt man doing?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is robert downy jr doing?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man in a black shirt doing?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a video of a man in black shirt doing?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is person in black shirt doing?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is robert downey jr doing?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is robert downy junior doing?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is interviewed about part in upcoming movie?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"who is sitting in a char giving an interview about a movie he made?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"who downey is being interviewed in front of an interesting background?\",\n    \"video_name\": \"video9944\",\n    \"answer\": \"robert\"\n  },\n  {\n    \"question\": \"who is showing some food recipe?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is being cooked in a pan?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is making sauce?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a lady showing?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"base\"\n  },\n  {\n    \"question\": \"who is making a gravy base?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is cooked up?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is cooking?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who describes how to cook tasty gravy?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman cooking in a pan?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman stirring a pot of?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"gravy\"\n  },\n  {\n    \"question\": \"who is cooking food in a pan?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is stirring a pot of gravy?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman stir into tomato sauce in a skillet?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"who is stirring some sauce in a pot?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stirs an orange gravy in a pot?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirs an orange paste into tomato sauce in a skillet?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking while food is being cooked in a pan?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9945\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what do three woman look at photos in a magazine in?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what is a woman leaning on?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is in bed?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are women talking in?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what do three women talk in?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what is a woman in?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is standing?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is leaning on the wall?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are in a room talking?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a woman reading in with another woman talking?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is talking while another woman is reading?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman alking to another woman in?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"who look at photos in a magazine in a bedroom?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking while another is seated listening?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who explains a series of events?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman reading in bed with talking?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who tells a story to two others in a bedroom?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gives an account of some occurrences?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is reading in bed with another woman talking?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is alking to another woman in a bedroom?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women talk in a bedroom?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what does a woman tell to two others in a bedroom?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman tell a story to two others in?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"who is a woman alking to in a bedroom?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is reading?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"who is speaking about a newspaper article?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are in a bedroom women doing?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is three women are in a room doing?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9946\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a band performing for?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what is band performing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is playing music?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing a song in a live concert?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are a group of men with guitars singing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a musician playing guitar?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man singing in a live concert?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when are men playing instruments?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who s performing on a stage?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"guitarist\"\n  },\n  {\n    \"question\": \"what is a musician playing on stage?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when does three famous guitarist s performing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are few performers singing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when are few performers playing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is singing with billy gibbons?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"daryl\"\n  },\n  {\n    \"question\": \"who is playing guitar on stage?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"musician\"\n  },\n  {\n    \"question\": \"what is performing for the crowd?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is men doing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is three famous guitarist s doing?\",\n    \"video_name\": \"video9947\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who show the models of bike?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is describing about the grand sports bike?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does strics on a black motor cycle?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about belt drive systems in motorcycles?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discusses the features of some high speed motorcycles?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes the belt drive system seen on cruisers and sport bikes?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing pictures of motorcycles?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"com\"\n  },\n  {\n    \"question\": \"what is a men telling about?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a bike displayed on?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what are featured in a video?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who fall down the bike?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are high performance motorcycles featured in?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what are a two black color stunning sport bike?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"showcase\"\n  },\n  {\n    \"question\": \"what sports bikes in new models?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"com\"\n  },\n  {\n    \"question\": \"what do a person show the models of?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is displayed on screen?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what do a person fall down?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a bike standing and doing?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is com doing?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is car ready for doing?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a bike is displayed on screen and a men doing?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a two black color doing?\",\n    \"video_name\": \"video9948\",\n    \"answer\": \"stun\"\n  },\n  {\n    \"question\": \"who is driving his beautiful car in the mountain?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the car race game in the computer game play?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"mand\"\n  },\n  {\n    \"question\": \"what is a person playing with a car on bad conditions console?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is driving his new black car on bad conditions?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person playing a video game with on bad conditions console?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being driven on dirt road in a video about a game?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car being driven on in a video about a game?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"who is reckless a car is riding fast in a dirty road?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what is driven along a dirt road in a video game?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does the sports car running with full speed and fire come out from?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what does some one driving a car with full speed and suddenly sparkle come from?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is man driving in the mountain?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"beautiful\"\n  },\n  {\n    \"question\": \"what does a car then get on?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what then gets on the dirt?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car driving down?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what is running in the video game?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving down a highway?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is moving along a muddy road with music being played?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is man driving his beautiful car in?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who is playing a video game with a car on bad conditions console?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is there is a black car doing?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is there is a black sports car doing?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what video where the car is going out of track and coming back to track?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a live action doing?\",\n    \"video_name\": \"video9949\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who is in his room unboxing something electronic he bought?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about his computer in spanish?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about in a foreign language?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who is pointing at a computer screen?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing something on device?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man building?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does man explain?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who shows his computer setup?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about his computer?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is building something?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person drawing something on?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"device\"\n  },\n  {\n    \"question\": \"who discusses his desktop computer?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person drawing on device?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man talking about in spanish?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"who explains computer setup?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a new computer that he has?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a computer in a foreign language?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing the utilities of a household appliance?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about the specs of a computer?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what does a man show?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a man is in his room doing?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"unbox\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what does a man discuss?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"computer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9950\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who discusses movies?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is hosting the tv show?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking about a movie?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about some movie?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is in front of a screen talking about movies?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who discusses the end of movie teasers in marvel movies?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who speaks to a camera for a video segment?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a scene in the movie wolverine?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is discussing a previous wolverine movie?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is talking about a movie scene from the wolverines?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a girl hosting?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman is in front of a screen doing?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is girl doing?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is the lady doing?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman talking about?\",\n    \"video_name\": \"video9951\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining something?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a do paper art yourself demonstration involving?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is showing paper art?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making paper art?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a paper?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person making?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someine making something from?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds paper?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does someone fold?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does someone show?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man teaching?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person explaining?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someine making from paper?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man fold a piece of?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a do it yourself demonstration doing?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"involve\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person fold a piece of up?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds a piece of paper?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making something from paper?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"someine\"\n  },\n  {\n    \"question\": \"who shows paper craft demo?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is teaching origami?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds a piece of paper up?\",\n    \"video_name\": \"video9952\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"who are talking outside?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what are two animated figures with?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"spongebob\"\n  },\n  {\n    \"question\": \"what is someone showing graphic?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what do a minecraft animated?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"who discusses his building skills?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who is patrick talking to?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a cinematic clip make in?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"who is talking to a man?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"patrick\"\n  },\n  {\n    \"question\": \"who is showing video graphic?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what made in mine craft?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"what does a minecraft player discuss?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"how many animated figures are with spongebob?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do minecraft and sponge bob characters talk about?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"who talk to each other in an animated show?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"who do a 3d version of patrick and sponge bob talk with?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"how many cartoons are having a discussion about a weird tree?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what shows a cartoon character and a video game character?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what is hown?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"minecraft\"\n  },\n  {\n    \"question\": \"what are minecraft characters doing?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is patrick doing?\",\n    \"video_name\": \"video9953\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what do a boy in white color dress wearing sitting?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"who discusses data quality and usage in his videogame?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy in white color dress wearing speaking with headphone in neck displaying on screen?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what do a boy in white color dress wearing cloth speaking with headphone in neck displaying on?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who portuguese talking abot xbox with headphones around his neck?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"speaking\"\n  },\n  {\n    \"question\": \"who did a man speaking portuguese talking with headphones around his neck?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"abot\"\n  },\n  {\n    \"question\": \"who sits in the black chair wearing the ear phones and talks?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits wearing headphones that have a microphone on a chair around his neck?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes a video game?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits in a chair?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy with spiked hair a tie dye shirt and headphone around?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"neck\"\n  },\n  {\n    \"question\": \"what does a young man sit wearing headphones that have a microphone on a chair around?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"neck\"\n  },\n  {\n    \"question\": \"what do a boy with spiked hair a tie dye around his neck?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"headphone\"\n  },\n  {\n    \"question\": \"what does a man describe?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is a young man in a pinkish shirt doing?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man with spiked hair talks to his viewers while doing?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the young man with headphones doing?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the man sits in the black chair doing?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young man with headphone in his neck doing?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young man sits doing?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does a man sit in?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a boy in white color dress doing?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is man in white shirt doing?\",\n    \"video_name\": \"video9954\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is playing?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person fly?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is someone throwing?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person throw?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is throwing a paper plane?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is throwing a paper airplane?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who throws a paper plane?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who flies a paper airplane?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who throws a yellow paper plane?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who throws a yellow paper airplane?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does a video of clear skies and a basketball field give?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"cheery\"\n  },\n  {\n    \"question\": \"what does a person throw a yellow paper airplane into?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"sky\"\n  },\n  {\n    \"question\": \"what flies around a parking lot?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who is throwing a paper airplane outdoors?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is through a paper rocket?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is throwing a yellow paper plane?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who throws a yellow paper airplane into the sky?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is outside a person doing?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9955\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"who speaks to another man?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking in a stadium?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks to another in french?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking at a stadium?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man in a black coat speaking french to?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is speaking to another man?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men talk in a sport stadium?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is giving an interview?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man speaking to?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do the men talk in?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what are two men talking at?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what are two men talking in?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what is a man giving?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"how many men are speaking to each other in the stands of a stadium?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking in french to each other?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking while sitting in a stadium?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who speaks to another man in a stadium?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a black coat doing?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"video9956\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what did group of guys and girls practise?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a team of teenagers practicing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what practices a routine?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what a dance crew practices?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"routine\"\n  },\n  {\n    \"question\": \"what are people rehearsing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"routine\"\n  },\n  {\n    \"question\": \"what do people dance in?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what do girls and boys dance in?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"studio\"\n  },\n  {\n    \"question\": \"what does a guy in a gym sing takes off?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what are a group of people dancing in?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a guy in a gym pick up while people dance behind him?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is young teens doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is young men and women doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the boys and girls doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"rehearse\"\n  },\n  {\n    \"question\": \"what is people and doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is group of guys and girls doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"practise\"\n  },\n  {\n    \"question\": \"what are a team of teenagers doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9957\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is preparing a dish?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman cooking something on?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is adding spices?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman pour?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"what is someone preparing?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a girl a bowl doing?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a woman adds garlic salt and doing?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who is cooking something on the stove?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"pore\"\n  },\n  {\n    \"question\": \"what is a chef making some brown liquid in?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who applies to sort of spice and garlic salt to a dish that they are making?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making some brown liquid in a pot?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is using a bottle to pour stuff in a bowl?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pours garlic salt?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is explaining the types of seasoning some other ingredients in a are using?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is adding some ingredients in the big pot to make some food?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person using to pour stuff in a bowl?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what do a girl a bowl pouring mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a woman cooking on the stove?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a chef making in a pot?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"who a bowl pouring mixing dish inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who adds garlic salt and seasoning salt into a pot on the stove?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a girl a bowl pouring mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"who shows how to make a meal on a pot stove?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is black cooked on burned water and some masala ingredients added then dark is added?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"sunstance\"\n  },\n  {\n    \"question\": \"who is poring ingredients into a pot over a stove?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do a girl a bowl pouring mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9958\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is drawn?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who voices over?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who does another person give?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"speach\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man drawing?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated video doing?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who is drawing a comic?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who whiteboard?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who draws a political cartoon while another person gives a speach?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who edits a political cartoon while music plays?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who uses cartoon commentary to discuss an issue that is important to him?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person draw while another person gives a speach?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what draws a cartoon while a man voices over?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is talking while drawing an economic comic?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing part of a comic?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man use to discuss an issue that is important to him?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"commentary\"\n  },\n  {\n    \"question\": \"what does a man edit while music plays?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is drawing a political cartoon while another man describes what the man is drawing?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a hand draw while a man voices over?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes what the man is drawing?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone drawing?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is drawing something?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man drawing while another man describes what the man is drawing?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who gives a speach?\",\n    \"video_name\": \"video9959\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who shows a music app on his cell phone?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who describes how a cell phone with an x has automatic input features?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who ghow to do something on a phone?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about a music application on a phone?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did person showin ghow to do something on?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what did person showin ghow to do on a phone?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who holds up a phone to show a music app?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man talking about a music application on?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is talking about a smart phone?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who looks at a cell phone screen?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a video of ed sheeran cover?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"album\"\n  },\n  {\n    \"question\": \"who is showing off music?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is showing a phone?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is using a phone?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person showing off?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what does a man hold?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is someone showing?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a person using?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who holds a phone?\",\n    \"video_name\": \"video9960\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a cartoon duck can not stop doing?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a cartoon duck doing?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is donald duck is unwillingly doing?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is donald duck s feet are out of control doing?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what cannot stop moving?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what did an episode of the cartoon donald?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"duck\"\n  },\n  {\n    \"question\": \"what does donald duck s feet are out of control pulling him to?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a clip from a donald duck cartoon?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does donald duck s feet are out of pulling him to the fire?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what lit donald duck gets pulled too close to the?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"fireplace\"\n  },\n  {\n    \"question\": \"who holds on to a rug?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does donald duck try to keep his tail out of?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what does donald duck try to keep out of the fire?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what is donald duck dancing too close to?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"fireplace\"\n  },\n  {\n    \"question\": \"who are interacting?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a donald duck cartoon show?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is donald duck?\",\n    \"video_name\": \"video9961\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is video of two men on television doing?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"who talks to another about the supreme court?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a group of judges who doing?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a news team doing?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cbn news doing?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is discussing the judges who are sitting and standing supreme court?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what does two newscasters discuss?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is discussing the the two men supreme court?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is talking about the supreme court?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking about the supreme court?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks about the supreme court?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men discussed the supreme court?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the two men discuss?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"who talks about the united states supreme court and something it has recently ruled on?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are being shown while reporters talk about them?\",\n    \"video_name\": \"video9962\",\n    \"answer\": \"court\"\n  },\n  {\n    \"question\": \"what is a picture doing?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is electronic products are shown and it is high performance packages it is also thermal resistance which is the latest one on doing?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is electrical circuits in appliances and wired doing?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"connect\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a bga packages attached to several devices and it is the latest thermal resistance doing?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is a chart doing?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a voice over of a male plays over a slide who doing?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is for bga package our unique metal tim achievers which is below 005 degrees and is certified by the latest thermal resistance doing?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is some technological products are displayed and it is the latest thermal resistance doing?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who describes the various devices that are sold by the company he works for?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the diagram of wires and equipment represent?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"resistance\"\n  },\n  {\n    \"question\": \"who explains a product?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"host\"\n  },\n  {\n    \"question\": \"what narrates electronic high performance packages for bga packages?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"male\"\n  },\n  {\n    \"question\": \"what does the host explain?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"product\"\n  },\n  {\n    \"question\": \"who is explain about a power supply instrument?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the diagram of wires and equipment it is also thermal resistance which is the latest one on measuring technology?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"performance\"\n  },\n  {\n    \"question\": \"who is talking about his new high performance packages?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what packages attached to several devices?\",\n    \"video_name\": \"video9963\",\n    \"answer\": \"bga\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a news anchor doing?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"report\"\n  },\n  {\n    \"question\": \"what is two mn a doing?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men reporting?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man talking on?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is getting filmed live with a newscaster?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"larry\"\n  },\n  {\n    \"question\": \"what do a tv show about with a guy doing an interview?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what cast for the show info wars?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"how many men are reporting the news?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is talking?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is talking into a microphone?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is talking about the news?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking on the news?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what anchor discussing a story?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is a reporter talking into?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what do a news anchor discussing?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"story\"\n  },\n  {\n    \"question\": \"who is a man interviewing?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two mn a talking on?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"who is interviewing another man?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9964\",\n    \"answer\": \"news\"\n  },\n  {\n    \"question\": \"what is santaclose doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a animated movie showing many kids watching and a kid sneezes and santa claus playing shoo away other kids?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what are santaclose playing piano and some chindren dancing on?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"tune\"\n  },\n  {\n    \"question\": \"what christmas father and more peoples with a music?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a x-mas thatha doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what do children trying to peak at santa on christmas eve wait for?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"santum\"\n  },\n  {\n    \"question\": \"what does cartoon christmas father and more peoples with?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what are a group of children looking over one child sneezes which catches the attention of santa claus?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"railing\"\n  },\n  {\n    \"question\": \"what is a cartoon santa claus doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"sneak\"\n  },\n  {\n    \"question\": \"what is the cartoon children stand at the top of the stairs doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who claus singing carol songs for small childrens?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"santum\"\n  },\n  {\n    \"question\": \"what is the babay cartoon character at last the santa cartoon is attack the baby cartoon?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"panic\"\n  },\n  {\n    \"question\": \"what is the babay cartoon character panic at last the santa is attack the baby cartoon?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who are standing at the top of a staircase while santa is leaving toys?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who stand at the top of the stairs watching santa?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon dool musical instrument dancing in white dress show on?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what shows a group of children trying to peak at santa on christmas eve?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is leaving toys?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"santum\"\n  },\n  {\n    \"question\": \"what is a cartoon santa claus standing next to?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what are cartoon babies doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is an animation video doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a cartoon dool musical instrument doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are a group of children doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a cartoon feature shows a group of children doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is an old cartoon doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is there is a baby doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"sneeze\"\n  },\n  {\n    \"question\": \"what is a animated movie doing?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are some looking?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what gives gifts?\",\n    \"video_name\": \"video9965\",\n    \"answer\": \"santum\"\n  },\n  {\n    \"question\": \"what is there is a hot woman doing?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a female singer and others doing?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is dancing in all black with a strobe light and many other dancers?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"beyonce\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a lot of doing?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a pop singer in black dress singing and doing?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a pop singer singing and the dance group doing?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is with black shoulder-length hair pushes her bangs back with a finger while doing?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a pop singer dances about with her posse in to doing?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"flash\"\n  },\n  {\n    \"question\": \"what pop star in a bounce type music video with semi seductive clothing?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what do a pop singer in black dress dancing along with?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"who is dancing with many other dancers in a music video?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"celebrity\"\n  },\n  {\n    \"question\": \"what are a female singer and others performing in with music playing in background?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who stunts in between?\",\n    \"video_name\": \"video9966\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"what does a man drive a convertible through at an auto show?\",\n    \"video_name\": \"video9967\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who drives a convertible through a crowd at an auto show?\",\n    \"video_name\": \"video9967\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9967\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a series of clips doing?\",\n    \"video_name\": \"video9967\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a video doing?\",\n    \"video_name\": \"video9967\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is clip doing?\",\n    \"video_name\": \"video9967\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"where does a car sit with the top open?\",\n    \"video_name\": \"video9967\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who are being shown?\",\n    \"video_name\": \"video9967\",\n    \"answer\": \"lamborghini\"\n  },\n  {\n    \"question\": \"what are cars being shown on?\",\n    \"video_name\": \"video9967\",\n    \"answer\": \"geographic\"\n  },\n  {\n    \"question\": \"what does a car sit with the top open in?\",\n    \"video_name\": \"video9967\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what sits with the top open in a field?\",\n    \"video_name\": \"video9967\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who spielberg filming movies?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"steven\"\n  },\n  {\n    \"question\": \"who looks through a camera?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"spielberg\"\n  },\n  {\n    \"question\": \"who do a different series or still shots show s work on movies that he was part of?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"spielberg\"\n  },\n  {\n    \"question\": \"what does steven spielberg look through?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do some people pose with?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"dinosaur\"\n  },\n  {\n    \"question\": \"what are shown as a slide show?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"movie\"\n  },\n  {\n    \"question\": \"what do a different series or still shots show steven spielberg s that he was part of?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what do steven spielberg laying next to?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"dinosaur\"\n  },\n  {\n    \"question\": \"who spielberg laying next to a dinosaur?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"steven\"\n  },\n  {\n    \"question\": \"what did clips of the lastest movies direct by?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"spiel\"\n  },\n  {\n    \"question\": \"what do a different series or still shots show steven spielberg s work on movies that he was?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"part\"\n  },\n  {\n    \"question\": \"what is bearded guy doing?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is steven spielberg doing?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a man with glasses doing?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is scenes doing?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"depict\"\n  },\n  {\n    \"question\": \"what is with gray hair and a beard looks through the long lens of a black movie camera with one eye while doing?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is there is a woman with a specs doing?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is there is a man with specs doing?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"who looks through the viewfinder on a large movie camera?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"director\"\n  },\n  {\n    \"question\": \"what is a visually appealing collage of the great works of the famous american director steven spielberg?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is seen behind the lens of a professional movie camera?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"director\"\n  },\n  {\n    \"question\": \"who with beard seeing the view through camera some of the pictures of the shooting spot?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is shown looking through a big camera before the screen frequently change?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a person with beard seeing the view through some of the pictures of the shooting spot?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what are scenes depicting the director steven spielberg presented in?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"slideshow\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9968\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what are two girls sitting in the bed with?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what do two girls sit on?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are two young women sitting in?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are two girls sitting on?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are one blond woman in red pajamas holding a cat and a blond woman in pink pajamas sitting on talking about celebrities?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is there is a red lady doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women holding?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what are two lady doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a lady with red tops with a cat in her hand and a lady with pink top doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is two girls doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is girls sit on a bed doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two young women doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are two sexy blondes in red and pink outfit with cat in their hand doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is one blond woman in red pajamas doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two girls sitting in with a cat?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what do two girls talk in?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"pajama\"\n  },\n  {\n    \"question\": \"what do the two blond girls sit in?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"how many women are talking to each other?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are talking?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls sit on the bed?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did two girls sitting on a bed rub?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"how many women are holding a cat?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are talking to each other?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is red one holding a cat and pink one worried about?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is the woman wearing red dress with holding a cat making with woman wearing pink dress?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"argument\"\n  },\n  {\n    \"question\": \"how many women seemed to be gossipping about celebrities?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women discuss famous celebrities with each other?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young women are sitting in bed clothes?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are sitting on a bed?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two friends doing?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"how many girls are sitting in the bed with a cat?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women sit on the bed with cat?\",\n    \"video_name\": \"video9969\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a mechanic doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is mechanic doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"instal\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is two men explained how they fixed a car because the alternator wasn t doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"repair\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"who is asking another man a question regarding fixing a car?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man holding?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"alternator\"\n  },\n  {\n    \"question\": \"how many men explained how they fixed a car because the alternator wasn t working?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is discussing the alternator of a car?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"mechanic\"\n  },\n  {\n    \"question\": \"who works on the engine of a car?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about what s wrong with a car?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man talks about removing a car s?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"alternator\"\n  },\n  {\n    \"question\": \"what is a mechanic discussing the alternator of?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is talking about the car he is working on?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does man working on a car s?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"alternator\"\n  },\n  {\n    \"question\": \"who looks at an alternator?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man near?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"engine\"\n  },\n  {\n    \"question\": \"what is a man working on?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man look at?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"alternator\"\n  },\n  {\n    \"question\": \"what filter in a vehicle?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"installing\"\n  },\n  {\n    \"question\": \"what is a man repairing?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is working on a car?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do mechanic installing air filter in?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"who is holding an alternator?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is near an engine?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is repairing a car?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what t working?\",\n    \"video_name\": \"video9970\",\n    \"answer\": \"alternator\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"relax\"\n  },\n  {\n    \"question\": \"what is an anime character doing?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"brag\"\n  },\n  {\n    \"question\": \"what is anime character doing?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"berate\"\n  },\n  {\n    \"question\": \"what is cartoon character doing?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what are cartoon characters doing?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is cartoon guy doing?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"lean\"\n  },\n  {\n    \"question\": \"what is guy on dragon ball z doing?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does character lean back in?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is cartoon guy leaning back in?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does the anime cartoon man lean back in?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who leans back in a chair?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who are talking at desks?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is shown of a blonde man in a purple tank top speaking?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is talking about another man s physique?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is leaning back in his chair?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is relaxing in a chair in a cartoon?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is bragging about his looks?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who talks a female character in dbz?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a man relaxing in in a cartoon?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a man relaxing in a chair in?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what does a cartoon character sit relaxed in?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who sits relaxed in a chair?\",\n    \"video_name\": \"video9971\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what are a man and woman laying in together talking?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is talking in bed?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and woman lying in together?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a man talking in?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is laying down?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man and woman in bed doing?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a preview of a foreign film of a couple laying in bed doing?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is an indian man and woman laying in bed doing?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what are a man and woman lying in?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is laying in the bed with a womanb?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is laying in bed next to a woman?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lays down on the bed with his girl?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to his partner in room?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man laying in the bed with?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"womanb\"\n  },\n  {\n    \"question\": \"what is a man laying in next to a woman?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a man laying in with a womanb?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what lay lazily in bed and talk?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man in woman in speaking to each other?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are a man and a woman laying in?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are a man and woman laying in talking?\",\n    \"video_name\": \"video9972\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are horse races are shown and very amazing to watch and the commentator doing?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"comment\"\n  },\n  {\n    \"question\": \"what are shown to watch?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is lovely scene of the horse race doing?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is there is a horse race on a grass track with a british announcer doing?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a horse race on grass there is an announcer doing?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is horses doing?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are a group of horses doing?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is horse race on the grass field all the jockey doing?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what does horse race where number horses running on top man sit each horse have?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"number\"\n  },\n  {\n    \"question\": \"who narrates while a group of horses with jockeys race on a grassy track?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a play by play of a horse race?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are commenting about the position of the horse?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"commentator\"\n  },\n  {\n    \"question\": \"what did a group of horses running in race grind chasing watching displaying on screen?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what a group of horse riders riding the horse on?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man doing by play of a horse race?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what a group of horse riders riding on the race?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are riding their horses on the grass?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what watches as a group of horses race with there riders?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are group of people riding their horses on?\",\n    \"video_name\": \"video9973\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"who is singing in the stage?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is man singing in?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"when is a guy singing?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do young boy sing?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"when is a person singing?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a boy singing?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when does a young boy sing?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who singing a song?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings on stage?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing in live show?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy singing on in front of the crowd?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who plays piano while a young boy sings on stage?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing on stage infront of an audience?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sings in front of judges and an audience?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing to a crowd on a stage?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when do a boy sing in front of crowd?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is signing on tv in front of an audience?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"where is a boy singing in front of the crowd?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is singing a song in a stage?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play while a young boy sings on stage?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a boy singing?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who singing on stage in front of crowd?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing on a scene in front of the crowd?\",\n    \"video_name\": \"video9974\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a man who appears to be distraught doing?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"point\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a yellow sports car with a guy doing?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is so expensive?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"who shows a crashed in bumper on a yellow sports car?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pointing to the rear of a yellow sports car that have?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"damage\"\n  },\n  {\n    \"question\": \"what was broken in yellow color lamborghini car?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what does a young man show a crashed in on a yellow sports car?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"bumper\"\n  },\n  {\n    \"question\": \"who describes the function of a yellow sports car?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who illustrates what happened to a yellow car that has been in an accident?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is presenting the yellow lamborghini car which is parked?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is explaining about the parts of the yellow color car?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shows all of the damage on a lambo it has various rear end damage?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks as the parts of the yellow color car show the damage done to yellow sports car?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is introducing a yellow color vehicle?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who explains?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"what has a new yellow been got?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"dent\"\n  },\n  {\n    \"question\": \"what does the person explain about?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"dent\"\n  },\n  {\n    \"question\": \"what has been got dent?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what is a yellow color car showed on?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who explains about the dent?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is telling about a car feature?\",\n    \"video_name\": \"video9975\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person presenting the white car in?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"what is sitting extremely low to the ground has has a round circle cutout of the driver s side window?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is showing a race car that is white?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who is filming a white low rider car?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stands by a fancy white sports car with a hole in it?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is recording hi new white bmw car?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is presenting the white car in the garage?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a car from the big chief called crowmod unveiled at?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"prus\"\n  },\n  {\n    \"question\": \"where do a white drag race car with driver in black?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what does a white color car named trowmod made by big chief company s are shown here?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what do a white drag race car with driver in black in?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is person presenting in the garage?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is being shown off with it s fancy design?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person in a room filming?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a white sports car with doing?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is a person in a room doing?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"film\"\n  },\n  {\n    \"question\": \"what is car show doing?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9976\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"who walks along some trails on the top of a rocky cliff with a view in the forest?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is person walking on the big rocks in?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who is hiking in the woods?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"hike\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"when is a hiker walking through a dry field alone?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"daylight\"\n  },\n  {\n    \"question\": \"what are the natuiralist walked in alone?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"who are walked the forest in alone?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"natuiralist\"\n  },\n  {\n    \"question\": \"who is walking on the big rocks in a mountain?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is talking about a hiking trail and hearing birds singing?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"hike\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"hike\"\n  },\n  {\n    \"question\": \"what is some forest very dry and a person doing?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a hiker doing?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is there is a young man doing?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is walking through a dry field alone in the daylight?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"hiker\"\n  },\n  {\n    \"question\": \"what are a pile of small rocks balanced upon each other atop?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"who hiking around a mountain and looking at all of the nice views?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hikes down a trail as a woman talks?\",\n    \"video_name\": \"video9977\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man try to pull out?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"stone\"\n  },\n  {\n    \"question\": \"who does a man try to get a hammer?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"thor\"\n  },\n  {\n    \"question\": \"who tried to pull the stone out?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man try to get thor?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"hammer\"\n  },\n  {\n    \"question\": \"who tries to pull out his hammer?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"thor\"\n  },\n  {\n    \"question\": \"who tried to pull hammer out?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"thor\"\n  },\n  {\n    \"question\": \"who is trying to lift a hammer?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did thor try to pull out?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"hammer\"\n  },\n  {\n    \"question\": \"what do a man trying to pull a hammer from?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"stone\"\n  },\n  {\n    \"question\": \"who tries to get thor a hammer?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man try to pull a hammer out of a rock in?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what does a man try to pull a hammer out of in the rain?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who is pulling his ax out from a boulder?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to pull a man hammer from a stump?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"thor\"\n  },\n  {\n    \"question\": \"who is trying to remove a hammer from the stone?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to remove a sword from a stone?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to pull something out of a pile?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tries to pull a hammer out of a rock in the rain?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pulls a hammer out of a rock?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pull a hammer out of?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"struggle\"\n  },\n  {\n    \"question\": \"what is the behind the scenes of thor doing?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is thor doing?\",\n    \"video_name\": \"video9978\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what did the baby sit on?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is wearing costumes?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is trying on some costumes?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are children wearing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"mask\"\n  },\n  {\n    \"question\": \"who sat on the floor?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are kids in costumes going down?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who is shown dressing in different outfits and also a girl?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do children play at while wearing halloween costumes?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"home\"\n  },\n  {\n    \"question\": \"what is a boy is shown doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is boy doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is bunch of kids doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is childeren in costumes doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is children in diffrent costumes doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"pretend\"\n  },\n  {\n    \"question\": \"what is children play at home while doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is children doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what do kids show off?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"halloween\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are young children doing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"video9979\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a teen girl doing?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is pop music video featuring song about man doing?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"date\"\n  },\n  {\n    \"question\": \"what is blonde woman doing?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl with long hair on the phone doing?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who talks on the telephone?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a curly haired woman sings along to adele while doing?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what was music playing and a person doing?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a women sings an adele song while smoking and doing?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young teen talks on a rotary dial phone with a cigarette in her hand doing?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"what is a young girl holding in one hand and a cigarette in the other while singing the song rumor has it by adele?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what does a girl talk on?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what did a girl holding phone in hand and cigerete singing playing music displaying on screen?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what did a girl holding phone in hand and cigerete singing a song playing displaying on screen?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is talking through the phone while lying on a bed?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"blonde\"\n  },\n  {\n    \"question\": \"what is blonde woman talking through while lying on a bed?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is smoking?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is holding a telephone in one hand and a cigarette in the other while singing the song rumor has it by adele?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl with heavy make up singing on?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what was music playing and a person holding on to?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"who is singing into an old black telephone?\",\n    \"video_name\": \"video9980\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl flying through the air with in a cartoon?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"cape\"\n  },\n  {\n    \"question\": \"who is flying through the air with a cape in a cartoon?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl flying through with a cape in a cartoon?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a young girl flying through the air with a cape in?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is a cartoon character doing?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"who flies through space?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who flys through the air?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what does a cartoon girl fly through?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what does the character fly through?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what does a girl fly through?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what show intro?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what do a cartoon show?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"intro\"\n  },\n  {\n    \"question\": \"who flies around?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what character flying?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is flying?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is going to attack a giant robot?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"super\"\n  },\n  {\n    \"question\": \"what plays for a cartoon super heroine?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"theme\"\n  },\n  {\n    \"question\": \"what is a cartoon music video for a song doing?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a girl cartoon character doing?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is cartoon character doing?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is in a cartoon a young girl doing?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what are some animated characters doing?\",\n    \"video_name\": \"video9981\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man with messy hair doing?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is popular tv personality and chef gordon ramsey doing?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is gordon ramsey doing?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man gordon ramsay doing?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"describe\"\n  },\n  {\n    \"question\": \"what is a man and a pan doing?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a famous chef ramsay doing?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"roast\"\n  },\n  {\n    \"question\": \"what is a person in his kitchen shows how to fry the sides of a chop in a pan on a stove by doing?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is gordon ramsay doing?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what does a blonde man with a dark blue shirt teach the audience how to cook in?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is gordon ramsay frying in a kitchen?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"steak\"\n  },\n  {\n    \"question\": \"who is cooking two pieces of meat in the pan?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a person doing a cooking show and mixing the ingredients for?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"recipe\"\n  },\n  {\n    \"question\": \"what does a gentlemen in a blue shirt make a steak on a pan in?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a man prepare steak on a in?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what does a man prepare in a kitchen?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"steak\"\n  },\n  {\n    \"question\": \"what is a man cooking two pieces of in the pan?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what are ingredients put in a pan with to boil it?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a famous chef ramsay roasting in a pan?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who prepares steak on a in a kitchen?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a male chef in a blue shirt sear cuts of sirloin in a pan on?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"stovetop\"\n  },\n  {\n    \"question\": \"what do a man and a pan frying inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what do a man and a pan frying meat dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what does a blonde man with a dark blue shirt teach how to cook in a kitchen?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what does a male chef in a blue shirt sear in a pan on a stovetop?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"sirloin\"\n  },\n  {\n    \"question\": \"who ramsey wearing a blue shirt cooks 2 steaks in a pan?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"gordon\"\n  },\n  {\n    \"question\": \"what is the old men making especiallyfish item on the fry pan in the kitchen?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is the old men making the food item especiallyfish item on the fry pan in?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is gordon ramsay frying a steak in?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what do a man and a pan frying meat dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9982\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who shows how to make a grilled chicken dish?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did vegetables fried and keep on?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is some food doing?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl and a bowl doing?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what was video shows a plate of tuscan kale pasta dish with chicken and doing?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is the fish fry in?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a plate of tuscan style chicken is shown a woman explains how to prepare it while doing?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a women doing?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"who is showing how to make a healthy pasta dish?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing the plate with salad and other food?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a women explaining how to make a tuscan kale?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a seafood food dish that on a plate and also raw chicken on?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what did a yellow plate with tuscan kale with grilled chicken and the start of the recipe?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl mixing dish inside kitchen to prepare to serve to eat displaying on?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"screen\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl mixing inside kitchen to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what do a girl and a bowl mixing dish inside to prepare to serve to eat displaying on screen?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who is talking a showing off some food on a plate?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a slice of vegetables kept in?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"who is a plate of tuscan style chicken shown explains how to prepare it while showing the ingredients needed?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what shows a plate of tuscan kale pasta dish with chicken?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"who is the fish in the kitchen?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is sitting on a yellow plate?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is fry in the kitchen?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is person showing with salad and other food?\",\n    \"video_name\": \"video9983\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what about misconceptions?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what starts with one?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"countdown\"\n  },\n  {\n    \"question\": \"what does the narrator introduce s subject?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man cooking in in a cartoon?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"what is a man cooking in a kitchen in?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what presents common mistakes in peoples thinking?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what montage with a man talking about misconceptions?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who introduces the show s subject?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"narrator\"\n  },\n  {\n    \"question\": \"who is cooking in a kitchen in a cartoon?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a cartoon montage with a man doing?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a countdown of misconceptions doing?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is an animation presents common mistakes in peoples doing?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"think\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9984\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what does snow white sits in a bed looking at seven dwarf then smiles at a broom with arms?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"micky\"\n  },\n  {\n    \"question\": \"what produced by the walt disney studio?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"animation\"\n  },\n  {\n    \"question\": \"what are moving around an area?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are some cartoon characters moving around?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"area\"\n  },\n  {\n    \"question\": \"what are shown?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"disney\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does snow white sits in a bed looking at seven dwarf then pinocchio sits with?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"who does snow white sits in a bed looking at seven dwarf then sits with a kitten?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"pinocchio\"\n  },\n  {\n    \"question\": \"what is the disney them song doing?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video doing?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"introduce\"\n  },\n  {\n    \"question\": \"what is a tribute to walt disney with various stills from disney movies when you wish upon a star doing?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is this is a clip of montage set to the song when you wish upon a star doing?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is snow white sits in a bed doing?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are some cartoon characters doing?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a cartoon dolls of color and standing dolls still image on screen doing?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9985\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman coloring?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"what is the girl getting?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"bussaly\"\n  },\n  {\n    \"question\": \"who make up?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"color\"\n  },\n  {\n    \"question\": \"who is getting ready bussaly?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is the beautiful doing?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"tell\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who shows how to do eye makeup?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman discusses strategies on doing?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"contmy\"\n  },\n  {\n    \"question\": \"who do a female make up is showcasing a make up tutorial for eye shadow?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what make up artist is showcasing a make up tutorial for eye shadow?\",\n    \"video_name\": \"video9986\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what goes around the corners of a piece of paper?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"who is folding up a piece of paper?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person creating craft with?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who makes paper origami?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is folded by hands?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a paper?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person make?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"origami\"\n  },\n  {\n    \"question\": \"what is a kid?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is being folded?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person creating with the paper?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"craft\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds a white piece of paper?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person fold a white piece of?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is creating craft with the paper?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is some doing?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a video of doing?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who shows how to fold a paper properly?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"create\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9987\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what are two people playing?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"foosball\"\n  },\n  {\n    \"question\": \"what does a band play?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is a band playing?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a band perform?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is playing a song?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what plays music live video?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are playing foosball?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when is another man playing guitar?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is playing guitar in stage?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people playing various games such as fuzeball set to?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what performs a song?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is another man playing in stage?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is band doing?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some musicians doing?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is video of a band doing?\",\n    \"video_name\": \"video9988\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what was on the road by itself?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving on the road?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving a car on?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is being driven through a course?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a person drive a car down?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a person drive down the road?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives through a long street?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car being driven through?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"course\"\n  },\n  {\n    \"question\": \"what was the car on by itself?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a white car driving along?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what follows a car while music plays?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what is racing down the road?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is in a car?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a car racing down?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man in?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving along a highway?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a video follow while music plays?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving a car on the road?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a man driving on the road?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a white hatchback car doing?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is luxurious car doing?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a clip of a modern car doing?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a white car doing?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what do a white hatchback driving down the road?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who drives a car down the road?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is being driven on an empty road?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man driving a car fastly on?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is driving a car fastly on the road?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9989\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what do a show about on a cartoon show?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"superhero\"\n  },\n  {\n    \"question\": \"what are in a cartoon television show characters doing?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is an animated woman and a monkey is tied up with rope and a man doing?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is an animated cartoon doing?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a cartoon doing?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"who did a cartoon where a girl and a monkey get wrap up by?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"villain\"\n  },\n  {\n    \"question\": \"who is talking about something?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many cartoons are tied up in a vehicle?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who broke free from a cocoon?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"superhero\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who are caught in a web while being talked to by a villain and then they escape?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what show?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"television\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a cartoon hanging from?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"pipe\"\n  },\n  {\n    \"question\": \"what does cartoon girl break out of?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"trap\"\n  },\n  {\n    \"question\": \"what are animated characters hiding in?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"tunnel\"\n  },\n  {\n    \"question\": \"what is hanging from a pipe?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are two cartoons tied up in?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what did a superhero break free from?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"cocoon\"\n  },\n  {\n    \"question\": \"who burst out of their bonds?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is an animated woman and a monkey tied up with?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what are animated characters doing?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what are cartoon characters caught in while being talked to by a villain and then they escape?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"web\"\n  },\n  {\n    \"question\": \"what is a man talking about?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who breaks out of trap?\",\n    \"video_name\": \"video9990\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what does a teenage boy play?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is signing hard?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a rock band doing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"sign\"\n  },\n  {\n    \"question\": \"what is a man singing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"pay\"\n  },\n  {\n    \"question\": \"what is a group of kids doing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a disney music video with doing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a teenage band doing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are people performing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a guy paying?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing the guitar while dancing with others?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a blonde boy with a black leather jacket throw his guitar during?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"when is a band playing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man playing while dancing with others?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a rock band playing while people dance?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"what is playing music while people dance?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what does a blonde boy with a black leather jacket throw during a dance?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is performing in a music video?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"who is playing guitor?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is paying guitar?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is dancing with others?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"guitor\"\n  },\n  {\n    \"question\": \"what is a guy dancing in?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what is playing on stage?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"who is singing a song?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing in a group?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"video9991\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is guy doing?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is peoples doing?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is there is a man doing?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is there are many people who enjoy doing?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what is a guy is happy doing?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"surf\"\n  },\n  {\n    \"question\": \"what are all persons doing?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who surfs through rough ocean waters in the daytime?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"surfer\"\n  },\n  {\n    \"question\": \"who can skating over waves in sea?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is happy surfing with large waves?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a person surfing on waves in?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what can one man skating over waves in?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what are some people playing in with their skiing machines?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"who surfs a nice wave and rides a back?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man performing different stunt on?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is surfing on the beach?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is catching waves of water as he rides them in the ocean?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man catching as he rides them in the ocean?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is surfing in the ocean?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is man surfing on?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a man catching waves of as he rides them in the ocean?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a person surfing in?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what does a man doing water diving in beach stunt on?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is surfing on waves in ocean?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are numerous people riding surfboards upon the waves in?\",\n    \"video_name\": \"video9992\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what do a groups of girl in black color dress wearing cloth wearing speaking displaying on screen?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"burqa\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what do a groups of girl in black color dress wearing wearing burqa dresses speaking displaying on screen?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"cloth\"\n  },\n  {\n    \"question\": \"what does a woman discuss while in a head covering among many other women in head coverings?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"situation\"\n  },\n  {\n    \"question\": \"who speak where is go?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are several other women in?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"who is being interviewed?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman completely covered in black talking about?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"enemy\"\n  },\n  {\n    \"question\": \"who talks about matters of religion and science?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing how to do makeup?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman completely covered in black doing?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a nun lady doing?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman in a burka doing?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what is a woman discusses a nuclear situation while in a head doing?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a woman in a black doing?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a groups of girl in black color dress doing?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a young woman with a head doing?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a muslim woman doing?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a muslim woman doing?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who discusses a nuclear situation while in a head covering among many other women in head coverings?\",\n    \"video_name\": \"video9993\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is wearing costumes?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who dresses up in costumes?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who standing in the hallway?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is dressed up in costumes?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a young boy wearing?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"costume\"\n  },\n  {\n    \"question\": \"what do a boy stand in?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"who is posing for pictures?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"when do kids dress up?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"halloween\"\n  },\n  {\n    \"question\": \"who is wearing a costume?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who impersonating various fictional characters?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is little boy doing?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is kids doing?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a little kid doing?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"impersonate\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what does a boy dressed up in a superhero costume stand in?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"hallway\"\n  },\n  {\n    \"question\": \"what did boys dress up in in a hallway of a home?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"costume\"\n  },\n  {\n    \"question\": \"what are kids shown running around in with costumes?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"video9994\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is girls from the o doing?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who stand next to each other?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do girls from the o falling in?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"how many women are holding hands?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women hold hands?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who are holding hands when a romantic song is playing?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are woman doing?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"how many women are flirting?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is several woman doing?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who hands showing love?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does several woman holding hand showing?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what is scenes from a dramatic movie/show doing?\",\n    \"video_name\": \"video9995\",\n    \"answer\": \"feature\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what showcases a motorcycle?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"present\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is in a parking lot someone doing?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is person doing?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"record\"\n  },\n  {\n    \"question\": \"what is being filmed?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is someone recording the features of in a parking lot?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what showcasing a blue ninja bike?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"clip\"\n  },\n  {\n    \"question\": \"who is presenting a motorcycle?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does someone showcases?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a person presenting?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is being looked at?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is shown off?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9996\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is one lady how clean in the eye clearly by doing?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a girl makeup her eyes for facial beauty shows on screenand round yellow doing?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is women doing?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"massage\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who is holding some kind of object?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"who is showing how to prime your eyes before applying eye makeup?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a beautiful woman doing?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is sexy brunette doing?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman holding some kind of?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"object\"\n  },\n  {\n    \"question\": \"what is a women appling with fingure?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"what is applying make up all over the face?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"female\"\n  },\n  {\n    \"question\": \"what is a women appling eye shadows with?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"fingure\"\n  },\n  {\n    \"question\": \"what does a beautiful young woman apply makeup to?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what do sexy brunette putting on?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what brunette showing the shades?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"what is a beautiful young lady applying?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"primer\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what did a beautiful lady makeup very well also highlight?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"lipstick\"\n  },\n  {\n    \"question\": \"what brunette putting on eye makeup?\",\n    \"video_name\": \"video9997\",\n    \"answer\": \"sexy\"\n  },\n  {\n    \"question\": \"what are two guys with black coat doing?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a news channel is shown and the person doing?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a white man with glasses doing?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a reporter doing?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is fox five news correspondent doing?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is news reader on fox tv doing?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"what are a two men doing?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a black man and a white man doing?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is two person doing?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is the men doing?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is interviewing the parris minister about the terror in paris and an attack by the civilians?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when do men on a tv show discuss the news?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"day\"\n  },\n  {\n    \"question\": \"what is shown?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"channel\"\n  },\n  {\n    \"question\": \"what do two reporters discuss for the terrorist attacks on paris?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"plan\"\n  },\n  {\n    \"question\": \"who interviews a political candidate on terrorism?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who is a reporter interviewing about the terror attacks in paris?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"carson\"\n  },\n  {\n    \"question\": \"who talks to a man in glasses and a red tie?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"carson\"\n  },\n  {\n    \"question\": \"how many reporters discuss obama a plan for the terrorist attacks on paris?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is interviewing ben carson about the terror attacks in paris?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"when are two guys with black coat speaking in the fox news?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"sunday\"\n  },\n  {\n    \"question\": \"who is talking with a man who is on the screen?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking in the television channel?\",\n    \"video_name\": \"video9998\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a cute little girl doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl toddler doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a little girl in pink doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a woman and a baby in a home doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a barefoot toddler doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl toddler in a pink outfit doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a baby dressed in a pink outfit doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a baby in rose walking and doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"what is a kid with feeding bottle doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is baby in pink tshirt doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby in pink dress doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who does a barefoot toddler wearing a pink romper with gathered fabric hit with a blue hairbrush?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who rose walking?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a kid with feeding bottle playing on?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a little girl in pink walking through?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what do the little girl dress in the pink out fit hold?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"what is baby in pink tshirt playing with?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what do a baby in pink dress holding?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"feeding\"\n  },\n  {\n    \"question\": \"what does a barefoot toddler wearing a pink romper with gathered fabric try to amend with?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who rose smiling?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who says that is not ok?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who do a baby in pink come to beat?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"parent\"\n  },\n  {\n    \"question\": \"who is speaking about a baby girl?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is young child doing?\",\n    \"video_name\": \"video9999\",\n    \"answer\": \"walk\"\n  }\n]"
  },
  {
    "path": "model/univi/eval/questions/video_qa/msvd_a_list.json",
    "content": "[\n  \"someone\",\n  \"rifle\",\n  \"man\",\n  \"box\",\n  \"gun\",\n  \"person\",\n  \"weapon\",\n  \"contain\",\n  \"opine\",\n  \"show\",\n  \"sword\",\n  \"boy\",\n  \"kid\",\n  \"fight\",\n  \"twirl\",\n  \"put\",\n  \"demonstrate\",\n  \"dance\",\n  \"practice\",\n  \"two\",\n  \"gras\",\n  \"demonstration\",\n  \"karate\",\n  \"perform\",\n  \"path\",\n  \"wildernes\",\n  \"trail\",\n  \"road\",\n  \"style\",\n  \"lane\",\n  \"actor\",\n  \"walk\",\n  \"eagle\",\n  \"motion\",\n  \"hare\",\n  \"rabbit\",\n  \"bird\",\n  \"bunny\",\n  \"field\",\n  \"dodge\",\n  \"try\",\n  \"chase\",\n  \"water\",\n  \"cliff\",\n  \"river\",\n  \"ocean\",\n  \"rock\",\n  \"dive\",\n  \"jump\",\n  \"crust\",\n  \"dough\",\n  \"chef\",\n  \"cook\",\n  \"lay\",\n  \"spread\",\n  \"unroll\",\n  \"cut\",\n  \"roll\",\n  \"guitar\",\n  \"play\",\n  \"cat\",\n  \"dog\",\n  \"bite\",\n  \"break\",\n  \"burst\",\n  \"pop\",\n  \"attack\",\n  \"girl\",\n  \"ball\",\n  \"toddler\",\n  \"baby\",\n  \"yard\",\n  \"animal\",\n  \"throw\",\n  \"motorcycle\",\n  \"ground\",\n  \"bike\",\n  \"stunt\",\n  \"wheel\",\n  \"motorcyle\",\n  \"guy\",\n  \"motorbike\",\n  \"minibike\",\n  \"wheelie\",\n  \"dachshund\",\n  \"pool\",\n  \"swim\",\n  \"stage\",\n  \"concert\",\n  \"jeff\",\n  \"pyramid\",\n  \"school\",\n  \"form\",\n  \"kneel\",\n  \"climb\",\n  \"build\",\n  \"target\",\n  \"pistol\",\n  \"machine\",\n  \"glock\",\n  \"fire\",\n  \"shoot\",\n  \"stand\",\n  \"woman\",\n  \"knife\",\n  \"vegetable\",\n  \"lady\",\n  \"leafy\",\n  \"parsley\",\n  \"herb\",\n  \"coriander\",\n  \"chop\",\n  \"garlic\",\n  \"turnip\",\n  \"bowl\",\n  \"root\",\n  \"plant\",\n  \"pull\",\n  \"clean\",\n  \"mushroom\",\n  \"tapioca\",\n  \"cauliflower\",\n  \"food\",\n  \"dice\",\n  \"use\",\n  \"slouse\",\n  \"mall\",\n  \"jean\",\n  \"airport\",\n  \"onion\",\n  \"phone\",\n  \"telephone\",\n  \"hang\",\n  \"speak\",\n  \"talk\",\n  \"hold\",\n  \"hand\",\n  \"arm\",\n  \"star\",\n  \"shin\",\n  \"gaze\",\n  \"reach\",\n  \"stretch\",\n  \"watch\",\n  \"guinea\",\n  \"lettuce\",\n  \"vegetation\",\n  \"eat\",\n  \"tree\",\n  \"rain\",\n  \"polouse\",\n  \"vehicle\",\n  \"car\",\n  \"highway\",\n  \"maneuver\",\n  \"driver\",\n  \"cop\",\n  \"evade\",\n  \"force\",\n  \"pit\",\n  \"shrimp\",\n  \"shell\",\n  \"peel\",\n  \"prepare\",\n  \"prawn\",\n  \"fish\",\n  \"seafood\",\n  \"worm\",\n  \"tail\",\n  \"stuff\",\n  \"seasoning\",\n  \"starch\",\n  \"cover\",\n  \"season\",\n  \"leek\",\n  \"fruit\",\n  \"leak\",\n  \"somoene\",\n  \"batter\",\n  \"substance\",\n  \"flmy\",\n  \"flower\",\n  \"mix\",\n  \"pmy\",\n  \"brush\",\n  \"tempura\",\n  \"coat\",\n  \"spice\",\n  \"butter\",\n  \"fry\",\n  \"meat\",\n  \"dip\",\n  \"place\",\n  \"bread\",\n  \"oil\",\n  \"pot\",\n  \"something\",\n  \"mitsuba\",\n  \"frying\",\n  \"tray\",\n  \"grill\",\n  \"liquid\",\n  \"stir\",\n  \"cilantro\",\n  \"udon\",\n  \"pastum\",\n  \"boil\",\n  \"foodstuff\",\n  \"biscuit\",\n  \"sushi\",\n  \"wrapper\",\n  \"cheese\",\n  \"kamaboko\",\n  \"package\",\n  \"unwrap\",\n  \"wood\",\n  \"pink\",\n  \"cake\",\n  \"purple\",\n  \"kamakodo\",\n  \"lemon\",\n  \"rind\",\n  \"piece\",\n  \"skin\",\n  \"orange\",\n  \"container\",\n  \"hydrate\",\n  \"date\",\n  \"shiitake\",\n  \"fig\",\n  \"cros\",\n  \"somene\",\n  \"thing\",\n  \"score\",\n  \"broth\",\n  \"saute\",\n  \"drive\",\n  \"violin\",\n  \"microphone\",\n  \"instrument\",\n  \"fiddle\",\n  \"pluck\",\n  \"steak\",\n  \"pork\",\n  \"poke\",\n  \"pierce\",\n  \"pepper\",\n  \"sprinkle\",\n  \"plate\",\n  \"egg\",\n  \"dish\",\n  \"drop\",\n  \"street\",\n  \"motocycle\",\n  \"motor\",\n  \"lie\",\n  \"pitcher\",\n  \"soda\",\n  \"juic\",\n  \"juice\",\n  \"mixture\",\n  \"jug\",\n  \"jar\",\n  \"cucumber\",\n  \"glas\",\n  \"drinking\",\n  \"drink\",\n  \"four\",\n  \"explosion\",\n  \"blast\",\n  \"blow\",\n  \"burn\",\n  \"couch\",\n  \"sit\",\n  \"sleeping\",\n  \"groom\",\n  \"lick\",\n  \"superman\",\n  \"superhero\",\n  \"door\",\n  \"superhuman\",\n  \"giant\",\n  \"character\",\n  \"move\",\n  \"push\",\n  \"lift\",\n  \"individual\",\n  \"dirt\",\n  \"biker\",\n  \"bump\",\n  \"air\",\n  \"cycle\",\n  \"fly\",\n  \"bed\",\n  \"nap\",\n  \"sleep\",\n  \"wake\",\n  \"waken\",\n  \"hammer\",\n  \"thumb\",\n  \"finger\",\n  \"hit\",\n  \"smash\",\n  \"rope\",\n  \"walkway\",\n  \"pathway\",\n  \"house\",\n  \"skip\",\n  \"jumproping\",\n  \"jockey\",\n  \"horse\",\n  \"perimeter\",\n  \"stadium\",\n  \"ring\",\n  \"arena\",\n  \"competition\",\n  \"wrestle\",\n  \"cockfight\",\n  \"trumpet\",\n  \"club\",\n  \"song\",\n  \"menacing\",\n  \"clown\",\n  \"band\",\n  \"menace\",\n  \"look\",\n  \"beef\",\n  \"fat\",\n  \"roast\",\n  \"trim\",\n  \"bowler\",\n  \"split\",\n  \"bowling\",\n  \"remain\",\n  \"board\",\n  \"flip\",\n  \"doctor\",\n  \"emergency\",\n  \"chest\",\n  \"patient\",\n  \"gurney\",\n  \"hospital\",\n  \"die\",\n  \"bleed\",\n  \"help\",\n  \"content\",\n  \"chili\",\n  \"tin\",\n  \"dump\",\n  \"mixer\",\n  \"blender\",\n  \"cream\",\n  \"whisk\",\n  \"knead\",\n  \"whip\",\n  \"chimpanzee\",\n  \"cigarette\",\n  \"smoking\",\n  \"monkey\",\n  \"smoke\",\n  \"room\",\n  \"christma\",\n  \"wear\",\n  \"turtle\",\n  \"tortoise\",\n  \"hunt\",\n  \"ice\",\n  \"skate\",\n  \"sandwich\",\n  \"mayonnaise\",\n  \"equipment\",\n  \"mechanic\",\n  \"speaker\",\n  \"loudspeaker\",\n  \"join\",\n  \"portion\",\n  \"outer\",\n  \"clove\",\n  \"peal\",\n  \"mince\",\n  \"capsicum\",\n  \"bell\",\n  \"center\",\n  \"whole\",\n  \"half\",\n  \"apple\",\n  \"wall\",\n  \"building\",\n  \"picture\",\n  \"camera\",\n  \"photograph\",\n  \"milk\",\n  \"sauce\",\n  \"football\",\n  \"soccer\",\n  \"otter\",\n  \"beaver\",\n  \"slide\",\n  \"mango\",\n  \"avocado\",\n  \"lengthwise\",\n  \"squash\",\n  \"chew\",\n  \"mes\",\n  \"tease\",\n  \"gnaw\",\n  \"sniff\",\n  \"grocery\",\n  \"stroller\",\n  \"pram\",\n  \"store\",\n  \"supermarket\",\n  \"cart\",\n  \"bay\",\n  \"pay\",\n  \"forest\",\n  \"deer\",\n  \"pas\",\n  \"roam\",\n  \"head\",\n  \"side\",\n  \"stove\",\n  \"skillet\",\n  \"sizzle\",\n  \"machinthi\",\n  \"kanu\",\n  \"hole\",\n  \"drill\",\n  \"block\",\n  \"rhino\",\n  \"rhinocero\",\n  \"grazing\",\n  \"graze\",\n  \"bush\",\n  \"hide\",\n  \"spy\",\n  \"face\",\n  \"halt\",\n  \"luggage\",\n  \"speed\",\n  \"papaya\",\n  \"carve\",\n  \"track\",\n  \"eight\",\n  \"race\",\n  \"compete\",\n  \"sprint\",\n  \"faucet\",\n  \"bath\",\n  \"sink\",\n  \"splash\",\n  \"shower\",\n  \"playing\",\n  \"trick\",\n  \"deck\",\n  \"card\",\n  \"display\",\n  \"marley\",\n  \"ride\",\n  \"orangatan\",\n  \"orangutan\",\n  \"shirt\",\n  \"strip\",\n  \"undres\",\n  \"banana\",\n  \"bottom\",\n  \"start\",\n  \"snowboarder\",\n  \"snow\",\n  \"hill\",\n  \"slope\",\n  \"mountain\",\n  \"skier\",\n  \"ski\",\n  \"snowboard\",\n  \"potato\",\n  \"potatoe\",\n  \"grate\",\n  \"foot\",\n  \"thumper\",\n  \"cartoon\",\n  \"love\",\n  \"kis\",\n  \"dres\",\n  \"costume\",\n  \"punch\",\n  \"shake\",\n  \"underwood\",\n  \"carrie\",\n  \"carpet\",\n  \"bug\",\n  \"floor\",\n  \"witha\",\n  \"paw\",\n  \"bark\",\n  \"child\",\n  \"right\",\n  \"sofa\",\n  \"crawl\",\n  \"infant\",\n  \"snuggle\",\n  \"nuzzle\",\n  \"rub\",\n  \"cares\",\n  \"kitten\",\n  \"shoestring\",\n  \"pet\",\n  \"touch\",\n  \"shih\",\n  \"settee\",\n  \"rib\",\n  \"spare\",\n  \"bone\",\n  \"rack\",\n  \"bbq\",\n  \"three\",\n  \"spar\",\n  \"helicopter\",\n  \"airplane\",\n  \"act\",\n  \"boxer\",\n  \"audience\",\n  \"routine\",\n  \"presentation\",\n  \"book\",\n  \"call\",\n  \"read\",\n  \"receive\",\n  \"attend\",\n  \"carrot\",\n  \"lori\",\n  \"sloth\",\n  \"lorus\",\n  \"paper\",\n  \"rectangular\",\n  \"tear\",\n  \"bicycle\",\n  \"primate\",\n  \"tricycle\",\n  \"coach\",\n  \"icing\",\n  \"cupcake\",\n  \"five\",\n  \"pom\",\n  \"butt\",\n  \"cheer\",\n  \"motorcyclist\",\n  \"rider\",\n  \"motorcylist\",\n  \"crash\",\n  \"fall\",\n  \"finishing\",\n  \"artist\",\n  \"pencil\",\n  \"sketch\",\n  \"draw\",\n  \"essence\",\n  \"cooking\",\n  \"corn\",\n  \"vanilla\",\n  \"drizzle\",\n  \"thick\",\n  \"loaf\",\n  \"brown\",\n  \"swat\",\n  \"beat\",\n  \"wave\",\n  \"shotgun\",\n  \"running\",\n  \"spoon\",\n  \"table\",\n  \"meal\",\n  \"din\",\n  \"curve\",\n  \"course\",\n  \"motocros\",\n  \"lake\",\n  \"swimming\",\n  \"line\",\n  \"shallot\",\n  \"foam\",\n  \"bathing\",\n  \"bettie\",\n  \"edge\",\n  \"ledge\",\n  \"singing\",\n  \"makeup\",\n  \"eyelid\",\n  \"shadow\",\n  \"liner\",\n  \"indoor\",\n  \"gear\",\n  \"scale\",\n  \"music\",\n  \"group\",\n  \"stamp\",\n  \"tomato\",\n  \"tomatoe\",\n  \"mozzarella\",\n  \"rice\",\n  \"scoop\",\n  \"lasagna\",\n  \"colander\",\n  \"simmer\",\n  \"wrestler\",\n  \"opponent\",\n  \"fighter\",\n  \"reporter\",\n  \"sandcastle\",\n  \"sand\",\n  \"castle\",\n  \"interview\",\n  \"bar\",\n  \"fence\",\n  \"horseback\",\n  \"obstacle\",\n  \"while\",\n  \"beach\",\n  \"singer\",\n  \"hitchhiking\",\n  \"hitchhiker\",\n  \"hitch\",\n  \"ask\",\n  \"hitchhike\",\n  \"eyeliner\",\n  \"outline\",\n  \"goat\",\n  \"bleat\",\n  \"tiger\",\n  \"lion\",\n  \"albino\",\n  \"cub\",\n  \"interact\",\n  \"carriage\",\n  \"family\",\n  \"trot\",\n  \"transport\",\n  \"travel\",\n  \"row\",\n  \"hedge\",\n  \"lemur\",\n  \"furry\",\n  \"weird\",\n  \"hug\",\n  \"gather\",\n  \"huddle\",\n  \"panda\",\n  \"keeper\",\n  \"bottle\",\n  \"veterinarian\",\n  \"feed\",\n  \"balance\",\n  \"scooter\",\n  \"back\",\n  \"stay\",\n  \"instruct\",\n  \"focu\",\n  \"game\",\n  \"goal\",\n  \"kick\",\n  \"shakira\",\n  \"metal\",\n  \"pillar\",\n  \"steel\",\n  \"work\",\n  \"envelope\",\n  \"xbox360\",\n  \"headset\",\n  \"mail\",\n  \"item\",\n  \"write\",\n  \"canoe\",\n  \"oanoe\",\n  \"newscaster\",\n  \"boat\",\n  \"paddle\",\n  \"sail\",\n  \"glove\",\n  \"coffee\",\n  \"cup\",\n  \"peeler\",\n  \"potoatoe\",\n  \"scrap\",\n  \"chair\",\n  \"kitchen\",\n  \"keyboard\",\n  \"synthesizer\",\n  \"piano\",\n  \"cookie\",\n  \"boarding\",\n  \"skateboard\",\n  \"cruise\",\n  \"peddle\",\n  \"flute\",\n  \"lawn\",\n  \"squirrel\",\n  \"hop\",\n  \"teenager\",\n  \"mom\",\n  \"teenage\",\n  \"carry\",\n  \"lounge\",\n  \"couple\",\n  \"video\",\n  \"girlfriend\",\n  \"conversation\",\n  \"crying\",\n  \"cry\",\n  \"mourn\",\n  \"weep\",\n  \"sob\",\n  \"grieve\",\n  \"drip\",\n  \"church\",\n  \"sunset\",\n  \"passenger\",\n  \"bcycle\",\n  \"crossbar\",\n  \"juggle\",\n  \"tos\",\n  \"soccar\",\n  \"sportsman\",\n  \"bat\",\n  \"cricket\",\n  \"error\",\n  \"cricketer\",\n  \"crowd\",\n  \"laugh\",\n  \"smile\",\n  \"dummy\",\n  \"mannequin\",\n  \"run\",\n  \"leader\",\n  \"exercise\",\n  \"chocolate\",\n  \"chocolaty\",\n  \"baker\",\n  \"wind\",\n  \"duck\",\n  \"toy\",\n  \"stream\",\n  \"creek\",\n  \"attention\",\n  \"squirt\",\n  \"lad\",\n  \"paste\",\n  \"salt\",\n  \"powder\",\n  \"dust\",\n  \"cantaloupe\",\n  \"sweet\",\n  \"pumpkin\",\n  \"cantalopue\",\n  \"sidewalk\",\n  \"sledge\",\n  \"sledgehammer\",\n  \"pick\",\n  \"tool\",\n  \"cube\",\n  \"hair\",\n  \"braid\",\n  \"bulldog\",\n  \"wad\",\n  \"fetch\",\n  \"truck\",\n  \"bumper\",\n  \"pickup\",\n  \"gazelle\",\n  \"baboon\",\n  \"antelope\",\n  \"latter\",\n  \"fawn\",\n  \"kidnap\",\n  \"charge\",\n  \"broccoli\",\n  \"rodent\",\n  \"brocoli\",\n  \"hamster\",\n  \"eye\",\n  \"eyeshadow\",\n  \"garden\",\n  \"amongst\",\n  \"stroll\",\n  \"bench\",\n  \"swing\",\n  \"leaf\",\n  \"bak\",\n  \"mouth\",\n  \"bicyclist\",\n  \"train\",\n  \"model\",\n  \"trolley\",\n  \"strike\",\n  \"vase\",\n  \"son\",\n  \"father\",\n  \"busines\",\n  \"mand\",\n  \"cleaning\",\n  \"wash\",\n  \"hoot\",\n  \"trainer\",\n  \"leg\",\n  \"teach\",\n  \"view\",\n  \"shield\",\n  \"necklace\",\n  \"husband\",\n  \"marry\",\n  \"flag\",\n  \"dinner\",\n  \"serve\",\n  \"scene\",\n  \"herself\",\n  \"background\",\n  \"carom\",\n  \"meadow\",\n  \"jungle\",\n  \"bacon\",\n  \"aluminum\",\n  \"foil\",\n  \"square\",\n  \"lamp\",\n  \"attract\",\n  \"mat\",\n  \"doorway\",\n  \"mob\",\n  \"salaryman\",\n  \"alley\",\n  \"cooked\",\n  \"rear\",\n  \"army\",\n  \"parade\",\n  \"formation\",\n  \"march\",\n  \"teacher\",\n  \"whiteboard\",\n  \"equation\",\n  \"math\",\n  \"formula\",\n  \"problem\",\n  \"solve\",\n  \"explain\",\n  \"circle\",\n  \"oven\",\n  \"bake\",\n  \"waterfall\",\n  \"island\",\n  \"creature\",\n  \"control\",\n  \"bullet\",\n  \"yellow\",\n  \"harbor\",\n  \"coast\",\n  \"speeding\",\n  \"policeman\",\n  \"officer\",\n  \"arrest\",\n  \"tie\",\n  \"handcuff\",\n  \"bikini\",\n  \"fold\",\n  \"crocodile\",\n  \"alligator\",\n  \"nose\",\n  \"pat\",\n  \"tap\",\n  \"curl\",\n  \"bodybuilder\",\n  \"weight\",\n  \"builder\",\n  \"barbell\",\n  \"night\",\n  \"dark\",\n  \"beater\",\n  \"spin\",\n  \"cage\",\n  \"zoo\",\n  \"enclosure\",\n  \"pen\",\n  \"pace\",\n  \"mammal\",\n  \"blanket\",\n  \"plastic\",\n  \"inspect\",\n  \"examine\",\n  \"bend\",\n  \"transplant\",\n  \"harvest\",\n  \"tend\",\n  \"station\",\n  \"subway\",\n  \"transit\",\n  \"disembark\",\n  \"exit\",\n  \"desk\",\n  \"rainbow\",\n  \"meow\",\n  \"nitrogen\",\n  \"liguid\",\n  \"vapor\",\n  \"steam\",\n  \"solution\",\n  \"pester\",\n  \"grab\",\n  \"funny\",\n  \"jerboa\",\n  \"chinchilla\",\n  \"mouse\",\n  \"rat\",\n  \"scurry\",\n  \"sergeant\",\n  \"seargeant\",\n  \"soldier\",\n  \"sargent\",\n  \"troop\",\n  \"commander\",\n  \"voice\",\n  \"tapir\",\n  \"branch\",\n  \"aardvark\",\n  \"search\",\n  \"forage\",\n  \"training\",\n  \"puff\",\n  \"squeeze\",\n  \"juicing\",\n  \"extract\",\n  \"strum\",\n  \"pizza\",\n  \"enjoy\",\n  \"ukulele\",\n  \"drunk\",\n  \"post\",\n  \"pavement\",\n  \"sieve\",\n  \"somone\",\n  \"strainer\",\n  \"miniature\",\n  \"coconut\",\n  \"drain\",\n  \"armchair\",\n  \"shirtles\",\n  \"richard\",\n  \"shilpa\",\n  \"wag\",\n  \"beachside\",\n  \"lead\",\n  \"cheff\",\n  \"tower\",\n  \"shape\",\n  \"pile\",\n  \"stack\",\n  \"quadropod\",\n  \"photo\",\n  \"photographer\",\n  \"tripod\",\n  \"spike\",\n  \"lug\",\n  \"mud\",\n  \"bear\",\n  \"digging\",\n  \"dig\",\n  \"scratch\",\n  \"garage\",\n  \"enter\",\n  \"shopping\",\n  \"shop\",\n  \"browse\",\n  \"toad\",\n  \"puddle\",\n  \"town\",\n  \"neighborhood\",\n  \"desert\",\n  \"steer\",\n  \"float\",\n  \"floater\",\n  \"raft\",\n  \"parrot\",\n  \"tabletop\",\n  \"beak\",\n  \"mug\",\n  \"discussion\",\n  \"discus\",\n  \"summersault\",\n  \"axe\",\n  \"bun\",\n  \"hamburger\",\n  \"sweeper\",\n  \"vacuum\",\n  \"chicken\",\n  \"shore\",\n  \"step\",\n  \"dancing\",\n  \"elephant\",\n  \"stick\",\n  \"twig\",\n  \"stem\",\n  \"bamboo\",\n  \"rest\",\n  \"dvd\",\n  \"disc\",\n  \"disk\",\n  \"wipe\",\n  \"dab\",\n  \"fix\",\n  \"synchronization\",\n  \"bedroom\",\n  \"noise\",\n  \"frog\",\n  \"catch\",\n  \"handle\",\n  \"armles\",\n  \"puppet\",\n  \"string\",\n  \"marionette\",\n  \"seat\",\n  \"leap\",\n  \"bounce\",\n  \"zebra\",\n  \"nudge\",\n  \"stroke\",\n  \"bathroom\",\n  \"nicholson\",\n  \"attendant\",\n  \"jacket\",\n  \"park\",\n  \"coaster\",\n  \"jet\",\n  \"plane\",\n  \"runway\",\n  \"land\",\n  \"slicer\",\n  \"mandolin\",\n  \"ionion\",\n  \"cowboy\",\n  \"vampire\",\n  \"monster\",\n  \"intruder\",\n  \"poeple\",\n  \"submarine\",\n  \"ship\",\n  \"missile\",\n  \"shuttle\",\n  \"space\",\n  \"bomb\",\n  \"glide\",\n  \"beer\",\n  \"midget\",\n  \"somebody\",\n  \"goblet\",\n  \"guiter\",\n  \"pole\",\n  \"fishing\",\n  \"shave\",\n  \"mirror\",\n  \"image\",\n  \"reflection\",\n  \"shark\",\n  \"dolphin\",\n  \"fisherman\",\n  \"bait\",\n  \"steal\",\n  \"measure\",\n  \"surprise\",\n  \"jut\",\n  \"defecate\",\n  \"skateboarder\",\n  \"ramp\",\n  \"tunnel\",\n  \"mower\",\n  \"mover\",\n  \"mow\",\n  \"lawnmower\",\n  \"booty\",\n  \"lucy\",\n  \"animator\",\n  \"butterfly\",\n  \"switch\",\n  \"twist\",\n  \"treadmill\",\n  \"twisting\",\n  \"attempt\",\n  \"halloween\",\n  \"jaw\",\n  \"skull\",\n  \"mimic\",\n  \"provide\",\n  \"gravel\",\n  \"floyd\",\n  \"gilmmy\",\n  \"ban\",\n  \"tiller\",\n  \"soil\",\n  \"auger\",\n  \"till\",\n  \"bot\",\n  \"powerboat\",\n  \"yacht\",\n  \"sea\",\n  \"traverse\",\n  \"bull\",\n  \"peach\",\n  \"avoid\",\n  \"halve\",\n  \"combine\",\n  \"wooden\",\n  \"concrete\",\n  \"cement\",\n  \"brick\",\n  \"stomach\",\n  \"bust\",\n  \"boxing\",\n  \"yoga\",\n  \"meditate\",\n  \"pray\",\n  \"clay\",\n  \"piggyback\",\n  \"platform\",\n  \"body\",\n  \"weigt\",\n  \"weightlift\",\n  \"stenographer\",\n  \"stenograph\",\n  \"stenography\",\n  \"type\",\n  \"cleaver\",\n  \"capuchin\",\n  \"itch\",\n  \"way\",\n  \"moose\",\n  \"sprinkler\",\n  \"wet\",\n  \"fore\",\n  \"moonwalk\",\n  \"hiking\",\n  \"reaper\",\n  \"skeleton\",\n  \"hike\",\n  \"welsh\",\n  \"scuffle\",\n  \"frolic\",\n  \"cab\",\n  \"taxi\",\n  \"argue\",\n  \"front\",\n  \"jumper\",\n  \"trampoline\",\n  \"pounce\",\n  \"cell\",\n  \"prisoner\",\n  \"middle\",\n  \"prison\",\n  \"jail\",\n  \"figure\",\n  \"intimidate\",\n  \"belly\",\n  \"bridge\",\n  \"hanging\",\n  \"swinging\",\n  \"hedgehog\",\n  \"porcupine\",\n  \"spinner\",\n  \"bagel\",\n  \"recite\",\n  \"slap\",\n  \"letter\",\n  \"range\",\n  \"spray\",\n  \"retain\",\n  \"pilot\",\n  \"handshake\",\n  \"offer\",\n  \"hose\",\n  \"friend\",\n  \"instructor\",\n  \"arrange\",\n  \"oxiclean\",\n  \"detergent\",\n  \"cleaner\",\n  \"fill\",\n  \"tea\",\n  \"basket\",\n  \"suck\",\n  \"sip\",\n  \"suckle\",\n  \"carnival\",\n  \"coupon\",\n  \"ticket\",\n  \"trunk\",\n  \"log\",\n  \"golf\",\n  \"golfing\",\n  \"bathtub\",\n  \"tub\",\n  \"batting\",\n  \"knock\",\n  \"stretcher\",\n  \"stairmaster\",\n  \"operate\"\n]"
  },
  {
    "path": "model/univi/eval/questions/video_qa/msvd_qa.json",
    "content": "[\n  {\n    \"question\": \"who opened the box that held an automatic weapon in a gun?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what contains someone opens the lid of a corrugated cardboard?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"rifle\"\n  },\n  {\n    \"question\": \"who opens a box containing an assault rifle?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is opening a box that has a gun in it?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the automatic rifle contain opens the lid of a corrugated cardboard?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is showing a gun in a box?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is opening a box with a gun inside of it?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens up a box containing a gun?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is opening a box containing a gun?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man showing a gun pack in?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what contains someone shows the automatic rifle?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"rifle\"\n  },\n  {\n    \"question\": \"who opens a box containing a rifle?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the automatic rifle contain shows the automatic rifle?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does the automatic rifle contain someone shows?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"rifle\"\n  },\n  {\n    \"question\": \"what is the man opening with a gun inside of it?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a man opening containing a gun?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is someone showing a gun in?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is someone showing in a box?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is opining a box?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who unboxes a rifle?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens a box?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing a gun?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing a boxed weapon?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shows a rifle inside?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was an automatic weapon in?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a man opining?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who is opening a box up?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what was in the box?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"weapon\"\n  },\n  {\n    \"question\": \"what does a man unbox?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"rifle\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a man show inside?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"rifle\"\n  },\n  {\n    \"question\": \"what is a person showing?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"weapon\"\n  },\n  {\n    \"question\": \"what is a man opening up?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a man opens a box doing?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"opine\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man opens up a box doing?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"jfrrO5K_vKM_55_65\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"who gives a wushu demonstration in front of a crowd?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrated a sword routine for the crowd?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting on a martial arts display using a sword?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does sword moves in front of a crowd?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing a martial arts demonstration with a sword?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing martial arts with a sword?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performed with his sword for the audience?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating his skills with a sword in front of a crowd?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing a martial arts demonstration with?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what is a man doing martial arts with?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who is twirling a sword as he turns and moves?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a martial arts demonstration?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man demonstrating his skills with in front of a crowd?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who performs sword tricks?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man twirling as he turns and moves?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"who is swinging around a sword?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing sword tricks?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is practicing with a sword?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating fight movements?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dancing with a sword?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a sword routine?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is doing karate?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man swinging around?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what is a kid doing routine?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what is a man practicing with?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what is a man dancing with?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what does a person perform?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"sword\"\n  },\n  {\n    \"question\": \"what is a man demonstrating?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who moves?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who turns?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"twirl\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_130_142\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"how many men are giving a synchronized martial art performance in front of a crowd at a fun fair?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are putting on a display of martial art moves?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are doing martial arts in front of an audience?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two young men in karate outfits doing some kind of synchronized dance outdoors on?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"how many people perform a martial arts demonstration?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are demonstrating martial arts?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are demonstrating fighting moves?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are doing karate?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are doing fighting moves?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are performing karate moves?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are dancing?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"demonstration\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"karate\"\n  },\n  {\n    \"question\": \"what are two people performing?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"karate\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"jjl2ZMdFCsw_17_35\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is walking down a pathway lined with greenery?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking along a path through wilderness?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man walking along through wilderness?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what is a man walking along a path through?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"wildernes\"\n  },\n  {\n    \"question\": \"who is walking down a dirt road?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walked down the dirt road?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks down a dirt path?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walked down the path?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks along a trail?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking down a path?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking down the road?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking down a road?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking through the woods?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking with style?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks down a lane?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man walk along?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"trail\"\n  },\n  {\n    \"question\": \"what is a man walking down?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man walking with?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"style\"\n  },\n  {\n    \"question\": \"what does a person walk down?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"lane\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"actor\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is actor surya doing?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"jlahRlo4jlU_30_36\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what swoops down on a hare running in a field?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"eagle\"\n  },\n  {\n    \"question\": \"what is a hare running on the ground as an eagle swoops down attempting to catch it captured in?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what evades the clutches of an eagle?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"hare\"\n  },\n  {\n    \"question\": \"what does a hare evade the clutches of?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"eagle\"\n  },\n  {\n    \"question\": \"what is being chased by a bird?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what did the bird of prey attack?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what is trying to catch a rabbit?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"eagle\"\n  },\n  {\n    \"question\": \"what is a rabbit being chased by?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what swoops down on a hare?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"eagle\"\n  },\n  {\n    \"question\": \"what flees from an eagle?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"who runs across a field?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"bunny\"\n  },\n  {\n    \"question\": \"what swoops on a rabbit?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"eagle\"\n  },\n  {\n    \"question\": \"what dives for a rabbit?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"eagle\"\n  },\n  {\n    \"question\": \"what attacked the white rabbit?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is dodging an eagle?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"hare\"\n  },\n  {\n    \"question\": \"what is running from an eagle?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what does an eagle swoop on?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what is running from a eagle?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"hare\"\n  },\n  {\n    \"question\": \"what fails to catch a rabbit?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"eagle\"\n  },\n  {\n    \"question\": \"what does an eagle dive for?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what does a rabbit flee from?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"eagle\"\n  },\n  {\n    \"question\": \"what does a bunny run across?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is chasing a rabbit?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is a hare running from?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"eagle\"\n  },\n  {\n    \"question\": \"what did the large bird attack?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what is a hare dodging?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"eagle\"\n  },\n  {\n    \"question\": \"what does an eagle fail to catch?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what is a rabbit running from?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"eagle\"\n  },\n  {\n    \"question\": \"what is the giant bird chasing?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what is running fast?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what is a hare doing?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"dodge\"\n  },\n  {\n    \"question\": \"what is an eagle doing?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is the giant bird doing?\",\n    \"video_name\": \"jsEUFYhiqxU_121_128\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"who dives into the water from a tall cliff?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who jumped off the cliff into the water?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a high dive off of a cliff into the river below?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is diving off a high cliff into the water below?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dives off of a stone cliff into a river below?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping into water from a cliff?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dives off a cliff into water?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the man jump off the cliff into?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man diving off a high cliff into below?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did the man jump off into the water?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what does a man dive off of a stone cliff into below?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what does a person dive off a cliff into?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a person dive off into water?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"who dived off a cliff into the water far below?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who dived off a cliff into water?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man jumping into from a cliff?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man jumping into water from?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what did someone dive off a cliff into?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is cliff diving into water?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did someone dive off a cliff into far below?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did someone dive off into the water far below?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"who dives off a cliff?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps off a cliff?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did someone dive off into water?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"who dived off the cliffs?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dives from a cliff?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dives off of a cliff?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is diving into the ocean?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person cliff diving into?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is diving in the river?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what dives into the water?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"who is jumping off a rock?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man cliff dive into?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does someone dive off?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what is a person into water?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what does a person jump off?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what does a man dive off?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what does a man dive from?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what is a man diving into?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what does a man dive off of?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what is a man diving in?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is someone jumping off?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a person is cliff doing?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"jv-eV6jR3Qw_7_12\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is unrolling a coiled sheet of readymade dough on the kithen counter?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is unrolling a flour crust on a cookie sheet?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is laying out dough on a cookie sheet?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man unrolling on a cookie sheet?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"crust\"\n  },\n  {\n    \"question\": \"who is unrolling dough on a pan?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is spreading dough onto a pan?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man laying out on a cookie sheet?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who is spreading dough in a pan?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man spreading in a pan?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who is unrolling dough?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rolling out dough?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is spreading out dough?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is spreading the dough?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who unrolls dough?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the chef rolling out?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is the cook spreading?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is a man spreading out?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who spreads dough on a pan?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"unroll\"\n  },\n  {\n    \"question\": \"what is a man is unrolling dough and doing?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is a man roles out a dough-like substance onto a doing?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the chef doing?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"jxdubZzQrio_33_46\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is a man with long hair and a beard playing?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays an acoustic guitar?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an acoustic guitar?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played his guitar?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is aggressively playing the guitar?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man aggressively playing?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a long-haired man in glasses doing?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man with long hair and a beard doing?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man is aggressively doing?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"k-SWy-sU8cE_5_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what pops a bunch of little balloons that are on the groung?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is running around popping many balloons lying on a floor?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is breaking a lot of balloons on the floor?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is bursting a bunch of colorful balloons placed on the floor by biting them?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what plays with a bunch of balloons?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is popping balloons with its teeth?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what attacks a bunch of balloons?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what enjoyed popping balloons?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is biting balloons?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is popping little balloons?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what popped the balloons?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is bursting balloons?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is popping balloons?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing with balloons?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is attacking balloons?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing with balls?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing balloons?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is running around biting?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"bite\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"burst\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"pop\"\n  },\n  {\n    \"question\": \"what is a small dog doing?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is the dog enjoyed doing?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"pop\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"k06Ge9ANKM8_5_16\",\n    \"answer\": \"pop\"\n  },\n  {\n    \"question\": \"who played on the grass with a dog and a ball?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is throwing a ball at a puppy?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing a ball with a dog?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did the little girl play on with a dog and a ball?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what did the baby and the dog play with on the grass?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what did the baby and the dog play with the ball on?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who is playing with a pet dog and a ball?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"what is a young girl throwing at a puppy?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a small boy playing a ball with?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is playing with a puppy and a ball?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"what is a small boy playing with a dog?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who plays with a dog and ball?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby and puppy playing with?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are a baby and a dog playing with?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do a baby and a dog play with?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do a baby and a dog play in?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"who plays with a puppy?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is playing with a puppy?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with a dog?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what plays with a baby?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is playing with a baby?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who does an animal play with?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a dog playing with?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby playing with?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are a baby and a dog doing?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby and puppy doing?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a toddler and a puppy doing?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a toddler doing?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are the dog and baby doing?\",\n    \"video_name\": \"k4hhWYtaQ14_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle in circles while balancing on its rear wheel?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is performing tricks on a miniature motorized bike?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does a wheelie trick on a motorcycle?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does wheelie on a bike in circular motions on a ground?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle with the front wheel elevated in the air while he rides in a circles?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who rode his motorcyle on the back tire?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did circles on the back tire of his motorcycle in the parking lot?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does tricks on a mini motorcycle?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man riding in circles while balancing on its rear wheel?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding a bike while standing on it?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is doing stunts on a motorcycle?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does a man wheelie on a bike in circular motions on?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a man wheelie on in circular motions on a ground?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is someone riding with the front wheel elevated in the air while he rides in a circles?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is doing wheelies on his motorbike?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a boy riding while standing on it?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a kid doing stunts on?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who spins around on one wheel?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"stunt\"\n  },\n  {\n    \"question\": \"what does a stunt biker spin around on?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"who is wheeling a small motorcycle?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is performing bike stunts?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what rides a minibike?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man ride on the back tire?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"motorcyle\"\n  },\n  {\n    \"question\": \"who is doing motorcycle tricks?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a wheelie?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is someone doing stunts on?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a person doing wheelies on?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what a person stunt rides?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"minibike\"\n  },\n  {\n    \"question\": \"what is a guy riding?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"wheelie\"\n  },\n  {\n    \"question\": \"what is a man performing?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"k5OKBX2e7xA_19_32\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what jumps into a swimming pool?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"dachshund\"\n  },\n  {\n    \"question\": \"what jumped into the pool and swam?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what jumps into a pool?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is swimming in the swimming pool?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what swims in the water?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"dachshund\"\n  },\n  {\n    \"question\": \"what does a black dachshund swim in?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a dog jump into?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what jumped inot the pool?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what jumped into the pool?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what swims around in a pool?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is swimming in a pool?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a dog swim around in?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what did the dog jump?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is a dog swimming in?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what swims?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"k8l4ETsylVY_9_18\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"when is a man playing the guitar in front of an audience?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is playing the guitar on stage in front of an audience?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar at a concert?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar on a stage?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played his guitar on stage?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"when did the rock star play his guitar?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man playing on stage in front of an audience?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is jeff beck playing?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is performing on the electric guitar?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing at a concert?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing on a stage?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when is a man playing guitar?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is jeff beck playing onstage?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing guitar at?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"jeff\"\n  },\n  {\n    \"question\": \"who is playing the guitar onstage?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"jeff\"\n  },\n  {\n    \"question\": \"what did the rock star play on stage?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing electric guitar?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an electric guitar?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what plays his guitar onstage?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"jeff\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does jeff beck play onstage?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays guitar?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an artist playing?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an artist doing?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is jeff beck doing?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"k9Brw_0gncU_14_33\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did a bunch of people make a pyramid on?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what did a bunch of people make on the grass?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"what do a group of people create?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"what do a group of people make?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"what are school students forming?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"who are forming a body pyramid?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"school\"\n  },\n  {\n    \"question\": \"what are eleven people forming?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"what did the kids make?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"what are people forming?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"what are several people making?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"what are some people making?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"what do some people form?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"what are people building?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"what are the people making?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"pyramid\"\n  },\n  {\n    \"question\": \"what are school students doing?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"form\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"kneel\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"form\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what are eleven people doing?\",\n    \"video_name\": \"kBMsuhDvg88_45_64\",\n    \"answer\": \"form\"\n  },\n  {\n    \"question\": \"who is firing some type of firearm on full automatic?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shot an automatic gun at a target?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fires a gun in a shooting range?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man shoot an automatic gun at?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"what did a man shoot at a target?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a man fire in a shooting range?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is firing an automatic pistol?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots a 9mm automatic?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shot an automatic pistol?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting a machine gun?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting off a gun?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting a gun?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rapidly fires a gun?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rapidly firing his glock?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man shoot?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"pistol\"\n  },\n  {\n    \"question\": \"what is a man shooting off?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is the man shooting?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a man shooting?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a man rapidly fire?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who a man is rapidly firing?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"glock\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man is rapidly doing?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"kBjUDCyDCuI_20_26\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who is finely chopping a bunch of fresh herbs?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping a green vegetable with a knife?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person chopping a green vegetable with?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is finely chopping up a green leafy substance?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person chopping with a knife?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"who dices a leafy green vegetable?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who chopped up the leafy spice?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is cutting coriander leaves?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping herbs?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is chopping up herbs?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping an herb?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting up fresh herbs?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cut up the parsley?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is chopping leaves?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is finely dicing vegetables?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady chop up?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"leafy\"\n  },\n  {\n    \"question\": \"what did the lady cut up?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"parsley\"\n  },\n  {\n    \"question\": \"what is a person chopping?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what is a woman chopping up?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what is a woman chopping?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"coriander\"\n  },\n  {\n    \"question\": \"what is a woman cutting up?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what are being chopped?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what herbs?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman is finely doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is someone is finely doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_248_293\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"who peels stem of a garlic bulb open to separate the garlic pods?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cut off the roots of a turnip?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is taking the roots off a clove of garlic?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is removing garlic from theit stalks?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts the roots and stem of a garlic bulb?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts some raw onions in a bowl?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is removing the root from the garlic?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is cleaning what looks like a leek or maybe a head of garlic to be used in cooking?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cut the roots off a turnip?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman removing from theit stalks?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"who is cutting roots off a vegetable?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady cut off the roots of?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"turnip\"\n  },\n  {\n    \"question\": \"what did the girl cut the roots off?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"turnip\"\n  },\n  {\n    \"question\": \"what does a man put some raw onions in?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is the woman removing from the garlic?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"root\"\n  },\n  {\n    \"question\": \"what is the woman removing the root from?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"who removes the root of garlic?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is garlic being processed into?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is cutting garlic from plant?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person remove the root of?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what is being processed into a bowl?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"who is pulling garlic bulbs apart?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cutting garlic from?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what is a woman cutting from plant?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what is a woman pulling apart?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_295_330\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"who is cutting garlic into pieces with a knife?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person cutting garlic into pieces with?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a person cutting into pieces with a knife?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what does a woman finely chops a few garlic pod using?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is chopping garlic cloves?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who dices a vegetable?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who chopped up a turnip?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cut up an edible root?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing some tapioca?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dicing vegetables?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts up some cauliflower?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is chopping a mushroom?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cutting garlic?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did someone chop up?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"turnip\"\n  },\n  {\n    \"question\": \"what did someone cut up?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"root\"\n  },\n  {\n    \"question\": \"what is a cook chopping?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"mushroom\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"tapioca\"\n  },\n  {\n    \"question\": \"what does a cook cut up?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"cauliflower\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"who is dicing garlic?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is chopping up garlic?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is chopped up?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a cook doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is a woman finely chops a few garlic pods doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kEGmZDpZ_RE_352_370\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is wyclef jean singing in?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"what is wyclef jean playing?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who sang to a lady in the airport?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar in an airport?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing in a mall?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"jean\"\n  },\n  {\n    \"question\": \"who played his guitar to a women in the airport?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar in an airport?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"jean\"\n  },\n  {\n    \"question\": \"what is a man playing in an airport?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing a guitar in?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what did the man play his guitar to a women in?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what is a man playing guitar in?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"who is singing in an airport?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar and singing?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played his guitar?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man play to a women in the airport?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man singing in?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what did a man play?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is wyclef jean doing?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is wyclef doing?\",\n    \"video_name\": \"kI6MWZrl8v8_149_161\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who cuts an onion into thin slivers with a cleaver?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing one half of a peeled white onion using a large knife?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man cut into thin slivers with a cleaver?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is cutting an onion into slices?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cutting into slices?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who sliced up an onion?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who sliced the onion?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is sliced into wedges?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is slicing onions?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cutting an onion?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting up an onion?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a chef slice up?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what did the chef slice?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is cutting and onion?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a chef slicing?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man cutting up?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is being sliced?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is being cut?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"kIZanu909lw_67_80\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who places the receiver of the phone back on the base?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a baby girl place the receiver of back on the base?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is hanging up a phone?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is hanging up the phone?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who picks up a telephone?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who hung up the telephone?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is speaking on telephone?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby girl hanging up?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a young girl hanging up?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a little girl hanging up?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who hangs up a phone?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is talking on a phone?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is talking on the phone?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who picks up a phone?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who puts down the telephone?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"what talks on the phone?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what did the little girl hang up?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what does a baby talk on?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a little girl hang up?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a baby talking on?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is the baby talking on?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a baby speaking on?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what does a toddler put down?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what does a baby pick up?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a baby hang up?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a baby hanging up?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a baby girl doing?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a baby picks up a telephone and doing?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is after doing?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the baby doing?\",\n    \"video_name\": \"kJY5BRCNAs4_3_6\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is gazing intently at his palm outstretched against a bright yellow and brown colored triangular patch?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is staring at a yellow triangle that appears on the back of the hand?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stares at the symbol on his hand?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at the back of his open hand?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is watching the triforce appear on his hand?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who has his arm outstretched?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stretching out his arm?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is staring at his hand?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who extends his hand?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reaching out his hand?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding out his hand?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man staring at?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a man stretching out?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what does a man have?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what is a man staring at?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a man extend?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a man reaching out?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is the man holding out?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a man holds his hand in the air while doing?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a hand is shown with it 's fingers spread and a light doing?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"shin\"\n  },\n  {\n    \"question\": \"what is a man has his arm outstretched and doing?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"gaze\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"reach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"stretch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"kKGehSw5ht8_39_45\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"how many guinea pigs eat lettuce?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who ate blades of grass?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"guinea\"\n  },\n  {\n    \"question\": \"how many guinea pigs are eating vegetation?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guinea pigs are eating leaves?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the guinea pigs eat blades of?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"how many hamsters are eating leaves?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who ate the leaves?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"guinea\"\n  },\n  {\n    \"question\": \"how many pigs are eating their food?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many hamsters are eating?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are eating vegetation?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"guinea\"\n  },\n  {\n    \"question\": \"who are eating leaves?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"guinea\"\n  },\n  {\n    \"question\": \"who eat lettuce?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"guinea\"\n  },\n  {\n    \"question\": \"what do two guinea pigs eat?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"lettuce\"\n  },\n  {\n    \"question\": \"what are two guinea pigs eating?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"vegetation\"\n  },\n  {\n    \"question\": \"what are two pigs eating?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who are eating?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"guinea\"\n  },\n  {\n    \"question\": \"what are two hamsters doing?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are hamsters doing?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two pigs doing?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two guinea pigs doing?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are gerbal'sa doing?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is two guinea pigs seated beside each other are rapidly doing?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are the guinea pigs doing?\",\n    \"video_name\": \"kNHivduxQWg_0_14\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who danced in the rain by the tree?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is dancing by a large tree in the rain?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing in the rain under a tree?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing in a large tree in the rain?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady dance in the rain by?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what did the lady dance in by the tree?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is a woman dancing by a large tree in?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is a woman dancing in the rain under?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is a woman dancing in under a tree?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is a woman dancing in a large tree in?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who danced in the rain?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who dances in the rain?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing in rain?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing in the rain?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the girl dance in?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what does a woman dance in?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is a woman dancing in?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is the woman dancing in?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kRNHJSc4AXE_220_228\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is chasing another car that spins out of control?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what is chasing another vehicle on the highway and the police vehicle bumps the other vehicle?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what is a police vehicle chasing on the highway and the police vehicle bumps the other vehicle?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what uses the pit maneuver on another car?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what led the police on chase on the highway?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did the car lead on chase on the highway?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what did the car lead the police on chase on?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what did the car lead the police on on the highway?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what chased a car on the highway?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what does a police car use the pit maneuver on?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did the police chase a car on?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what did the police chase on the highway?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a police car use on another car?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"maneuver\"\n  },\n  {\n    \"question\": \"what is forcing a car to spin out?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what is being chased by the police?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what rams another car?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what spins completely around during a police pursuit?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a police car forcing to spin out?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is the car being chased by?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who is evading police officers?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what is police chasing?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is pitting another car?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what does a car ram?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is chasing a car?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"cop\"\n  },\n  {\n    \"question\": \"who is a driver evading?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"what makes it spin out?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a police car pitting?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a cop chasing?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a police car doing?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a police car bumps into a car it 's doing?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a police vehicle doing?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a driver doing?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"evade\"\n  },\n  {\n    \"question\": \"what is police doing?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a police car doing?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"force\"\n  },\n  {\n    \"question\": \"what is a police car doing?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"pit\"\n  },\n  {\n    \"question\": \"what is a cop doing?\",\n    \"video_name\": \"kSzS_lFtJDk_55_70\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"who is peeling a large shrimp in a glass bowl of water?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who peels a shell off of a piece of seafood?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman peeling in a glass bowl of water?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who peeled the shrimp in the water?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is peeling the shell from shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman peeling the shell from?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a woman peeling from shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"shell\"\n  },\n  {\n    \"question\": \"who is preparing shrimps?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who peels a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who peeled the shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is peeling shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who do the lady peel?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who does a woman peel?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is the woman peeling?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman peeling?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_145_151\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"who peels a large shrimp over a bowl of water?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is taking the shells off some prawns?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who takes the shell off a piece of seafood?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who then places the shrimp on what appears to be a paper towel?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman then place on what appears to be a paper towel?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what does a woman take off a piece of seafood?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"shell\"\n  },\n  {\n    \"question\": \"who is peeling prawns?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who peeled the shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who peels a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is peeling a prawn?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who peels shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing some fish?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is someone peeling?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who do the lady peel?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman peeling?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who does a person peel?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is the woman peeling?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a man peeling?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a woman peeling?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"prawn\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_147_153\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"who cut the tail and body of a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing shrimp with a knife?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did the lady cut the tail and body of?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a person slicing with a knife?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a person slicing shrimp with?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who cuts a piece of seafood?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing shrimp for cooking?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman cut a piece of?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"who butterflies a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman preparing for cooking?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is preparing shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cleaning shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who slices a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is peeling a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts up a worm?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing some fish?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cleaning a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who a woman butterflies?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman slicing?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman peeling?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who does a person slice?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman preparing?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman cleaning?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman cutting?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what does a woman cut up?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"worm\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_152_164\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who cuts into the tail of a peeled shrimp lengthwise?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cuts off the tail of a peeled shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a person with a knife slicing?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who cuts up a piece of seafood?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person cut up a piece of?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"who is deveining the shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who butterflies a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is removing the tail?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting shrimps?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a prawn?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cut the shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is preparing some shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is the woman deveining?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who a woman butterflies?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is cleaning shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cuts shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did the lady cut?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is the woman removing?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"who is a woman slicing?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is someone cleaning?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman preparing?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who does a woman cut?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is someone peeling?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"prawn\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person with a knife doing?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_154_165\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"who sprinkled stuff on the shrimp in the bowl?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is putting seasoning into a bowl containing two prawns?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is covering shrimp with corn starch?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts some seasoning on some worms?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman covering with corn starch?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what did the lady sprinkle on the shrimp in the bowl?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"who is seasoning shrimp in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is preparing shrimp in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a person seasoning in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman preparing in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a man preparing in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what does a woman put on some worms?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"seasoning\"\n  },\n  {\n    \"question\": \"who is preparing prawns for cooking?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who seasons two pieces of seafood?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person seasoning shrimp in?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is adding ingredients to shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman covering shrimp with?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"starch\"\n  },\n  {\n    \"question\": \"what is a woman preparing shrimp in?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man preparing shrimp in?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"when shrimp in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing shrimps to cook?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is seasoning seafood?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is seasoning shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is seasoning the shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what a woman seasons two pieces of?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"who flours shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a woman seasons shrimp in?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is someone seasoning?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who does a person flour?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is the woman seasoning?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a person seasoning?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"what is woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_167_181\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"who is cutting pieces off of a leek using diagonal slices?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a leek into diagonal slices?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing an onion into diagonal pieces?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a large green onion into pieces?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing onions with a large knife?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cutting pieces off of using diagonal slices?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"leek\"\n  },\n  {\n    \"question\": \"what is a woman slicing into diagonal pieces?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman cutting into diagonal slices?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"leek\"\n  },\n  {\n    \"question\": \"who is slicing welsh onion?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing leeks?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sliced a green onion?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing a welsh onion?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a welsh onion?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a leek?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing onions?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cut the green onion?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who cut up a green onion?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is chopping an onion?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing vegetables?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing some vegetables?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping a vegetable?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts a long vegetable?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts up vegetables?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting an onion?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting an onion up?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a vegetable?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a leak?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who slices fruit?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts vegetables?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady slice?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who slices food?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the lady cut?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is the woman slicing?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"leek\"\n  },\n  {\n    \"question\": \"what did the lady cut up?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a woman slice?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what does a person slice?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman cutting up?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a woman cut?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"leak\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman with a knife doing?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_17_23\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is making incisions on a raw shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cutting slices into pieces of shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making diagonal cuts gently across the body of a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing small cuts into the shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making small cuts into a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a person with a knife slicing?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is the woman slicing small cuts into?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who carefully cuts a piece of seafood?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is someone making small cuts into?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is someoen slicing?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what does a person carefully cut a piece of?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"who is making cuts into shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who sliced the jumbo shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing some prawns?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sliced the shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is someone making cuts into?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who slices a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing up a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cuts up a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting a shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did the lady slice?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a person slicing up?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who does a person slice?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is someone cutting?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who does a person cut up?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman cutting?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person with a knife doing?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someoen doing?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_192_196\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who stired in the dry ingredients in the water to make a batter?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"somoene\"\n  },\n  {\n    \"question\": \"who did somoene stir in the dry ingredients in the water to make?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who pours a powdery substance into a bowl of clear liquid?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who added the dry ingredients to the water for the batter?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who did the lady add the dry ingredients to the water for?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who stirs the mixture with chopsticks?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who mixes flour and water in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the lady add the dry ingredients to for the batter?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is mixing powdered ingredients with water?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman pour into a bowl of clear liquid?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"substance\"\n  },\n  {\n    \"question\": \"who is mixing flour and water in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing water and a powder in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is mixing flour in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring a flour into water?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person mixing powdered ingredients with?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a person pouring a flour into?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who stirs flower with water?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a woman mixing flour and water in?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person mixing water and a powder in?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a woman mixing in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman mixing flour in?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is adding flour to water?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person pouring into water?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"who is making a flour batter?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a chef stir flower with?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is mixing ingrediants?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who mixes up some ingredients?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what does a chef stir with water?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"what is a woman adding flour to?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman adding to water?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"who is mixing flour and water?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing water and flour?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a woman making?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"what is a person mixing?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the woman mixing?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_206_213\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who is coating some kind of gray meat with flour using a brush?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is using a brush to brush something on strips of a grayish looking substance?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone using to brush something on strips of a grayish looking substance?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"who is brushing tempura flour on two shrimps?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who brushes a substance on two pieces of seafood?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is brushing flour onto shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman brushing on two shrimps?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"tempura\"\n  },\n  {\n    \"question\": \"who is a woman brushing flour onto?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is spicing some raw shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what flour onto shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who brushes some shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who buttered the shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman brushing onto shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"who buttered the fish?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who do a woman brushes flour onto?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is brushing shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is brushing some shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is buttering the shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is bastng food?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing some fish?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a chef spicing?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who did the lady butter?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is the woman buttering?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman brushing?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what did the lady butter?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a woman bastng?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"coat\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"spice\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_217_222\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"who dips a shrimp into a bowl containing flour batter and coats it on both sides?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dipping a piece of fish into some batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is placing shrimp in a bowl of sauce?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dipping prawns into a batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is battering food to deep fry?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dipping shrimp into the batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting shrimp into a batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman placing in a bowl of sauce?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman dipping a piece of fish into?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is the woman dipping into the batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman putting into a batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is putting fish into a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman dipping a piece of into some batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a woman battering to deep fry?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is a woman dipping prawns into?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who dipped the shrimp in batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who dips a shrimp in batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is the woman dipping shrimp into?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who dips a shrimp in butter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman putting shrimp into?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is breading meat to fry?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman putting into a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who batters a piece of seafood?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dipping fish into batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman battering food to?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a woman putting fish into?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is breading shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman batter a piece of?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"what shrimp into a batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone breading to fry?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who battered the shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is a woman dipping fish into?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who did a woman dips shrimp into?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"what is a woman dipping into batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who did the lady batter?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman breading?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"dip\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a woman dips a shrimp into a bowl doing?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_222_227\",\n    \"answer\": \"dip\"\n  },\n  {\n    \"question\": \"who is placing battered fish into hot oil to fry?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who put the breaded shrimp in the hot oil?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is placing food into a frying pan of liquid?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who put the battered shrimp in the hot oil?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is frying shrimp in a large pan?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts a piece of seafood into a pot of hot oil?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is deep frying a piece of fish?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman placing battered into hot oil to fry?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a person placing into a frying pan of liquid?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is a woman frying in a large pan?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a woman placing battered fish into to fry?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who did the lady put in the hot oil?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what does a woman put a piece of into a pot of hot oil?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"who is frying shrimp tempura?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying shrimps?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is frying some shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what sizzles in a pot?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is frying something?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is frying a food?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does some fish sizzle in?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is a chef frying?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is someone frying?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is the woman frying?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"tempura\"\n  },\n  {\n    \"question\": \"what is someone frying?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person frying?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is frying?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is frying?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is someone is deep doing?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is food doing?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_228_232\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who is cutting a leafy green plant into small pieces with a knife?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping a small bunch of mitsuba into 1 inch pieces using a knife?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping the stems and leaves of a green herb?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a leafy green plant into small pieces?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cutting a leafy green plant into small pieces with?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a woman chopping a small bunch of into 1 inch pieces using a knife?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"mitsuba\"\n  },\n  {\n    \"question\": \"what is a woman with a knife slicing?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"who is slicing parsley with a knife?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what the leaves of a green herb?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dices a leafy plant?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing coriander leaves?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping cilantro?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sliced the greens?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is chopping herbs?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who chopped up the greens?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing some parsley?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping some herbs?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing vegetables?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts up some parsley?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cut up the greens?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman slicing parsley with?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is cutting herbs?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping some leaves?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting some herbs?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing some leaves?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts vegetables?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman dice?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"leafy\"\n  },\n  {\n    \"question\": \"what is a woman chopping?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"coriander\"\n  },\n  {\n    \"question\": \"what does a woman cut up?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"parsley\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"who is chopping parsley?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing parsley?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping up parsley?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what cilantro?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting up parsley?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what the stems?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the lady doing?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman with a knife doing?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman chops a small bunch of mitsuba japanese parsley into one inch long pieces doing?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_24_31\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is removing fried shrimp from cooking oil with chopsticks?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who removes seafood from a pot of hot oil?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is removing shrimp from a frying pan?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who took out the fried shrimp from the hot oil?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who puts some cooked seafood on a tray?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is removing shrimp from a pot of oil?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman removing from cooking oil with chopsticks?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman removing from a frying pan?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman removing from a pot of oil?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is stirring grabs in a pot?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did the lady take out from the hot oil?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is placing shrimp on a grill?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman remove from a pot of hot oil?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"who is a person placing on a grill?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a woman removing shrimp from pan?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"what does a woman put some cooked seafood on?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what does a woman put on a tray?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"what is a woman stirring grabs in?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a person placing shrimp on?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"who is frying shrimp tempura?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying shrimps?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is food taken out of?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"who is frying shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying some shrimp?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is frying food?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is taken out of a liquid?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is frying something?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a chef frying?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is the woman frying?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"tempura\"\n  },\n  {\n    \"question\": \"what is someone frying?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person frying?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_251_260\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who is cutting the stems and leaves of an herb into pieces?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a green leafy plant into small pieces?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a green vegetable with a knife?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cutting a green vegetable with?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a person with a knife cutting?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"what is a woman cutting with a knife?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"what does a woman chops the leave of?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what the leaves of an herb?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who chops some herbs?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is chopping coriander?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping cilantro?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping herbs?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping some parsley?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing herbs?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who cut up greens?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is cutting coriander?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts up a leafy plant?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts up some parsley?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting cilantro?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing some vegetables?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut up the greens?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is cutting herbs?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cuts up a green plant?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what a chef chops?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what is a chef slicing?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what is a woman chopping?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"coriander\"\n  },\n  {\n    \"question\": \"what is someone cutting?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what is a person cutting?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"cilantro\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what does a woman cut up?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"who is chopping parsley?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing parsley?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is chopping up parsley?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts up parsley?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what the stems?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person with a knife doing?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_25_32\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who drops frozen udon noodles in boiling water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who put the dried noodles in the hot water to cook?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who places a container of noodles in a pan of water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who adds noodles to a pan of boiling water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are placed into a pot of boiling water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"udon\"\n  },\n  {\n    \"question\": \"who is adding pasta to a pot of water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who put the noodles into the hot water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is boiling a food in the water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is boiling noodles in a pot?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman place a container of noodles in a pan of?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who puts some pasta in some water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirs noodles into boiling water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stirs with chopsticks?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman adding to a pot of water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"who puts noodles into boiling water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman put some pasta in?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman boiling a food in?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a woman put in some water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is a woman boiling in the water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is placing noodles into water?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman boiling noodles in?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is boiling noodles?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking noodles?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman placing noodles into?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is making noodles?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman adds noodles to a pan of doing?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is a woman puts noodles into doing?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a woman stirs noodles into doing?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are noodles doing?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is a woman drops frozen udon noodles in doing?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is frozen udon noodles are placed into a pot of doing?\",\n    \"video_name\": \"kWLNZzuo3do_262_270\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"who unwraps some foodstuff on a piece of wood?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is opening a packet of biscuit?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is removing the wrapper from a food?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is opening a package of sushi?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman unwrap on a piece of wood?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"foodstuff\"\n  },\n  {\n    \"question\": \"what is a woman opening a packet of?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"biscuit\"\n  },\n  {\n    \"question\": \"what is a woman removing the wrapper from?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman opening a package of?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"sushi\"\n  },\n  {\n    \"question\": \"who opened a brick of cheese?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman removing from a food?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"wrapper\"\n  },\n  {\n    \"question\": \"who opened a package of cheese?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is opening a fish cake package?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady open a brick of?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"who is unwrapping kamaboko?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who unwraps a pink vegetable?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady open a package of?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"who unwraps an item?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is unwrapping a kamaboko?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is unwrapping some cheese?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who opens a food package?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is slicing something?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who unwraps food?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is opening a package?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is opening something?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman unwrapping?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"kamaboko\"\n  },\n  {\n    \"question\": \"what does a woman unwrap?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman unwrapping?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"kamaboko\"\n  },\n  {\n    \"question\": \"what does a chef open?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"unwrap\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_31_37\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who slices a white with pink rind substance off a wooden block?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who separates a small pink loaf from a block of wood?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who took the cheese off the wooden board?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who took the cheese off the wood block?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is removing food from a piece of wood?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing off the fish cake from the wood?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who separates kamaboko from a wood block?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman with a knife peeling pink food from?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what did the lady take off the wooden board?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what did the lady take off the wood block?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a woman with a knife peeling from wood?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"what does a woman separate from a wood block?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"kamaboko\"\n  },\n  {\n    \"question\": \"what is the woman slicing off the fish cake from?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is a woman removing from a piece of wood?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is the woman slicing off from the wood?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"who is slicing sushi?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts up some purple food?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing some cheese?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing food?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing something?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting some food?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman cut up?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"purple\"\n  },\n  {\n    \"question\": \"who is slicing tofu?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a woman with a knife doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman separates the kamaboko from its base doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_42\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who is slicing a white substance with a pink rind?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts a pink loaf with a knife?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who slices sushi with a large knife?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman slicing with a pink rind?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"substance\"\n  },\n  {\n    \"question\": \"what does a woman slice with a large knife?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"sushi\"\n  },\n  {\n    \"question\": \"who is slicing some kamaboko?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman cut a pink loaf with?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who sliced a pink and white loaf?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a woman cut with a knife?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"pink\"\n  },\n  {\n    \"question\": \"who is slicing kamakodo?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing fish cake?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sliced the cheese?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who cuts up a pink vegetable?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing some vegetables?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing food?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting some cheese?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing something?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a woman slicing?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"kamaboko\"\n  },\n  {\n    \"question\": \"what did the lady slice?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"who slices food?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"kamakodo\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is the woman slicing?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"cake\"\n  },\n  {\n    \"question\": \"what does a person slice?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person slicing?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman cut up?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman with a knife doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_38_47\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who cuts a small thin round peel from a yuzu fruit using a large knife?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cut a small piece of lemon peel off of a lemon?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a bit of peel off of a lemon?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts off a small piece of lemon rind?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cut a pince of lemon rind?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing a peel of yellow lemon?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts off a piece of lemon rind?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts a small piece of rind off a lemon?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a small yuzu peel?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting pieces of peel off of a lemon?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cut a piece of lemon rind?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is cutting a piece of peeling off a food?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who carefully slices off a piece of lemon rind?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a woman cut a small piece of lemon peel off of?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"who makes a fine cut on a vegetable?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a piece off a vegetable?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling the skin from a lemon?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady cut a pince of?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"rind\"\n  },\n  {\n    \"question\": \"what did the lady cut a piece of?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"rind\"\n  },\n  {\n    \"question\": \"what is a woman slicing a peel of?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what does a woman cut off a small piece of?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"rind\"\n  },\n  {\n    \"question\": \"what is a woman peeling off a vegetable?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"piece\"\n  },\n  {\n    \"question\": \"what does a woman cut off a piece of?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"rind\"\n  },\n  {\n    \"question\": \"what is a woman peeling from a lemon?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what is a woman peeling the skin from?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what does a woman carefully slice off a piece of?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"rind\"\n  },\n  {\n    \"question\": \"who cut some lemon rind?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who slices orange peel?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing lemon peel?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting lemon peel?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is peeling lemon?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling orange?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling an orange?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a lemon?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a lemon?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling something?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who carefully slices a lemon?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts vegetables?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman slice?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is a person slicing?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what is a woman peeling?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is the woman peeling?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what does a woman carefully slice?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman cuts a small thin round peel from a yuzu fruit doing?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_48_53\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is pouring water into a plastic bowl of mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who pours some water on an unknown brown food?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding water to a bowl of mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts mushrooms and water in a plastic container?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who put the mushrooms and water in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is pouring water and mushrooms in a container?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is hydrating mushrooms in a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who put the mushrooms and water into a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is someone pouring into a plastic bowl of mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a woman pour on an unknown brown food?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman adding to a bowl of mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who pours water onto mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady put the mushrooms and water in?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who poured water over the mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pours water on mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman put in a plastic container?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do the lady put the mushrooms and water into?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person pouring water and mushrooms in?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what is a woman hydrating mushrooms in?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person pouring in a container?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who puts water on mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being poured onto dried mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is adding water to mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what puts water onto some mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did the woman pour over the mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a woman pour onto mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is mixing ingrediants?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does someone put onto some mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a person pour on mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman adding to mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a person put on mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"hydrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_56_62\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"how many perpendicular slits does a woman make on the top using a knife?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who cuts off the stem of a dark brown colored mushroom?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who makes two perpendicular slits on the top using a knife?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts the stem off of a mushroom?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting a mushroom with a large knife?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person with a knife slicing?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"mushroom\"\n  },\n  {\n    \"question\": \"what does a person cut the stem off of?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"mushroom\"\n  },\n  {\n    \"question\": \"what is a man cutting with a large knife?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"mushroom\"\n  },\n  {\n    \"question\": \"who slices a shiitake mushroom?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is slicing mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who slices a mushroom?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts up an unidentified food?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cut the fig?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is cutting mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cut up a date?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing food?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a mushroom?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"when did the lady cut up?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"date\"\n  },\n  {\n    \"question\": \"what does a chef slice?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"shiitake\"\n  },\n  {\n    \"question\": \"what did the lady cut?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"fig\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a person slice?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"mushroom\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"mushroom\"\n  },\n  {\n    \"question\": \"what is someone cutting?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"mushroom\"\n  },\n  {\n    \"question\": \"what does a person cut up?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person with a knife doing?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_76_80\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is making cuts in dried figs with a knife?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone making cuts in dried figs with?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is cutting mushrooms with a knife?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does the stem of the soaked is cut into the caps of each mushroom?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is somene slicing?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is making cuts into mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person cutting mushrooms with?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who sliced the figs?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing something?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"somene\"\n  },\n  {\n    \"question\": \"who is slicing mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who cut the dried fruit?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts up some squishy thing?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is scoring mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts a mushroom?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting mushroom?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting up some mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting meat?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting something?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the man cut?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what is someone cutting?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"mushroom\"\n  },\n  {\n    \"question\": \"what does a woman cut up?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what does a person cut?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"mushroom\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a person cutting?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is somene doing?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"kWLNZzuo3do_77_83\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who pours water into a bowl of unidentified brown food?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who poured a broth over the mushrooms in a pan?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who poured a broth over the mushrooms in the pan?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is sauteing mushrooms in a frying pan?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who put mushrooms into a pot with water?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts mushrooms into a pot of water?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts mushrooms in a pot to cook?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring mushrooms and sauce into a bowl?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts mushrooms into a metal saucepan?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding some mushrooms and liquid to a pot?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman pour into a bowl of unidentified brown food?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did the lady pour over the mushrooms in a pan?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"broth\"\n  },\n  {\n    \"question\": \"what did the lady pour over the mushrooms in the pan?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"broth\"\n  },\n  {\n    \"question\": \"what did a woman put mushrooms into with water?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what did a woman put mushrooms into a pot with?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman sauteing mushrooms in pan?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"who cooks mushrooms in a pot?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cooks mushrooms in a pan?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who covers mushrooms with water?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman pouring mushrooms and sauce into?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a woman adding some mushrooms and liquid to?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is adding water to mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman cover mushrooms with?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is boiling mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is boiling the mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman adding to mushrooms?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is cooking something?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"saute\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"kWLNZzuo3do_86_93\",\n    \"answer\": \"boil\"\n  },\n  {\n    \"question\": \"who gave the woman a ride on the motorcycle?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a bike with a woman?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gave the girl a ride on his motorcycle?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man riding a bike with?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman on the back singing to?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman riding through the streets?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding with a woman?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what do a man and woman ride down?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is driving a motorcycle?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and woman driving on?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what are a man and woman riding?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what are the man and woman riding?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what do a man and woman ride?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"kZfBt5me3Pg_2_7\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"when did a man sing into a microphone?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is standing in front of a microphone holding a violin in one hand and a violin bow in the other?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who strums a violin on a stage?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a violin like a guitar?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sang into a microphone on stage?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar on a stage outside?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man standing at a microphone holding a violin like?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man standing at a microphone holding like a guitar?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"when is a man playing a guitar outside?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man standing at a microphone plucking?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what did a man sing into on stage?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a man playing a violin like?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing on a stage outside?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing like a guitar?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"who played a ukelele on stage?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played an instrument?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when did the man play a ukelele?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is plucking a fiddle?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a string instrument?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing violin?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a fiddle?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the violin?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man play?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"instrument\"\n  },\n  {\n    \"question\": \"what is playing an instrument?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man plucking?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"fiddle\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"instrument\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"instrument\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"fiddle\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a man a doing?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"pluck\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"kk3TIio1-Uw_5_14\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who slices a piece of onion with a knife?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who slices onions with a large knife?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman slice a piece of onion with?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does a woman slice a piece of with a knife?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who sliced an onion?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is chopping onions?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing onions?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping an onion?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts an onion?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting an onion?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who slices onions?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady slice?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman chopping?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a woman cut?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_13_19\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who is making a number of small incisions in an uncooked pork chop?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is making cuts into the fatty areas of a pork chop?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting small cuts in meat?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is poking meat with a knife?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who carefully slices a piece of meat?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sliced notches into the meat?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman poking with a knife?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who sliced cuts in the meat?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a woman carefully slice a piece of?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman poking meat with?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what did the lady slice notches into?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is slicing into a steak?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is piercing a pork chop?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is poking the pork chop?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a pork chop?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing up some pork?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts some meat?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting beef?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting some meat?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman slicing into?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"steak\"\n  },\n  {\n    \"question\": \"what is a woman piercing chop?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is the woman poking chop?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is a woman cutting chop?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is a woman slicing up?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what does a woman cut?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"poke\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"pierce\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"klFyrnrUSck_25_36\",\n    \"answer\": \"poke\"\n  },\n  {\n    \"question\": \"who is sprinkling some pepper powder on a slab of pork meat?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sprinkling spices on a piece of pork?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is putting salt and pepper on a piece of pork?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is sprinkled on one side of a pork steak?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"who seasons a piece of raw pork?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who seasons a piece of raw meat?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman sprinkling on a slab of pork meat?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"who is seasoning a piece of meat?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adding spices on a meat?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person putting on a piece of pork?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is a man seasoning a piece of?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what a woman seasons a piece of?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what a person seasons a piece of?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is adding spices to meat?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person adding spices on?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is spicing a pork chop?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is seasoning the pork chop?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is seasoning a pork chop?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who seasons some meat?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone seasoning a piece of?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is seasoning meat?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a chef spicing chop?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is someone seasoning chop?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is a person seasoning chop?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is the woman seasoning chop?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what a cook seasons?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is someone seasoning?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a person seasoning?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"spice\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"sprinkle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"klFyrnrUSck_42_46\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"who coats a slice of pork meat on both sides with flour using a brush?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is coating a pork chop in flour?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is coating a meat cutlet with flour?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is coating a pork loin with flour?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is coating pieces of pork with flour?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who covers a piece of meat with flour?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who coats a pork chop with flour?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts a piece of meat on a plate?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman coating chop in flour?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"who is seasoning a piece of meat?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman coating a pork chop in?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"who dipped meat in egg?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman coating pieces of with flour?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what a woman coats chop with flour?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is a woman seasoning a piece of?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a woman put a piece of meat on?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what does a woman cover a piece of with flour?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what do a person brushes flour on chop?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what does a woman put a piece of on a plate?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is brushing flour onto meat?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what flour on a pork chop?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who brushed flour on the meat?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who flours a piece of meat?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady dip in egg?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who floured the meat?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is putting flour on meat?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady brush on the meat?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"who is battering pork chops?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who glazes some meat?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady dip meat in?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what does a woman flour a piece of?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is breading a pork chop?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did the lady brush flour on?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman brushing flour onto?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman brushing onto meat?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"who is preparing meat?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman putting flour on?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is someone breading chop?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is a woman putting on meat?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"what did the lady flour?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a woman glaze?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is the woman battering?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"coat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman coats a slice of pork meat on both sides with flour doing?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"klFyrnrUSck_63_73\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is coating a pork chop with breadcrumbs?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who dipped the meat in eggs and bread crumbs?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who dipped the meat in egg and flour?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a person coating chop with breadcrumbs?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"who transfers some meat from a bowl to a pan?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is seasoning a piece of meat?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is putting meat on a tray?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady dip in eggs and bread crumbs?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what did the lady dip in egg and flour?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a person seasoning a piece of?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a woman transfer some meat from to a pan?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a woman putting on a tray?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a woman transfer from a bowl to a pan?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who coats a piece of meat?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who breads a piece of meat?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is coating a pork chop?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is breading pork chops?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman putting meat on?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what is dipped in egg?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"steak\"\n  },\n  {\n    \"question\": \"what does a person bread a piece of?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is battering a pork chop?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is breading meat?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is breading a chop?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what a chef coats a piece of?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman coating chop?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"who is preparing some dish?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is then covered with flour?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"steak\"\n  },\n  {\n    \"question\": \"what is a steak dipped in?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what is someone breading?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is the woman battering chop?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is a person breading?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is a woman preparing?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a woman coating?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"coat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"klFyrnrUSck_79_85\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who places a coated pork slab into hot oil?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dropping the breaded pork chop into the hot oil?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying a piece of meat in a large skillet?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is deep frying a piece of meat?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who deep fries a piece of breaded meat?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is placing food in a pot of hot water?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman frying a piece of in a large skillet?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a woman place a coated pork slab into?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is the woman dropping chop into the hot oil?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"who deep fries a coated pork slab till golden?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts some meat in a bowl?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman placing in a pot of hot water?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who fries a slice of meat?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman put some meat in?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a woman deep fry a piece of?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a woman put in a bowl?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is deep frying a pork chop?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman fry a slice of?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is deep frying some meat?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is deep frying food?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying meat?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying food?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying something?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cooking meat?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman deep frying chop?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"pork\"\n  },\n  {\n    \"question\": \"who is frying a food?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman frying?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman cooking?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a woman is deep doing?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"klFyrnrUSck_87_100\",\n    \"answer\": \"drop\"\n  },\n  {\n    \"question\": \"who reclines and talks on a phone while motorcycling?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rides a motor scooter in an unusual way?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle with no hands?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle while laying down?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle while lying back?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lying back on a moving motorcycle?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is on his back riding a motorcycle?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding with no hands?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who lounged on his motorcycle as it moved down the street?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding while laying down?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what did the man lounge on as it moved down the street?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding while lying back?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is doing motor bike stunts?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man laying down riding?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding a motocycle?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what moved down the street?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what did a moving motorcycle move down?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is someone riding?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a guy riding?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"motocycle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"motor\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man reclines and talks on a phone while doing?\",\n    \"video_name\": \"klteYv1Uv9A_27_33\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who pours orange juice from a carton to a glass jug containing ice cubes?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing orange juice with lime soda in a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who poured orange juice and soda into a pitcher of ice?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who poured juic and soda into a pitcher of ice?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man mixing orange juice with lime soda in?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"who is adding orange juice to a pitcher of ice?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring orange juice into a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring orange juice into the pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pour from a carton to a glass jug containing ice cubes?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"who pours orange juice in a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man mixing with lime soda in a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"who pours juice into a glass pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who adds juice and soda to a mixture?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man pouring orange juice into?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"who is the man pouring orange juice into?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"what is a man mixing orange juice with in a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"soda\"\n  },\n  {\n    \"question\": \"who is pouring lemonade into a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring juice into a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adding drinks in the jug?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man pour into a pitcher of ice?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"juic\"\n  },\n  {\n    \"question\": \"what is a man adding to a pitcher of ice?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what does a man pour into a glass pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what is the man pouring into the pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"who is a man pouring lemonade into?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"what is a man pouring into a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"who is a man pouring juice into?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"what does a man add juice and soda to?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"who pours juice into a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man add to a mixture?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what is a man adding drinks in?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"jug\"\n  },\n  {\n    \"question\": \"what does a man pour into a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what is poured into a jar?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"who is preparing some drinks?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mixes drinks?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a liquid poured into?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"jar\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a man pours orange juice from a carton to a glass jug doing?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"kquB3rIgfGk_197_202\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"who is slicing an unpeeled cucumber using a knife?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping a cucumber into slices?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a cucumber into slices?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man slicing using a knife?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is a man chopping into slices?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is a man cutting into slices?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"who cuts cucumber slices?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sliced a cucumber?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping cucumbers?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing cucumbers?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing up some cucumbers?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts up cucumber?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut up a cucumber?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting cucumbers?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a cucumber?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting cucumber?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is cutting some vegetables?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man slice?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what did the man cut up?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what does a man cut?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what does a man cut up?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is a guy cutting?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"kquB3rIgfGk_525_532\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who put some cucumber slices into the pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who adds slices of unpeeled cucumber to a glass jug containing water and ice cubes?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is placing cucumber slices into a pitcher of iced water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adding sliced cucumbers to a pitcher of ice water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who puts sliced cucumbers in a pitcher of iced water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did te man put into the pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"who added cucumber slices to a pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting sliced cucumbers into a pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drops cucumber slices into a pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adding sliced cucumber to ice water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting cucumber slices into a glass pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts cucumber slices in a water pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting cucumber slices in a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who adds cucumber to a pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man add slices of to a glass jug containing water and ice cubes?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"who is putting pieces of cucumber into a pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dropping sliced cucumbers into water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man placing into a pitcher of iced water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"who is putting limes into a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man putting cucumber slices in?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"what is a man putting into a pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"who is putting cucumbers in a jar?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man dropping sliced cucumbers into?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did the man add to a pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is a man adding sliced cucumber to?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a man drop into a pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what does a man add to a pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is a man putting into a glass pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"who is a man putting limes into?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"pitcher\"\n  },\n  {\n    \"question\": \"what is a man putting pieces of into a pitcher of water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is a man adding to ice water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what does a man put in a water pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is a man putting in a pitcher?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"who is putting cucumbers into water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts some cucumbers in water?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting cucumbers in?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"jar\"\n  },\n  {\n    \"question\": \"what does a man put some cucumbers in?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man putting cucumbers into?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man adds slices of unpeeled cucumber to a glass jug doing?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"kquB3rIgfGk_537_544\",\n    \"answer\": \"drop\"\n  },\n  {\n    \"question\": \"who drinks a glass of water with cucumber slices?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking a glass of clear liquid?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking a clear liquid from a glass?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking something out of a glass?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drink a glass of with cucumber slices?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is drinking water from a glass?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking water from the glass?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drink a glass of water with?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"cucumber\"\n  },\n  {\n    \"question\": \"what is a man drinking a glass of?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is a man drinking out of a glass?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who drank a class of water?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who took a sip of water?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drinks a glass of water?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man take a sip of?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did the man drink a class of?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a man drink a glass of?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is drinking cucumber water?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drinks from a glass?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking from a glass?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking water?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking a drink?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking something?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drink from?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who drinks something?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man drinking from?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what is the man?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"drinking\"\n  },\n  {\n    \"question\": \"who pours?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"kquB3rIgfGk_640_645\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"how many men are standing in the woods as an explosion sound is heard?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many boys are standing in front of the burning car?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many men are standing in the woods as the white car behind them is burning?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many young men are walking away from a car when it explodes?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many young men stand still as a car explodes behind them?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what explodes behind a group of guys?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what explodes behind four men standing on a road?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car explode behind four men standing on?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are four young men walking away from when it explodes?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what blew up behind the four boys?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is blowing up behind four men?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what blows up behind some men?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what explodes behind four people?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what explodes behind 4 people?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what blows up behind four people?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what blows up?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what exploded?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is blasting?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is heard?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"explosion\"\n  },\n  {\n    \"question\": \"what is a car explodes behind four men doing?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"blast\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"blow\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"burn\"\n  },\n  {\n    \"question\": \"what are four boys doing?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are four men doing?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are four young men doing?\",\n    \"video_name\": \"krAk8WPZRL4_207_212\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is sitting on a couch playing an acoustic guitar?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy sitting on playing an acoustic guitar?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who played the guitar?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is playing an acoustic guitar?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who played his guitar?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is playing guitar?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing a guitar?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is the little boy playing?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a kid playing?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a woman play?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a girl playing?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what did the boy play?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the little boy doing?\",\n    \"video_name\": \"kzyFBlNRohs_82_88\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is licking the dogs head?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what licks a sleeping dogs head?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what grooms a dog?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is licking a sleeping dog?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is licking a dog?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is cleaning a dog?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat groom?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a cat licking?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"sleeping\"\n  },\n  {\n    \"question\": \"what is a cat cleaning?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"groom\"\n  },\n  {\n    \"question\": \"what are a dog and cat doing?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"lick\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"l57mQZvDaL4_10_30\",\n    \"answer\": \"lick\"\n  },\n  {\n    \"question\": \"who pushes huge boulders fallen on the ground before a building entrance?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superman\"\n  },\n  {\n    \"question\": \"who moves a few large pieces of the rubble to reveal some hidden doors?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superman\"\n  },\n  {\n    \"question\": \"what did superman move the blocks of to get inside?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who moved the blocks of rock to get inside?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superman\"\n  },\n  {\n    \"question\": \"what is lifting large pieces of rocks?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superhero\"\n  },\n  {\n    \"question\": \"who flies to a pile of rubble?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superman\"\n  },\n  {\n    \"question\": \"who performs superhuman feats?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superman\"\n  },\n  {\n    \"question\": \"what does a superhero cartoon push objects away from?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what pushes objects away from a door?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superhero\"\n  },\n  {\n    \"question\": \"who moved the boulders aside?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superman\"\n  },\n  {\n    \"question\": \"who moves several giant blocks?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superman\"\n  },\n  {\n    \"question\": \"what does superman perform?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superhuman\"\n  },\n  {\n    \"question\": \"who is lifting heavy rocks?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superman\"\n  },\n  {\n    \"question\": \"what does superman move?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"giant\"\n  },\n  {\n    \"question\": \"who lifts large bricks?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is moving the giant rocks?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"superman\"\n  },\n  {\n    \"question\": \"who is pushing rocks?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting big rocks?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is moving large rocks?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is moving bricks?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a animated character doing?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is super man doing?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a cartoon superhero doing?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is superman doing?\",\n    \"video_name\": \"l5JJ2n2ggiQ_319_327\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"who uses a mound of dirt to make a jump with the bicycle?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is riding a bike over a ramp in the woods?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a bicycle in a wooded area?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who rides a bike over a hill in the woods?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps his bike over a dirt ramp?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rode his bike on the forest path?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is flying through the air on a bike?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who rides a bike through the woods?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"what does someone use a mound of to make a jump with the bicycle?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what is a man riding over a ramp in the woods?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who does a jump in the woods?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"biker\"\n  },\n  {\n    \"question\": \"what does a man on a bicycle go over?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"bump\"\n  },\n  {\n    \"question\": \"who rode his bike off the rock?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rode his bike into the woods?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man rides over a hill in the woods?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what does a person on a bicycle make?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who jumps his bike in the woods?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a person flying through on a bike?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a person flying through the air on?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what did the man ride his bike off?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what an individual rides through the woods?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is performing bike stunts?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man ride on the forest path?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what did the man ride off the rock?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what did the man ride into the woods?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is cycling in the wood?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man cycling in?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is a man performing?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"lAznAeFFldg_6_10\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"who wakes up in a big bed?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is getting up out of bed?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who awakes from sleep?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who wakes up from bed?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who wakes up in bed?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who starts getting out of bed?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the little girl wake up in?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is waking up in bed?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is waking from sleep?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"when did the little girl wake up?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"nap\"\n  },\n  {\n    \"question\": \"who gets up out of bed?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl wake up from?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a girl awake from?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a girl waking up in?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a girl waking from?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"who is waking up?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who woke up?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"lB1UPJ4leqs_0_6\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"who sat up in bed after waking up?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the little girl sit up in after waking up?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is sleeping in bed?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who wakes up from bed?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who starts getting out of bed?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who wakes up in bed?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is wakening from sleep?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the little girl wake up from?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a little girl sleeping in?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what do a girls wake up from?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a girl wake up from?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a girl wake up in?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a girl wakening from?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"who then wakes up?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is waking up?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who woke up?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"waken\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"what is the little girl sat up in bed after doing?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"what is a child in bed doing?\",\n    \"video_name\": \"lB1UPJ4leqs_1_6\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"who is smashing his thumb with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hit his thumb with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who injures his hand with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hit his thumb with the hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who smashes his hand with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hit his finger with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who used a hammer to hit his hand?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hits his thumb with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hitting his hands with hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man hitting his hands with?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"hammer\"\n  },\n  {\n    \"question\": \"who hits his finger with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man hit with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"thumb\"\n  },\n  {\n    \"question\": \"what does a man injure with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what did a man hit with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what did the man hit with the hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"thumb\"\n  },\n  {\n    \"question\": \"what does a man smash with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who hits his thumb while hammering?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man smashing with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"thumb\"\n  },\n  {\n    \"question\": \"what did the man use a hammer to hit?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a man hammering something hit?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"thumb\"\n  },\n  {\n    \"question\": \"who is hammering his finger?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man hit with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what does someone hit with a hammer?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"who reacts angrily?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man hit while hammering?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"thumb\"\n  },\n  {\n    \"question\": \"what is a man hammering?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"hammer\"\n  },\n  {\n    \"question\": \"what is a man hits his thumb while doing?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"hammer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lFdg5CWMTt0_24_28\",\n    \"answer\": \"smash\"\n  },\n  {\n    \"question\": \"who is jumping rope on a walkway?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is skipping on the pathway outside his house?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps rope in his front yard?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man jumping on a walkway?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what does a man jump in his front yard?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is a man jumping rope on?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"walkway\"\n  },\n  {\n    \"question\": \"what is a man skipping on outside his house?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"pathway\"\n  },\n  {\n    \"question\": \"who is jumping rope outside?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing rope skipping?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is skipping rope?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man skipping on the pathway outside?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is jumping rope?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is skipping a rope?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man jumping outside?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is an overweight man skipping?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is a man doing skipping?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is a person skipping?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is a boy skipping?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is a man jumping?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is the man jumping?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"who is jumproping?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"skip\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"jumproping\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"skip\"\n  },\n  {\n    \"question\": \"what is an overweight man doing?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"skip\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"lFyPUgJCmtU_100_110\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is riding a horse along a perimeter?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who rides a horse around an arena?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"jockey\"\n  },\n  {\n    \"question\": \"who is riding a horse in an arena?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person riding along a perimeter?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a person riding a horse along?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"perimeter\"\n  },\n  {\n    \"question\": \"what do a woman rides a show horse in?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"stadium\"\n  },\n  {\n    \"question\": \"what do a woman rides a show in a stadium?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman riding in an arena?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what did the horse and rider trot around?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is a woman riding a horse in?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"arena\"\n  },\n  {\n    \"question\": \"what a show horse in a stadium?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the horse and rider perform in?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"competition\"\n  },\n  {\n    \"question\": \"what is a person riding in an arena?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what a woman rides at walking speed?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman riding?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a girl riding?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a person riding?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the man riding?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman rides her horse at doing?\",\n    \"video_name\": \"lGk1MA6YP-M_36_48\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what fights with another animal?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what kept trying to box the ferret?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat fight with?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what do a ferret?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what do a cat and a ferret?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what plays with a ferret?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is playing with a ferret?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is playing with the ferret?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what are a cat and a ferret doing?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what are a ferret and a cat doing?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a ferret and a kitten doing?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kitten and a ferret are playfully doing?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is a kitten doing?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the cat kept doing?\",\n    \"video_name\": \"lKADopH3qFY_0_10\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"how many cocks fight in front of an audience?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cocks are fighting on an enclosed ground?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many roosters are fighting in a ring?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many roosters are fighting each other?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are the crowd of people watching?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"cockfight\"\n  },\n  {\n    \"question\": \"how many roosters are fighting?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cocks are fighting?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is taking place?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"cockfight\"\n  },\n  {\n    \"question\": \"what is a cockfight taking?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are two roosters fighting in?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are two roosters doing?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are roosters doing?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are the crowd of people doing?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are the roosters doing?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two cocks doing?\",\n    \"video_name\": \"lKpGc3SCSVw_12_20\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who played the trumpet?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing saxophone?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a tuba?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a trumpet?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the trumpet?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a trumpet?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the trumpet?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an instrument?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man play?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"trumpet\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"trumpet\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"trumpet\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"trumpet\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"trumpet\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"lR8RrUBhCQg_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is sitting down playing an acoustic guitar?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an acoustic guitar?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played the guitar?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"lSnWhsmlGec_5_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man dressed as a clown singing into?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a man dressed weirdly singing a song in?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"club\"\n  },\n  {\n    \"question\": \"what is a man dressed weirdly singing in a club?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sings into a microphone?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"menacing\"\n  },\n  {\n    \"question\": \"who screams at the microphone?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"clown\"\n  },\n  {\n    \"question\": \"what does a menacing clown sing into?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is perfoming on a stage?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"when is a band perfoming?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a clown scream at?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"clown\"\n  },\n  {\n    \"question\": \"what is performing?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man dressed in a doing?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"menace\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"menace\"\n  },\n  {\n    \"question\": \"what is the scary doing?\",\n    \"video_name\": \"labytsb3gfI_146_154\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is slicing small pieces of meat off of a large roast?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting the fat off of a piece of beef?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who trims a big haunch of beef?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting strips off a piece of meat?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing thin strips of beef?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sliced off the fat from the meat?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man trim a big haunch of?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"beef\"\n  },\n  {\n    \"question\": \"what is the man slicing thin strips of?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"beef\"\n  },\n  {\n    \"question\": \"who is slicing meat with a knife?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did someone slice off the fat from?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what did someone slice off from the meat?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"fat\"\n  },\n  {\n    \"question\": \"who is trimming fat from a roast?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person slicing with a knife?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who trimmed a piece of meat?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who slices a slab of meat?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a person slicing meat with?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is fat being trimmed off?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a chef slice a slab of?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is fat being cut off of?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man trimming fat from?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"roast\"\n  },\n  {\n    \"question\": \"what is being trimmed off meat?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"fat\"\n  },\n  {\n    \"question\": \"what did someone trim a piece of?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is being cut off of meat?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"fat\"\n  },\n  {\n    \"question\": \"who is slicing some meat?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person slicing?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"trim\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"lb8J2zCQTlo_3_8\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who hit the split pins with the bowling ball?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who knocks down three pins in two adjacent lanes?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"bowler\"\n  },\n  {\n    \"question\": \"who is rolling a bowling ball into the two remaining bowling pins?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is throwing a bowling ball down a lane?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a split in a bowling tournament?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is bowling a double strike in two lanes?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hit the split pins with his bowling ball?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man hit pins with the bowling ball?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"split\"\n  },\n  {\n    \"question\": \"what is a man rolling into the two remaining bowling pins?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"bowling\"\n  },\n  {\n    \"question\": \"what is a man throwing a bowling ball down?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"lane\"\n  },\n  {\n    \"question\": \"what is a man throwing down a lane?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"bowling\"\n  },\n  {\n    \"question\": \"what did a man hit with his bowling ball?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"split\"\n  },\n  {\n    \"question\": \"who performs a bowling trick shot?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many pins did the man hit?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing bowling shot?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hit two pins?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"bowling\"\n  },\n  {\n    \"question\": \"who bowled?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is bowling?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man hurtles a ball which hits the only doing?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"remain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lc9bA-hvqHU_1_6\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"who does a backflip off a diving board?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did backward sommersaults from the diving board into the pool?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who dove off the board into the pool?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a double back flip off the diving board into the pool?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what do men flips from diving boards into?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what did the boy backward sommersaults from the diving board into?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who is doing a back flip into a pool?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man dive off the board into?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what did the man dive off into the pool?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"who does a flip into a pool?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is jumping off a low diving board?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is diving off a diving board?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is diving into a swimming pool?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boy do a flip into?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who is diving in the swimming pool?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a back flip from a diving board?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a back flip into the pool?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man doing a back flip into?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who jumps off a diving board?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boy a back flip into?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who is doing a back flip dive?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing into a pool?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is a man does a back flip from a doing?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a man does a backflip off a doing?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man jumps off a doing?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is men do flips from doing?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is the boy did backward sommersaults from the doing?\",\n    \"video_name\": \"lcu-DwrnYY8_2_5\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"who is giving chest compressions to a man in a stretcher?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who did the emergency personnel try to save on the gurney?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what tried to save the man on the gurney?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"emergency\"\n  },\n  {\n    \"question\": \"who is being treated for an emergency in a hospital?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a doctor giving to a man in a stretcher?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"chest\"\n  },\n  {\n    \"question\": \"who did the surgeions work on in the er?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are medical personnel trying to revive?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"patient\"\n  },\n  {\n    \"question\": \"what did the emergency personnel try to save the man on?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"gurney\"\n  },\n  {\n    \"question\": \"who is dieing in an operating room?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man being treated for an emergency in?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"what is a man being treated for in a hospital?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"emergency\"\n  },\n  {\n    \"question\": \"who is lying in the operating room?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"patient\"\n  },\n  {\n    \"question\": \"who are doctors trying to save?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was helping the patient?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"doctor\"\n  },\n  {\n    \"question\": \"who do doctors resuscitate?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are doctors treating?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do doctors try to revive?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"patient\"\n  },\n  {\n    \"question\": \"who are doctors trying to revive?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was the doctor helping?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"patient\"\n  },\n  {\n    \"question\": \"who is injured?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"die\"\n  },\n  {\n    \"question\": \"what is a man is injured and doing?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"bleed\"\n  },\n  {\n    \"question\": \"what is a patient doing?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a wounded man doing?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what are doctors doing?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is doctors tend to an injured man doing?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what are medical personnel doing?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what was the doctor doing?\",\n    \"video_name\": \"lexLAjh8fPA_27_31\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"who empties the content into a bowl containing chili paste and cheese?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring canned chili into a bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens a can and pours the contents into a bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is emptying a can of chili into a bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours something from a can into a white bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dumping a can into a bowl of sauce?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man empty into a bowl containing chili paste and cheese?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"content\"\n  },\n  {\n    \"question\": \"who is mixing ingrediants into a bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring chili into a bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens a can of chili paste?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man pouring canned chili into?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is opening a tin by hands?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man emptying a can of chili into?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is adding something to a bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man emptying a can of into a bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"chili\"\n  },\n  {\n    \"question\": \"what is a man pouring into a bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"chili\"\n  },\n  {\n    \"question\": \"what is the man pouring into a bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"chili\"\n  },\n  {\n    \"question\": \"what is a man adding to a bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man mixing ingrediants into?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man pouring chili into?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who added chili to the bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens a can of seasoning?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens a can of chili?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man opening by hands?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"tin\"\n  },\n  {\n    \"question\": \"what is a man adding something to?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what did the man add to the bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"chili\"\n  },\n  {\n    \"question\": \"what chili into a bowl?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"dump\"\n  },\n  {\n    \"question\": \"what does a man open a can of?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"chili\"\n  },\n  {\n    \"question\": \"what did the man add chili to?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what did a man dumps chili into?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"dump\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man opens a can of chili paste and empties the content into a bowl doing?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man opens a can of doing?\",\n    \"video_name\": \"lfGlDg47How_110_115\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"who is using a hand mixer to mix the contents of a mixing bowl?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using an electric mixer to blend some ingredients?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mixes white cream in a bowl?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man using to mix the contents of a mixing bowl?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"who mixed the dough in a bowl?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mixed the batter in the bowl?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing something with a blender?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing ingredients in a bowl?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do the man mix in the bowl?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"what is a man mixing with a blender?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what do the man mix the batter in?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what do the man mix the dough in?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what do the man mix in a bowl?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is a man using to blend some ingredients?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"mixer\"\n  },\n  {\n    \"question\": \"who is mixing flour with machine?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person mixing ingredients in?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man mixing ingredients in?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man mixing something with?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"blender\"\n  },\n  {\n    \"question\": \"who mixes some chip dip?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kneading dough?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing whipping cream?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using an electric whisk?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is whipping cream?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man mixing flour with?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a man mixing with machine?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"what is a man kneading?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is a man whipping?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what is the man mixing?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"cream\"\n  },\n  {\n    \"question\": \"what is a man using?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"who is mixing?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"knead\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"whip\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"lfGlDg47How_361_367\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who is dropping a chunk of cream cheese into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens a packet containing a block of cream cheese?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting a square of cream cheese into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts a block of cream cheese into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who put a block of cheese into the bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who put a stick of cheese in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drops a packet of butter into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts a block of cream cheese in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting cream cheese into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who adds a stick of butter to a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who puts a stick of butter in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drops a package of cream cheese in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who places a package of cream cheese in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man dropping a chunk of cream cheese into?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is opening a packet of butter?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man putting a square of cream cheese into?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man dropping a chunk of into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"who puts cream cheese in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens a package of cream cheese?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting butter into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man put a block of cheese into?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man putting a square of into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"who is placing butter in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adding butter to a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man put a block of cream cheese into?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what did the man put a block of into the bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what did the man put a stick of cheese in?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a man drop a packet of butter into?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what did the man put a stick of in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what does a person add a stick of butter to?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a man put a block of cream cheese in?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man putting cream cheese into?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a person add a stick of to a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what does a man drop a packet of into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what does a man put a block of into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a man opening a packet of?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what does a man put a stick of butter in?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a man put cream cheese in?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a man put a block of in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what does a man put a stick of in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what does a man drop a package of cream cheese in?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man putting into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what does a man place a package of cream cheese in?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man placing in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what is a man adding to a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what does a man drop a package of in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what does a man open a package of?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what does a man put in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what does a man place a package of in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"who puts butter into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man putting butter into?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man placing butter in?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man adding butter to?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who puts butter in a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is butter dropped into?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a guy put into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what is dropped into a bowl?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what does a guy put butter into?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a man put butter in?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"drop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a man opens a packet doing?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"lfGlDg47How_93_98\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who is shooting at targets with a pistol?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who knocks down all six targets in a row?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who shoots a pistol at some targets?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting a gun at a target range?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fired a gun at some targets?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is firing a pistol at targets?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is firing a gun at targets?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting targets with a gun?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man fire at some targets?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who shoots targets with a pistol?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man shooting at a target range?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is firing with a revolver?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots a gun at targets?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person shooting targets with?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who shoots a single action revolver?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picks up a gun?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots a pistol?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who picked up his gun?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots down 5 targets?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man shoot at targets?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is shooting a gun?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man pick up?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a person shoot?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"pistol\"\n  },\n  {\n    \"question\": \"what is someone shooting?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who shoots at?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a guy shooting?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is the man shooting?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what did the man pick up?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is target shooting?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a man is target doing?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"ljGcQocjSs4_38_60\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what smoked a cigarette?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"chimpanzee\"\n  },\n  {\n    \"question\": \"what did the chimpanzee smoke?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"cigarette\"\n  },\n  {\n    \"question\": \"what is smoking a cigarette?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"chimpanzee\"\n  },\n  {\n    \"question\": \"what is a chimpanzee smoking?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"cigarette\"\n  },\n  {\n    \"question\": \"what is a monkey smoking?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"cigarette\"\n  },\n  {\n    \"question\": \"what is a chimp?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is a gorilla?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is a monkey?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is the monkey?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"smoking\"\n  },\n  {\n    \"question\": \"what is smoking?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what smokes?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a chimpanzee doing?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a chimp doing?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is a gorilla doing?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is the monkey doing?\",\n    \"video_name\": \"lm0z7eLsbbw_9_23\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what are a group of youngsters wearing christmas caps singing a christmas song in?\",\n    \"video_name\": \"lmCrIZeob4w_23_26\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are a group of youngsters wearing christmas caps singing in a room?\",\n    \"video_name\": \"lmCrIZeob4w_23_26\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"what did the kids sing into the microphones?\",\n    \"video_name\": \"lmCrIZeob4w_23_26\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"what are a group of people singing?\",\n    \"video_name\": \"lmCrIZeob4w_23_26\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"what do a group of people sing?\",\n    \"video_name\": \"lmCrIZeob4w_23_26\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"when do individuals celebrate?\",\n    \"video_name\": \"lmCrIZeob4w_23_26\",\n    \"answer\": \"christma\"\n  },\n  {\n    \"question\": \"what are men singing?\",\n    \"video_name\": \"lmCrIZeob4w_23_26\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what is a group of youngsters doing?\",\n    \"video_name\": \"lmCrIZeob4w_23_26\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is swimming underwater near the floor of a body of water?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what follows some fish around at the bottom of the ocean?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what walks on the bottom of the ocean?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what does a turtle follow around at the bottom of the ocean?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are a turtle and fishes swimming under?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what chases fish in the ocean?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"tortoise\"\n  },\n  {\n    \"question\": \"what swam after the fish?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what is walking under water?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what is hunting for fish?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what does the turtle swim after?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is swimming in water?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what followed the fish?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what swim away from a turtle?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a sea turtle hunting for?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what did the turtle follow?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a turtle walking under?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the turtle walking under?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a turtle swimming in?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do fish swim away from?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what is walking underwater?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what swims?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what is a turtle doing?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a turtle doing?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are a turtle and fishes doing?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a sea turtle doing?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"hunt\"\n  },\n  {\n    \"question\": \"what is the turtle doing?\",\n    \"video_name\": \"lo4KcsBN--A_0_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is doing ice skating with two dolls?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is ice skating while holding two dolls on the ice pretending that the dolls are skating too?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing with two dolls?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"who skating with dolls?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl is ice doing?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is a girl is ice doing?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is a girl and her dolls are ice doing?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is a gil is ice doing?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is a little girl takes her dolls doing?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is a young girl and her two dolls ice doing?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is a girl and two dolls go ice doing?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is the little girl and her dolls are ice doing?\",\n    \"video_name\": \"lrZxpneS6Gk_0_12\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"who puts some mayonnaise on a piece of bread?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many young girls are in a kitchen making a sandwich?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are spreading mayonnaise on bread?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a couple of girls in a kitchen making?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what does a girl put on a piece of bread?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"mayonnaise\"\n  },\n  {\n    \"question\": \"how many little girls made a sandwich?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are making a sandwhich?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are making a sandwich?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids are making a sandwich?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls make a sandwich?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is applying butter to bread?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are two young girls in a kitchen making?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what are two girls spreading mayonnaise on?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a girl applying to bread?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"butter\"\n  },\n  {\n    \"question\": \"what are two girls spreading on bread?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"mayonnaise\"\n  },\n  {\n    \"question\": \"who is making a sandwich?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did two little girls make?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what are the girls making?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what is a girl making?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what are two girls making?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what are two kids making?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what do two girls make?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"sandwich\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"lsanQj2yacs_102_108\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"who jumps from the ground to the roof of a car?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who jumped on top of a car?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who appears to be jumping from the ground to the top of a car?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who jumps from the ground of a lawn on the roof top of a car parked nearby?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who jumps on top of a car?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl appear to be jumping from to the top of a car?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is jumping to a car top?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is coming up on a car?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is jumping onto a car?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who jumped on the car?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who jumps up on a car?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who jumps on a car?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl coming up on?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is jumping on a car?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the little girl jump on?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a girl jumping onto?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a girls jump on?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a girl jump up on?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a girl jump on?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a girl jumping on?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a girl appears to be doing?\",\n    \"video_name\": \"lsanQj2yacs_80_85\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is playing the guitar and singing?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who played his guitar?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who strums?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lv8d_qLLqsk_1_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a black horse rolling on?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a horse get up off of?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what gets up off of the ground?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what got up on its feet?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what rolled in the grass?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what rolls on the ground?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what gets off the ground?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what gets up off the ground?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what rolls over on the ground?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what stands up from the ground?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is rolling on the ground?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what did the horse roll in?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what does a horse roll on?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a horse roll over on?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a horse get off?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a horse get up off?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a horse rolling on?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a horse stand up from?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what then stands up?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is standing up?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what stood up?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what stands up?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is standing?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a black horse doing?\",\n    \"video_name\": \"lvFYUmDSOvU_34_38\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"who screws a wave guide on the groove of a compression driver?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting together a disassembled speaker while talking?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is joining up two pieces of equipment?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man joining up two pieces of?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who is putting together a stereo speaker?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who works on a stereo speaker?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrated a car speaker?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is assembling speaker parts?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrated the car speaker?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making loudspeaker?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is demonstrating machine parts?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is joining tools?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"mechanic\"\n  },\n  {\n    \"question\": \"who is assembling a speaker?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts together a speaker?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is assembling a machine?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is building a speaker?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who did the man demonstrate?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who is putting a speaker together?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man assembling?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who does a man put together?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"who is a guy building?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what is a man assembling?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is putting something together?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man demonstrating?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"loudspeaker\"\n  },\n  {\n    \"question\": \"who is the man putting together?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"speaker\"\n  },\n  {\n    \"question\": \"what is someone putting together?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a mechanic doing?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"join\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"lw7pTwpx0K0_38_48\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who makes vertical cuts across half a peeled onion leaving the base portion intact?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman make vertical cuts across half a peeled onion leaving intact?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"portion\"\n  },\n  {\n    \"question\": \"who is slicing onions with a large knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting slices into an onion half?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person with a knife slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who sliced the onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who cuts into an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing onions?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is chopping onions?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who slices an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady slice?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a person cut into?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a chef slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a person slice?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a person cut?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a person with a knife doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_104_110\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is chopping an onion into pieces with a knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is dicing an onion with a large knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing an onion into pieces?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person chopping an onion into pieces with?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a person chopping into pieces with a knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is someone dicing with a large knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person with a knife slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person slicing into pieces?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who chops an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sliced the onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is dicing onions?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing onions?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dicing an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who cuts an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cut the onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what did the lady slice?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what a person chops?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a chef slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman dicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman chopping?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what do the lady cut?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a person cut?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person cutting?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who sliced?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person with a knife doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_123_129\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"who is peeling the outer skin off a clove of garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is breaking a head of garlic into cloves?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who peeled the skin off a white onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who removes cloves of garlic from a head of garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman peeling off a clove of garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"outer\"\n  },\n  {\n    \"question\": \"who took the skin off an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what did the lady take off an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what does a woman remove from a head of garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what do the lady peel off a white onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what is a woman breaking a head of into cloves?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what did the lady take the skin off?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is separating cloves of garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman remove cloves of from a head of garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"who splits garlic cloves?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pealing a garlic clove?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is separating garlic cloves?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman separating cloves of?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"who cuts cauliflower?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman pealing?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"clove\"\n  },\n  {\n    \"question\": \"what is a woman separating?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what does a woman cut?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"cauliflower\"\n  },\n  {\n    \"question\": \"who is peeling garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is breaking garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"peal\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_160_166\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"who is chopping up roundish white objects into small pieces with a large knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is chopping garlic with a large knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dices mushrooms with a knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is mincing garlic cloves?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping garlic cloves?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who chopped up the garlic cloves?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing garlics?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dicing a garlic clove?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is chopping a garlic clove?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person dice mushrooms with?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who crushed the garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who cuts up onions?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a chef dicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"clove\"\n  },\n  {\n    \"question\": \"what do the lady crush?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"what is a woman chopping?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"clove\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"garlic\"\n  },\n  {\n    \"question\": \"who is dicing garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping garlic?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is a person with a knife doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_192_198\",\n    \"answer\": \"mince\"\n  },\n  {\n    \"question\": \"who cuts a capsicum into long thin strips?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a red bell pepper into strips?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing peppers with large knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a capsicum into slice?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman cut into long thin strips?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"capsicum\"\n  },\n  {\n    \"question\": \"what is a woman slicing a capsicum into?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person with a knife slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"who cut up a red bell pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman slicing into slice?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"capsicum\"\n  },\n  {\n    \"question\": \"who sliced the red bell pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing bell peppers?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who chops a red pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing red peppers?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who slices a large red pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing a red pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting big pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts up some peppers?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cutting a red pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what a woman chops?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is a chef slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is the woman slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"bell\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person with a knife doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_224_230\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is chopping a red bell pepper into small pieces?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a red pepper into cubes?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dicing a red pepper using a knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person with a knife slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"who cut up a red bell pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman cutting into cubes?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is someone dicing using a knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"who chopped a red bell pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is dicing bell peppers?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing big pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a capsicum?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing some peppers?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is slicing a bell pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who cuts up some peppers?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing vegetables?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing a pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chopping a pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting a pepper?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a chef slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is the person dicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"bell\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"capsicum\"\n  },\n  {\n    \"question\": \"what is a person chopping?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person with a knife doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_273_280\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"where did a whole unpeeled onion into two?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"who cuts an onion in half with a knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is showing how to cut an onion in half?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what unpeeled onion at the center into two?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"whole\"\n  },\n  {\n    \"question\": \"what did a whole unpeeled onion at into two?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"who is cutting an onion in half?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman with a knife slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a woman cut an onion in half with?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a woman cutting an onion in?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"what is the woman cutting an onion in?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"who cut the onion in half?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who cuts an onion in half?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is trying to cut an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cutting in half?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is the woman cutting in half?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who sliced the onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who slices an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting an apple?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady slice?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a chef slice?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a chef slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"apple\"\n  },\n  {\n    \"question\": \"what does a man cut?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman with a knife doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_57_64\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who is peeling an onion that was cut in half?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who peels the skin off a half cut onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling the skin off an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who peeled the skin off the onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a woman peel off a half cut onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what do the lady peel off the onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what is a woman peeling off an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what do the lady peel the skin off?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman peeling the skin off?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who peels half of an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who peeld half an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who peels an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person peel half of?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is peeling an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who peels onions?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the lady peeld?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a chef peel?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a person peel?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman peeling?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is the woman peeling?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person peeling?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_73_78\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"who is slicing onions with a large knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing half of an onion into very thin slices?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who thinly slices an onion with a large knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person with a knife slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is someone slicing half of into very thin slices?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a woman thinly slice with a large knife?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who sliced the onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who sliced up the onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing onions?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who slices an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts up onions?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting an onion?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady slice up?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what did the lady slice?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a chef slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a person slice?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person with a knife doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"m1NR0uNNs5Y_88_94\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is climbing up a rock wall facade?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is climbing an artificial rock wall?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is climbing up a rock wall?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is engaged in rock climbing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who climbed a rock wall?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who climbs a rock wall?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is climbing a climbing wall?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a young woman climbing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who climbs a wall?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman climbing up?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who is climbing a rock wall?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is climbing a wall?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman engaged in climbing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what did the girl climb?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what does a young woman climb?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what does a woman climb?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a woman climbing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a girl climbing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who is rock climbing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a woman is rock doing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a woman who is harnessed doing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a young woman doing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"m1c04pCYGxA_57_64\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"who takes a picture of a building with a polaroid?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who takes a photo of a tall building with an instant camera?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who took a polaroid picture of a building?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is taking a photograph of a building?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is taking a picture of a building?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is taking a photo of the building?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is taking a picture with a camera?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who took a polaroid of a building?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what did a girl take a polaroid picture of?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who is taking photographs of a building?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a lady take a polaroid of?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who is taking pictures of a building?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who takes a picture of a building?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman taking a photograph of?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is a girl taking a photo of?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is a woman taking a picture of?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is a woman taking with a camera?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a woman taking a picture with?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a woman taking photographs of?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is a woman taking pictures of?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"who takes a picture of building?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who took a photograph?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is taking a photograph?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is taking a picture?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who takes a picture?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the woman take?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what does a girl take?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a woman taking?\",\n    \"video_name\": \"m4D72WXFd8s_557_564\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who pours a milky looking substance from a measuring cup into a glass bowl of pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who poured the sauce over the cooked noodles?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is pouring milk into a bowl of uncooked pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring a white liquid into a bowl of pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring sauce into a bowl of noodles?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pouring milk over pasta in a bowl?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding sauce to a bowl of pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring evaporated milk into pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring milk onto some pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman pouring into a bowl of uncooked pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what is a woman pouring into a bowl of pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"who is pouring ingredients into a bowl?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding milk to some pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman pouring evaporated milk into?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is a person pouring into a bowl of noodles?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a woman pouring milk over pasta in?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a woman pouring over pasta in a bowl?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what is a woman pouring onto some pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what is a woman pouring milk over in a bowl?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is a woman adding to a bowl of pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is adding something to a bowl?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pours milk onto some noodles?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pouring liquid over the pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman adding to some pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"who is pouring sauce over noodles?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman adding to a bowl?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman pouring milk onto?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is a woman pouring into pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"who adds ingredients to pasta?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman pouring ingredients into?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a person pour onto some noodles?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what is a woman adding milk to?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is a woman adding something to?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is the woman pouring liquid over?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is a woman pouring over noodles?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is someone pours a milky doing?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"m7x8uIdg2XU_67_73\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"where are different sets of teams playing football?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are different sets of teams playing football on?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are different sets of teams playing on a field?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who passes the ball to one of his team mates?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a soccer player pass to one of his team mates?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"how many teams play soccer?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many teams are playing soccer?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is dribbling down the field?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are peoples playing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who kicked the ball?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who reverses the ball?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a soccer player dribbling down?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what kicked the ball?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what did the soccer teams kick?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what did the soccer players kick?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a soccer player reverse?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are several teams playing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are the men playing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are two teams playing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do two teams play?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are several teams doing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are different sets of teams doing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"mCrRHP4LFmo_24_40\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what runs a few steps then glides across the ice?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"otter\"\n  },\n  {\n    \"question\": \"what does an otter run a few steps then glides across?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what slides along some ice?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"otter\"\n  },\n  {\n    \"question\": \"what slid on the ice?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"beaver\"\n  },\n  {\n    \"question\": \"what is sliding across ice?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"otter\"\n  },\n  {\n    \"question\": \"what is sliding across the ice?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"otter\"\n  },\n  {\n    \"question\": \"what is sliding on ice?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"otter\"\n  },\n  {\n    \"question\": \"what does a sea otter slide along?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is an otter sliding across?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is moving over ice?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"otter\"\n  },\n  {\n    \"question\": \"what did the beaver slide on?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is sliding on the ice?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"otter\"\n  },\n  {\n    \"question\": \"what slides on the ice?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"otter\"\n  },\n  {\n    \"question\": \"what is a otter sliding across?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what does an otter slide on?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is an otter sliding on?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is an otter moving over?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is the otter sliding on?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is a animal sliding on?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is running?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"otter\"\n  },\n  {\n    \"question\": \"what is sleeping again and again?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"otter\"\n  },\n  {\n    \"question\": \"what is an otter doing?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a otter doing?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is an otter doing?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a animal doing?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is the otter doing?\",\n    \"video_name\": \"mF6ijhSrbBQ_32_40\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"who is peeling the skin of a mango using a vegetable peeler?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling the skin off a mango using a knife?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman peeling the skin of using a vegetable peeler?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is a person peeling off a mango using a knife?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what is a person peeling the skin off using a knife?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"who peeled an avocado?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who peels a mango?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is peeling a mango?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is peeling a squash?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does an individual peel?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is a chef peeling?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is someone peeling?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what does a person peel?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what do a man peel?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"avocado\"\n  },\n  {\n    \"question\": \"what is a woman peeling?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is a person peeling?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is the person peeling?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is being peeled?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is peeled?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"mFCf8lLXrUc_25_35\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"who is cutting a mango into large pieces?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts four large slices as close as possible to the seed of a peeled mango?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person cutting into large pieces?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"who slices a mango into sections?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sliced a vegetable?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is sliced lengthwise?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"who slices a large fruit?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a mango?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person slice into sections?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"who is slicing up a squash?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a mango?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a peeled mango?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"lengthwise\"\n  },\n  {\n    \"question\": \"what is someone slicing up?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"squash\"\n  },\n  {\n    \"question\": \"what does a woman slice?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is a person slicing?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is the person slicing?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is a person cutting?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is being sliced?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is sliced?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"mFCf8lLXrUc_36_57\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is messing with a cat trying to get a drink of water?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog messing with trying to get a drink of water?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is eating while a puppy chews on its ear?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is eating out of a bowl?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat eating out of?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a puppy playing with?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is the puppy teasing?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"bite\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"chew\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"mes\"\n  },\n  {\n    \"question\": \"what is the puppy doing?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"tease\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"mHv4iJ9Yr1g_10_16\",\n    \"answer\": \"gnaw\"\n  },\n  {\n    \"question\": \"who is a large black dog licking the baby is holding?\",\n    \"video_name\": \"mJ9eRvxjLc4_0_16\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a large black dog licking a woman is holding?\",\n    \"video_name\": \"mJ9eRvxjLc4_0_16\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what licked the baby and the spit up?\",\n    \"video_name\": \"mJ9eRvxjLc4_0_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what licks a baby?\",\n    \"video_name\": \"mJ9eRvxjLc4_0_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is licking a baby?\",\n    \"video_name\": \"mJ9eRvxjLc4_0_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who does a dog lick?\",\n    \"video_name\": \"mJ9eRvxjLc4_0_16\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a dog licking?\",\n    \"video_name\": \"mJ9eRvxjLc4_0_16\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is sniffing?\",\n    \"video_name\": \"mJ9eRvxjLc4_0_16\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"mJ9eRvxjLc4_0_16\",\n    \"answer\": \"lick\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"mJ9eRvxjLc4_0_16\",\n    \"answer\": \"sniff\"\n  },\n  {\n    \"question\": \"what is a large black dog doing?\",\n    \"video_name\": \"mJ9eRvxjLc4_0_16\",\n    \"answer\": \"lick\"\n  },\n  {\n    \"question\": \"who enters a grocery store pushing an empty pram?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is pushing a tiny baby carriage into a grocery store?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is pushing a stroller through a grocery store?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays with a toy stroller in a supermarket?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who wheels a stroller around a store?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is pushing a toy stroller in a store?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a small girl enter pushing an empty pram?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"grocery\"\n  },\n  {\n    \"question\": \"who is pushing a stroller in a store?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is a little girl pushing through a grocery store?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what does a small girl enter a grocery store pushing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"pram\"\n  },\n  {\n    \"question\": \"who stands in front of a shelf?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl pushing a toy stroller in?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"who is a young girl pushing in a store?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what does a girl play with a toy stroller in?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"supermarket\"\n  },\n  {\n    \"question\": \"what is a young girl pushing a stroller in?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"who is pushing a small stroller?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is pushing a baby stroller?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who did the little girl push in the store?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what does a small child push through a grocery store?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"cart\"\n  },\n  {\n    \"question\": \"what is walking in a grocery store?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"bay\"\n  },\n  {\n    \"question\": \"who pushes a little stroller?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who pushes a stroller?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is a little girl pushing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is pushing a doll stroller?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is the little girl pushing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who is walking through a store?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a little girl push?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"who does a kid push?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a girl walking through?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"who is a girl pushing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"stroller\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a small baby doing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a bay doing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a small girl enters a grocery store doing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is the little girl doing?\",\n    \"video_name\": \"mOZkcBcWR8o_6_12\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"who is passionately playing a guitar in front of an audience?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar on a stage?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is paying guitar on a stage?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar on a stage?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man passionately playing in front of an audience?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man paying on a stage?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing on a stage?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when is a man paying guitar?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a man playing guitar?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a man playing a guitar?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who plays an acoustic guitar?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an acoustic guitar?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who enjoyed playing his guitar?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played his guitar?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what did the man enjoy playing?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man is passionately doing?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"pay\"\n  },\n  {\n    \"question\": \"what is the man enjoyed doing?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"mYzajpeAWuA_100_112\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a herd of caribou crossing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are a herd of deer crossing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are different species of dear roaming in?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what are a group of deer crossing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what did the herd of deer cross?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are moose crossing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do a herd of deer cross?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are a group of deers crossing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are heading toward a forest?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"deer\"\n  },\n  {\n    \"question\": \"what are several deer heading toward?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what are dears passing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what do many deer cross?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are deer crossing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are animals crossing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are the deer crossing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are a group of deer doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what are a group of deers doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what are a herd of caribou doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what are a herd of deer doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what are animals doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what are dears doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what are deer doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what are different species of dear doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"roam\"\n  },\n  {\n    \"question\": \"what are moose doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what are several deer doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what are some antelope or similar animals doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what are the deer doing?\",\n    \"video_name\": \"mZVPkPqwzR4_38_45\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"how many eggs are sizzling in a frying pan?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are eggs cooking up in a pan?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"who is frying eggs on a stove?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many eggs are frying in a skillet?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a person frying eggs on?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what are eggs cooking on?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what are eggs cooking in?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"how many eggs are frying on a pan?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many eggs does a chef fry?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two eggs sizzling in pan?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"frying\"\n  },\n  {\n    \"question\": \"who is cooking some egg dishes?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who fries two eggs?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what were the eggs cooking on?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"what are two eggs frying in?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"what is a person cooking?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what are eyes doing?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are some eggs doing?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what were the eggs doing?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what are two eggs doing?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what are two eggs doing?\",\n    \"video_name\": \"mbesJaS6vwg_187_195\",\n    \"answer\": \"sizzle\"\n  },\n  {\n    \"question\": \"who lakadama kanu pade che?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"machinthi\"\n  },\n  {\n    \"question\": \"who drilled a hole into the piece of wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drilling a hole in a piece of wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who made a hole in a piece of wood with a drill?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who did yakati machinthi lakadama?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"kanu\"\n  },\n  {\n    \"question\": \"who is drilling a hole through a board?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is drilling a hole in a board?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a hole through a piece of wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a hole into a piece of wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a hole in a strip of wood with a power drill?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what a hole in a piece of wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the lady make in a piece of wood with a drill?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what do the man drill into the piece of wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what did the lady make a hole in a piece of wood with?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"drill\"\n  },\n  {\n    \"question\": \"what is someone drilling in a piece of wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is a woman drilling in a piece of wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is a person drilling in a piece of wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is a man drilling in a piece of wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is a woman drilling a hole through?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a woman drilling through a board?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is a man drilling in a board?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what a hole in some wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drilling a wood block?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a person drills a hole in?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"who is drilling a hole?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what a hole in wood?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone drilling?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"hole\"\n  },\n  {\n    \"question\": \"what is a man drilling?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"block\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"drill\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"drill\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"drill\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"me1D1WZ0yNM_120_124\",\n    \"answer\": \"drill\"\n  },\n  {\n    \"question\": \"where does a rhino walk?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is grazing on some grass?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"where is a rhino eating?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is grazing in the grass?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"rhinocero\"\n  },\n  {\n    \"question\": \"what is grazing in a field?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"what grazed on the grass?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"what did the rhino graze on?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what walks in a field?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"what is eating on a field?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"what is eating grass?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"what does a rhino walk in?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a rhino eating on?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a rhinoceros eating?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a rhino eating?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is the rhinocerous?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"grazing\"\n  },\n  {\n    \"question\": \"what are animals?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"grazing\"\n  },\n  {\n    \"question\": \"what is eating?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"rhino\"\n  },\n  {\n    \"question\": \"what is a rhinoceros doing?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"graze\"\n  },\n  {\n    \"question\": \"what is a rhino doing?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are rhinos doing?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what are animals doing?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"graze\"\n  },\n  {\n    \"question\": \"what is the rhinocerous doing?\",\n    \"video_name\": \"mfJjIOfj6D8_3_10\",\n    \"answer\": \"graze\"\n  },\n  {\n    \"question\": \"how many men hid behind a bush as the ladies passed by?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are staring at women behind a bush?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are watching women from behind a bush?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men hide behind some bushes?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are hiding behind a bush?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are spying on some women?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men hide behind as the ladies passed by?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"bush\"\n  },\n  {\n    \"question\": \"how many people are hiding behind a bush?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men staring at women behind?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"bush\"\n  },\n  {\n    \"question\": \"what are two men facing their backs hiding behind?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"bush\"\n  },\n  {\n    \"question\": \"how many men watch two women?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are two men facing their backs eyeing walking down the road ahead of them?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women do two men watch?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are watching two women?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are two men watching?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men hiding behind?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"bush\"\n  },\n  {\n    \"question\": \"who are men looking?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two people hiding behind?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"bush\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a man and woman are concealed behind some bushes doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"spy\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what were the men doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_120_128\",\n    \"answer\": \"spy\"\n  },\n  {\n    \"question\": \"how many men are walking down a dirt road?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are walking down a street talking?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are walking down a street holding their jackets?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are walking down the road?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are walking on a road?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people walk down a road?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men walking down holding their jackets?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"how many men are walking outside?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are walking?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men walking down talking?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"how many men are walking together?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the men walk down?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"how many people are walking?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two people walk down?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are two men walking on?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a painter and another man doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"mmSQTI6gMNQ_15_21\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who rides a motorcycle across a field?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rode his motorcycle on the dirt road?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rode his motorcycle dow the dirt road?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on a bike with his luggage?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on a motor bike?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man speeding on a bike on a muddy road suddenly come to?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"halt\"\n  },\n  {\n    \"question\": \"what is a man riding on with his luggage?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what did a man ride on the dirt road?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding on a bike with?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"luggage\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is the man riding?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"msCidKHOh74_392_399\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"who rode his motorcycle down a dirt road?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rode his motorcycle down the dirt road?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rides a motorcycle across a field?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on a motor bike?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man wearing a backpack riding?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding a bike on the ground with?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"luggage\"\n  },\n  {\n    \"question\": \"what did the man ride down a dirt road?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what did the man ride down the dirt road?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who rides a motorcycle?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is driving a motorcycle?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man rides?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is the man riding?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man driving?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"msCidKHOh74_410_418\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is peeling the skin of a ripe papaya using a knife?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is carving the skin off a papaya fruit?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is peeling the skin off a papaya?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a papaya with a knife?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is using a large knife to peel a papaya?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person carving off a papaya fruit?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what is the woman peeling off a papaya?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what is a woman peeling a papaya with?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is the woman peeling the skin off?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"papaya\"\n  },\n  {\n    \"question\": \"what is a woman peeling with a knife?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"papaya\"\n  },\n  {\n    \"question\": \"what is a woman using to peel a papaya?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who peels an orange object?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is peeling an orange vegetable?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a papaya?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a papaya?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person peel?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what is a woman peeling?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"papaya\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"papaya\"\n  },\n  {\n    \"question\": \"what is the woman peeling?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"what is being peeled?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"papaya\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"carve\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"mtrCf667KDk_134_176\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"who is sprinting well ahead of the others in a race on a track field?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a group of men race down?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"how many men run a race?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"eight\"\n  },\n  {\n    \"question\": \"what do a group of men run?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what did the racers run on?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are racers running down?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are several men running on?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are men running in?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are men running?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are the men running?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do eight men run?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are athletes doing?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are several runners doing?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"muI1BFsdbdo_33_45\",\n    \"answer\": \"sprint\"\n  },\n  {\n    \"question\": \"what is standing in a sink drinking water that is pouring out of the facet?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is running while a bird stands in the sink below?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"faucet\"\n  },\n  {\n    \"question\": \"what is having a bath in the kitchen sink?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is bathing in a sink under running water?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is taking a bath under the faucet?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is playing in a sink with running water?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is splashing around under a running faucet?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is taking a shower in a sink?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a bird in a sink keep getting under the running water from?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"faucet\"\n  },\n  {\n    \"question\": \"what is a bird bathing in a sink under?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the bird taking under the faucet?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is the bird taking a bath under?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"faucet\"\n  },\n  {\n    \"question\": \"what is a bird playing in with running water?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what is bathing in a sink?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is bathing in the sink?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what stands in the sink below?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is showering in the sink?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is playing in tap water?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a bird stand in below?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what is taking a bath?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is a bird showering in?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what is a bird taking?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what gets washed?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"splash\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"mv89psg6zh4_33_46\",\n    \"answer\": \"shower\"\n  },\n  {\n    \"question\": \"who is holding a pack of rubbing the top most card which then disappears?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a pack of playing cards which then disappears?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who manipulates a deck of playing cards?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing some trick with play cards?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person manipulate a deck of?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"playing\"\n  },\n  {\n    \"question\": \"what is a man doing with play cards?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"what is a man doing some trick with?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who handles a deck of cards?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who is holding a deck of cards?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is displaying a deck of cards in his hands and he palms the top card in the deck?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing card tricks?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a card trick?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is performing a card trick?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is doing a card trick?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man displaying a deck of cards in his hands and he palms the top card in?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"deck\"\n  },\n  {\n    \"question\": \"what did someone do?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"what is a person performing?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"display\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"n016q1w8Q30_2_11\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"who is demonstrating as to how to play a violin?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who plays a violin?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing violin?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays the violin?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing a violin?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing the violin?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman play?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a girl playing?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is the woman playing?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what did a lady play?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what did the lady play?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"n2NLoLNecgI_168_178\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who performs a song on a stage?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"marley\"\n  },\n  {\n    \"question\": \"what is bob marley playing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when is a man playing the guitar along with a band of musicians?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is playing the guitar on stage along with a band of musicians?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"marley\"\n  },\n  {\n    \"question\": \"what is a man playing on stage along with a band of musicians?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing while playing the guitar?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what performed on stage?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"how many men are singing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are playing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when did the band perform?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when did the men perform?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is playing on stage?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is performing on a stage?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"when is a band performing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a band playing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is performing a song?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band performing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing onstage?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is performing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a band doing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"n6U-TGahwvs_100_110\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is having a ride in a vehicle seated next to a window?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a monkey having in a vehicle seated next to a window?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"ride\"\n  },\n  {\n    \"question\": \"what is sitting on a moving bus?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"who rode the bus?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"orangatan\"\n  },\n  {\n    \"question\": \"what rode the bus?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is riding on a bus?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what rides the bus?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is riding in the car?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is sitting in a car?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is riding a bus?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a monkey riding in?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a monkey sitting in?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"nBFhvrAOFqY_23_29\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who took off his shirt and pants?\",\n    \"video_name\": \"nBFhvrAOFqY_89_103\",\n    \"answer\": \"orangatan\"\n  },\n  {\n    \"question\": \"what strips for the camera?\",\n    \"video_name\": \"nBFhvrAOFqY_89_103\",\n    \"answer\": \"chimpanzee\"\n  },\n  {\n    \"question\": \"who stripped off his clothes?\",\n    \"video_name\": \"nBFhvrAOFqY_89_103\",\n    \"answer\": \"orangatan\"\n  },\n  {\n    \"question\": \"what does a chimpanzee strip for?\",\n    \"video_name\": \"nBFhvrAOFqY_89_103\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is taking off clothes?\",\n    \"video_name\": \"nBFhvrAOFqY_89_103\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what takes off its shirt?\",\n    \"video_name\": \"nBFhvrAOFqY_89_103\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is taking its clothes off?\",\n    \"video_name\": \"nBFhvrAOFqY_89_103\",\n    \"answer\": \"orangutan\"\n  },\n  {\n    \"question\": \"what does a monkey take off?\",\n    \"video_name\": \"nBFhvrAOFqY_89_103\",\n    \"answer\": \"shirt\"\n  },\n  {\n    \"question\": \"what is undressing?\",\n    \"video_name\": \"nBFhvrAOFqY_89_103\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is an orangutan doing?\",\n    \"video_name\": \"nBFhvrAOFqY_89_103\",\n    \"answer\": \"strip\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"nBFhvrAOFqY_89_103\",\n    \"answer\": \"undres\"\n  },\n  {\n    \"question\": \"who pinches the tip a big banana which slits open?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is peeling a banana from the opposite end to the stem?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who peeled the banana starting at the bottom?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is peeling a banana from the round end?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who then peels off the skin on either side?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man peeling from the opposite end to the stem?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"who peels a banana from the bottom?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"what do a man peel starting at the bottom?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what does an individual peel a banana from?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"bottom\"\n  },\n  {\n    \"question\": \"what does an individual peel from the bottom?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what is a person peeling from the round end?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"who pealing a banana?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who peeled a banana?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who peels a banana?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is peeling a banana?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man peal?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what do a man peel?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what does a man peel?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what is a man peeling?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what is the man peeling?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what is being peeled?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"peal\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a man peeled the banana doing?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"nBJV56WUDng_38_47\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"who is shown snowboarding down a snow covered slope?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"snowboarder\"\n  },\n  {\n    \"question\": \"who snowboards down a snowy slope?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who snowboards across the snowy mountains?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are peoples skating over?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"who skiied down the hill?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"snowboarder\"\n  },\n  {\n    \"question\": \"who snowboards down a slope?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the snowboarder skiied down?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"who is snowboarding in the snow?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is snowboarding down a mountain?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is snowboarding down a hill?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is skiing in the ice?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person snowboard down?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"slope\"\n  },\n  {\n    \"question\": \"what is a person snowboarding in?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what is someone snowboarding down?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what is a person snowboarding down?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what is a man snowboarding down?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"mountain\"\n  },\n  {\n    \"question\": \"what is a man skiing in?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"who is snowboarding downhill?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is going downhill?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"skier\"\n  },\n  {\n    \"question\": \"who is snowboarding?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"ski\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"snowboard\"\n  },\n  {\n    \"question\": \"what is a snowboarder is shown doing?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"snowboard\"\n  },\n  {\n    \"question\": \"what is people doing?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"snowboard\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"snowboard\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"nCtZFOYAlvQ_44_49\",\n    \"answer\": \"snowboard\"\n  },\n  {\n    \"question\": \"who is grating a potato into a pan that contains water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is grating a raw peeled potato using a grater?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is grating potatoes into a bowl of water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is shredding potatoes into a bowl of water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is grating a potato into a bowl of water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being shredded into a bowl of water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is grated into a bowl of water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a person grating into a pan that contains water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is shredding a potato in the water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who grates a potato into a bowl?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is putting a potato in a bowl of water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person grating into a bowl of water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a person grate a potato into?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a person grate into a bowl?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man putting in a bowl of water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who grated a potatoe into the water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man shredding a potato in?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is shredding potatoes into water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man shredding in the water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what did someone grate a potatoe into?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did someone grate into the water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"potatoe\"\n  },\n  {\n    \"question\": \"what is the cook shredding potatoes into?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is some grating onion into?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is some grating into water?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is grating a potato?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man grating?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is being grated?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"grate\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"grate\"\n  },\n  {\n    \"question\": \"what is some doing?\",\n    \"video_name\": \"nHZsE7T7hwI_13_23\",\n    \"answer\": \"grate\"\n  },\n  {\n    \"question\": \"what did thumper thump when the girl rabbit kissed him?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"who thumped his foot when the girl rabbit kissed him?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"thumper\"\n  },\n  {\n    \"question\": \"how many rabbits are loving each other?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many bunnys are kissing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many animated bunnies are kissing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who kisses another bunny?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"how many animated rabbits kiss?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cartoon rabbits kiss?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cartoon rabbits are kissing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what kisses another rabbit?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is kissing another bunny?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"bunny\"\n  },\n  {\n    \"question\": \"who a cartoon bunny kisses?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"bunny\"\n  },\n  {\n    \"question\": \"what is kissing another rabbit?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what a cartoon rabbit kisses?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"who is a bunny kissing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"bunny\"\n  },\n  {\n    \"question\": \"what is kissing other one?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"rabbit\"\n  },\n  {\n    \"question\": \"what kisses another?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what kiss?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are kissing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what are two rabbits doing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"love\"\n  },\n  {\n    \"question\": \"what are two animated bunnies doing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a rabbit doing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a bunny doing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are two bunnys doing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are two cartoon rabbits doing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are the rabbits doing?\",\n    \"video_name\": \"nLvX-erABqY_67_72\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who is holding a cat dressed up in clothes?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is shaking a cats paws into the camera lens?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing with a white cat in a dress?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is holding a cat in a dress?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who held the cat up by its arms?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl playing with a white cat in?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a girl holding in a dress?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a girl holding a cat in?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what did the girl hold up by its arms?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is doing martial arts?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is wearing costume?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is holding a cat?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who made his arms box?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is making him punch?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing with a cat?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the cat wearing?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"costume\"\n  },\n  {\n    \"question\": \"what is a woman holding?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a girl playing with?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a person playing with?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what did the girl make?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a girl showing?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is dressed up?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a woman making?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what was the girl moved the cat 's paws as if he doing?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nLz0QuerH1c_8_15\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"who is walking across a stage holding a microphone?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did carrie underwood sing a song in?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"what did carrie underwood sing in concert?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"who sang a song in concert?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"underwood\"\n  },\n  {\n    \"question\": \"what is a woman walking across holding a microphone?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sang a song on stage?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"carrie\"\n  },\n  {\n    \"question\": \"who is walking across a stage singing?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sings into a microphone?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman walking across singing?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is singing into a microphone?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman sing into?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"when is a woman singing?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when is a girl singing?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a woman singing into?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is singing?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"underwood\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"nMBSDpB3WB8_5_14\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what played with a bug on the carpet?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing with a fly on the floor?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is trying to get a fly on the ground?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what did the dog play with a bug on?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"carpet\"\n  },\n  {\n    \"question\": \"what did the dog play with on the carpet?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"bug\"\n  },\n  {\n    \"question\": \"what is a dog playing with a fly on?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is pawing at a fly in the carpet before it?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog playing with on the floor?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what played witha bug?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is trying to catch a fly?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing with an ant?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is barking at a fly?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing with a fly?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing with the fly?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog barking at?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what did the dog play?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"witha\"\n  },\n  {\n    \"question\": \"what is a dog playing with?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is the dog playing with?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"paw\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what is a brown dog barks and tries to nab a housefly doing?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"nPj6EcVGoUY_7_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is sitting in a room?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing saxophone?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a trumpet?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a musical instrument?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the trumpet?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing the trumpet?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a trumpet?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played his trumpet?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an instrument?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting in?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a young man playing?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"trumpet\"\n  },\n  {\n    \"question\": \"what does a boy play?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"trumpet\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"trumpet\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"trumpet\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"trumpet\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"trumpet\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"nS6oQxX_Qi8_2_12\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a small kid wearing cricket leg pads fall on?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a small kid holding a cricket bat barely fall on?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is dressed as a hockey goalie?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who did hockey equipment size is trying to walk in over?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what sized a child is trying to walk in over?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who falls over in hockey equipment?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who plays with a hockey stick?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is on football dress?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who knocks himself over?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does a kid fall over in?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what is a baby on?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who falls over?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a small kid doing?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"nTUONeDqhdk_10_15\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is coming out from the back side of the couch?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a black and white colored cat standing on a gray sofa turn to?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"right\"\n  },\n  {\n    \"question\": \"what crawls out from between the cushion and the back of a sofa?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what comes out from under the sofa cushions?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is crawling out from inside a couch?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what crawls forth from a couch crease?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what came out of the couch cushions?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what came up out of the couch?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is playing with a cat toy?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what crawls out of a couch?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is climbing out a couch?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is on a sofa?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is on the couch?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat crawl out of?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a cat climbing out?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is the cat on?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a cat on?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a black and white colored cat doing?\",\n    \"video_name\": \"nTasT5h0LEg_12_14\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is rubbing its face on a small child?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what rubs its head against a baby?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what cuddled with the baby?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what rubs up against an infant?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what snuggled with the baby?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who did the cat cuddle with?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a cat rubbing on a small child?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who did the cat snuggle with?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what rubs up against a baby?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who does a cat rub up against?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"infant\"\n  },\n  {\n    \"question\": \"what is snuggling with a baby?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is rubbing against a baby?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is a cat snuggling with?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a cat rubbing against?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is nuzzling a baby?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is snuggling a baby?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is caressing the baby?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what plays with a baby?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is a cat nuzzling?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a cat snuggling?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who does a cat play with?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is the cat caressing?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a black and white colored cat doing?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"snuggle\"\n  },\n  {\n    \"question\": \"what is a black-and-white-cat doing?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"snuggle\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"nuzzle\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"nTasT5h0LEg_40_43\",\n    \"answer\": \"cares\"\n  },\n  {\n    \"question\": \"who is petting a tiny kitten who is chewing on a string?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who touched the kitten chewing on a string?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did someone touch chewing on a string?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is playing with string and a hand?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what was biting on a shoestring?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"who touches a little kitten?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who touches a kitten?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays with a kitten?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing with a kitten?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is touching a kitten?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what was the kitten biting on?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"shoestring\"\n  },\n  {\n    \"question\": \"what is playing with a kitten?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing with?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what a person touches?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what does a person play with?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is a person playing with?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is a person touching?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is playing?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a very young kitten doing?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"what is a kitten doing?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a brown kitten doing?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what was the kitten doing?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"bite\"\n  },\n  {\n    \"question\": \"what is the kitten doing?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a tiny kitten doing?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone touched the kitten doing?\",\n    \"video_name\": \"nULE40HEWpA_5_11\",\n    \"answer\": \"chew\"\n  },\n  {\n    \"question\": \"who tzu dog in a frilly dress romps on a leather sofa before jumping down?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"shih\"\n  },\n  {\n    \"question\": \"what did a shih tzu in a frilly dress romps on a leather sofa before jumping down?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog in a dress running around on?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a dog in a dress playing on?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a dog wearing a dress running on?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what did the dog try to get off?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what tried to get off the couch?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is trying to get off the couch?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a little dog run around on?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what runs around on a couch?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing on the sofa?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a small dog playing on?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is a puppy running around on?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what plays on the couch?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing on a sofa?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a small dog play on?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a puppy playing on?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"settee\"\n  },\n  {\n    \"question\": \"what is a dog playing on?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is a puppy wearing?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"dres\"\n  },\n  {\n    \"question\": \"what is a cute puppy doing?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a dog in a dress doing?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a shih tzu dog in a frilly dress romps on a leather sofa before doing?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a small dog doing?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"nV3Wv8iHp4U_0_38\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who is demonstrating how to make meatballs by scooping up a spoonful of ground meat and rolling it into a ball?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making small balls of sredded meat or vegetable?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making small balls from a meat mixture using his palms?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who scoops ground meat out of a bowl?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who rolls sredded meat or vegetable into balls?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who is forming meatballs from a mixture?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a minced mixture portioned with scoop?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what does an individual scoop ground meat out of?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does an individual scoop out of a bowl?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is portioned with a fruit scoop?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"what is formed into balls?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man forming meatballs from?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"what then rolled into small balls?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"what is molded into balls?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who makes small meatballs?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who scooped meatballs?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is making meatballs?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is making meat balls?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is preparing some dish?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is spooned out?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man preparing?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"form\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nYwbAb0QvBE_195_210\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"who is cutting the spare fat off an uncooked rack of ribs?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting the fat off the pork loin?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut off some fat from the rack of ribs?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trimming fat from a piece of meat?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a piece of fat off of a rack of ribs?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting fat from a piece of meat?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone cutting off an uncooked rack of ribs?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"fat\"\n  },\n  {\n    \"question\": \"who is cutting fat off of some ribs before cooking them?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting fat off of some meat?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cut the fat off the ribs?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man cut off from the rack of ribs?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"fat\"\n  },\n  {\n    \"question\": \"who is cutting a piece of meat?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the man cut the fat off?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"what did the man cut off the ribs?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"fat\"\n  },\n  {\n    \"question\": \"what is a person cutting off of some ribs before cooking them?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"fat\"\n  },\n  {\n    \"question\": \"who is cutting fat from some ribs?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person cutting fat off of before cooking them?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"what is a person cutting a piece of?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is cutting meat with knife?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting fat off of meat?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who removes fat from meat?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person cutting fat from?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"who cuts the fat off meat?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man cutting with knife?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man cutting meat with?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does a person remove fat from?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who cuts meat?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"trim\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"nZSFn51l3hc_318_326\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who is slicing raw spare ribs with a knife?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cut some meat off the rack of ribs?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trimming meat off of a rack of ribs?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing two uncooked racks of ribs apart?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing the meat off the bone?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a pieces of a meat?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person slicing raw spare ribs with?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what did the man cut off the rack of ribs?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a person slicing with a knife?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"spare\"\n  },\n  {\n    \"question\": \"what is someone slicing two uncooked racks of apart?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"what is the man slicing the meat off?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"bone\"\n  },\n  {\n    \"question\": \"what is the man slicing off the bone?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a person cutting a pieces of?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who cut the ribs in half?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting ribs with a knife?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a piece of meat?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did the man cut the ribs in?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"what is someone cutting ribs with?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is slicing meat?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting ribs?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts up some meat?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cutting some ribs?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting up some ribs?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone cutting a piece of?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is someone cutting with a knife?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"what did the man cut in half?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"who is cutting meat?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts ribs?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a cook cut up?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a person cut?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"what is a person cutting up?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"what is a person cutting?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"trim\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"nZSFn51l3hc_480_485\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who cuts a slice from a barbequed pork meat slab using a small knife and a pair of tongs?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting barbecued ribs with a knife?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing a rack of ribs?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does someone holding a rack of ribs with tongs slice off a rib with?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does someone holding a rack of ribs with tongs slice off with a knife?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"who separated the ribs from the rack?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person cutting barbecued ribs with?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who cut a rack of bbq ribs?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person slicing a rack of?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"what do the man separate the ribs from?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"rack\"\n  },\n  {\n    \"question\": \"what do the man separate from the rack?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"who is slicing the barbecued ribs?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did someone cut a rack of?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"bbq\"\n  },\n  {\n    \"question\": \"who is slicing ribs?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing some meat?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing meat?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cuts some meat?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting ribs?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting up some ribs?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting some meat?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a meat?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"what is the man slicing?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"what is someone cutting?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a person cut?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man cutting up?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"rib\"\n  },\n  {\n    \"question\": \"what is a person cutting?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man cuts a slice from a barbequed pork meat slab doing?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"nZSFn51l3hc_660_666\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"how many men are practicing karate moves in a field?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are doing karate in a field?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"where did the boys do martial arts together?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where did the men do martial arts together?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"how many guys have a martial arts fight?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are practicing martial arts?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many boys are doing martial arts?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men practice martial arts?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what did the boys do martial arts together in?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what did the men do martial arts together in?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"how many men are doing karate?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what do kids karate?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"how many guys are karate fighting?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"where are men fighting?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"how many boys are fighting one?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are fighting?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who martial arts?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what are men fighting in?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are three boys in karate costumes doing?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is three boys doing?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"spar\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"n_Z0-giaspE_168_193\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who is jumping out of a helicopter wearing a parachute?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting in the open door of a helicopter?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps out of a helicopter with a parachute?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man jumping out of wearing a parachute?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"who is jumping out of a helicopter?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getting out of a plane?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is diving in the helicopter?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who parachutes out of a helicopter?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumped out of the helicopter?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps out of a helicopter?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps out of a plane?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping from a helicopter?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man jumping out of?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"who is jumping out a airplane?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man diving in?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what did the man jump out of?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what does a man parachute out of?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is a man jumping from?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"what is a man jumping out?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"who jumps out?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"n_Z0-giaspE_270_278\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"how many men are helping up another man who has fallen on the ground?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys helped up a friend who had fallen down?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys help another boy that has fallen down?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who do two other boys with surprised looks assist up?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is helped up by two other guys?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who takes a slow exaggerated fall?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do two other young men help get up?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls down and two men help a kid up?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man fall down and two men help up?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who fell down on the ground?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fell to the ground?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who falls to the ground and his friends help him up?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"how many men are acting?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who falls on the ground and his two friends standing nearby help him get up?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man fall down on?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what did a boy fall to?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who falls down?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who fell down?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man falls on the ground and his two friends doing?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"act\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"n_Z0-giaspE_379_387\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"how many men did a funny skit with a boxer in front of a crowd of people?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are dancing in front of a crowd?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are dancing in front of a crowd?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men start dancing in front of a class?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many boys are dancing in the class room?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are performing before an audience?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men assume fighting stances?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many guys perform a dance routine?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are doing a presentation?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many boys are dancing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many men are dancing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who did the men promote?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"what are three men performing before?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"audience\"\n  },\n  {\n    \"question\": \"what do three guys perform?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"routine\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"presentation\"\n  },\n  {\n    \"question\": \"what are a group of boys doing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are boys doing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are guys doing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are three boys doing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is three men assume doing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is three men start doing?\",\n    \"video_name\": \"n_Z0-giaspE_437_447\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who answered the phone while reading the bible on the couch?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man answer while reading the bible on the couch?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who uses the phone while sitting on a couch?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting on a sofa reading a book?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reading a book on a couch?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is receiving a phone call while reading a book?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man reading a book on a couch take?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a man use while sitting on a couch?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who read a book on the couch?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is reading the bible?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the boy read on the couch?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what did the boy read a book on?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is a man sitting on reading a book?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is a man receiving while reading a book?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who answers a cordless telephone?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a phone call?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is answering the phone?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who answers a phone?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who reads a book?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reading a book?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is making a call?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking on a phone?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy answering?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is attending a telephone call?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man answering?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a young man reading?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what is a boy reading?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what does a man read?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what is a boy making?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"call\"\n  },\n  {\n    \"question\": \"what does a man answer?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what is a man talking on?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a guy reading?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"book\"\n  },\n  {\n    \"question\": \"what is one man attending?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"who reads?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reading?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a guy sits on a couch doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"receive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man reads and uses the phone while doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"attend\"\n  },\n  {\n    \"question\": \"what is the man answered the phone while doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"n_Z0-giaspE_62_78\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a small wide eyed animal eating a piece of?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"who is eating a piece of food?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what is a loris eating a piece of?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a slow loris eating?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what eats a piece of fruit?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"who is eating something?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what does an animal eat a piece of?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"who is eating a fruit?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what is eating a carrot?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"sloth\"\n  },\n  {\n    \"question\": \"what is a slow loris eating?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is eating some food?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is eating something?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what is a baby sloth eating?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"what is a small animal eating?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who eats?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"lorus\"\n  },\n  {\n    \"question\": \"what is eating?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what is a raccoon-like animal doing?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a slow loris doing?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a small wide eyed animal doing?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a lorie doing?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a baby sloth doing?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a loris doing?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a animal doing?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a small animal doing?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a loris seated on a bed doing?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the animal with the big eyes doing?\",\n    \"video_name\": \"nb12bAaKzvA_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who tears two folded sheets of plain paper to get four rectangular pieces?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is tearing some folded pieces of paper?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who rips some sheets of paper in half?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"how many rectangular pieces a man tears two folded sheets of plain paper to get?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"who tears a piece of paper into four sections?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is tearing a sheet of paper into four parts?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a piece of paper into four sheets?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person tearing some folded pieces of?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what a man tears two folded sheets of plain paper to get?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"rectangular\"\n  },\n  {\n    \"question\": \"what does an individual rip some sheets of in half?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does an individual rip some sheets of paper in?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"who is tearing paper along creases?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a man tears a piece of into four sections?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man tearing a sheet of into four parts?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who tore a paper into quarters?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man cutting a piece of into four sheets?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who tears pieces of paper?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tore paper on the folds?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is tearing sheets of paper?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts pieces of paper?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting paper into pieces?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did someone tear into quarters?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is being divided into small pieces?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person tearing along creases?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what did someone tear on the folds?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what a man tears pieces of?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person tearing sheets of?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man cut pieces of?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is tearing paper?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cutting into pieces?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what a man tears?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person tearing?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man cut?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is the person tearing?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man tearing?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who are being prepared?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"tear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"tear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"tear\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"nc0fVlaTYEs_34_44\",\n    \"answer\": \"tear\"\n  },\n  {\n    \"question\": \"what is riding a bicycle with training wheels in circles?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is riding a bicycle around a stage?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a monkey riding a bicycle around?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a monkey riding around a stage?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"who rides a little pink bicycle?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"primate\"\n  },\n  {\n    \"question\": \"what rode a tricycle?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"chimpanzee\"\n  },\n  {\n    \"question\": \"what rides a bike?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is riding a tricycle?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"orangutan\"\n  },\n  {\n    \"question\": \"what is riding a bike?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"orangutan\"\n  },\n  {\n    \"question\": \"what is riding a bicycle?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what did the chimpanzee ride?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"tricycle\"\n  },\n  {\n    \"question\": \"what is an orangutan riding?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what an animal rides?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what a monkey rides?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a monkey riding?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is the monkey riding?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what did the monkey ride?\",\n    \"video_name\": \"nc8hwLaOyZU_1_19\",\n    \"answer\": \"tricycle\"\n  },\n  {\n    \"question\": \"who is talking to another man who kneels down holding a football?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking on a football field?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who knelt with a football in front of another man?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men talk on a football field?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did one man kneel with in front of another man?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"how many men are practicing football?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are playing football?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to a coach?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is preparing to kick a football?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who knelt down with the football?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a football player talking to?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"who kneels down with a football?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kneeling with a football?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many boys are talking?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the man kneel down with?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is talking with other man?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a man kneel down with?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a man kneeling with?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is one boy talking with?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men practicing?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are two men playing?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who kneels down?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a football player doing?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"kneel\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is one boy doing?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"nd0ToNwccl4_12_17\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"who is taking a bite of the icing on a cupcake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is taking a bite of a cupcake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young woman taking a bite of on a cupcake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"icing\"\n  },\n  {\n    \"question\": \"what is a young woman taking a bite of the icing on?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"cupcake\"\n  },\n  {\n    \"question\": \"what is a girl taking a bite of?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"cupcake\"\n  },\n  {\n    \"question\": \"who nibbles a tiny cupcake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who ate a tiny cupcake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who ate a small cupcake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who eats a cup cake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is eating a mini cupcake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who eats a cupcake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is eating cup cake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is eating a small cupcake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is eating cupcakes?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is eating a cup cake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is eating a cupcake?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a girl nibble?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"cupcake\"\n  },\n  {\n    \"question\": \"what did the girl eat?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"cupcake\"\n  },\n  {\n    \"question\": \"what does a girl eat?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"cupcake\"\n  },\n  {\n    \"question\": \"what is a girl eating?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"cupcake\"\n  },\n  {\n    \"question\": \"what is the woman eating?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"cupcake\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"ngHDYzhDBk4_24_29\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"how many teenage girls look over their shoulders toss pom poms into the air?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"how many women throw their pom poms in the air?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"who did a group of girls toss up?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"pom\"\n  },\n  {\n    \"question\": \"what do five teenage girls look over their shoulders toss pom poms into?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who do five teenage girls look over their shoulders toss into the air?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"pom\"\n  },\n  {\n    \"question\": \"how many teenage girls look over their shoulders then turn back?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"what did the girls throw their pom poms into?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what did the girls throw their pom poms in?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"how many girls perform a choreographed routine?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"who did the girls throw into the air?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"pom\"\n  },\n  {\n    \"question\": \"who did the girls throw in the air?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"pom\"\n  },\n  {\n    \"question\": \"what are women throwing pompons in?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what do five girls perform?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"routine\"\n  },\n  {\n    \"question\": \"what are girls showing?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"butt\"\n  },\n  {\n    \"question\": \"what is five teenage girls doing?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of girls doing?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are cheerleaders doing?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"cheer\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is five teenage girls doing?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are the girls doing?\",\n    \"video_name\": \"ngHDYzhDBk4_5_14\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is riding down the road when he does a wheelie?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"motorcyclist\"\n  },\n  {\n    \"question\": \"who is crashing his bike when trying to perform a stunt?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a motorcyclist riding down when he does a wheelie?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is falling off his motorbike after attempting a stunt?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who falls off while riding a dirt bike?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pops a wheelie on his motorcycle?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who loses control of his motorcycle?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"motorcyclist\"\n  },\n  {\n    \"question\": \"what rider falling out a dirt bike?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what pops a wheelie?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man crashing when trying to perform a stunt?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what a dirt bike rider falling out?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"who falls off a bike?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"what is a person falling off after attempting a stunt?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"who hits the ground?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who fell off a motorcycle?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does a motorcycle pop?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"wheelie\"\n  },\n  {\n    \"question\": \"who fell off his motorbike?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"rider\"\n  },\n  {\n    \"question\": \"who wrecks on his motorcycle?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a motorcyclist lose control of?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who fell off his bike?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"motorcylist\"\n  },\n  {\n    \"question\": \"what does an individual fall off?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who fell off his motorcycle?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an individual hit?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what did someone fall off?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who wipes out?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what did the motorcylist fall off?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what did the rider fall off?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what does a man wreck on?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what did the man fall off?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who comes off?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what wreck?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a dirt bike rider doing?\",\n    \"video_name\": \"nhm_APPwhWk_6_12\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who is drawing a face on a piece of paper when suddenly the scene shifts to two men painting a room?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is adding finishing touches to a drawing on paper?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drawing a picture on a piece of paper?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone drawing on a piece of paper when suddenly the scene shifts to two men painting a room?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a man adding to a drawing on paper?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"finishing\"\n  },\n  {\n    \"question\": \"what is a person drawing on a piece of paper?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who is drawing with a pencil?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who draws a sketch?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drew a picture?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is drawing on paper?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing on a paper?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing some cartoon?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a picture?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did an artist draw?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what did the man draw?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a person drawing with?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"pencil\"\n  },\n  {\n    \"question\": \"what is a person drawing on?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person draw?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"sketch\"\n  },\n  {\n    \"question\": \"what is someone drawing?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a person drawing?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is a man drawing?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"who is drawing?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"nlU3crMsbWI_19_23\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who pours oil into a bowl of food?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is drizzling some oil on top of a big bowl of food?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring oil into a bowl of ingredients?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring a sauce into some kind of mixture in a green bowl?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding oil to a bowl of ingredients?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding cooking oil into the mixture?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding essence to corn flakes?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring a dressing into a bowl of food?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring something into a bowl?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman adding to corn flakes?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"essence\"\n  },\n  {\n    \"question\": \"what is a woman drizzling on top of a big bowl of food?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is pouring oil in a bowl?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman pouring into a bowl of ingredients?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a woman pour into a bowl of food?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is adding oil to a dish?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman pouring into some kind of mixture in a green bowl?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is the woman adding cooking oil into?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"what is a woman adding to a bowl of ingredients?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a woman pouring into a bowl?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who pours sauce in a bowl?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the woman adding into the mixture?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a woman pouring in a bowl?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a woman adding to a dish?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who poured oil in the mixture?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman adding essence to?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"corn\"\n  },\n  {\n    \"question\": \"what is a woman pouring something into?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who adds vanilla to a mixture?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman pouring oil in?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a woman adding oil to?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what did the lady pour in the mixture?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is pouring liquid into a bowl?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a woman add to a mixture?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"vanilla\"\n  },\n  {\n    \"question\": \"what did the lady pour oil in?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"what does a woman add vanilla to?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"what is someone pouring liquid into?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"nohvigNMsbo_199_207\",\n    \"answer\": \"drizzle\"\n  },\n  {\n    \"question\": \"who cuts thick slices from a french bread loaf using a knife?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts slices off a huge loaf of bread?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a big bread into same size pieces?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a loaf of french bread?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a loaf of french bread?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting pieces of bread off a loaf?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a loaf of bread?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man cut from a french bread loaf using a knife?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"thick\"\n  },\n  {\n    \"question\": \"what is a man slicing into same size pieces?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a person slicing a loaf of?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a man cutting pieces of bread off?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"loaf\"\n  },\n  {\n    \"question\": \"what is a man cutting pieces of off a loaf?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is the man slicing a loaf of?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a man slicing a loaf of?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a man cutting off a loaf?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"who sliced the loaf of bread?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the lady slice the loaf of?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what did the man slice the loaf of?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"who is slicing bread?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts some bread?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting bread?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man cut?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man cuts thick slices from a french bread loaf doing?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"nq4hG6qgyPs_184_195\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who cuts a peeled white onion in half?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who then cuts the halves into thin strips?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who thereafter cuts thick slices from one half?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts an onion in half?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man thereafter cut thick slices from?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"who is cutting an onion into pieces?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man thereafter cut from one half?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"thick\"\n  },\n  {\n    \"question\": \"who is choppoing an onion?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is person choppoing?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is slicing onion?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices an onion?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut up an onion?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is chopping an onion?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts an onion?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping a onion?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting an onion?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone cutting into pieces?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what did a lady cut up?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what did the lady cut up?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is someone chopping?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a chef cut?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a man slice?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person slicing?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man chopping?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is the man slicing?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a person cut?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is cut?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"nq4hG6qgyPs_240_251\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is sauteing onions in a skillet using a wooden spatula?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who stirred the potatoes and onions in a pan?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sauteing vegetables in frying pan?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone sauteing onions in using a wooden spatula?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"who is frying onions on a stove?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is sauteing onions in a pan?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stirring onions in a pot?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person frying onions on?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"stove\"\n  },\n  {\n    \"question\": \"who is cooking onions in a skillet?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man stirring onions in?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is cooking onions in a pan?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is stir frying some onions?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is browning onions?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is frying some onions?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone cooking onions in?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"skillet\"\n  },\n  {\n    \"question\": \"who is cooking onions?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stirs onions?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who browns onions in a pan?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"brown\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"saute\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a man is stir doing?\",\n    \"video_name\": \"nq4hG6qgyPs_370_377\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"how many cats are playing with each other?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what pounced on the black cat who was waving its arms at it?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"orange\"\n  },\n  {\n    \"question\": \"what taunts a dog into attacking it?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat taunt into attacking it?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"how many cats are wrestling?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cats are fighting?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many cats are playing?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what attacks another cat?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is antagonizing the other cat?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is beating up a kitten?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"how many cats are playing together?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is the cat antagonizing?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat beating up?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what does a cat attack?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what plays?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a black and white cat doing?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a small cat doing?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"swat\"\n  },\n  {\n    \"question\": \"what are two cats doing?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two cats doing?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two cats doing?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what was the orange cat pounced on the black cat who doing?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a cat taunts a dog into doing?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what was the orange cat bounced on the black cat that doing?\",\n    \"video_name\": \"nrZyPuRd5pU_85_92\",\n    \"answer\": \"tease\"\n  },\n  {\n    \"question\": \"who is walking on an open ground with a pet dog as some other dogs follow them?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking in a field near a wooded area with four dogs?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking with dogs in a field?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking with four dogs in a field?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks with his dogs in the field?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a woman and several dogs walk?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is walking with several dogs?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking with dogs?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking with some dogs?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is walking some dogs?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is walking dogs?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is walking with his dogs?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do some other dogs follow?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"nwk4m329bLw_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who fires a gun while running towards the targets?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running toward targets firing a gun?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man fire while running towards the targets?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man wearing a headset shooting at targets with?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"rifle\"\n  },\n  {\n    \"question\": \"who is running towards a target?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting at targets?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting at a target?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting a shotgun?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots a gun while running?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man running towards?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"what is the man shooting at?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"who is firing a weapon?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man shooting?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"shotgun\"\n  },\n  {\n    \"question\": \"what does a man shoot while running?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is firing and running?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting while running?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"running\"\n  },\n  {\n    \"question\": \"who is shooting?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man at a target range doing?\",\n    \"video_name\": \"o2X6UCaNqKA_27_36\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"who is trimming off the edge of a blue colored sheet of paper which is in excess?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting with scissors across a blue paper?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts a folded blue piece of paper?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who is cutting a piece of blue paper with a pair of scissors?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting a piece of paper with a pair of scissors?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts a piece of blue paper?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does an individual cut a folded blue piece of?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person cutting a piece of with a pair of scissors?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person cut a piece of?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is cutting paper with scissors?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being cut with scissors?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is cutting a folded blue paper?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is the person cutting with scissors?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is cutting paper?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a paper?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is cut?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"trim\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"o4OsYxsNGMI_77_82\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who eats a meal at a kitchen table?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating a meal at the table?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is eating off a plate with a spoon?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person seated at the dining table eating?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who ate his dinner at the table?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man eating off with a spoon?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is a young man eating off a plate with?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who sat at the table?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who eats some pasta?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who ate his dinner?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who eats some food?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did the man sit at?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who is eating at a table?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is eating at the table?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is eating a meal?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is eating some food?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is eating food?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy eating at?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is a person eating at?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what does a boy eat?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman eat?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is a woman eating?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is eating?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a person seated at the doing?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"din\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"o4pL7FObqds_137_147\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"when is a man wearing a helmet riding a bike on an express highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a man wearing a helmet riding at great speed on an express highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who rides a street bike on the freeway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is driving a motorcycle down a highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle on the highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is driving a motorcycle on a road?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who rode his motorcycle down the highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rode his motorcycle on the highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person driving a motorcycle down?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"who drives his motorcycle down a highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person driving down a highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a person riding a motorcycle on?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"who is riding on a motor bike?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person driving a motorcycle on?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a person riding on the highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what did the man ride his motorcycle down?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what is a person driving on a road?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what did the man ride his motorcycle on?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what does a man drive his motorcycle down?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what did the man ride down the highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding a motorcyle?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the man ride on the highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding on a road?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"motorcyclist\"\n  },\n  {\n    \"question\": \"what does a man drive down a highway?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a motorcyclist riding on?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is riding his motorcycle?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone riding?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a person riding?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"motorcyle\"\n  },\n  {\n    \"question\": \"what is the man riding?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"o4pL7FObqds_243_263\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is driving a motorcycle around a bend in the road?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who races around a turn on a motorcycle?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who went around a corner on his motorcycle?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking a curve on a track?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"motorcyclist\"\n  },\n  {\n    \"question\": \"what is riding a bike on the road?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"biker\"\n  },\n  {\n    \"question\": \"what is a person driving around a bend in the road?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a motorcyclist taking a curve on?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a motorcyclist taking on a track?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"curve\"\n  },\n  {\n    \"question\": \"what is a biker riding a bike on?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a biker riding on the road?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who makes a turn on his motorcycle?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who races a motorbike?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who is racing on the track?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"motorcyclist\"\n  },\n  {\n    \"question\": \"what does a motocross biker run?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"course\"\n  },\n  {\n    \"question\": \"who runs a course?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"motocros\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is racing a motorcycle?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a motorcyclist racing on?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what speeds down the street?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is racing with his bike?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is racing his motorcycle?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a motorcycle speed down?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what an individual races?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what is someone riding?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is someone racing?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man racing with?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a man racing?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a motorcyclist doing?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"o4pL7FObqds_72_78\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what did women line up on a dock dive into?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what did the swimmers dive into for a race?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did the swimmers dive into the water for?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do women start swimming in?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do women begin a swim?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are people diving into to swim?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did the women jump into?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what do several swimmers jump into?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what some women dive into?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are swimmers racing in?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what do many swimmers start?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what are people diving into?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do women begin?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are a group of swimmers doing?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are several women doing?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what are swimmers doing?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is the women jumped into the lake and started doing?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are women swimmers doing?\",\n    \"video_name\": \"oBt257I-pL0_0_10\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"who is cutting an onion into pieces with a knife?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting an onion into pieces?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man cutting an onion into pieces with?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a man cutting into pieces with a knife?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who chops an onion finely using a knife after slicing it vertically and then horizontally initially?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person cutting into pieces?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who dices an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sliced an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who dicing an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man chops an onion finely using after slicing it vertically and then horizontally initially?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is dicing an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who slices an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts up an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cutting an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did someone slice?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what did a lady slice?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is the cook dicing?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a person dice?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a man dice?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a woman dicing?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a man slice?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person slicing?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a cook cut up?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is being chopped?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who slices?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is doing?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man chops an onion finely doing?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"oDcd2JbOyzg_38_55\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"who is putting slits into an onion with a knife?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person putting slits into an onion with?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who cuts an onion with a knife?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person putting slits into with a knife?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who slices a whole peeled onion vertically and then horizontally using a knife?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man cut an onion with?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does a man cut with a knife?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is slicing through an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who sliced an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing a pickled onion?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing a shallot?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is chopping an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a shallot?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting an onion?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did someone slice?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is the person slicing through?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person slicing?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"shallot\"\n  },\n  {\n    \"question\": \"what is a man chopping?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"shallot\"\n  },\n  {\n    \"question\": \"what is being sliced?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man slices a whole peeled onion vertically and then horizontally doing?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"oDcd2JbOyzg_85_98\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is taking a bubble bath in a large black tub?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is bathing in a bathtub of bubbles?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman having a bubble bath in a bathtub playing with?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"foam\"\n  },\n  {\n    \"question\": \"what is a woman taking in a large black tub?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is a woman in a bathtub of bubbles?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"bathing\"\n  },\n  {\n    \"question\": \"what is bettie page taking?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"who is bathing in a tub?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is taking a bubble bath?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"bettie\"\n  },\n  {\n    \"question\": \"who is taking a bubble bath?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is playing in a bubble bath?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is taking a bath?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is bathing?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman taking?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is a girl taking?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is the woman taking?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is a woman?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"bathing\"\n  },\n  {\n    \"question\": \"what did the lady enjoy?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"oFUsn1owAbs_158_168\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"where does a man cycling on the portico area of a house go?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"edge\"\n  },\n  {\n    \"question\": \"who rides his bike over a high ledge?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is falling off a ledge with his bike?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a man cycling on the portico area of a house go over?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"edge\"\n  },\n  {\n    \"question\": \"who is falling from his bike while jumping?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy falling off with his bike?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"ledge\"\n  },\n  {\n    \"question\": \"who fell off a ledge?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy falling off a ledge with?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a boy falling from while jumping?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is falling off a bicycle?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who falls off his bike?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who crashes on his bike?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who fell off his bike?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who falls off of his bicycle?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what did a boy fall off?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"ledge\"\n  },\n  {\n    \"question\": \"what is a boy falling off?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what does a boy fall off?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what does a child fall off?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what did the boy fall off?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what does a boy crash on?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what does a kid fall off of?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what did the man fall off?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"oG6LLGi_n48_51_55\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who is sitting on a sofa playing an acoustic guitar?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is sitting on a couch playing a guitar and singing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl sitting on playing an acoustic guitar?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"what is a woman sitting on playing a guitar and singing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who is sitting on a sofa singing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl sitting on singing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"sofa\"\n  },\n  {\n    \"question\": \"who played the guitar?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is the woman playing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing guitar and singing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the girl play?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a singing woman playing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a woman play?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a girl play?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a girl playing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"singing\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sang?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a singing woman doing?\",\n    \"video_name\": \"oRBgVOiZVsc_16_22\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who applied eye makeup with a pencil?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did a girl apply eye makeup with?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"pencil\"\n  },\n  {\n    \"question\": \"what did a girl apply with a pencil?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is pencilling on eye shadow?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the girl using an eye pencil on?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"eyelid\"\n  },\n  {\n    \"question\": \"who is applying eye liner?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is applying eyeshadow?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is applying eye makeup?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting on makeup?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the woman pencilling on?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"what does a woman put cosmetics on?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"eyelid\"\n  },\n  {\n    \"question\": \"what is a woman putting on?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman applying?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"liner\"\n  },\n  {\n    \"question\": \"who is making eyelid?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"oSnYUfCGiCA_7_17\",\n    \"answer\": \"pencil\"\n  },\n  {\n    \"question\": \"how many people are climbing up a wall using protective gear?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a couple of boys climbing an indoor rock climbing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what are a couple of boys climbing climbing wall?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"indoor\"\n  },\n  {\n    \"question\": \"who completes an indoor rock climbing challenge?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many people are climbing a rock wall?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two people climbing up using protective gear?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what are two people climbing up a wall using?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"gear\"\n  },\n  {\n    \"question\": \"who climed the rock wall?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who climbed the rock wall?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is climbing a climbing wall?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is climbing on a wall?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is climbing a wall?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did the boy climed?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a boy climbing on?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what did the girl climb?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a boy climbing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a girl climbing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what are two people climbing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"who is rock climbing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is climbing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a man and boy are rock doing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a boy is rock doing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are a couple of boys doing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is two boys a doing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"scale\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are a boy and a man doing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a person completes an indoor rock doing?\",\n    \"video_name\": \"o_mWZWcm2r4_10_15\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"who rides a bicycle around a parking while other children watch?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is riding a bicycle in a parking lot?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is riding a bike in a parking lot?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl riding in a parking lot?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a girl riding in a parking lot?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"who rode the bicycle?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who rides a bike?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding a bicycle?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the girl ride?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what a woman rides?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a girl riding?\",\n    \"video_name\": \"o_mWZWcm2r4_47_54\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"who is talking to someone on the phone?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking on a cordless telephone?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is speaking on a cordless phone?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl talking to someone on?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"who is talking on a cordless phone?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a little girl talking to on the phone?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is speaking in a telephone?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is talking on the telephone?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is talking on the phone?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talked on the phone?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young girl talking on?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a little girl talking on?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a baby girl speaking in?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"who is talking on the phonen?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks on the telephone?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the little girl talk on?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a toddler talking on?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what does a young girl talk on?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"telephone\"\n  },\n  {\n    \"question\": \"what is a baby talking on?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is the girl talking on?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a baby girl doing?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a toddler doing?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"oeaVXK2GAyc_4_21\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"where do a large group of people run?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"when are a group of people stamping their feet and dancing to music?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are a crowd of people dancing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what do a large group of people run in?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what are a group of people stamping their feet and dancing on stage to?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"when did people get?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when did the contestants dance?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are numerous people dancing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are people dancing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are dancing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are group of people doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of men and women doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people on stage doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a large crowd of people pressed closely together doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of people doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a crowd of people doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are numerous people doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"stamp\"\n  },\n  {\n    \"question\": \"what are the people doing?\",\n    \"video_name\": \"ogcqFaNbah4_475_487\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is pouring tomato sauce from a pan into a larger pan?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who poured a tomatoe sauce into a bigger pan?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who poured the tomatoe sauce into a bigger pan?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours a large quantity of pureed tomatoes from one vessel to another vessel placed on the stove?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring spaghetti sauce from one pot into another pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring tomato sauce into a larger pan?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pouring tomato sauce into a large pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours a red sauce from one pot into another pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pouring a red sauce from one pot into another pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pouring a tomato mixture into a larger pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pours tomato sauce from one pan to another?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is pouring a sauce from one pan into another on the stove?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours sauce from one pot into a larger pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours a sauce from one pot into another pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"what is someone pouring from a pan into a larger pan?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is pasta sauce being poured into?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a man pouring spaghetti sauce from into another pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is pouring some dish from one bowl to another?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours some sauce into a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person pour a red sauce from into another pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what did the lady pour into a bigger pan?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"tomatoe\"\n  },\n  {\n    \"question\": \"what is a person pouring a red sauce from into another pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a man pouring spaghetti sauce from one pot into?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what did the man pour into a bigger pan?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"tomatoe\"\n  },\n  {\n    \"question\": \"who is pouring sauce into the pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person pour a red sauce from one pot into?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a person pouring a red sauce from one pot into?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a person pouring into a larger pan?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what does a person pour from one pot into another pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what does a man pour sauce from into a larger pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a person pouring from one pot into another pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a man pouring into a large pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is a man pouring from one pan into another on the stove?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what does a man pour some sauce into?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does a man pour from one pot into a larger pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a person pouring into a larger pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"what does an individual pour a sauce from one pot into?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does someone pour from one pan to another?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what does a man pour into a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is being poured into a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is the man pouring into the pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a man pouring some dish from to another?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who pours sauce into a pan?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man pouring from one bowl to another?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is the man pouring sauce into?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is pouring sauce into a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is food poured into?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a man pour into a pan?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is poured into a bowl?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone pouring sauce into?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is someone pouring into a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"ok4cM6WTA5E_120_133\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"who pours shredded mozzarella into a sauce pan?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who dumps a plate of shredded cheese into a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who adds a plate full of grated cheese to a pan is which tomato puree is being cooked?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring cheese into a pot of red sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pours a plate of shredded cheese into a pot of sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is scooping pasta from a plate into a pan of sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting cheese into a pan with sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adding shredded cheese to a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a chef pour shredded mozzarella into pan?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is putting shredded cheese in a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who added cheese to the tomatoe sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what a person dumps a plate of shredded cheese into?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what did the lady add to the tomatoe sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what does a man add a plate full of to a pan is which tomato puree is being cooked?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"who is putting cheese into some sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a chef pour into a sauce pan?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"mozzarella\"\n  },\n  {\n    \"question\": \"what is a person pouring into a pot of red sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"who is adding cheese into the pot?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what a person dumps a plate of into a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a man scooping pasta from into a pan of sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is a man scooping from a plate into a pan of sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"who is adding rice in the bowl?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man putting into a pan with sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a person adding shredded cheese to?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a person putting shredded cheese in?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does a man pour a plate of into a pot of sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a woman putting into some sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is the cook adding into the pot?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a person adding to a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a person putting in a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a person adding in the bowl?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what is the cook adding cheese into?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who added cheese to the sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman putting cheese into?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is putting cheese into pasta sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who puts pasta in some water?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person adding rice in?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is adding something to a pan?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the lady add to the sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is someone putting into pasta sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a man adding to a pan?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what did the lady add cheese to?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what does a person put in some water?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is someone putting cheese into?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what does a person put pasta in?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is grated cheese added to?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is added to the sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"cheese\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"scoop\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"ok4cM6WTA5E_142_150\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who adds hot boiled lasagna to a vessel containing a mixture of pureed tomatoes?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring plain pasta into a pot of tomato sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pouring penne pasta into a pan of sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who pours drained noodles from a colander into a pan of red sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is pouring noodles into a pot of tomato sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pours pasta into a pot of sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being added to a pot of sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"who added pasta to the tomatoe sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a man add to a vessel containing a mixture of pureed tomatoes?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"lasagna\"\n  },\n  {\n    \"question\": \"what does someone pour drained noodles from into a pan of red sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"colander\"\n  },\n  {\n    \"question\": \"what did the lady add to the tomatoe sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"who is pouring pasta into the pot?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone pouring into a pan of sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what does a person pour into a pot of sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is added to sauce simmering in a pan?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"who is putting pasta in a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the man pouring into the pot?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"who dumps pasta into a bowl?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours noodles into a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a person putting in a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"who is pouring pasta into sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man pouring pasta into?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is pouring noodles into a pot?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who adds pasta to some sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person putting pasta in?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what does a chef pour noodles into?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what a man dumps pasta into?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a man add to some sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is someone pouring noodles into?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what a man dumps into a bowl?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is a woman pouring pasta into?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a woman pouring into sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what is a man pouring pasta into?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a man pouring into sauce?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pastum\"\n  },\n  {\n    \"question\": \"what does a man add pasta to?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is cooking some thing?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cooking?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"thing\"\n  },\n  {\n    \"question\": \"what is a man adds hot boiled lasagna to a vessel doing?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is penne pasta is added to sauce doing?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"simmer\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"ok4cM6WTA5E_178_184\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"who slams another man onto the floor of the mat?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"who throws another boxer onto the ring?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"who does a wrestler slam onto the floor of the mat?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boxer throw another boxer onto?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who does a boxer throw onto the ring?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"boxer\"\n  },\n  {\n    \"question\": \"how many fighters are wrestling in a ring?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are boxing in a ring?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are wrestling in a ring?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men fight inside a ring?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who slams another into the ground?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"how many men are fighting?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does one wrestler slam another into?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who had the other wrestler down?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what do two men fight inside?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are two fighters wrestling in?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are two men boxing in?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what are two men wrestling in?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"who does a man lift?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"opponent\"\n  },\n  {\n    \"question\": \"who did the wrestler have down?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"wrestler\"\n  },\n  {\n    \"question\": \"what are the men in?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who gets slammed and punched?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"fighter\"\n  },\n  {\n    \"question\": \"who are fighting?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man lifts his opponent and punches his face after doing?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are two fighters doing?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two man doing?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"omGWjiwxcTE_18_23\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"who fell on top of the sand castle?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who falls on a giant sandcastle?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who falls into a sand castle?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who fell onto the sand castle?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who fell on a sandcastle?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who falls into a sandcastle?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"who fell into the sand castle?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is falling on a sandcastle?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who falls on a sand castle?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who falls in the sand?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is building a sand castle?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a woman reporter fall into?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"sandcastle\"\n  },\n  {\n    \"question\": \"what did a woman fall on?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"sandcastle\"\n  },\n  {\n    \"question\": \"what is a woman falling on?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"sandcastle\"\n  },\n  {\n    \"question\": \"what does a woman fall in?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is a girl building?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"castle\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a female reporter doing?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"interview\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a lady doing?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a tv reporter doing?\",\n    \"video_name\": \"omIPdpxg--4_39_46\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who is riding a horse on a ground as it jumps across an obstacle?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person riding a horse on as it jumps across an obstacle?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a person riding on a ground as it jumps across an obstacle?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who jumps over hurdles with a horse?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman riding a horse jump over?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"bar\"\n  },\n  {\n    \"question\": \"who is riding a horse as it makes a jump?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are a horse and rider running jumping course?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what are a horse and rider running a fence jumping?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"course\"\n  },\n  {\n    \"question\": \"who is jumping over obstacles?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping a horse?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone riding as it makes a jump?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who completes an obstacle course?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"horseback\"\n  },\n  {\n    \"question\": \"who is riding horse?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is jumping over a fence?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is jumping hurdles?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man jumping?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a horseback rider complete?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"obstacle\"\n  },\n  {\n    \"question\": \"what is someone riding?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse jumping over?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a horse and rider jump across?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"obstacle\"\n  },\n  {\n    \"question\": \"what is a woman riding?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a person riding?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a horse and rider make?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is riding?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a person on a horse doing?\",\n    \"video_name\": \"onW5hJXnI5s_10_16\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is falling down when he is riding a horse?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a rider on a horse go down with?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who gets knocked off of a horse?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when do a horse and the person riding it stand up?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"while\"\n  },\n  {\n    \"question\": \"what do a horse and the person riding it fall down on?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a man get knocked off of?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are a horse and rider falling to?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is falling from horse?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls off of a horse?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who fell off a horse?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what fell down with its rider?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is falling in the sand?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what did someone fall off?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what drops its rider?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who falls off a horse?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman fall off of?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse falling in?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is a man falling from?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who did the horse fall down with?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"rider\"\n  },\n  {\n    \"question\": \"who does a horse drop?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"rider\"\n  },\n  {\n    \"question\": \"what does a woman fall?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a person fall?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what falls down?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are a horse and rider doing?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"onW5hJXnI5s_126_133\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who is running to see the ocena waves as they come up to the beach?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"how many kids are playing on the beach?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are playing in the beach?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who runs into and out of the ocean waves?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is running toward and from the ocean waves?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who runs around on the beach?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a small boy run around on?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is running in the sand?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who ran to the ocean water?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"who plays near the ocean?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"what is a little boy playing at?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is the little boy running in?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"who runs into the ocean?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is running on a beach?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing at the beach?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a toddler play near?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what come up to the beach?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what do the ocean waves come up to?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"who is on a beach?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a little boy run into?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is a boy playing at?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a boy running on?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are two kids playing on?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are two boys playing in?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a boy on?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what are two kids doing?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"onxE6PpEXes_8_25\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"when did the man sing into the microphone?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sang into the microphone on stage?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sang on stage into the microphone?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man sing into on stage?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what is a man in a suit standing at?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"what did the man sing on stage into?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who sings into a microphone?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who ia singing on a stage?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing into a microphone?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing on stage?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when do a man ia singing?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man sing into?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"when is a man singing?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man singing into?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"microphone\"\n  },\n  {\n    \"question\": \"who is singing onstage?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what is a man in a suit doing?\",\n    \"video_name\": \"otLEUwHao_E_140_151\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is cutting a fish open with a knife?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man slits the body of a fish on the bottom side and thereafter cut off with a knife?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what does a man slits the body of a fish on the bottom side and thereafter cut the head off with?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who cuts the head off?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slit open a fish?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts into a live fish?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who guts a fish?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut open a fish?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is gutting a fish?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man gut and clean?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is cutting a fish?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did a man slit open?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what a man guts?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what did someone cut?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man gutting?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what does a man cut off?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a person cutting?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is being gutted?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is sliced and beheaded?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who kills?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being cut open?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is being killed?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"otvx5OZHTJc_1_22\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"how many kittens are eating food from a bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is eating food out of a large bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is eating cat food from a bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is eating food out of a bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is a kitten eating out of a large bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did the kittens eat in the bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a kitten eating cat food from?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what did the kittens eat the food in?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a kitten eating out of a bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many cats eat food from a bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a kitten eating from a bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a cat eating cat food from?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a cat eating from a bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is eating its food from a plate?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what are two kittens eating from a bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a kitten eating its food from?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what are two kittens eating food from?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what are kitten eating?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do two cats eat from a bowl?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a kitten eating from a plate?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what eats some food?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what do two cats eat food from?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what did the kittens eat out of?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is eating food?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a kitten eat?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a cat eating?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is eating?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a kitten doing?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are kitten doing?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are kittens doing?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two kittens doing?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the kitten doing?\",\n    \"video_name\": \"p3J3TAdKAYQ_0_10\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who drives by a hitchhiking man who is smoking?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who asks for a ride from a woman driving a car?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hitchhikes on the side of the road?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is asking for a lift to a woman going in a car?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a woman in a car ignore?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"hitchhiking\"\n  },\n  {\n    \"question\": \"what is a man asking for to a woman going in a car?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"who passes a hitch hiker?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did not pick up a hitchhiker?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who drove past the hitchhiker?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who did a lady not pick up?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"hitchhiker\"\n  },\n  {\n    \"question\": \"who did the girl drive?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"hitchhiker\"\n  },\n  {\n    \"question\": \"who does a woman pass?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"hitch\"\n  },\n  {\n    \"question\": \"who is hitchhiking?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man asks for a ride from a woman doing?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"hitchhike\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman drives by a hitchhiking man who doing?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"smoke\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"p69Q8lTkZTc_21_29\",\n    \"answer\": \"hitchhike\"\n  },\n  {\n    \"question\": \"who applied eye liner?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is applying eye liner?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting on eye makeup?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who puts on makeup?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is putting on eyeliner?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is applying eye makeup?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is putting on makeup?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who applies eyeliner?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young asian girl applying?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"eyeliner\"\n  },\n  {\n    \"question\": \"what did a girl apply?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"liner\"\n  },\n  {\n    \"question\": \"what did the girl apply?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"liner\"\n  },\n  {\n    \"question\": \"what does a girl put on?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is the girl putting on?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a girl putting on?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"eyeliner\"\n  },\n  {\n    \"question\": \"what does a girl apply?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"eyeliner\"\n  },\n  {\n    \"question\": \"what is a woman applying?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"liner\"\n  },\n  {\n    \"question\": \"what is a girl applying?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"outline\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"p69d3UBdpR8_98_109\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is walking away when a boy crosses in front of him?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what walked in the yard?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what did the goat walk in?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"what walks along a road?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is walking in the dirt?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is walking on the ground?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what does a goat walk along?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a goat walking on?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a goat walking in?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what is bleating while walking?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what looked backwards?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is walking around?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what walks around?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is walking about?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is walking?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"goat\"\n  },\n  {\n    \"question\": \"what is a goat doing?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a billy goat doing?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a goat doing?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"bleat\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the goat doing?\",\n    \"video_name\": \"p6T3XrnYtFk_4_13\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are white tiger cubs standing near?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what are standing near a door?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"what are walking around each other?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"who nuzzled each other?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"albino\"\n  },\n  {\n    \"question\": \"how many lion cubs are walking?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are interacting with each other?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"how many tiger cubs are playing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are playing with each other?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"how many lion cubs are playing peacefully?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what are playing peacefully?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"who are playing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"cub\"\n  },\n  {\n    \"question\": \"what are walking?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"lion\"\n  },\n  {\n    \"question\": \"what are baby lions doing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what are lion cubs doing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the cubs doing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are three baby white lions doing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are three lion cubs doing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are three lion cubs doing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are three tiger cubs doing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are three white lion cubs doing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are white lion cubs doing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are white tiger cubs doing?\",\n    \"video_name\": \"p6cg2jWI34M_34_42\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"how many children are traveling in a horse cart?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is trotting on a pathway pulling a cart on which a woman and two girls are seated?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"how many females go on a horse cart ride?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a black horse trotting on pulling a cart on which a woman and two girls are seated?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"pathway\"\n  },\n  {\n    \"question\": \"who are riding in a cart pulled by a horse?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many girls is a horse pulling on a cart?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many people are on a cart being pulled by a horse?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many females ride in a horse drawn cart?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"how many people are riding a horse and cart?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is pulling three people in a cart?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is pulling three girls on a cart?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse pulling three girls on?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"cart\"\n  },\n  {\n    \"question\": \"what are three people on a cart being pulled by?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what do three females ride in a horse drawn?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"cart\"\n  },\n  {\n    \"question\": \"what are the woman and girl in a horse drawn?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"carriage\"\n  },\n  {\n    \"question\": \"what is pulling a cart?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is transporting a family?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are girls riding?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse transporting?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what is a horse pulling?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"cart\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a black horse doing?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"trot\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"transport\"\n  },\n  {\n    \"question\": \"what are three children doing?\",\n    \"video_name\": \"p7IAuvd87hQ_12_19\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what did many raccoon looking animals are huddle in?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are lemurs hugging each other in?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"row\"\n  },\n  {\n    \"question\": \"what are lemurs holding each other in?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"who are taking sun bath?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"hedge\"\n  },\n  {\n    \"question\": \"what are hedge hogs taking?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are all cuddled together?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"lemur\"\n  },\n  {\n    \"question\": \"what are huddled together?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"furry\"\n  },\n  {\n    \"question\": \"what are gathering?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"weird\"\n  },\n  {\n    \"question\": \"what is many raccoon doing?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are lemurs doing?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are lemurs doing?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are a group of lemurs doing?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are some lemurs doing?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are weird creatures doing?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"gather\"\n  },\n  {\n    \"question\": \"what are animals doing?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what are several lemurs doing?\",\n    \"video_name\": \"p9g06ktIkJg_4_11\",\n    \"answer\": \"huddle\"\n  },\n  {\n    \"question\": \"who gives two panda bears bottles of milk?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is giving milk bottles to panda babies?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving baby pandas bottles of milk?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is giving bottles of milk to baby pandas?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"how many pandas are drinking milk from a bottle?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who feeds baby pandas with a bottle?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who gives milk in individual feeding bottles to two pandas in a cage?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving two baby pandas milk bottles?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what does a person give bears bottles of milk?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"who fed bottles to the two pandas?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"keeper\"\n  },\n  {\n    \"question\": \"what does a person give two panda bears bottles of?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what is a person giving bottles of to baby pandas?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what is a person giving to baby pandas?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what is a man giving to panda babies?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what does a person give two panda bears?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what does a man give in individual feeding bottles to two pandas in a cage?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what are two pandas drinking from a bottle?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what are being fed with baby bottles?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what are two pandas drinking milk from?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"bottle\"\n  },\n  {\n    \"question\": \"how many baby pandas is a person feeding?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who feeds some baby pandas?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the pandas being fed with?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who fed the pandas their bottles?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"veterinarian\"\n  },\n  {\n    \"question\": \"who is feeding a baby panda?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is feeding two baby pandas?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man feed?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a man feeding?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a person feeding?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are eating?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are panda bears doing?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two pandas doing?\",\n    \"video_name\": \"pDvzOLRLjPc_0_8\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"how many dogs are playing with each other on a couch?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what played with the puppy on the bed?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"how many dogs are playing with each other?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the dog play with the puppy on?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"how many puppies tussle with each other?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many dogs are playing with eachother?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two dogs playing with each other on?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"how many dogs play with each other?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many puppies played together?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many puppies are playing?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many dogs are playing?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many small dogs are playing together?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a dog and a puppy doing?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a dog and puppy doing?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a white dog and a smaller brown dog doing?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are the dogs doing?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two dogs doing?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two puppies doing?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is two puppies doing?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two small dogs doing?\",\n    \"video_name\": \"pFSoWsocv0g_8_17\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what does a man riding a scooter on the road fall off?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"balance\"\n  },\n  {\n    \"question\": \"what does a man riding a scooter on the road lose?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"balance\"\n  },\n  {\n    \"question\": \"who is falling off his scooter and into the gutter?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a razor scooter?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls when riding a scooter?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wrecks on his scooter?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is riding a scooter?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crashes his motor scooter?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fell off his scooter?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"what does a kid wreck on?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"what did the man fall off?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"what does a man crash?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"who falls over?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"pGCRurvXQGM_45_56\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who is instructing a white dog which is lying on its back on the floor?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is lying on its back on the floor?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is lying on the floor on its back?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog lying on on its back?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is lying down on the floor?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is the dog lying down on?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a dog rolling over?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a dog lying on the floor on?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"what is laying on the floor?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is sleeping on a floor?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is rolling over the floor?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog sleeping on?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is laying on its back?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is lying on its back?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what lies on its back?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog laying on?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"what does a dog lie on?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"what is staying rolled over?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"stay\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"pGsU4FekJQM_10_18\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"who has a conversation with a woman?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who appealed to the woman?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talked to the lady?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who menaces a woman?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who yells at a women?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is angry with a woman?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks to a woman?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking with a woman?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a girl?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is speaking to a woman?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a woman?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to the woman?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did the man appeal to?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did the man talk to?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is a man angry with?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man talking with?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a boy talking to?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a man menace?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man speaking to?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a man talk to?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is the man talking to?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"pQYEZTwSVbQ_12_18\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who waits in full focus as a man of the opposite team kicks the football into the goal post?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"keeper\"\n  },\n  {\n    \"question\": \"who is kicking a soccer ball into the goal at a game?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a goal keeper wait in as a man of the opposite team kicks the football into the goal post?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"focu\"\n  },\n  {\n    \"question\": \"what is a soccer player kicking a soccer ball into the goal at?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what is a soccer player kicking a soccer ball into at a game?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what is a soccer player kicking into the goal at a game?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who kicked the ball into the goal?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what did the soccer player kick the ball into?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what did the soccer player kick into the goal?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who kicks the ball into the goal?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does the soccer player kick the ball into?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what does the soccer player kick into the goal?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a man of the opposite team kick into the goal post?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who kicked a soccer ball?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making his goal shot?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who scores a goal?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who kicks a goal?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who made a goal?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who makes a goal?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what did the soccer player make?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what a soccer player scores?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what does a soccer player kick?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what does a soccer player make?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what did a man kick?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a football player making?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what is a soccer player doing?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a soccer player doing?\",\n    \"video_name\": \"pRpeEdMmmQ0_1_18\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"when did a girl sing in a group?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sang in a group on stage?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did a girl sing in on stage?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"how many women are dancing?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"who is dancing with other women?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when did the ladies dance?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who sings and dances?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"shakira\"\n  },\n  {\n    \"question\": \"who is dancing while singing?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who danced?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"shakira\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"shakira\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are five women doing?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is shakira doing?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"pRpeEdMmmQ0_65_70\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"how many men are walking on top of a tall structure?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are standing on a thin construction platform?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many workers are standing on some pillar?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men work on steel girders?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are some men shown walking on beams very high in?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"how many people carefully walk on a ledge?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the men climb up?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"metal\"\n  },\n  {\n    \"question\": \"what are two workers standing on?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"pillar\"\n  },\n  {\n    \"question\": \"what do two men work on?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"steel\"\n  },\n  {\n    \"question\": \"what do two people carefully walk on?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"ledge\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is construction workers doing?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is some men are shown doing?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are two workers doing?\",\n    \"video_name\": \"pUPKsHTDZTo_70_85\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who is sitting on the floor where some headphones open a package with a pair of scissors and remove a headset?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone sitting on where some headphones open a package with a pair of scissors and remove a headset?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is taking out a set of new headphones from an envelope?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opens a package containing headphones that he received in the mail for free?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who opened a package that came in the mail?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is taking xbox360 headphones out of a package?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who removes a pair of headphones from a package?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who removes a pair of headphones?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking out a set of new headphones from?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"envelope\"\n  },\n  {\n    \"question\": \"what does a man remove a pair of headphones from?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"who uncovers a brand new headset pack?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is opening a package containing headphones?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person taking out of a package?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"xbox360\"\n  },\n  {\n    \"question\": \"who is unpacking headset from cover?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts open a sealed package?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts open an envelope?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man opening containing headphones?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"what is a man unpacking headset from?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a man unpacking from cover?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"headset\"\n  },\n  {\n    \"question\": \"what does a man cut open?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"package\"\n  },\n  {\n    \"question\": \"who received headphones?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being opened?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"mail\"\n  },\n  {\n    \"question\": \"what is unpackaged?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"item\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a young man opens a package doing?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"pW9DFPqoIsI_26_50\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is rowing in a green canoe down a flooded street?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is paddling a canoe in shallow water?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who paddles a canoe through very shallow water?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sailing the boat in the river?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is rowing a boat in a water flooded locality?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is paddling a canoe in very low water?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is padling a oanoe on water?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman paddling in shallow water?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"canoe\"\n  },\n  {\n    \"question\": \"what is a lady padling a oanoe on?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who films while in a canoe?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"reporter\"\n  },\n  {\n    \"question\": \"what is a woman paddling a canoe in?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is a lady padling on water?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"oanoe\"\n  },\n  {\n    \"question\": \"what does a woman paddle through very shallow water?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"canoe\"\n  },\n  {\n    \"question\": \"what is a woman paddling in very low water?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"canoe\"\n  },\n  {\n    \"question\": \"who is rowing a boat?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is paddling in a boat?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"newscaster\"\n  },\n  {\n    \"question\": \"who is paddling a canoe?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is paddling a boat?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a newscaster paddling in?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is the woman paddling?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"canoe\"\n  },\n  {\n    \"question\": \"what is a woman paddling?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a newscaster doing?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"paddle\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"row\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"pcjuCotJYj8_50_62\",\n    \"answer\": \"paddle\"\n  },\n  {\n    \"question\": \"what is the other man on the second cup walking across?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what is the man on the first cup playing with?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what are coffee cups moving across?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are moving across the table?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"coffee\"\n  },\n  {\n    \"question\": \"what seem to move by themselves?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"drinking\"\n  },\n  {\n    \"question\": \"what moves across the table?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what does another cup move across?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are animated cups moving on?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are cups moving across?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are walking?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"coffee\"\n  },\n  {\n    \"question\": \"what are cups doing?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are coffee mugs doing?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are animated cups doing?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is several doing?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are cartoons doing?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the man on the first cup doing?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are coffee cups doing?\",\n    \"video_name\": \"pdrBPJYfTC8_33_39\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who is peeling a large raw potato using a vegetable peeler?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is peeling a potato using a peeler?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man peeling using a peeler?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who peeled a potatoe?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who peels a potato?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is peeling potatoes?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pealing potatoes?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is peeling potato?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is peeling a potato?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do someone peel?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"potatoe\"\n  },\n  {\n    \"question\": \"who do a man peel?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"potatoe\"\n  },\n  {\n    \"question\": \"what is someone peeling?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a man peel?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a person peeling?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man peeling?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is being skinned?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"pfQPRXcihkI_127_138\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"who is peeling a potato with a potato peeler?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is peeling a potato with a peeler?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person peeling with a potato peeler?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is someone peeling a potato with?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"peeler\"\n  },\n  {\n    \"question\": \"what is someone peeling with a peeler?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who peeled a potatoe?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who ia peeling a potato?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who peeled a potoatoe?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who peels a potato?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is scraping potatoes?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who peels onions?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is peeling a potato?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a man ia peeling?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who do the man peel?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"potoatoe\"\n  },\n  {\n    \"question\": \"what is someone peeling?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a person peel?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a person peeling?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a guy peeling?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is the man peeling?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a man ia doing?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"scrap\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"pfQPRXcihkI_135_144\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"who cuts a washed peeled raw potato into slices using a large knife?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a potato into thin slices?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a potato into slices with a knife?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man cut a washed peeled into slices using a large knife?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a person cutting a potato into slices with?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a person cutting into slices with a knife?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is someone slicing into thin slices?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who cut a potatoe?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing up peeled potatoes?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing potatoes?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing some potato?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting potatoes?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts a potato?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting up a potato?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a potato?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices potatoes?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did someone cut?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"potatoe\"\n  },\n  {\n    \"question\": \"what is a man cutting up?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a man cut?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what are sliced?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man cuts a washed peeled raw potato into slices doing?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"pfQPRXcihkI_160_184\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who pushed the kitchen chair across the floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who pushes a wooden chair across the floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is walking as he pushes a wooden chair in a room?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is pushing a wooden chair across the floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is pushing a chair along the floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who pushed the chair across the floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"what did the toddler push the chair across?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what did the baby push the kitchen chair across?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what did the toddler push across the floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is pushing a chair through floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a baby push a wooden chair across?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what did the baby push across the floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"kitchen\"\n  },\n  {\n    \"question\": \"who pushes a wooden chair in a room?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby pushing a wooden chair across?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a baby pushing a chair along?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does a baby push across the floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a baby pushing a chair through?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a baby pushing along the floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a baby pushing across the floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a baby pushing through floor?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who pushes a chair around?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"what does a baby push a wooden chair in?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what does a baby push in a room?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who pushes a chair?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is pushing a chair?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is pushing the chair?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is moving a chair?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a toddler push around?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does a baby push?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a young girl moving?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a kid pushing?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a baby pushing?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is the baby pushing?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a baby moving?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a small baby doing?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the baby doing?\",\n    \"video_name\": \"pmEKZ6yVewc_0_10\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"who played the electronic keyboard?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played a keyboard?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing a piano keyboard?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing keyboard?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a keyboard?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the synthesizer?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing piano?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the keyboards?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a keyboard?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the piano?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing the keyboard?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing a keyboard instrument?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing a piano?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is playing keyboards?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing the piano?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a piano?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did a boy play?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"who is a man playing?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"synthesizer\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"instrument\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"po2tcrG6KzM_2_8\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is using a spoon to stir the ingredients of a bowl?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is mixing ingredients into a batter?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing a bowl of ingredients?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone using to stir the ingredients of a bowl?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who is mixing ingredients in a bowl?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is stirring a cookie dough mixture?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is the woman mixing ingredients into?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who mixes ingredients in a bowl?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman mixing ingredients in?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person mixing ingredients in?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who mixes a baking mixture?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mixed up a batter?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is mixing batter?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mixed the ingredients together?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who do a lady mix up?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is a man mixing?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"what does a man mix?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"who is being mixed?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"cookie\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"pptYu3YQnxY_160_170\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"how many young men are skateboarding along a street?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are kneeling on moving skateboards?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young men are long boarding down a hill?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are skating on skateboards?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many skateboarders are cruising the streets?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are skate boarding?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids ride their skateboards?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two young men skateboarding along?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"how many men are skateboarding?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys skateboard together?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys skating downhill?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two young men long boarding down?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what are some men skating on?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are two boys?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"boarding\"\n  },\n  {\n    \"question\": \"what is two guys doing?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"skate\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"kneel\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"what are two skateboarders doing?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"cruise\"\n  },\n  {\n    \"question\": \"what is two young men are long doing?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what are two young men doing?\",\n    \"video_name\": \"pqTWUzehCUM_42_47\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"who is riding on a scooter?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a baby girl playing with?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"tricycle\"\n  },\n  {\n    \"question\": \"what is a little girl riding on?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"who is riding a scooter?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl riding?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"what is the girl riding?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"what a toddler rides?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"what did the little girl ride?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"what is a young girl riding?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"what is the little girl riding?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"scooter\"\n  },\n  {\n    \"question\": \"what is a baby girl doing?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"psXeA8sSYdI_25_30\",\n    \"answer\": \"peddle\"\n  },\n  {\n    \"question\": \"who is shown playing a wooden flute?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a wooden flute?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the wooden flute?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing flute?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who played his wooden flute?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a wind instrument?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a flute?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing the flute?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"ptHkvYrH9fY_2_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"where did the squirrel dance?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is dancing on a grass field?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"squirrel\"\n  },\n  {\n    \"question\": \"what danced on the lawn?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"squirrel\"\n  },\n  {\n    \"question\": \"what is dancing on the grass?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"squirrel\"\n  },\n  {\n    \"question\": \"what did the squirrel dance on?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is dancing in the grass?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"squirrel\"\n  },\n  {\n    \"question\": \"what is a squirrel dancing in?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is dancing outside?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"squirrel\"\n  },\n  {\n    \"question\": \"what dances?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"squirrel\"\n  },\n  {\n    \"question\": \"what is dancing?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"squirrel\"\n  },\n  {\n    \"question\": \"what is a squirrel doing?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"hop\"\n  },\n  {\n    \"question\": \"what is a squirrel doing?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a squirrel doing?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a computerized squirrel doing?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is an animated squirrel doing?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the squirrel doing?\",\n    \"video_name\": \"puineN1UMto_25_29\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is chasing a bigger girl around the inside of a house?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who chases another girl around the living room?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is chasing a teenager around a house?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is a little girl chasing around the inside of a house?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is chasing a woman through the house?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a girl chase around the living room?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is a little girl chasing around a house?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"teenager\"\n  },\n  {\n    \"question\": \"how many girls are having a pillow fight?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a little girl chasing a teenager around?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who is a girl chasing through the house?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl chasing a woman through?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"who does a girl chase around the house?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"mom\"\n  },\n  {\n    \"question\": \"who is chasing an older girl?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is chasing another girl?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing with a girl?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is chasing a woman?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is a woman playing with?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is a girl chasing?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two girls having?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the girls doing?\",\n    \"video_name\": \"pzq5fPfsPZg_145_160\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is carrying a little boy around a room?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"who is a teenage girl carrying around a room?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a teenage girl carrying a little boy around?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is carrying a toddler boy?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is carrying a young child?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is carrying a boy?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding a boy?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is holding a child?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is carrying a baby?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is carrying a child?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who carries a boy around?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman carrying?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is a woman holding?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is the girl carrying?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is a girl carrying?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who does a woman carry around?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a young woman carries a boy across the room and the boy doing?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a girl walks into a room doing?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a teenage girl doing?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"pzq5fPfsPZg_29_33\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"who hugs a small boy then sets him down on the floor?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is hugging a little boy?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"teenage\"\n  },\n  {\n    \"question\": \"what does a woman hugs a small boy then set him down on?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is a teenage girl hugging?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who hugs a little boy?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is hugging a toddler?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is hugging a boy?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is hugging a child?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many people are hugging?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is hugging the baby?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who a girl hugs?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who a woman hugs?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is a woman hugging?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is the girl hugging?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a teenage girl doing?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"pzq5fPfsPZg_51_57\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what rolls around on a stack of logs?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what rested on the logs?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is laying on some logs?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what lay on the logs?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is lying on logs?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is sleeping on woods?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is lounging around?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is laying around?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is laying down?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is lying down?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a panda doing?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a panda bear doing?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a panda doing?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what is a panda doing?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"lounge\"\n  },\n  {\n    \"question\": \"what is a baby panda doing?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is the panda doing?\",\n    \"video_name\": \"q-JHcsqJXWY_0_8\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"who heads a soccer ball into the goal?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a soccer player head a soccer ball into?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what does a soccer player head into the goal?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who scores a goal in soccer?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making a soccer goal?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who score a goal?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who makes a goal?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is scoring a goal?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what do soccer players score?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what makes a score?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a soccer player make?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what is a soccer team scoring?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"goal\"\n  },\n  {\n    \"question\": \"what does a soccer team make?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are players playing?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what are the men playing?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a soccer team doing?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what are players doing?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"q-a6NEotUX8_5_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what kissed passionately in the living room?\",\n    \"video_name\": \"q3I3R_gqy8M_34_37\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"how many people are kissing?\",\n    \"video_name\": \"q3I3R_gqy8M_34_37\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what kissed passionately?\",\n    \"video_name\": \"q3I3R_gqy8M_34_37\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_34_37\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_34_37\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_34_37\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_34_37\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"q3I3R_gqy8M_34_37\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_34_37\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are the man and woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_34_37\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who talked to the woman on the phone?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a woman by phone?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talked to his girlfriend on the phone?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man talking to by phone?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the man talk to the woman on?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"how many people are talking on the phone?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man talking to a woman by?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what did the man talk to his girlfriend on?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what simultaneously shows a view of a woman talking on a telephone and one of a man talking on a telephone?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"how many people are speaking on phones?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people talk on the phone?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who did the man talk to on the phone?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"girlfriend\"\n  },\n  {\n    \"question\": \"what are a man and woman talking on?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are the man and woman talking on?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are a man and a woman talking on?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is a man and woman talking on?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what are a man and a woman having?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are two people talking on?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what do two people talk on?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"phone\"\n  },\n  {\n    \"question\": \"what is video simultaneously shows a view of a woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are the man and woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_38_42\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who cries over a woman lying on a hospital gurney?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a woman resting his forehead against hers?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"crying\"\n  },\n  {\n    \"question\": \"who is talking to a woman lying in a bed?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"crying\"\n  },\n  {\n    \"question\": \"who is crying over the body of a woman?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sobbing resting his head against the face of a woman lying on a table at a hospital?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mourning for an injured woman?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a bloody man look down at?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who looks down at a woman?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wept over the lady?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cried over the girl?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is grieving over the woman?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did the man weep over?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who did the man cry over?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is the man grieving over?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is weeping?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crying?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a crying man doing?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"mourn\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"weep\"\n  },\n  {\n    \"question\": \"what is a man cries over a woman doing?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"sob\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"q3I3R_gqy8M_73_79\",\n    \"answer\": \"grieve\"\n  },\n  {\n    \"question\": \"who is eating food from a small spoon?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who fed the baby in the high chair?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who did someone feed in the high chair?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who eats several spoonfuls of food?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby eating from a small spoon?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is being fed from a spoon?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a baby eat several spoonfuls of?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a baby being fed from?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"spoon\"\n  },\n  {\n    \"question\": \"who is being fed peas?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is being fed baby food?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is being fed food?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is eating food?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is feeding the baby?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who eats his food?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is someone feeding?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby being fed?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby eating?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman feeding?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a baby eat?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is eating?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is the baby doing?\",\n    \"video_name\": \"q5ZRMvjzhXQ_15_29\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is drinking water from a faucet that is leaking?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what drank water from the dripping faucet?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is drinking water out of a faucet?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat from a faucet that is leaking?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"drinking\"\n  },\n  {\n    \"question\": \"what did the cat drink from the dripping faucet?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what drank water from the water faucet?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what did the cat drink from the water faucet?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is drinking water from a faucet?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is drinking water from the faucet?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is drinking a water from a tap?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a cat out of a faucet?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"drinking\"\n  },\n  {\n    \"question\": \"what is a dog drinking from a tap?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what drinks from a faucet?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is drinking from a faucet?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is drinking tap water?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is drinking water?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is drinking some water?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat drink from?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"faucet\"\n  },\n  {\n    \"question\": \"what is a cat drinking from?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"faucet\"\n  },\n  {\n    \"question\": \"what is a cat drinking?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is the cat drank water from the doing?\",\n    \"video_name\": \"q6vz80UkVtw_0_7\",\n    \"answer\": \"drip\"\n  },\n  {\n    \"question\": \"what did the man and lady dance in?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"what danced in the church?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"how many people are slow dancing?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the couple dance in?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"what slow dances?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man and woman are shown doing?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man and woman are slowly doing?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"q7pOFn8s4zc_263_273\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is riding a bicycle while a woman sits on the crossbar as a passenger?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding while a woman sits on the crossbar as a passenger?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"who gave a ride to another person on his bike?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who sits on the crossbar as a passenger?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did someone give a ride to on his bike?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"when are a man and woman riding a bcycle?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"sunset\"\n  },\n  {\n    \"question\": \"what did someone give to another person on his bike?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"ride\"\n  },\n  {\n    \"question\": \"who does a woman sit on the crossbar as?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"passenger\"\n  },\n  {\n    \"question\": \"what are a man and woman riding at sunset?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bcycle\"\n  },\n  {\n    \"question\": \"what does a woman sit on as a passenger?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"crossbar\"\n  },\n  {\n    \"question\": \"what did someone give a ride to another person on?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what are a man and woman riding on?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what are a man and a woman riding on?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what do a man and a woman ride on?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is a man and woman riding on?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what are a man and a woman riding?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what are riding on a bicycle?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and woman riding together?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what are a man and woman riding?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what are the man and woman riding?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what are a couple riding on?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what are people riding?\",\n    \"video_name\": \"q7pOFn8s4zc_27_36\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is juggling a soccer ball with his feet in a parking lot?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who attempts to perform a trick with a soccer ball?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who did tricks with the soccer ball?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did tricks with a soccer ball with his feet?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is maneuvering a soccer ball with his feet?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing around with a football using his legs?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing tricks with a ball?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boy attempt to perform with a soccer ball?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"trick\"\n  },\n  {\n    \"question\": \"what is a man juggling with his feet in a parking lot?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is playing ball with his feet?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking a soccer ball around?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man playing around with using his legs?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a man doing tricks with?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a man maneuvering with his feet?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what are a couple of guys individually trying to keep a ball in with their feet?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what are a couple of guys individually trying to keep in the air with their feet?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is the man playing with his feet?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are men doing tricks with?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is kicking a soccer ball?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing with a ball?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy kicking around?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is playing a football?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy playing with?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a man kicking?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"who is tossing?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"maneuver\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"juggle\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"tos\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a couple of guys are individually doing?\",\n    \"video_name\": \"q8t7iSGAKik_11_31\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"how many young men demonstrate how to do tricky soccer maneuvers?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is performing tricks with a soccer ball?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing tricks with a soccer ball?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does tricks with a soccer ball?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who performs some fancy soccer ball kicks?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many kids are kicking a soccar ball?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing with a ball with his feet?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is showing off his soccer ball skills?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is the man playing with with his feet?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is kicking a soccer ball?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking a ball around?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing football?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the men kick?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a boy kicking around?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are two kids kicking?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"soccar\"\n  },\n  {\n    \"question\": \"what is a man kicking?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two kids doing?\",\n    \"video_name\": \"q8t7iSGAKik_57_74\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"how many teams are playing a game of cricket?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who makes a mistake in a cricket match?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who hits a ball with a bat?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"sportsman\"\n  },\n  {\n    \"question\": \"what does a sportsman hit with a bat?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a sportsman hit a ball with?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"bat\"\n  },\n  {\n    \"question\": \"what did the people play with a bat and a ball?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are two teams playing a game of?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"how many teams play cricket?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many teams are playing cricket?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who hit the ball?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what are peoples playing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what did the cricket player hit?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a man in cricket perform?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"error\"\n  },\n  {\n    \"question\": \"who are playing cricket?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricketer\"\n  },\n  {\n    \"question\": \"what are a group of men playing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"who drops the ball?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what does a cricket pitcher drop?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what are a cricketer playing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what are several men playing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what are men playing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what are the men playing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what are two teams playing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what do two teams play?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"who ran?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"cricket\"\n  },\n  {\n    \"question\": \"what are two teams doing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a cricketer doing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are several men doing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"q9ew_nITQWY_54_62\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many men tussled with each other outside?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are fighting outdoors with a crowd looking on?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men get help from two friends?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a group of boys get into?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are the men in with each other?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two men fighting outdoors with looking on?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what do two men get from two friends?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"how many men are fighting?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do men drop each other to?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what did the boys fight on?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are boys doing?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are a group of boys doing?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is several men in a group start doing?\",\n    \"video_name\": \"qDjtN7xxNr4_44_51\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who sang a song?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who talks to a camera?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what did the little girl sing?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what does a child talk to?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is laughing?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is smiling?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"laugh\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"qIXs7fUoLIg_1_11\",\n    \"answer\": \"smile\"\n  },\n  {\n    \"question\": \"how many men throw a mannequin over a cliff while a woman in a nurses cap watches?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men throw a mannequin off a cliff?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are throwing a mannequin off a cliff?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"who did the people throw over the cliff edge?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"dummy\"\n  },\n  {\n    \"question\": \"who are some people throwing off a cliff?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"dummy\"\n  },\n  {\n    \"question\": \"who do a group of people toss over a cliff?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do people throw a mannequin off of?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"who has been thrown off a ledge?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"dummy\"\n  },\n  {\n    \"question\": \"what are some people throwing a dummy off?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"who do two men throw off a cliff?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"who are three people throwing off a cliff?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"what do a group of people toss a man over?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what do two men throw a mannequin off?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what are three people throwing a mannequin off?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"who are people throwing off a cliff?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"who are men throwing from a cliff?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"dummy\"\n  },\n  {\n    \"question\": \"what are people throwing a mannequin off?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what are men throwing a dummy from?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what has a dummy been thrown off?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"ledge\"\n  },\n  {\n    \"question\": \"who was thrown over the cliff?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"who is thrown off a ledge?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"who do people throw off a cliff?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"what do people throw a mannequin off?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what was the mannequin thrown over?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"cliff\"\n  },\n  {\n    \"question\": \"what is a mannequin thrown off?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"ledge\"\n  },\n  {\n    \"question\": \"who is tossed away?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"mannequin\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are some people doing?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are three people doing?\",\n    \"video_name\": \"qIk_Dz5XE5E_104_109\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"where do a group of people jump?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are several men doing maneuvers as across the grass?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"run\"\n  },\n  {\n    \"question\": \"what are several men doing maneuvers as the run across?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who did the men play follow on the grass?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"leader\"\n  },\n  {\n    \"question\": \"who are a group of men running behind?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where are several men jumping?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what did the men play follow the leader on?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what do a group of people jump on?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where are some men exercising?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where are men exercising?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are several men jumping in?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are some men exercising on?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are men exercising in?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what are some men doing?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"qLwgb3F0aPU_298_305\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is whisking a chocolate cake mixture in a bowl using a wooden spatula?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing a batch of chocolate with a large spoon?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who stirs cake batter with a spoon?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is stiring cake batter in a bowl?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stirs chocolate icing in a bowl?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing up chocolate batter in a bowl?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man whisking a chocolate cake mixture in using a wooden spatula?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is mixing ingredients for making a cake?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person mixing a batch of with a large spoon?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what is a man stiring cake batter in?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is a man stiring in a bowl?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is someone mixing up in a bowl?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what is someone mixing up chocolate batter in?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is mixed into a thick consistency?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"chocolaty\"\n  },\n  {\n    \"question\": \"who is stirring chocolate fudge mix?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who mixes cake batter?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"baker\"\n  },\n  {\n    \"question\": \"who is stirring the batter?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person stirring fudge mix?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"who does a baker mix?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is the cook stirring?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is being mixed?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"what is stired?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"chocolate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"qNjeEx92rTA_281_299\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is barking at a wind up toy duck?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog barking at up toy duck?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"wind\"\n  },\n  {\n    \"question\": \"what is barking at an electronic toy duck?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is puzzled by an electronic duck toy?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who barked at the electronic toy?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what barked at the battery operated toy?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog barking at a wind up?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"duck\"\n  },\n  {\n    \"question\": \"what barks at a walking electronic chicken?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is barking at a toy duck?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is barking at a mechanical chicken?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is barking at a musical toy?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing with a mechanical toy?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what plays with an electronic toy?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is barking at a toy?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is barking at the toy?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is the dog barking at?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is barking?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog barks at a doing?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"qOiN__I1-Zo_2_8\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what is running in shallow water in slow motion?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what ran in the water at the beach?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what runs across water in slow motion?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a dog run across in slow motion?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a black dog running in in slow motion?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a black dog running in shallow water in?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what does a dog run across water in?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what is running in a stream?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a black dog running in?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"stream\"\n  },\n  {\n    \"question\": \"what ran through the water?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what runs through a creek?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is running through water?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is running through the water?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what runs in water?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what did the dog run through?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is running in the water?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a dog run through?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"creek\"\n  },\n  {\n    \"question\": \"what is a dog running through?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a dog run in?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a dog running in?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the dog running in?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is running?\",\n    \"video_name\": \"qPXynwa_2iM_15_25\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is rubbing the head of a cat lying down?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone rubbing the head of lying down?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is getting petted by a person?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"who is a cat getting petted by?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing with a cat?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is petting a cat?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is petting the cat?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a playful cat seek?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"attention\"\n  },\n  {\n    \"question\": \"what growls when rubbed?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what seeks attention?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a man playing with?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a person petting?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is the person petting?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is being petted?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"qRoxNXm7INc_58_66\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"who is squirting a brown sauce into a bowl of cooked meat and vegetables?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who poured soy sauce on the plate of food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is pouring liquid onto a plate of food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pours a sauce over a plate of food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pouring sauce on a plateful of food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who pours olive oil on some tempura?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring soy sauce over the dish?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pouring sauce over a plate of food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is pouring sauce on a dish of food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone squirting into a bowl of cooked meat and vegetables?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what did someone pour on the plate of food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what does a woman pour on some tempura?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is someone pouring on a plateful of food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what does a woman pour olive oil on?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"tempura\"\n  },\n  {\n    \"question\": \"what is the woman pouring soy sauce over?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"who is adding sauce to some food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone pouring on a dish of food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is a person pouring over a plate of food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is the woman pouring over the dish?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who pours sauce over a dish?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who pours sauce onto a plate?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman adding to some food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who poured soy sauce on his shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is pouring sauce over food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman adding sauce to?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a person pour onto a plate?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"who is pouring liquid onto some food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a person pour sauce onto?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"what is someone pouring sauce over?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did someone pour on his shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is someone pouring over food?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"sauce\"\n  },\n  {\n    \"question\": \"what is someone pouring liquid onto?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who did someone pour soy sauce on?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"squirt\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_0_5\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"who added corn flour to the water for a batter?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"lad\"\n  },\n  {\n    \"question\": \"who is mixing dry ingredients with water in a bowl?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who pours water and flour into a metal bowl?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who added flour to the water to make a paste?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who mixes rice and water in a small pot?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did the lad add corn flour to the water for?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who pours water and flour into a bowl?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lad add corn flour to for a batter?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is pouring a water and flour in the pan?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing flour and water in a bowl?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is adding water and flour to a bowl?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lad add to the water for a batter?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"corn\"\n  },\n  {\n    \"question\": \"what did the lady add flour to to make a paste?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is adding flour to water?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady add to the water to make a paste?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"what is a woman mixing dry ingredients with water in?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what did the lady add flour to the water to make?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"paste\"\n  },\n  {\n    \"question\": \"what is a woman mixing dry ingredients with in a bowl?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who stirs with chopsticks?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman pour into a metal bowl?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a woman pour into a bowl?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman mixing flour and water in?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a woman adding water and flour to?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a woman adding to a bowl?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman mixing in a bowl?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who puts ingredients into a bowl?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman adding flour to?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman adding to water?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"who is mixing ingrediants?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman put ingredients into?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is mixing flour and water?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing water and flour?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman mixing?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the woman mixing?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is stirring?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_106_115\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who is sprinkling a white substance over various kinds of food?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sprinkling flour onto some ingredients?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman sprinkling over various kinds of food?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"substance\"\n  },\n  {\n    \"question\": \"what is a woman sprinkling onto some ingredients?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"who is sprinkling seasoning over a plate of fish and over a plate of vegetables?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who seasons plates of food?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts flour on seafood?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sprinkled salt on the food?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is dusting food with powder?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who seasons two plates of food?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is sprinkling something on food?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is seasoning the shrimp and vegetables?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady sprinkle on the food?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"salt\"\n  },\n  {\n    \"question\": \"who spices some seafood?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady sprinkle salt on?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is seasoning various foods?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what a woman seasons plates of?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who seasons meat and begetables?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman dusting with powder?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman put on seafood?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"flmy\"\n  },\n  {\n    \"question\": \"what is a woman dusting food with?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"powder\"\n  },\n  {\n    \"question\": \"what does a woman put flour on?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"what is a woman sprinkling on food?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what a woman seasons two plates of?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman sprinkling something on?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what a woman spices?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"sprinkle\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"dust\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_123_130\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"who is placing tempura battered ingredients in hot oil?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is placing battered vegetables in a pan of boiling oil?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who added the batter dipped shrimp to the oil?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who added the batter dipped food to the hot oil?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is coating a small piece of something in batter?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did the lady add dipped shrimp to the oil?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who did the lady add the batter dipped to the oil?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who did the lady add dipped food to the hot oil?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is dropping battered food into a pot?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is putting battered vegetables into hot oil?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did the lady add the batter dipped shrimp to?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what did the lady add the batter dipped to the hot oil?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who puts a vegetable in a pot of hot oil?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is putting vegetables in batter?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts some vegetables into a pot?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is frying food in a pot?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person dropping battered food into?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is then deep frying coating vegetables in a bowl of flour?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a cook put some vegetables into?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"what is a person dropping into a pot?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman frying in a pot?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is someone putting battered vegetables into?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is a woman putting vegetables in?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who breads a vegetable?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman frying food in?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is frying cantaloupe?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is frying seafood?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is frying vegetables?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is frying something?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is an asian chef frying?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"seafood\"\n  },\n  {\n    \"question\": \"who is deep frying it?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person frying?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"cantaloupe\"\n  },\n  {\n    \"question\": \"what is someone frying?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a woman frying?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who fries cantaloupe?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"coat\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is an asian chef doing?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"drop\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_133_142\",\n    \"answer\": \"fry\"\n  },\n  {\n    \"question\": \"who is slicing the tail off a piece of shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting pieces off the tail of a shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting the tail off a shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is removing the tail from the shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cut the tail off the shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who did the lady cut the tail off?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a woman slicing off a piece of shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"who is a woman cutting the tail off?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what did the lady cut off the shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"who is the woman removing the tail from?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a woman cutting off a shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what is the woman removing from the shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"who slices a shrimp tail?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a shrimps tail off?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cuts up some shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is preparing shrimp to cook?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting up shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman preparing to cook?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who does a woman cut up?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman cutting up?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman cutting?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what does a woman slice?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is someone cutting off?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"qeKX-N1nKiM_37_43\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who is making slits into a piece of raw shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting several parts of a shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who did the lady make some slices on?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is slicing shrimp with a knife?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who made some slices on the shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is a person cutting several parts of?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a person slicing with a knife?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a person slicing shrimp with?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is putting small cuts into shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is someone putting small cuts into?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who sliced the shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing a prawn?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is scoring shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts up a shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting a shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who did the lady slice?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who slices shrimp?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a chef slicing?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who does a person slice?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is the woman slicing?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a person slicing?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman scoring?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is someone cutting?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who is a woman cutting?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"who does a person cut up?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"shrimp\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"prawn\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"score\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_52_59\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who slices a raw potato with the skin on?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman slice a raw potato with on?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"skin\"\n  },\n  {\n    \"question\": \"what does a woman slice with the skin on?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who cut a vegetable and a cantaloupe?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing sweet potatoes?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting sweet potato?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cut the vegetable?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who slices a potato?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts up vegetables?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a potato?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a potato?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady cut?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"what does a woman slice?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is the woman slicing?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"sweet\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_68_72\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is slicing an orange vegetable with a green skin into thin slices?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing a piece of yellow vegetable or fruit with a green rind?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone slicing with a green skin into thin slices?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"vegetable\"\n  },\n  {\n    \"question\": \"who is slicing squash with a knife?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a piece of fruit?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a chef slicing a piece of?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what is a woman slicing with a knife?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"squash\"\n  },\n  {\n    \"question\": \"who is slicing a piece of pumpkin?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman slicing squash with?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who sliced some cantaloupe?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who sliced a cantalopue?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is slicing cantaloupe?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing pumpkin?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a cantaloupe?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing some pumpkin?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing up vegetables?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is someone slicing a piece of?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"pumpkin\"\n  },\n  {\n    \"question\": \"who is slicing a pumpkin?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts up vegetables?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing fruit?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who did the lady slice?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"cantalopue\"\n  },\n  {\n    \"question\": \"what did someone slice?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"cantaloupe\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"pumpkin\"\n  },\n  {\n    \"question\": \"what is the woman slicing?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"pumpkin\"\n  },\n  {\n    \"question\": \"what is a person slicing?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"cantaloupe\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"qeKX-N1nKiM_74_77\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who crawled on his knees while holding an ice cream cone?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is crawling with a ice cream cone in hand?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crawled on his knees with an ice cream cone?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is crawling on his hands and knees while holding an ice cream cone in one hand?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crawling on his hands and knees?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crawls along the sidewalk?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crawls on the sidewalk?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crawling on the sidewalk?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crawling on the ground?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crawling on the street?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is falling on a street?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man crawl along?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what does a man crawl on?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what is the man crawling on?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man falling on?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is crawling?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is i man doing?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is the boy crawled on his knees while doing?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"qew09qQgMAg_22_27\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"who chopped the block of ice with a sledge hammer?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who used a pick axe to slice the ice cube?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demolishes a block of ice with a hammer that has a sharp spike on the end of the hammer head?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who smashes a block of ice with a long handled hammer?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who broke the block of ice with a sledgehammer?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slams a block of ice with a pick axe?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hit a block of ice with a hammer?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hitting a block of ice with an ax?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hitting a block of ice with a sword?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hits a ice cube with a tool?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking a block of ice with a pick?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who breaks a glass block with a hammer?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man chop the block of with a sledge hammer?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what did the man chop the block of ice with hammer?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"sledge\"\n  },\n  {\n    \"question\": \"what did the man break the block of with a sledgehammer?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what does a man slam a block of with a pick axe?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what did the man break the block of ice with?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"sledgehammer\"\n  },\n  {\n    \"question\": \"what did a man hit a block of with a hammer?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is a man hitting a block of with an ax?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"who breaks a block of ice by swinging a long handled metal tool at it?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man hitting a block of with a sword?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is a man breaking a block of ice with?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what does a man hit a ice cube with?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"tool\"\n  },\n  {\n    \"question\": \"what is a man breaking a block of with a pick?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what does a man break with a hammer?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"block\"\n  },\n  {\n    \"question\": \"who smashes a block of ice?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man hit with a tool?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"cube\"\n  },\n  {\n    \"question\": \"what does a man break a block of by swinging a long handled metal tool at it?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what does a man smash a block of?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"who is breaking an ice block?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking ice?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man breaking?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"ice\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qhknaG9ifbs_122_127\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a girl braiding part of?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what did the girl braid?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what a woman fixes?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what a girl braids?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a woman braiding?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a girl braiding?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is the girl braiding?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a woman styling?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a girl styling?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does a girl twist?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what does a woman do?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"braid\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"braid\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"style\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"qqYysi3qotc_148_195\",\n    \"answer\": \"braid\"\n  },\n  {\n    \"question\": \"what is shown wading in a shallow pool?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is wading in water to retrieve a ball?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"bulldog\"\n  },\n  {\n    \"question\": \"what is walking around inside a pool with a very low water level?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"bulldog\"\n  },\n  {\n    \"question\": \"what is wading in a pool after a toy?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is fetching a ball in some water?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a bulldog wading in to retrieve a ball?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a bulldog walking around inside with a very low water level?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is a dog wading in after a toy?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is a dog wading in a pool after?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a dog fetching in some water?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a dog fetching a ball in?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is wading in a swimming pool?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"bulldog\"\n  },\n  {\n    \"question\": \"what is walking in a swimming pool?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"bulldog\"\n  },\n  {\n    \"question\": \"what is walking in the swimming pool?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what waded through the pool?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what waded in the pool?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what walks around in shallow water?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what did the dog wade through?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is walking through water?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"bulldog\"\n  },\n  {\n    \"question\": \"what is wading in the pool?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is walking through the water?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"bulldog\"\n  },\n  {\n    \"question\": \"what did the dog wade in?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is a bulldog walking through?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what plays in a pool?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is the dog wading in?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is a dog walking through?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a dog walk around in?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a dog play in?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is a bulldog doing?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"wad\"\n  },\n  {\n    \"question\": \"what is a bulldog doing?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"fetch\"\n  },\n  {\n    \"question\": \"what is a dog is shown doing?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"wad\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"qvSxiVV7jhw_0_15\",\n    \"answer\": \"wad\"\n  },\n  {\n    \"question\": \"who is lifting the back end of a small pickup up off the ground?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifted the blue truck by the rear bumper?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts the back of a pickup truck off the ground?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting the rear end of a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts the back of a blue truck up and down?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting the back end of a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts up the back of a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who lifted the blue truck up and down by its bumper?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts a vehicle partially from the rear end?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man lift the back of a pickup truck off?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who lifted the back of the truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man lift by the rear bumper?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who drops a vehicle down after holding for a while?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man lifting the rear end of?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what did the man lift the back of?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man lifting the back end of?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a man drop down after holding for a while?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what does a person lift up the back of?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a man lift partially from the rear end?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what did the man lift up and down by its bumper?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what did the man lift the blue truck up and down by?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"bumper\"\n  },\n  {\n    \"question\": \"who is lifting up a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting a car?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is picking a car up?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man lifting up?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man picking up?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man lifts a vehicle partially from the rear end and drops it down after doing?\",\n    \"video_name\": \"qvg9eM4Hmzk_1_9\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who is lifting the rear end of a truck up into the air?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting the rear end of a blue truck up and down?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting the rear end of a pickup truck up and down with his bare hands?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who lifts the rear end of a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting a pickup by the rear bumper?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts the back end of a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts up the back of a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifted a car by its bumper several times?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting the back of a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man lifting by the rear bumper?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"pickup\"\n  },\n  {\n    \"question\": \"what does a man lift the rear end of?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who lifted the truck up and down by its bed?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting the back of a truck down?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man lift the back end of?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what does a man lift up the back of?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man lifting the back of?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"who is trying to pick a car up?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man lift up and down by its bed?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man sitting the back of down?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what did the man lift a car by several times?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"bumper\"\n  },\n  {\n    \"question\": \"what did the man lift the truck up and down by?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who is lifting a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is picking up a truck?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting up a car?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting a car?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man lifting up?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man picking up?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man lifting?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"truck\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"qvg9eM4Hmzk_4_10\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is attacking a baboon as the latter is holding a fawn?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"gazelle\"\n  },\n  {\n    \"question\": \"what fights with a gazelle over an object?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"baboon\"\n  },\n  {\n    \"question\": \"what is a gazelle attacking as the latter is holding a fawn?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"baboon\"\n  },\n  {\n    \"question\": \"what did the mother antelope fight for its baby?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"baboon\"\n  },\n  {\n    \"question\": \"what fought the baboon for its baby?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"antelope\"\n  },\n  {\n    \"question\": \"who did the mother antelope fight the baboon for?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who did the antelope try to get the baboon away from?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is kidnapping a gazelle?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"baboon\"\n  },\n  {\n    \"question\": \"what is charging at a baboon?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"gazelle\"\n  },\n  {\n    \"question\": \"what is fighting with a baboon?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"gazelle\"\n  },\n  {\n    \"question\": \"how many animals fight?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is attacking a baboon?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"gazelle\"\n  },\n  {\n    \"question\": \"how many animals are fighting?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is holding a fawn?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"latter\"\n  },\n  {\n    \"question\": \"what is a gazelle charging at?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"baboon\"\n  },\n  {\n    \"question\": \"what is a gazelle fighting with?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"baboon\"\n  },\n  {\n    \"question\": \"what is a gazelle attacking?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"baboon\"\n  },\n  {\n    \"question\": \"what is the latter holding?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"fawn\"\n  },\n  {\n    \"question\": \"what are two animals doing?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are a monkey and a deer doing?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a gazelle doing?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a monkey and a deer doing?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a baboon doing?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"kidnap\"\n  },\n  {\n    \"question\": \"what is a gazelle doing?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a gazelle doing?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"charge\"\n  },\n  {\n    \"question\": \"what are the gazelle and baboon doing?\",\n    \"video_name\": \"qypmR4O1Gwk_0_10\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"who is playing music on a flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a colorfully painted wooden flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing on a flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who blew a wooden flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man playing music on?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"who played a wooden flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a multicolored flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a wooden flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a wind instrument?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the flute?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an instrument?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man blow?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man with a strange hairdo doing?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"qzQzooI4BqU_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby rodent eating a piece of?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"broccoli\"\n  },\n  {\n    \"question\": \"what is a hamster eating a piece of?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"broccoli\"\n  },\n  {\n    \"question\": \"what ate a stalk of brocoli?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"rodent\"\n  },\n  {\n    \"question\": \"who did the rodent eat a stalk of?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"brocoli\"\n  },\n  {\n    \"question\": \"what ate the piece of lettuce?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what did the animal eat the piece of?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"lettuce\"\n  },\n  {\n    \"question\": \"what eats some broccoli?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"what is eating broccoli?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"what eats broccoli?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"rodent\"\n  },\n  {\n    \"question\": \"what is eating something?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"squirrel\"\n  },\n  {\n    \"question\": \"what does a rodent eat?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"broccoli\"\n  },\n  {\n    \"question\": \"what does a hamster eat?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"broccoli\"\n  },\n  {\n    \"question\": \"what is a small squirrel eating?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is eating?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"hamster\"\n  },\n  {\n    \"question\": \"what is a small rabbit doing?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a hamster doing?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a baby rodent doing?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a small squirrel doing?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a baby rabbit doing?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the mouse doing?\",\n    \"video_name\": \"r0E-0ntoNWo_20_30\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who applied gold eye shadow with a brush?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the girl apply gold eye shadow with?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what did the girl apply with a brush?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"what is a woman putting eye shadow on with a brush?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"eye\"\n  },\n  {\n    \"question\": \"who puts on some eye makeup?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is applying eye liner?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting on eyeshadow?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting eyeshadow on?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting on eye makeup?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is applying eye shadow?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is applying eye makeup?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is putting on makeup?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman putting on?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"eyeshadow\"\n  },\n  {\n    \"question\": \"what is someone putting on?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a girl putting on?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman applying?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"what is the woman applying?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"r0rmrbTb7fU_98_109\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"how many women are talking in a garden?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women walk together in a flower garden?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are walking in a garden?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many costumed women walk through a garden?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are strolling through the garden?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the ladies walk arm in arm in?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"who are walking in the garden with flowers?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women are walking through a garden?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women holding a bunch of flowers having as they are strolling in a garden?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what are two women in dresses walking amongst?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"amongst\"\n  },\n  {\n    \"question\": \"what did the ladies walk in the garden?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"how many women are talking each other?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are strolling in a garden?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two woman walking in with flowers?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"how many women are walking?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are talking?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women talking in?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"how many people walk?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two costumed women walk through?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what are two women walking in?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what are two women strolling through?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"how many people chat together?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women walking through?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what are two women strolling in?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"who are talking?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two women dressed in old-fashioned clothes doing?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two woman doing?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two women in dresses doing?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is two women doing?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what are the women doing?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"r2PM0om2El8_18_25\",\n    \"answer\": \"stroll\"\n  },\n  {\n    \"question\": \"what bears played together on the step in the snow?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what are playing together on a swing in the snow?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what do a bunch of pandas play on?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"who are climbing on a wooden frame?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"how many pandas play on a bench?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what are baby pandas crawling on?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what does the panda bear played together in?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what are several panda bears climbing on?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what are baby pandas playing on?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what bears played together in the snow?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what bears playing on a bench swing?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what are crawling on a bench?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who are playing in the snow?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what are panda cubs playing in?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"snow\"\n  },\n  {\n    \"question\": \"what are playing on the swing?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what are pandas playing on?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what are the pandas playing on?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"swing\"\n  },\n  {\n    \"question\": \"what do four pandas play on?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"bench\"\n  },\n  {\n    \"question\": \"what are baby pandas doing?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what are several pandas doing?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are pandas doing?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are panda doing?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are some panda babies doing?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are panda cubs doing?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is panda bears doing?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are several panda bears doing?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what are the pandas doing?\",\n    \"video_name\": \"r2oI9Y-3wAo_21_28\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who talked to the leaf in his hand?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who held a leaf in his hand?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is talking towards a leaf?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talked about a large dried leaf?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did the boy hold in his hand?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"who is holding a large dried leaf?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who appears to talk to a leaf?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the boy talk to in his hand?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"what does a young man appear to talk to?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"what is a young man talking towards?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"what did the boy hold a leaf in?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what did the boy talk to the leaf in?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a young man talking to?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"who is staring at a leaf?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a leaf?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is holding a leaf?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to himself?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man staring at?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"what is a kid talking to?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"what is a boy talking to?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"what is a man talking to?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"what is the man talking to?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"leaf\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"r4qv_BNlQNk_119_124\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who put piece of bak into his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sticks a piece of bark in his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts a large piece of bark into his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who puts some hard bread in his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who put the bark into his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who puts some wood into his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did the boy put piece of into his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"bak\"\n  },\n  {\n    \"question\": \"what does a boy put a large piece of into his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"who puts a rock into his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the boy put into his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"who puts a rock in his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a man put into his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what did the boy put piece of bak into?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"what does a boy put in his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what does a boy put a large piece of bark into?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who puts something in his mouth?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what did the boy put the bark into?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"what does a boy put some hard bread in?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"what does a boy put some wood into?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who tries to eat wood?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a man put a rock into?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"what does a boy put a rock in?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who is eating wood?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating a rock?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is eating something?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating a stone?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boy try to eat?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is a kid eating?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"who is eating?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"r4qv_BNlQNk_93_98\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is doing stunts on a bicycle ramp?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing tricks on a half pipe?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"who is performing tricks in a halfpipe?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"bicyclist\"\n  },\n  {\n    \"question\": \"who flew up in the air with his bike?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a man on a bicycle jump high in while riding on a metallic sheet curved at both ends?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who jumps his bike on a halfpipe?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a bike doing tricks?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a person on a bike rides?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"what did the boy fly up in with his bike?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"who is doing stunts on a bike?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who did tricks on his bike?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is the man riding doing tricks?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is doing bicycle stunts?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"rider\"\n  },\n  {\n    \"question\": \"who is doing bicycle tricks?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the boy fly up in the air with?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is performing stunts?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"biker\"\n  },\n  {\n    \"question\": \"what is someone doing stunts on?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a rider doing?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what rider?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"stunt\"\n  },\n  {\n    \"question\": \"what is a bicyclist doing?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a biker doing?\",\n    \"video_name\": \"rKF0ZW34FRk_41_54\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what hit the toy car on the tracks?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what do a train coming around a bend hits a stationary car on?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what hit the red car on the tracks?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what did the toy train hit on the tracks?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what ran into the toy car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what crashes into a toy car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what runs over a toy car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what runs into a toy car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what crashes into a model car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is hit by a toy train?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is hit by a model train?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is striking a toy car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is riding on the tracks?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what is hitting a toy car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a toy train striking?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a toy train hitting?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what hit a toy car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what crashes into a car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what strikes a toy car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what hits a toy car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"what did a toy train hit?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what hits a car?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"trolley\"\n  },\n  {\n    \"question\": \"what does a train crash into?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a toy trolley hit?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a toy train strike?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what does a model train hit?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a toy train doing?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a toy train doing?\",\n    \"video_name\": \"rOic25PnIx8_1_3\",\n    \"answer\": \"strike\"\n  },\n  {\n    \"question\": \"who sang as he walked down the street?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is singing while walking down the sidewalk?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sang while walking down the street?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing as he walks down a street?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking down a sidewalk singing?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking down a city sidewalk?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking down the city sidewalk?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking down the street singing?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking down the sidewalk?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks down a city sidewalk?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks along the sidewalk?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walked down the street?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man walking down singing?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"who is walking down a sidewalk?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing in the street?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man walking down?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"who is walking down the street?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walks down a street?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man walk along?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what did a boy walk down?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a boy singing in?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a man walk down?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the man sang while doing?\",\n    \"video_name\": \"rV5VmhY3-Sw_65_76\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who hits a boy on the head with a flower vase?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who smashes a vase over a boys head?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who smashes a flower pot on a boys head?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking a vase on a boys head?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hitting a boy with flower vase?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man hitting with flower vase?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who hit the boy with a vase?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did the man hit with a vase?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who threw a vase at his son?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man hit the boy with?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"vase\"\n  },\n  {\n    \"question\": \"what is a man hitting a boy with?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"vase\"\n  },\n  {\n    \"question\": \"what did the man throw at his son?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"vase\"\n  },\n  {\n    \"question\": \"who did the man throw a vase at?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"son\"\n  },\n  {\n    \"question\": \"who hits a boy with a vase?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does someone hit with a vase?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does someone hit a boy with?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"vase\"\n  },\n  {\n    \"question\": \"who said no to his son?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"father\"\n  },\n  {\n    \"question\": \"who did the father say no to?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"son\"\n  },\n  {\n    \"question\": \"who yelled?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rVFJzN20jhQ_27_32\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"who is cleaning two glass doors using wet and dry sponge mops along with a piece of cloth?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many glass doors is a man cleaning using wet and dry sponge mops along with a piece of cloth?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is washing the door glass of a business?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cleaning using wet and dry sponge mops along with a piece of cloth?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"who is cleaning a glass of door?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man washing the door glass of?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"what is a man cleaning a glass of?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"who cleans a building glass door?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cleaning glass doors?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cleaning the glass doors?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cleaning a glass door?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cleaning windows?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is window cleaning?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is cleaning the door glass?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"mand\"\n  },\n  {\n    \"question\": \"who is cleaning the windows?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the mand cleaning?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is a man cleaning?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what is the man cleaning?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what is a man?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"cleaning\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is man doing?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is the mand doing?\",\n    \"video_name\": \"rXZy-PHtnxg_8_42\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"who is shooting at targets with a handgun?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is firing a pistol at targets in the woods?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting a gun at targets?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting targets with a gun?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting at a target range?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shot a gun at a target?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man shooting targets with?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man shooting at targets?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is the man shooting at targets?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what did someone shoot a gun at?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"who shot at a target?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did someone shoot at a target?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is shooting at a target?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hooting at his targets?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what shoots in the forest?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"who is shooting a gun?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man shoot at?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"what does a man target shoot in?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what is a man shooting at?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"what is a man shooting?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"hoot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"ri5AyXzxb4o_201_215\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who dances with a group of kids?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"who danced on the gym floor?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who danced at the wedding reception?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is dancing along with other kids?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a few little girls and a little boy doing?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a very young child doing?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are little kids doing?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a young toddler doing?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are several kids doing?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the children doing?\",\n    \"video_name\": \"rl1rVk_xIOs_1_16\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who demonstrates exercise moves while a man narrates?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is instructing or describing a woman who is exercising?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is training a woman to do exercises?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is teaching exercise to a girl?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman demonstrate while a man narrates?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who demonstrated how to stretch the leg?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"trainer\"\n  },\n  {\n    \"question\": \"what is a man teaching to a girl?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is a man training to do exercises?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man teaching exercise to?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"how many people demonstrate an exercise?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is showcasing an exercising woman?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing leg lifts?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who helped the girl stretch?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"trainer\"\n  },\n  {\n    \"question\": \"who is a man showcasing?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the trainer help?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"stretch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"leg\"\n  },\n  {\n    \"question\": \"what do two people demonstrate?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what do a man and woman demonstrate?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who narrates?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is exercising?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is a trainer doing?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"teach\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"rlQ2kW-FvMk_66_79\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who comes out of hiding under some bushes?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who covers his face with a skateboard?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is hiding behind his skateboard and a bush?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is hiding behind skate board?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a kid cover his face with?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"who is shielding himself from view with his skateboard?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is hiding behind a skateboard?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is hiding behind the skateboard?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is covering his face with his skateboard?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what does a kid cover with a skateboard?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a boy shielding himself from view with?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"who is hiding behind his skateboard?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a kid covering with his skateboard?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a kid covering his face with?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"what is a boy shielding himself from with his skateboard?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"view\"\n  },\n  {\n    \"question\": \"what is someone hiding behind?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"what is a person hiding behind?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"what is a man hiding behind?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a boy hiding behind?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"shield\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is a playful child comes out of doing?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"rnawC5C8gSI_82_90\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"who put a necklace on a lady in a ceremony?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who ties the sacred thread around the neck of a woman seated beside him in a wedding ceremony?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a man put a necklace on?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who put a necklace on a woman?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is putting a necklace on a girl?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who puts a necklace on a woman?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man put a necklace on?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the man put on a lady in a ceremony?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"necklace\"\n  },\n  {\n    \"question\": \"what did a man put on a woman?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"necklace\"\n  },\n  {\n    \"question\": \"who is someone putting a necklace on?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a man put on a woman?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"necklace\"\n  },\n  {\n    \"question\": \"who is a woman wearing a wedding necklace by?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"husband\"\n  },\n  {\n    \"question\": \"what is someone putting on a girl?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"necklace\"\n  },\n  {\n    \"question\": \"who is woman is getting married?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is marrying a woman?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man is getting married?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man marrying?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"marry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"rq2p5ML8-WI_63_69\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is the united states flag waving in?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"wind\"\n  },\n  {\n    \"question\": \"what is the american flag fastened at one end flying in?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"wind\"\n  },\n  {\n    \"question\": \"what is waving in the wind?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what is blowing in the wind?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what is an american flag waving in?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"wind\"\n  },\n  {\n    \"question\": \"what is a american flag blowing in?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"wind\"\n  },\n  {\n    \"question\": \"what flew in the wind?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what was moving in the air?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what did the american flag fly in?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"wind\"\n  },\n  {\n    \"question\": \"what was the flag moving in?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a flag blowing in?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"wind\"\n  },\n  {\n    \"question\": \"what is flying?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"flag\"\n  },\n  {\n    \"question\": \"what is an american flag doing?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is the united states flag doing?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is the american flag doing?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is an american flag doing?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a american flag doing?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"blow\"\n  },\n  {\n    \"question\": \"what is american flag doing?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is a flag doing?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"wave\"\n  },\n  {\n    \"question\": \"what is the american flag fastened at one end doing?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what was the flag doing?\",\n    \"video_name\": \"ruNrdmjcNTc_0_5\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who plays an acoustic guitar?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays a guitar?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a kid play?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a woman play?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a girl play?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a girl playing?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a woman playing?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is the girl playing?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what did the girl play?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"ruoHOXo2PRQ_2_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what walked arm in arm down the path?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what did the couple walk arm in arm down?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what did the couple walk down the path?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what are a man and woman walking through a wooded area?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"how many people are walking through the woods?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a man and woman walking through?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are walking through the woods?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is walking through the woods?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what walked down the path together?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is walking in a forest?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what did the couple walk down together?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what is a couple walking in?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what are a woman and a man with their arms around each other doing?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a couple doing?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are the man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_127_133\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who served the man food on his plate at the dinner table?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what did the lady serve on his plate at the dinner table?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is serving food to a man?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many people are eating at a table?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a woman serving to a man?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what ate dinner at the table?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is a woman serving food to?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the lady serve the man food on at the dinner table?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"plate\"\n  },\n  {\n    \"question\": \"how many people eat dinner?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are eating a meal?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and woman eating at?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are a man and a woman eating at?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what are a couple eating?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"who serves a man food?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a man and woman eating together?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what does a woman serve?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are two people eating at?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what do two people eat?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"dinner\"\n  },\n  {\n    \"question\": \"what are talking?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"serve\"\n  },\n  {\n    \"question\": \"what are a couple doing?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are the man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_13_18\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what flashes to a man walking down a hallway wrapped in a bath towel?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who is standing in the rain getting wet?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman standing in getting wet?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who is bathing in a shower?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman wipe the rain off?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who took a shower?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is taking bath?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is taking a shower?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is in the rain?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman wash in rain?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"herself\"\n  },\n  {\n    \"question\": \"what is a woman shower?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"bathing\"\n  },\n  {\n    \"question\": \"what is a woman taking?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is a woman in?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"who is getting wet?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is showering?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who showered?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is standing in a shower?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman slick back?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"shower\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_161_166\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what walked hand in hand down the path?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and a woman walking together in as a song plays in the background?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what did the couple walk hand in hand down?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what did the couple walk in hand down the path?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what did the couple walk hand in down the path?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who has his arm around a woman?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman walking in?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what strolled together down the path?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are walking through a forest?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"how many people are walking?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what plays in the background?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what are a couple walking through?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what did the couple stroll together down?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what does a song play in?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what are walking?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man has his arm around a woman and they doing?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a couple doing?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are the man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_229_236\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who plays a board game with a man?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing a game with a man?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a woman play a board game with?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a woman playing a game with?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and a woman playing on a coffee table?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what does a woman play with a man?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a woman playing with a man?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"how many people play a game?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man and a woman playing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"carom\"\n  },\n  {\n    \"question\": \"what are a man and a girl playing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what do a man and a woman play?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what do a man and woman play?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what are the man and woman playing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are people playing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what do two people play?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"game\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a man and a girl doing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a woman and man doing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a woman hits the striker while doing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the lady shooed the man from doing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what are the man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_251_254\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"where are a man and woman walking?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"meadow\"\n  },\n  {\n    \"question\": \"what did the man and woman stroll down?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what do a man and a woman walk across?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what strolled down the path?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and a woman walking through?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what are a man and woman walking in?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"meadow\"\n  },\n  {\n    \"question\": \"what do a man and woman walk down?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what walks through the jungle?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and a woman walking together through?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is walking throught the field?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what did the couple stroll down?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what does a couple walk through?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"jungle\"\n  },\n  {\n    \"question\": \"what is the couple walking?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is walking together?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what is the couple doing?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a couple doing?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"rw9h_574HxE_59_66\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is riding a bicycle with a woman riding as a passenger on the crossbar?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding with a woman riding as a passenger on the crossbar?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"who gave the girl a ride on his bike?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding a bicycle with a woman riding as a passenger on?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"crossbar\"\n  },\n  {\n    \"question\": \"how many people are riding a bike?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are the man and woman riding on?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what are a man and a woman riding on?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what do a man and a woman ride on?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is a man and a woman riding on?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what did the man give the girl a ride on?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what ride the same bike?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what do a man and a woman ride?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what are a man and woman riding?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what do a couple ride?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what are people riding?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what are two people riding?\",\n    \"video_name\": \"rw9h_574HxE_70_74\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what are laid out on a sheet of aluminium foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"who puts strips of bacon on aluminum foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who laid bacon strips on aluminum foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is putting meat loafs on a wrapper?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is laying bacon on some aluminum foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is placing bacon strips on a cookie sheet?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is laying bacon on some tin foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who lays out meat on some tin foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who puts slices of bacon on a tray?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is placing strips of meat on a tray?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who lays bacon on a baking tray?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is laying out bacon on a pan?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is placing bacon onto a pan?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a lady lay on aluminum foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"who laid the bacon on the foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what did a lady lay bacon strips on?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"aluminum\"\n  },\n  {\n    \"question\": \"what does a person put strips of on aluminum foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what does a chef lay on a baking tray?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is a man putting meat loafs on?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"wrapper\"\n  },\n  {\n    \"question\": \"what is a woman laying on some aluminum foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what does a person put on aluminum foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is a person laying on some tin foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is a person placing strips of meat on?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what is a person placing strips of on a tray?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a person put strips of bacon on?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"aluminum\"\n  },\n  {\n    \"question\": \"what does a man lay out on some tin foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a person put slices of bacon on?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what did the lady lay the bacon on?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"foil\"\n  },\n  {\n    \"question\": \"what did the lady lay on the foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what does a person put slices of on a tray?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is a woman placing onto a pan?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is a man placing on a cookie sheet?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is a person placing on a tray?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man putting on a wrapper?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a person put on a tray?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is a person laying out on a pan?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"who is laying bacon on aluminum foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is laying bacon on tinfoil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone laying on aluminum foil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"who is laying bacon strips down?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is someone laying on tinfoil?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is someone laying bacon on?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"aluminum\"\n  },\n  {\n    \"question\": \"what is the cook laying down?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"rwHT2SuNOi8_195_201\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"who is adding spices to pieces of bacon?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who has woven ten pieces of bacon into a square?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is seasoning a pan full of bacon?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what are added to the strips of bacon arranged in a lattice grid?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"who is adding pepper to sliced meat?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is seasoning meat on a tray?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what has someone woven ten pieces of bacon into?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what are pouring seasoning over the square?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"who is adding spices on the meat?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what has someone woven ten pieces of into a square?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what are pieces of bacon pouring seasoning over?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"square\"\n  },\n  {\n    \"question\": \"what is a man adding to sliced meat?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"what is a person seasoning on a tray?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is putting seasoning on bacon?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person seasoning meat on?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what is a person adding spices on?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is putting seasonings on bacon?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man adding pepper to?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who seasons bacon strips?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is putting seasoning on bacon?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who seasons some bacon?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is seasoning bacon?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who seasons some meat?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone putting seasonings on?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is someone putting seasoning on?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is a man putting seasoning on?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what a chef seasons?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what a person seasons?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is the man seasoning?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"bacon\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what are someone has woven ten pieces of bacon into a square and they doing?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"rwHT2SuNOi8_240_255\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what do fingers play?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who played the keyboard?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing keyboard?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a keyboard?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing piano?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a keyboard?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the piano?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the keyboard?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing the piano?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a keyboard?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing the piano?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"ry7AUQtuwdU_4_39\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what did lightning strike?\",\n    \"video_name\": \"s-QQWRdF-5Y_19_28\",\n    \"answer\": \"lamp\"\n  },\n  {\n    \"question\": \"what is lightning striking?\",\n    \"video_name\": \"s-QQWRdF-5Y_19_28\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are the light post and the satellite dish doing?\",\n    \"video_name\": \"s-QQWRdF-5Y_19_28\",\n    \"answer\": \"attract\"\n  },\n  {\n    \"question\": \"who wrestle each other to the floor?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"how many women wrestle each other?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two woman wrestle each other to?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"how many girls wrestle?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are wrestling?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women fight?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are fighting?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the ladies wrestle on?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what did the girls wrestle on?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is two women in two piece doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what is two women in doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are the women doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_13_23\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"how many women are wrestling on the floor?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women in bathing suits wrestling on?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what do two women in bikinis wrestle with each other on?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"how many women are wrestling each other?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women wrestle?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are wrestling?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are wrestling?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are fighting?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the ladies wrestle on?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"mat\"\n  },\n  {\n    \"question\": \"what are two women wrestling on?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are two women in two-piece bathing suits doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two women in doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are the women doing?\",\n    \"video_name\": \"s-dSFyz_5Ww_31_41\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"who shakes the hand of a man at the door?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is an old woman shaking hand with?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a woman shake the hand of at the door?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shaking hand with a man?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is shaking hands with a woman?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a woman shake the hand of a man at?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"door\"\n  },\n  {\n    \"question\": \"what is an old woman shaking with a man?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is a man shaking hands with?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are a man and a woman shaking hands in?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"doorway\"\n  },\n  {\n    \"question\": \"who did the lady come out to greet?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who came out to greet the man?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"how many people are shaking hands?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who greeted the man outside?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who did the lady greet outside?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an old woman doing?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what are the man and woman doing?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"s0hwEUC5emA_127_132\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"who chased by a stampede of people?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who begins to run with the crowd giving chase?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is surprised by a crowd of people who chase him down an alley?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what chased a man with a briefcase?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"mob\"\n  },\n  {\n    \"question\": \"who does a mob chase down an alley?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking toward a crowd of people?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a huge group of people chase down?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"salaryman\"\n  },\n  {\n    \"question\": \"what chases a man down an alley?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"mob\"\n  },\n  {\n    \"question\": \"what are a large group of people chasing a man with a briefcase down?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who are a group of people chasing a man in?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who are a group of people chasing in the street?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a mob chase a man down?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"alley\"\n  },\n  {\n    \"question\": \"what are a group of people running down?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who are a crowd of people chasing?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs away from a large crowd chasing him?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a group of men attack?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who do a group of people chase?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running from a crowd?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what chased the man?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"mob\"\n  },\n  {\n    \"question\": \"what is chasing a man?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"who is a crowd chasing?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man running from?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"crowd\"\n  },\n  {\n    \"question\": \"what are the men running down?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who turns around?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a crowd doing?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are a crowd of people doing?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are a large group of people doing?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man runs away from a large crowd doing?\",\n    \"video_name\": \"s1ZABV7AQdA_38_48\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"who peeled cooked potatoes?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is peeling potatoes?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who peels a potato?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is peeling potato?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a potato?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does someone peel?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a chef peeling?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a person peel?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a woman peeling?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a person peeling?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"s20OlIRK340_125_138\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"who is dicing potatoes into large chunks?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting a potato into small pieces?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting potatoes into small pieces?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a potato into pieces?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a woman cutting into small pieces?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a person slicing into pieces?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who cuts some potatos?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who cut the cooked potatoes?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is chopping potatoes?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing potatoes?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting potatoes?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting potato?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a potato?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a potato?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady cut?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"cooked\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a cook cut?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"s20OlIRK340_147_174\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"who lifted the white car by the rear bumper?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting the back of a car off the ground?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting a car by the rear bumper?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts the back end of a car?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting the back end of a car?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts up the back of a white car?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts the back of a car off the ground?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts up the back of a car?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the man lift by the rear bumper?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who lifts a car by the rear?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man lifting the back of a car off?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a man lifting the back of off the ground?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man lifting by the rear bumper?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who lifted the car by its bumper?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man lift the back end of?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man lift the back of a car off?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a man lifting the back end of?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man lift the back of off the ground?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a person lift up the back of?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man lift by the rear?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man lift a car by?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"rear\"\n  },\n  {\n    \"question\": \"what did the man lift by its bumper?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who puts the back of a white car back down?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man lift the car by?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"bumper\"\n  },\n  {\n    \"question\": \"who lifted a car?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifted the car?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts a car?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting up a car?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting a car?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is picking up a car?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is picking a car up?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man lift?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did the man lift?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man lifting up?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man lifting?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man picking up?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"s6QwbmWbSmw_18_24\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what are a group of people dressed in white shirts or jackets marching down?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is marching down the center of a street?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"army\"\n  },\n  {\n    \"question\": \"what is an army marching down the center of?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are people in uniforms marching down?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what marched down the street?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what marched in the parade?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what moves down the street?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"parade\"\n  },\n  {\n    \"question\": \"what did the group march down?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a parade move down?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what do people march down?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are soldiers marching on?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is marching down the street?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"group\"\n  },\n  {\n    \"question\": \"what are men marching in?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"formation\"\n  },\n  {\n    \"question\": \"what did the group march in?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"parade\"\n  },\n  {\n    \"question\": \"what are the men marching in?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are men marching down?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a group marching down?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what are a band of soldiers doing?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"parade\"\n  },\n  {\n    \"question\": \"what is a group doing?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what are a group of people dressed in white shirts or jackets doing?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what is an army doing?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what are people in uniforms doing?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what are soldiers doing?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"march\"\n  },\n  {\n    \"question\": \"what is a marching band doing?\",\n    \"video_name\": \"s7znbqra118_91_97\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is explaining while writing an algebraic equation on a white board in a classroom?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who writes out a mathematical equation on a dry erase border?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who draws an algebra formula on a white board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is writing an algebraic formula on a whiteboard?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing algebraic equations on a white board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is solving a math equation on a whiteboard?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is writing mathematical equations on a white board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who put a math equation on the board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who is solving math problems on a white board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is writing on a dry erase board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who writes out formulas on a white board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"who is writing math equations on a board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is writing a math problem on the white board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who writes math equations on a whiteboard?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does math equations on a board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the teacher put a math equation on?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a man writing an algebraic formula on?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"whiteboard\"\n  },\n  {\n    \"question\": \"what does a man write math equations on?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"whiteboard\"\n  },\n  {\n    \"question\": \"what do the teach put a math equation on?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a man solving a math equation on?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"whiteboard\"\n  },\n  {\n    \"question\": \"what is a man solving on a whiteboard?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"equation\"\n  },\n  {\n    \"question\": \"what does a man write on a whiteboard?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"what is a man writing math equations on?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what did the teacher put on the board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"equation\"\n  },\n  {\n    \"question\": \"what is a man solving on a white board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"what is a man writing on a whiteboard?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"formula\"\n  },\n  {\n    \"question\": \"what do the teach put on the board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"equation\"\n  },\n  {\n    \"question\": \"what is the man writing on the white board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"problem\"\n  },\n  {\n    \"question\": \"what is a man writing on a board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"who is writing on a white board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing math on board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is writing on a board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"teacher\"\n  },\n  {\n    \"question\": \"what is a man doing math on?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a man doing on board?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"math\"\n  },\n  {\n    \"question\": \"what is a teacher writing on?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a teacher doing?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"solve\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"explain\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"s80J2dAUUyI_33_43\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"who cut a circl out of the red paper?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts a circle out of a piece of pink paper?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a piece of paper into a circular shape?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a piece of pink paper with a pair of scissors?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting a circle out of a pink sheet of paper?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a piece of paper with scissors?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman cutting a piece of into a circular shape?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person with scissors cutting a circle of?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does someone cut out of a piece of pink paper?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"who is cutting a piece of paper?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone cutting a piece of into a circular shape?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who cuts into the center on one side with scissors?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone cutting a piece of with scissors?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone cutting out of a pink sheet of paper?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what is a person cutting a piece of with a pair of scissors?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is using scissors to cut paper?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person cutting a piece of?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does someone cut into on one side with scissors?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"who is cutting paper with scissors?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cuts a circle from paper?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person cut a circle from?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone cutting with scissors?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who cuts a pink paper?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is making a paper cone?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who cuts some paper?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting papers?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a person cut from paper?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what is someone making?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person cut?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person with scissors doing?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"s8utHZYTNTs_35_42\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who puts a baking tray with stuffed rectangular portions of dough into an oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who put a tray of food into the oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who picks up a cookie sheet filled with what looks like some kind of pastry?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts a tray of food into an oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is placing a tray in the oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts a pan of food in the oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the lady put a tray of food into?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"who put the pastries into the oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what did the lady put a tray of into the oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is putting food into an oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting food into the oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman put a tray of into an oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman put a tray of food into?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"who is putting food in a oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do the lady put the pastries into?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"what is a woman putting into an oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a woman put a pan of in the oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman placing a tray in?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"what does a woman put a pan of food in?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"what is a woman putting into the oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman placing in the oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"tray\"\n  },\n  {\n    \"question\": \"what is a woman putting in a oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a woman putting food into?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"who places food in an oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman putting food in?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"what does a woman place in an oven?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is baking some food?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman place food in?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"oven\"\n  },\n  {\n    \"question\": \"what is a woman baking?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who baking?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is baking?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"s9TklvyLFyI_177_191\",\n    \"answer\": \"bake\"\n  },\n  {\n    \"question\": \"what are a man and woman dancing near?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"what are a man and a woman dancing near?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"what danced by the waterfall?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and woman dancing in?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man and a woman dancing in?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are dancing near a waterfall?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what did the dancers dance by?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"how many people are dancing?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a couple dancing near?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"what did the couple dance by?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a man and a woman doing?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a couple doing?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the man and woman doing?\",\n    \"video_name\": \"sBjr8UJOpsQ_149_169\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who danced on a rock by the waterfall?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is dancing in front of a waterfall?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who danced on a rock in the river?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is dancing in front of a water fall?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing by a river with a waterfall?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances in front of a waterfall?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a woman dancing in front of a water?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what did the lady dance on by the waterfall?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what did the lady dance on a rock by?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"what did the girl dance on a rock in?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what did the girl dance on in the river?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a woman dancing by with a waterfall?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is a woman dancing by a river with?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"who is dancing near a waterfall?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances on an island?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing by a waterfall?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances in a river?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing by the water?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing in the water?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman dancing near?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"what does a woman dance on?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"island\"\n  },\n  {\n    \"question\": \"what is a woman dancing by?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"waterfall\"\n  },\n  {\n    \"question\": \"what does a woman dance in?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"sBjr8UJOpsQ_181_195\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what cruises along the bottom of an aquarium?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what bumped into each other under water?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what did the fish bump into each other under?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are swimming opposite directions in the ocean?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are two large fish swimming opposite directions in?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"where is a fish like creature that appears to have a hand with fingers swimming close in a body of water?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"bottom\"\n  },\n  {\n    \"question\": \"what is a strange looking fish swimming in?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what bumped into another fish underwater?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is swimming through water?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"creature\"\n  },\n  {\n    \"question\": \"what is swimming under the water?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are swimming in water?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a sea creature swimming through?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a fish swimming under?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are fish swimming in?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are two fish swimming around?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what swims around?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are swimming?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is swimming?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are two large fish doing?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a fish doing?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a fish like creature that appears to have a hand with fingers doing?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are two fish doing?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"interact\"\n  },\n  {\n    \"question\": \"what is a sea creature doing?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are fish doing?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a strange doing?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a black eel-like sea creature with limbs doing?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is the ugly fish doing?\",\n    \"video_name\": \"sFExO_PW22s_10_18\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what did the white convertible travel down by remote control?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is going down a road without a driver?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what takes a test drive down the highway?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what did a white convertible go driverless down?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what did the white convertible travel down the road by?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"what does a car without a driver drive down?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is running on the road without driver?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is a car going down a road without?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"who is a car running on the road without?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what does a boat car take a test drive down?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"highway\"\n  },\n  {\n    \"question\": \"what is a car going down without a driver?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what does a boat car take down the highway?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car running on without driver?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a hybrid vehicle driving down?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is driving down the street?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is moving with out a driver?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is a car moving with out?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what is moving without a driver?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is moving down the road?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is moving down a road?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving along the road?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a convertible drive along?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is the car moving without?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what is the car moving down?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a car driving down?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a car driving along?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a car moving down?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is driving a car?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is driving a convertible slowly?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is driving by itself?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving itself?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is the car doing?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a hybrid vehicle doing?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a rinspeed 's squba car set by a remote control device is automatically doing?\",\n    \"video_name\": \"sJC7E06IBXI_49_59\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is going down the track near a shore?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is going across a railroad track?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a yellow passenger train speeding down?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a high speed train running down?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is speeding down a track?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what zooms along a track?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"bullet\"\n  },\n  {\n    \"question\": \"what is a yellow train speeding down?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what speeds across the track?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what does a bullet train zoom along?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what went by the harbor?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what passed by the water?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"yellow\"\n  },\n  {\n    \"question\": \"what did the yellow train pass by?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is riding on a track?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what speeds down the coast?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what does a train speed across?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what did the train go by?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"harbor\"\n  },\n  {\n    \"question\": \"what does a yellow train speed down?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"coast\"\n  },\n  {\n    \"question\": \"what is a rain riding on?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is going by?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what goes by?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is moving very fast?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is moving very quickly?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"speeding\"\n  },\n  {\n    \"question\": \"what is moving?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what is a yellow train doing?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a yellow passenger train doing?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"what is a train doing?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what is a train doing?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is the speeding train doing?\",\n    \"video_name\": \"sJSmRik2c-c_1_7\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who is putting handcuffs on an older lady?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"policeman\"\n  },\n  {\n    \"question\": \"who is putting hand cuffs on a woman?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"cop\"\n  },\n  {\n    \"question\": \"who is a cop putting hand cuffs on?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting handcuffs on a woman?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"policeman\"\n  },\n  {\n    \"question\": \"who cuffed the lady with handcuffs?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"officer\"\n  },\n  {\n    \"question\": \"what is a cop putting on a woman?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who put handcuffs on the lady?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"policeman\"\n  },\n  {\n    \"question\": \"who did the officer cuff with handcuffs?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who did the policeman put handcuffs on?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who handcuffs an elderly woman?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who handcuffs an older woman?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who did the officer put handcuffs on?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who handcuffs an old woman?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who handcuffs a woman?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"cop\"\n  },\n  {\n    \"question\": \"who is handcuffing a woman?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"polouse\"\n  },\n  {\n    \"question\": \"who a cop handcuffs?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who a police officer handcuffs?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a police officer handcuffing?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man arresting?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being handcuffed?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is being arrested?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is an older woman doing?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a policeman doing?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a police-man doing?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"arrest\"\n  },\n  {\n    \"question\": \"what is a police man doing?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"arrest\"\n  },\n  {\n    \"question\": \"what is a cop doing?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a police officer doing?\",\n    \"video_name\": \"sMscRb9TcQE_146_161\",\n    \"answer\": \"handcuff\"\n  },\n  {\n    \"question\": \"what are a group of women in bikinis dancing on?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what did the ladies dance in?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"bikini\"\n  },\n  {\n    \"question\": \"what is a group of women in bikinis are synchronized doing?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a group of women doing?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what are women in bikinis doing?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of women in bikinis doing?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of people doing?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are woman doing?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are several women doing?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the women doing?\",\n    \"video_name\": \"sRKQfxxEP4M_117_125\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who folds a piece of paper several times?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who folded the yellow piece of paper?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper into the shape of a triangle?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who folds a yellow piece of paper?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who creases a yellow colored square sheet of paper by folding it diagonally at all sides?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the boy fold the yellow piece of?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who then opens a yellow colored square sheet of paper out?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person fold a yellow piece of?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone folding a piece of into the shape of a triangle?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a square paper piece?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man crease a yellow colored square sheet of by folding it diagonally at all sides?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man then open a yellow colored square sheet of out?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folded a square yellow paper?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is folding a yellow paper?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone folding a piece of?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is the man?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a man creases a yellow colored square sheet of paper by doing?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"sT5Bzt9w354_11_34\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"who is toughing the nose of a crocodile?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is patting an alligator on the mouth?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who touches the snout of a crocodile?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is standing in front of a crocodile?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who reaches out with his hand and touches the crocodile on the snout?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is petting a crocodile on its nose?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is touching the snout of a crocodile lying on the grass with its mouth partially open?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man toughing the nose of?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what the nose of the alligator?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man patting an alligator on?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"what is a man patting on the mouth?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"alligator\"\n  },\n  {\n    \"question\": \"what a man touches the snout of?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what the man pet the nose of?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"alligator\"\n  },\n  {\n    \"question\": \"what is a man touching the snout of lying on the grass with its mouth partially open?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is a man petting on its nose?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"who touches a crocodiles nose?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who touched an alligator?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who touched the alligator?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who petting a crocodile?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who taunts a crocodile?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man petting a crocodile on?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"who is petting a crocodile?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is touching a crocodile head?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is touching a crocodile?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man touch?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"alligator\"\n  },\n  {\n    \"question\": \"what did the man touch?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"alligator\"\n  },\n  {\n    \"question\": \"what does a man taunt?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is a man petting?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what does a man pet?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what is a man touching?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"pet\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"pat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"tap\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"sTMlQSbAGfE_0_12\",\n    \"answer\": \"touch\"\n  },\n  {\n    \"question\": \"who does several arm curls with a weight bar?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man do with a weight bar?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"curl\"\n  },\n  {\n    \"question\": \"who lifted a heavy barbell weight?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifted a heavy weight?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"bodybuilder\"\n  },\n  {\n    \"question\": \"who lifts a barbell?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"bodybuilder\"\n  },\n  {\n    \"question\": \"who is lifing weights?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting weights?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"bodybuilder\"\n  },\n  {\n    \"question\": \"who is doing weightlifting?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is curling a barbell?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting a barbell?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the bodybuilder lift?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"weight\"\n  },\n  {\n    \"question\": \"what is doing exercises?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"builder\"\n  },\n  {\n    \"question\": \"what does a bodybuilder lift?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"barbell\"\n  },\n  {\n    \"question\": \"who lifts weight?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man lift?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"weight\"\n  },\n  {\n    \"question\": \"what is a man curling?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"barbell\"\n  },\n  {\n    \"question\": \"what is a man lifting?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"barbell\"\n  },\n  {\n    \"question\": \"what is a bodybuilder doing?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a male weight lifter doing?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"curl\"\n  },\n  {\n    \"question\": \"what is a muscular man doing?\",\n    \"video_name\": \"sWqi41wyXcQ_68_79\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"how many people are hugging each other at night in front of a window?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when are two people hugging each other in front of a window?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"night\"\n  },\n  {\n    \"question\": \"what are children kissing in?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"how many little children are hugging?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who hugged the girl?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what hugged in the dark?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"how many people kiss?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are kissing each other?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the couple hug in?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"dark\"\n  },\n  {\n    \"question\": \"who did the boy hug?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is two people doing?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are two woman doing?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are two little children doing?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what are the boy and girl doing?\",\n    \"video_name\": \"sXyjCgR0rAc_0_11\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"who smiled as he took a bite of food?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who liked the bite of food he took?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man like the bite of he took?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are a man and a woman eating?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what did a man and a woman take a bite of?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who appreciates the food?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is eating food?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating something?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating his food?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does the woman appreciate?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are a man and a woman doing?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man chews food with a pitiable expression while the woman appreciates the food she doing?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"sZf3VDsdDPM_107_114\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is beating ingredients in a bowl?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"beater\"\n  },\n  {\n    \"question\": \"what is food being prepared in?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is mixing batter?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is being prepared in a bowl?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is spinning in a bowl?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"who is an invisible person mixing?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"what is a whisk spinning in?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what bowls moved by themselves?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"what is moving by itself?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is some one preparing?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is a whisk doing?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a beater doing?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"beat\"\n  },\n  {\n    \"question\": \"what is a whisk doing?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"what is an invisible person doing?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is food doing?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is some one doing?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what are the whisk and bowls doing?\",\n    \"video_name\": \"s_ldnx8_etY_32_54\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who is walking within a cage in a zoo?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"what is a tiger walking within in a zoo?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"what is a tiger walking within a cage in?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"zoo\"\n  },\n  {\n    \"question\": \"who is walking around in an enclosure?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"who is pacing in a cage?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"who is pacing in its cage?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"who is walking around a cage?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"what is a tiger walking around in?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"enclosure\"\n  },\n  {\n    \"question\": \"who paced in his cage?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"who is walking in a pen?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"who is walking in a cage?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"who is walking in the cage?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"who is walking around his cage?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"what is a tiger walking in?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"pen\"\n  },\n  {\n    \"question\": \"what did the tiger pace in?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"who walks around aimlessly?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"what is a tiger walking around?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"cage\"\n  },\n  {\n    \"question\": \"who is walking around?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"tiger\"\n  },\n  {\n    \"question\": \"what is a tiger doing?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a tiger doing?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"pace\"\n  },\n  {\n    \"question\": \"what is the tiger doing?\",\n    \"video_name\": \"sb1dX5xAFvk_10_17\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what sniffed at the bowl of food?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"mammal\"\n  },\n  {\n    \"question\": \"who is examining a container of food?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what is looking at food in a plastic container?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is a loris examining a container of?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is the animal looking at in a plastic container?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is crawling across a blanket?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is looking at a plastic container?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what is looking at a container?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is a slow loris smelling?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a small animal crawling across?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"blanket\"\n  },\n  {\n    \"question\": \"what is smelling a box?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what sniffed at the container?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"mammal\"\n  },\n  {\n    \"question\": \"what is a small animal looking at?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what is inspecting a plastic box?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what is crawling on a bed?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what checks out a plastic container?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is inspecting a container?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is walking on a bed?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a slow loris on?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a loris inspecting?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what is on a bed?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what is an animal crawling on?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a monkey walking on?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is an animal inspecting?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what does an animal check out?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what is walking around?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is looking?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"who walks around?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"lorus\"\n  },\n  {\n    \"question\": \"what is some kind of animal doing?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"sniff\"\n  },\n  {\n    \"question\": \"what is a slow loris doing?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"inspect\"\n  },\n  {\n    \"question\": \"what is a animal doing?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a loris doing?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"inspect\"\n  },\n  {\n    \"question\": \"what is a loris doing?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"examine\"\n  },\n  {\n    \"question\": \"what is a small animal doing?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is the animal doing?\",\n    \"video_name\": \"shPymuahrsc_5_12\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who speaks while standing in front of a bookcase?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gave a speech in front of some bookshelves?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who spoke in front of the bookshelves?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man in a library doing?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man speaks while doing?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man with glasses doing?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"sm0OYD0NSbQ_51_59\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who uses a knife to cut carrots on a cutting board?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who is dicing some peeled carrots after tasting one slice of a carrot?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an individual use to cut carrots on a cutting board?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who cut some carrots?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing carrots?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting some carrots?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cutting carrots?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing up a carrot?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting up carrots?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts carrots?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is someone slicing up?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"what is being sliced?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"what carrots?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is chopped up?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"dice\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is an individual uses a knife to cut carrots on a doing?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is cook doing?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"suj4VNfZz5E_33_50\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what are the people picking plants from?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are a bunch of farmers planting?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what a group of peasants plants?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what are several workers planting in?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what are some women planting?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what are women harvesting?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what are the farmers planting?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what are people planting?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"rice\"\n  },\n  {\n    \"question\": \"what are several workers doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what are a bunch of farmers doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what are a group of japanese farmers doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what is a group of women doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what are farmers doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what are many people doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"bend\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what is rice farmers doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what are some women doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"transplant\"\n  },\n  {\n    \"question\": \"what are the farmers doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"plant\"\n  },\n  {\n    \"question\": \"what are the people doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"harvest\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"sv5YlZspb30_10_20\",\n    \"answer\": \"tend\"\n  },\n  {\n    \"question\": \"what are peoples disembarking from a train in?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"station\"\n  },\n  {\n    \"question\": \"what are peoples disembarking from in a station?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what did the people get off the train at?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"station\"\n  },\n  {\n    \"question\": \"what did the people get at the station?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what are a group of people getting?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what do a group of people get?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what are some people getting off of?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what are people disembarking from?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what are people exiting?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"subway\"\n  },\n  {\n    \"question\": \"what are several people getting off?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"transit\"\n  },\n  {\n    \"question\": \"what do people step?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what are people getting?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what did the people get?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what do people get?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"disembark\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"exit\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"swJ0zhVJ8DU_15_21\",\n    \"answer\": \"disembark\"\n  },\n  {\n    \"question\": \"what looked at a shadow on the wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is sitting on a desk looking up at something?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is staring at a rainbow on the wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is meowing at a spot of light on the wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what looks at a rainbow on the wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a white cat meowing at a spot of light on?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what did the cat look at a shadow on?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a cat staring at a rainbow on?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what did the cat look at something on?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what did the cat look at on the wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what looked at something on the wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat sitting on looking up at something?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"desk\"\n  },\n  {\n    \"question\": \"what does a cat look at a rainbow on?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a cat staring at on the wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"rainbow\"\n  },\n  {\n    \"question\": \"what does a cat look at on the wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"rainbow\"\n  },\n  {\n    \"question\": \"what is facing a wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a white cat facing?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what squawks at the wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is meowing at a wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat squawk at?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is looking at a wall?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat meowing at?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a kitten looking at?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a cat looking at?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is the cat looking at?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what appears to be talking?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is meowing?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is speaking?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a white cat doing?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a cat looks like it 's doing?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a white cat doing?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"meow\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"star\"\n  },\n  {\n    \"question\": \"what is a kitten doing?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"swKrHEeOj9c_4_8\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"who is using a beater to whisk the smoking liquid in a steel container?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours liquid nitrogen into a steel pot?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who whisked a hot liguid in a bowl?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is pouring liquid nitrogen into a container?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a man using to whisk the smoking liquid in a steel container?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"beater\"\n  },\n  {\n    \"question\": \"who is mixing egg with a beater?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does someone pour into a steel pot?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"nitrogen\"\n  },\n  {\n    \"question\": \"what do someone whisk a hot liguid in?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person pouring liquid nitrogen into?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what is a person pouring into a container?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"nitrogen\"\n  },\n  {\n    \"question\": \"what is a person mixing with a beater?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"who do someone whisk in a bowl?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"liguid\"\n  },\n  {\n    \"question\": \"who is a person mixing egg with?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"beater\"\n  },\n  {\n    \"question\": \"what does steam flow out of?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"pot\"\n  },\n  {\n    \"question\": \"who is cooking with liquid nitrogen?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is stirring liquid nitrogen?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is mixing liquid nitrogen?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what cloud envelopes a whisk?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"vapor\"\n  },\n  {\n    \"question\": \"what flows out of a pot?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"steam\"\n  },\n  {\n    \"question\": \"who whisked the solution?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is coming out of a pot?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"steam\"\n  },\n  {\n    \"question\": \"what do a vapor cloud?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"what is someone stirring?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"nitrogen\"\n  },\n  {\n    \"question\": \"what is a person cooking with?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"nitrogen\"\n  },\n  {\n    \"question\": \"what do a man whisk?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"solution\"\n  },\n  {\n    \"question\": \"what is the man cooking with?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"nitrogen\"\n  },\n  {\n    \"question\": \"what is a man mixing?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"nitrogen\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"t3VPeyYL-fI_35_39\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what pulls a dogs tale?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what grabs a dogs tail?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"baboon\"\n  },\n  {\n    \"question\": \"what pulled a dogs tail?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what antagonizes a dog?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what keeps grabbing a dog?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what a baboon grabs?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what is pestering a dog?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is playing with a dog?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is teasing a dog?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what did a monkey pull?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what does a monkey antagonize?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a monkey keep grabbing?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a monkey playing with?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a monkey pestering?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a monkey teasing?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"tease\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"pester\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a monkey keeps doing?\",\n    \"video_name\": \"t4aPGtx7e6k_0_10\",\n    \"answer\": \"grab\"\n  },\n  {\n    \"question\": \"what did the funny mouse search the rocks for?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what searched the rocks for food?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"funny\"\n  },\n  {\n    \"question\": \"what hops along the rocks?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"jerboa\"\n  },\n  {\n    \"question\": \"what is hopping across rocks?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"jerboa\"\n  },\n  {\n    \"question\": \"what hopped on the rocks?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is hopping on rocks?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is jumping on rocks?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"chinchilla\"\n  },\n  {\n    \"question\": \"what eats?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is scurrying about?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what is jumping?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"rat\"\n  },\n  {\n    \"question\": \"what is eating?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"mouse\"\n  },\n  {\n    \"question\": \"what is a long-eared animal with a long tail doing?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"hop\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"hop\"\n  },\n  {\n    \"question\": \"what is there is a small rodent with extraordinarily large ears doing?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"hop\"\n  },\n  {\n    \"question\": \"what is a mouse doing?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a chinchilla doing?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a jerboa doing?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"hop\"\n  },\n  {\n    \"question\": \"what is a rat doing?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a mouse doing?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"scurry\"\n  },\n  {\n    \"question\": \"what is the animal doing?\",\n    \"video_name\": \"t4vP-cXXWkY_14_20\",\n    \"answer\": \"hop\"\n  },\n  {\n    \"question\": \"who is speaking to soldiers standing in attention?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"sergeant\"\n  },\n  {\n    \"question\": \"who is talking to a group of soldiers?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who inspected the recruits bunks?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"seargeant\"\n  },\n  {\n    \"question\": \"who walks through a barracks and talks?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"soldier\"\n  },\n  {\n    \"question\": \"who is speaking to some soldiers?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"sergeant\"\n  },\n  {\n    \"question\": \"who is voicing over his troops?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"sergeant\"\n  },\n  {\n    \"question\": \"who barked at the recruits?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"officer\"\n  },\n  {\n    \"question\": \"who addresses his recruits?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"sargent\"\n  },\n  {\n    \"question\": \"who is instructing subordinates?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"officer\"\n  },\n  {\n    \"question\": \"who is talking to his men?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"sargent\"\n  },\n  {\n    \"question\": \"who is inspecting a barracks?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"sergeant\"\n  },\n  {\n    \"question\": \"who is talking to recruits?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"officer\"\n  },\n  {\n    \"question\": \"who talks to his recruits?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"sergeant\"\n  },\n  {\n    \"question\": \"what does an army drill sergeant inspect?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"troop\"\n  },\n  {\n    \"question\": \"who is inspecting his men?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"commander\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"sergeant\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a drill sergeant doing?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"what is a commander doing?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"inspect\"\n  },\n  {\n    \"question\": \"what is a drill sergeant doing?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a drill sergeant doing?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a military officer doing?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"instruct\"\n  },\n  {\n    \"question\": \"what is an army sergeant doing?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is an officer doing?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is the drill sargent doing?\",\n    \"video_name\": \"t8Nf1MK7lts_0_10\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is pushing across a branch?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"tapir\"\n  },\n  {\n    \"question\": \"what is a tapir pushing across?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"branch\"\n  },\n  {\n    \"question\": \"what is living in its jungle home?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"tapir\"\n  },\n  {\n    \"question\": \"what is moving ahead in the woods?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"tapir\"\n  },\n  {\n    \"question\": \"what walks through the jungle?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what moves through a forest?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"aardvark\"\n  },\n  {\n    \"question\": \"what does an aardvark move through?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what is foraging in the woods?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is walking through the plants?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"tapir\"\n  },\n  {\n    \"question\": \"what does an animal walk through?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"jungle\"\n  },\n  {\n    \"question\": \"what is eating leaves?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is a animal in the woods doing?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"sniff\"\n  },\n  {\n    \"question\": \"what is a animal doing?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a pig doing?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"search\"\n  },\n  {\n    \"question\": \"what is a tapir doing?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is an aardvark doing?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the animal doing?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"forage\"\n  },\n  {\n    \"question\": \"what is the tapir doing?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the tapir doing?\",\n    \"video_name\": \"tBj4Ny19vfQ_54_59\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is karate kicking at another man wearing protective boxing gloves?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are sparring by kicking and jabbing?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is kick boxing with a trainer?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man boxing with a trainer?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"who is kick boxing on the pads held by another man standing in front of him?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are doing karate?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are practicing kicks?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man boxing on the pads held by another man standing in front of him?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"how many men are kick boxing?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are boxing?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are in a sparring match?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kicks with a coach?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking some training bags?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man practiced kick with?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"coach\"\n  },\n  {\n    \"question\": \"who kicks with his trainer?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man kicking?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"training\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"karate\"\n  },\n  {\n    \"question\": \"who does the man practiced kick with?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"trainer\"\n  },\n  {\n    \"question\": \"who is kicking?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who practices kicking?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is training?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a man is karate kicking at another man doing?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"spar\"\n  },\n  {\n    \"question\": \"what is a man is kick doing?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a martial artist practices doing?\",\n    \"video_name\": \"tHLiYTS9Iz8_1_16\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what did the girl apply powder to with a brush?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what did a girl apply foundation to with a brush?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a woman applying cosmetics to with a brush?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"who is putting on makeup?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is applying makeup?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman applying makeup to?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what does a woman apply cosmetics to?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a young woman applying?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman putting on?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is the woman applying?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman powdering?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"powder\"\n  },\n  {\n    \"question\": \"what is a indian girl doing?\",\n    \"video_name\": \"tIMDKdMnNYM_266_273\",\n    \"answer\": \"puff\"\n  },\n  {\n    \"question\": \"who is squeezing juice out of a lemon?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is juicing a lemon using a glass juicer?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who squeezes juice out of a lemon?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is squeezing juice from a lemon?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who squeezed a lemon for its juice?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a person squeeze juice out of?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what is someone juicing using a glass juicer?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what is a woman squeezing juice out of?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"who squeezes juice from a lemon?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a woman squeezing from a lemon?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"who is extracting juice from lemon?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman squeezing juice from?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"who squeezed a lemon?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who squeezes a lemon?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is juicing a lemon?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman extracting from lemon?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what is a woman extracting juice from?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"who is squeezing a lemon?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did a girl squeeze?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what is a woman juicing?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what is a girl juicing?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what is the woman juicing?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what is a woman squeezing?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"lemon\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"squeeze\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"juicing\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"extract\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"juicing\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"tJHUH9tpqPg_113_118\",\n    \"answer\": \"juicing\"\n  },\n  {\n    \"question\": \"who is strumming his guitar seated in a room?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who plays an acoustic guitar?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who played the guitar?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is playing an acoustic guitar?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing his guitar?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what did the kid play?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a sitting boy playing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a young boy playing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a little boy playing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a boy play?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is the boy playing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a kid playing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a doing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"strum\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"tYQ7O6V0Fvk_20_55\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is taking a large bite of a slice of cheese pizza?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating a giant slice of pizza?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who ate pizza and water at the table?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is enjoying a slice of pizza?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man eating a giant slice of?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what is a man wearing glasses eating a slice of?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what is a man enjoying a slice of?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what is a man eating a slice of?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what did the man eat pizza and water at?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who eats a slice of pizza?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man eat at the table?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what does a man eat a slice of?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"who is eating pizza?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating a pizza?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is eating his food?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a guy eating?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what is the man eating?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"pizza\"\n  },\n  {\n    \"question\": \"what is a boy eating?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who is eating?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"tYh4iDFgmEE_10_14\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is playing a ukulele on a street corner?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting on the street playing a ukulele?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a small guitar on the street?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar on the road?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar on streets?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man sitting on playing a ukulele?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man playing a small guitar on?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man playing a guitar on?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man playing on the road?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing on the street?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a woman playing on streets?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing a small guitar?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a ukulele?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the ukulele?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who plays a small guitar?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is the person playing?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"ukulele\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is sitting?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"tYh4iDFgmEE_50_54\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who fell down while running on the grass?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fell down while running on the field?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs on grass?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running across a field?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running down a field?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a drunken man run on?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a man running across?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who runs across a field?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"drunk\"\n  },\n  {\n    \"question\": \"who is falling on grass?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"running\"\n  },\n  {\n    \"question\": \"who is running in a circle?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man running down?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what does a drunk guy run across?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a running man falling on?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a man running in?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"who begins to fall down?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is falling down?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fell?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running around?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stumbles?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs around?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is falling?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"drunk\"\n  },\n  {\n    \"question\": \"who then falls down?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a running man doing?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what are several drunk men doing?\",\n    \"video_name\": \"tZmDWltBziM_42_47\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who is slowly trying to get up after falling down on the sidewalk?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who leaned against a post?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is falling over on to the sidewalk?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is falling in a street?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"drunk\"\n  },\n  {\n    \"question\": \"who fell down onto the pavement?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man lean against?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"post\"\n  },\n  {\n    \"question\": \"what is a drunk man falling in?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who fell over on the sidewalk?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fell on the ground?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls over on the sidewalk?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls down on the street?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls by the street?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls down in the street?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man fall down onto?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"pavement\"\n  },\n  {\n    \"question\": \"what did a man fall on?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what did the man fall over on?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"what does a man fall down on?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a man fall by?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a man fall down in?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a man fall over on?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"sidewalk\"\n  },\n  {\n    \"question\": \"who fell down?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a drunk man doing?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a man is slowly doing?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is an unsteady man doing?\",\n    \"video_name\": \"tZmDWltBziM_70_80\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what walked through the grass?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is walking slowly in the grass?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what walks toward the camera?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what walks across the grass?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what walked in the grass?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is walking through some grass?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is walking through grass?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is walking through the grass?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat walking slowly in?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what did the cat walk through?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is walking on the ground?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat walk toward?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what does a cat walk across?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what did the cat walk in?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a cat walking on?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a cat walking through?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is walking?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a white and grey colored cat doing?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"tcxhOGyrCtI_15_21\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is pouring juice from an entire coconut through a sieve into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring coconut juice into a bowl through a strainer?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man pouring juice from an entire coconut through a sieve into?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man pouring from an entire coconut through a sieve into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what is a man pouring juice from an entire coconut through into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"sieve\"\n  },\n  {\n    \"question\": \"who is squeezing or pouring liquid from half of a coconut into a glass saucepan?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is pouring juice from a coconut into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who poured juices out of a bisquit?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring coconut water into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours coconut water into a strainer?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man pouring coconut juice into through a strainer?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who poured juice out of miniature pie?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"somone\"\n  },\n  {\n    \"question\": \"who is adding coconut water to a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adding a coconut water into the bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man pouring coconut juice into a bowl through?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"strainer\"\n  },\n  {\n    \"question\": \"who is draining the milk from a coconut?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours coconut water into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did somone pour juice out of?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"miniature\"\n  },\n  {\n    \"question\": \"who is pouring out the liquid from the coconut?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man pouring into a bowl through a strainer?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"who is draining water from a coconut?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person pour coconut water into?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person pouring juice from a coconut into?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a man pour coconut water into?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a person pouring from a coconut into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what is a person pouring juice from into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"what is a person pouring coconut water into?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a man pouring coconut water into?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a man pour into a strainer?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"what is a person adding a coconut water into?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who puts seasoning in a glass bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person pour into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"what is a man adding coconut water to?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a man pour into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"what is a man draining from a coconut?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a person pouring into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"what is the person pouring out from the coconut?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is a man pouring into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"what is a man draining the milk from?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"what is the person pouring out the liquid from?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"what is a person adding into the bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"what is a man adding to a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"who is pouring coconut into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who pours water in a pan?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a man draining water from?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"who is pouring something into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a chef pour in a pan?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is pouring coconut water?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone pouring coconut into?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is someone pouring something into?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is someone pouring into a bowl?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is the person pouring?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"coconut\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"squeeze\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"drain\"\n  },\n  {\n    \"question\": \"what is a man puts doing?\",\n    \"video_name\": \"tmAX2PnRCY0_284_292\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is a bare chested man sitting in nodding his head?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a man without a shirt sitting on?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a man without a shirt sitting in?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"armchair\"\n  },\n  {\n    \"question\": \"what is a man without a shirt on sitting in?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who is sitting in an armchair?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"shirtles\"\n  },\n  {\n    \"question\": \"who sat in his chair?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a shirtless man sitting on?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a shirtless man sitting in?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"armchair\"\n  },\n  {\n    \"question\": \"who sat in a chair?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"shirtles\"\n  },\n  {\n    \"question\": \"who is sitting on sofa?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting on a couch?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits in a chair?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"shirtles\"\n  },\n  {\n    \"question\": \"what did the shirtless man sit in?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does a shirtless man sit in?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what does a man sit in?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a man sitting on?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what did the man sit in?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a man sitting in?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"who stared?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting down?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sitting still?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a shirtless man doing?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man without a shirt doing?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a bare chested man doing?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man without a shirt on doing?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"tn-Hoz4KbkE_89_93\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is sitting down playing an acoustic guitar in front of a microphone?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays an acoustic guitar?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played the guitar?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played his guitar?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man seated playing?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man seated doing?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"tn1d5DmdMqY_15_28\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is hugging shilpa shetty?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"richard\"\n  },\n  {\n    \"question\": \"who is richard gere hugging?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"shilpa\"\n  },\n  {\n    \"question\": \"who gere kisses and hugs an indian actress on stage?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"richard\"\n  },\n  {\n    \"question\": \"who is richard gere kissing on stage?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is richard gere kissing a woman?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who kisses a woman on the cheek?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kissing a woman in stage?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kissing a woman on stage?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is trying to get smooch a woman?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man kissing on stage?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a man kissing a woman?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is hugging a girl?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who forcibly kisses a women?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kisses a woman several times?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hugs a woman?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did the man kissed and hug?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is hugging a woman?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who a man hugs?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a man hugging?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who hugged?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kissed?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hugging?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kissing?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is richard gere doing?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"tqxRDVKtkSY_30_45\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"how many dogs are lying on a bed?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is wagging its tail on a bed?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is wagging its tail on the bed?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"how many dogs are lying in a bed?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a puppy sitting on a bed with?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a puppy sitting on with a dog?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a dog wagging its tail on?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what did the dog wag on the bed?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what is laying on a bed?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is the dog wagging on the bed?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what is a small dog laying on?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a dog wagging on a bed?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what is a dog wagging on the bed?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what lies on a bed?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a small dog lie on?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is on the bed?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is wagging its tail?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are two dogs lying on?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what are two dogs lying in?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is the dog on?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a dog wagging?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"tail\"\n  },\n  {\n    \"question\": \"what is a small dog doing?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a chihuahua doing?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"wag\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are dogs doing?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"wag\"\n  },\n  {\n    \"question\": \"what are two dogs doing?\",\n    \"video_name\": \"tzd3AYTZq0U_0_6\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"how many men are running a race on a track?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"eight\"\n  },\n  {\n    \"question\": \"what are a group of men racing down?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are eight men running on a track?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are eight men running a race on?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"how many people run a race?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"eight\"\n  },\n  {\n    \"question\": \"what did the racers sprint down?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are runners racing on?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are runners competing in?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are racers running down?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are men racing on?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are some men running on?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what are men running in?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are men running?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what do eight people run?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what is several runners are at a doing?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"start\"\n  },\n  {\n    \"question\": \"what are a group of men doing?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"what are athletes doing?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are runners doing?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"compete\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"u4T76jsPin0_0_11\",\n    \"answer\": \"race\"\n  },\n  {\n    \"question\": \"who led a girl on a horse at the beach?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lead on a white horse at the beach?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is having a ride on the back of a white horse by the beachside?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding a white horse on the beach?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding on a horse in a beach?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who rides a horse on a beach?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is leading a girl on a white horse?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a horse on the beach?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman having on the back of a white horse by the beachside?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"ride\"\n  },\n  {\n    \"question\": \"who is the man leading on a white horse?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman having a ride on the back of a white horse by?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"beachside\"\n  },\n  {\n    \"question\": \"what is a woman riding a white horse on?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a woman riding on a horse in?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a woman riding a horse on?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a woman riding on in a beach?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman riding on the beach?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who rides a horse?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding on a horse?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman riding on?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman riding?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the woman riding?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"u4kMN1jamdM_10_20\",\n    \"answer\": \"lead\"\n  },\n  {\n    \"question\": \"who is piling onion rings into a tower on the teppanyaki grill?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who stacks onion slices on a hot grill?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who piled the onion slices on top of each other?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who piled onion rings on top of each other on the grill?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"cheff\"\n  },\n  {\n    \"question\": \"who is placing onion rings in pyramid shape?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a chef piling onion rings into on the teppanyaki grill?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"tower\"\n  },\n  {\n    \"question\": \"who is stacking onion rings on a grill?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stacks onion slices on a grill?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a chef piling into a tower on the teppanyaki grill?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who arranges rings of dough one on top of the other to form a cone like structure?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the cheff pile onion rings on top of each other on?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what did the chef pile on top of each other?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is stacking onions on the grill?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the cheff pile on top of each other on the grill?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man stacking onion rings on?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"what is a man placing onion rings in?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"shape\"\n  },\n  {\n    \"question\": \"what is a man placing in pyramid shape?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man stacking on a grill?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who stacks onions on a grill?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"what is a man stacking onions on?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"who is stacking onion rings?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cooking something?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what are vegetables being cooked on?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"grill\"\n  },\n  {\n    \"question\": \"who stacks his food?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is the chef stacking?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a chef cooking?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what does a chef stack?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what vegtables?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"cooking\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"pile\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"build\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"stack\"\n  },\n  {\n    \"question\": \"what is the chef doing?\",\n    \"video_name\": \"u9E9HpuJQ7U_29_43\",\n    \"answer\": \"stack\"\n  },\n  {\n    \"question\": \"who set up his camera to take sunset pictures at the beach?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking at the ocean through a camera on a tripod?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking a photograph of the ocean?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking a picture of the ocean with a camera on a quadropod?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking a picture of the ocean?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking a photo of sunset?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking pictures of the ocean?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking pictures of a lake?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who takes a picture of the ocean?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who takes a picture of a beach?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man looking at through a camera on a tripod?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"who is taking photo in a beach?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking a photograph of?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is a man taking a picture of the ocean with on a quadropod?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man taking a picture of with a camera on a quadropod?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what does a man take a picture of?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a man taking a picture of?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is a man taking a picture of the ocean with a camera on?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"quadropod\"\n  },\n  {\n    \"question\": \"what is the man taking a picture of?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"when is a man taking a photo?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"sunset\"\n  },\n  {\n    \"question\": \"what is a man taking in a beach?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"photo\"\n  },\n  {\n    \"question\": \"who took pictures of the sunset?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking pictures of?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"lake\"\n  },\n  {\n    \"question\": \"what did the man set up to take sunset pictures at the beach?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man taking photo in?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"when did the man take pictures?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"sunset\"\n  },\n  {\n    \"question\": \"who is photographing waves?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is photographing the ocean?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sets up a camera?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking a picture?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man photographing?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what does a man set up?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"camera\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"photograph\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"u9prcUCHlqM_235_241\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who took pictures in the back pew of the church?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking a photo of a man?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"photographer\"\n  },\n  {\n    \"question\": \"who is taking a picture of a person?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a photographer taking a photo of?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking photographs of a model?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man taking a picture of?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is taking photographs of two women?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who takes a picture of two women?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who takes a picture of two people?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking pictures os the women?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man taking photographs of?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"model\"\n  },\n  {\n    \"question\": \"who are being photographed by a man?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who are two woman being photographed by?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people does a man photograph?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who photographs a woman?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking pictures?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is taking a picture?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who photographs two people?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man photograph?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"u9prcUCHlqM_503_511\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"who is talking while walking outdoors carrying a black shoulder bag and a tripod over his shoulder?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking about a blanket of cloud?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who carries a camera pod on his shoulder?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who carries camera equipment through a field?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man carry camera equipment through?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is carrying camera equipment while walking?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man carry through a field?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who talks while lugging camera equipment?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is someone walking?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is carrying his camera equipment?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man carrying while walking?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who carries a tripod?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking with a tripod?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is carrying photo equipment?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is carrying a tripod?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talked as he carried his equipment?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"photographer\"\n  },\n  {\n    \"question\": \"who is walking in a field?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who carried his equipment?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"photographer\"\n  },\n  {\n    \"question\": \"what is someone walking in?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a man walking with?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"tripod\"\n  },\n  {\n    \"question\": \"what is the man carrying?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what is a man carrying?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what did the photographer carry?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is spiking?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is speaking?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"spike\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man talks while doing?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"lug\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"u9prcUCHlqM_73_80\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"who did a jump twist in the air?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a spinning kick in the air?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did acrobatic jumps in his routine?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who turns with his leg extended and lands in a squat on both feet?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who kicks one foot higher than his head?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who demonstrates a super high kick?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who leaps up into the air?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping on stage?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping into the air?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who leaps into the air?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did acrobatic moves?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing martial arts stunt?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a spinning jump kick?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"when is a man jumping?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a man leap up into?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a man jumping into?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what does a man leap into?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what does a man kick one foot higher than?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who does a jumping high kick?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping in the air?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does a flying kick?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a spin?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy jumping in?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a man jumping in?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"stunt\"\n  },\n  {\n    \"question\": \"what does a man do?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"who is kicking?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man does a doing?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man does a doing?\",\n    \"video_name\": \"uAaWVeaYLdQ_1_12\",\n    \"answer\": \"spin\"\n  },\n  {\n    \"question\": \"how many bear cubs are digging into dirt and plant matter at the base of a tree?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many bear cubs are digging in the dirt?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many baby bears are standing beside each other in mud as one of them walks ahead?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is watching two bear cubs digging?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many bear cubs are digging?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two baby bears standing beside each other in as one of them walks ahead?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"mud\"\n  },\n  {\n    \"question\": \"what are digging in the dirt?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"how many baby bears are digging?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are standing beside each other in mud as one of them walks ahead?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are black bear cubs?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"digging\"\n  },\n  {\n    \"question\": \"what are baby bears scratching?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"how many baby bears is a man watching?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are digging holes?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what does two bear investigate a pile of?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what are scratching dirt?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"how many baby bears are walking around?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are digging the ground?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"bear\"\n  },\n  {\n    \"question\": \"what did the baby bears dig in?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what did the bears dig in?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"who is watching two baby bears?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are digging?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a man watching?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are walking around?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are two bear cubs doing?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what are two baby bears doing?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what are baby bears doing?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what are black bear cubs doing?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what are two baby bears doing?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are bear cubs doing?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what are baby bears doing?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"scratch\"\n  },\n  {\n    \"question\": \"what are two baby bears doing?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what are the bear cubs doing?\",\n    \"video_name\": \"uB9zRlV47qA_17_23\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"who gets into the passenger side of a red car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is opening the passenger door of a car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sat in the passenger side of the car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who got in the passenger seat of the car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is entering the passenger side of a car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getting into a car in a garage?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits down in the front passenger seat?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man opening the passenger door of?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who opens the door of a car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getting into his car in the garage?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man entering the passenger side of?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man open the door of?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man getting into in a garage?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man getting into a car in?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"who is getting into a red car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man getting into his car in?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"garage\"\n  },\n  {\n    \"question\": \"who is getting inside a car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man getting into in the garage?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is getting into a car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets into a car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who enters a car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets in a car?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man getting inside?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man get into?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man getting into?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man get in?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man enter?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is sitting inside?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uGDuIyfJXXg_23_33\",\n    \"answer\": \"enter\"\n  },\n  {\n    \"question\": \"how many women walk down the aisle of a store?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a couple of young ladies pushing a shopping cart through?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"what are a couple of young ladies pushing through a store?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"shopping\"\n  },\n  {\n    \"question\": \"what are a couple of women shopping in?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"how many women are browsing a store?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many ladies are shopping?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are shopping?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are shopping?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who are shopping at the store?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are women shopping in?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"mall\"\n  },\n  {\n    \"question\": \"what are two woman shopping at?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"what are two women browsing?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"store\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are a couple of young ladies doing?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what are two woman doing?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"browse\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are the women doing?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are two ladies doing?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"what are a couple of women doing?\",\n    \"video_name\": \"uH8ObB_dyOk_159_166\",\n    \"answer\": \"shop\"\n  },\n  {\n    \"question\": \"who held a tiny frog in his hand?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who held a small frog in his hand?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who holds a small amphibian in his hand?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who holds a baby frog in his hand?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a very tiny toad in the palm of his hand?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a toad in his hand?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man holding in his hand?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"toad\"\n  },\n  {\n    \"question\": \"who holds a tiny toad?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is holding a tiny frog?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a small toad?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is holding a little toad?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man holding a toad in?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is holding a toad?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone holding?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"toad\"\n  },\n  {\n    \"question\": \"what is a person holding?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"toad\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"toad\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a tiny toad doing?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is the tiny toad doing?\",\n    \"video_name\": \"uJPupV4oLZ0_4_12\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who loses control causing him to slide into puddle of water?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crashing his motorcycle into a puddle of mud?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man riding a bike skids and fall in?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a man lose causing him to slide into puddle of water?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"control\"\n  },\n  {\n    \"question\": \"who skidded on his motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crashes a motorcycle in mud?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls off his motorcycle and into mud?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle and wipes out?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crashes into a mud puddle?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"biker\"\n  },\n  {\n    \"question\": \"who fell off his motorbike?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who then falls into a puddle?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man crashing into a puddle of mud?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wipes out on a motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crashes on a motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fell off a motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slid off his motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who crashes on his motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man then fall into?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"puddle\"\n  },\n  {\n    \"question\": \"who crashes his motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is crashing his bike?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what did the man skid on?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what does a man wipe out on?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what did a man fall off?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who skidded?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man fall off?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"who fell off?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man slide off?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what does a man crash on?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what does a man crash?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man crashing?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uO7Eysrs8_k_106_114\",\n    \"answer\": \"crash\"\n  },\n  {\n    \"question\": \"who rides a street bike through the town?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle through a town?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a bike on the road?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rides his motorcycle through the city streets?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rides a bike through the neighborhood?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what a man rides a street bike through?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what is a man riding a motorcycle through?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"what is a man riding a bike on?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man riding through a town?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what a person rides a bike through?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"neighborhood\"\n  },\n  {\n    \"question\": \"what is a man riding on the road?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what a person rides through the neighborhood?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what a man rides through the town?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who rode his motorcycle through town?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets on a motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on motor bike?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rode a motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man rides through the city streets?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who rides a motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man ride his motorcycle through?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"town\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man get on?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding his motor bike?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man ride?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding on?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"motor\"\n  },\n  {\n    \"question\": \"what a man rides?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what did a man ride through town?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is the man riding?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"uO7Eysrs8_k_80_90\",\n    \"answer\": \"motor\"\n  },\n  {\n    \"question\": \"who drives a car that has the steering wheel on the right side of the vehicle?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who is driving a car over a dirt hill?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"where is someone driving a car?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"who is driving a white car with another person seated next to him?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is driving a car in the desert?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person driving over a dirt hill?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person driving with another person seated next to him?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving in the desert?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is someone driving a car in?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what drove down the dirt road?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"where is a car moving?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what bounced around in the dirt?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is traveling on a car?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what drives over a hill?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is driving a car?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the car bounce around in?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what is running on the ground?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is moving in a field?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car drive over?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what is going down a hill?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car running on?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a car moving in?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a man traveling on?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car going down?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what is the man driving?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is an individual drives a car that has the doing?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"steer\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"uVPnDJKt1M0_0_6\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a michael jackson claymation bunny riding through a film studio lot?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"who rode his bike down the alley?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what did the cartoon character ride his bike down?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"alley\"\n  },\n  {\n    \"question\": \"what did the cartoon character ride down the alley?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what rode a bike around?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is riding a bicycle?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what is riding a bike?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"what did the cartoon animal ride around?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is riding his bike?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a cartoon dog riding?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is a cartoon character riding?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is the animal riding?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who rides his bike?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is an animated character riding?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what a guy quickly rides?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is an animated version of a donkey doing?\",\n    \"video_name\": \"uZEGu-TA2cU_42_58\",\n    \"answer\": \"speed\"\n  },\n  {\n    \"question\": \"how many elephants are dusting themselves with mud standing in an open enclosed area?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many elephants kick up dust with their trunks?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what are four elephants dusting themselves with standing in an open enclosed area?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"mud\"\n  },\n  {\n    \"question\": \"how many elephants are kicking up some dust?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what did the elephants blow dirt on themselves at?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what did the elephants blow on themselves at the fence?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what are elephants on both sides of a fence throwing into the air with their trunks?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"how many elephants are covering themselves with dirt?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"how many elephants are kicking up dust?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"four\"\n  },\n  {\n    \"question\": \"what did the elephants kick on themselves with their trunks?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what do elephants throw on themselves?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what are elephants tossing?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what are the elephants brushing themselves with?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what are elephants taking?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dust\"\n  },\n  {\n    \"question\": \"what do elephants make?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dust\"\n  },\n  {\n    \"question\": \"what are four elephants covering themselves with?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what are four elephants kicking up?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dust\"\n  },\n  {\n    \"question\": \"what are elephants doing?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dig\"\n  },\n  {\n    \"question\": \"what are elephants doing?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"tos\"\n  },\n  {\n    \"question\": \"what is elephants doing?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what are elephants on both sides of a fence doing?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what are four elephants doing?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"cover\"\n  },\n  {\n    \"question\": \"what are four elephants doing?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"dust\"\n  },\n  {\n    \"question\": \"what are the elephants doing?\",\n    \"video_name\": \"u_6tre9_99Q_13_25\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"how many kids are playing in a swimming pool with a green colored crocodile float?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids are playing in a pool with an inflatable alligator toy?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many little boys are playing with a plastic crocodile in swimming pool?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many kids push an inflatable crocodile around in a pool?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are playing with a float in a pool?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two kids playing in with an inflatable alligator toy?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"how many boys are playing on a raft?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do the kids played on the alligator float in?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are two little boys playing with a plastic crocodile in?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"how many children are playing in a pool?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"when are two boys playing in a pool?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what do two kids push an inflatable crocodile around in?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are the kids using a floater in?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are the kids using in the pool?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"floater\"\n  },\n  {\n    \"question\": \"what are two boys playing with a float in?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what do two kids push around in a pool?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"crocodile\"\n  },\n  {\n    \"question\": \"what are kids swimming in?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are kids playing in?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are children playing in?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are two boys playing on?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"raft\"\n  },\n  {\n    \"question\": \"what are two children playing in?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are the kids doing?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what are two children doing?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two kids doing?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two little boys doing?\",\n    \"video_name\": \"ub-aYLzCF_Q_1_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many baby pandas are wrestling with each other?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what bears piled on top of each other?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"how many panda cubs play with each other?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many pandas are playing with each other?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many baby pandas are grabbing each other?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many pandas wrestle with each other?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many panda cubs are playing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are wrestling with each other?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"how many pandas play?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many baby pandas are playing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many pandas are playing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who play with each other?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what are grabbing each other?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are hugging?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who are playing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what are playing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what are two baby pandas doing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two baby pandas doing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"grab\"\n  },\n  {\n    \"question\": \"what are baby pandas doing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"hug\"\n  },\n  {\n    \"question\": \"what are two pandas doing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are pandas doing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two baby pandas doing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two panda cubs doing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the baby pandas doing?\",\n    \"video_name\": \"ufFT2BWh3BQ_0_8\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what put the small cup in the bowl?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is putting a cup of liquid into a bowl?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what moves a plastic glass containing liquid into a bowl?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what moves a plastic cup into a bowl?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what places a cup into a plate of food?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is moving a glass on a tabletop?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what is putting a small glass in the food plate?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what picks up a cup with its beak?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is a parrot putting a cup of liquid into?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a parrot putting a cup of into a bowl?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what does a bird move a plastic glass containing liquid into?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a bird move a plastic cup into?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a parrot put a container into?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a parrot moving on a tabletop?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what did the bird put the cup into?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what puts a container into a bowl?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what did the bird put into the bowl?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what put the cup into the bowl?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a bird place into a plate of food?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what picks up a glass with its beak?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what does a parrot put into a bowl?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what does a parrot standing on a coaster on the table place in a bowl?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"container\"\n  },\n  {\n    \"question\": \"what is a parrot moving a glass on?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"tabletop\"\n  },\n  {\n    \"question\": \"what is a parrot putting in the food plate?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what does a parrot standing on a coaster on the table place a container in?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what does a parrot standing on a coaster on the table pick a red plastic container with?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"beak\"\n  },\n  {\n    \"question\": \"what grabs a cup?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what is taking a mug?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"parrot\"\n  },\n  {\n    \"question\": \"what is picking up a cup?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"bird\"\n  },\n  {\n    \"question\": \"what a bird grabs?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is a parrot taking?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"mug\"\n  },\n  {\n    \"question\": \"what is a bird picking up?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"cup\"\n  },\n  {\n    \"question\": \"what is a large bird doing?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a bird picks up a plastic cup doing?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"contain\"\n  },\n  {\n    \"question\": \"what is a parrot doing?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a bird doing?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a parrot doing?\",\n    \"video_name\": \"uiLr9bdOL0M_23_30\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"how many men are having a conversation as it is raining in the background?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who approached another man looking out the window?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking while each other rains outside?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who approached another man with a complaint?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men have a discussion while it rains outside?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are talking to each other?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men having as it is raining in the background?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"how many men are discussing something?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are having a conversation?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two men have while it rains outside?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"discussion\"\n  },\n  {\n    \"question\": \"who talks to another man?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are talking?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is talking to another man?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is raining in the background?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"who does a man talk to?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man talking to?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a conversation raining in?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"background\"\n  },\n  {\n    \"question\": \"what are two men discussing?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what are two men having?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"conversation\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is it 's doing?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"rain\"\n  },\n  {\n    \"question\": \"what is the man approached another man doing?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"ul9Xvjt83eI_111_120\",\n    \"answer\": \"discus\"\n  },\n  {\n    \"question\": \"who is jumping over and against objects in the rain while holding an umbrella?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man holding an open umbrella then do after kicking a wall?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"summersault\"\n  },\n  {\n    \"question\": \"who jumps objects holding an umbrella?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man with an umbrella jump over a wastebasket and up on?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who jumpped over the table and trashcan?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is jumping over objects?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping over the obstacles?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping around?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who flips?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumps?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man jumps objects doing?\",\n    \"video_name\": \"ulPvRmNfXK4_96_100\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who is chopping a tree in the forrest?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who chops down a tree with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping the base of a large tree trunk with his axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut down a tree with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping at a tree with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping down a tree with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is in the process of chopping down a tree?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a trunk of a tree?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a tree with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hitting a tree with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut a tree with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man cut down with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is a man chopping at with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what did a man cut with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"how many men are in the forest?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is a man chopping down with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is a man cutting a trunk of?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what did the man cut down a tree with?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"axe\"\n  },\n  {\n    \"question\": \"what did a man cut a tree with?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"axe\"\n  },\n  {\n    \"question\": \"what is a man chopping at a tree with?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"axe\"\n  },\n  {\n    \"question\": \"what is a man chopping down a tree with?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"axe\"\n  },\n  {\n    \"question\": \"what is one of three men felling with an ax?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is a man hitting with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is the man cutting with an axe?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is a man hitting a tree with?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"axe\"\n  },\n  {\n    \"question\": \"what is the man cutting a tree with?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"axe\"\n  },\n  {\n    \"question\": \"who is chopping down a very large tree?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man chopping the base of a large tree trunk with?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"axe\"\n  },\n  {\n    \"question\": \"who is chopping down a tree?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping a tree?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping a tree down?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting woods?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting down a tree?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are three men in?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"what is a man chopping down?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is a man cutting down?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"tree\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a man is in the process of doing?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"umjc1CkO4JA_290_305\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is playing with a flap on a cardboard box?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what plays with a cutout on the bottom of a box?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what tried to close the door of the box it was in?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what did the cat try to close the door of it was in?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what tries to shut itself in a box?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is playing inside a cardboard box?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is playing in a cardboard box?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat try to shut itself in?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is playing inside of a box?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what plays with a cardboard box?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is hiding in a box?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat playing inside of?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is playing in a box?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is in the box?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat hiding in?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a cat playing in?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is the cat in?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a cat seated inside a carton box is desperately doing?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"hide\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is there is a small doorway cut in a cardboard box and a cat inside the box keeps doing?\",\n    \"video_name\": \"unhiT2D6WvE_0_20\",\n    \"answer\": \"poke\"\n  },\n  {\n    \"question\": \"who is playing the piano with nose?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an elderly man playing a keyboard with?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a man playing with nose?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a man playing an electronic keyboard with?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what does an old man play a keyboard with?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what did the man play the keyboard with?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what does a man play the keyboards with?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what does a man play the keyboard with?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what does a man play the piano with?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what is a man playing a piano with?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what is a man playing the piano with?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what is the man playing the piano with?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what is an old man using to play a piano?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what is a man playing piano with?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what is a old man doing?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an elderly man doing?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an old man doing?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"uppFvcVwqqY_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is splitting a bread roll in half with a knife?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man splitting a bread roll in with a knife?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"what is a man splitting a bread roll in half with?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a man splitting roll in half with a knife?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"who is splitting a piece of bread?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man splitting a piece of?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"who sliced the bun in half?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man slice the bun in?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"who is slicing a hamburger bun?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing thin bread?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts up a hamburger bun?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a bun?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing bread?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man slice in half?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"bun\"\n  },\n  {\n    \"question\": \"who is slicing something?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices bread?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man slice?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"hamburger\"\n  },\n  {\n    \"question\": \"what is the man slicing?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"bread\"\n  },\n  {\n    \"question\": \"what does a man cut up?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"hamburger\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"split\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"uqVCk2oDpSE_194_200\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is barking at a carpet sweeper as someone uses it to sweep a carpet?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is attacking a vacuum cleaner while a person is vacuuming?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is attacking the sweeper someone is pushing?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is a large dog attacking the sweeper is pushing?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a large dog attacking someone is pushing?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"sweeper\"\n  },\n  {\n    \"question\": \"who uses the sweeper to sweep a carpet?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is playing with the floor cleaner?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who does someone use to sweep a carpet?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"sweeper\"\n  },\n  {\n    \"question\": \"what is the dog playing with cleaner?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is trying to eat a machine?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what attacked the sweeper?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what attacks a carpet sweeper?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is attacking a carpet sweeper?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is attacking a vacuum sweeper?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what plays with a vacuum cleaner?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a large dog attacking the sweeper?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what tried to attack the sweeper?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is biting a floor cleaner?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who did the dog attack?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"sweeper\"\n  },\n  {\n    \"question\": \"who did the dog try to attack?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"sweeper\"\n  },\n  {\n    \"question\": \"what is chasing a vacuum?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is attacking a vacuum?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog biting cleaner?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who is a dog attacking?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"sweeper\"\n  },\n  {\n    \"question\": \"what does a dog attack?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"sweeper\"\n  },\n  {\n    \"question\": \"what is a dog chasing?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"vacuum\"\n  },\n  {\n    \"question\": \"what is a dog attacking?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"vacuum\"\n  },\n  {\n    \"question\": \"who is vacuuming?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a large dog doing?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"bite\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"urNX3e1Wbc8_30_38\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many men are driving a car down a road in the forest as music plays in the background?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"three\"\n  },\n  {\n    \"question\": \"what is moving at a fast speed on a empty road?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drives down the road with the top open?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car full of people traveling down?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what are three men driving down a road in the forest as music plays in the background?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is traveling down a long road?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what sped down the bumpy road?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are boys driving?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what drove down the road?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what cruises down the road?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driven down the road?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did a car drive down?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is driving down the road?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is coming down a road?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving down the street?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is going down the road?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is driving over a hill?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a car cruise down?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is running on a road?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are some peoples traveling in?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a car driven down?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a car driving down?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is the car going down?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a car coming down?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a car driving over?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"what is a car running on?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a car full of people doing?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are boys doing?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"what are some peoples doing?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what are three men doing?\",\n    \"video_name\": \"urXDqw3S34I_12_17\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who is putting seasoning on several pieces of chicken?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sprinkles salt and various spices on pieces of chicken placed in a bowl?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sprinkling spices on raw chicken?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who dusted the chicken with spices?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is adding spices to chicken pieces?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are several pieces of chicken being tossed in after being sprinkled with herbs and spices?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is seasoning being poured on meat in?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who tosses salt and various spices on pieces of chicken placed in a bowl gently?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is seasoning being poured on in a bowl?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what did someone dust with spices?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who seasons chicken in a bowl?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person sprinkling spices on?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who put spices on the chicken?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"when is chicken being?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"who is seasoning chicken pieces?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what did someone put spices on?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is being season?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is the cook seasoning?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"who stirred?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is being seasoned?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what stirred?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"chicken\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"sprinkle\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"uxEhH6MPH28_69_85\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"who is laying in bed when he pulls the covers back and sits on the edge of the bed?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits on the side of his bed?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man laying in when he pulls the covers back and sits on the edge of the bed?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who got out of bed for work?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man get out of bed for?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"who wakes up from bed?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who got out of bed?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sat on the bed?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is waking up from sleep?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits up in bed?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is getting out of bed?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gets out of bed?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man sit on?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a man wake up from?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a man waking up from?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"sleep\"\n  },\n  {\n    \"question\": \"what does a man sit up in?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what does a man get out of?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"who wakes up?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who then gets dressed?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a young man doing?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"uy0HNWto0UY_18_25\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"who swims under water?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who swam in the ocean?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is swimming under water?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is swimming under the water?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the girl swim in?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what does a woman swim under?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do the lady swim in?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is a woman swimming under?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the woman swimming under?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is swimming underwater?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who swims underwater?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is swimming?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"v-9Gx0gJmfo_26_32\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"who is rowing a boat onto a shore?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is paddling a canoe to the shore?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is paddling a boat across the water?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who rowed the boat in the river?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is traveling in a boat down a river?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman rowing a boat onto?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"shore\"\n  },\n  {\n    \"question\": \"what is a woman paddling a boat across?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman paddling a canoe to?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"shore\"\n  },\n  {\n    \"question\": \"what is a woman paddling across the water?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a woman paddling to the shore?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"canoe\"\n  },\n  {\n    \"question\": \"what is a woman traveling in a boat down?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is a woman traveling in down a river?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who paddles a canoe and then disembarks?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is rowing a boat?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is canoeing on a river?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who rows a boat?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is rawing a boat?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is paddling a boat?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman canoeing on?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what a woman rows?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a woman rawing?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is the woman paddling?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does a women paddle?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"who canoes to shore?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"row\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"canoe\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"paddle\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"v-9Gx0gJmfo_91_99\",\n    \"answer\": \"paddle\"\n  },\n  {\n    \"question\": \"who is riding a horse on an open ground?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding a horse inside a track?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding a horse along a road?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding a horse in a ring?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman riding a horse inside?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a woman riding a horse along?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a woman riding on an open ground?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman riding inside a track?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman riding along a road?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the girl riding a horse in?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"ring\"\n  },\n  {\n    \"question\": \"what is the girl riding in a ring?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who gallops on a horse?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding on a horse?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who rides a horse?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman gallop on?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what a show horse?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman riding on?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what a woman rides?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what a person rides?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what do a woman rides a show?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman riding?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the woman riding?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what did the girl ride?\",\n    \"video_name\": \"v4_AzQSnmY4_40_55\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what are a line of chimpanzees doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what are several monkeys in a row doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of chimpanzees dancing in?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what are a group of monkeys dancing in?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what do a line of monkeys do?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what do the chimpanzees tap danced in?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what are chimpanzees dancing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what are chimpanzees?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dancing\"\n  },\n  {\n    \"question\": \"what are monkeys?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dancing\"\n  },\n  {\n    \"question\": \"what are chimps doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are monkeys doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of monkeys doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are some chimps doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is monkeys are river doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are several monkeys doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the monkeys doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is chimpanzees are irish step doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is chimpanzees are river doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are a group of chimpanzees doing?\",\n    \"video_name\": \"v5CeGLEnVFE_0_8\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"how many men are training a tusker elephant on how to kick a soccer ball?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are helping an elephant practice football?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does an elephant kick a soccer ball to?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what kicks a soccer ball to a man?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what are two men training on how to kick a soccer ball?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what does an elephant kick to a man?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"how many people play ball with an elephant?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men and an elephant playing with?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what do two people play with an elephant?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what kicks a soccer ball?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what is kicking a soccer ball?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what is playing with a football?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what kicks a ball?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what and trainers in the jungle?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what do two people play ball with?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what is kicking a football?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what is kicking a ball?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what is kicking the ball?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what is an elephant playing with?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what does an elephant kick?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does elephant and trainers in?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"jungle\"\n  },\n  {\n    \"question\": \"what is an elephant kicking?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a elephant kicking?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is the elephant kicking?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a elephant doing?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is an elephant doing?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is an elephant doing?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the elephant doing?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what are two men and an elephant doing?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"help\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"what are two men one with a ball and one with a stick doing?\",\n    \"video_name\": \"v7NpKUVqjpI_23_40\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a ten year old boy playing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"who practiced the piano?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing piano?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who plays a piano?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who plays the piano?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing a piano?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing the piano?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did the boy practice?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what does a young boy play?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what does a little boy play?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a young boy playing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a little boy playing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what does a boy play?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a kid playing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is the boy playing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a child playing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a ten year old boy doing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"v7iIZXtpIb8_5_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is lying on the ground with a twig in its mouth?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a panda lying on with a twig in its mouth?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is chewing on a twig?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what bear chews on a stem?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is chewing on a stick?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a panda bear chewing on?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what chewed on bamboo?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a baby panda chewing on?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"twig\"\n  },\n  {\n    \"question\": \"what is chewing a stem?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a small panda chewing?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"stem\"\n  },\n  {\n    \"question\": \"who is chewing some grass?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is nibbling on a stick?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what did the panda chew on?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"bamboo\"\n  },\n  {\n    \"question\": \"what is a panda cub chewing?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what plays with a stick?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is eating a twig?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is the panda nibbling on?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what is eating grass?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a panda chewing on?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"twig\"\n  },\n  {\n    \"question\": \"what does a baby panda play with?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what is eating something?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a baby panda eating?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a panda eating?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is lying down?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what eats?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is the panda doing?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a panda doing?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a baby panda doing?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"chew\"\n  },\n  {\n    \"question\": \"what is a panda bear doing?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a panda doing?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a panda cub doing?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"chew\"\n  },\n  {\n    \"question\": \"what is a small panda doing?\",\n    \"video_name\": \"vDhEpqfhVI0_0_8\",\n    \"answer\": \"rest\"\n  },\n  {\n    \"question\": \"who is removing a coating of toothpaste and peanut butter applied on a cd using a paper towel?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wiping something off of a dvd with a white cloth?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is dabbing a compact disc with a paper towel?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone wiping something off of with a white cloth?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"dvd\"\n  },\n  {\n    \"question\": \"who is wiping a dvd with cloth?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person dabbing with a paper towel?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"disc\"\n  },\n  {\n    \"question\": \"what is a man wiping with cloth?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"dvd\"\n  },\n  {\n    \"question\": \"who wipes a cd?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cleaned a cd disk?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who cleans a compact disc?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cleaning a cd?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cleans a dvd?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cleaned up the cd?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wipes off a dvd?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who is fixing a video disk?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cleaning a disk?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cleaning a dvd?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cleaning a dvd?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cleaning a cd?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a gloved individual wipe off?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"dvd\"\n  },\n  {\n    \"question\": \"what did the lady clean?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"disk\"\n  },\n  {\n    \"question\": \"what is someone fixing?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"what does a man clean?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"disc\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"wipe\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"dab\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"fix\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"vE1gvaM3iAs_39_46\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"how many women are dancing in synchronization to music in a room?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are dancing in the room?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are dancing in their bedroom?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls perform a dance routine?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls danced in their room?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many teenaged girls are dancing?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women dancing in synchronization to music in?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are two women dancing in synchronization to in a room?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many girls are synchronized dancing?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women dancing in to music in a room?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"synchronization\"\n  },\n  {\n    \"question\": \"how many girls are dancing?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls dance around?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are dancing?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the girls dance in?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what do two girls perform?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"routine\"\n  },\n  {\n    \"question\": \"what did two girls dance in?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are two girls dancing in?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"bedroom\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two teenaged girls doing?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is two girls are synchronized doing?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are girls doing?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the girls doing?\",\n    \"video_name\": \"vMoOpQQy6sI_22_55\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who picked up the frog in his hands?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a purple frog held by a man in his hands making?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"noise\"\n  },\n  {\n    \"question\": \"who held a frog in his hand?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding a frog in his hand?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is holding frog in his hands?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man pick up in his hands?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"frog\"\n  },\n  {\n    \"question\": \"what is a man holding in his hands?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"frog\"\n  },\n  {\n    \"question\": \"what is a man holding in his hand?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"frog\"\n  },\n  {\n    \"question\": \"who is holding an amphibian?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who holds a frog?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is handling a frog?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is catching a frog?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man holding a frog in?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is holding a frog?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person hold?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"frog\"\n  },\n  {\n    \"question\": \"what is a woman handling?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"frog\"\n  },\n  {\n    \"question\": \"what is a man catching?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"frog\"\n  },\n  {\n    \"question\": \"what is a man holding?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"frog\"\n  },\n  {\n    \"question\": \"what is the man holding?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"frog\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"catch\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"vRC9sBNt9vs_10_16\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"who strummed the guitar with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a guitar with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man devoid of hands playing using his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing the guitar using his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an armless man playing with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays the guitar with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man with no arms play with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a handicapped man playing using his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man play with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is the man playing with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what did the armless man play with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who played his guitar with his feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"armles\"\n  },\n  {\n    \"question\": \"what is played with feet?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a handicapped man doing?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man devoid of hands doing?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is an armless man doing?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"vZa13vJugGU_0_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is walking on a woman in a bikini?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"puppet\"\n  },\n  {\n    \"question\": \"who is a string doll walking on?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is walking on a woman?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"string\"\n  },\n  {\n    \"question\": \"what is dancing on a woman?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"marionette\"\n  },\n  {\n    \"question\": \"who is the puppet walking on?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is walking on the woman?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"puppet\"\n  },\n  {\n    \"question\": \"what is a woman in a bikini doing?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a string doll doing?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a string puppet of a space explorer doing?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a puppet doing?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a doll doing?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a marionette doing?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the puppet doing?\",\n    \"video_name\": \"v_tGw5gwlEw_136_152\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is cutting a potato into pieces with a knife?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a potato with a knife?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who chops the top and bottom ends of a peeled potato and thereafter chops a thin slice on one side?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts a potato with a knife?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is a man cutting a potato into pieces with?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a man cutting into pieces with a knife?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a chef cut a potato with?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does a chef cut with a knife?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man slicing a potato with?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a man slicing with a knife?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who cut the potatoe?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is chopping potatoes?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing potato?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is slicing potatoes?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices a potato?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is slicing a potato?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts up food?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting up a potato?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a potato?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the chef cut?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"potatoe\"\n  },\n  {\n    \"question\": \"what is a chef slicing?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a chef slice?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is the chef slicing?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a man slice?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man cutting up?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a man cut up?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the chef doing?\",\n    \"video_name\": \"veE0E79dEEc_18_45\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"where does a girl stand while a man drives the motorcycle?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"seat\"\n  },\n  {\n    \"question\": \"who is standing on the back of a motorbike while the male driver lifts the bike on to one wheel?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who stands on the seat while a man drives the motorcycle?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who stood behind a boy on a motorcycle?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle with a girl on the back?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"how many people are doing tricks on a motorcycle?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what does a girl stand on while a man drives the motorcycle?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"seat\"\n  },\n  {\n    \"question\": \"who did a girl stand behind on a motorcycle?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is a guy riding a motorcycle with on the back?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is wheeling a bike on a long stretch of road as a woman stands on the seat behind him?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy riding a motorcycle with a girl on?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"what did a girl stand behind a boy on?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a guy riding with a girl on the back?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who lifts the bike on to one wheel?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"driver\"\n  },\n  {\n    \"question\": \"what did a man and woman ride on the back wheel?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"motorcyle\"\n  },\n  {\n    \"question\": \"what does the male driver lift on to one wheel?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what are two people doing tricks on?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who stands on the seat behind him?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who drives the motorcycle?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are doing a stunt?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"motorcyle\"\n  },\n  {\n    \"question\": \"what are the motorcyle riders doing?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"stunt\"\n  },\n  {\n    \"question\": \"what are riding a motorcycle?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a couple riding?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what does a man drive?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is a man and woman doing?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"vfktGc_qx-w_2_18\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"who can see the blast from the end of the barrel?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots a gun in slow motion?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a person shoot in slow motion?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is being shot off in slow motion?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"shotgun\"\n  },\n  {\n    \"question\": \"who is firing a shotgun?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a person shoot a gun in?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"who shot his gun in the air?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what can the man see from the end of the barrel?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"blast\"\n  },\n  {\n    \"question\": \"what did the man shoot his gun in?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a shotgun being shot off in?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"who is firing a gun?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots a shotgun?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is firring a shotgun?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who fires a rifle?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man shoot in the air?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who is shooting off a gun?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting a gun?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what fires a blast?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"who shot his gun?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person firring?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"shotgun\"\n  },\n  {\n    \"question\": \"what does a man shoot?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"shotgun\"\n  },\n  {\n    \"question\": \"what does a gun fire?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"blast\"\n  },\n  {\n    \"question\": \"what is someone shooting?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man shooting off?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a man fire?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"rifle\"\n  },\n  {\n    \"question\": \"what is a guy shooting?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is the man shooting?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what did the man shoot?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"vloe_60s_dk_0_9\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is jumping high in the air while playing with a small bouncy ball in a house?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what jumped high in the air chasing a bouncing rubber ball?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what did the cat jump high in chasing a bouncing rubber ball?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a black cat jumping high in while playing with a small bouncy ball in a house?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is bouncing around trying to catch a ball?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what jumped up and down chasing a ball?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what did the cat jump up and down chasing?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a cat repeatedly jump high into?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what repeatedly jumps high into the air?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is jumping after a toy?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is jumping after the ball?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is leaping through the air?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat leaping through?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what jumps frantically in the air?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is chasing a ball?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat jumping after?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is the cat jumping after?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a cat jump frantically in?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"air\"\n  },\n  {\n    \"question\": \"what is a cat chasing?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is leaping?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what jumps high?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is jumping?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is jumping too much?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a black cat doing?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"leap\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is the cat jumped high in the air doing?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is the cat jumped up and down doing?\",\n    \"video_name\": \"vpR0L3sIvoo_15_49\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"how many zebras are nudging each other with their heads?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many zebras are stroking each other with their heads?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many zebras are playing with each other?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many zebras nuzzled each other?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many zebras rub their heads against one another?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many zebra are rubbing each other faces?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many zebras groom each other?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many zebras are nuzzling each other?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many zebras are rubbing heads?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many zebras are nuzzling?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many zebras are socializing?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many zebra are rubbing their heads together?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are rubbing each other faces?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"zebra\"\n  },\n  {\n    \"question\": \"what are rubbing their heads together?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"zebra\"\n  },\n  {\n    \"question\": \"what are playing?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"zebra\"\n  },\n  {\n    \"question\": \"what are a pair of zebras doing?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a pair of zebras doing?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"nuzzle\"\n  },\n  {\n    \"question\": \"what are the zebras doing?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two zebra doing?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"rub\"\n  },\n  {\n    \"question\": \"what are two zebras doing?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"nudge\"\n  },\n  {\n    \"question\": \"what are two zebras doing?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"stroke\"\n  },\n  {\n    \"question\": \"what are zebras doing?\",\n    \"video_name\": \"vub04F8CWng_32_41\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is jack nicholson being patted down in?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"who is being patted down in a bathroom?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"nicholson\"\n  },\n  {\n    \"question\": \"who is tending to another man in a restroom?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being cleaned by another man in a bathroom?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a gentleman in a suit cleaning the coat of?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is wiping off another mans jacket?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being attended in the bathroom?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cleaning up another man?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"attendant\"\n  },\n  {\n    \"question\": \"who is a bathroom attendant cleaning up?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man being attended in?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"bathroom\"\n  },\n  {\n    \"question\": \"what is a man wiping off?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"jacket\"\n  },\n  {\n    \"question\": \"who is wiping off another man?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man wiping off?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a bathroom attendant doing?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a bathroom attendant doing?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"wipe\"\n  },\n  {\n    \"question\": \"what is a gentleman in a suit doing?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a man dressed like a butler doing?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"wipe\"\n  },\n  {\n    \"question\": \"what is a man is in a restroom and a washroom attendant doing?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"wipe\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"tend\"\n  },\n  {\n    \"question\": \"what is a restroom attendant is spot doing?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"vulNlhUI6m0_7_27\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is going up and down in circles on a carnival ride?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"train\"\n  },\n  {\n    \"question\": \"where are people riding?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what traveled on the tracks?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"coaster\"\n  },\n  {\n    \"question\": \"what flew down its tracks?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"coaster\"\n  },\n  {\n    \"question\": \"what speeds along its track?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"coaster\"\n  },\n  {\n    \"question\": \"what are several people riding?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"coaster\"\n  },\n  {\n    \"question\": \"what are people riding?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"coaster\"\n  },\n  {\n    \"question\": \"what are people riding on?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"park\"\n  },\n  {\n    \"question\": \"what are the people riding?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"coaster\"\n  },\n  {\n    \"question\": \"what does a roller coaster speed along?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"track\"\n  },\n  {\n    \"question\": \"what is a roller coaster doing?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a roller coaster doing?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is people ride a scary doing?\",\n    \"video_name\": \"vuvpbeQak9Q_23_29\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is landing on the runway?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"passenger\"\n  },\n  {\n    \"question\": \"what taxied down the runway?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"jet\"\n  },\n  {\n    \"question\": \"what is landing on runway?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is landing on a runway?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what taxied on the runway?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"jet\"\n  },\n  {\n    \"question\": \"what landed on the runway?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what moves along a runway?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what landed at the airport?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what did the jet taxi down?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what did the jet taxi on?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what does an airplane move along?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what did the plane land on?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what did the plane land at?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"airport\"\n  },\n  {\n    \"question\": \"what is a plane?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"runway\"\n  },\n  {\n    \"question\": \"what is landing?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is lifting off?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is an airplane doing?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is an airplane doing?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a passenger jet doing?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is a airplane doing?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is a passenger plane doing?\",\n    \"video_name\": \"vz71JKcpeUU_0_10\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"who slices a whole peeled white onion using a slicer blade?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a white onion with a mandolin slicer?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is spreading an onion by a machine?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing onions on a mandolin?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man slice a whole peeled white onion using?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"slicer\"\n  },\n  {\n    \"question\": \"what is a man slicing with a mandolin slicer?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who grated an ionion into slices?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man spreading an onion by?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a man spreading by a machine?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man slicing onions on?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"mandolin\"\n  },\n  {\n    \"question\": \"who thereafter separates the onion rings?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sliced an onion?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did the man grate into slices?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"ionion\"\n  },\n  {\n    \"question\": \"who is scraping onion?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is slicing onions?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices an onion?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is grating a vegetable?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man thereafter separate?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what did someone slice?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a chef scraping?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a man slice?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"scrap\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"grate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"spread\"\n  },\n  {\n    \"question\": \"what is a man slices a whole peeled white onion doing?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"w28TljSqtW8_64_75\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who lifted barbells in each of his hands?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifted small barbells in his hands?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting dumbbells?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts hand weights?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is exercising with small weights?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting weights?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using hand weights?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing a weight exercise?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rapidly lifting small weights?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing exercises?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing exercise?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts weights?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man lift?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a man using?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is exercising?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a man is rapidly doing?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"w9mqbwOIkVg_6_12\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"who gallops on a horse across the desert?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is a man riding a horse?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"where did the cowboy ride his horse?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"who is riding a horse on an open ground?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a horse in the desert?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a man in cowboy gear rides a horse in?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"circle\"\n  },\n  {\n    \"question\": \"what do a man in cowboy gear rides in a circle?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a man gallop on a horse across?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what does a man gallop on across the desert?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who rides his horse in the dessert?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rode his horse in the desert?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"cowboy\"\n  },\n  {\n    \"question\": \"what is a man riding on an open ground?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man riding a horse in?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what is a man riding in the desert?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what did the cowboy ride his horse in?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"desert\"\n  },\n  {\n    \"question\": \"what did the cowboy ride in the desert?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who rides a horse?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"cowboy\"\n  },\n  {\n    \"question\": \"who is riding on a horse?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rode his horse?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"cowboy\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what a cowboy rides?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a vaquero riding?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man riding on?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a guy riding?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the man riding?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what did the cowboy ride?\",\n    \"video_name\": \"wFPmKChNrhU_3_11\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is shooting another man with a pistol?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sprays a dust at another man?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting a gun at the intruder?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man with a pistol shoot?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots a pistol at a monster?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are shooting a cloaked man?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who shot the vampire with a gun?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did the man shoot with a gun?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"vampire\"\n  },\n  {\n    \"question\": \"how many men are shooting at a vampire?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who does a man shoot a pistol at?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"monster\"\n  },\n  {\n    \"question\": \"who is the man shooting a gun at?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"intruder\"\n  },\n  {\n    \"question\": \"what did the man shoot the vampire with?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is the man shooting at the intruder?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what does a man shoot at a monster?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"pistol\"\n  },\n  {\n    \"question\": \"who are poeple shooting?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is firing another man?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are shooting a man?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"poeple\"\n  },\n  {\n    \"question\": \"what is a man in the group shooting at him with?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"pistol\"\n  },\n  {\n    \"question\": \"who tried to shoot the vampire?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots a man?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting another man?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did the man try to shoot?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"vampire\"\n  },\n  {\n    \"question\": \"who are two men shooting at?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"vampire\"\n  },\n  {\n    \"question\": \"who does a man shoot?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man shooting?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who are two men shooting?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being shot?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what are poeple doing?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"wFX6bXLbHW4_83_90\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what blows up a boat with a missile?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what does a missile launched from a submarine hit?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what uses a missile to blow up a boat?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what does a submarine shoot a missile at?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does a submarine shoot at a boat?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"missile\"\n  },\n  {\n    \"question\": \"what shoots a missile at a boat?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what does a submarine use a missile to blow up?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what does a submarine use to blow up a boat?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"missile\"\n  },\n  {\n    \"question\": \"what is flying in the space?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"shuttle\"\n  },\n  {\n    \"question\": \"what did the torpedo go through?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what explodes a ship?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what spins through the water?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what is a space shuttle flying in?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"space\"\n  },\n  {\n    \"question\": \"what launches a torpedo?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what does a submarine spin through?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what shoots a torpedo?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what does a submarine explode?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is gliding through the water?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what do the torpedo blew up?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what do the torpedo hit?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is firing a torpedo?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what is a submarine gliding through?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is going through water?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what causes an explosion?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"bomb\"\n  },\n  {\n    \"question\": \"what hit the ship?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"missile\"\n  },\n  {\n    \"question\": \"what did the blow up?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is going through the water?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"submarine\"\n  },\n  {\n    \"question\": \"what is a submarine going through?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did the missile hit?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what does a bomb cause?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"explosion\"\n  },\n  {\n    \"question\": \"what explodes?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is being shot?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"missile\"\n  },\n  {\n    \"question\": \"what is a space shuttle doing?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"fly\"\n  },\n  {\n    \"question\": \"what is a submarine doing?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"cruise\"\n  },\n  {\n    \"question\": \"what is a submarine doing?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a submarine doing?\",\n    \"video_name\": \"wLUH7qA_6sA_90_115\",\n    \"answer\": \"glide\"\n  },\n  {\n    \"question\": \"how many kittens are eating out of bowls on the floor?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"how many little kittens are eating from five little dishes?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"how many kittens are eating out of five dishes?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"what are five kittens eating out of bowls on?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"how many cats eat food from saucers?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"how many kittens are eating from dishes?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"how many kittens are eating food?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"what are kittens eating on trays?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many kittens eat?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"what do five cats eat from saucers?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"how many kittens are eating?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"how many cats are eating together?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"five\"\n  },\n  {\n    \"question\": \"what are kittens drinking?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"milk\"\n  },\n  {\n    \"question\": \"what are five kittens eating?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what are five kittens in a row and then in a circle doing?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are kittens doing?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are five kittens doing?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a group of kittens are lined up doing?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are kittens doing?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what are five cats doing?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are some kittens doing?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are the kittens doing?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are five little kittens doing?\",\n    \"video_name\": \"wNv74rvkAw8_30_40\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who is drinking a large goblet of beer?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a small man drinking a large goblet of?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"who is drinking beer from a glass?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drinking from a large glass?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who drinks a glass of beer?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"midget\"\n  },\n  {\n    \"question\": \"who drank from a very large glass?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a midget drink a glass of?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"who drank from a large glass?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking from a goblet?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drinking from a glass?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who drinks a beer?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drinking beer?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking a beer?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is drinking something?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is drinking beer?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"somebody\"\n  },\n  {\n    \"question\": \"who drinks beer?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone drinking from?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"glas\"\n  },\n  {\n    \"question\": \"what is a person drinking from?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"goblet\"\n  },\n  {\n    \"question\": \"who is drinking his drink?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is somebody drinking?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"what does a man drink?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"what is the little man drinking?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"what does a person drink?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"beer\"\n  },\n  {\n    \"question\": \"what is a man drinking?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a small man doing?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a small person doing?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is somebody doing?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a small boy dressed as a grown-up gentleman doing?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is the little man doing?\",\n    \"video_name\": \"wSwwS_0MKEc_68_78\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"who put eye makeup on with a brush?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who applied eye shadow with a brush?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the girl apply eye shadow with?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what did the girl put eye makeup on with?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"brush\"\n  },\n  {\n    \"question\": \"what did the girl apply with a brush?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"what did the girl put on with a brush?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"who is talking while applying eyeshadow?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who puts on eye shadow?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who applies eye makeup?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is putting on eye makeup?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is applying eye makeup?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is putting on makeup?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman applying foundation to?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what does a woman put on?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"shadow\"\n  },\n  {\n    \"question\": \"what is the woman putting on?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a girl putting on?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what does a woman apply?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a girl applying?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"makeup\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"wX-Bl25Htag_104_115\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"who played the guiter while standing on the couch?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"who is standing on a couch playing an acoustic guitar?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a little kid standing on playing an acoustic guitar?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what did the toddler play while standing on the couch?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"guiter\"\n  },\n  {\n    \"question\": \"who played the guitar on the couch?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what did the baby play the guitar on?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what did the baby play on the couch?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is standing on a couch singing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what is a little kid standing on singing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what is the little boy playing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a little kid play?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a small child playing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a baby playing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a small child doing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little kid doing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the toddler played the guiter while doing?\",\n    \"video_name\": \"wgrrQwLdME8_0_10\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who sang with a guitar on the couch?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is singing a song strumming a guitar in his hands?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who played the guitar on the couch?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a small boy singing strumming a guitar in his hands?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"song\"\n  },\n  {\n    \"question\": \"what did the child play the guitar on?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"what did the child play on the couch?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a toddler wearing a diaper playing?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is dancing with the guitar?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who strums a guitar?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"what is the boy dancing with?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is playing with guitar?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a toddler strum?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy playing with?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a baby playing?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is holding?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who dances?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a toddler doing?\",\n    \"video_name\": \"wgrrQwLdME8_66_74\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who is pushing a car across a parking lot while someone sits in the drivers seat?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man pushing across a parking lot while someone sits in the drivers seat?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is pushing the rear end of a problematic car as a woman is at the wheel?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sits in the drivers seat?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who pushed the black car?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pushes a car by himself?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pushes a car?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is at the wheel?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pushing a car?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man push by himself?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what did the man push?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a woman at?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what is a kid pushing?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a man push?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a person pushing?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a guy pushing?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man pushing?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is the man pushing?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"wjH72cZ0GLM_1_10\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"who is running in front of fish hanging on fishing rod?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who runs away from a fish swinging around on a fishing pole?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is running from a fish on the end of a fishing pole?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who ran away from the fish on the line?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what does a kid run away from swinging around on a fishing pole?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a child running from on the end of a fishing pole?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is running around a fishing pole?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who was afraid of the fish he had caught on his pole?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is running away from the fish he just caught?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what was a little kid afraid of the fish he had caught on?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"pole\"\n  },\n  {\n    \"question\": \"who is playing with a caught fish?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what did the little girl run away from the fish on?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"line\"\n  },\n  {\n    \"question\": \"what did the little girl run away from on the line?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is afraid of the fish?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"what was a little kid afraid of he had caught on his pole?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who runs away from his fishing line?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is the kid afraid of?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"who is holding a fishing pole?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is running from a fish?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is chasing a boy?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"who is a fishing chasing?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a child running from?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a kid holding?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"fishing\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a fishing doing?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a small kid doing?\",\n    \"video_name\": \"wkgGxsuNVSg_34_41\",\n    \"answer\": \"dodge\"\n  },\n  {\n    \"question\": \"who is playing a violin on the beach?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a small girl standing on sand playing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"who played the violin on the beach?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays the violin on a beach?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays a violin on the beach?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays an instrument in the sand?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the girl play the violin on?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a young girl playing a violin on?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what does a little girl play the violin on?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what does a little girl play an instrument in?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what did the girl play on the beach?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what does a girl play a violin on?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a girl playing a violin on?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what does a little girl play on a beach?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a young girl playing on the beach?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what does a little girl play in the sand?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"instrument\"\n  },\n  {\n    \"question\": \"what does a girl play on the beach?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a girl playing on the beach?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a little girl playing on the beach?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"who played the violin?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing violin?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who plays a violin?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who plays the violin?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing a violin?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is playing the violin?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the little girl play?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a young girl playing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a little girl playing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a kid playing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what does a girl play?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a girl playing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is the girl playing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"violin\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the girl doing?\",\n    \"video_name\": \"wn9rDTZj-m4_8_18\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is eating while resting on a blanket?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what gnaws on a piece of food?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is chewing on some food?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is a slow loris eating?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is an animal chewing on?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is eating something?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"lori\"\n  },\n  {\n    \"question\": \"what is eating?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is a raccoon-like animal doing?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a short haired furry animal doing?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a loris doing?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a animal doing?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a slow loris doing?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a small animal doing?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is an animal doing?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"chew\"\n  },\n  {\n    \"question\": \"what is the animal doing?\",\n    \"video_name\": \"wpUT0DNB3qs_9_19\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"who cuts a bundle of leafy vegetables with a knife?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices off the stems with leaves from a bunch of parsley using a knife?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is separating coriander leaves with knife?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man cut a bundle of leafy vegetables with?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a man separating coriander leaves with?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does a man cut a bundle of with a knife?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"leafy\"\n  },\n  {\n    \"question\": \"who does the stem is cutting parsley off?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cut up a bunch of parsley?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who shaves fresh parsley?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what does the stem a person is cutting off?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"parsley\"\n  },\n  {\n    \"question\": \"what did someone cut up a bunch of?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"parsley\"\n  },\n  {\n    \"question\": \"what is a man separating with knife?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"coriander\"\n  },\n  {\n    \"question\": \"who chopped up some parsley?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting parsley?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is cutting leaves?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did someone chop up?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"parsley\"\n  },\n  {\n    \"question\": \"what does a chef shave?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"parsley\"\n  },\n  {\n    \"question\": \"what is the cook cutting?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"parsley\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"parsley\"\n  },\n  {\n    \"question\": \"what are being chopped?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"herb\"\n  },\n  {\n    \"question\": \"what is being cut?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"parsley\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man slices off the stems with leaves from a bunch of parsley doing?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"shave\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"wsj_dzz33Ko_31_41\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who is kissing his reflection in the mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who kissed his image in the mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who sees his reflection in a mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is repeatedly kissing his reflection in a mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what did the toddler kiss his image in?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"who is kissing himself at the mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a young child see his reflection in?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"who is kissing himself in the mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what did the boy kiss his image in?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is a little boy kissing his reflection in?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is a boy kissing his reflection in?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what did the toddler kiss in the mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what is a baby repeatedly kissing his reflection in?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what does a young child see in a mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"reflection\"\n  },\n  {\n    \"question\": \"what did the boy kiss in the mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"image\"\n  },\n  {\n    \"question\": \"what is the baby kissing himself at?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is a baby kissing himself in?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is a little boy kissing in the mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"reflection\"\n  },\n  {\n    \"question\": \"who is kissing in a mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy kissing in the mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"reflection\"\n  },\n  {\n    \"question\": \"who tries to kiss himself?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a baby repeatedly kissing in a mirror?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"reflection\"\n  },\n  {\n    \"question\": \"who is kissing his reflection?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a boy kissing in?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"mirror\"\n  },\n  {\n    \"question\": \"what is a young boy kissing?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"reflection\"\n  },\n  {\n    \"question\": \"what is a baby is repeatedly doing?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is the baby doing?\",\n    \"video_name\": \"wzfkC2TjdeQ_0_31\",\n    \"answer\": \"kis\"\n  },\n  {\n    \"question\": \"who tries to reel in a shark at sea?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what chases another small fish near the surface of the sea?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what did the dolphin catch in the ocean?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what did the dolphin catch a fish in?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what caught a fish in the ocean?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"dolphin\"\n  },\n  {\n    \"question\": \"what finally gets hold of a large fish?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"who are trying to catch a shark?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"fisherman\"\n  },\n  {\n    \"question\": \"what is stealing someones fish?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what are the fisherman trying to catch?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what caught a swimming fish?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"dolphin\"\n  },\n  {\n    \"question\": \"what catches a smaller fish?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is going after the bait?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what did the dolphin catch?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"swimming\"\n  },\n  {\n    \"question\": \"what is attacking a fish?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what is a shark going after?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"bait\"\n  },\n  {\n    \"question\": \"what is following a bait?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what is eating a fish?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what is a shark stealing?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what does a large fish catch?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a shark attacking?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a shark eating?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a shark following?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"bait\"\n  },\n  {\n    \"question\": \"what does a shark attacks and eat?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a shark doing?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what is a shark doing?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a shark doing?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"steal\"\n  },\n  {\n    \"question\": \"what are the fisherman doing?\",\n    \"video_name\": \"x1i0UOssll8_141_151\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are riding a motor scooter down the street?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"who is talking to his female passenger on a motorized bike?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was driving a woman on a motorcycle?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drove a girl on a motorcycle?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who was a man driving on a motorcycle?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding a motorcycle with a woman riding behind him as a passenger?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to the woman seated behind him?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did the man drive on a motorcycle?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what was a man driving a woman on?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what did the man drive a girl on?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is a man riding a motorcycle with a woman riding behind him as?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"passenger\"\n  },\n  {\n    \"question\": \"what is a man riding with a woman riding behind him as a passenger?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what bikes on a road?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what are a man and a woman riding?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is riding a motorbike?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"couple\"\n  },\n  {\n    \"question\": \"what a couple bikes on?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a man and woman riding?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"motorcycle\"\n  },\n  {\n    \"question\": \"what is the couple riding?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"motorbike\"\n  },\n  {\n    \"question\": \"what are a man and woman doing?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what was a man doing?\",\n    \"video_name\": \"x68Djm_Q0GA_0_10\",\n    \"answer\": \"drive\"\n  },\n  {\n    \"question\": \"who did a lady measure the ankles of?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who measured the ankles of the woman?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is measuring leg of another woman?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman measuring leg of?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is measuring another girls ankle?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is measuring another woman?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is measuring the other woman?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman measuring?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is the woman measuring?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is one woman doing?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"xBW_uR3kGr4_42_55\",\n    \"answer\": \"measure\"\n  },\n  {\n    \"question\": \"what pooped on the lady who was underneath a woman?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is getting pooped on by a horse?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who crawls under a horse?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is walking under horse?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman getting pooped on by?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is walking between horse legs?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who goes underneath a horse?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is crawling under a horse?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gets a surprise?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what poops on a woman?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who does a horse poops on?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who goes under a horse?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman crawl under?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman walking under?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does a woman go underneath?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman crawling under?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does the horse defecate on?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what does a woman get?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"surprise\"\n  },\n  {\n    \"question\": \"what does a woman go under?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman walking between?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"jut\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"defecate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xBePrplM4OA_6_18\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is riding a skateboard on a ramp?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is falling when he performs skating stunts?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is falling while trying to perform tricks?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"skateboarder\"\n  },\n  {\n    \"question\": \"what is a guy riding a skateboard on?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"ramp\"\n  },\n  {\n    \"question\": \"what is a guy riding on a ramp?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"who hurts himself from falling off his skateboard?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who falls to the ground?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who fell off the skateboard?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"skateboarder\"\n  },\n  {\n    \"question\": \"who crashes to the ground?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"skateboarder\"\n  },\n  {\n    \"question\": \"who skates a tunnel then falls?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is falling off a skateboard?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who fell off his skateboard?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a guy fall to?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what does a skateboarder crash to?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who misses his landing and crashes?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"skateboarder\"\n  },\n  {\n    \"question\": \"what does a man skate then falls?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"tunnel\"\n  },\n  {\n    \"question\": \"what is a guy falling off?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"what did the skateboarder fall off?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"what did the man fall off?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"who is skateboarding?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who falls?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a guy hurts himself from doing?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"skateboard\"\n  },\n  {\n    \"question\": \"what is a skateboarder doing?\",\n    \"video_name\": \"xCFCXzDUGjY_5_9\",\n    \"answer\": \"fall\"\n  },\n  {\n    \"question\": \"who pushes a lawn mower across the grass?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"what does an individual push a lawn mower across?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who is running a lawn mover in his garden?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does an individual push across the grass?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"mower\"\n  },\n  {\n    \"question\": \"who is a man running in his garden?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"mover\"\n  },\n  {\n    \"question\": \"who is cutting grass by machine?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who mows the yard?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mows the grass?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man running a lawn mover in?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"who is mowing a lawn?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is mowing the lawn?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mowing the grass?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person cutting grass by?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a person cutting by machine?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who is moving a lawn?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mowing his lawn?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a man mow?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a guy mowing?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is a man mowing?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is the man mowing?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a man moving?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is being mowed?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is someone mowing?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"who is mowing?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"mow\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"mow\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xEDCfcMZlZY_37_41\",\n    \"answer\": \"mow\"\n  },\n  {\n    \"question\": \"who is mowing the grass with a lawn mower?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pushes a lawnmower across a lawn?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who mowed his grass with a mower?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a guy push across a lawn?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"lawnmower\"\n  },\n  {\n    \"question\": \"what is a man mowing with a lawn mower?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what does a guy push a lawnmower across?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what did the man mow his grass with?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"mower\"\n  },\n  {\n    \"question\": \"who is cutting grass with machine?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man mow with a mower?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who mows a lawn?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mows the lawn?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mowing grass?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mowing a lawn?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who mowed his grass?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mowing the lawn?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting grass?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what is a man cutting grass with?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a man cutting with machine?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who is mowing his backyard?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mowing his lawn?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man mow?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is a guy mowing?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is the man mowing?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is a guy cutting?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what did the man mow?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a man mowing?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"mow\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"mow\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xEDCfcMZlZY_91_100\",\n    \"answer\": \"mow\"\n  },\n  {\n    \"question\": \"who danced in the living room?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is dancing to music?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who danced in the room?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a small girl dancing to?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is dancing with music?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the little girl dance in?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a small girl moving around in?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what is a little girl shaking?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"booty\"\n  },\n  {\n    \"question\": \"what is a girl dancing with?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"who is dancing?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a small baby doing?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a young girl doing?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a little girl doing?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is the little girl doing?\",\n    \"video_name\": \"xGdoi3W3Z4o_2_40\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon of lucy van pelt?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who drew the character lucy from peanuts?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who draws lucy from peanuts?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"who drew a cartoon of lucy?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon character on a paper?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does an individual draw from peanuts?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"lucy\"\n  },\n  {\n    \"question\": \"who draws a peanuts cartoon character?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is a person drawing on a paper?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a person drawing a cartoon character on?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what did an artist draw a cartoon of?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"lucy\"\n  },\n  {\n    \"question\": \"who is drawing cartoon characters?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who draws a cartoon?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"animator\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon character?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is drawing some cartoon?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a cartoon?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is drawing a picture?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does an animator draw?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is someone drawing?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"who is a person drawing?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"character\"\n  },\n  {\n    \"question\": \"what is a person drawing?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"picture\"\n  },\n  {\n    \"question\": \"what is the man drawing?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"cartoon\"\n  },\n  {\n    \"question\": \"who is drawing?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is a cartoonist doing?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"what is an artist doing?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"sketch\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xOQn1z_oWDY_30_39\",\n    \"answer\": \"draw\"\n  },\n  {\n    \"question\": \"who is cutting a green tomato into thin slices?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting a vegetable into slices with a knife?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing a green tomato with a knife?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman cutting a vegetable into slices with?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is someone slicing a green tomato with?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is someone cutting into thin slices?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is someone slicing with a knife?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"who sliced the green tomatoe?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut a green tomatoe?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is slicing green tomatoes?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing a green tomato?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing some vegetables?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a tomato?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is cutting a tomato?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did the man slice?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"tomatoe\"\n  },\n  {\n    \"question\": \"who did someone cut?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"tomatoe\"\n  },\n  {\n    \"question\": \"who cuts vegetables?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is a person slicing?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"xPR0xFgCAZY_17_27\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is doing some tricks with butterfly knife?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is performing tricks with a butterfly knife?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing tricks with a butterfly knife?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is doing tricks with a knife?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman seated on a chair wield rapidly?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a woman doing some tricks with?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is playing with a butterfly knife?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is playing with a knife blade?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is twirling a knife?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman doing tricks with?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who spins a butterfly knife around?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does tricks with a knife?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is twirling a switch blade?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is flipping around a knife?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is flipping a butterfly knife?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is performing knife tricks?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is flipping a switchblade?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is demonstrating a butterfly knife?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what did the girl flip a knife around in?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a woman twirling?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is playing with a knife?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman do tricks with?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who flipped a knife around?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a woman flipping around?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what does a woman spin around?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"butterfly\"\n  },\n  {\n    \"question\": \"what is a girl twirling?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"switch\"\n  },\n  {\n    \"question\": \"what is the woman playing with?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a woman flipping?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"butterfly\"\n  },\n  {\n    \"question\": \"what is a woman demonstrating?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"butterfly\"\n  },\n  {\n    \"question\": \"what is a woman performing?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what did the lady flip around?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is twisting?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"twirl\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"flip\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"twist\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"xSmfK498DjI_1_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is walking on a treadmill while an older person stands behind him?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who walks on a treadmill as a woman stands behind him?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"what is a little boy walking on while an older person stands behind him?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what does a toddler walk on as a woman stands behind him?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"who is walking on a moving treadmill?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who walked on the treadmill?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"who walks on a treadmill?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"what is a young boy walking on?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is a little boy walking on?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"who plays on a treadmill?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"who is walking on a treadmill?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is walking on the treadmill?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is walking in a treadmill?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who does an older person stand behind?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is on a treadmill?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"what did the toddler walk on?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"who stands behind a boy?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a toddler walk on?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what does a toddler play on?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is a toddler walking on?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is a baby walking on?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is the baby walking on?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is a toddler on?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is a boy walking on?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is a boy walking in?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is a toddler doing?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the baby doing?\",\n    \"video_name\": \"xTd_IdIcB4s_2_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is doing some twisting exercise?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who performs arm exercises?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who exercised in the living room?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a fat woman doing exercise in?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is an obese woman doing?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"twisting\"\n  },\n  {\n    \"question\": \"who exercises in a living room?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is doing some exercises?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman perform?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"who stretches?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is exercising?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is stretching?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a heavy woman doing?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a large woman doing?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a very big woman doing?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"attempt\"\n  },\n  {\n    \"question\": \"what is a very fat woman doing?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is an extremely fat woman doing?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"stretch\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"xXlWsBhFvis_6_10\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what does a young woman in a halloween costume sit down on?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"couch\"\n  },\n  {\n    \"question\": \"who woke a man with a costume on?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who tried to wake up the man in costume?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who wakes up a man in a vampire costume?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who wakes up a man in a costume?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who woke up the boy in his halloween costume?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a woman singing a song shake up?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people are dressed in halloween costumes?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who talks to a costumed boy?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who wakes up a costumed man?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is waking up a drunk man?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who does a costumed woman wake up?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a girl waking up?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"drunk\"\n  },\n  {\n    \"question\": \"who is waking a costumed man?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who woke up the man?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when are people dressed?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"halloween\"\n  },\n  {\n    \"question\": \"who is waking a man?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did the woman wake up?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a woman waking?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who wakes up?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"x_7BrCQdVUs_172_177\",\n    \"answer\": \"wake\"\n  },\n  {\n    \"question\": \"who manipulates a mask to make funny faces?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who provides the voice for a human skull?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is moving the jaw to make it appear that the skull is talking?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is providing voice to a skull?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man provide for a human skull?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is talking through a skull head?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man providing to a skull?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"voice\"\n  },\n  {\n    \"question\": \"who is playing with a human skull?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone moving to make it appear that the skull is talking?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"jaw\"\n  },\n  {\n    \"question\": \"what is a man providing voice to?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"skull\"\n  },\n  {\n    \"question\": \"who talked to a puppet?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who talks with a human skull?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mimicking with a skull?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing with a skull?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to a skull?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man talk to?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"puppet\"\n  },\n  {\n    \"question\": \"what is a man mimicking with?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"skull\"\n  },\n  {\n    \"question\": \"what is the man playing with?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"skull\"\n  },\n  {\n    \"question\": \"what is a man talking to?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"skull\"\n  },\n  {\n    \"question\": \"what is talking?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"skull\"\n  },\n  {\n    \"question\": \"what is a boy made a skull talk by doing?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"mimic\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"provide\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"hold\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"x_8RiVI6rH8_41_54\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what ambled down the path?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"tortoise\"\n  },\n  {\n    \"question\": \"what moved down the dirt path?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what did the tortoise amble down?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"path\"\n  },\n  {\n    \"question\": \"what is walking slowly in the dirt?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what is walking along the gravel?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"tortoise\"\n  },\n  {\n    \"question\": \"what is walking across the sand?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what is a turtle walking slowly in?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what is a tortoise walking along?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"gravel\"\n  },\n  {\n    \"question\": \"what is crawling the dirt?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"tortoise\"\n  },\n  {\n    \"question\": \"what is a turtle walking across?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what is a tortoise crawling?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"dirt\"\n  },\n  {\n    \"question\": \"what is walking downhill?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"tortoise\"\n  },\n  {\n    \"question\": \"what is slowly walking?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what walks slowly?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"tortoise\"\n  },\n  {\n    \"question\": \"what is walking?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"turtle\"\n  },\n  {\n    \"question\": \"what is a large tortoise doing?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a turtle doing?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a tortoise doing?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a turtle is slowly doing?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a tortoise doing?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is the tortoise is slowly doing?\",\n    \"video_name\": \"xaPepCVepCg_35_46\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is playing a guitar on a stage with a band?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what switches to a man wearing a hat and cape leaping up in a field of wheat?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"what starts with a man playing a guitar?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"video\"\n  },\n  {\n    \"question\": \"when is a man strumming a guitar singing?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what pink floyd in concert?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man playing a guitar on with a band?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what is a man playing a guitar on a stage with?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"band\"\n  },\n  {\n    \"question\": \"what is a man playing on a stage with a band?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does david gilmour play?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"who played his guitar on stage?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing while playing the guitar?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the band pink floyd in?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"concert\"\n  },\n  {\n    \"question\": \"who did the band pink in concert?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"floyd\"\n  },\n  {\n    \"question\": \"who plays the guitar?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"gilmmy\"\n  },\n  {\n    \"question\": \"when did the man play his guitar?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar and singing?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing guitar?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who played his guitar?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"singer\"\n  },\n  {\n    \"question\": \"what did the man play on stage?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is performing out stage?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"ban\"\n  },\n  {\n    \"question\": \"what is a ban performing out?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"who performs sings?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"floyd\"\n  },\n  {\n    \"question\": \"who performs plays?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"floyd\"\n  },\n  {\n    \"question\": \"who sings?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"gilmmy\"\n  },\n  {\n    \"question\": \"who sang?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is singing?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the singer play?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is pink floyd doing?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a ban doing?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"strum\"\n  },\n  {\n    \"question\": \"what is the man singing and doing?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the video starts with a man doing?\",\n    \"video_name\": \"xb-Nacm-pKc_78_82\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what jumps into a very large cardboard box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is jumping into a cardboard box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what was curious about the box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what circled the box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what jumps into a really tall box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what was the cat curious about?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what jumps into an empty box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what jumps into a cardboard box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what did the cat circle?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what jumped into the box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what jumps into a box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what jumps up into a box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is jumping into a box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is jumped into a box?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what did the cat jump into?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what does a cat jump into?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what does a cat jump up into?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a cat jumping into?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a cat jumped into?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what then jumped inside?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what jumped inside?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a pet grey cat doing?\",\n    \"video_name\": \"xdhLQCYQ-nQ_50_63\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"where is a man running an electric tiller?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who pushed a tiller or a harvester through the field?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running an electric tiller on a field?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a power tiller in the garden?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting grass with a tiller?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is tilling a plot of land?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man push a tiller or a harvester through?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a man running an electric tiller on?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a man tilling a plot of?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"land\"\n  },\n  {\n    \"question\": \"what is a man cutting with a tiller?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"who is pushing a small garden tiller?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man using a power tiller in?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what is a man running on a field?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"tiller\"\n  },\n  {\n    \"question\": \"what is a man using in the garden?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"tiller\"\n  },\n  {\n    \"question\": \"what is a man cutting grass with?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"tiller\"\n  },\n  {\n    \"question\": \"who plowed a field?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who tills a field?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mowing a lawn?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is tilling the soil?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is tilling a field?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is tilling the ground?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting grass?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using an auger?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who tills grass?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do a boy plow?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a boy tilling?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a man mowing?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"lawn\"\n  },\n  {\n    \"question\": \"what is the man tilling?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"soil\"\n  },\n  {\n    \"question\": \"what does a man till?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"gras\"\n  },\n  {\n    \"question\": \"what is a man using?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"auger\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"till\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"till\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"mow\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xfRIRSWy0y0_10_20\",\n    \"answer\": \"till\"\n  },\n  {\n    \"question\": \"who stands on the deck of a ship?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what skimmed across the water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"bot\"\n  },\n  {\n    \"question\": \"what did the bot skim across?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is cruising through water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is cruising across the water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"powerboat\"\n  },\n  {\n    \"question\": \"what is cruising through the waters?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what cut through the water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is traversing some waves?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a powerboat cruising across?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is moving across water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what moves across the water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"yacht\"\n  },\n  {\n    \"question\": \"what is sailing on the ocean?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"yacht\"\n  },\n  {\n    \"question\": \"what is moving across the water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"yacht\"\n  },\n  {\n    \"question\": \"what is going through water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is moving through the water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"yacht\"\n  },\n  {\n    \"question\": \"what does a yacht move across?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did the boat cut through?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is moving on a sea?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"ship\"\n  },\n  {\n    \"question\": \"what is a yacht moving across?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is swimming on the water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a yacht moving through?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is moving in the water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is on the ocean?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a yacht sailing on?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is a boat moving across?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is on water?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"boat\"\n  },\n  {\n    \"question\": \"what is a boat going through?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a ship moving on?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"sea\"\n  },\n  {\n    \"question\": \"what is a boat swimming on?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a boat moving in?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is the boat on?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"ocean\"\n  },\n  {\n    \"question\": \"what is a boat on?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a boat doing?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"cruise\"\n  },\n  {\n    \"question\": \"what is a boat doing?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a boat doing?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a boat doing?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"traverse\"\n  },\n  {\n    \"question\": \"what is a powerboat doing?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"cruise\"\n  },\n  {\n    \"question\": \"what is a ship doing?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a yacht doing?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a yacht doing?\",\n    \"video_name\": \"xgIIcPSh4EU_0_6\",\n    \"answer\": \"sail\"\n  },\n  {\n    \"question\": \"who is sitting on the back of a toy bull which is swiveling wildly in different directions?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rode a mechanical bull?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rides a mechanical bull?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing bull riding game?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is riding a mechanical bull?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a bull machine?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on something?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man ride?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what did the man ride?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what a man rides?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what is a man riding on?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is the man riding?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"bull\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xlPyHMkpaQY_1_7\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many men are playing musical instruments?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who plays an electric guitar?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing electric guitar?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many people played their guitars together?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is playing a guitar?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the guitar?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing a guitar?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are the men playing?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"guitar\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"xpOYXbMDDBY_1_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is cutting a mango with a knife?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is cut into half avoiding the seed?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"who is cutting a piece of fruit?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a mango cut into avoiding the seed?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"what is a woman cutting a mango with?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a woman cutting a piece of?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what is a woman cutting with a knife?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"who cuts a mango in half?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who slices a potato in half?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is cutting a mango in half?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what does a chef slice a potato in?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"who is slicing mango?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who slices a mango?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who sliced a fruit?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is halving a mango?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing a mango?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is slicing fruit?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts a mango?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a chef slice in half?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is cutting a mango?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who cuts up a peach?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone cutting a mango in?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"what is someone cutting in half?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what did a lady slice?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what did the lady slice?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"fruit\"\n  },\n  {\n    \"question\": \"what is a person halving?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is the cook slicing?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what does a woman slice?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is a woman slicing?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is someone cutting?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what does a person cut up?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"peach\"\n  },\n  {\n    \"question\": \"what does a woman cut?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is a woman cutting?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"mango\"\n  },\n  {\n    \"question\": \"what is a mango is cut into half doing?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"avoid\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"halve\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"xtbsD3PUua4_174_185\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who is using a wire whisk to whisk a light yellow liquid in a mixing bowl?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is whisking creamy ingredients in a glass bowl?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is stirring mango puree in a bowl?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone using to whisk a light yellow liquid in a mixing bowl?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"who is whisking a mixture in a glass bowl?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who uses egg beaters to prepare a mixture?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is whisking ingredients in a bowl?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is mixing a bowl of ingredients?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person stirring mango puree in?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is mixing ingredients in a bowl?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a person whisking in a glass bowl?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"who stirs batter in a bowl?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man use egg beaters to prepare?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"mixture\"\n  },\n  {\n    \"question\": \"who does a man use to prepare a mixture?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"egg\"\n  },\n  {\n    \"question\": \"what is a chef whisking ingredients in?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is stirring ice cream batter?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a woman mixing ingredients in?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who is mixing something in a bowl?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who whisked the batter?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is mixing batter?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is mixing eggs?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is mixing the batter?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is stirring a juice?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone mixing in a bowl?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone mixing something in?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"who do the lady whisk?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is someone mixing?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"who is the woman mixing?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"batter\"\n  },\n  {\n    \"question\": \"what is a person stirring?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"who is whisking?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"combine\"\n  },\n  {\n    \"question\": \"what is a chef doing?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"whisk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"stir\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"xtbsD3PUua4_84_94\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"who is sticking his hands under moving vehicles?\",\n    \"video_name\": \"xxHx6s_DbUo_121_128\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is rolling over a mans hands?\",\n    \"video_name\": \"xxHx6s_DbUo_121_128\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is getting his hands ran over?\",\n    \"video_name\": \"xxHx6s_DbUo_121_128\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what runs over a mans hands?\",\n    \"video_name\": \"xxHx6s_DbUo_121_128\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is lying on his stomach on a road with his hands outstretched as a white car runs over his fingers?\",\n    \"video_name\": \"xxHx6s_DbUo_121_128\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is rolling over someones fingers?\",\n    \"video_name\": \"xxHx6s_DbUo_121_128\",\n    \"answer\": \"vehicle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_121_128\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_121_128\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a vehicle doing?\",\n    \"video_name\": \"xxHx6s_DbUo_121_128\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_121_128\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what is a car doing?\",\n    \"video_name\": \"xxHx6s_DbUo_121_128\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"who did the lady feed some food to?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fed some food to the man?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what did the lady feed to the man?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who feeds food to a man?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gives a man some food?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does a woman feed to a man?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"who does a woman feed food to?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who feeds a man?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is feeding a man?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is feeding the man?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is a woman feeding?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is the woman feeding?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman feeds a man with her fingers and the scene flashes to the couple doing?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"look\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"xxHx6s_DbUo_158_161\",\n    \"answer\": \"feed\"\n  },\n  {\n    \"question\": \"who is running down a bright sunlit road?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running down a street on a sunny day?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running down the center of a road?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man running down on a sunny day?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what is a man running down the center of?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who jogged down the street?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who ran down the street?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs down the road?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man jog down?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is running on a street?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running on the road?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man run down?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is running down a street?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running down the street?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man run down?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man running on?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"xxHx6s_DbUo_162_165\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who karate chops a row of boards stacked up between chairs?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is karate chopping several blocks of wood?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is karate chopping stacks of wood in half?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who chopped blocks of wood with his hand?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who breaks a row of wooden boards?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sequentially breaks a row of tiles stacked between two chairs using his right hand?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking wooden boards with his hand?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who went from chair to chair breaking the blocks of wood with his hand?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man chop blocks of with his hand?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what did the man chop with his hand?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"who breaks lots of boards?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"who is breaking wood with his hands?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man go from to chair breaking the blocks of wood with his hand?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"chair\"\n  },\n  {\n    \"question\": \"what is a man breaking with his hands?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what did the man chop blocks of wood with?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a man breaking with his hand?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"wooden\"\n  },\n  {\n    \"question\": \"who is punching through boards?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man breaking wooden boards with?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what did the man go from chair to chair breaking the blocks of wood with?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who is breaking tiles?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking boards?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking some boards?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking wood?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man breaking?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"wood\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a man is karate doing?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is a man sequentially breaks a row of tiles stacked between two chairs doing?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the man went from chair to chair doing?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_173_177\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"who is laying under a concrete slab while another man hits it with a sledgehammer?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hammers a slab of concrete on another man?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hammers a concrete slab on a man?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who chopped the cement block on the man?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who breaks a slab of concrete in half that is lying on top of a prone man?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who broke the cement block on top of the man?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who breaks the slab with a sledge hammer?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking a brick slab with a hammer?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is smashing a concrete block on a man?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking a slab of rock?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man smashing a concrete block on?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man break a slab of in half that is lying on top of a prone man?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"concrete\"\n  },\n  {\n    \"question\": \"what did the man break on top of the man?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"cement\"\n  },\n  {\n    \"question\": \"who hits a slab of concrete with a sledgehammer?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man breaking a slab of?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is a man breaking with a hammer?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"brick\"\n  },\n  {\n    \"question\": \"what is a man smashing on a man?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"block\"\n  },\n  {\n    \"question\": \"who is laying on a table with a slab of concrete on his stomach?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does another man hit a slab of with a sledgehammer?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"concrete\"\n  },\n  {\n    \"question\": \"what does another man hit a slab of concrete with?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"sledgehammer\"\n  },\n  {\n    \"question\": \"who is busting concrete?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is one man laying on with a slab of concrete on his stomach?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"who breaks a board?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is one man laying on a table with a slab of concrete on?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"stomach\"\n  },\n  {\n    \"question\": \"what is a man busting?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"concrete\"\n  },\n  {\n    \"question\": \"what does a man break?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"board\"\n  },\n  {\n    \"question\": \"what is a man breaks a slab of concrete in half that doing?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"bust\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_182_186\",\n    \"answer\": \"smash\"\n  },\n  {\n    \"question\": \"who is kicking a padded stick while several people watch?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man kicking while several people watch?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"who boxed at the totem pole?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who boxed at the dummy pole?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking a dummy?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is punching a target?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man kicking?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"dummy\"\n  },\n  {\n    \"question\": \"who is practicing boxing?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is punching something?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man punching?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"who is punching a post?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone punching?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a man practicing?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"what is the man practicing?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"boxing\"\n  },\n  {\n    \"question\": \"who is punching?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is boxing?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"box\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_202_207\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"who is sitting cross legged on the ground meditating?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sitting cross legged on meditating?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"who is a man sitting on the ground meditating?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"who is sitting with crossed legs meditating?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is seated in a garden with his eyes closed as he recalls certain visuals?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who meditated in the temple yard?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man seated in with his eyes closed as he recalls certain visuals?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"who recalls certain visuals?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing yoga?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"yoga\"\n  },\n  {\n    \"question\": \"who meditated outside?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who meditates?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is meditating?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is praying?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"meditate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"pray\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_216_222\",\n    \"answer\": \"meditate\"\n  },\n  {\n    \"question\": \"who is breaking water filled suspended ceramic pots by kicking or punching them?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who breaks clay pots of water suspended from ropes?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking the pots filled with water?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man breaking filled suspended ceramic pots by kicking or punching them?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who hits clay pots of water suspended from ropes with his hands and feet?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking sand pots by his leg?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who broke the clay pots with his feet and fist?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is punching water filled jars?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking oots of water?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking pots of water?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man breaking by his leg?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"sand\"\n  },\n  {\n    \"question\": \"what did the man kicked or hit and break?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"clay\"\n  },\n  {\n    \"question\": \"who breaks hanging pots?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who breaks water balloons?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"artist\"\n  },\n  {\n    \"question\": \"what is a man breaking sand pots by?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"leg\"\n  },\n  {\n    \"question\": \"who is breaking water jugs?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man kicking oots of?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did the man break with his feet and fist?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"clay\"\n  },\n  {\n    \"question\": \"what is a man kicking pots of?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is kicking pots?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking some water containers?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is breaking pots?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man punching?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a martial artist break?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is a man kicking?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is punching?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man breaks doing?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"hang\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"break\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"punch\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_240_248\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"who is running on a road lined with trees?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running down a wooded road?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what flashes to a man and woman bowing?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"scene\"\n  },\n  {\n    \"question\": \"who ran down the road?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running down a street?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs along a road?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running down the road?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is running on a road?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing exercises?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man run down?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man running down?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"street\"\n  },\n  {\n    \"question\": \"what does a man run along?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man running on?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who is running?\",\n    \"video_name\": \"xxHx6s_DbUo_32_36\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did push ups on some blocks and on the top of a wall?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing push ups?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing pushups?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did pushups on a wall?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing exercises?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing exercise?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking on his hands?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man do pushups on?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"who is exercising?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does pushups?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman is seated doing?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"watch\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_36_40\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is giving another man a piggyback ride down a trail?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is giving another man a piggy back ride?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man giving another man a piggyback ride down?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"trail\"\n  },\n  {\n    \"question\": \"who is one man carrying on his back while two other men follow behind?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is carrying a man on his back while two other men follow behind?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is carrying another man on his back?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is carrying a man on his back?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who carries another man on his back?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who carried another man on his back?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who carries a woman on his back?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a man carry on his back?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did the man carry on his back?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man carrying on his back?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is one man carrying a man on while two other men follow behind?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"who is carrying another man piggyback?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did a man carry another man on?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"what did the man carry another man on?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"how many other men follow behind?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man carrying another man on?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"who is carrying another man?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man carrying a man on?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"back\"\n  },\n  {\n    \"question\": \"who is a man carrying?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"piggyback\"\n  },\n  {\n    \"question\": \"who is one man carrying?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_41_44\",\n    \"answer\": \"carry\"\n  },\n  {\n    \"question\": \"who exercised over the edge of a platform?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is exercising with his upper body off of a tall structure?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did exercises over the edge of a platform?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is working out on a high wooden ledge with the aide of his instructor?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing exercises off a ledge?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing crunches from a platform?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing sit ups while another man is holding his feet for him?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing crunches from?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"platform\"\n  },\n  {\n    \"question\": \"what is a man doing exercises off?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"ledge\"\n  },\n  {\n    \"question\": \"who does upper body exercises?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing exercises?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing exercise?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is holding his feet for him?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man do?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"who is exercising?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_49_56\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is doing pull ups?\",\n    \"video_name\": \"xxHx6s_DbUo_57_61\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing exercises?\",\n    \"video_name\": \"xxHx6s_DbUo_57_61\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing exercise?\",\n    \"video_name\": \"xxHx6s_DbUo_57_61\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_57_61\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_57_61\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is exercising?\",\n    \"video_name\": \"xxHx6s_DbUo_57_61\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_57_61\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xxHx6s_DbUo_57_61\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_57_61\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is climbing up a rope suspended from the ceiling?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"shirtles\"\n  },\n  {\n    \"question\": \"who climbs up a rope suspended from the ceiling?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is climbing a rope inside a building?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shown doing a duck walk type exercise?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a shirtless man climbing up suspended from the ceiling?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is a man climbing a rope inside?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"building\"\n  },\n  {\n    \"question\": \"what is a man climbing inside a building?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"who is shown climbing a rope?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someoen climbing?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"who pulled himself up a rope?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who climbs up a rope?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is climbing up a rope?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is climbing a rope?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man pull himself up?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is someone climbing?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is the man climbing up?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is a man climbing?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"rope\"\n  },\n  {\n    \"question\": \"what is a shirtless man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a man is shown doing?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is someoen doing?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_82_86\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"who is lifting a barbell over his head?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"shirtles\"\n  },\n  {\n    \"question\": \"who lifed weigts above his head?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifted weights above his head?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a shirtless man lifting over his head?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"barbell\"\n  },\n  {\n    \"question\": \"who did the man lifed above his head?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"weigt\"\n  },\n  {\n    \"question\": \"what is a shirtless man lifting a barbell over?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who is lifting weights?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is lifting a barbell?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is doing exercises?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who lifts weights?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man lifed weigts above?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who is working out?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is weightlifting?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is exercising?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a shirtless man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"weightlift\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"work\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xxHx6s_DbUo_98_101\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is typing on some kind of machine?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is tying on a stenographers machine?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who types on a stenography machine?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who types on a stenotype machine?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who typed on the stenograph?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is typing on a stenography machine?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is typing on a stenographer?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who used a stenograph?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is typing keys?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is tying in the machine?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a stenography machine?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is a person typing on?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"stenographer\"\n  },\n  {\n    \"question\": \"what do the lady type on?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"stenograph\"\n  },\n  {\n    \"question\": \"what is a man tying in?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what did the man use?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"stenograph\"\n  },\n  {\n    \"question\": \"what is someone using?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"stenography\"\n  },\n  {\n    \"question\": \"what is the man using?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"stenography\"\n  },\n  {\n    \"question\": \"who is typing?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"type\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"tie\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"xy9LLUUZ6ic_50_60\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"who is chopping beef using a large flat kitchen knife?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who os slicing beef with a cleaver?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who dices meat with a butcher knife?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what do a person os slicing with a cleaver?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"beef\"\n  },\n  {\n    \"question\": \"what do a person os slicing beef with?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"cleaver\"\n  },\n  {\n    \"question\": \"what does a person dice with a butcher knife?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man chopping using a large flat kitchen knife?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"beef\"\n  },\n  {\n    \"question\": \"what is meat chopped with?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is chopping some cooked beef?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is chopping mushrooms?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is chopped with a knife?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"who is chopping up meat?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who is cutting up meat?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"who cuts beef?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"what is the cook chopping up?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what does a chef cut?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"beef\"\n  },\n  {\n    \"question\": \"what is a person chopping?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"beef\"\n  },\n  {\n    \"question\": \"what is the cook cutting up?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is being shanked?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is being chopped?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"meat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a person os doing?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is the cook doing?\",\n    \"video_name\": \"y8SDRc4IOjs_94_99\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is sitting on carpet scratching itself?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a monkey sitting on scratching itself?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"carpet\"\n  },\n  {\n    \"question\": \"what is moving its right arm quickly?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"capuchin\"\n  },\n  {\n    \"question\": \"what scratches its arm?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is playing on its own?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is itching its arm?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is scratching itself?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what scratches itself?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a capuchin monkey moving quickly?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what do the monkey scratch?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"stomach\"\n  },\n  {\n    \"question\": \"what is the monkey scratching?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what does a small monkey scratch?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what is a monkey itching?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"arm\"\n  },\n  {\n    \"question\": \"what is scratching?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is sitting?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a capuchin monkey doing?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a money doing?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"scratch\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"itch\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the monkey doing?\",\n    \"video_name\": \"yAD_TS5L2d4_4_11\",\n    \"answer\": \"scratch\"\n  },\n  {\n    \"question\": \"how many men are twisting long strands of dough into pretzel shapes?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are forming strips of dough into pretzel shapes?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are rolling dough into pretzel shapes?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many individuals are twisting dough into pretzels?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is making bretzels out of thin strips of dough?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is placing bretzels on the counter table?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are two men twisting long strands of into pretzel shapes?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"how many men form dough into pretzels?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men forming strips of into pretzel shapes?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what are two men forming into pretzel shapes?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what are two men rolling into pretzel shapes?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who is being shape into pretzels?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is dough being into pretzels?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"shape\"\n  },\n  {\n    \"question\": \"who is forming pretzels out of dough?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what are two individuals twisting into pretzels?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"how many men are preparing some dish?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are hand rolling pretzels?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many individuals are rolling?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are men twisting into pretzels?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what did the men form pretzels from?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what are two people rolling pretzels?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what are two men preparing?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"dish\"\n  },\n  {\n    \"question\": \"what is chefs doing?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"form\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"twist\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"form\"\n  },\n  {\n    \"question\": \"what are two individuals doing?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"form\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is two people are hand doing?\",\n    \"video_name\": \"yBK02O1Oewc_20_35\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what looked for a way off the bed?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what did the kitten look for off the bed?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"way\"\n  },\n  {\n    \"question\": \"what did the kitten look for a way off?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is running across a bed meowing?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what does an irate kitten run around on?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is running on a bed?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is running back and forth on a bed meowing?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what meows at the camera man?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what mewed on the bed?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is a kitten running on?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what did the kitten mew on?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is meowing on a bed?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is walking on a bed?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is a cat meowing on?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is a kitten walking on?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"bed\"\n  },\n  {\n    \"question\": \"what is meowing?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what runs around?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"kitten\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"meow\"\n  },\n  {\n    \"question\": \"what is a kitten doing?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a kitten runs around on a bed doing?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"cry\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"yC4eEuURH8c_19_28\",\n    \"answer\": \"meow\"\n  },\n  {\n    \"question\": \"how many women are wrestling with each other?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are wrestling on the floor?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are wrestling in their underwear?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many girls are wrestling?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many women are wrestling?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the ladies wrestle on?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"how many people wrestle?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two women wrestling on?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who are fighting?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are two women doing?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are two woman doing?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two girls doing?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what were the girls doing?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what are the women doing?\",\n    \"video_name\": \"yId1rg5-ac0_40_50\",\n    \"answer\": \"wrestle\"\n  },\n  {\n    \"question\": \"what gets a drink from a water sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"what is wetting its face standing in front of a water sprinkler in a garden?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"what does a baby moose get from a water sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a baby moose wetting its face standing in front of a water sprinkler in?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"garden\"\n  },\n  {\n    \"question\": \"what puts its nose into a sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"what does a baby moose put its nose into?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"sprinkler\"\n  },\n  {\n    \"question\": \"what is washing its face by sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"what is a baby moose washing its face by?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"sprinkler\"\n  },\n  {\n    \"question\": \"what is a baby moose washing by sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what drank from the sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"what is a baby moose playing in?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"sprinkler\"\n  },\n  {\n    \"question\": \"what does a baby moose put into a sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"nose\"\n  },\n  {\n    \"question\": \"what went into the sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"what walked in the sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"what do a moose from a sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"drinking\"\n  },\n  {\n    \"question\": \"what drinks from a water sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"what is being wet by sprinklers?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what drinks from a sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"what do a moose drinking water from?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"sprinkler\"\n  },\n  {\n    \"question\": \"what is drinking from a sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"what did the baby moose drink from?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"sprinkler\"\n  },\n  {\n    \"question\": \"what is playing in a sprinkler?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"moose\"\n  },\n  {\n    \"question\": \"what did the baby moose walk in?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"sprinkler\"\n  },\n  {\n    \"question\": \"what did the moose go into?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"sprinkler\"\n  },\n  {\n    \"question\": \"what does a baby moose drink from?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"sprinkler\"\n  },\n  {\n    \"question\": \"what is a moose drinking from?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"sprinkler\"\n  },\n  {\n    \"question\": \"what is a moose playing in?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"sprinkler\"\n  },\n  {\n    \"question\": \"what is a baby moose doing?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"wash\"\n  },\n  {\n    \"question\": \"what is a moose doing?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a moose doing?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"drink\"\n  },\n  {\n    \"question\": \"what is a baby moose doing?\",\n    \"video_name\": \"yNy9jTeolUk_8_12\",\n    \"answer\": \"wet\"\n  },\n  {\n    \"question\": \"what does a pug puppy slide backwards on a wooden floor pushing?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"fore\"\n  },\n  {\n    \"question\": \"what is a puppy sliding backwards along?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what scooted backwards on the floor?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what did the puppy scoot backwards on?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what did the dog scoot backwards on?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does a puppy scoot backwards on?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what did the puppy slide backwards on?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a puppy moving through?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what do a puppy sliding backwards on?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"moonwalk\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is a puppy doing?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a pug puppy slides backwards on a wooden floor doing?\",\n    \"video_name\": \"yOnRm3TP6hM_0_12\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what did a man in a devil suit hitchhike along?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a person in costume hitchhiking along?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man wearing a demon mask hitchhiking on?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a man carrying a trident hitchhiking on?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what pulls over to pick a man dressed as death up?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"who is hitch hiking in a costume?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who does a car stop to pick up?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"hitchhiker\"\n  },\n  {\n    \"question\": \"what stops to pick up a hitchhiker?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what is a man in a costume?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"hiking\"\n  },\n  {\n    \"question\": \"what does a dressed up person try to get?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"ride\"\n  },\n  {\n    \"question\": \"who catches a ride?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"reaper\"\n  },\n  {\n    \"question\": \"what does the grim reaper catch?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"ride\"\n  },\n  {\n    \"question\": \"what is asking for a lift?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person hitchhiking on?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is someone asking for?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"lift\"\n  },\n  {\n    \"question\": \"what is hitchhiking?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"skeleton\"\n  },\n  {\n    \"question\": \"what is a man dressed as death doing?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"hitchhike\"\n  },\n  {\n    \"question\": \"what is a man in a costume is hitch doing?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"hike\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"hitchhike\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a person in costume doing?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"hitchhike\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"hitchhike\"\n  },\n  {\n    \"question\": \"what is a skeleton doing?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"hitchhike\"\n  },\n  {\n    \"question\": \"what are a woman and man doing?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"ask\"\n  },\n  {\n    \"question\": \"what is someone is hitch doing?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"hike\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"yPNFVj-pISU_105_115\",\n    \"answer\": \"hitchhike\"\n  },\n  {\n    \"question\": \"who is peeling potatoes with a vegetable peeler?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a potato with a potato peeler?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a potato with a peeler?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is an older woman peeling with a potato peeler?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who is a woman peeling a potato with?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"peeler\"\n  },\n  {\n    \"question\": \"what is a woman peeling with a peeler?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who peeled the potatoe?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who peels a potato?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling potato?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling potatoes?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is peeling a potato?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who peels vegetables?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what do the lady peel?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"potatoe\"\n  },\n  {\n    \"question\": \"what does a woman peel?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a woman peeling?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is the woman peeling?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is an older woman doing?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"yREFkmrrYiw_51_57\",\n    \"answer\": \"peel\"\n  },\n  {\n    \"question\": \"who is riding a horse down the street?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a horse on a paved road?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on the back of a brown horse as it trots down the road?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on a trotting horse?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding on a paved road?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what does the back of a brown horse trot down?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"who rides a horse?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding on the horse?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding the horse?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man rides?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is someone riding?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a person riding?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the man riding?\",\n    \"video_name\": \"yU5sxW9bErQ_0_17\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is walking on a moving treadmill?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"welsh\"\n  },\n  {\n    \"question\": \"what is being walked on a treadmill?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a person walking on a treadmill?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a dog being walked on?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what runs on a treadmill?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is walking in treadmill?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is walking on a treadmill?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is using the treadmill?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a dog run on?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is a dog walking on?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is a dog walking in?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is the dog using?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is running?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are a dog on a leash and a woman doing?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a welsh corgi doing?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"yYA7YXIKbg4_9_14\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"how many rabbits are chasing each other when they are attacked by two chickens?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many rabbits are fighting with each other as two hens intervene?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many rabbits are frolicking together when they are attacked by a pair of chickens?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many rabbits are fighting with each other as two hens stop them?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what do two rabbits and two roosters get into?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"scuffle\"\n  },\n  {\n    \"question\": \"how many chickens stop two rabbits fighting?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many rabbits do two chickens stop fighting?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many chickens attack two rabbits?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the rabbits and chickens fight together in?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"yard\"\n  },\n  {\n    \"question\": \"how many rabbits do two chickens attack?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many rabbits are fighting?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are chickens doing?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"attack\"\n  },\n  {\n    \"question\": \"what are rabbits and chickens doing?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are rabbits and hens doing?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are the chickens doing?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is two chickens stop two rabbits doing?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what are two rabbits and chickens doing?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two rabbits and two chickens doing?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two rabbits doing?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"chase\"\n  },\n  {\n    \"question\": \"what are two rabbits doing?\",\n    \"video_name\": \"ybVb3t560oY_0_9\",\n    \"answer\": \"frolic\"\n  },\n  {\n    \"question\": \"how many women get out of a taxi?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are women leaving the backseat of?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"cab\"\n  },\n  {\n    \"question\": \"what are a group of girls exiting?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"taxi\"\n  },\n  {\n    \"question\": \"what do women exit?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"taxi\"\n  },\n  {\n    \"question\": \"who got out of the taxi?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who gets out of a cab?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who gets out of a taxi?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are girls coming out from?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what are women exiting?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"taxi\"\n  },\n  {\n    \"question\": \"what are women walking out of?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"car\"\n  },\n  {\n    \"question\": \"what does a woman get out of?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"cab\"\n  },\n  {\n    \"question\": \"what are women leaving?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"cab\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"exit\"\n  },\n  {\n    \"question\": \"what are women doing?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what are a group of girls doing?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"exit\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"yd8jh9QYfEs_4_10\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"who throws himself against the wall?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a kid jump into?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who threw himself against the wall?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a boy throw himself against?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does a man jump into?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who jumps into a wall?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a kid run into?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who runs into wall?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is jumping into a wall?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who runs into a wall?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did the man throw himself against?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does a guy jump into?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what is a man jumping into?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what does a boy run into?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"who jumps?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who comically runs?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who runs?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a man runs jumps bangs his entire body on the opposite wall and falls on the floor after doing?\",\n    \"video_name\": \"yfMTsYcLt10_0_7\",\n    \"answer\": \"argue\"\n  },\n  {\n    \"question\": \"what is a dog bouncing on a trampoline?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"front\"\n  },\n  {\n    \"question\": \"what bounces on a trampoline?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is pouncing on a trampoline?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is jumping over trampoline?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what played on the trampoline?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is bouncing on a trampoline?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is jumping on a trampoline?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is jumping on the trampoline?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is jumping on a jumper?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing on a trampoline?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is on a trampoline?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is a dog jumping on?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"jumper\"\n  },\n  {\n    \"question\": \"what is a dog pouncing on?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what did the dog play on?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what does a dog bounce on?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is a dog jumping over?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is a dog bouncing on?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is a dog jumping on?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is the dog jumping on?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is a dogs playing on?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is a dog playing on?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is a dog on?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"trampoline\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"bounce\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"pounce\"\n  },\n  {\n    \"question\": \"what is a dogs doing?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"yg4aNiO1JnI_111_114\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is a man in a prison cell motioning in another cell?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man in a prison cell motioning a man in?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"cell\"\n  },\n  {\n    \"question\": \"who gives another prisoner the middle finger?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"prisoner\"\n  },\n  {\n    \"question\": \"what did the men give to each other?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"who gives another man the middle finger?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men are intimidating each other?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what is a man in a prison cell that man is displaying to the first man?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"middle\"\n  },\n  {\n    \"question\": \"who is sticking up his middle finger?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who gives another man the finger?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who flips someone off?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is talking to another guy?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who gives the middle finger?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making some fight movements?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is fighting in prison?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a guy talking to?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"what does a man flip off?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man fighting in?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"prison\"\n  },\n  {\n    \"question\": \"who is showing his figure?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what are the men in?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"jail\"\n  },\n  {\n    \"question\": \"what does a man give?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what is a man making?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man sticking up?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"middle\"\n  },\n  {\n    \"question\": \"what is a man showing?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"figure\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"talk\"\n  },\n  {\n    \"question\": \"what is a man in a prison cell doing?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"motion\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"show\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"stick\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"ymC2bNi6-Is_9_19\",\n    \"answer\": \"intimidate\"\n  },\n  {\n    \"question\": \"what had a hard time getting up the stairs?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is crawling up some stairs?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what did the panda bear go up the stairs on?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"belly\"\n  },\n  {\n    \"question\": \"what is clmbing up a ledge?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is climbing a single step?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a young panda clmbing up?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"ledge\"\n  },\n  {\n    \"question\": \"what is a baby panda climbing?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what crawls up a cement step?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what drags itself over a step?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what crawls up a step?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what climbs a step?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what climbs up a step?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what does a panda drag itself over?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what does a panda bear climb?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what does a baby panda crawl up?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what is climbing a step?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what does a panda crawl up?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what does a panda bear climb up?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what does a panda climb up?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"step\"\n  },\n  {\n    \"question\": \"what is trying to crawl?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a baby panda bear doing?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a baby panda doing?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a panda bear doing?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is the panda doing?\",\n    \"video_name\": \"ysTmUTQ5wZE_17_45\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"who did a sensual dance on stage?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is dancing on stage?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who does a seductive dance?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is dancing on a stage?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"when is a woman dancing?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what does a woman do?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who danced seductively?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who is dancing slowly?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who dances slowly?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman in a long black gown doing?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is a woman doing?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"wear\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is the woman doing?\",\n    \"video_name\": \"yvfhk1kwKls_103_113\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"who is walking on a rope bridge holding the ropes on either side for support?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is walking through a narrow hanging bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who walks across a narrow suspension bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is crossing a narrow rope bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is walking slowly across a rope bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is walking carefully along a hanging bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is walking across a suspended bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who walked across a swinging bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who crossing a swinging bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who crossed a hanging bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who walking over a bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is walking across a bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is crossing a rope bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is crossing a bridge?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what do a boy walk over?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what is a boy walking across?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what did a boy cross?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"hanging\"\n  },\n  {\n    \"question\": \"what do a boy cross?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"swinging\"\n  },\n  {\n    \"question\": \"what is a boy crossing?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what is the boy crossing?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"bridge\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"ywHBKayhyvQ_19_28\",\n    \"answer\": \"cros\"\n  },\n  {\n    \"question\": \"what is running on a wheel in its cage?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"hedgehog\"\n  },\n  {\n    \"question\": \"what runs on a spinning wheel?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is running on a hamster wheel?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what walked in the treadmill?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"porcupine\"\n  },\n  {\n    \"question\": \"what ran in the treadmill?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"rodent\"\n  },\n  {\n    \"question\": \"what runs on an exercise wheel?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"hedgehog\"\n  },\n  {\n    \"question\": \"what runs on wheel?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"animal\"\n  },\n  {\n    \"question\": \"what is walking in a spinner?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"hedgehog\"\n  },\n  {\n    \"question\": \"what did the porcupine walk in?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is running on the wheel?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"hedgehog\"\n  },\n  {\n    \"question\": \"who is a hedgehog walking in?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"spinner\"\n  },\n  {\n    \"question\": \"what is running in a wheel?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"hedgehog\"\n  },\n  {\n    \"question\": \"what did the rodent run in?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"treadmill\"\n  },\n  {\n    \"question\": \"what is the hedgehog running on?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what is a hedgehog running in?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what does an animal run on?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what is a gerbil running in?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"wheel\"\n  },\n  {\n    \"question\": \"what is running?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"rat\"\n  },\n  {\n    \"question\": \"what is a hedgehog doing?\",\n    \"video_name\": \"ywMLb2VfHbI_13_20\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"who is cutting carrots in half lengthwise?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a carrot into strips?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who thereafter cuts the top half lengthwise into two?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a carrot into sticks?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts a peeled carrot into two?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut the carrots into sticks?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who cut carrots with a knife?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting carrots into pieces?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing carrots in half?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts a carrot in half?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cutting into strips?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"what is a man cutting carrots in?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"lengthwise\"\n  },\n  {\n    \"question\": \"what is a man cutting into sticks?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"who cuts up carrot stics?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"individual\"\n  },\n  {\n    \"question\": \"what does a man cut into two?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"what did someone cut carrots with?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"who is slicing carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts up carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts up some carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person slicing carrots in?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"who is meticulously cutting carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting up a carrot?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a carrot?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who does an individual cut up?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"what is a man cutting up?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"who carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man is meticulously doing?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_250_264\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who is pouring olive oil over a cookie sheet full of carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who drizzles olive oil over slices of peeled carrots placed on a tray?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours oil over a pan full of carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours oil over some carrots in a pan?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is putting olive oil on cut carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring olive oil over a pan of carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man pouring over a cookie sheet full of carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is pouring a liquid on to a tray of carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pours oil on slices of carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who poured oil on the carrot sticks?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who pours cooking oil on some carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man drizzle over slices of peeled carrots placed on a tray?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is adding oil to sliced carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the lady pour on the carrot sticks?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is pouring oil over the carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man pour on slices of carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a man pour over a pan full of carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a man pour over some carrots in a pan?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what does a man pour cooking on some carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a man adding to sliced carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a man putting on cut carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a man putting olive oil on?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"who poured oil over carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a person pouring on to a tray of carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is the man pouring over the carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"who is pouring oil over carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring oil on carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is putting oil on sweet potatoes?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did someone pour over carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is someone putting on sweet potatoes?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a man pouring over carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is a man pouring on carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"oil\"\n  },\n  {\n    \"question\": \"what is someone putting oil on?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"sweet\"\n  },\n  {\n    \"question\": \"what is poured on some food?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is a liquid poured on?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man pours doing?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"cook\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_321_328\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"who is sprinkling dried herbs onto carrot sticks?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is sprinkling thyme and parsley to a bunch of sliced carrots on a tray?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring seasoning on to a tray of carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is putting seasonings on sliced carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is adding pepper to sliced carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sprinkles some thyme and then parsley on top of sliced peeled carrots placed on a tray?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sifts spices onto carrot sticks?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using spices on carrot sticks?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man sprinkling dried herbs onto?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"what is a man sprinkling to a bunch of sliced carrots on a tray?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"parsley\"\n  },\n  {\n    \"question\": \"what is a man adding to sliced carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"pepper\"\n  },\n  {\n    \"question\": \"who sprinkled seasonings on the carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who seasons a tray of carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man using spices on?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"what does a man sift spices onto?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"carrot\"\n  },\n  {\n    \"question\": \"who seasons some carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is seasoning carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is seasoning some carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is seasoning the carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man demonstrating carrots?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"demonstrate\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"sprinkle\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"yyxtyCaEVqk_329_360\",\n    \"answer\": \"season\"\n  },\n  {\n    \"question\": \"who climbs on top of a sleeping dog?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is playing with a pet dog?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"who is playing with a bull dog?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is manhandling a dog?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is playing with a dog?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who gets licked by a dog?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a small boy playing with?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a baby boy playing with?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a baby manhandling?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is laying on a dog?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who is playing with the dog?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what played with the dog?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who hits a dog?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what plays with a baby?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a baby get licked by?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who does a dog play with?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what did the dog play with?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a baby laying on?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is the baby playing with?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what does a baby hit?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"who is climbing on?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"who slaps?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what is a baby boy doing?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what are a dog and toddler doing?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a small baby doing?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a toddler doing?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the baby doing?\",\n    \"video_name\": \"z0Si1XxMibg_0_30\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is making raw bagels out of dough?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is preparing dough at a bagel shop?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is placing bagels on the counter top?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man preparing at a bagel shop?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who is rolling dough into bagels?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who prepares bagel dough?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rolling out pastries?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man rolling into bagels?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"who is rolling dough?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is rolling some dough?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making bagels?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is making some food?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is an indian man rolling?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is the baker rolling?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what does a man prepare?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"bagel\"\n  },\n  {\n    \"question\": \"what is a man rolling?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is being prepared?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"dough\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"prepare\"\n  },\n  {\n    \"question\": \"what is an indian man doing?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is the baker doing?\",\n    \"video_name\": \"z0zb--BOhDY_16_22\",\n    \"answer\": \"roll\"\n  },\n  {\n    \"question\": \"what is playing the flute in front of a mike?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man standing playing in front of a mike?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"who played his flute outside?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a large flute?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing flute?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the flute?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing a flute?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing an instrument?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is the man playing?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what did the man play outside?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"flute\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man standing doing?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"z1PEyzk4ADU_8_18\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is passing a soccer ball from foot to foot?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who kicks a soccer ball from side to side?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is juggling a soccer ball with his feet?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is passing a football to and fro from one leg to the other standing on a football field?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person passing a soccer ball from to foot?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"foot\"\n  },\n  {\n    \"question\": \"what does a man kick a soccer ball from to side?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"side\"\n  },\n  {\n    \"question\": \"what is a person passing from foot to foot?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a man kick from side to side?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a person in blue dribbling?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"who is kicking a soccer ball back and forth between his feet?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a man passing a football to and fro from to the other standing on a football field?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"leg\"\n  },\n  {\n    \"question\": \"what is a man passing to and fro from one leg to the other standing on a football field?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a person juggling with his feet?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who dribbles a soccer ball?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is kicking a soccer ball back and forth?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is dribbling a soccer ball?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is kicking a soccar ball?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is playing with a ball?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person kicking back and forth between his feet?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"who is practicing football?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is kicking a ball around?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone dribbling?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what does a person dribble?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is a man kicking back and forth?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"soccer\"\n  },\n  {\n    \"question\": \"what is the man playing with?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is someone kicking?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"soccar\"\n  },\n  {\n    \"question\": \"what is a man kicking around?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a man practicing?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"football\"\n  },\n  {\n    \"question\": \"what is a soccer player doing?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"kick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"pas\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"practice\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"juggle\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"z2kUc8wp9l8_40_46\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"where does a man fold a square sheet of paper?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"who folds a square sheet of paper at the center?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who folded the paper in half two times?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is folding a sheet of paper?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man fold a square sheet of paper at?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"center\"\n  },\n  {\n    \"question\": \"what does a man fold a square sheet of at the center?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person folding a sheet of?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a man folding a piece of?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folded a piece of paper?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"who then folds a square sheet of paper again in half?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding a square paper piece?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the girl fold the paper in two times?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"who folds a piece of paper?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what did the lady fold a piece of?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does an individual fold a piece of?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who is folding a piece of paper in half and then in half again?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a woman fold a piece of?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person fold a piece of?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man then fold a square sheet of again in half?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is someone folding a piece of?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"who folds up some paper?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding paper?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is folding a paper?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is a person folding a piece of in half and then in half again?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a man then fold a square sheet of paper again in?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"half\"\n  },\n  {\n    \"question\": \"what does a man fold up?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is the person?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is being folded?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"z8dcUzdi2bw_3_16\",\n    \"answer\": \"fold\"\n  },\n  {\n    \"question\": \"when are a group of small children standing in a row singing?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are a group of school aged children performing?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are little kids reciting on a stage?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"when are little kids reciting something?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are kids singing?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are children singing?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when are children speaking?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are children singing in?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"church\"\n  },\n  {\n    \"question\": \"when did the kids perform?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"when did the children perform?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"stage\"\n  },\n  {\n    \"question\": \"what are a group of school aged children doing?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what is a group of small children doing?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"what is a group of young children doing?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"perform\"\n  },\n  {\n    \"question\": \"what are little kids doing?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"recite\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"z9qbQX4J_2g_0_14\",\n    \"answer\": \"speak\"\n  },\n  {\n    \"question\": \"what is laying on a table batting at a dog on the floor that is barking and jumping around?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is sitting on a table playing with a dog on the floor?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat on a table swatting at?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what swats a dog with its paw?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat sitting on playing with a dog on the floor?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"table\"\n  },\n  {\n    \"question\": \"what pawed at the dog?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is slapping a dog?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is hitting at a puppy?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what did the cat paw at?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is playing with a cat?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is teasing the dog?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a dog playing with?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is the cat teasing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what are a dog and cat doing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a cat on a table doing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"swat\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what are a dog and a cat doing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"fight\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are a cat and a dog doing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are a puppy and cat doing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"slap\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"tease\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"zBrC1GmA0Qg_26_33\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"who is writing something on a piece of white paper with a pencil?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is writing on paper with a pencil?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is writing on a piece of paper with a pencil?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is someone writing on a piece of white paper with a pencil?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is someone writing something on a piece of white paper with?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"pencil\"\n  },\n  {\n    \"question\": \"what is someone writing on a piece of paper with?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"pencil\"\n  },\n  {\n    \"question\": \"what is someone writing on paper with?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"pencil\"\n  },\n  {\n    \"question\": \"who is writing with pencil?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is writing with a pencil?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is writing on paper?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is writing on a paper?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who writes something down?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is writing a letter?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone writing with?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"pencil\"\n  },\n  {\n    \"question\": \"what is a person writing with?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"pencil\"\n  },\n  {\n    \"question\": \"what is the person writing on?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what is a person writing on?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"paper\"\n  },\n  {\n    \"question\": \"what does a person write down?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is a person writing?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"letter\"\n  },\n  {\n    \"question\": \"who is writing?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"zCf8NWJ8kzA_47_52\",\n    \"answer\": \"write\"\n  },\n  {\n    \"question\": \"who is playing a keyboard piano?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who played the piano?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays a keyboard?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing piano?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who plays the piano?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is playing a piano?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is playing the piano?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is playing the piano?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did the man play?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is someone playing?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what does a man play?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what does a person play?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a person playing?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"keyboard\"\n  },\n  {\n    \"question\": \"what is the person playing?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a man playing?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is being played?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"piano\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the person doing?\",\n    \"video_name\": \"zFIn8DeV5PM_20_33\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is shooting bullets using a rifle and two guns from an enclosed area to targets outside?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots several types of firearms at a shooting range?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting at targets at a shooting range?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is target shooting with several guns?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"where is the man shooting his guns?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"range\"\n  },\n  {\n    \"question\": \"who is spraying something from a gun?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting his guns at a range?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man shooting with several guns?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"target\"\n  },\n  {\n    \"question\": \"what is a man spraying from a gun?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"who is firing his guns at targets?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who fired shots at the targets?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man spraying something from?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"gun\"\n  },\n  {\n    \"question\": \"what is the man shooting his guns at?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"range\"\n  },\n  {\n    \"question\": \"who competes in a shooting competition?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shot at targets?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shoots in a practice range?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting at targets?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting targets?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shooting with his guns?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"cowboy\"\n  },\n  {\n    \"question\": \"what is a cowboy doing?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is a man at a firing range doing?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"fire\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what is a man is target doing?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"zH4v_DClIoc_3_28\",\n    \"answer\": \"shoot\"\n  },\n  {\n    \"question\": \"who is cutting an onion and a tomato into small pieces?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping an onion with a knife?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who cuts a half of an onion into two quarters?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person chopping an onion with?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a person chopping with a knife?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a man cut a half of into two quarters?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"who is cutting up a potato and tomato?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut an onion?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices an onion?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cut up an onion?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing vegetables?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping an onion?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing an onion?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts an onion?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts up an onion?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a onion?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting onions?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting onion?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is cutting an onion?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone slicing?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what did the man cut up?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what did the man cut?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a man slice?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man chopping?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is someone cutting?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a man cut up?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what does a man cut?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"onion\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"zHy7pM0U49w_103_109\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who slices tomatoes on a kitchen counter?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a tomato with a knife?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is slicing a tomato into pieces?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices one half of a tomato?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person slicing a tomato with?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a person slicing with a knife?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what does a man slice one half of?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is a man slicing into pieces?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"who is cutting tomatoes into pieces?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who sliced a tomatoe?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts up some tomatos?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is chopping tomatoes?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing tomatoes?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"guy\"\n  },\n  {\n    \"question\": \"who is slicing tomato?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices a tomato?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who is slicing a tomato?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cuts a tomato?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a tomato?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who did a man slice?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"tomatoe\"\n  },\n  {\n    \"question\": \"who did the man slice?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"tomatoe\"\n  },\n  {\n    \"question\": \"who cuts tomatoes?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a chef slice?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is a person slicing?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what does a man cut up?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what does a man cut?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"tomato\"\n  },\n  {\n    \"question\": \"what is a guy doing?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"chop\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"zHy7pM0U49w_110_116\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who dices a peeled potato using a knife?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a potato into pieces with a knife?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a potato with a knife?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting potatoes into small cubes?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a potato into cubes?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a potato into pieces?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man cutting a potato into pieces with?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a man cutting into pieces with a knife?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man slicing a potato with?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"knife\"\n  },\n  {\n    \"question\": \"what is a man slicing with a knife?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is being cut on a cutting board?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is the man slicing into cubes?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man slicing into pieces?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who cut the potatoe?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who cut up a potatoe?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"chef\"\n  },\n  {\n    \"question\": \"who cuts up potatos?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing potato?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who slices a potato?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is slicing a potato?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who cubing potatoes?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is cutting a potato?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the chef cut?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potatoe\"\n  },\n  {\n    \"question\": \"what did the chef cut up?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potatoe\"\n  },\n  {\n    \"question\": \"what does a man slice?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what does a man cut up?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man slicing?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man cutting?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who dices?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being chopped?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"who cuts?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is cut?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"potato\"\n  },\n  {\n    \"question\": \"what is a man dices a peeled potato doing?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"cut\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"zMg9dChF97A_12_38\",\n    \"answer\": \"slouse\"\n  },\n  {\n    \"question\": \"who dives off of a retaining wall into a swimming pool?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dived into the pool from the wall?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man dive into the pool from?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"wall\"\n  },\n  {\n    \"question\": \"what did the man dive into from the wall?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"who is jumping into a swimming pool?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dove into the swimming pool?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who jumped into a swimming pool?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who dived into the pool?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dives into a swimming pool?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dives into a pool?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who dives into the pool?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is diving into a pool?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is jumping into a pool?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is diving into a pool?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what did the man dive into?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is someone diving into?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is someone jumping into?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what does a man dive into?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is a boy diving into?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is a man diving into?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"pool\"\n  },\n  {\n    \"question\": \"what is a young man dives off of a doing?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"retain\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"dive\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"zS50h-a8RTg_3_9\",\n    \"answer\": \"jump\"\n  },\n  {\n    \"question\": \"who is shaking hands with three other men?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shaking hands with two people in front of a plane?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shaking hands with other men?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who shakes hands with three other people?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"who is shaking hands with several people?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shaking hands with some people?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"who is shaking hands with two men?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"how many men greet a pilot?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"who is offering handshake with others?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is shaking another mans hand?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man offering with others?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"handshake\"\n  },\n  {\n    \"question\": \"who do two men greet?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"what is a man shaking?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"offer\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is a pilot doing?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"what is the pilot doing?\",\n    \"video_name\": \"zSPBC8EO6dY_122_126\",\n    \"answer\": \"shake\"\n  },\n  {\n    \"question\": \"who sprays another man with water from a hose?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is using a hose to spray water on another man?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who stands in a parking lot and sprays another man with a water hose?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is spraying another man with a hose?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being sprayed by a man with a hose?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"who is spraying another man with water from a hose?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is spraying another man with a water hose?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is hosing another man off with water?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is spraying water from pipe on another man?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man using a hose to spray water on?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man spraying with water from a hose?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being soaked with a water hose?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man using to spray water on another man?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"what is a man using a hose to on another man?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man spraying another man with from a hose?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man spraying another man with water from?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"who is taking shower from hose water?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is one man spraying from pipe on another man?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is being hosed down with water?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is the man being hosed down with?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is showering water with a hose pipe over the head and body of another man standing ahead of him?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is being hosed with water?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who hoses down another man?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man showering with a hose pipe over the head and body of another man standing ahead of him?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who hoses his friend off?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man being hosed with?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who does a man hose down?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who does a man hose off?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"friend\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"hose\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"shower\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is one man doing?\",\n    \"video_name\": \"zSPBC8EO6dY_132_140\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"who is pushing a mini aircraft which is partly jutting out of a patch of grassland?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"how many men try to push a small plane?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are pushing a small plane?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are men arranging the direction of?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"helicopter\"\n  },\n  {\n    \"question\": \"how many men are pushing an airplane?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are pushing a airplane?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men pull a plane?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many people are handling a plane?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are men trying to mave?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"who attempts pulling a plane?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"instructor\"\n  },\n  {\n    \"question\": \"who is pushing the airplane?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what do two men try to push?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"who is pushing the plane?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"who is pushing an airplane backwards?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a flight instructor attempt pulling?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is the pilot pushing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what do two men pull?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is the man pushing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what are two men pushing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what is a man pushing backwards?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"airplane\"\n  },\n  {\n    \"question\": \"what are two people handling?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"plane\"\n  },\n  {\n    \"question\": \"what is a flight instructor attempts doing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"pull\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"arrange\"\n  },\n  {\n    \"question\": \"what are men doing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"try\"\n  },\n  {\n    \"question\": \"what are pilot and his crew doing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what is the pilot doing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"what are two people doing?\",\n    \"video_name\": \"zSPBC8EO6dY_64_73\",\n    \"answer\": \"handle\"\n  },\n  {\n    \"question\": \"who is pouring a liquid onto the head of another man?\",\n    \"video_name\": \"zSPBC8EO6dY_97_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring a bottle of water over a pilot?\",\n    \"video_name\": \"zSPBC8EO6dY_97_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is being poured on a mans head?\",\n    \"video_name\": \"zSPBC8EO6dY_97_110\",\n    \"answer\": \"juice\"\n  },\n  {\n    \"question\": \"what is poured on top of a man?\",\n    \"video_name\": \"zSPBC8EO6dY_97_110\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"who pours water over a pilots head?\",\n    \"video_name\": \"zSPBC8EO6dY_97_110\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is a man pouring a bottle of water over?\",\n    \"video_name\": \"zSPBC8EO6dY_97_110\",\n    \"answer\": \"pilot\"\n  },\n  {\n    \"question\": \"what is a man pouring onto the head of another man?\",\n    \"video_name\": \"zSPBC8EO6dY_97_110\",\n    \"answer\": \"liquid\"\n  },\n  {\n    \"question\": \"what is a man pouring a bottle of over a pilot?\",\n    \"video_name\": \"zSPBC8EO6dY_97_110\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what does a man pour over a pilots head?\",\n    \"video_name\": \"zSPBC8EO6dY_97_110\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zSPBC8EO6dY_97_110\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"who is riding a horse in an open ground surrounded by greenery?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"where did the hors and rider trot?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"where did the horse and rider trot?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what is a woman riding in an open ground surrounded by greenery?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is trotting around a course in a field?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what did the hors and rider trot in?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what did the horse and rider trot in?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who rides a horse?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is riding on a horse?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a woman riding on?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what a woman rides?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man riding on?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a girl riding?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the woman riding?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a person riding?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman riding?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a horse doing?\",\n    \"video_name\": \"zTn-nNj5Bng_61_77\",\n    \"answer\": \"trot\"\n  },\n  {\n    \"question\": \"who is riding a horse in an open field surrounded with greenery?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding in an open field surrounded with greenery?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who rides a horse across a field?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"jockey\"\n  },\n  {\n    \"question\": \"what a jockey rides a horse across?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what did the horse and rider trot across?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what a jockey rides across a field?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what a woman rides a horse across?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"what a woman rides across a field?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what did the horse and rider trot down?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"field\"\n  },\n  {\n    \"question\": \"who is riding on a horse?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a woman riding on?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man riding on?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a woman riding?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a girl riding?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the woman riding?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a person riding?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is being riden?\",\n    \"video_name\": \"zTn-nNj5Bng_8_19\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is pouring oxi clean powder into a sink full of water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who pours a scoop of oxi clean into a sink which is filling with water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who adds a scoop of oxi clean powder to a sink half filled with warm water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring oxiclean into the kitchen sink?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who mixes a scoop of oxi clean powder to a sink half filled with warm water with his hand?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is mixing oxi clean and water in a sink?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is pouring a scoop of oxiclean into a sink of water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person pouring into a sink full of water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"powder\"\n  },\n  {\n    \"question\": \"who scoops oxiclean into a sink filled with water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours detergent into a sink full of water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who poured oxi clean into a sink of water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"what is a man mixing oxi clean and water in?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"who put oxi clean in a sink of water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is adding some detergent to sink full of water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a person pouring into the kitchen sink?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"oxiclean\"\n  },\n  {\n    \"question\": \"who oxi clean with water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is putting cleaner into a sink of water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who fills a sink with water and soap?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"what does a man pour into a sink full of water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"detergent\"\n  },\n  {\n    \"question\": \"what did the man mixed oxi clean with?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is someone putting into a sink of water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"cleaner\"\n  },\n  {\n    \"question\": \"what did the man mixed oxi with water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a man adding to sink full of water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"detergent\"\n  },\n  {\n    \"question\": \"what does a man mix a scoop of oxi clean powder to a sink half filled with warm water with?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a person fill with water and soap?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what is putting cleaning solution into water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"someone\"\n  },\n  {\n    \"question\": \"who is stirring with his hand?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who pours cleaner in his sink?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is someone putting cleaning solution into?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is someone putting into water?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"solution\"\n  },\n  {\n    \"question\": \"who is cleaning his sink?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man stirring with?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"hand\"\n  },\n  {\n    \"question\": \"what does a man pour cleaner in?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what is a man cleaning?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"sink\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"mix\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a man pours a scoop of oxi clean into a sink which doing?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"fill\"\n  },\n  {\n    \"question\": \"what is a person doing?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is someone doing?\",\n    \"video_name\": \"zWVQImPY2Cc_27_44\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what are boys and girls sitting on?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what are children eating?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what do a row of children eat?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what is enjoying a meal together?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what did the bridesmaids have together?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"tea\"\n  },\n  {\n    \"question\": \"what did the bride serve?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"tea\"\n  },\n  {\n    \"question\": \"what is a family enjoying together?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"meal\"\n  },\n  {\n    \"question\": \"what are people eating?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what is eating?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"family\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is there are several children doing?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what are people doing?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are a group of children doing?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are peoples doing?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a family doing?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"enjoy\"\n  },\n  {\n    \"question\": \"what are kids doing?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are several kids doing?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is the family doing?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what are boys and girls doing?\",\n    \"video_name\": \"zYcY4mjLpxU_104_118\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"who is sprinkling flower petals on the ground?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who drizzled the petals into the basket?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what did the little girl drizzle the petals into?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"basket\"\n  },\n  {\n    \"question\": \"what is a child sprinkling flower petals on?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"ground\"\n  },\n  {\n    \"question\": \"what is a child sprinkling on the ground?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"what is a child putting flower petals on?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what is a small girl throwing flowers on?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who is playing with flower petals?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who tossed the petals?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"flower\"\n  },\n  {\n    \"question\": \"who is playing with confetti?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a child sprinkling flowers on?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"who is playing with flowers?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who puts food in his hair?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is throwing flowers?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"baby\"\n  },\n  {\n    \"question\": \"what does a boy put in his hair?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"food\"\n  },\n  {\n    \"question\": \"what does a girl put flowers on?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what does a child placing petals on?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"head\"\n  },\n  {\n    \"question\": \"what does a boy put food in?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"hair\"\n  },\n  {\n    \"question\": \"who is happy?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"what is a small girl doing?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a baby doing?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"throw\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"put\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"place\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"sprinkle\"\n  },\n  {\n    \"question\": \"what is a child doing?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"pmy\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the girl is happy and doing?\",\n    \"video_name\": \"zYcY4mjLpxU_45_55\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"who is stuffing a banana into his mouth?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is stuffing a peeled banana in his mouth as he is talking?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man stuffing into his mouth?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what is a man stuffing a peeled banana in as he is talking?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who ate a banana?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man stuffing a banana into?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"mouth\"\n  },\n  {\n    \"question\": \"who eats a banana?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man stuffing in his mouth as he is talking?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"who is eating a banana?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man eat?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"who eats a banana very quickly?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a man eat?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what is a man eating?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what is the man eating?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"what does a man eat very quickly?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"banana\"\n  },\n  {\n    \"question\": \"who is talking?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"stuff\"\n  },\n  {\n    \"question\": \"what is the man doing?\",\n    \"video_name\": \"z_qf7tOnHVg_81_89\",\n    \"answer\": \"eat\"\n  },\n  {\n    \"question\": \"how many men are dancing to music in a room?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men danced together in the living room?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many guys danced in the living room?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many young men are in a room dancing around together?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many boys are dancing in the house?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two men dancing to music in?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what are two men dancing to in a room?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"music\"\n  },\n  {\n    \"question\": \"how many men are dancing?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are badly dancing?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men are dancing together?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many men dance together?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two boys dancing in?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"house\"\n  },\n  {\n    \"question\": \"what is two men doing?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are the men doing?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two boys doing?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is two men are badly doing?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what are two men doing?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"face\"\n  },\n  {\n    \"question\": \"what is two young men are in a room doing?\",\n    \"video_name\": \"za-9mBZyNfQ_330_336\",\n    \"answer\": \"dance\"\n  },\n  {\n    \"question\": \"what is lying down chewing on something?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is nibbling on a finger?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"orangutan\"\n  },\n  {\n    \"question\": \"what is a baby orangutan nibbling on?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what is sucking someones finger?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"orangutan\"\n  },\n  {\n    \"question\": \"what chewed on the finger?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what chewed on something?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is sucking on a thumb?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what is sucking on a finger?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"monkey\"\n  },\n  {\n    \"question\": \"what did the baby monkey chew on?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"something\"\n  },\n  {\n    \"question\": \"what is chewing a glove?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"orangutan\"\n  },\n  {\n    \"question\": \"what did the monkey chew on?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what is sucking a finger?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"orangutan\"\n  },\n  {\n    \"question\": \"what is an orangutan sucking?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what is a baby orangutan chewing?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"glove\"\n  },\n  {\n    \"question\": \"what is a baby orangutan sucking?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what is a monkey sucking on?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"thumb\"\n  },\n  {\n    \"question\": \"what is a monkey sucking?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"finger\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"lie\"\n  },\n  {\n    \"question\": \"what is a monkey doing?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"suck\"\n  },\n  {\n    \"question\": \"what is a baby orangutan doing?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"suck\"\n  },\n  {\n    \"question\": \"what is a baby monkey doing?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"suck\"\n  },\n  {\n    \"question\": \"what is a baby monkey doing?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"sip\"\n  },\n  {\n    \"question\": \"what is a baby orangutan doing?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"suckle\"\n  },\n  {\n    \"question\": \"what is a baby orangutan doing?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"chew\"\n  },\n  {\n    \"question\": \"what is an orangutan doing?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"suck\"\n  },\n  {\n    \"question\": \"what is the baby monkey doing?\",\n    \"video_name\": \"zbAk0gX7kas_16_24\",\n    \"answer\": \"bite\"\n  },\n  {\n    \"question\": \"how many dogs bark angrily at each other?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what barked at the fence?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"how many dogs bark?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many dogs are barking?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did the dogs bark through?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what did the dog bark at?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"fence\"\n  },\n  {\n    \"question\": \"what barks?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is barking?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"dog\"\n  },\n  {\n    \"question\": \"what is a large dog doing?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what are dogs doing?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what are two dogs doing?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what is a dog doing?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what are dogs behind a fence doing?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what are caged dogs doing?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what are three dogs behind individual wired enclosures doing?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"what is the dog doing?\",\n    \"video_name\": \"zfQOH4UGU_I_1_10\",\n    \"answer\": \"bark\"\n  },\n  {\n    \"question\": \"who picks up a ticket to a high school event?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who picks up a carnival ticket off the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picked up a coupon card from the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who picked up a business card off the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is bending to pick up a card from the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picked up a card for a carnival?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picked up a card from the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picks up a business card off the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what does a young man pick up a carnival ticket off?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what did a boy pick up a coupon card from?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does a young man pick up off the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"carnival\"\n  },\n  {\n    \"question\": \"what did the man pick up a business card off?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what did the man pick up off the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"what did a boy pick up from the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"coupon\"\n  },\n  {\n    \"question\": \"what did the man pick up for a carnival?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"what did the man pick up a card from?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"who picks a card up from the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what did the man pick up a card for?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"carnival\"\n  },\n  {\n    \"question\": \"what did the man pick up from the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"what does a man pick up a business card off?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does a man pick up off the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"busines\"\n  },\n  {\n    \"question\": \"what does a man pick a card up from?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"floor\"\n  },\n  {\n    \"question\": \"what does a man pick up from the floor?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"who is picking up a card?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who discovers a ticket?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picks up a business card?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picks up a ticket?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who picks up a card?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is looking a card?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is reading a card?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a man picking up?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"what is a man looking?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"what does a man discover?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"ticket\"\n  },\n  {\n    \"question\": \"what is a boy picking up?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"what does a man pick up?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"ticket\"\n  },\n  {\n    \"question\": \"what is a boy reading?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"card\"\n  },\n  {\n    \"question\": \"who bends over?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"read\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"pick\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zhLcONtNkew_16_21\",\n    \"answer\": \"bend\"\n  },\n  {\n    \"question\": \"how many elephants play with water with their trunks?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many elephants are sprinkling water on their body?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many elephants are spraying water on themselves with their trunks?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many elephants are spraying themselves with water?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two elephants sprinkling on their body?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"how many elephants splash themselves with water?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many elephants are cleaning themselves?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are elephants taking bath in?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what are elephants taking in river?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are two elephants standing on the river bank spraying water on themselves with?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"trunk\"\n  },\n  {\n    \"question\": \"what is spraying itself with water?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what did the elephants spray on themselves?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are elephants them selves?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"bathing\"\n  },\n  {\n    \"question\": \"what are two elephants spraying on themselves with their trunks?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are two elephants sprinkling water on?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"body\"\n  },\n  {\n    \"question\": \"what are two elephants standing on the river bank spraying on themselves with their trunk?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is an elephant spraying itself with?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do two elephants splash themselves with?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are two elephants spraying themselves with?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are elephants?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"bathing\"\n  },\n  {\n    \"question\": \"what are two elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what is an elephant doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what are elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are the elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are two elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"clean\"\n  },\n  {\n    \"question\": \"what are two elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"sprinkle\"\n  },\n  {\n    \"question\": \"what is two elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_70_75\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"how many indian elephants are spraying water on their body standing in a river?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many elephants are splashing in water with their trunks?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are two indian elephants spraying on their body standing in a river?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"how many elephants are splashing water?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many elephants are spraying themselves with water?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"how many elephants wash themselves in a river?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what did elephants eat bathing in?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what did elephants eat in river?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"bathing\"\n  },\n  {\n    \"question\": \"what do elephants play with using their trunks?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did the elephants splash on themselves?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what did the elephants blow over themselves?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are elephants splashing themselves with?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is taking a bath?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"elephant\"\n  },\n  {\n    \"question\": \"what are elephants playing in?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are two elephants spraying themselves with?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are two elephants splashing?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what do two elephants wash themselves in?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what is an elephant taking?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are the elephants?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"bathing\"\n  },\n  {\n    \"question\": \"what are two elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"splash\"\n  },\n  {\n    \"question\": \"what are elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are two elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what is elephants ate doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what are two indian elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"spray\"\n  },\n  {\n    \"question\": \"what are the elephants doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is elephants play with water doing?\",\n    \"video_name\": \"zkTn5Ef1Oig_71_75\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is climbing up a fallen tree trunk?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what went up the tree trunk?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what climbs on a tree trunk?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is walking on a tree trunk?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"who climbs some logs?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"who is walking up a log?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a panda cub walking up?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"log\"\n  },\n  {\n    \"question\": \"what climbed the tree trunk?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what climbed a log?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"who is climbing a log?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is climbing logs?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is crawling over logs?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is walking on woods?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is climbing on a rock?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what climbs up a branch?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a panda cub climbing?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"log\"\n  },\n  {\n    \"question\": \"what did the panda climb?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"trunk\"\n  },\n  {\n    \"question\": \"what is a panda climbing on?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"rock\"\n  },\n  {\n    \"question\": \"what is climbing a log?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a panda bear climbing?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"log\"\n  },\n  {\n    \"question\": \"what does a panda climb up?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"branch\"\n  },\n  {\n    \"question\": \"what is climbing?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"panda\"\n  },\n  {\n    \"question\": \"what is a panda doing?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a panda doing?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"walk\"\n  },\n  {\n    \"question\": \"what is a baby panda doing?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"crawl\"\n  },\n  {\n    \"question\": \"what is a panda cub doing?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"what is a panda bear doing?\",\n    \"video_name\": \"zlS1_zBYluY_15_21\",\n    \"answer\": \"climb\"\n  },\n  {\n    \"question\": \"who is swinging a golf club at a golf ball?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is hitting a golf ball with a really short golf club?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a young child swinging at a golf ball?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"who hit the golf ball with his club?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who swung at the golf ball?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a young boy hitting with a really short golf club?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what did the little boy hit with his club?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what did the little boy hit the golf ball with?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"club\"\n  },\n  {\n    \"question\": \"who is swinging a golf club?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who hits a golf ball?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is hitting a golf ball?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"toddler\"\n  },\n  {\n    \"question\": \"who is playing golf?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing a golf?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a kid swinging?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what does a toddler hit?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is a toddler hitting?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is a small boy playing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"who is golfing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what does a little boy hit?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is a little boy playing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what does a kid hit?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is a kid playing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what does a boy hit?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is a boy playing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is the boy playing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is a boy?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golfing\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a toddler doing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"hit\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"golf\"\n  },\n  {\n    \"question\": \"what is the boy doing?\",\n    \"video_name\": \"zpgW7m7_LZw_2_15\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"how many electric toys are swimming in red water in a bathtub?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what swims in a bathtub full of red water?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"shark\"\n  },\n  {\n    \"question\": \"what are two electric toys swimming in red water in?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"bathtub\"\n  },\n  {\n    \"question\": \"what are two electric toys swimming in in a bathtub?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what swam in the red water?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what are toys floating in?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"bathtub\"\n  },\n  {\n    \"question\": \"what is swimming in the water?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what is a toy fish swimming in?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"who is dead in a bathtub?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what are floating in water?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what are mechanical toys moving in?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"bathtub\"\n  },\n  {\n    \"question\": \"what are plastic toys floating in?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is moving in water?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are in the tub?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"toy\"\n  },\n  {\n    \"question\": \"what is a toy fish moving in?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what is a woman dead in?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"bathtub\"\n  },\n  {\n    \"question\": \"what are the toys in?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"tub\"\n  },\n  {\n    \"question\": \"what are swimming?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"bath\"\n  },\n  {\n    \"question\": \"what is swimming?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"fish\"\n  },\n  {\n    \"question\": \"what are toys doing?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what is a girl with black lipstick on doing?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"lay\"\n  },\n  {\n    \"question\": \"what is a toy fish doing?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what is a toy fish doing?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are two electric toys doing?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are bath toys doing?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"swim\"\n  },\n  {\n    \"question\": \"what are mechanical toys doing?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"what are plastic toys doing?\",\n    \"video_name\": \"zr9OeyfLPPY_4_9\",\n    \"answer\": \"float\"\n  },\n  {\n    \"question\": \"what bowled a wooden ball into the wooden pins?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what swung a ball at some standing wooden seals?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is pawing a ball towards wood animals?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what volleys a small ball then knocking over wooden pieces?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what rolls a ball toward wooden pins?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is knocking down wooden figures with a ball?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what did the cat swing at some standing wooden seals?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is knocking over blocks with a ball?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what did the cat bowl into the wooden pins?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what plays bowling with a little ball and some wood figurines?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what uses a ball to knock over some figurines?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat knocking down wooden figures with?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is a cat knocking over blocks with?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what knocks over toys with a ball?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat knock over toys with?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what does a cat use to knock over some figurines?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is batting a ball away?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is knocking down objects?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is playing with a ball?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat a ball away?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"batting\"\n  },\n  {\n    \"question\": \"what is a cat playing with?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what plays with a ball?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is playing bowling?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what rolls a ball?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what does a cat play with?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"ball\"\n  },\n  {\n    \"question\": \"what is the cat playing?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"bowling\"\n  },\n  {\n    \"question\": \"what is bowling?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"cat\"\n  },\n  {\n    \"question\": \"what is a cat volleys a small ball then doing?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"knock\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"bat\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"paw\"\n  },\n  {\n    \"question\": \"what is a cat doing?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a cat plays doing?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"bowl\"\n  },\n  {\n    \"question\": \"what is the cat doing?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is the cat swung a ball at some doing?\",\n    \"video_name\": \"zuYZ5kPatJE_78_116\",\n    \"answer\": \"stand\"\n  },\n  {\n    \"question\": \"who rides a horse through a river bed?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who rides a horse near a river?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a horse by a creek?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what a man rides through a river bed?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man riding a horse looking around?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"forest\"\n  },\n  {\n    \"question\": \"who rode his horse by the river?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding by a creek?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what did the man ride his horse by?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"river\"\n  },\n  {\n    \"question\": \"what did the man ride by the river?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"who is riding on a horse?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a white horse?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"who is riding a horse?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a man riding on?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is someone riding?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man riding?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is the man riding?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"horse\"\n  },\n  {\n    \"question\": \"what is a man doing?\",\n    \"video_name\": \"zulPFoY64wE_26_33\",\n    \"answer\": \"sit\"\n  },\n  {\n    \"question\": \"how many kids are sliding down a slope that is covered with a sheet of wet plastic?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a couple of kids sliding down on a wet tarp?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"hill\"\n  },\n  {\n    \"question\": \"how many children are sliding down some plastic?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are children sliding on?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"what do kids slide down?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"how many children are sliding?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"two\"\n  },\n  {\n    \"question\": \"what are a girl and a boy sliding down?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are some kids going down?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are the kids moving down?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"water\"\n  },\n  {\n    \"question\": \"what are two children sliding down?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"plastic\"\n  },\n  {\n    \"question\": \"who is sliding?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what are a girl and a boy doing?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what are children doing?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what are two kids doing?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what are a couple of kids doing?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what are two children doing?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"slide\"\n  },\n  {\n    \"question\": \"what are the kids doing?\",\n    \"video_name\": \"zv2RIbUsnSw_159_162\",\n    \"answer\": \"move\"\n  },\n  {\n    \"question\": \"who medical personnel wheel into a hospital room?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is wheeled into a hospital on a gurney?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is wheeled into a hospital on a stretcher?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who did the paramedics bring into the hospital on a gurney?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"lady\"\n  },\n  {\n    \"question\": \"what is a person in a hospital bed getting wheeled into?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"what did the paramedics bring a lady into on a gurney?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"who does the paramedics brought in on a stretcher?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"patient\"\n  },\n  {\n    \"question\": \"what did the paramedics bring a lady into the hospital on?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"gurney\"\n  },\n  {\n    \"question\": \"what is a woman on a gurney wheeled into?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"what is a pregnant woman wheeled into on a stretcher?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"what is a woman on a gurney being pushed into?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"room\"\n  },\n  {\n    \"question\": \"who is riding on an ambulance stretcher?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"who is pushing a stretcher with a patient in it?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"man\"\n  },\n  {\n    \"question\": \"what is a woman wheeled into on a gurney?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"what is a pregnant woman wheeled into a hospital on?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"stretcher\"\n  },\n  {\n    \"question\": \"what is a woman wheeled into a hospital on?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"gurney\"\n  },\n  {\n    \"question\": \"who is riding on a hospital stretcher?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what does the paramedics brought in a patient on?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"stretcher\"\n  },\n  {\n    \"question\": \"who is being pushed on a stretcher?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"person\"\n  },\n  {\n    \"question\": \"who is being wheeled into the hospital?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"woman\"\n  },\n  {\n    \"question\": \"what is a man pushing with a patient in it?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"stretcher\"\n  },\n  {\n    \"question\": \"what is the woman being wheeled into?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"hospital\"\n  },\n  {\n    \"question\": \"what is a person being pushed on?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"stretcher\"\n  },\n  {\n    \"question\": \"what is a man being pushed on?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"stretcher\"\n  },\n  {\n    \"question\": \"what are emt 's doing?\",\n    \"video_name\": \"zv2RIbUsnSw_335_341\",\n    \"answer\": \"push\"\n  },\n  {\n    \"question\": \"who is riding a bicycle on a road near a beach?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is riding a bicycle by the beach?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is riding a cycle on a beach?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl riding on a road near a beach?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"when is a girl riding on a beach?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"what is a woman with a backpack cycling on by the beachside?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"road\"\n  },\n  {\n    \"question\": \"what is a woman with a backpack cycling on a road by?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"beachside\"\n  },\n  {\n    \"question\": \"what is a girl riding a bicycle by?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a girl riding a cycle on?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"beach\"\n  },\n  {\n    \"question\": \"what is a girl riding by the beach?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what did the girl ride in the beach bike lane?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is riding on a bicycle?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is traveling in a bike?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is riding a bicycle?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"who is riding a bike?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl riding on?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is a girl traveling in?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"what is a girl riding?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what is the woman riding?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"bike\"\n  },\n  {\n    \"question\": \"who is cycling?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"girl\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"what is a girl doing?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"travel\"\n  },\n  {\n    \"question\": \"what is a woman with a backpack doing?\",\n    \"video_name\": \"zxB4dFJhHR8_1_9\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"who is playing on a stationary bike?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is exercising on an exercise machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is riding an elliptical machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing on a stairmaster?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is operating an exercise machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is using a cross trainer?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is using an exercise machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is using a ski machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is doing exercise by cycle?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is doing exercise on machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is a little boy playing on?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"stairmaster\"\n  },\n  {\n    \"question\": \"who rode an exercise machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who rode the exercise machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who plays on an exercise machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"who is playing on exercise equipment?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"kid\"\n  },\n  {\n    \"question\": \"who is a small boy using?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"trainer\"\n  },\n  {\n    \"question\": \"who is on the exercising machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"when is a boy doing exercise?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"cycle\"\n  },\n  {\n    \"question\": \"who uses an exercise machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"who is on a elliptical?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"child\"\n  },\n  {\n    \"question\": \"what is a young child operating?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"who is riding a bicycle?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what is a young boy using?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"what is a boy doing by cycle?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a little boy using?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a boy doing on machine?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a boy doing exercise on?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"machine\"\n  },\n  {\n    \"question\": \"who is using exercise equipment?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"boy\"\n  },\n  {\n    \"question\": \"what did the little boy ride?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a kid playing on?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what is a little boy riding?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"bicycle\"\n  },\n  {\n    \"question\": \"what does a child use?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a boy using?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"equipment\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a boy doing?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a kid doing?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a little boy doing?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"play\"\n  },\n  {\n    \"question\": \"what is a small boy doing?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"use\"\n  },\n  {\n    \"question\": \"what is a young boy doing?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"exercise\"\n  },\n  {\n    \"question\": \"what is a young child doing?\",\n    \"video_name\": \"zzit5b_-ukg_5_20\",\n    \"answer\": \"operate\"\n  }\n]"
  },
  {
    "path": "model/univi/eval/questions/video_qa/temporal_qa.json",
    "content": "[{\"Q\": \"What is the first activity that the boy wearing a red t-shirt and black shorts performs in the video?\", \"A\": \"In the video, the boy wearing a red t-shirt and black shorts starts his routine by swinging on the bars and doing a handstand.\", \"video_name\": \"v_p1QGn0IzfW0\"}, {\"Q\": \"Can you describe the sequence of events in the video related to the movements of the women dancers?\", \"A\": \"The video starts with a group of five women dancers entering the stage from the right and stand with facing away from the audience. They slowly turn around as the music starts and begin belly dancing. At the end of the performance when the music slows down, the women once again turn around and hold up their right hands in the air.\", \"video_name\": \"v_hFi6S_guB7I\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"In the video, a man talks to the camera in front of a fence behind which a stadium is lit by floodlights. People can be seen scattered throughout the field. The next clip shows a person wearing a body cam running on the kickball field, followed by a man throwing the ball underhanded towards waiting players. A player kicks the ball into the air and runs some distance, which is also shown from the bodycam footage. This is followed by a clip of the man being filmed kicking the ball. In the next clip, the cameraman walks towards a person, focuses on the man wearing a blue t-shirt and wearing a bodycam. The cameraman then focuses on a man in a black t-shirt and wearing a kilt. The next clip shows bodycam footage of a man running on the field playing kickball, followed by a man in a blue T-shirt, wearing a bodycam, speaking to the cameraman. Finally, the man in the blue T-shirt runs towards the ball and the video ends with a man in a darkened room speaking into the camera.\", \"video_name\": \"v_18yZR3NDaXM\"}, {\"Q\": \"What activity is the woman doing in the first clip?\", \"A\": \"In the first clip, the woman is turning the tap on, pouring soap on a board and scrubbing dishes in the kitchen sink while speaking to the camerawoman.\", \"video_name\": \"v_BjjN_aq_wq4\"}, {\"Q\": \"What did the man and woman do after entering the bathroom?\", \"A\": \"After entering the bathroom and stepping out, the woman was carrying a bucket and both of them were laughing. The woman was wiping tears and both of them were speaking into the camera.\", \"video_name\": \"v_DJTvj9lfSWU\"}, {\"Q\": \"What is the man doing while speaking with the cameraman, and what kitchen item is he washing at that moment?\", \"A\": \"The man is washing dishes in the kitchen and is specifically washing a tea strainer while talking and laughing with the cameraman.\", \"video_name\": \"v_0BtHd6dvm78\"}, {\"Q\": \"What are some of the different scenes shown in the video and how are they related temporally?\", \"A\": \"The video begins with a man sailing a dinghy during daytime with cloudy skies and a visible pier in the distance. This is followed by clips of different dinghies sailing fast through the water. In one scene, a dinghy with red and white sails is shown, followed by a dinghy with a white sail, and then a few more dinghies sailing fast. Towards the end of the video, a man in a red wetsuit is shown maneuvering his dinghy, followed by clips of other sailors moving their dinghies around. The video ends with the man with the red sails leaning on his dinghy and maneuvering it, thus continuing the temporal sequence of events that began at the start of the video.\", \"video_name\": \"v_dKJMP8EmZjw\"}, {\"Q\": \"What does the man do after placing his shoe on the mat?\", \"A\": \"After placing his shoe on the mat, the man applies the liquid and the polish to a piece of cloth and polishes the shoe with it.\", \"video_name\": \"v_kGdxtU3NwWo\"}, {\"Q\": \"What happened after the team on the left missed their hit?\", \"A\": \"After the team on the left missed their hit, a player at the back hit the ball to the other side and the team on the right missed their hit. The team on the left had the exchange and the camera panned to the spectators who were celebrating.\", \"video_name\": \"v_UZm05CvtxkA\"}, {\"Q\": \"What events occur during the man's haircut?\", \"A\": \"The video shows the boy starting the haircut by running a trimmer through the middle of the man's head, with other people walking in and out of the shot behind him. Another individual takes the trimmer from the boy and starts trimming the hair of the man. As the man's haircut ends, a man wearing a black coat brings out a chocolate cake, and the others sing. Finally, an image of the man's face smeared with chocolate cake is shown at the end of the video.\", \"video_name\": \"v_b4xvXZq5uD8\"}, {\"Q\": \"What is the first thing that the woman does when the video starts?\", \"A\": \"The woman starts scrubbing the dirty pots after pouring soap into a dirty pot in the sink and filling it with water.\", \"video_name\": \"v_aLb79wtvxoQ\"}, {\"Q\": \"What time of the day does the video start and what are the players doing?\", \"A\": \"The video starts during the daytime and the four men are playing beach volleyball near the shores using only their heads and legs to punt the ball back and forth. Another man is standing near the right pole and trees are visible in the far back. A few boats are sailing in the sea. There is a lawn visible to the left of the players.\", \"video_name\": \"v_oR8o_PuKS28\"}, {\"Q\": \"What happens after the girl combs her friend\\u2019s hair?\", \"A\": \"After the girl combs her friend\\u2019s hair, she starts posing with her friend by doing a thumbs-up gesture and hugging her. They both laugh and give flying kisses to the camera. Then, the girl with the brush points her finger at the camera and her friend points her finger toward her nose, after which the video ends.\", \"video_name\": \"v_YIq3Tar9x6s\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The athlete, wearing a blue and red jersey and white and red sports shoes, walks toward the center surrounded by a green net that is tied on silver poles. He starts swinging the hammer using both hands and then rotates his whole body to throw the hammer in the air. The video ends with him throwing the hammer and walking out of the throwing circle.\", \"video_name\": \"v_U3-MtKZeUXM\"}, {\"Q\": \"In what order does the athlete perform some of his routine techniques on the pommel horse?\", \"A\": \"After the athlete grips the handles on the pommel horse and starts his routine by doing a circle around the horse, he follows up with scissors and a handstand. He then continues his routine with other techniques before doing a routine where he does a circle by moving the length of the pommel horse, and finishes up with a handstand plus an upside down split. \", \"video_name\": \"v_KlgrI3Ngwv0\"}, {\"Q\": \"What type of drills are the children doing in the video?\", \"A\": \"The children are doing punch and kick drills while moving forward and back.\", \"video_name\": \"v_jN-jnIgzd6k\"}, {\"Q\": \"What is the sequence of people jumping off the bungee platform in the video?\", \"A\": \"In the video, first a boy jumps off the bungee platform followed by a woman and lastly, a man in yellow t-shirt jumps while holding his hands wide.\", \"video_name\": \"v_araMJB23T1s\"}, {\"Q\": \"What is the sequence of steps followed by the man while cleaning the leather sofa?\", \"A\": \"The man first sprays foam cleaner on the brush and starts cleaning the couch, then proceeds to degrees the damaged areas by spraying some cleaner on a towel and wiping the surface of the sofa. He then sand rough surfaces using a scrub pad, followed by the use of some color refresh liquid applied with a piece of sponge to wipe the couch. The surface of the sofa is then dried using a hair dryer. He then applies some more color refresh liquid on a sponge and wipes the sides of the cushion on top of the sofa. Finally, a UV protection liquid is used on the sofa and the end result was a clean sofa.\", \"video_name\": \"v_dW6OZV43ulU\"}, {\"Q\": \"What is the sequence of events for painting the woman\\u2019s nail in the video?\", \"A\": \"First, the man applies black ink to the woman\\u2019s index finger nail using a small brush and she places her fingers under a curing lamp to dry the ink. Next, he applies glitter of different colors on the black-painted nail and then seals the glitter with an instant seal. Finally, he applies cuticle oil around the nail.\", \"video_name\": \"v_q_QR5HoROhI\"}, {\"Q\": \"What does the man do before he throws the hammer?\", \"A\": \"Before throwing the hammer, the man wearing a white T-shirt and shorts steps into the throwing circle on a concrete patch of a field while carrying the hammer attached to a handle through a metal string. He swings the hammer a few times, then spins in place before turning around and throwing the hammer towards the open field on the left.\", \"video_name\": \"v_qsEnLQ2UnEA\"}, {\"Q\": \"What items did the little girl wash in the video, and in what order?\", \"A\": \"The little girl washed a glass, a spoon, a pot, a plate with Dora the Explorer on it, and a plastic jar. In that order, she washed the glass first, followed by the spoon, pot, Dora plate, and finally the plastic jar at the end of the video.\", \"video_name\": \"v_JcAAwYpJhm8\"}, {\"Q\": \"What does the man in the red sleeveless shirt do while getting tattooed?\", \"A\": \"The man in the red sleeveless shirt is rapping while getting tattooed in the well-lit tattoo studio.\", \"video_name\": \"v_ZwK52lXCbhA\"}, {\"Q\": \"What is the result of the last exchange in the video?\", \"A\": \"The last exchange in the video is between Latvia and Italy, and Latvia wins it.\", \"video_name\": \"v_aYxni8ohTfU\"}, {\"Q\": \"What is the first maneuver the man in black shorts performs on the parallel bars and what is the final maneuver he performs before attempting a backswing?\", \"A\": \"The man in black shorts performs a handstand as his first maneuver on the parallel bars, and he finishes his routine by performing multiple backswings. However, he is unable to stick the landing and turns to the camera smiling after attempting the trick.\", \"video_name\": \"v_6Xsfwn5M6qs\"}, {\"Q\": \"What is the temporal sequence of events in the video of the woman wrapping a box?\", \"A\": \"First, the woman wraps the box with orange gift wrap and applies tape as she folds each corner. Then, she tucks the wrapping paper on the sides and folds the last edge. She tapes it shut using a paper sticker with Chinese characters and the word \\\"ROGUE\\\" on it. After that, she wraps a folded green cloth around the gift-wrapped box, ties it into a knot, and holds it to the camera.\", \"video_name\": \"v_Mf3IyeMF8ug\"}, {\"Q\": \"What is the sequence of events in the video as the man cleans the glass door?\", \"A\": \"In the video, the man first wipes the glass door with a wiper, then picks up a smaller wiper from his right, and wipes the glass again. Afterwards, he uses the larger wiper to wipe the glass once again. He then sprays cleaning fluid on the glass and wipes it with a blue towel. Finally, the video ends with the man kneeling down to wipe the bottom half of the glass door. All the while, he is wearing a dark blue shirt and khaki pants, and is performing the cleaning during daytime. The door itself is made of glass framed in wood.\", \"video_name\": \"v_CecqF_uHeOI\"}, {\"Q\": \"What happens after the ball lands near the front player?\", \"A\": \"The front player is pushed into the pool from behind and the person who pushed her down snatches the ball.\", \"video_name\": \"v_7-taNK5mW8E\"}, {\"Q\": \"What is happening when the video begins?\", \"A\": \"At the start of the video, four men are standing in a row over blocks of wood placed on a stand on the ground, wearing blue polo shirts and white trousers, holding axes in their hands, while in a studio with overhead lights and boom mics hovering above. They are about to start a wood-chopping competition.\", \"video_name\": \"v_IcR28Yqt4mY\"}, {\"Q\": \"What is the sequence of events in the video related to Ukhov's high jump?\", \"A\": \"The video starts with Ukhov preparing for a high jump, followed by his run towards the bar and clearing it by flopping backward. Ukhov then walks towards the side of the bar and away from the field. A clip of a man watching the jump in the stands is shown, while he turns away after the jump. A little boy, standing beside the man and with his hand over his mouth, is also shown in the clip. The video ends by showing a replay of Ukhov's jump.\", \"video_name\": \"v_B3xMfP_UOt4\"}, {\"Q\": \"What is happening to the ship in the video?\", \"A\": \"The ship in the video is dangerously tilted left and looks like it is about to capsize.\", \"video_name\": \"v_4XnXyKYxnQQ\"}, {\"Q\": \"What happens after the two boxers start clinching?\", \"A\": \"After the two boxers start clinching, they keep both their hands on top of each other shoulders and try to hit each other with their knee. \", \"video_name\": \"v_Y9d4iPDeigI\"}, {\"Q\": \"What is happening when the video begins?\", \"A\": \"When the video starts, three people are outdoors in the daylight. A woman is washing clothes on the ground, using a stone. Another woman, dressed in a white top and jeans, is watching her wash the clothes, while a young girl with her hands folded stands behind her. They are standing next to a white-walled house with a partially open window. A few cars are parked in front of the house.\", \"video_name\": \"v_qtKa7Lr3URA\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video starts with the boy lifting himself up from parallel bars and swinging back and forth by holding one hand on each bar. He then drops to the ground after swinging a few times. Other people are visible in the back of the well-lit gym, with foam mats on the floors under other equipment.\", \"video_name\": \"v_P7Z4i1gmzjs\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video starts with a man seated in a barber chair looking through a magazine. He is followed by other customers who are getting their hair cut. Next, a man is shown getting his hair washed by a barber. After that, there is a shot of people waiting outside the salon. Finally, the video ends with a man getting his hair cut by the barber who finishes by holding a mirror for him to check his haircut\", \"video_name\": \"v_ojIhxWrBM0s\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video starts with a woman punching into a punch mitt worn by a man, followed by her kicking the kick pads and focus pads worn by two other men. She then returns to the man wearing the punch mitts and starts punching it again. In the next clip, the man wearing punch mitts is replaced with boxing gloves and punches the punch mitts worn by the woman, followed by him kicking the two different pads worn by other men. He then returns to the woman and starts punching the mitts again. These sequences are repeated a few times before the video ends with club contact information.\", \"video_name\": \"v_hq48S65dlyo\"}, {\"Q\": \"What is the last event in the video?\", \"A\": \"The last event in the video is that the woman is still cutting the boy's hair.\", \"video_name\": \"v_w4pO-1-FG5w\"}, {\"Q\": \"What is the first scene shown in the video and where does it take place?\", \"A\": \"The first scene of the video shows a little boy standing in a parking lot in the daytime, wearing a black t-shirt and holding a juice box in his left hand. The back end of a white van is visible behind him, along with two skateboards and a blue cooler with a can of Red Bull next to him.\", \"video_name\": \"v_gWbIoFrpwTY\"}, {\"Q\": \"What does the woman do after brushing the horse's torso and face?\", \"A\": \"After brushing the horse's torso and face, the woman proceeds to brush the horse's tail. She then uses a hoof pick to clean its hoof. After that, she inspects the back left hoof of the horse and brushes its mane before cleaning her brushes and ending the video.\", \"video_name\": \"v_vo2M4sY0E38\"}, {\"Q\": \"Who is dancing on the left side of the floor at the start of the video?\", \"A\": \"At the start of the video, a man in a purple dress shirt with the number 3 on his back is dancing on the left side of the floor.\", \"video_name\": \"v_eoSwoeLmeyQ\"}, {\"Q\": \"What was the first scene in the video and how was the gymnasium described?\", \"A\": \"The video started with children practicing in a well-lit gymnasium with cream color walls, blue mattresses on the floor and armbars and balance beams installed. Windows were located on the left side of the children practicing and there was a small wall clock on the left side of the gym. Some trophies were kept on the edge of the window. \", \"video_name\": \"v_WOUkPgHtt4E\"}, {\"Q\": \"What is the sequence of events in the video related to the game of dodgeball?\", \"A\": \"The video starts with text appearing on a yellow background. Next, a group of people is seen standing on one side of a basketball court in the daytime. The court is surrounded by a chain link fence and there are cars parked outside next to the sidewalk. The team starts a game of dodgeball with another team standing on the other side of the basketball court, with spectators outside the fence taking pictures. As the game progresses, the team on the left loses one player after another and the last player tries unsuccessfully to throw a ball with each hand. She then gets hit in the legs and walks away, causing the winning team to exit the court.\", \"video_name\": \"v_RjztFj0Zl40\"}, {\"Q\": \"What happens at the end of the video?\", \"A\": \"The video ends with the man playing the saxophone raising his hand and completing his performance.\", \"video_name\": \"v_tSNg5rvDvVc\"}, {\"Q\": \"What is the sequence of hammer swings by the man on the circular platform in the video?\", \"A\": \"The man on the circular platform first swings the hammer around his body two times and then swings it two more times while also turning. He releases the hammer through the open side of the cage on the fifth swing.\", \"video_name\": \"v_1d_U_2HIPmY\"}, {\"Q\": \"Can you describe the temporal sequence of events in the weightlifting competition?\", \"A\": \"The weightlifting competition starts with weightlifters lifting big dumbbells on black mats laid out on a grassy field, with an audience watching. The weightlifters start with a weightlifting attempt one by one. First, the weightlifter in front lifts the dumbbell using both his hands, lifts it for some time and drops it. Then, the weightlifter behind him tries but struggles to lift the dumbbell and drops it. Both weightlifters apply powder to their hands from the bucket and then the one in the back attempts to lift the dumbbell again but drops it. Finally, the weightlifter in the front lifts the dumbbell and drops it after some time before raising his hand for the audience and walking off the mat.\", \"video_name\": \"v_Y16uL6dYDzQ\"}, {\"Q\": \"What happens after the woman brings lollies to the crying girl in the salon?\", \"A\": \"After the woman brings lollies to the crying girl in the salon, the barber starts cutting her hair with a comb and scissors while kneeling in front of her. The girl continues to cry while the woman sprays water on her hair and then moves to the back to cut and comb the hair at the back of her head. The video ends with the woman doing touch-up cuts and combing the girl's hair.\", \"video_name\": \"v_Hz7-mBFGsSs\"}, {\"Q\": \"What is the man doing after he turns around while mowing the lawn?\", \"A\": \"After turning around, the man continues to mow the lawn as he mows one section after another.\", \"video_name\": \"v_wiaZCl-poRw\"}, {\"Q\": \"What happens towards the end of the video with the children performing on stage?\", \"A\": \"Towards the end of the video, the children speed up their music and the screen fades.\", \"video_name\": \"v_qqZLs6j3YII\"}, {\"Q\": \"What is the last event depicted in the video?\", \"A\": \"The last event depicted in the video is Cole running and avoiding a player from the opposite team.\", \"video_name\": \"v_B_U7vUtoCKY\"}, {\"Q\": \"What is the first event shown in the video and how does it end?\", \"A\": \"The video starts with a man getting his shoes shined and ends with the man finishing polishing his shoes.\", \"video_name\": \"v_IRBrTKrVCxo\"}, {\"Q\": \"What do the two men sitting at the table do while having beer?\", \"A\": \"While having beer, the two men sitting on the table pull out their shoes and add beer to them. They both simultaneously drink the beer from their shoes while the people around them cheer and make videos. After drinking the beer, they raise both their hands in the air and high-five each other.\", \"video_name\": \"v_xS5JDBeMxOs\"}, {\"Q\": \"What is the sequence of events that occur in the video?\", \"A\": \"The video starts with a boy throwing a ball to some kids who are playing in a grassy field that is surrounded by a metal fence with huge light poles. Some cars are parked outside the field and there are also cars running outside the field. The sequence of events that occur is that the boy throws the ball to some other kid, the kid kicks the ball and another boy catches it. The boy again throws the ball, the kid kicks it and it goes far in the back where a girl was unable to catch it. The boy throws it again and the kid kicks it, a boy catches the ball and bumps the ball into another boy. This sequence continues for the rest of the video as someone throws the ball, another kid kicks it and runs across the field while someone catches the ball and bumps the ball into some other kid.\", \"video_name\": \"v_-uJnucdW6DY\"}, {\"Q\": \"What is the order of events in the video starting from the gift-wrapping montage?\", \"A\": \"The video starts with a montage of gift wraps and gift-wrapped gifts. Next, there is a clip of two women in a well-lit room standing by a gift-wrapping table. The woman on the right slips a gift card in a wrapped gift box. Then, the woman on the left starts to fold a wrapping paper and starts to wrap it around a box. She finishes wrapping the box and tapes it shut. She then tucks a gift card in a fold in the wrapping. Finally, both women exchange wrapped gifts and show them to the camera.\", \"video_name\": \"v_PzJsoZT2hXk\"}, {\"Q\": \"What is happening in the beginning of the video and what can be seen in the barbershop?\", \"A\": \"The video starts in a barbershop where a woman is giving a haircut to a customer. The shop has a dark brown wooden door with a broom hanging on the side of it. The shop is well-lit with overhead lighting and has white walls. The customers are wearing white cloth capes and there are mirrors in front of them. There is also a whiteboard mounted on a wooden railing behind the customers with some text on it.\", \"video_name\": \"v_YAMhMB1jdio\"}, {\"Q\": \"What was the sequence of events portrayed in the video?\", \"A\": \"The video starts with a news reporter in a dark grey coat talking about TACK. Then, the frame changes to a cricket match taking place on a grassy cricket field with huge stadium lights. Next, the frame changes to a news reporter interviewing the patron-in-chief of TACK while wearing a blue jersey. The scene then switches back to the cricket match. The frame changes again to another reporter interviewing the president of TACK, who is wearing a white shirt and black coat. Later, the camera shifts to a news reporter interviewing the Pakistan ambassador while being in a grey full-sleeve top and holding a book. The ambassador is wearing a black coat and a light blue shirt. There are many people in the background, and a huge stadium light is visible. Finally, the video shows the earlier cricket match one more time, followed by a news reporter in a grey full-sleeve top and a dark blue T-shirt holding a mic and standing in front of trophies on a white table. The video ends with the reporter ending the reporting.\", \"video_name\": \"v_EWNqkVaOfbE\"}, {\"Q\": \"What happens after the men start playing squash on the court?\", \"A\": \"After the men start playing squash on the court, they run around on the court and hit the ball toward the wall while continuing to play their game.\", \"video_name\": \"v_Pjnuoa4o55c\"}, {\"Q\": \"What is the sequence of events in the video related to the man swinging from the parallel bars?\", \"A\": \"The man is swinging back and forth from the bottom of the parallel bars while upside down. He then rightens himself and goes back to the previous position.\", \"video_name\": \"v_QOsG3BeQeX0\"}, {\"Q\": \"What does the video start with and what is the woman wearing?\", \"A\": \"The video starts with a woman rowing an orange kayak down a rapid river. She is wearing a life vest and a white helmet.\", \"video_name\": \"v_7pfHxav4b0U\"}, {\"Q\": \"What does the woman do after standing next to the man in the gym?\", \"A\": \"After standing next to the man in the gym, the woman climbs the resistance machine and starts pedaling. She adjusts the settings before continuing to pedal.\", \"video_name\": \"v_htzAYwoAZkg\"}, {\"Q\": \"What is the sequence of events in the video with respect to the ping pong game played by Kevin Spacey and Rafael Nadal?\", \"A\": \"The video starts with Kevin Spacey and Rafael Nadal on stage wearing tuxedos and talking for a moment before walking to the other side of the stage. As they walk over, three people wearing white hats carry a ping pong table and hand paddles and ping pong balls to the two men. Rafael Nadal serves and the two play three games. In the last game, Kevin Spacey wins and celebrates by shaking hands with Nadal. The video then ends with a woman walking up to Kevin Spacey and placing a garland around his neck.\", \"video_name\": \"v_ijrjRNwZjqQ\"}, {\"Q\": \"What happens after the camera focuses on a few windsurfers?\", \"A\": \"After the camera focuses on a few windsurfers, a woman behind a sailboat appears to be assembling her sailboard. In the next clip, the woman is seen climbing back onto her sailboard in the sea after falling into the water. Her sail appears to have fallen into the water as well.\", \"video_name\": \"v_IhmtmKxEU40\"}, {\"Q\": \"What did the man do after he stopped speaking?\", \"A\": \"After stopping to speak, the man continued to chop the log. Pieces of the log were seen flying off in different directions and the video ended as the log broke into two pieces.\", \"video_name\": \"v_zxpQHLwZCug\"}, {\"Q\": \"What happens at the end of the video?\", \"A\": \"At the end of the video, the dancing couple stops dancing and separates. The man in a white shirt walks away.\", \"video_name\": \"v_uvglcAUnQv0\"}, {\"Q\": \"What are some of the events that occur in the video from start to finish?\", \"A\": \"At the start of the video, a man is sitting at the edge of a pool with a small child sitting on the pool wall. Another person dives into the water. Afterwards, the toddler washes her face with pool water twice while the man holds onto her. Meanwhile, another boy with a towel walks by. A person wearing a green swim cap is seen swimming behind the man. Finally, the video ends with the toddler attempting to stand and then immediately sitting back down.\", \"video_name\": \"v_3zpODTqnYLs\"}, {\"Q\": \"What is the girl doing at the beginning of the video and what is her attire?\", \"A\": \"At the beginning of the video, the girl is sitting on a carpeted floor in a darkened room with little light. She is wearing a blue T-shirt and shaving her left leg while occasionally talking to the camera person.\", \"video_name\": \"v_1KONAdZGdWU\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video begins with a man playing the saxophone on stage wearing a black suit and white shirt, while backing musicians are seen further back playing various instruments. The man plays his saxophone while close-ups of him are shown on the screen. A cutaway of various instruments being played by backing musicians is shown, followed by a wide-angle shot of the audience sitting on both the ground floor and balcony. The man continues to play the saxophone, and a music stand with a transparent top is placed next to him. The video ends with the end of his performance and a shot of the audience members applauding him. The auditorium appears to be full, and the stage has a blue-curtained background with red floors and a set of stairs in front of the saxophonist.\", \"video_name\": \"v_DIhyfNJAm-M\"}, {\"Q\": \"What is the sequence of events in the video related to the woman practicing weightlifting movements?\", \"A\": \"At first, the woman practices the movement patterns of weightlifting holding a bar without weights in her hand in the small gym. In the next clip, a barbell with red colored weights is placed in front of her and she lifts the barbell two times following the movement patterns she practiced before.\", \"video_name\": \"v_K6QunmuTZOQ\"}, {\"Q\": \"How does the man iron the shirt and what does he do afterwards in the video?\", \"A\": \"The man irons the shirt one section at a time and finishes both sides. He then puts the ironed shirt over a clothes hanger. Subsequently, he places the shirt again on the ironing stand to iron a small portion and hangs the shirt among other ironed shirts.\", \"video_name\": \"v_l7qSKJyq6mA\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The video starts with a woman laying down while a man pierces her belly button. The man uses a needle piercer to insert the piercing, secures it by screwing on a ball, and the woman speaks to the person holding the camera while this is happening. Once the jewelry is secured, the woman gets up. \", \"video_name\": \"v_2VZumBKJuPs\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"In the video, a man wearing a dark-colored t-shirt is sitting behind a table that has shoes placed on it. He is holding up a white shoe. Next, the table with the three shoes, a pack with various cleaning supplies, and a glass of water at the back are shown. Then, the man is sitting behind the table holding a Nike shoe. A bottle of clear liquid, with the label \\\"JASON MARKK\\\" is on the table next to the shoes. A hand brush is placed next to the bottle of liquid. In the following clip, the man shows all sides of different shoes. The man then dips the hand brush in the glass of water and adds the liquid from the bottle. He proceeds to clean a shoe with the brush before wiping the foam with a cloth. Finally, he cleans the rest of the shoes on the table and holds the clean shoes to the camera along with the pack of cleaning supplies.\", \"video_name\": \"v_T7YcO-sOLuU\"}, {\"Q\": \"What is the sequence of events in the video while the man throws the discus?\", \"A\": \"The man builds momentum by holding the discus out in his right hand and spins slowly. After spinning the discus a few times, he releases it and walks toward the landing area. The sequence of events includes building momentum, spinning, releasing the discus, and walking to the landing area.\", \"video_name\": \"v_OkvWTZ4XLyM\"}, {\"Q\": \"What time of the day were the women dancing under the tree's shadow?\", \"A\": \"The women were dancing under a tree's shadow during the daytime.\", \"video_name\": \"v_7EeO9V2B574\"}, {\"Q\": \"What drill are the players practicing on the basketball court and how does the coach assist them?\", \"A\": \"The players are practicing a drill where they take the ball and dunk it into the hoop with a spin. The coach passes the ball to the players and helps them by blocking their shots and giving instructions.\", \"video_name\": \"v_sPK-sbHIb3w\"}, {\"Q\": \"When does the fight start and where are they located?\", \"A\": \"The fight starts during the daytime when the man and woman are standing under an overpass. They take a fighting pose in the shadow of the overpass. There is a wall with graffiti behind them.\", \"video_name\": \"v_IgDBDaIoNAM\"}, {\"Q\": \"What is the order of events captured in the video?\", \"A\": \"The video starts on a hockey field with players wearing orange uniforms playing field hockey. In the next clip, several players are visible on the field, leaning forward and waiting for a player to hit the ball. In the next clip, several girls from other teams are introduced, and individual players are speaking into the camera. In the next clip, a coach is instructing players. The next few clips are of players on the field standing and being instructed, and individual players being interviewed. A still photo of a team is shown, followed by a play of the game as players are on the field chasing a ball. Two teams are visible. As the clip of the game is being played, a coach is speaking into the camera. The video ends with a goal in the game by a player in an orange uniform.\", \"video_name\": \"v_325CAs4hhq8\"}, {\"Q\": \"When does the video end?\", \"A\": \"The video ends as the man finishes playing the accordion.\", \"video_name\": \"v_CTJej0rZMiI\"}, {\"Q\": \"What happens when the woman wearing the scarf walks up to the man playing the piano?\", \"A\": \"When the woman wearing the scarf walks up to the man playing the piano, she speaks to him briefly before beginning to sing as he continues playing. A man in a white jacket can be seen walking behind and to the right of the singing woman. People look at the dancing man and cheer, and the man is seen finishing his dance before the video continues with the man playing the piano and the woman singing.\", \"video_name\": \"v_CTyvQHkAKuY\"}, {\"Q\": \"What is the sequence of events in the girl\\u2019s performance on the balance beam?\", \"A\": \"The girl mounts the balance beam, performs a backflip, does jumps, balancing and skipping on the beam, and finishes her routine with a running front flip off the beam and a flourish.\", \"video_name\": \"v_3M290KZV5lo\"}, {\"Q\": \"What is happening at the start of the video and who is involved?\", \"A\": \"At the beginning of the video, a woman is wearing a white top and sitting on a chair in a tattoo parlor, while a tattoo artist wearing black outfit and black nitrile gloves is starting to tattoo the woman\\u2019s right wrist. The woman has put her wrist on the arm of the chair. Other people can be seen sitting on chairs on the side.\", \"video_name\": \"v_TEgPIueNqTI\"}, {\"Q\": \"What does the man do with the banana peel in the video?\", \"A\": \"In the video, after the man peels a banana, he uses the peel to wipe a single black dress shoe placed on each of his thighs. He wipes all sides of the shoe and holds it to the camera before throwing the used peel to the side.\", \"video_name\": \"v_itXYuf_Cj_Q\"}, {\"Q\": \"What does the man do before drinking from the glass?\", \"A\": \"The man smokes from the hookah and blows smoke rings before picking up the glass filled with beer and blowing smoke into it before drinking.\", \"video_name\": \"v_mNiFmkm5OZA\"}, {\"Q\": \"What is the last thing the little boy does in the video?\", \"A\": \"The little boy finishes playing the violin forcefully by playing the last three notes.\", \"video_name\": \"v_JspVuT6rsLA\"}, {\"Q\": \"What time of day does the polo game take place in the video?\", \"A\": \"The game takes place during the daytime, as mentioned at the beginning of the video.\", \"video_name\": \"v_cPIsE2ZCWzM\"}, {\"Q\": \"What does the man do after he removes the crankset from the bike?\", \"A\": \"After removing the crankset from the bike, the man wipes the grease off of the crankset and the bottom bracket with a paper towel. He then applies something from a tube on the bottom bracket using his finger to spread it. Finally, he reattaches the crankset and tightens the bolt.\", \"video_name\": \"v_IL8__uSFpqg\"}, {\"Q\": \"What was the woman doing towards the end of the video?\", \"A\": \"Towards the end of the video, the woman places the comb at her side and continues to lean forward.\", \"video_name\": \"v_zTHkqpNFGno\"}, {\"Q\": \"What is the last action of the woman in the video?\", \"A\": \"The woman walks to the middle of the hall after a strike and stops.\", \"video_name\": \"v_JguRZtFN-Ck\"}, {\"Q\": \"What kind of dives were performed by the different people in the video and in what order did they occur?\", \"A\": \"Various types of dives were performed in the video, including backflip dives and front flip dives. The man in the beginning of the video performed a backflip dive, followed by a woman who jumped off a diving board and performed a separate dive. Another man did a backflip dive next, followed by a man who did a dive while facing away from the pool and then another man who did a front flip dive. The video continues with several people performing dives with flips until the end, where a man jumps off the diving board horizontally and flips before entering the pool.\", \"video_name\": \"v_cFOaL4Ir4hg\"}, {\"Q\": \"What does the person do after lighting the matchstick?\", \"A\": \"After lighting the matchstick with the striker, the person holds the lit matchstick to some kindling on the ground. He then adds more kindling over the flame and fresh firewood as well.\", \"video_name\": \"v_vska7f8Zm9s\"}, {\"Q\": \"What is the sequence of events shown in the video for making furniture polish?\", \"A\": \"The video begins with a woman wearing a white polo shirt standing behind a table in a well-lit room. She then shows the ingredients required for making furniture polish. Next, she puts a yellow funnel in a spray bottle and measures and pours olive oil and lemon juice into the bottle from different angles. She then shakes and mixes the solution by closing the lid of the bottle. Further, she removes everything from the table and sprays the solution onto the surface and rubs it with a cloth until the table is polished. Finally, the video ends with a girl in a pink top speaking to the camera.\", \"video_name\": \"v_MbjyQGdTtK8\"}, {\"Q\": \"What happened when the team on the right had the ball during the volleyball game?\", \"A\": \"When the team on the right had the ball during the volleyball game, they passed the ball between themselves four times before passing it to the other team. The other team started celebrating prematurely before the game was won, and the ball landed by them resulting in their loss. The first team then celebrated their victory. \", \"video_name\": \"v_BdRH3lpopLQ\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video starts with a man on a bungee jumping platform counting down, wearing a white shirt with a harness and a cap in a valley covered in trees during the day. Another person wearing a camera jumps off the platform, followed by a line of people waving at the camera. Next, a woman in a safety harness jumps off the platform, followed by a montage of people bungee jumping captured from different angles. Some dive while looking forward and some jump while standing backward. The video ends as a woman wearing an orange top jumps off the platform, and the screen fades.\", \"video_name\": \"v_SV3v-nA6hXM\"}, {\"Q\": \"What style of partner dancing were the two girls doing in the video?\", \"A\": \"The two girls were doing Spanish-style partner dancing in the well-lit living room. They continued dancing to music as one partner took turns spinning the other.\", \"video_name\": \"v_w46wkDledek\"}, {\"Q\": \"What is the sequence of events in the video related to the woman tennis player practicing her serve?\", \"A\": \"The woman tennis player starts practicing her serve on the outdoor tennis court. She is wearing a white top and teal shorts, and a basket of tennis balls is kept a few feet behind her. She serves the ball, which hits the opposite wall and bounces off the black wall. A man wearing a white t-shirt and black shorts is visible on the right, and the woman practices another serve which hits the black wall after bouncing once on the court. The sequence of events is the woman practicing her serve twice and hitting the black wall both times.\", \"video_name\": \"v_JHKAcpYlxkQ\"}, {\"Q\": \"Can you describe the sequence of events that occurred during the hockey game in the video?\", \"A\": \"The video starts with two teams of little girls playing hockey on a field, where one team is wearing a maroon jersey with numbers on the back and black shorts, while the other team is wearing a red jersey with numbers on the back and black shorts. The players begin the game with a hit-off and slowly move the ball around the field trying to score. The match ends as a player attempts to score a goal and is blocked by the goalkeeper, after which the game stops as the whistle is blown.\", \"video_name\": \"v_Gvc1z9qypFQ\"}, {\"Q\": \"Can you describe the temporal sequence of events from the beginning of the video until the end?\", \"A\": \"Sure, the video first shows two teams of girls playing hockey, one in blue and the other in green jerseys. Then it follows a girl with number ten jersey from the blue team, guiding the ball towards the goal while being quickly intercepted by a girl with a number nineteen jersey from the opposite team. However, she regains control of the ball and runs towards the goal. At the end of the video, the girl is again intercepted but she manages to hit the goal.\", \"video_name\": \"v_1xBdquA6dx8\"}, {\"Q\": \"In what order do the breakdancers appear in the video?\", \"A\": \"In the video, after the man in the white t-shirt finishes speaking to the crowd, a man wearing a black outfit breaks into a dance on a white sheet placed on the ground. He is followed by the man wearing the white t-shirt. The man in the white t-shirt then enters the dance area with another man and the two of them dance with their heads on the ground and spin.\", \"video_name\": \"v_kdOsmDACtqw\"}, {\"Q\": \"What happens in the video concerning the toddler\\u2019s hair?\", \"A\": \"In the video, the toddler starts with hair rollers secured in her hair while listening to her mother. In the following clip, her mother removes the hair rollers before fluffing her hair. The toddler then looks at her hair in the mirror before ultimately fluffing it herself, signaling the end of the video.\", \"video_name\": \"v_kIFHChO_-vg\"}, {\"Q\": \"What time of day was the man playing the guitar?\", \"A\": \"The man was playing the guitar during the daytime.\", \"video_name\": \"v_TB5AeIdAndA\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The video starts with the bald man explaining how to use different holes on a harmonica, followed by showing how to correctly position the harmonica near the mouth and blow. The video ends with the man playing an octave and double notes on the harmonica again.\", \"video_name\": \"v_5P9Tbut04xE\"}, {\"Q\": \"What events can be seen in the montage of stock footage?\", \"A\": \"The montage of stock footage in the video shows people crossing the street during the daytime, a person welding something in a dimly lit workshop, a monster truck driving through a muddy track and, finally, a clip of cars moving through traffic during the day.\", \"video_name\": \"v_sbnF7VVeopM\"}, {\"Q\": \"What was the sequence of events during the dance in the video?\", \"A\": \"The three women wearing gym clothes stood in front of the camera in a studio with yellow lights and a wood floor, with mirrors lining the right wall and windows visible high up on the left wall. They started dancing in a triangle formation by moving left and right and moving their hands to the music. The women continued dancing with slow and fast movements until the music stops and they all stopped dancing. After that, the lead dancer walked up to the camera.\", \"video_name\": \"v_7gaC3b5nJqs\"}, {\"Q\": \"What is happening towards the end of the video?\", \"A\": \"Towards the end of the video, both teams stop playing and walk over to the middle of the basketball court.\", \"video_name\": \"v_OESjoURo19U\"}, {\"Q\": \"What is the first thing that appears on the screen and how does the video end?\", \"A\": \"The video starts with the text 'Infection Control' on a black screen and ends as the woman throws the used tissue in a trash can. In between, the woman demonstrates how to wash her hands effectively using soap and dries her hands using tissue paper after turning off the tap.\", \"video_name\": \"v_SLHPvKh-_x8\"}, {\"Q\": \"What does the video depict about the temporal sequence of events regarding brushing teeth?\", \"A\": \"The video shows the temporal sequence of events starting from a blue toothbrush being held in front of the camera to demonstrating the brushing motion, followed by a girl wearing a white t-shirt brushing her teeth with the blue toothbrush while smiling into the camera, and ending with her removing the brush from her mouth and smiling, with toothpaste visible in her mouth.\", \"video_name\": \"v_15yU0R2MBQM\"}, {\"Q\": \"What is the temporal sequence of the events in the video?\", \"A\": \"The video starts in the daytime on a sidewalk where a man wearing a kilt is playing the bagpipe and standing in front of a lamp post. There are vehicles moving on the street behind him and buildings are visible in the background. A person wearing a black hoodie and holding a little child is kneeling a few meters in front of the bagpipe player. People are seen walking past the camera. People stop by in front of the musician to drop some change in front of him and the man continues to play the bagpipe.\", \"video_name\": \"v_ypfWA4aDL6k\"}, {\"Q\": \"What does the man in the teal T-shirt do after he finishes his discus throw?\", \"A\": \"After the man in the teal T-shirt finishes his discus throw, he walks towards the camera and claps his hands.\", \"video_name\": \"v_rpjxjU-mLiw\"}, {\"Q\": \"What is happening at the beginning of the video and who is helping the toddler?\", \"A\": \"At the beginning of the video, a toddler in a diaper is standing on the sink, in front of the bathroom mirror brushing his teeth. A woman wearing a white shirt is standing behind the toddler and to his right, helping him brush his teeth.\", \"video_name\": \"v_sk_pnoqXxhs\"}, {\"Q\": \"What is the sequence of events when the friend shows the hopscotch course?\", \"A\": \"After showing the three rocks, the friend raises one hand and one leg in the air and does a turn. She then proceeds to throw the three rocks on the hopscotch course and starts playing by jumping with one leg up. The friend later reaches the end of the course and starts jumping with both her hands up.\", \"video_name\": \"v_YK9BIL9fKA0\"}, {\"Q\": \"What is the sequence of the paddle strokes demonstrated by the woman in the video?\", \"A\": \"The woman in the video starts with a reverse sweep by turning her torso to her left and sweeping the left paddle from back to front, which turns the kayak to the left. She repeats this once more. Next, she does a forward sweep with the left side and a reverse sweep with the right paddle. She repeats this again.\", \"video_name\": \"v_kgz7c2kb4Rg\"}, {\"Q\": \"What are the events that take place in a temporal sequence in the video?\", \"A\": \"The video starts with a man standing in front of a pegboard with some tools hung from it, followed by a bicycle rolling down and hitting a tree. Then, there is a close-up shot of the cycle\\u2019s chain bearing and a man turning it. He inserts an Allen key into the chain-bearing screws and tightens them. The man then smashes the bearing with a stone and a tree branch. Finally, he picks up the cycle, adjusts its chain and starts rolling the cycle\\u2019s pedal in slow motion.\", \"video_name\": \"v_GvMep9y7d7c\"}, {\"Q\": \"What is the sequence of gymnastic moves that the girl performs in the video?\", \"A\": \"The sequence of gymnastic moves performed by the girl in the video starts with a backflip on the ground covered in green plants, followed by backflips and back-tucks in a park among trees, and running front flips where she stumbles in the first clip. She then proceeds to do various other gymnastics moves like front and back flips and back tucks. Finally, she performs a tumbling sequence that consists of flipping backward and doing running front flips. The names of different moves done by the girl are named at the end.\", \"video_name\": \"v_0k0xNs8Zjb4\"}, {\"Q\": \"What is the first event shown in the video?\", \"A\": \"The first event shown in the video is a gymnast using a springboard to leap onto a balance beam.\", \"video_name\": \"v_ZSdnDVGXU3k\"}, {\"Q\": \"What sequence of moves does the man breakdancing in the hallway perform in the video?\", \"A\": \"The man in black T-shirt and black pants starts by moving his legs on the floor, followed by a spring jump using both his hands. He then lifts his body using his hands, puts his head on the floor, and rotates to complete his performance.\", \"video_name\": \"v_u3XOLSC7lg0\"}, {\"Q\": \"What happens after the players attempt to score a goal is stopped by the goalkeeper?\", \"A\": \"After the players attempt to score a goal is stopped by the goalkeeper, all players swim back as the goalkeeper throws the ball back to the other end of the pool, leading to another attempt to score a goal.\", \"video_name\": \"v_9pavfCL1HvU\"}, {\"Q\": \"What event did Justin Harrison successfully score a goal in, according to the video?\", \"A\": \"Justin Harrison successfully scored a goal in a water polo game, which is shown at the beginning of the video. He threw the ball toward the goalpost and the player wearing black attempted to block the throw, but Justin successfully scored the goal.\", \"video_name\": \"v_skk-nX55gvA\"}, {\"Q\": \"What is the sequence of events in the gymnastics performance on the pommel horse?\", \"A\": \"The male gymnast starts his performance on the pommel horse in front of the judges while wearing blue track pants and a white vest with blue and red stripes. He spins and moves along the pommel horse and does a handstand. Spectators start cheering for him as he performs. He concludes his performance and wishes luck to his opponent, all in a well-lit arena with blue walls and chairs.\", \"video_name\": \"v_fh21bbDSVmA\"}, {\"Q\": \"What did the old woman do after putting the cassette in the VCR and sitting on the sofa?\", \"A\": \"After putting the cassette in the VCR and sitting on the sofa, the old woman starts to watch a movie. Later, her daughter enters the room from a door on the right side of the living room and sits next to the old woman. They are both sitting in a well-lit living room eating popcorn and watching the movie together. Two women later enter the house through the main door, one of them carrying a flower pot, wearing a blue outfit while the other is wearing a pink outfit.\", \"video_name\": \"v_i5qTK0mInTc\"}, {\"Q\": \"What happens towards the end of the video?\", \"A\": \"Towards the end of the video, one of the teammates near the opposite goalpost scores a goal and the players swimming away.\", \"video_name\": \"v_EK7qW-oavQY\"}, {\"Q\": \"What is the sequence of events involving the archery scene in the video?\", \"A\": \"The video starts with a man drawing the string of a compound bow on a golf course, followed by him shooting an arrow. In the next clip, the man is shown with his bow again, and a man in a blue polo shirt instructs him on how to hold the bow properly. The man hands the bow back to the archer, who follows the instruction and shoots another arrow. The man in the blue polo shirt then walks away at the end of the video.\", \"video_name\": \"v_jCxQQ9DMpT0\"}, {\"Q\": \"What is the first action performed in the video?\", \"A\": \"The video begins in a news studio where five people are seated on a sofa.\", \"video_name\": \"v_wCexKIuAj3A\"}, {\"Q\": \"What is the sequence of jumps that Stefan Holm performs in the video?\", \"A\": \"Stefan Holm performs six degrees of jumping in the following sequence: the first-degree jump, the California roll, the Holm Roll (third-degree jump), the Stradle (fourth-degree jump), the Scissor Kick (fifth-degree jump), and the Fosbury Flop (sixth-degree jump).\", \"video_name\": \"v_4NPVpI9zUpI\"}, {\"Q\": \"What did the man do after he picked up the suede block and suede brush?\", \"A\": \"After picking up the suede block and suede brush, the man proceeded to clean a pair of red suede shoes. He vigorously rubbed them with the brush. Afterwards, he picked up a dark blue high-heeled suede shoe and began to brush it.\", \"video_name\": \"v_tF8Nv-QxbIU\"}, {\"Q\": \"What is the sequence of events in the video starting with the application of the base coat on the woman\\u2019s fingers?\", \"A\": \"After applying the base coat on all fingers, the woman applies pink nail polish on the woman\\u2019s ring finger, draws random black blocks on the white nail polish, adds two black rhinestones on the pink nail, and finishes off by applying a top coat to all the nails.\", \"video_name\": \"v_vAHR3iJhBXU\"}, {\"Q\": \"What kind of obstacle does the girl overcome in the video?\", \"A\": \"In the video, the girl jumps over obstacles as she makes her way to a sand pit and performs a high jump.\", \"video_name\": \"v_Ku76zinwWkg\"}, {\"Q\": \"What can you tell me about the timing of the little girl\\u2019s violin performance in the video?\", \"A\": \"The video shows the little girl wearing a pink outfit and headdress starting to play the violin during the daytime by the shore of a lake in front of a tree. As she continues to play, the lake behind her reflects the trees surrounding it. The video ends as she finishes playing and the screen fades to black.\", \"video_name\": \"v_tC5eMgePakk\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video starts with a group of people holding paintball guns and wearing paintball helmets while conversing. The cameraman finishes giving instructions and runs forward, shooting at people in the distance. The shooter makes his way through the park, shooting at people. A few people in front of him crouch and move back while holding their hands up. The video concludes with people walking back towards the exit with their hands up and the shooter avoiding being shot.\", \"video_name\": \"v_Hy54nZSDxTk\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video starts with Jessica Skillings from the dark blue team scoring a goal, followed by her team celebrating. Later, there is another clip of Jessica scoring another goal and the team celebrating again. The digital scoreboard is displayed at the end. \", \"video_name\": \"v_KApqxr02rcQ\"}, {\"Q\": \"In what way is the man clearing the snow?\", \"A\": \"The man is slowly clearing snow as he walks forward.\", \"video_name\": \"v_BBKSKU6dGGk\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The man is standing behind a barbell on the floor indoors. He bends down to lift the multi-colored barbell, squats and lifts it over his head, and drops it on the floor. He walks to the side and turns back before a man in a white t-shirt enters the scene on the right, ending the video.\", \"video_name\": \"v_-HpCLXdtcas\"}, {\"Q\": \"What is the sequence of events in the volleyball game depicted in the video?\", \"A\": \"The video shows a girl holding a volleyball in a gym. Two teams are seen playing and people can be seen sitting on chairs next to the wall. The wall is decorated with paw prints. The scoreboard can be spotted high up the wall behind the second team. The first girl dribbles the ball and serves it to the opposite team. A girl from the opposite team strikes the ball and sends it outside the court. An umpire is visible standing on a ladder next to the net, and later the ball is passed to the first team to serve again. The same girl serves the ball again, and the video concludes with the opposite team member hitting the ball outside the court.\", \"video_name\": \"v_9VtxNvLx6zA\"}, {\"Q\": \"What does the man in the video do after he breaks the wood into pieces with his axe?\", \"A\": \"After breaking the wood into pieces with his axe, the man sticks the axe to the ground in front of him.\", \"video_name\": \"v_AwgGYaV1lT0\"}, {\"Q\": \"What is the sequence of events in the video related to the Tai Chi practice?\", \"A\": \"The video begins with a white screen featuring a drawing of a woman in a Tai Chi pose, followed by a screen with a red background displaying the words 'Tai Chi Chuan Forma 8'. Next, the screen switches to show a man in a black Tai Chi uniform standing on a concrete floor outdoors, practicing Tai Chi and going through several stances over a few minutes. Throughout the practice, the background features stairs with two people sitting on top and a few trees dotted in the background, and the place the man is practicing seems to be in the shadow of the trees. The man then slowly winds down his practice, and the video ends with a red screen.\", \"video_name\": \"v_0X0u_3xUBPE\"}, {\"Q\": \"What is the sequence of events when the man starts chopping the log?\", \"A\": \"The man walks slowly towards the chopping block with the axe in his right hand. He places a log on the block and swings the axe down, causing the log to crack. He repeats the action, causing a slight crack in the middle of the log. As he swings again, a piece of wood breaks off, and he continues to swing until the log finally breaks and falls to the ground. Throughout the process, a dog approaches and jumps up and down near the man to watch. At one point, the dog even runs away when the axe is about to strike the log. The video ends with the man throwing the axe and walking towards the camera.\", \"video_name\": \"v_iABuDhagUm8\"}, {\"Q\": \"What is the first action the old man takes in the video?\", \"A\": \"The video starts with the old man sitting on a mobility scooter.\", \"video_name\": \"v_jt-Vnap5KP4\"}, {\"Q\": \"What does the man do in the next clip after holding the skateboard?\", \"A\": \"In the next clip, the man starts skating and performs flip tricks while other people are visible skating in the background. The man continues to skate and do flip tricks until the end of the video.\", \"video_name\": \"v_agu58IVL7IQ\"}, {\"Q\": \"What is the woman doing at the end of the video?\", \"A\": \"At the end of the video, the woman is continuing to shave her leg while sitting next to the toilet bowl.\", \"video_name\": \"v_UtV69uNmzlE\"}, {\"Q\": \"What happens after the man cranks the lever on the sailboat?\", \"A\": \"After the man in the blue t-shirt and glasses cranks the lever connected to a chain on the sailboat in the sea during the daytime, the following shot shows another sailboat with maroon sails sailing in the open sea. The sky is cloudy and the second boat is tilted to its side.\", \"video_name\": \"v_ObrXN_FjVD8\"}, {\"Q\": \"In what order did events unfold during the disk throw competition?\", \"A\": \"First, the man began to spin to build momentum and threw the disk. A referee marked the spot where the disk landed. Replays of the throw were played several times, showing different angles of the man throwing the disk. The video then continues with several clips of the man making different disk throws one after another. Throughout the entire event, there were hundreds of spectators visible sitting on seats.\", \"video_name\": \"v_9AfQ2Q-96oE\"}, {\"Q\": \"What happens in the kitchen after the woman finishes cutting the man's hair?\", \"A\": \"After the woman finishes cutting the man's hair, a boy wearing a grey sweatshirt walks into the kitchen and pours something into the steaming pot. He is cooking something in the pot. As the camera pans, a man can be seen sitting on a chair by the wall and reading. The woman continues to give the man a haircut. In the following clip, the boy wearing the grey hoodie uses scissors to cut the hair at the top of the man's head. He then uses the clippers to clip hair behind the man's ears. The boy opens a cabinet to his right and takes a box out and holds it to the camera. The video ends as the boy leaves and the man in the orange shirt holds up a peace sign.\", \"video_name\": \"v_vMcXLYBcHsM\"}, {\"Q\": \"What does the video show about the Tai Chi practice?\", \"A\": \"The video shows a man wearing all-black clothes standing in sunlight on a lawn and instructing Tai Chi by demonstrating different hand and leg positions in a specific order.\", \"video_name\": \"v_A904-cbaYDw\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The video begins with a few blurry black-and-white frames where a woman is doing a pirouette, followed by the dance being performed for the song \\\"Let it Go\\\" from the movie Frozen. The song continues throughout the video with all the dancers dancing to it. The video continues with different shots of single and multiple people in different ballet poses. This is followed by a black and white shot of a woman wearing black clothes dancing inside a large building with a wet floor, and another woman dancing on a white stage with a white background. The next few shots are of different women continuing to dance, with a group of dancers in green outfits dancing on stage with a black background with overhead lights. A clip of a girl in a white tutu on a black stage is dancing, and another girl is dancing in front of an empty stage with chairs. Finally, the video ends with the same people from the beginning who are doing different poses, and a woman in an empty ballet studio practicing different poses in front of a mirror.\", \"video_name\": \"v__B7rGFDRIww\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The coach instructs the boy on the left, who is holding a basketball, and the boy proceeds to dunk the ball through the basket. He then catches the ball as it comes through the basket and continuously dunks the ball by repeatedly jumping high. Throughout the video, the boy continues to dunk the ball from either side of the basket while jumping.\", \"video_name\": \"v_5tFfEA1JWjA\"}, {\"Q\": \"What does the little boy do on the armbar?\", \"A\": \"The little boy puts both his hands on the armbar and swings his legs in the air and then puts them on the armbar.\", \"video_name\": \"v_u7THn6D6y5w\"}, {\"Q\": \"Can you describe the sequence in which the dancers appeared on stage?\", \"A\": \"The video starts with a darkened auditorium. The lights on the stage turn on and a group of dancers appear.\", \"video_name\": \"v_AQnp2QAnwI0\"}, {\"Q\": \"What is the sequence of events in the video with regards to the dance performance?\", \"A\": \"A man wearing a black shirt and pants is waiting in front of the camera. A woman in a black outfit walks up to him and he holds his hand to the woman. They proceed to the dance floor and begin to dance as the music plays. They are in a well-lit indoor studio with people standing by the walls to make space in the middle. An elevated platform with a music stand is visible on the right, with a few people standing against the railing of the platform. The dancers slowly make their way around the dance floor while they dance. The video ends as the music stops and the dancers separate. The audience is seen applauding.\", \"video_name\": \"v_N75m1Z4RqbA\"}, {\"Q\": \"What is the first action that the boy takes in the video?\", \"A\": \"The video starts with the boy standing to the side of a brown wooden door, holding the bagpipes with his left hand. He is wearing a white shirt, a sleeveless black sweater, and brown pants. There is a black stool behind him with a brown bag on it and some equipment kept behind the boy to his left side. There is also a door behind him with glass panels and a brown cloth-like curtain covering the upper part of the door. \", \"video_name\": \"v_yggwFa68Cp4\"}, {\"Q\": \"What is the sequence of events in the cheerleading routine performed in the video?\", \"A\": \"The video starts with the cheerleaders running into the basketball court and waving towards the spectators. They form bases and perform a basket toss where a group of bases lift and throw flyers into the air, who perform acrobatic movements, such as toe touch and twist before they land back down. They proceed to break apart and stand in formation some distance from each other. They perform flips and reform into bases to begin another stunt. They throw several flyers into the air and the flyers do several poses when they are held up. They continue doing routines with different formations and stunts until they end it with another stunt. At the beginning and throughout the routine, there are people standing near the team, a photographer near the basketball court, a few people behind a table who appear to be judges, and many people seated in the stands.\", \"video_name\": \"v_ANaMmXJFE54\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video starts in a gym lit by overhead lights where there are several balance beams fixed to the ground with foam pads lining the floor. A man walks up to a balance beam and mounts it, then performs various gymnastics moves including a backflip and other balancing techniques. He spins in place and jumps onto the mat with a flip.\", \"video_name\": \"v_7orO93DICYw\"}, {\"Q\": \"What is the progression of events in the high jump contest that is conducted in the video?\", \"A\": \"The video begins with a high jump contest being conducted in a field. The participants attempt to jump over the horizontal bar and depending on their success, a particular colored flag is held up by the person standing near the bar. As the competition progresses, the height of the bar is increased. Finally, the video ends with a girl successfully jumping over the bar, followed by knocking it over.\", \"video_name\": \"v_9hTcvGUnMBs\"}, {\"Q\": \"What is the series of events when the boy starts to mow the lawn?\", \"A\": \"First, the boy switches on the lawn mower and moves it forward. He then starts to mow one corner of the yard, with a black car visible next to the yard and a street behind him. Next, he moves on to the next patch of lawn and struggles to move the mower forward and back. He gets stuck in a subsequent patch and pulls back the mower. The front end of a silver sedan is visible in the driveway next door as the boy pulls back the mower. Finally, there is a shot of him from afar as he starts to mow the lawn from the edge of the yard during the daytime.\", \"video_name\": \"v_60tIsGR0Zzg\"}, {\"Q\": \"What is the order of the movements performed in the contemporary ballet dance by the women?\", \"A\": \"The women start by turning around and slowly stepping forward and then they continue to move around the stage with hops, turns, and some synchronized moves.\", \"video_name\": \"v_Ocid5pcnSVY\"}, {\"Q\": \"What was the woman doing in the video and how did the video end?\", \"A\": \"The woman was practicing stepping on and stepping off the aerobics step. The video ended as the woman was still practicing.\", \"video_name\": \"v_PwTwGnAVFhQ\"}, {\"Q\": \"What are the steps in the process of making the drink in the video?\", \"A\": \"The bartender first pours measured spirits into a black cup using a jigger. He then mixes them using a tea whisk, and strains them into a mixer using a tea strainer. After adding ice cubes to the mixer, he shakes it and pours the mixture into a glass using a tea strainer. Finally, he rubs a lime on the rim of the glass and pushes it forward.\", \"video_name\": \"v_IRua6QGP-Ow\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"In the video, the initial scene shows a boy sitting at a table while holding his right hand to the side of his head, with a plate in front of him. A lamp is visible in the back near the wall, and the boy is looking into the camera. The video then shows a cutaway of a man wearing a white t-shirt looking at the camera in a room with a packed shelf in the back. Finally, the video ends with cutaway shots of the boy looking at the camera and looking away.\", \"video_name\": \"v_DOI6tsATsE4\"}, {\"Q\": \"What is the first event that happens in the video?\", \"A\": \"The video starts in an art studio as a man, whose name is Jonas Gerard, is about to begin a live painting performance.\", \"video_name\": \"v_QT4d1nTQYSE\"}, {\"Q\": \"What does the man do after tightening his belt?\", \"A\": \"After tightening his belt, the man bends down and lifts the barbell. He then lifts it above his head before throwing it down.\", \"video_name\": \"v_ej9TkJVjK9M\"}, {\"Q\": \"What did the woman do after she completed the hopscotch pass?\", \"A\": \"After completing the hopscotch pass, the woman turned around and hopped back to the spot she started from before opening the closed door behind her. She then turned to the camera and held her hands to the side.\", \"video_name\": \"v_8L1UjGLOCeI\"}, {\"Q\": \"What happens towards the end of the video in relation to the man working out?\", \"A\": \"Towards the end of the video, the man wearing a green t-shirt who was working out can be seen slowing down and walking to the back of the class before the music stops. \", \"video_name\": \"v_c7S423zJqPo\"}, {\"Q\": \"What event occurs while the man is speaking about the weight loss product?\", \"A\": \"While speaking about the weight loss product, a cutaway image of five pounds of fat is shown followed by an image of five pounds of muscle. This shot sequence can be interpreted to signal weight loss and muscle gain.\", \"video_name\": \"v_Bkhr72sazvQ\"}, {\"Q\": \"What does the girl do after she puts her stuffed toy on the table?\", \"A\": \"After the girl puts her stuffed toy on the table, the frame changes to her painting Ironman on a canvas. She is wearing a green and white long-sleeved T-shirt. She has some paint on a white plate and she is painting using a brush.\", \"video_name\": \"v_Xmp_twSbkAg\"}, {\"Q\": \"What does the man do after adding the oil into the vinegar bottle?\", \"A\": \"After adding the oil, the man shakes the vinegar bottle to blend the mixture.\", \"video_name\": \"v_d-RYiiPzVKg\"}, {\"Q\": \"What was the woman doing to ensure her safety as she climbed the hill?\", \"A\": \"The woman was anchoring her rope as she climbed the hill and attaching it to anchors, which helped to ensure her safety during the climb. Additionally, another person was belaying the rope at the bottom, providing extra safety. \", \"video_name\": \"v_zDdD_qA86rg\"}, {\"Q\": \"Can you describe the temporal sequence of events in the archery competition?\", \"A\": \"Sure! The competitors start the contest by shooting arrows through a compound bow one after another while their points for that particular shot appear on the screen. Then, the reactions of the teammate and the spectators are shown after each shoot. They continue shooting until the final round where the second contender shoots and wins the contest. The commentators are shown applauding while the winner celebrates. Lastly, the audience is shown cheering for the winner and the runner-up is shown congratulating the winner.\", \"video_name\": \"v_BmLDHLKiIdQ\"}, {\"Q\": \"What is the sequence of events in the video related to kicking the red ball?\", \"A\": \"People are rolling the red ball towards each other and kicking it in turns. A man in a red shirt rolls the ball towards another person who runs towards the ball and kicks it. An old woman in a pink sweater standing in the distance runs towards the ball. A little boy catches the ball and throws it back to the man wearing the red shirt who rolls it to the next person. A woman runs towards the ball and kicks it to the left side of the field. The ball is caught by the old woman again, and as the next person kicks the ball, the old woman runs towards a ring near other people and celebrates. Finally, a young girl kicks the ball towards a waiting boy who catches it to end the video.\", \"video_name\": \"v_9VflCeoPr9I\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video starts with the words \\\"DISCOVER Moose Jaw\\\" displayed on a light blue screen with a picture of a moose. Then a man sitting on a chair can be seen, with a woman standing behind using a trimmer to shave his head. Another man is seen holding a mobile phone recording the man getting his haircut. Other people can be seen standing around the room, with a person sitting on a sofa towards the back. The man getting his head shaved is sitting in front of a mirror speaking to someone. A close-up of the shave behind the man's head is shown. In the end, the lady shaving is done and walks away. The man holds a thumbs up.\", \"video_name\": \"v_1kwIYXB4b8s\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video begins with a teen walking towards the camera and putting on his boxing gloves. He is in a basketball court with walls painted white at the top half and blue at the bottom. Another boy, Tyler, wearing a cutoff t-shirt and boxing gloves is introduced and they both take a boxing stance. They begin sparring with kicks and proceed to punches while dodging each other\\u2019s hits. They move around the court while kickboxing until Tyler keeps pushing John back and the video ends.\", \"video_name\": \"v_kPn9NzU4W48\"}, {\"Q\": \"What is the sequence of stunts performed by the two riders in the video?\", \"A\": \"The two riders are shown riding and jumping in a circle, performing a series of jumps one after another, with a person holding a camera in the middle of the dirt track. The video ends with the two bikers jumping over a hill one after the other.\", \"video_name\": \"v_4iFlM_Zu7xs\"}, {\"Q\": \"What is the woman doing at the beginning of the video and how does it end?\", \"A\": \"At the beginning of the video, the woman is shown shaving another woman\\u2019s leg with a pink razor while she is wearing a yellow t-shirt and multi-colored pajamas with some cosmetics and cream bottles present in the room. The video ends with the woman who got her leg shaved shaking her hand while making a fist and then showing it to the other woman.\", \"video_name\": \"v_tt-uDaZQWWc\"}, {\"Q\": \"What is the sequence of events in the cheer squad routine shown in the video?\", \"A\": \"The cheer squad routine in the video starts with the girls standing in formation on a stage. As they begin their routine, a few members perform backflips. Two groups are formed in the back, which throw two girls into the air and catch them. Next, a few girls in the front of the group perform backflips and move to the side of the stage. Two more bases are formed in the back and one lifts a girl and throws her to the other group. The squad then forms multiple bases and lifts a member of the squad up. The girls are then thrown into the air, twist and land back down. The routine continues with the squad performing different stunts while in various formations. Two men wearing black outfits are seen on the stage during the stunts, supervising. The video ends with the squad performing a dance and ending it with a group formation.\", \"video_name\": \"v_Dbas61NkTV0\"}, {\"Q\": \"What did the girl do after tapping the luffa?\", \"A\": \"After tapping the luffa on her face, sud stuck to the girl\\u2019s face. She washed the suds off with water.\", \"video_name\": \"v_j6ElczD-Pw4\"}, {\"Q\": \"What is the order of the different animals shown in the video?\", \"A\": \"The video opens with views of hoardings advertising \\\"CHEYENNE WYOMING\\\" and a beige and black building for fishing information. Then, a wooden cabin, a sign pointing to a \\\"Fishing Pond,\\\" and a building advertising \\\"Cowboy Country\\\" are shown. After that, there are clips of two men talking near a fence with a horse nearby. Horses are then shown saddled and tied to a fence, followed by people riding horses near a barn, through a brush, and near a stream on a green hill. Other animals shown later in the video include chickens, a goat, a black bull, and a brown cow. The video ends with shots of ostriches, alpacas, and camels grazing one after another.\", \"video_name\": \"v_e3DB_y78IHc\"}, {\"Q\": \"What does the woman do after applying lipstick?\", \"A\": \"After applying lipstick, the woman proceeds to apply makeup to her face and eyes. She then sneezes into a tissue, holds it to her nose as she sneezes again before wiping her nose with it.\", \"video_name\": \"v_r6l4mxphtX0\"}, {\"Q\": \"In what order does the man bathe the dog in the video?\", \"A\": \"The man first lowers the dog into the bathtub, then starts to bathe the dog using a handheld showerhead. He adjusts the water and holds it over the dog. He then squeezes soap from a bottle and rubs the dog down. Using his hands to clean the dog, he washes the soap away using the showerhead, and finally finishes off by toweling the dog dry. He then lifts the dog off the bathtub.\", \"video_name\": \"v_Oskk7eLgerM\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"In the first clip, a man is seen drinking from a cup in a well-lit cafe. In the next clip, the man is dancing in the cafe. Following that, he is shown drinking from a cup with one hand while having another cup in his left hand. In the final clip, he is again dancing with his hands at his sides while a person sitting near the counter is watching him. During all the clips, people can be seen sitting by the tables and waiting near the counters. Additionally, there is a fridge with bottles of drinks placed against the wall in the back of the man. A server wearing an apron and a black cap can be seen behind the service counter.\", \"video_name\": \"v_T35cHr4pjkc\"}, {\"Q\": \"What does the boy do just a few feet away from the top of the rock?\", \"A\": \"Just a few feet away from the top of the rock, the boy pauses to rest and applies chalk to his hand before continuing to climb to the top.\", \"video_name\": \"v_9ZVWD0ZKXZg\"}, {\"Q\": \"What happens on the badminton court after one of the women from the first team walks out of the court?\", \"A\": \"After one of the women from the first team walks out of the court, the remaining players continue to play the game while occasionally one of the teams fails to hit the shuttle. The woman who walked out of the court picks up a purse while walking towards the back of the court and briefly speaks to one of her teammates while walking away. The remaining players briefly celebrate and continue playing. The game continues with the first team short a teammate for a few exchanges where the team with three players also fails to hit their shuttle. In the end, one of the members of the team with two players also fails to hit the shuttle, when the rest of the players converge towards the net to talk.\", \"video_name\": \"v_1dDAcUliXrQ\"}, {\"Q\": \"What is the order of events in the video?\", \"A\": \"The video starts with a credit roll, followed by a clip showing a girl in a red outfit struggling to open a jar while standing behind a black stone kitchen counter. A wooden cutting board and a steel bowl can be seen on the counter, and a chrome-colored fridge and ovens are visible in the back. In the next clip, a woman wearing a sweater joins the girl at the counter, and the girl holds up different ingredients to the camera. The girl then prepares the ingredients by chopping cherry tomatoes and squeezing basil paste from a tube into the bowl. She then sprinkles some contents from a bottle into the bowl. In the next clip, a man wearing a white shirt tastes the mixture with a spoon and speaks to the camera. Finally, the video ends with a list of ingredients.\", \"video_name\": \"v_KvtqF0LaWU0\"}, {\"Q\": \"What is the sequence of events in the beginning of the video?\", \"A\": \"The video starts with a girl playing the piano by referencing the sheet music in front of her. She is sitting by an open window with sunlight streaming through it. Trees are visible outside the window and the edge of a bed is visible behind the chair. Eventually, the girl starts to sing while playing the piano.\", \"video_name\": \"v_3VjaC7wdMso\"}, {\"Q\": \"What happens after the athlete completes his long jump?\", \"A\": \"After the athlete completes his long jump, a white flag is held up by a referee signifying a valid jump. The athlete then celebrates and speaks to observers before eventually walking away. Meanwhile, other people in yellow outfits can be seen walking towards the start of the track.\", \"video_name\": \"v_Pr5K2Jh2X94\"}, {\"Q\": \"What is the sequence of events in the basketball drill shown in the video?\", \"A\": \"The players start by running around the cone and attacking the basket. Then, they retrieve the ball from the rebounder machine under the basket and run to the opposite basket to attack it. They dribble as they run to the opposite basket and make a point guard entry pass to attack the basket. The video ends with the players still performing the drill.\", \"video_name\": \"v_cms1BP4eKOA\"}, {\"Q\": \"What is the sequence of events in the gymnastics demonstration?\", \"A\": \"The gymnastics demonstration begins with a man wearing a white vest and red pants getting ready to compete on a pommel horse. He then places his hands on the pommel horse and begins his demonstration as he spins and rotates around the pommel horse. After he reaches the edge of the pommel horse, he drops to the floor before getting back on the pommel horse to restart his demonstration. He finishes his demonstration with a handstand and jumps to the floor.\", \"video_name\": \"v_YU-dUWGOoD4\"}, {\"Q\": \"What task did the man perform after gesturing toward the window in the dimly lit room?\", \"A\": \"After gesturing toward the window, the man started cleaning the window with a cloth and a spray bottle. He sprayed liquid on the window using the spray bottle before rubbing it with the cloth. He was still holding both the bottle and cloth while he talked to the camera at the end of the video.\", \"video_name\": \"v_zRqJZ0u6f88\"}, {\"Q\": \"What is the order of events in the video?\", \"A\": \"The video starts with Britney Reese, a woman in sportswear, leaning forward. Her name and stats is then shown on a graphic on the screen, after which she runs and performs a high jump into a sand pit. Two men with measuring sticks are sitting on stools near the sand pit and a man is sitting behind a banner with the measurements. After her jump, Britney Reese gets up and is seen running in the lane while clapping her hands. There are people in the seating area and flags of different countries are hung on the railings near the seating area. The video ends with a shot of a man in the spectator stand dressed in a suit, clapping with other people sitting around him.\", \"video_name\": \"v_Ivq9_wPFNs4\"}, {\"Q\": \"Can you describe the temporal sequence of events in the video?\", \"A\": \"Sure! The video starts with a table tennis match between two players, one wearing a red t-shirt and the other wearing a blue t-shirt and shorts. As they play, the player in the red t-shirt hits the ball and the player in the blue t-shirt misses. A shot of the exchange from behind the player in the blue t-shirt is shown. After this, the video continues to show matches between different players of different nationalities. Finally, the video ends with a man in a blue and yellow t-shirt with the name 'Wang Hao' printed on its back winning a game and celebrating. He holds his hands up as the spectators cheer, and then shakes hands with the referees. A still image of the player with his hands held wide at his sides is shown.\", \"video_name\": \"v_MxvKscpouzY\"}, {\"Q\": \"What happens as the first woman completes her long jump in the video?\", \"A\": \"As the first woman completes her long jump, a woman standing a few feet back walks into the frame holding a measuring tape. This indicates that she is there to measure and record the distance of the jump.\", \"video_name\": \"v_LzPppxSWYNY\"}, {\"Q\": \"What is the sequence of events during the discus throwing competition shown in the video?\", \"A\": \"First, the girl wearing a blue outfit swings her arm and then spins in place to throw the discus while standing in a throwing circle within a practice net during the daytime. After the throw, she jogs away from the throwing circle. Trees are visible in the background behind the practice net.\", \"video_name\": \"v_QY3q4DuiGq8\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The man and woman walk into a piano store and sit at a piano. The man starts playing while the woman stands next to him. He moves to another piano and starts playing again, the woman slowly walks towards him. In the following clip, the man is at a closed restaurant with a woman in a white robe standing near him. Next, a man in a brown jacket watches an orchestra from the back of the audience. He then walks towards the stage and gestures like a conductor.\", \"video_name\": \"v_mMebSMn5D0E\"}, {\"Q\": \"What does the video show about the temporal sequence of events in the kitchen?\", \"A\": \"The video depicts the sequence of a little boy scrubbing dishes in the kitchen sink, with the sink full of dirty dishes. The boy first starts scrubbing a white bowl and then continues on to the next bowl, placing the already cleaned bowl in the second empty sink. As he continues scrubbing and placing the dishes, the water in the second sink is turned on and dishes are being rinsed and cleaned. During this entire process, a woman recording the boy comes near and hands him a scrubber. The video ends with the boy looking back and continuing to scrub dishes.\", \"video_name\": \"v_dO01vfB9z4g\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video begins with an aerial shot showing several people with kayaks on the lakeshore, and buildings in the distance. It then cuts to a man wearing a lifejacket carrying a red kayak, followed by shots of several kayaks in the river and people rowing through wide and narrow streams on their kayaks. Next, a man is seen carrying his kayak and running on the street, followed by shots of people running on paths and up outdoor stairs. The video then shows people running and cycling through the woods, with cyclists struggling to pedal through uphill and raised pathways, and finally, a cyclist makes it through the finish line and drinks from a can of Red Bull. Another cyclist crosses the finish line, and the video ends with the Red Bull CROSSWAYS logo.\", \"video_name\": \"v_4-KiAur4dI8\"}, {\"Q\": \"Can you describe the temporal sequence of events in the video?\", \"A\": \"The video starts with a display of text on a background, followed by a scene where a woman and a man are playing squash in a well-lit court with white walls and red stripes. The camera then shifts to an instructor teaching two men how to play squash, and then changes multiple times to the instructor teaching people how to play squash. Each player serves the ball and hits it towards the wall with their rackets. The video ends with some text displayed and a web address.\", \"video_name\": \"v_X9Y-b-SbkIU\"}, {\"Q\": \"What happens right before the man stops playing the harmonica?\", \"A\": \"Right before the man stops playing the harmonica, he holds his hand out to someone.\", \"video_name\": \"v_1XNHcfxTqW0\"}, {\"Q\": \"What happened when the female gymnast was performing a somersault?\", \"A\": \"While performing a somersault, the female gymnast stumbled and almost fell.\", \"video_name\": \"v_FzqZsQx20jY\"}, {\"Q\": \"What interrupts the man while he is playing the violin?\", \"A\": \"The man is interrupted while playing the violin, and he stops and looks to the side before continuing to play.\", \"video_name\": \"v_uub0z8wJfhU\"}, {\"Q\": \"What is the sequence of events in the video relating to the woman playing the violin?\", \"A\": \"The woman starts by standing and smiling, before playing the violin by putting it on her shoulder and vibrating the violin strings with the bow while using her fingers to control the strings. She then stops playing the violin for a brief amount of time and starts again before eventually stopping and fading into a black screen\", \"video_name\": \"v_X5kj4fZ38rc\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The girl starts by doing a few balancing acts and proceeds towards the end of the balance beam. Once she is at the end, she turns around and does a front summersault. She then leans back on the balance beam and does a balancing act. She proceeds to do a handstand for a moment and lands on the ground.\", \"video_name\": \"v_AE2gHOwcV14\"}, {\"Q\": \"What is the sequence of events in the video related to starting a fire?\", \"A\": \"The video begins with the woman gathering dry leaves and tinder, then she breaks them up and places them in front of her. She holds up a carbon knife and a Ferro rod and strikes them against each other to light the tinder. The video ends with the woman holding up the green Bic lighter.\", \"video_name\": \"v_bphckj0BV5U\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The woman starts by speaking to the camera wearing a red and blue checkered shirt in a bedroom with posters on the back wall. She then applies black makeup to her eyebrows, eye shadow, eyeliner, attempts to apply back highlights to her lower eyelid causing herself pain, and finally applies liner to her lips. The video ends with her buttoning her shirt and holding a gun to the back of a man's head she dragged from her left.\", \"video_name\": \"v_rGOOlcdpfLg\"}, {\"Q\": \"What is the sequence of events of the woman preparing the tuna wrap?\", \"A\": \"First, she added mayonnaise, relish, and mustard into a mixing bowl and mixed the ingredients until they were smooth. Then, she added celery, chopped onion, and a can of tuna to the bowl and mixed all the ingredients together. After that, she arranged large lettuce leaves on a plate and placed spoonfuls of the tuna mixture in the center of each leaf. Finally, she folded the lettuce leaves over the mixture like wraps and held them up to the camera.\", \"video_name\": \"v_E5YBb4rzV30\"}, {\"Q\": \"What happens after the man in the T-shirt finishes his drink?\", \"A\": \"After finishing his drink, the man in the T-shirt yanks the axe out of the log and cuts it in two. Then, he proceeds to chop several more logs before showing a girl how to dislodge an axe from a log. The girl tries to dislodge the axe on her own but fails. The man then shows her how to chop the wood properly and she eventually succeeds in splitting the logs.\", \"video_name\": \"v_dRF1C_sBE5M\"}, {\"Q\": \"What is the sequence of steps the bartender takes when making the Bloody Mary drink in the video?\", \"A\": \"The bartender in the video first grabs a cocktail mixer and places it in front of him on the bar counter. He then adds the necessary ingredients to the mixer while explaining how the drink is made. He grabs another cocktail mixer from beneath the bar counter and adds ice to it. He then starts mixing the drink using the two mixers. Finally, he strains the drink into another glass with ice in it and garnishes the drink. \", \"video_name\": \"v_fMVuGUBs2cs\"}, {\"Q\": \"What is the sequence of events observed in the video?\", \"A\": \"The video shows a boy in a white martial arts uniform practicing training drills in a well-lit gym with a light wooden floor. A group of boys are sitting behind a table by the left wall, while a few men in suits are sitting behind tables on the other side by the right wall, observing the drills performed by the boy. As the boy moves to the right, a young boy can be seen standing while facing away from the camera and observing the drilling boy. The boy continues to perform the drills until the video ends.\", \"video_name\": \"v_H33jSILKmfI\"}, {\"Q\": \"What happens after the woman wearing an orange top walks up to the man in the kitchen?\", \"A\": \"After the woman in the orange top walks up to the man washing dishes in the kitchen and throws a few items into the sink, the man steps away startled.\", \"video_name\": \"v_-nl4G-00PtA\"}, {\"Q\": \"What time of day is the man playing the flute in the meadow?\", \"A\": \"The man is playing the flute in the meadow during the daytime, as mentioned in the given information.\", \"video_name\": \"v_NvRH4SoF09c\"}, {\"Q\": \"Can you describe the sequence of the martial arts demonstration?\", \"A\": \"Sure! Two boys stood apart from the rest of the group and demonstrated martial arts movements. Once they were done, they turned left and bowed. The other students then clapped.\", \"video_name\": \"v_PSB1nM3QXxg\"}, {\"Q\": \"What type of dancing do the couple do during the video and how does the video end?\", \"A\": \"The couple in the video mostly do partner twirls during their dance. The video ends with the two still dancing.\", \"video_name\": \"v_JiNcVb97CnA\"}, {\"Q\": \"What happens in the last clip of the video?\", \"A\": \"In the last clip of the video, multiple frames of the video are played in a single frame in a mosaic pattern and the logo and text with \\\"CANCER PATIENTS AID ASSOCIATION\\\" appear on the screen. This clip indicates the end of the video.\", \"video_name\": \"v_MidLOhRnpnU\"}, {\"Q\": \"What is the first step the chef takes in preparing the Russian salad?\", \"A\": \"The chef begins preparing the Russian salad by making the dressing. He adds two T-spoons of cream and two T-spoons of mayonnaise to a glass bowl, mixes the two ingredients, and adds some salt and pepper.\", \"video_name\": \"v_lIo8HfzzSNs\"}, {\"Q\": \"What happens after the boy wearing a grey t-shirt and black pants hits the ball towards the wall?\", \"A\": \"After the boy in the grey t-shirt and black pants serves the ball and hits it towards the wall, the ball bounces towards the back where the other players join the game. As they are playing, a boy wearing a white t-shirt and red pants accidentally hits a boy in the head who is standing in front of him. The boy who was hit goes down and lies on the ground with his hand on his head.\", \"video_name\": \"v_TKgU9QJXw2w\"}, {\"Q\": \"What does the girl do after swinging onto the smaller high bar?\", \"A\": \"After swinging onto the smaller high bar, the girl stands on it and jumps back to the bigger high bar. She continues to swing from it a few more times before landing on the mat.\", \"video_name\": \"v_WAvz9zHwWo4\"}, {\"Q\": \"Can you describe the sequence of events from the beginning of the video to the end, with respect to the lighting on stage and the musicians appearing on stage?\", \"A\": \"The video starts with a bright light on the stage and the audience screaming, followed by a man standing in the light with a musical instrument. Then, a big white ball is thrown on the stage and the man leaves the frame. Afterwards, the bright light transitions into red light and a man with a guitar appears on stage along with another man running on stage. Later, a man comes on stage with his guitar, sits on the edge of the stage, and plays his guitar while the audience cheers for him. Finally, the video ends with the audience applauding and the man walking off the stage.\", \"video_name\": \"v_uIcMgjypbqk\"}, {\"Q\": \"What happens last in the video?\", \"A\": \"At the end of the video, the boy wearing a green t-shirt who was sitting on the sidewalk holding a camera gets up.\", \"video_name\": \"v_vaV6_bxiTLI\"}, {\"Q\": \"What part of the routine involves multiple bases and fliers?\", \"A\": \"After their dance routine, the cheer squad performs another stunt involving multiple bases and fliers.\", \"video_name\": \"v_N5LZMH9mZVU\"}, {\"Q\": \"What happens after the channel changes to a man with a phone receiver in his ear?\", \"A\": \"After the channel changes to a man with a phone receiver in his ear, it changes back to show the girl washing her face with water and carefully washing all the foam with water.\", \"video_name\": \"v_z-EPAHsmTMA\"}, {\"Q\": \"What happens after the boy enters the stage and dances around the ballet dancers wearing black dresses?\", \"A\": \"After the boy enters the stage and dances around the ballet dancers wearing black dresses, they leave as they dance. The boy and the girl wearing the white ballet dress then hold hands. In the following clip, girls wearing white ballet dresses are on the stage kneeling and touching their foreheads to the ground. They have their hands on their back. They are fluttering their hands. They then begin dancing.\", \"video_name\": \"v_pJ3sECWr5Xg\"}, {\"Q\": \"What happens when the gymnast misses a hold in his routine?\", \"A\": \"When the gymnast misses a hold in his routine, he drops to the floor and walks over to a bowl next to the pommel horse to apply chalk to his hands. After that, a man wearing a grey sweater walks over to the gymnast and speaks to him for a moment. The gymnast then walks back to the pommel horse and restarts his routine.\", \"video_name\": \"v_vI-O6QWIIGU\"}, {\"Q\": \"How does the woman gift-wrap the box with the cloth on the wooden table?\", \"A\": \"The woman first covers the box with one end of the cloth, then covers it with the other end while folding it, and finally takes the other two sides of the cloth and ties a knot.\", \"video_name\": \"v_XPiMnbCr-sc\"}, {\"Q\": \"What was the sequence of events for the man mowing his lawn?\", \"A\": \"The man began by measuring the length of the grass on his lawn using a ruler. Next, he adjusted his lawn mower to cut longer grass and proceeded to mow the lawn straight across his yard. He then emptied the clippings from the mower and measured the length of the grass again. The man then adjusted his mower to cut the grass down to three inches and continued to mow from north to south. In the end, he measured the length of the grass using a ruler and showed a panoramic view of his cut lawn.\", \"video_name\": \"v_dN8LBey17O8\"}, {\"Q\": \"What is the scene sequence at the end of the video?\", \"A\": \"At the end of the video, the musician has stopped playing and people are still standing in front of him. The camera pans to show a boy in a grey t-shirt and backpack walking in front of the camera.\", \"video_name\": \"v_w_CXbraJr58\"}, {\"Q\": \"What does the man do after releasing the hammer through the open end of the practice net?\", \"A\": \"After releasing the hammer through the open end of the practice net, the man watches for the landing of the hammer and turns around and claps.\", \"video_name\": \"v_I7slpTgl0jc\"}, {\"Q\": \"What is the first thing shown in the video?\", \"A\": \"The video begins with the text \\\"Arenacross 2012\\\" appearing on a black screen.\", \"video_name\": \"v_ks018ZYzrx4\"}, {\"Q\": \"What does the man do after he trims his face and neck with the trimmers?\", \"A\": \"Once the man has trimmed his face and neck with the trimmers, he keeps the trimmer aside and applies shaving foam on his face. He then uses a razor to shave his face and neck. After he is done, he wipes his face with a cloth and applies aftershave while adjusting his hair.\", \"video_name\": \"v_ZLJ2BmBkLJg\"}, {\"Q\": \"What time of day was the boy seen shoveling snow in the driveway?\", \"A\": \"The boy was seen shoveling snow in the driveway during the daytime.\", \"video_name\": \"v_oD8sGLt2FR0\"}, {\"Q\": \"What happens after the team on the right misses the hit?\", \"A\": \"After the team on the right misses the hit, the ball is given back to the left side, and the same person who served the ball before does it again. The team on the right bounces the ball amongst themselves and hit it to the other side, they miss the return hit and lose the exchange. The video continues as both teams continue to exchange hits until the players stop playing.\", \"video_name\": \"v_Sf27WmcLb2w\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The video begins with two newscasters in a well-lit studio reading the news. As they speak, a reporter identified as Jocelyn Maminta is shown reporting outdoors during the nighttime. In the next clip, a man shovels snow during the daytime. The following clip shows the man being interviewed, followed by a woman shoveling snow on a driveway and being interviewed. Finally, the reporter is shown following the directions of a woman on how to use a shovel, after which they speak for a while before the video ends.\", \"video_name\": \"v_vSv1qMMt4Bk\"}, {\"Q\": \"How do the dancers transition from dancing outdoors to indoors in the video?\", \"A\": \"The dancers transition from dancing outdoors to indoors in the video when they move to an indoor basketball court. At the beginning, the dancers stand apart from each other and then walk towards each other when the music starts. The basketball court is dimly lit with red light while they continue their tango dance.\", \"video_name\": \"v_KsFid_YVsn0\"}, {\"Q\": \"What happened after the fielder prevented the ball from touching the boundary rope?\", \"A\": \"After the fielder prevented the ball from touching the boundary rope, he fell on the other side of the rope. He then threw the ball back to the wicket player who removed the bails from the stumps, resulting in the batsman being given out. The players gathered around the pitch and one of the umpires appealed the run out to the third umpire. The big screen in the stadium displayed the message 'OUT' and the batsman was seen looking at the big screen near the exit of the field.\", \"video_name\": \"v_hFpSoRlpyMo\"}, {\"Q\": \"What happens after the window cleaners in costumes are interviewed?\", \"A\": \"After the window cleaners in costumes are interviewed, the next clip shows the two cleaners being lowered onto the ground.\", \"video_name\": \"v_p9lhwYsBWdc\"}, {\"Q\": \"What is the sequence of events in preparing the pasta dish shown in the video?\", \"A\": \"The man starts by adding garlic to a pan with oil, followed by chillies. After cooking these two ingredients for a minute, he adds the cooked pasta and chopped parsley. He adds ground pepper and finishes the dish by mixing it all together.\", \"video_name\": \"v_aOxRwTlkY80\"}, {\"Q\": \"What is the sequence of the cricket games played throughout the video?\", \"A\": \"The video starts with people playing cricket in a backyard during the daytime. Later, they are seen playing in a garage with a green ball that hits the bowler in the head. They then appear to be playing in the same backyard at night under floodlights. There is also a clip of a different game being played during the day, where a batsman hits the ball towards the fence. The game is played over several clips both in the daytime and at night before ending with still images of the batsman holding the bat. Moreover, there is a shot of a fluorescent wicket set in between the clips.\", \"video_name\": \"v_4VdS1eN3dv4\"}, {\"Q\": \"What is the order in which the gymnast performs their stunts?\", \"A\": \"The gymnast starts by swinging on the parallel bars and performing a handstand. They then swing back and repeat the stunt while turning in the opposite direction. Finally, they swing on the bars and land on the foam mat below.\", \"video_name\": \"v_EhzHU0gkrzA\"}, {\"Q\": \"What events occur in the beginning of the video and how do they contribute to the temporal understanding of the video?\", \"A\": \"The video starts with a man sitting in a hair salon chair holding a camera and recording himself. A woman is seen spraying water and combing his hair before cutting it at the back. Other customers were also present in the salon, getting their hair cut. These events indicate that the beginning of the video shows the preparation for the main event, which is the man getting a haircut, and sets the stage for the rest of the video.\", \"video_name\": \"v_6G8m-vsGTA8\"}, {\"Q\": \"What was the sequence of events in the video of the woman getting her ears pierced in the store?\", \"A\": \"In the video, we see a woman sitting on a chair in a well-lit store. A woman wearing transparent gloves then uses an ear-piercing gun to attach a stud to the woman's earlobe. She pierces the other ear as well and then secures the studs from behind the ears. Finally, the video ends with close-up shots of the freshly pierced ears.\", \"video_name\": \"v_ZrSK-fisXGg\"}, {\"Q\": \"In what order was the clear solution applied to the woman's fingers?\", \"A\": \"The man started applying the solution on one finger after another until he completed all the fingers of the woman.\", \"video_name\": \"v_p07Y--q4JQw\"}, {\"Q\": \"What are the different Tai Chi movements performed by the master?\", \"A\": \"The master performs several Tai Chi movements, where he moves both his hands forward and backward. He also performs a kick followed by a punch and another forward movement with both his hands. These movements are accompanied by text on the screen, indicating the name and purpose of the movements.\", \"video_name\": \"v_TsHek6oZYXU\"}, {\"Q\": \"What is the sequence of events in the karate demonstration?\", \"A\": \"The video starts with a boy in a karate uniform on a stage, wearing a black belt. He goes through different karate moves quickly, then bows to the audience and exits the stage on the right. After that, a different boy enters the stage and starts his own demonstration. Both boys high-five each other and start a routine together with synchronized movements. The two boys take a bow and two adults enter the stage from either side to end the demonstration.\", \"video_name\": \"v_kfO5PGlsMJw\"}, {\"Q\": \"What is the sequence of events in the video related to the tattoo on the girl's stomach?\", \"A\": \"The video starts with a girl in a blue shirt leaning back in a chair as a tattoo artist cleans the area on the right side of her stomach. A little girl walks behind the chair as the tattoo artist starts to tattoo using a henna cone. Throughout the process, the girl getting the tattoo is speaking to people off-camera and holding up her shirt. As the tattoo artist slowly finishes a star tattoo on the girl's stomach, she looks down. The video ends as the artist completes the tattoo and the camera focuses on the finished design.\", \"video_name\": \"v_QN-4aLiDhiQ\"}, {\"Q\": \"What is the temporal sequence of events in the makeup tutorial video?\", \"A\": \"The video starts with the woman applying concealer on different areas of her face, followed by spreading the makeup using her finger. She then applies foundation throughout her face using a brush, followed by bronzer diagonally on her cheeks using a small brush. The woman then applies eyeliner and mascara on her eyelashes using a small applier. She continues by darkening her eyebrows with mascara and applies lipgloss. The video ends with the woman looking into the camera and smiling, while showing earrings.\", \"video_name\": \"v_86Unahb4sJM\"}, {\"Q\": \"What is the sequence of events in the video related to the man carrying a vacuum in the office?\", \"A\": \"In the beginning of the video, a man wearing a red polo shirt and blue trousers is seen carrying a vacuum in his back in an office with cubicles visible on either side of him. He is vacuuming the carpet. In the next clip, the man is in a different office with a window overlooking the outside that is covered in frost. A truck is seen parked outside and trees without leaves are visible. The man is vacuuming the ceiling of the office. Finally, a different man wearing a backpack vacuum is standing sideways in the office and speaking to the camera.\", \"video_name\": \"v_jN2CFk0xKp8\"}, {\"Q\": \"What happens to the man rock climbing in the video?\", \"A\": \"The man wearing dark blue jeans and black & red shoes, rock climbs up the wall by putting both his hands in the crack of the rock walls for support and climbing with his legs. However, his fingers get stuck into the crack of the rock wall and he falls down as he reaches almost to the top of the wall.\", \"video_name\": \"v_UGWOtDmIcns\"}, {\"Q\": \"What time of day did the foil racing competition take place in the video?\", \"A\": \"The foil racing competition took place during the day as shown by the aerial view of the starting line with several observer boats sailing around.\", \"video_name\": \"v_PNuJUYo3Hf8\"}, {\"Q\": \"What does the woman do after stuffing the Uggs with tissue paper?\", \"A\": \"After stuffing the Uggs with tissue paper, the woman can be seen brushing the Uggs, then wetting them using a sponge and some water, and finally diluting the water with Ugg cleaner and conditioner and using the sponge to apply this mixture to the Uggs. She again brushes the Uggs.\", \"video_name\": \"v_TMAXjnsN0Mk\"}, {\"Q\": \"What move is demonstrated by the boy in olive shorts towards the end of the video?\", \"A\": \"The boy in olive shorts starts to demonstrate the Zulu Spin move towards the end of the video. He kneels on the ground when he is done demonstrating and shows the complete steps of the Zulu spin slowly, which is the last scene in the video.\", \"video_name\": \"v_JG7T6qtO4jg\"}, {\"Q\": \"What is the sequence of events in the gymnastics competition shown in the video?\", \"A\": \"The video begins with an overhead shot of a gymnastics competition. A gymnast is standing next to a balance beam on an elevated platform. Judges are visible sitting at a table attached to the platform. Two people holding video cameras, recording the gymnast can be seen. There is another platform perpendicular to the first one, some distance away. People are sitting on chairs near this platform. Off to the left, we see another group of judges sitting behind a table. The gymnast starts the competition by mounting the balance beam and doing a handstand. She follows up with a front flip and backflip. She continues to do different balance poses along with turns, jumps, and leaps. The video ends with the gymnast doing a dismount with cartwheels and jumping off the balance wheel. She then poses and walks off the stage.\", \"video_name\": \"v__ja1fre9OTE\"}, {\"Q\": \"What type of stunt does the surfer perform after performing flips and turns while windsurfing?\", \"A\": \"The surfer bends his sail and jumps and rotates on his surfboard. He then performs a one-handed burner by pushing the sail all the way down and jump-twisting on his board.\", \"video_name\": \"v_N1_pNhVqG20\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The video starts with a group of people in orange T-shirts standing in a line outdoors during the daytime. Then, a little boy in an orange t-shirt kicks a ball that comes towards him. After that, a person in a red T-shirt runs towards him. Then, the little girl kicks the ball as she runs away, and the girl in the red T-shirt follows the girl. Throughout the field, other people are visible, including a man in a white cap who has a camera in his hands. After that, a girl wearing an orange t-shirt speaks to the little girl and takes her back to the line. Finally, the video ends with the girl in a red t-shirt again throwing the ball toward the girl and running toward her.\", \"video_name\": \"v_skr8x0kUVwg\"}, {\"Q\": \"What happens at the end of the video with the man playing the bagpipe?\", \"A\": \"The video ends with a shaky shot of the man playing the bagpipe.\", \"video_name\": \"v_82EtiBkAsPg\"}, {\"Q\": \"What are the players doing on the hockey rink?\", \"A\": \"The players on the hockey rink are doing drills. They are running side to side and diving and jumping through obstacles placed on the ground while holding a hockey stick in one hand and wearing hockey gloves in the other.\", \"video_name\": \"v_YnjITZnk6OE\"}, {\"Q\": \"What is the first action the chef takes in the video?\", \"A\": \"The chef in the video starts by pointing towards the ingredients kept on a metal table in front of him.\", \"video_name\": \"v_UNJTM62HyqQ\"}, {\"Q\": \"What events occur at the beginning and end of the video?\", \"A\": \"At the beginning of the video, a man is shown wearing a black jacket and fedora, playing a harmonica and singing on a stage with lights shining from the top while people are visible sitting in darkened seats. As the man continues to sing, he includes the audience and plays the harmonica for a few stretches. At the end of the video, he finishes singing and fixes the mic back on the stand before walking off to the side.\", \"video_name\": \"v_7OcxT66BxX0\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The video starts with the scene of three dinghies sailing in the sea. In the next clip, sailors are practicing capsizing training. After that, a boy is seen sailing a dingy, and then multiple people are seen sailing dinghies; one boy sails and turns near the boat the camera person is on. The video ends with the story of two boys sitting and sailing on a dingy. \", \"video_name\": \"v_aDe5hUB3AdY\"}, {\"Q\": \"What happens after the boy places the cup of coffee in front of the dog?\", \"A\": \"The dog goes to the cup and starts to drink the coffee.\", \"video_name\": \"v_5qY9yPt-5Go\"}, {\"Q\": \"What is the order of the events shown in the video?\", \"A\": \"The video starts with three people sitting on a curved couch with coffee cups on the table, followed by a man in a suit speaking to the camera. Next, a teen is shown standing behind a podium in a classroom speaking to the class. This is followed by women sitting on a bench in cheerleader outfits with the subsequent clip showing a man wearing a black T-shirt and a cap giving instructions to girls in a hall. Next, a cheer squad performing a routine on a stage is shown. The video continues to show different cheer squads performing on stage, with a clip of girls who are watching the stage and walk away crying included. The video further features cheerleaders training and concludes with cheerleaders celebrating.\", \"video_name\": \"v_hvrKRg166eQ\"}, {\"Q\": \"How does the man start his practice of hammer throwing in the video?\", \"A\": \"The man starts his practice by swinging the hammer around him a few times before spinning, and then he throws the hammer through the open end of the practice net.\", \"video_name\": \"v_SEVVSei-r6w\"}, {\"Q\": \"What happened after the man broke the laptop with his leg?\", \"A\": \"After the man accidentally kicked the laptop while breakdancing, he sat down and turned around to look at the laptop. He then picked up the broken laptop along with a fallen piece and it appeared to be broken at the hinge.\", \"video_name\": \"v_LuH7I7Rxju8\"}, {\"Q\": \"What is the first thing the woman does when the performance starts and how does she continue?\", \"A\": \"The woman starts her performance by doing ballet steps by standing on her toes and moving both her hands. She does ballet steps by doing twists and turns on her toes and raising both her hands. She also jumps elegantly with both her hands up across the whole stage. She rotates her whole body standing on one leg while she is on her toes with her hands curled with each other.\", \"video_name\": \"v_UaO7bS5Ky6M\"}, {\"Q\": \"What is the sequence of events in the video related to ironing a men's cotton dress shirt?\", \"A\": \"In the video, a woman wearing a green sweater and standing in a well-lit room with a window behind her, shows how to iron a men's cotton dress shirt. She starts by spray starching the shirt and then ironing it, while steam escapes from the iron. Next, she irons the shirt sleeve and turns it over to smooth it in a flat surface before proceeding to spray starch and iron it again. Finally, she irons the ends of the sleeve and the video ends with her flipping over the shirt.\", \"video_name\": \"v_a_JlhLnJM98\"}, {\"Q\": \"What is the sequence of events in the tango performance?\", \"A\": \"In the beginning, a man speaking into a mic walks to the center of the hall where tables are arranged, people are sitting on chairs facing him. Then a man and a woman enter the middle area holding hands, they stand some distance from each other. Once the music starts, the couple walks towards each other and starts to tango. As the tango progresses, they cover a wide area of the hall while moving around. The couple continues to slowly dance as the other seated guests watch, and flashes of photographs are visible. At the end of the performance, the two dancers walk apart and bow towards the people who are applauding.\", \"video_name\": \"v_9Ufy_JGbnys\"}, {\"Q\": \"What happens after the small child walks into the next room?\", \"A\": \"After the small child walks into the next room, the couple keeps dancing, and the man spins the woman several times at the end. \", \"video_name\": \"v_9eniCub7u60\"}, {\"Q\": \"What is the order in which the kayaking events occur in the video?\", \"A\": \"The first scene shows a man and woman placing their kayaks on a red truck and driving away. Next, a person with a yellow kayak is standing on a boulder by a stream, followed by a group of people in safety gear standing on the shore of a narrow body of water. A person in a yellow kayak is then seen rowing down the rapids, followed by clips of different people kayaking in turbulent waters. There is a clip of a couple in safety jackets in a two-person kayak rowing along with others kayaking around them, followed by a clip of two kayaks rowing in calm waters with a sunset in the background. The final clip shows two people in a kayak rowing through turbulent waters, followed by people standing around drinking beer on land with a sunset in the background.\", \"video_name\": \"v_k1GP0cJOXbQ\"}, {\"Q\": \"What is the sequence of events shown in the video?\", \"A\": \"The video starts with players celebrating on a baseball field wearing orange uniforms and blue helmets. Then, it switches to a shot of people playing handball outdoors, where a player throws the ball towards another player, who kicks it. A referee is visible in the background, and a replay is shown with markings on the field. The third player is seen falling on the field. Afterwards, the video switches to another clip of a baseball game, where a pitcher throws a ball and the batter hits it, followed by the batter running. The ball is then caught and thrown by another player towards a base.\", \"video_name\": \"v_7bwruwic1CI\"}, {\"Q\": \"What does the man in the white suit do after he sits on the chair?\", \"A\": \"After the man in the white suit sits on the chair, he picks up a guitar next to him and begins playing it. The man wearing a black tux, holding a guitar and sitting next to him also starts playing their guitar. They are facing a group of people wearing tuxes and sitting around a table.\", \"video_name\": \"v_bYxVbXzQToI\"}, {\"Q\": \"At what point in the video does a new routine start?\", \"A\": \"A new routine starts partway through the video.\", \"video_name\": \"v_hI11n4_r178\"}, {\"Q\": \"Can you describe the temporal sequence of events during the pole vaulting competition in the video?\", \"A\": \"The woman in black with a pole starts her run towards the bar, plants the pole, and goes over the bar to land on the foam mat at the beginning. Later, the same woman, now wearing a white jacket, takes a drink from a water bottle, stands at the starting point with her pole, runs towards the bar again, jumps over it and lands on the other side. Two men are seen measuring the height of the bar with a measuring stick, and the video ends with a replay of the pole vault from a different angle.\", \"video_name\": \"v_hP-xRyx88aA\"}, {\"Q\": \"When does the boy stop playing violin in the video?\", \"A\": \"The boy stops playing the violin at the end of the video, when the people sitting around him applaud.\", \"video_name\": \"v_HxrtuZSCwvY\"}, {\"Q\": \"What happens towards the end of the video?\", \"A\": \"Towards the end of the video, the two men playing squash slow down until the man in the white T-shirt appears tired. They eventually stop and share a handshake.\", \"video_name\": \"v_af05Mqm03Y4\"}, {\"Q\": \"At what point does the man stop playing the harmonica in the video?\", \"A\": \"The man continues to play the harmonica until the end of the video.\", \"video_name\": \"v_ddzfgHw_qlU\"}, {\"Q\": \"What kind of moves are the woman and man using in their kickboxing practice and how does the video end?\", \"A\": \"The woman and man are using numerous kickboxing moves including punching, kicking, and occasionally using elbows. The video ends with their practice ending and both of them stopping fighting.\", \"video_name\": \"v_h_r8gioFi4k\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"In the video, the man first cleans the bottom edge of the shoe on his right with an adhesive eraser and shows it to the camera. Then, he picks up a white Nike shoe from his right and cleans it with the eraser. He cleans both the shoes and then handles the right shoe while speaking before the video ends.\", \"video_name\": \"v_NojaHuKBagQ\"}, {\"Q\": \"What happens after the man in blue shorts jumps over the high jump bar?\", \"A\": \"After the man in blue shorts jumps over the high jump bar, he gets up and walks away from the foam mat. The video then shows a replay of the jump from different angles until the end of the video.\", \"video_name\": \"v_EnMS9O1U6E0\"}, {\"Q\": \"What happens after the man speaks to the woman while cleaning her shoe?\", \"A\": \"After the man speaks to the woman while cleaning her shoe, he uses a spray bottle to spritz some liquid on the shoe before cleaning it with a toothbrush.\", \"video_name\": \"v_wEehiYq9ttE\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"In the beginning of the video, a woman wearing a white t-shirt is sitting on a chair, next to a little boy wearing a white shirt, and washing clothes in a bucket filled with soaked clothes in a well-lit room.\", \"video_name\": \"v_rklYNAAaI3Y\"}, {\"Q\": \"What is the first thing that the three women are doing at the beginning of the video?\", \"A\": \"The three women are wearing white vests and track pants working out on aerobics steps at the beginning of the video.\", \"video_name\": \"v_ZVjLscGMOs8\"}, {\"Q\": \"What does the man do after throwing the tennis ball into the air?\", \"A\": \"The man hits the tennis ball to the other side of the court after throwing it into the air.\", \"video_name\": \"v_CeXtKbFnPIQ\"}, {\"Q\": \"What is the sequence of the makeup application shown in the video?\", \"A\": \"The makeup artist starts by applying eyeshadow on Irina with different colors for her eyelid and eyelashes, followed by lipstick. Then, the makeup artist redoes her eye makeup and changes her lip color. The video ends with a show of Irina with completed makeup.\", \"video_name\": \"v_K_ia4VP3w2c\"}, {\"Q\": \"What happens after the man finishes washing the plate in the video?\", \"A\": \"In the video, after the man finishes washing the plate, another person wearing a striped t-shirt walks behind him and taps him twice before walking away. The man washing dishes laughs before the video ends.\", \"video_name\": \"v_z6pmp8TrAVo\"}, {\"Q\": \"What is the sequence of events in the video related to the women\\u2019s beach volleyball game?\", \"A\": \"The video of women\\u2019s beach volleyball starts with text appearing on a black screen. Then, the women are shown warming up on a grass field on a sunny day, with a building visible in the back and people standing and sitting around a tree. Next, the women are seen performing an official warm-up on a sandy beach volleyball court with two teams participating and people sitting under shelters in the back, with flag poles and flags visible. A highlights reel is then shown with two teams playing beach volleyball and a clip from a game as the team on the right miss a hit is shown. Following that, the team on the left starts the game, and the team on the right loses the exchange after missing a hit. Finally, the video ends with the players on the left celebrating a point by high-fiving each other.\", \"video_name\": \"v_Mk7Yjq1U8OI\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The video starts with a panoramic view of a vineyard followed by a clip of a horse grazing behind a fence. Next, a rider wearing a helmet is seen leading a horse down an inclined path. A clip of riders on horses riding in a circle, in an enclosed space is shown, followed by them exiting the enclosure and riding their horses on a dirt path with a view of the riders from a distance, with the vineyard next to the path. The people are riding on their horses during the daytime, led by a woman wearing a black turtleneck. They make their way to a winery, walk inside and stand in a wine cellar with stacks of wine barrels. A woman wearing a black top speaks to them. Next, grapes are hung and stacked on a drying platform with a clip of closed clap barrels. In the following clip, people are seated in a dining room with wine glasses in front of them. The woman in the black top is showing them a bottle of wine, and she pours it into the glasses. A woman swirls her wine glass and takes a sip. Finally, the video ends with a shot of the facade of the winery.\", \"video_name\": \"v_IDIALY6Ayk8\"}, {\"Q\": \"What does the woman do after running to the edge of the diving board?\", \"A\": \"After running to the edge of the diving board, the woman dives with a tuck and several turns into the pool.\", \"video_name\": \"v_vzUeFzhVYLg\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video begins with a girl sitting in a chair wearing a grey hoodie while a man, wearing a black shirt, and a black cap and surgical gloves, pierces her tongue. He starts by clamping her tongue and then uses a needle to pierce it. After that he inserts the piercing into her tongue and secures it by screwing something under the piercing. Finally, the man steps out of frame and the woman sticks out her tongue to show the piercing.\", \"video_name\": \"v_ij9czNGMR5I\"}, {\"Q\": \"What is the order in which the children pass the ball in the video?\", \"A\": \"The girl in the pink T-shirt receives the ball from the boy in the white T-shirt and blue shorts and kicks the ball to the boy in the black T-shirt and black jeans, who then kicks the ball and runs across the field. Another boy catches the ball and bumps it into the boy running.\", \"video_name\": \"v_F9mk2Dn2tFw\"}, {\"Q\": \"What is the final scene of the video and what took place before it?\", \"A\": \"The final scene of the video shows the two players shaking hands after playing racquetball. Before that, both girls were playing racquetball while wearing safety glasses, white t-shirts, and shorts in a well-lit racquetball court with white walls and a light wooden floor. The game continued as the two players moved around inside the court and followed the ball, missing a few times. Each time one of them missed, the other player got the ball to serve.\", \"video_name\": \"v_wFVukrQfQhI\"}, {\"Q\": \"How long did the old man pedal the exercise bike?\", \"A\": \"The old man peddles the bike and stops after some time. However, the exact duration of pedaling is not provided in the given information.\", \"video_name\": \"v_rOtmhurweqo\"}, {\"Q\": \"What is the first scene of the video and what comes after that?\", \"A\": \"The first scene of the video shows text appearing on a green background. After that, a team of girls wearing black and pink uniforms and holding lacrosse sticks are posing for a photo in a field during the daytime. Buildings and trees are visible outside the field at the back. Few more images are shown before a clip of girls playing a game of lacrosse during the day is shown, where a referee is also visible among them. \", \"video_name\": \"v_RXT17X7lRoQ\"}, {\"Q\": \"What is happening at the end of the video?\", \"A\": \"At the end of the video, the team on the left wins the volleyball exchange after the team on the right misses a hit.\", \"video_name\": \"v_jEOtcfk220s\"}, {\"Q\": \"What is the sequence of breakdancing clips that are shown in the video?\", \"A\": \"The video starts with a clip of a man breakdancing in a hall. In the next clip, another man is breakdancing and doing a headspin. Following that is a clip of a man breakdancing in a large, overhead-tube-lit hall. In this clip, he is spinning on his hands and slowly lowers himself. The video then continues with additional clips of various people breakdancing either with an audience or alone, and ends with an outro and a message.\", \"video_name\": \"v_j6OcN4OQZVM\"}, {\"Q\": \"What was the sequence of events in the video after the appearance of the letter \\\"A\\\" with a background of stars?\", \"A\": \"After the appearance of the letter \\\"A\\\" with a background of stars, the text \\\"First Clue: F\\\" was displayed on the screen. Then a man wearing a purple shirt was seen rolling a cable from a vacuum cleaner in a well-lit living room with a black sofa and a TV with speakers next to it. He took the cable to the left of the living room and then was seen vacuuming the kitchen which had white cabinets and a two-door fridge placed in between cabinets. After vacuuming the kitchen, he vacuumed beneath a red sofa and its cushions. Later, he returned to the living room to roll the cable up.\", \"video_name\": \"v_bz4QwqHiVlo\"}, {\"Q\": \"What was the sequence of events during the hammer throw in the video?\", \"A\": \"The woman wearing a black outfit started her hammer throw by spinning the hammer around while turning. She then threw the hammer in the field during the daytime. The next cutaway showed a couple on a blanket in a field who panicked and ran to the side as a hammer attached to a string landed on the blanket they were on. In the following sequences, the woman threw the hammer again. In one cutaway, a hammer landed in the pool behind a swimmer just as she was swimming and reached the wall. In another cutaway, the hammer flew over a gymnast standing on a balance beam in an indoor gym and the gymnast fell over. The woman threw the hammer once more and it landed in front of a catcher on a baseball field who was wearing full gear. The catcher got up in exasperation. The video ended with the text \\\"WEAREBG\\\" appearing on the screen as the hammer thrower walked off to the side.\", \"video_name\": \"v_hPYGgv_75SY\"}, {\"Q\": \"What is the girl doing in the beginning of the video?\", \"A\": \"In the beginning of the video, the girl is sitting on a chair wearing a hoodie and jeans, holding a guitar and following the music by mimicking the guitar notes without plucking the strings. Various music gear can be seen scattered around her on the ground.\", \"video_name\": \"v_jWH-2aa1gJY\"}, {\"Q\": \"What sequence of events did Chris Hadfield experience while on the International Space Station?\", \"A\": \"Chris Hadfield first squeezed honey onto a tortilla and held it up to the camera, then played the guitar while floating in space, followed by getting a haircut from someone wearing a teal t-shirt. He was holding onto handles to stay in place while the person giving him a haircut was holding a trimmer with a hose attached to it. After that, he and other astronauts were seen walking down a path with people on either side and an image of a rocket on a launchpad was shown. Next, his Twitter page was displayed and he gave an interview on the International Space Station while different images of Earth and space were shown in a slideshow as he spoke. The video ends with a clip of Chris Hadfield rearranging his hair.\", \"video_name\": \"v_BAtlo_AGFWs\"}, {\"Q\": \"What is the sequence of events in the video depicting the man using an axe to chop wood?\", \"A\": \"The man is standing in a wooded area wearing a blue jacket and blue jeans. He is using an axe to chop wood placed on a tree stump. After chopping the current piece, he picks up another wooden block and places it on the tree stump. Once he has chopped the new block, he picks up the chopped pieces and piles them up with the other logs. The video ends with him coming back to stand over the block.\", \"video_name\": \"v_9lAT3oA9Ixs\"}, {\"Q\": \"What is the order of events in which Valarie imprints the design on the t-shirt using iron on transfer?\", \"A\": \"Valarie is standing in front of an ironing board holding an iron, with a shirt laying on it. She uses iron on transfer to imprint a design on the shirt. While pressing the design on the shirt with the iron, she speaks and laughs with the cameraman. Valarie walks toward another table, picks up a white t-shirt with a Twitter username on it and a picture of a blue bird, and quickly walks back to her ironing board to continue pressing the shirt. She removes the paper laying on the t-shirt and shows the finished design. In the end, Valarie covers the t-shirt with another and waves bye to the camera.\", \"video_name\": \"v_0rr7iGHamw0\"}, {\"Q\": \"What happens to the man in the black outfit during the aerobics session?\", \"A\": \"As the instructor issues a new instruction, the man wearing black trips and falls down over his aerobics step.\", \"video_name\": \"v_6utacRir3uM\"}, {\"Q\": \"What type of kayaks were shown during the interview?\", \"A\": \"During the interview, a series of cutaways to different types of kayaks were shown. Kayaks in rapids, in the sea and different rivers were shown, with different types of cockpits, open and closed.\", \"video_name\": \"v_5cijPqKVc84\"}, {\"Q\": \"What is the sequence of events in the wood-chopping contest based on the given information?\", \"A\": \"In the video, two sets of competitions are shown with contestants on both the left and the right. The contestants on the left have their wooden blocks laid horizontally on chopping stands. On the other hand, contestants on the right are assembling wooden blocks on horizontal chopping stands. The contest begins as both sides begin chopping wood. Some players on the left finish before the players on the right. The first player on the left side heads over to the right and speaks to another contestant.\", \"video_name\": \"v_l5ZUUChppHU\"}, {\"Q\": \"What is the sequence of events in the video depicting the woman attempting a long jump?\", \"A\": \"The woman starts by landing on a dirt pit while wearing a blue top, then stands on an indoor track field with people visible in the distance. She takes a running leap into a dirt pit, attempting a long jump. The video continues with the woman shown trying to jump longer distances, and ends with the woman jumping and landing in the pit while looking into the camera. Throughout the video, people can be seen milling about in the back of the indoor stadium.\", \"video_name\": \"v_52Xw6TZcysc\"}, {\"Q\": \"What happens to the skateboarder on the road?\", \"A\": \"The skateboarder loses balance and falls off the skateboard while continuing to skate on a road covered with grass during daytime, with hills visible in the far distance. The cameraman skates past him and then turns back, while the camera is covered. Afterward, the camera is removed.\", \"video_name\": \"v_YOk1cMsyk88\"}, {\"Q\": \"What is the sequence of events in the video starting from the man standing in the throwing circle?\", \"A\": \"The man first begins to spin in place after standing in the throwing circle. He spins a few times before throwing his discus. The throwing circle is inside a practice net, and the man is shirtless and wearing black shorts. The video is taken during the daytime in a field with a tall pole with floodlights facing towards it visible in the distance.\", \"video_name\": \"v_qmHjHk0Hzz8\"}, {\"Q\": \"What are the different events that occur in the video with respect to the boy's lacrosse games?\", \"A\": \"The video starts with the boy wearing a purple jacket picking up a stick off the ground and tapping it on a wooden fence behind him. In the following clip, the boy is wearing a red jersey for the Salem lacrosse team and holding a lacrosse stick in his hands. The camera zooms in on the logo on the boy's shorts. The video follows the boy as he plays in different games, starting with the team standing in a huddle with their lacrosse sticks raised, followed by a face-off between two lacrosse players from different teams, and then the game continues with the boy playing different positions, scoring a goal or chasing the ball. Another face-off is shown, and the video ends with a player scoring a goal.\", \"video_name\": \"v_l_0HvMt2tGg\"}, {\"Q\": \"What is the sequence of events related to tai chi in the video?\", \"A\": \"The video begins with news anchor reporting news and showing a still image of two people in tai chi poses. Then, a cutaway of people in winter clothes practicing tai chi outdoors is seen, followed by a few shots with close-ups of people practicing tai chi. Next, there is a cutaway to a black-and-white clip from 1957 showing an old man teaching tai chi, followed by different colored clips of people doing tai chi. A clip from a hospital is shown where a doctor talks to the camera and walks towards people doing tai chi. In the end, people in the hospital doing tai chi individually and being taught by others are shown.\", \"video_name\": \"v_1jgsRbGzCls\"}, {\"Q\": \"Can you describe the temporal sequence of events in the weightlifting competition?\", \"A\": \"The man wearing a red outfit lifted a barbell, crouched down, stood up with the barbell over his head, held the position for a few seconds, and dropped it on the floor. In the next shot, a weightlifter lifted a barbell from a side view, held it over his head, and dropped it. Then, a weightlifter wearing black and white lifted the barbell, crouched down, lifted it, and then dropped it. The video shows a montage of different weightlifters in the competition, with athletes from different countries. The video ends with a Chinese weightlifter wearing a red outfit lifting the barbell, holding it over his head, dropping it, and yelling.\", \"video_name\": \"v_o5F7X-UBETE\"}, {\"Q\": \"What happens after the referee places the dodgeballs in the middle of the court?\", \"A\": \"After the referee places the dodgeballs in the middle of the court, the game begins and two teams run to the dodge balls. The team on the right is wearing blue t-shirts and the team on the left is wearing yellow t-shirts.\", \"video_name\": \"v_rc-DiL5er28\"}, {\"Q\": \"In what order do the participants attempt their high jumps?\", \"A\": \"The first participant, wearing a red and green vest, attempts the high jump first, followed by the participant in the red and cream vest, and then lastly, the participant in the light blue jersey.\", \"video_name\": \"v_fM5egP_1DvQ\"}, {\"Q\": \"What are the steps taken by the man in the video while making the cocktail?\", \"A\": \"The man in the video starts by placing a camera in front of him and backing away. He wears black polo shirt and shorts while standing in front of a kitchen counter with cocktail glasses lining the middle. He then retrieves ice cubes from the left of the table and places them in a mixer before adding other liquors to it. The man then squeezes fresh lemon juice into the mixer before shaking it vigorously. Finally, he pours the resulting cocktail mix into cocktail glasses, holds up the glass, and takes a drink while speaking to someone behind the camera.\", \"video_name\": \"v_R_JKmGmURvA\"}, {\"Q\": \"What happens after the batsman jumps to let the ball pass behind him in the cricket game?\", \"A\": \"After the batsman jumps to let the ball pass behind him in the cricket game, he starts to run to the other side while the nonstriker runs towards the striker\\u2019s end and gets ready to bat.\", \"video_name\": \"v_kl-2y3jtPNE\"}, {\"Q\": \"What does the man on the left do after picking up the beer can?\", \"A\": \"After picking up the beer can, the man on the left makes a hole in it using a key and throws the key down before snapping the tab on the beer can. He then proceeds to drink from the hole in the can.\", \"video_name\": \"v_j_r7zJWxI8w\"}, {\"Q\": \"What is the sequence of events in the video related to gift-wrapping?\", \"A\": \"In the video, a woman picks up three rolls of gift wrap from a blue wooden counter, and lays them out on a light wood table. Then, she unrolls a roll of the wrapper and places a brown cardboard box on it. She cuts the wrapping paper according to the size of the box and wraps it, taping it shut. The sides of the box are carefully folded using tape as well. Finally, she turns the wrapped box on every side to show the wrapping and places it on the counter.\", \"video_name\": \"v_l_pp-1qu9Ig\"}, {\"Q\": \"What is the sequence of events in making the cocktail as shown in the video?\", \"A\": \"The bartender first places slices of cucumber into a glass and crushes them using a wooden pestle. Then, he adds a cap of Bombay Sapphire Gin, followed by a cap of St. Germain liquor. He adds lemon juice, ginger syrup, and elderflower syrup, and then adds egg whites to the glass and shakes it vigorously. He finally pours the mixture into a glass with some ice cubes and places a slice of cucumber on a straw to serve.\", \"video_name\": \"v_vIQPDP8jW8A\"}, {\"Q\": \"What does the man do after he starts speaking to the camera in the snowy weather?\", \"A\": \"After the man starts speaking to the camera in the snowy weather, he shows how to shovel snow using the snow shovel. He scoops a large pile of snow and throws it to the side, repeating this a few times and demonstrating how to shovel snow. Finally, he ends his demonstration and walks over to the camera to shut it off.\", \"video_name\": \"v_-pkfcMUIEMo\"}, {\"Q\": \"What actions do we see in the video that provides a clear indication of the temporal sequence of the events?\", \"A\": \"In the video, we first see a blurry shot, followed by the resolution of a badminton court. Then we see a girl approaches the court wearing a green top and starting to play badminton. The game begins with her serving, and the player at the other end missing their shot. The game restarts with the girl in green serving again. The players continue to play, and a girl sitting on the right end of the net is visible. The video ends with the girl in green t-shirt serving and the player at the other end hitting the shuttle into the net. The two players then shake hands and exit the court. Besides, we can also see a woman with a camera sitting near the netting at the left pole taking pictures of the girl wearing the green top. A scoreboard is visible at the top of the wall at the back of the gym, and an American flag is hung vertically from the wall. Bleachers can be seen retracted to the wall to the left of the court. People are visible standing at the edges of the gym throughout the video.\", \"video_name\": \"v_mShp2gzuPOM\"}, {\"Q\": \"What is the sequence of events in the video related to the running between the wickets?\", \"A\": \"In the video, as the batsman hits the ball towards the woods, the batsman and the non-striker start running between the wickets. Meanwhile, the fielders begin to search for the ball. As they find the ball, the batsman stops running, and the fielder throws it back to the bowler.\", \"video_name\": \"v_8r4bF9RF0Kc\"}, {\"Q\": \"What is the process that the man goes through to fix the broken chain on the bike in the video?\", \"A\": \"The man starts by holding a master link of a chain in his palm and shows it to the camera. He then attaches the master link on one end of the broken chain and pulls both sides together until they lock together. Finally, he checks it by pushing on the pedal.\", \"video_name\": \"v_iUiXNXRs4rU\"}, {\"Q\": \"What is the sequence of events in the video related to hand washing?\", \"A\": \"In the video, a woman wearing a green jacket over an olive turtleneck shows a soap dispenser for kids to the camera. A little boy pumps soap from the dispenser and washes his hands in the sink wearing his black polo shirt. A red dot is visible on his palm. The woman holds a bottle of hand sanitizer to the camera as the boy turns off the tap and wipes his hands on a towel hung from a towel rack. \", \"video_name\": \"v_Lf_7RurLgp0\"}, {\"Q\": \"What does the man do after he arranges the firewood over the crumpled pieces of newspaper?\", \"A\": \"After the man arranges the firewood over the crumpled pieces of newspaper, he sprinkles some table salt on the arrangement and then adds some white pepper powder. He then proceeds to light the paper using a lighter and pours some gasoline on the firewood, which instantly catches fire.\", \"video_name\": \"v_VhdidrZKuTU\"}, {\"Q\": \"What happens after he falls off the pommel horse?\", \"A\": \"After he falls off the pommel horse, he walks to a bowl and applies some chalk to his hands. Then, he mounts the pommel horse again and continues his routine. Finally, the video ends as he does a handstand and lands on the floor.\", \"video_name\": \"v_W4mJsJGa0CY\"}, {\"Q\": \"What happened when the boy wearing the blue T-shirt missed a shot during the squash game?\", \"A\": \"When the boy wearing the blue T-shirt missed a shot during the squash game, the two started over. As the game continued, the boy wearing the red T-shirt also missed a shot, and they started over again. The video ends with the two boys playing and a boy wearing a white t-shirt standing outside the court watching.\", \"video_name\": \"v_34ZxyyFjbHQ\"}, {\"Q\": \"What is the sequence of events when the technician pierces the girl's ear in the video?\", \"A\": \"First, the technician marks the girl's ear using a pen. She then makes sure the marks are in the same place on both ears and wipes her ear with a swab. The technician then uses an ear-piercing gun, but the girl is initially afraid and tries to back away. After calming down, the technician pierces the girl's ear, followed by her other ear. Finally, the video ends with the girl sitting in the chair looking excited.\", \"video_name\": \"v_TkhUtx0Eyfw\"}, {\"Q\": \"What is the sequence of events in the video as the woman wearing the green top exercises?\", \"A\": \"The woman wearing the green top starts by leaning on the elliptic bike with her hands, while speaking to the camera, then she sits on the elliptic machine and starts exercising. To her right, a person wearing a red top is also exercising on an elliptic machine. After a while, the woman transitions to using an exercise bike and is shown how to use it by another woman wearing a black top. She then cycles on the exercise bike while looking at herself in the mirror to her right. The video ends with the woman still peddling and speaking to the camera.\", \"video_name\": \"v_Db9VWkgMpbE\"}, {\"Q\": \"What is the order in which the people join the boy dancing in the alley?\", \"A\": \"First, another boy wearing a black jacket and white gloves joins the boy with a black umbrella. Later, other dancers join the first two boys one at a time, and eventually a group of people joins the girls as they watch and cheer.\", \"video_name\": \"v_Q3ZNFGE8PZE\"}, {\"Q\": \"What happens to the girl on the left after the girl on the right combs the other girl\\u2019s hair for a moment?\", \"A\": \"After the girl on the right combs the other girl\\u2019s hair for a moment, the girl on the left tries to comb the other girl\\u2019s hair and her hair gets stuck in the comb and is pulled.\", \"video_name\": \"v_QriYk3MKSnM\"}, {\"Q\": \"What is the sequence of events when the man tries to lift the barbell in the gym?\", \"A\": \"The man in the white and black t-shirt walks towards the camera in the well-lit gym with wooden walls and windows at the top. A person in the back is shown lifting a barbell. The man tries to lift the barbell, takes a deep breath, bends down, and slowly lifts it for a few feet but drops it. He tries again and drops it. He then walks to the camera and speaks before the video ends.\", \"video_name\": \"v_x90zpDHTpjQ\"}, {\"Q\": \"What is the man on the Marble Bridge doing during the daytime?\", \"A\": \"The man is standing on a section of the Marble Bridge and playing a flute during the daytime.\", \"video_name\": \"v_Il9Ara3IqeY\"}, {\"Q\": \"What is the sequence of events in the video starting from the introduction of the beautician?\", \"A\": \"The sequence of events in the video is as follows: The video starts with two women in a well-lit room with shuttered windows. The woman on the left, who is a beautician, introduces herself and shows how to make a cleansing with baking soda. She then introduces the model on the right. A shot of the table is shown with a bowl of yogurt with a spoon and a box of baking soda. The beautician places a spoon of yogurt and a quarter teaspoon of baking soda in the cupped hands of the model. The model rubs her hands together to mix the yogurt and baking soda and applies the mixture to her face. The beautician then gives further instructions and the model wipes her face with a washcloth and shows the dirty washcloth to the camera. The video ends with the beautician ending her instructions.\", \"video_name\": \"v_HkbOI7gEtKk\"}, {\"Q\": \"What happens after the girl walks through the kitchen and enters the living room?\", \"A\": \"After the girl walks through the kitchen and enters the living room, she puts her backpack down and sits on the sofa. The two identical men stand at the entrance to another room and greet the girl. They wave back and proceed to make sandwiches. The man wearing the black shirt spreads peanut butter on one of the pieces of bread and the man wearing glasses makes a sandwich using lettuce and ham. The man in the black shirt spreads jelly on the other side of the sandwich. The next clip shows the sandwiches being placed in front of the girl and the video ends with the two men looking at each other and frowning.\", \"video_name\": \"v_cEa87QoI3Do\"}, {\"Q\": \"Can you describe the temporal sequence of events in the video?\", \"A\": \"Yes, the video starts with a slow-motion shot of a man starting his run at a pole vaulting competition during the daytime. The first athlete is wearing a vest and black shorts. He then vaults over the bar. The next clip shows an athlete wearing a blue vest and shorts pole vaulting over a bar in a competition held during the night. The field is lit by floodlights. Following this, an athlete wearing an orange vest and shorts is also shown pole vaulting over a bar. The video continues with various athletes involved in pole vaulting competitions held both during the day and night. Finally, the video ends with athletes standing on medal podiums wearing wreaths.\", \"video_name\": \"v_X4J9UBXb0FM\"}, {\"Q\": \"Can you describe the sequence of events during the dodgeball game?\", \"A\": \"The game starts with a player in the teal t-shirt getting hit and falling. He immediately gets up and a boy jumps to catch the ball that bounced off the fallen player. A girl a few feet away from the fallen player holds her hands to her face. Players wearing teal shirts are seen throwing balls to the other side and walking back. Some of the players get hit and some catch the ball. The camera then pans to the other side of the court where a group of amateur players is playing against the players wearing the teal shirts. The video continues to show the players in the teal t-shirts moving around the court and throwing balls at the opposing team. A man with a mic is standing on the outside of the court and a group of students wearing white shirts can be seen cheering in the bleachers. Eventually, a player in teal is dismissed as he crosses the midline, after which the players start to slow down and then stop playing.\", \"video_name\": \"v_ARpoJIBF2NM\"}, {\"Q\": \"What is the sequence in which the man irons the Hawaiian shirt on the ironing board?\", \"A\": \"The man first irons one half of the shirt and then moves on to the other half of the shirt, with a hanger visible sticking out of it.\", \"video_name\": \"v_zXHyFBrj5Ag\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"First, a group of boys are visible inside a yard. Then, one boy wearing a black outfit is standing a few feet away. Next, a boy from some distance throws a red ball and one of the boys, wearing a green shirt runs up to the ball and kicks it. The ball flies through the air and lands near the opposite chain-link fence. Finally, a boy wearing a red shirt runs toward the ball.\", \"video_name\": \"v_H8oehT8eeGc\"}, {\"Q\": \"What is the sequence in which the man makes the sandwich in the video?\", \"A\": \"In the video, the man first applies butter on slices of bread and then applies green chutney on a slice of bread. He slices boiled potatoes over it, adds chopped onion, and covers it with another slice of bread. Then, he chops tomatoes and sprinkles chat masala and chopped bell pepper over the tomatoes. The man then grates cheese over the sandwich, spreads some butter and green chutney on a final slice of bread and covers the sandwich. Next, the man grates cheese over four sandwiches placed next to each other, places four slices of bread on the cheese, and spreads butter over the sandwiches. Finally, he places them in an electric grill and closes it over the sandwich.\", \"video_name\": \"v_meNgZdu8tIk\"}, {\"Q\": \"What does the woman do after talking for a while?\", \"A\": \"After talking for a while, the woman starts to play the saxophone. She then pauses and gives further instructions on how to play a particular note.\", \"video_name\": \"v_ERYwCKVUTSQ\"}, {\"Q\": \"What does the man do after speaking into the camera for some time?\", \"A\": \"After speaking into the camera for some time, the man starts to play the flute in the next clip. He plays for some time and lowers the flute to talk about how to breathe when playing the flute. He demonstrates what breathing exercises to do and then uses it to play to flute for a moment before the video ends.\", \"video_name\": \"v_jQzBXawu29s\"}, {\"Q\": \"What happens to the log while the boy is chopping wood?\", \"A\": \"While attempting to chop the wood, it slips and turns to the side.\", \"video_name\": \"v_51faGoLPJgM\"}, {\"Q\": \"What is the first thing the man does in the video?\", \"A\": \"The video begins with a man standing behind a table wearing a grey t-shirt, who shows an Adidas shoe to the camera and begins to clean the shoes.\", \"video_name\": \"v_AB480dHyDeM\"}, {\"Q\": \"Can you describe the temporal sequence of events in the video?\", \"A\": \"In the first clip, a man and a woman are dancing outside in an alley. The man leads the woman and they move around while dancing. The second clip shows the same man and woman still in the alley, but now the man turns the woman forward and backward. In the third clip, a man in a white t-shirt joins the woman and they dance and turn. The video ends with the two stopping their dance.\", \"video_name\": \"v_lPw_BRbPw5s\"}, {\"Q\": \"In what order do the events happen in the video?\", \"A\": \"The video starts with an athlete starting his run for a pole vaulting competition in a track field during the daytime. After the athlete vaults over the bar and lands on the cushion mat on the other side, the video continues with other athletes pole vaulting. Replays are shown after each athlete completes their run, with observers near the bars with binoculars. The video continues with athletes completing their jumps, and ends with stats of the athletes.\", \"video_name\": \"v_PwRqqR1YmPM\"}, {\"Q\": \"What is the first thing the woman does in the video and what does she paint?\", \"A\": \"The video starts with a woman smiling at the camera and turning around to a blank canvas to paint the head and torso of a peacock using various shades of blue before progressing to other parts of the bird. \", \"video_name\": \"v_myGBEXiYGOU\"}, {\"Q\": \"What does the chef do after buttering the bread at the beginning of the video?\", \"A\": \"After buttering the slice of bread, the chef slices tomatoes.\", \"video_name\": \"v_Kofjs0rkwxc\"}, {\"Q\": \"What is happening when the camera is pointed stationary towards the riders and the dog?\", \"A\": \"When the camera is pointed stationary towards the riders and the dog, they are crossing the river on their horses and riding into the opposite shore filled with balding trees. The riders are also leading pack horses by a leash while the dogs cross the river along with the horses. The last one to reach the riverbank and walk into the forest is a dog.\", \"video_name\": \"v_ltlJ2sOx4as\"}, {\"Q\": \"What does the girl do after she speaks to the camera outside the mall?\", \"A\": \"After the girl finishes speaking to the camera outside the mall, she turns around and enters the mall. In the following clip, she is seen browsing makeup in a shop inside the mall. After that, she is sitting in a beauty salon getting makeup applied to her face. The girl then speaks to the camera before sitting on a red sofa chair and getting her nails painted. After the painting is done, she stands outside and speaks to the camera again.\", \"video_name\": \"v_peiF2E05u8g\"}, {\"Q\": \"What are the initial movements showcased by the three dancers in the video?\", \"A\": \"The video begins with the three dancers performing hand movements, kicking off their ballet practice while being followed by little kids sitting in a half circle behind them who mimic their moves.\", \"video_name\": \"v_jiM0HUFn0e8\"}, {\"Q\": \"What happens in the beginning of the video, and how does it progress temporally from there?\", \"A\": \"In the beginning of the video, there are some images flashing and a countdown. The video then shows motorcyclists performing stunts and jumps in a forest with a dirt bike track full of bumps. The clip shows the motorcyclists equipped with off-road gear and helmets, followed by one of them falling from their bike and giving a thumbs up to indicate they are okay. The video ends with the motorcyclist riding the track and performing jumps with music playing in the background.\", \"video_name\": \"v_GChGC-VJZHs\"}, {\"Q\": \"What moves did the gymnast perform on the balance beam in the given video?\", \"A\": \"The gymnast performed multiple backflips, attempted to spin in place, ran a few steps and did a backflip, did several poses before losing balance and jumping down, jumped back on the board and did a front flip, and finally did three backflips before landing on the ground.\", \"video_name\": \"v_4oi6dXfpJS4\"}, {\"Q\": \"What are some of the fighting scenes shown in the video and in what order do they appear?\", \"A\": \"The video begins with a man in white gi jogging towards a stage, followed by another man in a red and white gi. They then start fighting by exchanging a few kicks and hits. Next, a clip of people wearing red gi fighting on stage, and a person knocks out everyone and poses while spectators are clapping. This is followed by a man in red and an opponent in white exchanging blows, with the man in red ultimately knocking out his opponent. Next, there is a clip of two people who are both wearing black gis fighting and one knocks out the other. Additionally, a series of quick transitions between fights can be seen throughout the video. Lastly, the video ends with a man wearing a black gi breaking a few tiles placed on two cinder blocks.\", \"video_name\": \"v_4KMG6lEDSIM\"}, {\"Q\": \"What is the temporal sequence of events shown in the video?\", \"A\": \"The video begins with a view of a mountain rock climber followed by a person marking a spot on a rock, a man attempting to climb a boulder, and a woman leaning in for safety. A man then walks by the sitting man followed by a man holding a climbing rope. The sequence then shows a person climbing down a rope, climbing a rock from a boat, and a man jumping into water. Next, a man starts to climb a rock with an instructor behind him, followed by a view from high up of a valley, and a person fastening a rope into a hook pierced into a rock. The video then shows people trekking up a rocky hill carrying backpacks during the day, with a panoramic view of a rocky hill shown with people climbing on it. The video lastly shows people rock climbing and standing on the top of a hill, and ends with a person high-up on the rock climbing using a rope.\", \"video_name\": \"v_889_kqLFM0E\"}, {\"Q\": \"What happens at the end of the volleyball game?\", \"A\": \"At the end of the volleyball game, a few people come into frame.\", \"video_name\": \"v_Ur_ToogEkCA\"}, {\"Q\": \"What exercises does the woman in the video do after lifting herself from the bars?\", \"A\": \"After lifting herself from the bars, the woman in the video performs swaying, moves back using her hands, does the split, and swings using the bars.\", \"video_name\": \"v_1YU4MSK80cQ\"}, {\"Q\": \"What happens after the boy in grey evades the dodgeball thrown by the boy in pink?\", \"A\": \"After the boy in grey evades the dodgeball thrown by the boy in pink, he lands and throws a ball he is carrying towards the boy in pink, but he misses. A boy behind him picks up a ball. The boy in the pink shirt turns around and walks away. The people who were standing right outside the court rushed the boy in grey and celebrate.\", \"video_name\": \"v_IDuoF51IMJ8\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \" The video starts with a view of a canyon and a river followed by a frame switching between various boats. Then, a woman and two men are shown talking with kayaking boats in the background. Next, the man with a grey and black cap shows some hand signs. After that, the frame shows the view of the canyon and a woman kayaking in the river and later, hi-fiving the man with the grey and black cap, and then kayaking in the river with the two men. Finally, the video ends with the woman kayaking in the river with the two men.\", \"video_name\": \"v_YAKXrBinGD4\"}, {\"Q\": \"What are the various events that happen in the video in a chronological order?\", \"A\": \"The video begins with an animation of famous buildings in New York. The following clip shows a group of young boys getting ready with paintball gear and taking defensive positions in a paintball arena. Then, a man wearing a black shirt is seen speaking to a boy with glasses. The kids are then seen playing with paintball guns held forward and ducking behind inflated bunkers used as obstacles in the field. Throughout the video, there are various clips of kids playing in the paintball arena and loading their paintball guns with pellets. Towards the end of the video, there is a clip of kids listening to another boy before a game and the video ends with a boy walking towards a curtain and lifting it to walk behind it.\", \"video_name\": \"v_jkrlHzTRTvo\"}, {\"Q\": \"What was the sequence of events that the man performed on the parallel bars?\", \"A\": \"The man started his routine by jumping and holding onto the parallel bars. He then swung and did a handstand, followed by holding himself up using the parallel bars and holding a sitting position by keeping his legs parallel to the ground. Finally, he finished up with another handstand and jumped down to the ground. \", \"video_name\": \"v_qU4GmCN2e1Y\"}, {\"Q\": \"What is happening in the first shot of the video and who are the people involved?\", \"A\": \"In the first shot of the video, a woman is hugging another woman from behind while they both smile. The woman who is sitting wears glasses. People clapping are seen out of focus, near the camera.\", \"video_name\": \"v_nywOe9C3ajM\"}, {\"Q\": \"What is the first shot of in the video and what is written on it?\", \"A\": \"The first shot of the video is a close up of a decorated saxophone case with the words \\\"GUNS-N-ROSES\\\" written on it, with a rose drawn underneath the text.\", \"video_name\": \"v_dhsSq0K1xEg\"}, {\"Q\": \"What happens towards the end of the video?\", \"A\": \"Towards the end of the video, the man falls from his windsurf board while windsurfing across the beach water.\", \"video_name\": \"v_FqYhC6_CMfI\"}, {\"Q\": \"What was the barber doing after he used a blade on the customer's head?\", \"A\": \"After using a blade on the customer's head, the barber walked to the other side of the customer and stood with his back to the camera.\", \"video_name\": \"v_mLFjww64sX8\"}, {\"Q\": \"What is the toddler wearing and where are they located in the beginning of the video?\", \"A\": \"In the beginning of the video, the toddler is wearing blue and red pajamas and they are inside a bathroom.\", \"video_name\": \"v_0x6ZV9Y8g_c\"}, {\"Q\": \"What is the order of events depicted in the video?\", \"A\": \"The video starts with two people shoveling snow behind a car parked in front of a red brick house during the daytime. They clear snow from around the car. Next, a doctor in a white coat and stethoscope speaks to the camera from a clinic. The video then switches back to the two people shoveling snow, with one of them doing so from a little distance behind the car while the other is next to the car. In the next clip, another man wearing suspenders is seen shoveling snow from a different location. Finally, the video ends with the man wearing suspenders shoveling snow.\", \"video_name\": \"v_-IMXSEIabMM\"}, {\"Q\": \"What does the video show about the instructor towards the end of the class?\", \"A\": \"Towards the end of the class, the instructor is seen walking down the platform as she ends the class.\", \"video_name\": \"v_s9PkkDEl6aY\"}, {\"Q\": \"What does the man do throughout the duration of the video?\", \"A\": \"Throughout the video, the man is playing the harmonica as he sits on the edge of a dark blue sofa. He plays the harmonica from the beginning to the end of the video as he sits back and turns to his right. Initially, the shot is blurry and the man is wearing a grey sweatshirt and sunglasses, and a CPU is placed on a wooden table next to him while a lamp is visible at the back.\", \"video_name\": \"v_nDHupsLdar0\"}, {\"Q\": \"What happened after the man lifted the barbell over his head?\", \"A\": \"After the man lifted the barbell over his head, he dropped it onto the ground, causing it to bounce a few times.\", \"video_name\": \"v_dVpHF8tE2qo\"}, {\"Q\": \"How do the women progress in their dance as the music plays in the video?\", \"A\": \"As the music plays, the women move forward and back while turning sideways in their belly dance routine.\", \"video_name\": \"v_Kic33dtLja8\"}, {\"Q\": \"Can you describe the temporal sequence of events in the video related to the player wearing the white number 15 jersey?\", \"A\": \"In the first clip, the number 15 player shoots the ball towards the goal and scores in the daytime. In the second clip, which seems to be during practice, he successfully catches the ball and scores while his teammates celebrate. The rest of the clips show him attempting to score or scoring goals during different times of the day, some being in the evening with the floodlights turned on. The video ends with a clip where he scores a goal and celebrates with his teammates.\", \"video_name\": \"v_4mRkWNLE66E\"}, {\"Q\": \"What is the sequence of dives Thomas Daley executes in the video?\", \"A\": \"In the video, Thomas Daley executes four rounds of dives. In round one, he executes a backward jump with twists and flips midair. In round two, he does a handstand on the edge of the diving board and dives with multiple backward somersaults. In round three, he jumps with multiple backward somersaults while facing back towards the pool. In round four, he executes multiple somersaults while diving.\", \"video_name\": \"v_lSVj34-DR0o\"}, {\"Q\": \"What is happening at the end of the video?\", \"A\": \"At the end of the video, a close-up shot of the tattoo being made on the man\\u2019s left arm is shown.\", \"video_name\": \"v_FOZdNPQ7d5Q\"}, {\"Q\": \"What is the first scene shown in the video, and what follows it?\", \"A\": \"The video starts with text on a white screen, which is followed by a street scene where a man in a white outfit is getting ready to breakdance on a black and white mat. In this street scene, there are many people standing around the mat, and the stores are lining the sidewalk. The scene takes place during the daytime.\", \"video_name\": \"v_ROrLMf0zXko\"}, {\"Q\": \"Can you describe the sequence of events during the serve in the video?\", \"A\": \"During the serve in the video, the man picks up a tennis ball from a basket, bounces it on the ground a few times, and walks a few steps forward. He then serves the ball, which is shown in slow-motion. The clip then replays the serve at normal speed.\", \"video_name\": \"v_W6fPv5eoXC4\"}, {\"Q\": \"What happens at the end of the video?\", \"A\": \"At the end of the video, the man stops playing the bagpipe and lets go of it.\", \"video_name\": \"v_lU6DMCif3eE\"}, {\"Q\": \"What happened after the man on the sofa tried to drink the flaming shot?\", \"A\": \"The alcohol spilled and lit the table and a man standing near it on fire. The man lit on fire started screaming and jumping around before falling and trying to put the fire out. Another man near him helped put the fire out.\", \"video_name\": \"v_BSwChZlOb0k\"}, {\"Q\": \"What is the sequence of events when the man lifts the barbell in the gym?\", \"A\": \"The man wearing a red t-shirt walks up to the barbell in the gym with a black floor. He bends down to lift the barbell and lifts the heavy weight up over his head for a moment. Then he drops the barbell to the floor, where it bounces a few times before he walks away. The gym is lit by overhead lights and equipment can be seen fixed to the wall.\", \"video_name\": \"v_cqxiLraI8uY\"}, {\"Q\": \"What is the duration of the dance performed by the man and the woman in the video?\", \"A\": \"The given video shows a man and a woman continuously dancing together throughout the entire video until they stop and laugh together at the end. Therefore, the duration of their dance is the entire length of the video.\", \"video_name\": \"v_gmbC7D6HfuM\"}, {\"Q\": \"What is the order of events in the video with regards to the antique store?\", \"A\": \"The video begins with a projecting store sign, followed by a clip of a man speaking inside the antique store, a view of the exterior of the building, and the man walking to open the shutter from the inside. A woman then speaks to the camera, followed by a man brushing and wiping a piece of furniture. Next, two women are shown in front of an old photograph, before the video moves to show the outside of a house with sloping roofs. The video then returns to the interior of the antique store, where we see a man restoring various pieces of furniture. Another man in a green shirt is seen fixing the top of a coffee table, while a man can be seen polishing different wooden surfaces. The video ends with a clip of different furniture and equipment inside the antique store, including tools hanging on the wall, gloves, and bottles of liquids on shelves.\", \"video_name\": \"v_zB8knKX0W8Q\"}, {\"Q\": \"What did the boy do on the horizontal bars in the video?\", \"A\": \"In the video, the boy swings with his hands on either bar a few times before jumping to the foam padding next to him. The boy seems to be practicing his balancing skills on the horizontal bars with the help of an instructor in the gymnasium.\", \"video_name\": \"v_d6PdD2O3Yrs\"}, {\"Q\": \"What did the barber do after the boy gestures towards his head while looking at himself in the mirror?\", \"A\": \"After the boy gestures towards his head while looking at himself in the mirror, the barber proceeds to cut the boy's hair at the indicated area using a comb and scissors.\", \"video_name\": \"v_OlykXdYeQOI\"}, {\"Q\": \"What time of day is the man shoveling snow?\", \"A\": \"The man is shoveling snow during the daytime.\", \"video_name\": \"v_PdwWFueQErM\"}, {\"Q\": \"Can you describe the sequence of events in the video involving the man with the racquet?\", \"A\": \"The man with the racquet is seen standing on the right of the tennis court. He then throws the ball in the air and hits it towards the other end of the court.\", \"video_name\": \"v_3V9tzjyr51I\"}, {\"Q\": \"What does the video show about the man practicing Tai Chi?\", \"A\": \"The video shows that the man in the grey Tai Chi uniform is performing different Tai Chi stances, moving slowly until he stops at the end. The man is practicing these movements in an indoor studio that has light wood flooring, and a mirror covering the wall at his back. Additionally, a window covered in purple drapes is visible on the right side wall to him. The studio is well-lit.\", \"video_name\": \"v_di5f5hM05Vw\"}, {\"Q\": \"What is the order in which the ballet training clips appear in the video?\", \"A\": \"The first clip features a man training for ballet in a hall, followed by multiple clips of different men training for ballet in different rooms. Finally, a clip of men in ballet costumes performing a jumping routine is shown, followed by a clip of a man in briefs in a hall training in different ballet movements.\", \"video_name\": \"v_JN1wuOpCZvk\"}, {\"Q\": \"What time of the day were the riders riding their dirt bikes through lessons on different surfaces?\", \"A\": \"The riders were riding their dirt bikes through lessons on different surfaces during the daytime.\", \"video_name\": \"v_JH9qiuPCkY4\"}, {\"Q\": \"What is the woman lawn-mowing wearing in the video and what is the environment around her like?\", \"A\": \"In the video, the woman lawn-mowing is wearing a white vest, grey trousers, and white sports shoes. The environment around her consists of a grassy lawn, small trees, and a concrete sidewalk. The lawn is surrounded by wooden walls and there is a small shed outside the lawn. There are also chairs, a table, and an umbrella in front of the woman. It is a sunny day and she is moving the lawnmower and turning it to mow the lawn which leaves some grass on the sidewalk.\", \"video_name\": \"v_TZOhIMjwEE8\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The woman is first seen wiping the top of a stereo with a towel while nodding to the voiceover. A cutaway of a person holding a spray bottle labeled Favor with the bottle being pressed is shown. The next clip shows a person wiping a wooden surface with words appearing in between. This is followed by a bottle of Favor being placed on a wooden surface with words of an advertisement appearing. Another person is seen wiping a wooden cabinet while nodding to what the voiceover is saying, and the sequence with the bottle of Favor is repeated.\", \"video_name\": \"v_aQ-F9wr0HQ4\"}, {\"Q\": \"What are the different steps involved in making the \\\"GIN E HENDRIX\\\" drink that Pinky is mixing behind the bar?\", \"A\": \"Pinky starts by mixing different ingredients including ice cubes into a tall glass. Then, she uses a shaker to mix the ingredients. After that, she pours the mixture in a glass with ice cubes in it. Finally, she finishes the drink by adding cucumber, a slice of lime, lemon, and a basal leaf, and drops a black straw into the glass.\", \"video_name\": \"v_0UTrTg3DF5g\"}, {\"Q\": \"What is the instructor doing as the video progresses?\", \"A\": \"As the video progresses, the instructor keeps calling out instructions for the class and the women keep following them. Finally, the instructor claps and calls for a stop, indicating the end of the workout session.\", \"video_name\": \"v_GH0Umpw6tME\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"In the beginning of the video, a brown labrador retriever with a leash around his neck is seen walking with his tail wagging on a dirt path during the daytime. The camera then pans to a little boy wearing a black T-shirt and red trousers who is holding hands with a man walking to his side. Next, the camera turns to the cameraman who is wearing a blue T-shirt and glasses and is holding a baby in a sling. The man looks at the camera and smiles. Finally, the camera again pans to the dog as the video ends.\", \"video_name\": \"v_Ie09KEAPP2I\"}, {\"Q\": \"What happens immediately after the jumper reaches the bottom in the video?\", \"A\": \"After the jumper reaches the bottom, he is pulled back up for a few meters before dropping down again. The rope loses energy and the man starts dangling from it while slowly being reeled down. Two attendants eventually draw him to the shore.\", \"video_name\": \"v_Jdu5AqaWfz8\"}, {\"Q\": \"What event occurs in the video after the man in the yellow kayak is pushed off from the training notch?\", \"A\": \"Following the man being pushed off from the training notch, a man in a yellow shirt and yellow cap is seen rowing down the river with a black backpack over his shoulder. \", \"video_name\": \"v_Erje-PwY9hE\"}, {\"Q\": \"Can you describe the order of events in the video involving player number 1?\", \"A\": \"In the video, the player in the blue number 1 uniform is seen dribbling the ball across the field, receiving a pass from another player, and attempting to score a goal before losing possession. The video then follows her as she plays matches during both the day and night, sometimes wearing a white number 1 uniform. Finally, the video ends with her scoring a goal and people celebrating.\", \"video_name\": \"v_HgYuRKZ_V90\"}, {\"Q\": \"What is happening in the second clip compared to the first one in terms of temporal sequence?\", \"A\": \"In the first clip, a woman wearing a white top is applying lipstick in a well-lit room while sitting in front of a mirror with light streaming from her right. In the second clip, a man replaces the woman, wearing an olive T-shirt. He removes something from a box placed in front of him and wipes them on his eyebrows one at a time before eating them. Therefore, the second clip occurs after the first clip in the temporal sequence of events in the video.\", \"video_name\": \"v_UvOEuhS0V3E\"}, {\"Q\": \"What is the order of the steps taken by Brandt to repair the punctured tire?\", \"A\": \"Brandt first undoes the brakes of the back tire, then uses a wrench to unscrew the derailleur guard, and removes the tire from the rim. He then opens a new tube from a box and inflates it a little using a pump before inserting it into the tire and filling it up fully. Finally, he fixes the tire back to the bicycle using the wrench and reapplies the rear brake.\", \"video_name\": \"v__jV5sAOOHLk\"}, {\"Q\": \"What is the order of events shown in the video?\", \"A\": \"The video begins with a woman in a white room doing ballet, with sunlight streaming through the window from the right. Then, the woman is shown on a stage doing ballet while being lit by overhead lights. The video then provides a closer view of the woman dancing, before ending with a shot of her face and a logo for \\\"Under Armor\\\" on a black screen.\", \"video_name\": \"v_ZY0cdXr_1MA\"}, {\"Q\": \"What is the first event shown in the video?\", \"A\": \"The first event shown in the video is a rabbit grooming himself.\", \"video_name\": \"v_JDwd6Ec454A\"}, {\"Q\": \"What happens after the women in the white tops with numbers on them clap and face the spectators at the start of the video?\", \"A\": \"After the women in the white tops with numbers on them clap and face the spectators at the start of the video, the camera shows a shot of the spectators seated below it. In the following clip, two women's teams are playing volleyball and the spectators can be seen watching the game. A bird's eye shot of the game is shown, and then the camera angle changes to show the game from closer. Additionally, a shot of people in the spectators' stand is shown, where two men get up and cheer as they watch the game. Finally, the video ends with another clip of the game where Kenya loses a hit.\", \"video_name\": \"v_MWQ9mb_mB8U\"}, {\"Q\": \"What is the first shot in the video and who appears in the next shot?\", \"A\": \"The first shot in the video is a graphic of a web address for mDhil.com, and in the next shot, a woman named Lakshmi Rebecca is sitting in a garden with plants in the back while speaking to the camera.\", \"video_name\": \"v_QOaPQpXemCA\"}, {\"Q\": \"In what order does the little girl hop on the squares?\", \"A\": \"The little girl begins to hop on the squares starting from the first one and continues until she reaches the last one before throwing the pebble outside the square. She then hops back to the square with the pebble in it.\", \"video_name\": \"v_34SBoGK8mT8\"}, {\"Q\": \"What is the first thing that the girl does when the video starts and what can you say about the room she is in?\", \"A\": \"The first thing the girl does when the video starts is trying to make a video for her friend Bethany. The room she is in has printed walls and a chandelier. It has a green sofa, a big green plant, a white door, and some dolls. The girl herself is wearing a black top.\", \"video_name\": \"v_fNhw7xE3NM8\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"In the video, a woman wearing a green T-shirt is mowing overgrown grass on a lawn mower in a backyard during the daytime. The camera starts off tilted to the left, but is straightened as the woman rides towards the camera. A wooden fence and the top of the trees beyond the fence are visible in the back. After stopping briefly in front of the camera, the woman drives the lawn mower near a tire swing and circles back to the route she first took. Another woman, wearing a black top, walks to the tire swing and is holding onto the rope attached to it. She moves it aside to let the woman mow the lawn under it.\", \"video_name\": \"v_mMm1LfVb8Pg\"}, {\"Q\": \"What is the sequence of events in the skating rink based on the video?\", \"A\": \"The boy wearing a black T-shirt and jeans starts dancing on roller skates. Then, two boys wearing a white T-shirt and a red T-shirt respectively come to the dance floor one by one. After dancing, the second boy wearing a red T-shirt moves back and the first two boys enter the dance floor together. At the end, the boy in the black T-shirt is dancing alone on the dance floor, while a small boy skates near him.\", \"video_name\": \"v_Nvf-BZNEGdI\"}, {\"Q\": \"What kind of moves were the two boxers trying as they sparred in the dojo?\", \"A\": \"The two men were trying different moves as they boxed.\", \"video_name\": \"v_83f0iwb8VW8\"}, {\"Q\": \"What event occurs after the screen fades out to text on a black screen in the video?\", \"A\": \"After the screen fades out to text on a black screen, a man wearing a white lab coat is shown standing in front of a platform holding a can of furniture polish.\", \"video_name\": \"v_-MbZ-W0AbN0\"}, {\"Q\": \"What happens after the batsman hits the ball for a six?\", \"A\": \"After the batsman hits the ball for a six, the camera follows the ball as it flies through the air and lands in the stands, while the spectators in the stand can be seen cheering. The camera then shifts to the two batsmen as they speak and replays of the shot are shown. Later, the video shows clips from different matches played by different teams at various times of the day, which include instances of fielders getting the ball and using different ways to get the batsman out.\", \"video_name\": \"v_mY7QdIn51S8\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"First, the girl picks up a bottle of mouthwash and takes a sip, followed by gargling. Then, she spits by bending forward and begins to beatbox. After that, she picks up her toothbrush, squeezes some toothpaste on it, and starts to brush her teeth. She continues to brush and spit by bending forward, and the video ends as she finishes brushing and sticks her tongue out.\", \"video_name\": \"v_Lb7Q8qv3MHU\"}, {\"Q\": \"What action does the woman take after looking at herself in front of the mirror?\", \"A\": \"After looking at herself in front of the mirror, the woman taps her cigarette and proceeds to look by turning in one direction and then the other. She places both the cigarette and the glass in her hand in front of her at the end of the video.\", \"video_name\": \"v_7dXqXFoju2M\"}, {\"Q\": \"What happens in the video after the man sitting behind the piano speaks into a mic?\", \"A\": \"After the man sitting behind the piano speaks into a mic, he starts playing the piano, and the men with saxophones start playing as well. A man with a guitar strumming is standing behind the men playing saxophones. The video continues with all these musicians being shown playing their instruments.\", \"video_name\": \"v_A20uQSBtYMs\"}, {\"Q\": \"What can we say about the end of the video in terms of the woman and the horse?\", \"A\": \"At the end of the video, the woman is still riding the horse inside the ranch and a last still image shows the woman on the horse.\", \"video_name\": \"v_9InwA-ajB2M\"}, {\"Q\": \"What happens after the shuttlecock is missed by both players?\", \"A\": \"After the shuttlecock is missed by both players, a child standing on the side picks it up and throws it at the girl. The camera then pans to people sitting on the side of chairs and one person is seen smiling. After this, the girls continue to play but keep missing the shuttlecock.\", \"video_name\": \"v_ZK4Y6nOton8\"}, {\"Q\": \"What is the temporal sequence of events shown in the video?\", \"A\": \"The video starts with a person wearing a yellow shirt break dancing and doing the backspin. Other people are standing around the dancer. A short clip of a different child dancing is shown. The dancer in yellow continues to do the backspin for a few moments. Next, a boy in jeans, wearing a black shirt starts dancing, doing a few moonwalks. A different show of a group of boys walking backward in a straight line, with their hands on each other's shoulders is shown. As the group of boys passes by, an old man walks towards the camera and starts talking about break dancing. Cutaway of different kids dancing while people are standing around them can be seen. A clip of the dancer's foot movement is shown. The video ends with a sequence of the same people dancing.\", \"video_name\": \"v_2nDbYhgdw2A\"}, {\"Q\": \"What interruptions can be seen in the video while the man plays the bagpipe?\", \"A\": \"Throughout the video, people continuously walk by at the front and back of the venue as the man plays the bagpipe. Additionally, a woman holding a child walk past followed by others. At one point, a man takes a photo with a flash from the back. Eventually, a man wearing an orange shirt stands in front of the camera as the video ends.\", \"video_name\": \"v_nI6l7BP0odw\"}, {\"Q\": \"What does the athlete do after running on the track?\", \"A\": \"After running on the track, the athlete moves both his hands forward and jumps on the sandy area.\", \"video_name\": \"v_uCvjzcVCtEs\"}, {\"Q\": \"How many dives did the person do off the diving board before executing a reverse somersault dive?\", \"A\": \"The person did a few jumps on the diving board before executing the reverse somersault dive.\", \"video_name\": \"v_eRco7yXc-40\"}, {\"Q\": \"What happens after the coach finishes speaking in the basketball arena?\", \"A\": \"Once the coach finishes speaking, she turns toward the players, and a group of three players start a drill where they run across the court, while the one in the middle dribbles the ball all the way and finally shoots the ball in the basket. The players then turn back, while a different player among the three, wearing a white uniform, collects the ball and runs back to the other side of the court with the others while dribbling the ball. This drill is then performed by different groups of players simultaneously, and the players continue the drill until the end of the video.\", \"video_name\": \"v_IGZvj1J9tNc\"}, {\"Q\": \"What is the woman doing in the bathroom and what does she do at the end of the video?\", \"A\": \"The woman is standing in front of the mirror in the bathroom and washing a piece of cloth. As she continues to wash the cloth, she rinses it in the sink filled with dirty water. The video ends with the woman still washing and speaking into the camera.\", \"video_name\": \"v_49PbyLbrxlE\"}, {\"Q\": \"What was the last action of the girl in the video and how was the environment around her?\", \"A\": \"The last action of the girl was doing backflips and landing. The platform she was on was indoors and well-lit from above. There was a poster of a cartoon sloth on the far wall. Another girl was sitting and watching to the side.\", \"video_name\": \"v_4QRRxub6L5Q\"}, {\"Q\": \"What is the initial scene of the video and what happens next?\", \"A\": \"The video starts with text appearing on a blue screen. Next, a boy named Ivan is sitting on a chair in a well-lit bedroom. His hair is being combed by another boy standing behind him, who is introduced as Oscar. Ivan is sitting in front of a table with a computer on it and there is a wooden drawer next to him. As Oscar brushes Ivan\\u2019s hair, his head is pulled back.\", \"video_name\": \"v_zoWqv-sIdBY\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"A man wearing a t-shirt and a hat is shown buffing the shoes of a customer in a dimly lit bar. People are seen sitting at tables, with lights on the walls. A band is playing music on the left. The camera pans to the band and then back to the shoe-shiner, who continues to buff the customer\\u2019s shoe until the video ends.\", \"video_name\": \"v_NwlIZ1T93xE\"}, {\"Q\": \"What is the order in which the girls add ingredients to the salad in the video?\", \"A\": \"The girls start by cutting lettuce and tomatoes and putting them on the salad plate. This is followed by the other two girls picking various ingredients to put in the salad. The girls continue to add various ingredients to the salad, with the girl in the middle adding oil, the girl on the left sprinkling salt out of a salt shaker and the one on the left adding peanuts.\", \"video_name\": \"v_0DFz3sgfda0\"}, {\"Q\": \"What happens at the end of the video?\", \"A\": \"Towards the end of the video, the man continues to windsurf until the screen fades to black.\", \"video_name\": \"v_qmfZw9eEpIU\"}, {\"Q\": \"What is the first thing the girl does after exiting the toilet stall and walking to the brightly lit sink?\", \"A\": \"After exiting the toilet stall and walking to the brightly lit sink, the girl in the blue shirt starts to wash her hands.\", \"video_name\": \"v_tLk0Y04OaCA\"}, {\"Q\": \"What is the sequence of events in lighting the fire in the video?\", \"A\": \"The person in the video lights a piece of chip and places it on the arranged firewood laid out on the ground in the backyard. They then light a few more pieces of kindling and place them on the firewood to help it light faster. Finally, the video ends with a closeup of the top of the woodpile.\", \"video_name\": \"v_cCDffwsJvsY\"}, {\"Q\": \"What is the sequence of events in the video related to the process of getting the ear pierced?\", \"A\": \"First, a girl wearing a pink top sits in a chair of a well-lit shop to get her ear pierced. Then, a woman wearing gloves and a dark blue top cleans her ear before marking it with a marker from the counter that is filled with bottles. Next, the woman uses an ear-piercing gun to pierce the top of the girl\\u2019s ear and finally, she cleans the back of the girl\\u2019s ear.\", \"video_name\": \"v_Ntyl5alZXeM\"}, {\"Q\": \"What is the sequence of events that the man performs while training for shotput in the video?\", \"A\": \"The man starts with preparing for shotput on a concrete ground and throws the shotput to the left, after which he moves to the throwing circle and throws the shotput again by spinning and turning before throwing. A slow-motion replay of his throw is shown a few times, with frames frozen for a moment as the man turns. Next, he throws the shotput again. In the following clip, the man is inside a gym with exercise equipment visible around him, and he lifts a barbell with weights stacked on either end once before dropping it to the ground.\", \"video_name\": \"v_VWGV8I5byKI\"}, {\"Q\": \"What is the sequence of events in the video related to the game played on the squash court?\", \"A\": \"The video starts with an old man hitting a ball on a squash court. Three other players join him on the court, all wearing shorts and sports shoes. A man in a blue t-shirt starts the game and all the players try to hit the ball. Finally, a man in a red polo shirt hits the ball on the glass door and bounces it to the other side. The video ends as the man in a red polo shirt taps his raquet on the glass door in front of the camera.\", \"video_name\": \"v_sNJ6_N0j9Ts\"}, {\"Q\": \"Can you describe the sequence of events in the hammer throw practice session?\", \"A\": \"Sure, the man wearing a red shirt and black pants stands in a throwing circle with a hammer connected to a handle in his hands. He swings the hammer around himself a few times and spins it a few times before throwing it through the open end of the practice net. He watches the hammer land and then a man walks from the right side of the frame a few meters from the practice net before the video ends.\", \"video_name\": \"v_t13MQSYjlas\"}, {\"Q\": \"What is the sequence of events shown in the beginning of the video?\", \"A\": \"The video begins in a dimly lit gym with people on exercise bikes, followed by the camera panning to show a man at the front of the gym who is calling out instructions and also peddling an exercise bike. The people on the bikes can be seen following his instructions. A mirror covers the back wall of the gym, and a woman wearing a grey t-shirt can be seen walking away as the others are exercising. The first person on the front row has a towel draped over the handle of his exercise bike.\", \"video_name\": \"v_syfyM1Pble8\"}, {\"Q\": \"What happens after the two boys perform in front of the Christmas trees?\", \"A\": \"After the two boys perform in front of the Christmas trees, they talk to a woman and get their picture clicked with a girl wearing a black T-shirt. There are also two other girls sitting with her. One of them is taking their picture. There is a clothes showroom on their right side. Finally, the video ends by showcasing a digital page with some text displayed on it.\", \"video_name\": \"v_u0A5NIUKEQo\"}, {\"Q\": \"What are the sequences of events in the video in terms of timing?\", \"A\": \"The video begins in a playground with a basketball court followed by a teenager taking a running start and hopping through the hopscotch court. The two other teens follow suit and all three of them hop through the hopscotch court again. Two of the boys then attempt to do a pull-up from the basketball hoop and jump down. After that, they run a few feet away from the basketball hoop. The video ends with the cameraperson slowly walking towards the boys. Throughout the video, there are other basketball hoops visible in the distance with people scattered on the basketball court.\", \"video_name\": \"v_11p9goB2rm8\"}, {\"Q\": \"What is the woman doing at the beginning of the video and how does it end?\", \"A\": \"At the beginning of the video, the woman is standing in a living room holding a towel and a bottle of wood polish. She drips some polish on the coffee table and proceeds to wipe it with the towel. The video ends with the woman standing over the coffee table and explaining how to fill cracks in the table.\", \"video_name\": \"v_4Gx_8vuxzAk\"}, {\"Q\": \"What happens after Will Smith and the other man finish their conversation in the kitchen?\", \"A\": \"After the conversation ends, Will Smith takes out his sunglasses, plays the harmonica while singing in between, and then stops playing and looks to his right, bringing the video to an end.\", \"video_name\": \"v_HMs703DhjQU\"}, {\"Q\": \"In what order are the athletes shown performing on the tumbling track?\", \"A\": \"The video begins with a montage of athletes participating in an indoor tumbling competition, performing various acrobatic movements. The video then continues with another montage of people tumbling. Throughout the video, several individual clips of athletes performing on the tumbling track are shown interspersed with interviews of the athletes. In the final clip, a young boy performs a stunt on the track and then walks over to a man wearing a white t-shirt and high-fives him.\", \"video_name\": \"v_N4qhryre_TE\"}, {\"Q\": \"What happens after the team wearing the yellow uniform hits the ball back and forth with the team wearing the orange uniform?\", \"A\": \"After the team wearing the yellow uniform hits the ball back and forth with the team wearing the orange uniform, the players wearing the orange uniform get the ball and almost miss the hit. However, a player dives and hits the ball before another player from the same team hits it to the other side. The team wearing the yellow uniform misses the ball as they are already celebrating, and the team wearing the orange uniform wins the exchange and celebrates. The last play is replayed a few times before the two teams get back into positions again.\", \"video_name\": \"v_Jy93pLzV2uw\"}, {\"Q\": \"What are some diving maneuvers that Michal Navratil performs in the video?\", \"A\": \"In the video, Michal Navratil performs a range of diving maneuvers including tucks, twists, and forward dives. He does various flips from the diving board, showcasing his skills and control in the air. The video ends with him performing a forward tuck dive.\", \"video_name\": \"v_-vnSFKJNB94\"}, {\"Q\": \"What is the first action performed by the bartender in the beginning of the video and what follows it?\", \"A\": \"The bartender places a glass on the table and the text \\\"The Art of Making Cocktails\\\" is displayed. After this, the bartender can be seen standing behind the bar and wiping a glass with a cloth.\", \"video_name\": \"v_6wPVO7I8iIY\"}, {\"Q\": \"What are some of the details present in the video related to the temporal sequence of events?\", \"A\": \"The video starts with the logo of Indiana University Health on a light yellow background. Following that, the title \\\"Parallel Bars Basic Level\\\" is displayed, and a woman exercises on the parallel bars in the park during daylight hours. A man is also seen walking in the park. After that, there is a title displaying \\\"Parallel Bars Advance Level\\\" and a man exercises on the parallel bars. The video ends with a text saying \\\"THE STRENGTH IT TAKES\\\" and the website URL for \\\"www.iuhealth.org/workout\\\" is displayed on a light yellow background.\", \"video_name\": \"v_Fb4X1PWfOvY\"}, {\"Q\": \"What sequence of events occurs in the pole vault competition part of the video?\", \"A\": \"In the pole vault competition, the first female athlete in a red crop top, bikini bottoms, and sports shoes runs towards the blue platform with the bar above it supported by two white pillars, jumps above the bar using her pole, lands on the platform, slow-motion replay of her jump is shown. Then, the second female athlete in a purple crop top, grey bikini bottoms, and white sports shoes runs towards the platform, jumps above the bar, lands on the platform and claps. Another replay of her jump is shown. After that, the first athlete tries again and lands on the platform raising both her hands, another replay of her jump is shown.\", \"video_name\": \"v_Ws12Dt0Ny5Q\"}, {\"Q\": \"What sequence of movements did the athlete perform in the video?\", \"A\": \"In the video, the woman athlete swung the hammer in the air with both her hands, then rotated her whole body to throw the hammer in the air. The hammer then traveled in the air before falling on the grassy field where some people wearing the same uniform were standing and walking toward it.\", \"video_name\": \"v_tY9dmG6IyPo\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The video starts with an old man repairing a bicycle in a well-lit shop. The man is sitting on a wooden chair in front of the bicycle, which is propped up vertically against the wall. Another bicycle is parked next to him. A woman wearing a pink top enters the shop and they start to converse. The old man turns the wheel of the bicycle and the woman checks if it is working. The video ends with the two of them still conversing, and the man holding the woman by the ear.\", \"video_name\": \"v_IfugNwywj-k\"}, {\"Q\": \"In what specific sequence of events did the boy chop the wooden log in the video?\", \"A\": \"The boy started chopping a wooden log placed on a chopping block while standing in a patch of dirt in the woods. He first swung the axe and struck the log, causing it to split and fall to the ground. Then he picked up a fresh log and placed it on the chopping block. He walked back and swung the axe on the log, resulting in it also splitting and dropping to the ground. Finally, he held a thumbs-up sign to the camera.\", \"video_name\": \"v_dZsk5Dp_5FE\"}, {\"Q\": \"What is the sequence of actions performed by the man in the woodworking shop?\", \"A\": \"The man in the woodworking shop first applies wax on the surface of the table with a ball of steel wool. Then, he uses a car buffing wheel to polish the section he waxed. Lastly, he uses a wet rag to buff the surface.\", \"video_name\": \"v_wJk3KOUAwXA\"}, {\"Q\": \"What happens after the tattoo artist marks the girl's ear?\", \"A\": \"After the tattoo artist marks the girl's ear, the cameraperson gets a closer look and then walks back as the girl is getting tattooed on her ear by the technician using a tattoo gun. Once the tattoo artist is done tattooing, they proceed to clean the girl's earlobe.\", \"video_name\": \"v_wh4JNeQh9FQ\"}, {\"Q\": \"What actions do the two men take in the video, and in what order do they occur?\", \"A\": \"The man on the left smokes from a hookah, uses his mobile phone, drinks from a glass, takes the pipe from the other man, and makes smoke rings as he smokes. The man on the right wears a cap and a red sweater, passes the pipe to the man on the left who starts smoking, and blows smoke rings while smoking. The video ends as the man on the right turns off the camera. Overall, the actions occur in the following sequence: man on left smokes hookah, man on right passes pipe and smokes, man on left uses mobile phone and drinks, man on right blows smoke rings, man on left takes pipe and smokes, and finally, man on right turns off camera.\", \"video_name\": \"v_WdJUMmy2ox8\"}, {\"Q\": \"Can you explain the order in which the woman shoots the arrows in the video?\", \"A\": \"Yes, the woman in the video starts shooting arrows from her quiver one after another until her quiver is empty. She is standing on an indoor basketball court, and is then shown from the back as she starts to shoot at a makeshift target made of sheets near the basketball hoop. She is shown shooting arrows one after another into the middle of the sheet on the target.\", \"video_name\": \"v_AL1W3HkjJ2Y\"}, {\"Q\": \"What is the sequence of events in the video related to the girl and her horse?\", \"A\": \"The video starts with a girl wearing a blue top riding a horse, leading it through a few obstacles and jumping over them. Other riders are visible in the arena as they ride their horses. The girl leads her horse multiple times over different obstacles while riding or simply around poles on the ground. The video ends as the girl brings the horse around near the camera and goes for another round.\", \"video_name\": \"v_ooFuSspUuVY\"}, {\"Q\": \"What happens after the harmonica player finishes playing the first song?\", \"A\": \"After the harmonica player stops one song and begins another, he waves to someone to his left, indicating he knows someone in the area. The video continues until the harmonica player finishes playing this second song and pockets his harmonica, greeting someone walking behind him.\", \"video_name\": \"v_j_1kNiGcepU\"}, {\"Q\": \"What is the sequence of events of the woman's makeup application?\", \"A\": \"The woman first applies cream, then eyeliner, followed by lipstick. She then does contours and follows up with a highlight and blush before picking up the mirror and looking at herself.\", \"video_name\": \"v_le7JdKQB65I\"}, {\"Q\": \"What did the man do after he spun a few times while standing in the net?\", \"A\": \"After the man spun a few times while standing in the net, he threw the disk from the open end of the net and looked toward the direction where he threw it. The people outside the net applauded.\", \"video_name\": \"v_-6dz6tBH77I\"}, {\"Q\": \"Can you describe the sequence of events that occurred in the video?\", \"A\": \"In the video, we see two people playing squash on a well-lit court with a wooden floor. One player is wearing a black shirt and the other is wearing a yellow T-shirt. During the game, the player in the yellow shirt misses his shot, while the other player kneels down to tie his shoes. The video ends when the man in the yellow shirt looks up to the cameraman.\", \"video_name\": \"v_BnO8AfQS8yE\"}, {\"Q\": \"What is the sequence of events in the belly dancer performance?\", \"A\": \"The video starts with a spotlight aimed at a white curtain with red lighting on the stage. A belly dancer enters the stage wearing a sparkling turquoise-colored belly dancer dress. She starts moving her hands and performs her steps by moving around the stage. There is music playing in the background and camera flashes in between her performance. She twists, turns, and bends her body throughout her performance. The video ends with her performance finishing and the audience applauding her.\", \"video_name\": \"v_tXUssW4vT3o\"}, {\"Q\": \"What happens after the man in the Mario costume smokes from the hookah again?\", \"A\": \"After the man in the Mario costume smokes from the hookah again, he opens a door on his right and a man in a dark green Luigi costume enters the room. The two hug and start to smoke the hookah. Shortly after, a man in a yellow Luigi costume enters the room and they all start to smoke together while talking to each other. They also start dancing to music while sitting and smoking, and blow smoke at each other. The three men share the hookah and at one point the man in the Mario costume hands the pipe to the man in the green Luigi costume, then takes it back after the man in the yellow Luigi costume smokes once. They then do a chest bump and continue to smoke and converse. The video ends with a slideshow of the three in different poses.\", \"video_name\": \"v_MgjxjBxGrQU\"}, {\"Q\": \"What is the sequence of events in the video with respect to the cycling class?\", \"A\": \"The video starts with a graphic and text \\\"Voice of America\\\" and then shows a woman instructor on her exercise bike wearing a black t-shirt and a mic in her ear. She is instructing a class with people on their exercise bikes in a well-lit gym with white walls and a grey floor. The instructor calls out instructions as the class members pedal. A clip of an interview with one of the participants, a woman wearing a grey t-shirt and a hairband, is shown, followed by a clip of people exercising from different angles. Next, a man moves a display tower into the class and demonstrates how to change the resistance on the exercise bike. The video continues to show the cycling class as people are pedaling, and in the following clip, the man speaks to the camera again. The video ends with clips of people on different exercise machines.\", \"video_name\": \"v_TGIQtaINzCY\"}, {\"Q\": \"What happens in the next clip after the man fills the bucket with water?\", \"A\": \"After the man fills the blue bucket with water, the dog is seen shaking the water dry in slow motion. The man then pours the water from the bucket on the dog.\", \"video_name\": \"v_CvbBSwz-9XI\"}, {\"Q\": \"When does the biker ride the dirt bike in the field?\", \"A\": \"The biker rides the dirt bike in the field during the daytime.\", \"video_name\": \"v_-cAcA8dO7kA\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"In the video, a woman standing in front of a sink begins by scrubbing a plate with a scrubber followed by washing it and stacking it on the shelf next to the sink. She then proceeds to wash a spoon and a fork using a scrubber and places them on the shelf before cleaning a tumbler and stacking it on the side. Finally, she turns to the camera and yells after cleaning the dishes.\", \"video_name\": \"v_9snScUyE8_4\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"In the beginning of the video, two girls wearing boxing gloves are seen boxing in a gym. One girl is wearing a black vest while the other is wearing a grey t-shirt. They are being instructed by a trainer who is out of frame. There is also a man wearing boxing gloves standing nearby, leaning against a punching bag. Other people can be seen boxing on the other side of the gym and the gym is well-lit with an off-white painted wall and a blue foam mat covering the floor. Punch mitts are also hanging from hooks on the wall.\", \"video_name\": \"v_LvaU_4xbxb0\"}, {\"Q\": \"What is the order of events in the video?\", \"A\": \"The video starts with a man washing his hands in a sink followed by people crossing a street on a zebra crossing. Then a person can be seen welding something in a workshop with dim lights, and a monster truck drives through a mud track. Before the next clip, an animated hand appears to swipe on a black background. In the following clip, there is a scene with cars moving through traffic with a building visible far in the back of the cars.\", \"video_name\": \"v_96ADEnJy4GU\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video begins with a view of a white building from the outside, followed by a glimpse inside a ballet studio where children practice ballet with a teacher wearing a white t-shirt and pants. Then, students are seen practicing in a hallway while some sit at the bottom of the stairs at the back. A girl is speaking from inside a well-lit studio, followed by girls dancing with one hand on a handle. A woman wearing a green top is talking to the camera, and then there is a shot of the dome in the building. The clip changes to a classroom with students seated and one of the students writing on the chalkboard. After that, children are seen walking through the school as a woman wearing a red shirt speaks to the camera. Finally, a girl and a boy are dancing in a studio while the children watch.\", \"video_name\": \"v_ZUl43hNzGjA\"}, {\"Q\": \"What does the woman wearing a sweater over a red outfit do after looking into the camera?\", \"A\": \"After looking into the camera, the woman walks to a desk with a computer in the back and sits down.\", \"video_name\": \"v_sBwUwgTjhAU\"}, {\"Q\": \"What happens towards the end of the video?\", \"A\": \"Towards the end of the video, people near the left goalpost get the ball and try to get it past the goalkeeper who is sitting in front of the goalpost and blocking it. Eventually, they get the ball past the goalkeeper and score a goal. The goalkeeper then throws the ball across the pool near the opposite goalpost. The video ends as the people are still playing.\", \"video_name\": \"v_nTY4IaGRFIc\"}, {\"Q\": \"What does the man do after holding a knife in his right hand?\", \"A\": \"After holding a knife in his right hand, the man kneels down and strikes his knife on a fire starter to light a stack of firewood on fire. The firewood stack has heavy logs placed against each other and a few thinner sticks placed in the middle. A green piece of paper is visible in the middle. The stack is placed in an area with sand and pebbles, and the fire grows as the video ends with the man celebrating.\", \"video_name\": \"v_-D1gdv_gQyw\"}, {\"Q\": \"What is the order of steps for ironing the green piece of clothing shown in the video?\", \"A\": \"The woman starts by turning the fabric inside out and lays it flat on the ironing board. She then puts a white ironing cloth on the fabric and begins to iron it with slow circular motions, starting from the top and working downwards. Finally, she pulls the fabric to iron the next section. The video ends with the woman lifting the fabric off of the ironing board.\", \"video_name\": \"v_WCS8dzRT7Xk\"}, {\"Q\": \"What is the sequence of events during the beginning of the video as two ping pong players play a game in the arena?\", \"A\": \"The video begins with two ping pong players playing a game in a well-lit arena, with seats for spectators near the walls and flags of different countries hung near the rafters. A man wearing a jacket and khaki pants is sitting near the separator of the court. Later, a referee wearing a coat is seen sitting behind a table at the edge of the court while the two players are on an orange court playing ping pong.\", \"video_name\": \"v_wjr5M-6qEWI\"}, {\"Q\": \"Can you describe the order in which the gymnast performed her routine?\", \"A\": \"The gymnast started her routine on the balance beam after hopping onto it using a springboard. She first performed a backflip and unfortunately slipped and fell on the mat. She then got back up on the balance beam and continued her routine which included flips, balancing acts, and jumps. However, she lost balance again and landed on the mats before completing her routine. She got back up on the beam again and completed her routine, which was followed by cheers from the crowd.\", \"video_name\": \"v_GOF5guH_kuI\"}, {\"Q\": \"How long does the girl play the harmonica in the video?\", \"A\": \"The girl plays the harmonica for several minutes while swaying back and forth.\", \"video_name\": \"v__a527xEzhkw\"}, {\"Q\": \"What happens after a goal is scored in the water polo game in the video?\", \"A\": \"After a goal is scored in the water polo game in the video, the goalkeeper throws the ball outside and a few players can be seen passing the ball to others. Two players can be seen swimming and fighting for the ball while others swim away.\", \"video_name\": \"v_cH3H-arDsH4\"}, {\"Q\": \"What sequence of events did the cheerleading group perform in the video?\", \"A\": \"The cheerleading group first lifted five girls, and then lifted four other girls while a girl in the front did backflips and cartwheels. Next, some group members did flips and clapped while some of them did backflips. The group lifted four girls in the air and they all did a leaning forward pose by standing on one leg. Then some of them did cartwheels and backflips, and a boy fell after doing the backflip. Finally, the group ended with cheerleading dance steps and the audience applauded them.\", \"video_name\": \"v_uqwf903l5-E\"}, {\"Q\": \"What is happening in the video and what are the two teams wearing?\", \"A\": \"In the video, a polo match is taking place on a polo field with players riding horses and hitting the ball with mallets. The two teams are distinguished by the color of their polo shirts - one team is wearing white and the other is wearing red.\", \"video_name\": \"v_hvhny4-sI-w\"}, {\"Q\": \"Can you describe the sequence of events in the video?\", \"A\": \"The video begins with the woman in a red vest standing in a net, holding a hammer attached to a string in a field with a red mat. She swings with the string and spins a few times before releasing the hammer through the open end of the netting. The video ends with the woman walking off to the side.\", \"video_name\": \"v_d09u-0k3LdE\"}, {\"Q\": \"What is happening during the end of the video?\", \"A\": \"As the video ends, both couples are still dancing.\", \"video_name\": \"v_B0GCHDqEsRU\"}, {\"Q\": \"What does Samuel do in the video?\", \"A\": \"In the video, Samuel, who is wearing a blue-green jersey with the number 24, can be seen running through the field, checking the ball, chasing the player with the ball, and trying to check it while playing different positions.\", \"video_name\": \"v_aH39BSM0-Ag\"}, {\"Q\": \"What activity does the man start at the beginning of the video?\", \"A\": \"The man wearing a white T-shirt starts to dance at the beginning of the video, and the people behind him start to follow his lead, indicating the start of the Zumba class.\", \"video_name\": \"v_iqhdqhVttEM\"}, {\"Q\": \"What is the sequence of events in the video regarding the creation of the sandwich?\", \"A\": \"The woman begins by introducing herself, then shows the ingredients of the sandwich. She slices a roll of bread in half, spreads pizza sauce on one-half of the roll, adds slices of pepperoni and cheese to the slice of bread and then places the sandwich in the oven. Once finished, the sandwich is topped with slices of tomato and shredded lettuce before the two halves are put together to complete the sandwich.\", \"video_name\": \"v_cECycCDw1Nc\"}, {\"Q\": \"What is shown in the video after the man wearing a red vest kayaks down the stream?\", \"A\": \"After the man wearing a red lift vest kayaks down the stream, a man wearing a blue lift vest is shown rowing a green kayak. Following that, people can be seen rowing their kayaks down the rapids, and a clip of two kayakers on the shore removing their life vests is shown. The clip then continues from the perspective of a person on a green kayak as they go down the stream. Throughout the video, shots of various individuals kayaking are shown until the video ends with the kayakers still rowing down the stream.\", \"video_name\": \"v_zxr6UZKPDh4\"}, {\"Q\": \"What happens in the video after the animated shot of Earth?\", \"A\": \"In the next clip, an instructor wearing a white shirt and green shorts is seen standing on a basketball court with a basketball tucked in the crook of his left hand. He is speaking into the camera while another person wearing a grey T-shirt stands behind him and folded chairs are visible in the background.\", \"video_name\": \"v_egowZOcbEkI\"}, {\"Q\": \"What does the woman do throughout the video?\", \"A\": \"Throughout the video, the woman belly dances while balancing a candelabra on her head. She begins her performance with the candelabra on her head and continues to dance with it until the end of her performance, where she finishes her dance, holds her hands to her sides, and walks away.\", \"video_name\": \"v_SNJgJB2PGdI\"}, {\"Q\": \"What is the sequence of events in the spear-throw competition shown in the video?\", \"A\": \"The video shows athletes holding a spear running and throwing it in a competition in an outdoor stadium. The audience sitting in the seats and standing in the field in suits cheered them on as they aimed to throw the spears as far as possible. The landing of the spears was shown, with lanes marked with numbers in the landing area. The video ended with an athlete throwing a spear, which was followed by its landing, leading the audience to applaud. Additionally, a moment featuring Adolf Hitler clapping was shown, and the video ends by displaying the scoreboard with the names and throw distances.\", \"video_name\": \"v_HURRgbZGz8Q\"}, {\"Q\": \"What type of training did the man in the white T-shirt start with before the sparring session?\", \"A\": \"The man started his practice with punches and kicks before the sparring session. The trainer was calling out which move he should do next and in what count.\", \"video_name\": \"v_afMQA352X_A\"}, {\"Q\": \"How does the video showcase the boy\\u2019s activities related to the temporal sequence of events?\", \"A\": \"The video shows the boy playing the violin in the beginning wearing a white t-shirt and glasses and standing before a bright light, before it shifts to a dimly lit room where he continues playing while walking through the room and the house and being joined by other people. The clip then shifts to him sitting on a couch in a sweater over a shirt and then getting up and leaving, only to return wearing a grey shirt and sunglasses and taking selfies with a girl who later leaves. The boy is then seen sitting on a couch again before changing his glasses and leaving as footage of him playing the violin is shown in between. Finally, the video ends with him knocking on a door and giving a stuffed animal to a girl.\", \"video_name\": \"v_Zhx6BYVb64g\"}, {\"Q\": \"What is the sequence of events in the video?\", \"A\": \"The video starts with two newscasters, a woman on the left and a man on the right, standing behind a glass news desk with the number \\\"10\\\" displayed on the front. A cutaway of two men shoveling snow during the day is shown. In the next clip, the two men speak to the camera one after the other and their names are shown on ribbons on the screen. Next, the two men are shown again shoveling snow and then speaking to each other. In the following clip, a doctor is interviewed and a few clips of people shoveling snow are shown as cutaways of the doctor speaking. In the next clip, a woman wearing a black jacket reports in front of the camera. She holds up her phone and shows her heart rate. Next, a woman is shown shoveling snow. Another cutaway of the doctor speaking is shown. Finally, the two men from the first clip are shown speaking to the camera and the video ends with the news anchors in the studio finishing their reporting.\", \"video_name\": \"v_l8gg9TYh_B0\"}, {\"Q\": \"What is the temporal sequence of events in the video related to weightlifting?\", \"A\": \"The video begins with a man lifting a barbell and dropping it, followed by clips of the man lifting progressively heavier barbells and dropping them after lifting them above his head. The man lifts an 85-kilogram barbell and drops it on the floor multiple times. He then lifts a barbell of 130 kilograms and drops it after lifting it above his head. The temporal sequence of events is such that the man starts with lifting a lighter weight, then gradually increases the weight until he lifts the heaviest weight at the end of the video.\", \"video_name\": \"v_Ds2O0-8Labs\"}, {\"Q\": \"What happens after the woman is photographed by multiple photographers?\", \"A\": \"After the woman is photographed by multiple photographers, a man in a red polo shirt joins her on the red carpet to get photographed. The woman holds up a paddle in front of her face with the picture of the man she is standing next to on it.\", \"video_name\": \"v_k1QAWLupB-I\"}, {\"Q\": \"What is the temporal sequence of events in the video relating to the martial artist's performances?\", \"A\": \"The video starts with the martial artist wearing a white polo shirt and trousers performing various martial arts movements in a well-lit studio, followed by a shot of another man doing martial arts movements in a well-lit room with people observing him. Then, there is a scene where a man in a green martial arts uniform does various movements outdoors on the lawn during the daytime with people observing him. The final scene shows the martial artist in an indoor venue demonstrating different movements, with people observing him. \", \"video_name\": \"v_oncTwYfvCD8\"}, {\"Q\": \"What does the boy do in the video and how does he do it?\", \"A\": \"In the video, the boy wearing a grey vest dribbles a basketball on a basketball court during the daytime. He runs crisscrossing around little orange agility cones, and reaches the basket and throws the ball through it. He repeats this drill by running back to the starting cone.\", \"video_name\": \"v_QG2xYcN_bl0\"}, {\"Q\": \"What was shown in the video with respect to the temporal sequence of events in the paintball arena?\", \"A\": \"The video showed different shots of people putting on helmets, people wearing different camo outfits and running in the arena, cable drums and old tires arranged in the arena as places for people to hide behind, and people shooting the paintball guns while moving and avoiding being shot at. It also showed different videos of the arena always during the day time and people hiding behind cable drums and stacked tires to duck and shoot other players. A fence visible around the arena and a street with cars and other vehicles driving by were shown. The video ended with a shot of a different area of the arena with more weeds and cinderblocks as covers. \", \"video_name\": \"v_9UvVeUYQLgA\"}, {\"Q\": \"What is the first event that takes place in the video?\", \"A\": \"The video starts with two women sitting on a beach, with one wearing a yellow T-shirt and a Ford logo on the back while the other is wearing a pink T-shirt with a Ford logo on its back. People are seen walking and playing cricket on the beach.\", \"video_name\": \"v_yttmx8mcjGw\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"In the beginning of the video, a little girl wearing a black outfit is sitting on a shoe-shine chair in a well-lit mall. A little boy wearing a green shirt is next to her. A woman is kneeling in front of the girl and shining her shoe while wearing a black jacket and gloves. A store is visible behind the shoe-shine station. She turns to her right and speaks to the cameraman.\", \"video_name\": \"v_Lshue6AmrIw\"}, {\"Q\": \"What happens after the initial scene of Julie speaking to the camera in the well-lit hair salon?\", \"A\": \"After the initial scene of Julie speaking to the camera in the well-lit hair salon, the women seated in the salon are shown one at a time as they attach hair rollers to their hair. They are seen using different types of rollers. Near the end of the video, the women are shown as they have removed their hair rollers and spraying their hair, while they are looking at mirrors.\", \"video_name\": \"v_wcxEkMoOmBk\"}, {\"Q\": \"What time of day is the man climbing the rock, and what can be seen streaming down through the tree cover?\", \"A\": \"The man is climbing the rock during the daytime, and patches of sunlight can be seen streaming down through the tree cover.\", \"video_name\": \"v_dEpUIpmBvow\"}, {\"Q\": \"What is the order of events in the video starting from the rolls of gift wrappers?\", \"A\": \"The video starts with rolls of gift wrappers stacked on top of each other, followed by a stack of one US dollar notes placed on a white surface with text displayed above and below it. Two scotch tapes are placed next to each other with the one on the left with a red \\\"X\\\" over it. The left scotch tape disappears, and in the following clip, a gift is placed on the white surface. Currency notes of one US dollar are then taped to the gift to look like gift wrapping. Finally, a green string is tied around the box, with bows on top.\", \"video_name\": \"v_zEttEkAdHts\"}, {\"Q\": \"What is happening in the beginning of the video?\", \"A\": \"The video starts with a group of women doing an aerobics workout, led by an instructor.\", \"video_name\": \"v_eS-VU_XV1K8\"}, {\"Q\": \"What was the sequence of actions of the woman at the dipper well?\", \"A\": \"The woman first scooped out some water using the ladle with her right hand. She then washed her left hand and used it to scoop out water and wash her right hand. Lastly, she placed the ladle back on top of the dipper well and walked away.\", \"video_name\": \"v_z3MP0yJBtGg\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The video starts with a black screen displaying the text \\u201cREALLY BETHANY Shaving Your Legs In My Office\\u2026REALLY?\\u201d. Then, a woman named Bethany is seen shaving her legs while sitting on a chair in a well-lit room with white walls. She shaves her right leg followed by her left leg. A woman enters the office through the open door on Bethany\\u2019s left and shows some papers to her before leaving. Bethany then holds a pose while standing in the office with a woman standing behind her. The woman behind Bethany is wearing a grey top with black pants, black shoes, and glasses. Bethany then skips out of the frame and the video ends with a fade-out into a black screen. \", \"video_name\": \"v_EZyLBq2jJtE\"}, {\"Q\": \"What is the order in which the events occur in the video?\", \"A\": \"The video starts with text on a black screen, followed by a woman wrapping a box with a cloth on a table. The cloth is pink on the inside and green on the outside. Afterward, the woman brings the edges of the cloth together over the box and ties them together with care.\", \"video_name\": \"v_Omvg9UtGOes\"}, {\"Q\": \"What is the first thing that happens in the video?\", \"A\": \"The video starts by showing people seated at tables in a ballroom.\", \"video_name\": \"v_oni9K1_MCuw\"}, {\"Q\": \"What is the temporal sequence of events in the video?\", \"A\": \"The video starts with text on the screen and then shows a woman wearing a black coat smoking an e-cigarette followed by another woman watching her. Next, a man wearing a checkered shirt and glasses smokes an e-cigarette and then a montage of different people smoking the e-cigarette is shown. Throughout the video, a woman wearing a red outfit with a hat is standing next to most of the people who are smoking.\", \"video_name\": \"v_Rn6_IwckXg4\"}, {\"Q\": \"What happens immediately after the woman helps the little girl jump down the porch in the video?\", \"A\": \"After the woman helps the little girl jump down the porch in the video, she begins to teach the girl how to play hopscotch.\", \"video_name\": \"v_2fzIi1lPd8U\"}, {\"Q\": \"What is the order of events in the beginning of the video?\", \"A\": \"The video begins on a dirt bike track with trees and vegetation visible outside the track. Bikers can be seen approaching from behind a jumping ramp. A rider jumps over a jumping ramp and continues on to the next one, while another rider parallel to the first one jumps over a ramp on the right. The clip ends with the riders making a left turn after they clear the second ramp.\", \"video_name\": \"v_C7yd6yEkxXE\"}, {\"Q\": \"What sequence of events occurred during the high jump competition in the daytime?\", \"A\": \"During the high jump competition in the daytime, a boy in a blue vest and shorts started his run, jumped over the bar by jumping backward and cleared it. He then walked away while speaking to a man wearing a blue t-shirt. Following that, a man in a blue vest and tights began his run, jumped over the bar, but unfortunately made contact with it which fell as he landed on the cushion. He then got up and walked away. In the background, an incline with shrubs and trees is visible.\", \"video_name\": \"v_NM7Vye5nxj8\"}, {\"Q\": \"What does the woman do after wrapping the small box?\", \"A\": \"After wrapping the small box, the woman takes a bigger red square box and measures its sides with a plastic scale. She then takes a gift-wrapping paper and folds it so that it covers the box completely and applies tape on the center. The frame then changes to another text being displayed on a black background.\", \"video_name\": \"v_TNqc2yWZztE\"}, {\"Q\": \"What does the man do at the start and end of the video?\", \"A\": \"The man starts the video standing with a vacuum cleaner and ends the video by switching off the vacuum cleaner and moving out of the frame.\", \"video_name\": \"v_UNXLfqkwKFc\"}, {\"Q\": \"What does the woman do after washing her hands?\", \"A\": \"After washing her hands, the woman dries them on her apron and then walks out of the frame.\", \"video_name\": \"v_ghxiG0Dnrt0\"}, {\"Q\": \"What is the sequence of events involving the groomer in the video?\", \"A\": \"The video begins with a white labrador retriever outside followed by a man wearing a red polo shirt bathing a golden retriever secured with a harness. The groomer is shown lathering and washing the dog with a hose, then drying it off with a towel and a blow-drier. He then wipes the dog with a towel again and brushes its coat. After that, the video transitioned to a man entering a shop with his dog in a harness. The following clip shows a golden retriever laying down on the floor. Subsequently, a labrador retriever is shown jumping through an orange tube followed by jumping down onto the ground in a wooden area. Finally, the dog is shown panting in a different location and the video ends with the contact information for the groomer displayed.\", \"video_name\": \"v_W9H2qVnIWXs\"}, {\"Q\": \"What is the last event shown in the video?\", \"A\": \"The last event in the video is the parrot still eating cream from the coffee cup.\", \"video_name\": \"v_IN23CO8Kotk\"}, {\"Q\": \"What does the man do after he climbs up the rocky hill?\", \"A\": \"The man rappels down with a rope and removes anchors as he is descending.\", \"video_name\": \"v_ZxPF3s_OLDo\"}, {\"Q\": \"What was the first design that was created on a girl in the video?\", \"A\": \"In the video, the first woman who enters the tattoo parlor goes to the tattoo artist and gets a stencil on her wrist.\", \"video_name\": \"v_BFChXuwZ4wo\"}, {\"Q\": \"Can you describe the temporal sequence of events in the video?\", \"A\": \"Sure! The video begins with a boy standing in a room in front of a ping-pong table. He hits a ball with a paddle before the scene switches to him playing against an opponent in a ping-pong competition. Next, the video shows the boy playing against different opponents and in different venues. The boy is also seen playing against people of different nationalities. The video ends with him playing against an opponent and missing a hit.\", \"video_name\": \"v_9k19UUJtldg\"}]"
  },
  {
    "path": "model/univi/eval/questions/video_qa/tgif_a_list.json",
    "content": "[\n  \"cookie\",\n  \"? machine\",\n  \"two\",\n  \"glasses\",\n  \"black\",\n  \"tail\",\n  \"red\",\n  \"flowers\",\n  \"laptop\",\n  \"three\",\n  \"white\",\n  \"green\",\n  \"? boat\",\n  \"blue\",\n  \"? room\",\n  \"brown\",\n  \"cat\",\n  \"picture\",\n  \"drink\",\n  \"cigarette\",\n  \"clock\",\n  \"car\",\n  \"monkey\",\n  \"guitar\",\n  \"purple\",\n  \"? kitchen\",\n  \"? mirror\",\n  \"meal\",\n  \"four\",\n  \"? tank\",\n  \"? classroom\",\n  \"dog\",\n  \"pipe\",\n  \"leaf\",\n  \"shirt\",\n  \"champagne\",\n  \"string\",\n  \"sweater\",\n  \"? studio\",\n  \"tortoise\",\n  \"and one of them is holding ? dog\",\n  \"rings\",\n  \"vehicles\",\n  \"lollipop\",\n  \"candy\",\n  \"bottle\",\n  \"then a man is shown sitting . ? locker\",\n  \"parakeets\",\n  \"hole\",\n  \"tie\",\n  \"boat\",\n  \"ball\",\n  \"cash\",\n  \"chicken\",\n  \"? street\",\n  \"bird\",\n  \"six\",\n  \"? pool\",\n  \"window\",\n  \"round\",\n  \"instrument\",\n  \"puppy\",\n  \"doorway\",\n  \"juice\",\n  \"flamethrower\",\n  \"gray\",\n  \"dress\",\n  \"hat\",\n  \"kitten\",\n  \"gun\",\n  \"cars\",\n  \"paws\",\n  \"elephant\",\n  \"beam\",\n  \"? chair\",\n  \"chimp\",\n  \"one\",\n  \"butt\",\n  \"mascara\",\n  \"dogs\",\n  \"puppet\",\n  \"hamster\",\n  \"? bedroom\",\n  \"who pretends to slap him in return ? crack\",\n  \"machine\",\n  \"drops\",\n  \"then he removes and throws it to the ground ? hat\",\n  \"when two of the cyclist crash ? bicycles\",\n  \"cannabis\",\n  \"? trap\",\n  \"helmet\",\n  \"motorcycle\",\n  \"purses\",\n  \"bank\",\n  \"orange\",\n  \"guitars\",\n  \"? crib\",\n  \"hedgehog\",\n  \"? hallway\",\n  \"? car\",\n  \"steps\",\n  \"horse\",\n  \"? bath\",\n  \"drawer\",\n  \"cats\",\n  \"duck\",\n  \"wearing , reads a piece of paper on a desk and then raises his head ? glasses\",\n  \"phone\",\n  \"pillow\",\n  \"cup\",\n  \"he has food in front of him . ? chair\",\n  \"surfboard\",\n  \"before one of them climbs from the ring ? two\",\n  \"dancing , and clapping ? four\",\n  \"pool\",\n  \"motorcycles\",\n  \"pictures\",\n  \"? star\",\n  \"clipboard\",\n  \"paw\",\n  \"kiss ? two\",\n  \"turtle\",\n  \"when one touches the other on the shoulder ? two\",\n  \"? house\",\n  \"five\",\n  \"locker\",\n  \"tree\",\n  \"bat\",\n  \"popcorn\",\n  \"broom\",\n  \"guns\",\n  \"paint\",\n  \"seat\",\n  \"and then they run away ? heels\",\n  \"flags\",\n  \"dice\",\n  \"? library\",\n  \"yellow\",\n  \"chair\",\n  \"door\",\n  \"? warehouse\",\n  \"kick it and fall over ? tire\",\n  \"jacket\",\n  \"wire\",\n  \"crow\",\n  \"motions\",\n  \"bubbles\",\n  \"vehicle\",\n  \"wearing and speaking ? necklace\",\n  \"one is dressed funny , look at each other ? two\",\n  \"mice\",\n  \"clothing\",\n  \"bread\",\n  \"fireworks\",\n  \"microphone\",\n  \"mascot\",\n  \"? booth\",\n  \"wolf\",\n  \"? foyer\",\n  \"driver\",\n  \"cylinder\",\n  \"on top of his food bowl ? dog\",\n  \"rabbit\",\n  \"? office\",\n  \"treadmill\",\n  \"cap\",\n  \"tire\",\n  \"stick\",\n  \"is laying and opening her eyes . ? bed\",\n  \"stairs\",\n  \"drums\",\n  \"bar\",\n  \"? bed\",\n  \"spoons\",\n  \"? lab\",\n  \"headphones\",\n  \"one is . ? basket\",\n  \"makeup\",\n  \"frogs\",\n  \"wine\",\n  \"two men sit on a sofa and a man dances along a red carpet ? rectangle\",\n  \"sauce\",\n  \"airplane\",\n  \"and he is playing ? guitar\",\n  \"fox\",\n  \"costume\",\n  \"slide\",\n  \"stamp\",\n  \"butts\",\n  \"? window\",\n  \"rope\",\n  \"receiver\",\n  \"then the dog turns around crazy ? butt\",\n  \"and one talks to someone . ? room\",\n  \"? aisle\",\n  \"headset\",\n  \"horses\",\n  \"handgun\",\n  \"bear\",\n  \"napkin\",\n  \"? bottle\",\n  \"frog\",\n  \"wearing , animal print pants and pink shoes is dancing on a sidewalk ? shirt\",\n  \"bicycle\",\n  \"button\",\n  \"panda\",\n  \"turtles\",\n  \"but keeps flying ? airplane\",\n  \"? headset\",\n  \"lobby\",\n  \"pelican\",\n  \"dive\",\n  \"? cage\",\n  \"dishes\",\n  \"wagon\",\n  \"seven\",\n  \"? bag\",\n  \"butterfly\",\n  \"flask\",\n  \"banana\",\n  \"flasks\",\n  \"bus\",\n  \"device\",\n  \"is riding through the house ? bicycle\",\n  \"bright lightning ? sky\",\n  \"umbrellas\",\n  \"yawns then puts out its paw and pushes a jar off onto the floor ? cat\",\n  \"skateboard\",\n  \"cupcakes\",\n  \"shoe\",\n  \"cloak\",\n  \"apple\",\n  \"wall\",\n  \"horns\",\n  \"trick\",\n  \"date\",\n  \"he is talking to a woman ? beer\",\n  \"hill\",\n  \"? bar\",\n  \"pieces\",\n  \"stars\",\n  \"and the bowl disappears ? dog\",\n  \"bridge\",\n  \"box\",\n  \"with one of them embracing the other from behind ? two\",\n  \"piano\",\n  \"? hall\",\n  \"coffee\",\n  \"peel\",\n  \"cutter\",\n  \"circle\",\n  \"sunglasses\",\n  \"star\",\n  \"? pen\",\n  \"they move slowly ? stairs\",\n  \"kitty\",\n  \"pen\",\n  \"owl\",\n  \"puppies\",\n  \"fish\",\n  \"keyboard\",\n  \"underwear\",\n  \"? gym\",\n  \"pigeon\",\n  \"retriever\",\n  \"masks\",\n  \"kangaroo\",\n  \"close\",\n  \"shorts\",\n  \"band\",\n  \"swimming\",\n  \"? plate\",\n  \"then another man reaches for it ? gun\",\n  \"face\",\n  \"ferret\",\n  \"drug\",\n  \"clothes\",\n  \"spoon\",\n  \"hurdle\",\n  \"grass\",\n  \"? paint\",\n  \"airplanes\",\n  \"talks\",\n  \"whose lights flash on ? flower\",\n  \"with one drumming ? instruments\",\n  \"? bowl\",\n  \"burger\",\n  \"llama\",\n  \"it licks its lips ? horse\",\n  \"? holder\",\n  \"camel\",\n  \"dancing\",\n  \"umbrella\",\n  \"pants\",\n  \"ducklings\",\n  \"mug\",\n  \"necklace\",\n  \"track\",\n  \"smoking and turning her head ? cigarette\",\n  \"ladder\",\n  \"cliff\",\n  \"shirts\",\n  \"shark\",\n  \"is playing ? ukulele\",\n  \"turns\",\n  \"? ball\",\n  \"scooter\",\n  \"? box\",\n  \"? road\",\n  \"cover\",\n  \". ? cage\",\n  \"backhoe\",\n  \"bed\",\n  \"and she is holding up ? puppet\",\n  \"? two\",\n  \"goblet\",\n  \"is using and smoking a cigarette ? phone\",\n  \"wearing coats , is hugging . ? hallway\",\n  \"but he misses ? ball\",\n  \"diver\",\n  \"? nightclub\",\n  \"they both smile ? round\",\n  \"medic\",\n  \"? stick\",\n  \"train\",\n  \"? microphone\",\n  \"cigar\",\n  \"wearing , comes through a door held open by another man ? suit\",\n  \"wheel\",\n  \"lions\",\n  \"tights\",\n  \"racetrack\",\n  \"one picks up the other and carries him ? two\",\n  \"sun\",\n  \"? floor\",\n  \"beer\",\n  \"berries\",\n  \"mask\",\n  \"heels\",\n  \"decorator\",\n  \"cub\",\n  \"breakfast\",\n  \". ? chair\",\n  \"then looks away ? monkey\",\n  \"? bucket\",\n  \"snack\",\n  \"girl\",\n  \"suspenders\",\n  \"toy\",\n  \"elephants\",\n  \"boar\",\n  \"bubble\",\n  \"falls off and he grabs it ? hat\",\n  \"trunk\",\n  \"and one of them climbs from one to the other ? frogs\",\n  \"floor\",\n  \"belt\",\n  \"octopus\",\n  \"? dish\",\n  \"truck\",\n  \"snowmobile\",\n  \"standing in the dark , wears ? dress\",\n  \"? bathtub\",\n  \"trees\",\n  \"? mall\",\n  \"bow\",\n  \"beat to the rhythm ? sticks\",\n  \"? store\",\n  \"but stops him ? rope\",\n  \"pug\",\n  \"headgear\",\n  \"tubes\",\n  \"dance\",\n  \"pandas\",\n  \"iguana\",\n  \"concert\",\n  \"dandelion\",\n  \"? garden\",\n  \"queen\",\n  \"instruments\",\n  \"tricycle\",\n  \"racing\",\n  \"? garage\",\n  \"horn\",\n  \"entrance\",\n  \"can\",\n  \"chimpanzee\",\n  \"but the bear cub does ? bear\",\n  \"glass\",\n  \"birds\",\n  \"screaming and pointing ? two\",\n  \"robot\",\n  \"sky\",\n  \"egg\",\n  \"moth\",\n  \"backpack\",\n  \"beverages\",\n  \"bouquet\",\n  \"trumpet\",\n  \"carpet\",\n  \"? apartment\",\n  \"pony\",\n  \"goat\",\n  \"headdress\",\n  \"and he is removing ? hat\",\n  \"house\",\n  \"suit\",\n  \"gum\",\n  \"curb\",\n  \"and then leaves it ? car\",\n  \"snake\",\n  \"he looks at his passenger who is sleeping ? car\",\n  \"? bow-tie\",\n  \"wig\",\n  \"raising a cloud of dust ? car\",\n  \"freezer\",\n  \"delivering , and signing ? flowers\",\n  \"skis\",\n  \"road\",\n  \"deal\",\n  \"ship\",\n  \"? bathroom\",\n  \"bills\",\n  \"piece\",\n  \"items fall out and she makes a face ? door\",\n  \"drinks\",\n  \"dives , . ? cafeteria\",\n  \"goggles\",\n  \"? wagon\",\n  \"man\",\n  \"cups\",\n  \"dolphin\",\n  \"card\",\n  \"building\",\n  \"trunks\",\n  \"liquor\",\n  \"scarf\",\n  \"squash\",\n  \"cheese\",\n  \"then the snake kisses her ? snake\",\n  \"dances seductively ? dress\",\n  \"sword\",\n  \"kiss\",\n  \"possum\",\n  \"stockings\",\n  \"? tray\",\n  \"the one man yells ? two\",\n  \"and she is playing ? guitar\",\n  \"? alley\",\n  \"also wearing ? helmet\",\n  \"beverage\",\n  \"weapon\",\n  \"rodent\",\n  \"beach\",\n  \"? cereals\",\n  \"bench\",\n  \"with two holding glass bottles with colored liquid ? five\",\n  \"holding , jumps in the air and then moves to the back of stage ? guitar\",\n  \"transportation\",\n  \"shampoo\",\n  \"caps\",\n  \"hook\",\n  \"squirrel\",\n  \"scenery\",\n  \"playing\",\n  \"? wheelchair\",\n  \"performer\",\n  \"cake\",\n  \"dancing and playing ? instruments\",\n  \"boxes\",\n  \"leash\",\n  \"? bouquet\",\n  \"but only one arm is . ? sleeve\",\n  \"rifles\",\n  \"lenses\",\n  \"the girl watches him . ? building\",\n  \"almonds\",\n  \"tank\",\n  \"pot\",\n  \"bracelet\",\n  \"knife\",\n  \"mouse\",\n  \"who then catches it ? bottle\",\n  \"exercise\",\n  \"and he is turning around ? wand\",\n  \"purse\",\n  \"stones\",\n  \"show\",\n  \"bag\",\n  \"stocking\",\n  \"balloon\",\n  \"stops , and its tongue remains stuck out ? cat\",\n  \"scythe\",\n  \"creature\",\n  \"cello\",\n  \"and ends up on its back ? bird\",\n  \"pup\",\n  \"? container\",\n  \"and one blows a kiss ? two\",\n  \"animal\",\n  \"trampoline\",\n  \"before they turn and walk away ? two\",\n  \"cloaks\",\n  \"blackjack\",\n  \"as they hit fist to fist ? two\",\n  \"bicycles\",\n  \"watch\",\n  \"corgi\",\n  \"spider\",\n  \"earring\",\n  \"bull\",\n  \"? wheel\",\n  \"? stadium\",\n  \"looking at each other ? two\",\n  \"foxes\",\n  \"mammal\",\n  \"sheep\",\n  \"chases\",\n  \"? armchair\",\n  \". ? room\",\n  \"dancing , and playing ? instruments\",\n  \"which then falls backwards ? cat\",\n  \"dancer\",\n  \"boots\",\n  \"rotors\",\n  \"? ranch\",\n  \"? shower\",\n  \"paper , scissors as they stand by the door ? two\",\n  \"laying and crying on her pillow . ? bed\",\n  \"pencil\",\n  \"when one side scores a goal ? two\",\n  \"food\",\n  \"one with an arm on the other ? two\",\n  \"sheets\",\n  \"rabbits\",\n  \"pizza\",\n  \"? glove\",\n  \"table\",\n  \"scratched\",\n  \"syrup\",\n  \"cone\",\n  \"while the larger man breaks up the fight ? two\",\n  \"drives\",\n  \"luggage\",\n  \"? vehicle\",\n  \"lift\",\n  \"frame\",\n  \"shoes\",\n  \"opens the door , and the cat and four dogs enter through the door ? building\",\n  \"blinks\",\n  \"crotch\",\n  \"dishwasher\",\n  \"skills\",\n  \"sleeves\",\n  \"model\",\n  \"ties\",\n  \"modeling\",\n  \"bath\",\n  \"jet\",\n  \"tortillas\",\n  \"teapot\",\n  \"barbel\",\n  \"cartwheel\",\n  \"musician\",\n  \"rhino\",\n  \"exits\",\n  \"pole\",\n  \"ski\",\n  \"pajama\",\n  \"woodchucks\",\n  \"lanes\",\n  \"candle\",\n  \"tag\",\n  \"gloves\",\n  \"dinosaur\",\n  \"surface\",\n  \"? tub\",\n  \"snowboard\",\n  \"wearing , hops around her couch while pointing at her face ? glasses\",\n  \"donut\",\n  \"mustard\",\n  \"? tunnel\",\n  \"? theater\",\n  \"wheels\",\n  \"rat\",\n  \"and one talks to someone ? two\",\n  \"bungee\",\n  \"but then suddenly takes off again ? jet\",\n  \"? rink\",\n  \"face shown . ? mirror\",\n  \"shell\",\n  \"costumes\",\n  \"? shield\",\n  \"confetti\",\n  \"flower\",\n  \"gesture\",\n  \"portfolio\",\n  \"and moves from under him ? ball\",\n  \"violin\",\n  \"photographs\",\n  \"uniforms\",\n  \"money\",\n  \"bomb\",\n  \"? rv\",\n  \"claws\",\n  \"lands\",\n  \"turnstile\",\n  \"bot\",\n  \"hose\",\n  \"suitcase\",\n  \"sitting on a table , reaches out and pushes a glass off the table ? paw\",\n  \"mountain\",\n  \"tools\",\n  \"headsets\",\n  \"the streets crumble below it ? airplane\",\n  \"t-shirt\",\n  \"doors\",\n  \"wearing , hugs another person and smiles ? glasses\",\n  \"one of them is shaking his head . ? car\",\n  \"octopuses\",\n  \"performs\",\n  \"cases\",\n  \"deer\",\n  \"? wall\",\n  \"and holding a lighter underneath , it explodes in flames ? balloon\",\n  \"blanket\",\n  \"coat\",\n  \"knives\",\n  \"? frame\",\n  \"trolley\",\n  \"noodles\",\n  \"one cries and holds a handkerchief to his nose , the other tries to comfort him ? two\",\n  \"wrap\",\n  \"? cart\",\n  \"inside of the car get scared ? two\",\n  \"animals\",\n  \"tails\",\n  \"? drawer\",\n  \"? cigarette\",\n  \"? barbel\",\n  \"room\",\n  \"? building\",\n  \"using as a weapon , hits a zombie in the head ? bat\",\n  \"trucks\",\n  \"boxers\",\n  \"drum\",\n  \"challenge\",\n  \"? toilet\",\n  \"llamas\",\n  \"then watches the smoke rise ? cat\",\n  \"mouths from across a room ? two\",\n  \"and it is pushed by a cat ? box\",\n  \"but the bear cub does ? bird\",\n  \"? skateboard\",\n  \"lifts up to her mouth , ? microphone\",\n  \"wearing , talks and bends his head forward ? cap\",\n  \"? doorway\",\n  \"which causes that cat to attack another cat ? cat\",\n  \"giraffe\",\n  \"cam\",\n  \"microphones\",\n  \"losing balance as it tries to walk forward ? cat\",\n  \"groove\",\n  \"tricks\",\n  \"spins , and lands on another ramp ? car\",\n  \"dumbbell\",\n  \"with their arms out , while laughing ? three\",\n  \"sea\",\n  \"carrot\",\n  \"chips\",\n  \"gift\",\n  \"ropes\",\n  \"singer\",\n  \"rocket\",\n  \"? net\",\n  \"blows\",\n  \"? zipper\",\n  \"sticks\",\n  \"tambourine\",\n  \"and he is laughing at a puppet talking ? cookie\",\n  \"? train\",\n  \"boats\",\n  \"across a road , and into the path of a car before being hit ? bicycle\",\n  \"penguins\",\n  \"song\",\n  \"antlers\",\n  \"feather\",\n  \"handcuffs\",\n  \"insect\",\n  \"gratings\",\n  \"milk\",\n  \"blackbird\",\n  \"scaffolding\",\n  \"sheet\",\n  \"seal\",\n  \"which bursts as the car approaches it ? car\",\n  \"? locker\",\n  \"towels\",\n  \"? highway\",\n  \"? lane\",\n  \"? rope\",\n  \"wearing , is singing with a microphone ? dress\",\n  \"vegetables\",\n  \"rag\",\n  \"? hoop\",\n  \"? hospital\",\n  \"keys\",\n  \"and he is raising his arm ? crotch\",\n  \"otter\",\n  \"? corridor\",\n  \"tires\",\n  \"they see it from looking up ? window\",\n  \"trainer\",\n  \"groundhog\",\n  \"gorilla\",\n  \"is sitting on the steps and eating ? shirt\",\n  \"oar\",\n  \"nugget\",\n  \"? cellphone\",\n  \"hamsters\",\n  \"walls\",\n  \"? cup\",\n  \"and then starts wracking it FRAMEQAeatedly ? wand\",\n  \"concoction\",\n  \"computer\",\n  \"hall\",\n  \"one is licking the other ones ear ? cats\",\n  \"earphone\",\n  \"hallway\",\n  \"trailer\",\n  \"magazine\",\n  \"and pointing at it ? laptop\",\n  \"elevator\",\n  \"river\",\n  \"pig\",\n  \"is also using ? earring\",\n  \"case\",\n  \"cape\",\n  \"? tablet\",\n  \"beanie\",\n  \"penguin\",\n  \"race\",\n  \"? excitedly\",\n  \"groomed each other ? cats\",\n  \"carriage\",\n  \"with long hair , open her mouth . ? room\",\n  \"parakeet\",\n  \"call\",\n  \"? tire\",\n  \"windshield\",\n  \"nose\",\n  \"? capsule\",\n  \"woman\",\n  \"snowball\",\n  \"look at one another , and fall to the ground laughing ? three\",\n  \"wing\",\n  \"bowl\",\n  \"lipstick\",\n  \"who is looking upset ? one\",\n  \"balls\",\n  \"cage\",\n  \"sunroof\",\n  \"? shop\",\n  \"shining and wearing a yellow outfit ? microphone\",\n  \"then two of them wave goodbye ? three\",\n  \"? sunglasses\",\n  \"kittens\",\n  \"? lingerie\",\n  \"colors\",\n  \"crying and eating a sandwich . ? bed\",\n  \"? lapel\",\n  \"corn\",\n  \"twirl\",\n  \"dough\",\n  \"dock\",\n  \"taxi\",\n  \"singing\",\n  \"stares\",\n  \"skate\",\n  \"chick\",\n  \"is visiting another guy . ? hospital\",\n  \"comb\",\n  \"roll\",\n  \"runway\",\n  \"statue\",\n  \"rides a skateboard up and launches himself through the air ? ramp\",\n  \"bleachers\",\n  \"? pot\",\n  \"butter\",\n  \"and it bounces off of a wall onto a table ? cat\",\n  \"? basement\",\n  \"eyeliner\",\n  \"wearing , is waving his hand ? shirt\",\n  \"opens the door , and the cat and four dogs enter the building through the door ? cat\",\n  \"right\",\n  \"flashlights\",\n  \"pet\",\n  \"pastry\",\n  \"but then the trailing car is shown a weapon and the car falls back ? car\",\n  \"tuxedo\",\n  \"begins to flip over and over ? car\",\n  \"curtain\",\n  \"fork\",\n  \"he looks away ? guitar\",\n  \"roof\",\n  \"? restroom\",\n  \"who jumps away . ? box\",\n  \"? rag\",\n  \"wearing , talks and raises on eyebrow ? headband\",\n  \"? cloak\",\n  \"then the rider lands on top ? motorcycle\",\n  \"toys\",\n  \"are talking to each other ? two\",\n  \"rats\",\n  \"telephone\",\n  \"bananas\",\n  \"user\",\n  \"stops and gets in ? taxi\",\n  \"cane\",\n  \"bucket\",\n  \"popsicle\",\n  \"? tent\",\n  \"? oven\",\n  \"and the fired a shot ? flower\",\n  \"? broom\",\n  \"? pan\",\n  \"design\",\n  \"hippopotamus\",\n  \"they move to the left ? sky\",\n  \"trying not to laugh ? two\",\n  \"torch\",\n  \"they look at one another , and the woman exits the car . ? car\",\n  \"his head nods to the left . ? chair\",\n  \"and he had a bandage on his head . ? car\",\n  \"vegetable\",\n  \"and everyone celebrates ? star\",\n  \"balloons\",\n  \"men\",\n  \"circles\",\n  \"graffiti\",\n  \"racer\",\n  \"jump\",\n  \"kissing , and spinning around ? two\",\n  \"works\",\n  \"castle\",\n  \"while they are sitting down ? two\",\n  \"sandwich\",\n  \"earpiece\",\n  \"then lift ? shirt\",\n  \"motors\",\n  \"burrito\",\n  \"? singlet\",\n  \"180\",\n  \"? dryer\",\n  \"torches\",\n  \"? pullover\",\n  \"wearing , slides open a door and dances through while carrying a walking tick and radio ? glasses\",\n  \"straw\",\n  \"wearing , pushes a melting ice cream into his mouth as some drops from his hand ? cap\",\n  \"clown\",\n  \"smiles , and turns away . ? classroom\",\n  \"figure\",\n  \"white doll ? two\",\n  \"signs\",\n  \"? airplane\",\n  \"cannon\",\n  \"cloth\",\n  \"serviette\",\n  \"toast\",\n  \"? kit\",\n  \"bats\",\n  \"bobcat\",\n  \"griddle\",\n  \"leaves\",\n  \"pass\",\n  \"? door\",\n  \"ramp\",\n  \"porpoise\",\n  \"scissors\",\n  \"fighter\",\n  \"bandannas\",\n  \"bases\",\n  \"hug each other ? two\",\n  \"duckling\",\n  \"but grabs on and takes a drink ? monkey\",\n  \"winks\",\n  \"? jeep\",\n  \"twirls\",\n  \"harp\",\n  \"one points and talks and the other laughs ? two\",\n  \"then a redhead grabs ? hat\",\n  \"? zoo\",\n  \"tender\",\n  \"disc\",\n  \"fly\",\n  \"wash\",\n  \"harness\",\n  \"opening\",\n  \"brick\",\n  \"watermelon\",\n  \"plate\",\n  \"they bring it closer to their body ? stick\",\n  \"lake\",\n  \"sledgehammer\",\n  \"leaning backward , and waving their arms back and forth ? two\",\n  \"ocean\",\n  \"while spectators watch ? two\",\n  \"shuttle\",\n  \"loop\",\n  \"balcony\",\n  \"? closet\",\n  \"but falls off a table ? cat\",\n  \"anchor\",\n  \"? plaid\",\n  \"terrapins\",\n  \"pop\",\n  \"tool\",\n  \"hay\",\n  \"panther\",\n  \"smiling and laughing ? three\",\n  \"and it lands on his head ? hat\",\n  \"? fountain\",\n  \"photograph\",\n  \"it has a double yolk ? egg\",\n  \"one is in a basket ? dogs\",\n  \"but does ? cub\",\n  \"strips\",\n  \"jeep\",\n  \"when the toaster pops out toast the cat gets scared and jumps off ? cat\",\n  \"then turns around crazy ? dog\",\n  \"goldfish\",\n  \"? elevator\",\n  \"sedan\",\n  \"? pocket\",\n  \"planet\",\n  \"drill\",\n  \"two of them spinning around ? cars\",\n  \"baboon\",\n  \"mirror\",\n  \"? flowers\",\n  \"chairs\",\n  \"make in the air with a wand ? float\",\n  \"jewelry\",\n  \"fabric\",\n  \"coins\",\n  \"handset\",\n  \"jets\",\n  \"bulldog\",\n  \"black hair wearing and raising their hand up to their mouth ? shirt\",\n  \"sweatshirt\",\n  \"workout\",\n  \"rounds\",\n  \"? bench\",\n  \"? piece\",\n  \"sparklers\",\n  \"waterfall\",\n  \"lettuce\",\n  \"crashes\",\n  \"tomato\",\n  \"cheeseburger\",\n  \"strawberry\",\n  \"and another one appears to be . ? garden\",\n  \"flag\",\n  \"eight\",\n  \"toothpick\",\n  \"and disappears ? bowl\",\n  \"? lipstick\",\n  \"and she is smiling ? cat\",\n  \"? alleyway\",\n  \"shield\",\n  \"tuxedos\",\n  \"talking , smiling and waving his hand . ? chair\",\n  \"cheetah\",\n  \"and one player kicks into the goal ? ball\",\n  \"letters\",\n  \"? basket\",\n  \"pill\",\n  \"which trips another man who does a flip and lands on a recycle bin ? peel\",\n  \"human\",\n  \"fence\",\n  \"? sink\",\n  \"black leather trench coat ? star\",\n  \"divers\",\n  \"couch\",\n  \"buttons\",\n  \"shot\",\n  \"rodents\",\n  \"swords\",\n  \"gown\",\n  \"both speeding down the road ? car\",\n  \"people watch them . ? house\",\n  \"belts\",\n  \"catapult\",\n  \"ammunition\",\n  \"potatoes\",\n  \"lemur\",\n  \"while a third moves forward and dances ? two\",\n  \"then their hand and a slogan appears ? towel\",\n  \"firecrackers\",\n  \"ribs\",\n  \"briefcase\",\n  \"the man spills milk over his face . ? car\",\n  \"? workshop\",\n  \"is sitting down and smoking ? cigarette\",\n  \"dressed in a suit and carrying ? cane\",\n  \"and she is dancing in a field . ? mirror\",\n  \"? ashtray\",\n  \"looking sad . ? hallway\",\n  \"noodle\",\n  \"missiles\",\n  \"? helicopter\",\n  \"catfish\",\n  \"toothbrush\",\n  \"have taken ? pictures\",\n  \"pane\",\n  \"he dances on the stage ? headset\",\n  \"scooters\",\n  \"then he does the splits . ? hallway\",\n  \"and it is pushed by a cat ? mouse\",\n  \"desks\",\n  \"hills\",\n  \"stairway\",\n  \"whisk\",\n  \"with\",\n  \"while one of them sings into a microphone ? two\",\n  \"bottles\",\n  \"but grabs her leg ? panda\",\n  \"sled\",\n  \"nut\",\n  \"feathers\",\n  \"dresses\",\n  \"sink\",\n  \"wristband\",\n  \"then jumps up to celebrate ? pool\",\n  \"drumsticks\",\n  \"opens her mouth and smiles ? one\",\n  \"suits\",\n  \"sculpture\",\n  \"are fighting for control of the soccer ball ? two\",\n  \"and he is throwing ? napkin\",\n  \"pets\",\n  \"bin\",\n  \"jockey\",\n  \"backwards\",\n  \"spiky , walk across the pavement ? heels\",\n  \"chainsaw\",\n  \"? guitar\",\n  \"with just head and tail exposed ? cat\",\n  \"when one pins the other one down for a three count ? two\",\n  \"shore\",\n  \"chicks\",\n  \"dancing and laughing ? two\",\n  \"looking sideways and singing ? guitar\",\n  \"? turns\",\n  \"lamp\",\n  \"paper , scissors ? two\",\n  \"chocolate\",\n  \"bra\",\n  \"blonde woman wearing a back top and matching ? piece\",\n  \"holding hands ? two\",\n  \"while the man next to him talks and moves his hands around ? one\",\n  \"cubs\",\n  \"having cake . ? restaurant\",\n  \"figurine\",\n  \"hood\",\n  \"lens\",\n  \"groomed each other ? two\",\n  \"sabers\",\n  \"before jumping in the pool ? dog\",\n  \"mattress\",\n  \"sidewalk\",\n  \"landing\",\n  \"rocks\",\n  \"avocado\",\n  \"? bear\",\n  \"and a man spills , crouches , and cowers ? coffee\",\n  \"disks\",\n  \"mountainside\",\n  \"lips\",\n  \"chest\",\n  \"wan\",\n  \"glove\",\n  \"? beer\",\n  \"tortilla\",\n  \"? stable\",\n  \"meteor\",\n  \"expression\",\n  \"? kayak\",\n  \"biscuit\",\n  \"ukulele\",\n  \"at something ? two\",\n  \"convertible\",\n  \"climber\",\n  \"is using the pay phone and smoking ? cigarette\",\n  \"wearing , looks mad ? jacket\",\n  \"mike\",\n  \"sleeping and stretching on the person 's stomach ? cat\",\n  \"denim\",\n  \"lantern\",\n  \"breaks the branch its sitting on in the tree , and falls to the ground ? panda\",\n  \"so that she 's almost laying down . ? car\",\n  \"smears\",\n  \"hair\",\n  \"bones\",\n  \"blade\",\n  \"unicycle\",\n  \"? cone\",\n  \"wallet\",\n  \"blouse\",\n  \"trousers\",\n  \"buds\",\n  \"spill\",\n  \"rib\",\n  \"porcupine\",\n  \"tray\",\n  \"map\",\n  \"sad ? dog\",\n  \"socks\",\n  \"automobile\",\n  \"parallel\",\n  \"skyscraper\",\n  \"classroom\",\n  \"catwalk\",\n  \"the bike crashes ? bicycle\",\n  \"stare , and look shocked ? four\",\n  \"towel\",\n  \"whilst another one is sitting down ? guitar\",\n  \"lion\",\n  \"cargo\",\n  \"grabs\",\n  \"and then starts wracking it FRAMEQAeatedly ? cat\",\n  \"vest\",\n  \"spits\",\n  \"wearing is walking and waving ? dress\",\n  \"poker\",\n  \"robe\",\n  \"bandanna\",\n  \"little fingers ? two\",\n  \"person\",\n  \"doves\",\n  \"container\",\n  \"wearing , uses gymnastic rings to lift herself to a seated position then into a handstand ? clothes\",\n  \"forklift\",\n  \"buildings\",\n  \"wearing ? blouse\",\n  \"making a crack big enough for the rest to get in ? cat\",\n  \"carrots\",\n  \"lizard\",\n  \"beakers\",\n  \"blower\",\n  \"and another woman is running in black shorts ? pants\",\n  \"marks\",\n  \"spaceship\",\n  \"when one man lays the other man down ? two\",\n  \"are dancing on a stage while the crowd cheers ? two\",\n  \"they start to head bang . ? car\",\n  \"then one blows confetti into the air ? two\",\n  \"sitting down , when someone else steps up and spins the chair around . ? chair\",\n  \"puppets\",\n  \"garage\",\n  \"lemon\",\n  \"wearing , is sitting and doing something with her foot ? clothes\",\n  \"and two men with lighting swords want to fight with him ? door\",\n  \"treat\",\n  \"lamb\",\n  \"ways\",\n  \"and one man throws ? hat\",\n  \"pick\",\n  \"product\",\n  \"is throwing around the room ? clothes\",\n  \"the clothes of the people catch on fire ? horses\",\n  \"all , have the same type of hair style ? three\",\n  \"whip\",\n  \"mop\",\n  \"pointing his fingers and nodding ? bow\",\n  \"bags\",\n  \"machines\",\n  \"seeds\",\n  \"symbol\",\n  \"layer\",\n  \"opens ? door\",\n  \"dark sunglasses , and cigar ? two\",\n  \"the man smashes the head of a zombie ? bat\",\n  \"extinguisher\",\n  \"candles\",\n  \", looking out ? window\",\n  \"group\",\n  \"drop\",\n  \"is riding , into the swimming pool ? bicycle\",\n  \"stake\",\n  \"block\",\n  \"and he is singing into a microphone ? guitar\",\n  \"ornament\",\n  \"spins as he bends over . ? chair\",\n  \"? shirts\",\n  \"? colors\",\n  \"hookah\",\n  \"? courtyard\",\n  \"cactus\",\n  \"are having taken while on stage ? picture\",\n  \"an orange ? shell\",\n  \"and he is talking ? sunglasses\",\n  \"veil\",\n  \"then rolling around in the mud ? horse\",\n  \"? pillow\",\n  \"drugs\",\n  \"? couch\",\n  \"bun\",\n  \"koala\",\n  \"one wearing brown shoes and the other has no footwear ? two\",\n  \"and he is falling in the water ? dog\",\n  \"is smoking ? cigarette\",\n  \"rooster\",\n  \"submarine\",\n  \"wand\",\n  \"helicopter\",\n  \"wearing , smiles as her hair blows in the wind ? hat\",\n  \"and fails , to jump into the window ? cat\",\n  \"tram\",\n  \"and then is knocked down when it hits him in the head ? bag\",\n  \"curve\",\n  \"handrail\",\n  \"bulldozer\",\n  \"stops a taxi . ? street\",\n  \"speedometer\",\n  \"? necklace\",\n  \"curbs\",\n  \"over multiple vehicles and lands on another ramp ? bicycle\",\n  \"wolves\",\n  \"laundry\",\n  \"holding , laughs into a microphone and then puts her fingers up to her lips ? guitar\",\n  \"peeking . ? room\",\n  \"cigarettes\",\n  \"bells\",\n  \"sill\",\n  \"raspberry\",\n  \"suited\",\n  \"shawl\",\n  \"wakes\",\n  \"applying the brake , and applying the gas as needed . ? car\",\n  \"poodle\",\n  \"and he 's ? candles\",\n  \"then skids on the ground ? motorcycle\",\n  \"office\",\n  \"outdoors\",\n  \"it stops at the edge ? car\",\n  \"as she puts it all on top of her head ? two\",\n  \"but his reflection is doing something different . ? mirror\",\n  \"holding , are walking together ? bear\",\n  \"hats\",\n  \"mat\",\n  \"then the team mate scores a goal ? ball\",\n  \"one with a guitar are behind him ? one\",\n  \"? looks\",\n  \"grenade\",\n  \"coin\",\n  \"toasting each other with their liquor bottles ? two\",\n  \"saxophone\",\n  \"capes\",\n  \"lounges\",\n  \"? scissors\",\n  \"hoop\",\n  \"rack\",\n  \"frisbee\",\n  \"then jumps in the air and runs away ? cat\",\n  \"wearing , is hugging in the hallway ? coats\",\n  \"? lobby\",\n  \"corridor\",\n  \"who they push to the ground ? two\",\n  \"worms\",\n  \"tablet\",\n  \"who turns and causes the kitten to raise its paw ? kitten\",\n  \"chariot\",\n  \"lock\",\n  \"tongs\",\n  \"game\",\n  \"s head while he is trying to eat ? cat\",\n  \"pie\",\n  \"feline\",\n  \"and then are shown ? pictures\",\n  \"parasol\",\n  \"pumpkins\",\n  \"notebook\",\n  \"the horse leans its head around her ? horse\",\n  \"spaghetti\",\n  \"outside\",\n  \"? bib\",\n  \"gold\",\n  \"cart\",\n  \"the trees are being passed by , and the clouds are above ? sun\",\n  \"the other elephant pulls it closer ? elephant\",\n  \"most of them wearing ? sunglasses\",\n  \"and are falling down on top of him ? balloons\",\n  \"nods his head and blinks ? one\",\n  \"with long brown hair , wink and raises to her face ? two\",\n  \"uncontrollably\",\n  \"wearing , raises two fingers to her face ? cap\",\n  \"swinging its hips from side to side ? turtle\",\n  \"skates\",\n  \"they look at one another , and the woman exits ? car\",\n  \"his friends join in the background . ? chair\",\n  \"store\",\n  \"donuts\",\n  \"then sticks its tongue out ? dog\",\n  \"and then a massive explosion occurs ? container\",\n  \"then kisses her ? snake\",\n  \"brakes\"\n]"
  },
  {
    "path": "model/univi/eval/questions/video_qa/tgif_qa.json",
    "content": "[\n  {\n    \"video_name\": \"tumblr_no73q2fm0I1uuf348o1_250\",\n    \"question\": \"what is being placed in the white ice cream cone?\",\n    \"answer\": \"cookie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1159\",\n    \"key\": \"27138\",\n    \"description\": \"a chocolate cookie is being placed in a white ice cream cone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedt1ck9181ttuja3o1_250\",\n    \"question\": \"where is the guy walking very funny.\",\n    \"answer\": \"? machine\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9405\",\n    \"key\": \"2853\",\n    \"description\": \"a guy is walking very funny in a machine.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkfsb1dgm1tbnwqmo1_400\",\n    \"question\": \"how many people are sitting side by side in a bowling alley?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26835\",\n    \"key\": \"61016\",\n    \"description\": \"two people are sitting side by side in a bowling alley.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9pn9xDm651ty4rvzo1_400\",\n    \"question\": \"how many men are arguing next to the christmas tree?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3809\",\n    \"key\": \"81281\",\n    \"description\": \"two men are arguing next to a christmas tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn62ijxc71sk927ro1_400\",\n    \"question\": \"what are some guys looking good and one of them is wearing?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25615\",\n    \"key\": \"91125\",\n    \"description\": \"some guys are looking good and one of them is wearing glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7j4ud4Mb1u5xywco1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4460\",\n    \"key\": \"87751\",\n    \"description\": \"a man in a black shirt was singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5ddaL9zk1s28vxko1_400\",\n    \"question\": \"what is the white dog waving?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47608\",\n    \"key\": \"43219\",\n    \"description\": \"a white dog is waving its tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tuqn05ec1rd0civo1_400\",\n    \"question\": \"how many women are walking past the fiFRAMEQAlace?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31686\",\n    \"key\": \"59139\",\n    \"description\": \"two women are walking past a fiFRAMEQAlace,\"\n  },\n  {\n    \"video_name\": \"tumblr_nejfp1mhbL1thn4g2o1_100\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10382\",\n    \"key\": \"1648\",\n    \"description\": \"an oriental girl with long red hair is waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafbe4YHCY1tyuwrso1_500\",\n    \"question\": \"what is the color of the vests?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51360\",\n    \"key\": \"101490\",\n    \"description\": \"two young men wearing black vests are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3n9mlV2T1rktfsqo1_250\",\n    \"question\": \"what is the young man delivering to a young lady?\",\n    \"answer\": \"flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31257\",\n    \"key\": \"38469\",\n    \"description\": \"a young man is delivering flowers to a young lady.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmrqhx5WTR1u3bvteo1_r4_540\",\n    \"question\": \"how many lovers is looking to each other and love is in the air?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25821\",\n    \"key\": \"101942\",\n    \"description\": \"two lovers looking to each other and love is in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevu1x7R4F1tzeksuo1_400\",\n    \"question\": \"how many men are sitting in the moving car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51329\",\n    \"key\": \"67414\",\n    \"description\": \"two men are sitting in a moving car.\"\n  },\n  {\n    \"video_name\": \"tumblr_naibwo4B1j1royxsco1_500\",\n    \"question\": \"what is the man talking on a headset and using?\",\n    \"answer\": \"laptop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20508\",\n    \"key\": \"60961\",\n    \"description\": \"a man is talking on a headset and using a laptop.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbfiuxAWU1se2adpo1_500\",\n    \"question\": \"how many men are break dancing in synchronization?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49454\",\n    \"key\": \"75141\",\n    \"description\": \"three men are break dancing in synchronization.\"\n  },\n  {\n    \"video_name\": \"tumblr_npcm4bqF3X1shyw7fo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49494\",\n    \"key\": \"46134\",\n    \"description\": \"a boy in a white shirt is turning his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdy8uJlce1rpfnrjo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14092\",\n    \"key\": \"41932\",\n    \"description\": \"a guy in a green dress is moving.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdihsdk1c1tzzks2o1_250\",\n    \"question\": \"what is the color of the spotlight?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1500\",\n    \"key\": \"53195\",\n    \"description\": \"the guy on the stage with the white shirt and the green spotlight looks as if he is in pain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguhm8zAEm1qgyl50o1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51544\",\n    \"key\": \"72990\",\n    \"description\": \"the woman in the black jacket leans down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr45p0uKof1uaugwlo1_250\",\n    \"question\": \"where does the man start to move slowly across the lake.\",\n    \"answer\": \"? boat\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35769\",\n    \"key\": \"31377\",\n    \"description\": \"a man in a small boat starts to move slowly across the lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqoabbUAH1s9wp82o1_400\",\n    \"question\": \"how many dogs are quietly lounging on the couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43239\",\n    \"key\": \"30264\",\n    \"description\": \"two dogs are quietly lounging on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhve02JnVG1tjhld9o1_250\",\n    \"question\": \"what is the color of the puppy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33270\",\n    \"key\": \"27694\",\n    \"description\": \"a white puppy is playing with a little boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vfp7rK9g1riof1xo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40083\",\n    \"key\": \"19920\",\n    \"description\": \"a man in a black hat moves his hand forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cswzW8tA1t5ojzdo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5173\",\n    \"key\": \"43794\",\n    \"description\": \"a woman wearing a blue hat throws a piece of card behind her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda84dI4On1t0ojyvo1_500\",\n    \"question\": \"how many teenagers is wearing white outfits are singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8273\",\n    \"key\": \"90101\",\n    \"description\": \"two teenagers wearing white outfits are singing and one is pointing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauka09f5w1qf6wjoo1_400\",\n    \"question\": \"where is the woman wearing a blue jacket is standing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32248\",\n    \"key\": \"36153\",\n    \"description\": \"a woman wearing a blue jacket is standing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowuhcCWo71s3fuxko1_400\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42992\",\n    \"key\": \"71803\",\n    \"description\": \"a brown horse is running through a pasture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqmfo0L2eY1thn667o1_540\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43406\",\n    \"key\": \"100633\",\n    \"description\": \"a man with black hair is kissing a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_noaswjesmm1th7g9io1_400\",\n    \"question\": \"what is putting its paw in another cat 's face to stop it from trying to groom the first cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10418\",\n    \"key\": \"95722\",\n    \"description\": \"one cat is putting its paw in another cat 's face to stop it from trying to groom the first cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2mzb98AK1tkpzw0o1_400\",\n    \"question\": \"what is the dolphin painting with their mouth?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42248\",\n    \"key\": \"21285\",\n    \"description\": \"the dolphin is painting a picture with their mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nde98bVDhd1r21xqpo1_250\",\n    \"question\": \"what is the color of the door?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2064\",\n    \"key\": \"86043\",\n    \"description\": \"a blue puppet is closing a brown door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfegnfJ1AZ1qayaafo1_400\",\n    \"question\": \"how many men are singing into the telephone?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28069\",\n    \"key\": \"30012\",\n    \"description\": \"three men are singing into a telephone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nku8674mFY1qcrdgyo1_250\",\n    \"question\": \"what pushes the persons hand down after they try to scratch the cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25214\",\n    \"key\": \"3555\",\n    \"description\": \"the cat pushes a persons hand down after they try to scratch the cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl08fcxHX31upy801o1_500\",\n    \"question\": \"what is the red haired woman holding and nodding her head?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2312\",\n    \"key\": \"55119\",\n    \"description\": \"a red haired woman is holding a drink and nodding her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk75mmC9z31uoz0rqo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46227\",\n    \"key\": \"27246\",\n    \"description\": \"a girl with red hair is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uwiaBHQw1qhd5lfo1_400\",\n    \"question\": \"what ran across the window sill?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33265\",\n    \"key\": \"25666\",\n    \"description\": \"a gray and white cat ran across a window sill.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95n6uCkRS1thi35uo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10956\",\n    \"key\": \"36469\",\n    \"description\": \"a girl wearing a white shirt is brushing her teeth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc798b5n4Y1tju84uo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48193\",\n    \"key\": \"91289\",\n    \"description\": \"a young man in a white shirt is taking off his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv63mKCzc1ttvffso1_400\",\n    \"question\": \"what is the man singing in a blue car and smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31367\",\n    \"key\": \"58080\",\n    \"description\": \"the man is singing in a blue car and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndi8fl5A8e1sctiaro1_400\",\n    \"question\": \"what does the man wake up and breaking?\",\n    \"answer\": \"clock\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2196\",\n    \"key\": \"81093\",\n    \"description\": \"a man wakes up and breaking the clock.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpp9aIKCk1tuoc50o1_400\",\n    \"question\": \"what is spinning its back tires and causing a lot of dust?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25497\",\n    \"key\": \"39490\",\n    \"description\": \"the black car is spinning its back tires and causing a lot of dust.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wivmGs4P1sc3yqlo1_250\",\n    \"question\": \"what is waking up from the sleep on a bed?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36490\",\n    \"key\": \"41061\",\n    \"description\": \"a cat is waking up from a sleep on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1j3b3hfg1s3att3o1_400\",\n    \"question\": \"what is having its face groomed?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52681\",\n    \"key\": \"55934\",\n    \"description\": \"a monkey is having its face groomed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8ae10GVz1tfxe4ko1_500\",\n    \"question\": \"what is the color of the eye?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43364\",\n    \"key\": \"44837\",\n    \"description\": \"a guy moves forward with a black eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9auyzrZNt1simukfo1_400\",\n    \"question\": \"what is the member of the band playing on stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32219\",\n    \"key\": \"66175\",\n    \"description\": \"a member of the band is playing his guitar on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngquc21UJB1u5c02bo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33895\",\n    \"key\": \"87303\",\n    \"description\": \"a man in a white shirt has a microphone and looks up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjdlk6CGv1tlw7exo1_250\",\n    \"question\": \"what eats some food out of a plastic red bowl?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6567\",\n    \"key\": \"68979\",\n    \"description\": \"a cat eats some food out of a plastic red bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh29z0v9vk1sico5po1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17771\",\n    \"key\": \"39671\",\n    \"description\": \"the boy in the white shirt is smiling and talking into the microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqt8a3aEgd1tlq8yzo1_400\",\n    \"question\": \"where is the female moving while she talks and smile.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41308\",\n    \"key\": \"61299\",\n    \"description\": \"a female in a room is moving while she talks and smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9n3w8BNg91tfj40ro1_400\",\n    \"question\": \"what is the color of the convertible?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2745\",\n    \"key\": \"84959\",\n    \"description\": \"a man singing into a microphone climbs out of a purple convertible.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rb0lxnFI1tqmsauo1_400\",\n    \"question\": \"how many boys are waving their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16248\",\n    \"key\": \"11491\",\n    \"description\": \"two boys are waving their hands,\"\n  },\n  {\n    \"video_name\": \"tumblr_nav2o4Ew2D1sh75jso1_250\",\n    \"question\": \"how many men are standing close together and bump into each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8217\",\n    \"key\": \"3977\",\n    \"description\": \"three men are standing close together and bump into each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k8xzjz181tiur4yo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27308\",\n    \"key\": \"12182\",\n    \"description\": \"a man in a red track suit top with black hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7l0nMeLY1sp0r62o1_250\",\n    \"question\": \"how many people is this image of dancing together in robes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23820\",\n    \"key\": \"80776\",\n    \"description\": \"this image is of two people dancing together in robes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyamsxkvF1sren05o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23031\",\n    \"key\": \"64252\",\n    \"description\": \"the man in the blue shirt is singing on stage and throws his fist in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_npneccAv8H1rq4lc6o1_500\",\n    \"question\": \"where is the couple hugging.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50399\",\n    \"key\": \"89620\",\n    \"description\": \"a couple is hugging in a kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngc8tpcmwF1tiz0smo1_400\",\n    \"question\": \"where is the person looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17567\",\n    \"key\": \"92490\",\n    \"description\": \"a person is looking attentively in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxkmhiBLm1t5w6wco1_400\",\n    \"question\": \"what is the color of the wig?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38338\",\n    \"key\": \"28857\",\n    \"description\": \"a woman is wearing a white wig and trying to be sexy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp552aW7o1sksdxao3_400\",\n    \"question\": \"what are the trio of nuns sitting solemnly at the table and eating?\",\n    \"answer\": \"meal\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34159\",\n    \"key\": \"92179\",\n    \"description\": \"a trio of nuns are sitting solemnly at the table and eating a meal.\"\n  },\n  {\n    \"video_name\": \"tumblr_naa11tbBvx1tebyg2o1_400\",\n    \"question\": \"how many people are sitting next to each other and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24076\",\n    \"key\": \"62578\",\n    \"description\": \"two people are sitting next to each other and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsq0iDaXw1tk7w8vo1_500\",\n    \"question\": \"how many people are lined up against the white and blue wall?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34365\",\n    \"key\": \"89376\",\n    \"description\": \"four people are lined up against a white and blue wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2hgxbjKw1t1ijxmo1_1280\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24158\",\n    \"key\": \"56263\",\n    \"description\": \"a little white dog is kissed by a boy FRAMEQAeatedly.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0re9ST8r1u7q0qeo1_400\",\n    \"question\": \"how many soccer players run towards each other and the ball?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14493\",\n    \"key\": \"65873\",\n    \"description\": \"two soccer players run towards each other and the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksdyhXtpu1rhl4f0o1_250\",\n    \"question\": \"where are three frogs climbing around.\",\n    \"answer\": \"? tank\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9640\",\n    \"key\": \"22832\",\n    \"description\": \"three frogs are climbing around in a tank together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner3v7FbbI1rgchc8o1_500\",\n    \"question\": \"what jumps around in the living room in front of the couch?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5919\",\n    \"key\": \"72762\",\n    \"description\": \"a cat jumps around in the living room in front of the couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9brbfS5661qgtp5eo1_400\",\n    \"question\": \"where is the woman standing and dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13148\",\n    \"key\": \"43006\",\n    \"description\": \"a woman is standing and dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyw6gulsY1s7oft8o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24285\",\n    \"key\": \"13026\",\n    \"description\": \"a guy wearing black suit is falling down while laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvmjqHles1tl5f3zo1_250\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3316\",\n    \"key\": \"27620\",\n    \"description\": \"a man with a microphone danced in front a white background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqw4at9cu21sxecxyo1_500\",\n    \"question\": \"what is the man playing and gesturing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31626\",\n    \"key\": \"23889\",\n    \"description\": \"a man is playing guitar and gesturing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcfe5F1iy1s2t7gvo1_500\",\n    \"question\": \"how many guys is about to get in the fight?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45901\",\n    \"key\": \"88875\",\n    \"description\": \"the two guys is about to get in a fight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagwpaywf01tvbb2ko1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38710\",\n    \"key\": \"450\",\n    \"description\": \"the man in the brown jacket is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3qgzrxld1s0r79po1_r1_500\",\n    \"question\": \"where does the young man in a white shirt bow.\",\n    \"answer\": \"? classroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8484\",\n    \"key\": \"92812\",\n    \"description\": \"a young man in a white shirt bows in a classroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wjakFkdh1slj978o1_250\",\n    \"question\": \"what is standing on something with closed eyes?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12951\",\n    \"key\": \"28681\",\n    \"description\": \"a cat is standing on something with closed eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesksmxUsA1rdfljoo1_500\",\n    \"question\": \"what is driving dangerously on the highway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22646\",\n    \"key\": \"76053\",\n    \"description\": \"a white car is driving dangerously on the highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkus9cARZm1r2m293o1_400\",\n    \"question\": \"what spins around while the doll is on his back?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8754\",\n    \"key\": \"26709\",\n    \"description\": \"a dog spins around while a doll is on his back.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngjjy8pmWW1u5slc8o1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51230\",\n    \"key\": \"3675\",\n    \"description\": \"a young man in a white t-shirt is moving his head with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjqoubgDV1u29slho1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15215\",\n    \"key\": \"50388\",\n    \"description\": \"a girl in a purple shirt is looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n88tfbzgHU1rhy09eo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41745\",\n    \"key\": \"92569\",\n    \"description\": \"a white car is entering a garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nareflaVHP1rw4ex3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49969\",\n    \"key\": \"22635\",\n    \"description\": \"the man in the white shirt has a bucket of water dumped on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkjmkZVlx1u387zvo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41839\",\n    \"key\": \"42290\",\n    \"description\": \"a girl with black dress is smiling shyly.\"\n  },\n  {\n    \"video_name\": \"tumblr_noumotOiwV1spw05ko1_250\",\n    \"question\": \"what is the woman smoking in front of a candle?\",\n    \"answer\": \"pipe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37331\",\n    \"key\": \"36480\",\n    \"description\": \"a woman is smoking a pipe in front of a candle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrak3nYu61r95fszo1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17181\",\n    \"key\": \"11840\",\n    \"description\": \"a man is cuddling a black cat in his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvmat0M581rlil49o1_500\",\n    \"question\": \"what is the dog eating?\",\n    \"answer\": \"leaf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25603\",\n    \"key\": \"52041\",\n    \"description\": \"a dog is eating a leaf while someone is threading flowers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc51lxZqcX1tkpzw0o1_250\",\n    \"question\": \"what is sitting in the blue chair?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50565\",\n    \"key\": \"6269\",\n    \"description\": \"a dog is sitting in a blue chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0u7kYz9i1tclavqo1_500\",\n    \"question\": \"what is the man wearing a long shirt and talking and touches?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35407\",\n    \"key\": \"61843\",\n    \"description\": \"a man is wearing a long shirt and talking and touches his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbag3b30JL1ry0b5go1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42571\",\n    \"key\": \"83553\",\n    \"description\": \"a woman wearing all white sits down in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn4ck340P1sj24puo1_250\",\n    \"question\": \"what is the color of the singlet?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35064\",\n    \"key\": \"5283\",\n    \"description\": \"a boy in a black singlet pretends to walk in slow motion with a bottle in his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqt0rfOUFY1ux2ikeo1_400\",\n    \"question\": \"what is the man spraying at the ceiling?\",\n    \"answer\": \"champagne\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4726\",\n    \"key\": \"74132\",\n    \"description\": \"a man is spraying champagne at the ceiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_naa11tbBvx1tebyg2o1_400\",\n    \"question\": \"how many man are dancing in bed together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48373\",\n    \"key\": \"62578\",\n    \"description\": \"two man are dancing in bed together.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9tlcASNS1terurso1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32119\",\n    \"key\": \"29740\",\n    \"description\": \"a woman with red hair and a man are smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvmt3qmAh1u370zso1_540\",\n    \"question\": \"what is the woman tying around leaves?\",\n    \"answer\": \"string\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36572\",\n    \"key\": \"42521\",\n    \"description\": \"a woman is tying string around leaves to make a plant.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1bjfBEw91redefto1_400\",\n    \"question\": \"what is the girl trying and wearing?\",\n    \"answer\": \"sweater\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41907\",\n    \"key\": \"33132\",\n    \"description\": \"a girl is trying to look cute and wearing a large sweater.\"\n  },\n  {\n    \"video_name\": \"tumblr_neua43pKJC1t0kntqo1_250\",\n    \"question\": \"how many little mascot characters are dancing on the soccer field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15058\",\n    \"key\": \"53580\",\n    \"description\": \"two little mascot characters are dancing on a soccer field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadd8dv4Ho1s34j90o1_400\",\n    \"question\": \"where do the pair perform dance moves.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33699\",\n    \"key\": \"57968\",\n    \"description\": \"a pair perform dance moves in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezlsfnXwi1tsbbfxo1_500\",\n    \"question\": \"what is the color of the lingerie?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14196\",\n    \"key\": \"54331\",\n    \"description\": \"a woman wearing black lingerie,\"\n  },\n  {\n    \"video_name\": \"tumblr_no75u4RtUx1tyncywo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29741\",\n    \"key\": \"65382\",\n    \"description\": \"a black cat is running across the pavement into the house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nisxffQvO61u5ba4ao1_250\",\n    \"question\": \"what is sitting on the remote vacuum cleaner?\",\n    \"answer\": \"tortoise\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38738\",\n    \"key\": \"27103\",\n    \"description\": \"a tortoise is sitting on a remote vacuum cleaner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nog086mhQn1rngtxpo1_250\",\n    \"question\": \"what is the woman lighting?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47528\",\n    \"key\": \"49718\",\n    \"description\": \"a woman is lighting a cigarette as she sits back in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_npz6msJUl81urnbuuo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40246\",\n    \"key\": \"38417\",\n    \"description\": \"a white man with black hair flinches as he is hit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrl3x1VLyr1rdwooro1_400\",\n    \"question\": \"how many men are eating and laughing with each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14665\",\n    \"key\": \"83729\",\n    \"description\": \"three men are eating and laughing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfe8ohMKD81tkoeqqo1_500\",\n    \"question\": \"what are three people sitting down,\",\n    \"answer\": \"and one of them is holding ? dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36171\",\n    \"key\": \"88138\",\n    \"description\": \"three people are sitting down,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtqzuiWod1sj4atbo1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23434\",\n    \"key\": \"65203\",\n    \"description\": \"a guy in a blue uniform is running and is stopped and hugged by another guy.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pqysKgXz1sy7yfqo1_400\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5776\",\n    \"key\": \"64680\",\n    \"description\": \"a brown horse is freely running around by itself.\"\n  },\n  {\n    \"video_name\": \"tumblr_ninfq9WzsZ1s6zpepo1_250\",\n    \"question\": \"what jumps from the table to a counter?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9922\",\n    \"key\": \"78597\",\n    \"description\": \"a cat jumps from a table to a counter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq8z49bTR1sk0i2mo1_250\",\n    \"question\": \"how many wrestlers is this image of fighting each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41201\",\n    \"key\": \"60385\",\n    \"description\": \"this image is of two wrestlers fighting each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokjiwjEvX1uvad6ao1_250\",\n    \"question\": \"what is the man blowing while sitting in a vehicle?\",\n    \"answer\": \"rings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50824\",\n    \"key\": \"457\",\n    \"description\": \"a man is blowing smoke rings while sitting in a vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxrsbp13F1rfyy6oo1_250\",\n    \"question\": \"what stands up and rubs her face against a dog 's face?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28299\",\n    \"key\": \"9914\",\n    \"description\": \"a cat stands up and rubs her face against a dog 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3iiwUoZR1s22c6no1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25659\",\n    \"key\": \"28434\",\n    \"description\": \"a girl is covering up her face with her long red hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq06ihvo7U1up68h4o1_400\",\n    \"question\": \"what go over bumps and ramps quickly?\",\n    \"answer\": \"vehicles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36935\",\n    \"key\": \"28893\",\n    \"description\": \"military vehicles go over bumps and ramps quickly.\"\n  },\n  {\n    \"video_name\": \"tumblr_npffpme9eT1u2ok96o1_400\",\n    \"question\": \"what is the woman kissing and smiling?\",\n    \"answer\": \"lollipop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12280\",\n    \"key\": \"67063\",\n    \"description\": \"a woman is kissing her lollipop and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokpkycdga1r2buvvo1_250\",\n    \"question\": \"how many woman fighting is man with white shirt breaking up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17960\",\n    \"key\": \"3855\",\n    \"description\": \"man with white shirt is breaking up two woman fighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5pn1wSC41r36r8mo1_500\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11275\",\n    \"key\": \"34236\",\n    \"description\": \"a person in a black,\"\n  },\n  {\n    \"video_name\": \"tumblr_no62rm4dDC1tx8mn0o1_400\",\n    \"question\": \"what spins out of control on a race track but then the regains control?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26207\",\n    \"key\": \"76917\",\n    \"description\": \"a car spins out of control on a race track but then the regains control.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtlrnLJyT1t1szv2o1_500\",\n    \"question\": \"what did two children on a bus eat?\",\n    \"answer\": \"candy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44766\",\n    \"key\": \"70108\",\n    \"description\": \"two children on a bus ate candy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngwbl1n70M1u5ha1qo1_400\",\n    \"question\": \"what is the person with blue clothes grabbing?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46451\",\n    \"key\": \"63012\",\n    \"description\": \"a person with blue clothes is grabbing a bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngg9uzqMJo1tugymuo1_500\",\n    \"question\": \"how many boys are standing and looking around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36371\",\n    \"key\": \"7396\",\n    \"description\": \"two boys are standing and looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwsbaUqdU1tkqyuyo1_400\",\n    \"question\": \"how many women are sitting inside the room inside?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2337\",\n    \"key\": \"29743\",\n    \"description\": \"two women are sitting inside a room inside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcrueGce81tx8mn0o1_400\",\n    \"question\": \"how many race cars is this on a track while one of them spins out and loses control?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16752\",\n    \"key\": \"82134\",\n    \"description\": \"this is two race cars on a track while one of them spins out and loses control.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1q320Ed51s8jkazo1_250\",\n    \"question\": \"where does the girl speak,\",\n    \"answer\": \"then a man is shown sitting . ? locker\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5914\",\n    \"key\": \"30573\",\n    \"description\": \"a girl speaks,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9nxz6cyx11sjuzlno1_400\",\n    \"question\": \"what appear to kiss each other?\",\n    \"answer\": \"parakeets\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5021\",\n    \"key\": \"36176\",\n    \"description\": \"two parakeets appear to kiss each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95dgjajvW1syjz5uo1_250\",\n    \"question\": \"how many men on a couch are laughing out loud?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35189\",\n    \"key\": \"13891\",\n    \"description\": \"three men on a couch are laughing out loud.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwrt0iC5S1tyxnhro1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25155\",\n    \"key\": \"89409\",\n    \"description\": \"the man in the black shirt walks into a room of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlu54rL2M1tragfyo1_1280\",\n    \"question\": \"how many men are standing on the stage doing an interview?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28238\",\n    \"key\": \"55861\",\n    \"description\": \"two men are standing on a stage doing an interview.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0qsn9cgE1qlqxrqo1_500\",\n    \"question\": \"what is the girl holding?\",\n    \"answer\": \"hole\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48804\",\n    \"key\": \"99120\",\n    \"description\": \"a girl is holding a key hole.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7trs4lYs1t7pzp2o1_500\",\n    \"question\": \"what is the man wearing?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3600\",\n    \"key\": \"69255\",\n    \"description\": \"the man is wearing a bow tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgd8ebTTy1tl5qj2o1_500\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6493\",\n    \"key\": \"3457\",\n    \"description\": \"a man with a white shirts decides to dance while listening to his favorite song.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncw7meF4Pb1txydmgo1_500\",\n    \"question\": \"where does the band sing and plays instruments.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5708\",\n    \"key\": \"57976\",\n    \"description\": \"a band sings and plays instruments in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5wjxq0M31s71nvbo1_400\",\n    \"question\": \"how many men fight each other using flaming swords in the dark?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12829\",\n    \"key\": \"45240\",\n    \"description\": \"two men fight each other using flaming swords in the dark.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncw1h7V8au1rmdsrwo1_400\",\n    \"question\": \"what is making the paw trick?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48407\",\n    \"key\": \"63248\",\n    \"description\": \"the dog is making the paw trick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguvutkldj1rs0i14o1_400\",\n    \"question\": \"how many rats are crawling around on someones shoulder?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30171\",\n    \"key\": \"46819\",\n    \"description\": \"two rats are crawling around on someones shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax0vtnfdQ1rkn23mo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13179\",\n    \"key\": \"53611\",\n    \"description\": \"the man in the black shirt is dancing onstage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd99tr1UmA1ruqk6ro1_250\",\n    \"question\": \"what is driving on the road outside of a city?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15145\",\n    \"key\": \"4433\",\n    \"description\": \"a car is driving on a road outside of a city.\"\n  },\n  {\n    \"video_name\": \"tumblr_nilyoyDugt1qdzxbio1_500\",\n    \"question\": \"what do two men ride with a bat symbol on it?\",\n    \"answer\": \"boat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47704\",\n    \"key\": \"55069\",\n    \"description\": \"two men ride a boat with a bat symbol on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_napzlmoxdY1tz9jaqo1_400\",\n    \"question\": \"what is the soccer player wearing a uniform gets into the net?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6407\",\n    \"key\": \"18449\",\n    \"description\": \"a soccer player wearing a uniform gets the ball into the net.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7000dUK11uvpgu5o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20199\",\n    \"key\": \"3178\",\n    \"description\": \"the girl in the blue dress is dancing with her arms up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nal5nm1az91r4w92no1_500\",\n    \"question\": \"what is the man throwing at another man who is dancing at a strip club?\",\n    \"answer\": \"cash\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5064\",\n    \"key\": \"58154\",\n    \"description\": \"a man is throwing cash at another man who is dancing at a strip club.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngns3jXgPf1s6zpepo1_250\",\n    \"question\": \"what pecks the horse 's face then drinks its water?\",\n    \"answer\": \"chicken\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12824\",\n    \"key\": \"23960\",\n    \"description\": \"a chicken pecks a horse 's face then drinks its water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk0b64SeZR1stm7ieo1_400\",\n    \"question\": \"how many young men are dancing and singing on the state?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48730\",\n    \"key\": \"43176\",\n    \"description\": \"two young men are dancing and singing on a state.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vr1xjmof1tdmffyo1_250\",\n    \"question\": \"what is hiding in the drawer and pawing at a pen poked at it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26195\",\n    \"key\": \"27920\",\n    \"description\": \"a cat is hiding in a drawer and pawing at a pen poked at it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rs4laokt1th2t13o1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17350\",\n    \"key\": \"57403\",\n    \"description\": \"a man wearing a white uniform is standing on a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nft60biv5u1sookfro1_250\",\n    \"question\": \"how many men are talking to one another in front of a crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22983\",\n    \"key\": \"35680\",\n    \"description\": \"two men are talking to one another in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxlgzOQSN1t0x7yto1_500\",\n    \"question\": \"where is the blue beautiful car running.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41826\",\n    \"key\": \"61137\",\n    \"description\": \"a blue beautiful car is running in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfkx8qNpFC1snecwlo1_250\",\n    \"question\": \"what is the white man with short hair wearing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42579\",\n    \"key\": \"9410\",\n    \"description\": \"a white man with short hair is wearing a tee shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7eheT0Oz1r272ido1_250\",\n    \"question\": \"how many women punch each other in a ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40981\",\n    \"key\": \"76772\",\n    \"description\": \"two women punch each other in a ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_np97noimRj1swewioo1_250\",\n    \"question\": \"where is the young woman dancing.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9025\",\n    \"key\": \"43615\",\n    \"description\": \"a young woman is dancing in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirv73J7pz1tixppbo1_400\",\n    \"question\": \"what does not want to smoke even though he can?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42197\",\n    \"key\": \"24461\",\n    \"description\": \"a bird does not want to smoke even though he can.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqmr2ybLBP1rpsrrho1_400\",\n    \"question\": \"how many men dance under lights in club?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47836\",\n    \"key\": \"25420\",\n    \"description\": \"two men dance under lights in club.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8v8orVsL81rqn31vo1_250\",\n    \"question\": \"what is the lady wearing the hat is singing and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25644\",\n    \"key\": \"73123\",\n    \"description\": \"the lady wearing the hat is singing and playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhaaonJd0D1u6jgouo1_250\",\n    \"question\": \"how many people stand on stage with lights shining down on them?\",\n    \"answer\": \"six\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27168\",\n    \"key\": \"50395\",\n    \"description\": \"6 people stand on stage with lights shining down on them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhhujqoyKU1tjhld9o1_400\",\n    \"question\": \"what is chasing after the large blue ball?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37671\",\n    \"key\": \"54091\",\n    \"description\": \"a dog is chasing after a large blue ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkbu9cuFSt1tfe5fyo1_250\",\n    \"question\": \"what is the person wearing a sweater is smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2600\",\n    \"key\": \"19499\",\n    \"description\": \"a person wearing a sweater is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr24ia3Q8z1uzm9a7o1_500\",\n    \"question\": \"how many people are stood dancing and shaking their bodies?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37573\",\n    \"key\": \"71205\",\n    \"description\": \"four people are stood dancing and shaking their bodies.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngn0ttCSb51svos5ho1_400\",\n    \"question\": \"how many men are sitting on the couch arm wrestling with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42176\",\n    \"key\": \"36865\",\n    \"description\": \"two men are sitting on a couch arm wrestling with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7ng2zh3f1thntp8o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA533\",\n    \"key\": \"110\",\n    \"description\": \"a girl with a brown hat is bowing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhn4qolyxQ1tgouwlo1_400\",\n    \"question\": \"what is the color of the lizard?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15082\",\n    \"key\": \"52435\",\n    \"description\": \"a white and orange cat is startled by a green lizard.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3i7ovyZz1r1g4n4o1_500\",\n    \"question\": \"where is someone floating.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36334\",\n    \"key\": \"71609\",\n    \"description\": \"someone is floating upside down in a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4re3vFCz1tfgtmso1_400\",\n    \"question\": \"what does the man open to a man wearing a mask?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48437\",\n    \"key\": \"35435\",\n    \"description\": \"a man opens a window to a man wearing a mask.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuhc5cUJn1rotc20o1_400\",\n    \"question\": \"what is the dog jumping up the stairs and then he turns?\",\n    \"answer\": \"round\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15128\",\n    \"key\": \"19595\",\n    \"description\": \"a dog is jumping up the stairs and then he turns round when he gets to the top.\"\n  },\n  {\n    \"video_name\": \"tumblr_na99bk3j1D1rmvb15o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12817\",\n    \"key\": \"91697\",\n    \"description\": \"a man in a blue shirt is moving his hands and fingers around in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmx7rfsPJE1uqpyr9o1_540\",\n    \"question\": \"what is the band member playing and showing his palm?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32284\",\n    \"key\": \"56365\",\n    \"description\": \"a band member is playing a guitar and showing his palm.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2c6jqkXE1tzlevco1_250\",\n    \"question\": \"how many men are performing the dance move?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46418\",\n    \"key\": \"1608\",\n    \"description\": \"these two men are performing a dance move.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrhdij2sp1tmnzbjo1_400\",\n    \"question\": \"what did the man and woman both play?\",\n    \"answer\": \"instrument\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36444\",\n    \"key\": \"82149\",\n    \"description\": \"a man and woman both played a musical instrument.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc41azSmAA1ru030mo1_400\",\n    \"question\": \"what is the girl eating while wearing red glasses?\",\n    \"answer\": \"cookie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19137\",\n    \"key\": \"31088\",\n    \"description\": \"a girl is eating a cookie while wearing red glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba4zsrstP1thacl7o1_500\",\n    \"question\": \"what is the color of the t-shirts?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39416\",\n    \"key\": \"19023\",\n    \"description\": \"two young men in black t-shirts are hugging on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7kptWdUh1txx0lfo1_500\",\n    \"question\": \"how many friends are having the great time?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37709\",\n    \"key\": \"62133\",\n    \"description\": \"two friends are having a great time.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnx611gAZA1teszvzo1_400\",\n    \"question\": \"what is the color of the shoes?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25095\",\n    \"key\": \"40182\",\n    \"description\": \"two people sitting in a chair,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qwatWy9m1slj978o1_400\",\n    \"question\": \"what is the color of the cushion?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39641\",\n    \"key\": \"73992\",\n    \"description\": \"white bats are jumping onto a large blue cushion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf9v5oufm1tjhld9o1_500\",\n    \"question\": \"what is falling from the small couch?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25891\",\n    \"key\": \"76043\",\n    \"description\": \"a puppy is falling from the small couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngek8rCbFV1s82z36o1_500\",\n    \"question\": \"what do three smiling men slowly enter?\",\n    \"answer\": \"doorway\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8028\",\n    \"key\": \"73050\",\n    \"description\": \"three smiling men slowly enter a doorway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqamqac9al1r2ro17o1_400\",\n    \"question\": \"what is climbing onto the woman and licking her face?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19962\",\n    \"key\": \"31560\",\n    \"description\": \"a dog is climbing onto a woman and licking her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowzu5MZZg1s3att3o1_250\",\n    \"question\": \"what is being poured into the glass?\",\n    \"answer\": \"juice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA261\",\n    \"key\": \"14921\",\n    \"description\": \"orange juice is being poured into a glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtmk3pXaX1u7f69to1_400\",\n    \"question\": \"what is someone throwing at a wall?\",\n    \"answer\": \"flamethrower\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2504\",\n    \"key\": \"57393\",\n    \"description\": \"someone is throwing a flamethrower at a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlsgkqiHFM1rmkrcqo1_500\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26696\",\n    \"key\": \"48135\",\n    \"description\": \"a boy wearing a gray sweatshirt is pretending to cry.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbouq51nPr1tkti7do1_500\",\n    \"question\": \"how many men danced and sang around the fire?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35646\",\n    \"key\": \"44349\",\n    \"description\": \"three men danced and sang around a fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_npaw4iQKzd1u6iefyo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48019\",\n    \"key\": \"76767\",\n    \"description\": \"a black car leaves skid marks as it spins out.\"\n  },\n  {\n    \"video_name\": \"tumblr_niqlvp6RBw1te3vrpo1_540\",\n    \"question\": \"what is the woman walking and wearing?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46986\",\n    \"key\": \"49392\",\n    \"description\": \"a woman is walking and wearing a long dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng67v0PpjK1tkhxdko1_400\",\n    \"question\": \"what is driving the car very funny in outdoor?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6192\",\n    \"key\": \"17979\",\n    \"description\": \"a dog is driving a car very funny in outdoor.\"\n  },\n  {\n    \"video_name\": \"tumblr_naiqhik3AY1rlg01uo1_500\",\n    \"question\": \"what is the bald man playing and staring out in the crowd?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32811\",\n    \"key\": \"49205\",\n    \"description\": \"the bald man is playing guitar and staring out in the crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxgk8u29N1qelu08o1_500\",\n    \"question\": \"what is the man with ginger hair necking?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA325\",\n    \"key\": \"100696\",\n    \"description\": \"a man with ginger hair is necking a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax247zhwY1sdbrm9o1_400\",\n    \"question\": \"how many guys is this walking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30325\",\n    \"key\": \"65700\",\n    \"description\": \"this is two guys walking and one bends over to pick up something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh01ubOfAY1slj978o1_400\",\n    \"question\": \"what tries to catch the red light while it disappears?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33635\",\n    \"key\": \"38170\",\n    \"description\": \"a cat tries to catch a red light while it disappears.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfs0976vh1tkzhg9o1_400\",\n    \"question\": \"what is the young man wearing and smiling while people walk by him?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24234\",\n    \"key\": \"50462\",\n    \"description\": \"a young man is wearing a gray knit hat and smiling while people walk by him.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq3p4yhj41tgmmsko1_500\",\n    \"question\": \"how many people sat down on the sofa talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1357\",\n    \"key\": \"41849\",\n    \"description\": \"two people sat down on a sofa talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc086eK11B1tafc89o1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39963\",\n    \"key\": \"89374\",\n    \"description\": \"a woman wearing a red top,\"\n  },\n  {\n    \"video_name\": \"tumblr_nmm4f3RVqM1tf7f4ho1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52002\",\n    \"key\": \"58110\",\n    \"description\": \"a woman in a white shirt is running along a stage giving her fans high fives.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9siyhJeK01sz068fo1_400\",\n    \"question\": \"what is scratching against the wind from a hair dryer?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3622\",\n    \"key\": \"80179\",\n    \"description\": \"a cat is scratching against a wind from a hair dryer.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw2gle3ek1u8uroco1_400\",\n    \"question\": \"what is someone stroking?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2767\",\n    \"key\": \"68448\",\n    \"description\": \"someone is stroking a kitten who is sitting in a plant pot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrh5qvi58Y1u0uk6mo1_400\",\n    \"question\": \"what does the man point at the passenger of a taxi?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44349\",\n    \"key\": \"92721\",\n    \"description\": \"a man points his gun at the passenger of a taxi.\"\n  },\n  {\n    \"video_name\": \"tumblr_np7428zJXS1sjggsso1_400\",\n    \"question\": \"how many men are running on the track?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8598\",\n    \"key\": \"79249\",\n    \"description\": \"the two men are running on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd11cdPFVQ1s1cmjio1_400\",\n    \"question\": \"what are driving around in the garage?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36586\",\n    \"key\": \"96948\",\n    \"description\": \"two cars are driving around in a garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwjr5bvbM1tx8mn0o1_400\",\n    \"question\": \"what is driving off course onto the dirt before returning to the pavement?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46394\",\n    \"key\": \"78341\",\n    \"description\": \"a race car is driving off course onto the dirt before returning to the pavement.\"\n  },\n  {\n    \"video_name\": \"tumblr_nal8pu1VSt1tbje7yo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38766\",\n    \"key\": \"66435\",\n    \"description\": \"a woman in a white hat moves her eyes to the right.\"\n  },\n  {\n    \"video_name\": \"tumblr_niyn60KECL1u86no2o1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5316\",\n    \"key\": \"78745\",\n    \"description\": \"a black guy wearing a coat is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5j7usnwj1uszqo4o1_500\",\n    \"question\": \"where are the man and are woman kissing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50771\",\n    \"key\": \"80170\",\n    \"description\": \"a man and are woman are kissing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqb79tYlU81utdor9o1_400\",\n    \"question\": \"how many boys are standing and looking out the window?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30728\",\n    \"key\": \"83569\",\n    \"description\": \"two boys are standing and looking out a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ghigU0nd1tx8mn0o1_400\",\n    \"question\": \"what are racing around the track very quickly?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15136\",\n    \"key\": \"55496\",\n    \"description\": \"race cars are racing around a track very quickly.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90vul8OL31sm7km1o1_400\",\n    \"question\": \"how many men is wearing dummy heads frighten a woman in a blue top?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19762\",\n    \"key\": \"3794\",\n    \"description\": \"two men wearing dummy heads frighten a woman in a blue top.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqkzeml8y1unykvpo1_250\",\n    \"question\": \"what stares intently at the plate of cupcakes?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6669\",\n    \"key\": \"19006\",\n    \"description\": \"the dog stares intently at the plate of cupcakes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgppcIlCu1qhrx75o1_400\",\n    \"question\": \"what is the color of the team?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42229\",\n    \"key\": \"84989\",\n    \"description\": \"the red team passes the puck and shoots a goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9nxz6cyx11sjuzlno1_400\",\n    \"question\": \"what kissed the green bird?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16557\",\n    \"key\": \"36176\",\n    \"description\": \"a white bird kissed a green bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_n907c1PcRr1sncaa3o1_400\",\n    \"question\": \"what drove off the track and back on?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45555\",\n    \"key\": \"78070\",\n    \"description\": \"a race car drove off the track and back on.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5j2z7Ejt1tfvkwqo1_400\",\n    \"question\": \"how many men sit together as one man play the guitar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45481\",\n    \"key\": \"68462\",\n    \"description\": \"two men sit together as one man play the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nch77vbJHs1rshgw6o1_250\",\n    \"question\": \"what is the color of the tie?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10161\",\n    \"key\": \"8302\",\n    \"description\": \"the young boy with the green shirt and red bow tie is blowing kisses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq622eUZ2O1twfmf3o1_400\",\n    \"question\": \"what does the girl try and he puts up and wiggles out of her arm?\",\n    \"answer\": \"paws\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45073\",\n    \"key\": \"7692\",\n    \"description\": \"a girl tries to hug a dog and he puts up his paws and wiggles out of her arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbd6mxxR7M1t5ojzdo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20072\",\n    \"key\": \"17389\",\n    \"description\": \"a girl in a black top with black hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1kbzvsw71rwzy1eo1_400\",\n    \"question\": \"what is walking and playing with tires on its legs?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17478\",\n    \"key\": \"71853\",\n    \"description\": \"an elephant is walking and playing with tires on its legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqnrnnW6Ii1tz83q2o1_500\",\n    \"question\": \"what is the color of the playing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27212\",\n    \"key\": \"41073\",\n    \"description\": \"this image is of a woman in white playing with her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8v50LnUt1tk2ngvo1_500\",\n    \"question\": \"what is the black and white cat upsetting?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11852\",\n    \"key\": \"78064\",\n    \"description\": \"a black and white cat is upsetting a grey cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6i6uP4kE1s5svyno1_500\",\n    \"question\": \"how many beautiful ladies are taking out the man 's jacket?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5989\",\n    \"key\": \"93850\",\n    \"description\": \"two beautiful ladies are taking out a man 's jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdhm4hgxd1qmjp5wo1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35732\",\n    \"key\": \"90886\",\n    \"description\": \"a white girl with white shirt is smiling and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncpa5oSCiY1ql0sfgo1_500\",\n    \"question\": \"what is the man in a leather outfit holding?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47758\",\n    \"key\": \"97128\",\n    \"description\": \"a man in a leather outfit is holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngapyhHe7Y1sohuqmo1_250\",\n    \"question\": \"what is biting the ear of a rabbit?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48303\",\n    \"key\": \"36485\",\n    \"description\": \"a kitten is biting the ear of a rabbit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2x1kO12G1std30eo1_500\",\n    \"question\": \"how many men are making funny faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40790\",\n    \"key\": \"48576\",\n    \"description\": \"the two men are making funny faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner3v7FbbI1rgchc8o1_500\",\n    \"question\": \"what is the cat chasing around the floor?\",\n    \"answer\": \"beam\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44981\",\n    \"key\": \"72762\",\n    \"description\": \"a cat is chasing a laser light beam around the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_njukcfEiK11r1n65mo1_400\",\n    \"question\": \"what pushes the skateboard down and gets on it and does some tricks?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25104\",\n    \"key\": \"40925\",\n    \"description\": \"a cat pushes a skateboard down and gets on it and does some tricks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng62brRXgC1tpgrv9o1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22115\",\n    \"key\": \"7855\",\n    \"description\": \"a young male with blonde hair and a black top is laughing and joking with another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqbvmEl2p1u36mi8o1_250\",\n    \"question\": \"how many people are dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3409\",\n    \"key\": \"22289\",\n    \"description\": \"three people are dancing and all of them slap their butts.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99kv46QTX1s6r7s7o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24908\",\n    \"key\": \"67448\",\n    \"description\": \"a man with a blue shirt jumps to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncko1cgtVl1rwkjivo1_400\",\n    \"question\": \"what does the squirrel jump on a cat and then slaps at another cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6848\",\n    \"key\": \"45420\",\n    \"description\": \"a squirrel jumps on a cat and then the cat slaps at another cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1flazV921remizro1_400\",\n    \"question\": \"how many guys in striped shirts and red hats are singing and dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24610\",\n    \"key\": \"21549\",\n    \"description\": \"three guys in striped shirts and red hats are singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x0vtknbl1rhmx5uo1_400\",\n    \"question\": \"how many guys are sitting on the couch and giving a thumbs up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31656\",\n    \"key\": \"30378\",\n    \"description\": \"two guys are sitting on a couch and giving a thumbs up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8jyqbEeM1sx2tx8o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45454\",\n    \"key\": \"13713\",\n    \"description\": \"a woman wearing a black dress and a woman wearing on orange dress stands as wind blows up their dresses.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxkdtyDbl1sht3fmo1_250\",\n    \"question\": \"what is entering the police car?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6984\",\n    \"key\": \"36792\",\n    \"description\": \"a dog is entering the police car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbag3b30JL1ry0b5go1_400\",\n    \"question\": \"where is the woman wearing all white sits down.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38332\",\n    \"key\": \"83553\",\n    \"description\": \"a woman wearing all white sits down in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nen2gpqUlI1tx8mn0o1_400\",\n    \"question\": \"what are racing down the track and the blue car loses its back end?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18996\",\n    \"key\": \"55482\",\n    \"description\": \"several race cars are racing down a track and the blue car loses its back end.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk0p8vgCSc1tudbs0o1_400\",\n    \"question\": \"what is the man wearing and talking angrily?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11035\",\n    \"key\": \"28921\",\n    \"description\": \"a man is wearing a backwards hat and talking angrily.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazajtnJAC1tn4t8jo1_400\",\n    \"question\": \"what are running side by side on a street?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16020\",\n    \"key\": \"62167\",\n    \"description\": \"cars are running side by side on a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q8iiFAka1toq16fo1_400\",\n    \"question\": \"how many girls are making funny faces and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37068\",\n    \"key\": \"28578\",\n    \"description\": \"two girls are making funny faces and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q9ejQLX81ratic8o1_500\",\n    \"question\": \"how many men pretend to kiss and then turn away and laugh?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4566\",\n    \"key\": \"87243\",\n    \"description\": \"two men pretend to kiss and then turn away and laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1slkO3ZM1s8jkazo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10495\",\n    \"key\": \"25524\",\n    \"description\": \"a woman in a white shirt looks at a woman in a black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk0b64SeZR1stm7ieo1_400\",\n    \"question\": \"what is the young singer in a band wearing and lifting his leg and swiveling his hips?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33379\",\n    \"key\": \"43176\",\n    \"description\": \"a young singer in a band is wearing dark glasses and lifting his leg and swiveling his hips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnilizLpNo1rv38tao1_400\",\n    \"question\": \"what is biting and pulling at paper then it lies back?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8398\",\n    \"key\": \"36771\",\n    \"description\": \"a cat is biting and pulling at paper then it lies back.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwzkxNPfq1u1810lo1_500\",\n    \"question\": \"what did the boy pet then he hugged it?\",\n    \"answer\": \"chimp\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21267\",\n    \"key\": \"75707\",\n    \"description\": \"a boy petted a chimp then he hugged it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkfsb1dgm1tbnwqmo1_400\",\n    \"question\": \"how many guys at a purple table are holding their hands up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29495\",\n    \"key\": \"61016\",\n    \"description\": \"two guys at a purple table are holding their hands up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfa7hPZ2h1sl2cdao1_500\",\n    \"question\": \"how many men hits another on his back?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48840\",\n    \"key\": \"94639\",\n    \"description\": \"two men are walking and one men hits another on his back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1ywgPSKc1u3d5jno1_250\",\n    \"question\": \"what is the man wiggling at a woman that is looking at him?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28027\",\n    \"key\": \"6694\",\n    \"description\": \"a man is wiggling his butt at a woman that is looking at him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqwv6n9JKg1uvejg4o1_540\",\n    \"question\": \"how many men guy guys sing and dance danced in a hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3319\",\n    \"key\": \"96739\",\n    \"description\": \"two men guy guys sing and dance danced in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirebdaFNu1rzaapno1_500\",\n    \"question\": \"how many men are laughing during an interview on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52415\",\n    \"key\": \"87200\",\n    \"description\": \"two men are laughing during an interview on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9tlcASNS1terurso1_400\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36868\",\n    \"key\": \"29740\",\n    \"description\": \"a guy in a red scarf is talking and a girl with pink hair is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9l730D6FC1rjn6tpo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31114\",\n    \"key\": \"22567\",\n    \"description\": \"a woman dressed in all black is laughing at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndq73y7mT21u1hp4lo1_500\",\n    \"question\": \"what is the young woman with dark hair applying?\",\n    \"answer\": \"mascara\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16545\",\n    \"key\": \"97252\",\n    \"description\": \"a young woman with dark hair is applying mascara.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9ue79ebR1u63zbwo1_500\",\n    \"question\": \"how many young men are singing and dancing on stage in front of a huge crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19301\",\n    \"key\": \"50957\",\n    \"description\": \"two young men are singing and dancing on stage in front of a huge crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_mkhcuwQp2k1rk3evro1_500\",\n    \"question\": \"how many hot naked young ladies in bed are kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20355\",\n    \"key\": \"36906\",\n    \"description\": \"two hot naked young ladies in bed are kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhs2lXSXl1rp12fxo1_1280\",\n    \"question\": \"what is driving past another car on a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9235\",\n    \"key\": \"96025\",\n    \"description\": \"a car is driving past another car on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nki97gCmDh1s3uqzwo1_250\",\n    \"question\": \"how many young girls are hanging out together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23433\",\n    \"key\": \"4472\",\n    \"description\": \"three young girls are hanging out together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbet5v1L6J1tkpzw0o1_250\",\n    \"question\": \"what is the woman gathering up?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46409\",\n    \"key\": \"18230\",\n    \"description\": \"a woman is gathering up her dogs when they attack a boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0jfqbC7D1tkpta6o1_400\",\n    \"question\": \"what plays with the drum stick while someone plays the guitar?\",\n    \"answer\": \"puppet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45151\",\n    \"key\": \"90705\",\n    \"description\": \"a puppet plays with a drum stick while someone plays the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3uzbrHlA1rmgp3fo1_500\",\n    \"question\": \"what is the man with curly hair smoking a cigar and pointing?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22186\",\n    \"key\": \"13816\",\n    \"description\": \"a man with curly hair is smoking a cigar and pointing a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_npgmilwWnF1tx8mn0o1_400\",\n    \"question\": \"what collides with another in a turn on a wet race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5976\",\n    \"key\": \"91034\",\n    \"description\": \"a car collides with another in a turn on a wet race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzl9clEBn1slj978o1_400\",\n    \"question\": \"what eats something while a cat sniffs it?\",\n    \"answer\": \"hamster\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13615\",\n    \"key\": \"28180\",\n    \"description\": \"a hamster eats something while a cat sniffs it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8z1jp62zj1s5oe7xo1_250\",\n    \"question\": \"where is the girl acting.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7799\",\n    \"key\": \"32764\",\n    \"description\": \"a girl is acting angrily in her bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3qabmXcs1uye1fso1_250\",\n    \"question\": \"how many woman is putting the child 's hand on her cheek?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35062\",\n    \"key\": \"15123\",\n    \"description\": \"one woman is putting a child 's hand on her cheek.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9qgxXlr31tmaii4o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21663\",\n    \"key\": \"9515\",\n    \"description\": \"a handsome young man with brown hair is smilingly.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hsdsS7si1su1uw7o1_400\",\n    \"question\": \"what does the man make to another man,\",\n    \"answer\": \"who pretends to slap him in return ? crack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29483\",\n    \"key\": \"59047\",\n    \"description\": \"a man makes a crack to another man,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrd08t8g0T1u395x4o1_400\",\n    \"question\": \"what is the color of the hood?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15634\",\n    \"key\": \"16904\",\n    \"description\": \"the man in the brown hood is staring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfci1eCnqd1u33ci0o1_400\",\n    \"question\": \"what is the hand cranking back and forth?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41752\",\n    \"key\": \"52870\",\n    \"description\": \"a hand is cranking a machine back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p1fyGr2W1tixixoo1_400\",\n    \"question\": \"what is the man boy hit and dropped a box of tennis rackets?\",\n    \"answer\": \"drops\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2045\",\n    \"key\": \"60268\",\n    \"description\": \"a man boy is hit and drops dropped a box of tennis rackets.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh89o8FeCP1u6fg3no1_500\",\n    \"question\": \"what is the woman playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48404\",\n    \"key\": \"61501\",\n    \"description\": \"a woman is playing guitar while clouds roll by.\"\n  },\n  {\n    \"video_name\": \"tumblr_neh40xDIkk1tj2kheo1_250\",\n    \"question\": \"what is the man hugging another man,\",\n    \"answer\": \"then he removes and throws it to the ground ? hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39313\",\n    \"key\": \"5098\",\n    \"description\": \"a man is hugging another man,\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5z1ajZzd1rwipr5o1_r1_250\",\n    \"question\": \"how many black bean bags does the woman juggle?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14562\",\n    \"key\": \"27736\",\n    \"description\": \"a woman juggles three black bean bags.\"\n  },\n  {\n    \"video_name\": \"tumblr_na32wo3UE01r6x1a5o1_500\",\n    \"question\": \"what are the group of people riding down the side of a road,\",\n    \"answer\": \"when two of the cyclist crash ? bicycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39256\",\n    \"key\": \"46207\",\n    \"description\": \"a group of people are riding bicycles down the side of a road,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tbpmQLuT1tg4u20o1_250\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7637\",\n    \"key\": \"10744\",\n    \"description\": \"a man in a green cap is licking his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nohf3irkja1uuudqko1_400\",\n    \"question\": \"what is the color of the dresses?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43314\",\n    \"key\": \"59026\",\n    \"description\": \"a girl dresses in white is singing and moves back her arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncntfulJrF1tbgcpko1_250\",\n    \"question\": \"how many men are dancing and screaming at the show?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33153\",\n    \"key\": \"35740\",\n    \"description\": \"two men are dancing and screaming at a show.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl19j0KSvE1tcoa45o1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24649\",\n    \"key\": \"94306\",\n    \"description\": \"a white man and a white girl are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_np1mqhrIMa1uwhbn9o1_250\",\n    \"question\": \"what is the boy standing and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27847\",\n    \"key\": \"12160\",\n    \"description\": \"a boy is standing and playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngatv43vBu1u5on9do1_250\",\n    \"question\": \"how many man squirts mustard onto another man 's beard?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43380\",\n    \"key\": \"85687\",\n    \"description\": \"one man squirts mustard onto another man 's beard.\"\n  },\n  {\n    \"video_name\": \"tumblr_npc1b21BeA1r57o71o1_500\",\n    \"question\": \"how many old men is this dancing in front of a booth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50178\",\n    \"key\": \"41809\",\n    \"description\": \"this is two old men dancing in front of a booth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakdgd05uD1tbcisxo1_400\",\n    \"question\": \"what was the guy holding on his shoulder?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11033\",\n    \"key\": \"28962\",\n    \"description\": \"the guy was holding the precious kitten on his shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimjqmgul31u94evjo1_500\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26738\",\n    \"key\": \"70177\",\n    \"description\": \"a black cat lies on a couch and holds its paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncppfpwv0q1t7an45o1_250\",\n    \"question\": \"what is the color of the jumper?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30002\",\n    \"key\": \"26540\",\n    \"description\": \"a man wearing a blue jumper is moving frantically.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5o04joG21se9pwmo1_400\",\n    \"question\": \"what is trying to get inside through the doggie door?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6196\",\n    \"key\": \"49244\",\n    \"description\": \"A dog is trying to get inside through a doggie door.\"\n  },\n  {\n    \"video_name\": \"tumblr_navgsv2Gn21tih674o1_400\",\n    \"question\": \"how many men dump water onto a third man?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13022\",\n    \"key\": \"58038\",\n    \"description\": \"two men dump water onto a third man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflx90nClv1stf9ono1_400\",\n    \"question\": \"what is the person smoking from the special tool?\",\n    \"answer\": \"cannabis\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24430\",\n    \"key\": \"71008\",\n    \"description\": \"a person is smoking a cannabis from the special tool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbag3b30JL1ry0b5go1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49727\",\n    \"key\": \"83553\",\n    \"description\": \"a beautiful lady with white clothes is taking off her hat while sitting.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj41cmlq11s2l982o1_500\",\n    \"question\": \"what is the man pulling his glasses down and smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2872\",\n    \"key\": \"41846\",\n    \"description\": \"a man is pulling his glasses down and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay1v5Pvpi1qg0cppo1_250\",\n    \"question\": \"where is the fish being caught.\",\n    \"answer\": \"? trap\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15832\",\n    \"key\": \"19061\",\n    \"description\": \"a fish is being caught in a plant trap.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv5iz7KVL1unu56do1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46940\",\n    \"key\": \"35675\",\n    \"description\": \"the man wearing a blue shirt is eating food on the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni152nnuwQ1u433who1_400\",\n    \"question\": \"how many fingers is the guy throwing of his up into the air?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33676\",\n    \"key\": \"64676\",\n    \"description\": \"a guy is throwing two fingers of his up into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng952sa6bT1skeuupo1_400\",\n    \"question\": \"what is driving the vehicle?\",\n    \"answer\": \"helmet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15864\",\n    \"key\": \"65206\",\n    \"description\": \"a man wearing helmet is driving a vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuiyeJfZ11u7yxjso1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32524\",\n    \"key\": \"77779\",\n    \"description\": \"a girl in a red shirt is riding a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqzylaAQ61s3tcgro1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28703\",\n    \"key\": \"58083\",\n    \"description\": \"a woman wearing a blue dress is blowing a kiss at a man who is sitting at a bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhtetuoeG1r3pgego1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17233\",\n    \"key\": \"87194\",\n    \"description\": \"a woman in a black hat is dancing and moving her arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbn4vdgXnz1tz9jaqo1_400\",\n    \"question\": \"what is the soccer player kicking around various players?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5630\",\n    \"key\": \"82365\",\n    \"description\": \"a soccer player is kicking a ball around various players.\"\n  },\n  {\n    \"video_name\": \"tumblr_nasnqxg8kb1tt6vx5o1_250\",\n    \"question\": \"what did the person ride in the building?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39358\",\n    \"key\": \"43969\",\n    \"description\": \"the person rode the motorcycle in the building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx7xo7jQW1u6hunpo1_400\",\n    \"question\": \"what is the man playing while singing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31433\",\n    \"key\": \"31891\",\n    \"description\": \"a man is playing guitar while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_np7428zJXS1sjggsso1_400\",\n    \"question\": \"how many men are running along the track together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11641\",\n    \"key\": \"79249\",\n    \"description\": \"two men are running along a track together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazgabqMvX1tzjlkno1_250\",\n    \"question\": \"what is the color of the puppet?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13903\",\n    \"key\": \"46331\",\n    \"description\": \"a man in a suit and a green puppet wave their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadznytQ3X1tj5zkfo1_500\",\n    \"question\": \"what lips and folds arms while the man next to him talks?\",\n    \"answer\": \"purses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30979\",\n    \"key\": \"71352\",\n    \"description\": \"man purses lips and folds arms while the man next to him talks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc1ktOcB51s1dp59o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49361\",\n    \"key\": \"51885\",\n    \"description\": \"a boy in a blue shirt smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7dbUQBA1t5z27go1_400\",\n    \"question\": \"how many girls are riding in the car while clapping and dancing in their seats?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25449\",\n    \"key\": \"58848\",\n    \"description\": \"four girls are riding in a car while clapping and dancing in their seats.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl33fuCCKK1slj978o1_400\",\n    \"question\": \"what is the sled hitting and two people fall out then climb back in?\",\n    \"answer\": \"bank\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18684\",\n    \"key\": \"84963\",\n    \"description\": \"a sled is hitting a snow bank and two people fall out then climb back in.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfruzax6C81tx8l3to1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13676\",\n    \"key\": \"71405\",\n    \"description\": \"the guy in the black hat and black sweatshirt is talking into the microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni06cdG8Wk1u639x2o1_500\",\n    \"question\": \"what is driving through the sunset?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32483\",\n    \"key\": \"71675\",\n    \"description\": \"this red car is driving through the sunset.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8nl1PVQh1tom9vyo1_400\",\n    \"question\": \"what is walking out of the ocean?\",\n    \"answer\": \"orange\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46869\",\n    \"key\": \"61802\",\n    \"description\": \"a woman wearing orange is walking out of the ocean.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndp39weJj11u1b7jeo1_500\",\n    \"question\": \"how many men are scared then fall off chairs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44114\",\n    \"key\": \"58650\",\n    \"description\": \"two men are scared then fall off chairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbz4f0VNT1shuruwo1_400\",\n    \"question\": \"how many people are boating down the river?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25962\",\n    \"key\": \"35186\",\n    \"description\": \"two people are boating down a river,\"\n  },\n  {\n    \"video_name\": \"tumblr_navtszVYAv1tys35ko1_250\",\n    \"question\": \"what are two men laughing and playing?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19329\",\n    \"key\": \"15994\",\n    \"description\": \"two men are laughing and playing their guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzsnt9b4s1u3kqrfo1_400\",\n    \"question\": \"what is the color of the board?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33284\",\n    \"key\": \"35156\",\n    \"description\": \"a man is drawing something on the white board.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzexecqek1r8ael3o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9092\",\n    \"key\": \"37463\",\n    \"description\": \"a white man with black shirt is nodding.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf4zgehl7i1tlle4do1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19621\",\n    \"key\": \"36278\",\n    \"description\": \"the man with a white shirt is fixing his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnvqr0CYdX1qek1oqo1_540\",\n    \"question\": \"what is the man wearing black is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13583\",\n    \"key\": \"93641\",\n    \"description\": \"the man wearing black is playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0odbifZp1tihaueo1_250\",\n    \"question\": \"how many adorable rats are boxing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30697\",\n    \"key\": \"18445\",\n    \"description\": \"two adorable rats are boxing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4x2d8oQS1seza31o1_250\",\n    \"question\": \"where is the baby holding a doll is being placed.\",\n    \"answer\": \"? crib\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14606\",\n    \"key\": \"23487\",\n    \"description\": \"a baby holding a doll is being placed in its crib.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kuvyUJT91sual3ro1_250\",\n    \"question\": \"what is the color of the armor?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4520\",\n    \"key\": \"3721\",\n    \"description\": \"a man in white armor walks through the water and a cat does the same.\"\n  },\n  {\n    \"video_name\": \"tumblr_npa3j5LElU1slwrsuo1_400\",\n    \"question\": \"what moves along the floor rolling a toilet roll?\",\n    \"answer\": \"hedgehog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39769\",\n    \"key\": \"14492\",\n    \"description\": \"a hedgehog moves along the floor rolling a toilet roll.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqsvfl5Pzp1uw1tf9o1_250\",\n    \"question\": \"how many girls are sitting down smiling and laughing at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26975\",\n    \"key\": \"24221\",\n    \"description\": \"two girls are sitting down smiling and laughing at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_noh7i0tW1N1qcolx2o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14648\",\n    \"key\": \"55155\",\n    \"description\": \"a man wearing a red plaid shirt is holding a hatchet over his shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedvy9AhxX1qeire1o1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47744\",\n    \"key\": \"66547\",\n    \"description\": \"a woman man walks down the runway in a blue coat jacket and boots walked.\"\n  },\n  {\n    \"video_name\": \"tumblr_me0m87oukL1rcuthno1_250\",\n    \"question\": \"what is trying to express something in somewhere near nature?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47562\",\n    \"key\": \"27184\",\n    \"description\": \"a monkey is trying to express something in somewhere near nature.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p1stcULz1t5ojzdo1_250\",\n    \"question\": \"how many girls are standing in front of a set of doors and one whispers to the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4845\",\n    \"key\": \"44121\",\n    \"description\": \"two girls are standing in front of a set of doors and one whispers to the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc87o9h8LN1tm5e2no1_500\",\n    \"question\": \"where are the man and a woman kissing each other.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24577\",\n    \"key\": \"59553\",\n    \"description\": \"a man and a woman are kissing each other in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y8wqI6Xn1qlzevso1_500\",\n    \"question\": \"where is the man sitting and talking.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47123\",\n    \"key\": \"98801\",\n    \"description\": \"a man is sitting in a car and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadd8dv4Ho1s34j90o1_400\",\n    \"question\": \"how many people are dancing in the dance studio?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38399\",\n    \"key\": \"57968\",\n    \"description\": \"two people are dancing in a dance studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1mrl3e4N1slj978o1_250\",\n    \"question\": \"what is the dog taking forward and then back?\",\n    \"answer\": \"steps\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5824\",\n    \"key\": \"71461\",\n    \"description\": \"a dog is taking very small steps forward and then back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelh3nATly1tte9eno1_400\",\n    \"question\": \"how many men are ripping their shirts off in anger?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12884\",\n    \"key\": \"40152\",\n    \"description\": \"Two men are ripping their shirts off in anger.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzuoyTPM61tx8mn0o1_400\",\n    \"question\": \"what loses control and spins around in the middle of the racetrack?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1038\",\n    \"key\": \"78642\",\n    \"description\": \"a race car loses control and spins around in the middle of the racetrack.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ebacNkn51rwfov3o1_250\",\n    \"question\": \"what is running through the field?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11654\",\n    \"key\": \"1543\",\n    \"description\": \"a horse is running through a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9l0zq5J771qbr5s3o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23148\",\n    \"key\": \"67816\",\n    \"description\": \"a man wearing a gray shirt skips across stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98t7cdeNZ1skdlfto1_400\",\n    \"question\": \"how many boys is this with one taking off his shirt?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16067\",\n    \"key\": \"60668\",\n    \"description\": \"this is two boys with one taking off his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmu0qjhiV1rj84s9o1_500\",\n    \"question\": \"where is the man eating food whilst sitting whilst another one eats on the toilet.\",\n    \"answer\": \"? bath\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14866\",\n    \"key\": \"89037\",\n    \"description\": \"a man is eating food whilst sitting in the bath whilst another one eats on the toilet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtfbt9KZI1s71nvbo1_400\",\n    \"question\": \"what is the cute white dog driving?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45168\",\n    \"key\": \"15351\",\n    \"description\": \"a cute white dog is driving a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1kqqpnFb1u6xg70o1_250\",\n    \"question\": \"what is the color of the dancing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34676\",\n    \"key\": \"36370\",\n    \"description\": \"this image is of a guy in black dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb1a34KjI1slpywlo1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21333\",\n    \"key\": \"47009\",\n    \"description\": \"a guy dressed in black is dancing somewhere.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcpd67JSq1tic5ulo1_500\",\n    \"question\": \"how many people dance in unison below the staircase?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14197\",\n    \"key\": \"92841\",\n    \"description\": \"two people dance in unison below the staircase.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngio6fsQ8p1ssgyoro1_400\",\n    \"question\": \"what did the cat put its paw on a hand and the hand petted?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50553\",\n    \"key\": \"2019\",\n    \"description\": \"a cat put its paw on a hand and the hand petted the cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nephvvr7qF1tkura4o1_250\",\n    \"question\": \"what are two cats opening?\",\n    \"answer\": \"drawer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10789\",\n    \"key\": \"18471\",\n    \"description\": \"two cats are opening a drawer to look inside it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8luntFAK1s8qlxdo1_400\",\n    \"question\": \"what is jumping on an obstacle?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9099\",\n    \"key\": \"97784\",\n    \"description\": \"a horse is jumping on an obstacle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nra8jaNWXd1ti2yzto1_1280\",\n    \"question\": \"what are messing with each other?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36991\",\n    \"key\": \"17735\",\n    \"description\": \"two cats are messing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1zh6yArU1usf060o1_400\",\n    \"question\": \"what is coming towards someone and then he runs away in a car?\",\n    \"answer\": \"duck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5691\",\n    \"key\": \"80337\",\n    \"description\": \"a duck is coming towards someone and then he runs away in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_npblti8bU91use8l1o1_400\",\n    \"question\": \"what is the bear watching?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43771\",\n    \"key\": \"82811\",\n    \"description\": \"the bear is watching a bird while sitting and another bear came up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvj8l4kcT1uq7zwjo1_400\",\n    \"question\": \"how many plushy soft toys is the bearded man wearing glasses is hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42513\",\n    \"key\": \"63226\",\n    \"description\": \"a bearded man wearing glasses is hugging two plushy soft toys.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbkmokZNrp1sue8vio1_400\",\n    \"question\": \"what is the student,\",\n    \"answer\": \"wearing , reads a piece of paper on a desk and then raises his head ? glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38570\",\n    \"key\": \"15813\",\n    \"description\": \"a student,\"\n  },\n  {\n    \"video_name\": \"tumblr_nessuogOUs1spkf8wo1_400\",\n    \"question\": \"what is the lady with the white hat with the feather in it wearing?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10591\",\n    \"key\": \"68682\",\n    \"description\": \"the lady with the white hat with the feather in it is wearing a silver dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ljcuFQoT1tptpheo1_250\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16259\",\n    \"key\": \"49878\",\n    \"description\": \"a man is holding his phone as he moves his head side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_n932r0pFvS1tuatvvo1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15962\",\n    \"key\": \"53129\",\n    \"description\": \"a woman in a red outfit picks up a red hair while ice skating.\"\n  },\n  {\n    \"video_name\": \"tumblr_nek7op2Sfd1u31i4ao1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6776\",\n    \"key\": \"86944\",\n    \"description\": \"the guy with the gray jacket hugged the girl that was crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyam1X1MM1tmnntwo1_250\",\n    \"question\": \"what is the color of the door?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1401\",\n    \"key\": \"37541\",\n    \"description\": \"a striped cat is standing up and closing a white door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdddhdOuN1te5p35o1_250\",\n    \"question\": \"what is the person sitting and rubbing?\",\n    \"answer\": \"pillow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29506\",\n    \"key\": \"289\",\n    \"description\": \"a person is sitting and rubbing a pillow.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyux3yYKW1qa0byyo1_400\",\n    \"question\": \"what is the color of the bib?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51202\",\n    \"key\": \"7032\",\n    \"description\": \"a baby in a red bib is smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_np3arfHXlH1t5dv9do1_400\",\n    \"question\": \"what does the young boy stir with a drink in it?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50838\",\n    \"key\": \"28652\",\n    \"description\": \"a young boy stirs a cup with a drink in it as he rests his head on a jar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfkcabylR81sbxr09o1_500\",\n    \"question\": \"where is the man sitting,\",\n    \"answer\": \"he has food in front of him . ? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30404\",\n    \"key\": \"48976\",\n    \"description\": \"a man is sitting in a chair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nem206krPl1tu9x1wo1_500\",\n    \"question\": \"what is the girl paddling out into the water at sunset?\",\n    \"answer\": \"surfboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26359\",\n    \"key\": \"71159\",\n    \"description\": \"a girl is paddling her surfboard out into the water at sunset.\"\n  },\n  {\n    \"video_name\": \"tumblr_no18ffxNDq1tpg4boo1_400\",\n    \"question\": \"what is trying to cuddle with the baby?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31639\",\n    \"key\": \"34561\",\n    \"description\": \"a cat is trying to cuddle with a baby.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndywttSMPx1tsspsco6_500\",\n    \"question\": \"how many wrestlers in a ring are bumping their fists together,\",\n    \"answer\": \"before one of them climbs from the ring ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21978\",\n    \"key\": \"44970\",\n    \"description\": \"two wrestlers in a ring are bumping their fists together,\"\n  },\n  {\n    \"video_name\": \"tumblr_nab35ghDR51tjaoico1_500\",\n    \"question\": \"how many people hold hands together to reveal a masked man?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41125\",\n    \"key\": \"83410\",\n    \"description\": \"four people hold hands together to reveal a masked man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3exsMV8S1qfpmkno1_500\",\n    \"question\": \"how many male singer is hugging with the female singer in a concert?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52200\",\n    \"key\": \"68513\",\n    \"description\": \"one male singer is hugging with a female singer in a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrv0ryvIB1tledfyo1_250\",\n    \"question\": \"how many dudes are singing,\",\n    \"answer\": \"dancing , and clapping ? four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26803\",\n    \"key\": \"21947\",\n    \"description\": \"four dudes are singing,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9khtlxFWW1t7hjz2o1_400\",\n    \"question\": \"what is the woman playing?\",\n    \"answer\": \"pool\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6133\",\n    \"key\": \"20950\",\n    \"description\": \"a woman is playing pool while a dog is jumping.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9arvu8wVk1th7gfko1_250\",\n    \"question\": \"how many people are running and three fall in the street?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31410\",\n    \"key\": \"37916\",\n    \"description\": \"four people are running and three fall in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncclh5CTka1th986vo1_400\",\n    \"question\": \"what is the color of the lights?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17131\",\n    \"key\": \"3350\",\n    \"description\": \"the car is driving away with glowing red tail lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bdapPO481sc9qyco1_400\",\n    \"question\": \"what are racing next to each other on a track?\",\n    \"answer\": \"motorcycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35042\",\n    \"key\": \"36760\",\n    \"description\": \"two motorcycles are racing next to each other on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sskvyvQ71tco194o1_500\",\n    \"question\": \"how many men are moving their heads around each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51110\",\n    \"key\": \"88611\",\n    \"description\": \"two men are moving their heads around each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyl4209U21sabd3xo1_250\",\n    \"question\": \"where are three men with masks on their heads riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23477\",\n    \"key\": \"23694\",\n    \"description\": \"three men with masks on their heads are riding in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg6ia8wuI1typ81lo1_400\",\n    \"question\": \"how many people are eating spaghetti noodles out of bowls with chopsticks and their fingers?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27299\",\n    \"key\": \"61990\",\n    \"description\": \"three people are eating spaghetti noodles out of bowls with chopsticks and their fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfjmx8GxD1rvdsbqo1_250\",\n    \"question\": \"what is the girl taking on her phone?\",\n    \"answer\": \"pictures\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5503\",\n    \"key\": \"804\",\n    \"description\": \"the girl is taking pictures on her phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nopvobSus81qjdy9xo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6746\",\n    \"key\": \"59626\",\n    \"description\": \"a white girl with black hair is talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd11cdPFVQ1s1cmjio1_400\",\n    \"question\": \"how many cards are driving side by side in a parking garage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31430\",\n    \"key\": \"96948\",\n    \"description\": \"two cards are driving side by side in a parking garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5shcyvQ71rqlwo0o1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30438\",\n    \"key\": \"33798\",\n    \"description\": \"a young man wearing a white t-shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3s3p7xA21qgs69do1_500\",\n    \"question\": \"how many men are pointing at each other and smile?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11594\",\n    \"key\": \"75808\",\n    \"description\": \"two men are pointing at each other and smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4xgr1uC71rblf33o1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24166\",\n    \"key\": \"89609\",\n    \"description\": \"a man with a tattoo and black tank top is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uv1zvqSX1rpt0jio1_400\",\n    \"question\": \"how many men are on stage together hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24341\",\n    \"key\": \"77523\",\n    \"description\": \"two men are on stage together hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_napfl20WZw1r9n9k9o1_400\",\n    \"question\": \"how many man is reading the newspaper?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46759\",\n    \"key\": \"80140\",\n    \"description\": \"one man is reading a newspaper,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hek5wjXA1tselino1_250\",\n    \"question\": \"what is she and she knows she has it!\",\n    \"answer\": \"? star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43888\",\n    \"key\": \"263\",\n    \"description\": \"she is a super star and she knows she has it!\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3x4klA5p1rw2g18o1_1280\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37153\",\n    \"key\": \"57849\",\n    \"description\": \"a boy with brown hair is standing looking sad.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkidy4Ldfk1t47dz3o1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24306\",\n    \"key\": \"91568\",\n    \"description\": \"a blonde girl is having a chat time with a white guy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2j3elkE11ti5nreo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1459\",\n    \"key\": \"26154\",\n    \"description\": \"a woman with black hair is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexxo9P8Co1tibg2uo1_400\",\n    \"question\": \"how many men are hugging each other in a messy room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29639\",\n    \"key\": \"34931\",\n    \"description\": \"two men are hugging each other in a messy room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxpzlmRZc1tvp5nto1_400\",\n    \"question\": \"where is the seal mimicking a man 's actions.\",\n    \"answer\": \"? tank\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7968\",\n    \"key\": \"56475\",\n    \"description\": \"a seal in a tank is mimicking a man 's actions.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqjklxflS41uz06r7o1_250\",\n    \"question\": \"what licks itself and rolls in a circle?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40960\",\n    \"key\": \"5456\",\n    \"description\": \"the cat licks itself and rolls in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk1rp38Pq1uyssdqo1_540\",\n    \"question\": \"what is running down the hall and then stops and lays down?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA666\",\n    \"key\": \"10262\",\n    \"description\": \"a cat is running down the hall and then stops and lays down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v70oXqey1rw0tkfo2_r1_400\",\n    \"question\": \"how many men kiss the woman 's hand as she walks up to them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17030\",\n    \"key\": \"49374\",\n    \"description\": \"2 men kiss a woman 's hand as she walks up to them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwygmj1FM1todjjwo1_500\",\n    \"question\": \"what is the teacher breaking in half in front of his class?\",\n    \"answer\": \"clipboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34914\",\n    \"key\": \"58265\",\n    \"description\": \"a teacher is breaking his clipboard in half in front of his class.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4htjKh0T1qe0t1to1_250\",\n    \"question\": \"what is putting an upset face?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46296\",\n    \"key\": \"16788\",\n    \"description\": \"a man wearing tie is putting an upset face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91fdzM1VS1s1l4fio1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4268\",\n    \"key\": \"82743\",\n    \"description\": \"a man with a white shirt and a black hat is walking down a crowded street.\"\n  },\n  {\n    \"video_name\": \"tumblr_noaswjesmm1th7g9io1_400\",\n    \"question\": \"what is one cat putting in another cat 's face to stop it from trying to groom the first cat?\",\n    \"answer\": \"paw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45321\",\n    \"key\": \"95722\",\n    \"description\": \"one cat is putting its paw in another cat 's face to stop it from trying to groom the first cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7m6oseVy1tjgll6o1_400\",\n    \"question\": \"what is the boy multicolored hair taking off?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7989\",\n    \"key\": \"35257\",\n    \"description\": \"a boy multicolored hair is taking off his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nky1haecpO1qzdriyo1_500\",\n    \"question\": \"how many women with rainbows painted on their cheeks,\",\n    \"answer\": \"kiss ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9024\",\n    \"key\": \"95386\",\n    \"description\": \"two women with rainbows painted on their cheeks,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rlcclxUX1tgyi5mo1_250\",\n    \"question\": \"how many soccer plays hug on a soccer field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA378\",\n    \"key\": \"43710\",\n    \"description\": \"two soccer plays hug on a soccer field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5vv1hlRE1qdmpguo2_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11006\",\n    \"key\": \"85383\",\n    \"description\": \"a man with white hair makes a disgusted face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyuzopZti1tm0es2o1_500\",\n    \"question\": \"how many young men are talking and standing very close?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA791\",\n    \"key\": \"48999\",\n    \"description\": \"two young men are talking and standing very close.\"\n  },\n  {\n    \"video_name\": \"tumblr_najlujyscz1slwrsuo1_400\",\n    \"question\": \"how many people are dancing in front of posters?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1963\",\n    \"key\": \"16170\",\n    \"description\": \"three people are dancing in front of posters.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92y7xvWoz1t62xtyo1_500\",\n    \"question\": \"what tries to bite the large tomato?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47117\",\n    \"key\": \"34488\",\n    \"description\": \"a small turtle tries to bite a large tomato.\"\n  },\n  {\n    \"video_name\": \"tumblr_npchuhU40V1s4dp9lo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6761\",\n    \"key\": \"61840\",\n    \"description\": \"a woman in a white dress is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na580m6GwR1t0ojyvo1_500\",\n    \"question\": \"how many young men are modeling for the picture?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3433\",\n    \"key\": \"94958\",\n    \"description\": \"three young men are modeling for a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqbp4iFdJ1th8ztno1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20242\",\n    \"key\": \"35238\",\n    \"description\": \"a white woman is making gestures with her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y9akfIvh1qlxas3o1_400\",\n    \"question\": \"what is the long-haired man playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44713\",\n    \"key\": \"76469\",\n    \"description\": \"a long-haired man is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_njomwaECLx1qga6p9o2_400\",\n    \"question\": \"what is the color of the bottle?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16499\",\n    \"key\": \"81166\",\n    \"description\": \"a man takes a long drink from a green beer bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_najgk2RXzP1t151ozo1_400\",\n    \"question\": \"how many men are sitting next to each other,\",\n    \"answer\": \"when one touches the other on the shoulder ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17609\",\n    \"key\": \"28115\",\n    \"description\": \"two men are sitting next to each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyn20FBG01s00yuho1_500\",\n    \"question\": \"what is the color of the sing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19935\",\n    \"key\": \"88485\",\n    \"description\": \"a woman wearing a white top sing 's into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9slecUQXg1rt9h1no1_500\",\n    \"question\": \"what is the creepy man with long hair looking out?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26016\",\n    \"key\": \"97563\",\n    \"description\": \"a creepy man with long hair is looking out a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhfer8aJcn1u74chmo1_500\",\n    \"question\": \"where does the blond boy squeeze the muscle.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27699\",\n    \"key\": \"79417\",\n    \"description\": \"a blond boy squeezes the muscle in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_no1l13digu1u1sccdo1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20845\",\n    \"key\": \"14251\",\n    \"description\": \"a girl is slightly moving and is wearing a black coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nca3neyJbm1retkdpo1_500\",\n    \"question\": \"how many people walk?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44190\",\n    \"key\": \"99129\",\n    \"description\": \"two people walk and the one moves his coat to the side and grabs his guns.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvfrvtJRb1uo2e5xo1_250\",\n    \"question\": \"where is the woman signing a song.\",\n    \"answer\": \"? house\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52391\",\n    \"key\": \"28457\",\n    \"description\": \"a woman is signing a song in the house.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92y7xvWoz1t62xtyo1_500\",\n    \"question\": \"what is the color of the tomato?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49530\",\n    \"key\": \"34488\",\n    \"description\": \"a small animal pushes a red tomato on a napkin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5lm8v8r31tx8mn0o1_400\",\n    \"question\": \"what cuts the corner off in a race?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39645\",\n    \"key\": \"77883\",\n    \"description\": \"a car cuts the corner off in a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgkzeADl51rpsnyjo1_250\",\n    \"question\": \"how many men are dancing in the car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37599\",\n    \"key\": \"3928\",\n    \"description\": \"two men are dancing in the car,\"\n  },\n  {\n    \"video_name\": \"tumblr_nabwvrGgUt1rmv3nuo1_500\",\n    \"question\": \"what is the color of the paper?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46871\",\n    \"key\": \"70098\",\n    \"description\": \"three guys are carrying a fourth guy through purple paper.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7fe5rnLn1rv18yuo1_250\",\n    \"question\": \"how many young women are having the conversation with someone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50154\",\n    \"key\": \"12402\",\n    \"description\": \"two young women are having a conversation with someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsve40Qa31u659t0o1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4321\",\n    \"key\": \"91454\",\n    \"description\": \"a white woman turning to look at a black man in a restaurant.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9opiE4eV1soso59o1_400\",\n    \"question\": \"how many men are looking at each other before one embraces the other tightly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11575\",\n    \"key\": \"67005\",\n    \"description\": \"two men are looking at each other before one embraces the other tightly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nheuo83aCM1t0w9oqo1_400\",\n    \"question\": \"where are two men swaying.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46816\",\n    \"key\": \"74555\",\n    \"description\": \"two men are swaying together in a red room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9art5oaA51r4s9t4o1_250\",\n    \"question\": \"how many men are talking to somebody whiles?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35903\",\n    \"key\": \"35466\",\n    \"description\": \"three men are talking to somebody whiles a man is looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_na40r0jkFh1shuxevo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44073\",\n    \"key\": \"64296\",\n    \"description\": \"a young man with white hair is curling up his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjwx6K3OR1tlujlao1_250\",\n    \"question\": \"how many guys smile and make hand gestures together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26317\",\n    \"key\": \"3760\",\n    \"description\": \"two guys smile and make hand gestures together.\"\n  },\n  {\n    \"video_name\": \"tumblr_na223cc4GI1r6gft3o1_250\",\n    \"question\": \"what is chasing something across the wooden floor?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1851\",\n    \"key\": \"70577\",\n    \"description\": \"the silly cat is chasing something across the wooden floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_neua43pKJC1t0kntqo1_250\",\n    \"question\": \"how many yellow costumed creatures bend over in the gymnasium?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48202\",\n    \"key\": \"53580\",\n    \"description\": \"two yellow costumed creatures bend over in a gymnasium.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6u1pS7KM1r0v1ajo4_250\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47708\",\n    \"key\": \"9961\",\n    \"description\": \"a man in a black vest is pushing a bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1uguIQxD1td493xo1_500\",\n    \"question\": \"where is the baby playing.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33463\",\n    \"key\": \"84890\",\n    \"description\": \"a baby is playing in a fake car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0khmXlwt1t7hjz2o1_250\",\n    \"question\": \"what is the man massaging?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51518\",\n    \"key\": \"27110\",\n    \"description\": \"a man is massaging a cat who is on a board.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5h8ba4iB1s3wsijo1_500\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49462\",\n    \"key\": \"69389\",\n    \"description\": \"two men wearing black pants are fighting with chains.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1jamcgAZ1u0agnbo1_500\",\n    \"question\": \"what is the woman driving down the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32426\",\n    \"key\": \"73509\",\n    \"description\": \"the woman is driving her car down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqdkq9NdcV1souwjko1_250\",\n    \"question\": \"how many suited men does this show performing a dance routine?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10786\",\n    \"key\": \"22124\",\n    \"description\": \"this shows five suited men performing a dance routine.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkpcx7Bz6I1qattp2o1_500\",\n    \"question\": \"what is the man wearing a navy jacket hits?\",\n    \"answer\": \"locker\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19335\",\n    \"key\": \"71572\",\n    \"description\": \"a man wearing a navy jacket hits a locker.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebjohzXeJ1thyqpfo1_250\",\n    \"question\": \"how many boys turn around making hand gestures look surprised?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44537\",\n    \"key\": \"2124\",\n    \"description\": \"three boys turn around making hand gestures look surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjubnErtE1sh0wvgo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31462\",\n    \"key\": \"14412\",\n    \"description\": \"a man with no hair and a white shirt and black suit on posed poses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxyadbp6x1slj978o1_400\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1814\",\n    \"key\": \"75668\",\n    \"description\": \"a man is sitting on a blue chair surrounded by dogs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4vryXuiR1u9o6qbo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4878\",\n    \"key\": \"19008\",\n    \"description\": \"a woman opens her jacket revealing her white dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndurbh6w6U1rm0u6lo1_400\",\n    \"question\": \"what is the guy hugging and looking up at it?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50675\",\n    \"key\": \"58760\",\n    \"description\": \"a guy is hugging a tree and looking up at it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93sqa0Tt21sjfh08o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51150\",\n    \"key\": \"30171\",\n    \"description\": \"a man takes off his black tank top.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhs2lXSXl1rp12fxo1_1280\",\n    \"question\": \"how many cars race down the race track together?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47958\",\n    \"key\": \"96025\",\n    \"description\": \"5 cars race down a race track together and one is fastest.\"\n  },\n  {\n    \"video_name\": \"tumblr_noofl2XtVN1uw3tyuo1_250\",\n    \"question\": \"what is the man dresses in suit and gloves adjusting?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44401\",\n    \"key\": \"39859\",\n    \"description\": \"a man dresses in suit and gloves is adjusting his tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee92e9wJt1srt4nmo1_250\",\n    \"question\": \"how many men are talking with one another outside at night?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2647\",\n    \"key\": \"81215\",\n    \"description\": \"two men are talking with one another outside at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4kccYkUt1slyjblo1_400\",\n    \"question\": \"what is the man swinging at a man who is trying to grab him?\",\n    \"answer\": \"bat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52240\",\n    \"key\": \"79101\",\n    \"description\": \"a man is swinging a baseball bat at a man who is trying to grab him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8ydiZBPJ1ti9lxjo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42606\",\n    \"key\": \"68244\",\n    \"description\": \"a blue car raises into the air as a black car spins under it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbt3fbQve61rew6cho1_250\",\n    \"question\": \"what is the girl throwing?\",\n    \"answer\": \"popcorn\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50367\",\n    \"key\": \"8904\",\n    \"description\": \"a girl who is wearing a hat is throwing popcorn.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesw34gJQu1ts5egio1_250\",\n    \"question\": \"how many men are performing synchronized dancing on a stage?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5177\",\n    \"key\": \"9781\",\n    \"description\": \"four men are performing synchronized dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqlgrb0lcL1uz06r7o1_250\",\n    \"question\": \"what is the cat chasing?\",\n    \"answer\": \"broom\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42828\",\n    \"key\": \"2822\",\n    \"description\": \"a cat is chasing a broom while someone sweeps the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfv5xzlgj31u25yojo1_400\",\n    \"question\": \"how many guys are talking to each other in front of something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47000\",\n    \"key\": \"87470\",\n    \"description\": \"two guys are talking to each other in front of something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96u6soS9v1tw0ucfo1_400\",\n    \"question\": \"what are the group of men in black passing?\",\n    \"answer\": \"guns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22618\",\n    \"key\": \"26456\",\n    \"description\": \"a group of men in black are passing guns.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wch8DPCW1rvxuq0o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30682\",\n    \"key\": \"11798\",\n    \"description\": \"a man wearing all black and a backpack is pulling his hat off.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngum4iDEja1rp3ki0o1_250\",\n    \"question\": \"how many people are ice skating and one almost falls?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15677\",\n    \"key\": \"5300\",\n    \"description\": \"two people are ice skating and one almost falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngio6fsQ8p1ssgyoro1_400\",\n    \"question\": \"what is raising the leg and being caressed?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39466\",\n    \"key\": \"2019\",\n    \"description\": \"a black and white cat is raising the leg and being caressed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf6z08W8ZO1tmecz1o1_500\",\n    \"question\": \"what is the very cute girl wearing?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4810\",\n    \"key\": \"58112\",\n    \"description\": \"a very cute girl is wearing a rare black dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nouog6B5731ssgyoro1_400\",\n    \"question\": \"how many friends slides quickly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45130\",\n    \"key\": \"52810\",\n    \"description\": \"two friends slides quickly and they fall down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzdxdVvFc1s5n087o1_500\",\n    \"question\": \"where is the man driving along lots of lights.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10553\",\n    \"key\": \"57448\",\n    \"description\": \"a man in a car is driving along lots of lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_neq3hvOJWL1qffcm9o4_400\",\n    \"question\": \"how many women hug and one woman cries?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50091\",\n    \"key\": \"33869\",\n    \"description\": \"two women hug and one woman cries.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjvgxTl5A1sdpqweo1_500\",\n    \"question\": \"how many men are hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35502\",\n    \"key\": \"57398\",\n    \"description\": \"the two men are hugging each other but one of them is injured.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91fivx41z1trjwxwo1_400\",\n    \"question\": \"what is the man using?\",\n    \"answer\": \"paint\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3696\",\n    \"key\": \"77524\",\n    \"description\": \"a man is using spray paint to write on a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabyq55Rts1thsojbo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22869\",\n    \"key\": \"7588\",\n    \"description\": \"the guy with the black shirt stood looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfowdspwlA1rlhabro1_500\",\n    \"question\": \"how many smiling young men are shaking hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7871\",\n    \"key\": \"60308\",\n    \"description\": \"two smiling young men are shaking hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngt78gZQ711qzunbgo1_250\",\n    \"question\": \"what is the color of the rain?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42928\",\n    \"key\": \"47430\",\n    \"description\": \"a woman holds an umbrella and walks in the rain dressed in all black.\"\n  },\n  {\n    \"video_name\": \"tumblr_nraf01MZL21scwzvxo1_400\",\n    \"question\": \"how many hand is the bald man in black rising up and walking with closing eyes?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47344\",\n    \"key\": \"101671\",\n    \"description\": \"a bald man in black is rising one hand up and walking with closing eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesa7vFDOw1srdod7o1_250\",\n    \"question\": \"what is talking and thumbs up?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3706\",\n    \"key\": \"12441\",\n    \"description\": \"a boy wearing hat is talking and thumbs up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngm9qdinC11u47jf5o1_250\",\n    \"question\": \"how many man punches another man to prevent the other man from biting him?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10798\",\n    \"key\": \"37360\",\n    \"description\": \"one man punches another man to prevent the other man from biting him.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ljz37P2L1ti3rdpo1_400\",\n    \"question\": \"what is the girl opening and a boy is jumping out of it to scare someone?\",\n    \"answer\": \"locker\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52716\",\n    \"key\": \"83540\",\n    \"description\": \"a girl is opening a locker and a boy is jumping out of it to scare someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvfrvtJRb1uo2e5xo1_250\",\n    \"question\": \"what is the color of the petals?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13408\",\n    \"key\": \"28457\",\n    \"description\": \"a woman is sitting on steps that are covered in red flower petals.\"\n  },\n  {\n    \"video_name\": \"tumblr_npj3v5k7YO1twa8dfo1_400\",\n    \"question\": \"how many women are fighting with the knife and a frying pan?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34988\",\n    \"key\": \"13996\",\n    \"description\": \"two women are fighting with a knife and a frying pan.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtjxp216t1rkak8mo1_500\",\n    \"question\": \"how many men walk out?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37173\",\n    \"key\": \"14818\",\n    \"description\": \"an elevator door opens and two men walk out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkojhorUl81sjmrcro1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19398\",\n    \"key\": \"48297\",\n    \"description\": \"a man wearing a black shirt was taking off his ice skates.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhezpoGPlg1s71nvbo1_500\",\n    \"question\": \"what is the woman reclining and looking surprised while doing it?\",\n    \"answer\": \"seat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25278\",\n    \"key\": \"68103\",\n    \"description\": \"a woman is reclining her car seat and looking surprised while doing it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh16i2pNv61s6zpepo1_400\",\n    \"question\": \"how many person kicks the other person?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32727\",\n    \"key\": \"25142\",\n    \"description\": \"one person kicks the other person and he falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nomhc2cRR51uoon82o1_400\",\n    \"question\": \"what does the man click with two other people,\",\n    \"answer\": \"and then they run away ? heels\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40814\",\n    \"key\": \"56700\",\n    \"description\": \"a man clicks his heels with two other people,\"\n  },\n  {\n    \"video_name\": \"tumblr_nctl7fbtyA1rtb17mo1_250\",\n    \"question\": \"what are some people waving in front of a woman?\",\n    \"answer\": \"flags\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25787\",\n    \"key\": \"85628\",\n    \"description\": \"some people are waving flags in front of a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1hdxAtl81slj978o1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35846\",\n    \"key\": \"18218\",\n    \"description\": \"a small white cat with stumpy legs is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfrmsb7tal1t06o0xo1_400\",\n    \"question\": \"how many boys send the girl rolling down a hill inside of a large tire?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1618\",\n    \"key\": \"67695\",\n    \"description\": \"two boys send a girl rolling down a hill inside of a large tire.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsvtw1VqO1roxldao1_500\",\n    \"question\": \"how many asian males are laughing at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14588\",\n    \"key\": \"50556\",\n    \"description\": \"two asian males are laughing at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqbxtdsOu11tk2ngvo1_400\",\n    \"question\": \"what is falling down in snow?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15989\",\n    \"key\": \"98201\",\n    \"description\": \"a furry cat is falling down in snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1ae8GExo1tkkgpso1_400\",\n    \"question\": \"what is sitting in two hands?\",\n    \"answer\": \"hamster\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15845\",\n    \"key\": \"22827\",\n    \"description\": \"a white hamster is sitting in two hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcf6u3qah1rd87k4o1_250\",\n    \"question\": \"where is the beautiful lady with long hair driving a bicycle.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52618\",\n    \"key\": \"13573\",\n    \"description\": \"a beautiful lady with long hair is driving a bicycle in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nby6co3wog1snxuk3o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49782\",\n    \"key\": \"94301\",\n    \"description\": \"this is a girl that is wearing a red dress and a boy with red hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngz2gcvCxw1rtdnfto1_400\",\n    \"question\": \"what are being rolled on the table?\",\n    \"answer\": \"dice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18516\",\n    \"key\": \"28359\",\n    \"description\": \"the dice are being rolled on the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh78lk47wl1se4fueo1_400\",\n    \"question\": \"how many young women jump off the roof in to a pool but one lands on the ground?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31800\",\n    \"key\": \"21336\",\n    \"description\": \"two young women jump off the roof in to a pool but one lands on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5j2z7Ejt1tfvkwqo1_400\",\n    \"question\": \"what is the guy playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43499\",\n    \"key\": \"68462\",\n    \"description\": \"a guy is playing guitar while another guy watches.\"\n  },\n  {\n    \"video_name\": \"tumblr_npy4c6ERuh1uv0y2ro1_250\",\n    \"question\": \"what is watching people make soup and trying to get his fair share?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7105\",\n    \"key\": \"13331\",\n    \"description\": \"a cat is watching people make soup and trying to get his fair share.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mcz0Bs5x1t1zoqqo1_r1_500\",\n    \"question\": \"how many young girls are making hand gestures at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52704\",\n    \"key\": \"79390\",\n    \"description\": \"two young girls are making hand gestures at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nre0xwdee61uyo37eo1_250\",\n    \"question\": \"what is the color of the lingerie?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14009\",\n    \"key\": \"6713\",\n    \"description\": \"a woman wearing black lingerie opens the doors and looks out.\"\n  },\n  {\n    \"video_name\": \"tumblr_negdm6AfLD1tyu9j8o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15641\",\n    \"key\": \"13780\",\n    \"description\": \"a man with black hair is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhchptHDxG1slj978o1_250\",\n    \"question\": \"what are running towards three food dishes?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42249\",\n    \"key\": \"3857\",\n    \"description\": \"three cats are running towards three food dishes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpugqJVgm1s6zpepo1_400\",\n    \"question\": \"what is surprised by something and becomes scared?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10180\",\n    \"key\": \"30538\",\n    \"description\": \"a cat is surprised by something and becomes scared.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4xuxJjdk1sfxnzso1_250\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27619\",\n    \"key\": \"82976\",\n    \"description\": \"a black car is driving around a crescent shaped road.\"\n  },\n  {\n    \"video_name\": \"tumblr_noal004K181rk6mu2o1_250\",\n    \"question\": \"how many team mascots give the high five in an office while another worker shakes his head?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10788\",\n    \"key\": \"80772\",\n    \"description\": \"two team mascots give a high five in an office while another worker shakes his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbyfhxz6N1t3vunfo1_1280\",\n    \"question\": \"what is the young man wearing and smiling?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23553\",\n    \"key\": \"91150\",\n    \"description\": \"a young man is wearing a red hat and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjfm8LunL1tlv2g2o1_400\",\n    \"question\": \"what is attempting to get inside the small box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48866\",\n    \"key\": \"78926\",\n    \"description\": \"a cat is attempting to get inside a small box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nir1ryJpQJ1slj978o1_400\",\n    \"question\": \"what drives past and almost hits the man?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21283\",\n    \"key\": \"25795\",\n    \"description\": \"the car drives past and almost hits the man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n4weqhDYCU1tqrkr5o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43750\",\n    \"key\": \"51771\",\n    \"description\": \"a guy wearing a white shirt is turning his head to look behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_naulrlooAz1r32tvmo1_400\",\n    \"question\": \"where is the man sitting at a desk.\",\n    \"answer\": \"? library\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42965\",\n    \"key\": \"35210\",\n    \"description\": \"the man in the library is sitting at a desk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6z38GkkR1tmbbaro1_400\",\n    \"question\": \"what is the cat chasing through the door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43738\",\n    \"key\": \"80311\",\n    \"description\": \"a cat is chasing another cat through the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxnk5YbbF1sa0lndo1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18134\",\n    \"key\": \"74243\",\n    \"description\": \"a girl with black clothing is putting something on a man on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng36b2y1Eb1tud48eo1_250\",\n    \"question\": \"what is the color of the skirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19319\",\n    \"key\": \"67836\",\n    \"description\": \"a woman with a black skirt walks into a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_new6rapUbt1tqrf5uo2_400\",\n    \"question\": \"what is the color of the sweaters?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30440\",\n    \"key\": \"66256\",\n    \"description\": \"two guys in yellow sweaters met next to water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9s3ynzr7Z1r288g6o1_400\",\n    \"question\": \"how many people sat down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44824\",\n    \"key\": \"64118\",\n    \"description\": \"two people sat down and looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4g1xvNl81tyu5lro1_500\",\n    \"question\": \"what was the woman with long dark hair smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35826\",\n    \"key\": \"68386\",\n    \"description\": \"a woman with long dark hair was smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkx0ckeBR61shxi5go1_540\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29983\",\n    \"key\": \"96429\",\n    \"description\": \"a woman puts on a black hat and sings into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr35ufuV21uofmw3o1_400\",\n    \"question\": \"what is an otter shaking in a circle?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3296\",\n    \"key\": \"40169\",\n    \"description\": \"an otter is shaking his butt in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjiheyDgn1u41tvho1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9548\",\n    \"key\": \"46335\",\n    \"description\": \"the man with the white shirt is jumping while the blond lady is spraying his hair with hair spray.\"\n  },\n  {\n    \"video_name\": \"tumblr_ninfq9WzsZ1s6zpepo1_250\",\n    \"question\": \"what does the cat jump off to the top of a counter?\",\n    \"answer\": \"chair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22126\",\n    \"key\": \"78597\",\n    \"description\": \"a cat jumps off a chair to the top of a counter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpp9aIKCk1tuoc50o1_400\",\n    \"question\": \"what is driving down the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33701\",\n    \"key\": \"39490\",\n    \"description\": \"a black car is driving down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3wicyFbJ1u6y2kio1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40571\",\n    \"key\": \"36536\",\n    \"description\": \"a woman with braided hair and black shirt looks behind herself.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9j4izA6NT1qiyk3oo1_500\",\n    \"question\": \"what is the man wearing glasses is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3090\",\n    \"key\": \"102025\",\n    \"description\": \"a man wearing glasses is playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sj99mVgs1tvy42yo1_500\",\n    \"question\": \"what does the man smile and shuts?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42171\",\n    \"key\": \"10967\",\n    \"description\": \"a man smiles and shuts the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nioykwICNc1u8ilf5o1_400\",\n    \"question\": \"where is the band signing.\",\n    \"answer\": \"? warehouse\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26785\",\n    \"key\": \"97360\",\n    \"description\": \"a band is signing in a warehouse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5njppXLD1tjargao1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37495\",\n    \"key\": \"9765\",\n    \"description\": \"a man in a blue jacket is nodding his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczg2aOKa01tugd7xo1_400\",\n    \"question\": \"what is rolling down the street and soldiers throw stuff at it,\",\n    \"answer\": \"kick it and fall over ? tire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12968\",\n    \"key\": \"19074\",\n    \"description\": \"a tire is rolling down the street and soldiers throw stuff at it,\"\n  },\n  {\n    \"video_name\": \"tumblr_njzf9iYaNE1tul4jlo1_400\",\n    \"question\": \"what is the man wearing?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9436\",\n    \"key\": \"20807\",\n    \"description\": \"a man is wearing a blue jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99oknHBnr1r8wa1po1_500\",\n    \"question\": \"what is the man holding smoking under his chin?\",\n    \"answer\": \"wire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44573\",\n    \"key\": \"68077\",\n    \"description\": \"a man is holding a smoking wire under his chin.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wsbjPwDe1rwrktro1_500\",\n    \"question\": \"what is the color of the waves?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39578\",\n    \"key\": \"75407\",\n    \"description\": \"a man dressed in a black jacket waves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7noqopf71qbvb1co1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15392\",\n    \"key\": \"3621\",\n    \"description\": \"the guy with the black hair is wearing an earring and makeup.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoz3heJia1tx8mn0o1_400\",\n    \"question\": \"what hits another sending it on its side and making it flip over?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34198\",\n    \"key\": \"21855\",\n    \"description\": \"one race car hits another sending it on its side and making it flip over.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni06hc76UJ1u639x2o1_500\",\n    \"question\": \"what is skidding and turning on the country side road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15261\",\n    \"key\": \"72526\",\n    \"description\": \"a car is skidding and turning on a country side road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95xq1FqHa1s0ea0ao1_400\",\n    \"question\": \"what then falls over?\",\n    \"answer\": \"crow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25400\",\n    \"key\": \"50632\",\n    \"description\": \"a crow is playing happily in the snow then falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh862jAOeb1s2v55ho1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36105\",\n    \"key\": \"71319\",\n    \"description\": \"a young man is combing his black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngk0r7YOKQ1qd6dggo1_500\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44649\",\n    \"key\": \"88302\",\n    \"description\": \"a girl in a red outfit walks along a path.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fsxu29rP1tpsgaxo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7420\",\n    \"key\": \"36703\",\n    \"description\": \"a girl in a red dress turns and walked into a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nby8fzSw431tkpzw0o1_400\",\n    \"question\": \"what was lying on the chair?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48087\",\n    \"key\": \"80393\",\n    \"description\": \"a black and gray cat was lying on a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvo34sjOO1u4nno3o1_250\",\n    \"question\": \"what is the man wearing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16047\",\n    \"key\": \"68577\",\n    \"description\": \"a man wearing a black shirt holding a tomato stares in the distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfx6plsgs1sjcg5bo2_500\",\n    \"question\": \"where is the guy with green eyes smiling.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29516\",\n    \"key\": \"39257\",\n    \"description\": \"a guy with green eyes is smiling in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nawbyzVwlV1thhvy0o1_400\",\n    \"question\": \"what is the young man wearing a bandanna around his face and making with his hand toward his head?\",\n    \"answer\": \"motions\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24751\",\n    \"key\": \"32609\",\n    \"description\": \"the young man is wearing a bandanna around his face and making gun motions with his hand toward his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_narusznLKe1ti88nfo1_500\",\n    \"question\": \"what is the man with very short hair blowing with bubblegum?\",\n    \"answer\": \"bubbles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4713\",\n    \"key\": \"95611\",\n    \"description\": \"a man with very short hair is blowing bubbles with bubblegum.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnmsjSHVf1qls6cvo1_r1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3422\",\n    \"key\": \"91421\",\n    \"description\": \"a girl with long curly blonde hair and wearing a red woolen hat is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxvmfNZQf1slj978o1_250\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18192\",\n    \"key\": \"51279\",\n    \"description\": \"a woman with a hat and red lipstick is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerwi2g6db1stn2h6o1_500\",\n    \"question\": \"what walked down the hall wearing a teddy bear costume?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28327\",\n    \"key\": \"36811\",\n    \"description\": \"a dog walked down the hall wearing a teddy bear costume.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax6k52cmx1tzzyazo1_400\",\n    \"question\": \"what did the man on the stage have?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3634\",\n    \"key\": \"30489\",\n    \"description\": \"a man on the stage had a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesksmxUsA1rdfljoo1_500\",\n    \"question\": \"what is the vehicle cutting off?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18177\",\n    \"key\": \"76053\",\n    \"description\": \"a vehicle is cutting off another vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhh5j3uCN1tx8mn0o1_400\",\n    \"question\": \"what is driving slowly on the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43929\",\n    \"key\": \"52689\",\n    \"description\": \"a race car is driving slowly on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nah0ioyzCk1trp7kao1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48715\",\n    \"key\": \"10505\",\n    \"description\": \"a person with blue hair and many facial piercings is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfer68qTm1re05qko1_500\",\n    \"question\": \"how many men that are standing face to face staring at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44301\",\n    \"key\": \"76658\",\n    \"description\": \"this two men that are standing face to face staring at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng03s2BcRY1u25ovvo1_400\",\n    \"question\": \"what is driving down the road?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16655\",\n    \"key\": \"63607\",\n    \"description\": \"a yellow vehicle is driving down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_njgn0ykrlJ1rjgw6yo1_250\",\n    \"question\": \"how many men are standing looking at each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13935\",\n    \"key\": \"1670\",\n    \"description\": \"three men are standing looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngl4hqE3rl1u26o5vo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33769\",\n    \"key\": \"98319\",\n    \"description\": \"a woman with red hair is looking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_naftam1wOQ1tui2odo1_250\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2984\",\n    \"key\": \"43864\",\n    \"description\": \"a man wearing gray pants and a blue shirt is performing some street dance moves.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs6h9GZNT1rerh68o1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40495\",\n    \"key\": \"9178\",\n    \"description\": \"a light brown dog with blue eyes is jumping up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr8dmb0LK1upu5g5o1_250\",\n    \"question\": \"how many people are rubbing each other 's hair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7641\",\n    \"key\": \"7596\",\n    \"description\": \"two people are rubbing each other 's hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwl7ilxkz1tdmimho1_500\",\n    \"question\": \"how many guys is it matching their hand sizes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38930\",\n    \"key\": \"67810\",\n    \"description\": \"it is two guys matching their hand sizes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfih1nAC1B1s71nvbo1_400\",\n    \"question\": \"what are racing through the road with large snowbanks?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25610\",\n    \"key\": \"35092\",\n    \"description\": \"cars are racing through a road with large snowbanks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnuwzzYVM21up8dpto1_400\",\n    \"question\": \"how many girls are walking down the street together carrying bags?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1819\",\n    \"key\": \"77188\",\n    \"description\": \"two girls are walking down the street together carrying bags.\"\n  },\n  {\n    \"video_name\": \"tumblr_nipn2lx2R71slj978o1_250\",\n    \"question\": \"how many boys is bouncing on a trampoline and one jumps high and gets caught in a basketball hoop?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37269\",\n    \"key\": \"41152\",\n    \"description\": \"three boys bouncing on a trampoline and one jumps high and gets caught in a basketball hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfij52cXeF1tx3acho1_250\",\n    \"question\": \"what is the guy with short black hair,\",\n    \"answer\": \"wearing and speaking ? necklace\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50812\",\n    \"key\": \"18034\",\n    \"description\": \"a guy with short black hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyei2DN1y1tm6n6po1_500\",\n    \"question\": \"how many women,\",\n    \"answer\": \"one is dressed funny , look at each other ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31560\",\n    \"key\": \"86735\",\n    \"description\": \"two women,\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0odbifZp1tihaueo1_250\",\n    \"question\": \"what are fighting in the room?\",\n    \"answer\": \"mice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44405\",\n    \"key\": \"18445\",\n    \"description\": \"two mice are fighting in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9665a9Aki1tggkgso1_500\",\n    \"question\": \"what did the man with long hair strum?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31366\",\n    \"key\": \"47871\",\n    \"description\": \"a man with long hair strummed his guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabnd0SUAv1tjbxaso1_400\",\n    \"question\": \"how many girls start beating another girl on the ground?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19898\",\n    \"key\": \"28885\",\n    \"description\": \"two girls start beating another girl on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvzkl77wl1rhowemo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31955\",\n    \"key\": \"91839\",\n    \"description\": \"a man wearing a gray jacket with gray hair is walking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauh2woNK61tj7htno1_250\",\n    \"question\": \"how many men push down the boy and beat him up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31916\",\n    \"key\": \"3688\",\n    \"description\": \"two men push down a boy and beat him up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrh3wftNBE1qj1p4xo1_500\",\n    \"question\": \"what is the lady singing and wearing?\",\n    \"answer\": \"clothing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34600\",\n    \"key\": \"26881\",\n    \"description\": \"a lady is singing and wearing glamorous clothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r3cdtvRU1rpnz3wo1_400\",\n    \"question\": \"how many women are doing fitness and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19390\",\n    \"key\": \"37812\",\n    \"description\": \"two women are doing fitness and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhik441u31r38b11o1_400\",\n    \"question\": \"what is puffing up on the flat top grille?\",\n    \"answer\": \"bread\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31710\",\n    \"key\": \"74368\",\n    \"description\": \"a naan bread is puffing up on a flat top grille.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq729bCOF1rj7btco1_400\",\n    \"question\": \"how many men is throwing ice water another man?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48917\",\n    \"key\": \"28208\",\n    \"description\": \"Two men is throwing ice water another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_npih58668V1unyhx2o1_400\",\n    \"question\": \"what is hitting and stopped?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13724\",\n    \"key\": \"78353\",\n    \"description\": \"a racing car is hitting and stopped.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezd8smQVJ1tmefd5o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43117\",\n    \"key\": \"252\",\n    \"description\": \"a man in a blue shirt is twirling an umbrella.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97vm7E6Lv1tq78elo1_400\",\n    \"question\": \"how many men are having passionate moment on the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14843\",\n    \"key\": \"26374\",\n    \"description\": \"two men are having passionate moment on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4x9lSIXA1u2d9ago1_400\",\n    \"question\": \"how many girls does this show with one attempting to interest the other in a gossip?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52832\",\n    \"key\": \"20625\",\n    \"description\": \"this shows two girls with one attempting to interest the other in a gossip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmep7aP37Y1ty7mjvo1_400\",\n    \"question\": \"what is the handsome young man positioning?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38510\",\n    \"key\": \"96832\",\n    \"description\": \"a handsome young man is positioning a glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuw5ruVDR1unixz7o1_400\",\n    \"question\": \"where is the sloth sitting and he turns and stares.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19634\",\n    \"key\": \"40086\",\n    \"description\": \"a sloth is sitting in a hanging chair and he turns and stares.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauvryxIRR1rpvamzo1_250\",\n    \"question\": \"what are exploding over water at night?\",\n    \"answer\": \"fireworks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA112\",\n    \"key\": \"1313\",\n    \"description\": \"the fireworks are exploding over water at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0bwgoe3C1rb1s2po2_500\",\n    \"question\": \"what does the woman hold into a crowd then touches her hair?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43081\",\n    \"key\": \"100598\",\n    \"description\": \"a woman holds a microphone into a crowd then touches her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9f1hcMqsn1snp73jo1_500\",\n    \"question\": \"how many men is wearing sunglasses are fooling around in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50744\",\n    \"key\": \"45318\",\n    \"description\": \"two men wearing sunglasses are fooling around in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na072o293v1tzs6b2o1_500\",\n    \"question\": \"how many people are looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42359\",\n    \"key\": \"92883\",\n    \"description\": \"two people are looking at each other and one of them starts smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2uo2WwTO1sbnqs8o1_250\",\n    \"question\": \"what gets the man in the mood to dance in front of a crowd?\",\n    \"answer\": \"mascot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36465\",\n    \"key\": \"5833\",\n    \"description\": \"a banana mascot gets a man in the mood to dance in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhb5hnz0qA1s0o2flo1_400\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31232\",\n    \"key\": \"75238\",\n    \"description\": \"a man wearing sunglasses and a white vest is gesturing with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wqqqryRv1tqskljo1_400\",\n    \"question\": \"what is the color of the shoes?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33381\",\n    \"key\": \"19717\",\n    \"description\": \"a very cute girl with yellow shoes is twisting her body and doing movements.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb89ryBmeP1rf6ax4o1_400\",\n    \"question\": \"how many people are in the room and pretend to play guitars?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30604\",\n    \"key\": \"36254\",\n    \"description\": \"three people are in a room and pretend to play guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1g2pJnfJ1sk96t7o1_400\",\n    \"question\": \"what does an extreme turn in front of a semi-truck?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49311\",\n    \"key\": \"8106\",\n    \"description\": \"A car does an extreme turn in front of a semi-truck.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng577nfkTT1tsxh57o1_400\",\n    \"question\": \"where is the man squirming around and stretching.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44264\",\n    \"key\": \"12109\",\n    \"description\": \"a man is squirming around and stretching in his chair before or after a game.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngiqj7Yelt1qfqktro1_400\",\n    \"question\": \"what is going around the track and starts to spin out?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9683\",\n    \"key\": \"60770\",\n    \"description\": \"a car is going around a track and starts to spin out.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmjkeXNal1u060u3o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49393\",\n    \"key\": \"100357\",\n    \"description\": \"a woman with black hair is dancing around and waving her arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcgxcAnLa1qc6y5wo1_400\",\n    \"question\": \"where does the man play air guitar and dances.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7678\",\n    \"key\": \"33510\",\n    \"description\": \"a man plays air guitar and dances in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_mr11isrNGe1say5iqo1_500\",\n    \"question\": \"where does the couple cuddle and pull face.\",\n    \"answer\": \"? booth\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA194\",\n    \"key\": \"63272\",\n    \"description\": \"a couple cuddle and pull faces in a photo booth.\"\n  },\n  {\n    \"video_name\": \"tumblr_netkc7CJ961tdur3io1_400\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43004\",\n    \"key\": \"55704\",\n    \"description\": \"a man is leaning up against a white wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvuy6gtIQ1u9fb2po1_250\",\n    \"question\": \"what puppy is making some noise?\",\n    \"answer\": \"wolf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12016\",\n    \"key\": \"36656\",\n    \"description\": \"a wolf puppy is making some noise.\"\n  },\n  {\n    \"video_name\": \"tumblr_namu4oOKvg1slmgm0o1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17422\",\n    \"key\": \"26123\",\n    \"description\": \"a black guy is removing his cap and walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmhiM9bh1u0sihjo1_250\",\n    \"question\": \"where are the couple of boys dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26245\",\n    \"key\": \"5720\",\n    \"description\": \"a couple of boys are dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfp6gnmJs1tmm9fro1_500\",\n    \"question\": \"how many woman pretend to hit something or someone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37113\",\n    \"key\": \"99644\",\n    \"description\": \"two woman pretend to hit something or someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nre0r7j8Cd1r9n1lyo1_400\",\n    \"question\": \"how many boys are singing while playing electrical guitars?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4592\",\n    \"key\": \"16346\",\n    \"description\": \"three boys are singing while playing electrical guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq62qusQ2Z1tk2ngvo1_500\",\n    \"question\": \"what is pawing at the large fish in a shallow bathtub?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49221\",\n    \"key\": \"69624\",\n    \"description\": \"a cat is pawing at a large fish in a shallow bathtub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6ypurpto1sug4g8o1_500\",\n    \"question\": \"what do the man and a woman ride through the snow?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4587\",\n    \"key\": \"97696\",\n    \"description\": \"a man and a woman ride a horse through the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nogenkTJ0O1uqjypdo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43908\",\n    \"key\": \"9973\",\n    \"description\": \"a beautiful man with long hair and black shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq4d7kPtlq1unyhx2o1_400\",\n    \"question\": \"what is shooting sparks behind them on the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA729\",\n    \"key\": \"76971\",\n    \"description\": \"a race car is shooting sparks behind them on the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr394z8H8A1uzsb7xo1_500\",\n    \"question\": \"what is being brushed and likes it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10337\",\n    \"key\": \"69717\",\n    \"description\": \"a large cat is being brushed and likes it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ak83GJ1A1si00qoo1_250\",\n    \"question\": \"where is the dog jumping around.\",\n    \"answer\": \"? foyer\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49925\",\n    \"key\": \"24051\",\n    \"description\": \"a dog is jumping around excitedly in a foyer.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni01txhXte1tx8mn0o1_400\",\n    \"question\": \"what is driving and turning around?\",\n    \"answer\": \"driver\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33546\",\n    \"key\": \"79270\",\n    \"description\": \"a race car driver is driving and turning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng642mdNwX1qezt9uo1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37516\",\n    \"key\": \"19353\",\n    \"description\": \"the black cat pushed the object off the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7u0qCxig1slj978o1_400\",\n    \"question\": \"what does the barrel roll while jumping over a ramp?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9549\",\n    \"key\": \"101240\",\n    \"description\": \"a car does a barrel roll while jumping over a ramp.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4ezdlkcv1u2nvc4o1_500\",\n    \"question\": \"how many people meet outside in winter to hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3230\",\n    \"key\": \"62482\",\n    \"description\": \"two people meet outside in winter to hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_na93v8P17F1rnq510o1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3313\",\n    \"key\": \"50534\",\n    \"description\": \"a man wearing a black tank top is spinning his necklace around his neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_nonm875Gqs1uw60sro1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45963\",\n    \"key\": \"10403\",\n    \"description\": \"the woman in the yellow shirt is singing and moving her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne68rePU2I1tm0es2o1_400\",\n    \"question\": \"how many boys are looking ahead and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39621\",\n    \"key\": \"17195\",\n    \"description\": \"the two boys are looking ahead and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8z1jp62zj1s5oe7xo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA222\",\n    \"key\": \"32764\",\n    \"description\": \"the girl with the long dark hair and white shirt is having a fit.\"\n  },\n  {\n    \"video_name\": \"tumblr_naug822mv91tgbziwo1_400\",\n    \"question\": \"what jumps on the chair and runs down a hallway?\",\n    \"answer\": \"chimp\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19795\",\n    \"key\": \"96877\",\n    \"description\": \"a chimp jumps on a chair and runs down a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2anni0vZ1uup4c1o1_400\",\n    \"question\": \"how many guys with microphones are laughing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36737\",\n    \"key\": \"77629\",\n    \"description\": \"two guys with microphones are laughing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9zdtgglQ1stmsx9o1_500\",\n    \"question\": \"how many boys is this making funny faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24292\",\n    \"key\": \"101014\",\n    \"description\": \"this is two boys making funny faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfirt6V8xT1qea5cqo1_400\",\n    \"question\": \"what is raised and the flame is lit at one end of the cylinder?\",\n    \"answer\": \"cylinder\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27884\",\n    \"key\": \"64384\",\n    \"description\": \"a long cylinder is raised and a flame is lit at one end of the cylinder.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vebwp6YB1sm9f7mo1_r2_400\",\n    \"question\": \"what curls up in the corner,\",\n    \"answer\": \"on top of his food bowl ? dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49248\",\n    \"key\": \"64664\",\n    \"description\": \"a dog curls up in a corner,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9pfyci2Hk1tx8mn0o1_400\",\n    \"question\": \"what crashes going around the turn and flips multiple times?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15432\",\n    \"key\": \"63217\",\n    \"description\": \"a vehicle crashes going around a turn and flips multiple times.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndioe7rlJD1u15wpko1_250\",\n    \"question\": \"how many people are sitting staring at each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA565\",\n    \"key\": \"37298\",\n    \"description\": \"three people are sitting staring at each other but one is blurred out.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fh74CL8P1trm2z1o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25398\",\n    \"key\": \"100154\",\n    \"description\": \"the guy with the red plaid shirt and black hat is waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw4erpndi1te0omro1_400\",\n    \"question\": \"what sniffs and then turns and runs away?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40539\",\n    \"key\": \"88275\",\n    \"description\": \"a brown rabbit sniffs and then turns and runs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_noal004K181rk6mu2o1_250\",\n    \"question\": \"where do two team mascots give a high five while another worker shakes his head.\",\n    \"answer\": \"? office\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31870\",\n    \"key\": \"80772\",\n    \"description\": \"two team mascots give a high five in an office while another worker shakes his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad8wtQS6K1qbz70so1_500\",\n    \"question\": \"how many girls dance then one moves forward?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36901\",\n    \"key\": \"48702\",\n    \"description\": \"four girls dance then one moves forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrat8oPnCZ1scvbu9o1_400\",\n    \"question\": \"what does the woman fall off?\",\n    \"answer\": \"treadmill\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43852\",\n    \"key\": \"35141\",\n    \"description\": \"a woman falls off a fast moving treadmill.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6lt7ZqzM1qm0hcwo1_250\",\n    \"question\": \"what is the guy laughing and holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10568\",\n    \"key\": \"6231\",\n    \"description\": \"a guy is laughing and holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngoujoc3wq1t2gwrqo1_400\",\n    \"question\": \"what is the person wearing?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18667\",\n    \"key\": \"76940\",\n    \"description\": \"a person wearing a swimming cap taking part in a swim.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhomv0Y6FK1sqlieso1_400\",\n    \"question\": \"what is the man throwing around a garage?\",\n    \"answer\": \"tire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50710\",\n    \"key\": \"38893\",\n    \"description\": \"a man is throwing a tire around a garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzzb3mACM1tg4filo1_250\",\n    \"question\": \"what is the color of the necklace?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA136\",\n    \"key\": \"1715\",\n    \"description\": \"a girl wearing a black necklace is winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2mhm38YD1qlsp57o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15552\",\n    \"key\": \"2508\",\n    \"description\": \"a black car 's wheel is turning.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfiltKZa81tqps2xo1_400\",\n    \"question\": \"what is the color of the shoes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47827\",\n    \"key\": \"69013\",\n    \"description\": \"a person with white shoes is almost grabbing a bold.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc216vPG4X1tdjuqvo1_400\",\n    \"question\": \"what stood up looking at something?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29651\",\n    \"key\": \"30878\",\n    \"description\": \"a cat stood up looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsujftSr51qhutsto1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26757\",\n    \"key\": \"30862\",\n    \"description\": \"a man in a black shirt is looking down and then he looks up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbatooeAde1tx8mn0o1_400\",\n    \"question\": \"how many car spins off the track?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27071\",\n    \"key\": \"52734\",\n    \"description\": \"racing cars are racing around a track and one car spins off the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd86nwgWeM1t2x9o3o1_500\",\n    \"question\": \"what does there 's skidding on a corner on a race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49894\",\n    \"key\": \"54725\",\n    \"description\": \"there 's a race car skidding on a corner on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh1tlrBMoR1td8ijso1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28838\",\n    \"key\": \"54413\",\n    \"description\": \"a man in a long green jacket is playing with a stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkpyvkKEyJ1u8vn4no1_500\",\n    \"question\": \"what is the color of the taps?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25235\",\n    \"key\": \"56768\",\n    \"description\": \"a girl with brown hair taps two fingers against her face,\"\n  },\n  {\n    \"video_name\": \"tumblr_nr136wYNPh1urkl22o1_500\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1606\",\n    \"key\": \"67397\",\n    \"description\": \"a man wearing a red shirts winks his eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ek7fl0sD1tr4l02o1_250\",\n    \"question\": \"what does the woman in a dress swing?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35800\",\n    \"key\": \"65325\",\n    \"description\": \"a woman in a dress swings a long stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq8z49bTR1sk0i2mo1_250\",\n    \"question\": \"how many men are wrestling with each other in a ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50132\",\n    \"key\": \"60385\",\n    \"description\": \"two men are wrestling with each other in a ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nau4x9Tl9h1sk0i2mo1_400\",\n    \"question\": \"how many women are free wrestling on the ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25404\",\n    \"key\": \"28032\",\n    \"description\": \"two women are free wrestling on the ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0osdDhc41roq12ko1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40576\",\n    \"key\": \"20949\",\n    \"description\": \"a girl with brown hair is making a funny lip.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8y4n5b77l1txzv32o1_400\",\n    \"question\": \"how many girls are laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29297\",\n    \"key\": \"32326\",\n    \"description\": \"two girls are laughing and one sticks out her tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb89ryBmeP1rf6ax4o1_400\",\n    \"question\": \"how many young men are pulling faces and laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29324\",\n    \"key\": \"36254\",\n    \"description\": \"three young men are pulling faces and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhp1rdIHcP1s6zpepo1_250\",\n    \"question\": \"what rests with the litter of puppies and their mother?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19259\",\n    \"key\": \"27115\",\n    \"description\": \"a cat rests with a litter of puppies and their mother.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9l9ewvnn1rm95kgo1_400\",\n    \"question\": \"what is trying to dig the hole in the floor?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33878\",\n    \"key\": \"42806\",\n    \"description\": \"a puppy is trying to dig a hole in the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk96eyo6731th7lvro1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37899\",\n    \"key\": \"48403\",\n    \"description\": \"a man in black is spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkc48iNxXB1uodfiso1_500\",\n    \"question\": \"what are two people talking and one is holding in front of their face?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15133\",\n    \"key\": \"72935\",\n    \"description\": \"two people are talking and one is holding a phone in front of their face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94fi690GZ1twfcheo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50964\",\n    \"key\": \"60282\",\n    \"description\": \"two men with black hair are playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6q01txXx1tgli1no1_400\",\n    \"question\": \"where is the girl wearing a red colored top,\",\n    \"answer\": \"is laying and opening her eyes . ? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39071\",\n    \"key\": \"64276\",\n    \"description\": \"a girl wearing a red colored top,\"\n  },\n  {\n    \"video_name\": \"tumblr_nay0kzAbkR1twcgnlo1_400\",\n    \"question\": \"what are three people climbing and two of them are wearing hat?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27487\",\n    \"key\": \"27538\",\n    \"description\": \"three people are climbing stairs and two of them are wearing hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfrv4gBTS1soxo1wo1_400\",\n    \"question\": \"what is the young man playing with band mates behind him?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38862\",\n    \"key\": \"24863\",\n    \"description\": \"a young man is playing the drums with band mates behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgxa35Hin1tztcuxo1_500\",\n    \"question\": \"how many people sat smiling at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8629\",\n    \"key\": \"101318\",\n    \"description\": \"two people sat smiling at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9soht3hXu1ty4429o1_500\",\n    \"question\": \"how many guys are making faces to another guy recording them?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37713\",\n    \"key\": \"91209\",\n    \"description\": \"four guys are making faces to another guy recording them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkyzg1KPS1tinozao1_400\",\n    \"question\": \"how many sumo wrestlers are competing in the tournament?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38268\",\n    \"key\": \"67090\",\n    \"description\": \"two sumo wrestlers are competing in a tournament.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6u1pS7KM1r0v1ajo4_250\",\n    \"question\": \"what is the man in a black vest pushing?\",\n    \"answer\": \"bar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4234\",\n    \"key\": \"9961\",\n    \"description\": \"a man in a black vest is pushing a bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc46avuPqy1sh3qtho1_500\",\n    \"question\": \"where did two lovers lay.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29906\",\n    \"key\": \"72294\",\n    \"description\": \"two lovers lay in a bed together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zp4hIxxe1sncaa3o1_400\",\n    \"question\": \"what does someone drive on a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27871\",\n    \"key\": \"56451\",\n    \"description\": \"someone drives a green race car on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoga4fMRx1r9ka6jo1_500\",\n    \"question\": \"what are two men wearing blue sweatshirts are using?\",\n    \"answer\": \"spoons\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5354\",\n    \"key\": \"90422\",\n    \"description\": \"two men wearing blue sweatshirts are using plastic spoons.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr4iolbn41rmme2wo1_400\",\n    \"question\": \"where is the woman pretending to feed her dog.\",\n    \"answer\": \"? lab\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34389\",\n    \"key\": \"28978\",\n    \"description\": \"a woman is pretending to feed her dog in her lab.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxrngAe4S1rm7wvmo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46497\",\n    \"key\": \"101414\",\n    \"description\": \"a man with green hair takes off his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9paf34bUZ1s5yymto1_400\",\n    \"question\": \"how many guys are laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49988\",\n    \"key\": \"58609\",\n    \"description\": \"two guys are laughing and one grabs a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagai2KcJW1slrp89o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41819\",\n    \"key\": \"67973\",\n    \"description\": \"a guy with short brown hair wears maroon opens his eyes as he sings into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhfwk7nTt1u4pmmpo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27046\",\n    \"key\": \"24285\",\n    \"description\": \"a mask man in black is showing his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngplu9HNKp1rn2ycso2_1280\",\n    \"question\": \"what is the person doing on top of changing shapes?\",\n    \"answer\": \"steps\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25980\",\n    \"key\": \"99492\",\n    \"description\": \"a person is doing dance steps on top of changing shapes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ip3wcTrx1t8bzkuo1_500\",\n    \"question\": \"what is the man wearing and playing music?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3163\",\n    \"key\": \"26309\",\n    \"description\": \"a man is wearing headphones and playing music.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbn9hl9w4a1t7hjz2o1_250\",\n    \"question\": \"where is the man running and then he fall.\",\n    \"answer\": \"? machine\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18501\",\n    \"key\": \"2117\",\n    \"description\": \"a man is running in a walking machine and then he fall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevsarqG0r1rykb0vo1_400\",\n    \"question\": \"what is someone kicking?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41090\",\n    \"key\": \"50084\",\n    \"description\": \"someone is kicking a soccer ball keeping it off the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7ll5MJ3H1sm7thgo1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8843\",\n    \"key\": \"50274\",\n    \"description\": \"a man places a microphone in front of a red haired woman who grimaces.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pom6qgCR1tgl4z1o1_400\",\n    \"question\": \"where are two brown dogs revisiting,\",\n    \"answer\": \"one is . ? basket\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10611\",\n    \"key\": \"75583\",\n    \"description\": \"two brown dogs revisiting,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk75mmC9z31uoz0rqo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24425\",\n    \"key\": \"27246\",\n    \"description\": \"a little girl wearing a green tank top nods her head and looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyo0wgT9U1sulpwxo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15003\",\n    \"key\": \"45796\",\n    \"description\": \"a man with black hair and a mustache is staring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfeg5jmhyd1t7hjz2o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20648\",\n    \"key\": \"27085\",\n    \"description\": \"a man in a blue hat plays a finger game with a screwdriver.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndd1gxpTVz1u106yvo1_250\",\n    \"question\": \"what whistles and turns his head slightly?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40048\",\n    \"key\": \"11801\",\n    \"description\": \"A man wearing makeup whistles and turns his head slightly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6ja06aQx1snwydqo1_400\",\n    \"question\": \"how many people are laying?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39421\",\n    \"key\": \"28917\",\n    \"description\": \"two people are laying and one is sitting and moving around.\"\n  },\n  {\n    \"video_name\": \"tumblr_npuxvmFUL31uqie69o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38846\",\n    \"key\": \"16361\",\n    \"description\": \"a black man pulls a face and then smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksdyhXtpu1rhl4f0o1_250\",\n    \"question\": \"what are climbing around in the tank together?\",\n    \"answer\": \"frogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25276\",\n    \"key\": \"22832\",\n    \"description\": \"three frogs are climbing around in a tank together.\"\n  },\n  {\n    \"video_name\": \"tumblr_noc1iqYf6S1rma101o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35640\",\n    \"key\": \"43121\",\n    \"description\": \"a boy in a black shirt is reading from a script.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96x96RDMq1tp3pcko1_250\",\n    \"question\": \"what is the red head in the photo wearing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39136\",\n    \"key\": \"14441\",\n    \"description\": \"the red head in the photo is wearing a blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_narl5ou2XK1tecyy7o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35922\",\n    \"key\": \"44147\",\n    \"description\": \"a man with brown jacket is walking and moving his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0ykvjZDz1s74pxto1_400\",\n    \"question\": \"how many pop stars are signing off after the show?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6688\",\n    \"key\": \"74274\",\n    \"description\": \"two pop stars are signing off after the show.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxzym9Khf1t0ojyvo1_500\",\n    \"question\": \"how many people is wearing a headpiece are dancing together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25800\",\n    \"key\": \"95020\",\n    \"description\": \"three people wearing a headpiece are dancing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerag5bIMv1sk0i2mo1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40572\",\n    \"key\": \"30435\",\n    \"description\": \"a person wearing a stringy yellow outfit,\"\n  },\n  {\n    \"video_name\": \"tumblr_nklkbe4KgW1tfs8guo1_500\",\n    \"question\": \"how many guys point to the gun and smile while another guy stands in front of them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2273\",\n    \"key\": \"56600\",\n    \"description\": \"two guys point to a gun and smile while another guy stands in front of them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnokjvV7Wq1uuvmpjo1_250\",\n    \"question\": \"what runs the kind of trailers that park?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA983\",\n    \"key\": \"50472\",\n    \"description\": \"the car runs a kind of trailers that park.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqj4fhbBi1unzgfso1_500\",\n    \"question\": \"how many boy holds up the candy bar and opens mouth?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7149\",\n    \"key\": \"87645\",\n    \"description\": \"one boy holds up a candy bar and opens mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5rv7FV7c1slj978o1_400\",\n    \"question\": \"what is the color of the jumps?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3010\",\n    \"key\": \"69932\",\n    \"description\": \"a man dressed in white jumps over a bull in an arena.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxoxw7LKR1r784vko1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33380\",\n    \"key\": \"61282\",\n    \"description\": \"a man with white hair is bending over and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9pfyci2Hk1tx8mn0o1_400\",\n    \"question\": \"what is flipping over and over on the road?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13594\",\n    \"key\": \"63217\",\n    \"description\": \"a vehicle is flipping over and over on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3x8y1KwP1qla0yao1_500\",\n    \"question\": \"how many people are stood next to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33281\",\n    \"key\": \"17928\",\n    \"description\": \"two people are stood next to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_mrs83nSzOQ1stv392o1_500\",\n    \"question\": \"what is the color of the bow?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48825\",\n    \"key\": \"86752\",\n    \"description\": \"a young woman wearing a large red bow is touching her ear as she speaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepnu3YNTG1u2qkvco1_250\",\n    \"question\": \"what is the man in head phone smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3334\",\n    \"key\": \"72472\",\n    \"description\": \"a man in head phone is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh33r6GpNQ1sm86hzo1_400\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17248\",\n    \"key\": \"31915\",\n    \"description\": \"a woman is sitting on a red chair and posing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwbkvxn0I1qji9umo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28317\",\n    \"key\": \"83993\",\n    \"description\": \"the man with the black hair is brushing his teeth with a yellow tooth brush.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngjrqkZSMs1r2ersdo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47287\",\n    \"key\": \"21249\",\n    \"description\": \"a black haired woman smiles,\"\n  },\n  {\n    \"video_name\": \"tumblr_npftchiLZC1tvkzc2o1_250\",\n    \"question\": \"what is dancing in the living room?\",\n    \"answer\": \"wine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34969\",\n    \"key\": \"47140\",\n    \"description\": \"a woman holding wine is dancing in a living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xhhpcZOi1ribqy3o1_1280\",\n    \"question\": \"how many guys banged their heads in the car?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12411\",\n    \"key\": \"33927\",\n    \"description\": \"four guys banged their heads in the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrcbnhiHH1u7yulho1_400\",\n    \"question\": \"what does the woman hold,\",\n    \"answer\": \"two men sit on a sofa and a man dances along a red carpet ? rectangle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30882\",\n    \"key\": \"95428\",\n    \"description\": \"a woman holds a plastic rectangle,\"\n  },\n  {\n    \"video_name\": \"tumblr_noevlqbJ4f1uts85bo1_500\",\n    \"question\": \"how many people are dancing ballet together on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45549\",\n    \"key\": \"50910\",\n    \"description\": \"two people are dancing ballet together on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxrsbp13F1rfyy6oo1_250\",\n    \"question\": \"what is the cat annoyingly bothering?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33238\",\n    \"key\": \"9914\",\n    \"description\": \"a cat is annoyingly bothering a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjl83540H1sfr1gso1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4993\",\n    \"key\": \"90394\",\n    \"description\": \"the lady wearing the black dress is sitting on a small red chair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhklv0Td991reseiyo1_1280\",\n    \"question\": \"what is skidding around the corner of a snowy road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA487\",\n    \"key\": \"89497\",\n    \"description\": \"a black car is skidding around the corner of a snowy road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqokih6riY1uxohh1o1_540\",\n    \"question\": \"how many young males are smiling?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15846\",\n    \"key\": \"91616\",\n    \"description\": \"three young males are smiling and laughing together,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc66lyqL3m1qek177o1_250\",\n    \"question\": \"how many young man is kissing another young man?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42369\",\n    \"key\": \"51417\",\n    \"description\": \"one young man is kissing another young man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngj5js922h1qezxdbo1_250\",\n    \"question\": \"what is being poured over the bowl of ice cream?\",\n    \"answer\": \"sauce\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37246\",\n    \"key\": \"23062\",\n    \"description\": \"chocolate sauce is being poured over a bowl of ice cream.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwrume8cm1un7etzo1_400\",\n    \"question\": \"what is the half naked man with blonde hair playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1375\",\n    \"key\": \"67999\",\n    \"description\": \"a half naked man with blonde hair is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1rovQKEs1tomzioo1_250\",\n    \"question\": \"how many men are embracing each other happily?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12738\",\n    \"key\": \"2039\",\n    \"description\": \"two men are embracing each other happily.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb10lnTtO01tjhcu6o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15840\",\n    \"key\": \"71855\",\n    \"description\": \"a girl wearing a white shirt lifts her leg onto a bench.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncoxe7Pzl11t0ojyvo1_250\",\n    \"question\": \"how many people in white shirts are walking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2072\",\n    \"key\": \"6571\",\n    \"description\": \"two people in white shirts are walking and one is waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfup8IJsd1t95h1uo1_400\",\n    \"question\": \"what is the cat sitting on a stool is using?\",\n    \"answer\": \"paws\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9898\",\n    \"key\": \"31768\",\n    \"description\": \"a cat sitting on a stool is using its paws to attack paper in a printer tray.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafggj6YFG1sinpl8o1_400\",\n    \"question\": \"how many people are sitting down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16653\",\n    \"key\": \"28298\",\n    \"description\": \"two people are sitting down and someone else enters the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwwzp6mxJ1qltbjko1_400\",\n    \"question\": \"what wing is flying over the clouds?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1835\",\n    \"key\": \"77259\",\n    \"description\": \"a plane 's wing is flying over the clouds.\"\n  },\n  {\n    \"video_name\": \"tumblr_nap0e8yhmD1scq7eko1_250\",\n    \"question\": \"what rolls off of its dog bed and lands on its back?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11455\",\n    \"key\": \"47281\",\n    \"description\": \"a puppy rolls off of its dog bed and lands on its back.\"\n  },\n  {\n    \"video_name\": \"tumblr_npyepxrvGU1uyrbico1_400\",\n    \"question\": \"what is the color of the curtain?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1635\",\n    \"key\": \"53848\",\n    \"description\": \"a man and woman in front of a red curtain are smiling and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h415jCrZ1tq2eeqo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52425\",\n    \"key\": \"63553\",\n    \"description\": \"a boy with a white shirt tries to walk backwards but fails.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqd3r08hF1tbdxy1o1_400\",\n    \"question\": \"what is the man leaning back and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20160\",\n    \"key\": \"29884\",\n    \"description\": \"a man is leaning back and playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmvvzXa4P1sxqls6o1_400\",\n    \"question\": \"how many men are kissing in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19373\",\n    \"key\": \"23669\",\n    \"description\": \"two men are kissing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqr8fvbChQ1u0ql9oo1_500\",\n    \"question\": \"how many women are talking in the house?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46331\",\n    \"key\": \"58093\",\n    \"description\": \"two women are talking in a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcx6rpdDS1tdjk1vo1_500\",\n    \"question\": \"what is the man standing up,\",\n    \"answer\": \"and he is playing ? guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31739\",\n    \"key\": \"83773\",\n    \"description\": \"a man is standing up,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndygc2VkxC1ttxdrpo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18339\",\n    \"key\": \"47791\",\n    \"description\": \"a woman with long black hair is laughing and joking.\"\n  },\n  {\n    \"video_name\": \"tumblr_new21rT4rK1t0w9oqo1_400\",\n    \"question\": \"how many men are listening to someone as they stand together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1888\",\n    \"key\": \"31464\",\n    \"description\": \"three men are listening to someone as they stand together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmz2tmDeda1sddro0o1_250\",\n    \"question\": \"what is the color of the carts?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31318\",\n    \"key\": \"24985\",\n    \"description\": \"two men watch a truck spill out a bunch of red carts.\"\n  },\n  {\n    \"video_name\": \"tumblr_namkzwQCp11qb8t93o1_400\",\n    \"question\": \"where are two people exercising.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43055\",\n    \"key\": \"58603\",\n    \"description\": \"two people are exercising together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6hsntJrr1s3f23uo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33195\",\n    \"key\": \"1683\",\n    \"description\": \"a red hat falls off of a man while he is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nprpm1WJLb1uxtn9jo1_400\",\n    \"question\": \"what is diving into the snow?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4497\",\n    \"key\": \"75011\",\n    \"description\": \"a fox is diving into the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh29z0v9vk1sico5po1_250\",\n    \"question\": \"how many men are standing next to each other and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49242\",\n    \"key\": \"39671\",\n    \"description\": \"two men are standing next to each other and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhszflfDwb1u1rggjo1_400\",\n    \"question\": \"what is the person driving custom?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27595\",\n    \"key\": \"26159\",\n    \"description\": \"a person is driving a custom car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbn45jzc2V1tlc96ro1_400\",\n    \"question\": \"what is falling down while sitting?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24149\",\n    \"key\": \"25609\",\n    \"description\": \"a cat is falling down while sitting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7bf9JXRA1tiwyqlo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52725\",\n    \"key\": \"10543\",\n    \"description\": \"a man with long brown hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncjgm6KYr81tl6y18o1_400\",\n    \"question\": \"how many girls arguing and one goes after that?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34247\",\n    \"key\": \"54682\",\n    \"description\": \"two girls arguing and one goes after that.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tn1eXLPK1rodd5bo1_400\",\n    \"question\": \"how many guys are listening to music together with headphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16103\",\n    \"key\": \"33070\",\n    \"description\": \"two guys are listening to music together with headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0a8cwZvc1u5ep4ro1_500\",\n    \"question\": \"how many men sit side by side and talk to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27952\",\n    \"key\": \"61245\",\n    \"description\": \"two men sit side by side and talk to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqkoicsBL1qhw2j5o1_500\",\n    \"question\": \"where is the woman waving her hair.\",\n    \"answer\": \"? booth\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28399\",\n    \"key\": \"50686\",\n    \"description\": \"a woman is waving her hair in a telephone booth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfbih9DeO1slwrsuo1_400\",\n    \"question\": \"what is drinking from the toilet and begins to back away?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30048\",\n    \"key\": \"15753\",\n    \"description\": \"a dog is drinking from a toilet and begins to back away.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9bk7YdxS1swtjjuo1_500\",\n    \"question\": \"what is being driven down the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25239\",\n    \"key\": \"54836\",\n    \"description\": \"a red car is being driven down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn8wvwPjD1s6zpepo1_400\",\n    \"question\": \"what still attached to gas pump drives away?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27411\",\n    \"key\": \"45738\",\n    \"description\": \"a car still attached to gas pump drives away.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9t8801hEM1qc5bc7o1_500\",\n    \"question\": \"what are the people riding through the country?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36837\",\n    \"key\": \"74344\",\n    \"description\": \"the people are riding the horse through the country.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk38eaBV6Q1tci3xlo1_400\",\n    \"question\": \"what is the man in a red shirt holding with flames painted on it?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19013\",\n    \"key\": \"59416\",\n    \"description\": \"a man in a red shirt is holding a guitar with flames painted on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr324yZNix1uwd1pzo1_400\",\n    \"question\": \"what was glittering as it swayed back and forth?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26952\",\n    \"key\": \"61014\",\n    \"description\": \"the ball was glittering as it swayed back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndz2blSzVT1tlgy1jo1_400\",\n    \"question\": \"what is the woman wearing and bends over?\",\n    \"answer\": \"costume\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12498\",\n    \"key\": \"67085\",\n    \"description\": \"a woman is wearing a costume and bends over.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxp04rEFk1tjjnlno1_400\",\n    \"question\": \"what is the kitten shaking while sleeping?\",\n    \"answer\": \"paws\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45496\",\n    \"key\": \"71522\",\n    \"description\": \"a kitten is shaking paws while sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dtvaAB1g1t8991mo1_250\",\n    \"question\": \"where does the woman with blond hair sit up.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52269\",\n    \"key\": \"19358\",\n    \"description\": \"a woman with blond hair sits up in bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnxtiHVXh1ti93qgo1_400\",\n    \"question\": \"what is the person with blond hair holding up?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8071\",\n    \"key\": \"32518\",\n    \"description\": \"a person with blond hair is holding up a dart gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmdfo7AD41u4txqeo1_250\",\n    \"question\": \"what walks from the window sill to the door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50444\",\n    \"key\": \"10556\",\n    \"description\": \"a cat walks from a window sill to the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nju4wnnKIq1u904u2o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29759\",\n    \"key\": \"11177\",\n    \"description\": \"a girl wearing a green dress is very excited about something.\"\n  },\n  {\n    \"video_name\": \"tumblr_npclp12iK71rrei7qo1_400\",\n    \"question\": \"what is baseball played plays?\",\n    \"answer\": \"slide\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA921\",\n    \"key\": \"75323\",\n    \"description\": \"baseball is played plays slide to catch a ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf4mxdUpwF1thzoibo1_500\",\n    \"question\": \"what is the guy putting to a document while looking with a glass?\",\n    \"answer\": \"stamp\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22165\",\n    \"key\": \"95513\",\n    \"description\": \"a guy is putting a stamp to a document while looking with a glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_net1unlnyN1sp8qslo1_400\",\n    \"question\": \"what drove through some water and back out?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9558\",\n    \"key\": \"35630\",\n    \"description\": \"a vehicle drove through some water and back out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nduy905vtk1qb7fvmo1_r2_500\",\n    \"question\": \"how many fingers is the man singing into a microphone and holding up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32445\",\n    \"key\": \"99653\",\n    \"description\": \"a man is singing into a microphone and holding up two fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5q7jKFWT1rf50qno1_500\",\n    \"question\": \"how many boys are holding their hands up?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3367\",\n    \"key\": \"98018\",\n    \"description\": \"three boys are holding their hands up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbvfjzxYcR1rxuv7ko1_500\",\n    \"question\": \"where is the woman looking and shaving her face.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38038\",\n    \"key\": \"79586\",\n    \"description\": \"a woman is looking in a mirror and shaving her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngu4rdTvNW1tvsb7yo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18842\",\n    \"key\": \"3763\",\n    \"description\": \"a white man with a black suit is doing a dance step.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhi9v72r5g1se8qb8o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31187\",\n    \"key\": \"81954\",\n    \"description\": \"a guy wearing a white shirt is looking to his left.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0jfqbC7D1tkpta6o1_400\",\n    \"question\": \"what is the man playing with a puppet beside him?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49112\",\n    \"key\": \"90705\",\n    \"description\": \"a man is playing guitar with a puppet beside him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakuv7BiK01ssgyoro1_400\",\n    \"question\": \"what are the few girls shaking?\",\n    \"answer\": \"butts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5681\",\n    \"key\": \"73739\",\n    \"description\": \"a few girls are shaking their butts while a band is playing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw4erpndi1te0omro1_400\",\n    \"question\": \"what is sitting still gets spooked and makes a sudden dash the other way?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40529\",\n    \"key\": \"88275\",\n    \"description\": \"a rabbit sitting still gets spooked and makes a sudden dash the other way.\"\n  },\n  {\n    \"video_name\": \"tumblr_nozefyGyp01unyhx2o1_400\",\n    \"question\": \"what are driving around the race track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44676\",\n    \"key\": \"65310\",\n    \"description\": \"some race cars are driving around a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh22oslt5u1tnlmk9o1_250\",\n    \"question\": \"what is the girl and a boy in a band playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17028\",\n    \"key\": \"51698\",\n    \"description\": \"the girl and a boy in a band is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklek6EsNF1t08g1no1_400\",\n    \"question\": \"how many young men are signing out in the cold?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48357\",\n    \"key\": \"97354\",\n    \"description\": \"Two young men are signing out in the cold.\"\n  },\n  {\n    \"video_name\": \"tumblr_noe0tfP07H1skg0tio1_400\",\n    \"question\": \"how many people run at each other and hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19988\",\n    \"key\": \"96389\",\n    \"description\": \"two people run at each other and hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1aorjpSL1tqzdmxo1_250\",\n    \"question\": \"what is the color of the dances?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18815\",\n    \"key\": \"39772\",\n    \"description\": \"the man dressed in black dances as a storm is raging in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ycxgDgWo1tw9irno1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49921\",\n    \"key\": \"47956\",\n    \"description\": \"a man in black is pretending to slay a man dressed in a dragon costume and they both fall over.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq0fyOyiC1rj38k8o1_400\",\n    \"question\": \"what is the color of the paws?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45860\",\n    \"key\": \"1318\",\n    \"description\": \"a black dog with brown paws,\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8dsnm0vU1ruoae6o1_1280\",\n    \"question\": \"what speeds away as the passenger flashes the peace sign?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48449\",\n    \"key\": \"94851\",\n    \"description\": \"an orange car speeds away as the passenger flashes the peace sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfny96oDYU1sefjuxo2_500\",\n    \"question\": \"how many men in red athletic jerseys embrace one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41716\",\n    \"key\": \"53018\",\n    \"description\": \"two men in red athletic jerseys embrace one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbycrsfId1sggdd3o1_400\",\n    \"question\": \"how many people stand on an over sized pool table?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6815\",\n    \"key\": \"76625\",\n    \"description\": \"two people stand on an over sized pool table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nar3pl2Aky1tbopxvo1_500\",\n    \"question\": \"where does the guy try to get his foot.\",\n    \"answer\": \"? window\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9524\",\n    \"key\": \"71161\",\n    \"description\": \"a guy tries to get his foot in the car window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgg52CJon1t3ypcjo1_400\",\n    \"question\": \"what is the man wearing a baseball cap is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10441\",\n    \"key\": \"30750\",\n    \"description\": \"a man wearing a baseball cap is playing a tiny guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsrf7PNZs1qe2thio1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49011\",\n    \"key\": \"98734\",\n    \"description\": \"a big white horse jumped over a tall wooden fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqgko79h11tk2ngvo1_400\",\n    \"question\": \"what chews on the corn on the cob while a hand attempts to take it away?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51741\",\n    \"key\": \"27447\",\n    \"description\": \"a cat chews on a corn on the cob while a hand attempts to take it away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexxo9P8Co1tibg2uo1_400\",\n    \"question\": \"where are two men hugging each other.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51176\",\n    \"key\": \"34931\",\n    \"description\": \"two men are hugging each other in a messy room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1zg9Bkf41s2wg51o1_400\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"rope\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11273\",\n    \"key\": \"36195\",\n    \"description\": \"a man holding a rope which is attached to a horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvkfeYSGm1r67rvao1_500\",\n    \"question\": \"how many people are sitting behind an object?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8702\",\n    \"key\": \"79497\",\n    \"description\": \"two people are sitting behind an object.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7hlh9kAJ1u3wzc8o1_100\",\n    \"question\": \"what catches the football one-handed and scores a touchdown?\",\n    \"answer\": \"receiver\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6942\",\n    \"key\": \"15149\",\n    \"description\": \"a receiver catches a football one-handed and scores a touchdown.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkfj17IEnK1u1pokno1_250\",\n    \"question\": \"how many young women are twirling around on the beach?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40486\",\n    \"key\": \"53570\",\n    \"description\": \"two young women are twirling around on the beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqcvbmlEcZ1sht3fmo1_250\",\n    \"question\": \"what is cuddling and sleeping next to the dog on the couch?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27089\",\n    \"key\": \"74224\",\n    \"description\": \"the cat is cuddling and sleeping next to a dog on the couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwfcpoGEI1tk2ngvo1_400\",\n    \"question\": \"what gets it head stuck in a cup and then falls off of a table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51382\",\n    \"key\": \"74822\",\n    \"description\": \"a cat gets it head stuck in a cup and then falls off of a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr46avxZ4M1rn573lo1_400\",\n    \"question\": \"how many FRAMEQAorters are talking into two microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32170\",\n    \"key\": \"56707\",\n    \"description\": \"two FRAMEQAorters are talking into two microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nftibqLA1f1tcwc21o1_400\",\n    \"question\": \"how many men are playing guitars and singing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16974\",\n    \"key\": \"28432\",\n    \"description\": \"three men are playing guitars and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2u4lDKeU1sbetrro1_400\",\n    \"question\": \"how many men with dyed blonde hair are looking at the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41302\",\n    \"key\": \"81245\",\n    \"description\": \"two men with dyed blonde hair are looking at the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng952sa6bT1skeuupo1_400\",\n    \"question\": \"what is the man wearing helmet driving?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33012\",\n    \"key\": \"65206\",\n    \"description\": \"a man wearing helmet is driving a vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1ob7LJxh1tw8vf9o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18406\",\n    \"key\": \"68560\",\n    \"description\": \"a woman is kicking a man in the head who is wearing a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96iz1D0NJ1qgmxzoo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49562\",\n    \"key\": \"60467\",\n    \"description\": \"a guy wearing a black shirt with colored hair is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npq9jlIFaN1u1ogm0o1_1280\",\n    \"question\": \"what jumps out of the plane with a parachute?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26727\",\n    \"key\": \"98065\",\n    \"description\": \"a car jumps out of a plane with a parachute.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7uylrYdY1tz9jaqo1_250\",\n    \"question\": \"what hits the goalkeeper in a soccer match?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36020\",\n    \"key\": \"8190\",\n    \"description\": \"a ball hits the goalkeeper in a soccer match.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9fzj5h9Y1u57bkto1_250\",\n    \"question\": \"how many women are sitting in the bed snuggling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33607\",\n    \"key\": \"42689\",\n    \"description\": \"two women are sitting in a bed snuggling.\"\n  },\n  {\n    \"video_name\": \"tumblr_niu64yd0hR1qky5cmo1_250\",\n    \"question\": \"how many man enters the room and hugs a second man from behind?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36591\",\n    \"key\": \"19909\",\n    \"description\": \"one man enters a room and hugs a second man from behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1f6dC53y1u5g7vro1_250\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26565\",\n    \"key\": \"46794\",\n    \"description\": \"a white woman with black glasses and a black shirt is moving her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5d4u8cos1r7gr8so1_400\",\n    \"question\": \"what is the color of the guitar?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14682\",\n    \"key\": \"51974\",\n    \"description\": \"a guy with a tattooed arm plays a white guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1opyJl7r1uo9hxko1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5538\",\n    \"key\": \"92632\",\n    \"description\": \"a young person in a black tee shirt is playing with their ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_na66rjjjdD1roly9io1_500\",\n    \"question\": \"what is moving forward with its lights flashing?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11114\",\n    \"key\": \"74616\",\n    \"description\": \"a police car is moving forward with its lights flashing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp0k4W1RF1u63djdo1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41810\",\n    \"key\": \"53422\",\n    \"description\": \"a man in a tall hat and a white coat is spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkvp0sAJs1ub68qdo1_250\",\n    \"question\": \"how many boys are talking and laughing as one drops the microphone down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39223\",\n    \"key\": \"10647\",\n    \"description\": \"two boys are talking and laughing as one drops the microphone down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvhjp6WO71sj3qcdo1_250\",\n    \"question\": \"what are the two men eating on the couch?\",\n    \"answer\": \"popcorn\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38123\",\n    \"key\": \"19312\",\n    \"description\": \"the two men are eating popcorn on the couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_neh6x586Rl1tgic3yo1_500\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8874\",\n    \"key\": \"89147\",\n    \"description\": \"a woman with a black shirt and black lipstick smiles and laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_noqzdsp8XL1uou85do1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32290\",\n    \"key\": \"70696\",\n    \"description\": \"a man in a green shirt was doing tricks on a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9v07TxUL1sjcvc1o1_250\",\n    \"question\": \"where is the man ripping fabric.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40125\",\n    \"key\": \"84536\",\n    \"description\": \"a man is ripping fabric angrily in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqn1ve1SQM1unyhx2o1_400\",\n    \"question\": \"what is getting refueled in the pit stop?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24116\",\n    \"key\": \"77011\",\n    \"description\": \"a racing car is getting refueled in a pit stop.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyc47w6ph1u25dj6o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9224\",\n    \"key\": \"57531\",\n    \"description\": \"a black car gets t boned during a snow fall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhblwqSCgu1u4i3qco1_400\",\n    \"question\": \"what does the person touch,\",\n    \"answer\": \"then the dog turns around crazy ? butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24740\",\n    \"key\": \"9324\",\n    \"description\": \"a person touches a dogs butt,\"\n  },\n  {\n    \"video_name\": \"tumblr_njvv3fRF7y1s1rzito1_400\",\n    \"question\": \"how many men are standing and shake hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37002\",\n    \"key\": \"2327\",\n    \"description\": \"two men are standing and shake hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlfii6q03r1s6zpepo1_400\",\n    \"question\": \"what saw reflection in mirror and attacked the reflection it several times?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27088\",\n    \"key\": \"40034\",\n    \"description\": \"cat saw reflection in mirror and attacked the reflection it several times.\"\n  },\n  {\n    \"video_name\": \"tumblr_nctmog92Bx1rb9dako1_500\",\n    \"question\": \"where is the man sitting while a car speeds by outside on its roof.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24019\",\n    \"key\": \"48442\",\n    \"description\": \"a man is sitting in a room while a car speeds by outside on its roof.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczus9EPu31ttuja3o1_250\",\n    \"question\": \"what is the color of the cape?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41476\",\n    \"key\": \"38398\",\n    \"description\": \"a man throws something at another man wearing a red cape.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpchsaQdB1tg4ng0o1_250\",\n    \"question\": \"what is the man removing?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30250\",\n    \"key\": \"36389\",\n    \"description\": \"a man is removing his black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8zogREs01tju8cjo1_400\",\n    \"question\": \"where do two men do some dance moves,\",\n    \"answer\": \"and one talks to someone . ? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41376\",\n    \"key\": \"33677\",\n    \"description\": \"two men in a room do some dance moves,\"\n  },\n  {\n    \"video_name\": \"tumblr_nexk59a7Vi1ti6jc1o1_250\",\n    \"question\": \"what is the color of the ring?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22820\",\n    \"key\": \"12968\",\n    \"description\": \"a blonde guy with a black lip ring is frowning and shaking his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxnmhhK8d1tgtinoo2_r1_400\",\n    \"question\": \"what is having its head rubbed?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35776\",\n    \"key\": \"75997\",\n    \"description\": \"a small bird is having its head rubbed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3844onv11qj1oazo1_400\",\n    \"question\": \"what is the color of the headgear?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46097\",\n    \"key\": \"53074\",\n    \"description\": \"a teen is wearing green protective headgear and concentrating on something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakx4m3btR1r27dg6o1_400\",\n    \"question\": \"what is being chased by a police car?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28800\",\n    \"key\": \"18991\",\n    \"description\": \"a motorbike being chased by a police car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8y7flGO81sgg5k5o1_500\",\n    \"question\": \"what is the young man in a black jacket playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13321\",\n    \"key\": \"50950\",\n    \"description\": \"a young man in a black jacket is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nela0aVJkV1si2peso1_250\",\n    \"question\": \"where does the hedgehog relax.\",\n    \"answer\": \"? bath\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31348\",\n    \"key\": \"53402\",\n    \"description\": \"a hedgehog relaxes quietly in a cool bath.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w7lerGTz1tg0gc4o1_500\",\n    \"question\": \"how many guys are singing and dancing with microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50455\",\n    \"key\": \"61792\",\n    \"description\": \"two guys are singing and dancing with microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hor8PGrA1sk0i2mo1_400\",\n    \"question\": \"how many female wrestlers fight in the ring and one gets knocked out?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30820\",\n    \"key\": \"39492\",\n    \"description\": \"two female wrestlers fight in the ring and one gets knocked out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nipr4lcRAR1rb52s5o1_400\",\n    \"question\": \"where does the man do a boogie dance.\",\n    \"answer\": \"? aisle\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1811\",\n    \"key\": \"15276\",\n    \"description\": \"a man does a boogie dance in a cafeteria aisle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbze7q65N1s6zpepo1_500\",\n    \"question\": \"what is the color of the shark?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20083\",\n    \"key\": \"65465\",\n    \"description\": \"a white shark is swimming in the blue ocean.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9ij3RwV91tuqmf9o1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15807\",\n    \"key\": \"28211\",\n    \"description\": \"the woman makes the orange cat stand and dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhccwxLB7g1tigieto1_400\",\n    \"question\": \"how many team are in red shirts?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43507\",\n    \"key\": \"76338\",\n    \"description\": \"a group of people are playing football,\"\n  },\n  {\n    \"video_name\": \"tumblr_nflyp6lmp51qj9te3o1_500\",\n    \"question\": \"what is the man wearing a suit and knit hat lights?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30373\",\n    \"key\": \"9190\",\n    \"description\": \"a man wearing a suit and knit hat lights a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat1jsDGBA1tdmr2yo1_500\",\n    \"question\": \"how many men are standing together in the dark area?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31866\",\n    \"key\": \"96611\",\n    \"description\": \"three men are standing together in a dark area.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmeww4RZe1qh59g3o7_250\",\n    \"question\": \"how many people is moving in for a kiss and embrace?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48155\",\n    \"key\": \"84666\",\n    \"description\": \"two people moving in for a kiss and embrace.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerzflfMNY1qdoqvio1_500\",\n    \"question\": \"where is the woman fixing her hair.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19936\",\n    \"key\": \"47911\",\n    \"description\": \"the woman is fixing her hair in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u58zpyTj1reu7qqo1_500\",\n    \"question\": \"what is the color of the clouds?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10626\",\n    \"key\": \"92283\",\n    \"description\": \"white clouds quickly spread across the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq0629hIq1t5ojzdo1_250\",\n    \"question\": \"what is driving through the desert?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52465\",\n    \"key\": \"49660\",\n    \"description\": \"a red car is driving through the desert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhfwk7nTt1u4pmmpo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3100\",\n    \"key\": \"24285\",\n    \"description\": \"a fat man is wearing a mask and a black hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8u1hK4Ac1sh75jso1_250\",\n    \"question\": \"what are several guys taking together?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29464\",\n    \"key\": \"1929\",\n    \"description\": \"several guys are taking a picture together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x1wfRppX1tdmffyo1_250\",\n    \"question\": \"what turns and attacks the moving toy?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17676\",\n    \"key\": \"45924\",\n    \"description\": \"a cat turns and attacks a moving toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nastobJZrU1t9y9heo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14204\",\n    \"key\": \"78743\",\n    \"description\": \"a man in a black top with a white circular emblem is hidden behind a cloud of smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9bf9Vddz1u25ovvo1_400\",\n    \"question\": \"what is being driven by a driver with palm trees on the side of the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39110\",\n    \"key\": \"63432\",\n    \"description\": \"a car being driven by a driver with palm trees on the side of the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtqa26yvr1tjhld9o1_400\",\n    \"question\": \"what is the color of the kitten?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47854\",\n    \"key\": \"19224\",\n    \"description\": \"a dog plays with a white kitten.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9s983h2cd1se4p6ho1_400\",\n    \"question\": \"how many men are wearing suits and singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36183\",\n    \"key\": \"31841\",\n    \"description\": \"two men are wearing suits and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1et3jphj1rmskgro1_250\",\n    \"question\": \"how many young men are holding an interview and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50815\",\n    \"key\": \"39535\",\n    \"description\": \"two young men are holding an interview and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkunyo8ZlL1u98wygo1_500\",\n    \"question\": \"what does the soccer player pass to a teammate who scores a goal?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13867\",\n    \"key\": \"52215\",\n    \"description\": \"a soccer player passes the ball to a teammate who scores a goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnmtjjxZdT1rnjvoeo1_500\",\n    \"question\": \"what is the man and woman taking together and kissing?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16684\",\n    \"key\": \"85789\",\n    \"description\": \"a man and woman is taking a picture together and kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazqwgPDxU1tiv0r8o1_500\",\n    \"question\": \"how many kids is sitting in a dark room raise their hands into the air and display the peace sign?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40077\",\n    \"key\": \"63749\",\n    \"description\": \"two kids sitting in a dark room raise their hands into the air and display the peace sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqym30p1cp1u3cb3fo2_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48871\",\n    \"key\": \"48571\",\n    \"description\": \"a girl with black dress is performing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yucrQ0CD1rcjuu7o1_400\",\n    \"question\": \"where are the group of people dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31070\",\n    \"key\": \"19184\",\n    \"description\": \"a group of people are dancing together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1vzhS7Dk1s3t57eo1_500\",\n    \"question\": \"how many young men are smiling in front of a television?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6163\",\n    \"key\": \"73215\",\n    \"description\": \"two young men are smiling in front of a television.\"\n  },\n  {\n    \"video_name\": \"tumblr_np4qeqa4lO1rop7bco1_500\",\n    \"question\": \"what is the woman wearing a bra is smoking and looking in a mirror?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15573\",\n    \"key\": \"98407\",\n    \"description\": \"a woman wearing a bra is smoking a cigarette and looking in a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0vgpO4MV1u88jnvo1_250\",\n    \"question\": \"what is looking around suspiciously outside?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51941\",\n    \"key\": \"46248\",\n    \"description\": \"an animated cat is looking around suspiciously outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngi6wiekIJ1tu4yxmo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24072\",\n    \"key\": \"11641\",\n    \"description\": \"a man in black shirt is sitting down looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_naktlrCRYd1rtg3qpo1_400\",\n    \"question\": \"how many men sit at the table and play a card game?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52216\",\n    \"key\": \"73510\",\n    \"description\": \"three men sit at a table and play a card game.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqjx3wHf1Q1r2lnvfo1_400\",\n    \"question\": \"how many men does the warrior princess beat up using a pot and a pan?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24690\",\n    \"key\": \"26486\",\n    \"description\": \"a warrior princess beats up two men using a pot and a pan.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmis5JfW31u05byho2_400\",\n    \"question\": \"how many people are skate boarding along the corridor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20438\",\n    \"key\": \"63140\",\n    \"description\": \"two people are skate boarding along a corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh968zCjLO1r9p1p9o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29979\",\n    \"key\": \"61469\",\n    \"description\": \"a woman in a red shirt reaches over and grabs a pair of glasses to put on her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r9y45IV51r2e0nso1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22130\",\n    \"key\": \"27251\",\n    \"description\": \"a man wearing a white shirt is walking with his mouth open and moving his head from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0gtbRtuT1s7m95ho1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22497\",\n    \"key\": \"82953\",\n    \"description\": \"a young man with short brown hair looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq1kcyjyHi1uwli57o1_1280\",\n    \"question\": \"how many people dresses of superhero are shake her hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43882\",\n    \"key\": \"95412\",\n    \"description\": \"two people dresses of superhero are shake her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhli0qwrf61u7p8rwo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34915\",\n    \"key\": \"36088\",\n    \"description\": \"a young woman with a green hat is staring at the distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98tjzGg7w1tetyjjo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35105\",\n    \"key\": \"28644\",\n    \"description\": \"a person with short brown hair and glasses wears black and puts their hands into a heart shape.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1hscYbC31sqpuloo1_540\",\n    \"question\": \"what is the young boy smiling and wearing?\",\n    \"answer\": \"headset\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27608\",\n    \"key\": \"98667\",\n    \"description\": \"a young boy is smiling and wearing a headset.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjw5ee9J71upsi9qo1_400\",\n    \"question\": \"what is the color of the side?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38044\",\n    \"key\": \"66985\",\n    \"description\": \"this is two girls that are wearing black clothing standing side by side talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vecizBZQ1sla45lo1_400\",\n    \"question\": \"what is the color of the automobile?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5251\",\n    \"key\": \"76383\",\n    \"description\": \"the black automobile is sliding sideways while handling a curve.\"\n  },\n  {\n    \"video_name\": \"tumblr_n980oaEVwU1t9r6nmo1_1280\",\n    \"question\": \"how many keys are laying on top of the counter top?\",\n    \"answer\": \"six\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18436\",\n    \"key\": \"36035\",\n    \"description\": \"six keys are laying on top of the counter top.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne15z6JtB31qdl31go1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31314\",\n    \"key\": \"6499\",\n    \"description\": \"a teenager puts on a white shirt and looks down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesu4nuPbX1tzd5txo1_500\",\n    \"question\": \"what are running in the field?\",\n    \"answer\": \"horses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6030\",\n    \"key\": \"97005\",\n    \"description\": \"two black horses are running in a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_naywiz1q9Q1sqzd72o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41933\",\n    \"key\": \"19324\",\n    \"description\": \"a man in a black suit is being interviewed and is bothered by another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n89ev1boWG1tzl5c2o1_250\",\n    \"question\": \"what is the color of the sofa?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2096\",\n    \"key\": \"16324\",\n    \"description\": \"a young man is lying down on a cherry red sofa.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvt8siwvI1s1tnf7o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17897\",\n    \"key\": \"77723\",\n    \"description\": \"a ballerina in a black top and white tutu is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqdikuiJz1r9i49ro1_500\",\n    \"question\": \"what is the man driving?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48562\",\n    \"key\": \"100071\",\n    \"description\": \"a man is driving the car to face another car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyol8TrRL1tdh0pko1_250\",\n    \"question\": \"how many men are making hand gestures and kissing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17716\",\n    \"key\": \"40211\",\n    \"description\": \"two men are making hand gestures and kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknokcptLl1s00ofxo1_500\",\n    \"question\": \"what is the personal loading and pointing it at someone?\",\n    \"answer\": \"handgun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25494\",\n    \"key\": \"99807\",\n    \"description\": \"a personal is loading a handgun and pointing it at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng3gmzTe6F1qlnl24o1_400\",\n    \"question\": \"how many guys raise their arms high and interlock their fingers on stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4217\",\n    \"key\": \"44882\",\n    \"description\": \"three guys raise their arms high and interlock their fingers on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5t5gfWQk1tjkho6o1_400\",\n    \"question\": \"how many boys look up and start to wave their arms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47360\",\n    \"key\": \"62110\",\n    \"description\": \"two boys look up and start to wave their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhh5j3uCN1tx8mn0o1_400\",\n    \"question\": \"what is driving slow on the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37525\",\n    \"key\": \"52689\",\n    \"description\": \"a green race car is driving slow on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq9tgb73C1retsn4o1_500\",\n    \"question\": \"how many men in white shirts are dancing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21853\",\n    \"key\": \"96116\",\n    \"description\": \"two men in white shirts are dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncczjfdwFt1tav0gmo1_500\",\n    \"question\": \"how many pop stars are posing in front of a brick wall?\",\n    \"answer\": \"six\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1726\",\n    \"key\": \"93175\",\n    \"description\": \"six pop stars are posing in front of a brick wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97ntjwFce1qaeqj9o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7085\",\n    \"key\": \"43796\",\n    \"description\": \"a woman with brown hair is laughing at the guy wearing a black shirt with an egg in his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_namg8z7z3Y1tdthfeo1_250\",\n    \"question\": \"how many woman lifts her shirt and one woman smiles?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6241\",\n    \"key\": \"1696\",\n    \"description\": \"one woman lifts her shirt and one woman smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkai5chFn1uqslqko1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40383\",\n    \"key\": \"16524\",\n    \"description\": \"a young woman with long black hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_njv8g32euR1rregeqo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20473\",\n    \"key\": \"10251\",\n    \"description\": \"the man in the gray hat adjusts his coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_np7lqwoYcO1s2a75qo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17352\",\n    \"key\": \"62811\",\n    \"description\": \"the guy in the green shirt is running though the crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nban5mzZZr1tk3k4do1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13553\",\n    \"key\": \"33901\",\n    \"description\": \"one woman with white hair is on a cellphone and another woman is shaking her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrt5nXvpv1tll0p8o1_400\",\n    \"question\": \"how many happy men laugh and show their tongues at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5896\",\n    \"key\": \"78962\",\n    \"description\": \"two happy men laugh and show their tongues at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5yoq9wXv1s6zpepo1_250\",\n    \"question\": \"what is receiving the belly rub?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29911\",\n    \"key\": \"78462\",\n    \"description\": \"an angry cat is receiving a belly rub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrep9tsyF51tx8mn0o1_400\",\n    \"question\": \"what does the man slide off on the busy racetrack?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21092\",\n    \"key\": \"78229\",\n    \"description\": \"a man slides off his motorcycle on the busy racetrack.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndy7ccfmXN1rfibsxo1_400\",\n    \"question\": \"what is blown up by the grenade?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40577\",\n    \"key\": \"62905\",\n    \"description\": \"a teddy bear is blown up by a grenade.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyjsnTzTm1tty0voo1_400\",\n    \"question\": \"what is running and falls off the step?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50839\",\n    \"key\": \"56199\",\n    \"description\": \"a puppy is running and falls off a step.\"\n  },\n  {\n    \"video_name\": \"tumblr_nprmzqr4Z81tkeou1o1_400\",\n    \"question\": \"how many young star is wearing white clothes are dancing with exciting look?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4339\",\n    \"key\": \"18456\",\n    \"description\": \"three young star wearing white clothes are dancing with exciting look.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknvvc6vsl1sac2yno1_400\",\n    \"question\": \"how many young man are standing next to each other?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48\",\n    \"key\": \"41115\",\n    \"description\": \"four young man are standing next to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nht0k7k5Mk1sd3lvvo1_1280\",\n    \"question\": \"what did the man in a tuxedo throw on a table?\",\n    \"answer\": \"napkin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29221\",\n    \"key\": \"20050\",\n    \"description\": \"a man in a tuxedo threw a napkin on a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0p5v2Azs1qejouoo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17199\",\n    \"key\": \"92584\",\n    \"description\": \"a woman with shirt black hair is looking into a mirror and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuq7antOu1t9h1yfo1_400\",\n    \"question\": \"how many woman is smiling and moving his head?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3200\",\n    \"key\": \"52004\",\n    \"description\": \"two woman is smiling and moving his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8dp4ELQI1tkatv1o1_500\",\n    \"question\": \"how many men are poking each other while smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5245\",\n    \"key\": \"93303\",\n    \"description\": \"two men are poking each other while smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9wpp5Ga01tka8t6o1_250\",\n    \"question\": \"how many boy is trying to lift to another boy?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5211\",\n    \"key\": \"5200\",\n    \"description\": \"one boy is trying to lift to another boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_np9l67iE301te94myo1_400\",\n    \"question\": \"what is the color of the helmet?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18497\",\n    \"key\": \"19930\",\n    \"description\": \"a hockey player with a white helmet is drinking gatorade.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgdjmRq281tk9m4mo1_400\",\n    \"question\": \"how many young men dressed in black using a shotgun?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26376\",\n    \"key\": \"30918\",\n    \"description\": \"two young men dressed in black using a shotgun.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne12dpfUWZ1rbkthoo1_400\",\n    \"question\": \"what is the color of the flower?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32950\",\n    \"key\": \"13174\",\n    \"description\": \"a guy in a tuxedo with a white flower is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njp4xkNl8t1tk2ngvo1_500\",\n    \"question\": \"what is scared with the chocolate?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30216\",\n    \"key\": \"67971\",\n    \"description\": \"a brown dog is scared with the chocolate.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfruzax6C81tx8l3to1_400\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51667\",\n    \"key\": \"71405\",\n    \"description\": \"the guy in the black hat and black sweatshirt is talking into the microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb53jhDegX1tkdwmzo1_500\",\n    \"question\": \"how many men are running in the swift direction?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA783\",\n    \"key\": \"73706\",\n    \"description\": \"three men are running in a swift direction.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qvxbfc1Y1t6142fo1_250\",\n    \"question\": \"what is the man drinking,\",\n    \"answer\": \"? bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46489\",\n    \"key\": \"17644\",\n    \"description\": \"a man drinking a water bottle,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2v6r00g21unqpa3o1_250\",\n    \"question\": \"where did man starts to grin whilst sit.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24088\",\n    \"key\": \"24223\",\n    \"description\": \"man starts to grin whilst sat in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq2bdiskz1qayc5ro1_400\",\n    \"question\": \"where is the man slowly spinning around.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46813\",\n    \"key\": \"34906\",\n    \"description\": \"a man is slowly spinning around in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9066tnq0A1tx8mn0o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32695\",\n    \"key\": \"78618\",\n    \"description\": \"a man drove a red race car around a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfa926ftF1rhl4f0o1_400\",\n    \"question\": \"what climbed onto the person 's hand?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24894\",\n    \"key\": \"55339\",\n    \"description\": \"a big green frog climbed onto a person 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl24xtN6ei1u39i7yo1_250\",\n    \"question\": \"how many man are kissing on stage then hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26459\",\n    \"key\": \"5535\",\n    \"description\": \"two man are kissing on stage then hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjzfx6FL41uz06r7o1_400\",\n    \"question\": \"what is walking in the big wheel?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45048\",\n    \"key\": \"13614\",\n    \"description\": \"a brown cat is walking in a big wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nciucwq9Nb1tlb9eao1_500\",\n    \"question\": \"how many boys are singing on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42890\",\n    \"key\": \"71612\",\n    \"description\": \"two boys are singing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ohi0oK5e1tewfk6o1_250\",\n    \"question\": \"what is the color of the button?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48786\",\n    \"key\": \"9435\",\n    \"description\": \"a woman looks around and almost presses a red button.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdij9TJS41swv315o1_400\",\n    \"question\": \"how many people is wearing all white are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5483\",\n    \"key\": \"38898\",\n    \"description\": \"two people wearing all white are dancing and the man has only one leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo0rmCdNd1u45agco1_250\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33529\",\n    \"key\": \"14022\",\n    \"description\": \"a girl wearing a white top and black pants is crouched down on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_np97noimRj1swewioo1_250\",\n    \"question\": \"what is the woman with long brown hair,\",\n    \"answer\": \"wearing , animal print pants and pink shoes is dancing on a sidewalk ? shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1743\",\n    \"key\": \"43615\",\n    \"description\": \"a woman with long brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nku8674mFY1qcrdgyo1_250\",\n    \"question\": \"what is the hand scratching a cat and is pushing the hand back?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38425\",\n    \"key\": \"3555\",\n    \"description\": \"a hand is scratching a cat and the cat is pushing the hand back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2rl5ShaE1rftdx0o1_250\",\n    \"question\": \"what is the color of the crow?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49203\",\n    \"key\": \"23330\",\n    \"description\": \"a black crow walks up behind wolf eating in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbi0cr9dUk1tjt4u9o1_400\",\n    \"question\": \"what is the young man driving with passengers in the back?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3543\",\n    \"key\": \"78816\",\n    \"description\": \"a young man is driving a car with passengers in the back.\"\n  },\n  {\n    \"video_name\": \"tumblr_naymij4o491rnas60o1_250\",\n    \"question\": \"what is the woman shaking in her pajamas?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21703\",\n    \"key\": \"1334\",\n    \"description\": \"a woman is shaking her butt in her pajamas.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejj0xVfBd1s9dtupo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38704\",\n    \"key\": \"29070\",\n    \"description\": \"a man wearing a white hat is waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_neozsacZoD1r31wzpo1_500\",\n    \"question\": \"what is the man riding around in a circle?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA440\",\n    \"key\": \"56833\",\n    \"description\": \"a man is riding a dirt bike around in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabkywE1ZI1r0f68xo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44036\",\n    \"key\": \"98966\",\n    \"description\": \"a boy with short dark hair wears a gray jacket and smiles while waving both of his hands in peace signs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9djqIJG21r5rpejo1_250\",\n    \"question\": \"what is the guy playing while turning around?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40677\",\n    \"key\": \"27298\",\n    \"description\": \"a guy is playing guitar while turning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoga4fMRx1r9ka6jo1_500\",\n    \"question\": \"what is the color of the sweatshirts?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36526\",\n    \"key\": \"90422\",\n    \"description\": \"two men wearing blue sweatshirts are using plastic spoons.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9owcumLu21tiyxk9o1_400\",\n    \"question\": \"how many guys disguised are jumping and fall out in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7896\",\n    \"key\": \"98117\",\n    \"description\": \"two guys disguised are jumping and fall out in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9769ytMjb1rmykdao1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2765\",\n    \"key\": \"47723\",\n    \"description\": \"a man in a blue outfit runs up and jumps on a man wearing a suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9u8lkYzEh1txrs01o1_500\",\n    \"question\": \"what are the group of women lighting?\",\n    \"answer\": \"pipe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52702\",\n    \"key\": \"85909\",\n    \"description\": \"a group of women are lighting a pipe.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfscrpUrfv1u4v3ypo1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA837\",\n    \"key\": \"55669\",\n    \"description\": \"a black cat is starring at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fnbbZzP71tinccvo1_250\",\n    \"question\": \"how many hand is the woman with blonde hair singing and waving?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39823\",\n    \"key\": \"23158\",\n    \"description\": \"a woman with blonde hair is singing and waving one hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ohi0oK5e1tewfk6o1_250\",\n    \"question\": \"what does the woman look around and almost presses?\",\n    \"answer\": \"button\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11321\",\n    \"key\": \"9435\",\n    \"description\": \"a woman looks around and almost presses a red button.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jr6l5xL11tfx0hzo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28805\",\n    \"key\": \"16551\",\n    \"description\": \"a woman with long brown hair is wiping away a tear from her eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf5g9uK0E1tjtk3vo1_250\",\n    \"question\": \"what does the girl with a red jacket open?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41330\",\n    \"key\": \"16675\",\n    \"description\": \"a girl with a red jacket opens a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbe95pILAZ1tx4ofso1_400\",\n    \"question\": \"how many fingers is the person with cap moving?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38196\",\n    \"key\": \"78959\",\n    \"description\": \"a person with cap is moving his two fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9paf34bUZ1s5yymto1_400\",\n    \"question\": \"how many men in a studio are laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9098\",\n    \"key\": \"58609\",\n    \"description\": \"two men in a studio are laughing and one picks up a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtmvfNyZT1t5ojzdo1_250\",\n    \"question\": \"what is the color of the objects?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38591\",\n    \"key\": \"53339\",\n    \"description\": \"a woman is smiling and white objects are floating in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfo9p0RhAD1rhkkm6o1_400\",\n    \"question\": \"what is the color of the mat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6412\",\n    \"key\": \"19634\",\n    \"description\": \"the person falls over onto a blue mat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nascwgRcXO1tjbf2fo1_400\",\n    \"question\": \"where is the girl doing a handstand.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7796\",\n    \"key\": \"35075\",\n    \"description\": \"a girl is doing a handstand in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5pmkrxPP1tm39w8o1_500\",\n    \"question\": \"what is hugging its mother?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36007\",\n    \"key\": \"99498\",\n    \"description\": \"a baby panda is hugging its mother.\"\n  },\n  {\n    \"video_name\": \"tumblr_nho4lw7YQP1tooeulo1_500\",\n    \"question\": \"what is the guy laughing and another one is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36471\",\n    \"key\": \"86177\",\n    \"description\": \"a guy is laughing and another one is playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclkqg2v8l1td05izo1_500\",\n    \"question\": \"what is the guy playing around a crowd in a stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3881\",\n    \"key\": \"57625\",\n    \"description\": \"a guy is playing guitar around a crowd in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_noqxz1gAUC1smzq6ko1_400\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43072\",\n    \"key\": \"77681\",\n    \"description\": \"a couple speak to each other as they are on a red carpet getting their picture taken.\"\n  },\n  {\n    \"video_name\": \"tumblr_nomsgtmnsl1upriqso1_400\",\n    \"question\": \"what did the man give to the woman?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13412\",\n    \"key\": \"67814\",\n    \"description\": \"the man gave his jacket to the woman because it was cold.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfa5niq6tJ1skrnl9o1_250\",\n    \"question\": \"what does roller plummet quickly down the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31904\",\n    \"key\": \"43054\",\n    \"description\": \"a roller coaster car plummets quickly down the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9z2mjZG4z1qkzi04o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50017\",\n    \"key\": \"23777\",\n    \"description\": \"a black man is making a sign with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95vewpyij1s6octbo1_400\",\n    \"question\": \"how many soldiers is hug each other than one falls back?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27527\",\n    \"key\": \"83510\",\n    \"description\": \"two soldiers hug each other than one falls back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk550nmZNP1u8uroco1_400\",\n    \"question\": \"what plays and jumps in the snow?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27496\",\n    \"key\": \"52678\",\n    \"description\": \"a red panda plays and jumps in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk0daewIku1qhhc4qo1_500\",\n    \"question\": \"how many men shake hands and hug each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49717\",\n    \"key\": \"72486\",\n    \"description\": \"two men shake hands and hug each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyg7mFFIG1rzqz74o1_540\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34517\",\n    \"key\": \"97367\",\n    \"description\": \"a man dressed in a red tank top is walking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2atpQsnX1rqpeyho1_400\",\n    \"question\": \"what is the man wearing a tie picks up?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38406\",\n    \"key\": \"63247\",\n    \"description\": \"a man wearing a tie picks up a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbf3keXrUR1tlp8abo1_1280\",\n    \"question\": \"where is the girl raising her arm.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30015\",\n    \"key\": \"60932\",\n    \"description\": \"a girl is raising her arm in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r1ab8DhJ1twtgiao1_400\",\n    \"question\": \"what are swimming with some fish?\",\n    \"answer\": \"turtles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1230\",\n    \"key\": \"59201\",\n    \"description\": \"two turtles are swimming with some fish.\"\n  },\n  {\n    \"video_name\": \"tumblr_noc8a1qRoV1sjmszyo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45441\",\n    \"key\": \"59778\",\n    \"description\": \"a girl in a black shirt is talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_np8ku9CRtg1rtl9udo1_400\",\n    \"question\": \"how many people are dancing and put their right hands up to their faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26444\",\n    \"key\": \"79118\",\n    \"description\": \"two people are dancing and put their right hands up to their faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sl7sBrq41qjv5vmo1_400\",\n    \"question\": \"how many men are riding in the car laughing?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2978\",\n    \"key\": \"31074\",\n    \"description\": \"four men are riding in a car laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3m6nB3jv1sicolwo1_250\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43416\",\n    \"key\": \"43933\",\n    \"description\": \"a soccer player with yellow uniform is kicking a ball against two other players.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q0g7y49C1rk1fx6o1_400\",\n    \"question\": \"what is about to land,\",\n    \"answer\": \"but keeps flying ? airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27707\",\n    \"key\": \"25285\",\n    \"description\": \"a jet plane is about to land,\"\n  },\n  {\n    \"video_name\": \"tumblr_nraprjJl3w1uagl5ho1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3046\",\n    \"key\": \"25119\",\n    \"description\": \"a boy with black hair is waving his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7ew9nZQK1tgyh35o1_400\",\n    \"question\": \"how many man is sitting at the table with his laptop?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12420\",\n    \"key\": \"64912\",\n    \"description\": \"one man is sitting at a table with his laptop and another man is standing at the other side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nan1xwT9HS1s89twbo1_250\",\n    \"question\": \"where is the man moving his head and losing them.\",\n    \"answer\": \"? headset\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43745\",\n    \"key\": \"18907\",\n    \"description\": \"a man in a headset is moving his head and losing them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nasn21w9Ch1sk96t7o1_400\",\n    \"question\": \"what does the woman enter at the same time the man falls to the ground?\",\n    \"answer\": \"lobby\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32271\",\n    \"key\": \"73536\",\n    \"description\": \"a woman enters the lobby at the same time the man falls to the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r2p3I67n1txmq72o1_250\",\n    \"question\": \"what walks into the store and carries something out?\",\n    \"answer\": \"pelican\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46158\",\n    \"key\": \"23722\",\n    \"description\": \"a pelican walks into a store and carries something out.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9by5h0MsZ1tb760zo1_400\",\n    \"question\": \"where does the man put his dollar.\",\n    \"answer\": \"? machine\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31946\",\n    \"key\": \"13027\",\n    \"description\": \"the man puts his dollar in a vending machine.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauydkI1fU1rhx3k3o1_400\",\n    \"question\": \"what is the man with a backpack on waving in the air?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3905\",\n    \"key\": \"68080\",\n    \"description\": \"a man with a backpack on is waving his car in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1y86kZN91uzd4cyo1_400\",\n    \"question\": \"what is the young boy with blue swimming trunks doing into the swimming pool at night?\",\n    \"answer\": \"dive\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26654\",\n    \"key\": \"55543\",\n    \"description\": \"a young boy with blue swimming trunks is doing a back dive into the swimming pool at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_nookpfY89v1sar5kpo1_400\",\n    \"question\": \"how many artists are taking photos at a festival?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3582\",\n    \"key\": \"57351\",\n    \"description\": \"two artists are taking photos at a festival.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne00j9tc0m1tx8mn0o1_400\",\n    \"question\": \"what videotapes the road in front of them as they drive?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25807\",\n    \"key\": \"55497\",\n    \"description\": \"a car videotapes the road in front of them as they drive.\"\n  },\n  {\n    \"video_name\": \"tumblr_negevo44tS1u25ovvo1_400\",\n    \"question\": \"what is driving along the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23837\",\n    \"key\": \"63576\",\n    \"description\": \"a blue car is driving along a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pqj1rlmp1t29pn7o1_250\",\n    \"question\": \"what does the man in a black shirt shake?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27475\",\n    \"key\": \"18874\",\n    \"description\": \"a man in a black shirt shakes a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqkzt4vq5x1usmrfgo1_500\",\n    \"question\": \"how many men are dancing together on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46437\",\n    \"key\": \"37400\",\n    \"description\": \"two men are dancing together on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfoh2z9C1M1u3ads9o1_250\",\n    \"question\": \"where is the rabbit eating grass.\",\n    \"answer\": \"? cage\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17391\",\n    \"key\": \"14265\",\n    \"description\": \"a rabbit in a cage is eating grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6bg0r3Mt1u80smqo2_500\",\n    \"question\": \"where is the boy walking and smiling.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29870\",\n    \"key\": \"97152\",\n    \"description\": \"a boy is walking in a room and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3x8y1KwP1qla0yao1_500\",\n    \"question\": \"how many black men are talking and then bobbing their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9899\",\n    \"key\": \"17928\",\n    \"description\": \"two black men are talking and then bobbing their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsh5hUjvY1qjhpqlo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14456\",\n    \"key\": \"46756\",\n    \"description\": \"a girl with brown hair looks up and then smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl35rMLRE1snjqzdo1_400\",\n    \"question\": \"what hits the puppy and the puppy falls?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44292\",\n    \"key\": \"82992\",\n    \"description\": \"a cat hits a puppy and the puppy falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7in2oINS1qgcalbo1_250\",\n    \"question\": \"what is the man wearing and showing how strong he is?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25507\",\n    \"key\": \"22556\",\n    \"description\": \"the man is wearing a hat and showing how strong he is.\"\n  },\n  {\n    \"video_name\": \"tumblr_njnbr0swrC1un86uao1_400\",\n    \"question\": \"what does the man stack quickly before spraying them and putting them in an industrial dishwasher?\",\n    \"answer\": \"dishes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5349\",\n    \"key\": \"50808\",\n    \"description\": \"a man stacks dishes quickly before spraying them and putting them in an industrial dishwasher.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9d2ncvUaX1rqdzb7o1_500\",\n    \"question\": \"what is moving his head?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31957\",\n    \"key\": \"93281\",\n    \"description\": \"a boy wearing hat is moving his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjw5ee9J71upsi9qo1_400\",\n    \"question\": \"how many girls is wearing black are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17663\",\n    \"key\": \"66985\",\n    \"description\": \"the two girls wearing black are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6nz2bkKp1rbxybto1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35371\",\n    \"key\": \"57826\",\n    \"description\": \"a man with long dark hair and a black suit emerge from a room and is confronted by another man holding a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrd6a5lSj81r5wqxpo1_400\",\n    \"question\": \"how many women are giving an interview and brushing something off their faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15891\",\n    \"key\": \"91865\",\n    \"description\": \"two women are giving an interview and brushing something off their faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuegdc5bY1rm7vxeo1_400\",\n    \"question\": \"what runs to catch the snow ball?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12745\",\n    \"key\": \"4946\",\n    \"description\": \"a dog runs to catch a snow ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbiz26o6VX1tdjuqvo1_400\",\n    \"question\": \"what did the cat push across the floor?\",\n    \"answer\": \"wagon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30173\",\n    \"key\": \"72091\",\n    \"description\": \"a cat pushed a wagon across the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpnjgXCsI1qhrx75o1_400\",\n    \"question\": \"how many hockey player swats the puck before it reaches the goal line?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9165\",\n    \"key\": \"74751\",\n    \"description\": \"one hockey player swats a puck before it reaches the goal line.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc826aUSI71slj978o1_400\",\n    \"question\": \"how many young men perform the trick with a hat?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25412\",\n    \"key\": \"46829\",\n    \"description\": \"four young men perform a trick with a hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92lo9JEvZ1tfz9ppo1_400\",\n    \"question\": \"how many puppies are running in the hallway?\",\n    \"answer\": \"seven\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38636\",\n    \"key\": \"52245\",\n    \"description\": \"seven puppies are running in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdhgdA8ez1sxvd87o1_400\",\n    \"question\": \"what is playing with the cat 's tail?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24772\",\n    \"key\": \"43334\",\n    \"description\": \"a kitten is playing with a cat 's tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_n941xboVDa1sdnal9o1_500\",\n    \"question\": \"what is the color of the while?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5167\",\n    \"key\": \"93820\",\n    \"description\": \"a woman is wearing white and standing in a white room while looking forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9wn01n4a1rwuk20o1_400\",\n    \"question\": \"how many men with microphones are performing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37072\",\n    \"key\": \"58448\",\n    \"description\": \"two men with microphones are performing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98o4v22qh1re9f1uo1_500\",\n    \"question\": \"where is the man going to lay down while a woman sits on another bed.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA2294\",\n    \"key\": \"61258\",\n    \"description\": \"a man is going to lay down in bed while a woman sits on another bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nap36olmED1tk7kwio1_400\",\n    \"question\": \"where is the man driving a woman.\",\n    \"answer\": \"? boat\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45582\",\n    \"key\": \"66358\",\n    \"description\": \"a man is driving a woman away in a boat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndjshjXoB91s71nvbo1_250\",\n    \"question\": \"where is the man with a long beard putting an animal.\",\n    \"answer\": \"? bag\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41635\",\n    \"key\": \"5971\",\n    \"description\": \"a man with a long beard is putting an animal in a bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0ddtHrBj1tg85j7o1_400\",\n    \"question\": \"what is the color of the cloth?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24105\",\n    \"key\": \"36841\",\n    \"description\": \"two pairs of gloved hands stick a red cross on a white cloth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbivs5zZZp1spnjj2o1_500\",\n    \"question\": \"what is the color of the jumps?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43353\",\n    \"key\": \"96082\",\n    \"description\": \"a person dressed in black jumps on a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyvthzIw21txchtio1_500\",\n    \"question\": \"what is being fed while sat on its back legs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1631\",\n    \"key\": \"92169\",\n    \"description\": \"a small cat is being fed while sat on its back legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlu54rL2M1tragfyo1_1280\",\n    \"question\": \"how many men are standing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9268\",\n    \"key\": \"55861\",\n    \"description\": \"two men are standing on stage and one guy turns around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrg8fxNNsJ1qh2eiuo1_400\",\n    \"question\": \"what is the guy putting on?\",\n    \"answer\": \"helmet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41551\",\n    \"key\": \"65735\",\n    \"description\": \"a guy is putting his helmet on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nde6csPi0h1rg2esto1_400\",\n    \"question\": \"what is lying down while the chipmunk playing with the bear?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32206\",\n    \"key\": \"90634\",\n    \"description\": \"a panda bear is lying down while a chipmunk playing with the bear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwxxlRnvb1sfdqnro1_400\",\n    \"question\": \"what landed on a yellow flower then flies away?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34257\",\n    \"key\": \"38744\",\n    \"description\": \"a butterfly landed on a yellow flower then flies away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhrb2m1Vw1uzsdhio1_250\",\n    \"question\": \"where is the man in a blue shirt kissing a woman.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50141\",\n    \"key\": \"21057\",\n    \"description\": \"a man in a blue shirt is kissing a woman in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng5rs5F6tJ1t1nzngo1_500\",\n    \"question\": \"how many men are playing guitars while another man sings on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11728\",\n    \"key\": \"79612\",\n    \"description\": \"two men are playing guitars while another man sings on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncko1cgtVl1rwkjivo1_400\",\n    \"question\": \"what does the squirrel jump and scares?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9978\",\n    \"key\": \"45420\",\n    \"description\": \"a squirrel jumps and scares an orange cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvxfgvaki1r72dfyo1_500\",\n    \"question\": \"what is the woman offering to a child who is refusing?\",\n    \"answer\": \"flask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27195\",\n    \"key\": \"69957\",\n    \"description\": \"a woman is offering a flask to a child who is refusing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbn0vv8Gp1tx8mn0o1_400\",\n    \"question\": \"how many cars are racing around the race track?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21367\",\n    \"key\": \"86055\",\n    \"description\": \"three cars are racing around the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rldadoip1twznkvo1_250\",\n    \"question\": \"what is the baby elephant receiving?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48984\",\n    \"key\": \"41985\",\n    \"description\": \"a baby elephant is receiving a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrheo9QzJb1uvzz45o1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22812\",\n    \"key\": \"34711\",\n    \"description\": \"a woman wearing a black hat is shouting.\"\n  },\n  {\n    \"video_name\": \"tumblr_naap6eJLbo1t2bkpqo1_500\",\n    \"question\": \"what are five boys in a science class looking or holding?\",\n    \"answer\": \"flasks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5203\",\n    \"key\": \"93485\",\n    \"description\": \"five boys in a science class are looking or holding flasks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbw7xf7Ttb1s4ea5ko1_250\",\n    \"question\": \"what is the color of the brushes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19923\",\n    \"key\": \"80815\",\n    \"description\": \"a man wears black brushes his teeth in a parking lot.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw5w8Ium11shns3io1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33157\",\n    \"key\": \"81693\",\n    \"description\": \"a woman wearing a purple jacket whipped it off real quick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagichuIGX1tvguuco1_250\",\n    \"question\": \"how many basketball teams are playing against each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25747\",\n    \"key\": \"53810\",\n    \"description\": \"these two basketball teams are playing against each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngh82hywbz1s4yzawo1_400\",\n    \"question\": \"what do three boys in leather jackets ride?\",\n    \"answer\": \"bus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52600\",\n    \"key\": \"9181\",\n    \"description\": \"three boys in leather jackets ride a red bus.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndurbh6w6U1rm0u6lo1_400\",\n    \"question\": \"what did the purple haired person hug?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39145\",\n    \"key\": \"58760\",\n    \"description\": \"a purple haired person hugged a tall tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_nao4codJpf1tdnw9bo1_400\",\n    \"question\": \"what is the color of the lady?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9015\",\n    \"key\": \"15264\",\n    \"description\": \"a black lady gets splashed in the face with a bucket of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0ll9YbS81un7qbto1_250\",\n    \"question\": \"what is the color of the wave?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9715\",\n    \"key\": \"1782\",\n    \"description\": \"a man is riding a skateboard on a fake blue wave.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney1qn9pP21ssuua8o1_250\",\n    \"question\": \"what is the man playing and singing a song?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25862\",\n    \"key\": \"31604\",\n    \"description\": \"a man is playing the guitar and singing a song.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtjxp216t1rkak8mo1_500\",\n    \"question\": \"what opens and two men walk out?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25618\",\n    \"key\": \"14818\",\n    \"description\": \"an elevator door opens and two men walk out.\"\n  },\n  {\n    \"video_name\": \"tumblr_neels4VnNo1u13kpoo1_250\",\n    \"question\": \"what is the man dancing and holding?\",\n    \"answer\": \"device\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8499\",\n    \"key\": \"5933\",\n    \"description\": \"the man is dancing and holding a device to make his voice sound louder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtbhyWjrF1twsxdzo1_400\",\n    \"question\": \"how many men sat in their car waving their hands around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41743\",\n    \"key\": \"78772\",\n    \"description\": \"two men sat in their car waving their hands around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbel8wk3Ts1qe6gfro1_400\",\n    \"question\": \"what is the color of the character?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49881\",\n    \"key\": \"60358\",\n    \"description\": \"A blue cartoon character with big eyes pretends to eat a man 's tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bz5ojRqc1t99fkdo1_400\",\n    \"question\": \"what is the person wearing a white face mask,\",\n    \"answer\": \"is riding through the house ? bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2879\",\n    \"key\": \"29183\",\n    \"description\": \"a person wearing a white face mask,\"\n  },\n  {\n    \"video_name\": \"tumblr_nckb7kU2K51tvnqzoo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45944\",\n    \"key\": \"35907\",\n    \"description\": \"a black shirtless man with a white hat is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn9fyd7VX1rr455so1_400\",\n    \"question\": \"what is the man in a white suit playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34937\",\n    \"key\": \"28361\",\n    \"description\": \"a man in a white suit is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxfvg7gBH1th1z7ro1_400\",\n    \"question\": \"where is the man in a brown suit dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41390\",\n    \"key\": \"33558\",\n    \"description\": \"a man in a brown suit is dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhxrqCzyf1qmig0no1_400\",\n    \"question\": \"what runs and jumps over two hurdles?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45211\",\n    \"key\": \"4107\",\n    \"description\": \"a horse runs and jumps over two hurdles.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0gavzs871s0p6l4o1_250\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33461\",\n    \"key\": \"7743\",\n    \"description\": \"a man with black glasses is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1vupGapa1tk2ngvo1_400\",\n    \"question\": \"what is laying on its back and playing with a persons fingers?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37244\",\n    \"key\": \"33988\",\n    \"description\": \"a kitten is laying on its back and playing with a persons fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_naipp52gMh1s5yrv2o1_400\",\n    \"question\": \"what is the color of the piece?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29512\",\n    \"key\": \"35259\",\n    \"description\": \"a woman smiles before wiping her face with a black piece of fabric.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzmf2VB71u25ovvo1_400\",\n    \"question\": \"what is driving down the road on a sunny day?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30889\",\n    \"key\": \"63494\",\n    \"description\": \"a white car is driving down a road on a sunny day.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqvdv6FpL1sr2c0to1_400\",\n    \"question\": \"how many men are talking one is looking very shocked?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14978\",\n    \"key\": \"64550\",\n    \"description\": \"two men are talking one is looking very shocked.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb982i8Liq1slwrsuo1_400\",\n    \"question\": \"what is jumping to the bush next to another dog?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1223\",\n    \"key\": \"37843\",\n    \"description\": \"a dog is jumping to a bush next to another dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wrdo0tex1tff33do1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26869\",\n    \"key\": \"35209\",\n    \"description\": \"a young woman is holding up an angry-looking black cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyabbLkZT1u59fpmo1_400\",\n    \"question\": \"where is the guy looking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11158\",\n    \"key\": \"79233\",\n    \"description\": \"a guy is looking straight in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njsuvl3MW11qi6uhso1_250\",\n    \"question\": \"what is full of intense,\",\n    \"answer\": \"bright lightning ? sky\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14987\",\n    \"key\": \"27442\",\n    \"description\": \"the sky is full of intense,\"\n  },\n  {\n    \"video_name\": \"tumblr_nr96lqiPla1u4e9dho1_500\",\n    \"question\": \"what is the man putting?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39497\",\n    \"key\": \"99905\",\n    \"description\": \"a man is putting his glasses scaring a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5x8c0GrZ1rtsaseo1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34620\",\n    \"key\": \"43276\",\n    \"description\": \"a man wearing black clothes,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7fmfQkTR1ry6fnao1_400\",\n    \"question\": \"what is the color of the team?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42181\",\n    \"key\": \"67442\",\n    \"description\": \"a soccer team dressed in white gets a goal on the blue team.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrd3vnKADH1uakailo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23420\",\n    \"key\": \"64496\",\n    \"description\": \"a girl in a purple dress is singing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxd36lfK11soklsio1_1280\",\n    \"question\": \"where did the woman and man kiss kiss.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47798\",\n    \"key\": \"81055\",\n    \"description\": \"a woman and man kiss kissed in a car in the rain.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtkw6qmuL1u6pwr8o2_r2_500\",\n    \"question\": \"how many young people in white shirts are carrying out a performance?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36325\",\n    \"key\": \"86491\",\n    \"description\": \"two young people in white shirts are carrying out a performance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9dmhTaWM1slwrsuo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44191\",\n    \"key\": \"76757\",\n    \"description\": \"a man with a blue shirt is having a problem opening a water bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e1u4tufS1qdb68yo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30678\",\n    \"key\": \"59766\",\n    \"description\": \"a young woman wearing a black hat is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8hkl5Vn171tgetb4o1_250\",\n    \"question\": \"what is eating from the bowl and a puppy is biting its ears?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49238\",\n    \"key\": \"27225\",\n    \"description\": \"a cat is eating from a bowl and a puppy is biting its ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfglj8pbh61s90br6o1_250\",\n    \"question\": \"where is the young lady looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19351\",\n    \"key\": \"51510\",\n    \"description\": \"a young lady is looking in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_no73q2fm0I1uuf348o1_250\",\n    \"question\": \"what is the color of the icing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33307\",\n    \"key\": \"27138\",\n    \"description\": \"small desserts with white icing are being garnished.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkryszFDPq1tvfpn9o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1929\",\n    \"key\": \"13358\",\n    \"description\": \"a blue eyed man talks and smiles confidently.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcotwcexW1u1teqeo1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52527\",\n    \"key\": \"8581\",\n    \"description\": \"a man in a red baseball cap is shaking his head from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxyf0KdgZ1u0b3uso1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27011\",\n    \"key\": \"88133\",\n    \"description\": \"a girl in a yellow hat waves her arms gestures and sings.\"\n  },\n  {\n    \"video_name\": \"tumblr_niu5dzNP7G1u62tooo1_400\",\n    \"question\": \"what is playing with the toy and looks up?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48380\",\n    \"key\": \"31034\",\n    \"description\": \"a dog is playing with a toy and looks up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbanbjaQeV1rkcp22o1_400\",\n    \"question\": \"what are the man and a woman holding?\",\n    \"answer\": \"umbrellas\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38623\",\n    \"key\": \"28963\",\n    \"description\": \"a man and a woman are holding blue umbrellas.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc9b4q2IM1sxapr1o1_500\",\n    \"question\": \"how many women are wearing identical jackets and holding hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8856\",\n    \"key\": \"56668\",\n    \"description\": \"two women are wearing identical jackets and holding hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc94ra2nr01r73xvvo1_500\",\n    \"question\": \"how many men start strutting down the isle at a fashion show?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35256\",\n    \"key\": \"62033\",\n    \"description\": \"two men start strutting down the isle at a fashion show.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbmj5hTe5U1tegtx7o1_400\",\n    \"question\": \"where are the group of cats racing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9562\",\n    \"key\": \"41227\",\n    \"description\": \"a group of cats are racing in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na403e8Ozd1qeda9uo1_400\",\n    \"question\": \"what sits on the dresser in a bedroom,\",\n    \"answer\": \"yawns then puts out its paw and pushes a jar off onto the floor ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12554\",\n    \"key\": \"55798\",\n    \"description\": \"a cat sits on a dresser in a bedroom,\"\n  },\n  {\n    \"video_name\": \"tumblr_nam2idMRyx1qkelnfo1_400\",\n    \"question\": \"what does the guy jump from the ramp over the rail?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42198\",\n    \"key\": \"66092\",\n    \"description\": \"the guy jumps his skateboard from the ramp over the rail.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqkzeml8y1unykvpo1_250\",\n    \"question\": \"what is the girl showing her dog?\",\n    \"answer\": \"cupcakes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13456\",\n    \"key\": \"19006\",\n    \"description\": \"the girl is showing her dog some cupcakes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr10n4blvp1qzefipo1_r1_400\",\n    \"question\": \"what sits in front of a woman who is doing a handstand?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46064\",\n    \"key\": \"76416\",\n    \"description\": \"a cat sits in front of a woman who is doing a handstand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hknn7k6k1rfh5aho1_500\",\n    \"question\": \"what is the color of the shadow?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12784\",\n    \"key\": \"52565\",\n    \"description\": \"a girl wearing blue eye shadow slowly closes her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqn09pgpYK1uzayvxo1_400\",\n    \"question\": \"how many women decide to kiss each other on a bed?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44930\",\n    \"key\": \"54039\",\n    \"description\": \"two women decide to kiss each other on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqkhzz8i841uzwc0eo1_500\",\n    \"question\": \"what is the woman walking on a ledge loses?\",\n    \"answer\": \"shoe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52471\",\n    \"key\": \"92675\",\n    \"description\": \"a woman walking on a ledge loses her shoe.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5wjxq0M31s71nvbo1_400\",\n    \"question\": \"how many men is this image of playing with fire?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23593\",\n    \"key\": \"45240\",\n    \"description\": \"this image is of two men playing with fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqr8fvbChQ1u0ql9oo1_500\",\n    \"question\": \"where are two women talking.\",\n    \"answer\": \"? house\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4542\",\n    \"key\": \"58093\",\n    \"description\": \"two women are talking in a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3qalChFT1u5d8nbo1_500\",\n    \"question\": \"how many girls kiss each other and walk to the doors of their rooms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14415\",\n    \"key\": \"69235\",\n    \"description\": \"two girls kiss each other and walk to the doors of their rooms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2j3elkE11ti5nreo1_250\",\n    \"question\": \"what is the woman wearing?\",\n    \"answer\": \"cloak\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27788\",\n    \"key\": \"26154\",\n    \"description\": \"the woman is wearing a hooded cloak.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngps4f7xik1smwx64o1_500\",\n    \"question\": \"what is the young woman in a black mask smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA894\",\n    \"key\": \"48187\",\n    \"description\": \"a young woman in a black mask is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2d03y10U1si6w6mo1_250\",\n    \"question\": \"what is the young man eating?\",\n    \"answer\": \"apple\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16464\",\n    \"key\": \"26952\",\n    \"description\": \"a young man is eating an apple.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kmf8j4gZ1snj1pfo1_500\",\n    \"question\": \"how many little girls are sitting and watching the little boy dance on television?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34530\",\n    \"key\": \"2948\",\n    \"description\": \"two little girls are sitting and watching a little boy dance on television.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk29kx3YYa1tmp8jxo1_500\",\n    \"question\": \"what is the well-dressed woman smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42561\",\n    \"key\": \"71292\",\n    \"description\": \"A well-dressed woman is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wsbjPwDe1rwrktro1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46681\",\n    \"key\": \"75407\",\n    \"description\": \"a man in a black coat waves and walks backward.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbe87urrf1tku5kko1_250\",\n    \"question\": \"what is the man swinging around and showing off?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12769\",\n    \"key\": \"38920\",\n    \"description\": \"a man is swinging his guitar around and showing off.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9sg3VuL11t107ayo1_400\",\n    \"question\": \"how many girls are bending over the table and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10130\",\n    \"key\": \"94319\",\n    \"description\": \"two girls are bending over a table and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkiqveRCuY1s6zpepo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6754\",\n    \"key\": \"43646\",\n    \"description\": \"the guy in the white shirt is painting on the face of the girl who is sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_noipe7K8wn1uvy8rfo1_500\",\n    \"question\": \"what pulls out into traffic using its blinker?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51561\",\n    \"key\": \"87621\",\n    \"description\": \"a red car pulls out into traffic using its blinker.\"\n  },\n  {\n    \"video_name\": \"tumblr_nawdliKwAp1tfcz5mo2_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11406\",\n    \"key\": \"56608\",\n    \"description\": \"a woman dressed in brown colored clothes is holding a sword as she does a flip.\"\n  },\n  {\n    \"video_name\": \"tumblr_njn45wPOVm1unvw6mo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7019\",\n    \"key\": \"13627\",\n    \"description\": \"a girl with long black hair is standing with her hand on her hip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8zzag5pK1tm2ntoo1_500\",\n    \"question\": \"where does the girl stick out her tongue.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50144\",\n    \"key\": \"81639\",\n    \"description\": \"a girl in a car sticks out her tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbd6dlVfS21tkhe6eo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49978\",\n    \"key\": \"98274\",\n    \"description\": \"a man in a gray suit is turning his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_neafznl88c1u1k47uo1_250\",\n    \"question\": \"what is the girl with black top smoking and another girl moves backwards and hits?\",\n    \"answer\": \"wall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3167\",\n    \"key\": \"36680\",\n    \"description\": \"a girl with black top is smoking and another girl moves backwards and hits a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ensmVNvD1ttu918o1_500\",\n    \"question\": \"where is the man making a gun gesture with his hands and then falling backwards.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7387\",\n    \"key\": \"100105\",\n    \"description\": \"a man is making a gun gesture with his hands and then falling backwards in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0b2lDGef1tp9bieo1_500\",\n    \"question\": \"how many women are holding hands while singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8805\",\n    \"key\": \"20330\",\n    \"description\": \"two women are holding hands while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn45o8Lso1sl4ny1o1_400\",\n    \"question\": \"how many man are sitting down and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23236\",\n    \"key\": \"37681\",\n    \"description\": \"two man are sitting down and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne15z6JtB31qdl31go1_250\",\n    \"question\": \"what is the young man holding?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41150\",\n    \"key\": \"6499\",\n    \"description\": \"a young man is holding his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngnw7hrGPi1u60vhlo1_400\",\n    \"question\": \"what does the person with a blue painted face wear while sitting in front of a christmas tree?\",\n    \"answer\": \"horns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51282\",\n    \"key\": \"33756\",\n    \"description\": \"a person with a blue painted face wears horns while sitting in front of a christmas tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_np8fpolVPv1uvid27o1_1280\",\n    \"question\": \"what is racing down the street at night?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51834\",\n    \"key\": \"65265\",\n    \"description\": \"a car is racing down the street at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxxhzcV1v1r7kne1o1_400\",\n    \"question\": \"how many women in purple skirts are dancing on stage?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26052\",\n    \"key\": \"91556\",\n    \"description\": \"five women in purple skirts are dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfd3x2AVM91u2rlp7o1_250\",\n    \"question\": \"what is lifting its legs up before sinking between two cushions?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39635\",\n    \"key\": \"9346\",\n    \"description\": \"a cat is lifting its legs up before sinking between two cushions.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzgpnYwQD1qibh0io1_250\",\n    \"question\": \"how many woman go face to face in a heated moment?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13193\",\n    \"key\": \"49609\",\n    \"description\": \"two woman go face to face in a heated moment.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadd8dv4Ho1s34j90o1_400\",\n    \"question\": \"where are two people dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22466\",\n    \"key\": \"57968\",\n    \"description\": \"two people are dancing together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nki24gDtbq1u554gyo1_500\",\n    \"question\": \"what does the man hold up?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45858\",\n    \"key\": \"74869\",\n    \"description\": \"a man holds his cat up while it tries to catch a bug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncw1h7V8au1rmdsrwo1_400\",\n    \"question\": \"what is the dog making?\",\n    \"answer\": \"trick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14283\",\n    \"key\": \"63248\",\n    \"description\": \"the dog is making the paw trick.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdu2a1Q4s1terae6o1_500\",\n    \"question\": \"what are the guy and girl having?\",\n    \"answer\": \"date\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17334\",\n    \"key\": \"100516\",\n    \"description\": \"a guy and girl are having a coffee date.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgnrucLOa1r0ia88o1_400\",\n    \"question\": \"what does the blonde woman pick up a purse and coat then opens?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47350\",\n    \"key\": \"94553\",\n    \"description\": \"a blonde woman picks up a purse and coat then opens a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nka7mjdwMC1tgj32eo1_250\",\n    \"question\": \"what is the man sitting with a drink in front of him?\",\n    \"answer\": \"bar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41563\",\n    \"key\": \"7434\",\n    \"description\": \"a man is sitting a bar with a drink in front of him.\"\n  },\n  {\n    \"video_name\": \"tumblr_n89x91hNuc1t0k260o1_400\",\n    \"question\": \"how many men are hopping down the grassy slope?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50302\",\n    \"key\": \"74034\",\n    \"description\": \"three men are hopping down a grassy slope.\"\n  },\n  {\n    \"video_name\": \"tumblr_nariz0niLN1tbdnaro1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10083\",\n    \"key\": \"62341\",\n    \"description\": \"a kid in a red shirt is setting a newspaper on fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6fhzbqGt1typnbho1_400\",\n    \"question\": \"what is the man drinking and,\",\n    \"answer\": \"he is talking to a woman ? beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6162\",\n    \"key\": \"32037\",\n    \"description\": \"a man is drinking a beer and,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfscrpUrfv1u4v3ypo1_250\",\n    \"question\": \"what is cleaning its paw and stops with its tongue sticking out?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50497\",\n    \"key\": \"55669\",\n    \"description\": \"a cat is cleaning its paw and stops with its tongue sticking out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp36t1GRR1tod7hho1_400\",\n    \"question\": \"what is the man with a striped shirt taking off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8446\",\n    \"key\": \"32577\",\n    \"description\": \"a man with a striped shirt is taking off his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr6r0mgIj01qdqijqo1_400\",\n    \"question\": \"what does the woman on the phone see driving through her window?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17563\",\n    \"key\": \"60876\",\n    \"description\": \"a woman on the phone sees a car driving through her window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnq4tzM7M51urqm0mo1_500\",\n    \"question\": \"how many planes are flying over the desert?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31129\",\n    \"key\": \"85138\",\n    \"description\": \"two planes are flying over a desert.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9m2vceX821rrc0yzo1_500\",\n    \"question\": \"what does the man with an ugly face remove?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2062\",\n    \"key\": \"22915\",\n    \"description\": \"a man with an ugly face removes his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nooov5ZSds1un86uao1_400\",\n    \"question\": \"where is the girl wearing lipstick and a man is going.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34757\",\n    \"key\": \"15396\",\n    \"description\": \"a girl is wearing lipstick and a man is going in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndq73y7mT21u1hp4lo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1133\",\n    \"key\": \"97252\",\n    \"description\": \"a white man with black hair is making up.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9n8owFIkV1se1vi6o1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7927\",\n    \"key\": \"47029\",\n    \"description\": \"a girl in a blue sweater has a peace sign raised.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2mbwe4XI1rfbfb1o1_400\",\n    \"question\": \"what are many people riding up on horseback?\",\n    \"answer\": \"hill\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17357\",\n    \"key\": \"54103\",\n    \"description\": \"many people are riding up a flaming hill on horseback.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9rdfabh31slj978o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31595\",\n    \"key\": \"24340\",\n    \"description\": \"a man in a white suit is waving his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngz9h8TxpG1qe2thio1_500\",\n    \"question\": \"what is jumping over the horizontal pole?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45184\",\n    \"key\": \"75325\",\n    \"description\": \"a horse is jumping over a horizontal pole.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8v9ubRZEM1qkep7so1_400\",\n    \"question\": \"what is sniffing around as it gets petted?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23293\",\n    \"key\": \"28951\",\n    \"description\": \"the cat is sniffing around as it gets petted.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes3koGSue1s2cbf9o1_250\",\n    \"question\": \"how many woman looks at the other woman in shock?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9176\",\n    \"key\": \"47312\",\n    \"description\": \"one woman looks at the other woman in shock.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qp6qt1ZD1qa2n7ao1_400\",\n    \"question\": \"where is the girl getting bored.\",\n    \"answer\": \"? bar\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37949\",\n    \"key\": \"19039\",\n    \"description\": \"a girl is getting bored in a bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9x10wA8li1rfjpv9o1_400\",\n    \"question\": \"where is the woman dancing while a man is scarred.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7093\",\n    \"key\": \"75556\",\n    \"description\": \"a woman is dancing in the room while a man is scarred.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndk9uvBSzG1rnjm0co1_250\",\n    \"question\": \"what is struggling to get a tube off of its head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35075\",\n    \"key\": \"69793\",\n    \"description\": \"a cat struggling to get a tube off of its head.\"\n  },\n  {\n    \"video_name\": \"tumblr_njdw25fiSS1s407lzo1_500\",\n    \"question\": \"how many men in jackets are staring and moving?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19555\",\n    \"key\": \"101501\",\n    \"description\": \"two men in jackets are staring and moving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg6vkuI8y1tgetb4o1_250\",\n    \"question\": \"what is climbing into the bag?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45960\",\n    \"key\": \"53401\",\n    \"description\": \"a black and white cat is climbing into a bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndopa89squ1tk9tvao1_500\",\n    \"question\": \"what is walking on her back two feet and pushing a walker?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28118\",\n    \"key\": \"94715\",\n    \"description\": \"a cat is walking on her back two feet and pushing a walker.\"\n  },\n  {\n    \"video_name\": \"tumblr_nao9dwfbWL1tbsc6ko1_500\",\n    \"question\": \"how many fingers is the man holding up near a large truck?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1188\",\n    \"key\": \"70936\",\n    \"description\": \"a man is holding up two fingers near a large truck.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp4kpFCzP1re05rso1_540\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12105\",\n    \"key\": \"96740\",\n    \"description\": \"a young man with a black cap is on stage and is doing a turn.\"\n  },\n  {\n    \"video_name\": \"tumblr_na405oJNXw1s7shqdo1_250\",\n    \"question\": \"how many men are holding each other and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11004\",\n    \"key\": \"16375\",\n    \"description\": \"the two men are holding each other and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrf04cgRUC1ub19xmo1_400\",\n    \"question\": \"what is looking at the cucumber given to him?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2483\",\n    \"key\": \"52346\",\n    \"description\": \"a cat is looking at the cucumber given to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrv3tLHp11t2zhh8o1_100\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12326\",\n    \"key\": \"15895\",\n    \"description\": \"a woman wearing a white top,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk32pnnazT1skvgwao1_400\",\n    \"question\": \"what is the color of the side?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23597\",\n    \"key\": \"83387\",\n    \"description\": \"two men dressed in black walk side by side.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9vnzjRAl1tt3h8co1_250\",\n    \"question\": \"what is the color of the towel?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2820\",\n    \"key\": \"7859\",\n    \"description\": \"a man with white towel over his shoulder is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nopvobSus81qjdy9xo1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA295\",\n    \"key\": \"59626\",\n    \"description\": \"a white girl with black hair is talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqz2rd3kpm1ur7v4wo1_400\",\n    \"question\": \"how many people jump into the pool fully clothed and then hold each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25706\",\n    \"key\": \"60168\",\n    \"description\": \"two people jump into a pool fully clothed and then hold each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyncrvBNm1r9vyoko1_500\",\n    \"question\": \"what does the man playing chess with a kid knock off?\",\n    \"answer\": \"pieces\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36163\",\n    \"key\": \"50377\",\n    \"description\": \"a man playing chess with a kid knocks off the pieces.\"\n  },\n  {\n    \"video_name\": \"tumblr_niq18pqr9L1s6zpepo1_400\",\n    \"question\": \"what stands on two legs and scratches itself on the stomach?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51275\",\n    \"key\": \"28033\",\n    \"description\": \"a cat stands on two legs and scratches itself on the stomach.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndtrd80C3P1s02qi2o1_500\",\n    \"question\": \"where is the people watching a beautiful landscape.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31007\",\n    \"key\": \"75587\",\n    \"description\": \"a people is watching a beautiful landscape in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2hgxbjKw1t1ijxmo1_1280\",\n    \"question\": \"what is kissed by the boy FRAMEQAeatedly?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24121\",\n    \"key\": \"56263\",\n    \"description\": \"a little white dog is kissed by a boy FRAMEQAeatedly.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndou4ocoom1qkh9mno1_500\",\n    \"question\": \"how many people are smiling and laughing beside another person?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA717\",\n    \"key\": \"89736\",\n    \"description\": \"two people are smiling and laughing beside another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncczjfdwFt1tav0gmo1_500\",\n    \"question\": \"what are posing in front of a brick wall?\",\n    \"answer\": \"stars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18345\",\n    \"key\": \"93175\",\n    \"description\": \"six pop stars are posing in front of a brick wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkh1k0vBMX1thjunio1_400\",\n    \"question\": \"how many guys is sitting in a car jerk forward and shake their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6431\",\n    \"key\": \"60945\",\n    \"description\": \"two guys sitting in a car jerk forward and shake their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx4zeo6jf1skxa1uo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10013\",\n    \"key\": \"42730\",\n    \"description\": \"a young lady with a green hat is speaking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vrrw9ndC1t8amt8o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA987\",\n    \"key\": \"75390\",\n    \"description\": \"a woman in red jacket turns to admire another woman speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng486l8Fhx1u3n62mo1_400\",\n    \"question\": \"how many girls are smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37261\",\n    \"key\": \"89980\",\n    \"description\": \"two girls are smiling and dancing together,\"\n  },\n  {\n    \"video_name\": \"tumblr_naz1gjhCtv1rl8ttqo1_500\",\n    \"question\": \"what is the guy walking?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42483\",\n    \"key\": \"81910\",\n    \"description\": \"the guy is walking his bike as he talks on the phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sxngq7FO1tq1ky8o1_250\",\n    \"question\": \"how many men is this wrestling with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9867\",\n    \"key\": \"48622\",\n    \"description\": \"this is two men wrestling with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_njsav5UOz21qieqojo1_400\",\n    \"question\": \"where is the girl lying and blinking her eyes.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24728\",\n    \"key\": \"80301\",\n    \"description\": \"a girl is lying in a bed and blinking her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nor474fCEo1slwrsuo1_250\",\n    \"question\": \"what does the boy play with a dog and jumps on top of him on the floor?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18825\",\n    \"key\": \"36784\",\n    \"description\": \"a boy plays with a dog and the dog jumps on top of him on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2rbqVOeq1tgwuamo1_250\",\n    \"question\": \"what is the color of the floor?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34321\",\n    \"key\": \"69601\",\n    \"description\": \"a bunny is rolling around on a white floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sh1pn4ju1sgl6u3o1_250\",\n    \"question\": \"where are 3 boys dancing and singing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18883\",\n    \"key\": \"17230\",\n    \"description\": \"3 boys are dancing and singing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb55ousBnz1r67t5oo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37820\",\n    \"key\": \"96008\",\n    \"description\": \"a bearded white man is staring while he sings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb80spNot51tdmffyo1_400\",\n    \"question\": \"what does the bird push into a bin?\",\n    \"answer\": \"tortoise\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22521\",\n    \"key\": \"22894\",\n    \"description\": \"a bird pushes a tortoise into a bin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjwktzR2M1u5fpulo1_250\",\n    \"question\": \"what is the color of the dances?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5270\",\n    \"key\": \"53381\",\n    \"description\": \"a man dressed in black dances around while flipping his hair back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_npbpeoglhd1tqpu60o1_400\",\n    \"question\": \"how many people are practicing the dance routine?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12546\",\n    \"key\": \"61655\",\n    \"description\": \"two people are practicing a dance routine.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pw7xpB2d1qbzxofo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32440\",\n    \"key\": \"70470\",\n    \"description\": \"a man with blue shirt is break dancing on a highway,\"\n  },\n  {\n    \"video_name\": \"tumblr_ninb3wGwKn1stnum9o1_400\",\n    \"question\": \"where is the girl dancing very funny.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18156\",\n    \"key\": \"30569\",\n    \"description\": \"a girl is dancing very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_novlokWmWb1t6t8bgo1_540\",\n    \"question\": \"how many men are singing and dancing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23119\",\n    \"key\": \"93683\",\n    \"description\": \"two men are singing and dancing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9v07TxUL1sjcvc1o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15197\",\n    \"key\": \"84536\",\n    \"description\": \"a man in a black shirt is holding a sheet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx7tgZGUP1rm1lhro1_500\",\n    \"question\": \"how many guys with sunglasses on give the peace sign?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49280\",\n    \"key\": \"101620\",\n    \"description\": \"three guys with sunglasses on give the peace sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9l6t6WLLm1shsozuo1_500\",\n    \"question\": \"how many people are in the car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15232\",\n    \"key\": \"88496\",\n    \"description\": \"two people are in a car and one is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nev5jcwSOk1u25ovvo1_400\",\n    \"question\": \"what is driving down the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35951\",\n    \"key\": \"63427\",\n    \"description\": \"a gray car is driving down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_na29ckRUG81tso4bpo1_250\",\n    \"question\": \"what is chasing his own tail?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50436\",\n    \"key\": \"11168\",\n    \"description\": \"a dog is chasing his own tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhskwbxgar1rseg36o1_250\",\n    \"question\": \"what jumps after its bowl flips over,\",\n    \"answer\": \"and the bowl disappears ? dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25088\",\n    \"key\": \"3286\",\n    \"description\": \"a dog jumps after its bowl flips over,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrljkbZSIC1u5qz70o1_500\",\n    \"question\": \"what is the color of the polo?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6242\",\n    \"key\": \"43507\",\n    \"description\": \"a man wearing a green polo and khakis is dancing with a black background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwbkvxn0I1qji9umo1_500\",\n    \"question\": \"what is the color of the brush?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6768\",\n    \"key\": \"83993\",\n    \"description\": \"the man with the black hair is brushing his teeth with a yellow tooth brush.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ms6r9wt71tis8iio1_400\",\n    \"question\": \"what stretches over trees and a road?\",\n    \"answer\": \"bridge\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38608\",\n    \"key\": \"4457\",\n    \"description\": \"a bridge stretches over trees and a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n912asItBL1t5f5kyo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA155\",\n    \"key\": \"2974\",\n    \"description\": \"a man in a white shirt is dancing and holding a mic.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfas3aICsP1ql0sfgo1_500\",\n    \"question\": \"what is the man slowly moving?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1100\",\n    \"key\": \"55823\",\n    \"description\": \"a man is slowly moving a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_n980h4IWmV1tht4eto1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34520\",\n    \"key\": \"40248\",\n    \"description\": \"a man in a blue suit is hopping around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjnj8Qryj1r9w93fo1_500\",\n    \"question\": \"how many girls is this slowly sticking out their tongues?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7570\",\n    \"key\": \"28474\",\n    \"description\": \"this is two girls slowly sticking out their tongues.\"\n  },\n  {\n    \"video_name\": \"tumblr_na18cqVtG31sd26g0o1_500\",\n    \"question\": \"what is kicking another from in the face?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14420\",\n    \"key\": \"53182\",\n    \"description\": \"a frog is kicking another from in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqj7ahVNOh1uvie7bo1_400\",\n    \"question\": \"what is taking the bath with some rubber ducks?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36624\",\n    \"key\": \"32783\",\n    \"description\": \"a dog is taking a bath with some rubber ducks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8e43eKN01r38k4eo1_500\",\n    \"question\": \"how many men are having the discussion and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5367\",\n    \"key\": \"58370\",\n    \"description\": \"two men are having a discussion and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npzronrVMY1u66yx8o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4598\",\n    \"key\": \"22800\",\n    \"description\": \"a woman with long black hair and a short blue top is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vr1xjmof1tdmffyo1_250\",\n    \"question\": \"what is in the drawer and playing with a person holding a pen?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22970\",\n    \"key\": \"27920\",\n    \"description\": \"a cat is in a drawer and playing with a person holding a pen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7t1vdt1z1s1h8hno1_250\",\n    \"question\": \"what is the man in a suit adjusting?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8561\",\n    \"key\": \"3800\",\n    \"description\": \"a man in a suit is adjusting his tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5uo6rEEc1rv06c2o1_250\",\n    \"question\": \"what are two beautiful women clinking with great joy?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38824\",\n    \"key\": \"32590\",\n    \"description\": \"two beautiful women are clinking wine glasses with great joy.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uqen1tDV1sfmhxao1_400\",\n    \"question\": \"what is eating food from a green bowl?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50248\",\n    \"key\": \"63448\",\n    \"description\": \"a brown dog is eating food from a green bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffknrYHRF1tnkfuxo1_500\",\n    \"question\": \"how many people lie on the couch,\",\n    \"answer\": \"with one of them embracing the other from behind ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22128\",\n    \"key\": \"96520\",\n    \"description\": \"two people lie on a couch,\"\n  },\n  {\n    \"video_name\": \"tumblr_neu5ybxkBL1tia84ho1_r2_1280\",\n    \"question\": \"what is the snake hugging with her body?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16355\",\n    \"key\": \"61746\",\n    \"description\": \"a snake is hugging the tree with her body.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2o4pgPu71soax42o1_400\",\n    \"question\": \"what is wearing headphones and is taking out?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49531\",\n    \"key\": \"90593\",\n    \"description\": \"a dog is wearing headphones and is taking out.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jmetkIAR1r3tyyjo1_250\",\n    \"question\": \"how many robot is shooting at another robot as a car flips over?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48748\",\n    \"key\": \"50898\",\n    \"description\": \"one robot is shooting at another robot as a car flips over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2n5xYQmY1tdjuqvo1_500\",\n    \"question\": \"what is walking on his front paws?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4025\",\n    \"key\": \"69298\",\n    \"description\": \"a dog is walking on his front paws.\"\n  },\n  {\n    \"video_name\": \"tumblr_nai6yrCMc21tikvlso1_250\",\n    \"question\": \"what sat on the chair?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26672\",\n    \"key\": \"30763\",\n    \"description\": \"a fat orange cat sat on a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_niukh2aLWX1s5eb1go1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41064\",\n    \"key\": \"57258\",\n    \"description\": \"a young man in a black shirt is talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkv34KrwC1uxdjhyo1_500\",\n    \"question\": \"what is the long-haired man playing?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49761\",\n    \"key\": \"39152\",\n    \"description\": \"a long-haired man is playing the piano.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncy0evJB7f1sec9ebo1_400\",\n    \"question\": \"where are the men milling about.\",\n    \"answer\": \"? hall\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10582\",\n    \"key\": \"85959\",\n    \"description\": \"the men are milling about in the crowded hall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepj4rr5Sb1sht3fmo1_250\",\n    \"question\": \"what is the woman wearing glasses and drinks?\",\n    \"answer\": \"coffee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3955\",\n    \"key\": \"86270\",\n    \"description\": \"a woman is wearing glasses and drinks coffee.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rxpzPdkD1sl4h58o1_500\",\n    \"question\": \"how many young guys are crawling on their knees?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15055\",\n    \"key\": \"96083\",\n    \"description\": \"four young guys are crawling on their knees.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lh8xQHCe1seb31ro1_500\",\n    \"question\": \"how many people are standing in an empty stadium and waving?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15703\",\n    \"key\": \"91548\",\n    \"description\": \"three people are standing in an empty stadium and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9rffF91i1tul4jlo1_250\",\n    \"question\": \"what does the man in red hold?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA202\",\n    \"key\": \"9054\",\n    \"description\": \"a man in red holds a yellow shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95fffMAzD1ssybv1o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5780\",\n    \"key\": \"32383\",\n    \"description\": \"a woman in a blue top with glasses shrugs and rests her elbow on her knee.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni05so1zMe1qagkngo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34607\",\n    \"key\": \"54924\",\n    \"description\": \"a young man in all black is dancing and singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtro0gBQR1tkpzw0o1_400\",\n    \"question\": \"what does the man throw and another does a back flip?\",\n    \"answer\": \"peel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34151\",\n    \"key\": \"19682\",\n    \"description\": \"a man throws a banana peel and another does a back flip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkqn8quHM1rlpke5o1_250\",\n    \"question\": \"what is someone using?\",\n    \"answer\": \"cutter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4324\",\n    \"key\": \"43955\",\n    \"description\": \"someone is using a pizza cutter to slice a pizza.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfqzsmdHTC1s70xu2o1_500\",\n    \"question\": \"what is swerving down the highway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38647\",\n    \"key\": \"75116\",\n    \"description\": \"a fast car is swerving down a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9owcumLu21tiyxk9o1_400\",\n    \"question\": \"how many men jump and fall on the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35736\",\n    \"key\": \"98117\",\n    \"description\": \"two men jump and fall on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyot5SBCc1u2w55do1_250\",\n    \"question\": \"where does the girl in a jacket and hat sit down.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA2349\",\n    \"key\": \"10185\",\n    \"description\": \"a girl in a jacket and hat sits down in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0ttcs6US1s9rulno1_400\",\n    \"question\": \"how many men are hugging each other after a game?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3708\",\n    \"key\": \"78934\",\n    \"description\": \"two men are hugging each other after a game.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko38yTj0p1u5tusoo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15979\",\n    \"key\": \"54430\",\n    \"description\": \"a man wearing a blue shirt is chewing and nodding.\"\n  },\n  {\n    \"video_name\": \"tumblr_nel8hyd16P1u1bpwwo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3050\",\n    \"key\": \"87119\",\n    \"description\": \"a boy wearing a green hat and a headset is talking to another boy and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmcu4vUJJd1sgkvddo1_400\",\n    \"question\": \"how many boys are riding the motorcycle down a road?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43646\",\n    \"key\": \"85530\",\n    \"description\": \"two boys are riding a motorcycle down a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pk4lxsBA1tfou2zo1_400\",\n    \"question\": \"where is the young man waving his hands.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31013\",\n    \"key\": \"69872\",\n    \"description\": \"a young man is waving his hands in his room.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkxhturUR1uxcyego1_400\",\n    \"question\": \"what does the man draw with his hand?\",\n    \"answer\": \"circle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36483\",\n    \"key\": \"73594\",\n    \"description\": \"a man draws a circle with his hand while another man strokes his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu6ssZLZI1thwotuo1_400\",\n    \"question\": \"what does the man on stage dance and wears?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46052\",\n    \"key\": \"59095\",\n    \"description\": \"a man on stage dances and wears sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwiwlV1AJ1u992i0o1_500\",\n    \"question\": \"where is the blond haired girl the only female.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42923\",\n    \"key\": \"93075\",\n    \"description\": \"the blond haired girl is the only female in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf94tXA8J1rjqtkto1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48576\",\n    \"key\": \"83663\",\n    \"description\": \"a black man is shouting out of a jail cell.\"\n  },\n  {\n    \"video_name\": \"tumblr_nquqvaPA8u1uzs8n5o1_400\",\n    \"question\": \"what is dancing beautifully?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16232\",\n    \"key\": \"86932\",\n    \"description\": \"a man wearing hat is dancing beautifully.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg50jiutg1sa6fwjo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6571\",\n    \"key\": \"63849\",\n    \"description\": \"a man in a wet blue shirt runs into something and falls down on his back.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zn52IWcy1qcohbro1_400\",\n    \"question\": \"where is the sad looking woman lying.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21651\",\n    \"key\": \"50343\",\n    \"description\": \"a sad looking woman is lying in a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nompyfnbMq1rbddn1o1_500\",\n    \"question\": \"how many men on their knees is gyrating and pulling their shirts up?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3595\",\n    \"key\": \"83478\",\n    \"description\": \"five men on their knees is gyrating and pulling their shirts up.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf5g9uK0E1tjtk3vo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24835\",\n    \"key\": \"16675\",\n    \"description\": \"a girl with a red jacket opens a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_noch808AgN1s5t003o1_400\",\n    \"question\": \"what is the color of the uniforms?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34908\",\n    \"key\": \"14889\",\n    \"description\": \"a team wearing orange uniforms celebrates a win.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxrm7mWU81to8r9ro1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20937\",\n    \"key\": \"38935\",\n    \"description\": \"a woman with long brown hair speaks with a FRAMEQAorter.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9khtlxFWW1t7hjz2o1_400\",\n    \"question\": \"what is jumping while the woman plays pool?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17639\",\n    \"key\": \"20950\",\n    \"description\": \"a dog is jumping while a woman plays pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nga6l7burm1u2umgdo1_400\",\n    \"question\": \"what is the woman with red hair petting?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42943\",\n    \"key\": \"30690\",\n    \"description\": \"a woman with red hair is petting the cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhukmkiiN81u761kgo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6895\",\n    \"key\": \"35083\",\n    \"description\": \"a woman who is wearing all black speaks and laughs while wearing sunglasses with a missing lens.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczg2aOKa01tugd7xo1_400\",\n    \"question\": \"what rolls through and men fight fought it kicked it in the kick?\",\n    \"answer\": \"tire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48519\",\n    \"key\": \"19074\",\n    \"description\": \"a tire rolls through and men fight fought it kicked it in the kick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelh3nATly1tte9eno1_400\",\n    \"question\": \"what does the wrestler rip off and then a basketball player rips his shirt off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28265\",\n    \"key\": \"40152\",\n    \"description\": \"a wrestler rips his shirt off and then a basketball player rips his shirt off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabhgxpYfE1tjaic7o1_r1_400\",\n    \"question\": \"what is the young man kicking with his foot?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40110\",\n    \"key\": \"26368\",\n    \"description\": \"a young man is kicking a ball with his foot.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xhwswWAH1qi4n2uo1_500\",\n    \"question\": \"what are two men holding microphones dance and bump together?\",\n    \"answer\": \"butts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15399\",\n    \"key\": \"83905\",\n    \"description\": \"two men holding microphones dance and bump their butts together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s2wj3j9W1s0vm19o1_400\",\n    \"question\": \"how many people does there 's in a car with one holding a can upside down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37362\",\n    \"key\": \"54442\",\n    \"description\": \"There 's two people in a car with one holding a can upside down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc26g4HOAa1qcmk4ho1_250\",\n    \"question\": \"what is the man in a tan top turning around and putting into his mouth?\",\n    \"answer\": \"pipe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40740\",\n    \"key\": \"26086\",\n    \"description\": \"a man in a tan top is turning around and putting a pipe into his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdrtjoyYK1tsmfzoo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5898\",\n    \"key\": \"30461\",\n    \"description\": \"person with black hat and thick eyeglasses is making obscene gestures and sticking out tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0veseCZt1ut16xzo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35787\",\n    \"key\": \"67036\",\n    \"description\": \"a man in black is looking at another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0mqwuaNb1tz6rpdo1_r1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40636\",\n    \"key\": \"31217\",\n    \"description\": \"a woman with red hair was waving her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbogvmaBEI1szmt4vo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34510\",\n    \"key\": \"60874\",\n    \"description\": \"a boy in a blue shirt is sitting alone singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb40r2QeXA1sky5jwo1_500\",\n    \"question\": \"what is the young man with blonde hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52498\",\n    \"key\": \"78616\",\n    \"description\": \"a young man with blonde hair is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3tfgU9Ir1srvjxao1_400\",\n    \"question\": \"where is the woman sitting and he rolls up the window.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21345\",\n    \"key\": \"27347\",\n    \"description\": \"a woman is sitting in a car and he rolls up the window.\"\n  },\n  {\n    \"video_name\": \"tumblr_naiwug6sJp1slwrsuo1_400\",\n    \"question\": \"what quickly scooped its head into the water and pulled out a fish for its dinner?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41881\",\n    \"key\": \"24088\",\n    \"description\": \"the bird quickly scooped its head into the water and pulled out a fish for its dinner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7ojsshQ11tfts6to1_400\",\n    \"question\": \"what does the man slam against the wall?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29647\",\n    \"key\": \"23742\",\n    \"description\": \"a man slams his phone against the wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nreb388PeN1rb1qd6o1_250\",\n    \"question\": \"how many people hold faces before hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29629\",\n    \"key\": \"4298\",\n    \"description\": \"the two people hold faces before hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngx9rcVWEc1qdlgqgo1_250\",\n    \"question\": \"how many people are holding hands and then let go?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51838\",\n    \"key\": \"95667\",\n    \"description\": \"two people are holding hands and then let go.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndii8agRre1qegwm1o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26234\",\n    \"key\": \"89932\",\n    \"description\": \"woman with black hair is moving to man with white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoxxkqbhT1rmkveto2_250\",\n    \"question\": \"what is putting on the performance?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35463\",\n    \"key\": \"14042\",\n    \"description\": \"a female pop star is putting on a performance.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngbwfkoLMR1tdmffyo1_250\",\n    \"question\": \"how many men stare at each other while one of them rages?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3036\",\n    \"key\": \"39619\",\n    \"description\": \"four men stare at each other while one of them rages.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96zc72rII1tdjuqvo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35333\",\n    \"key\": \"72856\",\n    \"description\": \"a man wearing a red shirt hits himself in the face with a yo-yo.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbeo6Qqr91tl8fnfo1_400\",\n    \"question\": \"where is the dog dancing and jumping at the fence.\",\n    \"answer\": \"? pen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40587\",\n    \"key\": \"80040\",\n    \"description\": \"a dog in an enclosed pen is dancing and jumping at the fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jqueST511rap838o1_250\",\n    \"question\": \"how many people are kissing each other on a bed?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42265\",\n    \"key\": \"230\",\n    \"description\": \"two people are kissing each other on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjeasMqCh1up0xtfo1_500\",\n    \"question\": \"how many guy is turning his head towards another guy?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21411\",\n    \"key\": \"101105\",\n    \"description\": \"one guy is turning his head towards another guy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdwc4MSz61tdjuqvo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41673\",\n    \"key\": \"65180\",\n    \"description\": \"a boy on a red shirt was doing tricks on a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0bdooxmU1uwhbn9o1_540\",\n    \"question\": \"what is the color of the playing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2352\",\n    \"key\": \"100317\",\n    \"description\": \"a teenager is wearing black playing the drums on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndro45f3DA1qhn9jdo1_400\",\n    \"question\": \"what is trying to catch something while another dog is holding it from the back?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42925\",\n    \"key\": \"81160\",\n    \"description\": \"a beautiful dog is trying to catch something while another dog is holding it from the back.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoz5kE1ov1u5n6bno1_250\",\n    \"question\": \"what are the women walking up,\",\n    \"answer\": \"they move slowly ? stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2990\",\n    \"key\": \"75192\",\n    \"description\": \"the women are walking up the stairs,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpdznqThh1tyu471o1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28858\",\n    \"key\": \"29159\",\n    \"description\": \"a woman dressed in black is putting her fingers by her mouth and sticking her tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad5toBHv81s2mb0qo1_500\",\n    \"question\": \"what is looking at another cat which is in a box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17372\",\n    \"key\": \"62745\",\n    \"description\": \"a cat is looking at another cat which is in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnk8xylP9g1u5qahro1_1280\",\n    \"question\": \"what is moving towards to other cats?\",\n    \"answer\": \"kitty\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA793\",\n    \"key\": \"54164\",\n    \"description\": \"a kitty is moving towards to other cats.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwe4dqtcz1tksttyo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43170\",\n    \"key\": \"65099\",\n    \"description\": \"a man in a black suit is holding an umbrella for a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2y4ck75p1taqrn1o1_500\",\n    \"question\": \"what is the man with a suit putting down?\",\n    \"answer\": \"pen\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18728\",\n    \"key\": \"38821\",\n    \"description\": \"a man with a suit is putting his pen down while scratching his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fxbgYr0K1rvpycko1_250\",\n    \"question\": \"how many young men gives cheers with their drink while overlooking the water?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26854\",\n    \"key\": \"53726\",\n    \"description\": \"two young men gives cheers with their drink while overlooking the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nca3neyJbm1retkdpo1_500\",\n    \"question\": \"what do two people walk and the one moves his coat to the side and grabs?\",\n    \"answer\": \"guns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10011\",\n    \"key\": \"99129\",\n    \"description\": \"two people walk and the one moves his coat to the side and grabs his guns.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkto6fCkCn1r0ia88o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21066\",\n    \"key\": \"80125\",\n    \"description\": \"a handsome man with black hat and blue shirt is talking and turning his head to another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7x7kwbn51tg5klqo1_250\",\n    \"question\": \"where does the man look down and talks and the woman is riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49786\",\n    \"key\": \"36639\",\n    \"description\": \"the man looks down and talks and the woman is riding in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoz5kE1ov1u5n6bno1_250\",\n    \"question\": \"how many people are going up the stair case?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51871\",\n    \"key\": \"75192\",\n    \"description\": \"two people are going up a stair case.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkidy4Ldfk1t47dz3o1_400\",\n    \"question\": \"how many women are drinking hot beverages at a table?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31014\",\n    \"key\": \"91568\",\n    \"description\": \"two women are drinking hot beverages at a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh1deqvo01tl6l5bo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8851\",\n    \"key\": \"78595\",\n    \"description\": \"two men with black hair are parading.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh6btDTyY1r38hk2o1_400\",\n    \"question\": \"what is drinking and lying down on the power line when he falls and has to grab the line?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31619\",\n    \"key\": \"8486\",\n    \"description\": \"a monkey is drinking and lying down on a power line when he falls and has to grab the line.\"\n  },\n  {\n    \"video_name\": \"tumblr_nofxbjpWcl1shch57o1_400\",\n    \"question\": \"how many men are sitting together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43625\",\n    \"key\": \"42142\",\n    \"description\": \"two men are sitting together and one is blowing on his finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_nccngahQlq1sdbrm9o1_400\",\n    \"question\": \"how many guys on stage with microphones walked passed one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10998\",\n    \"key\": \"66360\",\n    \"description\": \"two guys on stage with microphones walked passed one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_naiv7pBcv81s2l982o1_250\",\n    \"question\": \"what is the man petting?\",\n    \"answer\": \"owl\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5743\",\n    \"key\": \"27670\",\n    \"description\": \"a man is petting a small baby owl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezdwodIKQ1r8cauwo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3898\",\n    \"key\": \"7172\",\n    \"description\": \"a guy pulls his white jacket over his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrho0kbKHM1uzqrlco1_400\",\n    \"question\": \"what puts the basketball into the hoop?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11031\",\n    \"key\": \"41679\",\n    \"description\": \"the rabbit puts the basketball into the hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_npneccAv8H1rq4lc6o1_500\",\n    \"question\": \"how many people in a room are hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3188\",\n    \"key\": \"89620\",\n    \"description\": \"two people in a room are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhb2we9rFe1u6l71oo1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47957\",\n    \"key\": \"36637\",\n    \"description\": \"the white girl with blonde hair is trying to dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabrq7LYQP1qhkvg5o1_500\",\n    \"question\": \"what is the color of the bandanna?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6799\",\n    \"key\": \"72763\",\n    \"description\": \"a man wearing a jacket and a red bandanna is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rlcclxUX1tgyi5mo1_250\",\n    \"question\": \"how many sports players are embracing on the field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1777\",\n    \"key\": \"43710\",\n    \"description\": \"two sports players are embracing on the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwjr5bvbM1tx8mn0o1_400\",\n    \"question\": \"what slows down to go around the curve on a race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41383\",\n    \"key\": \"78341\",\n    \"description\": \"a race car slows down to go around a curve on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92mm45oev1twseqpo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6863\",\n    \"key\": \"47375\",\n    \"description\": \"a guy dressed in a yellow shirt is wiping his eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_njnhlc2q8U1u9sozlo1_400\",\n    \"question\": \"what pretends to be shot and plays dead and falls off the bed?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40179\",\n    \"key\": \"7455\",\n    \"description\": \"a cat pretends to be shot and plays dead and falls off the bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfk0cw83nY1tdmffyo1_250\",\n    \"question\": \"what is licking the bottom of a clear glass table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3686\",\n    \"key\": \"3658\",\n    \"description\": \"a cat is licking the bottom of a clear glass table.\"\n  },\n  {\n    \"video_name\": \"tumblr_no19cefILe1un7qbto1_400\",\n    \"question\": \"what is being scared by something jumping?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47056\",\n    \"key\": \"37818\",\n    \"description\": \"a cat is being scared by something jumping.\"\n  },\n  {\n    \"video_name\": \"tumblr_naneo3Z46w1tn9es9o1_400\",\n    \"question\": \"how many people is carrying drinks are walking by a pool?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12772\",\n    \"key\": \"80142\",\n    \"description\": \"two people carrying drinks are walking by a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sg39oVrZ1qedx60o1_500\",\n    \"question\": \"what is the man in sunglasses holding?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43291\",\n    \"key\": \"98928\",\n    \"description\": \"a man in sunglasses is holding a fluffy dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5q8paqlV1qeuv1ko1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13398\",\n    \"key\": \"84916\",\n    \"description\": \"a woman with long black hair is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxku2tcR71tjd6bzo1_400\",\n    \"question\": \"what does the little boy run and then overtake him and knock him down?\",\n    \"answer\": \"puppies\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47385\",\n    \"key\": \"40171\",\n    \"description\": \"a little boy runs and then puppies overtake him and knock him down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfih1nAC1B1s71nvbo1_400\",\n    \"question\": \"what is weaving quickly through traffic on a road with snow piled up high on both sides?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36410\",\n    \"key\": \"35092\",\n    \"description\": \"a vehicle is weaving quickly through traffic on a road with snow piled up high on both sides.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxda4oHZH1th1z7ro1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40490\",\n    \"key\": \"1198\",\n    \"description\": \"a girl in a white dress is singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hw28peTq1s61fbqo1_400\",\n    \"question\": \"what is swimming around in one place?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45929\",\n    \"key\": \"52981\",\n    \"description\": \"a blue and red fish is swimming around in one place.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqmr2ybLBP1rpsrrho1_400\",\n    \"question\": \"how many men are dancing in the place with colored lights?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27108\",\n    \"key\": \"25420\",\n    \"description\": \"two men are dancing in a place with colored lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzwadoN461slj978o1_400\",\n    \"question\": \"what is running with the toy in his mouth and falls on the floor and plays dead?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36638\",\n    \"key\": \"48459\",\n    \"description\": \"a dog is running with a toy in his mouth and falls on the floor and plays dead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyoq3PnfT1slj978o1_400\",\n    \"question\": \"what is the man stopping from moving with just his feet?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35758\",\n    \"key\": \"82128\",\n    \"description\": \"a man is stopping a car from moving with just his feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4g5y5FmJ1r8h6u4o1_500\",\n    \"question\": \"how many guy is it trying to avoid being hit by an object?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33475\",\n    \"key\": \"97142\",\n    \"description\": \"it is one guy trying to avoid being hit by an object.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp5l0hOiG1tio380o1_250\",\n    \"question\": \"what is the man in suit hitting with his hand?\",\n    \"answer\": \"chair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11927\",\n    \"key\": \"25234\",\n    \"description\": \"a man in suit is hitting a chair with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni33o9h6bs1qjvum0o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31001\",\n    \"key\": \"19961\",\n    \"description\": \"a lady fixes her red hair as she talks to another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_njnpzo4UG21t41q8xo1_400\",\n    \"question\": \"what is the young adult wearing?\",\n    \"answer\": \"paint\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31240\",\n    \"key\": \"29838\",\n    \"description\": \"a young adult is wearing cat themed face paint.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g5efSoWD1rsxypwo1_400\",\n    \"question\": \"what are three kittens cleaning?\",\n    \"answer\": \"paws\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15362\",\n    \"key\": \"22459\",\n    \"description\": \"three kittens are cleaning their paws as they sit in a small container.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ehw6qLr01ti3uv8o1_500\",\n    \"question\": \"what is the lady with the blond hair smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16312\",\n    \"key\": \"42022\",\n    \"description\": \"the lady with the blond hair is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndzmubpy9F1tg5fh5o1_400\",\n    \"question\": \"how many girls are laughing and hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31545\",\n    \"key\": \"31116\",\n    \"description\": \"two girls are laughing and hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqee177Pf91u8ivvko1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35690\",\n    \"key\": \"57337\",\n    \"description\": \"a guy with a beard is talking and laughing with a guy wearing a black shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq78pQzfO1qzo3n9o1_500\",\n    \"question\": \"what is the guy wearing the sunglasses is holding?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46103\",\n    \"key\": \"59958\",\n    \"description\": \"the guy wearing the sunglasses is holding a stuffed panda bear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nduyhsKaEd1tqd3ieo1_500\",\n    \"question\": \"how many hands is the man in a beach stretching?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51192\",\n    \"key\": \"77957\",\n    \"description\": \"a man in a beach is stretching his two hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn67mXLk11qhddxpo6_250\",\n    \"question\": \"how many men are walking across the room and then hug each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29384\",\n    \"key\": \"43915\",\n    \"description\": \"two men are walking across a room and then hug each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh8g8xOFqk1tx8mn0o1_400\",\n    \"question\": \"what are involved in an accident on a track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40655\",\n    \"key\": \"55560\",\n    \"description\": \"some cars are involved in an accident on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqb38eH9vk1qe9a6no1_250\",\n    \"question\": \"what are the picture of someone smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2326\",\n    \"key\": \"4725\",\n    \"description\": \"a picture of someone are smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngwbl1n70M1u5ha1qo1_400\",\n    \"question\": \"what is the man on a stage getting from a crowd?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18313\",\n    \"key\": \"63012\",\n    \"description\": \"a man on a stage is getting a bottle from a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngipx3UXAX1rnuooxo1_250\",\n    \"question\": \"what is the guy grabbing about to sing?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49577\",\n    \"key\": \"77797\",\n    \"description\": \"a guy is grabbing the microphone about to sing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5odsJdK11tz9jaqo1_500\",\n    \"question\": \"what is the color of the team?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8627\",\n    \"key\": \"101567\",\n    \"description\": \"the red team kicks the ball into the soccer goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvvdlFwGZ1qdbe91o1_400\",\n    \"question\": \"how many men look at something in a corridor and laugh?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48269\",\n    \"key\": \"77610\",\n    \"description\": \"two men look at something in a corridor and laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng46uo55Mx1slj978o1_400\",\n    \"question\": \"how many penguins is this image of walking until one of them falls down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40455\",\n    \"key\": \"50029\",\n    \"description\": \"this image is of two penguins walking until one of them falls down.\"\n  },\n  {\n    \"video_name\": \"tumblr_neb1kotniS1tbscvbo1_250\",\n    \"question\": \"where are the group of people dancing while.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9904\",\n    \"key\": \"81480\",\n    \"description\": \"a group of people are dancing while in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qyart36C1rkbsnzo1_250\",\n    \"question\": \"how many people are in the car driving fast down a winding road with helmets on?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15498\",\n    \"key\": \"45347\",\n    \"description\": \"two people are in a car driving fast down a winding road with helmets on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebjohzXeJ1thyqpfo1_250\",\n    \"question\": \"how many friends are pointing towards the sky?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24702\",\n    \"key\": \"2124\",\n    \"description\": \"three friends are pointing towards the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq60huObBd1tk2ngvo1_400\",\n    \"question\": \"what is riding the toy and then it flips over and he falls off?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32196\",\n    \"key\": \"15603\",\n    \"description\": \"a cat is riding a toy and then it flips over and he falls off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclkulNWm01tctbxeo1_400\",\n    \"question\": \"what does the man sing and plays moving his shoulders?\",\n    \"answer\": \"keyboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12293\",\n    \"key\": \"64884\",\n    \"description\": \"a man sings and plays the keyboard moving his shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5hg7loxL1u0z49so1_250\",\n    \"question\": \"what is sitting on a coach is laughing on another?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5875\",\n    \"key\": \"2083\",\n    \"description\": \"a guy wearing hat sitting on a coach is laughing on another.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtr52OeqL1u0xtr8o1_500\",\n    \"question\": \"how many young men are sitting on the boat one looks passed out?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29955\",\n    \"key\": \"18794\",\n    \"description\": \"two young men are sitting on a boat one looks passed out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhifdvtMsa1tjhld9o1_250\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4867\",\n    \"key\": \"21175\",\n    \"description\": \"a small,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5lm8v8r31tx8mn0o1_400\",\n    \"question\": \"what is driving down the race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6075\",\n    \"key\": \"77883\",\n    \"description\": \"a race car is driving down the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng642mdNwX1qezt9uo1_250\",\n    \"question\": \"what is pushing over the glass object?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37301\",\n    \"key\": \"19353\",\n    \"description\": \"a cat is pushing over a glass object.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9jajxPqO1tsl8rno1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45993\",\n    \"key\": \"93397\",\n    \"description\": \"the woman in the white shirt is running up bleachers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbmz36bIej1rv9d8do1_500\",\n    \"question\": \"what is the color of the smile?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32280\",\n    \"key\": \"84811\",\n    \"description\": \"a man in blue makes a man in brown smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_notrgvZmX91urtap0o1_1280\",\n    \"question\": \"what is the color of the liquid?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41861\",\n    \"key\": \"4592\",\n    \"description\": \"someone pours blue liquid into a glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguudqq3381si703wo1_400\",\n    \"question\": \"what is the girl wearing and looking down?\",\n    \"answer\": \"horns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39914\",\n    \"key\": \"30638\",\n    \"description\": \"a girl is wearing horns and looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ztlpiJbO1thytpxo1_500\",\n    \"question\": \"what is the woman petting and hugging?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5594\",\n    \"key\": \"67302\",\n    \"description\": \"the woman is petting and hugging her dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat3hdvBzb1t0vmnto1_250\",\n    \"question\": \"what claws and scratches at the man holding it while he is conversing with another man?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20691\",\n    \"key\": \"21840\",\n    \"description\": \"a cat claws and scratches at a man holding it while he is conversing with another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyqloY3A31u3epwjo2_1280\",\n    \"question\": \"how many people are embracing in the hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49287\",\n    \"key\": \"78443\",\n    \"description\": \"two people are embracing in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdje2GanU1tktmbso1_400\",\n    \"question\": \"what is the color of the puppy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35576\",\n    \"key\": \"44937\",\n    \"description\": \"a white puppy is curious and sniffing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezfs4uELd1u1a7cmo1_250\",\n    \"question\": \"what is the handsome young man adjusting?\",\n    \"answer\": \"underwear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16048\",\n    \"key\": \"52\",\n    \"description\": \"a handsome young man is adjusting his underwear.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99hkpMqz51sb52a1o1_400\",\n    \"question\": \"how many boys are practicing dance moves on a sidewalk?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26574\",\n    \"key\": \"66538\",\n    \"description\": \"two boys are practicing dance moves on a sidewalk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrwg6tMbL1t9tw2vo1_400\",\n    \"question\": \"where does the gymnast look nervous.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27302\",\n    \"key\": \"68224\",\n    \"description\": \"a gymnast looks nervous in the gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9nfflcHiD1sib7jco1_250\",\n    \"question\": \"what is standing on the pavement moving its feet?\",\n    \"answer\": \"pigeon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41608\",\n    \"key\": \"7707\",\n    \"description\": \"a pigeon is standing on the pavement moving its feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuegdc5bY1rm7vxeo1_400\",\n    \"question\": \"what is bouncing around and playing in the snow?\",\n    \"answer\": \"retriever\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12937\",\n    \"key\": \"4946\",\n    \"description\": \"a golden retriever is bouncing around and playing in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zd1nDo0B1rwgxlqo1_500\",\n    \"question\": \"what is running around in circles?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48515\",\n    \"key\": \"70645\",\n    \"description\": \"a galloping horse is running around in circles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndj3gc8WwV1tdjuqvo1_400\",\n    \"question\": \"what walks on its hind legs to the table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39458\",\n    \"key\": \"11352\",\n    \"description\": \"the cat walks on its hind legs to the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8wc3bPk61tmp9jpo1_400\",\n    \"question\": \"what are the bunch of factory workers assembling?\",\n    \"answer\": \"masks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33755\",\n    \"key\": \"9479\",\n    \"description\": \"a bunch of factory workers are assembling gas masks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngl4sfejED1u4rb65o1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30459\",\n    \"key\": \"84249\",\n    \"description\": \"a young man wearing a black top and a white cap is singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyh3iTJcd1tdjuqvo1_400\",\n    \"question\": \"what was scratching himself vigorously as he stood?\",\n    \"answer\": \"kangaroo\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26747\",\n    \"key\": \"10995\",\n    \"description\": \"the kangaroo was scratching himself vigorously as he stood.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknppk1M7C1reubyfo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13454\",\n    \"key\": \"14791\",\n    \"description\": \"a woman in a gray shirt is standing and talking in front of a guys elbow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nephlhawUk1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14954\",\n    \"key\": \"63440\",\n    \"description\": \"a red car is running through a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nftd5s8MAr1qc51c0o1_400\",\n    \"question\": \"what is fallen when he is hitting with a fish?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10988\",\n    \"key\": \"34579\",\n    \"description\": \"a man 's cap is fallen when he is hitting with a fish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp3ocPFJJ1upr5mso1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA696\",\n    \"key\": \"65996\",\n    \"description\": \"a man in a white suit and a man in a dark suit are lying on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnhsaAJFF1rx16sro1_400\",\n    \"question\": \"where is the man singing.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9036\",\n    \"key\": \"29140\",\n    \"description\": \"a man is singing in a bedroom without chest.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyf9sZZLi1sh1qk7o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24526\",\n    \"key\": \"84565\",\n    \"description\": \"a man with a gray shirt looks at a girl seductively.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh40fkieup1sdbrm9o1_400\",\n    \"question\": \"how many men are looking at each other and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42132\",\n    \"key\": \"36772\",\n    \"description\": \"two men are looking at each other and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxrsbp13F1rfyy6oo1_250\",\n    \"question\": \"what is annoyingly bothering the dog?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18015\",\n    \"key\": \"9914\",\n    \"description\": \"a cat is annoyingly bothering a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj0iew6kad1tmcdhmo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48835\",\n    \"key\": \"32401\",\n    \"description\": \"a man with black hair is looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndoqxcn3iN1sd2bbjo1_400\",\n    \"question\": \"how many women is playing a game and the one that wins accidentally pokes another in the eye?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19002\",\n    \"key\": \"20274\",\n    \"description\": \"two women playing a game and the one that wins accidentally pokes another in the eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqn3tqmbjc1souwjko1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16829\",\n    \"key\": \"71821\",\n    \"description\": \"a man wearing a blue jacket is putting candy into his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkap7yIuHJ1unokpmo1_400\",\n    \"question\": \"what is the woman holding?\",\n    \"answer\": \"close\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10483\",\n    \"key\": \"101142\",\n    \"description\": \"the woman is holding her cup close.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklj95HBGD1rxcyx0o1_250\",\n    \"question\": \"what is an athletic man delivering a pizza and answering?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21223\",\n    \"key\": \"2655\",\n    \"description\": \"an athletic man is delivering a pizza and answering his cell phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin3ulmI0K1ropygmo1_400\",\n    \"question\": \"what is the woman playing and singing into a microphone?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7373\",\n    \"key\": \"70404\",\n    \"description\": \"a woman is playing guitar and singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7rlbB17h1tibxkwo1_r1_500\",\n    \"question\": \"what is the woman walking in a mall adjusts?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39938\",\n    \"key\": \"101504\",\n    \"description\": \"a woman walking in a mall adjusts her dark sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk36bmS6e51rv583mo1_250\",\n    \"question\": \"what does the very excited woman spill while jumping up and down?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18330\",\n    \"key\": \"45640\",\n    \"description\": \"a very excited woman spills her drink while jumping up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk93w8xzrj1uoybayo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27872\",\n    \"key\": \"60578\",\n    \"description\": \"man with black shirt is kissing hand of black woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqr8gmhlLr1rnfni9o1_400\",\n    \"question\": \"what is the boy dancing and fall down?\",\n    \"answer\": \"shorts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10543\",\n    \"key\": \"12470\",\n    \"description\": \"the boy is dancing and his shorts fall down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7dbzg3AX1sg80mko1_400\",\n    \"question\": \"how many men eat pizza with their mouths open?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24169\",\n    \"key\": \"73798\",\n    \"description\": \"three men eat pizza with their mouths open.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfuoql9kt21r5ihmbo1_400\",\n    \"question\": \"what is performing the song?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9958\",\n    \"key\": \"96919\",\n    \"description\": \"the rock band is performing a song.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6zm9GLDK1t7h8o0o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45091\",\n    \"key\": \"43353\",\n    \"description\": \"a man in a blue shirt runs around a yellow pole on the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7gq1ZaK81te9v75o1_400\",\n    \"question\": \"what is the male band member getting done?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5140\",\n    \"key\": \"73279\",\n    \"description\": \"a male band member is getting his makeup done.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckqvbEDZ61u05nf4o1_500\",\n    \"question\": \"what is the man holding and looking at a crowd?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA75\",\n    \"key\": \"71156\",\n    \"description\": \"a man is holding a microphone and looking at a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_neafznl88c1u1k47uo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6726\",\n    \"key\": \"36680\",\n    \"description\": \"a girl with black top is smoking and another girl moves backwards and hits a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2myzj0DY1tkpzw0o1_400\",\n    \"question\": \"how many men are climbing out the window?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30125\",\n    \"key\": \"18190\",\n    \"description\": \"two men are climbing out a window and one falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_niqvn9yIzC1sy6rtlo1_250\",\n    \"question\": \"how many young people are running down the hall and hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38327\",\n    \"key\": \"15274\",\n    \"description\": \"two young people are running down the hall and hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4pc6U2ib1rmvdlro1_400\",\n    \"question\": \"what catches the fish in water with his beak?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7365\",\n    \"key\": \"31969\",\n    \"description\": \"a bird catches a fish in water with his beak.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qmsg8RNC1tcpi9io1_500\",\n    \"question\": \"how many men are dancing and singing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29761\",\n    \"key\": \"90375\",\n    \"description\": \"two men are dancing and singing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nom6zxNZYd1tyxue1o1_400\",\n    \"question\": \"where is the girl with her eyes closed and suddenly sits up.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7513\",\n    \"key\": \"81172\",\n    \"description\": \"a girl is in bed with her eyes closed and suddenly sits up.\"\n  },\n  {\n    \"video_name\": \"tumblr_npeg2iKBbw1u9kj5io1_400\",\n    \"question\": \"how many woman are having the race?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA53055\",\n    \"key\": \"80041\",\n    \"description\": \"the two woman are having a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9le1merj21s5t0x8o1_400\",\n    \"question\": \"how many team members are walking and bumping fists?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9300\",\n    \"key\": \"45266\",\n    \"description\": \"two team members are walking and bumping fists.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3zdwLhgA1ttuja3o1_500\",\n    \"question\": \"how many men are recording music in a studio?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44446\",\n    \"key\": \"85274\",\n    \"description\": \"two men are recording music in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkybgr8MIr1tmnntwo1_250\",\n    \"question\": \"how many women are singing while one sprays herself in the face?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17781\",\n    \"key\": \"35718\",\n    \"description\": \"two women are singing while one sprays herself in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb87qsBCX81r5q7yjo1_400\",\n    \"question\": \"how many men are performing the dance on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45597\",\n    \"key\": \"61542\",\n    \"description\": \"two men are performing a dance on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7zldRIh21slj978o1_400\",\n    \"question\": \"what jumps over another monkey sitting on a log?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6372\",\n    \"key\": \"40880\",\n    \"description\": \"a monkey jumps over another monkey sitting on a log.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqdnyswOsw1qh9fn6o1_400\",\n    \"question\": \"what does the penguin chase under water?\",\n    \"answer\": \"swimming\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3507\",\n    \"key\": \"46476\",\n    \"description\": \"a penguin chases another penguin swimming under water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vh4rEQJG1t2blrco1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28638\",\n    \"key\": \"90914\",\n    \"description\": \"a black haired woman is walking with a horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_naef7gYw6B1tjr73vo1_400\",\n    \"question\": \"how many women are smiling and joking in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25528\",\n    \"key\": \"22030\",\n    \"description\": \"two women are smiling and joking in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_npj6idU5GU1ql8dhmo2_250\",\n    \"question\": \"what is the woman playing next to a man kneeling?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48658\",\n    \"key\": \"51499\",\n    \"description\": \"a woman is playing a guitar next to a man kneeling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbm5y5ves91tlzjvgo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5458\",\n    \"key\": \"39655\",\n    \"description\": \"a man in black shirt is yelling at somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9f5ecfGZ71remizro1_400\",\n    \"question\": \"how many young men dressed identical are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31585\",\n    \"key\": \"21976\",\n    \"description\": \"two young men dressed identical are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2xspzYUT1qijtyio1_400\",\n    \"question\": \"what takes the teddy bear and walks away?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24151\",\n    \"key\": \"79663\",\n    \"description\": \"a dog takes a teddy bear and walks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1nzeAfmz1twl08yo1_400\",\n    \"question\": \"where is the guy in a flower shirt singing.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37604\",\n    \"key\": \"60290\",\n    \"description\": \"a guy in a flower shirt is singing in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk08syYSt71te94myo1_400\",\n    \"question\": \"where is the woman dumping mashed potatoes.\",\n    \"answer\": \"? plate\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40588\",\n    \"key\": \"18540\",\n    \"description\": \"a woman is dumping mashed potatoes in her husband 's plate.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhn4qolyxQ1tgouwlo1_400\",\n    \"question\": \"what is the color of the iguana?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45675\",\n    \"key\": \"52435\",\n    \"description\": \"a green iguana is fighting a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhoqo9nDcU1szutyqo1_500\",\n    \"question\": \"how many friends does this show having a good time whilst one makes silly faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35556\",\n    \"key\": \"42089\",\n    \"description\": \"this shows two friends having a good time whilst one makes silly faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgdjmRq281tk9m4mo1_400\",\n    \"question\": \"what is the man holding,\",\n    \"answer\": \"then another man reaches for it ? gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13273\",\n    \"key\": \"30918\",\n    \"description\": \"a man is holding a gun,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdxk2otyS1sprf2xo1_500\",\n    \"question\": \"what is nodding his head?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21368\",\n    \"key\": \"29349\",\n    \"description\": \"a man wearing cap is nodding his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqgtyWQb31tg0ggeo1_500\",\n    \"question\": \"what is the man doing with a drum crash in his back?\",\n    \"answer\": \"face\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46037\",\n    \"key\": \"93614\",\n    \"description\": \"a man is doing duck face with a drum crash in his back.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq2ngacE31sm7km1o1_400\",\n    \"question\": \"what is biting the person 's finger?\",\n    \"answer\": \"ferret\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24332\",\n    \"key\": \"22470\",\n    \"description\": \"a ferret is biting a person 's finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sg39oVrZ1qedx60o1_500\",\n    \"question\": \"what is the person holding?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22203\",\n    \"key\": \"98928\",\n    \"description\": \"a person is holding a white fluffy puppy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxsiqiqON1u7lcb4o1_500\",\n    \"question\": \"what is the man driving?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38323\",\n    \"key\": \"77450\",\n    \"description\": \"a man is driving a vehicle while other man is reading a book.\"\n  },\n  {\n    \"video_name\": \"tumblr_npoyo2v9tY1uy28kto1_400\",\n    \"question\": \"how many dancing men does there 's followed by a couple?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21433\",\n    \"key\": \"31195\",\n    \"description\": \"there 's three dancing men followed by a couple and the woman rejects him.\"\n  },\n  {\n    \"video_name\": \"tumblr_np1dspAzMG1uvgq73o1_400\",\n    \"question\": \"what is the man playing and talking?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21607\",\n    \"key\": \"28341\",\n    \"description\": \"the man is playing a guitar and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93yyhaxpU1sofpyco1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46320\",\n    \"key\": \"19059\",\n    \"description\": \"a guy with brown hair is trying to tell something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n921fiyLDf1tnwjvco1_400\",\n    \"question\": \"how many men are dancing around outside?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21750\",\n    \"key\": \"19431\",\n    \"description\": \"these two men are dancing around outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemscyeADV1sd32fxo1_500\",\n    \"question\": \"how many men are sitting on the couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1839\",\n    \"key\": \"60111\",\n    \"description\": \"two men are sitting on a couch and one laughs and scratches his chin.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxqb2uFP81thmv2qo1_400\",\n    \"question\": \"what is trying to walk in boots?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17077\",\n    \"key\": \"20689\",\n    \"description\": \"a dog is trying to walk in boots.\"\n  },\n  {\n    \"video_name\": \"tumblr_no5y23zVlY1qhwvbro1_400\",\n    \"question\": \"what is someone playing during a concert?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31297\",\n    \"key\": \"51140\",\n    \"description\": \"someone is playing an electric guitar during a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_noaswjesmm1th7g9io1_400\",\n    \"question\": \"how many cat is putting its paw in another cat 's face to stop it from trying to groom the first cat?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18691\",\n    \"key\": \"95722\",\n    \"description\": \"one cat is putting its paw in another cat 's face to stop it from trying to groom the first cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfaseo5Cku1txtsyso1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21008\",\n    \"key\": \"80753\",\n    \"description\": \"a man with a black shirt is watching to another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sz8trA7B1sv44h3o1_250\",\n    \"question\": \"what is the woman wearing a black shirt is smoking?\",\n    \"answer\": \"drug\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11610\",\n    \"key\": \"40753\",\n    \"description\": \"the woman wearing a black shirt is smoking a drug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngc8tpcmwF1tiz0smo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27582\",\n    \"key\": \"92490\",\n    \"description\": \"a woman in a white dress can see her reflection in the mirror and then walks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq4kot19WJ1tpg4boo1_500\",\n    \"question\": \"what is rolling away and bumps into the car?\",\n    \"answer\": \"tire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13976\",\n    \"key\": \"83136\",\n    \"description\": \"a tire is rolling away and bumps into a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3jcdUYwZ1tx7szbo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31381\",\n    \"key\": \"32721\",\n    \"description\": \"a young girl with long black hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7cq0YLOw1u11u8po1_500\",\n    \"question\": \"how many people are dancing in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44064\",\n    \"key\": \"97738\",\n    \"description\": \"two people are dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_noch808AgN1s5t003o1_400\",\n    \"question\": \"what are several women walking and wearing?\",\n    \"answer\": \"clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48878\",\n    \"key\": \"14889\",\n    \"description\": \"several women are walking and wearing peach colored clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq6ycnMUhD1u2bf8no1_500\",\n    \"question\": \"how many guys sat on a couch and one turned around and spoke to someone behind them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10683\",\n    \"key\": \"75993\",\n    \"description\": \"two guys sat on a couch and one turned around and spoke to someone behind them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf43arOaF51qfpmkno1_500\",\n    \"question\": \"what is the woman with long blond hair singing and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25570\",\n    \"key\": \"48504\",\n    \"description\": \"a woman with long blond hair is singing and playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfrlins4gC1qaucgno1_250\",\n    \"question\": \"where are people hugging each other inside.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28710\",\n    \"key\": \"21892\",\n    \"description\": \"people in a room are hugging each other inside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7mh2enPY1tt9zxqo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12037\",\n    \"key\": \"73072\",\n    \"description\": \"a guy wearing a black shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nd15lcdoKq1tm38vso1_500\",\n    \"question\": \"how many young women are turning away from the window?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46477\",\n    \"key\": \"48370\",\n    \"description\": \"four young women are turning away from a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0e5mHJLF1u2o7c8o1_400\",\n    \"question\": \"how many girls are on stage with their arm around each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15357\",\n    \"key\": \"1740\",\n    \"description\": \"Two girls are on stage with their arm around each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq78pQzfO1qzo3n9o1_500\",\n    \"question\": \"what is the man holding a toy panda is taking off?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14572\",\n    \"key\": \"59958\",\n    \"description\": \"a man holding a toy panda is taking his glasses off.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1dyrKWvc1sfwm8jo1_400\",\n    \"question\": \"what is someone using?\",\n    \"answer\": \"spoon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23257\",\n    \"key\": \"16778\",\n    \"description\": \"someone is using a spoon to get sauce off of a plate.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd15lcdoKq1tm38vso1_500\",\n    \"question\": \"how many girls are turning their heads to something?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA204\",\n    \"key\": \"48370\",\n    \"description\": \"four girls are turning their heads to something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8aj9xC8B1rplluro1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51219\",\n    \"key\": \"21598\",\n    \"description\": \"the man in the black shirt is casually discussing something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp324pRIa1tlea9go1_400\",\n    \"question\": \"how many young ladies are smiling and making gestures?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43258\",\n    \"key\": \"33695\",\n    \"description\": \"two young ladies are smiling and making gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokj77T5LR1uvkr19o1_400\",\n    \"question\": \"what does the young girl with short hair move down her nose?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28174\",\n    \"key\": \"31170\",\n    \"description\": \"a young girl with short hair moves her glasses down her nose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacc15RrbE1rhg9bmo1_400\",\n    \"question\": \"where does the man lean back.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43593\",\n    \"key\": \"52986\",\n    \"description\": \"a man leans back in his chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nju519JvHq1u9mayco1_400\",\n    \"question\": \"what does the horse with a rider clear?\",\n    \"answer\": \"hurdle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35580\",\n    \"key\": \"96900\",\n    \"description\": \"a horse with a rider clears a hurdle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96o5dqttH1qha21xo1_500\",\n    \"question\": \"how many people are in bed and one rolls over onto his pillow?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44026\",\n    \"key\": \"88139\",\n    \"description\": \"two people are in bed and one rolls over onto his pillow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq62qusQ2Z1tk2ngvo1_500\",\n    \"question\": \"what is the cat touching with its paw in a tub?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50285\",\n    \"key\": \"69624\",\n    \"description\": \"a cat is touching a fish with its paw in a tub.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngegv9zMI11skv76wo1_250\",\n    \"question\": \"how many teenage girls turn and smile at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47169\",\n    \"key\": \"36105\",\n    \"description\": \"two teenage girls turn and smile at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ywk5HGpS1rs9keno1_500\",\n    \"question\": \"how many men with microphones are laughing and joking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23580\",\n    \"key\": \"72189\",\n    \"description\": \"two men with microphones are laughing and joking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2gpfzSk21tk2ngvo1_250\",\n    \"question\": \"what is the color of the bunny?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50275\",\n    \"key\": \"13592\",\n    \"description\": \"a brown bunny is on a towel and another bunny is running around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncktzjK6x31susf16o1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25809\",\n    \"key\": \"81391\",\n    \"description\": \"a man wearing a black t-shirt is scratching his nose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0n8ksRhS1u25ovvo1_400\",\n    \"question\": \"what is driving down the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22581\",\n    \"key\": \"63631\",\n    \"description\": \"a blue car is driving down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfoh2z9C1M1u3ads9o1_250\",\n    \"question\": \"what is the white and brown bunny eating?\",\n    \"answer\": \"grass\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9447\",\n    \"key\": \"14265\",\n    \"description\": \"the white and brown bunny is eating grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7j7yiaRx1qivt11o1_500\",\n    \"question\": \"where is the man swimming an illuminated sword.\",\n    \"answer\": \"? paint\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30909\",\n    \"key\": \"97728\",\n    \"description\": \"a man in face paint is swimming an illuminated sword.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqoo17fzTA1s6w6cqo1_540\",\n    \"question\": \"how many people are standing and leaning in for the kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33415\",\n    \"key\": \"101250\",\n    \"description\": \"Two people are standing and leaning in for a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxn5rSldv1u9pp05o1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32680\",\n    \"key\": \"9461\",\n    \"description\": \"a young person is biting a white hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0mqwuaNb1tz6rpdo1_r1_400\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4091\",\n    \"key\": \"31217\",\n    \"description\": \"this is a girl wearing black rimmed glasses leaning forward and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfhy9iq4a1tj3r8so1_500\",\n    \"question\": \"what is the color of the taxi?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7726\",\n    \"key\": \"87985\",\n    \"description\": \"a guy wearing black clothing,\"\n  },\n  {\n    \"video_name\": \"tumblr_nr53ie9eQn1re5o97o1_500\",\n    \"question\": \"what turns into the puppet lights?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10950\",\n    \"key\": \"27647\",\n    \"description\": \"white cowboy hat turns into a puppet lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq4d7kPtlq1unyhx2o1_400\",\n    \"question\": \"what is overtaking another car on a wet road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10185\",\n    \"key\": \"76971\",\n    \"description\": \"a racing car is overtaking another car on a wet road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3xi1KZmV1uzvpcio1_400\",\n    \"question\": \"what are making some moves in the sky?\",\n    \"answer\": \"airplanes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6158\",\n    \"key\": \"63904\",\n    \"description\": \"some planes are making some moves in the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb10lnTtO01tjhcu6o1_500\",\n    \"question\": \"what is the color of the jeans?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16866\",\n    \"key\": \"71855\",\n    \"description\": \"a girl with black jeans folds one of her leg over.\"\n  },\n  {\n    \"video_name\": \"tumblr_naz1gjhCtv1rl8ttqo1_500\",\n    \"question\": \"what is the kid walking on the phone?\",\n    \"answer\": \"talks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16900\",\n    \"key\": \"81910\",\n    \"description\": \"a kid is walking a bike talks on the phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92n8zlXH21sqdix6o1_250\",\n    \"question\": \"how many people are talking as the third walks up to them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48960\",\n    \"key\": \"43885\",\n    \"description\": \"two people are talking as a third walks up to them.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni8oy7OYFT1u8omj4o1_400\",\n    \"question\": \"where is the man dancing where glitter confetti is falling.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8140\",\n    \"key\": \"44243\",\n    \"description\": \"a man is dancing in a room where glitter confetti is falling.\"\n  },\n  {\n    \"video_name\": \"tumblr_npv0naAHW61uvz6e5o1_500\",\n    \"question\": \"how many people on a stage are hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31375\",\n    \"key\": \"83419\",\n    \"description\": \"two people on a stage are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclfo70sVI1tg2jndo1_250\",\n    \"question\": \"how many boys in white shirts are singing on a stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46711\",\n    \"key\": \"165\",\n    \"description\": \"three boys in white shirts are singing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nga8g2sqtN1re60dio1_250\",\n    \"question\": \"how many men are playing guitar together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8443\",\n    \"key\": \"26505\",\n    \"description\": \"the three men are playing guitar together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhop57OCs61qzk1bko1_400\",\n    \"question\": \"what is the person holding next to a car,\",\n    \"answer\": \"whose lights flash on ? flower\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35065\",\n    \"key\": \"32068\",\n    \"description\": \"a person holding a flower next to a car,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmcdxUw7y1sl9u6jo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15073\",\n    \"key\": \"12789\",\n    \"description\": \"a boy with black shirt is talking shyly.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fsalp5mk1ropm1ro1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17107\",\n    \"key\": \"98945\",\n    \"description\": \"a blond guy with blue eyes looked around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sh1pn4ju1sgl6u3o1_250\",\n    \"question\": \"where are three guys dancing and singing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30844\",\n    \"key\": \"17230\",\n    \"description\": \"three guys are dancing and singing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nis0671Qu01tjqbh0o1_250\",\n    \"question\": \"what is closing his eyes while he is being washed?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20120\",\n    \"key\": \"1463\",\n    \"description\": \"a black dog is closing his eyes while he is being washed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngy4jkSGjY1tni61eo1_250\",\n    \"question\": \"what is being boiled alive next to the barking dog?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46682\",\n    \"key\": \"27236\",\n    \"description\": \"a fish is being boiled alive next to a barking dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqbxtdsOu11tk2ngvo1_400\",\n    \"question\": \"what plunges through the snowfall before getting up and running away?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16951\",\n    \"key\": \"98201\",\n    \"description\": \"a tabby cat plunges through a snowfall before getting up and running away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2xc108CT1sh1v2uo1_500\",\n    \"question\": \"what is running on the beach and jumping in the water?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17017\",\n    \"key\": \"57385\",\n    \"description\": \"a dog is running on a beach and jumping in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9uwvyjpy1r23fzwo1_500\",\n    \"question\": \"what ran around the yard next to another horse?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6441\",\n    \"key\": \"59214\",\n    \"description\": \"a horse ran around the yard next to another horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx0k7vKCu1u4cx5ko1_400\",\n    \"question\": \"what ran and licked something?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6490\",\n    \"key\": \"64979\",\n    \"description\": \"a white dog ran and licked something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh1kirX2YW1t4ti4zo1_250\",\n    \"question\": \"what are men playing percussion,\",\n    \"answer\": \"with one drumming ? instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20297\",\n    \"key\": \"5940\",\n    \"description\": \"men are playing percussion instruments,\"\n  },\n  {\n    \"video_name\": \"tumblr_nho4lw7YQP1tooeulo1_500\",\n    \"question\": \"what is one guy playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5590\",\n    \"key\": \"86177\",\n    \"description\": \"one guy is playing a guitar while another is smiling and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfas3aICsP1ql0sfgo1_500\",\n    \"question\": \"what is the man moving from one position to another?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52732\",\n    \"key\": \"55823\",\n    \"description\": \"a man is moving a box from one position to another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbe2gdERbf1tulpruo1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26705\",\n    \"key\": \"40249\",\n    \"description\": \"a white girl with brown hair is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qcwdJTNX1tib6auo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11551\",\n    \"key\": \"24417\",\n    \"description\": \"a woman in black is about to cry.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5sszzMyl1r20o7po1_500\",\n    \"question\": \"where is the person standing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20246\",\n    \"key\": \"43493\",\n    \"description\": \"a person is standing in a room inside.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngdjwmNMmN1u2b1nuo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45604\",\n    \"key\": \"11549\",\n    \"description\": \"a man in a black jacket is looking surprised at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfrf0qcm1q1rcn2l0o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19434\",\n    \"key\": \"87699\",\n    \"description\": \"a man wearing a black shirt is speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn8b3ckHXT1rgj6reo1_400\",\n    \"question\": \"where does the puppy sit.\",\n    \"answer\": \"? bowl\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38920\",\n    \"key\": \"55944\",\n    \"description\": \"a puppy sits with his paws in a water bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhekqkkOoT1rt3qmdo1_250\",\n    \"question\": \"how many men had the hug and an embrace?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9146\",\n    \"key\": \"24464\",\n    \"description\": \"the two men had a hug and an embrace.\"\n  },\n  {\n    \"video_name\": \"tumblr_np5yr0px4O1twfmf3o1_400\",\n    \"question\": \"what takes food from a bowl to a cat and dog?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34528\",\n    \"key\": \"18589\",\n    \"description\": \"a black bird takes food from a bowl to a cat and dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncom59mV8o1u08u4qo1_250\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29189\",\n    \"key\": \"23222\",\n    \"description\": \"the girl with the black shorts is singing and dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9baqcXz1B1s3fuxko1_400\",\n    \"question\": \"what did the woman ride swiftly down a yard?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52358\",\n    \"key\": \"71884\",\n    \"description\": \"a woman rode a horse swiftly down a yard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxia62ggu1sfcnmao1_400\",\n    \"question\": \"where is the guy in a black hat.\",\n    \"answer\": \"? booth\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49354\",\n    \"key\": \"40019\",\n    \"description\": \"a guy in a black hat is in a phone booth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nan1xwT9HS1s89twbo1_250\",\n    \"question\": \"what is the man with a headset on it moving his head and then falls off?\",\n    \"answer\": \"headset\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16263\",\n    \"key\": \"18907\",\n    \"description\": \"a man with a headset on it moving his head and then the headset falls off.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9agpx9QDL1s4niibo1_400\",\n    \"question\": \"how many women girls look at us and make faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28964\",\n    \"key\": \"32543\",\n    \"description\": \"two women girls look at us and make faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlj7ukgHxw1uqezvco1_500\",\n    \"question\": \"what was the young boy with dark hair getting taken?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45739\",\n    \"key\": \"71943\",\n    \"description\": \"a young boy with dark hair was getting his picture taken.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabjhc7Adk1tgqy75o1_500\",\n    \"question\": \"what are going down the road at night?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25936\",\n    \"key\": \"83904\",\n    \"description\": \"cars are going down a road at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7dbzg3AX1sg80mko1_400\",\n    \"question\": \"how many guys is this image of eating pizza?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27698\",\n    \"key\": \"73798\",\n    \"description\": \"this image is of two guys eating pizza.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2vicp4Xt1ti2fvro1_400\",\n    \"question\": \"how many guys are riding motorcycles?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49155\",\n    \"key\": \"53169\",\n    \"description\": \"two guys are riding motorcycles and one flips off the front of his.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfk3khwvlB1u3f59ho1_500\",\n    \"question\": \"what is the color of the couch?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7293\",\n    \"key\": \"35651\",\n    \"description\": \"a man is sitting on a red couch while pointing and speaking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92lo9JEvZ1tfz9ppo1_400\",\n    \"question\": \"where are seven puppies running.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22131\",\n    \"key\": \"52245\",\n    \"description\": \"seven puppies are running in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbozx0BfJ1r0b9nxo1_400\",\n    \"question\": \"what is the long haired man eating?\",\n    \"answer\": \"burger\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38960\",\n    \"key\": \"28096\",\n    \"description\": \"the long haired man is eating a cheese burger.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh25kqVdbO1teaq0so1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16309\",\n    \"key\": \"18669\",\n    \"description\": \"a very cute boy with yellow hair is raising his look and looking to the front.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhekqkkOoT1rt3qmdo1_250\",\n    \"question\": \"how many men in black shirts are hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29325\",\n    \"key\": \"24464\",\n    \"description\": \"two men in black shirts are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6woc74I81uot1e7o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11029\",\n    \"key\": \"63863\",\n    \"description\": \"a man is wearing a black shirt and moving his arms around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdje2GanU1tktmbso1_400\",\n    \"question\": \"what is coming out of the cage and moving around?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45303\",\n    \"key\": \"44937\",\n    \"description\": \"a dog is coming out of a cage and moving around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbleno32sJ1tjrio9o1_250\",\n    \"question\": \"what is angry and then the man is laughing?\",\n    \"answer\": \"llama\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9974\",\n    \"key\": \"13348\",\n    \"description\": \"a llama is angry and then a man is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyf9zKF011qi9fe9o1_250\",\n    \"question\": \"how many men are dancing near the car parked on a street?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7073\",\n    \"key\": \"21199\",\n    \"description\": \"two men are dancing near a car parked on a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwkmh8JaB1rss4j4o1_250\",\n    \"question\": \"what is the color of the cream?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30811\",\n    \"key\": \"19060\",\n    \"description\": \"a man with long hair is eating a red ice cream.\"\n  },\n  {\n    \"video_name\": \"tumblr_naeiiukOaI1qzm0hso1_400\",\n    \"question\": \"what paws the toy helicopter away out of the air?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16273\",\n    \"key\": \"76103\",\n    \"description\": \"a cat paws a toy helicopter away out of the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjrvdM5Tk1s3jo9no1_400\",\n    \"question\": \"how many snow boarder is this knocking snow onto another snow boarder?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9697\",\n    \"key\": \"65404\",\n    \"description\": \"this is one snow boarder knocking snow onto another snow boarder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkso8itnb61upyx5zo1_400\",\n    \"question\": \"what is the color of the bed?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA581\",\n    \"key\": \"24750\",\n    \"description\": \"a girl is lying on top of blue bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_naz9qi8pjG1sc609to1_250\",\n    \"question\": \"what is the woman stroking,\",\n    \"answer\": \"it licks its lips ? horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50377\",\n    \"key\": \"35551\",\n    \"description\": \"a woman is stroking a horse,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9075l4nPN1thp5u0o1_400\",\n    \"question\": \"what is the color of the spider?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34482\",\n    \"key\": \"46830\",\n    \"description\": \"this image is of a big black spider jumping on someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncaawdCxWV1rvlx3so1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6411\",\n    \"key\": \"32049\",\n    \"description\": \"a woman lightly scratches her black cat on the neck while smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nab7a9zj8l1rognfto1_400\",\n    \"question\": \"how many people are dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47518\",\n    \"key\": \"11021\",\n    \"description\": \"three people are dancing and one is throwing papers in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq5net4701tkyu2bo1_500\",\n    \"question\": \"what is the color of the person?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27149\",\n    \"key\": \"88948\",\n    \"description\": \"a person in black screams dramatically in a dimly lit room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbl18fV1iz1tjqkt0o1_400\",\n    \"question\": \"where is the candle flickering.\",\n    \"answer\": \"? holder\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16148\",\n    \"key\": \"64938\",\n    \"description\": \"a candle is flickering in a mosaic glass holder.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncnclh0Da61sqeumlo1_250\",\n    \"question\": \"what is the color of the bends?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13418\",\n    \"key\": \"20525\",\n    \"description\": \"a woman wearing black leather bends over a motorcycle.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqnmqzy391rnahu9o1_250\",\n    \"question\": \"what is the girl chasing?\",\n    \"answer\": \"camel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6323\",\n    \"key\": \"21347\",\n    \"description\": \"a girl is chasing a camel who is running away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay0kzAbkR1twcgnlo1_400\",\n    \"question\": \"how many young and beautiful women are climbing the stairs?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18705\",\n    \"key\": \"27538\",\n    \"description\": \"three young and beautiful women are climbing the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfq8lcxtjj1tsann9o1_r2_500\",\n    \"question\": \"what is the young man in white pants?\",\n    \"answer\": \"dancing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15774\",\n    \"key\": \"40935\",\n    \"description\": \"a young man in white pants is pole dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezd8smQVJ1tmefd5o1_250\",\n    \"question\": \"what does the man wearing denim slowly turn?\",\n    \"answer\": \"umbrella\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47983\",\n    \"key\": \"252\",\n    \"description\": \"the man wearing denim slowly turns the umbrella.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc80srnP11r202reo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19578\",\n    \"key\": \"86846\",\n    \"description\": \"a white man with black shirt is making the symbol of love and peace.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrtyiJ6Mo1t4779no1_400\",\n    \"question\": \"what is on fire?\",\n    \"answer\": \"pants\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14557\",\n    \"key\": \"61534\",\n    \"description\": \"a man 's pants is on fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni11qwnFts1t0w22yo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51969\",\n    \"key\": \"13191\",\n    \"description\": \"a man in a black jacket removes his scarf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhh45qypGS1tjhld9o1_250\",\n    \"question\": \"what is biting the cats head and the cat humorously retaliates?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30134\",\n    \"key\": \"25179\",\n    \"description\": \"a dog is biting a cats head and the cat humorously retaliates.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzuosHwut1s71nvbo1_400\",\n    \"question\": \"what is the color of the suits?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30074\",\n    \"key\": \"24459\",\n    \"description\": \"two men in white suits stand on a stage with a lady in long sparkly dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ctf9ELMW1taivooo1_500\",\n    \"question\": \"what is going high in space is disappeared?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21448\",\n    \"key\": \"79595\",\n    \"description\": \"a car is going high in space is disappeared.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes951ulUD1t9h1yfo1_400\",\n    \"question\": \"how many people are singing and performing on stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11666\",\n    \"key\": \"82397\",\n    \"description\": \"three people are singing and performing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nprpm1WJLb1uxtn9jo1_400\",\n    \"question\": \"what is jumping into the snow?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17041\",\n    \"key\": \"75011\",\n    \"description\": \"a fox is jumping into the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbes1tkyPL1tkpzw0o1_250\",\n    \"question\": \"what tried to reach there mom and someone helped them?\",\n    \"answer\": \"ducklings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45128\",\n    \"key\": \"20256\",\n    \"description\": \"some ducklings tried to reach there mom and someone helped them.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpb6q9to71u0vqe1o1_400\",\n    \"question\": \"what is the blond woman eating and talking?\",\n    \"answer\": \"lollipop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16678\",\n    \"key\": \"34769\",\n    \"description\": \"a blond woman is eating a lollipop and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs9w0ves71rc6vmmo1_400\",\n    \"question\": \"how many men sing while the third smiles?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42296\",\n    \"key\": \"57075\",\n    \"description\": \"three men sing while a third smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxcge7SrF1t0ojyvo1_500\",\n    \"question\": \"how many guys are on stage singing with microphones?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43658\",\n    \"key\": \"50672\",\n    \"description\": \"three guys are on stage singing with microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat8wfWBFb1taq9qwo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49249\",\n    \"key\": \"81591\",\n    \"description\": \"a woman with red hair is wearing a yellow shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs5palRjX1ro5rv7o1_400\",\n    \"question\": \"how many men stand still in the middle of a studio?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12399\",\n    \"key\": \"58317\",\n    \"description\": \"two men stand still in the middle of a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2rue39Be1qlxas3o1_400\",\n    \"question\": \"what is the color of the guitar?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52364\",\n    \"key\": \"65531\",\n    \"description\": \"a man is playing a red guitar and banging his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjel1i9RM1u43d61o1_500\",\n    \"question\": \"what is the man wearing a big necklace straightens?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45732\",\n    \"key\": \"70474\",\n    \"description\": \"a man wearing a big necklace straightens his black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zxbz23SQ1tptbi5o1_400\",\n    \"question\": \"how many man is trying to lick another man 's face?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12613\",\n    \"key\": \"80113\",\n    \"description\": \"one man is trying to lick another man 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbeo6Qqr91tl8fnfo1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44078\",\n    \"key\": \"80040\",\n    \"description\": \"a small brown dog is trying to jump over his fenced enclosure.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhd8b6NZCS1u2xe60o1_400\",\n    \"question\": \"what is someone putting on their fingernails?\",\n    \"answer\": \"paint\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8359\",\n    \"key\": \"17447\",\n    \"description\": \"someone is putting paint on their fingernails.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndepm5iPFa1ropieso1_1280\",\n    \"question\": \"how many people are smiling at each other in front of a union jack flag?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8394\",\n    \"key\": \"77491\",\n    \"description\": \"two people are smiling at each other in front of a union jack flag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2y83hXxz1s9kfl4o1_500\",\n    \"question\": \"how many young men stand in the semi-circle talking and laughing?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23054\",\n    \"key\": \"101123\",\n    \"description\": \"four young men stand in a semi-circle talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3gu0qW7V1t4y13wo1_400\",\n    \"question\": \"what is the man aggressively pushing?\",\n    \"answer\": \"mug\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45511\",\n    \"key\": \"50794\",\n    \"description\": \"a man is aggressively pushing another man 's coffee mug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjnj8Qryj1r9w93fo1_500\",\n    \"question\": \"how many girls are slowly sticking out their tongues?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14168\",\n    \"key\": \"28474\",\n    \"description\": \"two girls are slowly sticking out their tongues.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9couvqSnM1tu91qto1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20015\",\n    \"key\": \"7995\",\n    \"description\": \"a white man with black suit is greeting and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3xjjWRr51tdmffyo1_250\",\n    \"question\": \"what is lying down and slowly bouncing up and down?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2111\",\n    \"key\": \"47903\",\n    \"description\": \"a cat is lying down and slowly bouncing up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtcj5Inx41uqqy9lo1_400\",\n    \"question\": \"how many men sit at the desk?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45235\",\n    \"key\": \"65836\",\n    \"description\": \"two men sit at a desk,\"\n  },\n  {\n    \"video_name\": \"tumblr_nht8l6Brfh1slj978o1_400\",\n    \"question\": \"what is grabbing the woman 's snack?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49812\",\n    \"key\": \"27972\",\n    \"description\": \"a cat is grabbing a woman 's snack.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxjwynVlF1s78snxo1_250\",\n    \"question\": \"how many females are kissing at the dining table?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17065\",\n    \"key\": \"20388\",\n    \"description\": \"two females are kissing at a dining table.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncb3i7WXVb1tlwdnpo1_250\",\n    \"question\": \"what is the color of the beanie?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42751\",\n    \"key\": \"23592\",\n    \"description\": \"a guy is covering his head with his black beanie.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1dyrKWvc1sfwm8jo1_400\",\n    \"question\": \"what is scooping up sauces on a plate?\",\n    \"answer\": \"spoon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49171\",\n    \"key\": \"16778\",\n    \"description\": \"a spoon is scooping up sauces on a plate.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s6wdEJsP1th87jao1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34507\",\n    \"key\": \"61207\",\n    \"description\": \"a man in a black hat is yelling in a crowd of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfjoeOSwk1r8pns9o1_400\",\n    \"question\": \"what is chewing on the cellophane bag?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37813\",\n    \"key\": \"16662\",\n    \"description\": \"the cat is chewing on a cellophane bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnp7fZGcc1tol1i5o1_500\",\n    \"question\": \"where is the person rolling.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47015\",\n    \"key\": \"56952\",\n    \"description\": \"the person is rolling around very drunk in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2wphU00c1ts0qzho1_1280\",\n    \"question\": \"how many women run to each other and hug?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8230\",\n    \"key\": \"33406\",\n    \"description\": \"the three women run to each other and hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_np85pfASqn1qaxcloo1_250\",\n    \"question\": \"what is the girl showing and smiling?\",\n    \"answer\": \"necklace\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45586\",\n    \"key\": \"2398\",\n    \"description\": \"a girl is showing a necklace and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgzumpMT61u3odwpo1_500\",\n    \"question\": \"what is the beautiful man with dark clothes getting?\",\n    \"answer\": \"close\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28414\",\n    \"key\": \"55196\",\n    \"description\": \"a beautiful man with dark clothes is getting his hat close.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0stcDMuz1u3z45ao1_500\",\n    \"question\": \"where is the man playing an acoustic guitar.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16505\",\n    \"key\": \"46013\",\n    \"description\": \"a man is playing an acoustic guitar in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh973fdNzl1tahsn4o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24282\",\n    \"key\": \"22127\",\n    \"description\": \"a television presenter in a gray jacket is expressing surprise.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc51lxZqcX1tkpzw0o1_250\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10725\",\n    \"key\": \"6269\",\n    \"description\": \"a dog is sitting in a blue chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8hqaapJu1s6wfymo1_400\",\n    \"question\": \"what is the woman wearing made out of a flag?\",\n    \"answer\": \"costume\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5485\",\n    \"key\": \"86940\",\n    \"description\": \"a woman is wearing a costume made out of a flag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckjrzjHmR1sc2n9ao1_500\",\n    \"question\": \"how many boys wink their eyes whilst looking at the background?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32087\",\n    \"key\": \"83916\",\n    \"description\": \"two boys wink their eyes whilst looking at the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdbfb4nT11tx8mn0o1_400\",\n    \"question\": \"what does the racing car spin off during a race?\",\n    \"answer\": \"track\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12610\",\n    \"key\": \"100983\",\n    \"description\": \"a racing car spins off the track during a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefw6jGPyb1s2kp2fo1_400\",\n    \"question\": \"how many skaters are dancing across the ice together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19144\",\n    \"key\": \"91094\",\n    \"description\": \"two skaters are dancing across the ice together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nds6ogu9QS1tsn7r7o1_400\",\n    \"question\": \"how many girls is wearing black hats walk forward together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29085\",\n    \"key\": \"22067\",\n    \"description\": \"three girls wearing black hats walk forward together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhnomg0r01u1pokno1_250\",\n    \"question\": \"what is the cat with a gingham bib being fed?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34726\",\n    \"key\": \"53313\",\n    \"description\": \"a cat with a gingham bib is being fed a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklmwmP2fN1r26jdlo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13819\",\n    \"key\": \"69501\",\n    \"description\": \"man with white shirt is touching his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9uwvyjpy1r23fzwo1_500\",\n    \"question\": \"what is jumping and trotting cutely and insanely?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7384\",\n    \"key\": \"59214\",\n    \"description\": \"a horse is jumping and trotting cutely and insanely.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4e6y37661qzm8mpo1_250\",\n    \"question\": \"what is the color of the pop?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43873\",\n    \"key\": \"35503\",\n    \"description\": \"a young man is eating a red freezer pop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowrymJVDJ1uumws9o1_250\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8802\",\n    \"key\": \"43909\",\n    \"description\": \"a man is driving a convertible black car with a woman in the passenger seat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqkhzz8i841uzwc0eo1_500\",\n    \"question\": \"what does the girl drop off?\",\n    \"answer\": \"shoe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8933\",\n    \"key\": \"92675\",\n    \"description\": \"a girl drops her shoe off as she 's walking close to the border of a roof.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqneh6gmCI1uva9gvo1_400\",\n    \"question\": \"what attempts to grab the pepper on a table?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47030\",\n    \"key\": \"66102\",\n    \"description\": \"a small white dog attempts to grab a pepper on a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc56edMX8f1s9q0pdo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23786\",\n    \"key\": \"83249\",\n    \"description\": \"a man with a black shirt is grabbing at the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb40f1NWsK1tjrca2o1_400\",\n    \"question\": \"what is playing with the toy?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52376\",\n    \"key\": \"65695\",\n    \"description\": \"a brown furry dog is playing with a toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq60huObBd1tk2ngvo1_400\",\n    \"question\": \"what is riding the remote controlled car?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31865\",\n    \"key\": \"15603\",\n    \"description\": \"a cat is riding a remote controlled car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknibq9AK81r8311io1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22169\",\n    \"key\": \"75875\",\n    \"description\": \"a man in a black jacket suddenly smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncw1h7V8au1rmdsrwo1_400\",\n    \"question\": \"what is giving the high five to a person?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2401\",\n    \"key\": \"63248\",\n    \"description\": \"a dog is giving a high five to a person.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni335uiNaW1tebf8do2_250\",\n    \"question\": \"how many people is swimming in a lake are about to kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1082\",\n    \"key\": \"47303\",\n    \"description\": \"two people swimming in a lake are about to kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nioeglzBE41rqttkvo1_500\",\n    \"question\": \"what is the man holding smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28156\",\n    \"key\": \"81739\",\n    \"description\": \"the man is holding his smoking cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelx9gbLoH1u33n9wo1_1280\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37879\",\n    \"key\": \"47992\",\n    \"description\": \"a man wears a blue shirt and white coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimjqmgul31u94evjo1_500\",\n    \"question\": \"what is lying on the cushioned surface?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44664\",\n    \"key\": \"70177\",\n    \"description\": \"a black cat is lying on a cushioned surface.\"\n  },\n  {\n    \"video_name\": \"tumblr_njohpqycOr1sqbefno1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41214\",\n    \"key\": \"54082\",\n    \"description\": \"a young man in a hooded black shirt speaks and lifts his finger towards his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnd6rNKRS1trhseeo1_400\",\n    \"question\": \"what is the man holding up and looking?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2993\",\n    \"key\": \"61293\",\n    \"description\": \"a man is holding a banana up and looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndv9otkHWR1smlr71o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20898\",\n    \"key\": \"34478\",\n    \"description\": \"this is a man in a white suit posing for pictures.\"\n  },\n  {\n    \"video_name\": \"tumblr_naov96U3cP1qd0x24o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29479\",\n    \"key\": \"6842\",\n    \"description\": \"a guy in a black baseball hat is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyizh0JAT1tsqdy0o1_400\",\n    \"question\": \"where is the guy jumping rope.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9587\",\n    \"key\": \"16014\",\n    \"description\": \"a guy is jumping rope in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8dhxAt5Q1tvf4x3o1_500\",\n    \"question\": \"what is the man wearing and looking around?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52073\",\n    \"key\": \"54979\",\n    \"description\": \"a man is wearing sunglasses and looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzioHl7F1u25ovvo1_400\",\n    \"question\": \"what does there 's driving on a road in the country?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12660\",\n    \"key\": \"63575\",\n    \"description\": \"there 's a white car driving on a road in the country.\"\n  },\n  {\n    \"video_name\": \"tumblr_napisgp4bL1tjdvbvo1_500\",\n    \"question\": \"what is the woman with blonde hair,\",\n    \"answer\": \"smoking and turning her head ? cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8660\",\n    \"key\": \"80524\",\n    \"description\": \"a woman with blonde hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfozbb01U1tv0ziio1_400\",\n    \"question\": \"how many skateboarders are passing by on the sunny day?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12\",\n    \"key\": \"31216\",\n    \"description\": \"two skateboarders are passing by on a sunny day.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4ewfkY9P1qcp4ato1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21718\",\n    \"key\": \"17530\",\n    \"description\": \"a woman with dyed blue hair is blowing a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyiresVbd1unyhx2o1_400\",\n    \"question\": \"what is racing down the race tracks?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7135\",\n    \"key\": \"76911\",\n    \"description\": \"the car is racing down the race tracks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2j9ov5zN1u4v3ypo1_250\",\n    \"question\": \"what did the kitten climb up?\",\n    \"answer\": \"ladder\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29887\",\n    \"key\": \"155\",\n    \"description\": \"a kitten climbed up a metal ladder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4qvj4I2L1tj04kmo2_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36114\",\n    \"key\": \"5480\",\n    \"description\": \"a man in a black shirt is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrrwnYzl21u1yyhdo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10497\",\n    \"key\": \"280\",\n    \"description\": \"a girl in a white shirt is smiling very big.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbl9upHHOv1rqr9fgo1_400\",\n    \"question\": \"how many older men are looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12897\",\n    \"key\": \"44271\",\n    \"description\": \"two older men are looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3xu3rPoK1s6zpepo1_250\",\n    \"question\": \"what is the color of the bear?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22243\",\n    \"key\": \"8054\",\n    \"description\": \"a black bear try to scratch his back with a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qidhSx5p1slwpo8o1_400\",\n    \"question\": \"what is the man doing the worm dance and tries to jump on him?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1669\",\n    \"key\": \"21388\",\n    \"description\": \"a man is doing the worm dance and his cat tries to jump on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nayyw8Amj41tkxnz1o1_400\",\n    \"question\": \"where is the young girl looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35952\",\n    \"key\": \"76895\",\n    \"description\": \"a young girl is looking at herself in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne55yo7DLv1tsmvhdo1_500\",\n    \"question\": \"what are young chicks jumping off?\",\n    \"answer\": \"cliff\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15604\",\n    \"key\": \"94775\",\n    \"description\": \"young chicks are jumping off a high cliff.\"\n  },\n  {\n    \"video_name\": \"tumblr_noj5h56PEB1tx8mn0o1_400\",\n    \"question\": \"what are two races very close to each other on the race track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15053\",\n    \"key\": \"77035\",\n    \"description\": \"two races cars are very close to each other on the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzvsya1WR1tfjrdno1_400\",\n    \"question\": \"how many girls stick out their tongue at the cam?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36312\",\n    \"key\": \"31404\",\n    \"description\": \"two girls stick out their tongue at the cam.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjubnErtE1sh0wvgo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34759\",\n    \"key\": \"14412\",\n    \"description\": \"a man dressed in black is putting his hand into his pocket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nomairinYw1uv1t6zo1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43325\",\n    \"key\": \"94679\",\n    \"description\": \"a white girl is doing break dance in the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklj4p26GV1rxcyx0o1_250\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52010\",\n    \"key\": \"16632\",\n    \"description\": \"a shirtless man in blue shorts is jumping rope in a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqn263IcBj1uzrtz5o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31851\",\n    \"key\": \"6137\",\n    \"description\": \"a white man with black cap is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5h8ba4iB1s3wsijo1_500\",\n    \"question\": \"how many men are sword fighting in the closed room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29414\",\n    \"key\": \"69389\",\n    \"description\": \"two men are sword fighting in a closed room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkw5zlOKPl1u4xluho1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3679\",\n    \"key\": \"58464\",\n    \"description\": \"a man in a yellow shirt is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncg8b02Uyb1tmxc86o1_400\",\n    \"question\": \"what falls off its playground while other cats watch it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23130\",\n    \"key\": \"36585\",\n    \"description\": \"a cat falls off its playground while other cats watch it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq36cclrEn1uvp3zyo1_500\",\n    \"question\": \"what is the woman in a lacy bra adjusting?\",\n    \"answer\": \"clothing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27658\",\n    \"key\": \"34462\",\n    \"description\": \"a woman in a lacy bra is adjusting her clothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0uk6lrdI1raliteo1_400\",\n    \"question\": \"what are racing and drifting around the track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38621\",\n    \"key\": \"79250\",\n    \"description\": \"the cars are racing and drifting around a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0wrkd3SG1tfpkg4o1_500\",\n    \"question\": \"what are the group of girls wearing football?\",\n    \"answer\": \"shirts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14864\",\n    \"key\": \"20617\",\n    \"description\": \"a group of girls are wearing football shirts.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9q33mPy121ti34tso1_1280\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22148\",\n    \"key\": \"96936\",\n    \"description\": \"a man in a purple shirt and green scarf is walking down a sand dune.\"\n  },\n  {\n    \"video_name\": \"tumblr_nori82OpqH1sajlg5o1_500\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37644\",\n    \"key\": \"91312\",\n    \"description\": \"a man wearing a black sweater touches his face and says something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwyn9wAq21tfvj5ao1_500\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45850\",\n    \"key\": \"24954\",\n    \"description\": \"two men dressed in black are walking away from their car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwfolO27d1tmflpjo1_500\",\n    \"question\": \"where does the young man fall on the floor.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14986\",\n    \"key\": \"58076\",\n    \"description\": \"a young man in a bedroom falls on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr93ch6vDZ1us9058o1_250\",\n    \"question\": \"what is the man wearing a suit is eating?\",\n    \"answer\": \"apple\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43653\",\n    \"key\": \"6490\",\n    \"description\": \"the man wearing a suit is eating a sliced apple.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3mu1R5I61tgtinoo1_250\",\n    \"question\": \"what is happy to be getting his body scratched?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39820\",\n    \"key\": \"643\",\n    \"description\": \"a bird is happy to be getting his body scratched.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne26g19AFF1tmflpjo1_500\",\n    \"question\": \"what is the color of the bandanna?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19346\",\n    \"key\": \"58135\",\n    \"description\": \"a man with a blue bandanna plays with an orange kitten.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbapxep1ZI1sk3b6wo1_r1_500\",\n    \"question\": \"where is the guy caressing his face.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34056\",\n    \"key\": \"87916\",\n    \"description\": \"a guy is caressing his face in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8mmljGHg1r3t6cao1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47040\",\n    \"key\": \"40303\",\n    \"description\": \"a man wearing a black suit pulls something out of his jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbplrtZnS81tbjfazo1_400\",\n    \"question\": \"what is the color of the shark?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27725\",\n    \"key\": \"41760\",\n    \"description\": \"a gray shark is swimming in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ewm0ilhs1riwrryo1_250\",\n    \"question\": \"how many football players are colliding with each other while watching the ball?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14816\",\n    \"key\": \"26016\",\n    \"description\": \"two football players are colliding with each other while watching the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng7vinKaZ21sht3fmo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9310\",\n    \"key\": \"92531\",\n    \"description\": \"an older man with gray hair is wearing a suit and tie and looks side to front to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf24phb8BO1thpehoo1_400\",\n    \"question\": \"how many young men are smiling and staring at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51923\",\n    \"key\": \"47579\",\n    \"description\": \"two young men are smiling and staring at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbze7q65N1s6zpepo1_500\",\n    \"question\": \"what is swimming in the blue ocean?\",\n    \"answer\": \"shark\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20264\",\n    \"key\": \"65465\",\n    \"description\": \"a white shark is swimming in the blue ocean.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0lvzNzJJ1s7vtgpo1_400\",\n    \"question\": \"what is the guy wearing a black shirt,\",\n    \"answer\": \"is playing ? ukulele\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27854\",\n    \"key\": \"1745\",\n    \"description\": \"a guy wearing a black shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5ljp5DaL1uygmxjo1_400\",\n    \"question\": \"what is the color of the high?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23509\",\n    \"key\": \"21139\",\n    \"description\": \"a female contestant with blonde hair and wearing a blue top high fives two people either side of her.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fxbgYr0K1rvpycko1_250\",\n    \"question\": \"how many men are sitting on top of a roof drinking together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35563\",\n    \"key\": \"53726\",\n    \"description\": \"two men are sitting on top of a roof drinking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1uqvcH4y1t1nzngo1_500\",\n    \"question\": \"what is the color of the guitar?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36250\",\n    \"key\": \"70801\",\n    \"description\": \"two men wear white play guitar on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq9kaqQ2R1tegl32o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30062\",\n    \"key\": \"14927\",\n    \"description\": \"a young man with white hair is riding a power chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_npp14yVd861ruoinvo1_400\",\n    \"question\": \"what is the young woman doing?\",\n    \"answer\": \"turns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3018\",\n    \"key\": \"50547\",\n    \"description\": \"a young woman is doing several mid-air turns.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknxletT5q1sgou7qo1_250\",\n    \"question\": \"what is the boy playing in front of a cool background?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3907\",\n    \"key\": \"13620\",\n    \"description\": \"a boy is playing guitar in front of a cool background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nccy3a7yht1tguvx7o1_400\",\n    \"question\": \"what is the color of the suv?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3943\",\n    \"key\": \"50054\",\n    \"description\": \"a man is sticking his head out of black suv driving by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebsu3wlge1r7490vo1_500\",\n    \"question\": \"how many men are conducting the podcast and having fun?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51695\",\n    \"key\": \"101847\",\n    \"description\": \"two men are conducting a podcast and having fun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwjvryKQj1qc4d1mo1_250\",\n    \"question\": \"what does the man lay out in a row in stockings?\",\n    \"answer\": \"puppies\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28072\",\n    \"key\": \"74957\",\n    \"description\": \"a man lays puppies out in a row in stockings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtbxhIBN81u8bjw8o1_250\",\n    \"question\": \"how many men are entering the room with one riding a statue?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20076\",\n    \"key\": \"24027\",\n    \"description\": \"two men are entering a room with one riding a statue.\"\n  },\n  {\n    \"video_name\": \"tumblr_np6npym64j1smfzl0o1_1280\",\n    \"question\": \"what is the color of the tie?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23967\",\n    \"key\": \"80999\",\n    \"description\": \"a man with a red tie is looking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9fzj5h9Y1u57bkto1_250\",\n    \"question\": \"how many girls are lying under the blanket comforting each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12524\",\n    \"key\": \"42689\",\n    \"description\": \"two girls are lying under a blanket comforting each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfflefXvpx1u25ovvo1_400\",\n    \"question\": \"what is driving down the road on the left side?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA413\",\n    \"key\": \"63605\",\n    \"description\": \"a sports car is driving down a road on the left side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd931nZhS61s1ctsqo1_400\",\n    \"question\": \"what is the boy wearing and smiling?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10550\",\n    \"key\": \"64632\",\n    \"description\": \"a boy is wearing a white shirt and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6tq0KVmP1tx8mn0o1_400\",\n    \"question\": \"what is skidding off the corner of a racetrack?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19406\",\n    \"key\": \"78271\",\n    \"description\": \"a green motorbike is skidding off the corner of a racetrack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf9ikxHl41tc2wo7o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29957\",\n    \"key\": \"5737\",\n    \"description\": \"a guy with red hair is reading something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkadbrY0j01rj4f6to1_250\",\n    \"question\": \"what is the man counting while throwing it in front of him?\",\n    \"answer\": \"cash\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40920\",\n    \"key\": \"49409\",\n    \"description\": \"a man is counting cash while throwing it in front of him.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h0r5Keii1tb698ho1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11308\",\n    \"key\": \"46865\",\n    \"description\": \"a woman with long black hair and big eyes is looking confused.\"\n  },\n  {\n    \"video_name\": \"tumblr_neg0g3h3gH1qgs247o1_500\",\n    \"question\": \"how many women that look the same are having a picture?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15950\",\n    \"key\": \"69999\",\n    \"description\": \"two women that look the same are having a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3eo7OIFT1qfq821o1_400\",\n    \"question\": \"what does the man drop on stage?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12838\",\n    \"key\": \"5853\",\n    \"description\": \"a man drops his microphone on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauhoyxzcP1tx8mn0o1_400\",\n    \"question\": \"what are racing and one hits the side and bursts into flames?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48318\",\n    \"key\": \"55526\",\n    \"description\": \"many cars are racing and one hits the side and bursts into flames.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9ty1C8Dw1tr5tuwo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4016\",\n    \"key\": \"89701\",\n    \"description\": \"a beautiful yellow car is rolling down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnen8mJCr1sa0lndo1_500\",\n    \"question\": \"how many young men are standing in front of burning candles?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17500\",\n    \"key\": \"72354\",\n    \"description\": \"two young men are standing in front of burning candles and they are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nculypGc871u0x3uvo1_500\",\n    \"question\": \"what is the man in a suit playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5120\",\n    \"key\": \"69278\",\n    \"description\": \"a man in a suit is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkaabSLxV1rzui38o1_400\",\n    \"question\": \"what is the color of the umbrella?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19922\",\n    \"key\": \"15437\",\n    \"description\": \"doves are flying around a lady with a black umbrella.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9abseuY0C1slj978o1_400\",\n    \"question\": \"what is playing with the swishing tail of a sitting cat?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21416\",\n    \"key\": \"70847\",\n    \"description\": \"a kitten is playing with the swishing tail of a sitting cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s711XyXQ1th20u7o1_250\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10455\",\n    \"key\": \"25539\",\n    \"description\": \"a woman wearing a pink dress,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrlcrqLFl1u7c3syo1_500\",\n    \"question\": \"how many young men are sitting together and chatting?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49069\",\n    \"key\": \"80637\",\n    \"description\": \"three young men are sitting together and chatting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtm7qpM2J1ttyq3ao1_250\",\n    \"question\": \"what did the sexy woman put down to lower her eyes?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48402\",\n    \"key\": \"14564\",\n    \"description\": \"the sexy woman put her hat down to lower her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pqj1rlmp1t29pn7o1_250\",\n    \"question\": \"what is the man sitting on stage and shaking?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14527\",\n    \"key\": \"18874\",\n    \"description\": \"a man is sitting on stage and shaking his microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexi5fkr5g1u3y1flo1_250\",\n    \"question\": \"what are performing in studio on television?\",\n    \"answer\": \"stars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28650\",\n    \"key\": \"71481\",\n    \"description\": \"rock stars are performing in studio on television.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfgad6TZq1ty118ro1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20123\",\n    \"key\": \"24270\",\n    \"description\": \"man with suit black is touching his eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzef77ISo1qzqg2go1_500\",\n    \"question\": \"what is rubbing against the young boy?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52125\",\n    \"key\": \"81788\",\n    \"description\": \"a cat is rubbing against a young boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6t8rIVdA1tjjnlno1_400\",\n    \"question\": \"where is the kitten playing.\",\n    \"answer\": \"? ball\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31489\",\n    \"key\": \"54116\",\n    \"description\": \"a kitten is playing in the pink ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hl6ky3FK1qk377so1_400\",\n    \"question\": \"what does the car avoid while traveling on a road?\",\n    \"answer\": \"scooter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19164\",\n    \"key\": \"84923\",\n    \"description\": \"a car avoids a scooter while traveling on a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad5toBHv81s2mb0qo1_500\",\n    \"question\": \"where does the cat sniff another cat squashed.\",\n    \"answer\": \"? box\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11474\",\n    \"key\": \"62745\",\n    \"description\": \"a cat sniffs another cat squashed in a cardboard box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nasnqxg8kb1tt6vx5o1_250\",\n    \"question\": \"what is the person driving through a factory?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12229\",\n    \"key\": \"43969\",\n    \"description\": \"a person is driving a motorcycle through a factory.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp0h7ftuy1sofgdso1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17307\",\n    \"key\": \"23766\",\n    \"description\": \"the guy with the gray coat is kissing the girl with the blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjtdvdsMt1sdiz3bo1_400\",\n    \"question\": \"where is the white man making a dance steps.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43762\",\n    \"key\": \"33402\",\n    \"description\": \"a white man is making a dance steps in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowj7atVBQ1s9g3wto1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6619\",\n    \"key\": \"48520\",\n    \"description\": \"a lady is being adored while standing on the red carpet in a red dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfg9rpwbV11soz0p7o1_400\",\n    \"question\": \"where is the man riding the skateboard is doing tricks.\",\n    \"answer\": \"? road\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28991\",\n    \"key\": \"78829\",\n    \"description\": \"the man riding the skateboard is doing tricks in the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9v07TxUL1sjcvc1o1_250\",\n    \"question\": \"what is the beautiful man with short hair breaking?\",\n    \"answer\": \"cover\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA583\",\n    \"key\": \"84536\",\n    \"description\": \"a beautiful man with short hair is breaking a white cover.\"\n  },\n  {\n    \"video_name\": \"tumblr_nosv3ta6Y91rndm3wo1_250\",\n    \"question\": \"where is an animal eating french fries,\",\n    \"answer\": \". ? cage\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8725\",\n    \"key\": \"27133\",\n    \"description\": \"an animal in a cage is eating french fries,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbvhcbSyBx1rgwaj9o1_400\",\n    \"question\": \"what is the man in a backwards hat playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23866\",\n    \"key\": \"12085\",\n    \"description\": \"a man in a backwards hat is playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_njn5u2RkUm1s6zpepo1_400\",\n    \"question\": \"what throws the man into a pond?\",\n    \"answer\": \"backhoe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26168\",\n    \"key\": \"44521\",\n    \"description\": \"a backhoe throws a man into a pond.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yf34l4yG1tii3qao1_250\",\n    \"question\": \"what is the color of the dances?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2742\",\n    \"key\": \"3917\",\n    \"description\": \"a man wears black dances wild on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndt3nfDJoE1sc377wo1_500\",\n    \"question\": \"how many man grabs another man 's head and pulls it to his face?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8017\",\n    \"key\": \"85804\",\n    \"description\": \"One man grabs another man 's head and pulls it to his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyam1X1MM1tmnntwo1_250\",\n    \"question\": \"what jumps up and closes the closet door with its paws?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35287\",\n    \"key\": \"37541\",\n    \"description\": \"a calico cat jumps up and closes a closet door with its paws.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcj27AOTX1tp9bieo1_250\",\n    \"question\": \"how many women are showing off their glasses and hats?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41331\",\n    \"key\": \"6762\",\n    \"description\": \"two women are showing off their glasses and hats.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhxpcxAUv1tn9g03o1_250\",\n    \"question\": \"what is the woman jumping off?\",\n    \"answer\": \"bed\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27891\",\n    \"key\": \"20005\",\n    \"description\": \"a woman is jumping off a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_na02k6GsjK1tgetb4o1_400\",\n    \"question\": \"what appears in front of a desk and a man tries to escape but can not?\",\n    \"answer\": \"wall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48775\",\n    \"key\": \"27463\",\n    \"description\": \"a wall appears in front of a desk and a man tries to escape but can not.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkchxtDx51tb1f6ao1_400\",\n    \"question\": \"how many people look forward and then kiss each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5460\",\n    \"key\": \"34124\",\n    \"description\": \"two people look forward and then kiss each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1g3oDF0D1qcgyjoo1_400\",\n    \"question\": \"what managed to run into the coca cola box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20825\",\n    \"key\": \"46484\",\n    \"description\": \"a cat managed to run into a coca cola box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbkqr0O34Z1twkd2qo1_250\",\n    \"question\": \"what is the girl singing,\",\n    \"answer\": \"and she is holding up ? puppet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29836\",\n    \"key\": \"44066\",\n    \"description\": \"a girl is singing,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hnnpXMzy1tt1jino1_250\",\n    \"question\": \"how many men gets surprised by the third man on a stage,\",\n    \"answer\": \"? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27559\",\n    \"key\": \"18075\",\n    \"description\": \"two men gets surprised by a third man on a stage,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrzq15FyY1s6qyp9o1_500\",\n    \"question\": \"what does the light haired person with lip piercings and a dark hat with thorns raise?\",\n    \"answer\": \"goblet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29201\",\n    \"key\": \"86885\",\n    \"description\": \"a light haired person with lip piercings and a dark hat with thorns raises a goblet.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9m54cPuul1s7u6edo1_500\",\n    \"question\": \"where is the man moving around.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10425\",\n    \"key\": \"81840\",\n    \"description\": \"a man is moving around in bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak0l8OX8X1tatohao1_400\",\n    \"question\": \"what is chewing an exciting man 's ear on the show?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20254\",\n    \"key\": \"58438\",\n    \"description\": \"a horse is chewing an exciting man 's ear on the show.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9ol4V9GF1u8skfvo1_500\",\n    \"question\": \"what are the two men playing in front of the crowd?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21925\",\n    \"key\": \"66907\",\n    \"description\": \"the two men are playing guitar in front of the crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqt05iwece1te94myo1_400\",\n    \"question\": \"what shakes the man by the hand and then gives him a high five?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36315\",\n    \"key\": \"21136\",\n    \"description\": \"a dog shakes a man by the hand and then gives him a high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_np5yr0px4O1twfmf3o1_400\",\n    \"question\": \"what is the color of the bird?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37224\",\n    \"key\": \"18589\",\n    \"description\": \"a black bird takes food from a bowl to a cat and dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nri0fojp0G1tx8mn0o1_400\",\n    \"question\": \"how many cars are driving?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40100\",\n    \"key\": \"55938\",\n    \"description\": \"two cars are driving and one car starts to burn.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8nl1PVQh1tom9vyo1_400\",\n    \"question\": \"what is the color of the cloth?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2012\",\n    \"key\": \"61802\",\n    \"description\": \"a woman covered with orange cloth is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nognkiz2HI1uvi76ao1_500\",\n    \"question\": \"how many people are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA698\",\n    \"key\": \"62027\",\n    \"description\": \"two people are talking to each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_njxkdtyDbl1sht3fmo1_250\",\n    \"question\": \"what are running into the car?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23616\",\n    \"key\": \"36792\",\n    \"description\": \"a dog are running into the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5andAo8C1tleghwo1_500\",\n    \"question\": \"what is the man adjusting in the mirror?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29778\",\n    \"key\": \"16997\",\n    \"description\": \"the man is adjusting his tie in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_npqo9maJv31tbjksno1_540\",\n    \"question\": \"where is the guy with black suit opening his eyes.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38409\",\n    \"key\": \"10635\",\n    \"description\": \"a guy with black suit is opening his eyes in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmfziQ3X61qj319bo1_250\",\n    \"question\": \"what is the man wearing a black suit and hat,\",\n    \"answer\": \"is using and smoking a cigarette ? phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11900\",\n    \"key\": \"27811\",\n    \"description\": \"a man wearing a black suit and hat,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqneh6gmCI1uva9gvo1_400\",\n    \"question\": \"what is looking the piece of food on a glass table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46344\",\n    \"key\": \"66102\",\n    \"description\": \"a cat is looking a piece of food on a glass table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1h818Si01tlk1ano1_250\",\n    \"question\": \"what is the cat staring up and twitching?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50282\",\n    \"key\": \"7880\",\n    \"description\": \"a cat is staring up and twitching its tail then jumping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1tyhgYEn1sda6szo1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14630\",\n    \"key\": \"78109\",\n    \"description\": \"a young man wearing white clothing is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngivb5dOC61rwf2xmo1_500\",\n    \"question\": \"where is the couple,\",\n    \"answer\": \"wearing coats , is hugging . ? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15296\",\n    \"key\": \"89034\",\n    \"description\": \"the couple,\"\n  },\n  {\n    \"video_name\": \"tumblr_njb55e5csY1slwpo8o1_250\",\n    \"question\": \"what is fighting and falls over?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5027\",\n    \"key\": \"40890\",\n    \"description\": \"a bear is fighting and falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngc3x7Bwpx1tv81ioo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42673\",\n    \"key\": \"47277\",\n    \"description\": \"a man in a green tank top is doing a marching dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nogkhlzgRK1uvi76ao1_500\",\n    \"question\": \"how many young men greet with the friendly happy hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29920\",\n    \"key\": \"62375\",\n    \"description\": \"two young men greet with a friendly happy hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_npl4oiGQes1u8mr7go1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29984\",\n    \"key\": \"55842\",\n    \"description\": \"a person with black hair is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6u0dxvpu1s0d12ko1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15426\",\n    \"key\": \"86744\",\n    \"description\": \"a girl with yellow hat spins then stops in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nctwxv3Cf61sdoqnro1_500\",\n    \"question\": \"what is the man kicking into a tire,\",\n    \"answer\": \"but he misses ? ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27776\",\n    \"key\": \"63764\",\n    \"description\": \"a man is kicking a soccer ball into a tire,\"\n  },\n  {\n    \"video_name\": \"tumblr_nft79he7Rj1slbfzxo1_500\",\n    \"question\": \"what is the man holding by its tail?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18861\",\n    \"key\": \"72567\",\n    \"description\": \"a man is holding a cat by its tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmd0bTfA01ts7wbfo1_400\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11296\",\n    \"key\": \"87448\",\n    \"description\": \"several men dressed in black are walking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdje2GanU1tktmbso1_400\",\n    \"question\": \"what is curious and sniffing around?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24230\",\n    \"key\": \"44937\",\n    \"description\": \"a white puppy is curious and sniffing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzf9iDQIe1sibw2po1_400\",\n    \"question\": \"where is the woman pressing her lips together and then smiling.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40006\",\n    \"key\": \"31961\",\n    \"description\": \"a woman in a poorly lit room is pressing her lips together and then smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnzb5N7By1t8vkd1o1_500\",\n    \"question\": \"what is the color of the playing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6414\",\n    \"key\": \"98954\",\n    \"description\": \"this image is of a group of men in black playing with swords.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfg4wgqDLN1u1y9ruo1_500\",\n    \"question\": \"what is the color of the moves?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4881\",\n    \"key\": \"50919\",\n    \"description\": \"a man in black moves back and stares forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5ke1JX9b1tz48xjo1_500\",\n    \"question\": \"how many men are standing together while one is talking?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11901\",\n    \"key\": \"42575\",\n    \"description\": \"three men are standing together while one is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1ka7Igyp1twhvlao1_400\",\n    \"question\": \"what is the color of the boats?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40538\",\n    \"key\": \"48032\",\n    \"description\": \"a bunch of white boats are grouped up together floating.\"\n  },\n  {\n    \"video_name\": \"tumblr_niuy3acWZ61shch57o1_250\",\n    \"question\": \"how many boys is this sitting and talking while one boy plays with his necklace?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA158\",\n    \"key\": \"40241\",\n    \"description\": \"this is two boys sitting and talking while one boy plays with his necklace.\"\n  },\n  {\n    \"video_name\": \"tumblr_n922rsMb261te2f6lo1_400\",\n    \"question\": \"what is struggling to walk?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7537\",\n    \"key\": \"82171\",\n    \"description\": \"a baby elephant is struggling to walk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nalxhkgg2y1rstjlro1_400\",\n    \"question\": \"what is the guy playing and other guy is dancing in a stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46710\",\n    \"key\": \"39089\",\n    \"description\": \"a guy is playing guitar and other guy is dancing in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpvltiHql1tjag8mo1_250\",\n    \"question\": \"how many men are pushing and wrestling with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3166\",\n    \"key\": \"21881\",\n    \"description\": \"two men are pushing and wrestling with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9idf18Lt31sjcycuo1_250\",\n    \"question\": \"what is cashing an octopus?\",\n    \"answer\": \"diver\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47434\",\n    \"key\": \"73363\",\n    \"description\": \"a deep sea diver is cashing an octopus.\"\n  },\n  {\n    \"video_name\": \"tumblr_natxvuXPzH1shtm22o1_500\",\n    \"question\": \"where are two people holding each other.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45946\",\n    \"key\": \"76035\",\n    \"description\": \"two people in a car are holding each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_neelihONdq1tsc7yfo1_250\",\n    \"question\": \"what is the color of the backdrop?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32954\",\n    \"key\": \"9841\",\n    \"description\": \"a man holding a microphone is sitting in front of a red backdrop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nct666AvNA1se0i5uo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36869\",\n    \"key\": \"45155\",\n    \"description\": \"a girl with brown hair is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8hdgB5OO1slj978o1_400\",\n    \"question\": \"how many dogs are chasing the ball while dragging a young boy?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7337\",\n    \"key\": \"92423\",\n    \"description\": \"two dogs are chasing a ball while dragging a young boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvji4ecmU1qjxfevo1_250\",\n    \"question\": \"what is showing her tongue to something?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13281\",\n    \"key\": \"8778\",\n    \"description\": \"a dog is showing her tongue to something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndh2k4MQeD1tw8vf9o1_400\",\n    \"question\": \"what is the guy walking up backwards on his hands?\",\n    \"answer\": \"steps\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2376\",\n    \"key\": \"91590\",\n    \"description\": \"a guy is walking up the steps backwards on his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnn4qtnGxr1tek63jo1_500\",\n    \"question\": \"how many men are listening to people talk with serious looks on their face?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3900\",\n    \"key\": \"39140\",\n    \"description\": \"two men are listening to people talk with serious looks on their face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnxtiHVXh1ti93qgo1_400\",\n    \"question\": \"what is the man pointing at something?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4514\",\n    \"key\": \"32518\",\n    \"description\": \"a man is pointing a water gun at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh002o5HB61t8syzjo1_400\",\n    \"question\": \"where is the girl dancing around.\",\n    \"answer\": \"? nightclub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22666\",\n    \"key\": \"18606\",\n    \"description\": \"a girl is dancing around in a nightclub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4svrV1uI1rde1vuo1_500\",\n    \"question\": \"what does the man turn in front of a woman,\",\n    \"answer\": \"they both smile ? round\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30812\",\n    \"key\": \"58176\",\n    \"description\": \"a man turns round in front of a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_npdc7wPDYW1uvkm4po1_500\",\n    \"question\": \"how many young boys are seeing each other and hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23235\",\n    \"key\": \"101115\",\n    \"description\": \"two young boys are seeing each other and hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_net63gZcoG1sk0i2mo1_250\",\n    \"question\": \"how many eccentrically dressed women fight in hand-to-hand combat?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29678\",\n    \"key\": \"31782\",\n    \"description\": \"two eccentrically dressed women fight in hand-to-hand combat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9xh5NZ6d1stafvxo1_400\",\n    \"question\": \"how many girls are wearing headsets together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42906\",\n    \"key\": \"87951\",\n    \"description\": \"two girls are wearing headsets together and one is shocked.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhi35f292k1stuhtso1_500\",\n    \"question\": \"how many men is sitting down laugh as they look in front of them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45420\",\n    \"key\": \"44342\",\n    \"description\": \"two men sitting down laugh as they look in front of them.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qvxbfc1Y1t6142fo1_250\",\n    \"question\": \"what is treating an injured player in a football game?\",\n    \"answer\": \"medic\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2631\",\n    \"key\": \"17644\",\n    \"description\": \"a medic is treating an injured player in a football game.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyoq3PnfT1slj978o1_400\",\n    \"question\": \"what is the man pushing with his feet and it is smoking?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9029\",\n    \"key\": \"82128\",\n    \"description\": \"a man is pushing a car with his feet and it is smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1uqvcH4y1t1nzngo1_500\",\n    \"question\": \"how many musicians play guitar on stage together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32039\",\n    \"key\": \"70801\",\n    \"description\": \"two musicians play guitar on stage together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n901479nQ81rja3l7o1_250\",\n    \"question\": \"how many boys is embracing falls while one of them scream?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24328\",\n    \"key\": \"17171\",\n    \"description\": \"two boys embracing falls while one of them scream.\"\n  },\n  {\n    \"video_name\": \"tumblr_namu4oOKvg1slmgm0o1_400\",\n    \"question\": \"what is the black guy removing and walking?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3591\",\n    \"key\": \"26123\",\n    \"description\": \"a black guy is removing his cap and walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhsmbhcMSy1smv6svo1_500\",\n    \"question\": \"how many men with same face are talking each other and turning head to the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4886\",\n    \"key\": \"48493\",\n    \"description\": \"two men with same face are talking each other and turning head to the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzm18sXEV1rdynt3o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21901\",\n    \"key\": \"168\",\n    \"description\": \"a man wearing all white is climbing up stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0odbifZp1tihaueo1_250\",\n    \"question\": \"what are playing with their arms?\",\n    \"answer\": \"mice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28439\",\n    \"key\": \"18445\",\n    \"description\": \"two mice are playing with their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_ninfq9WzsZ1s6zpepo1_250\",\n    \"question\": \"what jumps off the chair to the top of a counter?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47639\",\n    \"key\": \"78597\",\n    \"description\": \"a cat jumps off a chair to the top of a counter.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wwljwZk61sbh7xuo1_500\",\n    \"question\": \"where is the woman making faces.\",\n    \"answer\": \"? stick\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52988\",\n    \"key\": \"61117\",\n    \"description\": \"a woman in bad lip stick is making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngu3mzFpwr1tdjuqvo1_400\",\n    \"question\": \"what is ripping apart the stuffed dog while another watched?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12476\",\n    \"key\": \"67982\",\n    \"description\": \"a dog is ripping apart a stuffed dog while another watched.\"\n  },\n  {\n    \"video_name\": \"tumblr_nap9tkwsHK1s50jqco1_250\",\n    \"question\": \"what is the cat wearing while riding an automatic vacuum?\",\n    \"answer\": \"costume\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44633\",\n    \"key\": \"50841\",\n    \"description\": \"a cat is wearing a shark costume while riding an automatic vacuum.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhchptHDxG1slj978o1_250\",\n    \"question\": \"what are running to eat something after somebody opens the door?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24470\",\n    \"key\": \"3857\",\n    \"description\": \"three cats are running to eat something after somebody opens the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ctf9ELMW1taivooo1_500\",\n    \"question\": \"what flies in the clouded blue sky between two buildings?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9944\",\n    \"key\": \"79595\",\n    \"description\": \"a car flies in the clouded blue sky between two buildings.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndj7s5BKDq1tum2v5o1_250\",\n    \"question\": \"how many men are sitting down and dancing with their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12574\",\n    \"key\": \"10152\",\n    \"description\": \"Two men are sitting down and dancing with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_njodpwEZQ41u8js9ho1_500\",\n    \"question\": \"how many boys are sitting on the couch and looking upwards?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17460\",\n    \"key\": \"40905\",\n    \"description\": \"two boys are sitting on a couch and looking upwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5l4nwhbZ1rodqjco1_500\",\n    \"question\": \"how many men laugh and clap their hands together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50390\",\n    \"key\": \"93324\",\n    \"description\": \"Three men laugh and clap their hands together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1cszD2L21tjdvfuo1_1280\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15269\",\n    \"key\": \"54206\",\n    \"description\": \"the cat with the orange hat on tried pushing the button to wake up the other sleeping kitty 's.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qskodLIl1qcty0ro1_250\",\n    \"question\": \"what is the man turning and adjusting?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45014\",\n    \"key\": \"127\",\n    \"description\": \"a man is turning and adjusting his jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3yztArii1trlsmdo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23039\",\n    \"key\": \"13171\",\n    \"description\": \"a woman with long curly red hair is winking and flipping her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rm225ieV1tdmffyo1_250\",\n    \"question\": \"what does the woman kick at another woman?\",\n    \"answer\": \"mug\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5181\",\n    \"key\": \"19751\",\n    \"description\": \"a woman kicks a coffee mug at another woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuhc5cUJn1rotc20o1_400\",\n    \"question\": \"what is hopping up the stairs?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2715\",\n    \"key\": \"19595\",\n    \"description\": \"a dog is hopping up the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9frp5eApG1t5ojzdo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14037\",\n    \"key\": \"13712\",\n    \"description\": \"a girl with long brown hair and an exposed midriff is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdhm4hgxd1qmjp5wo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24956\",\n    \"key\": \"90886\",\n    \"description\": \"a white girl with white shirt is smiling and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlcpoA7j61ungyc9o1_500\",\n    \"question\": \"what is the color of the color?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24512\",\n    \"key\": \"93000\",\n    \"description\": \"a dog black white color is running and crashed.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w2k0vtbr1rqxjc9o1_400\",\n    \"question\": \"how many girls are sitting at the table with microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47527\",\n    \"key\": \"57867\",\n    \"description\": \"two girls are sitting at a table with microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5simhyMX1u3ti95o1_250\",\n    \"question\": \"how many people on both sides of him swing their hair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47859\",\n    \"key\": \"15157\",\n    \"description\": \"a man is sitting in a chair talking and two people on both sides of him swing their hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97k6nnj3K1tbjfazo1_400\",\n    \"question\": \"what is walking up to the cat 's face and nibbling at it?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10842\",\n    \"key\": \"34099\",\n    \"description\": \"a bird is walking up to a cat 's face and nibbling at it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhc93dy1rj1u4t4tso1_500\",\n    \"question\": \"what is the woman with short hair wearing?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19106\",\n    \"key\": \"90731\",\n    \"description\": \"a woman with short hair is wearing a jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwri28wKr1tm3clao1_400\",\n    \"question\": \"what crashes into an object and a huge explosion occurs?\",\n    \"answer\": \"train\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7211\",\n    \"key\": \"27987\",\n    \"description\": \"a train crashes into an object and a huge explosion occurs.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p1stcULz1t5ojzdo1_250\",\n    \"question\": \"how many woman are standing in front on a blue door?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52188\",\n    \"key\": \"44121\",\n    \"description\": \"two woman are standing in front on a blue door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafnschGYZ1r8w2xvo1_400\",\n    \"question\": \"where are the crazy girls having a cat fight.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46122\",\n    \"key\": \"13207\",\n    \"description\": \"the crazy girls are having a cat fight in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhaz8iK79E1tn3rq6o1_400\",\n    \"question\": \"how many man sneeze makes the other laugh?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2082\",\n    \"key\": \"61450\",\n    \"description\": \"one man sneeze makes the other laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96bpp0Lma1r37y87o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21124\",\n    \"key\": \"7343\",\n    \"description\": \"a black man is smiling and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92p88zgpM1tt7994o1_250\",\n    \"question\": \"where is the woman singing a song.\",\n    \"answer\": \"? microphone\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39982\",\n    \"key\": \"5757\",\n    \"description\": \"a woman is singing a song in a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkdvvGao31tipom1o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43957\",\n    \"key\": \"35603\",\n    \"description\": \"a man wearing a white shirt is standing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg67dv2uD1tgetb4o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1355\",\n    \"key\": \"56393\",\n    \"description\": \"a man in a blue top is dancing in front of some women.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkybhohXkX1tmnntwo1_400\",\n    \"question\": \"what jumps onto the running toddler and runs away?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19024\",\n    \"key\": \"93625\",\n    \"description\": \"a cat jumps onto a running toddler and runs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhp246FgbJ1tk1kc2o1_400\",\n    \"question\": \"how many people are walking in front of a line of people?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46179\",\n    \"key\": \"37801\",\n    \"description\": \"three people are walking in front of a line of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dxxv9ONq1sk96t7o1_400\",\n    \"question\": \"what is walking the dog on a leash?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19027\",\n    \"key\": \"59286\",\n    \"description\": \"the cat is walking the dog on a leash.\"\n  },\n  {\n    \"video_name\": \"tumblr_npsr937NMb1tpg4boo1_250\",\n    \"question\": \"what are the puppies chasing throughout the house?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4987\",\n    \"key\": \"27621\",\n    \"description\": \"the puppies are chasing the cat throughout the house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5sszzMyl1r20o7po1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2242\",\n    \"key\": \"43493\",\n    \"description\": \"a person with a white shirt and black tie is looking downwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyr5zAE6p1u0bd1bo1_400\",\n    \"question\": \"what is the color of the liquid?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14064\",\n    \"key\": \"68746\",\n    \"description\": \"a purple liquid is poured from a bottle into a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nptcxjHAJf1uxo4tfo1_500\",\n    \"question\": \"what does the man pick up a bundle of money then smokes?\",\n    \"answer\": \"cigar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10604\",\n    \"key\": \"60939\",\n    \"description\": \"a man picks up a bundle of money then smokes a cigar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3uo0BExS1trkkpko1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39173\",\n    \"key\": \"9393\",\n    \"description\": \"a man in a red shirt is dancing with his headphones in.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqcsfFKnr1rshkvyo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10885\",\n    \"key\": \"52329\",\n    \"description\": \"this is a girl that is wearing an orange dress that is lying down on a yellow couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ygtqbDoS1th8gzmo1_500\",\n    \"question\": \"how many boy is playing with the nose of another boy when the boy motions for him to stop?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14990\",\n    \"key\": \"97019\",\n    \"description\": \"one boy is playing with the nose of another boy when the boy motions for him to stop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx5igYXE61u38aego1_500\",\n    \"question\": \"how many girls are kissing and then one girl talks?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31341\",\n    \"key\": \"73993\",\n    \"description\": \"two girls are kissing and then one girl talks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vksaep7X1thc5tio1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8496\",\n    \"key\": \"47062\",\n    \"description\": \"the lady with the black hair is turning her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfth4o5uV1qzfmdho1_400\",\n    \"question\": \"how many men are playing music and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50672\",\n    \"key\": \"37507\",\n    \"description\": \"two men are playing music and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncx742lmV61rcumn7o1_400\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27970\",\n    \"key\": \"96209\",\n    \"description\": \"a man in front of a blue background bites and holds a rose flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_npa30jXsLg1qdvza8o1_400\",\n    \"question\": \"how many people dance close together in the hall together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3033\",\n    \"key\": \"96685\",\n    \"description\": \"two people dance close together in a hall together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk37choqIF1uos7q4o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44876\",\n    \"key\": \"30118\",\n    \"description\": \"the girl wearing a black shirt is kissing her cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncribxI9q81qi39coo1_500\",\n    \"question\": \"how many guy has his arm around the shoulder of another guy?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21310\",\n    \"key\": \"99517\",\n    \"description\": \"one guy has his arm around the shoulder of another guy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5lrzi7xk1tx8mn0o1_400\",\n    \"question\": \"what is driving and loses the tire?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15104\",\n    \"key\": \"78316\",\n    \"description\": \"a race car is driving and loses a tire.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkryq13Fgy1tvfpn9o1_500\",\n    \"question\": \"what is the man,\",\n    \"answer\": \"wearing , comes through a door held open by another man ? suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25377\",\n    \"key\": \"96976\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhphqvEEG11slj978o1_400\",\n    \"question\": \"how many guys are fighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49426\",\n    \"key\": \"87067\",\n    \"description\": \"two guys are fighting and another one is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_npmvj70dMN1qztqp5o1_500\",\n    \"question\": \"what are two men jumping at the same time?\",\n    \"answer\": \"rope\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33783\",\n    \"key\": \"61017\",\n    \"description\": \"two men are jumping rope at the same time.\"\n  },\n  {\n    \"video_name\": \"tumblr_njs0fvt8Hb1tk2ngvo1_500\",\n    \"question\": \"what is playing in the snow with his owner?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22595\",\n    \"key\": \"76500\",\n    \"description\": \"a cat is playing in the snow with his owner.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngbssiZkk81tk2ngvo1_400\",\n    \"question\": \"what runs away from the flying toy?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41857\",\n    \"key\": \"55993\",\n    \"description\": \"a cat runs away from a flying toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yucrQ0CD1rcjuu7o1_400\",\n    \"question\": \"how many men dance while one man watches?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19498\",\n    \"key\": \"19184\",\n    \"description\": \"two men dance while one man watches.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngnw7hrGPi1u60vhlo1_400\",\n    \"question\": \"what is the color of the face?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3354\",\n    \"key\": \"33756\",\n    \"description\": \"a person with a blue painted face wears horns while sitting in front of a christmas tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkf8jbfkA1uxhu44o1_400\",\n    \"question\": \"how many footballers celebrate by punching the air simultaneously?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51951\",\n    \"key\": \"40031\",\n    \"description\": \"two footballers celebrate by punching the air simultaneously.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qe20CCbF1teai02o1_400\",\n    \"question\": \"how many men are dancing down the street?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49031\",\n    \"key\": \"67100\",\n    \"description\": \"two men are dancing down the street then they are standing and moving side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zhqyqkRq1s1g2ero1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37978\",\n    \"key\": \"84790\",\n    \"description\": \"a man with black jacket gets scared by something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrah086BN91tx8mn0o1_400\",\n    \"question\": \"how many cars are racing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52289\",\n    \"key\": \"91940\",\n    \"description\": \"two cars are racing and one wrecks into the dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nac2p29bq51srzj7lo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA961\",\n    \"key\": \"8489\",\n    \"description\": \"a man wearing a white suit tucks an item into a pocket.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv6p5XLxa1u4i3qco1_400\",\n    \"question\": \"what plays with the ball and a bird?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9775\",\n    \"key\": \"36984\",\n    \"description\": \"a dog plays with a ball and a bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv80p45u21sewywlo1_250\",\n    \"question\": \"how many woman are sitting and playing guitars?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40359\",\n    \"key\": \"39505\",\n    \"description\": \"two woman are sitting and playing guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy5lh8wY21u1m2sso1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37556\",\n    \"key\": \"76227\",\n    \"description\": \"a girl in a white shirt smiles to show her teeth.\"\n  },\n  {\n    \"video_name\": \"tumblr_npl3rsZ5rC1ux8xe0o1_400\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34026\",\n    \"key\": \"53768\",\n    \"description\": \"the guy with the gray shirt is mesmerized by the blond with the gray eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6ilnI1iL1tkvqk7o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33037\",\n    \"key\": \"83137\",\n    \"description\": \"a black man is fighting using gloves.\"\n  },\n  {\n    \"video_name\": \"tumblr_no3fm3Y8ip1un86uao1_500\",\n    \"question\": \"what is the man driving a race car loses steering?\",\n    \"answer\": \"wheel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19977\",\n    \"key\": \"34502\",\n    \"description\": \"a man driving a race car loses his steering wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6u5vgOwZ1tekfeyo1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20948\",\n    \"key\": \"82710\",\n    \"description\": \"a guy in white leans over as another n red stares on.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrtgugzFi1tz6gnyo1_500\",\n    \"question\": \"what is the color of the gloves?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26707\",\n    \"key\": \"47621\",\n    \"description\": \"a woman with black leather gloves is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncy89sSxEH1t4eui2o1_500\",\n    \"question\": \"what wrestle and one licks the other?\",\n    \"answer\": \"lions\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3105\",\n    \"key\": \"84234\",\n    \"description\": \"two male lions wrestle and one licks the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhnomg0r01u1pokno1_250\",\n    \"question\": \"what is wearing a costume is eating a banana?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22567\",\n    \"key\": \"53313\",\n    \"description\": \"a cat wearing a costume is eating a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e4inWZv51rk2gato1_400\",\n    \"question\": \"what is the woman pulling up while sitting on a bed?\",\n    \"answer\": \"tights\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4689\",\n    \"key\": \"43463\",\n    \"description\": \"a woman is pulling up her tights while sitting on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nreudiOfno1tx8mn0o1_400\",\n    \"question\": \"what is the racing car skidding off while taking a corner?\",\n    \"answer\": \"racetrack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA693\",\n    \"key\": \"78282\",\n    \"description\": \"a racing car is skidding off the racetrack while taking a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwxxlRnvb1sfdqnro1_400\",\n    \"question\": \"what is sitting on the flower?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37339\",\n    \"key\": \"38744\",\n    \"description\": \"the butterfly is sitting on a flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_neolataYzl1smpuhno1_500\",\n    \"question\": \"how many young boys on a deck,\",\n    \"answer\": \"one picks up the other and carries him ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47832\",\n    \"key\": \"88901\",\n    \"description\": \"two young boys on a deck,\"\n  },\n  {\n    \"video_name\": \"tumblr_ner7ylN8ki1sncaa3o1_400\",\n    \"question\": \"what pulls out in front of the other race car?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49908\",\n    \"key\": \"55584\",\n    \"description\": \"the race car pulls out in front of the other race car.\"\n  },\n  {\n    \"video_name\": \"tumblr_naiu2l4iHW1tjlguuo1_500\",\n    \"question\": \"how many men look on at the man covered with duct tape?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43116\",\n    \"key\": \"97942\",\n    \"description\": \"two men look on at a man covered with duct tape.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba8fj99IL1swsvnfo1_400\",\n    \"question\": \"what is startled by some bananas and flips around hysterically?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35113\",\n    \"key\": \"41749\",\n    \"description\": \"a cat is startled by some bananas and flips around hysterically.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncacvoVom71sai51xo1_500\",\n    \"question\": \"what glasses claps and bows?\",\n    \"answer\": \"sun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32589\",\n    \"key\": \"76351\",\n    \"description\": \"a man wearing sunglasses claps and bows.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney1qn9pP21ssuua8o1_250\",\n    \"question\": \"what does the man in a room strum?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18435\",\n    \"key\": \"31604\",\n    \"description\": \"a man in a room strums a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2wgxdabT1u76jino1_400\",\n    \"question\": \"what is wearing a shirt stands on its hind legs and gives a person a high five?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50405\",\n    \"key\": \"42056\",\n    \"description\": \"a cat wearing a shirt stands on its hind legs and gives a person a high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebx0vqnAG1tqybg9o1_400\",\n    \"question\": \"how many males in black uniform are playing with two floating cats?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7410\",\n    \"key\": \"43459\",\n    \"description\": \"two males in black uniform are playing with two floating cats.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9orznkSQa1sorauco1_400\",\n    \"question\": \"how many men is sitting the one in the back covers his face with his arm?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19068\",\n    \"key\": \"79628\",\n    \"description\": \"three men sitting the one in the back covers his face with his arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh25kqVdbO1teaq0so1_250\",\n    \"question\": \"what is the color of the jersey?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29631\",\n    \"key\": \"18669\",\n    \"description\": \"a man wearing a yellow soccer jersey is looking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz16vtohx1tmhwpbo1_400\",\n    \"question\": \"what is the man with long hair wearing and talking?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2058\",\n    \"key\": \"42438\",\n    \"description\": \"a man with long hair is wearing a hat and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp92t0mM21si94j3o1_500\",\n    \"question\": \"how many men are smiling and laughing at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35316\",\n    \"key\": \"62382\",\n    \"description\": \"two men are smiling and laughing at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmyliMMZn1t0cpnmo1_500\",\n    \"question\": \"how many men on motorcycles are doing wheelies?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27266\",\n    \"key\": \"82692\",\n    \"description\": \"two men on motorcycles are doing wheelies.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9le1merj21s5t0x8o1_400\",\n    \"question\": \"how many man holds his hand out for a fist bump?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32176\",\n    \"key\": \"45266\",\n    \"description\": \"two men walk together,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tuqn05ec1rd0civo1_400\",\n    \"question\": \"where is the fashion model walking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39118\",\n    \"key\": \"59139\",\n    \"description\": \"a fashion model is walking in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2dbqG2Mn1tkv5hvo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18301\",\n    \"key\": \"41342\",\n    \"description\": \"a young man wearing a green jacket is biting his thumb and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6783M04i1sqox3co1_250\",\n    \"question\": \"how many women are wrestling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51736\",\n    \"key\": \"49468\",\n    \"description\": \"two women are wrestling and one is knocked down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhd9eyiVHn1row8k8o1_400\",\n    \"question\": \"what is the man petting with a skeletal hand on a stick?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8872\",\n    \"key\": \"52836\",\n    \"description\": \"a man is petting a dog with a skeletal hand on a stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9d7bL7eY1tx8mn0o1_400\",\n    \"question\": \"what is doing the turn in the middle of the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39571\",\n    \"key\": \"56415\",\n    \"description\": \"a race car is doing a turn in the middle of the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wt2qU5EK1tbjfazo1_400\",\n    \"question\": \"where is the group of fish swimming.\",\n    \"answer\": \"? floor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52935\",\n    \"key\": \"69923\",\n    \"description\": \"a group of fish is swimming in the ocean floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngps4f7xik1smwx64o1_500\",\n    \"question\": \"what is the color of the mask?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5128\",\n    \"key\": \"48187\",\n    \"description\": \"a woman wearing a black lace mask smokes a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirpp5q5l71u8w5t6o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7990\",\n    \"key\": \"1746\",\n    \"description\": \"a young man with black hair is talking,\"\n  },\n  {\n    \"video_name\": \"tumblr_nknb86YzIa1u3knpvo5_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20470\",\n    \"key\": \"12\",\n    \"description\": \"a girl in a gray sweater is drinking from a mug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnqliX1Xy1tgwlf5o1_500\",\n    \"question\": \"what are several men cheering and drinking?\",\n    \"answer\": \"beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10395\",\n    \"key\": \"77595\",\n    \"description\": \"several men are cheering and drinking beer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nraer7SgkL1tqphfho1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7929\",\n    \"key\": \"71845\",\n    \"description\": \"a man in a white shirt is singing and leaning back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgyd6uGf41rw1wnno1_500\",\n    \"question\": \"what is pawing at the boy 's face?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23156\",\n    \"key\": \"33187\",\n    \"description\": \"a cat is pawing at a boy 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb5rai5TiW1tkypqvo1_250\",\n    \"question\": \"what are being dropped into the blender?\",\n    \"answer\": \"berries\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26275\",\n    \"key\": \"23146\",\n    \"description\": \"berries are being dropped into a blender.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhklv0Td991reseiyo1_1280\",\n    \"question\": \"what is slicing in the curve over the snowy road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19435\",\n    \"key\": \"89497\",\n    \"description\": \"the car is slicing in a curve over the snowy road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcbdvtDHl1u3n11qo1_500\",\n    \"question\": \"where did the group of kids ride down the street.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29472\",\n    \"key\": \"57651\",\n    \"description\": \"a group of kids rode down the street in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7o1juY5G1tm4jv9o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1564\",\n    \"key\": \"23498\",\n    \"description\": \"a white man is struggling with another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsdx5f0Gm1rb71dxo1_400\",\n    \"question\": \"what is this being squirted in the mouth by a water gun?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17802\",\n    \"key\": \"69966\",\n    \"description\": \"this is a dog being squirted in the mouth by a water gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabzm3PL5r1sfcy9jo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33272\",\n    \"key\": \"68696\",\n    \"description\": \"a young man wearing a white shirt is standing up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee158JiiR1r7qucoo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43398\",\n    \"key\": \"63913\",\n    \"description\": \"a girl with red hair is blowing out unknown gases.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabwvrGgUt1rmv3nuo1_500\",\n    \"question\": \"what is the color of the sheet?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6702\",\n    \"key\": \"70098\",\n    \"description\": \"three guys are carrying another guy through a large purple sheet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgqcmmccZ1te2r7co1_400\",\n    \"question\": \"what is the person wearing and moving lights on their hands?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50157\",\n    \"key\": \"82180\",\n    \"description\": \"a person is wearing a mask and moving lights on their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2n5xYQmY1tdjuqvo1_500\",\n    \"question\": \"what is running down the hall on two legs?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36973\",\n    \"key\": \"69298\",\n    \"description\": \"a dog is running down a hall on two legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbtk3YVpn1tkyu2bo1_250\",\n    \"question\": \"how many people walk through the door one after the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37980\",\n    \"key\": \"5189\",\n    \"description\": \"two people walk through a door one after the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpugqJVgm1s6zpepo1_400\",\n    \"question\": \"what is running amok in the kitchen?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36513\",\n    \"key\": \"30538\",\n    \"description\": \"a cat is running amok in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne32rt51C21tlipiko1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19073\",\n    \"key\": \"68467\",\n    \"description\": \"a black hair guy is making a desperate movement with his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tb8ftut51tcssiro1_400\",\n    \"question\": \"what is the cute girl grabbing and drinking it?\",\n    \"answer\": \"coffee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42355\",\n    \"key\": \"65511\",\n    \"description\": \"a cute girl is grabbing a coffee and drinking it.\"\n  },\n  {\n    \"video_name\": \"tumblr_na47kyP5yR1td4yjbo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31813\",\n    \"key\": \"33749\",\n    \"description\": \"a boy with black hair wearing a black shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1owjaSEb1qgvgxbo1_250\",\n    \"question\": \"how many female artists does the image show performing on a stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29978\",\n    \"key\": \"3345\",\n    \"description\": \"the image shows three female artists performing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9t1ycvMk81rmqkjuo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46803\",\n    \"key\": \"81984\",\n    \"description\": \"a lady is slapping a black man in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_niuqb9DhOU1tjx386o1_250\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20210\",\n    \"key\": \"16138\",\n    \"description\": \"a man is smiling for a picture on the red carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd91urmt3f1tmecz1o1_400\",\n    \"question\": \"how many fire sparklers is the woman holding in her hands out by the beach?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28062\",\n    \"key\": \"63566\",\n    \"description\": \"a woman is holding two fire sparklers in her hands out by the beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz222VcuZ1ttuz3po1_400\",\n    \"question\": \"what is the woman wearing?\",\n    \"answer\": \"heels\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8321\",\n    \"key\": \"1324\",\n    \"description\": \"a woman is wearing very high white high heels.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxx2ihA7a1rqhgwuo1_500\",\n    \"question\": \"what is the man with long hair and a beard playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11166\",\n    \"key\": \"94253\",\n    \"description\": \"a man with long hair and a beard is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8m05WdLB1tljy7co1_500\",\n    \"question\": \"how many people does this show splitting a pack of cards?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48009\",\n    \"key\": \"101528\",\n    \"description\": \"this shows two people splitting a pack of cards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5t5gfWQk1tjkho6o1_400\",\n    \"question\": \"how many men are wearing tattoos in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21138\",\n    \"key\": \"62110\",\n    \"description\": \"two men are wearing tattoos in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyfoeWTpX1qa051so1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42724\",\n    \"key\": \"85777\",\n    \"description\": \"a man in black is tossed between two sumo wrestlers.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj1cj63rn1trxml2o1_500\",\n    \"question\": \"what is digging his head in the snow and licks himself?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26777\",\n    \"key\": \"79343\",\n    \"description\": \"a dog is digging his head in the snow and licks himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbeo6Qqr91tl8fnfo1_400\",\n    \"question\": \"what is trying to jump over his fenced enclosure?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7497\",\n    \"key\": \"80040\",\n    \"description\": \"a small brown dog is trying to jump over his fenced enclosure.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfa7hPZ2h1sl2cdao1_500\",\n    \"question\": \"how many men are walking and talking in an alley?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24417\",\n    \"key\": \"94639\",\n    \"description\": \"two men are walking and talking in an alley.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcczs10pL1r4bi5do1_250\",\n    \"question\": \"how many girls are spinning on stage against a forest background?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11186\",\n    \"key\": \"51381\",\n    \"description\": \"three girls are spinning on stage against a forest background.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9f88htQ4d1trf38oo1_500\",\n    \"question\": \"how many guys are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9677\",\n    \"key\": \"94219\",\n    \"description\": \"two guys are talking and one shoves the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2yi2tEwm1ux03doo1_400\",\n    \"question\": \"what is the color of the laughs?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3515\",\n    \"key\": \"66974\",\n    \"description\": \"a man wearing red laughs and bends over as another person runs by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2y1oOWfv1sqefk3o1_400\",\n    \"question\": \"what is making the flower with icing?\",\n    \"answer\": \"decorator\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13730\",\n    \"key\": \"29081\",\n    \"description\": \"a cake decorator is making a flower with icing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nis929B11K1sxod2fo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22887\",\n    \"key\": \"50970\",\n    \"description\": \"a gray haired man sighs and shakes his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk0spcvzzb1tqkvbxo1_400\",\n    \"question\": \"how many people in ninja costumes are doing flips and posing?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7603\",\n    \"key\": \"35945\",\n    \"description\": \"five people in ninja costumes are doing flips and posing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdvtc57Ux1tx8mn0o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4194\",\n    \"key\": \"52693\",\n    \"description\": \"a white race car is driving slowly on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_naewvsd2Hj1rpjr5so1_500\",\n    \"question\": \"what is the color of the banana?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25894\",\n    \"key\": \"27793\",\n    \"description\": \"a big yellow banana wearing sunglasses is playing the trumpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_npmvj70dMN1qztqp5o1_500\",\n    \"question\": \"how many men are jumping rope at the same time?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22683\",\n    \"key\": \"61017\",\n    \"description\": \"two men are jumping rope at the same time.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9t1xjdehh1ti9jboo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25654\",\n    \"key\": \"60095\",\n    \"description\": \"a man speaks on a payphone while wearing sunglasses and a black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9u8sctqwf1takocao1_500\",\n    \"question\": \"how many men are talking in the kitchen?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31654\",\n    \"key\": \"99638\",\n    \"description\": \"two men are talking in a kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1ympW7je1rmcnl8o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50075\",\n    \"key\": \"82563\",\n    \"description\": \"a wearing black with black hair sings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8yxryLBY1rasykto1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52883\",\n    \"key\": \"38850\",\n    \"description\": \"a young man with brown hair is putting his hands on the side of his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvd9bsgbE1u7ielzo1_500\",\n    \"question\": \"how many people outdoors by the water are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23535\",\n    \"key\": \"97433\",\n    \"description\": \"two people outdoors by the water are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_no62vs7NV21uvo3r1o1_100\",\n    \"question\": \"how many young men are sitting down together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28277\",\n    \"key\": \"5803\",\n    \"description\": \"three young men are sitting down together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ktdqW1gV1st6jdpo1_250\",\n    \"question\": \"how many men in football kits are shaking hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29742\",\n    \"key\": \"16196\",\n    \"description\": \"two men in football kits are shaking hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhvhieq9O1u4qysso1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14250\",\n    \"key\": \"62996\",\n    \"description\": \"a woman and man stand in front of a white wall black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nchyfz0sQj1slj978o1_250\",\n    \"question\": \"what is licking the man 's face?\",\n    \"answer\": \"cub\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50153\",\n    \"key\": \"27666\",\n    \"description\": \"a lion cub is licking a man 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbkisdPmRk1ruhz45o1_500\",\n    \"question\": \"what is the man sitting at a drum set and playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44291\",\n    \"key\": \"56956\",\n    \"description\": \"a man is sitting at a drum set and playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_natzb43BNr1tdmffyo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1587\",\n    \"key\": \"50030\",\n    \"description\": \"the police officer is arresting the man in the blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnohewxZAc1s9i6j1o1_400\",\n    \"question\": \"what is the color of the trimming?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24604\",\n    \"key\": \"25897\",\n    \"description\": \"this gif shows five or six asian individuals dressed in a lavender outfits with white trimming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhia9fbNSN1syml9co1_400\",\n    \"question\": \"how many men are dancing to the beat of lively music?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8532\",\n    \"key\": \"88883\",\n    \"description\": \"two men are dancing to the beat of lively music.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzhvabsfq1s4nyalo1_400\",\n    \"question\": \"what is the color of the suits?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7823\",\n    \"key\": \"26694\",\n    \"description\": \"the two girls in red suits are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nah50jbmeS1sfymw8o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9789\",\n    \"key\": \"79948\",\n    \"description\": \"a young woman with brown hair is smirking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e3fpyjjr1sq1mmgo1_400\",\n    \"question\": \"what is the color of the outfits?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20085\",\n    \"key\": \"60560\",\n    \"description\": \"two men in white outfits were demonstrating karate.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobe26hwiZ1s5jrcko1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49479\",\n    \"key\": \"77076\",\n    \"description\": \"a lady is addressing the interview microphone while smiling,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zp4hIxxe1sncaa3o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA888\",\n    \"key\": \"56451\",\n    \"description\": \"someone drives a green race car on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkj564CLrz1u7s4oro1_400\",\n    \"question\": \"how many man spills his drink?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52300\",\n    \"key\": \"41105\",\n    \"description\": \"a crowd of people celebrate and one man spills his drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwyt1ud1v1tkrqtzo1_500\",\n    \"question\": \"how many girls is wearing short skirts are playing in the field?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13823\",\n    \"key\": \"83401\",\n    \"description\": \"four girls wearing short skirts are playing in the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1yi5TXGX1s62it9o1_250\",\n    \"question\": \"what does the person cut up after pouring on syrup?\",\n    \"answer\": \"breakfast\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11921\",\n    \"key\": \"90631\",\n    \"description\": \"a person cuts their breakfast up after pouring on syrup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax1m6RT3M1taukq1o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45626\",\n    \"key\": \"76436\",\n    \"description\": \"a woman in a white dress is making a kiss face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9xh5NZ6d1stafvxo1_400\",\n    \"question\": \"how many women are happily wearing headsets and playing a console game?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9913\",\n    \"key\": \"87951\",\n    \"description\": \"two women are happily wearing headsets and playing a console game.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf46bks1TO1qcafneo1_250\",\n    \"question\": \"what is the color of the wine?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23771\",\n    \"key\": \"18856\",\n    \"description\": \"a man with a slight smile takes a drink of red wine.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yargKVPA1ra5tilo1_500\",\n    \"question\": \"where is the girl sitting,\",\n    \"answer\": \". ? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA758\",\n    \"key\": \"88389\",\n    \"description\": \"a girl is sitting in a chair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nh29z0v9vk1sico5po1_250\",\n    \"question\": \"how many men smile and look to the side?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19598\",\n    \"key\": \"39671\",\n    \"description\": \"two men smile and look to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowuhcCWo71s3fuxko1_400\",\n    \"question\": \"what is running through the pasture?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16463\",\n    \"key\": \"71803\",\n    \"description\": \"a brown horse is running through a pasture.\"\n  },\n  {\n    \"video_name\": \"tumblr_neh91mOt5X1sh2bv5o1_500\",\n    \"question\": \"what does the man hold,\",\n    \"answer\": \"then looks away ? monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA145\",\n    \"key\": \"69384\",\n    \"description\": \"a man holds a monkey which makes a kissing face towards him,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9n8owFIkV1se1vi6o1_250\",\n    \"question\": \"how many people in a car are laughing and joking?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16788\",\n    \"key\": \"47029\",\n    \"description\": \"four people in a car are laughing and joking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjiylGWRL1tlsqhto1_250\",\n    \"question\": \"how many man moves his legs while another man plays a guitar?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33194\",\n    \"key\": \"91085\",\n    \"description\": \"one man moves his legs while another man plays a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfarhcHDam1seb8aro1_400\",\n    \"question\": \"where does the litter of kittens cry.\",\n    \"answer\": \"? bucket\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1969\",\n    \"key\": \"65054\",\n    \"description\": \"a litter of kittens cries in a red bucket.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tiwqdAI71tdmffyo1_400\",\n    \"question\": \"what is the cat playing with a phone and taking?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22857\",\n    \"key\": \"15936\",\n    \"description\": \"a cat is playing with a phone and taking a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwi7oCIWW1qatdo3o1_500\",\n    \"question\": \"what is the young woman using a computer and having?\",\n    \"answer\": \"snack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19383\",\n    \"key\": \"57281\",\n    \"description\": \"a young woman is using a computer and having a snack.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf8zdZnK81rjqtkto1_400\",\n    \"question\": \"how many women is the man watching excitedly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19673\",\n    \"key\": \"83201\",\n    \"description\": \"a man is watching two women excitedly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuq7antOu1t9h1yfo1_400\",\n    \"question\": \"how many female identical twins are talking and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12978\",\n    \"key\": \"52004\",\n    \"description\": \"two female identical twins are talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtbhyWjrF1twsxdzo1_400\",\n    \"question\": \"where did tow people sit and shaking their hands.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44352\",\n    \"key\": \"78772\",\n    \"description\": \"tow people sat in a car and shaking their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8z5gkpbGb1rwgxlqo1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9770\",\n    \"key\": \"74583\",\n    \"description\": \"a young woman is training a brown horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxl2nzKDV1u4v3ypo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37193\",\n    \"key\": \"36764\",\n    \"description\": \"a gray cat is kneading his paws on the back of a pug dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndujix89UO1u1lbl0o1_250\",\n    \"question\": \"what is the color of the microphone?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47557\",\n    \"key\": \"9663\",\n    \"description\": \"a woman wearing bright red lipstick is singing into a red microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_njupvneEJG1unubnvo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33768\",\n    \"key\": \"39798\",\n    \"description\": \"a man in black is rubbing a metal hook.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvqpwZ6qj1u9bs4qo1_500\",\n    \"question\": \"what does the baseball game show being thrown?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31696\",\n    \"key\": \"31250\",\n    \"description\": \"a baseball game shows the ball being thrown.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs3djg65p1s3f3n2o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22656\",\n    \"key\": \"80713\",\n    \"description\": \"a young man in a black shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq78cpVU5G1tcbh6ko1_500\",\n    \"question\": \"how many people does the woman stab with two swords?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22516\",\n    \"key\": \"97251\",\n    \"description\": \"a woman stabs two people with two swords.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkppl4d1vF1u6m0glo1_250\",\n    \"question\": \"what is the man playing and singing with his band on stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37626\",\n    \"key\": \"26093\",\n    \"description\": \"a man is playing guitar and singing with his band on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngt78gZQ711qzunbgo1_250\",\n    \"question\": \"where is the person opening and umbrella while standing.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23280\",\n    \"key\": \"47430\",\n    \"description\": \"a person is opening and umbrella while standing in a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwg77Ux711r5ygbco1_250\",\n    \"question\": \"what tries to bite something in the air?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19126\",\n    \"key\": \"47488\",\n    \"description\": \"a black and white dog tries to bite something in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xab5aAa51rpsmpqo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11303\",\n    \"key\": \"11249\",\n    \"description\": \"a girl wearing a white shirt makes a big smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7ms6bQkF1qf738lo1_500\",\n    \"question\": \"what is the woman wearing?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15953\",\n    \"key\": \"47662\",\n    \"description\": \"a woman is wearing a black sleeveless dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97xz6RSz21tgyx9vo1_400\",\n    \"question\": \"what pushes the man into a pond from behind?\",\n    \"answer\": \"kangaroo\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28424\",\n    \"key\": \"44697\",\n    \"description\": \"a kangaroo pushes a man into a pond from behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1mrl3e4N1slj978o1_250\",\n    \"question\": \"what is backing up on the comforter?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25572\",\n    \"key\": \"71461\",\n    \"description\": \"a dog is backing up on a comforter.\"\n  },\n  {\n    \"video_name\": \"tumblr_na33rpe5JC1skvqs1o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7268\",\n    \"key\": \"38412\",\n    \"description\": \"a young boy with red hair smiles and laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7kdnXQoA1tuatvvo1_400\",\n    \"question\": \"what is jumping and taking someone 's hand?\",\n    \"answer\": \"girl\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30622\",\n    \"key\": \"44409\",\n    \"description\": \"a very cure girl is jumping and taking someone 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhw10gEtVb1th4k9no1_1280\",\n    \"question\": \"how many fingers did the guy smile and held up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1559\",\n    \"key\": \"52450\",\n    \"description\": \"a guy smiled and held up two fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxl2nzKDV1u4v3ypo1_400\",\n    \"question\": \"what is giving the dog a back rub with its paws?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42694\",\n    \"key\": \"36764\",\n    \"description\": \"a cat is giving a dog a back rub with its paws.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7frjTMmN1u4wcs2o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6337\",\n    \"key\": \"39464\",\n    \"description\": \"the man wearing a white shirt was holding a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhchptHDxG1slj978o1_250\",\n    \"question\": \"what run to their bowls and start eating?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48182\",\n    \"key\": \"3857\",\n    \"description\": \"three cats run to their bowls and start eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzxgkhPUa1shch57o1_250\",\n    \"question\": \"what unhook during an event?\",\n    \"answer\": \"suspenders\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30176\",\n    \"key\": \"2618\",\n    \"description\": \"a boy 's suspenders unhook during an event.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad9ej0PCm1sk96t7o1_400\",\n    \"question\": \"what are two policemen chasing and hitting?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16542\",\n    \"key\": \"63718\",\n    \"description\": \"two policemen are chasing and hitting a blue toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwfpv91tK1uyo4nfo1_500\",\n    \"question\": \"what play music in an open field?\",\n    \"answer\": \"elephants\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15584\",\n    \"key\": \"61661\",\n    \"description\": \"four elephants play music in an open field.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rfpjNIk91tzs6b2o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36433\",\n    \"key\": \"92057\",\n    \"description\": \"a man wearing a back and white shirt is speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncizwyYsXB1s9q0pdo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12413\",\n    \"key\": \"27270\",\n    \"description\": \"a guy wearing a black jacket is holding a pair of sunglasses in his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwg4tiDgC1u8eq3no1_400\",\n    \"question\": \"what shook around and looked straight with its mouth open?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16536\",\n    \"key\": \"66173\",\n    \"description\": \"a fox shook around and looked straight with its mouth open.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2n4ztlqF1u25ovvo1_400\",\n    \"question\": \"what is driving down the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33551\",\n    \"key\": \"63509\",\n    \"description\": \"a silver sports car is driving down a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9bepAt5K1sq12j9o1_400\",\n    \"question\": \"what is flying over the ocean about to land on a navy ship?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15241\",\n    \"key\": \"82896\",\n    \"description\": \"a fighter plane is flying over the ocean about to land on a navy ship.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlsgn1kl551uof04fo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36189\",\n    \"key\": \"88964\",\n    \"description\": \"a young woman with black hair is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwsjxjEwY1tpg4boo1_500\",\n    \"question\": \"what does well staying on the surfboard in the ocean?\",\n    \"answer\": \"boar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31622\",\n    \"key\": \"80906\",\n    \"description\": \"a boar does well staying on a surfboard in the ocean.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jj516Viy1rwad3do1_250\",\n    \"question\": \"what is the man in a hat playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33749\",\n    \"key\": \"78741\",\n    \"description\": \"a man in a hat is playing drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7upoDzIi1s6lq6so1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA893\",\n    \"key\": \"41437\",\n    \"description\": \"a girl with a blue hat moves into a smoky area.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb80spNot51tdmffyo1_400\",\n    \"question\": \"what is pushing the turtle off a ledge and into a bucket?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33867\",\n    \"key\": \"22894\",\n    \"description\": \"a bird is pushing a turtle off a ledge and into a bucket.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncb19s7Pm01tn1tjzo1_500\",\n    \"question\": \"what is the color of the tuxedo?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12910\",\n    \"key\": \"48338\",\n    \"description\": \"a man in a black tuxedo closes his eyes and bows his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nm5g67lpIs1r2mlm8o1_500\",\n    \"question\": \"how many girl smiles while the other one is talking and smiling?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20804\",\n    \"key\": \"95960\",\n    \"description\": \"one girl smiles while the other one is talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1uqvcH4y1t1nzngo1_500\",\n    \"question\": \"what do two musicians play on stage together?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46226\",\n    \"key\": \"70801\",\n    \"description\": \"two musicians play guitar on stage together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3bdtgM5X1ty4xioo1_500\",\n    \"question\": \"what does the soccer player kick past a goalie into the goal?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17229\",\n    \"key\": \"63358\",\n    \"description\": \"a soccer player kicks a ball past a goalie into the goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6tl5MFnq1u110syo1_500\",\n    \"question\": \"what is the girl wearing a red and white top is blowing?\",\n    \"answer\": \"bubble\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3474\",\n    \"key\": \"92964\",\n    \"description\": \"a girl wearing a red and white top is blowing a bubble.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi5pz1OK01twoivuo1_250\",\n    \"question\": \"how many men are dancing together and falling over?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14395\",\n    \"key\": \"417\",\n    \"description\": \"two men are dancing together and falling over.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96l1sX4yo1s3nbpco1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1329\",\n    \"key\": \"88506\",\n    \"description\": \"a white man with black jacket is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6vuenb6t1tvi3k9o1_400\",\n    \"question\": \"what is the color of the umbrella?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15932\",\n    \"key\": \"32791\",\n    \"description\": \"a girl holding a red umbrella is blowing kisses and wagging her finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6hsntJrr1s3f23uo1_250\",\n    \"question\": \"what is the man singing and dancing,\",\n    \"answer\": \"falls off and he grabs it ? hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17878\",\n    \"key\": \"1683\",\n    \"description\": \"a man singing and dancing,\"\n  },\n  {\n    \"video_name\": \"tumblr_np0kxcHgTJ1uvdb8xo1_400\",\n    \"question\": \"how many young boys are swinging bats in a batting cage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7374\",\n    \"key\": \"62177\",\n    \"description\": \"two young boys are swinging bats in a batting cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndufzyTI4k1tlhv9no1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51115\",\n    \"key\": \"101733\",\n    \"description\": \"a man wearing a black top is speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjel1i9RM1u43d61o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29437\",\n    \"key\": \"70474\",\n    \"description\": \"a man wearing a big necklace straightens his black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh1zx5bDSP1tqrf5uo1_400\",\n    \"question\": \"what is the man walking off?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17712\",\n    \"key\": \"66187\",\n    \"description\": \"a man is walking off a plane.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6lx47Ndj1slrp89o1_400\",\n    \"question\": \"how many men are standing and start dancing together?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40632\",\n    \"key\": \"45369\",\n    \"description\": \"4 men are standing and start dancing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_mr11isrNGe1say5iqo1_500\",\n    \"question\": \"what do two lovers have a fun and making?\",\n    \"answer\": \"pictures\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26254\",\n    \"key\": \"63272\",\n    \"description\": \"two lovers have a fun and making some pictures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee158JiiR1r7qucoo1_400\",\n    \"question\": \"where is the girl with red hair smoking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38286\",\n    \"key\": \"63913\",\n    \"description\": \"a girl with red hair is smoking in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv73zC1m21rxyt1xo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50561\",\n    \"key\": \"69188\",\n    \"description\": \"a white man with black suit is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncejjuBADu1rhze17o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7146\",\n    \"key\": \"85452\",\n    \"description\": \"a man with a blue shirt is putting a man against a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1q320Ed51s8jkazo1_250\",\n    \"question\": \"what is the man with a hood leaning out and shaking his head?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45986\",\n    \"key\": \"30573\",\n    \"description\": \"a man with a hood is leaning out a window and shaking his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkaabSLxV1rzui38o1_400\",\n    \"question\": \"what is the woman holding and surrounded by flying birds?\",\n    \"answer\": \"umbrella\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20046\",\n    \"key\": \"15437\",\n    \"description\": \"a woman is holding an umbrella and surrounded by flying birds.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj3brtcOB1sjcvr3o1_400\",\n    \"question\": \"what is the man in a blue shirt blowing and wiping off?\",\n    \"answer\": \"trunk\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40511\",\n    \"key\": \"27188\",\n    \"description\": \"a man in a blue shirt is blowing and wiping off an elephant 's trunk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabzy4yOL81tsxh57o1_400\",\n    \"question\": \"what is one basketball player throwing?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28528\",\n    \"key\": \"50858\",\n    \"description\": \"one basketball player is throwing the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr58uwv0IK1t0ojyvo1_400\",\n    \"question\": \"how many young men are dancing together on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47644\",\n    \"key\": \"15296\",\n    \"description\": \"two young men are dancing together on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk32pnnazT1skvgwao1_400\",\n    \"question\": \"how many men walk through the building together with coffee?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2876\",\n    \"key\": \"83387\",\n    \"description\": \"two men walk through the building together with coffee.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnpjvXW4x1sp70bgo1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19489\",\n    \"key\": \"7403\",\n    \"description\": \"a girl in black poses in the darkness.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfflcuX90m1u25ovvo1_400\",\n    \"question\": \"what is edging down an incline towards a body of water?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46834\",\n    \"key\": \"63666\",\n    \"description\": \"a blue car is edging down an incline towards a body of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngagwkaeLH1rkbo6ho1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6838\",\n    \"key\": \"46084\",\n    \"description\": \"a guy wearing a black shirt and light colored pants,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpbmiziDk1slj978o1_400\",\n    \"question\": \"how many men all do a standing back flip at the same time while holding hands?\",\n    \"answer\": \"seven\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15630\",\n    \"key\": \"40913\",\n    \"description\": \"seven men all do a standing back flip at the same time while holding hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksdyhXtpu1rhl4f0o1_250\",\n    \"question\": \"what sit on rocks,\",\n    \"answer\": \"and one of them climbs from one to the other ? frogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10851\",\n    \"key\": \"22832\",\n    \"description\": \"three tree frogs sit on rocks,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfwivvI3v1rmxyxeo1_250\",\n    \"question\": \"how many women in lingerie and capes clasp their hands together and walk holding hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46564\",\n    \"key\": \"45678\",\n    \"description\": \"two women in lingerie and capes clasp their hands together and walk holding hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2gmq8jhM1si8uq7o1_400\",\n    \"question\": \"what is the bearded man wearing a black shirt is smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15030\",\n    \"key\": \"31244\",\n    \"description\": \"a bearded man wearing a black shirt is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s2wj3j9W1s0vm19o1_400\",\n    \"question\": \"how many men are in the car and one dumps out a can?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16356\",\n    \"key\": \"54442\",\n    \"description\": \"two men are in a car and one dumps out a can.\"\n  },\n  {\n    \"video_name\": \"tumblr_netczdYQLZ1u25ovvo1_400\",\n    \"question\": \"what is being driven down the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1947\",\n    \"key\": \"63490\",\n    \"description\": \"a red car is being driven down a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncaqiodMqL1r3a5jdo1_250\",\n    \"question\": \"what is the raccoon stealing food?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20539\",\n    \"key\": \"17208\",\n    \"description\": \"A raccoon is stealing a cat 's food.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94fo5XLEK1s71fqlo1_250\",\n    \"question\": \"how many men are kissing while another two men laugh?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4752\",\n    \"key\": \"49701\",\n    \"description\": \"two men are kissing while another two men laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_nopqno1m9H1r2ga1uo1_400\",\n    \"question\": \"how many men are dancing inside the car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5519\",\n    \"key\": \"77278\",\n    \"description\": \"two men are dancing inside the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nju9ibDTtt1u3g519o1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9001\",\n    \"key\": \"54134\",\n    \"description\": \"a white cat is walking on its hind legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfipaisUIE1sqsp7io1_500\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19377\",\n    \"key\": \"71739\",\n    \"description\": \"some men dressed in black are walking and turning.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndd7topxfn1tj2kheo1_400\",\n    \"question\": \"how many runs are the men dancing then across the stage?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50799\",\n    \"key\": \"44245\",\n    \"description\": \"the men are dancing then one runs across the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtz5nskY91u6j7oxo1_250\",\n    \"question\": \"what does the young guy play among a group of dancing people?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7737\",\n    \"key\": \"1667\",\n    \"description\": \"a young guy plays guitar among a group of dancing people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7mt8Xm4z1tkeyq7o1_250\",\n    \"question\": \"how many woman are lifting weights and exercising?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41847\",\n    \"key\": \"76150\",\n    \"description\": \"two woman are lifting weights and exercising.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnk20yEj701u0kse9o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19982\",\n    \"key\": \"7406\",\n    \"description\": \"a man in black jacket is looking forward with focus eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_neshm22YoP1ty0043o1_400\",\n    \"question\": \"how many boys are playing around with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50006\",\n    \"key\": \"22860\",\n    \"description\": \"two boys are playing around with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckjnmQk1a1siybp5o1_250\",\n    \"question\": \"how many young boys are smiling as they rest their heads together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21028\",\n    \"key\": \"13898\",\n    \"description\": \"two young boys are smiling as they rest their heads together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2vux3HHB1rl202so1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38052\",\n    \"key\": \"5298\",\n    \"description\": \"a white girl with black dress is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfky23RT5W1tiz10fo1_250\",\n    \"question\": \"what is the shirtless man hitting with a hammer?\",\n    \"answer\": \"floor\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14867\",\n    \"key\": \"11113\",\n    \"description\": \"a shirtless man is hitting the floor with a hammer.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ywk5HGpS1rs9keno1_500\",\n    \"question\": \"how many guys is wearing microphones are looking closing at each other and then one tuns away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42514\",\n    \"key\": \"72189\",\n    \"description\": \"two guys wearing microphones are looking closing at each other and then one tuns away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nihobb7cQ81u8uroco1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24289\",\n    \"key\": \"44716\",\n    \"description\": \"a man is wearing a white shirt and talking into a microphone while a motorcycle goes by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdl028aPE1rufswgo1_400\",\n    \"question\": \"what is the color of the pup?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5987\",\n    \"key\": \"25068\",\n    \"description\": \"a white pup is getting a good head rub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8fknCDNU1thi9glo1_400\",\n    \"question\": \"how many groups of three men are getting ready to sing into microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17980\",\n    \"key\": \"65016\",\n    \"description\": \"two groups of three men are getting ready to sing into microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nim1nvt1em1sqlieso1_400\",\n    \"question\": \"how many men fight indoors in an empty building?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36548\",\n    \"key\": \"93077\",\n    \"description\": \"two men fight indoors in an empty building.\"\n  },\n  {\n    \"video_name\": \"tumblr_njouy2MkRI1unyeoio1_400\",\n    \"question\": \"what pushes the door and then falls to the floor while another cat watches?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18920\",\n    \"key\": \"20303\",\n    \"description\": \"a blonde cat pushes a door and then falls to the floor while another cat watches.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vqbipKqn1tas5ixo1_400\",\n    \"question\": \"what are the man and a woman wearing and losing weight?\",\n    \"answer\": \"belt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30239\",\n    \"key\": \"22435\",\n    \"description\": \"a man and a woman are wearing a blue belt and losing weight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9ztnMJ2s1ti8b6yo1_500\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23033\",\n    \"key\": \"26328\",\n    \"description\": \"a man is walking on the red carpet at an event.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0dca3y0r1u8ogblo1_500\",\n    \"question\": \"how many young guys are looking fancy in the photo shoot?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16367\",\n    \"key\": \"97415\",\n    \"description\": \"two young guys are looking fancy in a photo shoot.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9idf18Lt31sjcycuo1_250\",\n    \"question\": \"what is the deep sea diver cashing?\",\n    \"answer\": \"octopus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12604\",\n    \"key\": \"73363\",\n    \"description\": \"a deep sea diver is cashing an octopus.\"\n  },\n  {\n    \"video_name\": \"tumblr_nki72xibIX1tatohao1_250\",\n    \"question\": \"what is playfully fighting with the dog?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26758\",\n    \"key\": \"3605\",\n    \"description\": \"a cat is playfully fighting with a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_neg0g3h3gH1qgs247o1_500\",\n    \"question\": \"what are two women having?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39496\",\n    \"key\": \"69999\",\n    \"description\": \"two women that look the same are having a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9aq10meZT1rufn8zo1_500\",\n    \"question\": \"what is the young man holding?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33792\",\n    \"key\": \"52080\",\n    \"description\": \"a young man is holding a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngj5js922h1qezxdbo1_250\",\n    \"question\": \"where is chocolate sauce being poured.\",\n    \"answer\": \"? dish\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47310\",\n    \"key\": \"23062\",\n    \"description\": \"chocolate sauce is being poured over a ball of ice cream in a dish.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmkrlulEL1tt4nxqo1_250\",\n    \"question\": \"how many girls are weeping together in the darkness?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46726\",\n    \"key\": \"26024\",\n    \"description\": \"two girls are weeping together in the darkness.\"\n  },\n  {\n    \"video_name\": \"tumblr_necbt7TYbT1ttsz9wo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46229\",\n    \"key\": \"60187\",\n    \"description\": \"a black woman wearing a blue shirt is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5xrhfzrg1s5gcujo1_250\",\n    \"question\": \"what is the guy holding and raising it above his head?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23849\",\n    \"key\": \"14789\",\n    \"description\": \"a guy is holding a guitar and raising it above his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgsqqABFo1tp9bieo1_250\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24317\",\n    \"key\": \"241\",\n    \"description\": \"a woman in white shorts is dancing and moving her arms around.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3xhdCxli1sq0gyxo1_500\",\n    \"question\": \"where does the young man perform some slow dance moves with mirrors.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12949\",\n    \"key\": \"46592\",\n    \"description\": \"a young man performs some slow dance moves in room with mirrors.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfees7tCzu1tm9kuyo1_500\",\n    \"question\": \"what is the color of the lips?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35804\",\n    \"key\": \"88622\",\n    \"description\": \"a man with black hair moving lips head moving.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnekyGEgf1sa0lndo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38730\",\n    \"key\": \"71413\",\n    \"description\": \"the man in the black throws out his hands and the surrounding people fall.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne00ewlpW41tdjuqvo1_400\",\n    \"question\": \"how many girls is the man lifting up in the air with weights?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52862\",\n    \"key\": \"13329\",\n    \"description\": \"a man is lifting two girls up in the air with weights.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dxxv9ONq1sk96t7o1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48377\",\n    \"key\": \"59286\",\n    \"description\": \"a cat is tied up with a white dog and the cat is scared.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u8i5aVLm1teg0elo1_250\",\n    \"question\": \"what is the man touching on stage?\",\n    \"answer\": \"underwear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47202\",\n    \"key\": \"21697\",\n    \"description\": \"a man is touching his underwear on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyc6dwsa21qalhmdo1_500\",\n    \"question\": \"where is man with white hair sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12464\",\n    \"key\": \"83472\",\n    \"description\": \"man with white hair is sitting in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_npc1b21BeA1r57o71o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4943\",\n    \"key\": \"41809\",\n    \"description\": \"two old men with gray hair are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpreqZ6fr1unq0gjo1_250\",\n    \"question\": \"what goes over the sand dune and then crashes?\",\n    \"answer\": \"truck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5326\",\n    \"key\": \"46570\",\n    \"description\": \"a red pickup truck goes over a sand dune and then crashes.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoamk0kmi1unf50eo1_250\",\n    \"question\": \"what is the color of the stars?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52224\",\n    \"key\": \"16053\",\n    \"description\": \"a man is wearing a cap with white stars on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbzkb341bX1s71nvbo1_500\",\n    \"question\": \"how many girls are inside the shopping car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28906\",\n    \"key\": \"60746\",\n    \"description\": \"two girls are inside a shopping car and then they fall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dtvaAB1g1t8991mo1_250\",\n    \"question\": \"where is the woman with blonde hair sitting up.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18289\",\n    \"key\": \"19358\",\n    \"description\": \"a woman with blonde hair is sitting up in a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknz6sf5O21tdvo93o1_400\",\n    \"question\": \"what drives off beside the line of vehicles?\",\n    \"answer\": \"snowmobile\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6973\",\n    \"key\": \"42106\",\n    \"description\": \"a snowmobile drives off beside a line of vehicles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf6z08W8ZO1tmecz1o1_500\",\n    \"question\": \"what is the woman,\",\n    \"answer\": \"standing in the dark , wears ? dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5262\",\n    \"key\": \"58112\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bdapPO481sc9qyco1_400\",\n    \"question\": \"how many people are riding on motorbikes in a race?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49042\",\n    \"key\": \"36760\",\n    \"description\": \"two people are riding on motorbikes in a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8yacMvXl1t0ojyvo1_250\",\n    \"question\": \"how many dark haired boys are standing looking funny?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31515\",\n    \"key\": \"25575\",\n    \"description\": \"three dark haired boys are standing looking funny.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagcw5rVv51s1nv88o1_500\",\n    \"question\": \"what is the color of the wrap?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22103\",\n    \"key\": \"98892\",\n    \"description\": \"a woman who is wearing a white head wrap claps her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sg39oVrZ1qedx60o1_500\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31589\",\n    \"key\": \"98928\",\n    \"description\": \"a person is holding and bouncing a white dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wch8DPCW1rvxuq0o1_250\",\n    \"question\": \"what is the man wearing all black and a backpack is pulling off?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50593\",\n    \"key\": \"11798\",\n    \"description\": \"a man wearing all black and a backpack is pulling his hat off.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3dx3ld831rftdx0o1_250\",\n    \"question\": \"how many man is looking forward and other smoking the pipe?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39591\",\n    \"key\": \"87575\",\n    \"description\": \"one man is looking forward and other smoking a pipe.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoi8yo35Q1rm1twgo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44147\",\n    \"key\": \"88478\",\n    \"description\": \"a guy with white shirt is smiling in front of someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd57hoEbnf1tnzvzmo1_400\",\n    \"question\": \"how many boys are sitting on the couch laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA884\",\n    \"key\": \"59606\",\n    \"description\": \"two boys are sitting on a couch laughing and one turns around and leans on the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng5aqx1lf91s4gxnlo1_500\",\n    \"question\": \"how many kids is figuring out how to work a microphone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48604\",\n    \"key\": \"44772\",\n    \"description\": \"two kids figuring out how to work a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngu3mzFpwr1tdjuqvo1_400\",\n    \"question\": \"what is the dog ripping apart?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15593\",\n    \"key\": \"67982\",\n    \"description\": \"a dog is ripping apart a stuffed dog while another watched.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90ljfXkjj1si20l6o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16804\",\n    \"key\": \"46317\",\n    \"description\": \"a man in a white shirt is waving a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1vsdEVUb1sdbuhgo1_400\",\n    \"question\": \"what is the man wearing a hooded jacket is smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21279\",\n    \"key\": \"45332\",\n    \"description\": \"a man wearing a hooded jacket is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk23tfXlSI1tm695uo1_250\",\n    \"question\": \"how many different male adults does this appear to show making some kind of hand signals?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28075\",\n    \"key\": \"18845\",\n    \"description\": \"this appears to show four different male adults making some kind of hand signals.\"\n  },\n  {\n    \"video_name\": \"tumblr_nilyoyDugt1qdzxbio1_500\",\n    \"question\": \"how many men ride the boat with a bat symbol on it?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31150\",\n    \"key\": \"55069\",\n    \"description\": \"two men ride a boat with a bat symbol on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqaqp0wsgy1tpg4boo1_400\",\n    \"question\": \"what is licking his paw while laying in the covers?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49931\",\n    \"key\": \"74024\",\n    \"description\": \"a small kitten is licking his paw while laying in the covers.\"\n  },\n  {\n    \"video_name\": \"tumblr_no16zgrlE81sr8pwbo1_400\",\n    \"question\": \"how many men is the man in white rapping then are rapping together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17831\",\n    \"key\": \"53970\",\n    \"description\": \"a man in white is rapping then two men are rapping together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nis0671Qu01tjqbh0o1_250\",\n    \"question\": \"where is the dog showering.\",\n    \"answer\": \"? bathtub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51159\",\n    \"key\": \"1463\",\n    \"description\": \"a dog is showering in a bathtub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfegnfJ1AZ1qayaafo1_400\",\n    \"question\": \"how many young men are shouting at the phone?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33737\",\n    \"key\": \"30012\",\n    \"description\": \"three young men are shouting at a phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9bf9Vddz1u25ovvo1_400\",\n    \"question\": \"what is running fast in the highway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23787\",\n    \"key\": \"63432\",\n    \"description\": \"a white car is running fast in a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqokih6riY1uxohh1o1_540\",\n    \"question\": \"how many young men are talking and laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14127\",\n    \"key\": \"91616\",\n    \"description\": \"three young men are talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjdo8al2f1tfukzmo1_400\",\n    \"question\": \"what is the young man holding up?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10518\",\n    \"key\": \"60233\",\n    \"description\": \"a young man is holding up a smart phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmprtryRm1s013u0o2_r1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18933\",\n    \"key\": \"55145\",\n    \"description\": \"a girl with curly black hair and wearing a blue top is dancing before a yellow background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhobtsS0jM1s86yfto1_250\",\n    \"question\": \"what is licking the girl in the face?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41803\",\n    \"key\": \"9556\",\n    \"description\": \"a dog is licking a girl in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknrigFden1ty49xko6_250\",\n    \"question\": \"what are the man and a woman walking?\",\n    \"answer\": \"trees\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50683\",\n    \"key\": \"39731\",\n    \"description\": \"a man and a woman are walking past trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_njiymqvJPP1tb2ysso1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33967\",\n    \"key\": \"77914\",\n    \"description\": \"a person wearing a gray top,\"\n  },\n  {\n    \"video_name\": \"tumblr_npkxhturUR1uxcyego1_400\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34538\",\n    \"key\": \"73594\",\n    \"description\": \"two men wearing suits are singing against a white wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_najdllMh1q1t0xoqgo1_250\",\n    \"question\": \"what is the man with sunglasses riding?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21553\",\n    \"key\": \"40742\",\n    \"description\": \"a man with sunglasses is riding a bike.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjxv2X6PU1siulnco1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33623\",\n    \"key\": \"92\",\n    \"description\": \"the girl wearing a white shirt is really cold.\"\n  },\n  {\n    \"video_name\": \"tumblr_no8x9toqT11u7hl9wo1_400\",\n    \"question\": \"how many men in front of mics and one male is moving his arms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28610\",\n    \"key\": \"62572\",\n    \"description\": \"two men in front of mics and one male is moving his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpf1zbuOM1tcktvuo1_250\",\n    \"question\": \"where does the man walk and gets embarrassed.\",\n    \"answer\": \"? mall\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13695\",\n    \"key\": \"19048\",\n    \"description\": \"a man walks and gets embarrassed in a mall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90w55xQEA1txn5dao1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38873\",\n    \"key\": \"43653\",\n    \"description\": \"a man in a blue shirt has his arm around another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0hq9nCDK1tuw0i7o1_500\",\n    \"question\": \"how many girls are laughing and holding hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44340\",\n    \"key\": \"99652\",\n    \"description\": \"two girls are laughing and holding hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_npplhk1yOz1tbeohdo1_540\",\n    \"question\": \"what is the woman kissing?\",\n    \"answer\": \"bow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28443\",\n    \"key\": \"56295\",\n    \"description\": \"a woman is kissing a pink bow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5u2chPoA1rp5w0lo1_400\",\n    \"question\": \"what does the woman in a white car suddenly stop on a highway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4664\",\n    \"key\": \"82442\",\n    \"description\": \"a woman in a white car suddenly stops her car on a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkbt1vaZh1tqkvbxo1_400\",\n    \"question\": \"where is the group of guys disguised.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28781\",\n    \"key\": \"37215\",\n    \"description\": \"a group of guys is disguised in a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nac1kn8aGM1tei7rdo1_500\",\n    \"question\": \"how many guys are dancing around naked together and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6704\",\n    \"key\": \"72313\",\n    \"description\": \"two guys are dancing around naked together and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq4afnM0Z1s5o1jwo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA901\",\n    \"key\": \"41704\",\n    \"description\": \"a person with blue hair carries a mouse on the back of their neck while another one climbs down their shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0bdooxmU1uwhbn9o1_540\",\n    \"question\": \"what does the boy drummer,\",\n    \"answer\": \"beat to the rhythm ? sticks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23642\",\n    \"key\": \"100317\",\n    \"description\": \"a boy drummer,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhfdwpc7R1qistg3o1_400\",\n    \"question\": \"what is the man fixing?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35223\",\n    \"key\": \"57115\",\n    \"description\": \"a man is fixing another man 's bow tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxlr1iOlx1tx8mn0o1_400\",\n    \"question\": \"what is spinning out on the wet track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40389\",\n    \"key\": \"55730\",\n    \"description\": \"a race car is spinning out on a wet track.\"\n  },\n  {\n    \"video_name\": \"tumblr_no16zgrlE81sr8pwbo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21105\",\n    \"key\": \"53970\",\n    \"description\": \"the man is wearing a white shirt and a white hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_niv7ivzNmF1u5d5ryo1_400\",\n    \"question\": \"what is the color of the cabinet?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48705\",\n    \"key\": \"1080\",\n    \"description\": \"a cat rolls around on the top of a brown cabinet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfv7xsmCdz1tgjmwwo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18506\",\n    \"key\": \"2746\",\n    \"description\": \"a boy in a red shirt is moving his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nga8g2sqtN1re60dio1_250\",\n    \"question\": \"what are the three men playing together?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46528\",\n    \"key\": \"26505\",\n    \"description\": \"the three men are playing guitar together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhrkqujGn1tssk6do1_400\",\n    \"question\": \"what is the color of the mug?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23576\",\n    \"key\": \"30632\",\n    \"description\": \"a girl wearing a hat takes a sip from a black coffee mug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncd4nhEpYN1rkm6bqo1_500\",\n    \"question\": \"where does man smile and laughs.\",\n    \"answer\": \"? store\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30743\",\n    \"key\": \"68959\",\n    \"description\": \"man smiles and laughs in a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbje3BEQe1tvul0no1_400\",\n    \"question\": \"where does the young person look around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47548\",\n    \"key\": \"29408\",\n    \"description\": \"a young person looks around in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4ossRfwJ1tjjaylo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51228\",\n    \"key\": \"11153\",\n    \"description\": \"an older woman with black hair is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nddj8qyOmU1ro9khto1_250\",\n    \"question\": \"what is the man in a shirt and tie trying,\",\n    \"answer\": \"but stops him ? rope\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52790\",\n    \"key\": \"89032\",\n    \"description\": \"a man in a shirt and tie is trying to walk forwards,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbn0vv8Gp1tx8mn0o1_400\",\n    \"question\": \"what is racing in the car race?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8119\",\n    \"key\": \"86055\",\n    \"description\": \"three cars is racing in a car race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0ih2uUAV1tquxyyo1_500\",\n    \"question\": \"how many sports guys are hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23669\",\n    \"key\": \"93964\",\n    \"description\": \"two sports guys are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtfbt9KZI1s71nvbo1_400\",\n    \"question\": \"what is driving a toy car is towing another dog in a trolley?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18140\",\n    \"key\": \"15351\",\n    \"description\": \"a dog driving a toy car is towing another dog in a trolley.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8vbdRFut1shopj2o1_250\",\n    \"question\": \"how many girls are blowing smoke out of their mouths?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5523\",\n    \"key\": \"61352\",\n    \"description\": \"two girls are blowing smoke out of their mouths.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokgkjPvdh1uot1e7o1_400\",\n    \"question\": \"what is the young man holding and talking?\",\n    \"answer\": \"pug\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51181\",\n    \"key\": \"60623\",\n    \"description\": \"a young man is holding a pug and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9j6u0SS061ri0wzfo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21681\",\n    \"key\": \"39368\",\n    \"description\": \"a black cat is kicked away by another cat that is lying on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh8lleEpNz1rhl4f0o1_400\",\n    \"question\": \"what is the color of the frog?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41055\",\n    \"key\": \"81049\",\n    \"description\": \"a green frog is trying to eat from a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9nn597Mqk1r5n5jmo1_250\",\n    \"question\": \"what is the color of the key?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12881\",\n    \"key\": \"47107\",\n    \"description\": \"the woman smiles white waving a red key.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1mtw4zVW1qhccx4o1_500\",\n    \"question\": \"how many men are turning to look to the left?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18989\",\n    \"key\": \"98906\",\n    \"description\": \"three men are turning to look to the left.\"\n  },\n  {\n    \"video_name\": \"tumblr_n930rehOiH1t3eg01o1_400\",\n    \"question\": \"what is the woman showing to somebody?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23595\",\n    \"key\": \"33312\",\n    \"description\": \"a woman is showing her dog to somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5andAo8C1tleghwo1_500\",\n    \"question\": \"what is the man adjusting in a bedroom?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27969\",\n    \"key\": \"16997\",\n    \"description\": \"a man is adjusting his tie in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nohf3irkja1uuudqko1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52767\",\n    \"key\": \"59026\",\n    \"description\": \"a woman in a white outfit is singing and pointing her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3844onv11qj1oazo1_400\",\n    \"question\": \"what is the teen wearing and concentrating on something?\",\n    \"answer\": \"headgear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40058\",\n    \"key\": \"53074\",\n    \"description\": \"a teen is wearing green protective headgear and concentrating on something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfd23essc1rmnbk5o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA597\",\n    \"key\": \"52153\",\n    \"description\": \"the man in the white shirt sucks in smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghj6gFDD91u5eovyo1_400\",\n    \"question\": \"how many girls are dancing terribly together in the bedroom?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46963\",\n    \"key\": \"21368\",\n    \"description\": \"two girls are dancing terribly together in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zu57mMW51t36lbdo1_400\",\n    \"question\": \"what opens and the sunroof comes out?\",\n    \"answer\": \"trunk\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39996\",\n    \"key\": \"53950\",\n    \"description\": \"the car 's trunk opens and the sunroof comes out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq60eugCBm1tk2ngvo1_500\",\n    \"question\": \"what is carrying the ball and dunking it in a net?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32108\",\n    \"key\": \"85137\",\n    \"description\": \"a dog is carrying a ball and dunking it in a net.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazsf0WpWr1tgqqmdo1_400\",\n    \"question\": \"how many woman are laying in the bed together and snuggling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12062\",\n    \"key\": \"67094\",\n    \"description\": \"two woman are laying in a bed together and snuggling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdl028aPE1rufswgo1_400\",\n    \"question\": \"what is the man in a black shirt tickling?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39413\",\n    \"key\": \"25068\",\n    \"description\": \"a man in a black shirt is tickling a little dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mhncAnrG1tfer0ho1_400\",\n    \"question\": \"what is the dog touching a cats head as if its petting?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25627\",\n    \"key\": \"15516\",\n    \"description\": \"a dog is touching a cats head as if its petting the cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99i8z85VV1tbjfazo1_400\",\n    \"question\": \"what is spinning in circles on a wooden floor?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42580\",\n    \"key\": \"38782\",\n    \"description\": \"a cat is spinning in circles on a wooden floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xhhpcZOi1ribqy3o1_1280\",\n    \"question\": \"how many men are driving down the road and headbanging?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8281\",\n    \"key\": \"33927\",\n    \"description\": \"four men are driving down the road and headbanging.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncza8xIcHW1tuzm6po1_400\",\n    \"question\": \"what is the woman wearing and dancing in place?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1092\",\n    \"key\": \"65138\",\n    \"description\": \"a woman is wearing headphones and dancing in place.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3j1ifbVC1qksoito1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27258\",\n    \"key\": \"66376\",\n    \"description\": \"a man with black hair is laughing and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzz2eyFYT1tvo8x5o1_500\",\n    \"question\": \"where does the man set off a confetti cannon.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7241\",\n    \"key\": \"60863\",\n    \"description\": \"the man sets off a confetti cannon in the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngxch41oJy1tkjmmko1_500\",\n    \"question\": \"what is the color of the stage?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3053\",\n    \"key\": \"101061\",\n    \"description\": \"a girl with dress is dancing in a white stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9duy7IEm1trwttjo1_250\",\n    \"question\": \"where is the man dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38248\",\n    \"key\": \"1591\",\n    \"description\": \"a man is dancing in a music room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zjjsp2E21tecuevo1_400\",\n    \"question\": \"how many guys is dancing very funny in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50164\",\n    \"key\": \"42865\",\n    \"description\": \"two guys is dancing very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ku06s5kP1t6ksnpo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49056\",\n    \"key\": \"90011\",\n    \"description\": \"a guy with a black shirt is holding his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni7bzqpypD1trvyawo1_400\",\n    \"question\": \"how many man having a fun in the club and looks very happy?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31883\",\n    \"key\": \"17991\",\n    \"description\": \"two man having a fun in the club and looks very happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncazxuSQtP1tps3kao1_400\",\n    \"question\": \"what is the skater with white shirt jumping?\",\n    \"answer\": \"tubes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11538\",\n    \"key\": \"62450\",\n    \"description\": \"a skater with white shirt is jumping tubes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndizmmSDER1tobehfo1_250\",\n    \"question\": \"what is the woman practicing and showing her flexibility?\",\n    \"answer\": \"dance\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46199\",\n    \"key\": \"53426\",\n    \"description\": \"a woman is practicing her pole dance and showing her flexibility.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkgi9P3nt1qll2s1o1_400\",\n    \"question\": \"what does the singing man hold up?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43221\",\n    \"key\": \"67725\",\n    \"description\": \"the singing man holds up his cup while a group dances behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblx1kLOlU1tyv4s2o1_500\",\n    \"question\": \"how many young men are laughing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43730\",\n    \"key\": \"95966\",\n    \"description\": \"two young men are laughing together and one of them is raising his elbow in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfiz3nbFdl1sqsp7io1_500\",\n    \"question\": \"how many men have the group hug together?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44856\",\n    \"key\": \"76263\",\n    \"description\": \"five men have a group hug together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhsaj7nv21t7io47o1_250\",\n    \"question\": \"what fell off of the slide?\",\n    \"answer\": \"cub\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49741\",\n    \"key\": \"36393\",\n    \"description\": \"a little bear cub fell off of a slide.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndro45f3DA1qhn9jdo1_400\",\n    \"question\": \"what is helping another dog retrieve something from a pool?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA53069\",\n    \"key\": \"81160\",\n    \"description\": \"a dog is helping another dog retrieve something from a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne61f5xOgp1u2opwno1_250\",\n    \"question\": \"how many men are chasing each other through a hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6597\",\n    \"key\": \"84349\",\n    \"description\": \"two men are chasing each other through a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkcmok2Dk1tdqqpjo1_400\",\n    \"question\": \"what is the man kicking?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39139\",\n    \"key\": \"18998\",\n    \"description\": \"a man is kicking a soccer ball while other people behind him are doing the same thing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtxedpe7W1t7an45o1_250\",\n    \"question\": \"what are near the toy horse and one plays with it?\",\n    \"answer\": \"pandas\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46866\",\n    \"key\": \"27296\",\n    \"description\": \"two pandas are near a toy horse and one plays with it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq8z49bTR1sk0i2mo1_250\",\n    \"question\": \"how many guy got tackled?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22787\",\n    \"key\": \"60385\",\n    \"description\": \"two men are fought and one guy got tackled.\"\n  },\n  {\n    \"video_name\": \"tumblr_n950jbgmRB1ty56o1o1_400\",\n    \"question\": \"what is the person walking towards a moving bus and then using?\",\n    \"answer\": \"bus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17310\",\n    \"key\": \"21875\",\n    \"description\": \"a person is walking towards a moving bus and then using the bus to tie his shoe.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvuy6gtIQ1u9fb2po1_250\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49022\",\n    \"key\": \"36656\",\n    \"description\": \"a brown dog sits with another dog and howls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhn4qolyxQ1tgouwlo1_400\",\n    \"question\": \"what is fighting the cat?\",\n    \"answer\": \"iguana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6369\",\n    \"key\": \"52435\",\n    \"description\": \"a green iguana is fighting a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7dbrGYV51syww0ro1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13404\",\n    \"key\": \"17288\",\n    \"description\": \"a man in a white top and glasses is laughing with another young man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvbgxJW4s1u6lo1go1_400\",\n    \"question\": \"where is the person throwing a book.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42470\",\n    \"key\": \"66050\",\n    \"description\": \"a person in a room is throwing a book.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo4rh80wh1slj978o1_500\",\n    \"question\": \"what is standing on an animal which is under water?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44480\",\n    \"key\": \"85914\",\n    \"description\": \"a bird is standing on an animal which is under water.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngyrfb6hzc1rlvjr1o1_400\",\n    \"question\": \"where is the girl expressing very funny.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48762\",\n    \"key\": \"33915\",\n    \"description\": \"a girl is expressing very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfok5iX5E1srqnzqo1_400\",\n    \"question\": \"how many people does there 's singing into a microphone on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43261\",\n    \"key\": \"59369\",\n    \"description\": \"there 's two people singing into a microphone on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxwcqyL2t1s0234jo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47652\",\n    \"key\": \"45763\",\n    \"description\": \"a young girl with black hair is waving her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj9smLJW61tb2khbo1_250\",\n    \"question\": \"how many men are walking in the garden?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41043\",\n    \"key\": \"46323\",\n    \"description\": \"two men are walking in a garden and one man pushes the other onto a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne72c3gF971u1431qo1_400\",\n    \"question\": \"what is the man holding a small child looked out?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40964\",\n    \"key\": \"12283\",\n    \"description\": \"a man holding a small child looked out the window.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr5ywtRaY1tiutwwo1_250\",\n    \"question\": \"where is the guy thinking and smiling.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11264\",\n    \"key\": \"14386\",\n    \"description\": \"a guy is thinking and smiling in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnfu7EwM91r3diajo1_500\",\n    \"question\": \"what do men in eighties close play?\",\n    \"answer\": \"concert\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34384\",\n    \"key\": \"43197\",\n    \"description\": \"men in eighties close play a rock concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqejl6aULY1s6wmvgo1_250\",\n    \"question\": \"how many men are rehearsing the song and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48007\",\n    \"key\": \"11994\",\n    \"description\": \"two men are rehearsing a song and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnuevqLzN1u37d6qo1_250\",\n    \"question\": \"what is the person blowing with a woman?\",\n    \"answer\": \"dandelion\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23\",\n    \"key\": \"87556\",\n    \"description\": \"a person is blowing a dandelion with a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1q5qKoHg1tumw11o1_100\",\n    \"question\": \"how many men spit on one man then he hits one of the men that spit on him?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18199\",\n    \"key\": \"33117\",\n    \"description\": \"two men spit on one man then he hits one of the men that spit on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkiaplKlq61rp8svmo1_400\",\n    \"question\": \"what does the baseball player swing and hits?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45940\",\n    \"key\": \"75218\",\n    \"description\": \"a baseball player swings and hits a ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wtxekbRV1s6f9ago1_500\",\n    \"question\": \"what is the woman tipping at someone?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46870\",\n    \"key\": \"71312\",\n    \"description\": \"a woman is tipping her black hat at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj9smLJW61tb2khbo1_250\",\n    \"question\": \"where are two men walking and one man pushes the other onto a bed.\",\n    \"answer\": \"? garden\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28813\",\n    \"key\": \"46323\",\n    \"description\": \"two men are walking in a garden and one man pushes the other onto a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax649zJEz1sqpl8fo1_400\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37150\",\n    \"key\": \"47890\",\n    \"description\": \"a boy in a black coat in front of a wall makes a gesture with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndalo1iQWh1rrjxv9o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29598\",\n    \"key\": \"4206\",\n    \"description\": \"a man with brown hair and in a suit is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9s1mylGE1sn65ego1_250\",\n    \"question\": \"what is getting applauded under disco lights?\",\n    \"answer\": \"queen\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38328\",\n    \"key\": \"13598\",\n    \"description\": \"a drag queen is getting applauded under disco lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_npzz6lGvVe1u32cyao1_400\",\n    \"question\": \"what does man in gray suit close?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23021\",\n    \"key\": \"28059\",\n    \"description\": \"man in gray suit closes a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1kbzvsw71rwzy1eo1_400\",\n    \"question\": \"what is playing with some tires on a field?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA736\",\n    \"key\": \"71853\",\n    \"description\": \"an elephant is playing with some tires on a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcolpASZD1sht3fmo1_250\",\n    \"question\": \"what are laying behind apples while a third cat is sleeping?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29673\",\n    \"key\": \"68601\",\n    \"description\": \"two cats are laying behind apples while a third cat is sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitvmqOok11r05qsbo1_400\",\n    \"question\": \"what speeds down the race track and drifts at a corner?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23803\",\n    \"key\": \"70773\",\n    \"description\": \"a car speeds down a race track and drifts at a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vr1xjmof1tdmffyo1_250\",\n    \"question\": \"what swats at the pen while hiding in a drawer?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42983\",\n    \"key\": \"27920\",\n    \"description\": \"a cat swats at a pen while hiding in a drawer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnymrk5szy1rjb18uo1_400\",\n    \"question\": \"what is the band wearing black clothing are playing?\",\n    \"answer\": \"instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4296\",\n    \"key\": \"60695\",\n    \"description\": \"a band wearing black clothing are playing instruments.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncaawdCxWV1rvlx3so1_400\",\n    \"question\": \"what does the woman lightly scratch on the neck while smiling?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15731\",\n    \"key\": \"32049\",\n    \"description\": \"a woman lightly scratches her black cat on the neck while smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrba7uzD21r0ajmso1_500\",\n    \"question\": \"what is the color of the blazer?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6962\",\n    \"key\": \"59077\",\n    \"description\": \"a guy in a blue blazer is pretending to reel in a lady.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqg0uj5LBQ1sn23iho1_400\",\n    \"question\": \"how many people are holding their hands together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51353\",\n    \"key\": \"53029\",\n    \"description\": \"two people are holding their hands together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbafnh36931svh8clo1_250\",\n    \"question\": \"how many men in black are standing at the corner?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2032\",\n    \"key\": \"1567\",\n    \"description\": \"two men in black are standing at the corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5w7sROwX1tjdvfuo1_400\",\n    \"question\": \"what is the color of the sheet?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48935\",\n    \"key\": \"80200\",\n    \"description\": \"the gray cat is playing on the bed with the burgundy pillows and white sheet.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvfrvtJRb1uo2e5xo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5952\",\n    \"key\": \"28457\",\n    \"description\": \"woman black is singing on many places and costumes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfykv0aK2g1u51u27o1_400\",\n    \"question\": \"what is the woman cutting down the middle with a sharp object?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15431\",\n    \"key\": \"98683\",\n    \"description\": \"a woman is cutting a framed picture down the middle with a sharp object.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakdvwOdMw1qlxas3o1_400\",\n    \"question\": \"what is the person in a shiny jacket playing and then they lift their head?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48869\",\n    \"key\": \"56285\",\n    \"description\": \"a person in a shiny jacket is playing the guitar and then they lift their head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n7f6rvr58y1qaqx8xo1_500\",\n    \"question\": \"what did the young boy rid down a hallway and stops upon seeing two twin girls?\",\n    \"answer\": \"tricycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40480\",\n    \"key\": \"80584\",\n    \"description\": \"a young boy rides a tricycle down a hallway and stops upon seeing two twin girls.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtd3euAIt1rwc3zyo1_400\",\n    \"question\": \"what is the man looking through binoculars and a woman closes in a door?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21077\",\n    \"key\": \"28060\",\n    \"description\": \"a man is looking through binoculars and a woman closes her shirt in a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0oqeBJLk1qzs91yo1_1280\",\n    \"question\": \"what is looking at something with surprise?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22582\",\n    \"key\": \"27459\",\n    \"description\": \"a cat is looking at something with surprise.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbe5908NiN1re0mxqo1_400\",\n    \"question\": \"how many children is the man in a leather jacket hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42409\",\n    \"key\": \"13562\",\n    \"description\": \"a man in a leather jacket is hugging two children.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwgbmoRKU1spxe4io1_250\",\n    \"question\": \"how many guys are holding hands and swinging their arms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3187\",\n    \"key\": \"2319\",\n    \"description\": \"two guys are holding hands and swinging their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ukfkM5oh1tsgkt1o1_500\",\n    \"question\": \"what is the man in a parachute suit taking off?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28042\",\n    \"key\": \"85356\",\n    \"description\": \"a man in a parachute suit is taking off his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagxk9TdwJ1t653keo1_250\",\n    \"question\": \"where was the woman with black hair sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4238\",\n    \"key\": \"53209\",\n    \"description\": \"the woman with black hair was sitting in the chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nooglpxw3a1tx8mn0o1_400\",\n    \"question\": \"what goes off the track and slows to a stop?\",\n    \"answer\": \"racing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32654\",\n    \"key\": \"79027\",\n    \"description\": \"race car racing goes off the track and slows to a stop.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner7ylN8ki1sncaa3o1_400\",\n    \"question\": \"what almost crash into one another?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24586\",\n    \"key\": \"55584\",\n    \"description\": \"the two cars almost crash into one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd11cdPFVQ1s1cmjio1_400\",\n    \"question\": \"where are two cars driving around.\",\n    \"answer\": \"? garage\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21507\",\n    \"key\": \"96948\",\n    \"description\": \"two cars are driving around in a garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nah4qi9p621tg1uwio1_400\",\n    \"question\": \"where is the woman dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14192\",\n    \"key\": \"30271\",\n    \"description\": \"a woman is dancing alone in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nit83eq5sB1u9se2do1_400\",\n    \"question\": \"what do the pair of gloved hands move and their mounts forward in a line?\",\n    \"answer\": \"rings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6874\",\n    \"key\": \"16211\",\n    \"description\": \"a pair of gloved hands move rings and their mounts forward in a line.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrefpvwRqT1uauvk5o1_250\",\n    \"question\": \"what is the woman holding and talking?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18075\",\n    \"key\": \"38407\",\n    \"description\": \"a woman is holding a pink phone and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1lzaN9G21tp02izo1_400\",\n    \"question\": \"what is the bear dancing and playing?\",\n    \"answer\": \"horn\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31778\",\n    \"key\": \"25343\",\n    \"description\": \"a bear is dancing and playing a horn.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tb8ftut51tcssiro1_400\",\n    \"question\": \"what is the girl drinking while looking at her phone?\",\n    \"answer\": \"coffee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48974\",\n    \"key\": \"65511\",\n    \"description\": \"a girl is drinking an iced coffee while looking at her phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak7e2ZUC11qirq69o1_400\",\n    \"question\": \"what is the color of the trousers?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA216\",\n    \"key\": \"57333\",\n    \"description\": \"a young man with black trousers is skateboarding.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h1p7cyTs1tin82no1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15267\",\n    \"key\": \"91778\",\n    \"description\": \"a couple of guys wearing black clothing,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngyrfb6hzc1rlvjr1o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28043\",\n    \"key\": \"33915\",\n    \"description\": \"a person with white hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nddbm8rMmA1u18qxqo1_400\",\n    \"question\": \"what is the man wrestling in front of another person?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45894\",\n    \"key\": \"35419\",\n    \"description\": \"a man is wrestling a dog in front of another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbv2jyZsD1tffyufo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27491\",\n    \"key\": \"94075\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_nq62qusQ2Z1tk2ngvo1_500\",\n    \"question\": \"what is touching the fish with its paw in a tub?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22378\",\n    \"key\": \"69624\",\n    \"description\": \"a cat is touching a fish with its paw in a tub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr24ia3Q8z1uzm9a7o1_500\",\n    \"question\": \"how many guys is this doing silly dances while they are wearing hooded jackets?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7969\",\n    \"key\": \"71205\",\n    \"description\": \"this is four guys doing silly dances while they are wearing hooded jackets.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lwf2HVlF1qfjzhxo1_250\",\n    \"question\": \"what is the man wearing a cheese head makes?\",\n    \"answer\": \"entrance\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36401\",\n    \"key\": \"41646\",\n    \"description\": \"a man wearing a cheese head makes an entrance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nihobb7cQ81u8uroco1_250\",\n    \"question\": \"how many people did FRAMEQAorter with microphone dodge on a motorbike?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA53059\",\n    \"key\": \"44716\",\n    \"description\": \"FRAMEQAorter with microphone dodged two people on a motorbike.\"\n  },\n  {\n    \"video_name\": \"tumblr_nisxffQvO61u5ba4ao1_250\",\n    \"question\": \"what is riding the vacuum cleaner on a hardwood floor?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9433\",\n    \"key\": \"27103\",\n    \"description\": \"a turtle is riding a vacuum cleaner on a hardwood floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd59g8nitC1qjpmwio1_500\",\n    \"question\": \"what is chewing on the corner of the book?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47208\",\n    \"key\": \"43150\",\n    \"description\": \"the cat is chewing on the corner of the book.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexhjhoBOY1s9emmto1_400\",\n    \"question\": \"what is being peeled causes a large explosion?\",\n    \"answer\": \"can\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5147\",\n    \"key\": \"37018\",\n    \"description\": \"a can being peeled causes a large explosion.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qbwbd8sH1swdkm1o1_250\",\n    \"question\": \"what is the guy victimizing with his face?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27165\",\n    \"key\": \"4004\",\n    \"description\": \"a guy is victimizing a banana with his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwj21dmKY1tnljkco1_400\",\n    \"question\": \"how many men are scaring each other at a trailer?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36412\",\n    \"key\": \"67066\",\n    \"description\": \"two men are scaring each other at a trailer.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1vxsCvAy1s71nvbo1_500\",\n    \"question\": \"what takes off but is waving around?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28103\",\n    \"key\": \"94662\",\n    \"description\": \"a plane takes off but is waving around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfb9q9tKFi1tx8n02o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20917\",\n    \"key\": \"97914\",\n    \"description\": \"a guy is dressed in a white shirt and is shaking hands with a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4vm4piNG1tjyjnio1_250\",\n    \"question\": \"what is the man wearing a bandanna and vest is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38272\",\n    \"key\": \"6080\",\n    \"description\": \"a man wearing a bandanna and vest is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_naug822mv91tgbziwo1_400\",\n    \"question\": \"what is running and jumping through the house?\",\n    \"answer\": \"chimpanzee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34390\",\n    \"key\": \"96877\",\n    \"description\": \"a chimpanzee is running and jumping through a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_npblti8bU91use8l1o1_400\",\n    \"question\": \"what does not notice the black bird,\",\n    \"answer\": \"but the bear cub does ? bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25408\",\n    \"key\": \"82811\",\n    \"description\": \"a polar bear does not notice a black bird,\"\n  },\n  {\n    \"video_name\": \"tumblr_npntu0IvQH1qf69tyo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43472\",\n    \"key\": \"75077\",\n    \"description\": \"a man with black hair is holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5lq2YzjS1unlruzo1_400\",\n    \"question\": \"what watches the kitten sitting on a mans head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45446\",\n    \"key\": \"49153\",\n    \"description\": \"a cat watches a kitten sitting on a mans head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxhn7hkCS1qf0omxo1_400\",\n    \"question\": \"what does the woman with a nose ring push forward?\",\n    \"answer\": \"glass\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33154\",\n    \"key\": \"4563\",\n    \"description\": \"a woman with a nose ring pushes her wine glass forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nalgunb5tA1rm4q61o1_250\",\n    \"question\": \"how many people are hugging each other in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38798\",\n    \"key\": \"6552\",\n    \"description\": \"two people are hugging each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin6hhwnC81tehwjso1_r1_400\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"rope\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12559\",\n    \"key\": \"46462\",\n    \"description\": \"a man is holding a rope while a horse tries to stand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xaa8ScfH1rhhof0o1_500\",\n    \"question\": \"what is the woman with brown hair and a fringe putting into her mouth?\",\n    \"answer\": \"spoon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17360\",\n    \"key\": \"24404\",\n    \"description\": \"a woman with brown hair and a fringe is putting a spoon into her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknn48RyDX1s8cogvo1_250\",\n    \"question\": \"what is the color of the backdrop?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6227\",\n    \"key\": \"46893\",\n    \"description\": \"a man is posing near a white backdrop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesls65ifv1qj1s5io1_400\",\n    \"question\": \"what is the color of the machines?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13917\",\n    \"key\": \"80347\",\n    \"description\": \"two orange color machines are fighting with swords.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb5u58Wfdx1rpqzspo1_400\",\n    \"question\": \"what is the color of the strips?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA303\",\n    \"key\": \"65712\",\n    \"description\": \"a man is wearing black tape strips on his forehead.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngx0elpYfP1u0x2y0o1_400\",\n    \"question\": \"what is the woman with horns wearing and it falls down?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15048\",\n    \"key\": \"28741\",\n    \"description\": \"a woman with horns is wearing a birthday hat and it falls down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9wn01n4a1rwuk20o1_400\",\n    \"question\": \"how many guys are signing on the stage at a concert?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52976\",\n    \"key\": \"58448\",\n    \"description\": \"two guys are signing on a stage at a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y3mpknIW1rl4lcmo1_250\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13635\",\n    \"key\": \"14733\",\n    \"description\": \"a girl with a blue scarf is walking away with a hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdybmLWnP1rlpjp7o1_250\",\n    \"question\": \"how many girls are playing musical instruments and singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9802\",\n    \"key\": \"45669\",\n    \"description\": \"two girls are playing musical instruments and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg54hiSG91tgetb4o1_250\",\n    \"question\": \"what is trying to jump into the box and is failing?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29349\",\n    \"key\": \"50207\",\n    \"description\": \"a cat is trying to jump into a box and is failing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk1rp38Pq1uyssdqo1_540\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52341\",\n    \"key\": \"10262\",\n    \"description\": \"a white cat runs down a hall then lays down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhr21u5HJv1sniu8co1_1280\",\n    \"question\": \"where are the group of men singing.\",\n    \"answer\": \"? warehouse\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48944\",\n    \"key\": \"101289\",\n    \"description\": \"a group of men are singing in a warehouse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacqlmg29U1sn53c3o1_500\",\n    \"question\": \"where are the man and woman hugging each other.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44241\",\n    \"key\": \"76786\",\n    \"description\": \"a man and woman are hugging each other in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngx5sbnr6K1tx8mn0o1_400\",\n    \"question\": \"what is traveling very quickly through the wooded area?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48264\",\n    \"key\": \"67283\",\n    \"description\": \"a vehicle is traveling very quickly through a wooded area.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhsufcYqd1u0fsqao1_500\",\n    \"question\": \"how many guys are joking very funny in the room?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43169\",\n    \"key\": \"89950\",\n    \"description\": \"four guys are joking very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdvlzako31tx8mn0o1_400\",\n    \"question\": \"what is out of street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45258\",\n    \"key\": \"78335\",\n    \"description\": \"a gray race car is out of street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee7hlohYU1tx8mn0o1_400\",\n    \"question\": \"what is driving in circes around the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18620\",\n    \"key\": \"52719\",\n    \"description\": \"a race car is driving in circes around the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngco2hZoYX1sflxw5o1_250\",\n    \"question\": \"what are two men holding close to each other?\",\n    \"answer\": \"birds\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29451\",\n    \"key\": \"8062\",\n    \"description\": \"two men are holding birds close to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndu6tuMh651sveek6o1_250\",\n    \"question\": \"how many people are outdoors hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36923\",\n    \"key\": \"8600\",\n    \"description\": \"two people are outdoors hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4ukt1AIR1r7zltao1_400\",\n    \"question\": \"how many women are moving their arms and shoulders?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7316\",\n    \"key\": \"58770\",\n    \"description\": \"two women are moving their arms and shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkipeiHUUT1t5pc1to1_250\",\n    \"question\": \"where is the woman moving around.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17467\",\n    \"key\": \"5147\",\n    \"description\": \"a woman is moving around in her chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmi7dGdup1qgeu41o1_500\",\n    \"question\": \"how many women with long hair and microphones are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34765\",\n    \"key\": \"94202\",\n    \"description\": \"two women with long hair and microphones are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfd11g9m741tm2ntoo1_500\",\n    \"question\": \"what is the woman with red lipstick wearing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23765\",\n    \"key\": \"67219\",\n    \"description\": \"a woman with red lipstick is wearing a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdl028aPE1rufswgo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33404\",\n    \"key\": \"25068\",\n    \"description\": \"a man in a black shirt is tickling a little dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_niqqnd2LXB1qjvwfto1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35102\",\n    \"key\": \"32862\",\n    \"description\": \"a beautiful girl with yellow hair is making a sight with her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_njavyfLo1J1u9268ao1_400\",\n    \"question\": \"how many men are walking up together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7919\",\n    \"key\": \"9220\",\n    \"description\": \"these two men are walking up together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngmmjdC8aq1qznkspo1_500\",\n    \"question\": \"what is playing with an ornament on a tree?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18956\",\n    \"key\": \"62809\",\n    \"description\": \"a cat is playing with an ornament on a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda5gzOBFC1thgb9yo1_250\",\n    \"question\": \"what is the young man eating?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46785\",\n    \"key\": \"16396\",\n    \"description\": \"a young man is eating a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_nea2zdghTC1tlysvco1_400\",\n    \"question\": \"what is the man wearing turned his head away?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12648\",\n    \"key\": \"29868\",\n    \"description\": \"the man is wearing a hat turned his head away.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvg8iryVv1u36jzho1_250\",\n    \"question\": \"how many women are in the room with lots of other people?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47126\",\n    \"key\": \"12523\",\n    \"description\": \"two women are in a room with lots of other people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk55jsBaYj1u0dfk0o1_400\",\n    \"question\": \"how many guys are talking while one moves his hands around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51418\",\n    \"key\": \"61440\",\n    \"description\": \"two guys are talking while one moves his hands around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrfehsYDWe1u7r745o1_400\",\n    \"question\": \"how many people hold their hands up high and then bow?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41374\",\n    \"key\": \"46511\",\n    \"description\": \"two people hold their hands up high and then bow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94vgu7eef1rraz85o1_400\",\n    \"question\": \"how many people look out the window excitedly,\",\n    \"answer\": \"screaming and pointing ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44757\",\n    \"key\": \"48177\",\n    \"description\": \"two people look out the window excitedly,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ur83cCdO1s7u8pro1_250\",\n    \"question\": \"how many people are laughing together and hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21699\",\n    \"key\": \"32294\",\n    \"description\": \"these two people are laughing together and hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc31o8OdwG1qhq89to1_500\",\n    \"question\": \"what is the robot driving and attacking?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51397\",\n    \"key\": \"58113\",\n    \"description\": \"a robot is driving and attacking another robot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nheuh0DekV1u71ddqo1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32607\",\n    \"key\": \"38754\",\n    \"description\": \"a young man in a gray top and dark rimmed glasses is looking at something to his right.\"\n  },\n  {\n    \"video_name\": \"tumblr_namh3klriu1tk3dj9o1_500\",\n    \"question\": \"what are two men kissing each other and is blue?\",\n    \"answer\": \"sky\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47047\",\n    \"key\": \"83996\",\n    \"description\": \"two men are kissing each other and the sky is blue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak34sUK131slj978o1_400\",\n    \"question\": \"what does the bird lay while riding a vacuum?\",\n    \"answer\": \"egg\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12111\",\n    \"key\": \"50795\",\n    \"description\": \"a bird lays an egg while riding a vacuum.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncggr1cNhU1s9ltd9o1_500\",\n    \"question\": \"how many women are singing together and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17271\",\n    \"key\": \"85223\",\n    \"description\": \"two women are singing together and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpoa8XFSr1swtjjuo1_500\",\n    \"question\": \"what is the color of the cars?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12079\",\n    \"key\": \"97084\",\n    \"description\": \"a bunch of red cars are racing on a dirt road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkmxjaSAq1u777vko1_500\",\n    \"question\": \"what is the bat opening and spreading its wings?\",\n    \"answer\": \"moth\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6552\",\n    \"key\": \"57894\",\n    \"description\": \"a bat is opening its moth and spreading its wings.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvix3hzTK1u3wykjo1_250\",\n    \"question\": \"how many blonde haired woman are wearing black clothes and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24016\",\n    \"key\": \"13812\",\n    \"description\": \"two blonde haired woman are wearing black clothes and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkl0odLJ991txousio1_400\",\n    \"question\": \"where is the boy stirring something.\",\n    \"answer\": \"? bowl\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6637\",\n    \"key\": \"61880\",\n    \"description\": \"a boy is stirring something in a bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_n89x91hNuc1t0k260o1_400\",\n    \"question\": \"how many boys are hopping around on one leg?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31995\",\n    \"key\": \"74034\",\n    \"description\": \"the three boys are hopping around on one leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_npm5udlNsB1ssgyoro1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34496\",\n    \"key\": \"27213\",\n    \"description\": \"a black woman is licking her lips and moving from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncss6i7D9Y1t8zp0to1_400\",\n    \"question\": \"how many shirtless men are standing in the room and moving around?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31239\",\n    \"key\": \"34125\",\n    \"description\": \"four shirtless men are standing in a room and moving around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmn8zkxwZV1u76ef6o1_1280\",\n    \"question\": \"how many young people are seen interacting intimately with one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA531\",\n    \"key\": \"96802\",\n    \"description\": \"two young people are seen interacting intimately with one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4ygqewgH1tibyhjo1_400\",\n    \"question\": \"what starts patting its legs on a person?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33052\",\n    \"key\": \"57401\",\n    \"description\": \"a dog starts patting its legs on a person.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncocreXQMU1smz1zko1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39310\",\n    \"key\": \"23073\",\n    \"description\": \"a young black man is dancing with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_naaquolONI1rqryl2o1_500\",\n    \"question\": \"how many people are sitting beside each other while one is taking a drink?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22534\",\n    \"key\": \"99615\",\n    \"description\": \"two people are sitting beside each other while one is taking a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3riuu61q1rojld8o1_400\",\n    \"question\": \"what runs away from a stick that was on it?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29097\",\n    \"key\": \"79952\",\n    \"description\": \"a mop dog gets up runs away from a stick that was on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhsaj7nv21t7io47o1_250\",\n    \"question\": \"what is falling in front of a man?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28720\",\n    \"key\": \"36393\",\n    \"description\": \"a baby bear is falling in front of a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9ywnJtxX1t09iyco1_500\",\n    \"question\": \"what is the color of the dresses?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16782\",\n    \"key\": \"75498\",\n    \"description\": \"two girls in white dresses are dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhamj8SXDA1u6f7t5o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23714\",\n    \"key\": \"65602\",\n    \"description\": \"a black man is lighting a cigar and smoking it.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7lbbYb9b1tj6bsgo1_250\",\n    \"question\": \"how many young woman stand around?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23528\",\n    \"key\": \"14012\",\n    \"description\": \"three young woman stand around and they are drinking and smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0yhhKN911situ0so1_500\",\n    \"question\": \"how many men in t-shirts dance wave their arms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52377\",\n    \"key\": \"87994\",\n    \"description\": \"two men in t-shirts dance wave their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2q4csgq91txeyrmo1_250\",\n    \"question\": \"how many men are fighting with swords while another is jumping in the air?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3668\",\n    \"key\": \"35741\",\n    \"description\": \"two men are fighting with swords while another is jumping in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5lf1I2KB1t5ojzdo1_250\",\n    \"question\": \"how many people are having the conversation?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA516\",\n    \"key\": \"19969\",\n    \"description\": \"four people are having a conversation and one gets embarrassed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjx2ofDsR1ussefyo1_400\",\n    \"question\": \"what gets a new set of wheels?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45639\",\n    \"key\": \"62536\",\n    \"description\": \"a turtle who has lost his front legs gets a new set of wheels.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemtylU1ek1sspq5qo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38230\",\n    \"key\": \"32816\",\n    \"description\": \"a white man is smoking a cigarette and brushes his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9msz5bJ7Y1spkaepo1_400\",\n    \"question\": \"how many women is wearing black clothes walk along a street?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8770\",\n    \"key\": \"62640\",\n    \"description\": \"five women wearing black clothes walk along a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_npqkuhVCs31tkhxdko1_400\",\n    \"question\": \"what is having its eyebrows plucked and smiles?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49389\",\n    \"key\": \"1357\",\n    \"description\": \"the monkey is having its eyebrows plucked and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nho4lw7YQP1tooeulo1_500\",\n    \"question\": \"how many guys are performing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12848\",\n    \"key\": \"86177\",\n    \"description\": \"the two guys are performing,\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9ii12sYt1tx8mn0o1_400\",\n    \"question\": \"what is speeding on the race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34296\",\n    \"key\": \"66589\",\n    \"description\": \"a race car is speeding on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc428jorCe1tl4bloo1_400\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30612\",\n    \"key\": \"64224\",\n    \"description\": \"a woman is riding a white horse around a stable.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0ddtHrBj1tg85j7o1_400\",\n    \"question\": \"how many pairs of gloved hands stick a red cross on a white cloth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17398\",\n    \"key\": \"36841\",\n    \"description\": \"two pairs of gloved hands stick a red cross on a white cloth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqs999ZRhM1uxceulo1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20390\",\n    \"key\": \"26066\",\n    \"description\": \"two men in black clothing stand next to each other without talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_namttvIuZM1ts3h88o1_250\",\n    \"question\": \"what is the guy wearing and looking around?\",\n    \"answer\": \"backpack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52855\",\n    \"key\": \"3013\",\n    \"description\": \"a guy is wearing a backpack and looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nck4we3kAN1r4phxao1_400\",\n    \"question\": \"what opens its eyes while it lies on a wooden floor?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39833\",\n    \"key\": \"91647\",\n    \"description\": \"a dog opens its eyes while it lies on a wooden floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8ib9Oyf21sy603fo1_250\",\n    \"question\": \"how many soccer players are embracing for the kiss on the cheek?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41552\",\n    \"key\": \"8269\",\n    \"description\": \"two soccer players are embracing for a kiss on the cheek.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0dhlZLLw1ts3zgzo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13113\",\n    \"key\": \"7715\",\n    \"description\": \"a girl with long black hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h6s64oTE1qh439wo1_500\",\n    \"question\": \"what is the woman holding and cuddling?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36271\",\n    \"key\": \"79368\",\n    \"description\": \"a woman is holding and cuddling a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfysduIWKB1u029u8o1_400\",\n    \"question\": \"how many leopards are in the cage trying to get out?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA744\",\n    \"key\": \"37642\",\n    \"description\": \"three leopards are in a cage trying to get out.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyd2oxaHK1s5kmdmo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10071\",\n    \"key\": \"38355\",\n    \"description\": \"a white man with white shirt is busy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkidy4Ldfk1t47dz3o1_400\",\n    \"question\": \"what are two women drinking at a table?\",\n    \"answer\": \"beverages\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25195\",\n    \"key\": \"91568\",\n    \"description\": \"two women are drinking hot beverages at a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx280JEg61suduoyo1_400\",\n    \"question\": \"how many men are dancing at the party together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42459\",\n    \"key\": \"22059\",\n    \"description\": \"two men are dancing at a party together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hhx6Tsyj1rftdx0o1_250\",\n    \"question\": \"what is the person with a veil walking and carrying?\",\n    \"answer\": \"bouquet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4083\",\n    \"key\": \"53576\",\n    \"description\": \"a person with a veil is walking and carrying a bouquet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3cwgFIwf1rcnjvno1_500\",\n    \"question\": \"what is the color of the fingernails?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50376\",\n    \"key\": \"55080\",\n    \"description\": \"a girl with red painted fingernails is drawing in a book.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93tutzrrp1tb5w14o1_400\",\n    \"question\": \"what is the color of the stockings?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36048\",\n    \"key\": \"29742\",\n    \"description\": \"a girl is fixing her black stockings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko9kdhd8b1shcu57o1_250\",\n    \"question\": \"what is the sportsman running and removing?\",\n    \"answer\": \"helmet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1878\",\n    \"key\": \"47475\",\n    \"description\": \"a sportsman is running and removing his helmet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6u5vgOwZ1tekfeyo1_500\",\n    \"question\": \"what is the color of the stares?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16593\",\n    \"key\": \"82710\",\n    \"description\": \"a guy in white leans over as another n red stares on.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r0jnVOmO1qfhxh5o1_400\",\n    \"question\": \"where are two boys moving and dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27429\",\n    \"key\": \"65939\",\n    \"description\": \"two boys are moving and dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0agzCLGr1tz9jaqo1_500\",\n    \"question\": \"what does the man control better than anyone on the field?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15874\",\n    \"key\": \"101645\",\n    \"description\": \"a man controls the soccer ball better than anyone on the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyoq3PnfT1slj978o1_400\",\n    \"question\": \"what is fuming over the man 's strength?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43718\",\n    \"key\": \"82128\",\n    \"description\": \"a car is fuming over a man 's strength.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0jxoYxes1tkdc7qo1_250\",\n    \"question\": \"how many girls are waving their arms and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52292\",\n    \"key\": \"76255\",\n    \"description\": \"two girls are waving their arms and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tiqifppP1qhj4gko1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17516\",\n    \"key\": \"55004\",\n    \"description\": \"a girl in a short red dress is speaking to someone and lifting her hands questioningly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9ok0sAQE1u9vl8lo1_400\",\n    \"question\": \"what is being driven over the small child?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39461\",\n    \"key\": \"54033\",\n    \"description\": \"a car is being driven over a small child.\"\n  },\n  {\n    \"video_name\": \"tumblr_newn7v8rYN1stqtbvo1_500\",\n    \"question\": \"how many women in tall boots dance erotically?\",\n    \"answer\": \"seven\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37491\",\n    \"key\": \"76464\",\n    \"description\": \"seven women in tall boots dance erotically.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99vbo9pk71tf7kp3o1_500\",\n    \"question\": \"how many people stood on stage singing a sing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26166\",\n    \"key\": \"75263\",\n    \"description\": \"two people stood on stage singing a sing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngu3mzFpwr1tdjuqvo1_400\",\n    \"question\": \"what are playing with dolls in a room?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17846\",\n    \"key\": \"67982\",\n    \"description\": \"two dogs are playing with dolls in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7sb2nPWG1t6ksnpo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31197\",\n    \"key\": \"48793\",\n    \"description\": \"a guy in a white shirt sits in front of a guitar player twirling his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn8b3ckHXT1rgj6reo1_400\",\n    \"question\": \"what is falling asleep with his front two paws in his water dish?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33293\",\n    \"key\": \"55944\",\n    \"description\": \"a puppy is falling asleep with his front two paws in his water dish.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w9q4OrwW1szkudno5_500\",\n    \"question\": \"what does the person play along with a band?\",\n    \"answer\": \"trumpet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35409\",\n    \"key\": \"77978\",\n    \"description\": \"a person plays the trumpet along with a band.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda2qhxKfP1tn1i0no1_500\",\n    \"question\": \"how many men are sitting on the couch talking and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA447\",\n    \"key\": \"88868\",\n    \"description\": \"two men are sitting on a couch talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_neryckEsZS1qhwq64o1_500\",\n    \"question\": \"what does someone turn around on a high wave?\",\n    \"answer\": \"surfboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30832\",\n    \"key\": \"69544\",\n    \"description\": \"someone turns their surfboard around on a high wave.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne6d928mgq1sayp7jo1_250\",\n    \"question\": \"how many guys in tan coats are riding on a four wheeler?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21631\",\n    \"key\": \"80077\",\n    \"description\": \"two guys in tan coats are riding on a four wheeler.\"\n  },\n  {\n    \"video_name\": \"tumblr_niswdlribH1siwa6ao1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10916\",\n    \"key\": \"97261\",\n    \"description\": \"a guy wearing a black shirt and playing a guitar,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndayi6M8cK1th4ipno1_400\",\n    \"question\": \"where is the man working out.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7815\",\n    \"key\": \"41211\",\n    \"description\": \"a man is working out in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_npxf8wubW91qlhoemo1_400\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2037\",\n    \"key\": \"27451\",\n    \"description\": \"a man has bright blue eyes and is moving his mouth and speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0v8hQfU71sjuzlno1_400\",\n    \"question\": \"what is playing around with the small pumpkin?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA856\",\n    \"key\": \"37917\",\n    \"description\": \"the bird is playing around with a small pumpkin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpvtttnNx1redfc8o1_500\",\n    \"question\": \"how many guys on motor scooters are driving own a road?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30535\",\n    \"key\": \"90884\",\n    \"description\": \"two guys on motor scooters are driving own a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxspvkFfy1tgose8o1_250\",\n    \"question\": \"what is the young woman with black hair shooing away?\",\n    \"answer\": \"crow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21687\",\n    \"key\": \"38929\",\n    \"description\": \"a young woman with black hair is shooing away a crow.\"\n  },\n  {\n    \"video_name\": \"tumblr_np88x8KELj1srwy2po1_400\",\n    \"question\": \"how many men are dancing in unison together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44477\",\n    \"key\": \"96841\",\n    \"description\": \"three men are dancing in unison together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitqpoiFcB1qc85nuo1_400\",\n    \"question\": \"what did the person kick quickly into the net?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50752\",\n    \"key\": \"101375\",\n    \"description\": \"the person kicked the soccer ball quickly into the net.\"\n  },\n  {\n    \"video_name\": \"tumblr_nprglcBVTc1unyhx2o1_400\",\n    \"question\": \"what is the color of the fence?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42105\",\n    \"key\": \"65277\",\n    \"description\": \"a car is driving up to a black fence on the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtr71EuXh1u0alpro1_500\",\n    \"question\": \"what is the color of the heeled?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26437\",\n    \"key\": \"60645\",\n    \"description\": \"a person wears black,\"\n  },\n  {\n    \"video_name\": \"tumblr_nh1qheHfba1t4snx4o1_250\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45849\",\n    \"key\": \"12481\",\n    \"description\": \"a man speaks while wearing a red baseball cap backward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdt6jdQ4C1u494rjo1_500\",\n    \"question\": \"how many man is talking?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10535\",\n    \"key\": \"81207\",\n    \"description\": \"one man is talking and the other is listening.\"\n  },\n  {\n    \"video_name\": \"tumblr_noise3JpIW1toq0iso1_540\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29996\",\n    \"key\": \"63270\",\n    \"description\": \"women wearing white shorts are throwing weapons in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlduh5x7Y1tknx5ho1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8524\",\n    \"key\": \"18313\",\n    \"description\": \"a young man wearing a white shirt is turning his head to one side.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngw6bwDfFA1tmo8ldo1_250\",\n    \"question\": \"what is the girl holding and she is hugging another girl?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14726\",\n    \"key\": \"41373\",\n    \"description\": \"a girl is holding a microphone and she is hugging another girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjczrGsrN1sua8z0o1_250\",\n    \"question\": \"how many females start dancing with the mic in their hand?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8332\",\n    \"key\": \"1672\",\n    \"description\": \"two females start dancing with a mic in their hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_neddm7VXxe1u2b0jwo1_400\",\n    \"question\": \"what crawling against and falling fell?\",\n    \"answer\": \"carpet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17000\",\n    \"key\": \"80932\",\n    \"description\": \"a cat green carpet crawling against and falling fell.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncjcla0Mpc1rf76tuo1_400\",\n    \"question\": \"how many people have the conversation on a beach?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50194\",\n    \"key\": \"28358\",\n    \"description\": \"two people have a conversation on a beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3ljyQlT21u34u6eo1_500\",\n    \"question\": \"where are the young couple kissing.\",\n    \"answer\": \"? apartment\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45141\",\n    \"key\": \"89062\",\n    \"description\": \"a young couple in an apartment are kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nec847BeIU1tv34hgo1_500\",\n    \"question\": \"how many young men look at an item together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20025\",\n    \"key\": \"40858\",\n    \"description\": \"two young men look at an item together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8g21EDnl1u07egpo1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1239\",\n    \"key\": \"100544\",\n    \"description\": \"a man with a white t-shirt on is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8c0panhq1tjisrpo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15777\",\n    \"key\": \"22225\",\n    \"description\": \"a guy is waving his black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1o4wrz6A1t1d43io1_500\",\n    \"question\": \"how many women have their heads close together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16764\",\n    \"key\": \"88073\",\n    \"description\": \"two women have their heads close together and one is making a peace sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba4zsrstP1thacl7o1_500\",\n    \"question\": \"how many male singer lifts up the shirt of another male singer?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18120\",\n    \"key\": \"19023\",\n    \"description\": \"one male singer lifts up the shirt of another male singer.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxsl29ZXD1tmth2jo1_250\",\n    \"question\": \"what did the bald man give a girl and she put it on?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11481\",\n    \"key\": \"47237\",\n    \"description\": \"a bald man gave a girl a hat and she put it on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdf8ua9mH1u76jino1_400\",\n    \"question\": \"what is the cat wiggling underneath a curtain?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20841\",\n    \"key\": \"15090\",\n    \"description\": \"a cat is wiggling its tail underneath a curtain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1owjaSEb1qgvgxbo1_250\",\n    \"question\": \"what is the color of the chairs?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22723\",\n    \"key\": \"3345\",\n    \"description\": \"three girls wearing black are dancing in front of white chairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nconinasRR1s9gxsqo1_500\",\n    \"question\": \"what is the color of the hear?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48246\",\n    \"key\": \"89274\",\n    \"description\": \"a man with black hear and black shirt speaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1d9tie9A1uapkkko1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16440\",\n    \"key\": \"6149\",\n    \"description\": \"the woman in the black dress turns and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n971luAydg1skeuupo1_400\",\n    \"question\": \"what is driving along the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA53048\",\n    \"key\": \"74145\",\n    \"description\": \"a white sports car is driving along a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndg6m6C0nY1tdmffyo1_400\",\n    \"question\": \"what walks into the building and scares an old man?\",\n    \"answer\": \"pony\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34716\",\n    \"key\": \"86974\",\n    \"description\": \"a pony walks into a building and scares an old man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrjkcGkJR1tx8mn0o1_400\",\n    \"question\": \"what speeds down the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42164\",\n    \"key\": \"55503\",\n    \"description\": \"a race car speeds down a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_noozcvca8b1uuexz4o1_500\",\n    \"question\": \"what is the color of the chicken?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31390\",\n    \"key\": \"73127\",\n    \"description\": \"a person is holding a white chicken in a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxlr1iOlx1tx8mn0o1_400\",\n    \"question\": \"what is driving backwards to park between tires?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38568\",\n    \"key\": \"55730\",\n    \"description\": \"a car is driving backwards to park between tires.\"\n  },\n  {\n    \"video_name\": \"tumblr_novlokWmWb1t6t8bgo1_540\",\n    \"question\": \"where are two men dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34185\",\n    \"key\": \"93683\",\n    \"description\": \"two men are dancing in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvg6yWRQo1u3sw0yo1_250\",\n    \"question\": \"how many boys share the laugh in front of a microphone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17085\",\n    \"key\": \"47272\",\n    \"description\": \"two boys share a laugh in front of a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk98cz79at1tk2ngvo1_400\",\n    \"question\": \"what is getting excited about the lemon and jumps around?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13245\",\n    \"key\": \"68986\",\n    \"description\": \"a dog is getting excited about a lemon and jumps around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfxdnLORb1rmy96xo1_500\",\n    \"question\": \"how many men are engaged in the fight with one holding a knife?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50174\",\n    \"key\": \"97235\",\n    \"description\": \"two men are engaged in a fight with one holding a knife.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr46avxZ4M1rn573lo1_400\",\n    \"question\": \"how many young men are talking into microphones in a radio studio?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21491\",\n    \"key\": \"56707\",\n    \"description\": \"two young men are talking into microphones in a radio studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr12heBDzF1siem3jo1_400\",\n    \"question\": \"what does there 's passing another one with sparks coming from the back of it?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51493\",\n    \"key\": \"93803\",\n    \"description\": \"there 's a formula one car passing another one with sparks coming from the back of it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf2pkEfCK1ssgyoro1_400\",\n    \"question\": \"what is eating peanut butter from a spoon?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2629\",\n    \"key\": \"70176\",\n    \"description\": \"a goat is eating peanut butter from a spoon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnsotwRNgh1tmavx8o1_250\",\n    \"question\": \"what is the man unbuttoning and looking straight ahead?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19223\",\n    \"key\": \"1691\",\n    \"description\": \"a man is unbuttoning his shirt and looking straight ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_noytvf2W2r1u6pwr8o1_r2_500\",\n    \"question\": \"how many kids with microphones on their head are thinking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19141\",\n    \"key\": \"86355\",\n    \"description\": \"two kids with microphones on their head are thinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqjman0b8a1qcehyco1_400\",\n    \"question\": \"what bounces in the air as people look on?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3690\",\n    \"key\": \"50340\",\n    \"description\": \"a car bounces in the air as people look on.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0jf2Dmtj1tr5tuwo1_500\",\n    \"question\": \"what round the corner at a racetrack?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3116\",\n    \"key\": \"71919\",\n    \"description\": \"two race cars round a corner at a racetrack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbznblT3yw1rfvxbco2_400\",\n    \"question\": \"what is the man with a beard talking and wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52563\",\n    \"key\": \"18804\",\n    \"description\": \"a man with a beard is talking and wearing a hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazxdcpJP91thua8uo1_250\",\n    \"question\": \"how many persons are smiling while they look at the face?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31004\",\n    \"key\": \"17248\",\n    \"description\": \"two persons are smiling while they look at the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91l33EgZY1rpqn0wo1_500\",\n    \"question\": \"what is drifting around in the circle?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35619\",\n    \"key\": \"73230\",\n    \"description\": \"a car is drifting around in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ms4kvoOQeL1rgryh8o1_500\",\n    \"question\": \"what does the woman in a red hooded cape with dark gloves remove?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30742\",\n    \"key\": \"24942\",\n    \"description\": \"a woman in a red hooded cape with dark gloves removes her mask.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1g9eYGGP1u9kikho1_400\",\n    \"question\": \"what is the color of the gown?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15120\",\n    \"key\": \"50878\",\n    \"description\": \"a woman in a white gown taps on a man on his shoulder and he reaches over to give her a hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwhafR5HW1tm4bmbo1_400\",\n    \"question\": \"what is the man wearing make up and is sitting at a desk?\",\n    \"answer\": \"headdress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2301\",\n    \"key\": \"60783\",\n    \"description\": \"a man wearing make up and a feather headdress is sitting at a desk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqscoi71bd1upirrro1_500\",\n    \"question\": \"how many men is this image of sitting down looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8212\",\n    \"key\": \"57842\",\n    \"description\": \"this image is of two men sitting down looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uv1zvqSX1rpt0jio1_400\",\n    \"question\": \"how many men hug and then continue rapping?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28623\",\n    \"key\": \"77523\",\n    \"description\": \"two men hug and then continue rapping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2vkqraUl1s6zpepo1_250\",\n    \"question\": \"what is the color of the monkey?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3081\",\n    \"key\": \"44090\",\n    \"description\": \"a black monkey is looking the hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3o0vDFSV1ty4rvzo1_250\",\n    \"question\": \"how many teenagers are laughing and joking with each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36689\",\n    \"key\": \"2158\",\n    \"description\": \"three teenagers are laughing and joking with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8mwwLFDM1skvnslo1_400\",\n    \"question\": \"what is the boy in a hat sitting down,\",\n    \"answer\": \"and he is removing ? hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9129\",\n    \"key\": \"58275\",\n    \"description\": \"a boy in a hat is sitting down,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8y79dwmex1tdjuqvo1_250\",\n    \"question\": \"what is dressed in the sweating while wearing a wig?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47222\",\n    \"key\": \"16924\",\n    \"description\": \"a dog is dressed in a sweating while wearing a wig.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhhl4xUkM11tiblojo1_250\",\n    \"question\": \"where is the woman dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48799\",\n    \"key\": \"22582\",\n    \"description\": \"a woman is dancing in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nber13xCxA1t0yxwdo1_400\",\n    \"question\": \"what is the color of the earring?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19049\",\n    \"key\": \"90654\",\n    \"description\": \"a guy using a black hat,\"\n  },\n  {\n    \"video_name\": \"tumblr_n907c1PcRr1sncaa3o1_400\",\n    \"question\": \"what is slowly driven on the shoulder of the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1339\",\n    \"key\": \"78070\",\n    \"description\": \"a race car is slowly driven on the shoulder of the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4083ljaR1u7dvowo1_540\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA580\",\n    \"key\": \"79713\",\n    \"description\": \"a man in white is falling into a white chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfux46GbgX1snu2seo1_400\",\n    \"question\": \"what is sitting amid the snow scene?\",\n    \"answer\": \"house\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13441\",\n    \"key\": \"919\",\n    \"description\": \"a house is sitting amid a snow scene.\"\n  },\n  {\n    \"video_name\": \"tumblr_noal004K181rk6mu2o1_250\",\n    \"question\": \"how many mascots clap their hands together and then sit down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37557\",\n    \"key\": \"80772\",\n    \"description\": \"two mascots clap their hands together and then sit down.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxnhePk1F1qeaeqco1_250\",\n    \"question\": \"what is the girl using?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49430\",\n    \"key\": \"49050\",\n    \"description\": \"a girl is using a stick to make a feather raise into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5rycDrcR1tf7kp3o1_500\",\n    \"question\": \"how many boys are dancing around on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22268\",\n    \"key\": \"84784\",\n    \"description\": \"two boys are dancing around on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2wgxdabT1u76jino1_400\",\n    \"question\": \"what is wearing the jacket and standing up on two feet to tap a hand?\",\n    \"answer\": \"kitty\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45333\",\n    \"key\": \"42056\",\n    \"description\": \"a kitty is wearing a jacket and standing up on two feet to tap a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmbdqyPlr1qhi0ato1_250\",\n    \"question\": \"what is the color of the running?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22762\",\n    \"key\": \"14144\",\n    \"description\": \"this image is of a blonde headed guy in white running.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8e4peYNx1rcivpuo1_500\",\n    \"question\": \"what is the young boy wearing a suit and tie is looking to the distance and are floating around?\",\n    \"answer\": \"bubbles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43943\",\n    \"key\": \"101709\",\n    \"description\": \"a young boy wearing a suit and tie is looking to the distance and bubbles are floating around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtjaqqMTQ1sj02yno1_400\",\n    \"question\": \"how many hand is the bare-chested man in tattoos holding up?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10511\",\n    \"key\": \"17255\",\n    \"description\": \"a bare-chested man in tattoos is holding up one hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3dcktrA31ticciso1_400\",\n    \"question\": \"what is the very cute shirtless man doing inside of a hoop?\",\n    \"answer\": \"turns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7550\",\n    \"key\": \"58502\",\n    \"description\": \"a very cute shirtless man is doing turns inside of a hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqgvgtZfb1s35d3lo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49555\",\n    \"key\": \"41805\",\n    \"description\": \"a white man and a white girl are winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_neh40xDIkk1tj2kheo1_250\",\n    \"question\": \"how many men in hats are hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20686\",\n    \"key\": \"5098\",\n    \"description\": \"two men in hats are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbk98p7g3J1slj978o1_400\",\n    \"question\": \"how many workers is playing with his helmets?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50379\",\n    \"key\": \"44732\",\n    \"description\": \"two workers is playing with his helmets.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyfaouv1s1tplwgro1_500\",\n    \"question\": \"what is the man standing by a mirror then is moving?\",\n    \"answer\": \"pillow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27763\",\n    \"key\": \"60868\",\n    \"description\": \"a man standing by a mirror then is moving a pillow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzexecqek1r8ael3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21742\",\n    \"key\": \"37463\",\n    \"description\": \"a white man with black shirt is nodding.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq23l4xPj61tdi2n7o1_500\",\n    \"question\": \"how many people with long hair are kissing and touching the neck and face of the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49688\",\n    \"key\": \"65341\",\n    \"description\": \"two people with long hair are kissing and touching the neck and face of the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmhiM9bh1u0sihjo1_250\",\n    \"question\": \"how many men are goofing around in the studio?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51164\",\n    \"key\": \"5720\",\n    \"description\": \"three men are goofing around in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq513q76F81u3cb3fo1_400\",\n    \"question\": \"what is the color of the skirts?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16162\",\n    \"key\": \"46038\",\n    \"description\": \"three women in red skirts with black hair are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmvfdO8l1tidcnvo1_400\",\n    \"question\": \"what is the person riding across a grassy hill?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10063\",\n    \"key\": \"64293\",\n    \"description\": \"a person is riding a horse across a grassy hill.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmv6zvVmc1u25ovvo1_400\",\n    \"question\": \"what is driving on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36576\",\n    \"key\": \"63416\",\n    \"description\": \"a silver car is driving on a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbn0vv8Gp1tx8mn0o1_400\",\n    \"question\": \"what are racing around the race track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29537\",\n    \"key\": \"86055\",\n    \"description\": \"three cars are racing around the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_njp4xkNl8t1tk2ngvo1_500\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA299\",\n    \"key\": \"67971\",\n    \"description\": \"a brown dog is scared with the chocolate.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rmaa7zrF1trm2z1o1_250\",\n    \"question\": \"how many men are pulling faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35022\",\n    \"key\": \"27282\",\n    \"description\": \"two men are pulling faces,\"\n  },\n  {\n    \"video_name\": \"tumblr_nlj7ukgHxw1uqezvco1_500\",\n    \"question\": \"what is the boy smiling and touching?\",\n    \"answer\": \"sweater\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37337\",\n    \"key\": \"71943\",\n    \"description\": \"a boy is smiling and touching his sweater.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdyfx9M9v1tiv70go1_400\",\n    \"question\": \"how many men are fighting each other outside?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11782\",\n    \"key\": \"28050\",\n    \"description\": \"two men are fighting each other outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5rzqybN61te5frpo1_1280\",\n    \"question\": \"how many men are these who are dancing side by side?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4869\",\n    \"key\": \"45922\",\n    \"description\": \"these are three men who are dancing side by side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf189lUyiY1tdjuqvo1_400\",\n    \"question\": \"where is the cat biting a fish.\",\n    \"answer\": \"? bowl\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18629\",\n    \"key\": \"38805\",\n    \"description\": \"a cat is biting a fish in a bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh8y8dlNj81u3fot3o1_500\",\n    \"question\": \"how many young woman is dressed in the suit?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33267\",\n    \"key\": \"81261\",\n    \"description\": \"one young woman is dressed in a suit and another woman is in a dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1d6ntdfo1rkc8b3o2_500\",\n    \"question\": \"what is the color of the suits?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8177\",\n    \"key\": \"92451\",\n    \"description\": \"three men in black suits are dancing in a parking lot.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1zg9Bkf41s2wg51o1_400\",\n    \"question\": \"what is being shown on display?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35166\",\n    \"key\": \"36195\",\n    \"description\": \"a beautiful horse is being shown on display.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq36cclrEn1uvp3zyo1_500\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6317\",\n    \"key\": \"34462\",\n    \"description\": \"a woman in a red room is adjusting her clothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njz44cKW5C1sba90go1_540\",\n    \"question\": \"where are the man and a woman singing.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49205\",\n    \"key\": \"90331\",\n    \"description\": \"a man and a woman are singing in a recording studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2cdxmG9W1turx3wo1_250\",\n    \"question\": \"how many thumbs is the white woman giving up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44055\",\n    \"key\": \"14303\",\n    \"description\": \"a white woman is giving two thumbs up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqohhcgGYi1r1pstjo1_400\",\n    \"question\": \"what is the man wearing?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11890\",\n    \"key\": \"24326\",\n    \"description\": \"a man is wearing a suit riding a go cart.\"\n  },\n  {\n    \"video_name\": \"tumblr_nntolgMF0D1tyncywo1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17442\",\n    \"key\": \"53460\",\n    \"description\": \"a black cat is lying in a box and playing with a round object.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4irzAToO1svos5ho1_400\",\n    \"question\": \"what is the man singing and playing to the rhythmic lighting?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41863\",\n    \"key\": \"26602\",\n    \"description\": \"a man is singing and playing guitar to the rhythmic lighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnl9ypbvvF1usyjg5o1_500\",\n    \"question\": \"what is the worker continuously spinning?\",\n    \"answer\": \"wheel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6204\",\n    \"key\": \"59362\",\n    \"description\": \"a worker who is wearing a uniform is continuously spinning a wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbduqfCR9m1tl1yedo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45561\",\n    \"key\": \"79447\",\n    \"description\": \"a guy in a white shirt bends down to look at a mans pants.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9x50b1Zr1u103uqo1_400\",\n    \"question\": \"how many young man sing and dance in front of a microphone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47146\",\n    \"key\": \"26459\",\n    \"description\": \"two young man sing and dance in front of a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr136wYNPh1urkl22o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18880\",\n    \"key\": \"67397\",\n    \"description\": \"a guy in a red shirt winked.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2les6Lt11t5ojzdo1_250\",\n    \"question\": \"what is the color of the door?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13973\",\n    \"key\": \"81335\",\n    \"description\": \"the girl with the long dark hair is peeking her head out of the green door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3l77geE51tckhoro1_250\",\n    \"question\": \"how many men are hugging at the baseball game?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9705\",\n    \"key\": \"43984\",\n    \"description\": \"two men are hugging at a baseball game.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncpots8K611thq4xuo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42376\",\n    \"key\": \"40422\",\n    \"description\": \"a young oriental man in a white suit is dancing and turning and swinging his arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhj8xVwwc1rd12nio1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21108\",\n    \"key\": \"9297\",\n    \"description\": \"a man walks the street in a blue shirt walked.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafbe4YHCY1tyuwrso1_500\",\n    \"question\": \"how many young boys are dancing and gyrating around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21098\",\n    \"key\": \"101490\",\n    \"description\": \"two young boys are dancing and gyrating around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvq16e3bp1tl3lpbo1_400\",\n    \"question\": \"what is the color of the bikini?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39407\",\n    \"key\": \"63601\",\n    \"description\": \"a woman in a white bikini flips her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ji43A1Rt1titlh5o1_250\",\n    \"question\": \"what turns his head and stares?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1120\",\n    \"key\": \"19769\",\n    \"description\": \"the dog turns his head and stares.\"\n  },\n  {\n    \"video_name\": \"tumblr_naa11tbBvx1tebyg2o1_400\",\n    \"question\": \"how many beautiful men with short hair are making sighs with the hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48360\",\n    \"key\": \"62578\",\n    \"description\": \"two beautiful men with short hair are making sighs with the hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi7wk5NaL1rifrfzo1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4663\",\n    \"key\": \"42796\",\n    \"description\": \"a man wearing a black baseball cap is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nchrar0KYb1tmd31ao1_400\",\n    \"question\": \"how many people are pushing each others feet with their own feet?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44049\",\n    \"key\": \"21163\",\n    \"description\": \"two people are pushing each others feet with their own feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksqcq3SSs1s0taylo1_400\",\n    \"question\": \"where are some people laughing at something.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1150\",\n    \"key\": \"22924\",\n    \"description\": \"some people in a room are laughing at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngjlp5kgcv1tehdato1_400\",\n    \"question\": \"what does the woman spit out while talking to a man?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11184\",\n    \"key\": \"70204\",\n    \"description\": \"a woman spits out her gum while talking to a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5wjeO42X1scelspo1_250\",\n    \"question\": \"what is the person apparently fixing?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46275\",\n    \"key\": \"52745\",\n    \"description\": \"a person is apparently fixing a toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng52z8PL7o1t2dezjo1_400\",\n    \"question\": \"what is the man moving around on his face?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45727\",\n    \"key\": \"65025\",\n    \"description\": \"a man is moving his sunglasses around on his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauqdi6XJW1sje108o1_500\",\n    \"question\": \"what is the color of the suits?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51886\",\n    \"key\": \"11524\",\n    \"description\": \"the two men in black suits are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7t1vdt1z1s1h8hno1_250\",\n    \"question\": \"what is the man in a suit talking and adjusting?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31086\",\n    \"key\": \"3800\",\n    \"description\": \"a man in a suit is talking and adjusting his tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgn5rXBcf1tymzl2o1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36594\",\n    \"key\": \"65752\",\n    \"description\": \"a person wearing a red jacket and sunglasses raises three fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yucrQ0CD1rcjuu7o1_400\",\n    \"question\": \"where are the bunch of guys dancing around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48320\",\n    \"key\": \"19184\",\n    \"description\": \"a bunch of guys are dancing around in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahgllYsQa1te9jx5o1_400\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5214\",\n    \"key\": \"70111\",\n    \"description\": \"a girl in a yellow scarf is nodding her head while a guy in a red shirt appears from behind a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ji43A1Rt1titlh5o1_250\",\n    \"question\": \"what is staring ahead at someone while they are outside?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45834\",\n    \"key\": \"19769\",\n    \"description\": \"a dog is staring ahead at someone while they are outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngnkhsnQGT1tg0fs9o1_400\",\n    \"question\": \"what is the man holding a garbage bag is walking down a street and jumps?\",\n    \"answer\": \"curb\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34306\",\n    \"key\": \"87115\",\n    \"description\": \"a man holding a garbage bag is walking down a street and jumps the curb.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne00j9tc0m1tx8mn0o1_400\",\n    \"question\": \"what is driving on the road,\",\n    \"answer\": \"and then leaves it ? car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2447\",\n    \"key\": \"55497\",\n    \"description\": \"a car is driving on a road,\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5j25EmSI1rz6jjpo1_500\",\n    \"question\": \"what is the color of the stands?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14811\",\n    \"key\": \"81740\",\n    \"description\": \"a man dressed all in black stands in the gloom and looks around sneakily.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5rycDrcR1tf7kp3o1_500\",\n    \"question\": \"how many men are carrying microphones and dancing on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44408\",\n    \"key\": \"84784\",\n    \"description\": \"two men are carrying microphones and dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbx1tmy96X1tpo01go1_400\",\n    \"question\": \"what is looking around with its tongue out?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5317\",\n    \"key\": \"4945\",\n    \"description\": \"the dog is looking around with its tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9emuzqIhv1sk96t7o1_400\",\n    \"question\": \"what is chasing the white mouse?\",\n    \"answer\": \"snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38726\",\n    \"key\": \"42486\",\n    \"description\": \"the snake is chasing the white mouse.\"\n  },\n  {\n    \"video_name\": \"tumblr_njocvnKcFO1tifehbo1_400\",\n    \"question\": \"how many boy is talking to another boy at a school?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13991\",\n    \"key\": \"55408\",\n    \"description\": \"one boy is talking to another boy at a school.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmkxiOfQS1r7kw0wo1_250\",\n    \"question\": \"how many men are sitting in small boats in the water?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47974\",\n    \"key\": \"25153\",\n    \"description\": \"two men are sitting in small boats in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxhochglk1sjb704o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46634\",\n    \"key\": \"70668\",\n    \"description\": \"a man in a black shirt covers his face as another man sits next to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvwisimqr1tmhwpbo1_250\",\n    \"question\": \"what is the man driving,\",\n    \"answer\": \"he looks at his passenger who is sleeping ? car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44473\",\n    \"key\": \"56167\",\n    \"description\": \"a man is driving a car,\"\n  },\n  {\n    \"video_name\": \"tumblr_no9t9j1OOA1usf060o1_250\",\n    \"question\": \"what is playing with the fake dog?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20130\",\n    \"key\": \"26545\",\n    \"description\": \"a real dog is playing with a fake dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7jh4DbZY1r65nqjo1_500\",\n    \"question\": \"where is the cute couple dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20916\",\n    \"key\": \"54728\",\n    \"description\": \"a cute couple is dancing together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_npsss3YbI91rda9yxo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23609\",\n    \"key\": \"70256\",\n    \"description\": \"a man in black is singing and dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nduzc4QNa11tmn3zuo1_400\",\n    \"question\": \"what is the man wearing a mask on the top of his head lights a cigarette and pulls out?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32725\",\n    \"key\": \"64006\",\n    \"description\": \"a man wearing a mask on the top of his head lights a cigarette and pulls out a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq8pahvjZZ1uym2rjo1_400\",\n    \"question\": \"what is the color of the goat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28144\",\n    \"key\": \"20839\",\n    \"description\": \"a white goat chewing and then is staring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqjklxflS41uz06r7o1_250\",\n    \"question\": \"what is playing very funny in the room?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA364\",\n    \"key\": \"5456\",\n    \"description\": \"a white cat is playing very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbf412WZn71tl6o7ko1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11203\",\n    \"key\": \"70230\",\n    \"description\": \"a woman with white hair is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pqj1rlmp1t29pn7o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41782\",\n    \"key\": \"18874\",\n    \"description\": \"a man in a black shirt shakes a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerwf18fKw1tav4r9o1_400\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2814\",\n    \"key\": \"84123\",\n    \"description\": \"there 's a black haired boy walking on the street looking up carrying backpack.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmbyneIXL1qj8gilo1_500\",\n    \"question\": \"how many young people are posing for the picture?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51361\",\n    \"key\": \"71495\",\n    \"description\": \"two young people are posing for a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0a8cwZvc1u5ep4ro1_500\",\n    \"question\": \"how many men sit in the room and talk to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18916\",\n    \"key\": \"61245\",\n    \"description\": \"two men sit in a room and talk to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8hkl5Vn171tgetb4o1_250\",\n    \"question\": \"what is the cat eating from a bowl and is biting its ears?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8486\",\n    \"key\": \"27225\",\n    \"description\": \"a cat is eating from a bowl and a puppy is biting its ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4gm0K4eA1tjiuk2o1_500\",\n    \"question\": \"what is the person with blonde hair wearing and talking?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49552\",\n    \"key\": \"93595\",\n    \"description\": \"a person with blonde hair is wearing a hat and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkk0waiRpk1unu0wio1_400\",\n    \"question\": \"how many people on motorbikes who are jumping on ramps but it shows in reverse?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21030\",\n    \"key\": \"37502\",\n    \"description\": \"5 people on motorbikes who are jumping on ramps but it shows in reverse.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qimeVRl31rm2suio1_400\",\n    \"question\": \"how many people are sitting at the booth and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22750\",\n    \"key\": \"13867\",\n    \"description\": \"two people are sitting at a booth and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_noofl2XtVN1uw3tyuo1_250\",\n    \"question\": \"what are the boy with painted face by sticking?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4344\",\n    \"key\": \"39859\",\n    \"description\": \"a boy with painted face by are sticking white suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pom6qgCR1tgl4z1o1_400\",\n    \"question\": \"what move their heads from side to side?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6802\",\n    \"key\": \"75583\",\n    \"description\": \"the two dogs move their heads from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_natc7tHJGT1r1zmnpo1_400\",\n    \"question\": \"how many people are dumping water on a man in a chair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43047\",\n    \"key\": \"65027\",\n    \"description\": \"two people are dumping water on a man in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1kpmxC281rkn23mo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47687\",\n    \"key\": \"9788\",\n    \"description\": \"a man in a white tee shirt is touching his shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9en9zWoph1t0vmnto1_500\",\n    \"question\": \"where does the man watch the woman as she jumps out of sight.\",\n    \"answer\": \"? bow-tie\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7782\",\n    \"key\": \"81728\",\n    \"description\": \"the man in the bow-tie watches the woman as she jumps out of sight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2y0pV0us1uorc9do2_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10249\",\n    \"key\": \"8229\",\n    \"description\": \"a guy in a yellow shirt is jumping and cheering.\"\n  },\n  {\n    \"video_name\": \"tumblr_narmwnsQzg1rtbkxgo1_400\",\n    \"question\": \"what is flying in the sky sideways?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12076\",\n    \"key\": \"20178\",\n    \"description\": \"a plane is flying in the sky sideways.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrifz9OHXA1r7dalho1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40295\",\n    \"key\": \"57761\",\n    \"description\": \"a man in white is skateboarding down a road,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4zmkCAr61u3b1hio1_250\",\n    \"question\": \"what does the woman grab off of another woman 's head?\",\n    \"answer\": \"wig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24957\",\n    \"key\": \"35786\",\n    \"description\": \"a woman grabs a wig off of another woman 's head.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq0629hIq1t5ojzdo1_250\",\n    \"question\": \"what is driving along in the desert,\",\n    \"answer\": \"raising a cloud of dust ? car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29672\",\n    \"key\": \"49660\",\n    \"description\": \"a red car is driving along in the desert,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ojivgX6N1qedx60o2_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23044\",\n    \"key\": \"96484\",\n    \"description\": \"a person in a white shirt is sitting in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_naug61u7Kv1tgbziwo1_400\",\n    \"question\": \"what is the man opening and taking something from it?\",\n    \"answer\": \"freezer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13255\",\n    \"key\": \"96773\",\n    \"description\": \"a man is opening his freezer and taking something from it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam6nd8gMr1s9iqrfo1_400\",\n    \"question\": \"what is blinking his eyes while talking?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41222\",\n    \"key\": \"14161\",\n    \"description\": \"a man wearing hat is blinking his eyes while talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghj6gFDD91u5eovyo1_400\",\n    \"question\": \"how many young girls are doing an arm dance?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA346\",\n    \"key\": \"21368\",\n    \"description\": \"two young girls are doing an arm dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_neslna8yBt1tk2ngvo1_400\",\n    \"question\": \"what is being stroked by the hand?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34216\",\n    \"key\": \"55987\",\n    \"description\": \"a small furry rabbit is being stroked by a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nit1e4bC5N1tx8mn0o1_400\",\n    \"question\": \"what raced and the third car moved to first?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11970\",\n    \"key\": \"96402\",\n    \"description\": \"three cars raced and the third car moved to first.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1y3bI5fF1trrm20o1_400\",\n    \"question\": \"how many lovers embraced in the kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17095\",\n    \"key\": \"77206\",\n    \"description\": \"the two lovers embraced in a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbchtjXGlv1qchnreo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43331\",\n    \"key\": \"86899\",\n    \"description\": \"a black man lifts an item away from him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkc5joOqMs1u3mw17o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26239\",\n    \"key\": \"71272\",\n    \"description\": \"a person in a green suit is waving his hands oddly.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94yoj1LD01si7h1qo1_400\",\n    \"question\": \"how many girls are dancing on the stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8588\",\n    \"key\": \"61213\",\n    \"description\": \"the three girls are dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu0myvkQY1u28lfio2_1280\",\n    \"question\": \"how many young men in black is teasing with each other in the room?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34224\",\n    \"key\": \"92767\",\n    \"description\": \"three young men in black is teasing with each other in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkpi9gRWK1s778oho1_400\",\n    \"question\": \"how many women are singing at the concert?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41065\",\n    \"key\": \"66032\",\n    \"description\": \"four women are singing at a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfqa4dEj3v1tet6zho1_400\",\n    \"question\": \"what does the person show?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8195\",\n    \"key\": \"62046\",\n    \"description\": \"a person shows a dog a treat and the dog folds its ears back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nilyoyDugt1qdzxbio1_500\",\n    \"question\": \"what is going fast on the water?\",\n    \"answer\": \"boat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA360\",\n    \"key\": \"55069\",\n    \"description\": \"a boat is going fast on the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfzvj5CkX1uxxr4no4_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12655\",\n    \"key\": \"14198\",\n    \"description\": \"a woman in a white dress twirled around on a bridge.\"\n  },\n  {\n    \"video_name\": \"tumblr_notxiy4db81t1bfgzo1_400\",\n    \"question\": \"how many men are boxing in a boxing ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47928\",\n    \"key\": \"35039\",\n    \"description\": \"two men are boxing in a boxing ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpvtttnNx1redfc8o1_500\",\n    \"question\": \"what is the guy riding in front of another?\",\n    \"answer\": \"scooter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50318\",\n    \"key\": \"90884\",\n    \"description\": \"a guy is riding a scooter in front of another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhvj2SkLt1tkoeqqo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10186\",\n    \"key\": \"42554\",\n    \"description\": \"a man wearing a black jacket is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksdyhXtpu1rhl4f0o1_250\",\n    \"question\": \"how many frogs are climbing around in the tank together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8159\",\n    \"key\": \"22832\",\n    \"description\": \"three frogs are climbing around in a tank together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf65r6i5Ea1sjkon8o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25481\",\n    \"key\": \"41537\",\n    \"description\": \"a young black man is smiling and gazing up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjcfkUSzB1uaedmbo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29133\",\n    \"key\": \"78463\",\n    \"description\": \"this image is of a woman in a red suit swinging her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb4y8ZLES1t03l64o1_400\",\n    \"question\": \"what drifts while smoke comes out the back?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40445\",\n    \"key\": \"42848\",\n    \"description\": \"a race car drifts while smoke comes out the back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazlg99bnp1tjba7no1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50485\",\n    \"key\": \"49653\",\n    \"description\": \"a woman with brown hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvkcm3JBJ1u3ruqqo1_500\",\n    \"question\": \"how many boys look at each other against the sky?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29222\",\n    \"key\": \"72438\",\n    \"description\": \"three boys look at each other against the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92wk6HIP41seplkho3_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6809\",\n    \"key\": \"29791\",\n    \"description\": \"a man wearing a black hat stood up acting nervous.\"\n  },\n  {\n    \"video_name\": \"tumblr_nohuamOayN1rntj9yo1_400\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17430\",\n    \"key\": \"71978\",\n    \"description\": \"a man catches a ball and bumps into the green wall bumped.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin5ihnofV1shg312o1_540\",\n    \"question\": \"how many woman does there 's swaying back and forth with her hands pointing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51867\",\n    \"key\": \"36027\",\n    \"description\": \"there 's one woman swaying back and forth with her hands pointing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9rffF91i1tul4jlo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48476\",\n    \"key\": \"9054\",\n    \"description\": \"a soccer player in a red shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0lw5qYfq1uoz9klo1_400\",\n    \"question\": \"how many woman dance from side to side while is wearing skirts?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49050\",\n    \"key\": \"22334\",\n    \"description\": \"two woman dance from side to side while wearing skirts.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncehmvUQzC1tmicsyo1_400\",\n    \"question\": \"what is this three girls singing and one is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7952\",\n    \"key\": \"59826\",\n    \"description\": \"this is three girls singing and one is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k1bvGVte1tomucgo1_400\",\n    \"question\": \"what is the man running,\",\n    \"answer\": \"delivering , and signing ? flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29268\",\n    \"key\": \"61466\",\n    \"description\": \"the man is running,\"\n  },\n  {\n    \"video_name\": \"tumblr_na77n04nvH1rqb3bqo1_250\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31765\",\n    \"key\": \"38386\",\n    \"description\": \"a man in a black uniform is running over some hurdles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfifascixz1tket94o1_500\",\n    \"question\": \"where is the woman smoking and watching herself.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44309\",\n    \"key\": \"83160\",\n    \"description\": \"a woman is smoking and watching herself in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdtu2RWrh1tfn4y9o1_250\",\n    \"question\": \"what is the man riding?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12576\",\n    \"key\": \"16129\",\n    \"description\": \"a man is riding a bike while another man watches.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3vj0whpR1s93eg4o1_400\",\n    \"question\": \"what is the color of the mes-singly?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10462\",\n    \"key\": \"38217\",\n    \"description\": \"a black bear mes-singly eats some human food.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh39e5Eyfh1u5quhyo1_400\",\n    \"question\": \"what is the dog pushing to the ground and skiing on them?\",\n    \"answer\": \"skis\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4583\",\n    \"key\": \"14890\",\n    \"description\": \"a dog is pushing skis to the ground and skiing on them.\"\n  },\n  {\n    \"video_name\": \"tumblr_na29ckRUG81tso4bpo1_250\",\n    \"question\": \"what is an animal chasing?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36103\",\n    \"key\": \"11168\",\n    \"description\": \"an animal is chasing their own tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhohl7YseY1s3f033o1_250\",\n    \"question\": \"how many bearded men are standing close when one man bites the other man 's neck?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA73\",\n    \"key\": \"89385\",\n    \"description\": \"two bearded men are standing close when one man bites the other man 's neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2vicp4Xt1ti2fvro1_400\",\n    \"question\": \"how many motorcycles are riding on the road?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37907\",\n    \"key\": \"53169\",\n    \"description\": \"two motorcycles are riding on the road and one is falling over.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4xuxJjdk1sfxnzso1_250\",\n    \"question\": \"what is the black car driving around?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13448\",\n    \"key\": \"82976\",\n    \"description\": \"a black car is driving around a crescent shaped road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ljcuFQoT1tptpheo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37013\",\n    \"key\": \"49878\",\n    \"description\": \"a handsome young man with white shirt is nodding head with hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxzm6DUfa1ut2i25o1_250\",\n    \"question\": \"what is the color of the pack?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48783\",\n    \"key\": \"14793\",\n    \"description\": \"a man wearing a red back pack and black sunglasses is dancing outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_no3edfgW4X1u71py1o1_250\",\n    \"question\": \"what is this walking down a flight of steps?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3951\",\n    \"key\": \"12211\",\n    \"description\": \"this is a robot walking down a flight of steps.\"\n  },\n  {\n    \"video_name\": \"tumblr_nht4i30HAy1u7ebs7o1_500\",\n    \"question\": \"where are the man and a woman talking.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9550\",\n    \"key\": \"96214\",\n    \"description\": \"a man and a woman are talking in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncehmvUQzC1tmicsyo1_400\",\n    \"question\": \"how many people dressed funny sing and laugh while playing the guitar?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2006\",\n    \"key\": \"59826\",\n    \"description\": \"three people dressed funny sing and laugh while playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2j9ov5zN1u4v3ypo1_250\",\n    \"question\": \"what does the kitten climb to the top bunk?\",\n    \"answer\": \"ladder\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32528\",\n    \"key\": \"155\",\n    \"description\": \"a kitten climbs a bunk bed ladder to the top bunk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4kxjTHRs1rmqkjuo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42798\",\n    \"key\": \"82396\",\n    \"description\": \"a woman with red hair is waving her hand through the wind.\"\n  },\n  {\n    \"video_name\": \"tumblr_naosc4D5wx1tf1g00o1_250\",\n    \"question\": \"how many boys are dressed in black the front one is talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25973\",\n    \"key\": \"20217\",\n    \"description\": \"two boys are dressed in black the front one is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_m17cbwGbTH1qcay1ao1_500\",\n    \"question\": \"what are carrying passengers going through a tunnel?\",\n    \"answer\": \"train\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31182\",\n    \"key\": \"34432\",\n    \"description\": \"a train are carrying passengers going through a tunnel.\"\n  },\n  {\n    \"video_name\": \"tumblr_npabf7wMc81tatohao1_250\",\n    \"question\": \"what is the pig licking?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30366\",\n    \"key\": \"36414\",\n    \"description\": \"a pig is licking a black and white cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkluxwUCXZ1up5k6ro1_250\",\n    \"question\": \"where were two guys talking when another guy bursts in.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45217\",\n    \"key\": \"77807\",\n    \"description\": \"two guys were talking in a room when another guy bursts in.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhobtsS0jM1s86yfto1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41169\",\n    \"key\": \"9556\",\n    \"description\": \"a white girl with brown hair is playing dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncusywWoFr1skzykeo1_250\",\n    \"question\": \"how many men are in the darkened room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17932\",\n    \"key\": \"21512\",\n    \"description\": \"two men are in a darkened room and one of them is looking down then points.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1adbX9Zu1r3mccco1_500\",\n    \"question\": \"what is skidding down the road with other cars following it?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51846\",\n    \"key\": \"48587\",\n    \"description\": \"the car is skidding down a road with other cars following it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfz03nMP41tz0q9ko1_1280\",\n    \"question\": \"what is someone braking into the bowl?\",\n    \"answer\": \"egg\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36507\",\n    \"key\": \"33105\",\n    \"description\": \"someone is braking an egg into the bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb48dltPmv1tntd2io1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27863\",\n    \"key\": \"73902\",\n    \"description\": \"the guy in the white shirt is doing something with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkycvYc841smjbgko1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27238\",\n    \"key\": \"2666\",\n    \"description\": \"a guy in a white shirt is walking forward and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmyliMMZn1t0cpnmo1_500\",\n    \"question\": \"how many motorcyclist popped wheelies and raced down the track?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33313\",\n    \"key\": \"82692\",\n    \"description\": \"two motorcyclist popped wheelies and raced down the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkadbrY0j01rj4f6to1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41720\",\n    \"key\": \"49409\",\n    \"description\": \"a man in a dark blue suit is throwing money.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng69gxGVxg1u59g9so1_400\",\n    \"question\": \"what does the man pull off another man?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37088\",\n    \"key\": \"52028\",\n    \"description\": \"a man pulls the hat off another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5wlgslxv1tl5ztao1_400\",\n    \"question\": \"where is the person sitting and blowing smoke from their mouth.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11873\",\n    \"key\": \"31986\",\n    \"description\": \"A person is sitting in there room and blowing smoke from their mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvl80Edsp1u2goeko1_400\",\n    \"question\": \"how many fingers is the man pointing to his forehead?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA663\",\n    \"key\": \"31080\",\n    \"description\": \"a man is pointing two fingers to his forehead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhomv0Y6FK1sqlieso1_400\",\n    \"question\": \"what does the man throw onto the car?\",\n    \"answer\": \"tire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17589\",\n    \"key\": \"38893\",\n    \"description\": \"a man throws a tire onto the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nig4b0b1ln1rs9adzo1_400\",\n    \"question\": \"what are the group of men playing?\",\n    \"answer\": \"instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49126\",\n    \"key\": \"59598\",\n    \"description\": \"a group of men are playing musical instruments.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwyn9wAq21tfvj5ao1_500\",\n    \"question\": \"how many young men in sunglasses are walking past a parked car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40422\",\n    \"key\": \"24954\",\n    \"description\": \"two young men in sunglasses are walking past a parked car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfiklnpmXO1u1axtzo1_250\",\n    \"question\": \"what is the man wearing a necklace adjusts?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29383\",\n    \"key\": \"9046\",\n    \"description\": \"a man wearing a necklace adjusts his jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwg4tiDgC1u8eq3no1_400\",\n    \"question\": \"what is the person shaking their dog and looks happy?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37343\",\n    \"key\": \"66173\",\n    \"description\": \"a person is shaking their dog and the dog looks happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbouq51nPr1tkti7do1_500\",\n    \"question\": \"how many people are dancing in front of a can with fire in it?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28271\",\n    \"key\": \"44349\",\n    \"description\": \"three people are dancing in front of a can with fire in it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcolpASZD1sht3fmo1_250\",\n    \"question\": \"how many kittens have apples on their paws and are nodding their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27845\",\n    \"key\": \"68601\",\n    \"description\": \"two kittens have apples on their paws and are nodding their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay097eg3Y1s5y049o1_500\",\n    \"question\": \"what is the girl with long brown hair wearing?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4435\",\n    \"key\": \"47813\",\n    \"description\": \"a girl with long brown hair is wearing a black and white dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhh11uNa5j1tngqkyo1_250\",\n    \"question\": \"what is the man with sunglasses playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22677\",\n    \"key\": \"8192\",\n    \"description\": \"a man with sunglasses is playing drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhh2bh2wBY1ra3tfmo1_500\",\n    \"question\": \"how many people are standing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28150\",\n    \"key\": \"89335\",\n    \"description\": \"two people are standing and one of them is holding a punching bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1o37byzo1tkso41o1_400\",\n    \"question\": \"what is going out of the track?\",\n    \"answer\": \"bus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31965\",\n    \"key\": \"43357\",\n    \"description\": \"a bus is going out of a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo3xwphio1tk2ngvo1_400\",\n    \"question\": \"what are the group of cats having?\",\n    \"answer\": \"deal\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37634\",\n    \"key\": \"30518\",\n    \"description\": \"a group of cats are having a catnip deal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6xz3dqv81rmf34ao1_400\",\n    \"question\": \"what is the color of the curtain?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45233\",\n    \"key\": \"63467\",\n    \"description\": \"people are moving and making faces by a black curtain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp20daPPv1ses81bo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22174\",\n    \"key\": \"5643\",\n    \"description\": \"a young man is taking off his gray shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zp4hIxxe1sncaa3o1_400\",\n    \"question\": \"what is driving in the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47982\",\n    \"key\": \"56451\",\n    \"description\": \"a silver race car is driving in a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_naroz5NXEs1s0yep4o1_400\",\n    \"question\": \"what is the woman wearing and recording a blog?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13502\",\n    \"key\": \"28468\",\n    \"description\": \"a woman is wearing makeup and recording a blog.\"\n  },\n  {\n    \"video_name\": \"tumblr_namomnmjd51sjugf2o1_500\",\n    \"question\": \"how many men are sitting on the couch talking?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11937\",\n    \"key\": \"73930\",\n    \"description\": \"three men are sitting on a couch talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u37yY8T21s3att3o1_400\",\n    \"question\": \"what is being hatched from an egg?\",\n    \"answer\": \"snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39043\",\n    \"key\": \"40003\",\n    \"description\": \"a baby snake is being hatched from an egg.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbc8vzATx1s6zpepo1_400\",\n    \"question\": \"what does the trailer back up into the water and comes out?\",\n    \"answer\": \"ship\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11366\",\n    \"key\": \"87125\",\n    \"description\": \"a trailer backs up into the water and a ship comes out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlucajwmi1r2kpfmo1_400\",\n    \"question\": \"where is the man flexing his muscles.\",\n    \"answer\": \"? bathroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29667\",\n    \"key\": \"1917\",\n    \"description\": \"a man is flexing his muscles in a bathroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebqwlQxEk1sc6vkuo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33257\",\n    \"key\": \"83312\",\n    \"description\": \"a boy wearing a black jacket holds up two hands and waves.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndi5ueYftk1sjx9hio1_500\",\n    \"question\": \"what is the color of the dancing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46520\",\n    \"key\": \"67777\",\n    \"description\": \"this image is of a guy in a white shirt dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkadbrY0j01rj4f6to1_250\",\n    \"question\": \"what is the black man tossing?\",\n    \"answer\": \"bills\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24379\",\n    \"key\": \"49409\",\n    \"description\": \"a black man is tossing money dollar bills.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkji35ZEpf1u3w3ryo1_250\",\n    \"question\": \"what is being cut from the white cake with strawberries on it?\",\n    \"answer\": \"piece\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25531\",\n    \"key\": \"36401\",\n    \"description\": \"a piece is being cut from a white cake with strawberries on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuvtlz6f81tq4njio1_400\",\n    \"question\": \"how many balls is the woman bouncing while balancing on a board contraption?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35950\",\n    \"key\": \"46370\",\n    \"description\": \"a woman is bouncing five balls while balancing on a board contraption.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyam1X1MM1tmnntwo1_250\",\n    \"question\": \"what is standing up and closing the white door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3992\",\n    \"key\": \"37541\",\n    \"description\": \"a striped cat is standing up and closing a white door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirpcxDWj51slkktxo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31987\",\n    \"key\": \"51013\",\n    \"description\": \"this image is of a guy in a black shirt covering his face up.\"\n  },\n  {\n    \"video_name\": \"tumblr_neyn5fQWKo1r3ydxho1_1280\",\n    \"question\": \"how many man are waving their hands and shaking their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48997\",\n    \"key\": \"57540\",\n    \"description\": \"two man are waving their hands and shaking their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nek73cMum61tlbm9qo1_400\",\n    \"question\": \"where are two people dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36537\",\n    \"key\": \"54344\",\n    \"description\": \"two people are dancing in a room together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9su8xLtl1uz1tgjo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21823\",\n    \"key\": \"13081\",\n    \"description\": \"a young man with blue hair is speaking and moving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobxqkQ9G11tpg4boo1_250\",\n    \"question\": \"what does the cat put on a screen?\",\n    \"answer\": \"paws\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32822\",\n    \"key\": \"22695\",\n    \"description\": \"the cat puts his paws on a screen.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zn52IWcy1qcohbro1_400\",\n    \"question\": \"where is the person laying.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19462\",\n    \"key\": \"50343\",\n    \"description\": \"a person is laying in a bed while touching their face.\"\n  },\n  {\n    \"video_name\": \"tumblr_njugpaKONg1timrhso1_250\",\n    \"question\": \"where is the man dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16728\",\n    \"key\": \"17630\",\n    \"description\": \"a man is dancing in a room by himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99c0fzIzc1sd9re8o2_250\",\n    \"question\": \"how many athletes are hugging each other in an arena?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32369\",\n    \"key\": \"13430\",\n    \"description\": \"two athletes are hugging each other in an arena.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3tqh85vZ1tz3e8yo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38344\",\n    \"key\": \"1928\",\n    \"description\": \"a man hugs a woman in a red jacket and walks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngb2ovfyKz1qeagqto1_500\",\n    \"question\": \"how many women dressed in suits and hats are dancing?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43135\",\n    \"key\": \"87675\",\n    \"description\": \"four women dressed in suits and hats are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_niu64yd0hR1qky5cmo1_250\",\n    \"question\": \"what is the color of the door?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32681\",\n    \"key\": \"19909\",\n    \"description\": \"a man is hugging another man after coming through a green door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkvp0sAJs1ub68qdo1_250\",\n    \"question\": \"how many white guys are having fun conversation?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20010\",\n    \"key\": \"10647\",\n    \"description\": \"the two white guys are having fun conversation.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngipx3UXAX1rnuooxo1_250\",\n    \"question\": \"what does the man on stage adjust?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31159\",\n    \"key\": \"77797\",\n    \"description\": \"a man on stage adjusts his microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0hq9nCDK1tuw0i7o1_500\",\n    \"question\": \"how many dark haired girls are sitting at the table?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17570\",\n    \"key\": \"99652\",\n    \"description\": \"two dark haired girls are sitting at a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3zdwLhgA1ttuja3o1_500\",\n    \"question\": \"how many people in headphones moved their heads around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11356\",\n    \"key\": \"85274\",\n    \"description\": \"two people in headphones moved their heads around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng59f6lsBw1tbw56lo1_400\",\n    \"question\": \"what is the girl opening,\",\n    \"answer\": \"items fall out and she makes a face ? door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49865\",\n    \"key\": \"44820\",\n    \"description\": \"a girl is opening a cabinet door,\"\n  },\n  {\n    \"video_name\": \"tumblr_nr39gaCvZn1uybeupo1_400\",\n    \"question\": \"how many girls are having fun in the blue ocean?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32237\",\n    \"key\": \"85471\",\n    \"description\": \"two girls are having fun in the blue ocean.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9imcgraMv1qc8hkfo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47869\",\n    \"key\": \"58753\",\n    \"description\": \"a man in a black jacket is dancing with other people.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sqbuRsJc1tgyh35o1_400\",\n    \"question\": \"what do the few guys dance as they hold?\",\n    \"answer\": \"drinks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8724\",\n    \"key\": \"64116\",\n    \"description\": \"a few guys dance as they hold drinks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbnq50DwK1sepp2wo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44456\",\n    \"key\": \"42853\",\n    \"description\": \"the guy in the white shirt is smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerf6iPAlT1tdjuqvo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5855\",\n    \"key\": \"44098\",\n    \"description\": \"a person with a red tank top covers a head with a bucket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhi4hjjnIM1twtuudo1_250\",\n    \"question\": \"how many men are standing in the circle?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48940\",\n    \"key\": \"16603\",\n    \"description\": \"four men are standing in a circle and the circle is turning.\"\n  },\n  {\n    \"video_name\": \"tumblr_naly48pXks1t3eui8o1_500\",\n    \"question\": \"how many men man boys throw their hands around and sing to us?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11524\",\n    \"key\": \"2542\",\n    \"description\": \"two men man boys throw their hands around and sing to us.\"\n  },\n  {\n    \"video_name\": \"tumblr_na405oJNXw1s7shqdo1_250\",\n    \"question\": \"how many actors are hugging at the conference?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5577\",\n    \"key\": \"16375\",\n    \"description\": \"two actors are hugging at a conference.\"\n  },\n  {\n    \"video_name\": \"tumblr_nog48ftGLF1tigieto1_500\",\n    \"question\": \"what did the soccer team pass around the field?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36743\",\n    \"key\": \"99774\",\n    \"description\": \"a soccer team passed the ball around the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91mzrxl5h1r4phxao1_400\",\n    \"question\": \"what is eating what appears to be pasta?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23753\",\n    \"key\": \"81135\",\n    \"description\": \"the dog is eating what appears to be pasta.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3x6m8etJ1u2lsxjo1_500\",\n    \"question\": \"where is the girl wearing a light colored sweater,\",\n    \"answer\": \"dives , . ? cafeteria\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39263\",\n    \"key\": \"85880\",\n    \"description\": \"a girl wearing a light colored sweater,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpne1baVW1rylr5ko1_500\",\n    \"question\": \"what is the young boy blowing with bubblegum?\",\n    \"answer\": \"bubble\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3646\",\n    \"key\": \"97318\",\n    \"description\": \"a young boy is blowing a bubble with bubblegum.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx3cbf4Xz1t0ojyvo1_500\",\n    \"question\": \"how many people pass each other by a wall?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8105\",\n    \"key\": \"99894\",\n    \"description\": \"two people pass each other by a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8a0e46Baz1qcwyxho1_500\",\n    \"question\": \"how many women look at each other with snarling looks?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35381\",\n    \"key\": \"41796\",\n    \"description\": \"two women look at each other with snarling looks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbwfjkIRX1u6q9r2o1_250\",\n    \"question\": \"what is this image of a lady in black smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18432\",\n    \"key\": \"11953\",\n    \"description\": \"this image is of a lady in black smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfcwnjXBV1tdpae7o1_400\",\n    \"question\": \"what is the woman reading on the roof and is flowing?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3754\",\n    \"key\": \"4428\",\n    \"description\": \"a woman is reading on the roof and her dress is flowing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyyl1NVgD1sxfrgdo1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50849\",\n    \"key\": \"33358\",\n    \"description\": \"a white girl with blue shirt is surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkv34KrwC1uxdjhyo1_500\",\n    \"question\": \"what is the man playing in front of a microphone?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2154\",\n    \"key\": \"39152\",\n    \"description\": \"a man is playing a piano in front of a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4qhhSLmI1rxcaido1_250\",\n    \"question\": \"what is the man wearing and holding a martini in a pool?\",\n    \"answer\": \"goggles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9180\",\n    \"key\": \"43667\",\n    \"description\": \"a man is wearing goggles and holding a martini in a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklvmbxVSC1qeurwuo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38655\",\n    \"key\": \"53608\",\n    \"description\": \"a young woman is a blue jacket and a red hat is walking through an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rmj7Ecu51tigxjpo1_400\",\n    \"question\": \"where is the man driving down the road.\",\n    \"answer\": \"? wagon\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22935\",\n    \"key\": \"73785\",\n    \"description\": \"a man is driving down the road in a wagon.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tie8OOhC1tfj40ro1_400\",\n    \"question\": \"what bounces up and down next to the man singing into a microphone with his arm in the air?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28390\",\n    \"key\": \"84962\",\n    \"description\": \"a car bounces up and down next to a man singing into a microphone with his arm in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7vcrlEAM1sr0xveo1_400\",\n    \"question\": \"what is looking into the distance?\",\n    \"answer\": \"man\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25311\",\n    \"key\": \"97808\",\n    \"description\": \"the vest black man is looking into the distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpi16gbsF1u1eqgwo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41047\",\n    \"key\": \"35372\",\n    \"description\": \"a female wearing a yellow dress is twirling around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bsegeE7J1tetcdwo1_500\",\n    \"question\": \"what do the man and a woman smile and hug as they hold?\",\n    \"answer\": \"cups\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41908\",\n    \"key\": \"79566\",\n    \"description\": \"a man and a woman smile and hug as they hold cups.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc94ra2nr01r73xvvo1_500\",\n    \"question\": \"how many men walk dramatically down the catwalk?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22209\",\n    \"key\": \"62033\",\n    \"description\": \"two men walk dramatically down a catwalk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9h3dC7Wb1u6bdo9o1_400\",\n    \"question\": \"how many men dance with one of them sandwiched between the other two men?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26983\",\n    \"key\": \"54185\",\n    \"description\": \"three men dance with one of them sandwiched between the other two men.\"\n  },\n  {\n    \"video_name\": \"tumblr_njnpvxnQZZ1twuu9lo1_250\",\n    \"question\": \"what is the color of the wine?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11298\",\n    \"key\": \"15339\",\n    \"description\": \"this is a man drinking a glass of red wine.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwywb6JYu1qd8xguo1_500\",\n    \"question\": \"how many young women on a couch do a silly dance?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41699\",\n    \"key\": \"10965\",\n    \"description\": \"two young women on a couch do a silly dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq60huObBd1tk2ngvo1_400\",\n    \"question\": \"what is the cat riding?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18543\",\n    \"key\": \"15603\",\n    \"description\": \"a cat is riding a remote controlled car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nchrar0KYb1tmd31ao1_400\",\n    \"question\": \"how many people are kicking each other while laying on the ground?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12541\",\n    \"key\": \"21163\",\n    \"description\": \"two people are kicking each other while laying on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkw7jnai031rm0ja8o1_400\",\n    \"question\": \"how many men are sharing the moment in bed?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43749\",\n    \"key\": \"52202\",\n    \"description\": \"two men are sharing a moment in bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_naiwug6sJp1slwrsuo1_400\",\n    \"question\": \"what is hunting and grabs the fish?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49283\",\n    \"key\": \"24088\",\n    \"description\": \"a bird is hunting and grabs a fish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2mzb98AK1tkpzw0o1_400\",\n    \"question\": \"what is painting the picture with its mouth?\",\n    \"answer\": \"dolphin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51571\",\n    \"key\": \"21285\",\n    \"description\": \"a dolphin is painting a picture with its mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr53ie9eQn1re5o97o1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7597\",\n    \"key\": \"27647\",\n    \"description\": \"white cowboy hat turns into a puppet lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezwgxkYSL1trp7kao1_500\",\n    \"question\": \"how many people are moving around and playing with tennis balls?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45945\",\n    \"key\": \"38597\",\n    \"description\": \"two people are moving around and playing with tennis balls.\"\n  },\n  {\n    \"video_name\": \"tumblr_noc8a1qRoV1sjmszyo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37990\",\n    \"key\": \"59778\",\n    \"description\": \"a girl with long black hair is talking and shrugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh81xsJ7O01qhqng8o1_500\",\n    \"question\": \"what is the color of the sheet?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA953\",\n    \"key\": \"89023\",\n    \"description\": \"a man is laying down on a white sheet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkc0sh9Q61us2u6eo1_500\",\n    \"question\": \"what is the girl with bruises on her face making with bubblegum?\",\n    \"answer\": \"bubble\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24075\",\n    \"key\": \"62422\",\n    \"description\": \"a girl with bruises on her face is making a bubble with bubblegum.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncevbsEdgu1sfsp8mo1_250\",\n    \"question\": \"what is the woman applying in front of a mirror?\",\n    \"answer\": \"mascara\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43538\",\n    \"key\": \"49824\",\n    \"description\": \"a woman is applying mascara in front of a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nef3lafKhM1sfx4ouo1_250\",\n    \"question\": \"what is the man getting pinned on his mouth?\",\n    \"answer\": \"card\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12190\",\n    \"key\": \"96336\",\n    \"description\": \"a man is getting a card pinned on his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxzvxK6hJ1tnea94o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5497\",\n    \"key\": \"65161\",\n    \"description\": \"a man wearing a white shirt is smirking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_noa6rx5v411uvvlngo1_500\",\n    \"question\": \"what is falling and the man and woman are staring?\",\n    \"answer\": \"building\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36794\",\n    \"key\": \"67582\",\n    \"description\": \"a building is falling and a man and woman are staring.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qbwbd8sH1swdkm1o1_250\",\n    \"question\": \"what is the young man with dark hair eating?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26501\",\n    \"key\": \"4004\",\n    \"description\": \"a young man with dark hair is eating a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k66hDtUT1s9lpi5o1_400\",\n    \"question\": \"what is drifting around the corner?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31905\",\n    \"key\": \"54195\",\n    \"description\": \"a blue sports car is drifting around a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6vuenb6t1tvi3k9o1_400\",\n    \"question\": \"what is the girl holding and sending a kiss?\",\n    \"answer\": \"umbrella\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44210\",\n    \"key\": \"32791\",\n    \"description\": \"a girl is holding an umbrella and sending a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nogrjsVaZT1qiz3j8o1_540\",\n    \"question\": \"what is the man in old fashioned costume removing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21297\",\n    \"key\": \"20996\",\n    \"description\": \"a man in old fashioned costume is removing his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k8xzjz181tiur4yo1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32343\",\n    \"key\": \"12182\",\n    \"description\": \"a man wearing a red sweater is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhef7ip3A31txcppto1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45955\",\n    \"key\": \"20520\",\n    \"description\": \"a woman in white held her foot and jumped.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuxw8BkXX1tlwdp4o1_400\",\n    \"question\": \"what is the guy holding?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39294\",\n    \"key\": \"65656\",\n    \"description\": \"a guy is holding a small black dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko35llwGE1u9vg2vo1_500\",\n    \"question\": \"what is the man sitting his car and pulling out?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17769\",\n    \"key\": \"88852\",\n    \"description\": \"a man is sitting his car and pulling out his cell phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jsshBHVv1roay1bo1_250\",\n    \"question\": \"how many athletes are posing in dark lighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13950\",\n    \"key\": \"17178\",\n    \"description\": \"two athletes are posing in dark lighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkodyvmkCZ1u9f952o9_250\",\n    \"question\": \"what is the boy wearing a watch is holding and giving a thumbs up?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50435\",\n    \"key\": \"12301\",\n    \"description\": \"a boy wearing a watch is holding a microphone and giving a thumbs up.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r2p3I67n1txmq72o1_250\",\n    \"question\": \"what goes into the store and steals a bag of something and runs away?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18509\",\n    \"key\": \"23722\",\n    \"description\": \"a bird goes into a store and steals a bag of something and runs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfkopzxSre1tg9gzmo1_500\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36720\",\n    \"key\": \"21744\",\n    \"description\": \"a man in a white sweater slowly sinks below the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfm7qADvQ1ste7mro1_250\",\n    \"question\": \"what is the color of the costume?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38626\",\n    \"key\": \"3717\",\n    \"description\": \"a man in a black costume lowers his hand to his pocket.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9spvzQJb81rg6mvpo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13949\",\n    \"key\": \"32276\",\n    \"description\": \"a girl with green hair bites her lip and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_npv0naAHW61uvz6e5o1_500\",\n    \"question\": \"how many men are on the stage hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24544\",\n    \"key\": \"83419\",\n    \"description\": \"two men are on a stage hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x3um6BPr1rac9v2o1_400\",\n    \"question\": \"what does the man adjust in the ocean?\",\n    \"answer\": \"trunks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45029\",\n    \"key\": \"39916\",\n    \"description\": \"the man adjusts his swim trunks in the ocean.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wda2TCP21rdth4wo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46385\",\n    \"key\": \"71733\",\n    \"description\": \"a teenager wearing a black shirt says huh.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3dziL8xT1rhy02xo1_500\",\n    \"question\": \"how many boys is this that are sitting in a group?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25334\",\n    \"key\": \"72822\",\n    \"description\": \"this is three boys that are sitting in a group.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrl16zOfFD1uynlu6o1_400\",\n    \"question\": \"what does the baseball player hit really far?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42964\",\n    \"key\": \"62902\",\n    \"description\": \"a baseball player hits a ball really far.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb58nff2VI1qmrkoro1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25100\",\n    \"key\": \"23357\",\n    \"description\": \"a lady with a white hat is shaking her hand while walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq9tkzX6Mn1syyvtvo1_400\",\n    \"question\": \"where are the man and woman dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13400\",\n    \"key\": \"64701\",\n    \"description\": \"a man and woman are dancing in the living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njs6zrrNmC1qimid5o1_250\",\n    \"question\": \"how many children is wearing head coverings are singing and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24014\",\n    \"key\": \"4029\",\n    \"description\": \"two children wearing head coverings are singing and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95kw5hm8o1tfgg7jo1_500\",\n    \"question\": \"how many dancing men slide on the floor into each other and pose?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44090\",\n    \"key\": \"102010\",\n    \"description\": \"two dancing men slide on the floor into each other and pose.\"\n  },\n  {\n    \"video_name\": \"tumblr_no3swt5pjq1s6ooqoo1_250\",\n    \"question\": \"what is being poured into the shot glass?\",\n    \"answer\": \"liquor\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30399\",\n    \"key\": \"16833\",\n    \"description\": \"amber colored liquor is being poured into a shot glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91m5sAaio1qj3ripo1_400\",\n    \"question\": \"where is the man doing handstands.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18561\",\n    \"key\": \"5160\",\n    \"description\": \"a man is doing handstands in his room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0ietOo6o1qa3o0zo2_500\",\n    \"question\": \"how many basketball guys are doing the hand shake?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43068\",\n    \"key\": \"82603\",\n    \"description\": \"two basketball guys are doing a hand shake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nct6zs76IQ1t70et2o1_400\",\n    \"question\": \"how many men have the fight at a bar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38602\",\n    \"key\": \"65061\",\n    \"description\": \"two men have a fight at a bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7oaXb1D1sj1td7o1_250\",\n    \"question\": \"what is climbing out of the tent?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21154\",\n    \"key\": \"19037\",\n    \"description\": \"a fat cat is climbing out of a tent.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc9b4q2IM1sxapr1o1_500\",\n    \"question\": \"how many female models are walking and holding hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27276\",\n    \"key\": \"56668\",\n    \"description\": \"two female models are walking and holding hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwo4pR4eE1tk2ngvo1_400\",\n    \"question\": \"what is the color of the looks?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28194\",\n    \"key\": \"56306\",\n    \"description\": \"white polar bear looks forward a rainbow,\"\n  },\n  {\n    \"video_name\": \"tumblr_nguizjs4Pa1u5hpeio1_250\",\n    \"question\": \"what is the man laying in bed and smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12047\",\n    \"key\": \"21210\",\n    \"description\": \"a man is laying in bed and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpfh1RQGx1toym0ao1_400\",\n    \"question\": \"how many men are banging their chests together and they both fall down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30819\",\n    \"key\": \"29656\",\n    \"description\": \"two men are banging their chests together and they both fall down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2v1qUAmT1tjk3cbo1_250\",\n    \"question\": \"how many men stand outside talking and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24619\",\n    \"key\": \"49758\",\n    \"description\": \"two men stand outside talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_noelv1D1uI1tdtm2ao1_400\",\n    \"question\": \"how many lovers stand among the trees at night and link hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34131\",\n    \"key\": \"85653\",\n    \"description\": \"two lovers stand among the trees at night and link hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng329lAqkq1sh2a17o1_400\",\n    \"question\": \"how many people is lounging lift their heads up to look at a laptop?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24077\",\n    \"key\": \"64842\",\n    \"description\": \"two people lounging lift their heads up to look at a laptop.\"\n  },\n  {\n    \"video_name\": \"tumblr_njabihiB4w1tuh8exo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24788\",\n    \"key\": \"77\",\n    \"description\": \"the woman in the white dress and boots is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngztpl8S711u6tclbo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40718\",\n    \"key\": \"60950\",\n    \"description\": \"a boy wearing red shirt is fallen while running.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk22l3T7h61u2mmn8o1_400\",\n    \"question\": \"what is poking its head up from behind a window?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20318\",\n    \"key\": \"43464\",\n    \"description\": \"a cat is poking its head up from behind a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v14rHt3R1riy1p3o1_400\",\n    \"question\": \"what is the color of the guitar?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41007\",\n    \"key\": \"39342\",\n    \"description\": \"a man with tattoos plays a white guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf2udFCsT1txa4xgo1_400\",\n    \"question\": \"what is the person standing and wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4830\",\n    \"key\": \"68587\",\n    \"description\": \"a person is standing and wearing a hat is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wn5mOBXJ1ttuja3o1_250\",\n    \"question\": \"what is the woman standing?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41512\",\n    \"key\": \"36660\",\n    \"description\": \"a woman is standing tall in her high heels and form fitting dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97yrfHtCi1t5lsj5o1_500\",\n    \"question\": \"what is the woman tying around a mannequin?\",\n    \"answer\": \"scarf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16401\",\n    \"key\": \"54283\",\n    \"description\": \"a woman is tying a scarf around a mannequin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes3koGSue1s2cbf9o1_250\",\n    \"question\": \"how many women sat looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39236\",\n    \"key\": \"47312\",\n    \"description\": \"two women sat looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjoevhfoc1te94myo1_400\",\n    \"question\": \"what pushes the toy away barks sitting at a table?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12944\",\n    \"key\": \"10630\",\n    \"description\": \"a dog pushes a toy away barks sitting at a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sho7J99O1tggdauo1_400\",\n    \"question\": \"how many men is this image of talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26813\",\n    \"key\": \"14816\",\n    \"description\": \"this image is of two men talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrwlnA5yo1rvuwsco1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48073\",\n    \"key\": \"18509\",\n    \"description\": \"a pale man with long black hair speaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_neg0g3h3gH1qgs247o1_500\",\n    \"question\": \"how many people are sat side by side and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15887\",\n    \"key\": \"69999\",\n    \"description\": \"two people are sat side by side and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyiresVbd1unyhx2o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6795\",\n    \"key\": \"76911\",\n    \"description\": \"here is a black racing car that continues his car race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdi1douhg1r03eaxo1_400\",\n    \"question\": \"what is the man in a handicap cart waving?\",\n    \"answer\": \"squash\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42567\",\n    \"key\": \"76259\",\n    \"description\": \"a man in a handicap cart is waving a squash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9l2lY8w01s627ico1_400\",\n    \"question\": \"where is the guy with the tattoos on his chest talking.\",\n    \"answer\": \"? store\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14002\",\n    \"key\": \"86939\",\n    \"description\": \"the guy with the tattoos on his chest is talking in a clothing store.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcasjajr01re0fngo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8224\",\n    \"key\": \"29830\",\n    \"description\": \"a woman in a blue shirt smiles,\"\n  },\n  {\n    \"video_name\": \"tumblr_na3330wJ541r1e6f9o1_500\",\n    \"question\": \"what is the young man wearing?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34590\",\n    \"key\": \"98499\",\n    \"description\": \"a young man is wearing headphones while the young woman sitting next to him puts on sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu5ybxkBL1tia84ho1_r2_1280\",\n    \"question\": \"what is hugging the tree with her body?\",\n    \"answer\": \"snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34685\",\n    \"key\": \"61746\",\n    \"description\": \"a snake is hugging the tree with her body.\"\n  },\n  {\n    \"video_name\": \"tumblr_nex4xp2DL31slj978o1_250\",\n    \"question\": \"what is sitting in the corner near a door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1626\",\n    \"key\": \"3264\",\n    \"description\": \"a cat is sitting in a corner near a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_na07x1hrbL1ti3y6yo1_400\",\n    \"question\": \"what is moving around in his cage?\",\n    \"answer\": \"hamster\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17121\",\n    \"key\": \"25005\",\n    \"description\": \"a hamster is moving around in his cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngy4jkSGjY1tni61eo1_250\",\n    \"question\": \"what is opening and closing its mouth while an animal is in water behind it?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19971\",\n    \"key\": \"27236\",\n    \"description\": \"a dog is opening and closing its mouth while an animal is in water behind it.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqbltdM1G1rftdx0o1_400\",\n    \"question\": \"what is being placed on the slice of bread?\",\n    \"answer\": \"cheese\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17203\",\n    \"key\": \"45406\",\n    \"description\": \"cheese is being placed on a slice of bread.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhreaq0fbQ1u7dl8fo1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32930\",\n    \"key\": \"47460\",\n    \"description\": \"a man in a blue coat and blue scarf is frowning.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr5xbefiA1s239z7o1_250\",\n    \"question\": \"what is the man wearing while talking and smiling?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47221\",\n    \"key\": \"35516\",\n    \"description\": \"a man is wearing sunglasses while talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngig7vTBrE1txov4eo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42280\",\n    \"key\": \"9844\",\n    \"description\": \"a very beautiful lady with yellow hair is giving a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h68813s31txehx9o1_500\",\n    \"question\": \"what is hanging in the car window and a man turns his head and reacts to the dog?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4874\",\n    \"key\": \"94877\",\n    \"description\": \"a dog is hanging in a car window and a man turns his head and reacts to the dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nekjo7McVO1t6zhvzo1_400\",\n    \"question\": \"what is the woman taking out of her mouth before exhaling smoke?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51775\",\n    \"key\": \"32107\",\n    \"description\": \"a woman is taking a cigarette out of her mouth before exhaling smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfbih9DeO1slwrsuo1_400\",\n    \"question\": \"what is drinking out of the toilet bowl?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12483\",\n    \"key\": \"15753\",\n    \"description\": \"a dog is drinking out of a toilet bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbag18Nh9E1s78p7ko1_500\",\n    \"question\": \"what is the girl holding a snake and kisses,\",\n    \"answer\": \"then the snake kisses her ? snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11663\",\n    \"key\": \"59188\",\n    \"description\": \"a girl is holding a snake and kisses the snake,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc826aUSI71slj978o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37898\",\n    \"key\": \"46829\",\n    \"description\": \"a man in a blue shirt spins the hat to the fourth man in line.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7ssmBprR1taym8lo1_400\",\n    \"question\": \"how many men are talking over their meal?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45951\",\n    \"key\": \"71670\",\n    \"description\": \"three men are talking over their meal.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uic7q38E1rxj7ooo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50767\",\n    \"key\": \"18405\",\n    \"description\": \"a woman wears a black dress,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbnq50DwK1sepp2wo1_400\",\n    \"question\": \"what does the man inhale then blows smoke out of his nostrils?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24990\",\n    \"key\": \"42853\",\n    \"description\": \"a man inhales a cigarette then blows smoke out of his nostrils.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5ik20yvI1tti8vwo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36149\",\n    \"key\": \"88627\",\n    \"description\": \"a man wearing a white shirt holds onto a microphone stand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uic7q38E1rxj7ooo1_400\",\n    \"question\": \"what does the woman wear,\",\n    \"answer\": \"dances seductively ? dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47592\",\n    \"key\": \"18405\",\n    \"description\": \"a woman wears a black dress,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb330aM2rd1taqruuo1_400\",\n    \"question\": \"what begins the race with other cars?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16579\",\n    \"key\": \"64237\",\n    \"description\": \"a green car begins a race with other cars.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wb6eXG2c1thsjzqo1_400\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3252\",\n    \"key\": \"64996\",\n    \"description\": \"A girl with blue eyes and red lips is looking serious.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92gvgCiks1r4w6cwo1_500\",\n    \"question\": \"what did the man in a robe unsheathe slowly?\",\n    \"answer\": \"sword\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24080\",\n    \"key\": \"81763\",\n    \"description\": \"a man in a robe unsheathed a sword slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3qgzrxld1s0r79po1_r1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6492\",\n    \"key\": \"92812\",\n    \"description\": \"a young man in a white shirt bows in a classroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxlgzOQSN1t0x7yto1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA867\",\n    \"key\": \"61137\",\n    \"description\": \"the blue car is driving on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2k21xDU51shtuz8o1_250\",\n    \"question\": \"how many men is this image of sitting down on a couch making silly faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14530\",\n    \"key\": \"73231\",\n    \"description\": \"this image is of two men sitting down on a couch making silly faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdzjchAEe1tepwnvo1_500\",\n    \"question\": \"what is the man with dyed red hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44276\",\n    \"key\": \"25115\",\n    \"description\": \"a man with dyed red hair is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3s2a0pF31sqlieso1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22449\",\n    \"key\": \"74740\",\n    \"description\": \"a guy in an orange coat jumped.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav6oaPHdu1tkrm74o1_500\",\n    \"question\": \"how many young people are standing in front of a police telephone?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13865\",\n    \"key\": \"68826\",\n    \"description\": \"three young people are standing in front of a police telephone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2nhl9fVr1u2ppnho1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7169\",\n    \"key\": \"33569\",\n    \"description\": \"a red haired girl played with a bunny waved then touched her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rxpzPdkD1sl4h58o1_500\",\n    \"question\": \"how many men are crawling on all fours?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA981\",\n    \"key\": \"96083\",\n    \"description\": \"four men are crawling on all fours.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf189lUyiY1tdjuqvo1_400\",\n    \"question\": \"where does the fish lay as a cat tries to pull him out.\",\n    \"answer\": \"? bowl\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22964\",\n    \"key\": \"38805\",\n    \"description\": \"a fish lays in a big bowl as a cat tries to pull him out.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wa8lugFs1r8a1kho1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43994\",\n    \"key\": \"96102\",\n    \"description\": \"a man wearing a blue hat is talking while blue lights flash in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdlzlPd9o1sj2opgo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6810\",\n    \"key\": \"14294\",\n    \"description\": \"a man in a black shirt is laughing and turns.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0sftU2oI1sgc1txo1_400\",\n    \"question\": \"what is looking around while standing on a couch?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44581\",\n    \"key\": \"1442\",\n    \"description\": \"a dog is looking around while standing on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xt13cRaK1th5x8zo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3094\",\n    \"key\": \"39190\",\n    \"description\": \"the man dancing is wearing a white shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk22u5Kq8E1raiukoo1_400\",\n    \"question\": \"what are dancing in the dressing room?\",\n    \"answer\": \"kiss\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11274\",\n    \"key\": \"76563\",\n    \"description\": \"the rock band kiss are dancing in a dressing room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hw28peTq1s61fbqo1_400\",\n    \"question\": \"what is the color of the fish?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42971\",\n    \"key\": \"52981\",\n    \"description\": \"a red fish is swimming very slowly in some water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakevodx4L1s1txlxo1_400\",\n    \"question\": \"what does the woman pet and kisses?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7867\",\n    \"key\": \"32762\",\n    \"description\": \"a woman pets and kisses a cat she is holding.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfysduIWKB1u029u8o1_400\",\n    \"question\": \"where does an animal climb a wall.\",\n    \"answer\": \"? cage\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41970\",\n    \"key\": \"37642\",\n    \"description\": \"an animal climbs a wall in his cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh22tam7s41rud96vo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23423\",\n    \"key\": \"71903\",\n    \"description\": \"a man in white shirt is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9vp9aJut1sdbrm9o1_400\",\n    \"question\": \"how many guys are on stage performing a concert?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52308\",\n    \"key\": \"33629\",\n    \"description\": \"two guys are on stage performing a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7k6pBzzN1qm466ao1_500\",\n    \"question\": \"how many men are wearing glasses and are smoking?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34166\",\n    \"key\": \"24484\",\n    \"description\": \"all three men are wearing glasses and are smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_npp14yVd861ruoinvo1_400\",\n    \"question\": \"where is the person doing a back flip.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40329\",\n    \"key\": \"50547\",\n    \"description\": \"a person is doing a back flip in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmnxtXMH81rd87k4o1_250\",\n    \"question\": \"what is the himalayan cat his grooming?\",\n    \"answer\": \"possum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14375\",\n    \"key\": \"13409\",\n    \"description\": \"a himalayan cat his grooming is toy possum.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhio8wIAJ21u4f3j0o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16744\",\n    \"key\": \"79239\",\n    \"description\": \"a man with blue shirt tries to ride a unicycle but fails.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr9g7hj371sutnv4o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38545\",\n    \"key\": \"26601\",\n    \"description\": \"a white man is moving away from a crowd of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3w76eSSb1u28yp1o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17825\",\n    \"key\": \"48570\",\n    \"description\": \"a woman is wearing a black shirt and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n951b2b8S81t3pqzeo1_250\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51396\",\n    \"key\": \"2787\",\n    \"description\": \"a boy wearing a blue sweatshirt is turning his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93tutzrrp1tb5w14o1_400\",\n    \"question\": \"what is the girl fixing?\",\n    \"answer\": \"stockings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32171\",\n    \"key\": \"29742\",\n    \"description\": \"a girl is fixing her black stockings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhe8vgQHTM1rvab3po1_250\",\n    \"question\": \"what is the man shaking?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37937\",\n    \"key\": \"21670\",\n    \"description\": \"a man is shaking a tree as baubles fall off.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w7avDq101qb4p6go1_500\",\n    \"question\": \"how many girls are hugging each other with another girl pointing her hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20959\",\n    \"key\": \"71582\",\n    \"description\": \"two girls are hugging each other with another girl pointing her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1uqvcH4y1t1nzngo1_500\",\n    \"question\": \"how many guitar players are performing live on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46329\",\n    \"key\": \"70801\",\n    \"description\": \"two guitar players are performing live on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3uvmrNjc1tgetb4o1_250\",\n    \"question\": \"what does the man somehow give to a person in mid air?\",\n    \"answer\": \"clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25720\",\n    \"key\": \"274\",\n    \"description\": \"a man somehow gives clothes to a person in mid air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbmxzkirLv1txhlaeo1_250\",\n    \"question\": \"what is the man blowing smoke out and wearing?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20581\",\n    \"key\": \"5045\",\n    \"description\": \"a man is blowing smoke out and wearing headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwoxqjLik1tit9eco1_r1_500\",\n    \"question\": \"what is the color of the hallway?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51285\",\n    \"key\": \"95676\",\n    \"description\": \"a person is singing in a red hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhp1rdIHcP1s6zpepo1_250\",\n    \"question\": \"what is sitting on the couch and its puppies are sleeping next to it and a cat is curled up to it too?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29285\",\n    \"key\": \"27115\",\n    \"description\": \"a dog is sitting on a couch and its puppies are sleeping next to it and a cat is curled up to it too.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakdgd05uD1tbcisxo1_400\",\n    \"question\": \"what tries to get off the guy 's shoulder?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10507\",\n    \"key\": \"28962\",\n    \"description\": \"a kitten tries to get off a guy 's shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelh3nATly1tte9eno1_400\",\n    \"question\": \"what do two wrestlers rip in front of a crowd?\",\n    \"answer\": \"shirts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7921\",\n    \"key\": \"40152\",\n    \"description\": \"two wrestlers rip their shirts in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nplr9dMQ9H1uxicgso1_400\",\n    \"question\": \"what transforms into the robot and starts to dance?\",\n    \"answer\": \"building\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3824\",\n    \"key\": \"34952\",\n    \"description\": \"an apartment building transforms into a robot and starts to dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hf7vt5UL1tiqx4yo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40459\",\n    \"key\": \"15348\",\n    \"description\": \"a man in black is getting on one knee and proposing to a woman in a brown dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbaz4cGyXC1r324mgo1_500\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35376\",\n    \"key\": \"89434\",\n    \"description\": \"a man in a white shirt and black pants is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qx6wLCjC1rid382o1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51486\",\n    \"key\": \"89086\",\n    \"description\": \"a woman wearing a black top,\"\n  },\n  {\n    \"video_name\": \"tumblr_npfup8IJsd1t95h1uo1_400\",\n    \"question\": \"where is the cat sitting on a stool is using its paws to attack paper.\",\n    \"answer\": \"? tray\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37723\",\n    \"key\": \"31768\",\n    \"description\": \"a cat sitting on a stool is using its paws to attack paper in a printer tray.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2baoLdip1thv17io1_1280\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17126\",\n    \"key\": \"99336\",\n    \"description\": \"the woman in the black coat looks around and smiles behind her.\"\n  },\n  {\n    \"video_name\": \"tumblr_n6kmok3DdI1r1x3klo1_250\",\n    \"question\": \"what is jumping around in the snow?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26041\",\n    \"key\": \"11769\",\n    \"description\": \"a spotted horse is jumping around in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ziy4WYm21t29pn7o1_250\",\n    \"question\": \"what is the man playing for a crowd of people?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26117\",\n    \"key\": \"2306\",\n    \"description\": \"a man is playing his guitar for a crowd of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94ie7oGYq1rws9d6o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50335\",\n    \"key\": \"16973\",\n    \"description\": \"a person wearing a black jacket is performing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7fsb2EGT1tirmpjo1_500\",\n    \"question\": \"what is the boy lighting and blowing out smoke?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18736\",\n    \"key\": \"36074\",\n    \"description\": \"a boy is lighting a cigarette and blowing out smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0zbqqPTH1tmeg7go1_500\",\n    \"question\": \"what is the color of the something?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49767\",\n    \"key\": \"87229\",\n    \"description\": \"a girl wearing something black is moving towards on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjopzbz3k1qz8lpeo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19315\",\n    \"key\": \"42542\",\n    \"description\": \"a woman in a black dress is having her photo taken.\"\n  },\n  {\n    \"video_name\": \"tumblr_namd90alfg1qg9j7eo1_250\",\n    \"question\": \"what is moving his arms around as it sits in the snow?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35506\",\n    \"key\": \"10806\",\n    \"description\": \"a panda is moving his arms around as it sits in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmeww4RZe1qh59g3o7_250\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17083\",\n    \"key\": \"84666\",\n    \"description\": \"a man in standing in front of a yellow car and a woman walks up to him and they embrace and kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2a16IKOW1twoe5do1_400\",\n    \"question\": \"what is the person being interviews in a gym and a person falls off?\",\n    \"answer\": \"treadmill\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28029\",\n    \"key\": \"82986\",\n    \"description\": \"a person being interviews in a gym and a person falls off a treadmill.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4ygqewgH1tibyhjo1_400\",\n    \"question\": \"what is pouncing on someone on a bed?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA366\",\n    \"key\": \"57401\",\n    \"description\": \"a dog is pouncing on someone on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6ycl8B3R1snixmzo1_400\",\n    \"question\": \"how many women are walking with each other in white dresses?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33292\",\n    \"key\": \"68918\",\n    \"description\": \"three women are walking with each other in white dresses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnibodag31tli86to1_250\",\n    \"question\": \"what is the color of the bra?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47748\",\n    \"key\": \"16395\",\n    \"description\": \"a woman in a black bra is laughing and shrugging her shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ewypfFC21tgj8ebo1_400\",\n    \"question\": \"how many man standing together,\",\n    \"answer\": \"the one man yells ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44729\",\n    \"key\": \"35356\",\n    \"description\": \"two man standing together,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fgg3pFQC1tin09xo1_250\",\n    \"question\": \"how many young people is wearing coats are facing each other and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45143\",\n    \"key\": \"51435\",\n    \"description\": \"two young people wearing coats are facing each other and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_niq18pqr9L1s6zpepo1_400\",\n    \"question\": \"what is standing on his hind legs and moving his front two arms rapidly while hunching over?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34679\",\n    \"key\": \"28033\",\n    \"description\": \"a cat is standing on his hind legs and moving his front two arms rapidly while hunching over.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wkpeXC991re6qqko1_500\",\n    \"question\": \"where are the couple of people hanging out and talking.\",\n    \"answer\": \"? office\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52491\",\n    \"key\": \"88635\",\n    \"description\": \"a couple of people are hanging out and talking in an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_nej1d4mOLQ1rnwhulo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14103\",\n    \"key\": \"71777\",\n    \"description\": \"a man with long black hair is wearing a tuxedo and looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb81l88uvu1rs532ao1_250\",\n    \"question\": \"what is the color of the teeth?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47039\",\n    \"key\": \"23077\",\n    \"description\": \"a man with large lips and white teeth is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsvtw1VqO1roxldao1_500\",\n    \"question\": \"how many guys is sitting next to each other are laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13149\",\n    \"key\": \"50556\",\n    \"description\": \"two guys sitting next to each other are laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsg9mN04U1t170ypo1_500\",\n    \"question\": \"what is the young man wearing and speaking?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3895\",\n    \"key\": \"17265\",\n    \"description\": \"a young man is wearing glasses and speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_noai717XNp1r6o5eeo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7120\",\n    \"key\": \"57093\",\n    \"description\": \"a guy wearing a white shirt with auburn colored hair is taking a picture of himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pjlmexAb1qlbtloo1_1280\",\n    \"question\": \"what does the motorcycle approaches and its back tire lift off?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14776\",\n    \"key\": \"50229\",\n    \"description\": \"a motorcycle approaches and its back tire lifts off the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5ataOKNF1ra19auo1_250\",\n    \"question\": \"what is the man wearing and playing his guitar?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45461\",\n    \"key\": \"32238\",\n    \"description\": \"a man is wearing a red shirt and playing his guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zkz0clvD1t4tud5o1_250\",\n    \"question\": \"what are the man and a woman wearing and moving their hands around?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44367\",\n    \"key\": \"47109\",\n    \"description\": \"a man and a woman are wearing sunglasses and moving their hands around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4z54JieK1som6aeo1_250\",\n    \"question\": \"how many people are pFRAMEQAaring the huge batch of soup?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2329\",\n    \"key\": \"18398\",\n    \"description\": \"three people are pFRAMEQAaring a huge batch of soup.\"\n  },\n  {\n    \"video_name\": \"tumblr_niokyrDPDi1r35105o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2153\",\n    \"key\": \"42645\",\n    \"description\": \"a man with curly brown hair stares off into the distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrc6viwFXO1tbw0t6o1_500\",\n    \"question\": \"what is the boy playing in front of a microphone?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5090\",\n    \"key\": \"74486\",\n    \"description\": \"a boy is playing his guitar in front of a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0kmzzi0r1tgt39ko1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47417\",\n    \"key\": \"44221\",\n    \"description\": \"a man dressed in black is dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q2u62j8H1sqofgbo1_400\",\n    \"question\": \"what is taking off from the shuttle?\",\n    \"answer\": \"ship\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20019\",\n    \"key\": \"44819\",\n    \"description\": \"a rocket ship is taking off from the shuttle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmd3bmcQP1upo311o1_400\",\n    \"question\": \"what is the woman singing,\",\n    \"answer\": \"and she is playing ? guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39658\",\n    \"key\": \"19530\",\n    \"description\": \"a woman is singing,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hhx6Tsyj1rftdx0o1_250\",\n    \"question\": \"what is the color of the veil?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32659\",\n    \"key\": \"53576\",\n    \"description\": \"it is a person walking with a white veil in a forest.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97i1a0Cc21ryj8xlo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA636\",\n    \"key\": \"59384\",\n    \"description\": \"a woman with her head half shaved and green hair is looking from left to right.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl08fcxHX31upy801o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8621\",\n    \"key\": \"55119\",\n    \"description\": \"a slim woman with orange hair and purple dress is nodding with a glass of water on hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9x10wA8li1rfjpv9o1_400\",\n    \"question\": \"where is the woman dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22447\",\n    \"key\": \"75556\",\n    \"description\": \"a woman is dancing in a dentist 's room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3vm1BT0P1tl8x1eo1_500\",\n    \"question\": \"what does the young man wear on his head while sitting down?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48179\",\n    \"key\": \"24178\",\n    \"description\": \"a young man wears a cap on his head while sitting down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0e5mHJLF1u2o7c8o1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11403\",\n    \"key\": \"1740\",\n    \"description\": \"two young girls,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2o4pgPu71soax42o1_400\",\n    \"question\": \"what is listening music and stops?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38865\",\n    \"key\": \"90593\",\n    \"description\": \"a dog is listening music and stops.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebsu3wlge1r7490vo1_500\",\n    \"question\": \"how many men are using laptops and then high five each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12279\",\n    \"key\": \"101847\",\n    \"description\": \"two men are using laptops and then high five each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirv73J7pz1tixppbo1_400\",\n    \"question\": \"what is someone lighting?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13673\",\n    \"key\": \"24461\",\n    \"description\": \"someone is lighting a cigarette that is in a bird 's mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgn3fIdl11u4ecywo1_400\",\n    \"question\": \"what is the color of the fez?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2580\",\n    \"key\": \"42456\",\n    \"description\": \"a man in a red fez is smiling on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknxletT5q1sgou7qo1_250\",\n    \"question\": \"what is the boy in a leather jacket playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16073\",\n    \"key\": \"13620\",\n    \"description\": \"a boy in a leather jacket is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblhu2dxb81s662kvo1_250\",\n    \"question\": \"where is the woman screaming.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13934\",\n    \"key\": \"6359\",\n    \"description\": \"a woman is screaming in her kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsmn8JV6z1sqm4zbo1_500\",\n    \"question\": \"what is sitting man watching a guy shake his rear holding?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3516\",\n    \"key\": \"46775\",\n    \"description\": \"sitting man watching a guy shake his rear holding his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9z85obWn1uaz0fio1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5902\",\n    \"key\": \"27255\",\n    \"description\": \"a man in a black suit is sitting next to the grouch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcelcGlRd1sht3fmo1_250\",\n    \"question\": \"what is the color of the costume?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19668\",\n    \"key\": \"99243\",\n    \"description\": \"a man is staring at a black costume that was hidden.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqbubNR881tdmffyo1_500\",\n    \"question\": \"what running on the beach and falls down?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19972\",\n    \"key\": \"57557\",\n    \"description\": \"a dog running on the beach and falls down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nchrar0KYb1tmd31ao1_400\",\n    \"question\": \"how many people are moving their feet together while laying on the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36204\",\n    \"key\": \"21163\",\n    \"description\": \"two people are moving their feet together while laying on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzr04ahth1t0hc4so1_400\",\n    \"question\": \"where does the young man dance and shakes his bottom.\",\n    \"answer\": \"? alley\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30069\",\n    \"key\": \"64417\",\n    \"description\": \"a young man dances and shakes his bottom in a bowling alley.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqotedLtZG1tjz3ato1_400\",\n    \"question\": \"where is the girl dancing.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32022\",\n    \"key\": \"64601\",\n    \"description\": \"a girl is dancing in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf19z5qOg31s8zojyo1_250\",\n    \"question\": \"what is the woman holding next to the fire?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41327\",\n    \"key\": \"12232\",\n    \"description\": \"a woman is holding a cup next to the fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_neosawCPpL1u04u4bo1_250\",\n    \"question\": \"how many guys hold on and then passionately kiss each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30773\",\n    \"key\": \"32607\",\n    \"description\": \"two guys hold on and then passionately kiss each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng18v4iOw91u4hyr2o1_500\",\n    \"question\": \"how many woman with long hair are clapping together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42542\",\n    \"key\": \"94617\",\n    \"description\": \"two woman with long hair are clapping together.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0rptDA7v1thtfeto1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48062\",\n    \"key\": \"69330\",\n    \"description\": \"a white woman with white hair is in the middle of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmeocfPzsS1u2z3v8o1_250\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52817\",\n    \"key\": \"5476\",\n    \"description\": \"a man in a white sweatshirt wins an arm wrestling match.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92go6IlpT1ro34d5o1_500\",\n    \"question\": \"where is the girl with long hair bobbing around.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12869\",\n    \"key\": \"34517\",\n    \"description\": \"a girl with long hair is bobbing around in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nai6960Q1M1tjkdj7o1_250\",\n    \"question\": \"what is the color of the gloves?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47542\",\n    \"key\": \"14225\",\n    \"description\": \"a beautiful woman wearing black gloves is turning her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni8pby75eq1sv8skeo1_250\",\n    \"question\": \"where is the man smiling and walking.\",\n    \"answer\": \"? office\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49363\",\n    \"key\": \"2112\",\n    \"description\": \"a man is smiling and walking in an office while talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sl1lfgHI1s01ehvo1_250\",\n    \"question\": \"what is the baby holding and swinging in a toy?\",\n    \"answer\": \"pillow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27868\",\n    \"key\": \"43207\",\n    \"description\": \"a baby is holding a pillow and swinging in a toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmyliMMZn1t0cpnmo1_500\",\n    \"question\": \"how many motorcycle riders ride wheelies down the race track?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33317\",\n    \"key\": \"82692\",\n    \"description\": \"two motorcycle riders ride wheelies down the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96ushKsHQ1rktim0o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26308\",\n    \"key\": \"28886\",\n    \"description\": \"a woman in green with short black hair is signing using sign language.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdjrnvBst1tqw00to1_500\",\n    \"question\": \"how many eye does the man have closed and has a hand on his face?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48761\",\n    \"key\": \"72197\",\n    \"description\": \"a man has one eye closed and has a hand on his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncggr1cNhU1s9ltd9o1_500\",\n    \"question\": \"how many girls are singing and dancing to the song?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7356\",\n    \"key\": \"85223\",\n    \"description\": \"two girls are singing and dancing to a song.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrgn3y2N31tx8mn0o1_400\",\n    \"question\": \"what is sliding off the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1809\",\n    \"key\": \"80363\",\n    \"description\": \"a race car is sliding off the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney69ux4541u2hqlpo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46488\",\n    \"key\": \"12295\",\n    \"description\": \"a boy is taking off his gray shirt to reveal his abs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee3oelZr21tl3pamo1_250\",\n    \"question\": \"how many man pushes another man in an office?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10627\",\n    \"key\": \"3856\",\n    \"description\": \"one man pushes another man in an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99c0fzIzc1sd9re8o2_250\",\n    \"question\": \"how many men are hugging at the end of a football game?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31635\",\n    \"key\": \"13430\",\n    \"description\": \"two men are hugging at the end of a football game.\"\n  },\n  {\n    \"video_name\": \"tumblr_nch6fvpc531tl6tllo1_500\",\n    \"question\": \"how many very cute people are walking while watching snow falling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18828\",\n    \"key\": \"26598\",\n    \"description\": \"two very cute people are walking while watching snow falling.\"\n  },\n  {\n    \"video_name\": \"tumblr_np58jvmXRX1rl84n7o1_400\",\n    \"question\": \"what is the guy in a blue sports uniform,\",\n    \"answer\": \"also wearing ? helmet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21801\",\n    \"key\": \"49007\",\n    \"description\": \"a guy in a blue sports uniform,\"\n  },\n  {\n    \"video_name\": \"tumblr_ms4kvoOQeL1rgryh8o1_500\",\n    \"question\": \"what does the young woman remove revealing her true face?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22564\",\n    \"key\": \"24942\",\n    \"description\": \"a young woman removes a mask revealing her true face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzszrgVPB1shch57o1_250\",\n    \"question\": \"how many men are dancing on stage in costumes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19719\",\n    \"key\": \"41369\",\n    \"description\": \"two men are dancing on stage in costumes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9l730D6FC1rjn6tpo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14963\",\n    \"key\": \"22567\",\n    \"description\": \"a white girl with black suit is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngocss8lv11s0s7b6o1_400\",\n    \"question\": \"where is the man driving and looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38897\",\n    \"key\": \"42817\",\n    \"description\": \"a man is driving and looking in his rear view mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7ew9nZQK1tgyh35o1_400\",\n    \"question\": \"how many man is sitting at the table?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45613\",\n    \"key\": \"64912\",\n    \"description\": \"one man is standing and one man is sitting at a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklzp8I6PP1upngsao1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43189\",\n    \"key\": \"6381\",\n    \"description\": \"a girl in black is coming to hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2ju5qBvQ1upm7mmo1_500\",\n    \"question\": \"what is the man singing and playing?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18683\",\n    \"key\": \"54986\",\n    \"description\": \"the man is singing and playing the piano.\"\n  },\n  {\n    \"video_name\": \"tumblr_noagkbLLFO1rz4xj6o1_1280\",\n    \"question\": \"how many handsome persons are sitting on the chair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12509\",\n    \"key\": \"66638\",\n    \"description\": \"two handsome persons are sitting on a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmbc0mImx1tvkq6vo1_250\",\n    \"question\": \"what is the young man holding and winking and lifting his finger?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12749\",\n    \"key\": \"17162\",\n    \"description\": \"a young man is holding a microphone and winking and lifting his finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9r7oq5FA1s03rdoo1_400\",\n    \"question\": \"what is the girl flipping her hair to the side and drinking?\",\n    \"answer\": \"beverage\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33434\",\n    \"key\": \"43101\",\n    \"description\": \"a girl is flipping her hair to the side and drinking a hot beverage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nawb6zqqjz1rn9czio2_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18380\",\n    \"key\": \"24831\",\n    \"description\": \"a man wearing a black jacket is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nph9oahgME1sj5w9fo1_400\",\n    \"question\": \"what is the man polishing with a tie dyed shirt?\",\n    \"answer\": \"shoe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41536\",\n    \"key\": \"39411\",\n    \"description\": \"a man is polishing his shoe with a tie dyed shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf6xqvd0Jl1qf69tyo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30993\",\n    \"key\": \"30797\",\n    \"description\": \"a woman with black hair is closing her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9awd0Hzvt1tpfr3do1_500\",\n    \"question\": \"what does the man swing quickly around his arm?\",\n    \"answer\": \"weapon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45646\",\n    \"key\": \"50016\",\n    \"description\": \"the man swings the weapon quickly around his arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjycfSH801sfuqj8o1_400\",\n    \"question\": \"what is the color of the liquid?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2105\",\n    \"key\": \"65005\",\n    \"description\": \"a girl spills a green liquid into a man 's mouth and kisses him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnn4qtnGxr1tek63jo1_500\",\n    \"question\": \"how many men dressed in black looking rather unhappy?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52782\",\n    \"key\": \"39140\",\n    \"description\": \"two men dressed in black looking rather unhappy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nephvvr7qF1tkura4o1_250\",\n    \"question\": \"what are opening the drawer to look inside it?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9400\",\n    \"key\": \"18471\",\n    \"description\": \"two cats are opening a drawer to look inside it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfdl91Enp1ta0siuo1_250\",\n    \"question\": \"what is jumping out of the box?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42734\",\n    \"key\": \"23803\",\n    \"description\": \"a puppy is jumping out of a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_npntu0IvQH1qf69tyo1_500\",\n    \"question\": \"what is the man with black hair holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18737\",\n    \"key\": \"75077\",\n    \"description\": \"a man with black hair is holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnvw8yLQXV1sy9nfjo1_540\",\n    \"question\": \"how many people greet each other and slap hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA790\",\n    \"key\": \"91905\",\n    \"description\": \"two people greet each other and slap hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi5pz1OK01twoivuo1_250\",\n    \"question\": \"how many men are dancing and then falling off the balcony?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26829\",\n    \"key\": \"417\",\n    \"description\": \"two men are dancing and then falling off a balcony.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq21n4xlTu1qi1atio1_250\",\n    \"question\": \"what is rolling down the stairs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4704\",\n    \"key\": \"45750\",\n    \"description\": \"the cat is rolling down the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nho9k1uktf1sov0w3o1_250\",\n    \"question\": \"how many young man are singing into the microphone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15539\",\n    \"key\": \"43995\",\n    \"description\": \"two young man are singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbat3qUnM1txvktjo1_250\",\n    \"question\": \"what is the color of the cloth?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27876\",\n    \"key\": \"15664\",\n    \"description\": \"a man with messy hair and head band wearing black cloth is turning his head and rolling his eyes with a poker face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpgnfekrZ1thlpapo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6248\",\n    \"key\": \"1848\",\n    \"description\": \"a man in white is turning his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_noejltSfgA1tpg4boo1_400\",\n    \"question\": \"where is the dog sad.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51938\",\n    \"key\": \"17989\",\n    \"description\": \"a dog is sad in the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd86nwgWeM1t2x9o3o1_500\",\n    \"question\": \"what moves from side to side while skidding across a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30097\",\n    \"key\": \"54725\",\n    \"description\": \"a race car moves from side to side while skidding across a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgl6t3yLm1tqwtb6o1_500\",\n    \"question\": \"what is the man in black dress taking?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21019\",\n    \"key\": \"99002\",\n    \"description\": \"a man in black dress is taking his stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3z9wYgAV1r1e6f9o1_500\",\n    \"question\": \"where are the couple and the man rolls on top of the woman.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23559\",\n    \"key\": \"98497\",\n    \"description\": \"a couple are in bed and the man rolls on top of the woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqo2x3bbpv1uuh0teo1_400\",\n    \"question\": \"how many men are sitting side by side and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11350\",\n    \"key\": \"89238\",\n    \"description\": \"two men are sitting side by side and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nixculfZ3b1qlbj8uo1_500\",\n    \"question\": \"how many guys is this image of onstage singing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6887\",\n    \"key\": \"101727\",\n    \"description\": \"this image is of two guys onstage singing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkocex8iVE1qjame9o1_250\",\n    \"question\": \"how many girls is talking expressly in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34975\",\n    \"key\": \"84471\",\n    \"description\": \"two girls is talking expressly in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngapyhHe7Y1sohuqmo1_250\",\n    \"question\": \"what is the kitty cat licking ear?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7632\",\n    \"key\": \"36485\",\n    \"description\": \"a kitty cat is licking a bunny rabbit 's ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf4ylsG3bX1u0iufgo1_500\",\n    \"question\": \"what are the group of people playing?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28116\",\n    \"key\": \"76526\",\n    \"description\": \"a group of people are playing guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrae7mMdrN1ua4mf8o1_400\",\n    \"question\": \"what is sitting up on its hind legs and falls backward after a piece of cheese is placed on its face?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19062\",\n    \"key\": \"76640\",\n    \"description\": \"a cat is sitting up on its hind legs and falls backward after a piece of cheese is placed on its face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3sk8Rk081u8orsuo1_250\",\n    \"question\": \"what slipped while walking with his mother?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8237\",\n    \"key\": \"36559\",\n    \"description\": \"the baby polar bear slipped while walking with his mother.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw6wwCf201qi6fy2o1_400\",\n    \"question\": \"what is lying on its back and shivering?\",\n    \"answer\": \"rodent\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36355\",\n    \"key\": \"40088\",\n    \"description\": \"a rodent is lying on its back and shivering.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wnb04QPP1t1tf12o1_400\",\n    \"question\": \"what is the color of the jersey?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20305\",\n    \"key\": \"21562\",\n    \"description\": \"a guy in a green soccer jersey is kicking a guy in a gray soccer jersey in the butt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh968zCjLO1r9p1p9o1_500\",\n    \"question\": \"how many pairs is the heavy set woman putting of sunglasses on her head?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18370\",\n    \"key\": \"61469\",\n    \"description\": \"a heavy set woman is putting two pairs of sunglasses on her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelugrsfHA1qcaryto1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8793\",\n    \"key\": \"35224\",\n    \"description\": \"the girl with the blue shirt is riding the horse around the pen.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpa4yFBB41s4vjdko1_400\",\n    \"question\": \"what is the color of the earrings?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50011\",\n    \"key\": \"37464\",\n    \"description\": \"the girl with the purple earrings is daydreaming in class.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmqd8eIh1tidcnvo1_400\",\n    \"question\": \"what is the person riding across a field?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10990\",\n    \"key\": \"64316\",\n    \"description\": \"a person is riding a horse across a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi98s3ntx1shsnyco1_500\",\n    \"question\": \"how many men give each other a high five?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9835\",\n    \"key\": \"101984\",\n    \"description\": \"two men give each other a high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfm83tUrfH1u3z6lho1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29635\",\n    \"key\": \"3513\",\n    \"description\": \"a guy with wet hair and a black jacket looks around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9ue79ebR1u63zbwo1_500\",\n    \"question\": \"how many men are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA235\",\n    \"key\": \"50957\",\n    \"description\": \"two men are talking and one of them turns around and leaves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfndwo7hfa1t7an45o1_500\",\n    \"question\": \"what is running in the circle on the bed?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4595\",\n    \"key\": \"91769\",\n    \"description\": \"a rabbit is running in a circle on the bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfp07udA6a1sa63q9o1_250\",\n    \"question\": \"what is the color of the blinking?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12456\",\n    \"key\": \"15904\",\n    \"description\": \"there 's a guy wearing a blue shirt blinking and turning his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_niv7ivzNmF1u5d5ryo1_400\",\n    \"question\": \"what is on top of furniture trying to scratch its head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30571\",\n    \"key\": \"1080\",\n    \"description\": \"a cat is on top of furniture trying to scratch its head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyc47w6ph1u25dj6o1_400\",\n    \"question\": \"what is crashing into something in the rain?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36913\",\n    \"key\": \"57531\",\n    \"description\": \"a car is crashing into something in the rain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklmon3cLG1u576abo1_250\",\n    \"question\": \"what is making moves with his hands?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA65\",\n    \"key\": \"17534\",\n    \"description\": \"a guy wearing hat is making moves with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngite8IUNJ1r5uqe5o1_500\",\n    \"question\": \"where is the cat stretching and playing.\",\n    \"answer\": \"? box\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1422\",\n    \"key\": \"83208\",\n    \"description\": \"the cat is stretching and playing in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfs209qdkn1u06yl0o1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51665\",\n    \"key\": \"97192\",\n    \"description\": \"a man dressed in black clothing is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vswusTl91tnyxl4o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35096\",\n    \"key\": \"76812\",\n    \"description\": \"a man wearing a black shirt tilts his head down to his right.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxcc3Muq71ta4f2po1_500\",\n    \"question\": \"how many people are crawling on the floor toward a doorway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7853\",\n    \"key\": \"92416\",\n    \"description\": \"two people are crawling on the floor toward a doorway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc5y9NdSL1u17tjio1_400\",\n    \"question\": \"how many people are talking and smiling while holding the phone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18100\",\n    \"key\": \"62294\",\n    \"description\": \"two people are talking and smiling while holding a phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9rcd5g6r1sw5721o1_500\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44835\",\n    \"key\": \"91807\",\n    \"description\": \"a man is grabbing another man 's shoulders in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_netcx4DbEN1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36563\",\n    \"key\": \"63409\",\n    \"description\": \"a red car drove smoothly along the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9es5w4gE71sv8elno1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15397\",\n    \"key\": \"15102\",\n    \"description\": \"a woman with red hair is laughing and moving her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nduzc4QNa11tmn3zuo1_400\",\n    \"question\": \"what are guys wearing masks and pulling out?\",\n    \"answer\": \"guns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48618\",\n    \"key\": \"64006\",\n    \"description\": \"guys are wearing masks and pulling guns out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfplbjsvOQ1u4bx69o1_400\",\n    \"question\": \"how many women are smoking on the bed as the smoke is blowing away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA823\",\n    \"key\": \"85920\",\n    \"description\": \"two women are smoking on a bed as the smoke is blowing away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwbkvxn0I1qji9umo1_500\",\n    \"question\": \"what is the color of the towel?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2298\",\n    \"key\": \"83993\",\n    \"description\": \"the man is brushing his teeth with a blue towel around his neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsuhqvHMY1rzwvkdo1_400\",\n    \"question\": \"what is the small dog running along before tripping and landing on its stomach?\",\n    \"answer\": \"beach\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20551\",\n    \"key\": \"59438\",\n    \"description\": \"a small dog is running along the beach before tripping and landing on its stomach.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr8kjIvC91soy6h3o1_250\",\n    \"question\": \"what is the color of the sunglasses?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44973\",\n    \"key\": \"32308\",\n    \"description\": \"a man wearing red frame sunglasses does random hand motions.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng7nje14RG1s6zpepo1_400\",\n    \"question\": \"what is the man given?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20854\",\n    \"key\": \"47878\",\n    \"description\": \"a man is given a gun which is then swapped for another one.\"\n  },\n  {\n    \"video_name\": \"tumblr_namuciBtaT1r06temo1_500\",\n    \"question\": \"what is the color of the scores?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45753\",\n    \"key\": \"93376\",\n    \"description\": \"a football player dressed in white scores a goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni20ssyPb91u84fnpo1_400\",\n    \"question\": \"how many people is this touching their foreheads together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23013\",\n    \"key\": \"85079\",\n    \"description\": \"this is two people touching their foreheads together.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyxk3unTA1u01edeo1_250\",\n    \"question\": \"what is the color of the lady?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6393\",\n    \"key\": \"14364\",\n    \"description\": \"a white lady is performing some show and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbcbhoKhs1r80o0mo1_500\",\n    \"question\": \"how many young golfers are swirling their hips on the golf course?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31848\",\n    \"key\": \"101339\",\n    \"description\": \"two young golfers are swirling their hips on the golf course.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fjnea55D1sftrgmo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11467\",\n    \"key\": \"50493\",\n    \"description\": \"a man in white hair is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzoqihFzL1tsaobuo1_400\",\n    \"question\": \"where is the guy standing just dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35244\",\n    \"key\": \"28495\",\n    \"description\": \"a guy is standing there just dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y146ualL1stbarjo1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35414\",\n    \"key\": \"55083\",\n    \"description\": \"this image is of a guy in brown talking to someone before he leaves.\"\n  },\n  {\n    \"video_name\": \"tumblr_n1wdvaQgaI1scy8zoo1_400\",\n    \"question\": \"what are two men eating,\",\n    \"answer\": \"? cereals\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7801\",\n    \"key\": \"36893\",\n    \"description\": \"two men are eating cereals,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9al1mawYK1thcwtbo1_500\",\n    \"question\": \"what is walking holding her cub?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23333\",\n    \"key\": \"70761\",\n    \"description\": \"a polar bear is walking holding her cub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin8fp1Mk31ruk292o1_400\",\n    \"question\": \"what is the color of the scores?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4662\",\n    \"key\": \"101477\",\n    \"description\": \"two soccer teams play while a player in red scores a goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_njr6h2kNOi1rkcbb8o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47242\",\n    \"key\": \"691\",\n    \"description\": \"a guy in a black shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7ssmBprR1taym8lo1_400\",\n    \"question\": \"what are three men talking over?\",\n    \"answer\": \"meal\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25679\",\n    \"key\": \"71670\",\n    \"description\": \"three men are talking over their meal.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7ghjKH01tdwqw4o1_500\",\n    \"question\": \"what is the color of the blocks?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33051\",\n    \"key\": \"59819\",\n    \"description\": \"a very young girl with blonde pigtails is smiling and playing with some yellow blocks.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvtl39O371u2mqcoo1_400\",\n    \"question\": \"how many guys is fighting around the crowd in a boxing ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44715\",\n    \"key\": \"52909\",\n    \"description\": \"two guys is fighting around a crowd in a boxing ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sp35Fn9g1r9vmd9o1_400\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24144\",\n    \"key\": \"41670\",\n    \"description\": \"three teenage boys wearing white shirts bend forward and laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlcpoA7j61ungyc9o1_500\",\n    \"question\": \"what is running and getting caught in the fence in a park?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47818\",\n    \"key\": \"93000\",\n    \"description\": \"a dog is running and getting caught in a fence in a park.\"\n  },\n  {\n    \"video_name\": \"tumblr_noozcvca8b1uuexz4o1_500\",\n    \"question\": \"what is the person holding?\",\n    \"answer\": \"chicken\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8033\",\n    \"key\": \"73127\",\n    \"description\": \"a person holding a chicken while it moves its head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuoksIv0d1ra6i3zo1_500\",\n    \"question\": \"how many young men with drinks are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37325\",\n    \"key\": \"95617\",\n    \"description\": \"two young men with drinks are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne6n5ulYf11sccnr4o1_250\",\n    \"question\": \"how many masked men are wearing costumes and speaking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9930\",\n    \"key\": \"5567\",\n    \"description\": \"two masked men are wearing costumes and speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqt0rfOUFY1ux2ikeo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46934\",\n    \"key\": \"74132\",\n    \"description\": \"a man wearing a black shirt pops open a champagne bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9seliTsj1rigtemo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19759\",\n    \"key\": \"57607\",\n    \"description\": \"a man wearing a black shirt is dancing in a garden.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9baqcXz1B1s3fuxko1_400\",\n    \"question\": \"what is the woman riding?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2866\",\n    \"key\": \"71884\",\n    \"description\": \"a woman is riding a horse as it changes colors.\"\n  },\n  {\n    \"video_name\": \"tumblr_neq138EJYV1u38ucqo1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8354\",\n    \"key\": \"74621\",\n    \"description\": \"a man with blue eyes is raising his eyebrows.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqlf57uyd1u22oxeo1_500\",\n    \"question\": \"what is the color of the guys?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22252\",\n    \"key\": \"41782\",\n    \"description\": \"a group of guys,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyizh0JAT1tsqdy0o1_400\",\n    \"question\": \"where is the man skipping.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13169\",\n    \"key\": \"16014\",\n    \"description\": \"a man is skipping in a mirror while wearing headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5xkfbVPQ1tsmc92o1_400\",\n    \"question\": \"what is the color of the sunglasses?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2027\",\n    \"key\": \"50561\",\n    \"description\": \"a black haired woman is wearing white sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7qbi6YqP1taym8lo1_400\",\n    \"question\": \"what is the person with dark hair wearing and looking upwards?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34556\",\n    \"key\": \"73168\",\n    \"description\": \"a person with dark hair is wearing sunglasses and looking upwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnhys0agY1tcltsqo1_400\",\n    \"question\": \"what grooms the smaller monkey?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43580\",\n    \"key\": \"66216\",\n    \"description\": \"the large monkey grooms the smaller monkey.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnyjmeHAg51upqmhpo1_250\",\n    \"question\": \"where is the guy trying to kiss a girl.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38443\",\n    \"key\": \"39679\",\n    \"description\": \"a guy is trying to kiss a girl in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndaud7pQw81r4z25lo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48107\",\n    \"key\": \"28204\",\n    \"description\": \"a man with a black shirt is jumping with enthusiasm.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w8iiyU0l1tqlsu7o1_1280\",\n    \"question\": \"how many bottles is the man holding of liquors with his hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28996\",\n    \"key\": \"70381\",\n    \"description\": \"a man is holding two bottles of liquors with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_naoihgu5Hy1sw5721o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12126\",\n    \"key\": \"89185\",\n    \"description\": \"a young man with dark brown hair is smiling and looking at a group of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndd7topxfn1tj2kheo1_400\",\n    \"question\": \"how many males are singing and dancing on the stage with backup dancers?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10779\",\n    \"key\": \"44245\",\n    \"description\": \"four males are singing and dancing on a stage with backup dancers.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8x97Ahoi1tdjuqvo1_250\",\n    \"question\": \"how many men is wearing suits frown and a third is smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6119\",\n    \"key\": \"16734\",\n    \"description\": \"two men wearing suits frown and a third is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpnf4qkMy1qb2rmxo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41651\",\n    \"key\": \"48957\",\n    \"description\": \"a beautiful man is taking off his white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojpv0LDGS1tpg4boo1_250\",\n    \"question\": \"what are the man holding on a treadmill?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14842\",\n    \"key\": \"25879\",\n    \"description\": \"a man who is are holding a white cat on a treadmill.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtqa26yvr1tjhld9o1_400\",\n    \"question\": \"what plays with the white kitten?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44206\",\n    \"key\": \"19224\",\n    \"description\": \"a dog plays with a white kitten.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q1o6rJ5y1svnovjo1_400\",\n    \"question\": \"how many teams play soccer together on a field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16746\",\n    \"key\": \"89556\",\n    \"description\": \"two teams play soccer together on a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8t77uLMSw1tgftffo1_1280\",\n    \"question\": \"what is the man with long dark hair holding?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9963\",\n    \"key\": \"87483\",\n    \"description\": \"a man with long dark hair is holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepdv7f0qN1s0566ao1_1280\",\n    \"question\": \"how many men are sitting in the group staring at something?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7676\",\n    \"key\": \"94729\",\n    \"description\": \"five men are sitting in a group staring at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7oleJL0U1rkoaqfo1_400\",\n    \"question\": \"how many wrestlers are fighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9328\",\n    \"key\": \"52666\",\n    \"description\": \"two wrestlers are fighting and one of the wrestler knocks the other one down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n932r0pFvS1tuatvvo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52697\",\n    \"key\": \"53129\",\n    \"description\": \"an ice skater picks up a red hat from the ice.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauqdi6XJW1sje108o1_500\",\n    \"question\": \"how many man grabs another man from behind?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25451\",\n    \"key\": \"11524\",\n    \"description\": \"one man grabs another man from behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbiz26o6VX1tdjuqvo1_400\",\n    \"question\": \"what pushed the wagon across the floor?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20690\",\n    \"key\": \"72091\",\n    \"description\": \"a cat pushed a wagon across the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadk481D381tx8mn0o1_400\",\n    \"question\": \"what does the car spin off with lots of smoke?\",\n    \"answer\": \"track\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46107\",\n    \"key\": \"53118\",\n    \"description\": \"a car spins off a race track with lots of smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2723hhf91tj9d1zo1_250\",\n    \"question\": \"what does he kick?\",\n    \"answer\": \"bench\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30162\",\n    \"key\": \"38384\",\n    \"description\": \"he kicks the bench as he plays the piano.\"\n  },\n  {\n    \"video_name\": \"tumblr_npp13hVgZN1uv3dw9o1_250\",\n    \"question\": \"how many women are holding hands and being pulled apart in handcuffs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13604\",\n    \"key\": \"45040\",\n    \"description\": \"two women are holding hands and being pulled apart in handcuffs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpto8N9UJ1tkisfzo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19796\",\n    \"key\": \"92193\",\n    \"description\": \"a guy wearing a black shirt is leaning back in his chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94ma8VGpr1qhd6ylo1_500\",\n    \"question\": \"how many men are driving down the road?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25983\",\n    \"key\": \"48315\",\n    \"description\": \"two men are driving down the road and they look over at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_npy4c6ERuh1uv0y2ro1_250\",\n    \"question\": \"what sat watching the man put food into plate?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44346\",\n    \"key\": \"13331\",\n    \"description\": \"a cat sat watching a man put food into plate.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ydzfbYwt1t7iwv2o1_400\",\n    \"question\": \"what is the color of the tee?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29913\",\n    \"key\": \"77020\",\n    \"description\": \"a guy in a white tee is either yelling or wrapping and shows his shoulder tattoo.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndywttSMPx1tsspsco6_500\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39994\",\n    \"key\": \"44970\",\n    \"description\": \"two long hair men in black with helmet is holding two hand to fight and one man is falling down.\"\n  },\n  {\n    \"video_name\": \"tumblr_naap6eJLbo1t2bkpqo1_500\",\n    \"question\": \"how many young men are together,\",\n    \"answer\": \"with two holding glass bottles with colored liquid ? five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA821\",\n    \"key\": \"93485\",\n    \"description\": \"five young men are together,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhbeuZhcR1u8dfc7o1_400\",\n    \"question\": \"how many people are fighting in the dark room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34057\",\n    \"key\": \"96835\",\n    \"description\": \"two people are fighting in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne35uinLzV1tdjuqvo1_500\",\n    \"question\": \"what walks around the corner and gets scared by a person?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3826\",\n    \"key\": \"49418\",\n    \"description\": \"a cat walks around the corner and gets scared by a person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhklv0Td991reseiyo1_1280\",\n    \"question\": \"what is sliding down the road covered in snow?\",\n    \"answer\": \"truck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24301\",\n    \"key\": \"89497\",\n    \"description\": \"a truck is sliding down a road covered in snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk90851bF31rreccuo1_500\",\n    \"question\": \"what is the girl taking off?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20867\",\n    \"key\": \"99821\",\n    \"description\": \"a girl is taking off her hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1y86kZN91uzd4cyo1_400\",\n    \"question\": \"what is the color of the trunks?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24635\",\n    \"key\": \"55543\",\n    \"description\": \"a young boy with blue swimming trunks is doing a back dive into the swimming pool at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uwnaDVr21tqwcufo1_500\",\n    \"question\": \"how many men in business suits stand in a circle and dance while holding microphones?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50895\",\n    \"key\": \"99782\",\n    \"description\": \"five men in business suits stand in a circle and dance while holding microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_naklo5nlUu1trttyqo1_400\",\n    \"question\": \"what is the woman riding through a prairie?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8806\",\n    \"key\": \"96853\",\n    \"description\": \"a woman is riding a horse through a prairie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx9eiAV6R1tfs6x6o1_250\",\n    \"question\": \"what is the woman given?\",\n    \"answer\": \"cigar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50904\",\n    \"key\": \"67714\",\n    \"description\": \"a woman is given a cigar which she smokes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n5kowxbf2n1t2s1n6o1_500\",\n    \"question\": \"what is the rock star,\",\n    \"answer\": \"holding , jumps in the air and then moves to the back of stage ? guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25085\",\n    \"key\": \"72346\",\n    \"description\": \"a rock star,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9abseuY0C1slj978o1_400\",\n    \"question\": \"what is playing with another cats wagging tail?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46751\",\n    \"key\": \"70847\",\n    \"description\": \"a kitten is playing with another cats wagging tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh81xsJ7O01qhqng8o1_500\",\n    \"question\": \"what is the color of the sheets?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2479\",\n    \"key\": \"89023\",\n    \"description\": \"a man is laying on a bed with white sheets.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnymrk5szy1rjb18uo1_400\",\n    \"question\": \"what plays their instruments together?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27722\",\n    \"key\": \"60695\",\n    \"description\": \"a rock band plays their instruments together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrau5m8NVn1uzkmfso1_400\",\n    \"question\": \"where are the man and a woman kissing.\",\n    \"answer\": \"? house\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15395\",\n    \"key\": \"59543\",\n    \"description\": \"a man and a woman are kissing in a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3ertI5uM1tv46ebo1_400\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14549\",\n    \"key\": \"7481\",\n    \"description\": \"a girl wearing a red top and black shorts is lying down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafziwG2uz1tvfoj7o1_400\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3848\",\n    \"key\": \"17593\",\n    \"description\": \"a woman wearing a black top and white pants,\"\n  },\n  {\n    \"video_name\": \"tumblr_nl126a6rbk1unyhx2o1_400\",\n    \"question\": \"what fell off the dirt track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16083\",\n    \"key\": \"79257\",\n    \"description\": \"the race car fell off the dirt track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jmetkIAR1r3tyyjo1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46860\",\n    \"key\": \"50898\",\n    \"description\": \"a red guy is showing something on a paper.\"\n  },\n  {\n    \"video_name\": \"tumblr_najmw24iuw1qlo2n6o1_400\",\n    \"question\": \"how many boys are doing stupid things in a store?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9869\",\n    \"key\": \"20067\",\n    \"description\": \"three boys are doing stupid things in a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4mmvShmv1rf9buho1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8211\",\n    \"key\": \"62708\",\n    \"description\": \"a girl with black hair is standing on the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtlrnLJyT1t1szv2o1_500\",\n    \"question\": \"what are two man riding and eating?\",\n    \"answer\": \"transportation\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41695\",\n    \"key\": \"70108\",\n    \"description\": \"two man are riding public transportation and eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h3b7VMJO1spgwbno1_400\",\n    \"question\": \"how many man are signing in the club?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14282\",\n    \"key\": \"78896\",\n    \"description\": \"two man are signing in the club.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0wufzoeS1tjiwz9o1_400\",\n    \"question\": \"how many eye is the man wearing a knit cap and winking?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9561\",\n    \"key\": \"33273\",\n    \"description\": \"a man is wearing a knit cap and winking one eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndelr27Acc1u0b1c1o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37464\",\n    \"key\": \"46359\",\n    \"description\": \"a yellow car is driving around a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4df7nAnU1txithmo1_500\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39625\",\n    \"key\": \"60229\",\n    \"description\": \"a man in a black outfit is pleading with another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc56qahgCd1tfeeomo1_400\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2610\",\n    \"key\": \"52912\",\n    \"description\": \"a man wearing white pants sings into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5vojKDQN1qd1gq2o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23670\",\n    \"key\": \"28256\",\n    \"description\": \"a girl with long hair and wearing eye glasses,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqqe7tTVgT1ssgyoro1_250\",\n    \"question\": \"what is sleeping near the door?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28529\",\n    \"key\": \"10404\",\n    \"description\": \"a brown dog is sleeping near the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn7gxUg5r1unhekuo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40207\",\n    \"key\": \"59805\",\n    \"description\": \"a guy with glasses and short brown hair wears a light blue shirt and records himself in the mirror moving his hand on his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpvtttnNx1redfc8o1_500\",\n    \"question\": \"how many boys are riding scooters on the road?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40962\",\n    \"key\": \"90884\",\n    \"description\": \"two boys are riding scooters on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrmssNqHz1qi7zngo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12684\",\n    \"key\": \"41180\",\n    \"description\": \"a black woman in pink is walking through in the mall with smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_noqtqqd13G1sqh42jo1_400\",\n    \"question\": \"how many men are fighting in the wrestling ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA492\",\n    \"key\": \"61055\",\n    \"description\": \"two men are fighting in a wrestling ring and another man is jumping in.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhv6kFXNm1ql0sfgo1_500\",\n    \"question\": \"how many young women are walking down the hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25420\",\n    \"key\": \"55824\",\n    \"description\": \"two young women are walking down a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_net301HxTP1s6dwvho1_400\",\n    \"question\": \"what is the color of the hood?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30409\",\n    \"key\": \"28187\",\n    \"description\": \"a woman in glasses pulls up her green hood to cover her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak34sUK131slj978o1_400\",\n    \"question\": \"what lays an egg while riding a vacuum?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25927\",\n    \"key\": \"50795\",\n    \"description\": \"a bird lays an egg while riding a vacuum.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzeryQ2Mb1u6zuaro1_250\",\n    \"question\": \"what does the woman rinse out of her hair?\",\n    \"answer\": \"shampoo\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6771\",\n    \"key\": \"8740\",\n    \"description\": \"a woman rinses shampoo out of her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxlr1iOlx1tx8mn0o1_400\",\n    \"question\": \"what backs up into the stack of tires?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42684\",\n    \"key\": \"55730\",\n    \"description\": \"a car backs up into a stack of tires.\"\n  },\n  {\n    \"video_name\": \"tumblr_njabelknbz1qcedqco2_500\",\n    \"question\": \"how many men on stage are singing into microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23051\",\n    \"key\": \"93822\",\n    \"description\": \"two men on stage are singing into microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_niv7ivzNmF1u5d5ryo1_400\",\n    \"question\": \"what rolls around on the top of a brown cabinet?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6520\",\n    \"key\": \"1080\",\n    \"description\": \"a cat rolls around on the top of a brown cabinet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd496wzB9v1rrjxv9o1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14123\",\n    \"key\": \"13929\",\n    \"description\": \"a guy wearing all black is making hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nel8hyd16P1u1bpwwo1_500\",\n    \"question\": \"how many men are joking and laughing with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44283\",\n    \"key\": \"87119\",\n    \"description\": \"two men are joking and laughing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nco7huA9Kl1tqcnjko1_250\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22708\",\n    \"key\": \"767\",\n    \"description\": \"a woman in green shorts is twirling a hula hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_noz1mwmySX1uwbv5so1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50566\",\n    \"key\": \"73386\",\n    \"description\": \"a girl with short black hair is flapping her hands while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf1vh9e1T1rvnnwfo1_500\",\n    \"question\": \"where is the guy singing a song.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39853\",\n    \"key\": \"60795\",\n    \"description\": \"a guy is singing a song in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91v0cmZja1qfees0o1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26720\",\n    \"key\": \"78689\",\n    \"description\": \"a man with black jacket is waving a black scarf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazb3hJkDh1rf0qrxo1_400\",\n    \"question\": \"how many people are laughing and waving their hands around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11365\",\n    \"key\": \"59669\",\n    \"description\": \"two people are laughing and waving their hands around.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy7qk5Iqv1rr6d5go1_400\",\n    \"question\": \"how many men in a car and they are dancing around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12236\",\n    \"key\": \"62367\",\n    \"description\": \"two men in a car and they are dancing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafngzqDRD1teqt83o1_250\",\n    \"question\": \"what are the group of girls flicking with their fingers?\",\n    \"answer\": \"caps\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34746\",\n    \"key\": \"22609\",\n    \"description\": \"a group of girls are flicking bottle caps with their fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_neygedcDOt1tkhxdko1_400\",\n    \"question\": \"what does the cat smell tail?\",\n    \"answer\": \"iguana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42117\",\n    \"key\": \"46613\",\n    \"description\": \"a cat smells an iguana 's tail as the iguana eats.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ylpyKEtW1tagn6ao1_400\",\n    \"question\": \"what is the cyclist hitting before flying into water?\",\n    \"answer\": \"bank\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29150\",\n    \"key\": \"91881\",\n    \"description\": \"a cyclist is hitting an earth bank before flying into water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitdtkGfuf1slj978o1_250\",\n    \"question\": \"what is the handsome young man removed?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23489\",\n    \"key\": \"10079\",\n    \"description\": \"a handsome young man is removed his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nipa1eGIfM1qhzqk1o1_500\",\n    \"question\": \"what are the few men running in a forest and one of them is balling up there?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23124\",\n    \"key\": \"86077\",\n    \"description\": \"a few men are running in a forest and one of them is balling up there shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfozbb01U1tv0ziio1_400\",\n    \"question\": \"how many young men are skateboarding along the path?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12254\",\n    \"key\": \"31216\",\n    \"description\": \"two young men are skateboarding along a path.\"\n  },\n  {\n    \"video_name\": \"tumblr_np8fpolVPv1uvid27o1_1280\",\n    \"question\": \"what is speeding down the road at night?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37921\",\n    \"key\": \"65265\",\n    \"description\": \"a car is speeding down the road at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkvtw3BHU1rdixa9o1_400\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7882\",\n    \"key\": \"32551\",\n    \"description\": \"a person with long hair wearing a black hooded sweatshirt is making faces and gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhy3t8q7sF1sbjgb9o1_500\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23652\",\n    \"key\": \"73834\",\n    \"description\": \"the brown dog is yawning while being scratched on the head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklj8pQZTT1rxcyx0o1_250\",\n    \"question\": \"what does the muscled man with a bare chest receive by a pool?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2190\",\n    \"key\": \"2632\",\n    \"description\": \"a muscled man with a bare chest receives a pizza box by a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0l1eo8tj1tjcqx1o1_500\",\n    \"question\": \"how many makes are turn with the ball?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12140\",\n    \"key\": \"99747\",\n    \"description\": \"three men are playing soccer together and one makes are turn with the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkq03zqHC61un0bvgo1_400\",\n    \"question\": \"what is the color of the flags?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4615\",\n    \"key\": \"87394\",\n    \"description\": \"a large group of people are rolling over and waving white flags.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoiw6PN6o1uprddoo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17037\",\n    \"key\": \"73447\",\n    \"description\": \"a young man wearing all black slowly starts to smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7k6pBzzN1qm466ao1_500\",\n    \"question\": \"how many men relax on couch while two smoke cigarettes?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36024\",\n    \"key\": \"24484\",\n    \"description\": \"three men relax on couch while two smoke cigarettes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfryd89f6l1qec31no1_400\",\n    \"question\": \"how many women does there 's holding microphones walking on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11223\",\n    \"key\": \"5317\",\n    \"description\": \"there 's two women holding microphones walking on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ag3iabTq1ti0984o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25879\",\n    \"key\": \"9601\",\n    \"description\": \"a man in a white shirt and red trousers is doing lots of back flips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nomairinYw1uv1t6zo1_500\",\n    \"question\": \"where is the white girl doing break dance.\",\n    \"answer\": \"? floor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47239\",\n    \"key\": \"94679\",\n    \"description\": \"a white girl is doing break dance in the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_njupvneEJG1unubnvo1_250\",\n    \"question\": \"what is the man in black rubbing?\",\n    \"answer\": \"hook\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42730\",\n    \"key\": \"39798\",\n    \"description\": \"a man in black is rubbing a metal hook.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq60huObBd1tk2ngvo1_400\",\n    \"question\": \"what is the cat riding and then it flips over and he falls off?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12343\",\n    \"key\": \"15603\",\n    \"description\": \"a cat is riding a toy and then it flips over and he falls off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfks7qjG1m1ts3zgzo1_400\",\n    \"question\": \"where is the guy with black shirt screaming.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28223\",\n    \"key\": \"87058\",\n    \"description\": \"a guy with black shirt is screaming in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwqodrOjf1tlg9spo1_400\",\n    \"question\": \"where is the man shaking and riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14495\",\n    \"key\": \"59289\",\n    \"description\": \"a man is shaking and riding in the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmz3n9aYMe1rxmp17o1_500\",\n    \"question\": \"how many man are taking off their dark capes to show their body?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52393\",\n    \"key\": \"97109\",\n    \"description\": \"two man are taking off their dark capes to show their body.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1p5r1Cso1rbfulyo1_500\",\n    \"question\": \"where is two guys fighting while at a guy its sparks fly from his face.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40075\",\n    \"key\": \"83657\",\n    \"description\": \"two guys is fighting in a street while at a guy its sparks fly from his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsnyihBqf1soz0p7o1_400\",\n    \"question\": \"what is the boy riding down a hill and around a corner?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42190\",\n    \"key\": \"57164\",\n    \"description\": \"a boy is riding his skateboard down a hill and around a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpf97AVbq1u1dqrlo1_250\",\n    \"question\": \"what is careening down the snow covered mountain?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19466\",\n    \"key\": \"31636\",\n    \"description\": \"a vehicle is careening down a snow covered mountain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr8fjcJhBa1uz1tgjo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52018\",\n    \"key\": \"8222\",\n    \"description\": \"a guy with short brown hair wears black and tilts his head back and then forward with his mouth open.\"\n  },\n  {\n    \"video_name\": \"tumblr_npl3rsZ5rC1ux8xe0o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16769\",\n    \"key\": \"53768\",\n    \"description\": \"the guy with the gray shirt is mesmerized by the blond with the gray eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nds0nftICq1tqs077o1_500\",\n    \"question\": \"how many buildings are shown close up with more buildings behind and a gray sky?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19146\",\n    \"key\": \"86723\",\n    \"description\": \"five buildings are shown close up with more buildings behind and a gray sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_neh6ut4xxG1tiirhlo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14272\",\n    \"key\": \"64639\",\n    \"description\": \"the girl is wearing a white shirt and a black hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndg6m6C0nY1tdmffyo1_400\",\n    \"question\": \"what is walking through automatic doors into a building?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5015\",\n    \"key\": \"86974\",\n    \"description\": \"a horse is walking through automatic doors into a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxzk6xDVz1qm2e6bo1_400\",\n    \"question\": \"what is the girl with a flowered shirt chewing?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18653\",\n    \"key\": \"13302\",\n    \"description\": \"a girl with a flowered shirt is chewing gum.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1kuie2DW1tdjuqvo1_400\",\n    \"question\": \"what is speeding fast down the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29406\",\n    \"key\": \"2600\",\n    \"description\": \"a car is speeding fast down a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndy7kwbeei1tlhv9no1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16402\",\n    \"key\": \"99446\",\n    \"description\": \"an oriental girl in a black sleeveless shirt is looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncko1cgtVl1rwkjivo1_400\",\n    \"question\": \"what jumps on the cat and then the cat slaps at another cat?\",\n    \"answer\": \"squirrel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10963\",\n    \"key\": \"45420\",\n    \"description\": \"a squirrel jumps on a cat and then the cat slaps at another cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3fk61acW1tly55no2_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48092\",\n    \"key\": \"96672\",\n    \"description\": \"a blonde haired girl looks back at a blue haired girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ms6r9wt71tis8iio1_400\",\n    \"question\": \"what is green when traveling under the bridge?\",\n    \"answer\": \"scenery\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41809\",\n    \"key\": \"4457\",\n    \"description\": \"the scenery is green when traveling under the bridge.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u37yY8T21s3att3o1_400\",\n    \"question\": \"what is removing itself from a shell?\",\n    \"answer\": \"snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12041\",\n    \"key\": \"40003\",\n    \"description\": \"a snake is removing itself from a shell.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkx7m7Uxtt1un04u9o1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26039\",\n    \"key\": \"19378\",\n    \"description\": \"a young man in brown clothing is turning his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vpy6hFXB1soz0p7o1_400\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34091\",\n    \"key\": \"78953\",\n    \"description\": \"the boy dressed in black is skateboarding down the hill.\"\n  },\n  {\n    \"video_name\": \"tumblr_n2sx1v7vCB1r2y8uzo1_400\",\n    \"question\": \"what is the dog chasing onto a board that is lying on the side of the pool?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31049\",\n    \"key\": \"10316\",\n    \"description\": \"a dog is chasing a cat onto a board that is lying on the side of the pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk64ns1uhs1u7382xo1_500\",\n    \"question\": \"how many men are looking out the glass window at rain?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12516\",\n    \"key\": \"77564\",\n    \"description\": \"two men are looking out the glass window at rain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhb7pgWlIn1slj978o1_500\",\n    \"question\": \"what is eating from the spoon that someone gives to it?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10757\",\n    \"key\": \"76483\",\n    \"description\": \"a goat is eating from a spoon that someone gives to it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjk03Dkr51thx52wo1_400\",\n    \"question\": \"where is the man dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30287\",\n    \"key\": \"68974\",\n    \"description\": \"a man is dancing in a room with animated figures around him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlu54rL2M1tragfyo1_1280\",\n    \"question\": \"how many guy turns around?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46108\",\n    \"key\": \"55861\",\n    \"description\": \"two men are standing on stage and one guy turns around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobecu8wyv1s5cww5o1_400\",\n    \"question\": \"what are two young people kissing and removing?\",\n    \"answer\": \"clothing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26681\",\n    \"key\": \"63193\",\n    \"description\": \"two young people are kissing and removing each others clothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9pbjfB81W1twvnifo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14564\",\n    \"key\": \"46887\",\n    \"description\": \"two men with black shirt are smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzu0gm7Tt1u9be15o1_500\",\n    \"question\": \"how many girls are walking onto the stage slowly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51429\",\n    \"key\": \"41484\",\n    \"description\": \"two girls are walking onto a stage slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9lyoOfEj1rjxehgo1_540\",\n    \"question\": \"what is celebrating on the stage?\",\n    \"answer\": \"playing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11528\",\n    \"key\": \"42143\",\n    \"description\": \"a guitar playing is celebrating on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9066hvJ6R1tx8mn0o1_400\",\n    \"question\": \"what is getting back on track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34132\",\n    \"key\": \"76810\",\n    \"description\": \"a race car is getting back on track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gvzkuSii1tgn0uro1_500\",\n    \"question\": \"what is the person moving in front of a skull?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39524\",\n    \"key\": \"24503\",\n    \"description\": \"a person is moving a drink in front of a skull.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkquyuZT3T1t382eqo1_500\",\n    \"question\": \"what does the boy kick at another boy 's face?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13272\",\n    \"key\": \"72560\",\n    \"description\": \"a boy kicks a soccer ball at another boy 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1izlG0yA1s5p0j3o1_250\",\n    \"question\": \"where does the man imitate a man.\",\n    \"answer\": \"? wheelchair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29660\",\n    \"key\": \"40740\",\n    \"description\": \"a man imitates a man in a cast and wheelchair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmof9AmBa1qmsoz0o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33943\",\n    \"key\": \"34179\",\n    \"description\": \"a woman with purple hair is sitting on her bathroom floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxsiqiqON1u7lcb4o1_500\",\n    \"question\": \"where does 's two people and one is driving around a curve.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52981\",\n    \"key\": \"77450\",\n    \"description\": \"there 's two people in a race car and one is driving around a curve.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6h8wHH8F1sm7km1o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21772\",\n    \"key\": \"11277\",\n    \"description\": \"a child in a blue shirt is jumping down the stairs before gesturing with his finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhr64ytyfc1u7wiuzo1_400\",\n    \"question\": \"what is playing with the kitchen bin?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31404\",\n    \"key\": \"73336\",\n    \"description\": \"a cat is playing with a kitchen bin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhshojsYV1u2rt2no1_250\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15969\",\n    \"key\": \"6431\",\n    \"description\": \"a man in black pants walked out on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc4yd4wi41thz97ro1_400\",\n    \"question\": \"how many girls are laughing and then hug each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50729\",\n    \"key\": \"30933\",\n    \"description\": \"two girls are laughing and then hug each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_no609nDQaJ1ut9t2yo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12492\",\n    \"key\": \"59971\",\n    \"description\": \"a black man is singing and rapping.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner3v7FbbI1rgchc8o1_500\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5076\",\n    \"key\": \"72762\",\n    \"description\": \"a black cat is playing with a piece of string.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9it4hQnrt1sl5c6po1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48834\",\n    \"key\": \"24428\",\n    \"description\": \"the man is wearing a big black coat and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_neycf1b1Y81s81a83o1_500\",\n    \"question\": \"how many young men speak to each other while standing close together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24031\",\n    \"key\": \"43536\",\n    \"description\": \"two young men speak to each other while standing close together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n907c1PcRr1sncaa3o1_400\",\n    \"question\": \"what is on the race track and is driving forward?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4327\",\n    \"key\": \"78070\",\n    \"description\": \"a race car is on a race track and is driving forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu62dEFNe1trp7kao1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9537\",\n    \"key\": \"80015\",\n    \"description\": \"a white girl with black hair is happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbchtjXGlv1qchnreo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39845\",\n    \"key\": \"86899\",\n    \"description\": \"a man in a black shirt is showing a shirt tag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nappfviAuS1tfuo7co1_400\",\n    \"question\": \"how many young girls with black hair are kissing and posing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21275\",\n    \"key\": \"31319\",\n    \"description\": \"two young girls with black hair are kissing and posing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqaqp0wsgy1tpg4boo1_400\",\n    \"question\": \"what is yawning as it lays between two white sheets?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25079\",\n    \"key\": \"74024\",\n    \"description\": \"a kitten is yawning as it lays between two white sheets.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne236gfB5I1rrxy7do1_500\",\n    \"question\": \"what is the child falling off?\",\n    \"answer\": \"scooter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46210\",\n    \"key\": \"95119\",\n    \"description\": \"a child is falling off a scooter when it gets near a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8rs94sSj1tcot63o1_250\",\n    \"question\": \"what is using multiple drums?\",\n    \"answer\": \"performer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20746\",\n    \"key\": \"13953\",\n    \"description\": \"a rock performer is using multiple drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy5lh8wY21u1m2sso1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4512\",\n    \"key\": \"76227\",\n    \"description\": \"a woman with brown hair is looking down and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8yynWpbN1u5tr2io1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19246\",\n    \"key\": \"84456\",\n    \"description\": \"a blonde woman wearing a black jacket smiles and poses.\"\n  },\n  {\n    \"video_name\": \"tumblr_net6ntCXzY1smkpc2o1_400\",\n    \"question\": \"what is the woman singing and wearing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36332\",\n    \"key\": \"18767\",\n    \"description\": \"a woman is singing and wearing a hooded shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzhrtN0fn1rif4nho1_400\",\n    \"question\": \"how many young men is sitting in a chair are watching another young man approach them with his hands over his head?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52067\",\n    \"key\": \"22853\",\n    \"description\": \"two young men sitting in a chair are watching another young man approach them with his hands over his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_no5axsMNcC1s45pwko1_540\",\n    \"question\": \"what does the young man sing and plays?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20099\",\n    \"key\": \"96249\",\n    \"description\": \"a young man sings and plays his guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxxhzcV1v1r7kne1o1_400\",\n    \"question\": \"what is the color of the skirts?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26331\",\n    \"key\": \"91556\",\n    \"description\": \"five women in purple skirts are dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauohdXxUf1r3qv9to1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37520\",\n    \"key\": \"96944\",\n    \"description\": \"the woman is dressed in all black.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrae7mMdrN1ua4mf8o1_400\",\n    \"question\": \"what does the man put on a cat?\",\n    \"answer\": \"cheese\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42020\",\n    \"key\": \"76640\",\n    \"description\": \"a man puts cheese on a cat while a woman laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgdjmRq281tk9m4mo1_400\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17353\",\n    \"key\": \"30918\",\n    \"description\": \"two young men dressed in black using a shotgun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxia62ggu1sfcnmao1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8310\",\n    \"key\": \"40019\",\n    \"description\": \"a guy in a black hat is in a phone booth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcentF2yy1unyhx2o1_400\",\n    \"question\": \"what loses control and skids through a turn?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11674\",\n    \"key\": \"76890\",\n    \"description\": \"a race car loses control and skids through a turn.\"\n  },\n  {\n    \"video_name\": \"tumblr_negdrj3DSk1sggdd3o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3785\",\n    \"key\": \"95494\",\n    \"description\": \"a guy wearing a gray jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo3syb9wg1rhy09eo1_500\",\n    \"question\": \"what is running very fast in the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28303\",\n    \"key\": \"98035\",\n    \"description\": \"a yellow car is running very fast in a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_noqt1xz8xT1tfrbpqo1_400\",\n    \"question\": \"what is the woman holding and talking as a man approaches her smiling?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42767\",\n    \"key\": \"59556\",\n    \"description\": \"a woman is holding a microphone and talking as a man approaches her smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_npr040dxJ71ri4vooo1_500\",\n    \"question\": \"how many people in lab coats are hugging each other excitedly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28770\",\n    \"key\": \"93627\",\n    \"description\": \"two people in lab coats are hugging each other excitedly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhe1zrDFSF1u73el8o1_250\",\n    \"question\": \"where does an injured man watch a gun be shot into the air.\",\n    \"answer\": \"? boat\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39446\",\n    \"key\": \"84657\",\n    \"description\": \"an injured man in a life boat watches a gun be shot into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nggwvt9aWm1t7an45o1_500\",\n    \"question\": \"what got wet and his owner is blow drying him?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15078\",\n    \"key\": \"92691\",\n    \"description\": \"the puppy got wet and his owner is blow drying him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklvmbxVSC1qeurwuo1_250\",\n    \"question\": \"what is the young woman a blue jacket and is walking through an office?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27163\",\n    \"key\": \"53608\",\n    \"description\": \"a young woman is a blue jacket and a red hat is walking through an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjimhejuj1uawws4o1_250\",\n    \"question\": \"how many woman is wearing red is hugging another woman?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15563\",\n    \"key\": \"53230\",\n    \"description\": \"one woman wearing red is hugging another woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nctnnzxMkJ1sdpy9wo1_400\",\n    \"question\": \"what is the person presenting with candles?\",\n    \"answer\": \"cake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39838\",\n    \"key\": \"21723\",\n    \"description\": \"a person is presenting a cake with candles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrglqlxxfe1tpmv5yo1_400\",\n    \"question\": \"where is the person sitting down and swaying their body.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4736\",\n    \"key\": \"57671\",\n    \"description\": \"a person is sitting down in their chair and swaying their body.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9i8lnSiXR1rt0zdlo1_500\",\n    \"question\": \"what does the soccer player kick to another player?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41842\",\n    \"key\": \"80922\",\n    \"description\": \"a soccer player kicks the ball to another player.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1dalnS1E1tm0nkno1_500\",\n    \"question\": \"what are the group of people singing,\",\n    \"answer\": \"dancing and playing ? instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48445\",\n    \"key\": \"58413\",\n    \"description\": \"a group of people are singing,\"\n  },\n  {\n    \"video_name\": \"tumblr_nptbdl1fVs1tw4vtzo1_400\",\n    \"question\": \"how many girls are dancing with their hair flowing in a breeze?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15492\",\n    \"key\": \"50182\",\n    \"description\": \"three girls are dancing with their hair flowing in a breeze.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0lvzNzJJ1s7vtgpo1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51766\",\n    \"key\": \"1745\",\n    \"description\": \"a young man in a black t-shirt is playing a small guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_no37v6clUi1qzho3ao1_400\",\n    \"question\": \"what is this driving through a narrow city street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31792\",\n    \"key\": \"94742\",\n    \"description\": \"this is a race car driving through a narrow city street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdisr8Ig21tmf1dho1_250\",\n    \"question\": \"what does the man place into his mouth?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12959\",\n    \"key\": \"44664\",\n    \"description\": \"a man places a lit glow stick into his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw2qphCJA1uuh2j1o1_500\",\n    \"question\": \"what is running in the wet street?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42952\",\n    \"key\": \"67719\",\n    \"description\": \"a white and awesome cars is running in the wet street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fwbfEVPD1qaltrro1_500\",\n    \"question\": \"what is the man fixing in front of the other man?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18091\",\n    \"key\": \"95976\",\n    \"description\": \"a man is fixing his tie in front of the other man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc12xtUG5s1tkeyq7o1_400\",\n    \"question\": \"what is the man using?\",\n    \"answer\": \"boxes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19001\",\n    \"key\": \"50710\",\n    \"description\": \"the man is using tool boxes to work out.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoau5H0HV1s1ukk9o1_400\",\n    \"question\": \"what is the cat using?\",\n    \"answer\": \"leash\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39350\",\n    \"key\": \"81129\",\n    \"description\": \"a cat is using a leash to walk a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_noejltSfgA1tpg4boo1_400\",\n    \"question\": \"what is sad in the car?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10892\",\n    \"key\": \"17989\",\n    \"description\": \"a dog is sad in the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmeplkwIog1ss8ekqo2_540\",\n    \"question\": \"how many men are riding in the car while one looks ahead?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45953\",\n    \"key\": \"95474\",\n    \"description\": \"two men are riding in a car while one looks ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99oknHBnr1r8wa1po1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24236\",\n    \"key\": \"68077\",\n    \"description\": \"a man with red eyes is trapped by a glowing wire that is smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxgairu4F1slwrsuo1_400\",\n    \"question\": \"what is getting into bed and puts his blanket on him?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7569\",\n    \"key\": \"99415\",\n    \"description\": \"a dog is getting into bed and puts his blanket on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_namuwpKydj1s5fsr0o1_250\",\n    \"question\": \"how many girls stick their tongues out through their fingers?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48773\",\n    \"key\": \"11761\",\n    \"description\": \"three girls stick their tongues out through their fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr55pkjAU1uot1e7o1_400\",\n    \"question\": \"how many delinquents are riding in the car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46511\",\n    \"key\": \"64614\",\n    \"description\": \"two delinquents are riding in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6684P6Hv1tkyzcyo1_250\",\n    \"question\": \"how many dancers perform the sensual dance under spotlights?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20495\",\n    \"key\": \"81420\",\n    \"description\": \"two dancers perform a sensual dance under spotlights.\"\n  },\n  {\n    \"video_name\": \"tumblr_njouy2MkRI1unyeoio1_400\",\n    \"question\": \"what jumps and pushes pushed the door shut and orange cat falls fell?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33150\",\n    \"key\": \"20303\",\n    \"description\": \"a cat jumps and pushes pushed a door shut and orange cat falls fell.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf87a1ENfb1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25148\",\n    \"key\": \"63565\",\n    \"description\": \"a black car is driving down a road splashing puddles.\"\n  },\n  {\n    \"video_name\": \"tumblr_njss7pkaUq1unlazfo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7680\",\n    \"key\": \"19591\",\n    \"description\": \"a white man with black hair is winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncp4d5tmIX1rd7kgvo1_500\",\n    \"question\": \"where does the girl smell the flowers.\",\n    \"answer\": \"? bouquet\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14881\",\n    \"key\": \"37853\",\n    \"description\": \"a girl smells the flowers in a bouquet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngprdolIp31u4xco9o1_400\",\n    \"question\": \"how many guys are dancing in the stage of music?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3256\",\n    \"key\": \"44431\",\n    \"description\": \"two guys are dancing in a stage of music.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbozx0BfJ1r0b9nxo1_400\",\n    \"question\": \"what is the blond hair man eating with his hand?\",\n    \"answer\": \"bread\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6468\",\n    \"key\": \"28096\",\n    \"description\": \"a blond hair man is eating bread with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne66d4ll0f1tlxce2o1_400\",\n    \"question\": \"how many men dressed in super hero costumes pose?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30518\",\n    \"key\": \"53791\",\n    \"description\": \"four men dressed in super hero costumes pose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nel3rnwdPj1qcyvxso1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9478\",\n    \"key\": \"21055\",\n    \"description\": \"a woman with brown hair smiles and laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk90fqhAgg1u1k55co1_500\",\n    \"question\": \"what is flying in the small class enclosure?\",\n    \"answer\": \"moth\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52963\",\n    \"key\": \"75410\",\n    \"description\": \"a moth is flying in a small class enclosure.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9art5oaA51r4s9t4o1_250\",\n    \"question\": \"how many young men are seated in white chairs?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21038\",\n    \"key\": \"35466\",\n    \"description\": \"three young men are seated in white chairs and they are smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd24xaX8d11qkb1azo1_250\",\n    \"question\": \"where does the man do gymnastics tricks.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30194\",\n    \"key\": \"3172\",\n    \"description\": \"a man does gymnastics tricks in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4xgr1uC71rblf33o1_500\",\n    \"question\": \"where is the man moving his arms up and down,\",\n    \"answer\": \"but only one arm is . ? sleeve\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22671\",\n    \"key\": \"89609\",\n    \"description\": \"a man is moving his arms up and down,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4qrqXl5N1tx8mn0o1_400\",\n    \"question\": \"what loses control of his bike?\",\n    \"answer\": \"driver\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49484\",\n    \"key\": \"52742\",\n    \"description\": \"a motorcycle race driver loses control of his bike.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0nn0IZ1X1rhq4gso1_250\",\n    \"question\": \"how many men sit on the couch and hold microphones?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21541\",\n    \"key\": \"43749\",\n    \"description\": \"three men sit on a couch and hold microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndg1bwVKCx1rjj4bjo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42065\",\n    \"key\": \"31750\",\n    \"description\": \"a woman with long red hair was touching her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6au1WajV1rw2wd7o1_500\",\n    \"question\": \"what is the man driving and smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15443\",\n    \"key\": \"100442\",\n    \"description\": \"the man is driving and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hkn9QARC1swas2to1_250\",\n    \"question\": \"what is the color of the stares?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38875\",\n    \"key\": \"8686\",\n    \"description\": \"a man in black jacket stares forward seriously.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1de5pymv1tx8mn0o1_400\",\n    \"question\": \"what is driving down the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12568\",\n    \"key\": \"55734\",\n    \"description\": \"a beautiful car is driving down the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_mgo1kl7MLM1qe2thio1_500\",\n    \"question\": \"what is prancing in the courtyard?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16689\",\n    \"key\": \"94323\",\n    \"description\": \"a white horse is prancing in a courtyard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbrrg8gc01u4832po2_500\",\n    \"question\": \"what is the young man yanking off while covering his eyes with his hat?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22704\",\n    \"key\": \"8675\",\n    \"description\": \"a young man is yanking off his jacket while covering his eyes with his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauh2woNK61tj7htno1_250\",\n    \"question\": \"where is the guy beating another one.\",\n    \"answer\": \"? bar\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37498\",\n    \"key\": \"3688\",\n    \"description\": \"a guy is beating another one in a bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndl8pvG3At1sklh5yo1_500\",\n    \"question\": \"what is the man shooting at something?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15640\",\n    \"key\": \"15227\",\n    \"description\": \"a man is shooting the ball at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvhq250Md1rt1dljo1_400\",\n    \"question\": \"what does the man put a gun on the ground and shoots at him?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52630\",\n    \"key\": \"28503\",\n    \"description\": \"a man puts a gun on the ground and the gun shoots at him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh10qcQznP1rspaggo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43247\",\n    \"key\": \"35343\",\n    \"description\": \"a young man with a black leather jacket is twirling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhb5szHqtc1qd18pzo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31498\",\n    \"key\": \"8201\",\n    \"description\": \"a black woman rolls and blinks her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96u6soS9v1tw0ucfo1_400\",\n    \"question\": \"what is the person handed and he is throwing them out of a window?\",\n    \"answer\": \"rifles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16301\",\n    \"key\": \"26456\",\n    \"description\": \"a person is handed rifles and he is throwing them out of a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9su71dIbK1sebl0go1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9239\",\n    \"key\": \"91707\",\n    \"description\": \"a young man with black hair looks out of the corner of his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1ml2SDrL1tmaii4o1_250\",\n    \"question\": \"what did the person rub if their glasses?\",\n    \"answer\": \"lenses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42264\",\n    \"key\": \"10057\",\n    \"description\": \"a person rubbed the lenses if their glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4s80baYg1s5y3pfo1_400\",\n    \"question\": \"how many girls are dancing and giving the peace sign?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47524\",\n    \"key\": \"56409\",\n    \"description\": \"two girls are dancing and giving the peace sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk55jsBaYj1u0dfk0o1_400\",\n    \"question\": \"how many men sat down on chairs talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30541\",\n    \"key\": \"61440\",\n    \"description\": \"two men sat down on chairs talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5rycDrcR1tf7kp3o1_500\",\n    \"question\": \"how many men sing and dance on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20213\",\n    \"key\": \"84784\",\n    \"description\": \"two men sing and dance on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne67exaejd1sjzx2go1_400\",\n    \"question\": \"where does the guy dance,\",\n    \"answer\": \"the girl watches him . ? building\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48922\",\n    \"key\": \"20825\",\n    \"description\": \"a guy dances in the building,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y8wqI6Xn1qlzevso1_500\",\n    \"question\": \"how many men are talking in the car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25737\",\n    \"key\": \"98801\",\n    \"description\": \"two men are talking in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncd4nhEpYN1rkm6bqo1_500\",\n    \"question\": \"where is the man smiling and looking down while.\",\n    \"answer\": \"? store\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6167\",\n    \"key\": \"68959\",\n    \"description\": \"a man is smiling and looking down while in a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tavjHiIF1rulogqo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19127\",\n    \"key\": \"85229\",\n    \"description\": \"a man wearing a black leather jacket is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_npf5kbV03n1u1ogm0o1_400\",\n    \"question\": \"what crosses the lake quickly?\",\n    \"answer\": \"boat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19767\",\n    \"key\": \"32114\",\n    \"description\": \"a white jeep boat crosses a lake quickly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nery6zlDcp1s5p0j3o1_400\",\n    \"question\": \"what is the color of the bag?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50126\",\n    \"key\": \"5676\",\n    \"description\": \"a man in a gray sweatshirt walks while carrying a bottle in a brown bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkk4f2lxcb1u0govto1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9409\",\n    \"key\": \"5199\",\n    \"description\": \"a man wearing a beanie and headphones and a black shirt is talking and giving a thumbs up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3ew49dux1tjhld9o1_400\",\n    \"question\": \"what jumps onto the man and then leaps up to a toy hanging from a tree?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49219\",\n    \"key\": \"66199\",\n    \"description\": \"a dog jumps onto a man and then leaps up to a toy hanging from a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_npo5gyxOv11u0x5aho1_250\",\n    \"question\": \"how many men run to each other and hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45702\",\n    \"key\": \"51566\",\n    \"description\": \"two men run to each other and hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhccm1k3hA1u5imt4o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41422\",\n    \"key\": \"44161\",\n    \"description\": \"a man in a white shirt is lifting his arm in sync with the water jets behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzd9uYCbl1u6oo0lo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30566\",\n    \"key\": \"62904\",\n    \"description\": \"the gray haired man is talking when a bag blows into his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_naohfoNYRf1rqio5ho1_400\",\n    \"question\": \"what is the color of the robe?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39502\",\n    \"key\": \"60662\",\n    \"description\": \"a bald man wearing a red robe is sitting on a settee.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr0uc8mHj1r10ojgo1_500\",\n    \"question\": \"what is the woman in purple and white outfit throwing a long ribbon?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3790\",\n    \"key\": \"76403\",\n    \"description\": \"a woman in purple and white outfit is throwing a long ribbon a stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivi02t5ys1tk2ibto1_250\",\n    \"question\": \"what is playing with balls on a pool table?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20033\",\n    \"key\": \"23127\",\n    \"description\": \"a dog is playing with balls on a pool table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfic3pugLo1td28fxo1_400\",\n    \"question\": \"what is the woman waving on a tombstone?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10257\",\n    \"key\": \"71858\",\n    \"description\": \"a woman is waving her butt on a tombstone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2nhl9fVr1u2ppnho1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35944\",\n    \"key\": \"33569\",\n    \"description\": \"a woman with red hair is playing with a stuffed rabbit.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndw164NVKb1slj978o1_400\",\n    \"question\": \"how many men are faking that they 're confronting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12629\",\n    \"key\": \"42305\",\n    \"description\": \"two men are faking that they 're confronting.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7ms6bQkF1qf738lo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28333\",\n    \"key\": \"47662\",\n    \"description\": \"woman with black suit and yellow hair is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_np4qeqa4lO1rop7bco1_500\",\n    \"question\": \"where is the woman wearing a bra is smoking a cigarette and looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4966\",\n    \"key\": \"98407\",\n    \"description\": \"a woman wearing a bra is smoking a cigarette and looking in a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav2g3vCTF1tq2eeqo1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1199\",\n    \"key\": \"6666\",\n    \"description\": \"the man in the blue t-shirt shakes his behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbatooeAde1tx8mn0o1_400\",\n    \"question\": \"what are racing on the road?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24246\",\n    \"key\": \"52734\",\n    \"description\": \"many cars are racing on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf24phb8BO1thpehoo1_400\",\n    \"question\": \"how many men in white shirts make faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18890\",\n    \"key\": \"47579\",\n    \"description\": \"two men in white shirts make faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy6ugZvKl1rzkug6o2_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40348\",\n    \"key\": \"29266\",\n    \"description\": \"a woman wearing a red jumper with black hair is thinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacr4yNfLD1tej38vo1_400\",\n    \"question\": \"how many girls with long dark hair are gesturing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42496\",\n    \"key\": \"28544\",\n    \"description\": \"two girls with long dark hair are gesturing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp0k4W1RF1u63djdo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45985\",\n    \"key\": \"53422\",\n    \"description\": \"a figure in a red hat and white clothes is spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1otxgnPQ1rlmonbo1_250\",\n    \"question\": \"what are animals eating given by a human?\",\n    \"answer\": \"almonds\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30674\",\n    \"key\": \"13333\",\n    \"description\": \"animals eating almonds given by a human.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u1myS5dT1tgh87to1_400\",\n    \"question\": \"where are two men having a conversation.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20684\",\n    \"key\": \"87168\",\n    \"description\": \"two men are having a conversation in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfndwo7hfa1t7an45o1_500\",\n    \"question\": \"what jumped on someone 's bed and moved very swiftly?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4312\",\n    \"key\": \"91769\",\n    \"description\": \"A rabbit jumped on someone 's bed and moved very swiftly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhomuemFfD1u684yco1_250\",\n    \"question\": \"what is holding up its paw and looking around?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA889\",\n    \"key\": \"13612\",\n    \"description\": \"a cute white cat is holding up its paw and looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0sriD2CI1rcku3no1_250\",\n    \"question\": \"what is the color of the bunny?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22393\",\n    \"key\": \"24526\",\n    \"description\": \"a small white bunny with black ears falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda2qhxKfP1tn1i0no1_500\",\n    \"question\": \"how many men sit on the sofa enjoying a joke they hear?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30402\",\n    \"key\": \"88868\",\n    \"description\": \"two men sit on a sofa enjoying a joke they hear.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jmetkIAR1r3tyyjo1_250\",\n    \"question\": \"what is shooting at another robot as a car flips over?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4308\",\n    \"key\": \"50898\",\n    \"description\": \"one robot is shooting at another robot as a car flips over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbdq1Bpfa1so39joo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4249\",\n    \"key\": \"43468\",\n    \"description\": \"a guy with brown hair wears white and waters a fake plant and gets hit in the face by the plant.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk98cz79at1tk2ngvo1_400\",\n    \"question\": \"what is playing with half a lemon?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44430\",\n    \"key\": \"68986\",\n    \"description\": \"a cute,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngj7b6qsNq1u5xpiko1_r1_500\",\n    \"question\": \"how many boys in hats are singing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11252\",\n    \"key\": \"95392\",\n    \"description\": \"two boys in hats are singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncau65g1Vf1tcmvxuo1_500\",\n    \"question\": \"how many cute girls are taking pictures together and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39993\",\n    \"key\": \"89216\",\n    \"description\": \"two cute girls are taking pictures together and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndzw33j6bu1th8rjso1_400\",\n    \"question\": \"what attempts to pick up the ball from between a boy 's legs and accidentally bites him?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1166\",\n    \"key\": \"31035\",\n    \"description\": \"a large dog attempts to pick up a ball from between a boy 's legs and accidentally bites him.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8z5gkpbGb1rwgxlqo1_500\",\n    \"question\": \"what is the young woman training?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5941\",\n    \"key\": \"74583\",\n    \"description\": \"a young woman is training a brown horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqu42e7sF81s371wso1_500\",\n    \"question\": \"what is the color of the backdrop?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43121\",\n    \"key\": \"83564\",\n    \"description\": \"a man in a black shirt and beard is seated against a black backdrop.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9602ftWXN1qjjfngo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16414\",\n    \"key\": \"92400\",\n    \"description\": \"a man with white hair and wearing a suit makes weird faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkztrpIfva1qcaryto1_400\",\n    \"question\": \"what is the girl with a green shirt riding?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33354\",\n    \"key\": \"64171\",\n    \"description\": \"a girl with a green shirt is riding her horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf1orqAZx1qfi90vo1_400\",\n    \"question\": \"what does the woman hold to her chest?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27485\",\n    \"key\": \"30323\",\n    \"description\": \"a woman holds a cat to her chest.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl126a6rbk1unyhx2o1_400\",\n    \"question\": \"what did the race car fell off?\",\n    \"answer\": \"track\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41550\",\n    \"key\": \"79257\",\n    \"description\": \"the race car fell off the dirt track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nopyj6DOCW1ryce90o1_250\",\n    \"question\": \"what is the man kicking behind his back?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30522\",\n    \"key\": \"6709\",\n    \"description\": \"a man is kicking a soccer ball behind his back.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9i79qR88q1qkkmvxo1_250\",\n    \"question\": \"what is blow taken out of a bowl of water?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40561\",\n    \"key\": \"2343\",\n    \"description\": \"a blow fish is taken out of a bowl of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_newwf9wxYr1sdss0qo1_250\",\n    \"question\": \"what does the girl help out of a hole?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA904\",\n    \"key\": \"318\",\n    \"description\": \"a girl helps a stuck prairie dog out of a hole.\"\n  },\n  {\n    \"video_name\": \"tumblr_nev5jcwSOk1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34522\",\n    \"key\": \"63427\",\n    \"description\": \"a white car is driving along the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2smr238Q1uxz2yto1_400\",\n    \"question\": \"what is the young woman riding?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43487\",\n    \"key\": \"57188\",\n    \"description\": \"a young woman is riding a pink bicycle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rb0b8mi11qfrgvko1_r2_500\",\n    \"question\": \"how many men are on the stage singing and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42770\",\n    \"key\": \"62588\",\n    \"description\": \"two men are on a stage singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8kiswJ7Ht1slb5kno1_500\",\n    \"question\": \"what is moving his tail which is on his head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44470\",\n    \"key\": \"71356\",\n    \"description\": \"a cat is moving his tail which is on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3k3l3Yn01sk96t7o1_500\",\n    \"question\": \"what swims over the octopus and the octopus throws its tentacles up?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2920\",\n    \"key\": \"38964\",\n    \"description\": \"the fish swims over the octopus and the octopus throws its tentacles up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdydadEF41u34yteo1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39426\",\n    \"key\": \"15814\",\n    \"description\": \"a black girl wearing pink lipstick speaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzsp7tuTy1uuiij8o1_400\",\n    \"question\": \"how many boys are talking in the bedroom?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39189\",\n    \"key\": \"51083\",\n    \"description\": \"two boys are talking in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfscrpUrfv1u4v3ypo1_250\",\n    \"question\": \"what is starring at something?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49085\",\n    \"key\": \"55669\",\n    \"description\": \"a black cat is starring at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafgig9MwE1th4tggo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19192\",\n    \"key\": \"83608\",\n    \"description\": \"a girl in a white shirt is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfks7qjG1m1ts3zgzo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46372\",\n    \"key\": \"87058\",\n    \"description\": \"a guy with black shirt is screaming in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrglqlxxfe1tpmv5yo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8422\",\n    \"key\": \"57671\",\n    \"description\": \"a man is dancing in front of a desk with a red hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazqwgPDxU1tiv0r8o1_500\",\n    \"question\": \"how many boys hold up their hands and two fingers?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7181\",\n    \"key\": \"63749\",\n    \"description\": \"two boys hold up their hands and two fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvix3hzTK1u3wykjo1_250\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35011\",\n    \"key\": \"13812\",\n    \"description\": \"two blonde haired woman are wearing black clothes and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngeiwy1VlF1t7gqeso1_500\",\n    \"question\": \"how many men are sitting at the table?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37252\",\n    \"key\": \"76492\",\n    \"description\": \"two men are sitting at a table and one is laughing at the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqqe7tTVgT1ssgyoro1_250\",\n    \"question\": \"what is the color of the door?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46599\",\n    \"key\": \"10404\",\n    \"description\": \"a white door with a window opens and pushes a sleeping puppy on its side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuxw8BkXX1tlwdp4o1_400\",\n    \"question\": \"what is the woman holding?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38619\",\n    \"key\": \"65656\",\n    \"description\": \"a woman is holding a puppy as it tries to leave.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhihfqgnjK1u71wuao1_400\",\n    \"question\": \"what is the man with funny short hair showing to another man?\",\n    \"answer\": \"tank\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9191\",\n    \"key\": \"58907\",\n    \"description\": \"a man with funny short hair is showing his tank to another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksdyhXtpu1rhl4f0o1_250\",\n    \"question\": \"how many tree frogs sit on rocks?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48421\",\n    \"key\": \"22832\",\n    \"description\": \"three tree frogs sit on rocks,\"\n  },\n  {\n    \"video_name\": \"tumblr_nabwvrGgUt1rmv3nuo1_500\",\n    \"question\": \"how many guys are carrying the fourth guy through purple paper?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30671\",\n    \"key\": \"70098\",\n    \"description\": \"three guys are carrying a fourth guy through purple paper.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndur53HK751tlqrclo1_250\",\n    \"question\": \"how many men are sitting?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40811\",\n    \"key\": \"41543\",\n    \"description\": \"three men are sitting and one is attacked by a leopard that comes up through the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp552aW7o1sksdxao3_400\",\n    \"question\": \"how many women with hats sit and eat together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13658\",\n    \"key\": \"92179\",\n    \"description\": \"three women with hats sit and eat together.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjbm8zizK1txgyxzo1_500\",\n    \"question\": \"what is woman adjusting and pursing her lips?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47033\",\n    \"key\": \"83843\",\n    \"description\": \"woman is adjusting her hat and pursing her lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h68813s31txehx9o1_500\",\n    \"question\": \"where is the dog hanging and a man turns his head and reacts to the dog.\",\n    \"answer\": \"? window\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7818\",\n    \"key\": \"94877\",\n    \"description\": \"a dog is hanging in a car window and a man turns his head and reacts to the dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_np9wd6T7fT1tkxy83o1_250\",\n    \"question\": \"what is the woman wearing a tie and stirring?\",\n    \"answer\": \"pot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49118\",\n    \"key\": \"3901\",\n    \"description\": \"a woman is wearing a tie and stirring a black pot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhymlqyEFX1s61ex7o1_250\",\n    \"question\": \"what gives the high five to a person who is lying on a couch?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45167\",\n    \"key\": \"77866\",\n    \"description\": \"a dog gives a high five to a person who is lying on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbnq50DwK1sepp2wo1_400\",\n    \"question\": \"what is the man smoking looking at something?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52445\",\n    \"key\": \"42853\",\n    \"description\": \"a man is smoking a cigarette looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr4iolbn41rmme2wo1_400\",\n    \"question\": \"what is the person holding and touching?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47354\",\n    \"key\": \"28978\",\n    \"description\": \"a person is holding and touching a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvitlXC2D1u7xqnso1_250\",\n    \"question\": \"what does the person put onto another person 's hand?\",\n    \"answer\": \"bracelet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36615\",\n    \"key\": \"51903\",\n    \"description\": \"a person puts a bracelet onto another person 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh33r6GpNQ1sm86hzo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43002\",\n    \"key\": \"31915\",\n    \"description\": \"a woman with red hair is shrugging her shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_noikj9h4iM1uvdkzko1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23507\",\n    \"key\": \"10298\",\n    \"description\": \"a man wearing a white shirt flashes his audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zlvzY5jO1sp3selo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49984\",\n    \"key\": \"46937\",\n    \"description\": \"a woman with black hair in a polka dot top is staring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbepi1b71e1tiq0ddo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42741\",\n    \"key\": \"15692\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pqysKgXz1sy7yfqo1_400\",\n    \"question\": \"what gallops around in the dirt field?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17792\",\n    \"key\": \"64680\",\n    \"description\": \"a horse gallops around in a dirt field.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99vbo9pk71tf7kp3o1_500\",\n    \"question\": \"how many men performs dance moves on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27410\",\n    \"key\": \"75263\",\n    \"description\": \"two men performs dance moves on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94xke8sQB1qgx9mzo1_500\",\n    \"question\": \"what is the woman smoking a cigarette is lowering?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4434\",\n    \"key\": \"79394\",\n    \"description\": \"a woman smoking a cigarette is lowering her glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1kuie2DW1tdjuqvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34524\",\n    \"key\": \"2600\",\n    \"description\": \"a white car is gliding sideways on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nel0tcd6HR1tvclvso1_400\",\n    \"question\": \"how many men are sitting holding carved melons?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5828\",\n    \"key\": \"27055\",\n    \"description\": \"five men are sitting holding carved melons.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr93ch6vDZ1us9058o1_250\",\n    \"question\": \"what does the man use?\",\n    \"answer\": \"knife\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16669\",\n    \"key\": \"6490\",\n    \"description\": \"a man uses a knife to raise a slice of apple to his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko1xmch5R1szlm39o1_500\",\n    \"question\": \"what is the color of the trunks?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30825\",\n    \"key\": \"56741\",\n    \"description\": \"a fighter wearing black trunks,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqwmhysJ721ua5q7mo1_500\",\n    \"question\": \"what is the color of the hats?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25376\",\n    \"key\": \"32856\",\n    \"description\": \"two men dressed in striped shirts and white hats are looking down from a balcony.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndhqqxOYj31toc5cao1_500\",\n    \"question\": \"what is the young man using on his computer?\",\n    \"answer\": \"mouse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30199\",\n    \"key\": \"41185\",\n    \"description\": \"a young man is using his mouse on his computer.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6cjjaMGj1t6ksnpo1_500\",\n    \"question\": \"what does the man on a stage throw to a second man,\",\n    \"answer\": \"who then catches it ? bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30019\",\n    \"key\": \"92517\",\n    \"description\": \"a man on a stage throws a water bottle to a second man,\"\n  },\n  {\n    \"video_name\": \"tumblr_nd2jess8rr1rxz4glo1_500\",\n    \"question\": \"what is the man wearing with beads on it?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25388\",\n    \"key\": \"74988\",\n    \"description\": \"a man is wearing a hat with beads on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqr991zaOa1u6w3s2o1_250\",\n    \"question\": \"what is the man trying but is in his face?\",\n    \"answer\": \"sun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8327\",\n    \"key\": \"36528\",\n    \"description\": \"the man is trying to look forward but the sun is in his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyuctzCGw1u8jz2vo1_400\",\n    \"question\": \"what jumped jumps around the stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18074\",\n    \"key\": \"44048\",\n    \"description\": \"a man playing guitar jumped jumps around the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojudwiLpl1qedx60o1_540\",\n    \"question\": \"how many young men are wearing suits and posing for a photo?\",\n    \"answer\": \"seven\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52409\",\n    \"key\": \"91615\",\n    \"description\": \"seven young men are wearing suits and posing for a photo.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqt86b7tD31rltsrco1_400\",\n    \"question\": \"what sits on top of a mans head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4183\",\n    \"key\": \"87329\",\n    \"description\": \"a cat sits on top of a mans head.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2hqmICLQ1tsz0rqo1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24396\",\n    \"key\": \"42172\",\n    \"description\": \"a young male wearing a white shirt is making an expression of disgust.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklvhuCJ821qd8xguo1_400\",\n    \"question\": \"what is the color of the bra?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52132\",\n    \"key\": \"7816\",\n    \"description\": \"a woman is unstrapping a black bra from a mannequin.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9okijMTqj1s8thapo1_r1_500\",\n    \"question\": \"what is the man twisting around his hands?\",\n    \"answer\": \"wire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32720\",\n    \"key\": \"5420\",\n    \"description\": \"a man is twisting a microphone wire around his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs9w0ves71rc6vmmo1_400\",\n    \"question\": \"what are the group of musician jumping and playing?\",\n    \"answer\": \"instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9997\",\n    \"key\": \"57075\",\n    \"description\": \"a group of musician are jumping and playing instruments.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmv6zvVmc1u25ovvo1_400\",\n    \"question\": \"what is someone driving through a town?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38460\",\n    \"key\": \"63416\",\n    \"description\": \"someone is driving a car through a town.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncf204gwSi1qjhpqlo2_500\",\n    \"question\": \"how many women are looking at floating flower petals?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52185\",\n    \"key\": \"50956\",\n    \"description\": \"two women are looking at floating flower petals.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuegdc5bY1rm7vxeo1_400\",\n    \"question\": \"what is playing in the snow?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15764\",\n    \"key\": \"4946\",\n    \"description\": \"a tan dog is playing in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r53bp6Jm1ticeeeo1_400\",\n    \"question\": \"what is the girl doing at the edge of the water?\",\n    \"answer\": \"exercise\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16179\",\n    \"key\": \"77562\",\n    \"description\": \"a girl is doing a butt exercise at the edge of the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrlcrqLFl1u7c3syo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22221\",\n    \"key\": \"80637\",\n    \"description\": \"a boy with short brown hair wears no shirt and shares a laugh with another boy with pink hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n914bjCRnC1tq63bwo1_250\",\n    \"question\": \"what is the man in a hat walking up holding a bottle of water?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5718\",\n    \"key\": \"17532\",\n    \"description\": \"a man in a hat is walking up the stairs holding a bottle of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_naji9ftfcU1t6ksnpo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41455\",\n    \"key\": \"71380\",\n    \"description\": \"a man wearing a white shirt is holding a microphone and pointing his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkemwuoZE91snw3iao1_250\",\n    \"question\": \"how many girls are holding hands and walking down a hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33595\",\n    \"key\": \"82980\",\n    \"description\": \"two girls are holding hands and walking down a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94nt4bfr81tsrcx9o1_250\",\n    \"question\": \"where is the woman tap dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5959\",\n    \"key\": \"5579\",\n    \"description\": \"a woman is tap dancing in a lighted room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfl1xyQ891tzhdamo1_400\",\n    \"question\": \"what is the man playing next to a lamp?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11189\",\n    \"key\": \"70563\",\n    \"description\": \"a man is playing a piano next to a lamp.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo7owWIkv1twoe5do1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10835\",\n    \"key\": \"90649\",\n    \"description\": \"a soccer player wearing a blue shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nduzc4QNa11tmn3zuo1_400\",\n    \"question\": \"what is the man wearing a mask on the top of his head lights and pulls out a gun?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4398\",\n    \"key\": \"64006\",\n    \"description\": \"a man wearing a mask on the top of his head lights a cigarette and pulls out a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyei2DN1y1tm6n6po1_500\",\n    \"question\": \"how many young women are standing and talking together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11432\",\n    \"key\": \"86735\",\n    \"description\": \"two young women are standing and talking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx3qys4VS1u6psyao1_500\",\n    \"question\": \"what is the boy holding,\",\n    \"answer\": \"and he is turning around ? wand\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36264\",\n    \"key\": \"97313\",\n    \"description\": \"a boy is holding a wand,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqv0fIvLp1qd80wyo1_400\",\n    \"question\": \"what is the man signing with a white marker?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22805\",\n    \"key\": \"45758\",\n    \"description\": \"a man is signing a picture with a white marker.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfggtzJj401rw4ndto1_400\",\n    \"question\": \"what is the woman throwing into the air and catching it?\",\n    \"answer\": \"purse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52394\",\n    \"key\": \"447\",\n    \"description\": \"a woman is throwing her purse into the air and catching it.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtqv2WV6P1u0alpro1_500\",\n    \"question\": \"what is the color of the shoes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16138\",\n    \"key\": \"56760\",\n    \"description\": \"someone with white elevator shoes is trying to moonwalk.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9535qdmnf1tyyv4yo1_400\",\n    \"question\": \"what is the rock band jumping and playing?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27752\",\n    \"key\": \"57859\",\n    \"description\": \"a rock band is jumping and playing guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_me6kztASh41rlgitoo1_500\",\n    \"question\": \"what is hanging from the blanket unable to reach the floor?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11126\",\n    \"key\": \"62758\",\n    \"description\": \"a cat is hanging from a blanket unable to reach the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qhspZ5B21ti70d0o1_400\",\n    \"question\": \"what is the color of the eye?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41462\",\n    \"key\": \"80407\",\n    \"description\": \"a guy blinks his eye and it turns from black to red.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqsvfl5Pzp1uw1tf9o1_250\",\n    \"question\": \"how many girls are looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7370\",\n    \"key\": \"24221\",\n    \"description\": \"two girls are looking at each other and then turn forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepa4xWCUO1rzia65o1_250\",\n    \"question\": \"what is the man wearing and smiling and laughing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9960\",\n    \"key\": \"2379\",\n    \"description\": \"a man is wearing a gray shirt and smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko5j7T8JT1sn9nmoo1_400\",\n    \"question\": \"what is the young man skipping across the water?\",\n    \"answer\": \"stones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6265\",\n    \"key\": \"36746\",\n    \"description\": \"a young man is skipping stones across the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndab1nCacB1rjh61io1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5694\",\n    \"key\": \"37279\",\n    \"description\": \"a girl is holding a white cat with her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_npycjy1sgd1tfeyjso1_400\",\n    \"question\": \"how many men are talking to each other whilst holding microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12730\",\n    \"key\": \"35175\",\n    \"description\": \"two men are talking to each other whilst holding microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_na93v8P17F1rnq510o1_500\",\n    \"question\": \"how many people are dancing together while on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14386\",\n    \"key\": \"50534\",\n    \"description\": \"two people are dancing together while on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfxdnLORb1rmy96xo1_500\",\n    \"question\": \"what is the man flipping and attacking a person?\",\n    \"answer\": \"knife\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4151\",\n    \"key\": \"97235\",\n    \"description\": \"a man is flipping a knife and attacking a person.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9o2c5bcu71ti2qwco1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17481\",\n    \"key\": \"91886\",\n    \"description\": \"a person with short,\"\n  },\n  {\n    \"video_name\": \"tumblr_noqtqqd13G1sqh42jo1_400\",\n    \"question\": \"how many wrestlers are fighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28655\",\n    \"key\": \"61055\",\n    \"description\": \"two wrestlers are fighting and another jumps back in the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngxfp5rbhJ1svp9edo1_1280\",\n    \"question\": \"where is the man shuffling papers.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20796\",\n    \"key\": \"84696\",\n    \"description\": \"a man is shuffling papers in his chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_novlokWmWb1t6t8bgo1_540\",\n    \"question\": \"how many young men are dancing and singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23179\",\n    \"key\": \"93683\",\n    \"description\": \"two young men are dancing and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_new6rapUbt1tqrf5uo2_400\",\n    \"question\": \"how many guy is wearing glasses is talking to another one?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24634\",\n    \"key\": \"66256\",\n    \"description\": \"one guy wearing glasses is talking to another one.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauvryxIRR1rpvamzo1_250\",\n    \"question\": \"what are people watching on the waterfront?\",\n    \"answer\": \"show\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23043\",\n    \"key\": \"1313\",\n    \"description\": \"people are watching a fireworks show on the waterfront.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdvtc57Ux1tx8mn0o1_400\",\n    \"question\": \"what is driving down the race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35977\",\n    \"key\": \"52693\",\n    \"description\": \"a car is driving down a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzs89AHSP1u1gaf4o1_500\",\n    \"question\": \"what was the woman wearing?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33778\",\n    \"key\": \"98423\",\n    \"description\": \"the woman was wearing a blue dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nconinasRR1s9gxsqo1_500\",\n    \"question\": \"where is the man talking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19597\",\n    \"key\": \"89274\",\n    \"description\": \"the man is talking in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtqa26yvr1tjhld9o1_400\",\n    \"question\": \"what is grooming the kitten lying on the carpet?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10922\",\n    \"key\": \"19224\",\n    \"description\": \"a dog is grooming a kitten lying on the carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhh2bh2wBY1ra3tfmo1_500\",\n    \"question\": \"what are two people standing and one of them is holding?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44820\",\n    \"key\": \"89335\",\n    \"description\": \"two people are standing and one of them is holding a punching bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yi9qpZL21sz8fueo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6828\",\n    \"key\": \"11635\",\n    \"description\": \"the man in the black jacket is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkwncNAQg1u323uto1_500\",\n    \"question\": \"what is the girl smoking and trying to look sophisticated?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44223\",\n    \"key\": \"80350\",\n    \"description\": \"a girl is smoking a cigarette and trying to look sophisticated.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxf7950qG1tdjuqvo1_500\",\n    \"question\": \"what does the cat attack shaped balloon?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49631\",\n    \"key\": \"76474\",\n    \"description\": \"the cat attacks the cat shaped balloon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nab7byQv4u1sg2mbto1_400\",\n    \"question\": \"what does the woman play as a man behind her blows a horn?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13442\",\n    \"key\": \"61087\",\n    \"description\": \"a woman plays a guitar as a man behind her blows a horn.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9phc4iTZp1ro6r5ao1_400\",\n    \"question\": \"how many men on a stage sing on microphones together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50395\",\n    \"key\": \"82456\",\n    \"description\": \"two men on a stage sing on microphones together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabjhc7Adk1tgqy75o1_500\",\n    \"question\": \"what are passing by the bridge at night?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA634\",\n    \"key\": \"83904\",\n    \"description\": \"cars are passing by the bridge at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagwqpek6t1sl4e5go1_400\",\n    \"question\": \"what is burning rubber on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7939\",\n    \"key\": \"96671\",\n    \"description\": \"a black sports car is burning rubber on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzwadoN461slj978o1_400\",\n    \"question\": \"what is running and laying on the floor?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6039\",\n    \"key\": \"48459\",\n    \"description\": \"a dog is running and laying on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhb7pgWlIn1slj978o1_500\",\n    \"question\": \"what is licking peanut butter off a spoon held by a human hand?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24036\",\n    \"key\": \"76483\",\n    \"description\": \"a goat is licking peanut butter off a spoon held by a human hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin1vxOTbQ1s67qyco1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4414\",\n    \"key\": \"3498\",\n    \"description\": \"a girl with a blue leather coat is giving a peace sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzig0qT8k1qczfu6o1_1280\",\n    \"question\": \"how many men sing into microphones while dancing on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16119\",\n    \"key\": \"73159\",\n    \"description\": \"two men sing into microphones while dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazxsdiBsV1twj93bo1_500\",\n    \"question\": \"what is the color of the beard?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48173\",\n    \"key\": \"100680\",\n    \"description\": \"a man in a black beard is dripping sweat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nodi2rLQXk1tselino1_400\",\n    \"question\": \"how many girls are dressed in bikinis and raising their right hands in the air for a high five?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49891\",\n    \"key\": \"25780\",\n    \"description\": \"two girls are dressed in bikinis and raising their right hands in the air for a high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_noejbnP6im1rryn4mo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16090\",\n    \"key\": \"70287\",\n    \"description\": \"a girl in a blue shirt is making hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6zw8puNv1tj3ht2o1_500\",\n    \"question\": \"what is the man with a long hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26843\",\n    \"key\": \"70067\",\n    \"description\": \"a man with a long hair is playing his guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nect19Qa771te83nuo1_250\",\n    \"question\": \"how many men with microphones close to the mouth are dancing and hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13009\",\n    \"key\": \"19725\",\n    \"description\": \"two men with microphones close to the mouth are dancing and hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x30kDQeu1qc21o3o1_500\",\n    \"question\": \"what is the man wearing and smiling while wearing a suit?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA651\",\n    \"key\": \"50544\",\n    \"description\": \"a man is wearing sunglasses and smiling while wearing a suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk71ejZbSL1s8hmnvo1_250\",\n    \"question\": \"what is the man hugging a woman with dark hair and wearing?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47029\",\n    \"key\": \"47367\",\n    \"description\": \"a man is hugging a woman with dark hair and wearing sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xhhpcZOi1ribqy3o1_1280\",\n    \"question\": \"how many men does there 's driving in a car singing and shaking their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15493\",\n    \"key\": \"33927\",\n    \"description\": \"there 's two men driving in a car singing and shaking their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk550nmZNP1u8uroco1_400\",\n    \"question\": \"what is rolling around in the snow?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10964\",\n    \"key\": \"52678\",\n    \"description\": \"a red panda bear is rolling around in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_na18cqVtG31sd26g0o1_500\",\n    \"question\": \"what climbs up the plant then gets kicked in the face by another frog?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33754\",\n    \"key\": \"53182\",\n    \"description\": \"a frog climbs up a plant then gets kicked in the face by another frog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf22adJ0VT1qd0q05o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46386\",\n    \"key\": \"67256\",\n    \"description\": \"a man in a blue top and hat is dancing beside a drummer in a red top.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng12ciNZC11qjpkhao1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43638\",\n    \"key\": \"6433\",\n    \"description\": \"a black guy is making a sign with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfhy9iq4a1tj3r8so1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37219\",\n    \"key\": \"87985\",\n    \"description\": \"a guy wearing black clothing,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdgokPB5G1rgo5qmo1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1464\",\n    \"key\": \"25088\",\n    \"description\": \"a woman in a white top is carrying a tray.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkux12i23M1tirdpvo1_400\",\n    \"question\": \"what is being pulled up over the leg?\",\n    \"answer\": \"stocking\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51090\",\n    \"key\": \"96809\",\n    \"description\": \"a stocking is being pulled up over a leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7u2cDoHU1rtsaseo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46999\",\n    \"key\": \"43247\",\n    \"description\": \"man with black suit is touching baby with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbn5zbqcXl1sicdkvo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29606\",\n    \"key\": \"8506\",\n    \"description\": \"a boy wearing a white shirt is running his hand through his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtrbqjPLb1unyhx2o1_400\",\n    \"question\": \"what are sliding and crashing on the race track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15732\",\n    \"key\": \"78277\",\n    \"description\": \"race cars are sliding and crashing on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_npvj0dWS9A1tpg4boo1_400\",\n    \"question\": \"what is inside the box while a bunny sits on top of it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30364\",\n    \"key\": \"27950\",\n    \"description\": \"a cat is inside a box while a bunny sits on top of it.\"\n  },\n  {\n    \"video_name\": \"tumblr_njnhlc2q8U1u9sozlo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45770\",\n    \"key\": \"7455\",\n    \"description\": \"a white cat is looking finger and fall.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs6h9GZNT1rerh68o1_400\",\n    \"question\": \"what jumps up at someone?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22440\",\n    \"key\": \"9178\",\n    \"description\": \"a cute little dog jumps up at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjwd9zoNn1upsi9qo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7272\",\n    \"key\": \"66967\",\n    \"description\": \"man in black is talking and a boy in black is holding his hands together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9yko81WN1s71nvbo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7429\",\n    \"key\": \"24090\",\n    \"description\": \"a guy is almost hit by a yellow car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndp1ysrClu1trkb77o1_500\",\n    \"question\": \"how many men are dancing and singing together into microphones?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18816\",\n    \"key\": \"97264\",\n    \"description\": \"three men are dancing and singing together into microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqgvgtZfb1s35d3lo1_500\",\n    \"question\": \"how many people are winking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4793\",\n    \"key\": \"41805\",\n    \"description\": \"two people are winking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bv1dPta41s07ds4o1_1280\",\n    \"question\": \"what does the man lift?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32861\",\n    \"key\": \"22798\",\n    \"description\": \"a man lifts a stick while pizza boxes fly toward him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngns9l1MRx1tbjoeto1_400\",\n    \"question\": \"how many girls are sitting really close to the boy in a car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46\",\n    \"key\": \"66105\",\n    \"description\": \"two girls are sitting really close to a boy in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3gqdjyOS1tb8nb7o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28107\",\n    \"key\": \"77771\",\n    \"description\": \"this image is of a girl with red hair singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nofgplOU5S1sjsdi9o1_500\",\n    \"question\": \"how many men are moving their legs while holding a rope?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25316\",\n    \"key\": \"49462\",\n    \"description\": \"three men are moving their legs while holding a rope.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb89ryBmeP1rf6ax4o1_400\",\n    \"question\": \"how many men are playing air guitar with grimace faces?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23757\",\n    \"key\": \"36254\",\n    \"description\": \"three men are playing air guitar with grimace faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_no3s4rbT7k1uv5902o1_400\",\n    \"question\": \"how many men are holding down the man in a colorful shirt and trying to stick something in his mouth with a foot?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19513\",\n    \"key\": \"65845\",\n    \"description\": \"two men are holding down a man in a colorful shirt and trying to stick something in his mouth with a foot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrah086BN91tx8mn0o1_400\",\n    \"question\": \"what is overturning several times?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15978\",\n    \"key\": \"91940\",\n    \"description\": \"a racing car is overturning several times.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncv2ubyfXj1tcd2tgo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1197\",\n    \"key\": \"27602\",\n    \"description\": \"a black woman is crying and she moves her lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vnsgagJw1to3k6do1_400\",\n    \"question\": \"what spins out and drives off drove?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA863\",\n    \"key\": \"70408\",\n    \"description\": \"a car spins out and drives off drove.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lpsunVP61t1j1f4o1_250\",\n    \"question\": \"how many young men are standing next to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40941\",\n    \"key\": \"10941\",\n    \"description\": \"two young men are standing next to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxf7950qG1tdjuqvo1_500\",\n    \"question\": \"what is moved near to the real cat that attacks it?\",\n    \"answer\": \"balloon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45989\",\n    \"key\": \"76474\",\n    \"description\": \"a cat balloon is moved near to a real cat that attacks it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelh3nATly1tte9eno1_400\",\n    \"question\": \"what are two men ripping off in anger?\",\n    \"answer\": \"shirts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11753\",\n    \"key\": \"40152\",\n    \"description\": \"Two men are ripping their shirts off in anger.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbad3kmtlO1qbih2ho1_500\",\n    \"question\": \"how many men is this holding microphones getting ready to sing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24778\",\n    \"key\": \"24377\",\n    \"description\": \"this is three men holding microphones getting ready to sing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ww61BUlL1sz8wuto1_1280\",\n    \"question\": \"where are the bunch of people moving.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22296\",\n    \"key\": \"62547\",\n    \"description\": \"a bunch of people are moving in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9owiPitI1u4pbd2o1_500\",\n    \"question\": \"what does the guitar player move around on stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6872\",\n    \"key\": \"89655\",\n    \"description\": \"a guitar player moves his guitar around on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr12heBDzF1siem3jo1_400\",\n    \"question\": \"how many car does there 's passing another one with sparks coming from the back of it?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34786\",\n    \"key\": \"93803\",\n    \"description\": \"there 's a formula one car passing another one with sparks coming from the back of it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s8xouBrA1so0g1uo1_400\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33099\",\n    \"key\": \"30455\",\n    \"description\": \"a person with black glasses on is looking at something and moves their hand to their face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n912asItBL1t5f5kyo1_250\",\n    \"question\": \"how many men are dancing around on the stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36974\",\n    \"key\": \"2974\",\n    \"description\": \"three men are dancing around on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfscrpUrfv1u4v3ypo1_250\",\n    \"question\": \"what grooms its foot while laying on its side,\",\n    \"answer\": \"stops , and its tongue remains stuck out ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38410\",\n    \"key\": \"55669\",\n    \"description\": \"a black cat grooms its foot while laying on its side,\"\n  },\n  {\n    \"video_name\": \"tumblr_noziupQsO11ut1d6co1_500\",\n    \"question\": \"what is silhouetted farmer spinning against a blue sky?\",\n    \"answer\": \"scythe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52581\",\n    \"key\": \"90118\",\n    \"description\": \"silhouetted farmer spinning his scythe against a blue sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsvr4N2KC1u4pnh1o1_500\",\n    \"question\": \"what is the young man playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50052\",\n    \"key\": \"74688\",\n    \"description\": \"a young man is playing his guitar while another man runs across the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8zhukL0U1u0h3teo1_500\",\n    \"question\": \"what is the man loosening up?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35765\",\n    \"key\": \"20065\",\n    \"description\": \"a man is loosening up his tie while he looks backward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav9fkK9AI1ss8l8fo1_500\",\n    \"question\": \"how many men is this image of kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51733\",\n    \"key\": \"73150\",\n    \"description\": \"this image is of two men kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvmweoKSc1tldu19o1_500\",\n    \"question\": \"what is the color of the person?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44278\",\n    \"key\": \"83149\",\n    \"description\": \"a person in black is talking into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2cdxmG9W1turx3wo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43309\",\n    \"key\": \"14303\",\n    \"description\": \"a woman with long brown hair does a thumbs up.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97k6nnj3K1tbjfazo1_400\",\n    \"question\": \"what walks up and gently pecks the cat 's head?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22094\",\n    \"key\": \"34099\",\n    \"description\": \"the bird walks up and gently pecks the cat 's head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nap6vvlmYV1rqs3gco1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22804\",\n    \"key\": \"44942\",\n    \"description\": \"a black man is making faces as he speaks into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdy8uJlce1rpfnrjo1_400\",\n    \"question\": \"what is animated by filling it with air?\",\n    \"answer\": \"creature\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50941\",\n    \"key\": \"41932\",\n    \"description\": \"a balloon creature is animated by filling it with air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9es8cEtL1tc95klo1_400\",\n    \"question\": \"what is dancing and moving his hands in jungle?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37230\",\n    \"key\": \"77527\",\n    \"description\": \"a monkey is dancing and moving his hands in jungle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncuo84ErSe1rixjzfo1_400\",\n    \"question\": \"how many girls are having fun at night?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6254\",\n    \"key\": \"52680\",\n    \"description\": \"the three girls are having fun at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_npftchiLZC1tvkzc2o1_250\",\n    \"question\": \"where is the woman holding wine dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40842\",\n    \"key\": \"47140\",\n    \"description\": \"a woman holding wine is dancing in a living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbuocrieZ1s5t0x8o1_250\",\n    \"question\": \"how many men are coming inside the building?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39978\",\n    \"key\": \"85591\",\n    \"description\": \"the two men are coming inside a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6ss6zATK1tht2hyo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33480\",\n    \"key\": \"51664\",\n    \"description\": \"a boy wearing a black jacket grabs a girl around her waist and pulls her to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrg7ha63Zf1sdbhp4o1_400\",\n    \"question\": \"what are flying over the water?\",\n    \"answer\": \"airplanes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14194\",\n    \"key\": \"51214\",\n    \"description\": \"the jet planes are flying over the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbksp3vGFL1s5c47lo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32391\",\n    \"key\": \"12816\",\n    \"description\": \"a woman wearing a green dress,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4hqaqjfy1rwlucwo1_500\",\n    \"question\": \"what does the man push off a table?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28833\",\n    \"key\": \"59918\",\n    \"description\": \"a man pushes a drink off a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkyzg1KPS1tinozao1_400\",\n    \"question\": \"how many sumo wrestlers are having the match?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20228\",\n    \"key\": \"67090\",\n    \"description\": \"the two sumo wrestlers are having a match.\"\n  },\n  {\n    \"video_name\": \"tumblr_neydqqcDtv1sayfpso1_250\",\n    \"question\": \"what is the color of the rubs?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39831\",\n    \"key\": \"71662\",\n    \"description\": \"a man wearing gray rubs his fingers on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2b8qVQJy1tih0nao1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46853\",\n    \"key\": \"13159\",\n    \"description\": \"a girl is dancing around a man arrogantly in a black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc8atzdk41rkufmbo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29729\",\n    \"key\": \"82325\",\n    \"description\": \"a lady in a black dress looks down a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8huxJJg41qbzfhbo1_250\",\n    \"question\": \"how many girls are talking to each other and smiling at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27453\",\n    \"key\": \"13231\",\n    \"description\": \"two girls are talking to each other and smiling at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqiv4WRnr1s1pq0jo1_500\",\n    \"question\": \"how many dogs is this image of a man and a woman walking?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10771\",\n    \"key\": \"101300\",\n    \"description\": \"this image is of a man and a woman walking their three dogs.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfup8IJsd1t95h1uo1_400\",\n    \"question\": \"what is attacking the paper coming out of a printer?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22893\",\n    \"key\": \"31768\",\n    \"description\": \"a cat is attacking the paper coming out of a printer.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vicp8VBy1t4pld3o1_400\",\n    \"question\": \"what is the woman chugging?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17129\",\n    \"key\": \"31607\",\n    \"description\": \"a woman is chugging a brown colored drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncm9v4ci8y1tvha8to1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50348\",\n    \"key\": \"10664\",\n    \"description\": \"a girl with a white shirt rubs her head while looking uncomfortable.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9igzcnoug1r0p6epo1_400\",\n    \"question\": \"what is the cute girl grabbing and kissing it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31485\",\n    \"key\": \"29518\",\n    \"description\": \"a cute girl is grabbing a cat and kissing it.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5ke1JX9b1tz48xjo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2590\",\n    \"key\": \"42575\",\n    \"description\": \"a man in a white shirt is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p314m7oa1twbspoo1_250\",\n    \"question\": \"what is the woman wearing on stage?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42986\",\n    \"key\": \"17154\",\n    \"description\": \"the woman is wearing a black dress on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrhdij2sp1tmnzbjo1_400\",\n    \"question\": \"what does the musician violently play during a performance?\",\n    \"answer\": \"cello\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA439\",\n    \"key\": \"82149\",\n    \"description\": \"the musician violently plays his cello during a performance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtjn9aMbk1qbvprao1_500\",\n    \"question\": \"where is the girl singing a song popular.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49261\",\n    \"key\": \"60192\",\n    \"description\": \"a girl is singing a song popular in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg54hiSG91tgetb4o1_250\",\n    \"question\": \"what jumps into the box but fails?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1330\",\n    \"key\": \"50207\",\n    \"description\": \"a cat jumps into a box but fails.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklx070fBD1qan8eoo1_400\",\n    \"question\": \"what is the woman wearing and moving her hands?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37164\",\n    \"key\": \"83313\",\n    \"description\": \"a woman is wearing black glasses and moving her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95xq1FqHa1s0ea0ao1_400\",\n    \"question\": \"what rolls in the snow,\",\n    \"answer\": \"and ends up on its back ? bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28535\",\n    \"key\": \"50632\",\n    \"description\": \"a bird rolls in the snow,\"\n  },\n  {\n    \"video_name\": \"tumblr_niu5dzNP7G1u62tooo1_400\",\n    \"question\": \"what is laying on the floor?\",\n    \"answer\": \"pup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13046\",\n    \"key\": \"31034\",\n    \"description\": \"a young pup is laying on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_no47e8h5by1rvirsco1_500\",\n    \"question\": \"what is dropping from the sky in front of a man?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3633\",\n    \"key\": \"59313\",\n    \"description\": \"a box is dropping from the sky in front of a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfvwtaD6p1tvrhh5o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50397\",\n    \"key\": \"66192\",\n    \"description\": \"a man in a white shirt is singing and pointing his finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafjr4e15v1rdl60ao1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA53024\",\n    \"key\": \"72562\",\n    \"description\": \"a person wearing white clothing is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_no73v10L191uuefq3o1_250\",\n    \"question\": \"where is the cat stuck.\",\n    \"answer\": \"? container\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51322\",\n    \"key\": \"11614\",\n    \"description\": \"a cat is stuck in a plastic container.\"\n  },\n  {\n    \"video_name\": \"tumblr_napca8xCGy1tewcf7o1_400\",\n    \"question\": \"how many people are talking to one other girl?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10072\",\n    \"key\": \"28031\",\n    \"description\": \"four people are talking to one other girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_npqo3gqPc91rtl9udo1_400\",\n    \"question\": \"how many girls are holding each other,\",\n    \"answer\": \"and one blows a kiss ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14626\",\n    \"key\": \"84980\",\n    \"description\": \"two girls are holding each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxrngAe4S1rm7wvmo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43149\",\n    \"key\": \"101414\",\n    \"description\": \"a young man removes his black hat and runs a hand through his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd91nlEKaI1tx8mn0o1_400\",\n    \"question\": \"what yellow and blue are running on a race in slow motion?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48641\",\n    \"key\": \"55564\",\n    \"description\": \"two beautiful cars yellow and blue are running on a race in slow motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rwhlo9uB1tptf7do1_250\",\n    \"question\": \"how many men in black are waving their hands?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37352\",\n    \"key\": \"38342\",\n    \"description\": \"four men in black are waving their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahb37wZcQ1tbjfazo1_400\",\n    \"question\": \"what is swimming through some water?\",\n    \"answer\": \"animal\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10181\",\n    \"key\": \"64226\",\n    \"description\": \"a sea animal is swimming through some water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyc17OlXU1sh022qo1_400\",\n    \"question\": \"what is the boy doing?\",\n    \"answer\": \"trick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48331\",\n    \"key\": \"87132\",\n    \"description\": \"a boy is doing a bike trick involving jumps.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyrftUORo1u86zz3o1_250\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29931\",\n    \"key\": \"21675\",\n    \"description\": \"a boy with bright blue eyes is wearing headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0jf2Dmtj1tr5tuwo1_500\",\n    \"question\": \"how many white race cars turn the corner fast?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46690\",\n    \"key\": \"71919\",\n    \"description\": \"two white race cars turn a corner fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmsu1C2LZ1u77r94o1_250\",\n    \"question\": \"what is rolling by the window?\",\n    \"answer\": \"trampoline\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8864\",\n    \"key\": \"5531\",\n    \"description\": \"a trampoline is rolling by a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd7lsdYhvX1tsstpdo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40738\",\n    \"key\": \"6185\",\n    \"description\": \"a girl with neon yellow shirt does a seductive dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba4zsrstP1thacl7o1_500\",\n    \"question\": \"how many young men in black t-shirts are hugging on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22679\",\n    \"key\": \"19023\",\n    \"description\": \"two young men in black t-shirts are hugging on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmcvu4Nn5R1us6f70o1_250\",\n    \"question\": \"what is the woman wearing a hat is drinking through a straw?\",\n    \"answer\": \"juice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20135\",\n    \"key\": \"17497\",\n    \"description\": \"a woman wearing a hat is drinking orange juice through a straw.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3qalChFT1u5d8nbo1_500\",\n    \"question\": \"how many women kiss each other,\",\n    \"answer\": \"before they turn and walk away ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31996\",\n    \"key\": \"69235\",\n    \"description\": \"two women kiss each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9b2510ZPL1rx90qpo1_250\",\n    \"question\": \"how many people are looking at each other in the eyes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36529\",\n    \"key\": \"38426\",\n    \"description\": \"two people are looking at each other in the eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwxxlRnvb1sfdqnro1_400\",\n    \"question\": \"what is the color of the butterfly?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4003\",\n    \"key\": \"38744\",\n    \"description\": \"an orange butterfly flies on a yellow flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9i1feAZnI1slw55qo1_400\",\n    \"question\": \"what is the color of the smoke?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33574\",\n    \"key\": \"38187\",\n    \"description\": \"a man on a motorbike has red smoke coming from his helmet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nht9m1g7151s6zpepo1_250\",\n    \"question\": \"what is the covered vacuum sweeping?\",\n    \"answer\": \"floor\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37320\",\n    \"key\": \"78562\",\n    \"description\": \"a covered vacuum is sweeping the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngwulvWgkk1u3im44o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44920\",\n    \"key\": \"75778\",\n    \"description\": \"a man wearing a black jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvb9ar22f1th3l9oo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21829\",\n    \"key\": \"99912\",\n    \"description\": \"a man wearing a black hat is walking outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qyart36C1rkbsnzo1_250\",\n    \"question\": \"what are these people driving and listening to music?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28200\",\n    \"key\": \"45347\",\n    \"description\": \"these people are driving a car and listening to music.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmz3n9aYMe1rxmp17o1_500\",\n    \"question\": \"what are two men looking focused and removing?\",\n    \"answer\": \"cloaks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28454\",\n    \"key\": \"97109\",\n    \"description\": \"two men are looking focused and removing cloaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagp0infEi1syu2lno1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51221\",\n    \"key\": \"21591\",\n    \"description\": \"a woman with black hair is staring at a crystal.\"\n  },\n  {\n    \"video_name\": \"tumblr_np1j7fZTjF1rn75pro1_540\",\n    \"question\": \"how many men is this image of dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51585\",\n    \"key\": \"77375\",\n    \"description\": \"this image is of two men dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlfhjtMhtz1r0nzaoo1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14443\",\n    \"key\": \"19979\",\n    \"description\": \"a young man in a white t-shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlsgumFtJF1srbyoyo1_400\",\n    \"question\": \"what is the color of the band?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31897\",\n    \"key\": \"35611\",\n    \"description\": \"a group is marching and a man with a yellow head band gives thumbs up sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhd5mxgLuD1u71lxzo1_500\",\n    \"question\": \"what is the man playing at a crowded casino?\",\n    \"answer\": \"blackjack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26426\",\n    \"key\": \"98865\",\n    \"description\": \"a man is playing blackjack at a crowded casino.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9n7aITh11rc58pfo1_250\",\n    \"question\": \"how many guys are laughing and playing around?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33454\",\n    \"key\": \"35470\",\n    \"description\": \"three guys are laughing and playing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqbhf2Nt31th1exko1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7352\",\n    \"key\": \"80132\",\n    \"description\": \"a young man with dark brown hair raises his eyebrows.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wjakFkdh1slj978o1_250\",\n    \"question\": \"what buries his face in his paws?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9496\",\n    \"key\": \"28681\",\n    \"description\": \"a cat buries his face in his paws.\"\n  },\n  {\n    \"video_name\": \"tumblr_nglbp3rqtN1sju7t3o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44749\",\n    \"key\": \"40408\",\n    \"description\": \"a black man is moving his arms up while holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_noswtqDMKC1tyncywo1_400\",\n    \"question\": \"what is tipping the cat into a bath of water?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38507\",\n    \"key\": \"29427\",\n    \"description\": \"a dog is tipping a cat into a bath of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hl6ky3FK1qk377so1_400\",\n    \"question\": \"what avoids the scooter while traveling on a road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10537\",\n    \"key\": \"84923\",\n    \"description\": \"a car avoids a scooter while traveling on a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqsxagg3Xz1u78tt8o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27502\",\n    \"key\": \"84183\",\n    \"description\": \"a girl wearing a green dress puts a white glove on her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbw09yHJDi1ti7sj0o1_400\",\n    \"question\": \"what is the woman wearing and dancing?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50243\",\n    \"key\": \"14933\",\n    \"description\": \"a woman is wearing a horse mask and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr8j0oYR81r44co8o1_250\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52626\",\n    \"key\": \"47782\",\n    \"description\": \"two men dressed in blue shirts are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9crpj4At81tbusc0o1_400\",\n    \"question\": \"what sniffs the person 's foot and jumps away?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11632\",\n    \"key\": \"46834\",\n    \"description\": \"a kitten sniffs a person 's foot and jumps away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1uy9eDen1seb31ro1_500\",\n    \"question\": \"where is the man turning around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4162\",\n    \"key\": \"98244\",\n    \"description\": \"a man is turning around in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_np83c1F0Un1uogow0o1_500\",\n    \"question\": \"how many people are sitting in front of a screen that is showing images of bare chested men?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7368\",\n    \"key\": \"24641\",\n    \"description\": \"two people are sitting in front of a screen that is showing images of bare chested men.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1lzaN9G21tp02izo1_400\",\n    \"question\": \"what is playing the trumpet and dancing?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27025\",\n    \"key\": \"25343\",\n    \"description\": \"a bear is playing a trumpet and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jww1Tbcq1t7f0qno1_500\",\n    \"question\": \"how many people is facing each other,\",\n    \"answer\": \"as they hit fist to fist ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39492\",\n    \"key\": \"68514\",\n    \"description\": \"two people facing each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb920sP7nG1s1g1ilo1_250\",\n    \"question\": \"what is racing down the track and is turning very fast while smoking?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33665\",\n    \"key\": \"56169\",\n    \"description\": \"a car is racing down a track and is turning very fast while smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq64q1CbU1r2w02fo1_400\",\n    \"question\": \"what is the young lady scrolling?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33092\",\n    \"key\": \"58962\",\n    \"description\": \"a young lady is scrolling her cell phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjrckDyiu1qe2thio1_500\",\n    \"question\": \"what is getting the horseshoe put on?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38015\",\n    \"key\": \"67512\",\n    \"description\": \"a horse is getting a horseshoe put on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1ob7LJxh1tw8vf9o1_400\",\n    \"question\": \"how many people are fighting with mixed martial arts?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51093\",\n    \"key\": \"68560\",\n    \"description\": \"two people are fighting with mixed martial arts.\"\n  },\n  {\n    \"video_name\": \"tumblr_nri0fojp0G1tx8mn0o1_400\",\n    \"question\": \"how many car starts to burn?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27369\",\n    \"key\": \"55938\",\n    \"description\": \"two cars are driving and one car starts to burn.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4ygr9qGi1sn8mzco1_250\",\n    \"question\": \"how many people is it fighting with a dark background?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35270\",\n    \"key\": \"84446\",\n    \"description\": \"it is two people fighting with a dark background.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney69ux4541u2hqlpo1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7263\",\n    \"key\": \"12295\",\n    \"description\": \"a young man is removing his gray t-shirt by pulling it over his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g7puMMHO1rbplvwo1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4577\",\n    \"key\": \"20018\",\n    \"description\": \"a guy in white lifts up his shirt to wipe his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqy0wwLGsd1tl934lo1_250\",\n    \"question\": \"how many boys are talking with each other and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33995\",\n    \"key\": \"51764\",\n    \"description\": \"two boys are talking with each other and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlucajwmi1r2kpfmo1_400\",\n    \"question\": \"where is the shirtless tattooed man flexing his muscle and winking.\",\n    \"answer\": \"? bathroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46673\",\n    \"key\": \"1917\",\n    \"description\": \"a shirtless tattooed man in a bathroom is flexing his muscle and winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba8fj99IL1swsvnfo1_400\",\n    \"question\": \"what walks up to two bananas and freaks out?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44813\",\n    \"key\": \"41749\",\n    \"description\": \"a cat walks up to two bananas and freaks out.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwl7ilxkz1tdmimho1_500\",\n    \"question\": \"how many boys is standing together place their hands together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16039\",\n    \"key\": \"67810\",\n    \"description\": \"two boys standing together place their hands together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7xw07qzo1u40qnio1_400\",\n    \"question\": \"what are the man and a woman scrutinizing?\",\n    \"answer\": \"pen\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21794\",\n    \"key\": \"91545\",\n    \"description\": \"a man and a woman are scrutinizing a pen.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqlayumGa1u0r2qfo1_500\",\n    \"question\": \"how many young men are posing for photographs?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44721\",\n    \"key\": \"88783\",\n    \"description\": \"five young men are posing for photographs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcdhqJX4R1tp6wqio1_500\",\n    \"question\": \"what is rolling on the ground?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32116\",\n    \"key\": \"61838\",\n    \"description\": \"the cat is rolling on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxb5i3AlN1sqquj8o1_250\",\n    \"question\": \"what are flying in the air in front of a sunset?\",\n    \"answer\": \"bicycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30616\",\n    \"key\": \"53455\",\n    \"description\": \"bikes are flying in the air in front of a sunset.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrf9tKUfZ1rujq2co1_500\",\n    \"question\": \"how many men are dancing and moving their arms in sync?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14800\",\n    \"key\": \"101326\",\n    \"description\": \"three men are dancing and moving their arms in sync.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvbgxJW4s1u6lo1go1_400\",\n    \"question\": \"what is throwing his book?\",\n    \"answer\": \"watch\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15450\",\n    \"key\": \"66050\",\n    \"description\": \"a young boy wearing watch is throwing his book.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6oo2PKSC1silsr6o1_400\",\n    \"question\": \"what is the person holding?\",\n    \"answer\": \"corgi\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44003\",\n    \"key\": \"35103\",\n    \"description\": \"a person is holding an excited looking corgi.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf32wfId1W1u1kbnho1_250\",\n    \"question\": \"how many females is wearing gray costumes are performing a dance routine on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37138\",\n    \"key\": \"19038\",\n    \"description\": \"two females wearing gray costumes are performing a dance routine on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfij52cXeF1tx3acho1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3665\",\n    \"key\": \"18034\",\n    \"description\": \"a very handsome man with a black shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqouq3KQKB1ut6dhgo1_400\",\n    \"question\": \"what is the man with long hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1574\",\n    \"key\": \"77342\",\n    \"description\": \"a man with long hair is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_njnbr0swrC1un86uao1_400\",\n    \"question\": \"what is the man washing in a restaurant while listening to head phones?\",\n    \"answer\": \"dishes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34777\",\n    \"key\": \"50808\",\n    \"description\": \"a man is washing dishes in a restaurant while listening to head phones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfqa4dEj3v1tet6zho1_400\",\n    \"question\": \"what is staring at the treat?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37509\",\n    \"key\": \"62046\",\n    \"description\": \"a dog is staring at a treat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nec7jpgXtw1s71nvbo1_400\",\n    \"question\": \"what dances in front of a smaller bird?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1306\",\n    \"key\": \"27462\",\n    \"description\": \"a brightly colored bird dances in front of a smaller bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkro0iKPRH1upx448o1_500\",\n    \"question\": \"what is slowly barking in slow motion?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21226\",\n    \"key\": \"72145\",\n    \"description\": \"a dog is slowly barking in slow motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhh2bh2wBY1ra3tfmo1_500\",\n    \"question\": \"what is the man embracing?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42404\",\n    \"key\": \"89335\",\n    \"description\": \"a man is embracing a punching bag while talk to another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uw0bs3ZI1qinzfzo1_400\",\n    \"question\": \"what are two people doing?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4957\",\n    \"key\": \"29461\",\n    \"description\": \"two people are doing a woman 's makeup while she stands in front of a mic.\"\n  },\n  {\n    \"video_name\": \"tumblr_np3hxoij0J1tj3r8so1_400\",\n    \"question\": \"what is floating on the sea when a huge creature comes breaking through the surface?\",\n    \"answer\": \"boat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28688\",\n    \"key\": \"29591\",\n    \"description\": \"a boat is floating on the sea when a huge creature comes breaking through the surface.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngf79bgJEJ1sht3fmo1_400\",\n    \"question\": \"what tries to bite the red balloon?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15465\",\n    \"key\": \"1473\",\n    \"description\": \"a dog tries to bite a red balloon.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgx0gSMVZ1rne0ito1_400\",\n    \"question\": \"what is the man throwing onto a woman 's leg?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38628\",\n    \"key\": \"24150\",\n    \"description\": \"a man is throwing his hat onto a woman 's leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncd6eyR4Ya1ryaiojo1_400\",\n    \"question\": \"what is the color of the balls?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37969\",\n    \"key\": \"69338\",\n    \"description\": \"the man and lady were running with the big blue balls and the lady fell.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsdx5f0Gm1rb71dxo1_400\",\n    \"question\": \"what is receiving some water jets in his mouth?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52770\",\n    \"key\": \"69966\",\n    \"description\": \"a dog is receiving some water jets in his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdhg6tHlo1s4pilyo1_400\",\n    \"question\": \"what does the tool with bristles on the end pick up off the floor?\",\n    \"answer\": \"spider\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA165\",\n    \"key\": \"65579\",\n    \"description\": \"a tool with bristles on the end picks up a spider off the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndu22lJGYu1r6rqr1o1_500\",\n    \"question\": \"what is the man in a tie smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21083\",\n    \"key\": \"52571\",\n    \"description\": \"a man in a tie is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad9fpNKZC1sojiylo1_400\",\n    \"question\": \"what is the man wearing and singing into a microphone?\",\n    \"answer\": \"earring\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50640\",\n    \"key\": \"73512\",\n    \"description\": \"a man is wearing an earring and singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8g0k6Rac1tatohao1_400\",\n    \"question\": \"what charges the man and a woman and knocks them down?\",\n    \"answer\": \"bull\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29545\",\n    \"key\": \"41038\",\n    \"description\": \"a bull charges a man and a woman and knocks them down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesf0m509L1rs3efuo1_500\",\n    \"question\": \"where is the tip of something smoking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10428\",\n    \"key\": \"30498\",\n    \"description\": \"the tip of something is smoking in the dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzvsya1WR1tfjrdno1_400\",\n    \"question\": \"how many people with dark hair stuck out their tongues?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36648\",\n    \"key\": \"31404\",\n    \"description\": \"two people with dark hair stuck out their tongues.\"\n  },\n  {\n    \"video_name\": \"tumblr_now3qv2rty1tgouwlo1_400\",\n    \"question\": \"what is being fed food by a human?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16019\",\n    \"key\": \"15794\",\n    \"description\": \"a small turtle is being fed food by a human.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoau5H0HV1s1ukk9o1_400\",\n    \"question\": \"what is walking the dog on a leash?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4306\",\n    \"key\": \"81129\",\n    \"description\": \"a cat is walking a dog on a leash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjzfx6FL41uz06r7o1_400\",\n    \"question\": \"where is the brown cat walking.\",\n    \"answer\": \"? wheel\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38095\",\n    \"key\": \"13614\",\n    \"description\": \"a brown cat is walking in a big wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc2uhXce31slwrsuo1_250\",\n    \"question\": \"what is sticking out it 's tongue?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41026\",\n    \"key\": \"1365\",\n    \"description\": \"a cat is sticking out it 's tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgrtb47iN1tb0ub4o1_400\",\n    \"question\": \"what does the man throw at another man as a weapon?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17063\",\n    \"key\": \"32115\",\n    \"description\": \"a man throws a cat at another man as a weapon.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndo9mexi0q1tx8mn0o1_400\",\n    \"question\": \"what flips its driver onto the tracks and slides into the grassy field?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22482\",\n    \"key\": \"52724\",\n    \"description\": \"a red motorcycle flips its driver onto the tracks and slides into the grassy field.\"\n  },\n  {\n    \"video_name\": \"tumblr_npebl4xJIb1sczfc3o1_500\",\n    \"question\": \"where are two women kissing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51072\",\n    \"key\": \"100521\",\n    \"description\": \"two women are kissing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hp20yyXi1ttuja3o1_400\",\n    \"question\": \"how many horses give each other a high five?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36301\",\n    \"key\": \"65594\",\n    \"description\": \"the two horses give each other a high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v5t2V89h1temvgfo1_250\",\n    \"question\": \"where is the person doing an interview.\",\n    \"answer\": \"? stadium\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38363\",\n    \"key\": \"43769\",\n    \"description\": \"a person is doing an interview in a stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndt7p5Ww511s71nvbo1_400\",\n    \"question\": \"how many men are playing the game of table tennis?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50306\",\n    \"key\": \"24653\",\n    \"description\": \"two men are playing a game of table tennis.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy2llEMDi1u1jnleo1_500\",\n    \"question\": \"what is the color of the sunglasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16893\",\n    \"key\": \"46168\",\n    \"description\": \"this is a man sat in black sunglasses making hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9wynnpCd1u6z7x7o1_500\",\n    \"question\": \"how many boys are taking drinks out of water bottles?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36895\",\n    \"key\": \"48884\",\n    \"description\": \"two boys are taking drinks out of water bottles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9al1mawYK1thcwtbo1_500\",\n    \"question\": \"what is the baby panda holding?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4177\",\n    \"key\": \"70761\",\n    \"description\": \"a baby panda is holding a big panda.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngz2gcvCxw1rtdnfto1_400\",\n    \"question\": \"how many colorful dice are thrown multiple times?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36842\",\n    \"key\": \"28359\",\n    \"description\": \"three colorful dice are thrown multiple times.\"\n  },\n  {\n    \"video_name\": \"tumblr_np9l67iE301te94myo1_400\",\n    \"question\": \"what did the hockey player 's drink have?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52304\",\n    \"key\": \"19930\",\n    \"description\": \"the hockey player 's drink had a loose cap.\"\n  },\n  {\n    \"video_name\": \"tumblr_n0wbw0JDIC1rj823eo1_400\",\n    \"question\": \"how many young men are smiling and clapping their hands,\",\n    \"answer\": \"looking at each other ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41816\",\n    \"key\": \"93418\",\n    \"description\": \"two young men are smiling and clapping their hands,\"\n  },\n  {\n    \"video_name\": \"tumblr_npxi5iuzFO1uy7t3eo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42407\",\n    \"key\": \"95838\",\n    \"description\": \"a man in a black hat was sliding across the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6u0dxvpu1s0d12ko1_500\",\n    \"question\": \"where does the girl with yellow hat spin then stops.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12401\",\n    \"key\": \"86744\",\n    \"description\": \"a girl with yellow hat spins then stops in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhfopwsnzc1u75on0o1_400\",\n    \"question\": \"what is the color of the lingerie?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45119\",\n    \"key\": \"75796\",\n    \"description\": \"a bald man on a green couch is watching a woman wearing black lingerie,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxno3rMQC1svbli1o1_250\",\n    \"question\": \"how many man does there 's laughing at another man playing a fake guitar?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46102\",\n    \"key\": \"49641\",\n    \"description\": \"there 's one man laughing at another man playing a fake guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_npaw4iQKzd1u6iefyo1_500\",\n    \"question\": \"what is spinning in circles on a parking lot?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29570\",\n    \"key\": \"76767\",\n    \"description\": \"the car is spinning in circles on a parking lot.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5uo6rEEc1rv06c2o1_250\",\n    \"question\": \"how many young girls are laughing and drinking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20371\",\n    \"key\": \"32590\",\n    \"description\": \"two young girls are laughing and drinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkw7jnai031rm0ja8o1_400\",\n    \"question\": \"how many man is on top of another man in bed?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19499\",\n    \"key\": \"52202\",\n    \"description\": \"one man is on top of another man in bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_npgic1jBgU1utmlppo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25835\",\n    \"key\": \"97357\",\n    \"description\": \"a young lady with a green dress on is washing a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdbfb4nT11tx8mn0o1_400\",\n    \"question\": \"what spins out going through the turn?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA481\",\n    \"key\": \"100983\",\n    \"description\": \"a race car spins out going through a turn.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpugqJVgm1s6zpepo1_400\",\n    \"question\": \"where is the cat running.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1371\",\n    \"key\": \"30538\",\n    \"description\": \"a cat is running amok in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbu4nnFWBN1tok1iao1_400\",\n    \"question\": \"what is the guy holding while dancing?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41823\",\n    \"key\": \"82135\",\n    \"description\": \"a guy is holding a bottled drink while dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_np67fnXaAj1tatohao1_400\",\n    \"question\": \"what is the man ticking tummy?\",\n    \"answer\": \"foxes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16441\",\n    \"key\": \"67730\",\n    \"description\": \"a man is ticking a foxes'\"\n  },\n  {\n    \"video_name\": \"tumblr_nciq5cuIxH1tt0b1ho1_250\",\n    \"question\": \"where does the woman put down the barbell.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4071\",\n    \"key\": \"3203\",\n    \"description\": \"the woman puts down the barbell in the gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemscyeADV1sd32fxo1_500\",\n    \"question\": \"how many guys are sitting on the couch and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34847\",\n    \"key\": \"60111\",\n    \"description\": \"two guys are sitting on a couch and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr10n4blvp1qzefipo1_r1_400\",\n    \"question\": \"what gets in the way of showing a woman doing a yoga pose?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5508\",\n    \"key\": \"76416\",\n    \"description\": \"an orange cat gets in the way of showing a woman doing a yoga pose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtqzuiWod1sj4atbo1_400\",\n    \"question\": \"how many men in athletic clothing are hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40673\",\n    \"key\": \"65203\",\n    \"description\": \"two men in athletic clothing are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0tag2Sc31sr2axwo1_250\",\n    \"question\": \"what is putting angry face?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36544\",\n    \"key\": \"27106\",\n    \"description\": \"a man wearing suit is putting angry face.\"\n  },\n  {\n    \"video_name\": \"tumblr_na223cc4GI1r6gft3o1_250\",\n    \"question\": \"what is chasing something across a wooden floor?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22205\",\n    \"key\": \"70577\",\n    \"description\": \"a cat is chasing something across a wooden floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwg4tiDgC1u8eq3no1_400\",\n    \"question\": \"what is being shook by someone?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46200\",\n    \"key\": \"66173\",\n    \"description\": \"a large dog is being shook by someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsow8trHJ1tlsvejo1_400\",\n    \"question\": \"what is swimming around the floating cage?\",\n    \"answer\": \"shark\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA256\",\n    \"key\": \"70700\",\n    \"description\": \"the shark is swimming around a floating cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2ih2Tpka1rknd4so1_400\",\n    \"question\": \"what rotates at high speed and make clouds of dust?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39732\",\n    \"key\": \"54485\",\n    \"description\": \"a car rotates at high speed and make clouds of dust.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfpt91NJR1u4h7glo1_500\",\n    \"question\": \"how many men in smart clothing are standing in a line together?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33141\",\n    \"key\": \"57449\",\n    \"description\": \"four men in smart clothing are standing in a line together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmcvu4Nn5R1us6f70o1_250\",\n    \"question\": \"what is the color of the juice?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37532\",\n    \"key\": \"17497\",\n    \"description\": \"a person is drinking orange juice through a straw.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkobmrxOqy1u8s5muo1_400\",\n    \"question\": \"what is the boy playing while singing into a microphone?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41522\",\n    \"key\": \"46617\",\n    \"description\": \"a boy is playing piano while singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivsff9LA71raooppo1_500\",\n    \"question\": \"what is the man wearing and smiling?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21476\",\n    \"key\": \"15601\",\n    \"description\": \"a man is wearing an orange shirt and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnyl3sHshs1tjbfjto1_400\",\n    \"question\": \"what is the woman in a leopard print hat eating?\",\n    \"answer\": \"popcorn\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22965\",\n    \"key\": \"70065\",\n    \"description\": \"a woman in a leopard print hat is eating popcorn.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbee7vMnNj1th1gndo1_400\",\n    \"question\": \"how many men stand on the sidewalk?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35344\",\n    \"key\": \"67016\",\n    \"description\": \"two men stand on the sidewalk and one of them shoots paper at someone walking by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvfrfYpKG1sco6ako1_400\",\n    \"question\": \"what is the color of the gown?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6648\",\n    \"key\": \"70613\",\n    \"description\": \"a woman with long,\"\n  },\n  {\n    \"video_name\": \"tumblr_nprglcBVTc1unyhx2o1_400\",\n    \"question\": \"what is driving up to the black fence on the race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3453\",\n    \"key\": \"65277\",\n    \"description\": \"a car is driving up to a black fence on the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xoi33thn1tuoukno1_250\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51421\",\n    \"key\": \"13455\",\n    \"description\": \"two boys wearing black pants were laughing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxforhx5a1rx75eko1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31076\",\n    \"key\": \"97369\",\n    \"description\": \"a woman in a yellow dress walked to her lover.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvjpmd0lJ1tmssd6o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39247\",\n    \"key\": \"71674\",\n    \"description\": \"a man with black hair is holding something looking scared.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfeov630X81u426jpo1_500\",\n    \"question\": \"how many women walk through the door and into a crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42594\",\n    \"key\": \"47850\",\n    \"description\": \"two women walk through a door and into a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4ezdlkcv1u2nvc4o1_500\",\n    \"question\": \"how many men is wearing same clothes hug each other and hold each others backs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28475\",\n    \"key\": \"62482\",\n    \"description\": \"two men wearing same clothes hug each other and hold each others backs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbe87urrf1tku5kko1_250\",\n    \"question\": \"what is the young man swinging around on a stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31768\",\n    \"key\": \"38920\",\n    \"description\": \"a young man is swinging his guitar around on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb0mlx2Ms1rozqomo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31662\",\n    \"key\": \"39658\",\n    \"description\": \"a girl is speaking with other girl with black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngn0ttCSb51svos5ho1_400\",\n    \"question\": \"how many people are having an arm wrestle?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4441\",\n    \"key\": \"36865\",\n    \"description\": \"two people are having an arm wrestle.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7ms6bQkF1qf738lo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39176\",\n    \"key\": \"47662\",\n    \"description\": \"a woman is wearing a black sleeveless dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dype7riV1tfbj8go1_500\",\n    \"question\": \"what is the young woman holding?\",\n    \"answer\": \"sword\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24207\",\n    \"key\": \"43494\",\n    \"description\": \"a young woman is holding a sword.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ptkwQ8rn1tabm5fo1_400\",\n    \"question\": \"what are sailors tossing across a ship?\",\n    \"answer\": \"tubes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10246\",\n    \"key\": \"69555\",\n    \"description\": \"sailors are tossing metal tubes across a ship.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwjvryKQj1qc4d1mo1_250\",\n    \"question\": \"what is the color of the blankets?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4427\",\n    \"key\": \"74957\",\n    \"description\": \"a man puts baby animals next to each other in yellow blankets.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9q316CkR1qckrt4o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35290\",\n    \"key\": \"58028\",\n    \"description\": \"a white girl and a white man are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczlfupRqq1tvuidio1_500\",\n    \"question\": \"what shakes and flaps his wings on a branch?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11476\",\n    \"key\": \"84031\",\n    \"description\": \"a green bird shakes and flaps his wings on a branch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngi2t0tDEr1rx9shjo1_400\",\n    \"question\": \"what are driving on the road during a sunset?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14265\",\n    \"key\": \"56919\",\n    \"description\": \"multiple cars are driving on a road during a sunset.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9arvu8wVk1th7gfko1_250\",\n    \"question\": \"how many guys are running and three of them fall?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36851\",\n    \"key\": \"37916\",\n    \"description\": \"four guys are running and three of them fall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhihfqgnjK1u71wuao1_400\",\n    \"question\": \"how many men are watching the piece of machinery and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA527\",\n    \"key\": \"58907\",\n    \"description\": \"two men are watching a piece of machinery and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjj1i27sk1uv0y2ro1_250\",\n    \"question\": \"what is rolling over?\",\n    \"answer\": \"mammal\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33980\",\n    \"key\": \"74778\",\n    \"description\": \"a black and white mammal is rolling over.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngdqxovcVv1rfx6qqo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46733\",\n    \"key\": \"29189\",\n    \"description\": \"a girl with dyed blue hair is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngweqi8eLU1u6p4xzo1_400\",\n    \"question\": \"what is the color of the attire?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46417\",\n    \"key\": \"81223\",\n    \"description\": \"a big clown in gray attire is running in the forest.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zjjsp2E21tecuevo1_400\",\n    \"question\": \"where is two guys dancing very funny.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1063\",\n    \"key\": \"42865\",\n    \"description\": \"two guys is dancing very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh40cqYid51s6zpepo1_250\",\n    \"question\": \"what is playing with baubles on a christmas tree?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26027\",\n    \"key\": \"2329\",\n    \"description\": \"a white kitten is playing with baubles on a christmas tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivsjccx9w1r05qsbo1_400\",\n    \"question\": \"what is skidding around the corner of a race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51459\",\n    \"key\": \"68322\",\n    \"description\": \"a car is skidding around the corner of a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nov6tduqos1uvi3rjo1_400\",\n    \"question\": \"what is the color of the wings?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1176\",\n    \"key\": \"54480\",\n    \"description\": \"a dog looking sad is sitting with purple wings on their ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndhvugvD2U1s3mq1do1_400\",\n    \"question\": \"where is the man with red hair sitting and another man pops up from behind.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28666\",\n    \"key\": \"59821\",\n    \"description\": \"a man with red hair is sitting in a red chair and another man pops up from behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner7ylN8ki1sncaa3o1_400\",\n    \"question\": \"how many cars almost crash into one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44626\",\n    \"key\": \"55584\",\n    \"description\": \"the two cars almost crash into one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagwqpek6t1sl4e5go1_400\",\n    \"question\": \"what is smoking behind the bush?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3469\",\n    \"key\": \"96671\",\n    \"description\": \"a black car is smoking behind a bush.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq8bvxG6q1sk0i2mo1_250\",\n    \"question\": \"how many men are boxing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35594\",\n    \"key\": \"55588\",\n    \"description\": \"two men are boxing and one gets knocked down with an elbow to the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndv2l5YD0M1rhexgoo1_250\",\n    \"question\": \"what is the man bouncing?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40792\",\n    \"key\": \"25553\",\n    \"description\": \"a man is bouncing a purple bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf22adJ0VT1qd0q05o1_400\",\n    \"question\": \"what are two men wearing masks are dancing and playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48307\",\n    \"key\": \"67256\",\n    \"description\": \"two men wearing masks are dancing and playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfa0f8zRRV1rs02yxo1_250\",\n    \"question\": \"what rolls down the hill in the rain?\",\n    \"answer\": \"sheep\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19203\",\n    \"key\": \"40651\",\n    \"description\": \"a stuffed animal sheep rolls down a hill in the rain.\"\n  },\n  {\n    \"video_name\": \"tumblr_neeuriGyRN1tcott6o1_400\",\n    \"question\": \"what leaves the parking space and another car parks in the space and a man pees on that car?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16952\",\n    \"key\": \"47984\",\n    \"description\": \"a car leaves a parking space and another car parks in the space and a man pees on that car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxsl29ZXD1tmth2jo1_250\",\n    \"question\": \"how many people are in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26475\",\n    \"key\": \"47237\",\n    \"description\": \"two people are in a room and one of them puts a hat on their head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne538w5f3w1u2rlp7o1_400\",\n    \"question\": \"what is the color of the ball?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40662\",\n    \"key\": \"40687\",\n    \"description\": \"a man uses martial arts to kick a yellow ball from his friends hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2qlbUIlP1ttgu7yo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3647\",\n    \"key\": \"12426\",\n    \"description\": \"a black man with cap is dancing and lift up his finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngbwzlcnCk1r8l54qo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52416\",\n    \"key\": \"31660\",\n    \"description\": \"a girl in a black bathing suit dives into a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nooglpxw3a1tx8mn0o1_400\",\n    \"question\": \"what is skidding off the track and into a dirt field?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52665\",\n    \"key\": \"79027\",\n    \"description\": \"a race car is skidding off the track and into a dirt field.\"\n  },\n  {\n    \"video_name\": \"tumblr_naduko6Opl1qcvlffo1_100\",\n    \"question\": \"how many women are staring at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4809\",\n    \"key\": \"93937\",\n    \"description\": \"two women are staring at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_npg911ZWBI1uxqfano1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38659\",\n    \"key\": \"12783\",\n    \"description\": \"a woman with brown,\"\n  },\n  {\n    \"video_name\": \"tumblr_nba7eaFpjd1sqd2xqo1_400\",\n    \"question\": \"where is the man sitting while holding a box and talking.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17371\",\n    \"key\": \"7965\",\n    \"description\": \"a man is sitting in a chair while holding a box and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfq8lcxtjj1tsann9o1_r2_500\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50391\",\n    \"key\": \"40935\",\n    \"description\": \"a young man in white pants is pole dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkngomyhg61u9o884o1_400\",\n    \"question\": \"what is sitting on the couch doing nothing?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA410\",\n    \"key\": \"21925\",\n    \"description\": \"the cat is sitting on the couch doing nothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkbc7fiUtn1rc27bho1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14066\",\n    \"key\": \"408\",\n    \"description\": \"a girl with a yellow shirt is holding a giant picture of a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzfvxCesw1u7uk4xo1_250\",\n    \"question\": \"what is the guy wearing and looking backwards and smiling?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5185\",\n    \"key\": \"25551\",\n    \"description\": \"a guy is wearing a striped shirt and looking backwards and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3x52SXYf1r1vx3po1_r1_500\",\n    \"question\": \"what is the man blowing into the air?\",\n    \"answer\": \"rings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49685\",\n    \"key\": \"98148\",\n    \"description\": \"a man is blowing smoke rings into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpaoaNNIH1rpqn0wo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26940\",\n    \"key\": \"61804\",\n    \"description\": \"a black car is moving along a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nohfozNdq31tz9jaqo1_500\",\n    \"question\": \"what is the color of the team?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32010\",\n    \"key\": \"101574\",\n    \"description\": \"a blue soccer team makes a goal during a match.\"\n  },\n  {\n    \"video_name\": \"tumblr_neh6x586Rl1tgic3yo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50008\",\n    \"key\": \"89147\",\n    \"description\": \"a woman with a black shirt and black lipstick smiles and laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb40f1NWsK1tjrca2o1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28481\",\n    \"key\": \"65695\",\n    \"description\": \"a brown furry dog is playing with a toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9q33mPy121ti34tso1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51977\",\n    \"key\": \"96936\",\n    \"description\": \"a man in a purple shirt and green scarf is walking down a sand dune.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk64ns1uhs1u7382xo1_500\",\n    \"question\": \"how many men look sadly out of windows?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37402\",\n    \"key\": \"77564\",\n    \"description\": \"two men look sadly out of windows.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhek07vQZc1te94myo1_400\",\n    \"question\": \"what is the girl petting?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24904\",\n    \"key\": \"23862\",\n    \"description\": \"a girl is petting a tan cat who is walking away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn6p2bkq1i1us8iupo1_500\",\n    \"question\": \"how many females does this show kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26023\",\n    \"key\": \"83601\",\n    \"description\": \"this shows two females kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9q49mS7ND1t3xx9ao1_400\",\n    \"question\": \"what chased the hand of a man?\",\n    \"answer\": \"chases\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18744\",\n    \"key\": \"33502\",\n    \"description\": \"a small dog chases chased the hand of a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrq4zTBiW1td8ijso1_400\",\n    \"question\": \"what is the man in a hat holding?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5320\",\n    \"key\": \"54537\",\n    \"description\": \"a man in a hat is holding a panda toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkpcx7Bz6I1qattp2o1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33572\",\n    \"key\": \"71572\",\n    \"description\": \"a white guy is angry with some in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndw164NVKb1slj978o1_400\",\n    \"question\": \"how many men are pushing each other down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10344\",\n    \"key\": \"42305\",\n    \"description\": \"two men are pushing each other down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp6myEsCd1tegiwio1_500\",\n    \"question\": \"where are guys dancing while it drives by.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16448\",\n    \"key\": \"44587\",\n    \"description\": \"guys dancing in car while it drives by.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qzicJ4gq1sn3gx2o1_250\",\n    \"question\": \"how many people are hugging each other while a crowd watches?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45539\",\n    \"key\": \"35486\",\n    \"description\": \"three people are hugging each other while a crowd watches.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflzmwpuPQ1tigbm3o1_400\",\n    \"question\": \"how many guys with sunglasses are greeting in outdoor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39649\",\n    \"key\": \"59344\",\n    \"description\": \"two guys with sunglasses are greeting in outdoor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkk7xhuSU1sa6u20o1_400\",\n    \"question\": \"where is the young woman getting comfortable.\",\n    \"answer\": \"? armchair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39437\",\n    \"key\": \"50845\",\n    \"description\": \"a young woman is getting comfortable in an armchair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nge88cl1IR1tk7malo1_400\",\n    \"question\": \"what is the color of the lips?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13126\",\n    \"key\": \"30818\",\n    \"description\": \"a very cute girl with black lips is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1rgcUyWL1u7lbeoo1_500\",\n    \"question\": \"where are the man and a woman kissing each other,\",\n    \"answer\": \". ? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA451\",\n    \"key\": \"86030\",\n    \"description\": \"a man and a woman are kissing each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhenpyWz8l1qdbxg1o1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34961\",\n    \"key\": \"10863\",\n    \"description\": \"a woman in a black top is talking into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyzo769BX1shllpeo1_400\",\n    \"question\": \"how many guys are looking and smiling in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45272\",\n    \"key\": \"29481\",\n    \"description\": \"two guys are looking and smiling in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0eq9SpgL1sxixu7o1_250\",\n    \"question\": \"what is moving its head from one side to the other?\",\n    \"answer\": \"crow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13333\",\n    \"key\": \"51670\",\n    \"description\": \"a crow is moving its head from one side to the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qimeVRl31rm2suio1_400\",\n    \"question\": \"what is the color of the drinking?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30599\",\n    \"key\": \"13867\",\n    \"description\": \"some young men are sitting on a black leather booth drinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb5u5x93171rj46xdo4_r1_500\",\n    \"question\": \"what are the group of boys singing,\",\n    \"answer\": \"dancing , and playing ? instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11121\",\n    \"key\": \"93280\",\n    \"description\": \"a group of boys are singing,\"\n  },\n  {\n    \"video_name\": \"tumblr_npq9jlIFaN1u1ogm0o1_1280\",\n    \"question\": \"what is released out of the back of an airplane?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4762\",\n    \"key\": \"98065\",\n    \"description\": \"a car is released out of the back of an airplane.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl35rMLRE1snjqzdo1_400\",\n    \"question\": \"what is defending itself from a puppy,\",\n    \"answer\": \"which then falls backwards ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3418\",\n    \"key\": \"82992\",\n    \"description\": \"a cat is defending itself from a puppy,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lhgzbAo31sg317do1_400\",\n    \"question\": \"what does the split while standing in a sort of handstand?\",\n    \"answer\": \"dancer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40316\",\n    \"key\": \"74188\",\n    \"description\": \"a blindfolded pole dancer does a split while standing in a sort of handstand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqher86Kc1tm761xo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37014\",\n    \"key\": \"10949\",\n    \"description\": \"the man in the blue jacket is looking to his left.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfb23gwoUs1t8bzkuo1_500\",\n    \"question\": \"how many young men are sitting together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19724\",\n    \"key\": \"96628\",\n    \"description\": \"three young men are sitting together,\"\n  },\n  {\n    \"video_name\": \"tumblr_nppe4itAAr1sz4xdoo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34135\",\n    \"key\": \"89152\",\n    \"description\": \"a man with a black hat is walking in the rain and he looks angry.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav1brsK0W1sjoqhwo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42451\",\n    \"key\": \"63986\",\n    \"description\": \"a guy wearing a red shirt and black pants,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp4csVh0n1qc17seo1_400\",\n    \"question\": \"what is the boy in a baseball cap smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44363\",\n    \"key\": \"59864\",\n    \"description\": \"a boy in a baseball cap is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nct52sYe2r1u0sv5po1_500\",\n    \"question\": \"how many white team players with short hair congratulate each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2665\",\n    \"key\": \"95749\",\n    \"description\": \"two white team players with short hair congratulate each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nps81duVvm1uxhlvco1_400\",\n    \"question\": \"what falls onto the man sitting on the couch and he runs away?\",\n    \"answer\": \"spider\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24798\",\n    \"key\": \"45766\",\n    \"description\": \"a spider falls onto a man sitting on the couch and he runs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafvx0HnxX1rctjeio1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46007\",\n    \"key\": \"51384\",\n    \"description\": \"a man wearing a black shirt is spinning off suspended gymnastic rings.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwzkxNPfq1u1810lo1_500\",\n    \"question\": \"what is the young man sitting on a rock is stroking?\",\n    \"answer\": \"chimpanzee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4124\",\n    \"key\": \"75707\",\n    \"description\": \"a young man sitting on a rock is stroking a chimpanzee.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8pus0OAH1t9au5fo1_400\",\n    \"question\": \"how many people are stood outdoors talking to someone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21357\",\n    \"key\": \"16340\",\n    \"description\": \"two people are stood outdoors talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6i6uP4kE1s5svyno1_500\",\n    \"question\": \"how many women are slowing taking the jacket off of a man?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11840\",\n    \"key\": \"93850\",\n    \"description\": \"two women are slowing taking the jacket off of a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9op5Q2rg1unyhx2o1_400\",\n    \"question\": \"what are racing on the track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17382\",\n    \"key\": \"78234\",\n    \"description\": \"a few cars are racing on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2ih2Tpka1rknd4so1_400\",\n    \"question\": \"what is turning very quick and leaving behind the trail of dust?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43086\",\n    \"key\": \"54485\",\n    \"description\": \"a car is turning very quick and leaving behind a trail of dust.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrc4n8V2xU1tx8mn0o1_400\",\n    \"question\": \"what is this spinning out on a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50406\",\n    \"key\": \"93104\",\n    \"description\": \"this is a race car spinning out on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5ddaL9zk1s28vxko1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16076\",\n    \"key\": \"43219\",\n    \"description\": \"a white dog shakes himself in slow motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg7r5IqE81sojbe9o1_250\",\n    \"question\": \"where is the man fixing his hair.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49713\",\n    \"key\": \"31950\",\n    \"description\": \"the man is fixing his hair in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9aw9xL3oK1tx8mn0o1_400\",\n    \"question\": \"what is driving on the road and going around a corner?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5613\",\n    \"key\": \"77235\",\n    \"description\": \"a race car is driving on the road and going around a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedvy9AhxX1qeire1o1_400\",\n    \"question\": \"what does the woman man walk down the runway in a blue coat jacket and walked?\",\n    \"answer\": \"boots\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4808\",\n    \"key\": \"66547\",\n    \"description\": \"a woman man walks down the runway in a blue coat jacket and boots walked.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9t89xPnUv1s9p889o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32131\",\n    \"key\": \"63519\",\n    \"description\": \"a man with black hair is kissing his fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvt58aRya1u9uafoo1_400\",\n    \"question\": \"where does the man put on his sunglasses when the clock turns nine.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34735\",\n    \"key\": \"66055\",\n    \"description\": \"a man in bed puts on his sunglasses when the clock turns nine.\"\n  },\n  {\n    \"video_name\": \"tumblr_njr6h2kNOi1rkcbb8o1_400\",\n    \"question\": \"what is the young person adjusting?\",\n    \"answer\": \"clothing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36147\",\n    \"key\": \"691\",\n    \"description\": \"a young person is adjusting his or her clothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nquj86RWoW1uyk370o1_250\",\n    \"question\": \"what is the guy holding while looking around and smiling?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17366\",\n    \"key\": \"10534\",\n    \"description\": \"a guy is holding a drink while looking around and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxg0u02UC1tdmffyo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27528\",\n    \"key\": \"8666\",\n    \"description\": \"a woman with red hair is looking sideways.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevu1x7R4F1tzeksuo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA575\",\n    \"key\": \"67414\",\n    \"description\": \"two very handsome boys are into a black car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nag50gxnPI1tdjuqvo1_250\",\n    \"question\": \"what tries to take some bananas with its trunk?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22138\",\n    \"key\": \"24769\",\n    \"description\": \"a small elephant tries to take some bananas with its trunk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nip2p8nEbB1rz19y8o1_500\",\n    \"question\": \"how many guys in a band are playing guitar crazily?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51065\",\n    \"key\": \"73340\",\n    \"description\": \"the two guys in a band are playing guitar crazily.\"\n  },\n  {\n    \"video_name\": \"tumblr_nem3w0B2961ttab97o1_400\",\n    \"question\": \"what is the man pulling?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31115\",\n    \"key\": \"29697\",\n    \"description\": \"a man is pulling a tree that has a man asleep on top of it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8whp8jDQ1t0yxwdo1_500\",\n    \"question\": \"what is the color of the dance?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7623\",\n    \"key\": \"87698\",\n    \"description\": \"a group of people wear white dance on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vecizBZQ1sla45lo1_400\",\n    \"question\": \"what is racing through the track in slow motion?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46423\",\n    \"key\": \"76383\",\n    \"description\": \"a car is racing through a track in slow motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq8eyMlrJ1qkf1cno1_400\",\n    \"question\": \"how many people are singing while riding in the truck?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49553\",\n    \"key\": \"52199\",\n    \"description\": \"two people are singing while riding in a truck.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3e3globU1snid6qo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12243\",\n    \"key\": \"66138\",\n    \"description\": \"a girl jumps into a boy with a white shirt on a yellow boat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng33g4VJPm1qmnxmfo1_400\",\n    \"question\": \"what is the color of the player?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47727\",\n    \"key\": \"36932\",\n    \"description\": \"a black basketball player is dancing on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_njp4u1XiXD1tt84zlo1_500\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38561\",\n    \"key\": \"57884\",\n    \"description\": \"an oblong objects moves around a blue background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nis0671Qu01tjqbh0o1_250\",\n    \"question\": \"what is showering in the bathtub?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40972\",\n    \"key\": \"1463\",\n    \"description\": \"a dog is showering in a bathtub.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97n2cS7li1rxa8glo1_500\",\n    \"question\": \"what is going down in front of a woman 's face and she puts her head in her shirt?\",\n    \"answer\": \"balloon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43632\",\n    \"key\": \"86305\",\n    \"description\": \"a red balloon is going down in front of a woman 's face and she puts her head in her shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6x6yDo3T1qi1h3ao1_250\",\n    \"question\": \"what is the man removing on the boat?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1151\",\n    \"key\": \"2972\",\n    \"description\": \"a man is removing his shirt on the boat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5iztgMBE1upitezo1_400\",\n    \"question\": \"how many children in winter attire are walking in the street with their mother?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45513\",\n    \"key\": \"54129\",\n    \"description\": \"four children in winter attire are walking in the street with their mother.\"\n  },\n  {\n    \"video_name\": \"tumblr_nby6tvbCeZ1siu9kqo1_400\",\n    \"question\": \"what does the young person sit and plays?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9849\",\n    \"key\": \"34568\",\n    \"description\": \"a young person sits and plays some drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitvmqOok11r05qsbo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28304\",\n    \"key\": \"70773\",\n    \"description\": \"a red car swerves around a track and skids.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknb86YzIa1u3knpvo5_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11672\",\n    \"key\": \"12\",\n    \"description\": \"a white girl with black hair is drinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhsbn1IuVN1slqc17o1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41144\",\n    \"key\": \"20702\",\n    \"description\": \"a black guy is dancing in front of a white wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax1m6RT3M1taukq1o1_500\",\n    \"question\": \"where did the girl blow a kiss.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24607\",\n    \"key\": \"76436\",\n    \"description\": \"a girl in a dressing room blew a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejxcpZ7Tn1tbo2gbo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43076\",\n    \"key\": \"48764\",\n    \"description\": \"a gray tabby cat is enduring an attack from a puppy.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wrdo0tex1tff33do1_400\",\n    \"question\": \"what is the young woman holding up?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40296\",\n    \"key\": \"35209\",\n    \"description\": \"a young woman is holding up an angry-looking black cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3dziL8xT1rhy02xo1_500\",\n    \"question\": \"what is the man sitting very still and wearing?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38089\",\n    \"key\": \"72822\",\n    \"description\": \"a man is sitting very still and wearing sunglasses while two other men are laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbqb0Csnu1s0ov26o1_250\",\n    \"question\": \"what are spinning around?\",\n    \"answer\": \"rotors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32697\",\n    \"key\": \"4326\",\n    \"description\": \"a helicopter 's rotors are spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_naje2j4n8S1qazjvjo1_250\",\n    \"question\": \"what is the color of the robe?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3082\",\n    \"key\": \"47238\",\n    \"description\": \"a woman is wearing a black robe and yelling at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkm1e1fJVT1r8ici8o1_500\",\n    \"question\": \"how many guys are looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47703\",\n    \"key\": \"100860\",\n    \"description\": \"two guys are looking at each other and one is smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngyrfb6hzc1rlvjr1o1_400\",\n    \"question\": \"what is the color of the nose?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7792\",\n    \"key\": \"33915\",\n    \"description\": \"a person with white hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_njq3ur8qv41unykvpo1_400\",\n    \"question\": \"what is jumping into the snow?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39462\",\n    \"key\": \"46132\",\n    \"description\": \"a brown fox is jumping into the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1de5pymv1tx8mn0o1_400\",\n    \"question\": \"what drives down the race track and jumps jumped?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25297\",\n    \"key\": \"55734\",\n    \"description\": \"a car race car drives down the race track and jumps jumped.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelugrsfHA1qcaryto1_400\",\n    \"question\": \"where is the woman riding a horse.\",\n    \"answer\": \"? ranch\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26826\",\n    \"key\": \"35224\",\n    \"description\": \"a woman is riding a horse in a ranch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwzkgSJFc1qg0or6o1_400\",\n    \"question\": \"what is the color of the flags?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46960\",\n    \"key\": \"62997\",\n    \"description\": \"seven people are standing on podiums waving yellow flags.\"\n  },\n  {\n    \"video_name\": \"tumblr_neueo4Xx7q1t06o0xo1_400\",\n    \"question\": \"how many guys in the middle of the ring are spinning in a circle to see who can fall down first?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14892\",\n    \"key\": \"76566\",\n    \"description\": \"the four guys in the middle of the ring are spinning in a circle to see who can fall down first.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5c36L6Tk1s0zb3xo1_250\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28622\",\n    \"key\": \"1751\",\n    \"description\": \"a beautiful man with black clothes is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_now3qv2rty1tgouwlo1_400\",\n    \"question\": \"what is slowly eating its treat?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39193\",\n    \"key\": \"15794\",\n    \"description\": \"a tiny turtle is slowly eating its treat.\"\n  },\n  {\n    \"video_name\": \"tumblr_no3hrbcaP11up2ixko1_250\",\n    \"question\": \"what does the young girl lean out?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12264\",\n    \"key\": \"82954\",\n    \"description\": \"a young girl leans out a car window while it 's driving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabjhc7Adk1tgqy75o1_500\",\n    \"question\": \"what are driving over the bridge in the night?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40657\",\n    \"key\": \"83904\",\n    \"description\": \"several cars are driving over a bridge in the night.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8trqkKcnv1tdy2k0o1_400\",\n    \"question\": \"where are several young men dancing.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16268\",\n    \"key\": \"65679\",\n    \"description\": \"several young men are dancing in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfarhcHDam1seb8aro1_400\",\n    \"question\": \"where are the group of kittens playing.\",\n    \"answer\": \"? shower\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA2509\",\n    \"key\": \"65054\",\n    \"description\": \"a group of kittens are playing in the shower.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9rcd5g6r1sw5721o1_500\",\n    \"question\": \"where is the man grabbing another man 's shoulders.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13997\",\n    \"key\": \"91807\",\n    \"description\": \"a man is grabbing another man 's shoulders in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkxskmh3h1rlakuxo1_500\",\n    \"question\": \"how many men are boxing each other while others watch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39841\",\n    \"key\": \"95997\",\n    \"description\": \"two men are boxing each other while others watch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk43srE90O1t7ej2to1_250\",\n    \"question\": \"how many women are hugging and taking the photo?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23466\",\n    \"key\": \"13739\",\n    \"description\": \"three women are hugging and taking a photo.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xu4w1Lfq1tatohao1_400\",\n    \"question\": \"what is the gray cat kicking with its back leg?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27757\",\n    \"key\": \"40652\",\n    \"description\": \"a gray cat is kicking a door with its back leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvt8siwvI1s1tnf7o1_400\",\n    \"question\": \"what is the color of the tutu?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7113\",\n    \"key\": \"77723\",\n    \"description\": \"a ballerina in a black top and white tutu is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n961ixhQyx1ttxslwo1_250\",\n    \"question\": \"how many costumed men walk down the hallway talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46734\",\n    \"key\": \"21630\",\n    \"description\": \"two costumed men walk down a hallway talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni20ssyPb91u84fnpo1_400\",\n    \"question\": \"how many beautiful men with long hair are putting heads together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19944\",\n    \"key\": \"85079\",\n    \"description\": \"two beautiful men with long hair are putting heads together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbv7fnwnlh1tm2vn6o1_400\",\n    \"question\": \"how many men are playing rock,\",\n    \"answer\": \"paper , scissors as they stand by the door ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1980\",\n    \"key\": \"28619\",\n    \"description\": \"two men are playing rock,\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2hisJPt81sfz5oto1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18265\",\n    \"key\": \"36994\",\n    \"description\": \"a man in a brown shirt was standing in the wind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1ml2SDrL1tmaii4o1_250\",\n    \"question\": \"what is the woman rubbing with her fingers?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28849\",\n    \"key\": \"10057\",\n    \"description\": \"a woman is rubbing her mirrored sunglasses with her fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_njukcfEiK11r1n65mo1_400\",\n    \"question\": \"what is riding the skateboard and performing some tricks?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22707\",\n    \"key\": \"40925\",\n    \"description\": \"a cat is riding a skateboard and performing some tricks.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7ovlzraN1s8qlxdo1_500\",\n    \"question\": \"what carries an empty toilet paper roll?\",\n    \"answer\": \"hedgehog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3075\",\n    \"key\": \"67883\",\n    \"description\": \"a hedgehog carries an empty toilet paper roll.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9lkz6igG1uaf3d2o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2224\",\n    \"key\": \"2065\",\n    \"description\": \"a beautiful thin woman wearing a green dress is walking away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjptfMtGh1u83xiro1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33548\",\n    \"key\": \"40820\",\n    \"description\": \"a man in a blue jacket walks through an airport.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9066hvJ6R1tx8mn0o1_400\",\n    \"question\": \"what is driving the race car?\",\n    \"answer\": \"driver\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19809\",\n    \"key\": \"76810\",\n    \"description\": \"a race car driver is driving a race car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2rue39Be1qlxas3o1_400\",\n    \"question\": \"what is the blonde man playing and headbanging?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27634\",\n    \"key\": \"65531\",\n    \"description\": \"a blonde man is playing guitar and headbanging.\"\n  },\n  {\n    \"video_name\": \"tumblr_noundoF2gu1qjmps3o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15125\",\n    \"key\": \"65264\",\n    \"description\": \"a woman wearing a white top with brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nim4ueNtko1sgt69lo1_500\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43035\",\n    \"key\": \"41541\",\n    \"description\": \"a woman is smiling while a black cat sleeps next to her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7oleJL0U1rkoaqfo1_400\",\n    \"question\": \"how many wrestlers fell down in the ring together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38407\",\n    \"key\": \"52666\",\n    \"description\": \"two wrestlers fell down in the ring together.\"\n  },\n  {\n    \"video_name\": \"tumblr_naytkonAuO1scv4uso1_500\",\n    \"question\": \"how many men are looking towards the ceiling while one sings?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11684\",\n    \"key\": \"86741\",\n    \"description\": \"two men are looking towards the ceiling while one sings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4spuzkLx1u3aa5ho1_500\",\n    \"question\": \"how many guy talked to another guy?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38393\",\n    \"key\": \"99689\",\n    \"description\": \"one guy talked to another guy and he listened.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90x2fuBVp1skm6iho1_250\",\n    \"question\": \"how many people are sitting down laughing together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34727\",\n    \"key\": \"53681\",\n    \"description\": \"three people are sitting down laughing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gglqx17d1twg5ujo1_400\",\n    \"question\": \"what is the girl wearing glasses is petting?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41193\",\n    \"key\": \"31689\",\n    \"description\": \"a girl wearing glasses is petting a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqzylaAQ61s3tcgro1_500\",\n    \"question\": \"what is laughing inside of the bar?\",\n    \"answer\": \"queen\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37400\",\n    \"key\": \"58083\",\n    \"description\": \"a drag queen is laughing inside of a bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_np58jvmXRX1rl84n7o1_400\",\n    \"question\": \"what is the color of the helmet?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32776\",\n    \"key\": \"49007\",\n    \"description\": \"a guy in a blue sports uniform,\"\n  },\n  {\n    \"video_name\": \"tumblr_njoe9tQzNp1uneb7wo1_400\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24911\",\n    \"key\": \"30081\",\n    \"description\": \"a guy in a blue vest is playing with a hula hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_njk8dgIgDF1rrs7bmo1_500\",\n    \"question\": \"what is the color of the walls?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48459\",\n    \"key\": \"70881\",\n    \"description\": \"a guy stands in a hallway with blue walls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjv24ooua1u3f59ho1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9862\",\n    \"key\": \"7872\",\n    \"description\": \"a man with a black jacket rolls his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_new8owyMCV1s81cpko1_500\",\n    \"question\": \"where is the woman with blonde hair,\",\n    \"answer\": \"laying and crying on her pillow . ? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29892\",\n    \"key\": \"100331\",\n    \"description\": \"a woman with blonde hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_no0w1gQdxo1qk66rqo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10890\",\n    \"key\": \"90116\",\n    \"description\": \"the boy wearing a black shirt is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kithPB8s1twwysgo1_400\",\n    \"question\": \"what is being applied to the young woman 's lips?\",\n    \"answer\": \"pencil\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15009\",\n    \"key\": \"45757\",\n    \"description\": \"pink lip pencil is being applied to a young woman 's lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivsjccx9w1r05qsbo1_400\",\n    \"question\": \"what got out of balance on a car racing?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22351\",\n    \"key\": \"68322\",\n    \"description\": \"the red car got out of balance on a car racing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl375sM5GF1tigieto1_400\",\n    \"question\": \"how many teams are playing the soccer match,\",\n    \"answer\": \"when one side scores a goal ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17450\",\n    \"key\": \"101682\",\n    \"description\": \"two teams are playing a soccer match,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkirmvB9yO1u7ri8ro1_500\",\n    \"question\": \"what is the boy using and sneezing in slow motion?\",\n    \"answer\": \"laptop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2973\",\n    \"key\": \"45016\",\n    \"description\": \"a boy is using his laptop and sneezing in slow motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfao9fM1Ph1tqwtb6o1_250\",\n    \"question\": \"how many men sit together and smile and laugh?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40568\",\n    \"key\": \"27818\",\n    \"description\": \"two men sit together and smile and laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfkf6PEqV1u287g3o1_500\",\n    \"question\": \"where is the man playing the guitar.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6921\",\n    \"key\": \"34368\",\n    \"description\": \"a man is playing the guitar in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkfviG28R1u1z0zno1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12067\",\n    \"key\": \"8282\",\n    \"description\": \"the guy with the red hair and white shirt is in shock.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbzrln3AJ1rbm647o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4548\",\n    \"key\": \"15701\",\n    \"description\": \"a man with blue hair is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nculypGc871u0x3uvo1_500\",\n    \"question\": \"what is the man wearing a suit and tie is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37363\",\n    \"key\": \"69278\",\n    \"description\": \"a man wearing a suit and tie is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee3oelZr21tl3pamo1_250\",\n    \"question\": \"where does one man push another man.\",\n    \"answer\": \"? office\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10774\",\n    \"key\": \"3856\",\n    \"description\": \"one man pushes another man in an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pk4lxsBA1tfou2zo1_400\",\n    \"question\": \"where is the man dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45589\",\n    \"key\": \"69872\",\n    \"description\": \"a man is dancing in the living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uqen1tDV1sfmhxao1_400\",\n    \"question\": \"what is the dog eating?\",\n    \"answer\": \"food\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1252\",\n    \"key\": \"63448\",\n    \"description\": \"the dog is eating its dog food.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9bjmjCEh1un86uao1_400\",\n    \"question\": \"what falls trying to walk?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24003\",\n    \"key\": \"72641\",\n    \"description\": \"a white and blue robot falls trying to walk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nac2p29bq51srzj7lo1_250\",\n    \"question\": \"what is the color of the blazer?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26878\",\n    \"key\": \"8489\",\n    \"description\": \"a boy puts something in the pocket of his white blazer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwuw0DVot1rftdx0o1_400\",\n    \"question\": \"what is going along the sea in a rough wave?\",\n    \"answer\": \"ship\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41093\",\n    \"key\": \"69984\",\n    \"description\": \"the ship is going along the sea in a rough wave.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9adwvqs131rw8dw3o1_400\",\n    \"question\": \"how many man is smiling at another dirty man?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21043\",\n    \"key\": \"65019\",\n    \"description\": \"one man is smiling at another dirty man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk77q2amba1unawq7o1_250\",\n    \"question\": \"how many beautiful girls with long hair are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43626\",\n    \"key\": \"15856\",\n    \"description\": \"two beautiful girls with long hair are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvp6qwyZi1tx8mn0o1_400\",\n    \"question\": \"what goes of the track while attempting to take a corner at speed?\",\n    \"answer\": \"truck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52996\",\n    \"key\": \"55600\",\n    \"description\": \"a truck goes of a track while attempting to take a corner at speed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbymug4lI1tjxr89o1_400\",\n    \"question\": \"where is an army tank doing doughnuts.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21136\",\n    \"key\": \"69634\",\n    \"description\": \"an army tank is doing doughnuts in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhgtj3FQM21rouslso1_400\",\n    \"question\": \"what is the man hugging and sleeping?\",\n    \"answer\": \"pillow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43224\",\n    \"key\": \"87961\",\n    \"description\": \"a man is hugging a pillow and sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_na02l5mrrH1tgetb4o1_400\",\n    \"question\": \"what picks up the crumb of food and offers it to the cat that refuses to eat it while the dog does?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50827\",\n    \"key\": \"82095\",\n    \"description\": \"a bird picks up a crumb of food and offers it to the cat that refuses to eat it while the dog does.\"\n  },\n  {\n    \"video_name\": \"tumblr_nprpm1WJLb1uxtn9jo1_400\",\n    \"question\": \"what is jumping into the snowdrift?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30893\",\n    \"key\": \"75011\",\n    \"description\": \"a fox is jumping into a snowdrift.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacqaixw0M1r2atcqo1_500\",\n    \"question\": \"how many beautiful ladies with soccer clothes are making exercises?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15972\",\n    \"key\": \"55027\",\n    \"description\": \"two beautiful ladies with soccer clothes are making exercises.\"\n  },\n  {\n    \"video_name\": \"tumblr_nps8udvCeF1urlrpuo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27666\",\n    \"key\": \"92986\",\n    \"description\": \"a woman turns to hug a young man standing by a white car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0v8hQfU71sjuzlno1_400\",\n    \"question\": \"what is the color of the squash?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8210\",\n    \"key\": \"37917\",\n    \"description\": \"a white pet bird is pecking at a small orange squash.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pwqeVOHS1smsztso1_500\",\n    \"question\": \"how many men are sitting on the couch,\",\n    \"answer\": \"one with an arm on the other ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45218\",\n    \"key\": \"11023\",\n    \"description\": \"two men are sitting on a couch,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9pqpnV1K1qz874do1_500\",\n    \"question\": \"what hang on the clothes line and blow in the wind?\",\n    \"answer\": \"sheets\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36553\",\n    \"key\": \"99519\",\n    \"description\": \"white sheets hang on a clothes line and blow in the wind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2gpfzSk21tk2ngvo1_250\",\n    \"question\": \"what are playing very funny in the room?\",\n    \"answer\": \"rabbits\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26296\",\n    \"key\": \"13592\",\n    \"description\": \"two rabbits are playing very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3jkb2jro1tjoy7to1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23279\",\n    \"key\": \"17786\",\n    \"description\": \"a girl with red hair turn to the right and opens her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb4y8ZLES1t03l64o1_400\",\n    \"question\": \"what is skidding down the track sideways?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39945\",\n    \"key\": \"42848\",\n    \"description\": \"a race car is skidding down the track sideways.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwyadLrQK1qb0dkjo1_400\",\n    \"question\": \"how many men with fake injuries are grinning?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31460\",\n    \"key\": \"40672\",\n    \"description\": \"two men with fake injuries are grinning and one has two teeth missing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfl2gcItVI1tl3ivmo1_500\",\n    \"question\": \"what is the short hair person with glasses eating?\",\n    \"answer\": \"pizza\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30991\",\n    \"key\": \"95859\",\n    \"description\": \"a short hair person with glasses is eating pizza while another man is holding a pizza box.\"\n  },\n  {\n    \"video_name\": \"tumblr_naqqqzR4NB1tx8mn0o1_400\",\n    \"question\": \"what spins around the curve of a racetrack?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34184\",\n    \"key\": \"90290\",\n    \"description\": \"car spins around the curve of a racetrack.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndar2w45c51t7jda2o1_250\",\n    \"question\": \"what does the girl slam dunk in outdoor?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45516\",\n    \"key\": \"3625\",\n    \"description\": \"a girl slam dunks a ball in outdoor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nox34tXaCU1u95gjqo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52313\",\n    \"key\": \"64245\",\n    \"description\": \"a man with black suit is walking another men.\"\n  },\n  {\n    \"video_name\": \"tumblr_nglb9d1D1O1tbjx0uo1_500\",\n    \"question\": \"what is the color of the wings?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22684\",\n    \"key\": \"54730\",\n    \"description\": \"a woman is wearing black wings and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_naqr8iApeZ1tknp3uo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15588\",\n    \"key\": \"18053\",\n    \"description\": \"a young man in a blue shirt is getting water dumped on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_navzhxd3PB1tz9jaqo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40864\",\n    \"key\": \"48481\",\n    \"description\": \"a sportsman in a blue shirt is clapping his gloved hands together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndruvpvdl31rojrheo1_500\",\n    \"question\": \"what is the color of the jeep?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50836\",\n    \"key\": \"70799\",\n    \"description\": \"a guy with red pants'\"\n  },\n  {\n    \"video_name\": \"tumblr_n9siyhJeK01sz068fo1_400\",\n    \"question\": \"what is moving her claws near somebody?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27771\",\n    \"key\": \"80179\",\n    \"description\": \"a cat is moving her claws near somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9738qiDj1qlnmvgo1_400\",\n    \"question\": \"where did the woman move her hand in front of her face.\",\n    \"answer\": \"? glove\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36207\",\n    \"key\": \"69562\",\n    \"description\": \"a woman in a black glove moved her hand in front of her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7emoSSII1uuekcqo1_500\",\n    \"question\": \"what are the boys taking off?\",\n    \"answer\": \"shirts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15790\",\n    \"key\": \"90515\",\n    \"description\": \"the boys are taking off their shirts.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfv8zfjW0v1rwe02ao1_250\",\n    \"question\": \"how many people are talking to an interviewer?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33069\",\n    \"key\": \"45681\",\n    \"description\": \"two people are talking to an interviewer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwilrpYiI1tkogwwo1_500\",\n    \"question\": \"what is opening into the larger table?\",\n    \"answer\": \"table\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1337\",\n    \"key\": \"54276\",\n    \"description\": \"a large round table is opening into a larger table.\"\n  },\n  {\n    \"video_name\": \"tumblr_neokw6f6dx1r0gzqfo1_400\",\n    \"question\": \"what is the color of the polish?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6440\",\n    \"key\": \"33879\",\n    \"description\": \"a man wearing black fingernail polish rubs his eye sleepily.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhccwxLB7g1tigieto1_400\",\n    \"question\": \"how many soccer teams is this battling for the ball?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19260\",\n    \"key\": \"76338\",\n    \"description\": \"this is two soccer teams battling for the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_npu3dmmwdW1srz1ujo1_250\",\n    \"question\": \"what does the girl hold up?\",\n    \"answer\": \"bat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43402\",\n    \"key\": \"12627\",\n    \"description\": \"a girl holds up a baseball bat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemscyeADV1sd32fxo1_500\",\n    \"question\": \"how many men are smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10593\",\n    \"key\": \"60111\",\n    \"description\": \"two men are smiling and a man scratches his chin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvlitw9nW1t5ygabo1_400\",\n    \"question\": \"how many females on chairs wave at the cop?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42620\",\n    \"key\": \"64594\",\n    \"description\": \"four females on chairs wave at the cop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav6oaPHdu1tkrm74o1_500\",\n    \"question\": \"how many people turn to face someone in front of them?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50421\",\n    \"key\": \"68826\",\n    \"description\": \"three people turn to face someone in front of them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmcdxUw7y1sl9u6jo1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44110\",\n    \"key\": \"12789\",\n    \"description\": \"a guy dressed in black is telling something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkya8yAVNN1tde1woo1_250\",\n    \"question\": \"how many men are standing together one man moves his head around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36330\",\n    \"key\": \"8206\",\n    \"description\": \"two men are standing together one man moves his head around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbe1zfc8PP1tkras0o1_500\",\n    \"question\": \"how many teams is wearing black and white are skating across the ice holding hockey sticks?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19835\",\n    \"key\": \"62556\",\n    \"description\": \"two teams wearing black and white are skating across the ice holding hockey sticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfz7kmxjde1tssk6do1_400\",\n    \"question\": \"what is the girl sitting in the dark drinks?\",\n    \"answer\": \"coffee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25327\",\n    \"key\": \"32004\",\n    \"description\": \"a girl sitting in the dark drinks some coffee.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf4x2c4BCf1tid424o1_250\",\n    \"question\": \"what is the man wearing behind his ear?\",\n    \"answer\": \"scratched\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38251\",\n    \"key\": \"19280\",\n    \"description\": \"a man wearing a white hat scratched behind his ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_n7xfccgKwl1sjcw61o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35522\",\n    \"key\": \"51636\",\n    \"description\": \"a young woman in a black dress is tilting her head to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94g0xApdN1rqb3bqo1_500\",\n    \"question\": \"how many football players are hugging as the celebration?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37736\",\n    \"key\": \"96156\",\n    \"description\": \"two football players are hugging as a celebration.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8o1nWNXz1u5segmo1_400\",\n    \"question\": \"how many men are holding objects two are clicking red lights?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17380\",\n    \"key\": \"76676\",\n    \"description\": \"three men are holding objects two are clicking red lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqb79tYlU81utdor9o1_400\",\n    \"question\": \"what is the color of the curtains?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4469\",\n    \"key\": \"83569\",\n    \"description\": \"the man is walking away past some white curtains.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhd7axFTLH1sagouso1_500\",\n    \"question\": \"what is the young woman on stage taking?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32977\",\n    \"key\": \"71549\",\n    \"description\": \"a young woman on stage is taking a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nappfviAuS1tfuo7co1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34105\",\n    \"key\": \"31319\",\n    \"description\": \"two young girls with black hair are kissing and posing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ucnlmCk51qzxorvo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34133\",\n    \"key\": \"9249\",\n    \"description\": \"a person in a red shirt is drinking a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5svmC3HW1tbppspo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33119\",\n    \"key\": \"32239\",\n    \"description\": \"a woman in a black dress stood on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbtxwbsTf1sbnzfro1_250\",\n    \"question\": \"how many man is laughing at another man holding a guitar?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32202\",\n    \"key\": \"23081\",\n    \"description\": \"one man is laughing at another man holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1yi5TXGX1s62it9o1_250\",\n    \"question\": \"what is the person pouring on a stack of pancakes?\",\n    \"answer\": \"syrup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19866\",\n    \"key\": \"90631\",\n    \"description\": \"a person is pouring maple syrup on a stack of pancakes.\"\n  },\n  {\n    \"video_name\": \"tumblr_mr12up76jT1suye07o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50606\",\n    \"key\": \"4039\",\n    \"description\": \"a girl with long black hair takes a group of photos of herself in different poses.\"\n  },\n  {\n    \"video_name\": \"tumblr_na95y0Ys5c1rjao7ro1_400\",\n    \"question\": \"what does the creepy man break?\",\n    \"answer\": \"wall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25099\",\n    \"key\": \"99035\",\n    \"description\": \"a creepy man breaks the fourth wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexxznjybj1sto45zo1_400\",\n    \"question\": \"what falls from the sky and lands on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2852\",\n    \"key\": \"42866\",\n    \"description\": \"a car falls from the sky and lands on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk32pnnazT1skvgwao1_400\",\n    \"question\": \"how many men with black coats are exiting a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8551\",\n    \"key\": \"83387\",\n    \"description\": \"two men with black coats are exiting a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkxa7jWy61ts48umo1_500\",\n    \"question\": \"what is the boy eating and smiling?\",\n    \"answer\": \"cone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44081\",\n    \"key\": \"40066\",\n    \"description\": \"a boy is eating an ice cream cone and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk484h7Rb21tyhr1ho1_400\",\n    \"question\": \"how many people are having an argument in the ocean?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44457\",\n    \"key\": \"78825\",\n    \"description\": \"two people are having an argument in the ocean.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpumpvxAx1tawgedo2_500\",\n    \"question\": \"how many young guys in front of microphones and with headphones are laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12744\",\n    \"key\": \"91438\",\n    \"description\": \"three young guys in front of microphones and with headphones are laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokpkycdga1r2buvvo1_250\",\n    \"question\": \"how many people are fighting,\",\n    \"answer\": \"while the larger man breaks up the fight ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36293\",\n    \"key\": \"3855\",\n    \"description\": \"2 people are fighting,\"\n  },\n  {\n    \"video_name\": \"tumblr_njvyypTKbV1uo3x7lo1_400\",\n    \"question\": \"where are two people sitting.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27032\",\n    \"key\": \"87486\",\n    \"description\": \"two people are sitting in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncc1ycDVbj1rijrceo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43300\",\n    \"key\": \"88715\",\n    \"description\": \"a woman wearing a black jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_na4kccYkUt1slyjblo1_400\",\n    \"question\": \"what is the man swinging and struggling with another man?\",\n    \"answer\": \"bat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17365\",\n    \"key\": \"79101\",\n    \"description\": \"a man is swinging a bat and struggling with another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_niv97maKxN1tapxt5o1_400\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12051\",\n    \"key\": \"58280\",\n    \"description\": \"a guy is sitting in a red chair and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngoujoc3wq1t2gwrqo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51013\",\n    \"key\": \"76940\",\n    \"description\": \"a man with black hair is swimming in a swimming pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdeeniOGl1s06j30o1_400\",\n    \"question\": \"what is passing through water with speed?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50119\",\n    \"key\": \"57148\",\n    \"description\": \"a car is passing through water with speed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1ean3ue01sg4418o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17378\",\n    \"key\": \"5756\",\n    \"description\": \"a boy with brown hair and a butterfly tattoo on his chest wears no shirt and walks in place while another guy thrusts behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwfzx0hL91tgkdkbo1_250\",\n    \"question\": \"what is dog wearing a red cape pushes and jumps on?\",\n    \"answer\": \"scooter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32546\",\n    \"key\": \"5671\",\n    \"description\": \"dog wearing a red cape pushes a scooter and jumps on.\"\n  },\n  {\n    \"video_name\": \"tumblr_n88tfbzgHU1rhy09eo1_500\",\n    \"question\": \"what drove through the garage with no time at all?\",\n    \"answer\": \"drives\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2671\",\n    \"key\": \"92569\",\n    \"description\": \"a car drives drove through a garage with no time at all.\"\n  },\n  {\n    \"video_name\": \"tumblr_nra1bqjxbb1tdn56eo1_400\",\n    \"question\": \"what does the man move to his lips?\",\n    \"answer\": \"close\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4112\",\n    \"key\": \"74144\",\n    \"description\": \"a man moves his wrist watch close to his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj462r5ObB1rpx9qeo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15997\",\n    \"key\": \"56139\",\n    \"description\": \"the man with the white shirt is lying on the floor in the hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nho36xy72u1sfxtxno1_1280\",\n    \"question\": \"how many males are wearing hats and chewing gum?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46988\",\n    \"key\": \"56346\",\n    \"description\": \"two males are wearing hats and chewing gum.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qnb2z4Va1teyig6o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37988\",\n    \"key\": \"95017\",\n    \"description\": \"a man wearing a black shirt is eating food with a spoon.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyfaouv1s1tplwgro1_500\",\n    \"question\": \"what does the guy put on a luggage rack in a hotel room?\",\n    \"answer\": \"luggage\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28613\",\n    \"key\": \"60868\",\n    \"description\": \"a guy puts luggage on a luggage rack in a hotel room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5iztgMBE1upitezo1_400\",\n    \"question\": \"how many children walk hand in hand with an adult?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1666\",\n    \"key\": \"54129\",\n    \"description\": \"four children walk hand in hand with an adult.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uckhNDnS1to3k6do1_500\",\n    \"question\": \"what leaves smoke behind as it races down the course?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36767\",\n    \"key\": \"66915\",\n    \"description\": \"a race car leaves smoke behind as it races down the course.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3cvnawGP1tkgy96o1_400\",\n    \"question\": \"how many women who appear to be friends are hugging each other and screaming?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29165\",\n    \"key\": \"38899\",\n    \"description\": \"two women who appear to be friends are hugging each other and screaming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgljvCbkT1u41fj6o1_250\",\n    \"question\": \"where is the woman wearing a blue sweatshirt is riding.\",\n    \"answer\": \"? vehicle\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10552\",\n    \"key\": \"14703\",\n    \"description\": \"a woman wearing a blue sweatshirt is riding in a vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqd3r08hF1tbdxy1o1_400\",\n    \"question\": \"what is the very cute boy playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25102\",\n    \"key\": \"29884\",\n    \"description\": \"a very cute boy is playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng39jqAGro1tj86sdo1_400\",\n    \"question\": \"how many people does this show that are sitting on a hard wood floor doing different gestures with their arms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43992\",\n    \"key\": \"64069\",\n    \"description\": \"this shows two people that are sitting on a hard wood floor doing different gestures with their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuw5ruVDR1unixz7o1_400\",\n    \"question\": \"where is the sad animal sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22760\",\n    \"key\": \"40086\",\n    \"description\": \"a sad animal is sitting in its chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwdo4WvDN1u967xao1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA628\",\n    \"key\": \"72906\",\n    \"description\": \"a man in a brown coat stood over a man in a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguc5he8Eg1tp0axfo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22272\",\n    \"key\": \"32227\",\n    \"description\": \"a girl with curly dark hair is wearing a bright red shirt and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl24xtN6ei1u39i7yo1_250\",\n    \"question\": \"how many men is standing inside are hugging and kissing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40693\",\n    \"key\": \"5535\",\n    \"description\": \"two men standing inside are hugging and kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vswusTl91tnyxl4o1_500\",\n    \"question\": \"where does the young man smile cheekily.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40729\",\n    \"key\": \"76812\",\n    \"description\": \"a young man in a crowded room smiles cheekily.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnyem6v3Lw1u8l6ewo1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46696\",\n    \"key\": \"87559\",\n    \"description\": \"a guy in black is turning around and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne29e5pZmc1sz068fo1_250\",\n    \"question\": \"what jumps and plays with her puppies?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31538\",\n    \"key\": \"40146\",\n    \"description\": \"a mother dogs jumps and plays with her puppies.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghto1RCpc1ts22kko1_400\",\n    \"question\": \"what is the man thrown and crashes?\",\n    \"answer\": \"lift\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36740\",\n    \"key\": \"81056\",\n    \"description\": \"a man is thrown and a fork lift crashes.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzkbhJCQ51sp70bgo1_250\",\n    \"question\": \"how many young men one wearing a baseball cap are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32796\",\n    \"key\": \"7563\",\n    \"description\": \"two young men one wearing a baseball cap are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjfm8LunL1tlv2g2o1_400\",\n    \"question\": \"what is the color of the box?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40644\",\n    \"key\": \"78926\",\n    \"description\": \"a cat tries to jump into a white box and flips over backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_np5yr0px4O1twfmf3o1_400\",\n    \"question\": \"what is feeding the cat and dog?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18110\",\n    \"key\": \"18589\",\n    \"description\": \"the bird is feeding the cat and dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2vkqraUl1s6zpepo1_250\",\n    \"question\": \"what is looking the hand?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22979\",\n    \"key\": \"44090\",\n    \"description\": \"a black monkey is looking the hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n993yi7TgY1sjuzlno1_400\",\n    \"question\": \"what is climbing through the cardboard tube?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4591\",\n    \"key\": \"8582\",\n    \"description\": \"a bird is climbing through a cardboard tube.\"\n  },\n  {\n    \"video_name\": \"tumblr_np5134IWAi1tpg4boo1_400\",\n    \"question\": \"what taught to beg for something?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20498\",\n    \"key\": \"33617\",\n    \"description\": \"a long-haired kitten being taught to beg for something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffsy8wfSM1t2t9szo1_400\",\n    \"question\": \"what turns around and wags its tail?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49606\",\n    \"key\": \"35128\",\n    \"description\": \"a furry dog turns around and wags its tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1g2pJnfJ1sk96t7o1_400\",\n    \"question\": \"what spins out between two trucks on a freeway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23685\",\n    \"key\": \"8106\",\n    \"description\": \"a car spins out between two trucks on a freeway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb45dqeKN21sdbrm9o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34866\",\n    \"key\": \"66071\",\n    \"description\": \"a beautiful man with white shirt is walking on the stage with a microphone in hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vk28nV921tv6x4go1_500\",\n    \"question\": \"how many ghost is trying to scare the audience?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21220\",\n    \"key\": \"68505\",\n    \"description\": \"two ghost trying to scare the audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfv8zfjW0v1rwe02ao1_250\",\n    \"question\": \"how many men are talking and making hand gestures?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43315\",\n    \"key\": \"45681\",\n    \"description\": \"two men are talking and making hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zd1nDo0B1rwgxlqo1_500\",\n    \"question\": \"what is the horse trainer exercising in a building?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50607\",\n    \"key\": \"70645\",\n    \"description\": \"a horse trainer is exercising her horse in a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7ys7Apj91t8s5t0o1_540\",\n    \"question\": \"how many man throws his hat?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35179\",\n    \"key\": \"81259\",\n    \"description\": \"five men sit in a semi-circle while a timer counts down,\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzs6i5ro1u25ovvo1_400\",\n    \"question\": \"what is going on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3384\",\n    \"key\": \"63645\",\n    \"description\": \"a white car is going on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9l0c8Pja1sjxysio1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24794\",\n    \"key\": \"76544\",\n    \"description\": \"a man in a black shirt with a frown suddenly starts to smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_nds8crBvqP1tml03go1_400\",\n    \"question\": \"what does the kitten raise towards something?\",\n    \"answer\": \"paw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50048\",\n    \"key\": \"53863\",\n    \"description\": \"a kitten raises its paw towards something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4jraMcwT1u3gi2vo1_500\",\n    \"question\": \"how many man is talking?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24585\",\n    \"key\": \"89732\",\n    \"description\": \"one man is talking and the other is giving the thumbs up sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc4qhn5me1tdx46ao1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49543\",\n    \"key\": \"52402\",\n    \"description\": \"a young man with black hair is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_newsvqZ4qi1rkvelpo1_400\",\n    \"question\": \"what are the men holding up?\",\n    \"answer\": \"frame\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50722\",\n    \"key\": \"46170\",\n    \"description\": \"the men are holding up a paper picture frame to have their picture made.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4mckbaQB1qh2eiuo1_400\",\n    \"question\": \"what is the color of the male?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24481\",\n    \"key\": \"66426\",\n    \"description\": \"a male dressed in black is singing and playing electric guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtqv2WV6P1u0alpro1_500\",\n    \"question\": \"what is the person showing off?\",\n    \"answer\": \"shoes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3656\",\n    \"key\": \"56760\",\n    \"description\": \"the person is showing off their platform shoes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxxjq1Fib1smv1p3o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46047\",\n    \"key\": \"2554\",\n    \"description\": \"a man in a white shirt is dancing sideways.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7yamQvrO1tg38keo1_250\",\n    \"question\": \"how many boy shimmies and smiles?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8891\",\n    \"key\": \"9035\",\n    \"description\": \"one boy shimmies and smiles,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj45x0Ant1sn5krco1_500\",\n    \"question\": \"what is the guy buttoning up?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33790\",\n    \"key\": \"76769\",\n    \"description\": \"a guy is buttoning up his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbrltf1I31tx8mn0o1_400\",\n    \"question\": \"how many cars raced?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49707\",\n    \"key\": \"86057\",\n    \"description\": \"three cars raced and one drove off the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nciapoyvN51u00hdxo2_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52044\",\n    \"key\": \"95757\",\n    \"description\": \"a man in a yellow top is moving his head to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx7xo7jQW1u6hunpo1_400\",\n    \"question\": \"what is the man playing and singing into a microphone?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9363\",\n    \"key\": \"31891\",\n    \"description\": \"a man is playing the guitar and singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0cdlJuRc1r1rl4fo1_250\",\n    \"question\": \"where is the woman laying reading a magazine.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27628\",\n    \"key\": \"8191\",\n    \"description\": \"a woman is laying in her bed reading a magazine.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9uwvyjpy1r23fzwo1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43026\",\n    \"key\": \"59214\",\n    \"description\": \"a black horse is running happily around a brown horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc43dlSitp1qz5yzjo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12905\",\n    \"key\": \"98023\",\n    \"description\": \"a white man with black shirt is stop and looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngbtze9cdg1u4u0oeo1_400\",\n    \"question\": \"how many girls with pig tails and lean in towards the middle of the table?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15332\",\n    \"key\": \"63492\",\n    \"description\": \"two girls with pig tails and lean in towards the middle of the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfesdbDpzJ1u41fj6o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38590\",\n    \"key\": \"15439\",\n    \"description\": \"a woman wearing a black top with dark brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_ni01txhXte1tx8mn0o1_400\",\n    \"question\": \"where do two helmeted people sit.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3293\",\n    \"key\": \"79270\",\n    \"description\": \"two helmeted people sit in a driving race car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nde0e5AYBy1r80g0io1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4102\",\n    \"key\": \"16995\",\n    \"description\": \"a young man in a white top sits in a patterned chair and blinks his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl24faq4tH1uo8kgzo1_500\",\n    \"question\": \"how many guys are sitting on the roof and talking to one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47677\",\n    \"key\": \"81844\",\n    \"description\": \"two guys are sitting on a roof and talking to one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0q4uRErR1sgyo02o1_540\",\n    \"question\": \"what is the man bringing to his mouth?\",\n    \"answer\": \"cigar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4412\",\n    \"key\": \"89856\",\n    \"description\": \"a man is bringing a cigar to his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4rt94t1g1tdjuqvo1_400\",\n    \"question\": \"what is emerging from the large pile of snow?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19100\",\n    \"key\": \"86983\",\n    \"description\": \"a dog is emerging from a large pile of snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq513q76F81u3cb3fo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40597\",\n    \"key\": \"46038\",\n    \"description\": \"three girl with black shirt are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0nfx9TmT1tcnublo1_250\",\n    \"question\": \"how many men hold their faces close to one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5052\",\n    \"key\": \"23387\",\n    \"description\": \"two men hold their faces close to one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh3y0lqgx1tuj3bpo1_400\",\n    \"question\": \"what knocks the cat in to a bath tub and the cat jumps back out?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42099\",\n    \"key\": \"34855\",\n    \"description\": \"a dog knocks a cat in to a bath tub and the cat jumps back out.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncjlbfKQeY1qma4ejo1_500\",\n    \"question\": \"how many people are kissing and laughing and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49187\",\n    \"key\": \"34375\",\n    \"description\": \"two people are kissing and laughing and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_npx35lQNlc1tg6dv1o1_500\",\n    \"question\": \"how many people kissing and lit only by the small light that one is swinging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35939\",\n    \"key\": \"11124\",\n    \"description\": \"two people kissing and lit only by a small light that one is swinging.\"\n  },\n  {\n    \"video_name\": \"tumblr_nen2gpqUlI1tx8mn0o1_400\",\n    \"question\": \"what loses its trunk while driving on a track with several other cars?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27691\",\n    \"key\": \"55482\",\n    \"description\": \"a race car loses its trunk while driving on a track with several other cars.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhklesKZzn1stnum9o1_400\",\n    \"question\": \"what is the girl waving and smiling and wearing?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47269\",\n    \"key\": \"32469\",\n    \"description\": \"a girl is waving and smiling and wearing glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpkdsmBEF1u1graho1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14885\",\n    \"key\": \"9957\",\n    \"description\": \"a young man wearing a blue shirt is playing with dog on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfck4ufpLo1t1o9tno1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23656\",\n    \"key\": \"27615\",\n    \"description\": \"a man wearing a blue shirt and shiny suit turns his head and pats his afro.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguxxvuPLQ1s6sj31o1_400\",\n    \"question\": \"where are the group of people trying to stop a leak.\",\n    \"answer\": \"? bathroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9985\",\n    \"key\": \"27403\",\n    \"description\": \"a group of people are trying to stop a leak in a bathroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_na072o293v1tzs6b2o1_500\",\n    \"question\": \"how many woman pouts as she looks another woman in the face?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10872\",\n    \"key\": \"92883\",\n    \"description\": \"one woman pouts as she looks another woman in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmbc0mImx1tvkq6vo1_250\",\n    \"question\": \"what is the man in a black shirt holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38667\",\n    \"key\": \"17162\",\n    \"description\": \"a man in a black shirt is holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96fzvPIrN1s2wg51o1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51259\",\n    \"key\": \"46532\",\n    \"description\": \"a person in a green top is riding a dark horse who is galloping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqx3b5Le21sz068fo1_250\",\n    \"question\": \"how many cats are playing with each other in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3571\",\n    \"key\": \"24078\",\n    \"description\": \"two cats are playing with each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_npvd59Kkj41urzqxmo1_500\",\n    \"question\": \"what is the color of the playing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41000\",\n    \"key\": \"101769\",\n    \"description\": \"this image is of a man in black playing with his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnq4tzM7M51urqm0mo1_500\",\n    \"question\": \"what are flying over the desert?\",\n    \"answer\": \"airplanes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32635\",\n    \"key\": \"85138\",\n    \"description\": \"two planes are flying over a desert.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdfc4Icvr1r1ga5qo1_400\",\n    \"question\": \"what does the guy with a plaid shirt sing and plays?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48953\",\n    \"key\": \"56612\",\n    \"description\": \"a guy with a plaid shirt sings and plays the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5pmkrxPP1tm39w8o1_500\",\n    \"question\": \"what is holding the baby panda bear?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10459\",\n    \"key\": \"99498\",\n    \"description\": \"a panda bear is holding a baby panda bear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nff9h9wrPu1u0tsh3o1_400\",\n    \"question\": \"how many people hold their hands to their face while coughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8\",\n    \"key\": \"62154\",\n    \"description\": \"two people hold their hands to their face while coughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0sftU2oI1sgc1txo1_400\",\n    \"question\": \"what is being confused and tilting his adorable head?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44211\",\n    \"key\": \"1442\",\n    \"description\": \"a wiener dog is being confused and tilting his adorable head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqm4eBnny1qhxpzlo1_500\",\n    \"question\": \"how many hockey players are hugging each other on the ice?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40136\",\n    \"key\": \"67200\",\n    \"description\": \"two hockey players are hugging each other on the ice.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8xogFyv21rcxrido1_400\",\n    \"question\": \"what is the man with black hair glancing out?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26801\",\n    \"key\": \"45115\",\n    \"description\": \"a man with black hair is glancing out a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzhkq39Nz1twdzc1o1_250\",\n    \"question\": \"what does the cat jump to a door latch,\",\n    \"answer\": \"opens the door , and the cat and four dogs enter through the door ? building\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49703\",\n    \"key\": \"8947\",\n    \"description\": \"a cat jumps to a door latch,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9nfflcHiD1sib7jco1_250\",\n    \"question\": \"what is moving up and down?\",\n    \"answer\": \"pigeon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21464\",\n    \"key\": \"7707\",\n    \"description\": \"a pigeon is moving up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9bkrCAkG1tjmhcco1_500\",\n    \"question\": \"what shut both eyes simultaneously?\",\n    \"answer\": \"blinks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35570\",\n    \"key\": \"89890\",\n    \"description\": \"a boy blinks shut both eyes simultaneously.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr75qe0zTP1r4lhi3o1_400\",\n    \"question\": \"what is looking left and right?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43161\",\n    \"key\": \"29492\",\n    \"description\": \"the man wearing makeup is looking left and right.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxauxAEZA1ssgk4vo1_500\",\n    \"question\": \"what is the woman in an office answering?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13520\",\n    \"key\": \"65252\",\n    \"description\": \"a woman in an office is answering her cell phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0jf2Dmtj1tr5tuwo1_500\",\n    \"question\": \"what is the color of the cars?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31691\",\n    \"key\": \"71919\",\n    \"description\": \"two white race cars turn a corner fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncx9u3ivlb1tdmffyo1_400\",\n    \"question\": \"what does the big dog let out of it 's cage?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39218\",\n    \"key\": \"101281\",\n    \"description\": \"a big dog lets a smaller dog out of it 's cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fl1v6DiP1rn8lhxo1_500\",\n    \"question\": \"what is the color of the sports?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26868\",\n    \"key\": \"95276\",\n    \"description\": \"a man is wearing white oriental sports clothing and has a hand to his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9rcq0fb11qewsw4o1_540\",\n    \"question\": \"how many men are walking past the woman in a hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19326\",\n    \"key\": \"41991\",\n    \"description\": \"two men are walking past a woman in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94qcs8lKc1t0ud6co1_250\",\n    \"question\": \"what is he holding?\",\n    \"answer\": \"crotch\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22371\",\n    \"key\": \"21812\",\n    \"description\": \"he is holding his crotch as he rolls his hips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr6stqpbWn1uazlgho1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7071\",\n    \"key\": \"51100\",\n    \"description\": \"a woman in a white jacket is turning towards a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5w7sROwX1tjdvfuo1_400\",\n    \"question\": \"what runs around on white bed sheets?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16574\",\n    \"key\": \"80200\",\n    \"description\": \"a gray cat runs around on white bed sheets.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94g0xApdN1rqb3bqo1_500\",\n    \"question\": \"how many men are walking towards each other and then hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35213\",\n    \"key\": \"96156\",\n    \"description\": \"two men are walking towards each other and then hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0xfl7yCv1r687lto1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6924\",\n    \"key\": \"31907\",\n    \"description\": \"a woman smiles and waves while wearing glasses and a purple jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn67mXLk11qhddxpo6_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6117\",\n    \"key\": \"43915\",\n    \"description\": \"a man wearing a black jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndoptcS3Kt1u11azoo1_500\",\n    \"question\": \"how many men are pretending to dance in the street and one breaks away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3732\",\n    \"key\": \"60572\",\n    \"description\": \"two men are pretending to dance in the street and one breaks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2myzj0DY1tkpzw0o1_400\",\n    \"question\": \"what are two men climbing out and one falls?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42662\",\n    \"key\": \"18190\",\n    \"description\": \"two men are climbing out a window and one falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0vbrOZl91tqwxyeo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25876\",\n    \"key\": \"8669\",\n    \"description\": \"a guy in a plaid shirt and black hat is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n7cuepMM7D1rs656zo1_500\",\n    \"question\": \"what are the girl and guy loading with dishes?\",\n    \"answer\": \"dishwasher\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31497\",\n    \"key\": \"7366\",\n    \"description\": \"a girl and guy are loading a dishwasher with dishes.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvri85Mv81u33e4bo1_500\",\n    \"question\": \"what is the man standing up unbuttons and takes it off?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37794\",\n    \"key\": \"19169\",\n    \"description\": \"a man standing up unbuttons his jacket and takes it off.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwu84DGXF1slj978o1_400\",\n    \"question\": \"what is walking over the narrow platform above water?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9208\",\n    \"key\": \"40897\",\n    \"description\": \"a cat is walking over a narrow platform above water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhgtj3FQM21rouslso1_400\",\n    \"question\": \"what is the handsome young guy hugging?\",\n    \"answer\": \"pillow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36154\",\n    \"key\": \"87961\",\n    \"description\": \"a handsome young guy is hugging a pillow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrbcaupBvH1tfnm8co1_400\",\n    \"question\": \"what is falling off of the windowsill?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6732\",\n    \"key\": \"10153\",\n    \"description\": \"a cat is falling off of a windowsill.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2n9dCyxP1u25ovvo1_400\",\n    \"question\": \"what gray is running on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20418\",\n    \"key\": \"63626\",\n    \"description\": \"a car gray is running on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_na93v8P17F1rnq510o1_500\",\n    \"question\": \"what is the man wearing a black tank top is spinning around his neck?\",\n    \"answer\": \"necklace\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45768\",\n    \"key\": \"50534\",\n    \"description\": \"a man wearing a black tank top is spinning his necklace around his neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq6tt8iXcI1t0jtguo2_1280\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25302\",\n    \"key\": \"99404\",\n    \"description\": \"a woman with big blue eyes looks at a man with a scar across his left eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8yb524aiH1soqa55o1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35327\",\n    \"key\": \"33912\",\n    \"description\": \"a young woman dressed in black is smiling and nodding her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz194PjME1rjh61io1_250\",\n    \"question\": \"what is the color of the kitten?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49482\",\n    \"key\": \"801\",\n    \"description\": \"a woman is holding a white kitten.\"\n  },\n  {\n    \"video_name\": \"tumblr_no430e8ehj1tx8mn0o1_400\",\n    \"question\": \"what is spinning as it goes in the turn?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45932\",\n    \"key\": \"65298\",\n    \"description\": \"a racing car is spinning as it goes in the turn.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zu57mMW51t36lbdo1_400\",\n    \"question\": \"what trunk opens and the sunroof comes out?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1952\",\n    \"key\": \"53950\",\n    \"description\": \"the car 's trunk opens and the sunroof comes out.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng7zzq1GXt1qiikiio1_500\",\n    \"question\": \"what is drinking from the pool when a person jumps up from swimming it jumps and runs away?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43110\",\n    \"key\": \"92621\",\n    \"description\": \"a cat is drinking from a pool when a person jumps up from swimming it jumps and runs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdl028aPE1rufswgo1_400\",\n    \"question\": \"what is getting the good head rub?\",\n    \"answer\": \"pup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42701\",\n    \"key\": \"25068\",\n    \"description\": \"a white pup is getting a good head rub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcgxcAnLa1qc6y5wo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20563\",\n    \"key\": \"33510\",\n    \"description\": \"the guy in the red shirt is making the other guy laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v3fohGft1t3eg01o1_400\",\n    \"question\": \"what does the woman hug and bites?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27562\",\n    \"key\": \"30777\",\n    \"description\": \"a woman hugs and bites her dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfokkyTDI41qf3bxio1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51183\",\n    \"key\": \"78723\",\n    \"description\": \"the girl is singing and dancing while the man in black plays the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn4ck340P1sj24puo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7703\",\n    \"key\": \"5283\",\n    \"description\": \"a man in a black shirt is dancing down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dype7riV1tfbj8go1_500\",\n    \"question\": \"what is the girl showing off?\",\n    \"answer\": \"skills\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17758\",\n    \"key\": \"43494\",\n    \"description\": \"a girl is showing off her sword skills.\"\n  },\n  {\n    \"video_name\": \"tumblr_nau25zCJpy1tee2zqo1_500\",\n    \"question\": \"how many men in black run their hands down the front of a pop star who has just lifted his black vest up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7907\",\n    \"key\": \"94641\",\n    \"description\": \"two men in black run their hands down the front of a pop star who has just lifted his black vest up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdccwWcd01r4nut8o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32525\",\n    \"key\": \"74829\",\n    \"description\": \"a woman in a blue dress is running away from a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl08fcxHX31upy801o1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32505\",\n    \"key\": \"55119\",\n    \"description\": \"a red haired woman is holding a drink and nodding her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9snmfaad41rlw2xio1_250\",\n    \"question\": \"how many men walk toward the woman?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30200\",\n    \"key\": \"31304\",\n    \"description\": \"two men walk toward a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4v6xHBqe1tkrdioo1_250\",\n    \"question\": \"how many people dressed as punks are sitting and chatting in a stair well?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8989\",\n    \"key\": \"44889\",\n    \"description\": \"five people dressed as punks are sitting and chatting in a stair well.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3sdhA9bu1u5c0f8o1_500\",\n    \"question\": \"how many people are doing the cool levitating trick?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26728\",\n    \"key\": \"80181\",\n    \"description\": \"two people are doing a cool levitating trick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazoqqzPK61rcr3teo1_250\",\n    \"question\": \"what are colliding with each other?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40961\",\n    \"key\": \"84564\",\n    \"description\": \"two cars are colliding with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jzweddcj1qdifbfo1_500\",\n    \"question\": \"what is the color of the puppy?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6055\",\n    \"key\": \"75198\",\n    \"description\": \"a small,\"\n  },\n  {\n    \"video_name\": \"tumblr_ni20ssyPb91u84fnpo1_400\",\n    \"question\": \"how many men are crying and touching their foreheads together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15359\",\n    \"key\": \"85079\",\n    \"description\": \"two men are crying and touching their foreheads together.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo0rmCdNd1u45agco1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42003\",\n    \"key\": \"14022\",\n    \"description\": \"a girl wearing a white shirt is bent down touching the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngr2h0X78F1tckyfno1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9853\",\n    \"key\": \"30725\",\n    \"description\": \"a man in a long red jacket is dancing on stage in front of a drum kit.\"\n  },\n  {\n    \"video_name\": \"tumblr_na85j1b4mr1t62d7zo1_250\",\n    \"question\": \"what is the man rolling up and walking away from a young woman?\",\n    \"answer\": \"sleeves\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8183\",\n    \"key\": \"15937\",\n    \"description\": \"a man is rolling his sleeves up and walking away from a young woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_narmwnsQzg1rtbkxgo1_400\",\n    \"question\": \"what is the color of the sky?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8172\",\n    \"key\": \"20178\",\n    \"description\": \"a jet plane is flying in a blue sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nde0meprcs1s7yxh6o1_400\",\n    \"question\": \"where is the man holding his arm up and speaking.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15903\",\n    \"key\": \"80842\",\n    \"description\": \"a man is holding his arm up and speaking in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknbdinpz91sph7v6o1_400\",\n    \"question\": \"what is the color of the tie?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32395\",\n    \"key\": \"30470\",\n    \"description\": \"a boy with a red tie is performing at an event.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hvtzkimT1tirskjo1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25073\",\n    \"key\": \"39158\",\n    \"description\": \"a man wearing black clothes is grabbing his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hf7vt5UL1tiqx4yo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48782\",\n    \"key\": \"15348\",\n    \"description\": \"a man in black is getting on one knee and proposing to a woman in a brown dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_npbu1izdzO1urprh7o1_400\",\n    \"question\": \"what is the woman holding while looking from one to the other?\",\n    \"answer\": \"cupcakes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13920\",\n    \"key\": \"41674\",\n    \"description\": \"a woman is holding two cupcakes while looking from one to the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9abseuY0C1slj978o1_400\",\n    \"question\": \"what plays with an orange cats tail?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26092\",\n    \"key\": \"70847\",\n    \"description\": \"a black cat plays with an orange cats tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh1kirX2YW1t4ti4zo1_250\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42352\",\n    \"key\": \"5940\",\n    \"description\": \"a guy wearing a red sweatshirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_na0mw3gkjB1qlxas3o1_400\",\n    \"question\": \"what is the man in black playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25965\",\n    \"key\": \"68298\",\n    \"description\": \"a man in black is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0phzvXyf1si9mq4o1_500\",\n    \"question\": \"what is caught off guard during her performance?\",\n    \"answer\": \"model\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26268\",\n    \"key\": \"84796\",\n    \"description\": \"a spokes model is caught off guard during her performance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn0wlydgs81spn3uuo1_1280\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7787\",\n    \"key\": \"58210\",\n    \"description\": \"a guy in a black jacket is posing and scratches his forehead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9op5Q2rg1unyhx2o1_400\",\n    \"question\": \"what are driving with one in the front and one in the back?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19034\",\n    \"key\": \"78234\",\n    \"description\": \"the two cars are driving with one in the front and one in the back.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcfe5F1iy1s2t7gvo1_500\",\n    \"question\": \"what are the group of boys walking down the hallway and undoing?\",\n    \"answer\": \"ties\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38445\",\n    \"key\": \"88875\",\n    \"description\": \"a group of boys are walking down the hallway and undoing their ties.\"\n  },\n  {\n    \"video_name\": \"tumblr_n939x61M6o1s75d81o1_400\",\n    \"question\": \"what does the man smoke and blows out smoke?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3344\",\n    \"key\": \"65578\",\n    \"description\": \"a man smokes and blows out smoke smoked cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng66xtlMK21t7a8jmo1_400\",\n    \"question\": \"how many men are embracing and kissing each other indoors?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2724\",\n    \"key\": \"98788\",\n    \"description\": \"two men are embracing and kissing each other indoors.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9art5oaA51r4s9t4o1_250\",\n    \"question\": \"what is the color of the chairs?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7545\",\n    \"key\": \"35466\",\n    \"description\": \"three young men are seated in white chairs and they are smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcd09xbXE1tdjuqvo1_400\",\n    \"question\": \"what is on the table and jumps off the table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37192\",\n    \"key\": \"16291\",\n    \"description\": \"a cat is on a table and jumps off the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6r6tPi0N1sufrqro1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49669\",\n    \"key\": \"63753\",\n    \"description\": \"a black guy with weird looking teeth is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5ataOKNF1ra19auo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6253\",\n    \"key\": \"32238\",\n    \"description\": \"a man is wearing a red shirt and playing his guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwzkgSJFc1qg0or6o1_400\",\n    \"question\": \"what is the group of dancers turning?\",\n    \"answer\": \"flags\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38917\",\n    \"key\": \"62997\",\n    \"description\": \"a group of dancers is turning yellow flags.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5vio91dp1u3ctzeo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19979\",\n    \"key\": \"33803\",\n    \"description\": \"a young woman with black hair is smiling as the light goes off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjeasMqCh1up0xtfo1_500\",\n    \"question\": \"how many young men look at each other and smile?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49929\",\n    \"key\": \"101105\",\n    \"description\": \"two young men look at each other and smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedtlpS43B1trwdnlo1_400\",\n    \"question\": \"what is the woman making with dough?\",\n    \"answer\": \"circle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9748\",\n    \"key\": \"42030\",\n    \"description\": \"a woman is making a circle with dough.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjzfx6FL41uz06r7o1_400\",\n    \"question\": \"what is walking on the rotating circle?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9073\",\n    \"key\": \"13614\",\n    \"description\": \"a cat is walking on a rotating circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb791wIAkg1rx36jdo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27400\",\n    \"key\": \"10773\",\n    \"description\": \"a young man in a white shirt is looking forward and making a face.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6alb5Ca61qjpqono1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24318\",\n    \"key\": \"8474\",\n    \"description\": \"a man in a black shirt has shoes tied by their laces over his shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqshzrxEcJ1tcip37o1_250\",\n    \"question\": \"how many dark haired girls are standing and one hugs the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43071\",\n    \"key\": \"15556\",\n    \"description\": \"two dark haired girls are standing and one hugs the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyjsnTzTm1tty0voo1_400\",\n    \"question\": \"what is jumping and falls off the wall?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16843\",\n    \"key\": \"56199\",\n    \"description\": \"a puppy is jumping and falls off a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2dq7GgNi1r967i1o1_400\",\n    \"question\": \"what is the man smoking in front of a bus?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19967\",\n    \"key\": \"63199\",\n    \"description\": \"a man is smoking a cigarette in front of a bus.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav1brsK0W1sjoqhwo1_400\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31094\",\n    \"key\": \"63986\",\n    \"description\": \"a guy wearing a red shirt and black pants,\"\n  },\n  {\n    \"video_name\": \"tumblr_nejxcpZ7Tn1tbo2gbo1_400\",\n    \"question\": \"what is trying to play with the cat by biting its ear?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18986\",\n    \"key\": \"48764\",\n    \"description\": \"a puppy is trying to play with a cat by biting its ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb77vkeQkn1s2l982o1_500\",\n    \"question\": \"how many guys are laughing and cracking up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43394\",\n    \"key\": \"63362\",\n    \"description\": \"two guys are laughing and cracking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9t8801hEM1qc5bc7o1_500\",\n    \"question\": \"what is someone riding through a field outside?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22647\",\n    \"key\": \"74344\",\n    \"description\": \"someone is riding a horse through a field outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8hramQFg1uob0pko1_400\",\n    \"question\": \"what is the woman and a man is talking?\",\n    \"answer\": \"modeling\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16572\",\n    \"key\": \"36914\",\n    \"description\": \"a woman is modeling and a man is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmrvpx2otm1usmtiho1_250\",\n    \"question\": \"what is the policeman waving toward a very large woman who falls down in the street?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13173\",\n    \"key\": \"21506\",\n    \"description\": \"a policeman is waving his gun toward a very large woman who falls down in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhk3b9NsJo1qbpuo2o1_500\",\n    \"question\": \"how many men are talking to each other and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31089\",\n    \"key\": \"88888\",\n    \"description\": \"two men are talking to each other and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0mrhhy7K1t68nnmo1_500\",\n    \"question\": \"what is the young man writing?\",\n    \"answer\": \"circle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47403\",\n    \"key\": \"94842\",\n    \"description\": \"a young man is writing an imaginary circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vuv0Bgll1ticpqdo1_400\",\n    \"question\": \"how many men in black vests are hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1644\",\n    \"key\": \"57264\",\n    \"description\": \"two men in black vests are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndl8pvG3At1sklh5yo1_500\",\n    \"question\": \"what did the man in a gray shirt throw at the basket?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19238\",\n    \"key\": \"15227\",\n    \"description\": \"the man in a gray shirt threw the ball at the basket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8n38zP5b1unhekuo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1481\",\n    \"key\": \"66354\",\n    \"description\": \"a man in a yellow shirt is rubbing his chest.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncizfxCBrD1tk8jwao1_400\",\n    \"question\": \"what sprays the fire extinguisher in a mans face?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14874\",\n    \"key\": \"60971\",\n    \"description\": \"a cat sprays a fire extinguisher in a mans face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn2qfrcFhQ1tlg6slo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7303\",\n    \"key\": \"15494\",\n    \"description\": \"the guy with the white shirt and white pants is walking off the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacm19mtDu1thtwwro1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29052\",\n    \"key\": \"39579\",\n    \"description\": \"a lady with long brown hair and wearing a hat looks around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9l9ewvnn1rm95kgo1_400\",\n    \"question\": \"what is scratching at the floor?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17566\",\n    \"key\": \"42806\",\n    \"description\": \"the puppy is scratching at the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblj3dVAIl1sm013wo1_400\",\n    \"question\": \"what is the parakeet taking under a stream of water?\",\n    \"answer\": \"bath\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14334\",\n    \"key\": \"65862\",\n    \"description\": \"a parakeet is taking a bath under a stream of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2uu3uHFS1ss66xxo1_250\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47084\",\n    \"key\": \"12981\",\n    \"description\": \"a white boy with short hair is wearing a jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jeioN38z1r26tq5o1_250\",\n    \"question\": \"how many people in costumes stand opposite each other and play guitars?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18300\",\n    \"key\": \"5815\",\n    \"description\": \"two people in costumes stand opposite each other and play guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng167k0goi1rk8pnlo1_250\",\n    \"question\": \"what is the man dancing and moving around?\",\n    \"answer\": \"clothing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19151\",\n    \"key\": \"10724\",\n    \"description\": \"a man is dancing and moving his clothing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxdsn2yZB1r2lnvfo1_400\",\n    \"question\": \"how many women are in the hot bath surrounded by candles?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52557\",\n    \"key\": \"26152\",\n    \"description\": \"two women are in a hot bath surrounded by candles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs1biycNX1tktlyio1_400\",\n    \"question\": \"what is the color of the interrupts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13402\",\n    \"key\": \"82362\",\n    \"description\": \"a young man dressed in white interrupts another man who is holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney67x8wtj1qememvo1_400\",\n    \"question\": \"what is the color of the hugs?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37221\",\n    \"key\": \"22473\",\n    \"description\": \"a man in black hugs a man in green and touched his bottom.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7ortnyJB1s0nx6go1_100\",\n    \"question\": \"what licks water from the running faucet?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52611\",\n    \"key\": \"4838\",\n    \"description\": \"the dog licks water from the running faucet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqljzrYT1E1utakepo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10844\",\n    \"key\": \"62447\",\n    \"description\": \"a blonde boy sings into a microphone while staring at his friend with dark brown hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q0g7y49C1rk1fx6o1_400\",\n    \"question\": \"what attempts to land on the runway?\",\n    \"answer\": \"jet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17774\",\n    \"key\": \"25285\",\n    \"description\": \"a jet attempts to land on a runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqspfnDHiF1rsp6cpo1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17100\",\n    \"key\": \"19148\",\n    \"description\": \"a floating person in black clothing is holding two swords.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2llnbU4P1qkelnfo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA244\",\n    \"key\": \"65644\",\n    \"description\": \"a boy with a blue shirt slides down a roof with his skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgl6t3yLm1tqwtb6o1_500\",\n    \"question\": \"what is the person holding with a hand?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1018\",\n    \"key\": \"99002\",\n    \"description\": \"a person is holding a stick with a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcvis8jts1tbcrm5o1_250\",\n    \"question\": \"what is the color of the leaves?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42316\",\n    \"key\": \"3820\",\n    \"description\": \"a black rabbit is eating some green leaves on the carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_n6g89evyVF1qhzavho1_r1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13913\",\n    \"key\": \"47650\",\n    \"description\": \"a black car does a large turn.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj1cj63rn1trxml2o1_500\",\n    \"question\": \"what is lifting his head up out of a pile of snow?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13872\",\n    \"key\": \"79343\",\n    \"description\": \"a dog is lifting his head up out of a pile of snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nac7r67PCz1ttrqwxo1_250\",\n    \"question\": \"what is the color of the necklace?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27253\",\n    \"key\": \"6638\",\n    \"description\": \"a girl with brown hair wears a necklace and black and makes a surprised face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirebdaFNu1rzaapno1_500\",\n    \"question\": \"how many young men are sitting and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2117\",\n    \"key\": \"87200\",\n    \"description\": \"two young men are sitting and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq6nzcIWOL1uyimcco1_500\",\n    \"question\": \"where is the man performing spinning break dance moves.\",\n    \"answer\": \"? warehouse\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35898\",\n    \"key\": \"96614\",\n    \"description\": \"a man is performing spinning break dance moves in an empty warehouse.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6a7uQ9h71slj978o1_400\",\n    \"question\": \"what jumps and tries to climb over the wall?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA977\",\n    \"key\": \"48977\",\n    \"description\": \"a fat puppy jumps and tries to climb over a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7j7yiaRx1qivt11o1_500\",\n    \"question\": \"what is the man in face paint swimming?\",\n    \"answer\": \"sword\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30745\",\n    \"key\": \"97728\",\n    \"description\": \"a man in face paint is swimming an illuminated sword.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtpdn8oHz1s0w3iqo1_400\",\n    \"question\": \"what is the man in a christmas hat driving?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24942\",\n    \"key\": \"57885\",\n    \"description\": \"a man in a christmas hat is driving his car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay02vNVDY1thjycro1_1280\",\n    \"question\": \"how many people throw the fourth person into the water?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17586\",\n    \"key\": \"55749\",\n    \"description\": \"three people throw a fourth person into the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr8qs2rHGr1u5g8bjo1_400\",\n    \"question\": \"what is the lady with long dark colored hair showing off?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23167\",\n    \"key\": \"1222\",\n    \"description\": \"a lady with long dark colored hair is showing off her makeup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7t5vzyxn1s8a8w8o1_400\",\n    \"question\": \"how many man are on stage singing and playing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35259\",\n    \"key\": \"63065\",\n    \"description\": \"two man are on stage singing and playing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndm302Gvzr1srpy25o1_500\",\n    \"question\": \"what blinks and then looks away?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25256\",\n    \"key\": \"56698\",\n    \"description\": \"a brown horse blinks and then looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8zxwAEVB1tmze3vo1_400\",\n    \"question\": \"where is the boy with brown jacket running.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6230\",\n    \"key\": \"64410\",\n    \"description\": \"a boy with brown jacket is running in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfd11g9m741tm2ntoo1_500\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26959\",\n    \"key\": \"67219\",\n    \"description\": \"a woman with red lipstick is wearing a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedtlpS43B1trwdnlo1_400\",\n    \"question\": \"what is the woman making on a wooden table?\",\n    \"answer\": \"tortillas\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1650\",\n    \"key\": \"42030\",\n    \"description\": \"a woman is making tortillas on a wooden table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqd3r08hF1tbdxy1o1_400\",\n    \"question\": \"where is the guy playing the guitar.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14285\",\n    \"key\": \"29884\",\n    \"description\": \"a guy is playing the guitar in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r1hmflic1tir7o2o1_400\",\n    \"question\": \"what opens its mouth and startles a man?\",\n    \"answer\": \"camel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43262\",\n    \"key\": \"24798\",\n    \"description\": \"a camel opens its mouth and startles a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr45p0uKof1uaugwlo1_250\",\n    \"question\": \"where does the man float away on the sea.\",\n    \"answer\": \"? boat\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50113\",\n    \"key\": \"31377\",\n    \"description\": \"a man in a boat floats away on the sea.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazjjgoRKZ1tk5zero1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA593\",\n    \"key\": \"69829\",\n    \"description\": \"a guy with unnaturally blue eyes is lying on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbplrtZnS81tbjfazo1_400\",\n    \"question\": \"what is the color of the box?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8243\",\n    \"key\": \"41760\",\n    \"description\": \"a small shark is swimming around a black box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfplbjsvOQ1u4bx69o1_400\",\n    \"question\": \"how many woman is smoking while another woman is playing with her hair?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14102\",\n    \"key\": \"85920\",\n    \"description\": \"one woman is smoking while another woman is playing with her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p40kKIrP1s2ir5ko1_500\",\n    \"question\": \"what is the color of the uniforms?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14187\",\n    \"key\": \"88309\",\n    \"description\": \"two guys in blue uniforms are playing soccer against three men in red uniforms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemookTxfy1u359i4o1_400\",\n    \"question\": \"how many girls run towards each other while holding big balls and the balls bounce off?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43856\",\n    \"key\": \"38122\",\n    \"description\": \"two girls run towards each other while holding big balls and the balls bounce off and they hit each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlbtylYD61t4k3lzo1_250\",\n    \"question\": \"what is chasing down the motorcycle on a road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19779\",\n    \"key\": \"93530\",\n    \"description\": \"a car is chasing down a motorcycle on a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sopfHH201tbn1tto1_400\",\n    \"question\": \"what is the color of the bag?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44793\",\n    \"key\": \"68160\",\n    \"description\": \"a cat is jumping into a yellow bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vuv0Bgll1ticpqdo1_400\",\n    \"question\": \"how many young men in a bedroom are making weird faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15503\",\n    \"key\": \"57264\",\n    \"description\": \"two young men in a bedroom are making weird faces and then they hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndj80jP9UY1sfnh08o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6866\",\n    \"key\": \"76857\",\n    \"description\": \"a man in a black shirt is running on the grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3riuu61q1rojld8o1_400\",\n    \"question\": \"what jump up and run across the floor?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25127\",\n    \"key\": \"79952\",\n    \"description\": \"the dogs jump up and run across the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_naopjceBs01rar35do1_250\",\n    \"question\": \"how many man talks while one man moves the fish tattoo on his arm?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38794\",\n    \"key\": \"5248\",\n    \"description\": \"one man talks while one man moves the fish tattoo on his arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpumpvxAx1tawgedo2_500\",\n    \"question\": \"how many boys laughed together inside of the room?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42189\",\n    \"key\": \"91438\",\n    \"description\": \"three boys laughed together inside of a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb37uXXWs1rk6emro1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39344\",\n    \"key\": \"22358\",\n    \"description\": \"a girl with long brown hair is talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngydaduWj01skjjtto1_250\",\n    \"question\": \"what is the lady with the red hair and pink shirt holding?\",\n    \"answer\": \"teapot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28577\",\n    \"key\": \"45622\",\n    \"description\": \"the lady with the red hair and pink shirt is holding a blue teapot.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfde03d5t1qznclso1_500\",\n    \"question\": \"how many people exercise while kicking their legs outward?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35699\",\n    \"key\": \"40293\",\n    \"description\": \"two people exercise while kicking their legs outward.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90ljfXkjj1si20l6o1_250\",\n    \"question\": \"what is the man in a white shirt waving?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47322\",\n    \"key\": \"46317\",\n    \"description\": \"a man in a white shirt is waving a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1g2pJnfJ1sk96t7o1_400\",\n    \"question\": \"what is losing control between two lorries?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28433\",\n    \"key\": \"8106\",\n    \"description\": \"a car is losing control between two lorries.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo1yyTZnj1qjatdbo1_500\",\n    \"question\": \"how many woman in sunhats and bikinis and a man are sailing on a boat?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50325\",\n    \"key\": \"59890\",\n    \"description\": \"two woman in sunhats and bikinis and a man are sailing on a boat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n948aoVVp91qfwpqqo1_500\",\n    \"question\": \"how many people with long hair are singing while closing their eyes?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11394\",\n    \"key\": \"44318\",\n    \"description\": \"three people with long hair are singing while closing their eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqsb78BSRH1u03tmro1_400\",\n    \"question\": \"how many men are polishing the car one is shoving another away?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9441\",\n    \"key\": \"76894\",\n    \"description\": \"three men are polishing a car one is shoving another away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne19bcaQes1tkh11do1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29045\",\n    \"key\": \"58483\",\n    \"description\": \"a man with brown hair is smiling and cocking his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3sxvWBpy1rl2njso1_400\",\n    \"question\": \"what is the boy holding and pointing?\",\n    \"answer\": \"bow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8862\",\n    \"key\": \"77703\",\n    \"description\": \"a boy is holding a bow and pointing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvwznqbN61u04yxso1_500\",\n    \"question\": \"what was wrecking and almost crushed the hero?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23589\",\n    \"key\": \"98375\",\n    \"description\": \"a car was wrecking and almost crushed the hero.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkvaxBCbI1t6t8bgo1_500\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40859\",\n    \"key\": \"95583\",\n    \"description\": \"a group of people wearing red shirts are walking by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffjb8ayhY1tw8vf9o1_400\",\n    \"question\": \"what is the woman with only a single arm lifting?\",\n    \"answer\": \"barbel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15107\",\n    \"key\": \"14879\",\n    \"description\": \"a woman with only a single arm is lifting a barbel.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2hhrvC6B1slj978o1_400\",\n    \"question\": \"what is sitting in the sink with its head under a faucet lapping at the running water as it rolls off its nose?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9598\",\n    \"key\": \"19523\",\n    \"description\": \"a cat is sitting in a sink with its head under a faucet lapping at the running water as it rolls off its nose.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngvhms78FN1qkzi04o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31603\",\n    \"key\": \"1806\",\n    \"description\": \"a man in black is nodding his head and turning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyjemkHsE1t086keo1_250\",\n    \"question\": \"what does the woman do using a pole?\",\n    \"answer\": \"cartwheel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44956\",\n    \"key\": \"53385\",\n    \"description\": \"a woman does a cartwheel using a pole.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflm4phy0P1u4txqeo1_250\",\n    \"question\": \"what is playing on the bad and slides off?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17679\",\n    \"key\": \"27288\",\n    \"description\": \"a dog is playing on a bad and slides off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimd7uus8Z1u2pml6o1_400\",\n    \"question\": \"what is playing on stage while enjoying himself?\",\n    \"answer\": \"musician\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8472\",\n    \"key\": \"54508\",\n    \"description\": \"a rock musician is playing on stage while enjoying himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefbbzoLcn1ts89who1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24551\",\n    \"key\": \"25681\",\n    \"description\": \"a woman in a red dress dances and sings on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvociiGrl1u2vubao1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3605\",\n    \"key\": \"82737\",\n    \"description\": \"a black man is happily eating a rib.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngoujoc3wq1t2gwrqo1_400\",\n    \"question\": \"where is the man with black hair swimming.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28257\",\n    \"key\": \"76940\",\n    \"description\": \"a man with black hair is swimming in a swimming pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfk0cw83nY1tdmffyo1_250\",\n    \"question\": \"what is underneath the glass table trying to eat the food?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34887\",\n    \"key\": \"3658\",\n    \"description\": \"a cat is underneath a glass table trying to eat the food.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlmw5fND5l1uqfzp4o1_500\",\n    \"question\": \"what is the man with dark skin holding with his right hand?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27445\",\n    \"key\": \"42549\",\n    \"description\": \"a man with dark skin is holding his fashion hat with his right hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhddwoPJnz1tdvdxeo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52764\",\n    \"key\": \"51543\",\n    \"description\": \"a man in a black leather jacket is moving his arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqg0gnDP7v1uxh7dyo1_540\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11381\",\n    \"key\": \"101254\",\n    \"description\": \"a boy with black hair looks embarrassed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr78fdPO5w1slwrsuo1_400\",\n    \"question\": \"what tries to attack its friend but is attacked in return?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35232\",\n    \"key\": \"43420\",\n    \"description\": \"a cat tries to attack its friend but is attacked in return.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93jmiVDRT1ruob34o1_250\",\n    \"question\": \"how many woman is this dancing together on a dance floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12194\",\n    \"key\": \"67105\",\n    \"description\": \"this is two woman dancing together on a dance floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_njgn0ykrlJ1rjgw6yo1_250\",\n    \"question\": \"how many young men were reading the book?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3234\",\n    \"key\": \"1670\",\n    \"description\": \"the three young men were reading a book.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqt4ms9xkH1u54uvqo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46470\",\n    \"key\": \"88116\",\n    \"description\": \"a man wears a black suit and tie lifts his hands in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqveo9P2as1tae455o1_400\",\n    \"question\": \"what is the color of the letters?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44381\",\n    \"key\": \"66327\",\n    \"description\": \"a white object with blue letters is present.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncilobU0pA1t151ozo1_400\",\n    \"question\": \"how many guys are dancing energetically on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26761\",\n    \"key\": \"63596\",\n    \"description\": \"two guys are dancing energetically on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2cavLMyV1sbpxeho1_400\",\n    \"question\": \"what is the man opening?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24389\",\n    \"key\": \"38123\",\n    \"description\": \"a man is opening a door where a girl is standing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njsd1xvdMx1twhh4bo1_400\",\n    \"question\": \"what is this chasing some people?\",\n    \"answer\": \"rhino\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19786\",\n    \"key\": \"37070\",\n    \"description\": \"this is a rhino chasing some people.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9r1sfDAc1qzcbnmo1_250\",\n    \"question\": \"what is on the train and walks out the door when it opens?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30111\",\n    \"key\": \"6221\",\n    \"description\": \"a bird is on a train and walks out the door when it opens.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqoabbUAH1s9wp82o1_400\",\n    \"question\": \"how many dogs lay on the couch and looked away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40559\",\n    \"key\": \"30264\",\n    \"description\": \"two dogs lay on a couch and looked away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0bml1h561t7io47o1_250\",\n    \"question\": \"what greets the mailman and takes the mail into the house?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17038\",\n    \"key\": \"14250\",\n    \"description\": \"the dog greets the mailman and takes the mail into the house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxzym9Khf1t0ojyvo1_500\",\n    \"question\": \"how many men is wearing pink feathered headpieces dance around with microphones in their hands?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50238\",\n    \"key\": \"95020\",\n    \"description\": \"three men wearing pink feathered headpieces dance around with microphones in their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9r1sfDAc1qzcbnmo1_250\",\n    \"question\": \"what does the pigeon run?\",\n    \"answer\": \"exits\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48055\",\n    \"key\": \"6221\",\n    \"description\": \"a pigeon runs through a subway car and then exits when the doors open.\"\n  },\n  {\n    \"video_name\": \"tumblr_npy4c6ERuh1uv0y2ro1_250\",\n    \"question\": \"what watches fish being removed from a bowl?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24571\",\n    \"key\": \"13331\",\n    \"description\": \"a cat watches fish being removed from a bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq9laels8z1stktiko1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30016\",\n    \"key\": \"37163\",\n    \"description\": \"a man with short hair and black clothes is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncql8t7uii1u073goo1_400\",\n    \"question\": \"what is lounging at something excitingly?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41926\",\n    \"key\": \"33354\",\n    \"description\": \"a cat is lounging at something excitingly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3jh1OWsz1rvlovyo1_500\",\n    \"question\": \"what is blinking her eyes?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39665\",\n    \"key\": \"100312\",\n    \"description\": \"a woman wearing jacket is blinking her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0jf2Dmtj1tr5tuwo1_500\",\n    \"question\": \"what turn the corner fast?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11775\",\n    \"key\": \"71919\",\n    \"description\": \"two white race cars turn a corner fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3dghnoGa1r1endqo1_250\",\n    \"question\": \"what is the color of the underwear?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42910\",\n    \"key\": \"43714\",\n    \"description\": \"a man in black underwear leans against a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzgtdxyFO1u5hpvco1_250\",\n    \"question\": \"where is the man drinking alcohol.\",\n    \"answer\": \"? store\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39156\",\n    \"key\": \"53677\",\n    \"description\": \"a man is drinking alcohol in a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0fwvSQfh1tlyyvzo1_400\",\n    \"question\": \"how many men sit and make funny faces and smile?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12633\",\n    \"key\": \"25188\",\n    \"description\": \"two men sit and make funny faces and smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0kxcHgTJ1uvdb8xo1_400\",\n    \"question\": \"how many guys are warming up while in a batting cage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51883\",\n    \"key\": \"62177\",\n    \"description\": \"two guys are warming up while in a batting cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_npgmilwWnF1tx8mn0o1_400\",\n    \"question\": \"what are racing side by side and spins out?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2606\",\n    \"key\": \"91034\",\n    \"description\": \"two cars are racing side by side and spins out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2v5yMTI61tibdkoo1_500\",\n    \"question\": \"what does the man pick up and the woman holds up a box of cupcakes?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26196\",\n    \"key\": \"70971\",\n    \"description\": \"a man picks up a dog and the woman holds up a box of cupcakes.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxep6N7nq1td6onfo1_500\",\n    \"question\": \"what is the man hitting with a bat?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36257\",\n    \"key\": \"52854\",\n    \"description\": \"a man is hitting a piano with a bat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefe46IPQf1tjiaa2o1_400\",\n    \"question\": \"what is the man giving another man and he starts playing it?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41242\",\n    \"key\": \"33997\",\n    \"description\": \"a man is giving another man a guitar and he starts playing it.\"\n  },\n  {\n    \"video_name\": \"tumblr_naug822mv91tgbziwo1_400\",\n    \"question\": \"what is running and jumping on furniture in a house?\",\n    \"answer\": \"chimpanzee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52042\",\n    \"key\": \"96877\",\n    \"description\": \"a chimpanzee is running and jumping on furniture in a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmdmzflNl1qdpugqo1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31752\",\n    \"key\": \"82072\",\n    \"description\": \"a man in a black baseball cap is going up some stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfdd3dcX31u1otrso1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25391\",\n    \"key\": \"68407\",\n    \"description\": \"a woman with long black hair was chewing her lip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivk6uk2XY1u9wwjjo1_500\",\n    \"question\": \"what is hanging with the light on its head?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35310\",\n    \"key\": \"91309\",\n    \"description\": \"a robot is hanging with a light on its head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sgrlcrxP1r26e3ho1_250\",\n    \"question\": \"what is the man wearing and looking around?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27279\",\n    \"key\": \"15490\",\n    \"description\": \"a man is wearing a strawberry mask and looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndl8pvG3At1sklh5yo1_500\",\n    \"question\": \"what is the man with the blue shirt and blue bandanna around his head playing?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47240\",\n    \"key\": \"15227\",\n    \"description\": \"the man with the blue shirt and blue bandanna around his head is playing ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_no41byJTGq1uqpzm6o1_400\",\n    \"question\": \"how many boys rest against each other and one kisses the other on the head?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7381\",\n    \"key\": \"56702\",\n    \"description\": \"two boys rest against each other and one kisses the other on the head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9duy7IEm1trwttjo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49215\",\n    \"key\": \"1591\",\n    \"description\": \"the man in the black hat is dancing to the music.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2wtt5EEO1tnlurpo1_250\",\n    \"question\": \"how many people is sitting on a couch are talking and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14882\",\n    \"key\": \"12826\",\n    \"description\": \"two people sitting on a couch are talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nggodxoEKB1t62uudo1_500\",\n    \"question\": \"what is the man sitting in front of some rocks and smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32996\",\n    \"key\": \"39362\",\n    \"description\": \"a man is sitting in front of some rocks and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadk481D381tx8mn0o1_400\",\n    \"question\": \"what slides off the racetrack and spews smoke?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42918\",\n    \"key\": \"53118\",\n    \"description\": \"a race car slides off the racetrack and spews smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfq8lcxtjj1tsann9o1_r2_500\",\n    \"question\": \"what is the guy with the white sweat pants working?\",\n    \"answer\": \"pole\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17778\",\n    \"key\": \"40935\",\n    \"description\": \"the guy with the white sweat pants is working the stripper pole.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4ssypv3Y1uaujqao1_400\",\n    \"question\": \"what reacts to the fingertip approaching him?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42174\",\n    \"key\": \"35099\",\n    \"description\": \"a green frog reacts to a fingertip approaching him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc08s26xB11r8z647o1_250\",\n    \"question\": \"what is the color of the lady?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11798\",\n    \"key\": \"6488\",\n    \"description\": \"the lady in white has tears running down her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbaeccyznw1r1vxywo1_250\",\n    \"question\": \"what did the man with long hair put in his shirt?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32555\",\n    \"key\": \"2889\",\n    \"description\": \"a man with long hair put a teddy bear in his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo3syb9wg1rhy09eo1_500\",\n    \"question\": \"what is the car going on the road and is spinning?\",\n    \"answer\": \"tire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9870\",\n    \"key\": \"98035\",\n    \"description\": \"a car is going on the road and the tire is spinning.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xmlnuVnk1ru8amgo1_400\",\n    \"question\": \"what is the young man wearing and singing?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37236\",\n    \"key\": \"72331\",\n    \"description\": \"a young man is wearing a leather jacket and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmz3n9aYMe1rxmp17o1_500\",\n    \"question\": \"how many men are looking focused and removing cloaks?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8541\",\n    \"key\": \"97109\",\n    \"description\": \"two men are looking focused and removing cloaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9btuooRz1r9b1ifo1_500\",\n    \"question\": \"how many guys are making the hand touch between a glass?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33045\",\n    \"key\": \"50904\",\n    \"description\": \"two guys are making a hand touch between a glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkvp0sAJs1ub68qdo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37631\",\n    \"key\": \"10647\",\n    \"description\": \"a young man in brown is interviewing with another man in blue.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndv2l5YD0M1rhexgoo1_250\",\n    \"question\": \"what is the color of the bag?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51610\",\n    \"key\": \"25553\",\n    \"description\": \"a man is bouncing a purple bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk039jetLe1r0fn19o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19955\",\n    \"key\": \"91871\",\n    \"description\": \"a white man with yellow hair is grimacing and looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9sg3VuL11t107ayo1_400\",\n    \"question\": \"how many girls with long hair are leaning forward and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22333\",\n    \"key\": \"94319\",\n    \"description\": \"two girls with long hair are leaning forward and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvvdlFwGZ1qdbe91o1_400\",\n    \"question\": \"what are two men laughing together as one waves?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47478\",\n    \"key\": \"77610\",\n    \"description\": \"two men are laughing together as one waves his tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1tyhgYEn1sda6szo1_400\",\n    \"question\": \"what is the man wearing and smiling?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43299\",\n    \"key\": \"78109\",\n    \"description\": \"a man is wearing a cap and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nour3aj5RW1tx8mn0o1_400\",\n    \"question\": \"what crashes and spins out of control?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30853\",\n    \"key\": \"77014\",\n    \"description\": \"racing car crashes and spins out of control.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8ydiZBPJ1ti9lxjo1_500\",\n    \"question\": \"what spins around as the second car falls down?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41497\",\n    \"key\": \"68244\",\n    \"description\": \"a black car spins around as a second car falls down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitvxeekfD1rqcmheo1_250\",\n    \"question\": \"what is the man wearing a white helmet is holding?\",\n    \"answer\": \"ski\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3975\",\n    \"key\": \"18914\",\n    \"description\": \"a man wearing a white helmet is holding a ski.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x3mbPjxt1qh3zyto1_400\",\n    \"question\": \"what is falling asleep while its tail wags?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13340\",\n    \"key\": \"71069\",\n    \"description\": \"a cat is falling asleep while its tail wags.\"\n  },\n  {\n    \"video_name\": \"tumblr_npp2j48dG51sbzhteo1_400\",\n    \"question\": \"how many wrestlers perform the stunt in a ring as a crowd watches?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38427\",\n    \"key\": \"67073\",\n    \"description\": \"two wrestlers perform a stunt in a ring as a crowd watches.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrirwkdIzJ1rkx8z0o1_500\",\n    \"question\": \"what is the man dancing and kicking?\",\n    \"answer\": \"wall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40887\",\n    \"key\": \"26907\",\n    \"description\": \"a man is dancing and kicking the wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uy32nVrJ1twwb4zo1_400\",\n    \"question\": \"what is the woman wearing?\",\n    \"answer\": \"pajama\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46567\",\n    \"key\": \"31730\",\n    \"description\": \"a woman is wearing a pajama while she is in fetal position.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpt5t2YIF1qbsctso1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46289\",\n    \"key\": \"83889\",\n    \"description\": \"a guy in a white collared shirt is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8lnh1FJTf1tgkdkbo1_500\",\n    \"question\": \"what are riding on an automatic vacuum while it is running?\",\n    \"answer\": \"woodchucks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16670\",\n    \"key\": \"38863\",\n    \"description\": \"small woodchucks are riding on an automatic vacuum while it is running.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitnyhCyvG1u7sc67o1_500\",\n    \"question\": \"how many woman is eating while another woman is talking?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12323\",\n    \"key\": \"97234\",\n    \"description\": \"one woman is eating while another woman is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb39fmBCPf1t1kdtqo1_400\",\n    \"question\": \"what is the guy playing and singing in a stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA461\",\n    \"key\": \"9677\",\n    \"description\": \"a guy is playing guitar and singing in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nan6m7zxjt1tk128jo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13879\",\n    \"key\": \"99356\",\n    \"description\": \"a man in a blue shirt is speaking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqi9pDqn61r3fht5o1_250\",\n    \"question\": \"what rubs its mouth on someone 's wrist?\",\n    \"answer\": \"rodent\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26536\",\n    \"key\": \"26058\",\n    \"description\": \"a rodent rubs its mouth on someone 's wrist.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpvxa0eJz1qfz6d1o1_400\",\n    \"question\": \"how many guys are laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4045\",\n    \"key\": \"22517\",\n    \"description\": \"two guys are laughing and one puts his hands over his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91mzrxl5h1r4phxao1_400\",\n    \"question\": \"what is eating the strand of food?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27518\",\n    \"key\": \"81135\",\n    \"description\": \"a dog is eating a strand of food.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5v0qIgaK1tynqeho1_400\",\n    \"question\": \"where does the guy make many funny faces.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20576\",\n    \"key\": \"53008\",\n    \"description\": \"a guy in a chair makes many funny faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhhl4xUkM11tiblojo1_250\",\n    \"question\": \"where is the crazy woman dancing.\",\n    \"answer\": \"? office\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37918\",\n    \"key\": \"22582\",\n    \"description\": \"a crazy woman is dancing in the office.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclbo4udPh1s3h0ixo1_400\",\n    \"question\": \"what is the color of the swings?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23892\",\n    \"key\": \"12797\",\n    \"description\": \"a man dressed in black swings his hip and gives a thumbs up on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhekqkkOoT1rt3qmdo1_250\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49103\",\n    \"key\": \"24464\",\n    \"description\": \"two men in black shirts are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92lo9JEvZ1tfz9ppo1_400\",\n    \"question\": \"what run in the same direction together?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34827\",\n    \"key\": \"52245\",\n    \"description\": \"several dogs run in the same direction together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkaj46inhY1tya7mxo1_400\",\n    \"question\": \"what does the woman look out the door and comes in through the snow?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4744\",\n    \"key\": \"63930\",\n    \"description\": \"a woman looks out the door and a cat comes in through the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92n8zlXH21sqdix6o1_250\",\n    \"question\": \"how many happy children does this show in the snow?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36696\",\n    \"key\": \"43885\",\n    \"description\": \"this shows three happy children in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_noipe7K8wn1uvy8rfo1_500\",\n    \"question\": \"what is the red car changing on a busy highway?\",\n    \"answer\": \"lanes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23549\",\n    \"key\": \"87621\",\n    \"description\": \"a red car is changing lanes on a busy highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_njn3igFQG31u6o3qyo1_500\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3987\",\n    \"key\": \"92191\",\n    \"description\": \"a group of men in tuxedos posed for pictures on a red carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbl18fV1iz1tjqkt0o1_400\",\n    \"question\": \"what is glowing within the mosaic holder?\",\n    \"answer\": \"candle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25547\",\n    \"key\": \"64938\",\n    \"description\": \"a candle is glowing within a mosaic holder.\"\n  },\n  {\n    \"video_name\": \"tumblr_n939ymGjYz1teogu2o1_400\",\n    \"question\": \"where are the group of eight men dancing.\",\n    \"answer\": \"? warehouse\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32573\",\n    \"key\": \"67163\",\n    \"description\": \"a group of eight men are dancing in a warehouse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuzvzDFcu1tdjuqvo1_400\",\n    \"question\": \"what watches as the man struggles in the water?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3778\",\n    \"key\": \"42452\",\n    \"description\": \"a dog watches as a man struggles in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncilobU0pA1t151ozo1_400\",\n    \"question\": \"how many men are dancing while lights behind them are flashing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46691\",\n    \"key\": \"63596\",\n    \"description\": \"two men are dancing while lights behind them are flashing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncclh5CTka1th986vo1_400\",\n    \"question\": \"what is driving away with glowing red tail lights?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18923\",\n    \"key\": \"3350\",\n    \"description\": \"the car is driving away with glowing red tail lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcglziXiE1r0rbcso1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8027\",\n    \"key\": \"67575\",\n    \"description\": \"a man in a white shirt with a microphone is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhi5q5NVDx1qdo688o1_500\",\n    \"question\": \"how many men are standing in the snow talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19942\",\n    \"key\": \"78008\",\n    \"description\": \"two men are standing in the snow talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_niob33jK5s1tdmffyo1_250\",\n    \"question\": \"what is the guy in a plaid shirt eating?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25573\",\n    \"key\": \"73602\",\n    \"description\": \"a guy in a plaid shirt is eating a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndz6v9plHU1s4gcyso1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45750\",\n    \"key\": \"86796\",\n    \"description\": \"two men with black suit are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbchtjXGlv1qchnreo1_400\",\n    \"question\": \"what is the man in a black shirt showing?\",\n    \"answer\": \"tag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37107\",\n    \"key\": \"86899\",\n    \"description\": \"a man in a black shirt is showing a shirt tag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksuzg00mr1t7an45o1_400\",\n    \"question\": \"where are people hugging each other and kissing each other.\",\n    \"answer\": \"? alley\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14908\",\n    \"key\": \"41508\",\n    \"description\": \"people are hugging each other and kissing each other in an alley.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyw6gulsY1s7oft8o1_250\",\n    \"question\": \"what is the color of the blazer?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33686\",\n    \"key\": \"13026\",\n    \"description\": \"a man with a black blazer is pointing and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5b9hqFWD1rqiklvo1_400\",\n    \"question\": \"what is the man wearing and crossing himself?\",\n    \"answer\": \"gloves\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31550\",\n    \"key\": \"43125\",\n    \"description\": \"a man is wearing gloves and crossing himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_np5134IWAi1tpg4boo1_400\",\n    \"question\": \"what takes the step backward then stands on its hind legs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13565\",\n    \"key\": \"33617\",\n    \"description\": \"a small cat takes a step backward then stands on its hind legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr394z8H8A1uzsb7xo1_500\",\n    \"question\": \"what is the person holding a brush and is rubbing on the brush?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22019\",\n    \"key\": \"69717\",\n    \"description\": \"a person is holding a brush and a cat is rubbing on the brush.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfd9cwA9WC1u47ul7o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34575\",\n    \"key\": \"19032\",\n    \"description\": \"a woman with bright red hair says no and shakes her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr12heBDzF1siem3jo1_400\",\n    \"question\": \"how many race cars are racing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16687\",\n    \"key\": \"93803\",\n    \"description\": \"two race cars are racing and one starts sparking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngblduCMle1tbzapzo1_400\",\n    \"question\": \"what is the man holding and blowing the smoke out?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26383\",\n    \"key\": \"30752\",\n    \"description\": \"a man is holding a bottle that is on fire and blowing the smoke out.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb4y8ZLES1t03l64o1_400\",\n    \"question\": \"what is smoking and going backwards?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2754\",\n    \"key\": \"42848\",\n    \"description\": \"a car is smoking and going backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfanhywx5y1u1i12jo1_500\",\n    \"question\": \"where is the young boy wearing pajamas live as a woman touches his arm.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14000\",\n    \"key\": \"100152\",\n    \"description\": \"a young boy wearing pajamas live still in bed as a woman touches his arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqbvmEl2p1u36mi8o1_250\",\n    \"question\": \"what are three people dancing and all of them slap?\",\n    \"answer\": \"butts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10278\",\n    \"key\": \"22289\",\n    \"description\": \"three people are dancing and all of them slap their butts.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndn0rnXruV1tdmffyo1_250\",\n    \"question\": \"what jumped on top of the man?\",\n    \"answer\": \"sheep\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24185\",\n    \"key\": \"31047\",\n    \"description\": \"the sheep jumped on top of the man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9mfgbbZH1shbho8o1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27913\",\n    \"key\": \"68954\",\n    \"description\": \"a woman is smiling at somebody,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndelr27Acc1u0b1c1o1_400\",\n    \"question\": \"what are taking part in a race?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48456\",\n    \"key\": \"46359\",\n    \"description\": \"cars are taking part in a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbt9t3GNcv1tdjuqvo1_400\",\n    \"question\": \"what is the color of the puppy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2850\",\n    \"key\": \"32039\",\n    \"description\": \"a white puppy pushes itself backwards across a slippery floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblx5xbbZS1tig5w8o1_500\",\n    \"question\": \"what is watching the nuclear explosion?\",\n    \"answer\": \"dinosaur\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40566\",\n    \"key\": \"59855\",\n    \"description\": \"an animated dinosaur is watching a nuclear explosion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2tbjQ4oZ1rmiij7o1_500\",\n    \"question\": \"how many girls are hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37029\",\n    \"key\": \"57669\",\n    \"description\": \"two girls are hugging but one of them is being called by someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nolxxzhyg81tk2ngvo1_400\",\n    \"question\": \"what steals some food and FRAMEQAlaces it with a cat?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12136\",\n    \"key\": \"49339\",\n    \"description\": \"a dog steals some food and FRAMEQAlaces it with a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v6txFBWy1tc31mqo1_400\",\n    \"question\": \"what is walking along the sidewalk?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34976\",\n    \"key\": \"65105\",\n    \"description\": \"a puppy is walking along a sidewalk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nheuo83aCM1t0w9oqo1_400\",\n    \"question\": \"how many people are standing together while swaying and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34025\",\n    \"key\": \"74555\",\n    \"description\": \"two people are standing together while swaying and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfarhcHDam1seb8aro1_400\",\n    \"question\": \"where are seven kittens meowing.\",\n    \"answer\": \"? box\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50145\",\n    \"key\": \"65054\",\n    \"description\": \"seven kittens are meowing in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nprmzqr4Z81tkeou1o1_400\",\n    \"question\": \"what is wearing white clothes are dancing with exciting look?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34012\",\n    \"key\": \"18456\",\n    \"description\": \"three young star wearing white clothes are dancing with exciting look.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97k6nnj3K1tbjfazo1_400\",\n    \"question\": \"what is the bird tapping on the nose with its beak?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43575\",\n    \"key\": \"34099\",\n    \"description\": \"a bird is tapping a cat on the nose with its beak.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5mfia6i01rjjly3o1_500\",\n    \"question\": \"what is erupting and causing an avalanche?\",\n    \"answer\": \"surface\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11153\",\n    \"key\": \"41927\",\n    \"description\": \"a snow surface is erupting and causing an avalanche.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvri85Mv81u33e4bo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46501\",\n    \"key\": \"19169\",\n    \"description\": \"a man is taking off his black suit jacket to reveal a blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk987ekiXS1r5uv3zo1_250\",\n    \"question\": \"what is scared by its owner and jumps high into the air?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42526\",\n    \"key\": \"1461\",\n    \"description\": \"a cat is scared by its owner and jumps high into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_njx5xaqW1f1rp69xto1_400\",\n    \"question\": \"what is the girl taking and then making a sign with her hand?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1638\",\n    \"key\": \"28327\",\n    \"description\": \"a girl is taking a drink and then making a sign with her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr70pjtOjD1rpktdko1_400\",\n    \"question\": \"where is the woman bleeding and passing out.\",\n    \"answer\": \"? tub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22267\",\n    \"key\": \"67130\",\n    \"description\": \"a woman is bleeding and passing out in a bath tub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlffmM9Wd1uzmksuo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30130\",\n    \"key\": \"37993\",\n    \"description\": \"a man wearing a black shirt is sat down and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wgeq5I4S1sb5dnao1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6715\",\n    \"key\": \"6899\",\n    \"description\": \"a man in a gray top is scrunching up his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8y9rCjm11sta3neo1_250\",\n    \"question\": \"what are two men talking and drinking together?\",\n    \"answer\": \"coffee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23322\",\n    \"key\": \"18364\",\n    \"description\": \"two men are talking and drinking coffee together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba9erdYbj1s4ymmoo2_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31156\",\n    \"key\": \"13846\",\n    \"description\": \"a man with black hair is smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqcyl77OKE1uvzwo8o1_400\",\n    \"question\": \"what is performing while paint drips down the walls?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16387\",\n    \"key\": \"35237\",\n    \"description\": \"a rock band is performing while paint drips down the walls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5ik20yvI1tti8vwo1_500\",\n    \"question\": \"what is the young man with long hair handling?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50604\",\n    \"key\": \"88627\",\n    \"description\": \"a young man with long hair is handling a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy2vvQwpe1u3aopho1_500\",\n    \"question\": \"how many boys pose together for the group picture?\",\n    \"answer\": \"six\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44801\",\n    \"key\": \"92078\",\n    \"description\": \"six boys pose together for a group picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjj7ntrNZ1ssgyoro1_250\",\n    \"question\": \"where is the girl kicking a door.\",\n    \"answer\": \"? house\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33827\",\n    \"key\": \"2196\",\n    \"description\": \"a girl is kicking a door in a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3s8xxgSs1u1z1awo1_500\",\n    \"question\": \"what is the man grabbing and doing a jump?\",\n    \"answer\": \"snowboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43311\",\n    \"key\": \"83972\",\n    \"description\": \"a man is grabbing his snowboard and doing a jump.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncy89sSxEH1t4eui2o1_500\",\n    \"question\": \"how many male lions wrestle and one licks the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43783\",\n    \"key\": \"84234\",\n    \"description\": \"two male lions wrestle and one licks the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkjmkZVlx1u387zvo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51707\",\n    \"key\": \"42290\",\n    \"description\": \"a girl with long brown hair smiles and then laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5xkfbVPQ1tsmc92o1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17036\",\n    \"key\": \"50561\",\n    \"description\": \"a black haired woman is wearing white sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne29e5pZmc1sz068fo1_250\",\n    \"question\": \"what is playing with its kittens?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14807\",\n    \"key\": \"40146\",\n    \"description\": \"a dog is playing with its kittens.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwu84DGXF1slj978o1_400\",\n    \"question\": \"what is crossing the beam on the water?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44940\",\n    \"key\": \"40897\",\n    \"description\": \"a cute cat is crossing a beam on the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbx8aewg0R1rbd7evo1_500\",\n    \"question\": \"how many men sit talking to each other in a dark room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27819\",\n    \"key\": \"100425\",\n    \"description\": \"two men sit talking to each other in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3d2iPBG21r8q949o1_400\",\n    \"question\": \"what is the man riding down a stair railing?\",\n    \"answer\": \"snowboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49664\",\n    \"key\": \"42830\",\n    \"description\": \"a man is riding a snowboard down a stair railing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr7i2kHa71tk27r2o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8835\",\n    \"key\": \"27949\",\n    \"description\": \"a boy in a blue shirt attempts to do a double back flip off a railing but lands on his stomach in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rldadoip1twznkvo1_250\",\n    \"question\": \"what ate the two bananas?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41156\",\n    \"key\": \"41985\",\n    \"description\": \"the baby elephant ate the two bananas.\"\n  },\n  {\n    \"video_name\": \"tumblr_nde98bVDhd1r21xqpo1_250\",\n    \"question\": \"what does the blue animal frown and closes?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30242\",\n    \"key\": \"86043\",\n    \"description\": \"a blue animal frowns and closes the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwe4oGIZf1ti3vf1o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14348\",\n    \"key\": \"13617\",\n    \"description\": \"a girl runs up and hugs a guy with a white suit on.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gp2baRLi1rl3td7o1_400\",\n    \"question\": \"what is the woman,\",\n    \"answer\": \"wearing , hops around her couch while pointing at her face ? glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34839\",\n    \"key\": \"30759\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_neozsacZoD1r31wzpo1_500\",\n    \"question\": \"what is the person on a motorcycle making?\",\n    \"answer\": \"donut\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6822\",\n    \"key\": \"56833\",\n    \"description\": \"a person on a motorcycle is making a large dirt doughnut.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9nxz6cyx11sjuzlno1_400\",\n    \"question\": \"what did the white bird kiss?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18639\",\n    \"key\": \"36176\",\n    \"description\": \"a white bird kissed a green bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xhwswWAH1qi4n2uo1_500\",\n    \"question\": \"how many young man are dancing and bumping hips on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9539\",\n    \"key\": \"83905\",\n    \"description\": \"two young man are dancing and bumping hips on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nessuogOUs1spkf8wo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39959\",\n    \"key\": \"68682\",\n    \"description\": \"the woman in the gray hat turns her head and speaks to the man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhoqo9nDcU1szutyqo1_500\",\n    \"question\": \"how many girl puts her head back and rubs it on the girl next to her?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50328\",\n    \"key\": \"42089\",\n    \"description\": \"one girl puts her head back and rubs it on the girl next to her and she laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngatv43vBu1u5on9do1_250\",\n    \"question\": \"what is the man squirting on another man?\",\n    \"answer\": \"mustard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18711\",\n    \"key\": \"85687\",\n    \"description\": \"a man is squirting mustard on another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lp1cFATE1thmyo0o1_500\",\n    \"question\": \"what is the color of the jeans?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16568\",\n    \"key\": \"101953\",\n    \"description\": \"a young man wearing black jeans is laying down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne00j9tc0m1tx8mn0o1_400\",\n    \"question\": \"what is speeding down the dirt road and stops in some shrubs?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30647\",\n    \"key\": \"55497\",\n    \"description\": \"a car is speeding down a dirt road and stops in some shrubs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwo4pR4eE1tk2ngvo1_400\",\n    \"question\": \"what roars and sits on an ice block?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9137\",\n    \"key\": \"56306\",\n    \"description\": \"a polar bear roars and sits on an ice block.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqnrdxUw2R1u3f56mo1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14289\",\n    \"key\": \"68336\",\n    \"description\": \"a woman with white clothes is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfok5iX5E1srqnzqo1_400\",\n    \"question\": \"how many men are singing together on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44978\",\n    \"key\": \"59369\",\n    \"description\": \"two men are singing together on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qzicJ4gq1sn3gx2o1_250\",\n    \"question\": \"how many people are holding each other while crying?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47474\",\n    \"key\": \"35486\",\n    \"description\": \"three people are holding each other while crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8dhrx1Pa1rbgz0xo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21178\",\n    \"key\": \"81730\",\n    \"description\": \"a guy in a blue jacket is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8y79dwmex1tdjuqvo1_250\",\n    \"question\": \"what is the small dog wearing?\",\n    \"answer\": \"wig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4751\",\n    \"key\": \"16924\",\n    \"description\": \"a small dog is wearing a brunette wig.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtkw6qmuL1u6pwr8o2_r2_500\",\n    \"question\": \"how many guys are on the stage with microphones while walking by each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18500\",\n    \"key\": \"86491\",\n    \"description\": \"two guys are on a stage with microphones while walking by each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_npblti8bU91use8l1o1_400\",\n    \"question\": \"what is watching the bird while sitting and another bear came up?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45697\",\n    \"key\": \"82811\",\n    \"description\": \"the bear is watching a bird while sitting and another bear came up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfuliyXf1O1rx5795o1_400\",\n    \"question\": \"how many young people are dressed nicely and are posing with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49597\",\n    \"key\": \"1690\",\n    \"description\": \"two young people are dressed nicely and are posing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjdlk6CGv1tlw7exo1_250\",\n    \"question\": \"what is drinking something from the red bowl?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44501\",\n    \"key\": \"68979\",\n    \"description\": \"a cat is drinking something from the red bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bz5ojRqc1t99fkdo1_400\",\n    \"question\": \"what is someone with a mask on riding through a house?\",\n    \"answer\": \"tricycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36860\",\n    \"key\": \"29183\",\n    \"description\": \"someone with a mask on is riding a tricycle through a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_na05z08opP1ry1g5io1_400\",\n    \"question\": \"how many men are walking and talking with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5345\",\n    \"key\": \"17330\",\n    \"description\": \"two men are walking and talking with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2wgxdabT1u76jino1_400\",\n    \"question\": \"what is the kitty wearing and standing up on two feet to tap a hand?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29290\",\n    \"key\": \"42056\",\n    \"description\": \"a kitty is wearing a jacket and standing up on two feet to tap a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyvthzIw21txchtio1_500\",\n    \"question\": \"what is the person feeding with chopsticks?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39694\",\n    \"key\": \"92169\",\n    \"description\": \"a person is feeding a cat with chopsticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb74ml20iT1r75i3co1_250\",\n    \"question\": \"how many men dressed up with mustaches are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28291\",\n    \"key\": \"45786\",\n    \"description\": \"two men dressed up with mustaches are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejtlgrkmT1u1pi4oo1_400\",\n    \"question\": \"what is the color of the lips?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21773\",\n    \"key\": \"35293\",\n    \"description\": \"a person with red lips licks their top lip.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkdtmIRUr1u1z1awo1_500\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9408\",\n    \"key\": \"61104\",\n    \"description\": \"a person wearing a red outfit is skiing on a snowboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq8z49bTR1sk0i2mo1_250\",\n    \"question\": \"how many men are fought?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39702\",\n    \"key\": \"60385\",\n    \"description\": \"two men are fought and one guy got tackled.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfa0f8zRRV1rs02yxo1_250\",\n    \"question\": \"what is running through the woods and sliding down a hill?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51092\",\n    \"key\": \"40651\",\n    \"description\": \"a dog is running through the woods and sliding down a hill.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3zbi8nSQ1r26z3ao1_250\",\n    \"question\": \"what are exploding in the background of the night sky?\",\n    \"answer\": \"fireworks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30148\",\n    \"key\": \"79775\",\n    \"description\": \"fireworks are exploding in the background of the night sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn2z78qvl1t0ojyvo1_500\",\n    \"question\": \"how many young boys are laughing and acting silly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16130\",\n    \"key\": \"89276\",\n    \"description\": \"two young boys are laughing and acting silly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfljjzNN0y1u4vf33o1_400\",\n    \"question\": \"what is standing around by itself?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26930\",\n    \"key\": \"69301\",\n    \"description\": \"the dog is standing around by itself.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf58ex9daJ1tmmir0o1_400\",\n    \"question\": \"where is the guy with the white shirt skateboarding.\",\n    \"answer\": \"? tunnel\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18937\",\n    \"key\": \"64515\",\n    \"description\": \"the guy with the white shirt is skateboarding in the tunnel.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndruvpvdl31rojrheo1_500\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34578\",\n    \"key\": \"70799\",\n    \"description\": \"a guy with red pants'\"\n  },\n  {\n    \"video_name\": \"tumblr_nrfuguaBzT1uaa51jo1_500\",\n    \"question\": \"where is the couple joking around.\",\n    \"answer\": \"? theater\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27717\",\n    \"key\": \"88893\",\n    \"description\": \"the couple is joking around in the theater.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpnflPD2K1sklqsoo1_400\",\n    \"question\": \"how many boys are dancing together in the line?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33189\",\n    \"key\": \"58049\",\n    \"description\": \"three boys are dancing together in a line.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqpemb0oal1tj3r8so1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18220\",\n    \"key\": \"40151\",\n    \"description\": \"a yellow car drives towards a big pink balloon,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpvtttnNx1redfc8o1_500\",\n    \"question\": \"what are two guys on motor scooters driving?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51095\",\n    \"key\": \"90884\",\n    \"description\": \"two guys on motor scooters are driving own a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xd4qp4Kb1qlao6to1_400\",\n    \"question\": \"where is the girl stomping around.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6223\",\n    \"key\": \"29657\",\n    \"description\": \"a girl is stomping around in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner7ylN8ki1sncaa3o1_400\",\n    \"question\": \"what is cutting off another one at the boxes?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45149\",\n    \"key\": \"55584\",\n    \"description\": \"a race car is cutting off another one at the boxes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0daap0PB1u8ogblo1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4821\",\n    \"key\": \"97457\",\n    \"description\": \"a young man with a black coat is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmfankMEK1rf76tuo3_250\",\n    \"question\": \"how many young teenagers are watching the show on the computer?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42200\",\n    \"key\": \"27616\",\n    \"description\": \"three young teenagers are watching a show on the computer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqnzvmVMtf1rl4lhqo1_500\",\n    \"question\": \"where is somebody writing.\",\n    \"answer\": \"? machine\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6532\",\n    \"key\": \"92580\",\n    \"description\": \"somebody is writing in an old write machine.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y25gHC9K1repza7o1_400\",\n    \"question\": \"what does the man set off by banging a big hammer on the stage?\",\n    \"answer\": \"fireworks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46851\",\n    \"key\": \"69328\",\n    \"description\": \"a man sets off fireworks by banging a big hammer on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndq73y7mT21u1hp4lo1_500\",\n    \"question\": \"what is the woman with brown hair and eyes applying?\",\n    \"answer\": \"mascara\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36911\",\n    \"key\": \"97252\",\n    \"description\": \"a woman with brown hair and eyes is applying mascara.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2eksOOna1smdw0io1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39062\",\n    \"key\": \"28461\",\n    \"description\": \"a black dog is licking the mouth of a lady with a red shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrculsseiX1qzppyxo1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40031\",\n    \"key\": \"6360\",\n    \"description\": \"a woman in a leopard print dress and white coat is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0dca3y0r1u8ogblo1_500\",\n    \"question\": \"how many guys are posing for the photo shoot?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40873\",\n    \"key\": \"97415\",\n    \"description\": \"two guys are posing for a photo shoot.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2cffje8r1qjhqsyo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38565\",\n    \"key\": \"37556\",\n    \"description\": \"a man with white hair watches men taking off their jackets.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhodoqhefk1ruoqrro2_400\",\n    \"question\": \"how many girls are walking on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7338\",\n    \"key\": \"55473\",\n    \"description\": \"two girls are walking on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkxn39ENN1s3h8r8o1_400\",\n    \"question\": \"what is the woman smiling and playing?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33287\",\n    \"key\": \"57268\",\n    \"description\": \"the woman is smiling and playing piano.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpwlvEji61unh7rgo1_400\",\n    \"question\": \"what are swimming around in water?\",\n    \"answer\": \"turtles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19819\",\n    \"key\": \"35416\",\n    \"description\": \"a few turtles are swimming around in water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nga6l7burm1u2umgdo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49256\",\n    \"key\": \"30690\",\n    \"description\": \"a young girl with red hair sits on the floor and strokes a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_neua43pKJC1t0kntqo1_250\",\n    \"question\": \"what is the color of the characters?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51592\",\n    \"key\": \"53580\",\n    \"description\": \"two yellow characters stand on an indoor field and bow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk550nmZNP1u8uroco1_400\",\n    \"question\": \"what is the color of the panda?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36962\",\n    \"key\": \"52678\",\n    \"description\": \"a red panda plays and jumps in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nptdekVE6l1tfnm8co1_400\",\n    \"question\": \"what is trying to stand for the first time?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41391\",\n    \"key\": \"45462\",\n    \"description\": \"a baby elephant is trying to stand for the first time.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni12hwTxbn1sm32ino1_500\",\n    \"question\": \"what is the color of the trail?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25277\",\n    \"key\": \"72849\",\n    \"description\": \"a woman is spinning while holding a red smoke trail.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vg6uBfvE1t8vkd1o1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37690\",\n    \"key\": \"101043\",\n    \"description\": \"the man with the gray suit pushed the lady down the well.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9o426sPJ51smv61so1_400\",\n    \"question\": \"how many men dance the routine on stage while one of them sings into a microphone?\",\n    \"answer\": \"six\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41963\",\n    \"key\": \"65094\",\n    \"description\": \"six men dance a routine on stage while one of them sings into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8y79dwmex1tdjuqvo1_250\",\n    \"question\": \"what is wearing the sweater and a wig?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36643\",\n    \"key\": \"16924\",\n    \"description\": \"a dog is wearing a sweater and a wig.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrzdxnmrz1tgetb4o1_250\",\n    \"question\": \"what does the guy kick and then the dog hits him in the crotch with a rake?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41855\",\n    \"key\": \"39882\",\n    \"description\": \"a guy kicks a dog and then the dog hits him in the crotch with a rake.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqkp9NXom1t3liooo1_400\",\n    \"question\": \"what is the color of the skater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49716\",\n    \"key\": \"29101\",\n    \"description\": \"a black figure skater does a back flip and lands gracefully.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbu0bmRkFb1tya5iuo1_500\",\n    \"question\": \"what is the car doing spins and are smoking?\",\n    \"answer\": \"wheels\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43835\",\n    \"key\": \"71634\",\n    \"description\": \"a car is doing spins and the wheels are smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9j3qvBQsM1rf9xmzo1_400\",\n    \"question\": \"what is the color of the stick?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43229\",\n    \"key\": \"44623\",\n    \"description\": \"a man is dancing while holding a black stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam4laekMg1raer1zo1_500\",\n    \"question\": \"what is sniffing the man 's legs?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2374\",\n    \"key\": \"90546\",\n    \"description\": \"a young puppy is sniffing a man 's legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq3p4yhj41tgmmsko1_500\",\n    \"question\": \"how many young men are sitting on the sofa and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8879\",\n    \"key\": \"41849\",\n    \"description\": \"two young men are sitting on a sofa and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xwop6vVU1te9jtmo1_500\",\n    \"question\": \"how many men are talking?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33747\",\n    \"key\": \"66564\",\n    \"description\": \"three men are talking and one of them is talking in the phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf3n9tRJN1td8ijso1_500\",\n    \"question\": \"what is the man with a hat getting shaped award?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36361\",\n    \"key\": \"47511\",\n    \"description\": \"a man with a hat is getting a box shaped award.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngz2gcvCxw1rtdnfto1_400\",\n    \"question\": \"how many dices of different colors are being rolled?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17209\",\n    \"key\": \"28359\",\n    \"description\": \"three dices of different colors are being rolled.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc43dlSitp1qz5yzjo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2356\",\n    \"key\": \"98023\",\n    \"description\": \"a white man with black shirt is stop and looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_noka4jzEvu1uvvbrro1_250\",\n    \"question\": \"what is the man talking on a telephone picks up?\",\n    \"answer\": \"knife\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8300\",\n    \"key\": \"23792\",\n    \"description\": \"a man talking on a telephone picks up a knife.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdvtc57Ux1tx8mn0o1_400\",\n    \"question\": \"what is driving slowly on the race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19735\",\n    \"key\": \"52693\",\n    \"description\": \"a white race car is driving slowly on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nccfbu3O271rmcoi9o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13234\",\n    \"key\": \"11336\",\n    \"description\": \"a man in a white shirt scratches his shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbze7q65N1s6zpepo1_500\",\n    \"question\": \"what is the color of the ocean?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12508\",\n    \"key\": \"65465\",\n    \"description\": \"a white shark is swimming in the blue ocean.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk93w8xzrj1uoybayo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3224\",\n    \"key\": \"60578\",\n    \"description\": \"man with black shirt is kissing hand of black woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfp07udA6a1sa63q9o1_250\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13110\",\n    \"key\": \"15904\",\n    \"description\": \"a man with blue eyes wearing a blue shirt is talking and blinking his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_not9kcZnFJ1uu6jgto1_400\",\n    \"question\": \"what is fed with milk with an injection bottle?\",\n    \"answer\": \"rat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45116\",\n    \"key\": \"20368\",\n    \"description\": \"rat is fed with milk with an injection bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5ataOKNF1ra19auo1_250\",\n    \"question\": \"where is the man playing a guitar.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32366\",\n    \"key\": \"32238\",\n    \"description\": \"a man is playing a guitar in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mcomp3VE1sa9k0fo1_250\",\n    \"question\": \"what is the color of the wig?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38227\",\n    \"key\": \"6285\",\n    \"description\": \"a woman in a gray short dress and a black wig is walking down a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndjfgohCV31tl8x1eo2_r1_1280\",\n    \"question\": \"how many men are walking down the hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37484\",\n    \"key\": \"90198\",\n    \"description\": \"two men are walking down a hallway and they are very excited and happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2ve9qFfE1u4v3ypo1_500\",\n    \"question\": \"what turns in the circle while looking beneath itself?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA630\",\n    \"key\": \"49202\",\n    \"description\": \"a kitten turns in a circle while looking beneath itself.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndas0gKlwT1s2prj9o1_250\",\n    \"question\": \"how many arm is the guy spinning in a circle while dancing and throwing into the air?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13671\",\n    \"key\": \"16584\",\n    \"description\": \"a guy is spinning in a circle while dancing and throwing one arm into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemlr0qXJL1rwfvfro1_400\",\n    \"question\": \"what is the person wearing laughing with another person as they walk?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8692\",\n    \"key\": \"21542\",\n    \"description\": \"a person wearing headphones laughing with another person as they walk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcj908B4V1tkjhdko1_500\",\n    \"question\": \"what is the man in pain and is in front of him?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46945\",\n    \"key\": \"93957\",\n    \"description\": \"a man is in pain and a box is in front of him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcyybdpPO1qct8qno1_400\",\n    \"question\": \"what is facing the cow and reverses backwards then runs towards it?\",\n    \"answer\": \"sheep\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16277\",\n    \"key\": \"96856\",\n    \"description\": \"a sheep is facing a cow and reverses backwards then runs towards it.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8zogREs01tju8cjo1_400\",\n    \"question\": \"how many men in a room do some dance moves,\",\n    \"answer\": \"and one talks to someone ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24767\",\n    \"key\": \"33677\",\n    \"description\": \"two men in a room do some dance moves,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpu91LvOA1rhxlc2o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10142\",\n    \"key\": \"3562\",\n    \"description\": \"a woman in a black dress is kissing a stuffed animal.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ljz37P2L1ti3rdpo1_400\",\n    \"question\": \"what does the woman open up?\",\n    \"answer\": \"locker\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4406\",\n    \"key\": \"83540\",\n    \"description\": \"a woman opens up a locker as a boy jumps out waving his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp2yb8VBA1rv99tvo2_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2013\",\n    \"key\": \"7349\",\n    \"description\": \"a boy in a black sweater is sitting at a desk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6s48cgKH1tcvnmho1_400\",\n    \"question\": \"what is the man with long hair gripping?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3069\",\n    \"key\": \"59797\",\n    \"description\": \"a man with long hair is gripping the microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7ortnyJB1s0nx6go1_100\",\n    \"question\": \"what is licking water from a faucet?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17416\",\n    \"key\": \"4838\",\n    \"description\": \"a dog is licking water from a faucet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpchsaQdB1tg4ng0o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5023\",\n    \"key\": \"36389\",\n    \"description\": \"a dark haired man dressed in black,\"\n  },\n  {\n    \"video_name\": \"tumblr_nelx9gbLoH1u33n9wo1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20739\",\n    \"key\": \"47992\",\n    \"description\": \"a man wears a blue shirt and white coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfa5niq6tJ1skrnl9o1_250\",\n    \"question\": \"what does this show roller moving downwards with some people in it?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28063\",\n    \"key\": \"43054\",\n    \"description\": \"this shows a roller coaster car moving downwards with some people in it.\"\n  },\n  {\n    \"video_name\": \"tumblr_namb9eKBsf1tk0ytuo1_400\",\n    \"question\": \"how many woman is this kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41349\",\n    \"key\": \"57007\",\n    \"description\": \"this is two woman kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfv5xzlgj31u25yojo1_400\",\n    \"question\": \"how many young men is sitting are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36538\",\n    \"key\": \"87470\",\n    \"description\": \"two young men sitting are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nilncsL7s01svos5ho1_400\",\n    \"question\": \"what is the woman holding and standing on a stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47312\",\n    \"key\": \"40974\",\n    \"description\": \"a woman is holding a guitar and standing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxdsn2yZB1r2lnvfo1_400\",\n    \"question\": \"what are two women taking together?\",\n    \"answer\": \"bath\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46099\",\n    \"key\": \"26152\",\n    \"description\": \"two women are taking a bath together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nra8jaNWXd1ti2yzto1_1280\",\n    \"question\": \"what are playing with each other between a bike wheel?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16015\",\n    \"key\": \"17735\",\n    \"description\": \"two cats are playing with each other between a bike wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7hlh9kAJ1u3wzc8o1_100\",\n    \"question\": \"how many football players are running down the field and one catches the ball?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23982\",\n    \"key\": \"15149\",\n    \"description\": \"two football players are running down the field and one catches the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfer68qTm1re05qko1_500\",\n    \"question\": \"how many men are staring at each other intensely?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8166\",\n    \"key\": \"76658\",\n    \"description\": \"two men are staring at each other intensely.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkmxjaSAq1u777vko1_500\",\n    \"question\": \"what is opening its moth and spreading its wings?\",\n    \"answer\": \"bat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16457\",\n    \"key\": \"57894\",\n    \"description\": \"a bat is opening its moth and spreading its wings.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr9dyUwwa1u1ijg8o1_400\",\n    \"question\": \"what is rocking its head back and forth until it barfs out a worm?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36415\",\n    \"key\": \"26386\",\n    \"description\": \"a bird is rocking its head back and forth until it barfs out a worm.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y2jhq01L1rts5xfo1_250\",\n    \"question\": \"what is the man with dark hair holding to his mouth?\",\n    \"answer\": \"close\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47721\",\n    \"key\": \"23\",\n    \"description\": \"a man with dark hair is holding a microphone close to his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6gv9Zbaz1r4phxao1_400\",\n    \"question\": \"what is happily walking along on the leash?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8250\",\n    \"key\": \"94809\",\n    \"description\": \"a dog is happily walking along on a leash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk987ekiXS1r5uv3zo1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21575\",\n    \"key\": \"1461\",\n    \"description\": \"a yellow cat jumps up in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9ok0sAQE1u9vl8lo1_400\",\n    \"question\": \"where does the person run over another person.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44442\",\n    \"key\": \"54033\",\n    \"description\": \"a person in a toy car runs over another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr6g1Uyiu1qmlbemo1_500\",\n    \"question\": \"what is someone wearing and giving someone a hug?\",\n    \"answer\": \"rings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1843\",\n    \"key\": \"92583\",\n    \"description\": \"someone is wearing rings and giving someone a hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk987ekiXS1r5uv3zo1_250\",\n    \"question\": \"what jumps up in the air?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22947\",\n    \"key\": \"1461\",\n    \"description\": \"a yellow cat jumps up in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqa72svB2q1uxws2zo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26223\",\n    \"key\": \"24859\",\n    \"description\": \"a very cute girl with brown hair is holding something yellow in her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq513q76F81u3cb3fo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52182\",\n    \"key\": \"46038\",\n    \"description\": \"three women in red skirts with black hair are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7ba776pi1thbdaio1_500\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32109\",\n    \"key\": \"74018\",\n    \"description\": \"two woman 's wearing black shirts are kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5955DXLa1skvqs1o1_500\",\n    \"question\": \"what is this jumping off a tower?\",\n    \"answer\": \"bungee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24074\",\n    \"key\": \"45575\",\n    \"description\": \"this is a person bungee jumping off a tower.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhef7ip3A31txcppto1_250\",\n    \"question\": \"where is the woman doing tricks.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26990\",\n    \"key\": \"20520\",\n    \"description\": \"a woman is doing tricks in her bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvl3c8kSe1t7j74xo1_250\",\n    \"question\": \"what sees the treat and jumps around?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35834\",\n    \"key\": \"1449\",\n    \"description\": \"the dog sees a treat and jumps around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngso9lZMR01r6xk6do1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12953\",\n    \"key\": \"33861\",\n    \"description\": \"the girl with a black cap was talking and seemed irritated.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ydozmYSs1t8cae9o1_500\",\n    \"question\": \"where is the guy crying.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34873\",\n    \"key\": \"55311\",\n    \"description\": \"a guy is crying in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbad3kmtlO1qbih2ho1_500\",\n    \"question\": \"how many men hold microphones while standing in a semi circle?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16883\",\n    \"key\": \"24377\",\n    \"description\": \"three men hold microphones while standing in a semi circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd91nlEKaI1tx8mn0o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7738\",\n    \"key\": \"55564\",\n    \"description\": \"a blue race car is in the lead as it turns a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd52u0m5cZ1r6z87zo1_250\",\n    \"question\": \"how many men is this playing the drums?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32475\",\n    \"key\": \"24022\",\n    \"description\": \"this is three men playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq0fyOyiC1rj38k8o1_400\",\n    \"question\": \"what does the dog hop and waves in the air?\",\n    \"answer\": \"paws\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45129\",\n    \"key\": \"1318\",\n    \"description\": \"the dog hops and waves its paws in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlyb88ivB1u049uio1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20294\",\n    \"key\": \"99883\",\n    \"description\": \"a person with red hair and wearing a lilac colored coat is singing and dancing as snow is falling around them.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2vicp4Xt1ti2fvro1_400\",\n    \"question\": \"what are two guys riding and one flips off the front of his?\",\n    \"answer\": \"motorcycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52516\",\n    \"key\": \"53169\",\n    \"description\": \"two guys are riding motorcycles and one flips off the front of his.\"\n  },\n  {\n    \"video_name\": \"tumblr_njziaa2Zn31u8fu4co1_500\",\n    \"question\": \"how many guy sings while another played guitar?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19472\",\n    \"key\": \"52099\",\n    \"description\": \"one guy sings while another played guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_npsr937NMb1tpg4boo1_250\",\n    \"question\": \"what are chasing the cat throughout the house?\",\n    \"answer\": \"puppies\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8203\",\n    \"key\": \"27621\",\n    \"description\": \"the puppies are chasing the cat throughout the house.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9snmfaad41rlw2xio1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22790\",\n    \"key\": \"31304\",\n    \"description\": \"a guy in a green jacket is being pushed down by another boy as he approaches a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtzzkjgf81rpb34go1_400\",\n    \"question\": \"how many men are driving in the car and one man licks the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16964\",\n    \"key\": \"60156\",\n    \"description\": \"two men are driving in a car and one man licks the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfcj4xatM1utt6zho1_400\",\n    \"question\": \"what is the wrestler holding up wrestling?\",\n    \"answer\": \"belt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20146\",\n    \"key\": \"93090\",\n    \"description\": \"a wrestler is holding up a wrestling championship belt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhgvywHCuZ1thpbnjo1_400\",\n    \"question\": \"where does the guy walk by and waves as another just sits.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43498\",\n    \"key\": \"50872\",\n    \"description\": \"a guy walks by and waves as another just sits in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclfo70sVI1tg2jndo1_250\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24120\",\n    \"key\": \"165\",\n    \"description\": \"three boys in white shirts are singing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjsoh5vlN1sfwh8no1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39840\",\n    \"key\": \"86550\",\n    \"description\": \"a guy wearing a gray jacket is talking to two girls in the parking lot.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qzicJ4gq1sn3gx2o1_250\",\n    \"question\": \"how many friends are hugging at an event?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24445\",\n    \"key\": \"35486\",\n    \"description\": \"three friends are hugging at an event.\"\n  },\n  {\n    \"video_name\": \"tumblr_nisq9mFoW21tbs50qo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18138\",\n    \"key\": \"73695\",\n    \"description\": \"a man wearing a red shirt is staring at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhhujqoyKU1tjhld9o1_400\",\n    \"question\": \"what is the color of the ball?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3892\",\n    \"key\": \"54091\",\n    \"description\": \"a dog is chasing after a large blue ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb72ccwXWg1tkrxymo1_500\",\n    \"question\": \"where is the woman dancing.\",\n    \"answer\": \"? nightclub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4818\",\n    \"key\": \"57969\",\n    \"description\": \"a woman is dancing in a nightclub.\"\n  },\n  {\n    \"video_name\": \"tumblr_npgic1jBgU1utmlppo1_500\",\n    \"question\": \"what is the woman washing with liquid?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29239\",\n    \"key\": \"97357\",\n    \"description\": \"a woman is washing a car with liquid.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3lbfewRi1slj978o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17224\",\n    \"key\": \"36311\",\n    \"description\": \"a little girl in a blue dress walks forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93bkoyPtY1qa5ehho1_400\",\n    \"question\": \"what is the man smoking very quickly?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46318\",\n    \"key\": \"57243\",\n    \"description\": \"the man is smoking a cigarette very quickly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbivlx2sZy1tiqdeho1_400\",\n    \"question\": \"how many young guys are out drinking shakes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15908\",\n    \"key\": \"68717\",\n    \"description\": \"two young guys are out drinking shakes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb24d6muvo1qc93dho1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20428\",\n    \"key\": \"17442\",\n    \"description\": \"a woman wearing a white shirt jumps up and down and pumps her arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nculypGc871u0x3uvo1_500\",\n    \"question\": \"where is the boy with red hair sitting and playing a guitar.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28415\",\n    \"key\": \"69278\",\n    \"description\": \"a boy with red hair is sitting in a chair and playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nm93s5pJEJ1qbrl65o1_400\",\n    \"question\": \"how many men are dancing in front of an american flag and flames?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14592\",\n    \"key\": \"82287\",\n    \"description\": \"two men are dancing in front of an american flag and flames.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagwhxoNB31sx2mzoo1_500\",\n    \"question\": \"where is man singing and moving.\",\n    \"answer\": \"? microphone\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39238\",\n    \"key\": \"96385\",\n    \"description\": \"man is singing and moving in front microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7kldLCpB1sdbrm9o1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40671\",\n    \"key\": \"9339\",\n    \"description\": \"a guy with a microphone and a guy in white walked across a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgtrswsrb1qax4nyo3_500\",\n    \"question\": \"what is the color of the blouse?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51913\",\n    \"key\": \"76452\",\n    \"description\": \"the woman is wearing a purple blouse.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vcdumjlM1th8gzmo1_500\",\n    \"question\": \"where is the woman looking and fixing her hair.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9755\",\n    \"key\": \"88561\",\n    \"description\": \"the woman is looking in the mirror and fixing her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2rxyDWRp1sbow0fo1_500\",\n    \"question\": \"how many young girls are standing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13120\",\n    \"key\": \"95622\",\n    \"description\": \"two young girls are standing and one is playing with her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1h818Si01tlk1ano1_250\",\n    \"question\": \"what is looking at the ceiling and jumps and falls?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38141\",\n    \"key\": \"7880\",\n    \"description\": \"a cat is looking at a ceiling and jumps and falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_npc6v49jBd1u2xe60o1_400\",\n    \"question\": \"what is the color of the varnish?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27585\",\n    \"key\": \"11988\",\n    \"description\": \"a fingernail is painted with pale blue varnish and topped with pink varnish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdnbkd7pB1tccohro1_500\",\n    \"question\": \"what is the girl wearing and flipping her hair?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10303\",\n    \"key\": \"92324\",\n    \"description\": \"a girl is wearing a cap and flipping her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsvdePTit1tbmi9ho1_400\",\n    \"question\": \"what is the color of the pilot?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA53038\",\n    \"key\": \"85621\",\n    \"description\": \"a black pilot danced happily in his seat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnz7zKMYj1t0pznvo1_250\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38522\",\n    \"key\": \"11016\",\n    \"description\": \"a man wearing red lipstick is pursing his lips then opening his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cg1spL9g1sz9hlbo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6543\",\n    \"key\": \"28380\",\n    \"description\": \"a young man wearing black shirt turns his head and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelhankJre1tg6141o1_500\",\n    \"question\": \"what is the color of the feathers?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51885\",\n    \"key\": \"96576\",\n    \"description\": \"a boy is watching blue feathers fall to the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkb339CAjq1uozyoro1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12780\",\n    \"key\": \"87593\",\n    \"description\": \"a black guy is letting out some smoke from his mouth and then he smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q0g7y49C1rk1fx6o1_400\",\n    \"question\": \"what appears to be landing,\",\n    \"answer\": \"but then suddenly takes off again ? jet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37900\",\n    \"key\": \"25285\",\n    \"description\": \"a fighter jet appears to be landing,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkdvvGao31tipom1o1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22753\",\n    \"key\": \"35603\",\n    \"description\": \"this image is of a guy in white with sunglasses on dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbaq3aBbnd1tb1py0o2_400\",\n    \"question\": \"where are the couple of skaters rotated.\",\n    \"answer\": \"? rink\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23326\",\n    \"key\": \"58688\",\n    \"description\": \"a couple of skaters are rotated in an ice rink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlc3i7KYK1sqiy4oo1_400\",\n    \"question\": \"where are the men singing and dancing.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46050\",\n    \"key\": \"60244\",\n    \"description\": \"the men are singing and dancing in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnyrc8Z2uX1rs6s3mo1_500\",\n    \"question\": \"how many people are figure skating on ice?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18747\",\n    \"key\": \"82955\",\n    \"description\": \"two people are figure skating on ice.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99yz3noHL1rjrczro1_400\",\n    \"question\": \"how many young women are greeting each other at an airport?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30536\",\n    \"key\": \"5619\",\n    \"description\": \"two young women are greeting each other at an airport.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3k3l3Yn01sk96t7o1_500\",\n    \"question\": \"what is trying to catch the fish?\",\n    \"answer\": \"octopus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30266\",\n    \"key\": \"38964\",\n    \"description\": \"an octopus is trying to catch a fish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb77zsyMUJ1sn0ok1o1_250\",\n    \"question\": \"what is the man playing on a stage and making an obscene gesture?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45018\",\n    \"key\": \"4225\",\n    \"description\": \"a man is playing guitar on a stage and making an obscene gesture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc216vPG4X1tdjuqvo1_400\",\n    \"question\": \"what slowly climbs onto his back legs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28607\",\n    \"key\": \"30878\",\n    \"description\": \"a cat slowly climbs onto his back legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbckywZKY1u0cbtjo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4803\",\n    \"key\": \"23338\",\n    \"description\": \"a man wearing a white shirt is looking into a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nceczwihSL1sb01bko1_250\",\n    \"question\": \"what are dancing at the party with other people?\",\n    \"answer\": \"turtles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30749\",\n    \"key\": \"51352\",\n    \"description\": \"turtles are dancing at a party with other people.\"\n  },\n  {\n    \"video_name\": \"tumblr_najmw24iuw1qlo2n6o1_400\",\n    \"question\": \"how many other people is the man pushing around a store in a shopping cart?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39829\",\n    \"key\": \"20067\",\n    \"description\": \"a man is pushing two other people around a store in a shopping cart.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90hf0rDEo1t0ojyvo1_250\",\n    \"question\": \"how many men are making fake gun signs with their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1740\",\n    \"key\": \"25494\",\n    \"description\": \"two men are making fake gun signs with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng67v0PpjK1tkhxdko1_400\",\n    \"question\": \"what is the dog driving across the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52127\",\n    \"key\": \"17979\",\n    \"description\": \"a dog is driving a toy car across the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ghigU0nd1tx8mn0o1_400\",\n    \"question\": \"what are driving fast and in sync?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42278\",\n    \"key\": \"55496\",\n    \"description\": \"multicolored race cars are driving fast and in sync.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8c0panhq1tjisrpo1_250\",\n    \"question\": \"what is the girl playing and whipping her hair around by the sea?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39821\",\n    \"key\": \"22225\",\n    \"description\": \"a girl is playing a guitar and whipping her hair around by the sea.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyaonXHxl1tmnntwo1_400\",\n    \"question\": \"what is the color of the slide?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8583\",\n    \"key\": \"18209\",\n    \"description\": \"a black cat goes down a yellow slide.\"\n  },\n  {\n    \"video_name\": \"tumblr_np1t4vqCw51uupe4vo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4367\",\n    \"key\": \"19334\",\n    \"description\": \"the man in black is waving his hands around.\"\n  },\n  {\n    \"video_name\": \"tumblr_naohfoNYRf1rqio5ho1_400\",\n    \"question\": \"what is the man jumping in the air and throwing at another man?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21574\",\n    \"key\": \"60662\",\n    \"description\": \"a man is jumping in the air and throwing a ball at another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhic56wdN51swdjefo1_400\",\n    \"question\": \"what is the man waving in the air and shouting?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23544\",\n    \"key\": \"61203\",\n    \"description\": \"a man is waving his bowler hat in the air and shouting.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u2swNpQV1qe2thio1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3659\",\n    \"key\": \"73413\",\n    \"description\": \"a black horse is running across dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh39e5Eyfh1u5quhyo1_400\",\n    \"question\": \"what pushes the pair of upright skis down and proceeds to jump on them and ski?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16736\",\n    \"key\": \"14890\",\n    \"description\": \"a dog pushes a pair of upright skis down and proceeds to jump on them and ski.\"\n  },\n  {\n    \"video_name\": \"tumblr_nm93s5pJEJ1qbrl65o1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22883\",\n    \"key\": \"82287\",\n    \"description\": \"a black guy is yelling in front of different backgrounds.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v6txFBWy1tc31mqo1_400\",\n    \"question\": \"what is walking on the road with his tongue out?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20198\",\n    \"key\": \"65105\",\n    \"description\": \"a puppy is walking on the road with his tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak7e2ZUC11qirq69o1_400\",\n    \"question\": \"where is the boy skateboarding.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA861\",\n    \"key\": \"57333\",\n    \"description\": \"a boy is skateboarding in an empty pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nai0l5mxue1tosnwso1_400\",\n    \"question\": \"how many women are talking about something waving hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3092\",\n    \"key\": \"59373\",\n    \"description\": \"two women are talking about something waving hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_npzxj9c0Ne1r0vgovo1_500\",\n    \"question\": \"what is the very cute girl opening to a cute man?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19872\",\n    \"key\": \"97445\",\n    \"description\": \"a very cute girl is opening the door to a cute man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncll77hAUJ1tzrs58o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43021\",\n    \"key\": \"48294\",\n    \"description\": \"a boy in a white shirt puts his head down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqu3w0hZk81u176r8o1_250\",\n    \"question\": \"what is the black woman taking off?\",\n    \"answer\": \"wig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30391\",\n    \"key\": \"90899\",\n    \"description\": \"a black woman is taking her wig off.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq5e3s3tS1tkkgpso1_500\",\n    \"question\": \"where is the man in the suit looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36642\",\n    \"key\": \"49408\",\n    \"description\": \"the man in the suit is looking in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nph9oahgME1sj5w9fo1_400\",\n    \"question\": \"what is the man cleaning with a cloth?\",\n    \"answer\": \"shoe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4060\",\n    \"key\": \"39411\",\n    \"description\": \"a man is cleaning his shoe with a cloth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xv6aqQ5A1qmgppeo1_250\",\n    \"question\": \"what is the dog briefly wagging and looking at something?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46008\",\n    \"key\": \"38221\",\n    \"description\": \"a dog is briefly wagging its tail and looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wgflENh81sv54yao1_400\",\n    \"question\": \"what is the color of the one?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA53076\",\n    \"key\": \"57145\",\n    \"description\": \"two men wearing black one is dancing while the other is watching.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngocss8lv11s0s7b6o1_400\",\n    \"question\": \"where is the mans'\",\n    \"answer\": \"face shown . ? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47053\",\n    \"key\": \"42817\",\n    \"description\": \"a mans'\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9y6ssSON1tk8n6jo1_250\",\n    \"question\": \"what is the man holding and smiling?\",\n    \"answer\": \"knife\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32648\",\n    \"key\": \"39630\",\n    \"description\": \"a man is holding a knife and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesu4nuPbX1tzd5txo1_500\",\n    \"question\": \"how many black horses are running in the field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46687\",\n    \"key\": \"97005\",\n    \"description\": \"two black horses are running in a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerb97GIve1r36gcfo1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA276\",\n    \"key\": \"20074\",\n    \"description\": \"a man in a white cap is coaching his team.\"\n  },\n  {\n    \"video_name\": \"tumblr_non9dnF1Om1u4uss5o1_400\",\n    \"question\": \"how many women are holding one another and kissing each other passionately?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17111\",\n    \"key\": \"78286\",\n    \"description\": \"two women are holding one another and kissing each other passionately.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak20te0ek1tndo5vo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38905\",\n    \"key\": \"47088\",\n    \"description\": \"a man in a blue shirt turns their head to talk to a woman with long dark hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklvmbxVSC1qeurwuo1_250\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17531\",\n    \"key\": \"53608\",\n    \"description\": \"a woman in blue clothes walks forwards in slow motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx65gR5vx1u75zfco1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40905\",\n    \"key\": \"84203\",\n    \"description\": \"a man in a white suit looks up and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_njomwaECLx1qga6p9o2_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15303\",\n    \"key\": \"81166\",\n    \"description\": \"a boy wears a black shirt and has shoulder length hair and drinks from a bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5nxeWYoX1u36sfeo1_500\",\n    \"question\": \"what is the man with dark hair smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8352\",\n    \"key\": \"84829\",\n    \"description\": \"a man with dark hair is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nho36xy72u1sfxtxno1_1280\",\n    \"question\": \"how many men are chewing gum with their mouths open?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45709\",\n    \"key\": \"56346\",\n    \"description\": \"the two men are chewing gum with their mouths open.\"\n  },\n  {\n    \"video_name\": \"tumblr_naeyc6yQWy1tahfdeo1_250\",\n    \"question\": \"what is licking the cheetah on the floor?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25081\",\n    \"key\": \"56593\",\n    \"description\": \"the dog is licking the cheetah on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq4afnM0Z1s5o1jwo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26766\",\n    \"key\": \"41704\",\n    \"description\": \"a person wearing a dark gray jacket has two big rodents climbing on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqagz6lei1tdjuqvo1_400\",\n    \"question\": \"what is the guy tickling and the turtle is squirming away?\",\n    \"answer\": \"shell\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34299\",\n    \"key\": \"15374\",\n    \"description\": \"a guy is tickling a turtle 's shell and the turtle is squirming away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkuhrpI341txsmyfo1_400\",\n    \"question\": \"what are the man and a woman wearing and looking surprised?\",\n    \"answer\": \"costumes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA180\",\n    \"key\": \"40487\",\n    \"description\": \"a man and a woman are wearing elf costumes and looking surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklld32jOh1qg5lg0o1_250\",\n    \"question\": \"how many people does this show carefully entering a building?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25511\",\n    \"key\": \"53712\",\n    \"description\": \"this shows two people carefully entering a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_naepk5DoIi1snxvgpo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31269\",\n    \"key\": \"75860\",\n    \"description\": \"a man in a black shirt is singing and pointing.\"\n  },\n  {\n    \"video_name\": \"tumblr_noz8tsEjKu1u719p2o1_400\",\n    \"question\": \"where does the man get his head rubbed.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42947\",\n    \"key\": \"65079\",\n    \"description\": \"a man in a bedroom gets his head rubbed.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ffgnCzzc1rqp9xfo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47192\",\n    \"key\": \"90840\",\n    \"description\": \"a man in a white jacket and black bow tie is making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncet92koKM1qef8h0o1_400\",\n    \"question\": \"where does the man shoot an unarmed man who has his hands up.\",\n    \"answer\": \"? shield\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9553\",\n    \"key\": \"59219\",\n    \"description\": \"a man in a steel face shield shoots an unarmed man who has his hands up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0v8hQfU71sjuzlno1_400\",\n    \"question\": \"what is the color of the spots?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22819\",\n    \"key\": \"37917\",\n    \"description\": \"a bird with black spots plays with a small pumpkin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad5toBHv81s2mb0qo1_500\",\n    \"question\": \"what sniffs another cat squashed in a cardboard box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20849\",\n    \"key\": \"62745\",\n    \"description\": \"a cat sniffs another cat squashed in a cardboard box.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfsu5KiUJ1qzlu7po1_540\",\n    \"question\": \"how many men are hugging and going through an obstacle of friends?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31391\",\n    \"key\": \"93677\",\n    \"description\": \"two men are hugging and going through an obstacle of friends.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni6tcg0JrP1slj978o1_400\",\n    \"question\": \"what is the hockey skating off the ice and causes him to fall down?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10018\",\n    \"key\": \"19167\",\n    \"description\": \"a hockey is skating off the ice and his stick causes him to fall down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nac2p29bq51srzj7lo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50217\",\n    \"key\": \"8489\",\n    \"description\": \"a man adjusts his white jacket and smiles among a crowd of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin8fp1Mk31ruk292o1_400\",\n    \"question\": \"how many soccer teams play while the player in red scores a goal?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27312\",\n    \"key\": \"101477\",\n    \"description\": \"two soccer teams play while a player in red scores a goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8793lRgU1rbgz0xo1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49589\",\n    \"key\": \"87835\",\n    \"description\": \"a performer in a white shirt is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbdow0oY81tb2kgho1_400\",\n    \"question\": \"what is the color of the nails?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21706\",\n    \"key\": \"96428\",\n    \"description\": \"a person has long orange finger nails with one black finger nail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn8b3ckHXT1rgj6reo1_400\",\n    \"question\": \"what sits with his paws in a water bowl?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14621\",\n    \"key\": \"55944\",\n    \"description\": \"a puppy sits with his paws in a water bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nis0671Qu01tjqbh0o1_250\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50340\",\n    \"key\": \"1463\",\n    \"description\": \"a black dog is closing his eyes while he is being washed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9bf9Vddz1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26751\",\n    \"key\": \"63432\",\n    \"description\": \"a white car is running fast in a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemlr0qXJL1rwfvfro1_400\",\n    \"question\": \"how many men are walking together and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1930\",\n    \"key\": \"21542\",\n    \"description\": \"two men are walking together and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rkeb4Wyf1tbjfazo1_250\",\n    \"question\": \"what is crawling forward slowly?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28969\",\n    \"key\": \"92043\",\n    \"description\": \"a small tabby kitten is crawling forward slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_no6e8o2eIn1us4ateo1_250\",\n    \"question\": \"what is the color of the bra?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29291\",\n    \"key\": \"3088\",\n    \"description\": \"a woman shrugs,\"\n  },\n  {\n    \"video_name\": \"tumblr_nf87a1ENfb1u25ovvo1_400\",\n    \"question\": \"what is the black car driving down splashing puddles?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25390\",\n    \"key\": \"63565\",\n    \"description\": \"a black car is driving down a road splashing puddles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3j7brGNJ1rzia65o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22043\",\n    \"key\": \"25486\",\n    \"description\": \"a guy is wearing a white shirt and a red santa clause hat on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0kdyeFRd1t4txt8o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11345\",\n    \"key\": \"31025\",\n    \"description\": \"a guy in an orange shirt is making silly faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngilgcU4iR1u0fgfyo2_400\",\n    \"question\": \"what is spinning around on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20638\",\n    \"key\": \"59008\",\n    \"description\": \"a race car is spinning around on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nolul6tmEz1svi4tpo1_250\",\n    \"question\": \"what are people in graduation caps and gowns dancing and is falling?\",\n    \"answer\": \"confetti\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40114\",\n    \"key\": \"335\",\n    \"description\": \"people in graduation caps and gowns are dancing and confetti is falling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nggwvt9aWm1t7an45o1_500\",\n    \"question\": \"where is the person drying a cub.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5510\",\n    \"key\": \"92691\",\n    \"description\": \"a person is drying a cub in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxl2nzKDV1u4v3ypo1_400\",\n    \"question\": \"what is the gray cat kneading on the back of a pug dog?\",\n    \"answer\": \"paws\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46859\",\n    \"key\": \"36764\",\n    \"description\": \"a gray cat is kneading his paws on the back of a pug dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxyfpFOvW1tzhkoao1_400\",\n    \"question\": \"where does the cat throw down a cup.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38000\",\n    \"key\": \"1074\",\n    \"description\": \"a cat throws down a cup in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbvef9bc6T1rzia65o1_250\",\n    \"question\": \"what is the guy holding and one is looking straight?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3438\",\n    \"key\": \"6549\",\n    \"description\": \"a guy is holding a microphone and one is looking straight.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngxgwdWTfH1tjcz2uo1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41515\",\n    \"key\": \"101330\",\n    \"description\": \"the lady in the red coat is talking to the man with the white collared shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e0qe1Ghp1sztu6fo1_400\",\n    \"question\": \"what is the man wearing white is sniffing?\",\n    \"answer\": \"flower\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22445\",\n    \"key\": \"54657\",\n    \"description\": \"a man wearing white is sniffing a white flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzw6wlLMO1tfjrdno1_400\",\n    \"question\": \"how many females pull the hoods of their sweaters up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28400\",\n    \"key\": \"29179\",\n    \"description\": \"two females pull the hoods of their sweaters up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6d4afATN1tg9gzmo1_400\",\n    \"question\": \"how many women stand together one waving and the other two making faces?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13043\",\n    \"key\": \"3214\",\n    \"description\": \"three women stand together one waving and the other two making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nawbyzVwlV1thhvy0o1_400\",\n    \"question\": \"what is the boy wearing a bandanna pulls?\",\n    \"answer\": \"gesture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46002\",\n    \"key\": \"32609\",\n    \"description\": \"a boy wearing a bandanna pulls a gun gesture.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney67x8wtj1qememvo1_400\",\n    \"question\": \"how many young men are hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34164\",\n    \"key\": \"22473\",\n    \"description\": \"two young men are hugging and one grabs his rear end.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkamhjvueV1uobh2eo1_400\",\n    \"question\": \"what is the color of the fedora?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2846\",\n    \"key\": \"29350\",\n    \"description\": \"a boy in black fedora is showing his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyzo769BX1shllpeo1_400\",\n    \"question\": \"where are the boy in a red shirt and girl laughing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24186\",\n    \"key\": \"29481\",\n    \"description\": \"a boy in a red shirt and girl are laughing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9wfx9Vmk1qg7e36o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50685\",\n    \"key\": \"55123\",\n    \"description\": \"a girl with long brown hair gets in front of another girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklnw6kpNZ1qfgm2wo1_250\",\n    \"question\": \"where are two people hugging each other.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1403\",\n    \"key\": \"84350\",\n    \"description\": \"two people are hugging each other in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2b8bUbDl1ts6h7so1_1280\",\n    \"question\": \"where is the man looking up.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21855\",\n    \"key\": \"83694\",\n    \"description\": \"a man is looking up in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_niqcigaPUP1u5gxqso1_500\",\n    \"question\": \"how many men on stage are jumping up and down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24368\",\n    \"key\": \"94203\",\n    \"description\": \"two men on stage are jumping up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpxkdchXu1tqmfzto1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29422\",\n    \"key\": \"50985\",\n    \"description\": \"a woman with brown hair is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbmwvtSPmy1s3jo9no1_500\",\n    \"question\": \"what is the snowboarder riding down covered in snow?\",\n    \"answer\": \"hill\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA681\",\n    \"key\": \"68730\",\n    \"description\": \"a snowboarder is riding down a hill covered in snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxshaRNzf1rlqrz3o1_500\",\n    \"question\": \"what is driving very quickly through an indoor parking garage?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17290\",\n    \"key\": \"68911\",\n    \"description\": \"a yellow sports car is driving very quickly through an indoor parking garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ml7ilcuyQt1ql2bpeo1_500\",\n    \"question\": \"what is seen running very fast down the road?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44939\",\n    \"key\": \"99994\",\n    \"description\": \"a dog is seen running very fast down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wivmGs4P1sc3yqlo1_250\",\n    \"question\": \"what tries to stay awake but then falls asleep?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2252\",\n    \"key\": \"41061\",\n    \"description\": \"a tired kitten tries to stay awake but then falls asleep.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndhlolhgCM1tmjjtfo1_250\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50041\",\n    \"key\": \"12908\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkm312M7Vf1r1lkado1_500\",\n    \"question\": \"what is the blonde female wearing and arranging herself?\",\n    \"answer\": \"portfolio\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10491\",\n    \"key\": \"83528\",\n    \"description\": \"a blonde female is wearing a portfolio and arranging herself.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyux3yYKW1qa0byyo1_400\",\n    \"question\": \"what is the color of the laughs?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29900\",\n    \"key\": \"7032\",\n    \"description\": \"a baby wearing a red top laughs then stops.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9ijtkcws1ti2sgvo3_250\",\n    \"question\": \"what is the person in a green shirt leaning back,\",\n    \"answer\": \"and moves from under him ? ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22294\",\n    \"key\": \"46241\",\n    \"description\": \"a person in a green shirt is leaning back,\"\n  },\n  {\n    \"video_name\": \"tumblr_nban5mzZZr1tk3k4do1_400\",\n    \"question\": \"how many woman with white hair is on a cellphone?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1156\",\n    \"key\": \"33901\",\n    \"description\": \"one woman with white hair is on a cellphone and another woman is shaking her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng5sskpeoG1qmfh6ho1_500\",\n    \"question\": \"what is the man wearing a red scarf flips around?\",\n    \"answer\": \"guns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10282\",\n    \"key\": \"67805\",\n    \"description\": \"a man wearing a red scarf flips guns around.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdrfnn6w01uxuob2o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37306\",\n    \"key\": \"46923\",\n    \"description\": \"a woman wearing a black hat looks up slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzig0qT8k1qczfu6o1_1280\",\n    \"question\": \"how many young men with microphones sing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20328\",\n    \"key\": \"73159\",\n    \"description\": \"two young men with microphones sing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhknb9MuDd1qldwwwo1_500\",\n    \"question\": \"what is the man in a bowler hat playing?\",\n    \"answer\": \"violin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40093\",\n    \"key\": \"22557\",\n    \"description\": \"a man in a bowler hat is playing the violin.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmycDsSK1tidcnvo1_400\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7805\",\n    \"key\": \"63831\",\n    \"description\": \"a brown horse is walking forward through the dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cepvQnUm1sm0tyko1_250\",\n    \"question\": \"what is the woman wearing?\",\n    \"answer\": \"necklace\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6194\",\n    \"key\": \"48559\",\n    \"description\": \"a woman is wearing a long metal necklace.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ryrfShMG1rlxkkto1_400\",\n    \"question\": \"how many kids are dancing and having fun?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21802\",\n    \"key\": \"1241\",\n    \"description\": \"two kids are dancing and having fun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqt0rfOUFY1ux2ikeo1_400\",\n    \"question\": \"what is the man wearing a black shirt pops open?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9043\",\n    \"key\": \"74132\",\n    \"description\": \"a man wearing a black shirt pops open a champagne bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq6vgwcOv1qa4oddo1_400\",\n    \"question\": \"where do the few people appear to be dancing.\",\n    \"answer\": \"? house\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA976\",\n    \"key\": \"59852\",\n    \"description\": \"a few people appear to be dancing in a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9of28KjW41td7sqyo1_250\",\n    \"question\": \"what are the man and woman taking on their phones?\",\n    \"answer\": \"photographs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13383\",\n    \"key\": \"70685\",\n    \"description\": \"a man and woman are taking photographs on their phones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvo34sjOO1u4nno3o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16208\",\n    \"key\": \"68577\",\n    \"description\": \"a man wearing a black shirt holding a tomato stares in the distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxyfpFOvW1tzhkoao1_400\",\n    \"question\": \"what throws down the cup in a room?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43140\",\n    \"key\": \"1074\",\n    \"description\": \"a cat throws down a cup in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6vuenb6t1tvi3k9o1_400\",\n    \"question\": \"what is the person holding and standing in the rain?\",\n    \"answer\": \"umbrella\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38669\",\n    \"key\": \"32791\",\n    \"description\": \"a person is holding an umbrella and standing in the rain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrb25j3b8V1spcxkpo1_250\",\n    \"question\": \"what are the bunch of boys wearing and messing around?\",\n    \"answer\": \"uniforms\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45868\",\n    \"key\": \"18667\",\n    \"description\": \"a bunch of boys are wearing uniforms and messing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3p6vEgrE1qh4znio1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34322\",\n    \"key\": \"58009\",\n    \"description\": \"a man in a red suit is skateboarding on a platform.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy2ahhYsH1u3y1g4o1_250\",\n    \"question\": \"how many men hug after one was hit in the face with a pie?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8473\",\n    \"key\": \"69520\",\n    \"description\": \"two men hug after one was hit in the face with a pie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqet4G5HN1qhrx75o1_400\",\n    \"question\": \"how many player hits the puck into the goal?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21322\",\n    \"key\": \"65395\",\n    \"description\": \"people are playing hockey and one player hits the puck into the goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqc6mF0dW1tmcq9lo1_400\",\n    \"question\": \"what is the guy with a beard lighting up?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41100\",\n    \"key\": \"29304\",\n    \"description\": \"a guy with a beard is lighting up a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnnkfdRGI1rq9ek2o1_500\",\n    \"question\": \"what is the woman taking and waves her fingers and candles light up?\",\n    \"answer\": \"bath\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36621\",\n    \"key\": \"85134\",\n    \"description\": \"a woman is taking a bubble bath and waves her fingers and candles light up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkadbrY0j01rj4f6to1_250\",\n    \"question\": \"what is the man in a dark blue suit throwing?\",\n    \"answer\": \"money\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17197\",\n    \"key\": \"49409\",\n    \"description\": \"a man in a dark blue suit is throwing money.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2vlqcXhu1sneimso1_500\",\n    \"question\": \"how many woman are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41186\",\n    \"key\": \"101840\",\n    \"description\": \"the two woman are talking and one is smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxyiivlNC1t06byno1_400\",\n    \"question\": \"what is going at full speed and then brakes?\",\n    \"answer\": \"tank\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1175\",\n    \"key\": \"28984\",\n    \"description\": \"a tank is going at full speed and then brakes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgc8nubQG1qapfv1o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20153\",\n    \"key\": \"74136\",\n    \"description\": \"a man with a black shirt gets an interview.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6frm8Fbw1r784vko1_500\",\n    \"question\": \"what is the man removing from his head?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10288\",\n    \"key\": \"58029\",\n    \"description\": \"a man is removing headphones from his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ssmh7KSo1t29pn7o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42431\",\n    \"key\": \"48430\",\n    \"description\": \"a white man with black shirt is smiling and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndhet7vUVd1t0m49go1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23486\",\n    \"key\": \"73864\",\n    \"description\": \"a man with brown hair smiles and shows his teeth.\"\n  },\n  {\n    \"video_name\": \"tumblr_neypdwBtx91r7a225o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22285\",\n    \"key\": \"12697\",\n    \"description\": \"a guy wearing black suit turns around and winks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzhvabsfq1s4nyalo1_400\",\n    \"question\": \"how many women dressed in red are dancing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36369\",\n    \"key\": \"26694\",\n    \"description\": \"two women dressed in red are dancing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjiylGWRL1tlsqhto1_250\",\n    \"question\": \"how many people are sitting one is playing guitar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6553\",\n    \"key\": \"91085\",\n    \"description\": \"two people are sitting one is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7badeW1R1uaavsyo1_500\",\n    \"question\": \"what is the guy wearing sunglasses and drinking?\",\n    \"answer\": \"beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44280\",\n    \"key\": \"73284\",\n    \"description\": \"a guy is wearing sunglasses and drinking a beer.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxy7vIbUJ1tt3dbuo1_500\",\n    \"question\": \"how many girls are doing jumping exercises on a wooden bench?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2371\",\n    \"key\": \"76376\",\n    \"description\": \"two girls are doing jumping exercises on a wooden bench.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcbdvtDHl1u3n11qo1_500\",\n    \"question\": \"how many men ride in the right hand drive car?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34148\",\n    \"key\": \"57651\",\n    \"description\": \"four men ride in a right hand drive car.\"\n  },\n  {\n    \"video_name\": \"tumblr_novlokWmWb1t6t8bgo1_540\",\n    \"question\": \"how many men are dancing in the dark room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41379\",\n    \"key\": \"93683\",\n    \"description\": \"two men are dancing in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdddhdOuN1te5p35o1_250\",\n    \"question\": \"what is the color of the face?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1278\",\n    \"key\": \"289\",\n    \"description\": \"a man is moving his hands on a yellow face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh4uxuDDsO1u5zq37o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41519\",\n    \"key\": \"95948\",\n    \"description\": \"a man in a blue jacket gives the thumbs up sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0llj1byG1u1ukj4o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24307\",\n    \"key\": \"34940\",\n    \"description\": \"a girl with a black shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh10dmctaF1u6020vo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24475\",\n    \"key\": \"11072\",\n    \"description\": \"a woman wearing a royal blue top,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzhkq39Nz1twdzc1o1_250\",\n    \"question\": \"what jumps out from the bunch and opens a door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39103\",\n    \"key\": \"8947\",\n    \"description\": \"one cat jumps out from a bunch and opens a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q47znhFo1th5omjo1_400\",\n    \"question\": \"what is the young guy kissing?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32103\",\n    \"key\": \"57045\",\n    \"description\": \"a young guy is kissing a huge teddy bear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdutikHSx1rqqgwvo1_250\",\n    \"question\": \"what is the man juggling and cooks it in the shape of an arrow?\",\n    \"answer\": \"egg\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19334\",\n    \"key\": \"18473\",\n    \"description\": \"a man is juggling an egg and cooks it in the shape of an arrow.\"\n  },\n  {\n    \"video_name\": \"tumblr_new6rapUbt1tqrf5uo2_400\",\n    \"question\": \"how many guys in yellow sweaters met next to water?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10452\",\n    \"key\": \"66256\",\n    \"description\": \"two guys in yellow sweaters met next to water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbzkb341bX1s71nvbo1_500\",\n    \"question\": \"how many girls is the man pushing sitting in a shopping cart?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40700\",\n    \"key\": \"60746\",\n    \"description\": \"a man is pushing two girls sitting in a shopping cart,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhk3b9NsJo1qbpuo2o1_500\",\n    \"question\": \"how many men are walking together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14378\",\n    \"key\": \"88888\",\n    \"description\": \"two men are walking together and then the one man smiles at the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncd6eyR4Ya1ryaiojo1_400\",\n    \"question\": \"how many people is holding large balls crash into each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23441\",\n    \"key\": \"69338\",\n    \"description\": \"two people holding large balls crash into each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexhjhoBOY1s9emmto1_400\",\n    \"question\": \"what did someone open a can of biscuits and then went off?\",\n    \"answer\": \"bomb\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47559\",\n    \"key\": \"37018\",\n    \"description\": \"someone opened a can of biscuits and then a bomb went off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqivtqoJ981u6krjho1_500\",\n    \"question\": \"what is the woman putting on while looking at a mirror?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43924\",\n    \"key\": \"38143\",\n    \"description\": \"a woman is putting makeup on while looking at a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqotedLtZG1tjz3ato1_400\",\n    \"question\": \"where are the man and woman dancing.\",\n    \"answer\": \"? rv\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5356\",\n    \"key\": \"64601\",\n    \"description\": \"a man and woman are dancing in a rv.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimsybmFR21tznw84o1_500\",\n    \"question\": \"how many people are dancing fast in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35927\",\n    \"key\": \"63365\",\n    \"description\": \"two people are dancing fast in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nopfu0F3tz1tq1dw1o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27317\",\n    \"key\": \"36341\",\n    \"description\": \"a girl with red hair opens a door and drops a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbf2peigGM1rpjuouo1_250\",\n    \"question\": \"what is the boy with long hair smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34810\",\n    \"key\": \"82668\",\n    \"description\": \"a boy with long hair is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbadug35Zi1tl0ko9o1_400\",\n    \"question\": \"what jumps head first into a cardboard box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38768\",\n    \"key\": \"57534\",\n    \"description\": \"a cat jumps head first into a cardboard box.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9u8sctqwf1takocao1_500\",\n    \"question\": \"how many man is walking away while another one stays on the same spot?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12607\",\n    \"key\": \"99638\",\n    \"description\": \"one man is walking away while another one stays on the same spot.\"\n  },\n  {\n    \"video_name\": \"tumblr_n88tfbzgHU1rhy09eo1_500\",\n    \"question\": \"what pulls into the closed off car garage?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24814\",\n    \"key\": \"92569\",\n    \"description\": \"a car pulls into a closed off car garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1f6dC53y1u5g7vro1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18175\",\n    \"key\": \"46794\",\n    \"description\": \"a white woman with black glasses and a black shirt is moving her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9l8ptCh11s6zpepo1_250\",\n    \"question\": \"what is the little boy licking while sleeping?\",\n    \"answer\": \"cone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32747\",\n    \"key\": \"9948\",\n    \"description\": \"a little boy is licking an ice cream cone while sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqigaE0Cj1tlmnruo1_500\",\n    \"question\": \"what is the color of the eye?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26343\",\n    \"key\": \"102006\",\n    \"description\": \"a woman has one blue eye and one brown eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb89ryBmeP1rf6ax4o1_400\",\n    \"question\": \"where are three people and pretend to play guitars.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7447\",\n    \"key\": \"36254\",\n    \"description\": \"three people are in a room and pretend to play guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_njgnhqCm5H1rjvqz7o1_1280\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35513\",\n    \"key\": \"84195\",\n    \"description\": \"a black man spins around while waving his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8kt58I4Bp1t6ksnpo1_500\",\n    \"question\": \"where is the guy singing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13936\",\n    \"key\": \"93118\",\n    \"description\": \"a guy is singing fiercely in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_neaa4aW69h1qhrx75o1_400\",\n    \"question\": \"how many teams are playing hockey on an ice rink?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11997\",\n    \"key\": \"72548\",\n    \"description\": \"two teams are playing hockey on an ice rink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nem4qtJZ6l1tsn1ypo1_250\",\n    \"question\": \"how many beautiful boys without shirt are on a stage touching each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36893\",\n    \"key\": \"18215\",\n    \"description\": \"two beautiful boys without shirt are on a stage touching each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmazfr4MNp1uot1e7o1_400\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7659\",\n    \"key\": \"60043\",\n    \"description\": \"a man is holding a pink bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagzc9ga3p1qjn6two1_250\",\n    \"question\": \"what does the guy with a beard pull off the table?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24945\",\n    \"key\": \"41405\",\n    \"description\": \"a guy with a beard pulls a dog off the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzcdc7sV61u9tojjo1_400\",\n    \"question\": \"where does the dancer in white shake her hips.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16682\",\n    \"key\": \"65212\",\n    \"description\": \"a dancer in white shakes her hips in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7miq1rPj1qdauj7o1_400\",\n    \"question\": \"what is the color of the light?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38361\",\n    \"key\": \"36901\",\n    \"description\": \"a boy with short dark hair is playing a guitar in front of a red light.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uckhNDnS1to3k6do1_500\",\n    \"question\": \"what drives along the track while causing smoke?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1625\",\n    \"key\": \"66915\",\n    \"description\": \"a car drives along a track while causing smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_noise3JpIW1toq0iso1_540\",\n    \"question\": \"how many young women are fighting in the snow?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7695\",\n    \"key\": \"63270\",\n    \"description\": \"two young women are fighting in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtams4V1k1u2ep9yo1_500\",\n    \"question\": \"what are driving quickly down the road?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38743\",\n    \"key\": \"61078\",\n    \"description\": \"several cars are driving quickly down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9b86RibY1t30yt2o1_400\",\n    \"question\": \"how many people are talking and have paint on their face?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11349\",\n    \"key\": \"82248\",\n    \"description\": \"the two people are talking and have paint on their face.\"\n  },\n  {\n    \"video_name\": \"tumblr_niw20xqfYh1qjzq4lo1_400\",\n    \"question\": \"how many man are sitting on the sofa watching television?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3449\",\n    \"key\": \"81088\",\n    \"description\": \"two man are sitting on a sofa watching television.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgt410YO81sgk3z2o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20227\",\n    \"key\": \"19330\",\n    \"description\": \"a man in a gray shirt is walking down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd54ew6UDB1taq8dio1_500\",\n    \"question\": \"how many young women are making peace signs with their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36386\",\n    \"key\": \"92187\",\n    \"description\": \"two young women are making peace signs with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91mzrxl5h1r4phxao1_400\",\n    \"question\": \"what lies on the flow and eats a strand of cooked pasta?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9642\",\n    \"key\": \"81135\",\n    \"description\": \"a dog lies on the flow and eats a strand of cooked pasta.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnvy1kVUHL1utyjq6o1_400\",\n    \"question\": \"how many men with a beautiful view behind are screaming?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22621\",\n    \"key\": \"32097\",\n    \"description\": \"two men with a beautiful view behind are screaming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfglfqkprz1u37v6fo1_250\",\n    \"question\": \"how many men are smiling and happy together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28634\",\n    \"key\": \"93338\",\n    \"description\": \"two men are smiling and happy together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfflcuX90m1u25ovvo1_400\",\n    \"question\": \"what approaches the flooded road slowly?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14171\",\n    \"key\": \"63666\",\n    \"description\": \"a small teal colored car approaches a flooded road slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr9ubPJfK1ri7ltoo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20803\",\n    \"key\": \"73477\",\n    \"description\": \"a girl in a black hat was smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_neop4eEVpg1rzuy5oo1_400\",\n    \"question\": \"what is somebody opening?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45017\",\n    \"key\": \"22302\",\n    \"description\": \"somebody opening a door to find a young man there.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x30kDQeu1qc21o3o1_500\",\n    \"question\": \"what is the guy wearing and smiling big?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52761\",\n    \"key\": \"50544\",\n    \"description\": \"a guy is wearing sunglasses and smiling big.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf32wfId1W1u1kbnho1_250\",\n    \"question\": \"what is the color of the costumes?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21086\",\n    \"key\": \"19038\",\n    \"description\": \"two females wearing gray costumes are performing a dance routine on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9siyhJeK01sz068fo1_400\",\n    \"question\": \"what is the cat moving near somebody?\",\n    \"answer\": \"claws\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20987\",\n    \"key\": \"80179\",\n    \"description\": \"a cat is moving her claws near somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_nct86ni9tg1ss1bu2o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41922\",\n    \"key\": \"61491\",\n    \"description\": \"a girl in a blue shirt falls out of a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vh2js6zv1t1j5ogo1_250\",\n    \"question\": \"how many thieves descend from the ceiling into the vault?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46828\",\n    \"key\": \"44032\",\n    \"description\": \"four thieves descend from the ceiling into the vault.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9buvpXnDu1rhs3x9o1_400\",\n    \"question\": \"what is the color of the models?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19035\",\n    \"key\": \"58024\",\n    \"description\": \"models dressed in black are walking down a runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbkqr0O34Z1twkd2qo1_250\",\n    \"question\": \"what is the girl with pink hair holding up?\",\n    \"answer\": \"puppet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13888\",\n    \"key\": \"44066\",\n    \"description\": \"a girl with pink hair is holding up a doll puppet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndm0hud5pX1u15l5io1_400\",\n    \"question\": \"what is the man showing somebody?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6420\",\n    \"key\": \"56779\",\n    \"description\": \"a man is showing somebody his washing machine.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9427c7gK51te8576o1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19999\",\n    \"key\": \"99045\",\n    \"description\": \"a guy wears all black and angrily recites something while driving his car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3j7brGNJ1rzia65o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2416\",\n    \"key\": \"25486\",\n    \"description\": \"a guy is wearing a white shirt and a red santa clause hat on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w7lerGTz1tg0gc4o1_500\",\n    \"question\": \"how many guys are singing and dancing on the stage in a concert?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32902\",\n    \"key\": \"61792\",\n    \"description\": \"two guys are singing and dancing on a stage in a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0urrvsyq1uaoej6o1_400\",\n    \"question\": \"what is the fox jumping and head first in snow?\",\n    \"answer\": \"lands\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21509\",\n    \"key\": \"45806\",\n    \"description\": \"a fox is jumping and lands head first in snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng3g6sMCFG1qez0bvo1_500\",\n    \"question\": \"what jumps on the man on the floor?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24735\",\n    \"key\": \"86729\",\n    \"description\": \"a dog jumps on a man on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n7qjawvGqz1tbse9vo1_250\",\n    \"question\": \"how many men are riding in the car and one rubs his hands over his face?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24549\",\n    \"key\": \"81595\",\n    \"description\": \"two men are riding in a car and one rubs his hands over his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbllbtxGHp1t5ojzdo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10536\",\n    \"key\": \"51563\",\n    \"description\": \"this image is of a girl with red hair walking away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng642mdNwX1qezt9uo1_250\",\n    \"question\": \"what pushed the object off the table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13689\",\n    \"key\": \"19353\",\n    \"description\": \"the black cat pushed the object off the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhk3b9NsJo1qbpuo2o1_500\",\n    \"question\": \"how many man smiles at the other?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32077\",\n    \"key\": \"88888\",\n    \"description\": \"two men are walking together and then the one man smiles at the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96dolAgQu1txgijyo1_500\",\n    \"question\": \"how many people with microphones are dancing and singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26269\",\n    \"key\": \"92945\",\n    \"description\": \"two people with microphones are dancing and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2w70pKoD1s44ybio1_400\",\n    \"question\": \"how many players are giving the double high five on a sports pitch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21997\",\n    \"key\": \"70872\",\n    \"description\": \"two players are giving a double high five on a sports pitch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjw9z68lq1u3hgt0o1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA923\",\n    \"key\": \"46513\",\n    \"description\": \"a dumb man was getting sick in a brown coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9bk7YdxS1swtjjuo1_500\",\n    \"question\": \"what is the man wearing sunglasses and a backwards baseball cap is driving?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27115\",\n    \"key\": \"54836\",\n    \"description\": \"a man wearing sunglasses and a backwards baseball cap is driving a red sports car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2vau6kkr1utqicho1_500\",\n    \"question\": \"what is the color of the uniforms?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12711\",\n    \"key\": \"82529\",\n    \"description\": \"two soccer players wearing white uniforms and one player wearing a blue uniform,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2uo2WwTO1sbnqs8o1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15052\",\n    \"key\": \"5833\",\n    \"description\": \"a man with a blue t-shirt is dancing with a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90k7w0LPs1rq6fvoo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48776\",\n    \"key\": \"82901\",\n    \"description\": \"a man in a white suit places his hands above his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0lw9PkLw1sht3fmo1_250\",\n    \"question\": \"what is peeling itself into a character?\",\n    \"answer\": \"orange\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19671\",\n    \"key\": \"72976\",\n    \"description\": \"an orange is peeling itself into a character.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhys5kaxEu1u7u0ceo1_500\",\n    \"question\": \"what is wearing the red hat and a woman with blonde hair is talking?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27807\",\n    \"key\": \"95988\",\n    \"description\": \"a bear is wearing a red hat and a woman with blonde hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzchnvwXU1slw38eo1_250\",\n    \"question\": \"how many men is this image of sitting down talking to each other and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37061\",\n    \"key\": \"14509\",\n    \"description\": \"this image is of two men sitting down talking to each other and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na66rjjjdD1roly9io1_500\",\n    \"question\": \"what is moving out of the building?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5948\",\n    \"key\": \"74616\",\n    \"description\": \"the police car is moving out of the building.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyb2pcEGb1tlmquvo1_400\",\n    \"question\": \"what is sniffing the tennis ball?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9681\",\n    \"key\": \"83456\",\n    \"description\": \"a dog is sniffing a tennis ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrb4qwDaQ11tx8mn0o1_400\",\n    \"question\": \"what are going around the turn and two of them crash?\",\n    \"answer\": \"motorcycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27187\",\n    \"key\": \"55919\",\n    \"description\": \"motorcycles are going around a turn and two of them crash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxzk6xDVz1qm2e6bo1_400\",\n    \"question\": \"what is the girl chewing and rolling her eyes?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37158\",\n    \"key\": \"13302\",\n    \"description\": \"a girl is chewing gum and rolling her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqrx03OM6K1uxst7zo1_500\",\n    \"question\": \"how many men are smiling at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19777\",\n    \"key\": \"99159\",\n    \"description\": \"the two men are smiling at something they see.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7bf9JXRA1tiwyqlo1_250\",\n    \"question\": \"what is the color of the head?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15336\",\n    \"key\": \"10543\",\n    \"description\": \"a red head is talking in a conversation.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqotedLtZG1tjz3ato1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52826\",\n    \"key\": \"64601\",\n    \"description\": \"a white girl with brown hair is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npswm4R1kB1tk15f6o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52407\",\n    \"key\": \"57097\",\n    \"description\": \"the woman in the white dress is sitting alone on the side of the well.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7miq1rPj1qdauj7o1_400\",\n    \"question\": \"what is the boy with short dark hair playing in front of a red light?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9879\",\n    \"key\": \"36901\",\n    \"description\": \"a boy with short dark hair is playing a guitar in front of a red light.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xfckoIle1slj978o1_250\",\n    \"question\": \"what is the man wearing white is jumping?\",\n    \"answer\": \"turnstile\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6832\",\n    \"key\": \"9322\",\n    \"description\": \"a man wearing white is jumping a turnstile.\"\n  },\n  {\n    \"video_name\": \"tumblr_nofh1qIEXw1tfnm8co1_400\",\n    \"question\": \"what is holding then flinging the cat 's toy for it to play with?\",\n    \"answer\": \"bot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20003\",\n    \"key\": \"37950\",\n    \"description\": \"a remote controlled bot is holding then flinging a cat 's toy for it to play with.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuah4DLZD1u2ui2ko1_500\",\n    \"question\": \"what is man in black racing?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40151\",\n    \"key\": \"86869\",\n    \"description\": \"man in black is racing his car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97n2cS7li1rxa8glo1_500\",\n    \"question\": \"what is the color of the balloon?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4482\",\n    \"key\": \"86305\",\n    \"description\": \"a red balloon is going down in front of a woman 's face and she puts her head in her shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9d7bL7eY1tx8mn0o1_400\",\n    \"question\": \"what attempts to go around the corner but instead loses control?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42841\",\n    \"key\": \"56415\",\n    \"description\": \"a race car attempts to go around a corner but instead loses control.\"\n  },\n  {\n    \"video_name\": \"tumblr_no75u4RtUx1tyncywo1_400\",\n    \"question\": \"what is running around trying to get into the door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA864\",\n    \"key\": \"65382\",\n    \"description\": \"a cat is running around trying to get into the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmvvzXa4P1sxqls6o1_400\",\n    \"question\": \"where are two men kissing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48977\",\n    \"key\": \"23669\",\n    \"description\": \"two men are kissing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuernNJhS1ta9uaco1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48671\",\n    \"key\": \"14443\",\n    \"description\": \"a woman with short brown hair is zoomed in on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk90fqhAgg1u1k55co1_500\",\n    \"question\": \"what is flying inside the glass dome?\",\n    \"answer\": \"moth\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23083\",\n    \"key\": \"75410\",\n    \"description\": \"a moth is flying inside a glass dome.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2yugot1B1tiz27ro1_500\",\n    \"question\": \"what looks up and blinks its eyes and looks back down?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23562\",\n    \"key\": \"37357\",\n    \"description\": \"a white horse looks up and blinks its eyes and looks back down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5ik20yvI1tti8vwo1_500\",\n    \"question\": \"what is the guy in a white shirt holding and blowing air out of his mouth?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5070\",\n    \"key\": \"88627\",\n    \"description\": \"a guy in a white shirt is holding a microphone and blowing air out of his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfktxo8hC71tgetb4o1_250\",\n    \"question\": \"what is driving through the bunch of sheep?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26986\",\n    \"key\": \"85332\",\n    \"description\": \"a car is driving through a bunch of sheep.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh3y0lqgx1tuj3bpo1_400\",\n    \"question\": \"what does the dog knock in to a bath tub and the cat jumps back out?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8197\",\n    \"key\": \"34855\",\n    \"description\": \"a dog knocks a cat in to a bath tub and the cat jumps back out.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngr0o5orpD1u1de1ro1_500\",\n    \"question\": \"how many women are standing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9833\",\n    \"key\": \"48665\",\n    \"description\": \"two women are standing,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfrob3zSe11u1cig2o1_500\",\n    \"question\": \"how many guy is making the sign with his glass?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38855\",\n    \"key\": \"71106\",\n    \"description\": \"one guy is making a sign with his glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncv2ubyfXj1tcd2tgo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5872\",\n    \"key\": \"27602\",\n    \"description\": \"a woman is a purple shirt is crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd52u0m5cZ1r6z87zo1_250\",\n    \"question\": \"how many men are playing drums on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22891\",\n    \"key\": \"24022\",\n    \"description\": \"two men are playing drums on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ktdqW1gV1st6jdpo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34099\",\n    \"key\": \"16196\",\n    \"description\": \"a man in a green shirt winks as he shakes someone 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsrf7PNZs1qe2thio1_500\",\n    \"question\": \"what ran and jumped over the fence?\",\n    \"answer\": \"hose\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32461\",\n    \"key\": \"98734\",\n    \"description\": \"a white hose ran and jumped over a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4s80baYg1s5y3pfo1_400\",\n    \"question\": \"how many schoolgirls play around and pose with peace signs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5073\",\n    \"key\": \"56409\",\n    \"description\": \"two schoolgirls play around and pose with peace signs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbz4feEHpL1sk5ccgo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42698\",\n    \"key\": \"3902\",\n    \"description\": \"a bearded young man dressed in brown is looking forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_na41oyCHeF1rcndp1o1_500\",\n    \"question\": \"how many twins are sitting together and looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46375\",\n    \"key\": \"9702\",\n    \"description\": \"two twins are sitting together and looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxgairu4F1slwrsuo1_400\",\n    \"question\": \"what goes to bed and covers himself with a blanket?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4190\",\n    \"key\": \"99415\",\n    \"description\": \"a dog goes to bed and covers himself with a blanket.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rmaa7zrF1trm2z1o1_250\",\n    \"question\": \"what is the boy wearing and another boy is raising his eyebrows?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18292\",\n    \"key\": \"27282\",\n    \"description\": \"a boy is wearing a cap and another boy is raising his eyebrows.\"\n  },\n  {\n    \"video_name\": \"tumblr_nen2gpqUlI1tx8mn0o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18852\",\n    \"key\": \"55482\",\n    \"description\": \"several race cars are racing down a track and the blue car loses its back end.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbigfaMpHw1rhe0jeo1_250\",\n    \"question\": \"how many guys are hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39868\",\n    \"key\": \"41462\",\n    \"description\": \"two guys are hugging and one is wiping his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sj5tOb671se5xexo1_400\",\n    \"question\": \"what is the color of the couch?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12878\",\n    \"key\": \"24353\",\n    \"description\": \"a man is sitting on a brown couch clapping his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng970sSWti1thldh3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13835\",\n    \"key\": \"38036\",\n    \"description\": \"a man in a yellow shirt is sitting on a bench.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwko4ck431u4v3ypo1_400\",\n    \"question\": \"what does the person unzip?\",\n    \"answer\": \"suitcase\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21639\",\n    \"key\": \"72642\",\n    \"description\": \"a person unzips their suitcase to find a kitten inside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpuisFRl11t2mzx0o1_400\",\n    \"question\": \"how many men are in the car talking and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50930\",\n    \"key\": \"82197\",\n    \"description\": \"two men are in a car talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dxxv9ONq1sk96t7o1_400\",\n    \"question\": \"what did the cat pull around by the dog 's lead?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15207\",\n    \"key\": \"59286\",\n    \"description\": \"a cat pulled a dog around by the dog 's lead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8gli2Fqo1qe849no1_250\",\n    \"question\": \"what is the man wearing and smiling broadly?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2499\",\n    \"key\": \"40750\",\n    \"description\": \"a man is wearing a bow tie and smiling broadly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxfoqCw4r1qeavo7o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50996\",\n    \"key\": \"65563\",\n    \"description\": \"a woman with green hair is waving and blowing kisses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklfp2TT031t0qj4zo1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29750\",\n    \"key\": \"64942\",\n    \"description\": \"a man wearing black clothing is dancing in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3ne5opC11sgl8xeo1_500\",\n    \"question\": \"how many young men are dancing on the stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21808\",\n    \"key\": \"86738\",\n    \"description\": \"three young men are dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kylgd6ii1rpovzzo1_400\",\n    \"question\": \"where is the man wearing a suit is dancing.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52312\",\n    \"key\": \"64788\",\n    \"description\": \"a man wearing a suit is dancing in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu6972ngW1rhkv10o1_400\",\n    \"question\": \"what walks with the ball in between its legs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30955\",\n    \"key\": \"27997\",\n    \"description\": \"a cat walks with a ball in between its legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelrob2YG41u32mywo1_250\",\n    \"question\": \"how many team mates are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9952\",\n    \"key\": \"84517\",\n    \"description\": \"two team mates are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2ajl9DH41tkdgp6o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9225\",\n    \"key\": \"23241\",\n    \"description\": \"a boy with a white shirt is looking frustrated in alleyway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqbubNR881tdmffyo1_500\",\n    \"question\": \"what falls down while running across the beach?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4932\",\n    \"key\": \"57557\",\n    \"description\": \"a small dog falls down while running across the beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh05khMCWi1s71nvbo1_400\",\n    \"question\": \"what is being washed out by water?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34302\",\n    \"key\": \"54609\",\n    \"description\": \"a car is being washed out by water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y1bvkwkg1tj37coo1_250\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28010\",\n    \"key\": \"49649\",\n    \"description\": \"a man in front of a white background is speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnxvvuqO61qhyoyno1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14231\",\n    \"key\": \"70220\",\n    \"description\": \"a woman with brown hair was flirting with a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebsu3wlge1r7490vo1_500\",\n    \"question\": \"how many men are sitting in front of laptops?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48770\",\n    \"key\": \"101847\",\n    \"description\": \"the two men are sitting in front of laptops.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndzw33j6bu1th8rjso1_400\",\n    \"question\": \"what is biting the young man who is sleeping on a sofa?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23611\",\n    \"key\": \"31035\",\n    \"description\": \"a dog is biting a young man who is sleeping on a sofa.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ejfd8JwT1ti98teo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52952\",\n    \"key\": \"68793\",\n    \"description\": \"a guy wearing a gray,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9ty1C8Dw1tr5tuwo1_500\",\n    \"question\": \"what is driving down the road with palm trees along the side?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31293\",\n    \"key\": \"89701\",\n    \"description\": \"a yellow car is driving down a road with palm trees along the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxcc3Muq71ta4f2po1_500\",\n    \"question\": \"how many people are crawling around on the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7270\",\n    \"key\": \"92416\",\n    \"description\": \"two people are crawling around on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98w8z1TGU1ttpy61o1_250\",\n    \"question\": \"how many girls are talking one smiles and looks away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35970\",\n    \"key\": \"98159\",\n    \"description\": \"two girls are talking one smiles and looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyft4jnrc1r32adho1_400\",\n    \"question\": \"where is the guy putting a glass.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29687\",\n    \"key\": \"81138\",\n    \"description\": \"a guy is putting a glass in a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedjc7aFL11tk34mko1_500\",\n    \"question\": \"where is the person talking to someone through the open window.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47940\",\n    \"key\": \"79887\",\n    \"description\": \"a person in a car is talking to someone through the open window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2hisJPt81sfz5oto1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34852\",\n    \"key\": \"36994\",\n    \"description\": \"a guy with short brown hair wears tan and shakes his head as the wind blows his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngm9yhvYpt1qg8w48o1_400\",\n    \"question\": \"what gets his in the head with a frisbee and does n't care?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15195\",\n    \"key\": \"25215\",\n    \"description\": \"a dog gets his in the head with a frisbee and does n't care.\"\n  },\n  {\n    \"video_name\": \"tumblr_no6xcisQQU1ttstb6o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47470\",\n    \"key\": \"48414\",\n    \"description\": \"a lady with long black hair wears all black and pulls away with wide eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_naw665PAt51tktrwbo1_250\",\n    \"question\": \"how many man is laying on another man on the ground?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39508\",\n    \"key\": \"2895\",\n    \"description\": \"1 man is laying on another man on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni01txhXte1tx8mn0o1_400\",\n    \"question\": \"how many helmeted people sit in the driving race car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51688\",\n    \"key\": \"79270\",\n    \"description\": \"two helmeted people sit in a driving race car.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxyq4bNFX1tzhkoao1_400\",\n    \"question\": \"what is the fluffy cat,\",\n    \"answer\": \"sitting on a table , reaches out and pushes a glass off the table ? paw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22487\",\n    \"key\": \"11308\",\n    \"description\": \"a fluffy cat,\"\n  },\n  {\n    \"video_name\": \"tumblr_nh24kvm9ft1rq31wzo1_400\",\n    \"question\": \"what is the man riding and doing tricks at the same time?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46071\",\n    \"key\": \"81695\",\n    \"description\": \"a man is riding a skateboard and doing tricks at the same time.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9n9u0bQkJ1qijeudo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33821\",\n    \"key\": \"92813\",\n    \"description\": \"a guy wearing a black jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_naxwhdLvNY1qgf0vjo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28190\",\n    \"key\": \"85323\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne68rePU2I1tm0es2o1_400\",\n    \"question\": \"how many people sat next to each other talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7166\",\n    \"key\": \"17195\",\n    \"description\": \"two people sat next to each other talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf4x2c4BCf1tid424o1_250\",\n    \"question\": \"what is the color of the scratched?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28355\",\n    \"key\": \"19280\",\n    \"description\": \"a man wearing a white hat scratched behind his ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncee4dyhyZ1t2yxr0o1_500\",\n    \"question\": \"what is the color of the wings?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21247\",\n    \"key\": \"98312\",\n    \"description\": \"the man with black wings turns around on a cliff.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafjyxGRto1tjgfjko1_400\",\n    \"question\": \"what is standing above the flat area of land?\",\n    \"answer\": \"mountain\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10221\",\n    \"key\": \"59176\",\n    \"description\": \"a mountain is standing above a flat area of land.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99vbo9pk71tf7kp3o1_500\",\n    \"question\": \"how many men is this dancing and singing on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2521\",\n    \"key\": \"75263\",\n    \"description\": \"this is two men dancing and singing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqwv6n9JKg1uvejg4o1_540\",\n    \"question\": \"how many young kids are singing and walking together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22274\",\n    \"key\": \"96739\",\n    \"description\": \"two young kids are singing and walking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklj95HBGD1rxcyx0o1_250\",\n    \"question\": \"what is an athletic man delivering and answering his cell phone?\",\n    \"answer\": \"pizza\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1418\",\n    \"key\": \"2655\",\n    \"description\": \"an athletic man is delivering a pizza and answering his cell phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcozcs5xE1rfzipho1_400\",\n    \"question\": \"how many people get up from behind the couch and surprise people?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32283\",\n    \"key\": \"32999\",\n    \"description\": \"two people get up from behind the couch and surprise people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfs4rqmTxc1rt48xfo1_r1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8556\",\n    \"key\": \"95471\",\n    \"description\": \"a guy with a blue jersey shirt on is running and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhnomg0r01u1pokno1_250\",\n    \"question\": \"what is being fed to the cat wearing a dress?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39314\",\n    \"key\": \"53313\",\n    \"description\": \"a banana is being fed to a cat wearing a dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndaot5SytE1tuzzkvo1_400\",\n    \"question\": \"what is the short haired person putting on?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12595\",\n    \"key\": \"32733\",\n    \"description\": \"a short haired person is putting a hat on.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncepuifpK81rsfjdwo1_250\",\n    \"question\": \"what is the young man holding?\",\n    \"answer\": \"tools\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7349\",\n    \"key\": \"14846\",\n    \"description\": \"a young man is holding some yard tools.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrp5s99y11rjquvjo1_500\",\n    \"question\": \"what is the color of the blouse?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34291\",\n    \"key\": \"93128\",\n    \"description\": \"the lady with the blond hair and white blouse looks worried.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyudiRTHn1u26x8po1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16539\",\n    \"key\": \"23421\",\n    \"description\": \"a man in a white t-shirt raises his head smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzhrtN0fn1rif4nho1_400\",\n    \"question\": \"how many men are sitting in chairs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40271\",\n    \"key\": \"22853\",\n    \"description\": \"two men are sitting in chairs and another man walks by with hands on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj9q9qZ3d1spmkl4o1_500\",\n    \"question\": \"how many guys are moving and dancing around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16934\",\n    \"key\": \"45222\",\n    \"description\": \"two guys are moving and dancing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesls65ifv1qj1s5io1_400\",\n    \"question\": \"what are having the jousting match?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32628\",\n    \"key\": \"80347\",\n    \"description\": \"the machine are having a jousting match.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd931nZhS61s1ctsqo1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36212\",\n    \"key\": \"64632\",\n    \"description\": \"a handsome man wearing a white tank top is smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemp1budLR1t97h17o1_400\",\n    \"question\": \"what is the color of the tuxedo?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32845\",\n    \"key\": \"69910\",\n    \"description\": \"a man in black tuxedo is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlgwkAmGV1qb1u6io1_250\",\n    \"question\": \"how many men are singing on stage and playing guitar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23134\",\n    \"key\": \"27294\",\n    \"description\": \"two men are singing on stage and playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf19w8EkTl1t2hpuno1_400\",\n    \"question\": \"what is the man wearing and standing up?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49231\",\n    \"key\": \"11743\",\n    \"description\": \"a man is wearing a suit and standing up.\"\n  },\n  {\n    \"video_name\": \"tumblr_no51i7FwV61uuvan0o1_500\",\n    \"question\": \"how many boys are looking at something and smiling?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47989\",\n    \"key\": \"86187\",\n    \"description\": \"four boys are looking at something and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nalyu8AJ3b1t1j5ogo1_250\",\n    \"question\": \"what is the color of the headphones?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15285\",\n    \"key\": \"27249\",\n    \"description\": \"a young boy wearing blue headphones is being picked up by his dad.\"\n  },\n  {\n    \"video_name\": \"tumblr_na260dZVY11txmq72o1_250\",\n    \"question\": \"what is playing with the piece of paper?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15971\",\n    \"key\": \"26579\",\n    \"description\": \"a kitten is playing with a piece of paper.\"\n  },\n  {\n    \"video_name\": \"tumblr_nalgunb5tA1rm4q61o1_250\",\n    \"question\": \"how many young men are wrapping their arms around one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9741\",\n    \"key\": \"6552\",\n    \"description\": \"two young men are wrapping their arms around one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_np8vdxZrdi1tx8mn0o1_400\",\n    \"question\": \"what are there racing?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8241\",\n    \"key\": \"76908\",\n    \"description\": \"there are racing cars that get into an accident.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sg4dnVGy1teocxjo1_400\",\n    \"question\": \"how many girls is this walking through a set of doors?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11902\",\n    \"key\": \"66445\",\n    \"description\": \"this is two girls walking through a set of doors and one peeks out as she goes through.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko149Q7AN1u8uroco1_250\",\n    \"question\": \"what is sitting between two white kittens?\",\n    \"answer\": \"duck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22748\",\n    \"key\": \"43578\",\n    \"description\": \"a duck is sitting between two white kittens.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8hk45xsAu1tgetb4o1_400\",\n    \"question\": \"what is looking at and playing with fish?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15470\",\n    \"key\": \"66886\",\n    \"description\": \"a cat is looking at and playing with fish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9xh5NZ6d1stafvxo1_400\",\n    \"question\": \"what are two girls wearing together and one is shocked?\",\n    \"answer\": \"headsets\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15468\",\n    \"key\": \"87951\",\n    \"description\": \"two girls are wearing headsets together and one is shocked.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkqdmYAMm1sipe8no1_500\",\n    \"question\": \"how many different groups of men are dancing wearing two different sets of clothes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12867\",\n    \"key\": \"95007\",\n    \"description\": \"two different groups of men are dancing wearing two different sets of clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbv0ml7KVI1tbep7no1_500\",\n    \"question\": \"what flies into the air,\",\n    \"answer\": \"the streets crumble below it ? airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40979\",\n    \"key\": \"95154\",\n    \"description\": \"a plane flies into the air,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkocex8iVE1qjame9o1_250\",\n    \"question\": \"where is two girls talking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35943\",\n    \"key\": \"84471\",\n    \"description\": \"two girls is talking expressly in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0eqq49V51rw1wnno1_400\",\n    \"question\": \"what is playing with the wire and falls off a chair?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50055\",\n    \"key\": \"70838\",\n    \"description\": \"a cat is playing with a wire and falls off a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbci2vFibY1st6smgo1_500\",\n    \"question\": \"what is the color of the outfits?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38935\",\n    \"key\": \"73073\",\n    \"description\": \"two girls are ballet dancing in red outfits.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncm3t6uN6S1qhzqk1o1_500\",\n    \"question\": \"what is the color of the rail?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7390\",\n    \"key\": \"77713\",\n    \"description\": \"a boy is leaning over a black rail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrljkbZSIC1u5qz70o1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45564\",\n    \"key\": \"43507\",\n    \"description\": \"a blonde haired man in a green t-shirt is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq79d1R2uE1rered3o1_400\",\n    \"question\": \"what is the man wearing sunglasses hits?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48624\",\n    \"key\": \"77208\",\n    \"description\": \"a man wearing sunglasses hits a yellow ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni33o9h6bs1qjvum0o1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15205\",\n    \"key\": \"19961\",\n    \"description\": \"a red haired woman fluffs her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yfsnDNsW1qhejm2o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28984\",\n    \"key\": \"95366\",\n    \"description\": \"a person with blonde hair and wearing a black jacket is singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf1uaXSXE1ts0kzio1_400\",\n    \"question\": \"what is rubbing the mans head on a chair?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8987\",\n    \"key\": \"41589\",\n    \"description\": \"a black and white dog is rubbing a mans head on a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rbiqMVtr1tezv66o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44419\",\n    \"key\": \"59037\",\n    \"description\": \"a guy wearing a blue shirt and jeans,\"\n  },\n  {\n    \"video_name\": \"tumblr_name16OoO71si20l6o1_250\",\n    \"question\": \"what is the color of the laughing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35754\",\n    \"key\": \"23543\",\n    \"description\": \"a man with a microphone sits in a black chair laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncduqksVUf1tri1soo1_400\",\n    \"question\": \"what is the color of the flowers?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39181\",\n    \"key\": \"65210\",\n    \"description\": \"the guy is standing at the door holding red flowers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkraguGpTL1u7pcrso1_500\",\n    \"question\": \"how many young men are dancing and having fun?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13058\",\n    \"key\": \"72814\",\n    \"description\": \"two young men are dancing and having fun.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s0xxT2ig1ssgyoro1_400\",\n    \"question\": \"what drops the yellow ball and then chases it?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27152\",\n    \"key\": \"56060\",\n    \"description\": \"a dog drops a yellow ball and then chases it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq622eUZ2O1twfmf3o1_400\",\n    \"question\": \"what does the girl grab and he snaps at her?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19799\",\n    \"key\": \"7692\",\n    \"description\": \"a girl grabs her dog and he snaps at her.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrvrv1LdJ1rzng9wo1_400\",\n    \"question\": \"what is the basketball player wearing a dark colored uniform is dribbling?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4617\",\n    \"key\": \"40945\",\n    \"description\": \"a basketball player wearing a dark colored uniform is dribbling the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_niw20xqfYh1qjzq4lo1_400\",\n    \"question\": \"how many guys are sitting and watching some in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28129\",\n    \"key\": \"81088\",\n    \"description\": \"two guys are sitting and watching some in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x0vtknbl1rhmx5uo1_400\",\n    \"question\": \"what is the color of the sofa?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40660\",\n    \"key\": \"30378\",\n    \"description\": \"two men are sat on a red sofa wearing headphones and one of them gives a thumps up.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkwz6QpbC1unkbhwo1_250\",\n    \"question\": \"what is the slim and beautiful woman with long hair showing and giving a thumb and smile?\",\n    \"answer\": \"t-shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49759\",\n    \"key\": \"7462\",\n    \"description\": \"a slim and beautiful woman with long hair is showing her t-shirt and giving a thumb and smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5vdcsC771rai4l8o1_250\",\n    \"question\": \"what is the color of the bit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2433\",\n    \"key\": \"17098\",\n    \"description\": \"a man wearing a black t-shirt bit his bottom lip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1h818Si01tlk1ano1_250\",\n    \"question\": \"what is the cat white black color jumping and moving?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5359\",\n    \"key\": \"7880\",\n    \"description\": \"a cat white black color is jumping and moving his tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nre0xwdee61uyo37eo1_250\",\n    \"question\": \"what is the woman wearing black lingerie opens and looks out?\",\n    \"answer\": \"doors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14877\",\n    \"key\": \"6713\",\n    \"description\": \"a woman wearing black lingerie opens the doors and looks out.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndncr8qDWL1ry6fnao1_400\",\n    \"question\": \"what is the color of the footballers?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45576\",\n    \"key\": \"80122\",\n    \"description\": \"two footballers in white,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8yfuvRPzW1th6vrno1_500\",\n    \"question\": \"what is the boy,\",\n    \"answer\": \"wearing , hugs another person and smiles ? glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33727\",\n    \"key\": \"89947\",\n    \"description\": \"a boy,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc5y9NdSL1u17tjio1_400\",\n    \"question\": \"how many friends share the high five together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10764\",\n    \"key\": \"62294\",\n    \"description\": \"two friends share a high five together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjzfx6FL41uz06r7o1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6464\",\n    \"key\": \"13614\",\n    \"description\": \"a brown cat is walking in a big wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgkzeADl51rpsnyjo1_250\",\n    \"question\": \"where are two men dancing,\",\n    \"answer\": \"one of them is shaking his head . ? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32673\",\n    \"key\": \"3928\",\n    \"description\": \"two men are dancing in the car,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9aw9xL3oK1tx8mn0o1_400\",\n    \"question\": \"what is going around the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35910\",\n    \"key\": \"77235\",\n    \"description\": \"a race car is going around the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yquiyMK91r6oiiao1_400\",\n    \"question\": \"how many teenage boys are talking and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46419\",\n    \"key\": \"101018\",\n    \"description\": \"two teenage boys are talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nip2p8nEbB1rz19y8o1_500\",\n    \"question\": \"what are the two guys in a band playing crazily?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11241\",\n    \"key\": \"73340\",\n    \"description\": \"the two guys in a band are playing guitar crazily.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkte68ucI51si31pso1_400\",\n    \"question\": \"what is the man exhaling and sucking them back in?\",\n    \"answer\": \"rings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33828\",\n    \"key\": \"11528\",\n    \"description\": \"the man is exhaling smoke rings and sucking them back in.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg8y0pmj21she1i6o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48507\",\n    \"key\": \"10527\",\n    \"description\": \"a young boy with brown hair is crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_naef7gYw6B1tjr73vo1_400\",\n    \"question\": \"where are two women smiling and joking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46402\",\n    \"key\": \"22030\",\n    \"description\": \"two women are smiling and joking in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9powlIXXD1tiu45ao1_400\",\n    \"question\": \"what is the color of the witch?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15459\",\n    \"key\": \"29851\",\n    \"description\": \"a green face witch with a tall hat is shouting and smiling and turning her body back.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fp6mawvc1tg4n19o1_500\",\n    \"question\": \"what crashes into the bus on a rainy day?\",\n    \"answer\": \"truck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21590\",\n    \"key\": \"89277\",\n    \"description\": \"a truck crashes into a bus on a rainy day.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pqysKgXz1sy7yfqo1_400\",\n    \"question\": \"what is making the turn in the field?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18032\",\n    \"key\": \"64680\",\n    \"description\": \"a horse is making a turn in the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3mu1R5I61tgtinoo1_250\",\n    \"question\": \"what is being scratched by the hand?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32979\",\n    \"key\": \"643\",\n    \"description\": \"a pet bird is being scratched by a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkoxqBeA41qik8zvo1_500\",\n    \"question\": \"how many people is sitting are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32133\",\n    \"key\": \"100936\",\n    \"description\": \"two people sitting are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngxgwdWTfH1tjcz2uo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26144\",\n    \"key\": \"101330\",\n    \"description\": \"the lady in the red coat is talking to the man with the white collared shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_njsav5UOz21qieqojo1_400\",\n    \"question\": \"where is the woman laying with her arms crossed then opens her eyes.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48765\",\n    \"key\": \"80301\",\n    \"description\": \"a woman is laying in bed with her arms crossed then opens her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_noi69zAwNr1sgwg9go1_400\",\n    \"question\": \"where is the man walking.\",\n    \"answer\": \"? garage\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26307\",\n    \"key\": \"39096\",\n    \"description\": \"a man is walking in a dark parking garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nftibqLA1f1tcwc21o1_400\",\n    \"question\": \"what is the man with short hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8482\",\n    \"key\": \"28432\",\n    \"description\": \"a man with short hair is playing guitar while another man is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0kxcHgTJ1uvdb8xo1_400\",\n    \"question\": \"where are two young boys swinging bats.\",\n    \"answer\": \"? cage\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43493\",\n    \"key\": \"62177\",\n    \"description\": \"two young boys are swinging bats in a batting cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahga9eNFz1tx8mn0o1_400\",\n    \"question\": \"what is driving through the dirt off a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29273\",\n    \"key\": \"78232\",\n    \"description\": \"a car is driving through the dirt off a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zyatt9Ac1tihotxo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3012\",\n    \"key\": \"23212\",\n    \"description\": \"a beautiful man is shaking his yellow hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w68eOVgx1tif07xo1_400\",\n    \"question\": \"what is the girl holding and waving?\",\n    \"answer\": \"octopuses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41729\",\n    \"key\": \"36909\",\n    \"description\": \"a girl is holding two stuffed octopuses and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclxudn5MX1qa4y0oo1_500\",\n    \"question\": \"what sits on the fence looking to its left?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32827\",\n    \"key\": \"67749\",\n    \"description\": \"a bird sits on a fence looking to its left.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhxrqCzyf1qmig0no1_400\",\n    \"question\": \"what is jumping over two hurdles?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18368\",\n    \"key\": \"4107\",\n    \"description\": \"a horse is jumping over two hurdles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nery6zlDcp1s5p0j3o1_400\",\n    \"question\": \"what is coming from the car?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5376\",\n    \"key\": \"5676\",\n    \"description\": \"a man wearing cap is coming from the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_na08xb9OsP1svos5ho1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30079\",\n    \"key\": \"3805\",\n    \"description\": \"a man in a black hat is sitting and chewing something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9t1ycvMk81rmqkjuo1_500\",\n    \"question\": \"how many people are slapping their hands against each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28794\",\n    \"key\": \"81984\",\n    \"description\": \"two people are slapping their hands against each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfx6plsgs1sjcg5bo2_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27581\",\n    \"key\": \"39257\",\n    \"description\": \"a guy with green eyes is smiling in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmfziQ3X61qj319bo1_250\",\n    \"question\": \"what is the handsome old man smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24515\",\n    \"key\": \"27811\",\n    \"description\": \"a handsome old man is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfeonvBBad1srvunio1_250\",\n    \"question\": \"what is the young man lighting and smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10639\",\n    \"key\": \"20526\",\n    \"description\": \"a young man is lighting and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfeov630X81u426jpo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51657\",\n    \"key\": \"47850\",\n    \"description\": \"a woman in a black hat tries to avoid the cameras.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkuhrpI341txsmyfo1_400\",\n    \"question\": \"how many young people are talking and dressed as elves?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14476\",\n    \"key\": \"40487\",\n    \"description\": \"two young people are talking and dressed as elves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3whcvNsE1r0d1r1o1_500\",\n    \"question\": \"how many guy drove?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8676\",\n    \"key\": \"79347\",\n    \"description\": \"one guy drove and another talked on a cell phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngagpi6yvY1rkbo6ho1_400\",\n    \"question\": \"how many tricks is the man wearing a cap is outside on his skateboard?\",\n    \"answer\": \"performs\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46491\",\n    \"key\": \"89132\",\n    \"description\": \"a man wearing a cap is performs tricks outside on his skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nio3kp0yiC1tp92iyo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31017\",\n    \"key\": \"5960\",\n    \"description\": \"the boy in the white shirt is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtvm1ky4S1u9tekro1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36292\",\n    \"key\": \"76852\",\n    \"description\": \"a woman with a red dress is answering something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafeokdd2G1rkg0aio1_400\",\n    \"question\": \"what is the woman?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48626\",\n    \"key\": \"64967\",\n    \"description\": \"a woman is glasses is blowing smoke out of her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw2cys1031qcpuklo1_500\",\n    \"question\": \"how many girls are crawling around on the floor?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1103\",\n    \"key\": \"67461\",\n    \"description\": \"three girls are crawling around on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbovmhO8lQ1t08tbeo1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50163\",\n    \"key\": \"68894\",\n    \"description\": \"a white girl with purple hair is grimacing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4z54JieK1som6aeo1_250\",\n    \"question\": \"what does the person walk away?\",\n    \"answer\": \"pot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34033\",\n    \"key\": \"18398\",\n    \"description\": \"a person walks a large pot away while one person does something disgusting.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndm302Gvzr1srpy25o1_500\",\n    \"question\": \"what moves his eye slowly to look to his side?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36165\",\n    \"key\": \"56698\",\n    \"description\": \"a horse moves his eye slowly to look to his side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc50ehFDSZ1tkpzw0o1_400\",\n    \"question\": \"what is running to the truck to drop a bomb off before it explodes?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12163\",\n    \"key\": \"97524\",\n    \"description\": \"a dog is running to a truck to drop a bomb off before it explodes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat1jsDGBA1tdmr2yo1_500\",\n    \"question\": \"how many sweaty men in sleeveless outfits lift something from the ground?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49322\",\n    \"key\": \"96611\",\n    \"description\": \"three sweaty men in sleeveless outfits lift something from the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nks1ucMHvh1r0slduo1_400\",\n    \"question\": \"what is the woman wearing a black sweater is rearranging on a shelf?\",\n    \"answer\": \"cases\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35900\",\n    \"key\": \"64982\",\n    \"description\": \"a woman wearing a black sweater is rearranging compact disc cases on a shelf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelekc7qgX1rtcpyfo1_250\",\n    \"question\": \"what is cuddling with the cat?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38237\",\n    \"key\": \"23195\",\n    \"description\": \"a puppy is cuddling with a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdinuJxSW1taahxyo1_400\",\n    \"question\": \"how many person is looking at the other?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31665\",\n    \"key\": \"77696\",\n    \"description\": \"two people are standing beside each other and one person is looking at the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrkl4u4JU1unyhx2o1_400\",\n    \"question\": \"what are racing around the race track when one of them spins?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23957\",\n    \"key\": \"96258\",\n    \"description\": \"cars are racing around a race track when one of them spins.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwqd1fykp1sm7eoto1_500\",\n    \"question\": \"what picks her kitten up goes over the wall?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26059\",\n    \"key\": \"40619\",\n    \"description\": \"a cat picks her kitten up goes over the wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyvgluqf71tm0es2o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24090\",\n    \"key\": \"12524\",\n    \"description\": \"a white man with black shirt is embracing a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_naklwl1u1y1tjjgbwo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24485\",\n    \"key\": \"26638\",\n    \"description\": \"a white man with a black shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfagkDT3Z1qz61bho1_400\",\n    \"question\": \"how many men face an army on a cold winter day?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31302\",\n    \"key\": \"80688\",\n    \"description\": \"two men face an army on a cold winter day.\"\n  },\n  {\n    \"video_name\": \"tumblr_najvvu3Y0I1se3ifso1_250\",\n    \"question\": \"what are two men riding to some place?\",\n    \"answer\": \"bus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41765\",\n    \"key\": \"57959\",\n    \"description\": \"two men are riding a bus to some place.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndk037PLLJ1tdn8xmo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22057\",\n    \"key\": \"70856\",\n    \"description\": \"the guy with the black shirt in front of the microphone is sweating.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb5zc0ldvd1tkyroqo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34974\",\n    \"key\": \"100493\",\n    \"description\": \"a person in a yellow shirt does push-ups.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvgl9LZyY1uv0y2ro1_250\",\n    \"question\": \"what is enjoying being stroked by the person 's hand?\",\n    \"answer\": \"deer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5774\",\n    \"key\": \"20413\",\n    \"description\": \"a deer is enjoying being stroked by a person 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nibscxbjOp1qlbj8uo1_500\",\n    \"question\": \"what is the color of the dance?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10265\",\n    \"key\": \"84835\",\n    \"description\": \"a man in red dance 's on a stage for a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkw9pdcCxs1u8s3tzo1_250\",\n    \"question\": \"how many people are performing dance moves on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46404\",\n    \"key\": \"8086\",\n    \"description\": \"two people are performing dance moves on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrfj8UMpZ1sofhfko1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21418\",\n    \"key\": \"23791\",\n    \"description\": \"a guy wearing black top is struggling to fasten his belt buckle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba4pcH1vc1slj978o1_400\",\n    \"question\": \"what is walking in the street?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36938\",\n    \"key\": \"14475\",\n    \"description\": \"a beautiful turtle is walking in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_naoi1yLJAq1s034x5o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30513\",\n    \"key\": \"50545\",\n    \"description\": \"a boy with dark brown hair wears a gray shirt and smirks,\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw2cys1031qcpuklo1_500\",\n    \"question\": \"how many women play on the floor with a blanket?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3031\",\n    \"key\": \"67461\",\n    \"description\": \"three women play on the floor with a blanket.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbwoiwcXo1reut2bo1_500\",\n    \"question\": \"how many people are hugging tightly and slowly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33323\",\n    \"key\": \"91828\",\n    \"description\": \"two people are hugging tightly and slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_n977ivF2qU1two872o1_500\",\n    \"question\": \"how many guys sky dived and held their arms out?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4494\",\n    \"key\": \"55789\",\n    \"description\": \"two guys sky dived and held their arms out.\"\n  },\n  {\n    \"video_name\": \"tumblr_na05z08opP1ry1g5io1_400\",\n    \"question\": \"how many men are walking in the park?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18443\",\n    \"key\": \"17330\",\n    \"description\": \"two men are walking in a park.\"\n  },\n  {\n    \"video_name\": \"tumblr_naewvsd2Hj1rpjr5so1_500\",\n    \"question\": \"what is wearing sunglasses is playing the trumpet?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19810\",\n    \"key\": \"27793\",\n    \"description\": \"a big yellow banana wearing sunglasses is playing the trumpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9z4saXhhl1suovrfo1_250\",\n    \"question\": \"where does the blonde boy climbing wall and falls.\",\n    \"answer\": \"? wall\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17080\",\n    \"key\": \"18084\",\n    \"description\": \"a blonde boy climbing wall and falls in the wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8y9rCjm11sta3neo1_250\",\n    \"question\": \"how many men are talking and drinking coffee together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30855\",\n    \"key\": \"18364\",\n    \"description\": \"two men are talking and drinking coffee together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr6wu9RNsq1uz4yjlo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14033\",\n    \"key\": \"82033\",\n    \"description\": \"a woman is flipping her black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc106iim91rgb5tho1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33251\",\n    \"key\": \"3308\",\n    \"description\": \"a man dressed in a gray suit and yellow tie,\"\n  },\n  {\n    \"video_name\": \"tumblr_nlj721y4ly1tngihso1_400\",\n    \"question\": \"what is the man filling with an aerosol,\",\n    \"answer\": \"and holding a lighter underneath , it explodes in flames ? balloon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48494\",\n    \"key\": \"39076\",\n    \"description\": \"a man is filling a balloon with an aerosol,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbonmh32QP1slwrsuo1_400\",\n    \"question\": \"what tries to grab an animated mouse on a tablet?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17212\",\n    \"key\": \"13378\",\n    \"description\": \"a kitten tries to grab an animated mouse on a tablet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2v6r00g21unqpa3o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17652\",\n    \"key\": \"24223\",\n    \"description\": \"a white man with dark hair and a suit is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf33t0vOAz1syou1io1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41950\",\n    \"key\": \"14107\",\n    \"description\": \"a guy with a black shirt on is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3cdi4S1R1u7q0qeo1_400\",\n    \"question\": \"what does the soccer player flip past another soccer player?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30595\",\n    \"key\": \"96221\",\n    \"description\": \"a soccer player flips the ball past another soccer player.\"\n  },\n  {\n    \"video_name\": \"tumblr_nag2vziX7H1rawraqo1_500\",\n    \"question\": \"how many teens look and walk away while one of them does a hand gesture?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2435\",\n    \"key\": \"94649\",\n    \"description\": \"three teens look and walk away while one of them does a hand gesture.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ehfs2T7p1ttgk5ro1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2918\",\n    \"key\": \"2258\",\n    \"description\": \"a woman in a black hat is eating ice cream.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sg4dnVGy1teocxjo1_400\",\n    \"question\": \"how many women wave goodbye and slowly close the door behind them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47953\",\n    \"key\": \"66445\",\n    \"description\": \"two women wave goodbye and slowly close the door behind them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf4x84UeBt1sbqfh7o1_250\",\n    \"question\": \"what is the man in a suit and tie holding to his ear?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14629\",\n    \"key\": \"8630\",\n    \"description\": \"a man in a suit and tie is holding a phone to his ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8t4qdj741r5bh48o1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47318\",\n    \"key\": \"85728\",\n    \"description\": \"a man wearing a black t-shirt is doing push ups.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4nwcgf721tq6drmo1_250\",\n    \"question\": \"what is the woman holding and it falls over her behind?\",\n    \"answer\": \"blanket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33360\",\n    \"key\": \"11567\",\n    \"description\": \"a woman is holding a blanket and it falls over her behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkles2NbB11rlb2tvo1_1280\",\n    \"question\": \"what is the color of the gloves?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51772\",\n    \"key\": \"54196\",\n    \"description\": \"a person wearing brown gloves,\"\n  },\n  {\n    \"video_name\": \"tumblr_nappn5EVPG1t8jvi1o1_500\",\n    \"question\": \"what does the woman adjust?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13054\",\n    \"key\": \"52923\",\n    \"description\": \"a woman adjusts a man 's coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nour3aj5RW1tx8mn0o1_400\",\n    \"question\": \"what comes around the corner of a track and spins out?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27678\",\n    \"key\": \"77014\",\n    \"description\": \"a race car comes around the corner of a track and spins out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqmrnfJHqY1r9pv19o1_500\",\n    \"question\": \"where does the man shut his window whilst lights flash in the background.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12677\",\n    \"key\": \"73803\",\n    \"description\": \"a man in a car shuts his window whilst lights flash in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ousdC7yv1tdjuqvo1_400\",\n    \"question\": \"what is the man throwing at a young woman holding paddles?\",\n    \"answer\": \"knives\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48698\",\n    \"key\": \"21043\",\n    \"description\": \"a man is throwing knives at a young woman holding paddles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp0avQWPh1si8uq7o1_400\",\n    \"question\": \"where is the chin bobbing.\",\n    \"answer\": \"? frame\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45071\",\n    \"key\": \"64881\",\n    \"description\": \"a chin is bobbing up and down in the frame.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1g3fczxJ1ra78amo1_100\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17280\",\n    \"key\": \"14840\",\n    \"description\": \"a young man in a white shirt is making hand motions and bending down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkm38Aep41u80mmjo1_400\",\n    \"question\": \"what is barking at every vehicle that passes by?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8180\",\n    \"key\": \"56068\",\n    \"description\": \"the dog is barking at every vehicle that passes by.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy9hdR3rh1u2zo17o1_400\",\n    \"question\": \"what is the color of the people?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38518\",\n    \"key\": \"71375\",\n    \"description\": \"a group of people in white are dancing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4ukt1AIR1r7zltao1_400\",\n    \"question\": \"how many women are dancing together in front of a fountain?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6454\",\n    \"key\": \"58770\",\n    \"description\": \"two women are dancing together in front of a fountain.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92oq4Hega1ts0kzio1_400\",\n    \"question\": \"what is the color of the duck?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41392\",\n    \"key\": \"34144\",\n    \"description\": \"a black cat and a yellow duck were playing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat7piX07F1slj978o1_250\",\n    \"question\": \"what is walking across water on a steel rail?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10169\",\n    \"key\": \"16348\",\n    \"description\": \"a cat is walking across water on a steel rail.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyfoeWTpX1qa051so1_500\",\n    \"question\": \"what is the color of the chest?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45663\",\n    \"key\": \"85777\",\n    \"description\": \"a slim man in loose black chest bumps a sumo wrestler and is knocked backward into a second sumo wrestler standing nearby.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx2a5Ldzl1sdbrm9o1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7505\",\n    \"key\": \"85456\",\n    \"description\": \"the guy in black is waiting patiently to perform.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x1k9arXy1th7vhgo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29219\",\n    \"key\": \"53456\",\n    \"description\": \"a man in a black jacket is wearing a silver helmet and is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3vynn0a81rregeqo1_500\",\n    \"question\": \"what does man open walking into a room?\",\n    \"answer\": \"doors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9307\",\n    \"key\": \"34224\",\n    \"description\": \"man opens double doors walking into a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_najmw24iuw1qlo2n6o1_400\",\n    \"question\": \"what do two men stand in a trolley and another one pushes along?\",\n    \"answer\": \"trolley\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33225\",\n    \"key\": \"20067\",\n    \"description\": \"two men stand in a trolley and another one pushes the trolley along.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq9kaqQ2R1tegl32o1_250\",\n    \"question\": \"what is the young man with white hair riding?\",\n    \"answer\": \"chair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24664\",\n    \"key\": \"14927\",\n    \"description\": \"a young man with white hair is riding a power chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg6ia8wuI1typ81lo1_400\",\n    \"question\": \"what is the man in a suit and tie eating with his hands?\",\n    \"answer\": \"noodles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23592\",\n    \"key\": \"61990\",\n    \"description\": \"the man in a suit and tie is eating noodles with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_no65vn27ry1s5zcijo1_400\",\n    \"question\": \"how many men are talking,\",\n    \"answer\": \"one cries and holds a handkerchief to his nose , the other tries to comfort him ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50182\",\n    \"key\": \"87423\",\n    \"description\": \"two men are talking,\"\n  },\n  {\n    \"video_name\": \"tumblr_nheuo83aCM1t0w9oqo1_400\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27862\",\n    \"key\": \"74555\",\n    \"description\": \"two men are swaying together in a red room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5479yc0v1suhp97o1_500\",\n    \"question\": \"what is the color of the balloon?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9250\",\n    \"key\": \"59776\",\n    \"description\": \"wind is blowing a red balloon away while turning pages on a book.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk22wlkaMq1tuh3l3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5433\",\n    \"key\": \"68118\",\n    \"description\": \"a woman in a gray shirt is hugging someone in a black shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnukunx7r61uuj39do1_400\",\n    \"question\": \"what slammed into the little boy beside the red trailer?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27446\",\n    \"key\": \"37449\",\n    \"description\": \"the billy goat slammed into the little boy beside the red trailer.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ptmsvc1I1th4an4o1_500\",\n    \"question\": \"what is holding his pet?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8822\",\n    \"key\": \"69752\",\n    \"description\": \"a boy wearing suit is holding his pet.\"\n  },\n  {\n    \"video_name\": \"tumblr_no963fPopI1uuv7imo1_500\",\n    \"question\": \"what is the woman unrolling and looking mad?\",\n    \"answer\": \"wrap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20911\",\n    \"key\": \"30434\",\n    \"description\": \"a woman is unrolling wrap and looking mad.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner3v7FbbI1rgchc8o1_500\",\n    \"question\": \"what is playing with the piece of string?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38754\",\n    \"key\": \"72762\",\n    \"description\": \"a black cat is playing with a piece of string.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8hk45xsAu1tgetb4o1_400\",\n    \"question\": \"what is touching the fish with their face and paw?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18072\",\n    \"key\": \"66886\",\n    \"description\": \"a kitten is touching a fish with their face and paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyszt5Ni41td493xo1_500\",\n    \"question\": \"where is the small baby making a mess.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46397\",\n    \"key\": \"70615\",\n    \"description\": \"a small baby is making a mess in the living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1tyhgYEn1sda6szo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50777\",\n    \"key\": \"78109\",\n    \"description\": \"a young man with a white hat is posing for something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqpkgekB2L1t673d8o1_250\",\n    \"question\": \"what is surprised when someone places a pink flower on its head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7194\",\n    \"key\": \"18793\",\n    \"description\": \"a cat is surprised when someone places a pink flower on its head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5xkfbVPQ1tsmc92o1_400\",\n    \"question\": \"what does the girl move down slightly?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49113\",\n    \"key\": \"50561\",\n    \"description\": \"a girl moves her glasses down slightly exposing her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp2e0Uw4E1sj5pwvo1_400\",\n    \"question\": \"where is the boy pushing two standing boys.\",\n    \"answer\": \"? cart\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4672\",\n    \"key\": \"23814\",\n    \"description\": \"a boy is pushing two standing boys in a shopping cart.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcfhzsUZH1r7blyco1_400\",\n    \"question\": \"what is the color of the bear?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7627\",\n    \"key\": \"89505\",\n    \"description\": \"the man with the long white bear is flinging it in the wind.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmq0cCMma1sxr88mo1_500\",\n    \"question\": \"where is the man jumping.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30734\",\n    \"key\": \"56007\",\n    \"description\": \"a man is jumping up and down in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrj8tiIIWd1tkhxdko1_400\",\n    \"question\": \"what is laying down and begins kicking his legs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8312\",\n    \"key\": \"22505\",\n    \"description\": \"a cat is laying down and begins kicking his legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbh9dqQku1sgrzwto1_400\",\n    \"question\": \"what is the soccer player wearing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25742\",\n    \"key\": \"63510\",\n    \"description\": \"the soccer player is wearing a yellow shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpzlvf6oq1r6d38lo1_250\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48737\",\n    \"key\": \"22394\",\n    \"description\": \"a woman in white clothing is singing with a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne44f8BnGg1qhmhclo1_500\",\n    \"question\": \"how many people does when the man in a mask put the hood of a car down,\",\n    \"answer\": \"inside of the car get scared ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10632\",\n    \"key\": \"97777\",\n    \"description\": \"when a man in a mask puts the hood of a car down,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2xke0BQS1uopxvxo1_500\",\n    \"question\": \"how many guys wear sunglasses and play air drums?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50129\",\n    \"key\": \"84797\",\n    \"description\": \"two guys wear sunglasses and play air drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney7igW9Zl1tik3sgo1_250\",\n    \"question\": \"what is the color of the singing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3112\",\n    \"key\": \"36658\",\n    \"description\": \"a pretty blond dressed in white singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyiresVbd1unyhx2o1_400\",\n    \"question\": \"what is here racing?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32884\",\n    \"key\": \"76911\",\n    \"description\": \"here is a black racing car that continues his car race.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj3brtcOB1sjcvr3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15124\",\n    \"key\": \"27188\",\n    \"description\": \"a man in a blue shirt is touching an animal.\"\n  },\n  {\n    \"video_name\": \"tumblr_noelv1D1uI1tdtm2ao1_400\",\n    \"question\": \"how many lovers is playing with hands and look very happy?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37596\",\n    \"key\": \"85653\",\n    \"description\": \"two lovers playing with hands and look very happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk84wqh2Vm1tmaii4o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20333\",\n    \"key\": \"19449\",\n    \"description\": \"a boy with black shirt is holding himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9rbrw8PT1tjys71o1_250\",\n    \"question\": \"where are two men talking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4806\",\n    \"key\": \"68864\",\n    \"description\": \"two men are talking in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtxedpe7W1t7an45o1_250\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3533\",\n    \"key\": \"27296\",\n    \"description\": \"a panda bear is crawling onto a blue rocking horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfieggHos51tz7e01o1_250\",\n    \"question\": \"what is the guy staring forward and touching?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10151\",\n    \"key\": \"23240\",\n    \"description\": \"a guy is staring forward and touching his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ycxgDgWo1tw9irno1_400\",\n    \"question\": \"how many men is wearing costumes are falling to the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48657\",\n    \"key\": \"47956\",\n    \"description\": \"two men wearing costumes are falling to the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ywiw6h2O1thwjzto1_250\",\n    \"question\": \"what is the color of the costume?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27450\",\n    \"key\": \"20874\",\n    \"description\": \"a girl in a blue costume and boots is kicking her leg into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrh6eMkuA1tkdyoao1_400\",\n    \"question\": \"where is the lady with black pants and a green shirt exercising.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37814\",\n    \"key\": \"82205\",\n    \"description\": \"a lady with black pants and a green shirt is exercising in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdpcfJ9wz1r440y4o1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52477\",\n    \"key\": \"32240\",\n    \"description\": \"a woman in glasses and a black jacket is turning on a swivel chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nct6fkK6O11tk0p0po1_400\",\n    \"question\": \"what is the woman drinking while sitting on a couch?\",\n    \"answer\": \"beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6646\",\n    \"key\": \"31741\",\n    \"description\": \"a woman is drinking beer while sitting on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_na35maMaeX1r17l27o2_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39784\",\n    \"key\": \"93211\",\n    \"description\": \"a girl in a red shirt is hugging another girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ft5xtWBY1skz3lko1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32832\",\n    \"key\": \"72890\",\n    \"description\": \"a young man with a white no sleeve shirt is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n2juodBtsG1ttwpt3o1_500\",\n    \"question\": \"what is the rock star playing at a concert?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30400\",\n    \"key\": \"49533\",\n    \"description\": \"a rock star is playing a guitar at a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckpskUOON1tbpthxo1_400\",\n    \"question\": \"what does the person with a pan chase?\",\n    \"answer\": \"chicken\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25711\",\n    \"key\": \"65077\",\n    \"description\": \"a person with a pan chases a chicken.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy7o4JdmP1u2mi4fo1_400\",\n    \"question\": \"what is the man making behind another man?\",\n    \"answer\": \"animals\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40464\",\n    \"key\": \"51173\",\n    \"description\": \"a man is making balloon animals behind another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nit1e4bC5N1tx8mn0o1_400\",\n    \"question\": \"what did three cars race and moved to first?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9568\",\n    \"key\": \"96402\",\n    \"description\": \"three cars raced and the third car moved to first.\"\n  },\n  {\n    \"video_name\": \"tumblr_nll23tPe0j1uqj9elo1_500\",\n    \"question\": \"how many teenagers are singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28266\",\n    \"key\": \"93777\",\n    \"description\": \"two teenagers are singing and one puts their arm in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5ddaL9zk1s28vxko1_400\",\n    \"question\": \"what is waving its tail?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42281\",\n    \"key\": \"43219\",\n    \"description\": \"a white dog is waving its tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6dao7Wjg1t3vq9ho1_400\",\n    \"question\": \"how many woman is applying eye make-up on her right eye?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25217\",\n    \"key\": \"59203\",\n    \"description\": \"one woman is applying eye make-up on her right eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8smhsNjcz1t6so35o3_400\",\n    \"question\": \"what are some people wearing and swimming underwater?\",\n    \"answer\": \"tails\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41588\",\n    \"key\": \"52021\",\n    \"description\": \"some people are wearing mermaid tails and swimming underwater.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrq4zTBiW1td8ijso1_400\",\n    \"question\": \"what does the guy hold while taking?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30013\",\n    \"key\": \"54537\",\n    \"description\": \"a guy who is wearing a panda hat holds a panda toy while taking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q47znhFo1th5omjo1_400\",\n    \"question\": \"what is the teenager grabbing while talking?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26440\",\n    \"key\": \"57045\",\n    \"description\": \"a teenager is grabbing a teddy bear while talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne35uinLzV1tdjuqvo1_500\",\n    \"question\": \"what scares the woman standing on the side of a building?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21893\",\n    \"key\": \"49418\",\n    \"description\": \"a black cat scares a woman standing on the side of a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj0b4qFmm1tk9c2ao1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35949\",\n    \"key\": \"4727\",\n    \"description\": \"a man wearing a white tee shirt is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmkyk3u3L1tm06zno1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31378\",\n    \"key\": \"68022\",\n    \"description\": \"a person wearing a white shirt is pushing an object towards a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxaa8dPaC1u24b8uo1_500\",\n    \"question\": \"what misses while trying to bite food?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42059\",\n    \"key\": \"82019\",\n    \"description\": \"a turtle misses while trying to bite food.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbd7vubGi41r27fbxo1_250\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8688\",\n    \"key\": \"4851\",\n    \"description\": \"a woman wearing bright red lipstick is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9emuzqIhv1sk96t7o1_400\",\n    \"question\": \"what is following the mouse around its container?\",\n    \"answer\": \"snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5046\",\n    \"key\": \"42486\",\n    \"description\": \"a snake is following a mouse around its container.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowuvtVkdP1uvne53o1_400\",\n    \"question\": \"what is man on stage holding a guitar is lighting?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA206\",\n    \"key\": \"33280\",\n    \"description\": \"man on stage holding a guitar is lighting a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0wm1MHqZ1s6zpepo1_250\",\n    \"question\": \"how many people try to drop the grown man into a crib?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27060\",\n    \"key\": \"51836\",\n    \"description\": \"two people try to drop a grown man into a crib.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjrckDyiu1qe2thio1_500\",\n    \"question\": \"what is being put on the horse?\",\n    \"answer\": \"shoe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25672\",\n    \"key\": \"67512\",\n    \"description\": \"a horse shoe is being put on a horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqohhcgGYi1r1pstjo1_400\",\n    \"question\": \"where is the man running funny.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42506\",\n    \"key\": \"24326\",\n    \"description\": \"a man is running fast and very funny in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrhyfL5yO1s0mjn5o1_400\",\n    \"question\": \"what is the long haired man leaning back and holding?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12826\",\n    \"key\": \"58868\",\n    \"description\": \"a long haired man is leaning back and holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfktiCBxK1sbnbk1o1_400\",\n    \"question\": \"how many girls is wearing black are dancing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25260\",\n    \"key\": \"34032\",\n    \"description\": \"two girls wearing black are dancing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr1ueQn9z1t5lviko1_250\",\n    \"question\": \"what is the color of the beard?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23801\",\n    \"key\": \"27112\",\n    \"description\": \"a man with a brown beard is running around a theater stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7vcrlEAM1sr0xveo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30479\",\n    \"key\": \"97808\",\n    \"description\": \"the vest black man is looking into the distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_npj3v5k7YO1twa8dfo1_400\",\n    \"question\": \"how many women are fighting in the kitchen?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26392\",\n    \"key\": \"13996\",\n    \"description\": \"the two women are fighting in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbqkbsQwOJ1qfcoxlo1_500\",\n    \"question\": \"where is the guy sitting and dancing.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28631\",\n    \"key\": \"85720\",\n    \"description\": \"a guy is sitting in a chair and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhgd4tdMjV1ts3o9ao1_250\",\n    \"question\": \"what is the young man offered?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24608\",\n    \"key\": \"2088\",\n    \"description\": \"a young man is offered a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vr1xjmof1tdmffyo1_250\",\n    \"question\": \"where is the cat and playing with a person holding a pen.\",\n    \"answer\": \"? drawer\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47681\",\n    \"key\": \"27920\",\n    \"description\": \"a cat is in a drawer and playing with a person holding a pen.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vp9k3ABC1thrhd5o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35326\",\n    \"key\": \"47273\",\n    \"description\": \"a young woman with black hair closes her eyes and bends her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1zgdH9ZR1qccipro1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51930\",\n    \"key\": \"39812\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyizh0JAT1tsqdy0o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26297\",\n    \"key\": \"16014\",\n    \"description\": \"a person wearing an orange shirt and is doing exercises.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbv0ml7KVI1tbep7no1_500\",\n    \"question\": \"what takes off as the earth collapses beneath them?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30790\",\n    \"key\": \"95154\",\n    \"description\": \"a plane takes off as the earth collapses beneath them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdwcyxDx61u66jq3o1_250\",\n    \"question\": \"what does girl hold with right hand,\",\n    \"answer\": \"? cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8000\",\n    \"key\": \"3694\",\n    \"description\": \"girl holds a cigarette with right hand,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w0s850qY1ttzauho1_500\",\n    \"question\": \"what did the keeper kick in soccer?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38478\",\n    \"key\": \"100693\",\n    \"description\": \"the keeper kicked the ball in soccer.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfa7hPZ2h1sl2cdao1_500\",\n    \"question\": \"how many men are walking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29234\",\n    \"key\": \"94639\",\n    \"description\": \"two men are walking and one men hits another on his back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7jp1slnJ1u978z2o2_400\",\n    \"question\": \"what is the man with a beard playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28219\",\n    \"key\": \"7617\",\n    \"description\": \"a man with a beard is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfggtzJj401rw4ndto1_400\",\n    \"question\": \"what is the person in a room tossing about?\",\n    \"answer\": \"shoe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4233\",\n    \"key\": \"447\",\n    \"description\": \"a person in a room is tossing a shoe about.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4iicB9A01tijrpco1_500\",\n    \"question\": \"where is the man hugging a baby.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12980\",\n    \"key\": \"62711\",\n    \"description\": \"a man is hugging a baby in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk31otefby1tleghwo1_500\",\n    \"question\": \"where is the woman kissing a man.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32452\",\n    \"key\": \"92217\",\n    \"description\": \"a woman is kissing a man in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitkjlvfER1ra78amo1_100\",\n    \"question\": \"what is looking up when he 's a wolf?\",\n    \"answer\": \"wolf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10519\",\n    \"key\": \"13528\",\n    \"description\": \"teen wolf is looking up when he 's a wolf.\"\n  },\n  {\n    \"video_name\": \"tumblr_n6kmok3DdI1r1x3klo1_250\",\n    \"question\": \"what jumps up and down in the snow?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16187\",\n    \"key\": \"11769\",\n    \"description\": \"the horse jumps up and down in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne8yo1RByn1r7xloyo1_400\",\n    \"question\": \"how many people are sitting next to each other carving pumpkins?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15364\",\n    \"key\": \"101514\",\n    \"description\": \"two people are sitting next to each other carving pumpkins.\"\n  },\n  {\n    \"video_name\": \"tumblr_npeg2iKBbw1u9kj5io1_400\",\n    \"question\": \"how many girls are stretching their legs and moving forward?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44802\",\n    \"key\": \"80041\",\n    \"description\": \"two girls are stretching their legs and moving forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkizp0As2f1sjsdi9o1_250\",\n    \"question\": \"what is the man lifting,\",\n    \"answer\": \"? barbel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39225\",\n    \"key\": \"46711\",\n    \"description\": \"a man is lifting a barbel,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb37uXXWs1rk6emro1_250\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6281\",\n    \"key\": \"22358\",\n    \"description\": \"a woman wearing green clothing with long hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfaj6sdQYe1re06l8o1_400\",\n    \"question\": \"how many men in red are on a stage performing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14161\",\n    \"key\": \"50188\",\n    \"description\": \"two men in red are on a stage performing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5m5fBbyF1u11j39o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6252\",\n    \"key\": \"46582\",\n    \"description\": \"a white man with yellow hair is looking back.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfa926ftF1rhl4f0o1_400\",\n    \"question\": \"what does the person hold out their hand and jumps on it?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9301\",\n    \"key\": \"55339\",\n    \"description\": \"a person holds out their hand and a frog jumps on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wch8DPCW1rvxuq0o1_250\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25465\",\n    \"key\": \"11798\",\n    \"description\": \"a boy wears all black pulls his hat off of his head and turns.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1581WZAJ1surxvho1_250\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28749\",\n    \"key\": \"47099\",\n    \"description\": \"a girl leans forward and kisses a man against a red car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbqjb78h2e1t0jqwno1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7930\",\n    \"key\": \"15395\",\n    \"description\": \"a girl wearing a red dress is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmkrlulEL1tt4nxqo1_250\",\n    \"question\": \"how many women are crying and looking very sad?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1588\",\n    \"key\": \"26024\",\n    \"description\": \"two women are crying and looking very sad.\"\n  },\n  {\n    \"video_name\": \"tumblr_no3jpmtGki1uscox5o1_500\",\n    \"question\": \"where is the young boy sitting while still wearing clothes.\",\n    \"answer\": \"? bathtub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46878\",\n    \"key\": \"96789\",\n    \"description\": \"a young boy is sitting in full bathtub while still wearing clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqyrrDHMf1upvohzo1_400\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32938\",\n    \"key\": \"69802\",\n    \"description\": \"a man and woman are jumping in front of a white wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dkkuacx41sl89nwo1_400\",\n    \"question\": \"where is the man with short hair standing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4422\",\n    \"key\": \"96002\",\n    \"description\": \"a man with short hair is standing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfflefXvpx1u25ovvo1_400\",\n    \"question\": \"what is the red car driving down passing all the grass?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19242\",\n    \"key\": \"63605\",\n    \"description\": \"the red car is driving down the road passing all the grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nag9s4yd0c1txncr3o1_500\",\n    \"question\": \"how many boys are laughing and smiling and moving their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8602\",\n    \"key\": \"95076\",\n    \"description\": \"two boys are laughing and smiling and moving their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyam1X1MM1tmnntwo1_250\",\n    \"question\": \"what is the striped cat standing up and closing?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45852\",\n    \"key\": \"37541\",\n    \"description\": \"a striped cat is standing up and closing a white door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqwmhysJ721ua5q7mo1_500\",\n    \"question\": \"how many men in striped red and white shirts are pointing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13930\",\n    \"key\": \"32856\",\n    \"description\": \"two men in striped red and white shirts are pointing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjwd9zoNn1upsi9qo1_400\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16551\",\n    \"key\": \"66967\",\n    \"description\": \"man in black is talking and a boy in black is holding his hands together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqz47dYQB41ua5hw2o1_250\",\n    \"question\": \"how many people are in the room and one of them kisses another on the cheek?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40719\",\n    \"key\": \"13934\",\n    \"description\": \"two people are in a room and one of them kisses another on the cheek.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkryq13Fgy1tvfpn9o1_500\",\n    \"question\": \"what is the boy wearing a suit and bow tie is entering?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18885\",\n    \"key\": \"96976\",\n    \"description\": \"a boy wearing a suit and bow tie is entering a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sho7J99O1tggdauo1_400\",\n    \"question\": \"how many men talk to one another in a kitchen?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21294\",\n    \"key\": \"14816\",\n    \"description\": \"three men talk to one another in a kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazcze5vKT1thn2bho1_250\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44850\",\n    \"key\": \"25705\",\n    \"description\": \"a man in a red chair is biting his fingernails.\"\n  },\n  {\n    \"video_name\": \"tumblr_noswtqDMKC1tyncywo1_400\",\n    \"question\": \"what is the dog tipping into a bath of water?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA573\",\n    \"key\": \"29427\",\n    \"description\": \"a dog is tipping a cat into a bath of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9codlYOUt1tei1yuo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48090\",\n    \"key\": \"6135\",\n    \"description\": \"a woman with very long black hair and a pale blue top is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpugqJVgm1s6zpepo1_400\",\n    \"question\": \"what gets its paw stuck in a mouse trap and runs around wildly?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38699\",\n    \"key\": \"30538\",\n    \"description\": \"a cat gets its paw stuck in a mouse trap and runs around wildly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf58ex9daJ1tmmir0o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26180\",\n    \"key\": \"64515\",\n    \"description\": \"the guy with the white shirt is skateboarding in the tunnel.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zd1nDo0B1rwgxlqo1_500\",\n    \"question\": \"where is the horse trainer exercising her horse.\",\n    \"answer\": \"? building\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17958\",\n    \"key\": \"70645\",\n    \"description\": \"a horse trainer is exercising her horse in a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nip76fLqwA1rrqplco1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44904\",\n    \"key\": \"37808\",\n    \"description\": \"a man with a white shirt is raising his leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg3xgIuHx1tst1r3o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13438\",\n    \"key\": \"53647\",\n    \"description\": \"a black haired man is turning to look at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsmqbZ9tQ1t1nk7eo1_400\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9988\",\n    \"key\": \"60946\",\n    \"description\": \"a person wearing black glasses looks to the right.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobe08t7lw1r902nto1_400\",\n    \"question\": \"what is the color of the tops?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37545\",\n    \"key\": \"57733\",\n    \"description\": \"a group of boys in white tops and black pants are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmxxsTCYl1t5lviko1_250\",\n    \"question\": \"where is the guy looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17215\",\n    \"key\": \"92019\",\n    \"description\": \"a guy is looking at himself in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfu029ChXA1twvdtso1_250\",\n    \"question\": \"where are two sad men hugging.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48084\",\n    \"key\": \"51823\",\n    \"description\": \"two sad men are hugging in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb5omdZR4p1tsqmfco1_500\",\n    \"question\": \"what is the man wearing sunglasses is smiling and holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14098\",\n    \"key\": \"88637\",\n    \"description\": \"a man wearing sunglasses is smiling and holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6s7sAIcc1swpoago1_400\",\n    \"question\": \"how many people is it?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1537\",\n    \"key\": \"70302\",\n    \"description\": \"it is two people and one of them has a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj722iKfJY1u7hpo7o1_500\",\n    \"question\": \"what is the man,\",\n    \"answer\": \"using as a weapon , hits a zombie in the head ? bat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22319\",\n    \"key\": \"90202\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v70oXqey1rw0tkfo2_r1_400\",\n    \"question\": \"how many men are kissing the woman 's hand as she walks between the two of them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36956\",\n    \"key\": \"49374\",\n    \"description\": \"two men are kissing a woman 's hand as she walks between the two of them.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqo62WkUz1u38y0ao1_500\",\n    \"question\": \"how many men are laughing and pointing at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1311\",\n    \"key\": \"78143\",\n    \"description\": \"two men are laughing and pointing at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9dzvhw3W1st35iko1_400\",\n    \"question\": \"how many people are in the room with a window?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51940\",\n    \"key\": \"64381\",\n    \"description\": \"three people are in a room with a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmnxtXMH81rd87k4o1_250\",\n    \"question\": \"what is the cat licking?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45636\",\n    \"key\": \"13409\",\n    \"description\": \"a cat is licking a stuffed toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqyaxfZfv1ry1ioco2_500\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41230\",\n    \"key\": \"97316\",\n    \"description\": \"a man in a red vest with a white shirt underneath is smoking a cigar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnd6rNKRS1trhseeo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5237\",\n    \"key\": \"61293\",\n    \"description\": \"a guy in a black shirt is holding a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_neyimghSIJ1sqwf9so1_500\",\n    \"question\": \"where did the black man flat collapse and praying.\",\n    \"answer\": \"? road\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45287\",\n    \"key\": \"75844\",\n    \"description\": \"a black man flat collapsed and praying in road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbspjswqQu1sz068fo1_250\",\n    \"question\": \"what is running around and has eyebrows drawn on its face?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22193\",\n    \"key\": \"39915\",\n    \"description\": \"a dog is running around and has eyebrows drawn on its face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8dq27ECT1s6zpepo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31468\",\n    \"key\": \"19956\",\n    \"description\": \"a white man with black hair is driving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq06ihvo7U1up68h4o1_400\",\n    \"question\": \"what are going over the lot of hills?\",\n    \"answer\": \"trucks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10125\",\n    \"key\": \"28893\",\n    \"description\": \"the trucks are going over a lot of hills.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxtr2IkNY1trdw2po1_540\",\n    \"question\": \"what is the man touching and pointing?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30846\",\n    \"key\": \"4910\",\n    \"description\": \"a man is touching his glasses and pointing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb48dltPmv1tntd2io1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1922\",\n    \"key\": \"73902\",\n    \"description\": \"a man in a white top is waving his hands above his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_njk8dgIgDF1rrs7bmo1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27269\",\n    \"key\": \"70881\",\n    \"description\": \"a man with blue eyes is looking ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6m9ty5TR1qjwz8qo1_250\",\n    \"question\": \"how many guys are playing guitars under some lights?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48281\",\n    \"key\": \"27638\",\n    \"description\": \"two guys are playing guitars under some lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_negevo44tS1u25ovvo1_400\",\n    \"question\": \"what is driving through snow covered mountains?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16680\",\n    \"key\": \"63576\",\n    \"description\": \"a car is driving through snow covered mountains.\"\n  },\n  {\n    \"video_name\": \"tumblr_nec1h2hsBk1rlqu38o1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7244\",\n    \"key\": \"40075\",\n    \"description\": \"a witch with green skin and black clothes is flying on a broomstick.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92lmeEmjl1temiwgo1_r1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8399\",\n    \"key\": \"94918\",\n    \"description\": \"a boy in a black suit is giving a performance.\"\n  },\n  {\n    \"video_name\": \"tumblr_npmetmIe3v1use8l1o1_400\",\n    \"question\": \"what does dog push out from underneath man?\",\n    \"answer\": \"chair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11695\",\n    \"key\": \"36200\",\n    \"description\": \"dog pushes chair out from underneath man.\"\n  },\n  {\n    \"video_name\": \"tumblr_neyjq3tjnp1rpq8aco1_400\",\n    \"question\": \"what are fighting in the ring?\",\n    \"answer\": \"boxers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43932\",\n    \"key\": \"82800\",\n    \"description\": \"two boxers are fighting in the ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojc0uHi1c1tmavx8o1_400\",\n    \"question\": \"how many guys are walking slowly towards the vault?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37715\",\n    \"key\": \"42824\",\n    \"description\": \"two guys are walking slowly towards a vault.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb74ml20iT1r75i3co1_250\",\n    \"question\": \"how many costumed men are talking to each other and posing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28760\",\n    \"key\": \"45786\",\n    \"description\": \"two costumed men are talking to each other and posing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nca11jFXRI1qhb3vzo1_500\",\n    \"question\": \"what is man playing in front of a brick wall?\",\n    \"answer\": \"drum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18557\",\n    \"key\": \"57597\",\n    \"description\": \"man is playing a drum it in front of a brick wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xmlnuVnk1ru8amgo1_400\",\n    \"question\": \"where is the man singing.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48158\",\n    \"key\": \"72331\",\n    \"description\": \"a man is singing in his bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbrxaMA9X1speqgzo1_500\",\n    \"question\": \"what is the person putting into a gun?\",\n    \"answer\": \"flower\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20857\",\n    \"key\": \"68168\",\n    \"description\": \"a person is putting a flower into a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngl1a42vds1s2yagbo1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5365\",\n    \"key\": \"713\",\n    \"description\": \"a girl in black is dancing around outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad5toBHv81s2mb0qo1_500\",\n    \"question\": \"what is sleeping inside the box while another cat sees him?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46425\",\n    \"key\": \"62745\",\n    \"description\": \"a cat is sleeping inside a box while another cat sees him.\"\n  },\n  {\n    \"video_name\": \"tumblr_na41taiBVK1shahvmo1_500\",\n    \"question\": \"where is the man wearing a hat smiles.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35091\",\n    \"key\": \"53180\",\n    \"description\": \"a man wearing a hat smiles in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9f1hcMqsn1snp73jo1_500\",\n    \"question\": \"where are two men wearing sunglasses are fooling around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26894\",\n    \"key\": \"45318\",\n    \"description\": \"two men wearing sunglasses are fooling around in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq76iN8qX1u594gko1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39211\",\n    \"key\": \"48685\",\n    \"description\": \"a young man wearing a black t-shirt is pulling a funny face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd57hoEbnf1tnzvzmo1_400\",\n    \"question\": \"how many young men sit on the couch together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43007\",\n    \"key\": \"59606\",\n    \"description\": \"two young men sit on a couch together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nds6ogu9QS1tsn7r7o1_400\",\n    \"question\": \"how many people is wearing big hats are walking?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3320\",\n    \"key\": \"22067\",\n    \"description\": \"three people wearing big hats are walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9og9wBTgA1t22o2oo1_400\",\n    \"question\": \"how many people are performing on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11417\",\n    \"key\": \"79107\",\n    \"description\": \"two people are performing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpddaSVGc1un86uao1_400\",\n    \"question\": \"what is the swat team raiding?\",\n    \"answer\": \"bus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19300\",\n    \"key\": \"64584\",\n    \"description\": \"a swat team is raiding a passenger bus.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhse2X0fN1uoio1ko1_400\",\n    \"question\": \"how many men are alternating throwing garbage into a giant hole?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33448\",\n    \"key\": \"72796\",\n    \"description\": \"two men are alternating throwing garbage into a giant hole.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfarhcHDam1seb8aro1_400\",\n    \"question\": \"what is the color of the bucket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37537\",\n    \"key\": \"65054\",\n    \"description\": \"a litter of kittens cries in a red bucket.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndzw33j6bu1th8rjso1_400\",\n    \"question\": \"what is following the laser pointer and bites a boy in his crotch?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10522\",\n    \"key\": \"31035\",\n    \"description\": \"a dog is following a laser pointer and bites a boy in his crotch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8o1nWNXz1u5segmo1_400\",\n    \"question\": \"how many people is this with some kind of gadget smiling and each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27971\",\n    \"key\": \"76676\",\n    \"description\": \"this is two people with some kind of gadget smiling and each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlfii6q03r1s6zpepo1_400\",\n    \"question\": \"what runs and jumps into the wall several times?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48296\",\n    \"key\": \"40034\",\n    \"description\": \"a cat runs and jumps into the wall several times.\"\n  },\n  {\n    \"video_name\": \"tumblr_neygedcDOt1tkhxdko1_400\",\n    \"question\": \"what smells an iguana 's tail as the iguana eats?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19191\",\n    \"key\": \"46613\",\n    \"description\": \"a cat smells an iguana 's tail as the iguana eats.\"\n  },\n  {\n    \"video_name\": \"tumblr_np4u4zNuv21rjxtuwo1_400\",\n    \"question\": \"what is moving its wings and a hand is writing on paper with an ink tip pen?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36491\",\n    \"key\": \"35441\",\n    \"description\": \"one large butterfly is moving its wings and a hand is writing on paper with an ink tip pen.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy2vsSN3R1u3aadfo1_500\",\n    \"question\": \"how many guys are making some faces and one girl?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28298\",\n    \"key\": \"92227\",\n    \"description\": \"four guys are making some faces and one girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nftibqLA1f1tcwc21o1_400\",\n    \"question\": \"what is the man singing into a mic and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31081\",\n    \"key\": \"28432\",\n    \"description\": \"a man is singing into a mic and playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnekyGEgf1sa0lndo1_500\",\n    \"question\": \"what is crowded with some guys and one is armed?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13021\",\n    \"key\": \"71413\",\n    \"description\": \"a room is crowded with some guys and one is armed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nela0aVJkV1si2peso1_250\",\n    \"question\": \"what is curled up and floating in water?\",\n    \"answer\": \"hedgehog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8474\",\n    \"key\": \"53402\",\n    \"description\": \"a hedgehog is curled up and floating in water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk132aAxXT1tg9gzmo1_500\",\n    \"question\": \"what is she kissing?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5080\",\n    \"key\": \"90841\",\n    \"description\": \"she is kissing her phone as lights flash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhe8vgQHTM1rvab3po1_250\",\n    \"question\": \"what is the man shaking and knocking down the ornaments on the tree?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22985\",\n    \"key\": \"21670\",\n    \"description\": \"a man is shaking a christmas tree and knocking down the ornaments on the tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqmndvLQjb1uxf548o1_400\",\n    \"question\": \"what is the boy playing and doing tricks with drum sticks?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10410\",\n    \"key\": \"30829\",\n    \"description\": \"a boy is playing the drums and doing tricks with drum sticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxlj6MkoW1qfqoopo1_500\",\n    \"question\": \"what does the woman do?\",\n    \"answer\": \"challenge\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51274\",\n    \"key\": \"89565\",\n    \"description\": \"a woman does the ice bucket challenge.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee92e9wJt1srt4nmo1_250\",\n    \"question\": \"how many people are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37024\",\n    \"key\": \"81215\",\n    \"description\": \"two people are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklnw6kpNZ1qfgm2wo1_250\",\n    \"question\": \"how many people are hugging each other in a hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19826\",\n    \"key\": \"84350\",\n    \"description\": \"two people are hugging each other in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj1cj63rn1trxml2o1_500\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22354\",\n    \"key\": \"79343\",\n    \"description\": \"a black dog is covered by lot of snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nijrydrPVc1rtzdq7o1_400\",\n    \"question\": \"what is trying to grab some food?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7347\",\n    \"key\": \"94791\",\n    \"description\": \"a small white dog is trying to grab some food.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn6j1KjeH1rsm126o1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3083\",\n    \"key\": \"36191\",\n    \"description\": \"a thin boy pulls his blue t-shirt over his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbf41w5Hqw1spslz8o1_500\",\n    \"question\": \"how many people sat singing the song together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18322\",\n    \"key\": \"90538\",\n    \"description\": \"two people sat singing a song together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5gsre85l1rs13bbo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34192\",\n    \"key\": \"72620\",\n    \"description\": \"a man in a white shirt is pointing his finger to make a point.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfbih9DeO1slwrsuo1_400\",\n    \"question\": \"where is the dog drinking.\",\n    \"answer\": \"? toilet\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16937\",\n    \"key\": \"15753\",\n    \"description\": \"the dog is drinking in the toilet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfqoyfh3sz1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45294\",\n    \"key\": \"63597\",\n    \"description\": \"the gray car is driving down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczlfupRqq1tvuidio1_500\",\n    \"question\": \"what shakes his tail feather while moving backwards on a mossy log?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7493\",\n    \"key\": \"84031\",\n    \"description\": \"a little green bird shakes his tail feather while moving backwards on a mossy log.\"\n  },\n  {\n    \"video_name\": \"tumblr_n932icNWVf1s3att3o1_400\",\n    \"question\": \"what does the young man hit with a hammer and it catches fire?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43103\",\n    \"key\": \"2930\",\n    \"description\": \"a young man hits a small explosive box with a hammer and it catches fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v14rHt3R1riy1p3o1_400\",\n    \"question\": \"what does the man with tattoos play?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA323\",\n    \"key\": \"39342\",\n    \"description\": \"a man with tattoos plays a white guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtce8TxcX1u7genpo1_500\",\n    \"question\": \"what is the color of the makeup?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13897\",\n    \"key\": \"5913\",\n    \"description\": \"a woman with short black hair and black eye makeup smokes a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hl6ky3FK1qk377so1_400\",\n    \"question\": \"what is the color of the motorcycle?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7681\",\n    \"key\": \"84923\",\n    \"description\": \"a person on a yellow motorcycle is riding in the wrong lane.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngw6bwDfFA1tmo8ldo1_250\",\n    \"question\": \"how many women are talking together into the microphone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28493\",\n    \"key\": \"41373\",\n    \"description\": \"two women are talking together into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhebn0UepF1sdrnczo1_250\",\n    \"question\": \"how many men smile and embrace in the hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6358\",\n    \"key\": \"51591\",\n    \"description\": \"two men smile and embrace in a hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj2ah47Cgl1u80nl9o1_400\",\n    \"question\": \"what is the man blowing up?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22414\",\n    \"key\": \"26814\",\n    \"description\": \"a man is blowing up a robotic machine.\"\n  },\n  {\n    \"video_name\": \"tumblr_np9wd6T7fT1tkxy83o1_250\",\n    \"question\": \"what is the woman wearing and stirring a black pot?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43312\",\n    \"key\": \"3901\",\n    \"description\": \"a woman is wearing a tie and stirring a black pot.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs2zopqhR1u0oghro1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38455\",\n    \"key\": \"40817\",\n    \"description\": \"some boys with brown hair are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_njodji5ahy1rj51zgo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4366\",\n    \"key\": \"8331\",\n    \"description\": \"a guy with a black shirt is talking into a microphone while smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebhvpBUgh1rgxfumo1_250\",\n    \"question\": \"what is the color of the suits?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30277\",\n    \"key\": \"1163\",\n    \"description\": \"four men in white suits are singing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95fffMAzD1ssybv1o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49719\",\n    \"key\": \"32383\",\n    \"description\": \"a very cute boy with blue shirt is thinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbv0ml7KVI1tbep7no1_500\",\n    \"question\": \"what is flying over the road that is collapsing?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51892\",\n    \"key\": \"95154\",\n    \"description\": \"an airplane is flying over a road that is collapsing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3wo9RJe91tkhxdko1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50641\",\n    \"key\": \"68397\",\n    \"description\": \"a green cat with a crazy haircut style is lounging on a table and looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqn3tqmbjc1souwjko1_400\",\n    \"question\": \"what is the man wearing a blue jacket is putting into his mouth?\",\n    \"answer\": \"candy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49474\",\n    \"key\": \"71821\",\n    \"description\": \"a man wearing a blue jacket is putting candy into his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckg4oA1Tr1t5a4c7o1_400\",\n    \"question\": \"where are the group of people playing.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8974\",\n    \"key\": \"64343\",\n    \"description\": \"a group of people are playing in the pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvj8l4kcT1uq7zwjo1_400\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"llamas\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14261\",\n    \"key\": \"63226\",\n    \"description\": \"the man is holding two stuffed llamas.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc28ihKPGx1slwrsuo1_400\",\n    \"question\": \"what swats at the candle and blows it out,\",\n    \"answer\": \"then watches the smoke rise ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8493\",\n    \"key\": \"34010\",\n    \"description\": \"a cat swats at a candle and blows it out,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq6ze0bhp1sja7kao1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38047\",\n    \"key\": \"12929\",\n    \"description\": \"a girl with black hair and carrying a cuddly toy is spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_naeyc6yQWy1tahfdeo1_250\",\n    \"question\": \"what is licking the face of a cheetah?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20176\",\n    \"key\": \"56593\",\n    \"description\": \"a dog is licking the face of a cheetah.\"\n  },\n  {\n    \"video_name\": \"tumblr_naqyh4k9gq1s99ctgo1_500\",\n    \"question\": \"how many men are spitting food into each others'\",\n    \"answer\": \"mouths from across a room ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA765\",\n    \"key\": \"98962\",\n    \"description\": \"two men are spitting food into each others'\"\n  },\n  {\n    \"video_name\": \"tumblr_nki5ufFD2g1rl58kdo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52031\",\n    \"key\": \"28904\",\n    \"description\": \"a person with black hair is touching and combing it with the hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni50v7R0s31u1dgb1o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25067\",\n    \"key\": \"772\",\n    \"description\": \"a boy in a red hat is doing tricks on a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz0atFAdD1qac99eo1_400\",\n    \"question\": \"what drives through the mass of trees?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52583\",\n    \"key\": \"35538\",\n    \"description\": \"a car drives through a mass of trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoj4fayWP1slj978o1_400\",\n    \"question\": \"what does the mouse exit,\",\n    \"answer\": \"and it is pushed by a cat ? box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52970\",\n    \"key\": \"38644\",\n    \"description\": \"a mouse exits a box,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9j6u0SS061ri0wzfo1_400\",\n    \"question\": \"what is kicked away by another cat that is lying on the floor?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4236\",\n    \"key\": \"39368\",\n    \"description\": \"a black cat is kicked away by another cat that is lying on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gglqx17d1twg5ujo1_400\",\n    \"question\": \"what is the girl with glasses holding?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50138\",\n    \"key\": \"31689\",\n    \"description\": \"the girl with glasses is holding her cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyhhgTo8b1tw2zo1o1_400\",\n    \"question\": \"how many males row the boat on water?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28766\",\n    \"key\": \"50150\",\n    \"description\": \"three males row a boat on water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94fo5XLEK1s71fqlo1_250\",\n    \"question\": \"how many young men miss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38110\",\n    \"key\": \"49701\",\n    \"description\": \"two young men miss and another young man looks at them confused.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4ssypv3Y1uaujqao1_400\",\n    \"question\": \"what is opening his mouth unusually wide?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48353\",\n    \"key\": \"35099\",\n    \"description\": \"a frog is opening his mouth unusually wide.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncnclh0Da61sqeumlo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4811\",\n    \"key\": \"20525\",\n    \"description\": \"a woman who is dressed in all black lies down on a black machine while it is snowing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9x10s8jtl1tg7q8lo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37930\",\n    \"key\": \"48185\",\n    \"description\": \"a man in a white shirt is looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhywm4Iq3L1rbdewvo1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5690\",\n    \"key\": \"46530\",\n    \"description\": \"a group of men wearing black clothing are smiling and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmov237Wm1sy82cio1_500\",\n    \"question\": \"what is the woman blowing and wearing a black fur vest?\",\n    \"answer\": \"bubble\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12579\",\n    \"key\": \"87719\",\n    \"description\": \"a woman is blowing a bubble and wearing a black fur vest.\"\n  },\n  {\n    \"video_name\": \"tumblr_npblti8bU91use8l1o1_400\",\n    \"question\": \"what does the polar bear do not notice,\",\n    \"answer\": \"but the bear cub does ? bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38005\",\n    \"key\": \"82811\",\n    \"description\": \"a polar bear does not notice a black bird,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9s983h2cd1se4p6ho1_400\",\n    \"question\": \"how many men in suits are singing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19115\",\n    \"key\": \"31841\",\n    \"description\": \"two men in suits are singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndn0jvjEdb1u1anm2o1_400\",\n    \"question\": \"where is the model posing.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16516\",\n    \"key\": \"56874\",\n    \"description\": \"a model is posing in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmps1wPRN61useig5o1_250\",\n    \"question\": \"what is the color of the person?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27178\",\n    \"key\": \"3045\",\n    \"description\": \"a blond haired person in white is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4cexoiPR1ste7mro1_r1_500\",\n    \"question\": \"how many man lifts the knife to his neck?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18669\",\n    \"key\": \"67029\",\n    \"description\": \"the faces of two men are superimposed and one man lifts a knife to his neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhbeuZhcR1u8dfc7o1_400\",\n    \"question\": \"how many people is it fighting and falling on the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18893\",\n    \"key\": \"96835\",\n    \"description\": \"it is two people fighting and falling on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne236gfB5I1rrxy7do1_500\",\n    \"question\": \"where does the woman stop a girl and she falls.\",\n    \"answer\": \"? skateboard\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36214\",\n    \"key\": \"95119\",\n    \"description\": \"a woman stops a girl in her skateboard and she falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerwf18fKw1tav4r9o1_400\",\n    \"question\": \"what is the guy walking in the street and holding?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18661\",\n    \"key\": \"84123\",\n    \"description\": \"a guy is walking in the street and holding a bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrmo9arP31s2mg9to1_500\",\n    \"question\": \"what is the woman wearing a tank top with dark orange hair,\",\n    \"answer\": \"lifts up to her mouth , ? microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34919\",\n    \"key\": \"88169\",\n    \"description\": \"a woman wearing a tank top with dark orange hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9fj4glx61swtmgzo1_500\",\n    \"question\": \"what is the color of the rabbit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33324\",\n    \"key\": \"46702\",\n    \"description\": \"a black rabbit is coming out of a cardboard box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhfopwsnzc1u75on0o1_400\",\n    \"question\": \"what is the color of the couch?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13993\",\n    \"key\": \"75796\",\n    \"description\": \"a bald man on a green couch is watching a woman wearing black lingerie,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndujix89UO1u1lbl0o1_250\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5297\",\n    \"key\": \"9663\",\n    \"description\": \"a woman wearing bright red lipstick is singing into a red microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvt4xtqsW1u30he7o1_400\",\n    \"question\": \"how many guys are talking back and forth to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32028\",\n    \"key\": \"89355\",\n    \"description\": \"two guys are talking back and forth to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nisss1aNSV1ti30pto1_250\",\n    \"question\": \"what is the man wearing and making hand gestures?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41887\",\n    \"key\": \"43842\",\n    \"description\": \"a man is wearing headphones and making hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nku9l3LvoR1rhjt2zo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16888\",\n    \"key\": \"30739\",\n    \"description\": \"a young black woman is holding a microphone and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6ogaoDLQ1tv8k7po1_400\",\n    \"question\": \"how many people are laying together talking?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47960\",\n    \"key\": \"70363\",\n    \"description\": \"the three people are laying together talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb40f1NWsK1tjrca2o1_400\",\n    \"question\": \"what is chewing on the soft object?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24564\",\n    \"key\": \"65695\",\n    \"description\": \"a fluffy dog is chewing on a soft object.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4qq4ZMRs1r1gt0co1_400\",\n    \"question\": \"where are the band of men performing.\",\n    \"answer\": \"? building\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5248\",\n    \"key\": \"59520\",\n    \"description\": \"a band of men are performing in an old building.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtpdn8oHz1s0w3iqo1_400\",\n    \"question\": \"what is the strong man driving?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6193\",\n    \"key\": \"57885\",\n    \"description\": \"a strong man is driving a black car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndhlolhgCM1tmjjtfo1_250\",\n    \"question\": \"what is the man?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41883\",\n    \"key\": \"12908\",\n    \"description\": \"a man is a hat is blinking and moving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhexdhCBD61u5v821o1_400\",\n    \"question\": \"what is the sportsman,\",\n    \"answer\": \"wearing , talks and bends his head forward ? cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28998\",\n    \"key\": \"79190\",\n    \"description\": \"a sportsman,\"\n  },\n  {\n    \"video_name\": \"tumblr_nr6iucpXXm1sht3fmo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39952\",\n    \"key\": \"96033\",\n    \"description\": \"a black man is grinning and rubbed his hands together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5q7jKFWT1rf50qno1_500\",\n    \"question\": \"how many men are looking at something and holding their hands forward?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32420\",\n    \"key\": \"98018\",\n    \"description\": \"three men are looking at something and holding their hands forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni8pby75eq1sv8skeo1_250\",\n    \"question\": \"where is the man wearing a tie is standing and talking.\",\n    \"answer\": \"? doorway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41915\",\n    \"key\": \"2112\",\n    \"description\": \"a man wearing a tie is standing in a doorway and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazajtnJAC1tn4t8jo1_400\",\n    \"question\": \"what is the man driving and meteor is in the sky?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44351\",\n    \"key\": \"62167\",\n    \"description\": \"a man is driving his car and meteor is in the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbor73nQVG1tlf703o1_400\",\n    \"question\": \"what is the man firing while performing a somersault?\",\n    \"answer\": \"bow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15611\",\n    \"key\": \"89451\",\n    \"description\": \"a man is firing a bow while performing a somersault.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncaqcxiGHD1thc9hdo1_400\",\n    \"question\": \"what is the person playing and moving their body in front of a crowd?\",\n    \"answer\": \"instrument\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46346\",\n    \"key\": \"42852\",\n    \"description\": \"a person is playing an instrument and moving their body in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni11vxPmR71stuueeo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44514\",\n    \"key\": \"63638\",\n    \"description\": \"a woman with white blonde hair is outside smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacwz6uN1g1tjd83eo1_400\",\n    \"question\": \"what is the young man holding and then he winks and points?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29784\",\n    \"key\": \"18795\",\n    \"description\": \"a young man is holding a microphone and then he winks and points.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7badeW1R1uaavsyo1_500\",\n    \"question\": \"what is the man wearing sunglasses smiles and drinks?\",\n    \"answer\": \"beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19650\",\n    \"key\": \"73284\",\n    \"description\": \"a man wearing sunglasses smiles and drinks a beer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8p14Jp6n1slfugro1_500\",\n    \"question\": \"how many men strut with microphones while in a spotlight?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19170\",\n    \"key\": \"86508\",\n    \"description\": \"four men strut with microphones while in a spotlight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8v50LnUt1tk2ngvo1_500\",\n    \"question\": \"what attacks another cats tail,\",\n    \"answer\": \"which causes that cat to attack another cat ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17859\",\n    \"key\": \"78064\",\n    \"description\": \"a cat attacks another cats tail,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkyzg1KPS1tinozao1_400\",\n    \"question\": \"how many sumo wrestlers are wrestling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46656\",\n    \"key\": \"67090\",\n    \"description\": \"two sumo wrestlers are wrestling and one gets pushed out of the ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nom37wmmGg1s4eg66o1_500\",\n    \"question\": \"what is the woman showing to the viewer?\",\n    \"answer\": \"giraffe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48242\",\n    \"key\": \"57612\",\n    \"description\": \"a woman is showing a little plush giraffe to the viewer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nau7jbveIM1r2x87io1_400\",\n    \"question\": \"what is the person smiling and kissing?\",\n    \"answer\": \"cam\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23455\",\n    \"key\": \"33806\",\n    \"description\": \"a person is smiling and kissing the cam.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfalpqnjBU1u43iqlo1_250\",\n    \"question\": \"how many men are smiling while poking their cheeks?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14317\",\n    \"key\": \"10355\",\n    \"description\": \"two men are smiling while poking their cheeks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nplu37Tk5i1uvqau3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36751\",\n    \"key\": \"64984\",\n    \"description\": \"man in white shirt and rotating cap is moving on the building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacr7fJNBK1tdqljso1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37304\",\n    \"key\": \"68737\",\n    \"description\": \"a guy wearing a white shirt is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_np97noimRj1swewioo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA859\",\n    \"key\": \"43615\",\n    \"description\": \"a woman with long brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_npgic1jBgU1utmlppo1_500\",\n    \"question\": \"what is the young lady with a green dress on washing?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5239\",\n    \"key\": \"97357\",\n    \"description\": \"a young lady with a green dress on is washing a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckn34k0481tp4h5xo1_400\",\n    \"question\": \"how many men were talking and laughing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8350\",\n    \"key\": \"59461\",\n    \"description\": \"the two men were talking and laughing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnk8xylP9g1u5qahro1_1280\",\n    \"question\": \"what is crawling around while other kittens sleep?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22593\",\n    \"key\": \"54164\",\n    \"description\": \"a kitten is crawling around while other kittens sleep.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc568l5Ijc1sjy24po1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17909\",\n    \"key\": \"84951\",\n    \"description\": \"a young man wearing a black t-shirt is smiling at a toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkguu7jdxL1u7a4duo1_250\",\n    \"question\": \"how many people start touching and kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13538\",\n    \"key\": \"47966\",\n    \"description\": \"two people start touching and kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazsf0WpWr1tgqqmdo1_400\",\n    \"question\": \"where are two woman laying and snuggling.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39201\",\n    \"key\": \"67094\",\n    \"description\": \"two woman are laying in a bed together and snuggling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwyn9wAq21tfvj5ao1_500\",\n    \"question\": \"how many men dressed in black are walking away from their car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26627\",\n    \"key\": \"24954\",\n    \"description\": \"two men dressed in black are walking away from their car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n29eb50PTx1rxpytqo1_250\",\n    \"question\": \"what does the cat in a blue blanket hold to it?\",\n    \"answer\": \"close\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44135\",\n    \"key\": \"25431\",\n    \"description\": \"a cat in a blue blanket holds a teddy bear close to it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbzobuxqUi1s3cp8no1_250\",\n    \"question\": \"how many men are posing for the cell phone picture?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4880\",\n    \"key\": \"9853\",\n    \"description\": \"two men are posing for a cell phone picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqshzrxEcJ1tcip37o1_250\",\n    \"question\": \"how many women is this image of hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15928\",\n    \"key\": \"15556\",\n    \"description\": \"this image is of two women hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobg1ms55S1tfz725o1_400\",\n    \"question\": \"what is the group of killer whales skimming?\",\n    \"answer\": \"surface\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41518\",\n    \"key\": \"80252\",\n    \"description\": \"a group of killer whales is skimming the waters surface.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rl82iCoh1rc1nlfo1_400\",\n    \"question\": \"where are man and woman kissing each-other.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46364\",\n    \"key\": \"32291\",\n    \"description\": \"man and woman are kissing each-other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmdmzflNl1qdpugqo1_400\",\n    \"question\": \"what is the man talking and walking up?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29138\",\n    \"key\": \"82072\",\n    \"description\": \"a man is talking and walking up the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqs99p3Pvz1ts9vfxo1_250\",\n    \"question\": \"how many people are sitting beside each other drinking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38375\",\n    \"key\": \"45171\",\n    \"description\": \"two people are sitting beside each other drinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_necxhxfHhH1tl414ro1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25788\",\n    \"key\": \"15863\",\n    \"description\": \"a person in a white jacket has a funny mask on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyszt5Ni41td493xo1_500\",\n    \"question\": \"how many small babies are pulling toys from a shelf?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48810\",\n    \"key\": \"70615\",\n    \"description\": \"two small babies are pulling toys from a shelf.\"\n  },\n  {\n    \"video_name\": \"tumblr_natbqgxNBR1tswxu9o1_500\",\n    \"question\": \"what is jumping in a see?\",\n    \"answer\": \"dolphin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29893\",\n    \"key\": \"100179\",\n    \"description\": \"a dolphin is jumping in a see.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkvaxBCbI1t6t8bgo1_500\",\n    \"question\": \"how many men in red shirts and jeans are walking?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5549\",\n    \"key\": \"95583\",\n    \"description\": \"three men in red shirts and jeans are walking and one man grabs the shoulder of another as he walks by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbad3kmtlO1qbih2ho1_500\",\n    \"question\": \"what do three men hold while standing in a semi circle?\",\n    \"answer\": \"microphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27362\",\n    \"key\": \"24377\",\n    \"description\": \"three men hold microphones while standing in a semi circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uqen1tDV1sfmhxao1_400\",\n    \"question\": \"what is eating food out of a dog dish?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15520\",\n    \"key\": \"63448\",\n    \"description\": \"a dog is eating food out of a dog dish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzm28JXgg1r7owcpo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2327\",\n    \"key\": \"26030\",\n    \"description\": \"a man with blonde hair wearing an orange suit is playing an american flag guitar while standing in front of a huge american flag.\"\n  },\n  {\n    \"video_name\": \"tumblr_n907c1PcRr1sncaa3o1_400\",\n    \"question\": \"what did the race car drive off and back on?\",\n    \"answer\": \"track\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51800\",\n    \"key\": \"78070\",\n    \"description\": \"a race car drove off the track and back on.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7f3olx4g1s373hwo1_400\",\n    \"question\": \"where is the man with wired hair shocking.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31797\",\n    \"key\": \"48174\",\n    \"description\": \"a man with wired hair is shocking in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn7gxUg5r1unhekuo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50283\",\n    \"key\": \"59805\",\n    \"description\": \"a guy with glasses and short brown hair wears a light blue shirt and records himself in the mirror moving his hand on his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93yyhaxpU1sofpyco1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7157\",\n    \"key\": \"19059\",\n    \"description\": \"a person in a white jacket is shaking his head with his mouth open.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5uo6rEEc1rv06c2o1_250\",\n    \"question\": \"how many girls are drinking the glass of wine?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29826\",\n    \"key\": \"32590\",\n    \"description\": \"two girls are drinking a glass of wine.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhr07tgEBl1tq4njio1_250\",\n    \"question\": \"what sways from side to side,\",\n    \"answer\": \"losing balance as it tries to walk forward ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10816\",\n    \"key\": \"12670\",\n    \"description\": \"a cat sways from side to side,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyf3dGT7t1sqkp0fo1_250\",\n    \"question\": \"what is sitting on the floor opening and closing its wings?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40524\",\n    \"key\": \"60028\",\n    \"description\": \"a butterfly is sitting on the floor opening and closing its wings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9lnkbAXJ1qj1oazo1_400\",\n    \"question\": \"what is the man lifting on the stage?\",\n    \"answer\": \"t-shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30932\",\n    \"key\": \"53097\",\n    \"description\": \"a man is lifting his t-shirt on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6zc2rIbF1uo70tmo1_500\",\n    \"question\": \"where are the girl and boy watching themselves.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34023\",\n    \"key\": \"95809\",\n    \"description\": \"a girl and boy are watching themselves in a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1kbzvsw71rwzy1eo1_400\",\n    \"question\": \"what is getting its feet caught in tires?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22066\",\n    \"key\": \"71853\",\n    \"description\": \"an elephant is getting its feet caught in tires.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefaiatKqJ1siijy4o1_250\",\n    \"question\": \"what is the lady getting on?\",\n    \"answer\": \"groove\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19750\",\n    \"key\": \"19993\",\n    \"description\": \"a lady is getting her groove on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfv0q6CIhM1u32r8qo1_400\",\n    \"question\": \"what does the person jump off into a lake?\",\n    \"answer\": \"cliff\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43370\",\n    \"key\": \"29813\",\n    \"description\": \"a person jumps off a cliff into a lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xyivJU3s1tgy948o1_250\",\n    \"question\": \"what is the color of the dancing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31155\",\n    \"key\": \"11573\",\n    \"description\": \"this is a girl wearing a black sweatshirt dancing from the waist up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nollsdsfZs1sm6bgxo1_400\",\n    \"question\": \"what is the small dog licking?\",\n    \"answer\": \"wall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25033\",\n    \"key\": \"31771\",\n    \"description\": \"a small dog is licking a clear glass wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvhq250Md1rt1dljo1_400\",\n    \"question\": \"what is the man in uniform tamping on the ground and it explodes in his face?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51670\",\n    \"key\": \"28503\",\n    \"description\": \"a man in uniform is tamping his gun on the ground and it explodes in his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam9o5Pavd1tstm7eo1_400\",\n    \"question\": \"what is the man practicing on mounds of dirt?\",\n    \"answer\": \"tricks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6836\",\n    \"key\": \"66036\",\n    \"description\": \"a man is practicing bike tricks on mounds of dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk039jetLe1r0fn19o1_500\",\n    \"question\": \"how many men one is talking on the phone while the other is crying?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42888\",\n    \"key\": \"91871\",\n    \"description\": \"two men one is talking on the phone while the other is crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7u0qCxig1slj978o1_400\",\n    \"question\": \"what flies off of the dirt ramp,\",\n    \"answer\": \"spins , and lands on another ramp ? car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45793\",\n    \"key\": \"101240\",\n    \"description\": \"a car flies off of a dirt ramp,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyf3dGT7t1sqkp0fo1_250\",\n    \"question\": \"what is spreading and flapping its wings?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29265\",\n    \"key\": \"60028\",\n    \"description\": \"a butterfly is spreading and flapping its wings.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsfslT5aX1u2cx64o1_250\",\n    \"question\": \"what is the person with the red hair wearing and staring off in the snow?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22332\",\n    \"key\": \"151\",\n    \"description\": \"the person with the red hair is wearing a purple coat and staring off in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n950jbgmRB1ty56o1o1_400\",\n    \"question\": \"what is the man tying on the bus step?\",\n    \"answer\": \"shoe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21737\",\n    \"key\": \"21875\",\n    \"description\": \"a man is tying his shoe on the bus step.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwve3IvuZ1r8562fo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23613\",\n    \"key\": \"20063\",\n    \"description\": \"a man with short black hair is thinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sg4dnVGy1teocxjo1_400\",\n    \"question\": \"how many girls go into the room and slowly close the door?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22054\",\n    \"key\": \"66445\",\n    \"description\": \"two girls go into a room and slowly close the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93blvtL4p1sncaa3o1_400\",\n    \"question\": \"what are racing round the track when one skids off the track and the rider falls off his bike?\",\n    \"answer\": \"motorcycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23325\",\n    \"key\": \"65287\",\n    \"description\": \"motorbikes are racing round a track when one skids off the track and the rider falls off his bike.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnxyq2TP0K1tzvjdwo1_250\",\n    \"question\": \"what is the young man holding and dancing on stage?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26543\",\n    \"key\": \"13050\",\n    \"description\": \"a young man is holding a microphone and dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngiqj7Yelt1qfqktro1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43985\",\n    \"key\": \"60770\",\n    \"description\": \"the white car is racing down the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8usq5bxK1t6ckbko1_400\",\n    \"question\": \"what are two boys sitting next to each other and one of them is wearing?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9668\",\n    \"key\": \"57386\",\n    \"description\": \"two boys are sitting next to each other and one of them is wearing a mask.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxbsiw5cz1u0ylq0o1_400\",\n    \"question\": \"how many people stood kissing each other outdoors?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12975\",\n    \"key\": \"91667\",\n    \"description\": \"two people stood kissing each other outdoors.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcfegJJME1rol18zo1_400\",\n    \"question\": \"what is the color of the flame?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37126\",\n    \"key\": \"38024\",\n    \"description\": \"two people stand in front of a large blue flame.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwfzx0hL91tgkdkbo1_250\",\n    \"question\": \"what is the dog wearing a red cape is riding?\",\n    \"answer\": \"scooter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34800\",\n    \"key\": \"5671\",\n    \"description\": \"a dog wearing a red cape is riding a scooter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczubwv8w11t0k6fmo1_250\",\n    \"question\": \"how many men dance on a stage with red lighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19004\",\n    \"key\": \"6245\",\n    \"description\": \"two men dance on a stage with red lighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ott1a35b1tgkdkbo1_400\",\n    \"question\": \"what an air ring to knock down rocks?\",\n    \"answer\": \"diver\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49714\",\n    \"key\": \"45417\",\n    \"description\": \"a deep sea diver blows an air ring to knock down rocks.\"\n  },\n  {\n    \"video_name\": \"tumblr_naz252SYcX1rhmx5uo1_r1_400\",\n    \"question\": \"how many guys sit on the red couch and the one wearing a hat kicks his legs in the air while laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37321\",\n    \"key\": \"34056\",\n    \"description\": \"two guys sit on a red couch and the one wearing a hat kicks his legs in the air while laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkqmlsRPP1uoyfr8o1_400\",\n    \"question\": \"what is the woman opening and getting in?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11408\",\n    \"key\": \"64657\",\n    \"description\": \"a woman is opening a car door and getting in.\"\n  },\n  {\n    \"video_name\": \"tumblr_np1qhvy9Kv1sg8vg6o1_500\",\n    \"question\": \"what is getting out of the cage?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33868\",\n    \"key\": \"66732\",\n    \"description\": \"a rabbit is getting out of a cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9066hvJ6R1tx8mn0o1_400\",\n    \"question\": \"what hit the curve and messed up its tire?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27359\",\n    \"key\": \"76810\",\n    \"description\": \"a race car hit a curve and messed up its tire.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncclh5CTka1th986vo1_400\",\n    \"question\": \"what is driving on the road at night?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14483\",\n    \"key\": \"3350\",\n    \"description\": \"a car is driving on a road at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmep7aP37Y1ty7mjvo1_400\",\n    \"question\": \"what is the man wearing?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30651\",\n    \"key\": \"96832\",\n    \"description\": \"a man is wearing his sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfqzsmdHTC1s70xu2o1_500\",\n    \"question\": \"what is slipping on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21379\",\n    \"key\": \"75116\",\n    \"description\": \"a blue colored car is slipping on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzvsya1WR1tfjrdno1_400\",\n    \"question\": \"how many girls are chewing gum and blowing bubbles?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43603\",\n    \"key\": \"31404\",\n    \"description\": \"two girls are chewing gum and blowing bubbles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhknb9MuDd1qldwwwo1_500\",\n    \"question\": \"what is the man wearing a hat is playing?\",\n    \"answer\": \"violin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16074\",\n    \"key\": \"22557\",\n    \"description\": \"the man wearing a hat is playing the violin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgn5np1dx1snfmdco1_500\",\n    \"question\": \"how many men reacts at the top of a roller coaster?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3108\",\n    \"key\": \"88151\",\n    \"description\": \"two men reacts at the top of a roller coaster.\"\n  },\n  {\n    \"video_name\": \"tumblr_nayqmaurYw1sa71wco1_400\",\n    \"question\": \"what is the color of the team?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14532\",\n    \"key\": \"90284\",\n    \"description\": \"the blue soccer team scores a goal and does celebrations together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbwoiwcXo1reut2bo1_500\",\n    \"question\": \"how many people are hugging each other in the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14884\",\n    \"key\": \"91828\",\n    \"description\": \"two people are hugging each other in the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs731Hn2X1slj978o1_250\",\n    \"question\": \"what is the woman holding a microphone walks and drops?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24741\",\n    \"key\": \"16949\",\n    \"description\": \"a woman holding a microphone walks and drops her fur coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6ycl8B3R1snixmzo1_400\",\n    \"question\": \"how many girls in white dresses are walking near some trees?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30120\",\n    \"key\": \"68918\",\n    \"description\": \"three girls in white dresses are walking near some trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazdbcRYkw1tfffkuo1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10088\",\n    \"key\": \"53846\",\n    \"description\": \"a white girl with glasses are talking in swimming pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvlbqeY3K1rm1b9ko1_400\",\n    \"question\": \"what is the color of the air?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3616\",\n    \"key\": \"3713\",\n    \"description\": \"a man wearing black blows air into a party.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g121qryo1tioszuo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7280\",\n    \"key\": \"48025\",\n    \"description\": \"the woman in the white shirt is waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3qmmiPUy1u19ilbo1_250\",\n    \"question\": \"what is someone with a tattooed wrist holding up?\",\n    \"answer\": \"dumbbell\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38605\",\n    \"key\": \"70114\",\n    \"description\": \"someone with a tattooed wrist is holding up a dumbbell.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9opiE4eV1soso59o1_400\",\n    \"question\": \"how many men are hugging amid the trees?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36452\",\n    \"key\": \"67005\",\n    \"description\": \"two men are hugging amid the trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8zhukL0U1u0h3teo1_500\",\n    \"question\": \"what is the young man adjusting while running?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26191\",\n    \"key\": \"20065\",\n    \"description\": \"a young man is adjusting his tie while running.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbu4exjls81ty5wkdo1_500\",\n    \"question\": \"how many girls come across several boys sitting on a sofa?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6788\",\n    \"key\": \"61237\",\n    \"description\": \"two girls come across several boys sitting on a sofa.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabkgnRlPI1sfb4loo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26123\",\n    \"key\": \"89016\",\n    \"description\": \"a boy wearing a gray shirt smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfflcuX90m1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50765\",\n    \"key\": \"63666\",\n    \"description\": \"a blue car is edging down an incline towards a body of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrgn3y2N31tx8mn0o1_400\",\n    \"question\": \"what is the race car sliding off?\",\n    \"answer\": \"track\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32823\",\n    \"key\": \"80363\",\n    \"description\": \"a race car is sliding off the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xcp5NcIC1twhn6do1_250\",\n    \"question\": \"what is practicing in the studio?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45933\",\n    \"key\": \"2334\",\n    \"description\": \"a pop star is practicing in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_m17cbwGbTH1qcay1ao1_500\",\n    \"question\": \"what is speeding through the station?\",\n    \"answer\": \"train\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44263\",\n    \"key\": \"34432\",\n    \"description\": \"an underground train is speeding through a station.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrf9tKUfZ1rujq2co1_500\",\n    \"question\": \"how many men dance together,\",\n    \"answer\": \"with their arms out , while laughing ? three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26121\",\n    \"key\": \"101326\",\n    \"description\": \"three men dance together,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2mzb98AK1tkpzw0o1_400\",\n    \"question\": \"what jumps from the water to paint a picture?\",\n    \"answer\": \"dolphin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38902\",\n    \"key\": \"21285\",\n    \"description\": \"a dolphin jumps from the water to paint a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqg3ayNE81s2w9y9o1_500\",\n    \"question\": \"how many women are happy and smiling broadly?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17996\",\n    \"key\": \"74773\",\n    \"description\": \"four women are happy and smiling broadly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhv7jy5DBj1sjv6nlo1_250\",\n    \"question\": \"what is the man smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47594\",\n    \"key\": \"37961\",\n    \"description\": \"a man is smoking a cigarette while someone touches his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tkdr4Eby1rdyrrfo1_400\",\n    \"question\": \"what is the girl smashing on top of her head?\",\n    \"answer\": \"egg\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24825\",\n    \"key\": \"42825\",\n    \"description\": \"a girl is smashing an egg on top of her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9npusDaUk1t1j1f4o1_250\",\n    \"question\": \"what is the man with a white shirt looking?\",\n    \"answer\": \"sea\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45642\",\n    \"key\": \"2981\",\n    \"description\": \"a man with a white shirt is looking the sea.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtams4V1k1u2ep9yo1_500\",\n    \"question\": \"what are driving in the street at night?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24330\",\n    \"key\": \"61078\",\n    \"description\": \"multiple cars are driving in the street at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8b6xSueH1u5s6sso1_500\",\n    \"question\": \"how many girls are dancing in the club?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40159\",\n    \"key\": \"33941\",\n    \"description\": \"three girls are dancing in a club.\"\n  },\n  {\n    \"video_name\": \"tumblr_n985jc2Wyr1sj2zt0o1_400\",\n    \"question\": \"what is an animal eating?\",\n    \"answer\": \"carrot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51109\",\n    \"key\": \"33712\",\n    \"description\": \"an animal is eating a carrot that is being held for it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhd5mxgLuD1u71lxzo1_500\",\n    \"question\": \"what is the man playing poker and are being moved away?\",\n    \"answer\": \"chips\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20716\",\n    \"key\": \"98865\",\n    \"description\": \"a man is playing poker and his chips are being moved away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhd4arqBU91u6monlo1_400\",\n    \"question\": \"what is the man playing on a stage in front of a crowd?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27633\",\n    \"key\": \"73389\",\n    \"description\": \"a man is playing the guitar on a stage in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3qalChFT1u5d8nbo1_500\",\n    \"question\": \"how many girls on stage kiss and then exit through doors on opposite sides?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26454\",\n    \"key\": \"69235\",\n    \"description\": \"two girls on stage kiss and then exit through doors on opposite sides.\"\n  },\n  {\n    \"video_name\": \"tumblr_nonm875Gqs1uw60sro1_400\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6168\",\n    \"key\": \"10403\",\n    \"description\": \"a girl with blonde hair is wearing a yellow sweatshirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndz6v9plHU1s4gcyso1_500\",\n    \"question\": \"how many men with black suit are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1507\",\n    \"key\": \"86796\",\n    \"description\": \"two men with black suit are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_noipe7K8wn1uvy8rfo1_500\",\n    \"question\": \"what is switching lanes on the highway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28501\",\n    \"key\": \"87621\",\n    \"description\": \"a red luxurious car is switching lanes on the highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbb0rxsAsx1tkaus8o1_400\",\n    \"question\": \"what is the young boy unwrapping and looking happy?\",\n    \"answer\": \"gift\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2434\",\n    \"key\": \"24698\",\n    \"description\": \"a young boy is unwrapping a gift and looking happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc87hbmT7S1s97opco1_400\",\n    \"question\": \"what is the color of the waistcoat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8918\",\n    \"key\": \"6912\",\n    \"description\": \"a man with glasses and wearing a gray waistcoat is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngyb87nN0D1s4vjdko1_400\",\n    \"question\": \"how many young people are holding hands and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13127\",\n    \"key\": \"37467\",\n    \"description\": \"two young people are holding hands and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndhvugvD2U1s3mq1do1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19465\",\n    \"key\": \"59821\",\n    \"description\": \"a man with red hair is sitting in a red chair and another man pops up from behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_n89ev1boWG1tzl5c2o1_250\",\n    \"question\": \"what awakens him and he gets up?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45088\",\n    \"key\": \"16324\",\n    \"description\": \"A man 's phone awakens him and he gets up.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9747pO9gM1sdtm33o1_250\",\n    \"question\": \"what sped away and man limped after across the parking lot?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48378\",\n    \"key\": \"51371\",\n    \"description\": \"car sped away and man limped after across the parking lot.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0kxcHgTJ1uvdb8xo1_400\",\n    \"question\": \"where are two guys warming up while.\",\n    \"answer\": \"? cage\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35874\",\n    \"key\": \"62177\",\n    \"description\": \"two guys are warming up while in a batting cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklj4p26GV1rxcyx0o1_250\",\n    \"question\": \"what do the shirtless guy jump outside?\",\n    \"answer\": \"ropes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38504\",\n    \"key\": \"16632\",\n    \"description\": \"a shirtless guy jump ropes outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbkisdPmRk1ruhz45o1_500\",\n    \"question\": \"what is this guy playing with drumsticks?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25924\",\n    \"key\": \"56956\",\n    \"description\": \"this guy is playing the drums with drumsticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nra8jaNWXd1ti2yzto1_1280\",\n    \"question\": \"what is the black cat poking through the bicycle wheel?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52350\",\n    \"key\": \"17735\",\n    \"description\": \"a black cat is poking the cat through the bicycle wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqyrrDHMf1upvohzo1_400\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43616\",\n    \"key\": \"69802\",\n    \"description\": \"a couple are dancing very fast in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6m9ty5TR1qjwz8qo1_250\",\n    \"question\": \"what are two guys playing under some lights?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42453\",\n    \"key\": \"27638\",\n    \"description\": \"two guys are playing guitars under some lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne26g19AFF1tmflpjo1_500\",\n    \"question\": \"what is the man sitting on his bed and holding?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52871\",\n    \"key\": \"58135\",\n    \"description\": \"the man is sitting on his bed and holding his kitten.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklltj6mj01u8ivvko1_500\",\n    \"question\": \"how many men with ties on their heads are crying and hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12620\",\n    \"key\": \"58940\",\n    \"description\": \"two men with ties on their heads are crying and hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpaoaNNIH1rpqn0wo1_500\",\n    \"question\": \"what is moving along the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10184\",\n    \"key\": \"61804\",\n    \"description\": \"a black car is moving along a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_npmvj70dMN1qztqp5o1_500\",\n    \"question\": \"how many man are jump roping using the same jump rope?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38976\",\n    \"key\": \"61017\",\n    \"description\": \"two man are jump roping using the same jump rope.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcce89zzc1tubwqbo1_400\",\n    \"question\": \"what is being pushed by his friend?\",\n    \"answer\": \"singer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16519\",\n    \"key\": \"92147\",\n    \"description\": \"a young pop star singer is being pushed by his friend.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9066hvJ6R1tx8mn0o1_400\",\n    \"question\": \"what is the race car driver driving?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6359\",\n    \"key\": \"76810\",\n    \"description\": \"a race car driver is driving a race car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvahzjscl1s9mufoo1_400\",\n    \"question\": \"how many children are using the swing and hit a baby?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8107\",\n    \"key\": \"35827\",\n    \"description\": \"two children are using a swing and hit a baby.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu6972ngW1rhkv10o1_400\",\n    \"question\": \"what is walking with the balloon stuck between its legs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45677\",\n    \"key\": \"27997\",\n    \"description\": \"a cat is walking with a balloon stuck between its legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlhwgX2fm1tm15nlo1_400\",\n    \"question\": \"what does the person and cat touch each move to bite the hand?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13146\",\n    \"key\": \"50753\",\n    \"description\": \"a person and cat touch each other the cat moves to bite the hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1p9zvcKj1t61hfoo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11827\",\n    \"key\": \"101475\",\n    \"description\": \"the guy with the blue shirt has his feet propped up on the desk and is napping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1z6y9MoU1qgw2r7o1_400\",\n    \"question\": \"where are two girls talking.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43351\",\n    \"key\": \"59922\",\n    \"description\": \"two girls are talking in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q2u62j8H1sqofgbo1_400\",\n    \"question\": \"what heads into space after taking off?\",\n    \"answer\": \"rocket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32210\",\n    \"key\": \"44819\",\n    \"description\": \"a rocket heads into space after taking off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nka6muC94q1r5ykfzo1_400\",\n    \"question\": \"where does the black guy put a basketball.\",\n    \"answer\": \"? net\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43194\",\n    \"key\": \"15983\",\n    \"description\": \"a black guy puts a basketball in a net.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgkzsde6P1qj7i8oo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39594\",\n    \"key\": \"38579\",\n    \"description\": \"a man wearing a blue shirt is rubbing his stomach and sides.\"\n  },\n  {\n    \"video_name\": \"tumblr_nok21e8tqE1uqej0yo1_500\",\n    \"question\": \"what is the man smoking out the smoke?\",\n    \"answer\": \"blows\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15246\",\n    \"key\": \"44961\",\n    \"description\": \"a man is smoking a cigarette blows out the smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wdvdxF7z1snmv5eo1_400\",\n    \"question\": \"what did the person rid past a tower?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19522\",\n    \"key\": \"65642\",\n    \"description\": \"a person rides a bike past a tower as it comes into focus.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo9npiBPU1u2qfs8o1_400\",\n    \"question\": \"how many people are standing beside each other with microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16416\",\n    \"key\": \"77147\",\n    \"description\": \"two people are standing beside each other with microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vgph6QvE1rzptkoo1_400\",\n    \"question\": \"what is changing fast with the house in the background?\",\n    \"answer\": \"sky\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50287\",\n    \"key\": \"66051\",\n    \"description\": \"the sky is changing fast with a house in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3ulp2fiG1u9nqipo1_500\",\n    \"question\": \"what is showing his hand?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44270\",\n    \"key\": \"91596\",\n    \"description\": \"a man wearing cap is showing his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3x6m8etJ1u2lsxjo1_500\",\n    \"question\": \"where are two girls fighting each other.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20694\",\n    \"key\": \"85880\",\n    \"description\": \"two girls are fighting each other in a lunch room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2anni0vZ1uup4c1o1_400\",\n    \"question\": \"how many mean are laughing and smiling together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12077\",\n    \"key\": \"77629\",\n    \"description\": \"the two mean are laughing and smiling together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7aakO7fM1rcf1byo1_400\",\n    \"question\": \"what is the man in the glasses smoking and blowing out smoke?\",\n    \"answer\": \"pipe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25406\",\n    \"key\": \"56793\",\n    \"description\": \"the man in the glasses is smoking a pipe and blowing out smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndjfgohCV31tl8x1eo2_r1_1280\",\n    \"question\": \"how many men run up some stairs together laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44929\",\n    \"key\": \"90198\",\n    \"description\": \"two men run up some stairs together laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpfbiRxhh1taqkiao1_500\",\n    \"question\": \"what is the woman wearing and talking?\",\n    \"answer\": \"blanket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9508\",\n    \"key\": \"40287\",\n    \"description\": \"a woman is wearing a blanket and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90q90yk8s1qhqng8o1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29668\",\n    \"key\": \"69803\",\n    \"description\": \"a man in black clothes is standing up and turning.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9u6g2ilEM1qh7r42o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7559\",\n    \"key\": \"31117\",\n    \"description\": \"there 's a girl with red hair making faces and sticking her tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfflcuX90m1u25ovvo1_400\",\n    \"question\": \"what does the small teal colored car approach slowly?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41450\",\n    \"key\": \"63666\",\n    \"description\": \"a small teal colored car approaches a flooded road slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd99tr1UmA1ruqk6ro1_250\",\n    \"question\": \"what is driving past tall buildings in the background?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49711\",\n    \"key\": \"4433\",\n    \"description\": \"a car is driving past tall buildings in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpvxa0eJz1qfz6d1o1_400\",\n    \"question\": \"how many men are smiling and laughing!\",\n    \"answer\": \"? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17650\",\n    \"key\": \"22517\",\n    \"description\": \"the two men are smiling and laughing!\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ens5DPpF1ttu918o1_500\",\n    \"question\": \"where is the young man sitting while wearing a shirt and tie.\",\n    \"answer\": \"? bathtub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48779\",\n    \"key\": \"86383\",\n    \"description\": \"a young man is sitting in a bathtub while wearing a shirt and tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_niv358uYAh1u9vehoo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33326\",\n    \"key\": \"56398\",\n    \"description\": \"a white man with black hair is surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnukojLjK1sx7rvmo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31596\",\n    \"key\": \"22594\",\n    \"description\": \"a woman wearing a black sweat shirt wiggled her arms above her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1o4wrz6A1t1d43io1_500\",\n    \"question\": \"how many woman are close to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA53032\",\n    \"key\": \"88073\",\n    \"description\": \"two woman are close to each other and one poses with her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nim2enDF3P1u1on4lo1_500\",\n    \"question\": \"where is the silly man lighting a firecracker.\",\n    \"answer\": \"? zipper\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20361\",\n    \"key\": \"35768\",\n    \"description\": \"a silly man is lighting a firecracker in his zipper.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqj7ahVNOh1uvie7bo1_400\",\n    \"question\": \"what is the dog taking with some rubber ducks?\",\n    \"answer\": \"bath\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15879\",\n    \"key\": \"32783\",\n    \"description\": \"a dog is taking a bath with some rubber ducks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxj24nYDk1rhiuffo1_400\",\n    \"question\": \"what is the man taking off and flipping it then putting it back on?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43053\",\n    \"key\": \"29599\",\n    \"description\": \"a man is taking his hat off and flipping it then putting it back on.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tx52dF7T1th5r3po1_500\",\n    \"question\": \"what is the woman talking in a mic and wearing?\",\n    \"answer\": \"bow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51968\",\n    \"key\": \"86023\",\n    \"description\": \"a woman is talking in a mic and wearing a red bow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0l1eo8tj1tjcqx1o1_500\",\n    \"question\": \"how many soccer players try to get the ball?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37391\",\n    \"key\": \"99747\",\n    \"description\": \"two soccer players try to get the ball,\"\n  },\n  {\n    \"video_name\": \"tumblr_nko35llwGE1u9vg2vo1_500\",\n    \"question\": \"what is the man sitting in a car is answering?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36098\",\n    \"key\": \"88852\",\n    \"description\": \"a man sitting in a car is answering his phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncss6i7D9Y1t8zp0to1_400\",\n    \"question\": \"where are four shirtless men standing and moving around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13893\",\n    \"key\": \"34125\",\n    \"description\": \"four shirtless men are standing in a room and moving around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwk65nfT91r57bhho1_250\",\n    \"question\": \"what is the baby beating together?\",\n    \"answer\": \"sticks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6231\",\n    \"key\": \"24228\",\n    \"description\": \"a baby is beating two sticks together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nofgplOU5S1sjsdi9o1_500\",\n    \"question\": \"where is the group of men dancing.\",\n    \"answer\": \"? bar\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47912\",\n    \"key\": \"49462\",\n    \"description\": \"a group of men is dancing in a high bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_npblti8bU91use8l1o1_400\",\n    \"question\": \"what is the color of the bird?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41319\",\n    \"key\": \"82811\",\n    \"description\": \"a polar bear does not notice a black bird,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcfvwvGGQ1rum1ilo1_250\",\n    \"question\": \"what did somebody knock off the guy wearing the tan shirt?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45651\",\n    \"key\": \"51015\",\n    \"description\": \"somebody knocked the black hat off the guy wearing the tan shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3sxvWBpy1rl2njso1_400\",\n    \"question\": \"what is the man holding and pointing?\",\n    \"answer\": \"bow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29797\",\n    \"key\": \"77703\",\n    \"description\": \"a man is holding a bow and pointing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0s23vugd1sft9vjo1_250\",\n    \"question\": \"how many people are sitting on the chair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4348\",\n    \"key\": \"51890\",\n    \"description\": \"two people are sitting on a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobe08t7lw1r902nto1_400\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20475\",\n    \"key\": \"57733\",\n    \"description\": \"a group of boys in white tops and black pants are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndjshjXoB91s71nvbo1_250\",\n    \"question\": \"where is the man gets an animal.\",\n    \"answer\": \"? bag\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27794\",\n    \"key\": \"5971\",\n    \"description\": \"a man is gets an animal in a bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxp04rEFk1tjjnlno1_400\",\n    \"question\": \"what is tender sleeping next to his mother?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4903\",\n    \"key\": \"71522\",\n    \"description\": \"a cut cat is tender sleeping next to his mother.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uqen1tDV1sfmhxao1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7975\",\n    \"key\": \"63448\",\n    \"description\": \"a brown dog is eating food from a green bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfygp4DKxV1tw8vf9o1_400\",\n    \"question\": \"how many girls are performing the flip in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19036\",\n    \"key\": \"19168\",\n    \"description\": \"two girls are performing a flip in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncaqcxiGHD1thc9hdo1_400\",\n    \"question\": \"what is the man in a tank top playing?\",\n    \"answer\": \"tambourine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3596\",\n    \"key\": \"42852\",\n    \"description\": \"a man in a tank top is playing a tambourine.\"\n  },\n  {\n    \"video_name\": \"tumblr_n3j8kw9PbL1qdafpto1_400\",\n    \"question\": \"what does the man with a beard remove?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30078\",\n    \"key\": \"22923\",\n    \"description\": \"a man with a beard removes his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5lfp2AsH1tn37i7o1_500\",\n    \"question\": \"what climbs on top of and bites a bears face?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43268\",\n    \"key\": \"37338\",\n    \"description\": \"a turtle climbs on top of and bites a bears face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9airoPJM1rs58dao1_500\",\n    \"question\": \"what is racing and starts to spin out around the corner?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17853\",\n    \"key\": \"57001\",\n    \"description\": \"a car is racing and starts to spin out around the corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9d2ncvUaX1rqdzb7o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23342\",\n    \"key\": \"93281\",\n    \"description\": \"the boy in the hat and white shirt is bobbing his head from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9z85obWn1uaz0fio1_250\",\n    \"question\": \"what is the man eating,\",\n    \"answer\": \"and he is laughing at a puppet talking ? cookie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7725\",\n    \"key\": \"27255\",\n    \"description\": \"a man is eating a cookie,\"\n  },\n  {\n    \"video_name\": \"tumblr_new1xjf0SM1se75noo1_500\",\n    \"question\": \"what is the color of the food?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11566\",\n    \"key\": \"22617\",\n    \"description\": \"a furry little animal with huge eyes is eating some kind of orange food.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpt98m8yA1rsg4lno1_500\",\n    \"question\": \"where does an animated woman sit.\",\n    \"answer\": \"? theater\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40247\",\n    \"key\": \"57299\",\n    \"description\": \"an animated woman sits in a theater.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjwktzR2M1u5fpulo1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA53050\",\n    \"key\": \"53381\",\n    \"description\": \"the guy dressed in black is dancing and swinging his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nab7ciEHF71the81go1_400\",\n    \"question\": \"how many young men are laughing and joking together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46668\",\n    \"key\": \"87128\",\n    \"description\": \"three young men are laughing and joking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnsotwRNgh1tmavx8o1_250\",\n    \"question\": \"what is the man slowly unbuttoning?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29021\",\n    \"key\": \"1691\",\n    \"description\": \"a man is slowly unbuttoning his red shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbz0yeXa3A1qflnb4o1_250\",\n    \"question\": \"what is the girl wearing a blue shirt rips off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36\",\n    \"key\": \"27613\",\n    \"description\": \"a girl wearing a blue shirt rips her shirt off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2vux3HHB1rl202so1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34162\",\n    \"key\": \"5298\",\n    \"description\": \"a white girl with black dress is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam6nd8gMr1s9iqrfo1_400\",\n    \"question\": \"what is the color of the words?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32421\",\n    \"key\": \"14161\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_np0uy5YAUD1t3fnpjo1_500\",\n    \"question\": \"how many hand are being separated on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25552\",\n    \"key\": \"77935\",\n    \"description\": \"two hand are being separated on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhionq5o8d1u7ndwko1_400\",\n    \"question\": \"where is the man sitting.\",\n    \"answer\": \"? train\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44765\",\n    \"key\": \"84323\",\n    \"description\": \"a man is sitting still in a train.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndau5kAPfn1rvbl65o1_400\",\n    \"question\": \"what are hands opening?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49407\",\n    \"key\": \"46065\",\n    \"description\": \"hands are opening a music box to reveal dancing figures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqx3b5Le21sz068fo1_250\",\n    \"question\": \"how many cats are moving on the floor of a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14757\",\n    \"key\": \"24078\",\n    \"description\": \"two cats are moving on the floor of a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf5g9uK0E1tjtk3vo1_250\",\n    \"question\": \"what is the young woman with long hair opening?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6634\",\n    \"key\": \"16675\",\n    \"description\": \"a young woman with long hair is opening a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8urd6PMiY1tgkdkbo1_400\",\n    \"question\": \"what is frightened by the toaster and jumps off the table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20755\",\n    \"key\": \"74900\",\n    \"description\": \"a cat is frightened by a toaster and jumps off the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9b5ripty1tgux4fo1_250\",\n    \"question\": \"how many pictures are then shown?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28435\",\n    \"key\": \"90983\",\n    \"description\": \"a woman is running by a fence,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwkqrpiAF1smyl7xo1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43635\",\n    \"key\": \"100456\",\n    \"description\": \"a man with black eyes is screaming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhw0okMoCW1tx8mn0o1_400\",\n    \"question\": \"what is the person riding down a dirt road?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA421\",\n    \"key\": \"77744\",\n    \"description\": \"a person is riding a dirt bike down a dirt road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0z9cQOGd1tdytspo1_500\",\n    \"question\": \"how many people are standing next to each other singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25769\",\n    \"key\": \"94401\",\n    \"description\": \"two people are standing next to each other singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzhvabsfq1s4nyalo1_400\",\n    \"question\": \"how many girls in red suits are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45458\",\n    \"key\": \"26694\",\n    \"description\": \"the two girls in red suits are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndo5t4jt651txq11zo1_400\",\n    \"question\": \"what is signing for the crowd and showing off his chest?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19292\",\n    \"key\": \"66215\",\n    \"description\": \"a rock star is signing for a crowd and showing off his chest.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwxz3cqjU1uo5qabo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8521\",\n    \"key\": \"7134\",\n    \"description\": \"a blonde woman and a red haired man are standing together and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtfbt9KZI1s71nvbo1_400\",\n    \"question\": \"how many dogs are playing on kids toys on cement?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4691\",\n    \"key\": \"15351\",\n    \"description\": \"two dogs are playing on kids toys on cement.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsuhqvHMY1rzwvkdo1_400\",\n    \"question\": \"what is running on the beach and trips and falls on his face?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48563\",\n    \"key\": \"59438\",\n    \"description\": \"a dog is running on a beach and trips and falls on his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1ka7Igyp1twhvlao1_400\",\n    \"question\": \"what are moving around hastily in the water?\",\n    \"answer\": \"boats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2948\",\n    \"key\": \"48032\",\n    \"description\": \"boats are moving around hastily in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nir1imp3Hd1tkwbico1_400\",\n    \"question\": \"what is this driving down a rural road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21422\",\n    \"key\": \"4655\",\n    \"description\": \"this is a car driving down a rural road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh6btDTyY1r38hk2o1_400\",\n    \"question\": \"what does the drinking monkey fall off?\",\n    \"answer\": \"wire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18978\",\n    \"key\": \"8486\",\n    \"description\": \"a drinking monkey falls off a wire.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9552fexor1teip1lo1_250\",\n    \"question\": \"what is the man leaning against a wall and holding?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4653\",\n    \"key\": \"15850\",\n    \"description\": \"a man is leaning against a wall and holding a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0zbqqPTH1tmeg7go1_500\",\n    \"question\": \"how many models are walking down the catwalk together?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18689\",\n    \"key\": \"87229\",\n    \"description\": \"four models are walking down a catwalk together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xi4jxmhS1s605u4o2_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12251\",\n    \"key\": \"85772\",\n    \"description\": \"this image is of a guy with long black hair looking at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbj56iP7bu1s0r79po1_1280\",\n    \"question\": \"how many young oriental men are looking into the distance?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10332\",\n    \"key\": \"53013\",\n    \"description\": \"two young oriental men are looking into the distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdd5izFsK1s9tznyo1_400\",\n    \"question\": \"where is the man in a dark coat smoking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31719\",\n    \"key\": \"84073\",\n    \"description\": \"a man in a dark coat is smoking in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fgnpR3q91tin09xo1_500\",\n    \"question\": \"how many young people are embracing and hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36038\",\n    \"key\": \"73478\",\n    \"description\": \"two young people are embracing and hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8z5gkpbGb1rwgxlqo1_500\",\n    \"question\": \"what is running around and the woman is holding it?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47934\",\n    \"key\": \"74583\",\n    \"description\": \"a horse is running around and a woman is holding it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbud39wvWd1r3uz8ro1_400\",\n    \"question\": \"what is attacking the socked foot?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9743\",\n    \"key\": \"50653\",\n    \"description\": \"the cat is attacking a socked foot.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9bex9JOe1tj4gvco1_400\",\n    \"question\": \"what is the man kicking into a net?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32699\",\n    \"key\": \"87970\",\n    \"description\": \"a man is kicking a soccer ball into a net.\"\n  },\n  {\n    \"video_name\": \"tumblr_nplr9dMQ9H1uxicgso1_400\",\n    \"question\": \"what is emerging from the building?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2666\",\n    \"key\": \"34952\",\n    \"description\": \"a large robot is emerging from a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6t8rIVdA1tjjnlno1_400\",\n    \"question\": \"where is the cat getting stuck.\",\n    \"answer\": \"? ball\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49868\",\n    \"key\": \"54116\",\n    \"description\": \"a cat is getting stuck in a plastic ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb692thYgT1toja74o1_400\",\n    \"question\": \"what was the man with no shirt playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21199\",\n    \"key\": \"35829\",\n    \"description\": \"a man with no shirt was playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj0igzlHR1sxdbkxo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33886\",\n    \"key\": \"58615\",\n    \"description\": \"a guy with white shirt it gets wet with cold water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmcu4vUJJd1sgkvddo1_400\",\n    \"question\": \"what are the couple of people riding?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19865\",\n    \"key\": \"85530\",\n    \"description\": \"a couple of people are riding a motorcycle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2xke0BQS1uopxvxo1_500\",\n    \"question\": \"how many guys with dark shirts and sunglasses are playing air drums while singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13975\",\n    \"key\": \"84797\",\n    \"description\": \"two guys with dark shirts and sunglasses are playing air drums while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmeqaxE11G1u2z3v8o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27197\",\n    \"key\": \"21601\",\n    \"description\": \"a man wearing a red shirt is walking in front of a man raising his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne10rzDM2R1tote40o1_500\",\n    \"question\": \"what is the man holding up and pointing at something?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40290\",\n    \"key\": \"55112\",\n    \"description\": \"a man is holding up his mobile phone and pointing at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbrxaMA9X1speqgzo1_500\",\n    \"question\": \"what does the hand place into the rifle barrel of a soldier?\",\n    \"answer\": \"flower\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24052\",\n    \"key\": \"68168\",\n    \"description\": \"a hand places a flower into the rifle barrel of a soldier.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmha6Y6CS1tvcmypo1_250\",\n    \"question\": \"what is the color of the bra?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20748\",\n    \"key\": \"51016\",\n    \"description\": \"a woman in a black sports bra is doing jumping squats.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pw7xpB2d1qbzxofo1_400\",\n    \"question\": \"what does the guy wear a blue shirt and cap and break dances and passes beside him?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28237\",\n    \"key\": \"70470\",\n    \"description\": \"a guy wears a blue shirt and cap and break dances as a train passes above him and a car passes beside him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1dyrKWvc1sfwm8jo1_400\",\n    \"question\": \"what does the person scoop up using a white spoon?\",\n    \"answer\": \"sauce\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5905\",\n    \"key\": \"16778\",\n    \"description\": \"a person scoops up some sauce using a white spoon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhr07tgEBl1tq4njio1_250\",\n    \"question\": \"what is walking and keeps falling over?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47151\",\n    \"key\": \"12670\",\n    \"description\": \"a cat is walking and keeps falling over.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7emoSSII1uuekcqo1_500\",\n    \"question\": \"what are the group nave men taking off?\",\n    \"answer\": \"shirts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50876\",\n    \"key\": \"90515\",\n    \"description\": \"a group nave men are taking their shirts off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk22m121jw1twrr5wo1_500\",\n    \"question\": \"how many wrestlers stare at each other and then begin to fight?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10206\",\n    \"key\": \"47857\",\n    \"description\": \"two wrestlers stare at each other and then begin to fight.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsnyihBqf1soz0p7o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41350\",\n    \"key\": \"57164\",\n    \"description\": \"a man in a white shirt is skateboarding down a hill.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi3fglcjF1u3r5iuo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3304\",\n    \"key\": \"17374\",\n    \"description\": \"a child with brown hair looks woozy and then they lean backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hzp32P4s1txqrq4o1_250\",\n    \"question\": \"where is the woman swinging around.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11565\",\n    \"key\": \"36070\",\n    \"description\": \"a woman is swinging around in the chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7414AjTw1u3b9xqo1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49802\",\n    \"key\": \"21619\",\n    \"description\": \"a white girl with blonde hair is blinking her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_norzf0Bf5a1t3c0tdo1_1280\",\n    \"question\": \"how many asian girls are acting silly while getting dressed?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15452\",\n    \"key\": \"80048\",\n    \"description\": \"three asian girls are acting silly while getting dressed.\"\n  },\n  {\n    \"video_name\": \"tumblr_netczdYQLZ1u25ovvo1_400\",\n    \"question\": \"what is passing the white car on the road while a man is driving it?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49874\",\n    \"key\": \"63490\",\n    \"description\": \"a red car is passing a white car on the road while a man is driving it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhi4hjjnIM1twtuudo1_250\",\n    \"question\": \"what are four men standing in a circle and is turning?\",\n    \"answer\": \"circle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41460\",\n    \"key\": \"16603\",\n    \"description\": \"four men are standing in a circle and the circle is turning.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq63u1ULnD1tfeni1o1_400\",\n    \"question\": \"where is the man riding a skateboard.\",\n    \"answer\": \"? tunnel\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9760\",\n    \"key\": \"35631\",\n    \"description\": \"a man is riding a skateboard in a tunnel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq6ixis8h81uqx07to1_400\",\n    \"question\": \"what did the man rid down a steep hill,\",\n    \"answer\": \"across a road , and into the path of a car before being hit ? bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48047\",\n    \"key\": \"36000\",\n    \"description\": \"a man rides a bicycle down a steep hill,\"\n  },\n  {\n    \"video_name\": \"tumblr_njqrw7Gno11u18qbbo1_400\",\n    \"question\": \"what is the woman wearing and talking?\",\n    \"answer\": \"wig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27823\",\n    \"key\": \"64427\",\n    \"description\": \"a woman is wearing a blonde wig and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nm5g67lpIs1r2mlm8o1_500\",\n    \"question\": \"what is the woman wearing and smiling?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7383\",\n    \"key\": \"95960\",\n    \"description\": \"a woman is wearing a black shirt and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngek8rCbFV1s82z36o1_500\",\n    \"question\": \"how many smiling men slowly enter the doorway?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27886\",\n    \"key\": \"73050\",\n    \"description\": \"three smiling men slowly enter a doorway.\"\n  },\n  {\n    \"video_name\": \"tumblr_naeiiukOaI1qzm0hso1_400\",\n    \"question\": \"what is batting at the toy helicopter and it falls down?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24979\",\n    \"key\": \"76103\",\n    \"description\": \"a cat is batting at a toy helicopter and it falls down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsqc8tKtS1rifrfzo1_500\",\n    \"question\": \"how many boys are signing something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10053\",\n    \"key\": \"96966\",\n    \"description\": \"two boys are signing something and the one boy leans on the other and he pushes him off him.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf1uaXSXE1ts0kzio1_400\",\n    \"question\": \"what rubs the young mans head?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46603\",\n    \"key\": \"41589\",\n    \"description\": \"a dog rubs a young mans head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng46uo55Mx1slj978o1_400\",\n    \"question\": \"what are walking and one falls down?\",\n    \"answer\": \"penguins\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6605\",\n    \"key\": \"50029\",\n    \"description\": \"two penguins are walking and one falls down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ti1si24z1th8yo9o1_400\",\n    \"question\": \"what is the woman blowing a kiss and fixing?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40104\",\n    \"key\": \"72465\",\n    \"description\": \"a woman is blowing a kiss and fixing her glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0daap0PB1u8ogblo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2306\",\n    \"key\": \"97457\",\n    \"description\": \"a man wearing a white shirt and black jacket is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngt78gZQ711qzunbgo1_250\",\n    \"question\": \"what is the color of the umbrella?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41147\",\n    \"key\": \"47430\",\n    \"description\": \"a girl with a large black umbrella moves forward from under the shadow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vaofH4lm1s1hn6lo1_400\",\n    \"question\": \"what is licking the person 's face?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21864\",\n    \"key\": \"58281\",\n    \"description\": \"A dog is licking a person 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjsyhLncl1tujnioo1_500\",\n    \"question\": \"what is the color of the tie?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10343\",\n    \"key\": \"40549\",\n    \"description\": \"a man wearing a white shirt and black tie,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfytvq62FZ1u4eksfo1_500\",\n    \"question\": \"what runs through the building?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40710\",\n    \"key\": \"89279\",\n    \"description\": \"a man holding headphones runs through a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_na898jZGcd1rreivlo1_400\",\n    \"question\": \"how many men are running and sliding on the giant slip and slide?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46868\",\n    \"key\": \"79268\",\n    \"description\": \"three men are running and sliding on a giant slip and slide.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafmcp0OZJ1ti4rwjo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46141\",\n    \"key\": \"8642\",\n    \"description\": \"a guy in a white shirt is dancing in circles while holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8v50LnUt1tk2ngvo1_500\",\n    \"question\": \"what reaches down and swats at another cats tail and the cat that got swatted at attacks another cat thinking it was him?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20770\",\n    \"key\": \"78064\",\n    \"description\": \"a cat reaches down and swats at another cats tail and the cat that got swatted at attacks another cat thinking it was him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndh1t5XuKp1sht3fmo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37682\",\n    \"key\": \"57336\",\n    \"description\": \"a man with a green shirt on his neck is looking surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngh82hywbz1s4yzawo1_400\",\n    \"question\": \"what are the group of young people riding tour?\",\n    \"answer\": \"bus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29249\",\n    \"key\": \"9181\",\n    \"description\": \"a group of young people are riding a tour bus.\"\n  },\n  {\n    \"video_name\": \"tumblr_naz252SYcX1rhmx5uo1_r1_400\",\n    \"question\": \"how many people are sitting on the red couch while one person kicks their legs in the air?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26375\",\n    \"key\": \"34056\",\n    \"description\": \"two people are sitting on a red couch while one person kicks their legs in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnfu7EwM91r3diajo1_500\",\n    \"question\": \"what is the band on stage playing?\",\n    \"answer\": \"song\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32761\",\n    \"key\": \"43197\",\n    \"description\": \"a band on stage is playing a rock song.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevrd9FOp21tf406do1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30713\",\n    \"key\": \"78987\",\n    \"description\": \"the man in the black shirt is playing guitar with his tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtxedpe7W1t7an45o1_250\",\n    \"question\": \"what sat on the blue horse toy?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2033\",\n    \"key\": \"27296\",\n    \"description\": \"baby panda sat on a blue horse toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgnauMWl71tyy9wio1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14469\",\n    \"key\": \"57419\",\n    \"description\": \"a man in a gray shirt is standing in front of a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnxe9gZGR1qb8axro1_500\",\n    \"question\": \"what is the color of the gloves?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12098\",\n    \"key\": \"49944\",\n    \"description\": \"a woman in white with brown gloves struts down a corridor and rolls her eyes while reciting something.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdlzlPd9o1sj2opgo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10654\",\n    \"key\": \"14294\",\n    \"description\": \"the man with the black jacket and black hat is screaming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd2wgnLlKm1u0suito1_500\",\n    \"question\": \"what is the man wearing a hat holds while performing?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11433\",\n    \"key\": \"97166\",\n    \"description\": \"the man wearing a hat holds a microphone while performing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x1wfRppX1tdmffyo1_250\",\n    \"question\": \"what is playing with the toy and running around?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3585\",\n    \"key\": \"45924\",\n    \"description\": \"a cat is playing with a toy and running around.\"\n  },\n  {\n    \"video_name\": \"tumblr_neubjlHnuq1tdjuqvo1_250\",\n    \"question\": \"what is jumping up and grabbing the man around his waist from the back?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17943\",\n    \"key\": \"40937\",\n    \"description\": \"a cat is jumping up and grabbing a man around his waist from the back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfoh2z9C1M1u3ads9o1_250\",\n    \"question\": \"what is the rabbit in a cage eating?\",\n    \"answer\": \"grass\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36738\",\n    \"key\": \"14265\",\n    \"description\": \"a rabbit in a cage is eating grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_n946l6WWHJ1ri0wnso1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20276\",\n    \"key\": \"64134\",\n    \"description\": \"a man wearing a black baseball cap is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2t08LZcs1s9578so1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42775\",\n    \"key\": \"5047\",\n    \"description\": \"a male wearing a red jacket is kissing another male with black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq0hxXFef1t5ojzdo1_250\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4693\",\n    \"key\": \"81334\",\n    \"description\": \"a girl with long hair and big brown eyes looks up in wonder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr39rv7eQq1sht3fmo1_250\",\n    \"question\": \"what falls down into the hole?\",\n    \"answer\": \"hamster\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA913\",\n    \"key\": \"12915\",\n    \"description\": \"a hamster falls down into a hole.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwk65nfT91r57bhho1_250\",\n    \"question\": \"what is the baby holding and a lady is moving the baby 's hands?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37473\",\n    \"key\": \"24228\",\n    \"description\": \"a baby is holding stick and a lady is moving the baby 's hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqichfFL771utcanao1_500\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28484\",\n    \"key\": \"96580\",\n    \"description\": \"a man hugs another man men in red sweatshirt hugged.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn9viAE6Z1reh0fqo1_400\",\n    \"question\": \"what does the man in a hat inspect?\",\n    \"answer\": \"antlers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26964\",\n    \"key\": \"38101\",\n    \"description\": \"a man in a hat inspects deer antlers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkamhjvueV1uobh2eo1_400\",\n    \"question\": \"what is raising his hand?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9920\",\n    \"key\": \"29350\",\n    \"description\": \"a guy wearing hat is raising his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vuv0Bgll1ticpqdo1_400\",\n    \"question\": \"what is the color of the vests?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52265\",\n    \"key\": \"57264\",\n    \"description\": \"two men in black vests are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndekj98WUz1u19fjro1_500\",\n    \"question\": \"how many guys are singing to each other in front of a crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51661\",\n    \"key\": \"49220\",\n    \"description\": \"two guys are singing to each other in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nopqno1m9H1r2ga1uo1_400\",\n    \"question\": \"how many men in are dancing in the front seat of a car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52562\",\n    \"key\": \"77278\",\n    \"description\": \"two men in are dancing in the front seat of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkadbrY0j01rj4f6to1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32591\",\n    \"key\": \"49409\",\n    \"description\": \"a black man is tossing money dollar bills.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0lw5qYfq1uoz9klo1_400\",\n    \"question\": \"how many women are standing outside the store and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11409\",\n    \"key\": \"22334\",\n    \"description\": \"two women are standing outside a store and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2dq7GgNi1r967i1o1_400\",\n    \"question\": \"what is the man walking and smoking by a trailer?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21527\",\n    \"key\": \"63199\",\n    \"description\": \"a man is walking and smoking a cigarette by a trailer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhelgy8a1k1u3sgaao1_250\",\n    \"question\": \"what is the girl showing on her tongue?\",\n    \"answer\": \"button\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11463\",\n    \"key\": \"73270\",\n    \"description\": \"a girl is showing a white button on her tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczlfupRqq1tvuidio1_500\",\n    \"question\": \"what does the little green bird shake while moving backwards on a mossy log?\",\n    \"answer\": \"feather\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48279\",\n    \"key\": \"84031\",\n    \"description\": \"a little green bird shakes his tail feather while moving backwards on a mossy log.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr12heBDzF1siem3jo1_400\",\n    \"question\": \"how many race car on a track throws out sparks while it tries to pass another?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23217\",\n    \"key\": \"93803\",\n    \"description\": \"one race car on a track throws out sparks while it tries to pass another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb84pl57j11qd80wyo1_400\",\n    \"question\": \"how many men is wearing vests are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23731\",\n    \"key\": \"40867\",\n    \"description\": \"two men wearing vests are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97vm7E6Lv1tq78elo1_400\",\n    \"question\": \"how many guys have their eyes closed and are breathing heavily?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17942\",\n    \"key\": \"26374\",\n    \"description\": \"two guys have their eyes closed and are breathing heavily.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvri85Mv81u33e4bo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35082\",\n    \"key\": \"19169\",\n    \"description\": \"a man is taking off his black suit jacket to reveal a blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk95ytqTRC1tl34d6o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9543\",\n    \"key\": \"27445\",\n    \"description\": \"girl with black hair whispered some words.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uqttYJz61rwiud9o1_400\",\n    \"question\": \"how many people are participating in the ballet dance?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13002\",\n    \"key\": \"20999\",\n    \"description\": \"two people are participating in a ballet dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_npneccAv8H1rq4lc6o1_500\",\n    \"question\": \"where are two people hugging each other.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6419\",\n    \"key\": \"89620\",\n    \"description\": \"two people in a room are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x4u9gEFy1s2wg51o1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37543\",\n    \"key\": \"68398\",\n    \"description\": \"a brown horse is checking smelling something close up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2iriwRIP1rsxxvao1_500\",\n    \"question\": \"what is the man singing and holding up?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3682\",\n    \"key\": \"13611\",\n    \"description\": \"a man is singing and holding his shirt up to expose his stomach.\"\n  },\n  {\n    \"video_name\": \"tumblr_noojj9QsI61urniueo1_500\",\n    \"question\": \"what is stunt being blown up by a man with a howitzer gun?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9382\",\n    \"key\": \"56954\",\n    \"description\": \"stunt car being blown up by a man with a howitzer gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpddqo8rN1tjhld9o1_400\",\n    \"question\": \"what is yelling at somebody to give some food?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7288\",\n    \"key\": \"52440\",\n    \"description\": \"a dog is yelling at somebody to give some food.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1tbz3mD61slj978o1_400\",\n    \"question\": \"what are dressed as the man and a woman?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18670\",\n    \"key\": \"28588\",\n    \"description\": \"two dogs are dressed as a man and a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfegnfJ1AZ1qayaafo1_400\",\n    \"question\": \"how many people inside a room yell into a telephone?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29172\",\n    \"key\": \"30012\",\n    \"description\": \"three people inside a room yell into a telephone.\"\n  },\n  {\n    \"video_name\": \"tumblr_niu9lzNQeU1u8p1pwo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35398\",\n    \"key\": \"73805\",\n    \"description\": \"the red car is swerving on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfo31Hlh81qhya5no1_250\",\n    \"question\": \"how many belts is the man in a construction hat wearing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19093\",\n    \"key\": \"7657\",\n    \"description\": \"a man in a construction hat is wearing two belts.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ql3v2iH21r5jmwdo1_400\",\n    \"question\": \"what is jumping in front of a person?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42000\",\n    \"key\": \"60583\",\n    \"description\": \"a dog is jumping in front of a person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1axvPIfX1qls3joo1_250\",\n    \"question\": \"what is someone removing and walking outside at a gas station?\",\n    \"answer\": \"handcuffs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20555\",\n    \"key\": \"67965\",\n    \"description\": \"someone is removing handcuffs and walking outside at a gas station.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklkbe4KgW1tfs8guo1_500\",\n    \"question\": \"what is the man with the collared shirt holding on the man with the black hair?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36285\",\n    \"key\": \"56600\",\n    \"description\": \"the man with the collared shirt is holding a gun on the man with the black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2eksOOna1smdw0io1_400\",\n    \"question\": \"what is licking the mouth of a lady with a red shirt?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27370\",\n    \"key\": \"28461\",\n    \"description\": \"a black dog is licking the mouth of a lady with a red shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn5rr1Hsk1ssmhpzo2_400\",\n    \"question\": \"what is the color of the light?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26\",\n    \"key\": \"29254\",\n    \"description\": \"a young girl in blue light is smiling and holding up her hands in signs.\"\n  },\n  {\n    \"video_name\": \"tumblr_neot4s0EBL1s2ls31o1_400\",\n    \"question\": \"what is on the black backdrop?\",\n    \"answer\": \"insect\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21697\",\n    \"key\": \"32047\",\n    \"description\": \"a clear insect is on a black backdrop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0tgl1Yvl1tl2cb1o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37645\",\n    \"key\": \"15474\",\n    \"description\": \"a young man wearing a light green shirt is moving his wrists.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7pept4AI1tkkxovo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28669\",\n    \"key\": \"50212\",\n    \"description\": \"a young man in a black shirt is looking forward and blinking his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivjidmWB71u9t1qio1_400\",\n    \"question\": \"what does the girl bring up to her face?\",\n    \"answer\": \"mug\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2750\",\n    \"key\": \"64223\",\n    \"description\": \"a girl brings a coffee mug up to her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpk1qQv9c1t7jda2o1_250\",\n    \"question\": \"what is the color of the door?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49443\",\n    \"key\": \"31678\",\n    \"description\": \"a black guy gets mad and destroys a blue door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqcilrcO8s1tbvh0jo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35349\",\n    \"key\": \"15353\",\n    \"description\": \"this shows a boy in green round neck shirt conversing with an unseen other person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdib2bbIb1s4zvpgo1_250\",\n    \"question\": \"what is high up on the shelf and playing with a ball attached to a string?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36062\",\n    \"key\": \"76388\",\n    \"description\": \"a cat is high up on a shelf and playing with a ball attached to a string.\"\n  },\n  {\n    \"video_name\": \"tumblr_n2sx1v7vCB1r2y8uzo1_400\",\n    \"question\": \"what is jumping on surf board to cross swimming pool?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34265\",\n    \"key\": \"10316\",\n    \"description\": \"cat jumping on surf board to cross swimming pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhr07tgEBl1tq4njio1_250\",\n    \"question\": \"what is trying to walk but continues to fall over?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36268\",\n    \"key\": \"12670\",\n    \"description\": \"a cat is trying to walk but continues to fall over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4qhhSLmI1rxcaido1_250\",\n    \"question\": \"where is the man wearing goggles and holding a martini.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42365\",\n    \"key\": \"43667\",\n    \"description\": \"a man is wearing goggles and holding a martini in a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9i7tse09X1sitaf4o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11144\",\n    \"key\": \"65222\",\n    \"description\": \"a person with short black hair smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlru7ee4T1sy8u6lo1_500\",\n    \"question\": \"how many men in suits are smiling and bowing their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50905\",\n    \"key\": \"88870\",\n    \"description\": \"two men in suits are smiling and bowing their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrhdij2sp1tmnzbjo1_400\",\n    \"question\": \"what is the man with long hair and a beard playing?\",\n    \"answer\": \"cello\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46970\",\n    \"key\": \"82149\",\n    \"description\": \"a man with long hair and a beard is playing a cello.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuhc5cUJn1rotc20o1_400\",\n    \"question\": \"what is the dog hopping up?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52604\",\n    \"key\": \"19595\",\n    \"description\": \"a dog is hopping up the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkg5leY4e21sof15vo1_500\",\n    \"question\": \"what is the color of the girls?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26532\",\n    \"key\": \"21834\",\n    \"description\": \"two girls dressed in black are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb982i8Liq1slwrsuo1_400\",\n    \"question\": \"what runs off the deck and lands in a bush?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18372\",\n    \"key\": \"37843\",\n    \"description\": \"a dog runs off the deck and lands in a bush.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k66hDtUT1s9lpi5o1_400\",\n    \"question\": \"what is going around the curve with smoke coming from the back tires?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50536\",\n    \"key\": \"54195\",\n    \"description\": \"a blue car is going around a curve with smoke coming from the back tires.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk64ns1uhs1u7382xo1_500\",\n    \"question\": \"what are the pair of men staring out?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43893\",\n    \"key\": \"77564\",\n    \"description\": \"a pair of men are staring out the window while it rains.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5xrhfzrg1s5gcujo1_250\",\n    \"question\": \"what does the man in leather lower?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21212\",\n    \"key\": \"14789\",\n    \"description\": \"a man in leather lowers a guitar gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqo2x3bbpv1uuh0teo1_400\",\n    \"question\": \"how many men start laughing at the same time?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40884\",\n    \"key\": \"89238\",\n    \"description\": \"two men start laughing at the same time.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngatv43vBu1u5on9do1_250\",\n    \"question\": \"what does one man squirt onto another man 's beard?\",\n    \"answer\": \"mustard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27653\",\n    \"key\": \"85687\",\n    \"description\": \"one man squirts mustard onto another man 's beard.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq8eyMlrJ1qkf1cno1_400\",\n    \"question\": \"how many people are acting silly while driving a truck?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33477\",\n    \"key\": \"52199\",\n    \"description\": \"two people are acting silly while driving a truck.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tou9864c1su5apvo1_400\",\n    \"question\": \"what did the man in black throw on fire at the truck?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36534\",\n    \"key\": \"38737\",\n    \"description\": \"the man in black threw a stick on fire at the truck.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbwfjkIRX1u6q9r2o1_250\",\n    \"question\": \"what is the color of the smoking?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12390\",\n    \"key\": \"11953\",\n    \"description\": \"this image is of a lady in black smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xaa8ScfH1rhhof0o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22849\",\n    \"key\": \"24404\",\n    \"description\": \"a woman with brown hair and a fringe is putting a spoon into her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_npmcdtvcab1u4uss5o1_400\",\n    \"question\": \"how many young women smile at each other sweetly during a conversation?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25988\",\n    \"key\": \"71104\",\n    \"description\": \"two young women smile at each other sweetly during a conversation.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0lvzNzJJ1s7vtgpo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44546\",\n    \"key\": \"1745\",\n    \"description\": \"a guy wearing a black shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkajbX6dP1tx8mn0o1_400\",\n    \"question\": \"how many rally car is trying to pass each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41613\",\n    \"key\": \"78352\",\n    \"description\": \"two rally car trying to pass each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8f1rqRt71svcbf4o1_400\",\n    \"question\": \"how many young men are putting on sports uniforms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26991\",\n    \"key\": \"65451\",\n    \"description\": \"two young men are putting on sports uniforms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgkpzxpv01qclz9ho1_1280\",\n    \"question\": \"what is the woman in a turquoise dress cutting up?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6244\",\n    \"key\": \"99900\",\n    \"description\": \"a woman in a turquoise dress is cutting up a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_no16zgrlE81sr8pwbo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48020\",\n    \"key\": \"53970\",\n    \"description\": \"the man is wearing a white shirt and a white hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nisvcdQi5f1sf8gclo1_400\",\n    \"question\": \"what is the man jumping on the steps?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8562\",\n    \"key\": \"41501\",\n    \"description\": \"the man is jumping his skateboard on the steps.\"\n  },\n  {\n    \"video_name\": \"tumblr_np6npym64j1smfzl0o1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34019\",\n    \"key\": \"80999\",\n    \"description\": \"a man in a white shirt with a red tie looks up slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb77zsyMUJ1sn0ok1o1_250\",\n    \"question\": \"what is the young man wearing black is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11570\",\n    \"key\": \"4225\",\n    \"description\": \"the young man wearing black is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng25ke8p0Z1tfe0zmo1_400\",\n    \"question\": \"how many man is dancing in the middle of a group?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11933\",\n    \"key\": \"86647\",\n    \"description\": \"one man is dancing in the middle of a group.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9x50b1Zr1u103uqo1_400\",\n    \"question\": \"how many musicians perform on stage sing a song and dance around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47255\",\n    \"key\": \"26459\",\n    \"description\": \"two musicians perform on stage sing a song and dance around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6y1y14lB1thjxh3o1_500\",\n    \"question\": \"how many woman are performing the dance routine indoors?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26350\",\n    \"key\": \"96610\",\n    \"description\": \"four woman are performing a dance routine indoors.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqrw7Gno11u18qbbo1_400\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48920\",\n    \"key\": \"64427\",\n    \"description\": \"the girl with blonde hair and black lipstick is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh298xxMHt1sqbahto1_500\",\n    \"question\": \"how many women bounce around with white mini lights in the background?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27642\",\n    \"key\": \"91400\",\n    \"description\": \"five women bounce around with white mini lights in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u6lospbz1snu5veo1_500\",\n    \"question\": \"what is the color of the costume?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50155\",\n    \"key\": \"20363\",\n    \"description\": \"a woman wearing a white costume is dancing ballet on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxnl2qMrX1sa0lndo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA686\",\n    \"key\": \"69839\",\n    \"description\": \"a white man and a white girl are praying and burning heating a sword.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfe07vBmKZ1tg9gzmo1_400\",\n    \"question\": \"what is the boy handing to someone?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15672\",\n    \"key\": \"48521\",\n    \"description\": \"a boy is handing a wrapped gift box to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdxk2otyS1sprf2xo1_500\",\n    \"question\": \"where is the young man making funny faces.\",\n    \"answer\": \"? store\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19274\",\n    \"key\": \"29349\",\n    \"description\": \"a young man in a music store is making funny faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb86ccUD2V1rhm6oto1_400\",\n    \"question\": \"what are the man and woman playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50768\",\n    \"key\": \"87130\",\n    \"description\": \"a man and woman are playing guitar while another woman is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_niuspkh0pL1u8dv8eo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2568\",\n    \"key\": \"35476\",\n    \"description\": \"a young black man is talking to a young woman wearing a red shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4969a0oY1qjgxd2o1_400\",\n    \"question\": \"how many banana peel does the man slip after another but lands on his feet?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51327\",\n    \"key\": \"78029\",\n    \"description\": \"a man slips one banana peel after another but lands on his feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fy6nXk3E1rptys0o1_250\",\n    \"question\": \"where is the lot of soccer players running.\",\n    \"answer\": \"? stadium\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20329\",\n    \"key\": \"51273\",\n    \"description\": \"a lot of soccer players is running in the stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xu4w1Lfq1tatohao1_400\",\n    \"question\": \"how many cats are next to the door?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15002\",\n    \"key\": \"40652\",\n    \"description\": \"two cats are next to a door and the cat scratches the wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1d6ntdfo1rkc8b3o2_500\",\n    \"question\": \"how many young men in suits are dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9977\",\n    \"key\": \"92451\",\n    \"description\": \"three young men in suits are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbrxaMA9X1speqgzo1_500\",\n    \"question\": \"what is the color of the flower?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2112\",\n    \"key\": \"68168\",\n    \"description\": \"a hand places an orange flower in the rifle of a soldiers gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepw693vsr1tk2ngvo1_400\",\n    \"question\": \"where is the black dog snuggling.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40304\",\n    \"key\": \"55996\",\n    \"description\": \"a black dog is snuggling in a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagwpaywf01tvbb2ko1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47866\",\n    \"key\": \"450\",\n    \"description\": \"a man in a brown coat is gesturing outside on a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndzecpFkf21u27r3ro1_1280\",\n    \"question\": \"what does the girl accept?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19229\",\n    \"key\": \"65482\",\n    \"description\": \"a girl accepts the coffee cup that the guy gives her,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfrlins4gC1qaucgno1_250\",\n    \"question\": \"where are two men hugging each other.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27256\",\n    \"key\": \"21892\",\n    \"description\": \"two men are hugging each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q8iiFAka1toq16fo1_400\",\n    \"question\": \"how many teenage girls take pose for pictures together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9499\",\n    \"key\": \"28578\",\n    \"description\": \"two teenage girls take pose for pictures together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyed3Aeob1urf1roo1_400\",\n    \"question\": \"what are men carrying with other men in it?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48098\",\n    \"key\": \"56885\",\n    \"description\": \"men are carrying a car with other men in it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelnykQsDv1u3426ro1_500\",\n    \"question\": \"what does the baby hit with his head?\",\n    \"answer\": \"gratings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51860\",\n    \"key\": \"99485\",\n    \"description\": \"a baby hits his bed gratings with his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_noikj9h4iM1uvdkzko1_400\",\n    \"question\": \"what is the guy wearing all white is ripping open?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32898\",\n    \"key\": \"10298\",\n    \"description\": \"a guy wearing all white is ripping his shirt open.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4hcghIrU1tac8jro1_400\",\n    \"question\": \"what does the redhead grab?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33956\",\n    \"key\": \"64088\",\n    \"description\": \"a redhead grabs her hat while a blonde makes a peace sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_nev8ygd3491tmnswbo1_400\",\n    \"question\": \"what is being cuddled by its owner?\",\n    \"answer\": \"kitty\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11880\",\n    \"key\": \"43441\",\n    \"description\": \"the black kitty is being cuddled by its owner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgjlsgNfd1skvcujo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37857\",\n    \"key\": \"95762\",\n    \"description\": \"a man wearing a white shirt is pushing away another man also wearing a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbj47m9ewZ1tkodheo1_250\",\n    \"question\": \"where is the man with a bandage on his head riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30725\",\n    \"key\": \"45642\",\n    \"description\": \"a man with a bandage on his head is riding in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sg39oVrZ1qedx60o1_500\",\n    \"question\": \"what is the person holding and bouncing?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34466\",\n    \"key\": \"98928\",\n    \"description\": \"a person is holding and bouncing a white dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7kpk6wBZ1r0h55so1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14218\",\n    \"key\": \"88558\",\n    \"description\": \"a man wearing a black hat was smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_na213y4pel1tdek48o1_400\",\n    \"question\": \"what is the girl riding through a track and the horse is playing around?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21923\",\n    \"key\": \"43172\",\n    \"description\": \"a girl is riding a horse through a track and the horse is playing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimx36kHCE1u23q7to1_400\",\n    \"question\": \"how many arrows land does the bulls eye on a target see on it?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6146\",\n    \"key\": \"98757\",\n    \"description\": \"a bulls eye on a target sees three arrows land on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nina5vfIdD1u95biro2_400\",\n    \"question\": \"what is the color of the wolf?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52015\",\n    \"key\": \"60896\",\n    \"description\": \"a man is watching a big black wolf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfj08ohqkv1sulnrzo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA313\",\n    \"key\": \"69092\",\n    \"description\": \"a person with a red top and sunglasses turns around from the computer and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk22l3T7h61u2mmn8o1_400\",\n    \"question\": \"what raised up and looked in the window?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35098\",\n    \"key\": \"43464\",\n    \"description\": \"a cat raised up and looked in a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmmafYKjg1smipaso1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15834\",\n    \"key\": \"20608\",\n    \"description\": \"a man is licking his lips and wearing a white hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv80p45u21sewywlo1_250\",\n    \"question\": \"how many women are smiling at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15981\",\n    \"key\": \"39505\",\n    \"description\": \"these two women are smiling at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpreqZ6fr1unq0gjo1_250\",\n    \"question\": \"what is driving in the mountain sand?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36454\",\n    \"key\": \"46570\",\n    \"description\": \"a red car is driving in the mountain sand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sr0oUI821rkywpto1_1280\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41003\",\n    \"key\": \"98104\",\n    \"description\": \"a girl with black dress is doing movements in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacgnkjiPg1thrruso1_500\",\n    \"question\": \"what is someone pouring from a jug into a cup?\",\n    \"answer\": \"milk\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48095\",\n    \"key\": \"46224\",\n    \"description\": \"someone is pouring milk from a jug into a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90rfkkUu61rzgfigo1_500\",\n    \"question\": \"what is the girl waving holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31712\",\n    \"key\": \"99504\",\n    \"description\": \"a girl is waving her arm whilst holding microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyfxvKq0p1rwwygfo1_500\",\n    \"question\": \"how many young guys with caps are moving their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7572\",\n    \"key\": \"92839\",\n    \"description\": \"two young guys with caps are moving their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nev5jcwSOk1u25ovvo1_400\",\n    \"question\": \"what is going through street with the lights on?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46101\",\n    \"key\": \"63427\",\n    \"description\": \"a gray car is going through street with the lights on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafvslrxEZ1tx8mn0o1_400\",\n    \"question\": \"what is racing down an outdoor track?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33704\",\n    \"key\": \"76974\",\n    \"description\": \"a motorcycle is racing down an outdoor track.\"\n  },\n  {\n    \"video_name\": \"tumblr_napca8xCGy1tewcf7o1_400\",\n    \"question\": \"how many guys starts looking to the girl?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9075\",\n    \"key\": \"28031\",\n    \"description\": \"four guys starts looking to a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhfe4lRQyu1u6mtaro1_250\",\n    \"question\": \"where does the man smile up at someone ca n't see.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35508\",\n    \"key\": \"16461\",\n    \"description\": \"a man in bed smiles up at someone ca n't see.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7cq0YLOw1u11u8po1_500\",\n    \"question\": \"where are two people dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24540\",\n    \"key\": \"97738\",\n    \"description\": \"two people are dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na02l5mrrH1tgetb4o1_400\",\n    \"question\": \"what is this feeding a cat and a dog?\",\n    \"answer\": \"blackbird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6047\",\n    \"key\": \"82095\",\n    \"description\": \"this is a blackbird feeding a cat and a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7jjumZkp1rpuigeo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34481\",\n    \"key\": \"6010\",\n    \"description\": \"a man wearing black shirt and a hat is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmsu1C2LZ1u77r94o1_250\",\n    \"question\": \"what is being blown down the road by the storm?\",\n    \"answer\": \"trampoline\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33987\",\n    \"key\": \"5531\",\n    \"description\": \"a trampoline is being blown down the road by the storm.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw2qphCJA1uuh2j1o1_500\",\n    \"question\": \"what is sliding backwards on the wet street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48442\",\n    \"key\": \"67719\",\n    \"description\": \"a car is sliding backwards on a wet street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8dp4ELQI1tkatv1o1_500\",\n    \"question\": \"how many friends is this image of with microphones poking each other playfully?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47635\",\n    \"key\": \"93303\",\n    \"description\": \"this image is of two friends with microphones poking each other playfully.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqs999ZRhM1uxceulo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44516\",\n    \"key\": \"26066\",\n    \"description\": \"the man walks towards another man in black.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq1sabA971unh5yxo1_400\",\n    \"question\": \"what tried to grab the bucket?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4237\",\n    \"key\": \"46615\",\n    \"description\": \"an elephant tried to grab a bucket.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcoyrI1im1rllc9co1_1280\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32466\",\n    \"key\": \"44817\",\n    \"description\": \"a group of people in black clothing are dancing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwoxqjLik1tit9eco1_r1_500\",\n    \"question\": \"where is the person singing.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19350\",\n    \"key\": \"95676\",\n    \"description\": \"a person is singing in a red hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1cf3Neme1qdj4eqo1_400\",\n    \"question\": \"where does the young man do a back somersault.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18524\",\n    \"key\": \"41718\",\n    \"description\": \"a young man does a back somersault in the gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk38eaBV6Q1tci3xlo1_400\",\n    \"question\": \"what is the man wearing a red shirt is holding?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20786\",\n    \"key\": \"59416\",\n    \"description\": \"a man wearing a red shirt is holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndv4x7AMcL1s2ksddo1_r1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50929\",\n    \"key\": \"11328\",\n    \"description\": \"the boy wearing a black shirt is making hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf17coVdO1ts0kzio1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16478\",\n    \"key\": \"70558\",\n    \"description\": \"a girl in a white shirt is dancing in a tan room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4huuCRY11tr8rxho1_400\",\n    \"question\": \"what is the boy jumping off into a large lake?\",\n    \"answer\": \"scaffolding\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16923\",\n    \"key\": \"28325\",\n    \"description\": \"a boy is jumping off a scaffolding into a large lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nls6piuLZx1rm97r4o1_250\",\n    \"question\": \"what is the color of the sunglasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46593\",\n    \"key\": \"84529\",\n    \"description\": \"a young boy with black sunglasses is smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqakeYaVG1u0np6zo1_250\",\n    \"question\": \"what does the man pull off the side of a vehicle?\",\n    \"answer\": \"sheet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22537\",\n    \"key\": \"1863\",\n    \"description\": \"a man pulls a plastic sheet off the side of a vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hw28peTq1s61fbqo1_400\",\n    \"question\": \"what is swimming very slowly in some water?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37077\",\n    \"key\": \"52981\",\n    \"description\": \"a red fish is swimming very slowly in some water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd93viKo511shv03qo1_r6_400\",\n    \"question\": \"where is the young girl dancing.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8553\",\n    \"key\": \"11371\",\n    \"description\": \"a young girl is dancing in her bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncy4plCMec1tm5nq5o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52038\",\n    \"key\": \"6674\",\n    \"description\": \"a woman is wearing a black jacket and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwjbtR2Jj1qkwapco1_400\",\n    \"question\": \"what is the man standing up and throwing and yelling angrily at a woman?\",\n    \"answer\": \"chair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34447\",\n    \"key\": \"83539\",\n    \"description\": \"a man is standing up and throwing a chair and yelling angrily at a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbty9s2XML1tbfhyyo1_250\",\n    \"question\": \"how many girls in uniform are dancing and smiling?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32344\",\n    \"key\": \"1896\",\n    \"description\": \"three girls in uniform are dancing and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzuosHwut1s71nvbo1_400\",\n    \"question\": \"how many men in white suits stand on a stage with a lady in long sparkly dress?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22029\",\n    \"key\": \"24459\",\n    \"description\": \"two men in white suits stand on a stage with a lady in long sparkly dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngw762RrkF1u4dor7o1_1280\",\n    \"question\": \"how many men with surf boards celebrate in the water?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45954\",\n    \"key\": \"77354\",\n    \"description\": \"two men with surf boards celebrate in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nekejw2Vnh1tpgapwo1_500\",\n    \"question\": \"how many guys looked at the computer and laughed?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50074\",\n    \"key\": \"77959\",\n    \"description\": \"two guys looked at a computer and laughed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat8wfWBFb1taq9qwo1_250\",\n    \"question\": \"what is the woman with red hair wearing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9586\",\n    \"key\": \"81591\",\n    \"description\": \"a woman with red hair is wearing a yellow shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxcmw74K91u8uroco1_250\",\n    \"question\": \"what is the little girl at an aquarium and swims by?\",\n    \"answer\": \"seal\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51481\",\n    \"key\": \"2106\",\n    \"description\": \"a little girl is at an aquarium and a seal swims by.\"\n  },\n  {\n    \"video_name\": \"tumblr_njf93legHY1rblmq9o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15963\",\n    \"key\": \"84019\",\n    \"description\": \"young man with red hair is grinning and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8wxp8WPB1r6oiiao1_250\",\n    \"question\": \"how many men are dancing around each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33708\",\n    \"key\": \"6775\",\n    \"description\": \"two men are dancing around each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ax63tZVO1qc8xs9o1_400\",\n    \"question\": \"what looks beautiful at the night?\",\n    \"answer\": \"building\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29247\",\n    \"key\": \"24312\",\n    \"description\": \"the old building looks beautiful at the night.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckn34k0481tp4h5xo1_400\",\n    \"question\": \"how many people are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4834\",\n    \"key\": \"59461\",\n    \"description\": \"two people are talking and they look at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdihsdk1c1tzzks2o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19790\",\n    \"key\": \"53195\",\n    \"description\": \"the guy on the stage with the white shirt and the green spotlight looks as if he is in pain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwp42fmNd1spabbwo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34633\",\n    \"key\": \"53392\",\n    \"description\": \"a man with a white shirt is laughing on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqpemb0oal1tj3r8so1_400\",\n    \"question\": \"what drives towards the big pink balloon,\",\n    \"answer\": \"which bursts as the car approaches it ? car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52687\",\n    \"key\": \"40151\",\n    \"description\": \"a yellow car drives towards a big pink balloon,\"\n  },\n  {\n    \"video_name\": \"tumblr_n90gw6Akfm1rly19co1_500\",\n    \"question\": \"what is the soccer player keeping away?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13754\",\n    \"key\": \"93055\",\n    \"description\": \"the soccer player is keeping the ball away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncg765LMOZ1tmaii4o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31673\",\n    \"key\": \"7519\",\n    \"description\": \"a man in a blue jacket starts to laugh hard.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngio6fsQ8p1ssgyoro1_400\",\n    \"question\": \"what put its paw on a hand and the hand petted the cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24647\",\n    \"key\": \"2019\",\n    \"description\": \"a cat put its paw on a hand and the hand petted the cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nompyfnbMq1rbddn1o1_500\",\n    \"question\": \"what is five men on their knees gyrating and pulling up?\",\n    \"answer\": \"shirts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10119\",\n    \"key\": \"83478\",\n    \"description\": \"five men on their knees is gyrating and pulling their shirts up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvqyftJPT1th9cdzo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14620\",\n    \"key\": \"96290\",\n    \"description\": \"two girl with black hair are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsp5rS8rC1r78dgto1_400\",\n    \"question\": \"where is the man in a towel looking.\",\n    \"answer\": \"? locker\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26845\",\n    \"key\": \"5809\",\n    \"description\": \"a man in a towel is looking in his locker.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndy7ccfmXN1rfibsxo1_400\",\n    \"question\": \"what gets blown up by grenades?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45967\",\n    \"key\": \"62905\",\n    \"description\": \"a stuffed teddy bear gets blown up by grenades.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq2ljxqpt1sqatvxo1_250\",\n    \"question\": \"what does the door open and a hand grabs out?\",\n    \"answer\": \"money\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20320\",\n    \"key\": \"54229\",\n    \"description\": \"the door opens and a hand grabs out money.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0mw3gkjB1qlxas3o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9698\",\n    \"key\": \"68298\",\n    \"description\": \"a man in black is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1p5r1Cso1rbfulyo1_500\",\n    \"question\": \"how many guys is fighting in the street while at a guy its sparks fly from his face?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3599\",\n    \"key\": \"83657\",\n    \"description\": \"two guys is fighting in a street while at a guy its sparks fly from his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9vp9aJut1sdbrm9o1_400\",\n    \"question\": \"how many boys on a stage are walking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26506\",\n    \"key\": \"33629\",\n    \"description\": \"two boys on a stage are walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngite8IUNJ1r5uqe5o1_500\",\n    \"question\": \"what is playing around in the box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8816\",\n    \"key\": \"83208\",\n    \"description\": \"a cat is playing around in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhd5mguzE01sq0o5eo1_250\",\n    \"question\": \"what did the red head woman and raises her eyebrows as she turns her head?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25454\",\n    \"key\": \"20456\",\n    \"description\": \"a red headed woman wearing a leather jacket and round sunglasses raises her eyebrows as she turns her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmifhlT0vB1u60j96o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5461\",\n    \"key\": \"8894\",\n    \"description\": \"this image is of a man in a white shirt looking sad.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng476zEkYt1s7qa4ao1_500\",\n    \"question\": \"how many people in suits with microphones are dancing and waving their arms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22841\",\n    \"key\": \"99952\",\n    \"description\": \"two people in suits with microphones are dancing and waving their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cbjlJbp01tf6zmyo1_250\",\n    \"question\": \"what is the guy looking at someone and holding?\",\n    \"answer\": \"backpack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2527\",\n    \"key\": \"1305\",\n    \"description\": \"a guy is looking at someone and holding a backpack.\"\n  },\n  {\n    \"video_name\": \"tumblr_negrp50MCD1rmfypqo1_500\",\n    \"question\": \"how many young men with brown hair are smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51062\",\n    \"key\": \"97810\",\n    \"description\": \"two young men with brown hair are smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh777pWSdg1r9qdkno1_400\",\n    \"question\": \"what does the girl in a white hat sip from a straw?\",\n    \"answer\": \"juice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11310\",\n    \"key\": \"41257\",\n    \"description\": \"a girl in a white hat sips orange juice from a straw.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxxwoxpjy1rv5gmso1_400\",\n    \"question\": \"how many men are doing skateboarding tricks on a half pipe near the water?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32983\",\n    \"key\": \"77195\",\n    \"description\": \"two men are doing skateboarding tricks on a half pipe near the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vicp8VBy1t4pld3o1_400\",\n    \"question\": \"what is the color of the drink?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8471\",\n    \"key\": \"31607\",\n    \"description\": \"a woman is chugging a brown colored drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nce30kjLYV1qfsrsoo1_500\",\n    \"question\": \"what is the young woman eating?\",\n    \"answer\": \"berries\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14662\",\n    \"key\": \"49170\",\n    \"description\": \"a young woman is eating small red berries.\"\n  },\n  {\n    \"video_name\": \"tumblr_naoi1yLJAq1s034x5o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48647\",\n    \"key\": \"50545\",\n    \"description\": \"a boy with dark brown hair wears a gray shirt and smirks,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lnbnMCrY1rkpicyo1_400\",\n    \"question\": \"what is the woman unpacking from a box?\",\n    \"answer\": \"towels\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21114\",\n    \"key\": \"86191\",\n    \"description\": \"a woman is unpacking towels from a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9bf9Vddz1u25ovvo1_400\",\n    \"question\": \"where is the white car running.\",\n    \"answer\": \"? highway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11874\",\n    \"key\": \"63432\",\n    \"description\": \"a white car is running fast in a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqotedLtZG1tjz3ato1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4781\",\n    \"key\": \"64601\",\n    \"description\": \"a white girl with brown hair is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nch7bgbitX1ty31s3o1_250\",\n    \"question\": \"how many men are stood gesturing to the crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28555\",\n    \"key\": \"86718\",\n    \"description\": \"two men are stood gesturing to the crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2rewR6IG1rhzqaho1_400\",\n    \"question\": \"how many young women are talking and laughing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9551\",\n    \"key\": \"101155\",\n    \"description\": \"two young women are talking and laughing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpumpvxAx1tawgedo2_500\",\n    \"question\": \"how many boys with headphones and mics in front of them are laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13769\",\n    \"key\": \"91438\",\n    \"description\": \"three boys with headphones and mics in front of them are laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8hdf8Ks61s8gc8po1_500\",\n    \"question\": \"what is the guy singing and gripping?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1946\",\n    \"key\": \"49426\",\n    \"description\": \"a guy is singing and gripping the microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc1qnKRyZ1tvtr5do1_250\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21635\",\n    \"key\": \"53196\",\n    \"description\": \"a white man with white cap is jumping.\"\n  },\n  {\n    \"video_name\": \"tumblr_mql1pvhNCl1qeb8xzo1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5127\",\n    \"key\": \"24695\",\n    \"description\": \"a man in a red coat is waving and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0usjJWj41rebzpvo1_400\",\n    \"question\": \"where is the man sitting and going in and out of focus.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3020\",\n    \"key\": \"36898\",\n    \"description\": \"a man is sitting in a dark room and going in and out of focus.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lh8xQHCe1seb31ro1_500\",\n    \"question\": \"where are the group of men waiving.\",\n    \"answer\": \"? stadium\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9941\",\n    \"key\": \"91548\",\n    \"description\": \"a group of men are waiving in a stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mhncAnrG1tfer0ho1_400\",\n    \"question\": \"what pats the head of an angry cat?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49904\",\n    \"key\": \"15516\",\n    \"description\": \"a dog pats the head of an angry cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak8paCoDj1ts7wbfo1_400\",\n    \"question\": \"what is the man wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49817\",\n    \"key\": \"46117\",\n    \"description\": \"a man is wearing a strange hat that ties under his chin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksdtqXSNt1unkjfko1_400\",\n    \"question\": \"what is the beautiful man with long hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9423\",\n    \"key\": \"32100\",\n    \"description\": \"a beautiful man with long hair is playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_na93v8P17F1rnq510o1_500\",\n    \"question\": \"how many men dance while holding mics and one of them spins his necklace around his neck?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3966\",\n    \"key\": \"50534\",\n    \"description\": \"two men dance while holding mics and one of them spins his necklace around his neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x4u9gEFy1s2wg51o1_500\",\n    \"question\": \"what is leaning over the fence and licking?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24855\",\n    \"key\": \"68398\",\n    \"description\": \"a horse is leaning over a fence and licking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2wphU00c1ts0qzho1_1280\",\n    \"question\": \"how many people are running at each other and then hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38236\",\n    \"key\": \"33406\",\n    \"description\": \"two people are running at each other and then hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcj27AOTX1tp9bieo1_250\",\n    \"question\": \"how many young girls are wearing sunglasses and hats?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49328\",\n    \"key\": \"6762\",\n    \"description\": \"two young girls are wearing sunglasses and hats.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncixxdsOHf1sxy0d0o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15259\",\n    \"key\": \"35676\",\n    \"description\": \"the man grabs a black hat and puts it on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk61a04KIs1tto5o6o1_250\",\n    \"question\": \"how many men is it staring at each other and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13372\",\n    \"key\": \"39549\",\n    \"description\": \"it is two men staring at each other and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbuocrieZ1s5t0x8o1_250\",\n    \"question\": \"how many guys are entering the hotel on the door?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37781\",\n    \"key\": \"85591\",\n    \"description\": \"two guys are entering a hotel on the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_noeb5a1D4z1qzh9rto1_400\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27247\",\n    \"key\": \"65285\",\n    \"description\": \"a man in a white coat use a tambourine and sings into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3exsMV8S1qfpmkno1_500\",\n    \"question\": \"how many people is hugging and smiling while the man is holding an instrument in his hand?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50605\",\n    \"key\": \"68513\",\n    \"description\": \"two people hugging and smiling while the man is holding an instrument in his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxk86wJjk1qm4h7ko1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38776\",\n    \"key\": \"24707\",\n    \"description\": \"a girl with blue shirt thinks about something then covers her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndi56898WC1s52tx6o1_500\",\n    \"question\": \"how many fingers does the young lady hold up?\",\n    \"answer\": \"seven\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19675\",\n    \"key\": \"86080\",\n    \"description\": \"the young lady holds up seven fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_natxt8QoeK1stw21io1_500\",\n    \"question\": \"where is the man getting splashed by water.\",\n    \"answer\": \"? shower\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44900\",\n    \"key\": \"58376\",\n    \"description\": \"a man in the shower is getting splashed by water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nep1zhFsa81tywrtso1_400\",\n    \"question\": \"what is the girl with short hair and makeup on her face wearing and moving?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43572\",\n    \"key\": \"32050\",\n    \"description\": \"a girl with short hair and makeup on her face is wearing glasses and moving.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqagz6lei1tdjuqvo1_400\",\n    \"question\": \"what is the guy tickling a turtle 's shell and is squirming away?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42129\",\n    \"key\": \"15374\",\n    \"description\": \"a guy is tickling a turtle 's shell and the turtle is squirming away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndro45f3DA1qhn9jdo1_400\",\n    \"question\": \"what tries to retrieve the ball from the pool as another dog bites its tail?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17964\",\n    \"key\": \"81160\",\n    \"description\": \"a dog tries to retrieve a ball from the pool as another dog bites its tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav0bbGnOb1snbe4ao1_400\",\n    \"question\": \"what is the man dressed and military uniform and holding?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20840\",\n    \"key\": \"65875\",\n    \"description\": \"a man is dressed and military uniform and holding a large gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvezjw04N1unmn69o1_400\",\n    \"question\": \"how many girls in pink turn and pose?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26939\",\n    \"key\": \"24800\",\n    \"description\": \"three girls in pink turn and pose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6q7aAfw31r4ghsso1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41543\",\n    \"key\": \"39311\",\n    \"description\": \"a man in a black shirt is crying and puts his hand over his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_njabihiB4w1tuh8exo1_400\",\n    \"question\": \"what is the color of the boots?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47042\",\n    \"key\": \"77\",\n    \"description\": \"a woman in long white boots and a short sparkly dress is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzxc0zvYL1r82feqo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28653\",\n    \"key\": \"20566\",\n    \"description\": \"a woman in a black hat and sunglasses is lifting up her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuhc5cUJn1rotc20o1_400\",\n    \"question\": \"what is jumping up the stairs and then he turns round when he gets to the top?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28465\",\n    \"key\": \"19595\",\n    \"description\": \"a dog is jumping up the stairs and then he turns round when he gets to the top.\"\n  },\n  {\n    \"video_name\": \"tumblr_ms4kvoOQeL1rgryh8o1_500\",\n    \"question\": \"what is the color of the cape?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31252\",\n    \"key\": \"24942\",\n    \"description\": \"a woman in a red hooded cape with dark gloves removes her mask.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5olbZaM81rs0blno1_500\",\n    \"question\": \"what is the color of the towel?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7765\",\n    \"key\": \"95390\",\n    \"description\": \"a girl is wearing a yellow towel and winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hl6ky3FK1qk377so1_400\",\n    \"question\": \"where is the person on a yellow motorcycle riding.\",\n    \"answer\": \"? lane\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13219\",\n    \"key\": \"84923\",\n    \"description\": \"a person on a yellow motorcycle is riding in the wrong lane.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee10oHKIS1taytvao1_400\",\n    \"question\": \"where is the man dancing while another man dances in another room.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA2957\",\n    \"key\": \"58994\",\n    \"description\": \"a man is dancing in an empty room while another man dances in another room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0vxeyviE1rco9sno1_250\",\n    \"question\": \"what is the guy removing from around his neck?\",\n    \"answer\": \"scarf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6120\",\n    \"key\": \"17322\",\n    \"description\": \"a guy is removing his scarf from around his neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9f9xUSun1u3u3o3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17777\",\n    \"key\": \"79138\",\n    \"description\": \"man with white shirt is playing basketball and jumping.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngx8mtOFt51rdm91ko1_400\",\n    \"question\": \"what is someone holding under its front arms and wiggling it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50582\",\n    \"key\": \"32691\",\n    \"description\": \"someone is holding a cat under its front arms and wiggling it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrt5nXvpv1tll0p8o1_400\",\n    \"question\": \"how many men are making faces and wagging their tongues?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43801\",\n    \"key\": \"78962\",\n    \"description\": \"two men are making faces and wagging their tongues.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5d7bNBng1u4gijho1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8777\",\n    \"key\": \"3905\",\n    \"description\": \"a guy wearing a blue jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_nevu1x7R4F1tzeksuo1_400\",\n    \"question\": \"how many very handsome boys are into the black car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50644\",\n    \"key\": \"67414\",\n    \"description\": \"two very handsome boys are into a black car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd321grlU71tsxw1zo1_400\",\n    \"question\": \"what is the color of the jerseys?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43656\",\n    \"key\": \"66166\",\n    \"description\": \"women in red jerseys run across a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncizfxCBrD1tk8jwao1_400\",\n    \"question\": \"what is using the snow blower to blow snow as a human?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39065\",\n    \"key\": \"60971\",\n    \"description\": \"a cat is using a snow blower to blow snow as a human.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhu5ez5Nx21tdjuqvo1_400\",\n    \"question\": \"what is trying to jump onto the couch?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18976\",\n    \"key\": \"18965\",\n    \"description\": \"a dog is trying to jump onto a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0esqISos1tx8mn0o1_400\",\n    \"question\": \"what is the person crashing while going around a curve?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42458\",\n    \"key\": \"52721\",\n    \"description\": \"a person is crashing a motorcycle while going around a curve.\"\n  },\n  {\n    \"video_name\": \"tumblr_neanhluuup1u26rdio1_500\",\n    \"question\": \"what is the color of the helmet?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8993\",\n    \"key\": \"58044\",\n    \"description\": \"a crazy man with white helmet is making danger pose while flying with bike.\"\n  },\n  {\n    \"video_name\": \"tumblr_nre0r7j8Cd1r9n1lyo1_400\",\n    \"question\": \"what are three people playing on stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50692\",\n    \"key\": \"16346\",\n    \"description\": \"three people are playing guitar on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfho038AlR1su2ypvo1_400\",\n    \"question\": \"how many men are caressing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50471\",\n    \"key\": \"45965\",\n    \"description\": \"two men are caressing and one is trying to kiss the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhsrguyVn81t63i8io1_500\",\n    \"question\": \"what is the person shooting?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16761\",\n    \"key\": \"56761\",\n    \"description\": \"a person is shooting a gun as they enter a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_no9uomroFk1rndm3wo1_400\",\n    \"question\": \"how many large men are walking across the stage?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1948\",\n    \"key\": \"39073\",\n    \"description\": \"four large men are walking across a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzqaupSSA1u96zdso1_500\",\n    \"question\": \"what are two people playing together in a room?\",\n    \"answer\": \"instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7723\",\n    \"key\": \"70130\",\n    \"description\": \"two people are playing instruments together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njv3g9ZEQV1ts13wdo1_250\",\n    \"question\": \"how many man is reading?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38789\",\n    \"key\": \"75984\",\n    \"description\": \"one man is reading and the other is drinking on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2hhrvC6B1slj978o1_400\",\n    \"question\": \"what is standing under the faucet and drinking from it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23502\",\n    \"key\": \"19523\",\n    \"description\": \"a cat is standing under a faucet and drinking from it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbl18fV1iz1tjqkt0o1_400\",\n    \"question\": \"what is burning on the table?\",\n    \"answer\": \"candle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35046\",\n    \"key\": \"64938\",\n    \"description\": \"a candle is burning on a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_navtszVYAv1tys35ko1_250\",\n    \"question\": \"how many young men are singing and playing guitars?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31292\",\n    \"key\": \"15994\",\n    \"description\": \"two young men are singing and playing guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5hg7loxL1u0z49so1_250\",\n    \"question\": \"what is the guy?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49429\",\n    \"key\": \"2083\",\n    \"description\": \"a guy is a backwards hat is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3jlqPzkI1skv761o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42817\",\n    \"key\": \"29618\",\n    \"description\": \"a boy with short hair wears a red shirt and say something while smiling,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbf8q10uxS1qagvw9o1_250\",\n    \"question\": \"where did the man stand moving his body.\",\n    \"answer\": \"? bar\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11514\",\n    \"key\": \"41327\",\n    \"description\": \"a man stood moving his body in a bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqscoi71bd1upirrro1_500\",\n    \"question\": \"how many young men are sitting and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16899\",\n    \"key\": \"57842\",\n    \"description\": \"two young men are sitting and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr6qo41QuT1r2ersdo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39924\",\n    \"key\": \"39355\",\n    \"description\": \"a man dressed in black with makeup is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2v6r00g21unqpa3o1_250\",\n    \"question\": \"where is the man and smiling very cheesy.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3879\",\n    \"key\": \"24223\",\n    \"description\": \"a man is in a car and smiling very cheesy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyz2w3sCH1u8371so1_400\",\n    \"question\": \"how many young people are looking at the corpse?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12094\",\n    \"key\": \"51215\",\n    \"description\": \"two young people are looking at a corpse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq8rxjMRd1tt81apo1_400\",\n    \"question\": \"how many men have the conversation?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9836\",\n    \"key\": \"59808\",\n    \"description\": \"two men have a conversation and one walks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nchx7oOJmF1rybkoro1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35030\",\n    \"key\": \"99117\",\n    \"description\": \"a girl with dark brown hair is frowning and opening her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dxxv9ONq1sk96t7o1_400\",\n    \"question\": \"what pulled the dog around by the dog 's lead?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38068\",\n    \"key\": \"59286\",\n    \"description\": \"a cat pulled a dog around by the dog 's lead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebhvpBUgh1rgxfumo1_250\",\n    \"question\": \"how many men in white suits are singing together?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51205\",\n    \"key\": \"1163\",\n    \"description\": \"four men in white suits are singing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwp8uMMLW1tco118o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7558\",\n    \"key\": \"9696\",\n    \"description\": \"a man in a white shirt is dancing and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nov6tduqos1uvi3rjo1_400\",\n    \"question\": \"what is looking sad is sitting with purple wings on their ears?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5217\",\n    \"key\": \"54480\",\n    \"description\": \"a dog looking sad is sitting with purple wings on their ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpuisFRl11t2mzx0o1_400\",\n    \"question\": \"how many man is wearing red looks at another and laughs?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20283\",\n    \"key\": \"82197\",\n    \"description\": \"one man wearing red looks at another and laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqemmiLRm21u3u66ko1_400\",\n    \"question\": \"how many boxers are arguing on the ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41395\",\n    \"key\": \"64429\",\n    \"description\": \"two boxers are arguing on the ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfihtkUgrh1u316two1_500\",\n    \"question\": \"how many people is wearing black and white are standing and laughing?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18450\",\n    \"key\": \"5806\",\n    \"description\": \"four people wearing black and white are standing and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtams4V1k1u2ep9yo1_500\",\n    \"question\": \"what are going the road at night in front of a building?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43399\",\n    \"key\": \"61078\",\n    \"description\": \"multiple cars are going the road at night in front of a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk75gnN9yC1sht3fmo1_250\",\n    \"question\": \"where is the chameleon swinging.\",\n    \"answer\": \"? rope\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44985\",\n    \"key\": \"11849\",\n    \"description\": \"a chameleon is swinging in a white rope.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmhq44qmI1tfej6zo1_400\",\n    \"question\": \"what is the guy playing confidently while boasting a puffy hairdo?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31077\",\n    \"key\": \"33852\",\n    \"description\": \"a guy is playing the guitar confidently while boasting a puffy hairdo.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0usjJWj41rebzpvo1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22997\",\n    \"key\": \"36898\",\n    \"description\": \"a man in a black outfit becomes blurry.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fwbfEVPD1qaltrro1_500\",\n    \"question\": \"what does the man get pushed into his face?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47401\",\n    \"key\": \"95976\",\n    \"description\": \"the man gets his tie pushed into his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxj24nYDk1rhiuffo1_400\",\n    \"question\": \"what is the young man flipping in the air?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36970\",\n    \"key\": \"29599\",\n    \"description\": \"a young man is flipping his top hat in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7uylrYdY1tz9jaqo1_250\",\n    \"question\": \"what does the man kick?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46260\",\n    \"key\": \"8190\",\n    \"description\": \"a man kicks a ball that bounces off an opponent 's head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncx9u3ivlb1tdmffyo1_400\",\n    \"question\": \"what does the big dog let out of a cage?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9737\",\n    \"key\": \"101281\",\n    \"description\": \"a big dog lets a little dog out of a cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0fz8rTT21rc6zqzo1_250\",\n    \"question\": \"how many women are singing dancing and shaking their shoulders and hips on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40922\",\n    \"key\": \"7769\",\n    \"description\": \"two women are singing dancing and shaking their shoulders and hips on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_np7428zJXS1sjggsso1_400\",\n    \"question\": \"where are two men running.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17355\",\n    \"key\": \"79249\",\n    \"description\": \"two men are running together in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncnclh0Da61sqeumlo1_250\",\n    \"question\": \"what is the color of the machine?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11706\",\n    \"key\": \"20525\",\n    \"description\": \"a woman who is dressed in all black lies down on a black machine while it is snowing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nreudiOfno1tx8mn0o1_400\",\n    \"question\": \"what is skidding off the racetrack while taking a corner?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25363\",\n    \"key\": \"78282\",\n    \"description\": \"a racing car is skidding off the racetrack while taking a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_npj5kigFw31rszhaco1_1280\",\n    \"question\": \"how many people are roller skating around the rink?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12424\",\n    \"key\": \"82150\",\n    \"description\": \"three people are roller skating around the rink.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e8daAb7o1tozex2o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43583\",\n    \"key\": \"33800\",\n    \"description\": \"a man with a red shirt jumps onto a man with white shirt but falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_noibtowlNT1tum256o1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43322\",\n    \"key\": \"48578\",\n    \"description\": \"a guy wearing a light gray suit is adjusting the position of his sunglasses that he has on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhfkba24Lg1qgd51ro1_250\",\n    \"question\": \"how many men are waling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25998\",\n    \"key\": \"12591\",\n    \"description\": \"two men are waling and they embrace each other on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1otxgnPQ1rlmonbo1_250\",\n    \"question\": \"what did the person feed through the window?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19284\",\n    \"key\": \"13333\",\n    \"description\": \"a person fed a bird through the window.\"\n  },\n  {\n    \"video_name\": \"tumblr_npchuhU40V1s4dp9lo1_500\",\n    \"question\": \"what is the woman,\",\n    \"answer\": \"wearing , is singing with a microphone ? dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37919\",\n    \"key\": \"61840\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_nabwvrGgUt1rmv3nuo1_500\",\n    \"question\": \"how many guys are carrying another guy through a large purple sheet?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38759\",\n    \"key\": \"70098\",\n    \"description\": \"three guys are carrying another guy through a large purple sheet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0e2zazzA1tf81rso1_400\",\n    \"question\": \"what are men sitting down are pulling on their socks and strapping?\",\n    \"answer\": \"pants\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18596\",\n    \"key\": \"38543\",\n    \"description\": \"men sitting down are pulling on their socks and strapping their pants.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng18v4iOw91u4hyr2o1_500\",\n    \"question\": \"how many women are clapping and wearing different clothes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51301\",\n    \"key\": \"94617\",\n    \"description\": \"two women are clapping and wearing different clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncigafqVwf1tgsaito1_400\",\n    \"question\": \"what is banging its head on the side of the marionette stage?\",\n    \"answer\": \"puppet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47768\",\n    \"key\": \"42920\",\n    \"description\": \"a puppet is banging its head on the side of the marionette stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngst4bKY2q1tk9glao1_400\",\n    \"question\": \"what stands in front of a house with many windows?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45373\",\n    \"key\": \"100723\",\n    \"description\": \"A tree stands in front of a house with many windows.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn8bxrdwTP1sht3fmo1_250\",\n    \"question\": \"what loses its camouflage and swims away?\",\n    \"answer\": \"octopus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52879\",\n    \"key\": \"26655\",\n    \"description\": \"an octopus loses its camouflage and swims away.\"\n  },\n  {\n    \"video_name\": \"tumblr_na44dr5Omn1tjpvwpo1_250\",\n    \"question\": \"how many men are staring at other men walking by?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19753\",\n    \"key\": \"47137\",\n    \"description\": \"two men are staring at other men walking by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes40rmxPE1u3pzj0o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34949\",\n    \"key\": \"53059\",\n    \"description\": \"a man in a white shirt is singing and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8urd6PMiY1tgkdkbo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5571\",\n    \"key\": \"74900\",\n    \"description\": \"a yellow cat is sitting on a stool,\"\n  },\n  {\n    \"video_name\": \"tumblr_mepd430TAF1rosr1ho1_500\",\n    \"question\": \"how many people are watching something on a phone and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19286\",\n    \"key\": \"88804\",\n    \"description\": \"two people are watching something on a phone and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nir1imp3Hd1tkwbico1_400\",\n    \"question\": \"what is moving and showing the clear sky with empty fields of grass?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37664\",\n    \"key\": \"4655\",\n    \"description\": \"a vehicle is moving and showing a clear sky with empty fields of grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2spimDis1tmrnl8o1_500\",\n    \"question\": \"what does this show on a tea cup?\",\n    \"answer\": \"flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40545\",\n    \"key\": \"51156\",\n    \"description\": \"this shows an artist painting flowers on a tea cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkk5d5OAP41u6hnr3o1_500\",\n    \"question\": \"how many people is laying on the beach are kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4776\",\n    \"key\": \"72515\",\n    \"description\": \"two people laying on the beach are kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8smhsNjcz1t6so35o3_400\",\n    \"question\": \"how many beautiful mermaids are swimming together underwater?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40184\",\n    \"key\": \"52021\",\n    \"description\": \"three beautiful mermaids are swimming together underwater.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq4kot19WJ1tpg4boo1_500\",\n    \"question\": \"what is rolling around the car park and knocks into a car?\",\n    \"answer\": \"wheel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36404\",\n    \"key\": \"83136\",\n    \"description\": \"a wheel is rolling around a car park and knocks into a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrj3ihiSvs1u2xxbqo1_1280\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25530\",\n    \"key\": \"61662\",\n    \"description\": \"a girl with black hair turns her head to look at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0ggmHHk21tq3jd9o1_400\",\n    \"question\": \"what are changing their aspect from green?\",\n    \"answer\": \"vegetables\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11421\",\n    \"key\": \"53160\",\n    \"description\": \"some vegetables are changing their aspect from green.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqi9pDqn61r3fht5o1_250\",\n    \"question\": \"what is rubbing somebody s leg in bath?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40997\",\n    \"key\": \"26058\",\n    \"description\": \"a cap is rubbing somebody s leg in bath.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6x6yDo3T1qi1h3ao1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3391\",\n    \"key\": \"2972\",\n    \"description\": \"the man takes his white shirt off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnlp3d0FA1tldvawo1_400\",\n    \"question\": \"where is the bearded lady having her beard trimmed and looks.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23483\",\n    \"key\": \"54491\",\n    \"description\": \"a bearded lady is having her beard trimmed and looks in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpoa8XFSr1swtjjuo1_500\",\n    \"question\": \"what are racing on the dirt path?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49458\",\n    \"key\": \"97084\",\n    \"description\": \"several cars are racing on a dirt path.\"\n  },\n  {\n    \"video_name\": \"tumblr_nktz7xUsKO1upudqio1_250\",\n    \"question\": \"how many people are walking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46521\",\n    \"key\": \"51600\",\n    \"description\": \"two people are walking and the girl has her hand on the side of her face and brings it down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngf845m4JU1rv43xgo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43763\",\n    \"key\": \"20840\",\n    \"description\": \"a bald old man in red suit is smiling with holding hand to cover his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nft79he7Rj1slbfzxo1_500\",\n    \"question\": \"what is climbing over the man 's shoulder?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1023\",\n    \"key\": \"72567\",\n    \"description\": \"a cat is climbing over a man 's shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vaofH4lm1s1hn6lo1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29002\",\n    \"key\": \"58281\",\n    \"description\": \"a brown dog gives a warm nuzzle to a dark haired woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndty8uvoqn1sukgyxo1_400\",\n    \"question\": \"what is rubbing himself on the ground two other elephants are watching?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36832\",\n    \"key\": \"57588\",\n    \"description\": \"an elephant is rubbing himself on the ground two other elephants are watching.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hmg4UEOf1thtos8o1_400\",\n    \"question\": \"how many female friends are smiling at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26262\",\n    \"key\": \"33561\",\n    \"description\": \"two female friends are smiling at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nas8bv4aZB1taq9qwo1_250\",\n    \"question\": \"how many man walks down the hall and glances side ways?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40758\",\n    \"key\": \"46972\",\n    \"description\": \"one man walks down a hall and glances side ways.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyen1F4h41seb31ro1_400\",\n    \"question\": \"what is the young man dribbling?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37080\",\n    \"key\": \"30640\",\n    \"description\": \"a young man is dribbling a ball while a crowd is cheering.\"\n  },\n  {\n    \"video_name\": \"tumblr_negezmwUpO1spote4o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30049\",\n    \"key\": \"93793\",\n    \"description\": \"the guy with the black shirt and black hair is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc40txavRM1tm4pbeo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2982\",\n    \"key\": \"63720\",\n    \"description\": \"a man wearing all black starts to run.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6tl5MFnq1u110syo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52114\",\n    \"key\": \"92964\",\n    \"description\": \"a girl with brown hair and white bangs is blowing a bubble of gum.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wrdo0tex1tff33do1_400\",\n    \"question\": \"what does the young woman smile and lifts into the air while a young man stands quietly behind her?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20534\",\n    \"key\": \"35209\",\n    \"description\": \"a young woman smiles and lifts a cat into the air while a young man stands quietly behind her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4fsjihYG1u0lsh1o1_400\",\n    \"question\": \"what is driving down the dark street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4766\",\n    \"key\": \"84128\",\n    \"description\": \"the car is driving down the dark street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl126a6rbk1unyhx2o1_400\",\n    \"question\": \"what is gong very fast on the dirt road and slides around a curve into the trees?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38182\",\n    \"key\": \"79257\",\n    \"description\": \"a car is gong very fast on a dirt road and slides around a curve into the trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuqynOmaR1qat224o1_400\",\n    \"question\": \"how many grown people are shaking each others hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46480\",\n    \"key\": \"32946\",\n    \"description\": \"two grown people are shaking each others hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngy2thk5VL1rn16efo1_r1_500\",\n    \"question\": \"how many men are moving around next to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35254\",\n    \"key\": \"71393\",\n    \"description\": \"two men are moving around next to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7dzchXJO1tctaqvo1_400\",\n    \"question\": \"what is the young man with a mirror in front of him biting?\",\n    \"answer\": \"rag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14129\",\n    \"key\": \"46310\",\n    \"description\": \"a young man with a mirror in front of him is biting a rag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9zmy3L2J1ruoqrro1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46280\",\n    \"key\": \"54974\",\n    \"description\": \"a girl wearing a long black dress walks down the runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfiy4ozoNY1s7kd47o1_500\",\n    \"question\": \"what is the man wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3066\",\n    \"key\": \"70735\",\n    \"description\": \"a man is wearing a hat while a woman is sucking her finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk279dARPm1u3wykjo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52614\",\n    \"key\": \"55353\",\n    \"description\": \"a black haired woman is singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3dcktrA31ticciso1_400\",\n    \"question\": \"where is the man twirling.\",\n    \"answer\": \"? hoop\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37459\",\n    \"key\": \"58502\",\n    \"description\": \"a man is twirling in a hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5j2z7Ejt1tfvkwqo1_400\",\n    \"question\": \"what is the man playing and singing to someone?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45100\",\n    \"key\": \"68462\",\n    \"description\": \"a man is playing the guitar and singing to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r5jyrlhR1sfbetvo1_250\",\n    \"question\": \"what is the man wearing a sombrero in the pools pours?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50378\",\n    \"key\": \"71505\",\n    \"description\": \"a man wearing a sombrero in the pools pours a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuk1huMBo1unlpflo1_400\",\n    \"question\": \"what is sitting on the chair the way a human does?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37012\",\n    \"key\": \"63604\",\n    \"description\": \"a dog is sitting on a chair the way a human does.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqc6vBcZi1u23wvyo1_500\",\n    \"question\": \"how many people are touching each others noses?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18700\",\n    \"key\": \"61214\",\n    \"description\": \"two people are touching each others noses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngu4rdTvNW1tvsb7yo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43736\",\n    \"key\": \"3763\",\n    \"description\": \"a white man with a black suit is doing a dance step.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmlvz4PWsb1ttrhu8o1_500\",\n    \"question\": \"what is the color of the stares?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25696\",\n    \"key\": \"99859\",\n    \"description\": \"a man with brown hair stares pensively.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncc1ycDVbj1rijrceo1_500\",\n    \"question\": \"where do 2 women start to kiss.\",\n    \"answer\": \"? hospital\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33470\",\n    \"key\": \"88715\",\n    \"description\": \"2 women start to kiss suggestively in a hospital.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8mgr448W1r4qyf7o1_500\",\n    \"question\": \"what is the color of the skirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1824\",\n    \"key\": \"26283\",\n    \"description\": \"a woman in a black skirt is raising her arms into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nptbdl1fVs1tw4vtzo1_400\",\n    \"question\": \"how many girls are dancing on the stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43861\",\n    \"key\": \"50182\",\n    \"description\": \"three girls are dancing on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9flqtUIJf1scms8to1_500\",\n    \"question\": \"where are the man and a woman kissing each other.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46272\",\n    \"key\": \"98495\",\n    \"description\": \"a man and a woman are kissing each other in a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5d4u8cos1r7gr8so1_400\",\n    \"question\": \"what is someone playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7984\",\n    \"key\": \"51974\",\n    \"description\": \"someone is playing a white guitar they are holding.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl07wlwiAR1sm6z8wo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26525\",\n    \"key\": \"10470\",\n    \"description\": \"this image is of a guy with a black shirt on smiling at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhidkpCNdx1rm7xsro1_400\",\n    \"question\": \"how many people walked and talked to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34079\",\n    \"key\": \"61938\",\n    \"description\": \"two people walked and talked to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin6hhwnC81tehwjso1_r1_400\",\n    \"question\": \"what is the horse rolling on the ground and a man is holding?\",\n    \"answer\": \"rope\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28225\",\n    \"key\": \"46462\",\n    \"description\": \"a horse is rolling on the ground and a man is holding the lead rope.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rp02Ml9d1th5f0ro2_400\",\n    \"question\": \"what are the men passing around the field?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30609\",\n    \"key\": \"38227\",\n    \"description\": \"the men are passing the soccer ball around the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfevqkmkWq1rpbsywo1_500\",\n    \"question\": \"what do the woman 's fingers punch on a laptop which is sitting on her lap?\",\n    \"answer\": \"keys\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2931\",\n    \"key\": \"84182\",\n    \"description\": \"a woman 's fingers punch keys on a laptop which is sitting on her lap.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlc3i7KYK1sqiy4oo1_400\",\n    \"question\": \"how many men are singing in the vehicle?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1555\",\n    \"key\": \"60244\",\n    \"description\": \"three men are singing in a vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqaik6ZkRa1uxws2zo1_400\",\n    \"question\": \"what is the color of the object?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13874\",\n    \"key\": \"24576\",\n    \"description\": \"a dark haired woman is holding a yellow object.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjhd849y71u3aq49o1_540\",\n    \"question\": \"what is the man in a white shirt grabbing,\",\n    \"answer\": \"and he is raising his arm ? crotch\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13750\",\n    \"key\": \"50778\",\n    \"description\": \"a man in a white shirt is grabbing his crotch,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmmiofPei1u6f9bmo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14275\",\n    \"key\": \"8514\",\n    \"description\": \"a boy with short black hair looks around and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96gwarazJ1r81bzfo1_500\",\n    \"question\": \"what are young people playing?\",\n    \"answer\": \"instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA986\",\n    \"key\": \"62688\",\n    \"description\": \"young people are playing different musical instruments.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi8e5fJhT1tdjuqvo1_500\",\n    \"question\": \"what ate the few bites of cat food at a kitchen table?\",\n    \"answer\": \"otter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45888\",\n    \"key\": \"88290\",\n    \"description\": \"a sea otter ate a few bites of cat food at a kitchen table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat1jsDGBA1tdmr2yo1_500\",\n    \"question\": \"where do three guys look.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10967\",\n    \"key\": \"96611\",\n    \"description\": \"three guys look down together in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7ga4aK9F1tdyi9oo1_400\",\n    \"question\": \"where does the lady stop.\",\n    \"answer\": \"? corridor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44411\",\n    \"key\": \"35085\",\n    \"description\": \"a lady stops in a corridor before starting to run after a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2amuCSF01suocdbo1_500\",\n    \"question\": \"what are smoking as someone revs the accelerator with the handbrake on?\",\n    \"answer\": \"tires\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21324\",\n    \"key\": \"70395\",\n    \"description\": \"A car 's tires are smoking as someone revs the accelerator with the handbrake on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuoksIv0d1ra6i3zo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42152\",\n    \"key\": \"95617\",\n    \"description\": \"two guys with medium black hair are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nja4tbKh6P1un6ltvo1_250\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29159\",\n    \"key\": \"5770\",\n    \"description\": \"a man wearing black clothing is pointing his finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdinuJxSW1taahxyo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35185\",\n    \"key\": \"77696\",\n    \"description\": \"a man with long hair is being interviewed from a man with a blue hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_niuy3acWZ61shch57o1_250\",\n    \"question\": \"how many young men sit on the curb next to a hedge and have a conversation?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52926\",\n    \"key\": \"40241\",\n    \"description\": \"two young men sit on the curb next to a hedge and have a conversation.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1mrl3e4N1slj978o1_250\",\n    \"question\": \"what is excitedly dancing and looking at something low down?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23482\",\n    \"key\": \"71461\",\n    \"description\": \"a corgi dog is excitedly dancing and looking at something low down.\"\n  },\n  {\n    \"video_name\": \"tumblr_no0sotbQkP1utno2io1_400\",\n    \"question\": \"how many men shake hands and another makes a smooth transition?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31322\",\n    \"key\": \"12916\",\n    \"description\": \"two men shake hands and another makes a smooth transition.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndalo1iQWh1rrjxv9o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39442\",\n    \"key\": \"4206\",\n    \"description\": \"a young man is wearing a black shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ptm83Gmv1sc1cefo1_250\",\n    \"question\": \"how many soccer players bump heads and one hits the other on the head?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14313\",\n    \"key\": \"14456\",\n    \"description\": \"two soccer players bump heads and one hits the other on the head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz5bgkqTO1tkalc5o1_250\",\n    \"question\": \"what is the color of the fedora?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16794\",\n    \"key\": \"2024\",\n    \"description\": \"a woman in a red fedora is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_np7ctpyie61r7t178o1_500\",\n    \"question\": \"what is sitting on the wall wagging his tail?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34811\",\n    \"key\": \"52859\",\n    \"description\": \"cat is sitting on a wall wagging his tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjv9qFUwH1tltf5to1_540\",\n    \"question\": \"what is the man on a moving car smashing the windshield and grabbing steering?\",\n    \"answer\": \"wheel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43179\",\n    \"key\": \"88559\",\n    \"description\": \"a man on a moving car is smashing the windshield and grabbing the steering wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_njn3igFQG31u6o3qyo1_500\",\n    \"question\": \"how many men are standing together posing for pictures?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34297\",\n    \"key\": \"92191\",\n    \"description\": \"four men are standing together posing for pictures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevsarqG0r1rykb0vo1_400\",\n    \"question\": \"what is the man in a woolen hat keeping in the air with his feet?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10026\",\n    \"key\": \"50084\",\n    \"description\": \"a man in a woolen hat is keeping a soccer ball in the air with his feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngx8i4P8R61rdm91ko1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3242\",\n    \"key\": \"32373\",\n    \"description\": \"a woman with a white shirt is hugging a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9ijld2mu1rqb3bqo1_250\",\n    \"question\": \"what is the color of the kit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42773\",\n    \"key\": \"9555\",\n    \"description\": \"a man in white soccer kit is walking backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfio5acYBE1tybs7po1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30705\",\n    \"key\": \"30923\",\n    \"description\": \"a girl with long brown hair is making funny faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5uusuvNn1u2p22ho1_250\",\n    \"question\": \"how many men give interesting looks and then clap their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46267\",\n    \"key\": \"13113\",\n    \"description\": \"two men give interesting looks and then clap their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhoqo9nDcU1szutyqo1_500\",\n    \"question\": \"how many funny girls laugh and one lays her head on the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1372\",\n    \"key\": \"42089\",\n    \"description\": \"two funny girls laugh and one lays her head on the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2k21xDU51shtuz8o1_250\",\n    \"question\": \"how many men are making peace signs and funny faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9850\",\n    \"key\": \"73231\",\n    \"description\": \"two men are making peace signs and funny faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_naoun5Qf411t90iy0o1_500\",\n    \"question\": \"where is the man sitting and talking.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6377\",\n    \"key\": \"52064\",\n    \"description\": \"a man is sitting in a brown chair and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc28ihKPGx1slwrsuo1_400\",\n    \"question\": \"what is sitting on the chair at a table swatting at candle smoke?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49830\",\n    \"key\": \"34010\",\n    \"description\": \"a cat is sitting on a chair at a table swatting at candle smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndjbzgIO1U1tjd11mo1_500\",\n    \"question\": \"what does the person look out,\",\n    \"answer\": \"they see it from looking up ? window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17785\",\n    \"key\": \"76480\",\n    \"description\": \"the person looks out the window,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtlrnLJyT1t1szv2o1_500\",\n    \"question\": \"how many young men are eating the snack on a bus?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38432\",\n    \"key\": \"70108\",\n    \"description\": \"two young men are eating a snack on a bus.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv73zC1m21rxyt1xo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43600\",\n    \"key\": \"69188\",\n    \"description\": \"a white man with black suit is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94pz0wUGh1s218xco1_500\",\n    \"question\": \"how many man is holding a microphone and one man with a guitar strapped on are both decorated with many tattoos?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16120\",\n    \"key\": \"92294\",\n    \"description\": \"one man holding a microphone and one man with a guitar strapped on are both decorated with many tattoos.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepw693vsr1tk2ngvo1_400\",\n    \"question\": \"what is snuggling in the bed?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43108\",\n    \"key\": \"55996\",\n    \"description\": \"a black dog is snuggling in a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_na41oyCHeF1rcndp1o1_500\",\n    \"question\": \"how many identical men are sitting in chair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA471\",\n    \"key\": \"9702\",\n    \"description\": \"the two identical men are sitting in chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_no37v6clUi1qzho3ao1_400\",\n    \"question\": \"what races around the curve while people watch?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46131\",\n    \"key\": \"94742\",\n    \"description\": \"a car races around a curve while people watch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhfwk7nTt1u4pmmpo1_400\",\n    \"question\": \"what is the mask man in black showing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22640\",\n    \"key\": \"24285\",\n    \"description\": \"a mask man in black is showing his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_net1unlnyN1sp8qslo1_400\",\n    \"question\": \"what goes down the slope into the water in front of a group of people?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16376\",\n    \"key\": \"35630\",\n    \"description\": \"a big car goes down a slope into the water in front of a group of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1jigD3041rgqetqo1_250\",\n    \"question\": \"how many people stood singing the song in to the microphone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34552\",\n    \"key\": \"82686\",\n    \"description\": \"two people stood singing a song in to the microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrljkbZSIC1u5qz70o1_500\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23797\",\n    \"key\": \"43507\",\n    \"description\": \"a man wearing a green polo and khakis is dancing with a black background.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wrdo0tex1tff33do1_400\",\n    \"question\": \"what is the girl showing to somebody?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16204\",\n    \"key\": \"35209\",\n    \"description\": \"a girl is showing her cat to somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngl13o76hU1tgzsvro1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4986\",\n    \"key\": \"36610\",\n    \"description\": \"a man wearing a black sweater is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbafnh36931svh8clo1_250\",\n    \"question\": \"how many guy in long coats are standing around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41535\",\n    \"key\": \"1567\",\n    \"description\": \"two guy in long coats are standing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbodhjd7BL1rs27k2o1_250\",\n    \"question\": \"what is the color of the stuff?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52124\",\n    \"key\": \"10428\",\n    \"description\": \"a man is rubbing white stuff on his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_naewvsd2Hj1rpjr5so1_500\",\n    \"question\": \"what is the person in a banana costume playing?\",\n    \"answer\": \"trumpet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51005\",\n    \"key\": \"27793\",\n    \"description\": \"a person in a banana costume is playing the trumpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cepvQnUm1sm0tyko1_250\",\n    \"question\": \"what is the girl with long hair wearing?\",\n    \"answer\": \"necklace\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32956\",\n    \"key\": \"48559\",\n    \"description\": \"a girl with long hair is wearing a large and long necklace.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat3hdvBzb1t0vmnto1_250\",\n    \"question\": \"what are two men talking and one is holding?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51416\",\n    \"key\": \"21840\",\n    \"description\": \"two men are talking and one is holding a cat who is trying to get away.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo8t1fszK1u1wrwxo1_250\",\n    \"question\": \"how many man is making the face?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45015\",\n    \"key\": \"50396\",\n    \"description\": \"a little boy is playing a game while two women are looking ahead and one man is making a face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2bofz9lN1u04jkto1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11180\",\n    \"key\": \"57100\",\n    \"description\": \"a woman with blond hair and a white top is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nom6zxNZYd1tyxue1o1_400\",\n    \"question\": \"where is the woman shooting up after waking up.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34508\",\n    \"key\": \"81172\",\n    \"description\": \"a woman is shooting up in bed after waking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmycDsSK1tidcnvo1_400\",\n    \"question\": \"what is walking forward through the dirt?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37048\",\n    \"key\": \"63831\",\n    \"description\": \"a brown horse is walking forward through the dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9dyj81wq1tinuvfo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22232\",\n    \"key\": \"7364\",\n    \"description\": \"a woman in black shakes her hips by a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_najmw24iuw1qlo2n6o1_400\",\n    \"question\": \"how many men stand in the trolley?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26171\",\n    \"key\": \"20067\",\n    \"description\": \"two men stand in a trolley and another one pushes the trolley along.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5u53Y1w41tw8vf9o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA903\",\n    \"key\": \"71526\",\n    \"description\": \"a woman wearing an orange top and pink leotards,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0pilw3Xs1qam9qho1_r2_500\",\n    \"question\": \"how many men are relaxing while sitting?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37299\",\n    \"key\": \"85298\",\n    \"description\": \"the three men are relaxing while sitting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfljjzNN0y1u4vf33o1_400\",\n    \"question\": \"what is looking around and sitting on the beach near water?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37280\",\n    \"key\": \"69301\",\n    \"description\": \"a dog is looking around and sitting on a beach near water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9co60ue2d1tyqxvmo1_500\",\n    \"question\": \"where is the woman riding and smiling funny.\",\n    \"answer\": \"? vehicle\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8669\",\n    \"key\": \"99792\",\n    \"description\": \"a woman is riding in a vehicle and smiling funny.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyl4209U21sabd3xo1_250\",\n    \"question\": \"where are three people bobbing their heads.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46708\",\n    \"key\": \"23694\",\n    \"description\": \"three people in a car are bobbing their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8huxJJg41qbzfhbo1_250\",\n    \"question\": \"how many blonde woman are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24208\",\n    \"key\": \"13231\",\n    \"description\": \"two blonde woman are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bvjpD1sK1qgyvz3o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28572\",\n    \"key\": \"17795\",\n    \"description\": \"a man with dark hair is wearing a black leather type jacket and lifts his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8kyvQDPt1qge29wo1_400\",\n    \"question\": \"what is the woman wearing?\",\n    \"answer\": \"helmet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37036\",\n    \"key\": \"84958\",\n    \"description\": \"the woman is wearing a space helmet.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zd1nDo0B1rwgxlqo1_500\",\n    \"question\": \"what is exercising her horse in a building?\",\n    \"answer\": \"trainer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30875\",\n    \"key\": \"70645\",\n    \"description\": \"a horse trainer is exercising her horse in a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_newwf9wxYr1sdss0qo1_250\",\n    \"question\": \"what is the person pulling out of a hole in the ground?\",\n    \"answer\": \"groundhog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34924\",\n    \"key\": \"318\",\n    \"description\": \"a person is pulling a groundhog out of a hole in the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3e3globU1snid6qo1_400\",\n    \"question\": \"what is the color of the boat?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21342\",\n    \"key\": \"66138\",\n    \"description\": \"a girl jumps into a boy with a white shirt on a yellow boat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflomgPlCj1t0rduno1_400\",\n    \"question\": \"what hugs the woman while she picks it up?\",\n    \"answer\": \"gorilla\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14328\",\n    \"key\": \"54179\",\n    \"description\": \"gorilla hugs a woman while she picks it up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqo2x3bbpv1uuh0teo1_400\",\n    \"question\": \"how many men are laughing while sitting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40753\",\n    \"key\": \"89238\",\n    \"description\": \"the two men are laughing while sitting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2j9ov5zN1u4v3ypo1_250\",\n    \"question\": \"what climbed up the metal ladder?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9265\",\n    \"key\": \"155\",\n    \"description\": \"a kitten climbed up a metal ladder.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu5ybxkBL1tia84ho1_r2_1280\",\n    \"question\": \"what is this coiling around the branch of a tree?\",\n    \"answer\": \"snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43355\",\n    \"key\": \"61746\",\n    \"description\": \"this is a snake coiling around the branch of a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7zofXXBQ1t5ojzdo1_250\",\n    \"question\": \"how many young ladies are walking and smiling and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28556\",\n    \"key\": \"14465\",\n    \"description\": \"two young ladies are walking and smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr6w5vugtC1tfn8dso1_400\",\n    \"question\": \"what is the man in a red shirt riding down the curvy road?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17904\",\n    \"key\": \"79205\",\n    \"description\": \"a man in a red shirt is riding a skateboard down the curvy road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xa4psLDY1sb7v5lo1_500\",\n    \"question\": \"what is walking outside in the nature?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29019\",\n    \"key\": \"70371\",\n    \"description\": \"a black horse is walking outside in the nature.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf24phb8BO1thpehoo1_400\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8833\",\n    \"key\": \"47579\",\n    \"description\": \"two men in white shirts make faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmv6zvVmc1u25ovvo1_400\",\n    \"question\": \"what is going through the residential area?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27808\",\n    \"key\": \"63416\",\n    \"description\": \"a car is going through a residential area.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdv4ebLbw1tenxbgo1_250\",\n    \"question\": \"what is the color of the hand?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51499\",\n    \"key\": \"43929\",\n    \"description\": \"a man holds a stick with a yellow hand and shows it to the audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndalydtPUu1u12owmo1_500\",\n    \"question\": \"what is the man wearing and smiling?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46769\",\n    \"key\": \"87212\",\n    \"description\": \"a man is wearing a black suit and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9o0r4ji5o1snkc47o1_250\",\n    \"question\": \"how many lovers are kissing then?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4252\",\n    \"key\": \"81449\",\n    \"description\": \"two lovers are kissing then the girl turn her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9wlbbLg11tfou8do1_400\",\n    \"question\": \"how many young guys play with their hair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22675\",\n    \"key\": \"60514\",\n    \"description\": \"two young guys play with their hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv5iz7KVL1unu56do1_400\",\n    \"question\": \"what is the man wearing a blue t-\",\n    \"answer\": \"is sitting on the steps and eating ? shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA749\",\n    \"key\": \"35675\",\n    \"description\": \"a man wearing a blue t-\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx38kWLfU1t0ojyvo1_400\",\n    \"question\": \"how many men smile at each other after one of them has his hair parted to the side?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19328\",\n    \"key\": \"21752\",\n    \"description\": \"two men smile at each other after one of them has his hair parted to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgx0gSMVZ1rne0ito1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34704\",\n    \"key\": \"24150\",\n    \"description\": \"a handsome young man is throwing a black hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nki2bnVTOg1up3auao1_500\",\n    \"question\": \"what is the surfer standing on a large board using?\",\n    \"answer\": \"oar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18028\",\n    \"key\": \"57909\",\n    \"description\": \"a surfer standing on a large board is using an oar to turn while riding a wave.\"\n  },\n  {\n    \"video_name\": \"tumblr_no62rm4dDC1tx8mn0o1_400\",\n    \"question\": \"what is skidding on the track.a?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20837\",\n    \"key\": \"76917\",\n    \"description\": \"a yellow race car is skidding on the track.a.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7ba776pi1thbdaio1_500\",\n    \"question\": \"what are kissing each other?\",\n    \"answer\": \"shirts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38649\",\n    \"key\": \"74018\",\n    \"description\": \"two woman 's wearing black shirts are kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkro0iKPRH1upx448o1_500\",\n    \"question\": \"what bares its teeth as it barks?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44224\",\n    \"key\": \"72145\",\n    \"description\": \"a dog bares its teeth as it barks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9rxraygM1u1bqbwo1_250\",\n    \"question\": \"what is the guy wearing a blue checkered shirt eats?\",\n    \"answer\": \"nugget\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43259\",\n    \"key\": \"3076\",\n    \"description\": \"a guy wearing a blue checkered shirt eats a chicken nugget.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnq4tzM7M51urqm0mo1_500\",\n    \"question\": \"how many airplanes are flying through the air above the clouds?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38451\",\n    \"key\": \"85138\",\n    \"description\": \"two airplanes are flying through the air above the clouds.\"\n  },\n  {\n    \"video_name\": \"tumblr_npb6eieHYv1uxot71o1_500\",\n    \"question\": \"how many men are turning to look at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30849\",\n    \"key\": \"11924\",\n    \"description\": \"two men are turning to look at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg8vizTGK1s1q1rro1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2870\",\n    \"key\": \"92853\",\n    \"description\": \"a girl with a black hat with writing on it is smiling whilst her eyes are closed.\"\n  },\n  {\n    \"video_name\": \"tumblr_non9dnF1Om1u4uss5o1_400\",\n    \"question\": \"how many ladies are kissing each other passionately in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36969\",\n    \"key\": \"78286\",\n    \"description\": \"two ladies are kissing each other passionately in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvslkkidf1u2mqcoo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25426\",\n    \"key\": \"74752\",\n    \"description\": \"the guy with the curly brown hair is shaking his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfg9btxKYw1u41f5eo1_400\",\n    \"question\": \"how many men are sitting in chairs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46482\",\n    \"key\": \"56637\",\n    \"description\": \"two men are sitting in chairs and one is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7ghkx0rA1r91wsno1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18742\",\n    \"key\": \"88364\",\n    \"description\": \"a man wearing a white shirt and holding a flower in his mouth is walking behind another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxy7vIbUJ1tt3dbuo1_500\",\n    \"question\": \"how many women are jumping onto the log?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16695\",\n    \"key\": \"76376\",\n    \"description\": \"two women are jumping onto a log.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94nipTYJT1thddx0o1_400\",\n    \"question\": \"what plays guitar too loud and blows speakers?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40352\",\n    \"key\": \"42988\",\n    \"description\": \"michael fox plays guitar too loud and blows speakers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnk8xylP9g1u5qahro1_1280\",\n    \"question\": \"what crawls near the bunch of other kittens?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35867\",\n    \"key\": \"54164\",\n    \"description\": \"a kitten crawls near a bunch of other kittens.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3uu1kiDK1rswar7o1_500\",\n    \"question\": \"what is the woman with long dark hair taking?\",\n    \"answer\": \"photographs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40072\",\n    \"key\": \"97574\",\n    \"description\": \"a woman with long dark hair is taking photographs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffsy8wfSM1t2t9szo1_400\",\n    \"question\": \"what is the brown and white dog staring and wagging?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48531\",\n    \"key\": \"35128\",\n    \"description\": \"a brown and white dog is staring and wagging its tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_non9dnF1Om1u4uss5o1_400\",\n    \"question\": \"how many girls are making out with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41798\",\n    \"key\": \"78286\",\n    \"description\": \"two girls are making out with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9nxz6cyx11sjuzlno1_400\",\n    \"question\": \"how many birds bob their head up and down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45737\",\n    \"key\": \"36176\",\n    \"description\": \"two birds bob their head up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1otxgnPQ1rlmonbo1_250\",\n    \"question\": \"what is taking the nut from a person 's hand?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7671\",\n    \"key\": \"13333\",\n    \"description\": \"a bird is taking a nut from a person 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94fi690GZ1twfcheo1_400\",\n    \"question\": \"what are two men with black hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33488\",\n    \"key\": \"60282\",\n    \"description\": \"two men with black hair are playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfeetqIQkZ1so9ango1_400\",\n    \"question\": \"what did the black man wiggle at children?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5629\",\n    \"key\": \"35037\",\n    \"description\": \"a black man wiggled a hot dog at children.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9198gwVHK1tyyj4so1_400\",\n    \"question\": \"where is the woman standing.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14462\",\n    \"key\": \"61502\",\n    \"description\": \"a woman is standing in a kitchen by a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nouudbjKtI1u0el0yo1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25452\",\n    \"key\": \"38411\",\n    \"description\": \"a woman wearing a red sweater,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg7uliVyd1rze3q1o1_500\",\n    \"question\": \"where is the man winking at a woman.\",\n    \"answer\": \"? cellphone\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51789\",\n    \"key\": \"86397\",\n    \"description\": \"a man in a cell is winking at a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9bepAt5K1sq12j9o1_400\",\n    \"question\": \"what starts to land on boat with a landing strip?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37309\",\n    \"key\": \"82896\",\n    \"description\": \"airplane starts to land on boat with a landing strip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhanpu9jjb1u5o5sjo1_250\",\n    \"question\": \"what is the color of the thing?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44437\",\n    \"key\": \"27232\",\n    \"description\": \"a woman is wearing some green antennae thing on her head and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhoafqx2kj1u7yu1to1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38119\",\n    \"key\": \"56974\",\n    \"description\": \"a man with black hair is smiling and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxsl29ZXD1tmth2jo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23932\",\n    \"key\": \"47237\",\n    \"description\": \"a young girl with long brown hair is trying on a hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90wdbaCbJ1sakfnpo1_250\",\n    \"question\": \"how many cats are together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23298\",\n    \"key\": \"40595\",\n    \"description\": \"two cats are together,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndtnspUwjN1u1ph7jo1_1280\",\n    \"question\": \"how many people ride in the car together and look away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33476\",\n    \"key\": \"45506\",\n    \"description\": \"two people ride in a car together and look away.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mhncAnrG1tfer0ho1_400\",\n    \"question\": \"what put its paw on a cats head and patted it?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37336\",\n    \"key\": \"15516\",\n    \"description\": \"a dog put its paw on a cats head and patted it.\"\n  },\n  {\n    \"video_name\": \"tumblr_na07x1hrbL1ti3y6yo1_400\",\n    \"question\": \"what were playing around together?\",\n    \"answer\": \"hamsters\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22796\",\n    \"key\": \"25005\",\n    \"description\": \"the two hamsters were playing around together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnc6qlJF21tzjp9uo1_250\",\n    \"question\": \"what is woman wearing?\",\n    \"answer\": \"dancing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15933\",\n    \"key\": \"18254\",\n    \"description\": \"woman is wearing her underwear whilst dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq9ufi6TrL1uur22co1_250\",\n    \"question\": \"where is the woman cutting her hair.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31901\",\n    \"key\": \"23274\",\n    \"description\": \"a woman is cutting her hair in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zjjsp2E21tecuevo1_400\",\n    \"question\": \"how many people in black wave their arms while they dance?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11304\",\n    \"key\": \"42865\",\n    \"description\": \"two people in black wave their arms while they dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerwi2g6db1stn2h6o1_500\",\n    \"question\": \"what is running on two legs?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2897\",\n    \"key\": \"36811\",\n    \"description\": \"a toy dog is running on two legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyd2oxaHK1s5kmdmo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49037\",\n    \"key\": \"38355\",\n    \"description\": \"a white man with white shirt is busy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2n5xYQmY1tdjuqvo1_500\",\n    \"question\": \"what walks on his two front legs?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30311\",\n    \"key\": \"69298\",\n    \"description\": \"a dog walks on his two front legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ag3iabTq1ti0984o1_250\",\n    \"question\": \"how many men are dancing in front of a group of people?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50450\",\n    \"key\": \"9601\",\n    \"description\": \"two men are dancing in front of a group of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncribxI9q81qi39coo1_500\",\n    \"question\": \"how many boys are hugging and turn to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44443\",\n    \"key\": \"99517\",\n    \"description\": \"two boys are hugging and turn to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6cjjaMGj1t6ksnpo1_500\",\n    \"question\": \"what does the man on stage kick to another man who then catches it?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14680\",\n    \"key\": \"92517\",\n    \"description\": \"a man on stage kicks a bottle to another man who then catches it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8v5lde1d1rqnpmeo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4365\",\n    \"key\": \"10463\",\n    \"description\": \"a woman in a blue shirt is talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemp1budLR1t97h17o1_400\",\n    \"question\": \"what is the man in black tuxedo smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32385\",\n    \"key\": \"69910\",\n    \"description\": \"a man in black tuxedo is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhklv0Td991reseiyo1_1280\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46649\",\n    \"key\": \"89497\",\n    \"description\": \"a black car is skidding around the corner of a snowy road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2yqn7s1f1sl5la9o1_500\",\n    \"question\": \"how many guys all turned around at the same time?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43802\",\n    \"key\": \"71770\",\n    \"description\": \"the five guys all turned around at the same time.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc83vxbtD81rmcnl8o1_500\",\n    \"question\": \"what is the man with mike holding?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8110\",\n    \"key\": \"40301\",\n    \"description\": \"a man with mike is holding a bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc428jorCe1tl4bloo1_400\",\n    \"question\": \"what is the woman riding around a stable?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2584\",\n    \"key\": \"64224\",\n    \"description\": \"a woman is riding a white horse around a stable.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndp39weJj11u1b7jeo1_500\",\n    \"question\": \"how many men jump backward?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42163\",\n    \"key\": \"58650\",\n    \"description\": \"two men jump backward and one throws his hat off.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdvtc57Ux1tx8mn0o1_400\",\n    \"question\": \"what is turning around the corner?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31444\",\n    \"key\": \"52693\",\n    \"description\": \"a racing car is turning around a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2ttxGRQJ1sy4yl3o1_400\",\n    \"question\": \"how many boys are doing something near a pool?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11571\",\n    \"key\": \"88236\",\n    \"description\": \"four boys are doing something near a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r1v3mlIp1qdds9go1_400\",\n    \"question\": \"how many man flips the skateboard and a second man lands on the skateboard?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29731\",\n    \"key\": \"42116\",\n    \"description\": \"one man flips the skateboard and a second man lands on the skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3j7brGNJ1rzia65o1_250\",\n    \"question\": \"what is the man with beard wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39093\",\n    \"key\": \"25486\",\n    \"description\": \"a man with beard is wearing a hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo00fyoGF1t9xpn4o1_400\",\n    \"question\": \"what is driving down the road and kids are moving around?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49662\",\n    \"key\": \"85675\",\n    \"description\": \"a car is driving down the road and kids are moving around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb71pfZ5ue1rcivpuo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42429\",\n    \"key\": \"99272\",\n    \"description\": \"the boy wearing the blue shirt is looking around nervously.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5z1ajZzd1rwipr5o1_r1_250\",\n    \"question\": \"what is the color of the balls?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47534\",\n    \"key\": \"27736\",\n    \"description\": \"a girl is juggling black balls and dropping them.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndewuvK3y31tclizvo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24143\",\n    \"key\": \"27219\",\n    \"description\": \"a woman with a white tank top is raising her eyebrows.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkugdj9ohz1rqxy4lo1_500\",\n    \"question\": \"how many women are walking into the room together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42711\",\n    \"key\": \"84777\",\n    \"description\": \"two women are walking into a room together.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5ojlCiVS1tuv1l1o1_500\",\n    \"question\": \"what is the color of the apple?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16127\",\n    \"key\": \"101430\",\n    \"description\": \"a man with a beard is eating a red apple.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1jamcgAZ1u0agnbo1_500\",\n    \"question\": \"what was the woman with long dark hair driving?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7697\",\n    \"key\": \"73509\",\n    \"description\": \"a woman with long dark hair was driving a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rq8iQZvP1tpb3fho1_250\",\n    \"question\": \"what is the color of the drink?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49488\",\n    \"key\": \"87532\",\n    \"description\": \"a woman has a white drink in a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5afoHKml1tfsdl2o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25210\",\n    \"key\": \"17096\",\n    \"description\": \"a short man wearing a red suit is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv9m5pOMl1slj978o1_400\",\n    \"question\": \"what is the cat leaping and bouncing off?\",\n    \"answer\": \"walls\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10870\",\n    \"key\": \"37576\",\n    \"description\": \"a cat is leaping and bouncing off walls.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vtsihZHq1tj05klo1_500\",\n    \"question\": \"where is the girl drinking wine.\",\n    \"answer\": \"? cup\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22734\",\n    \"key\": \"50012\",\n    \"description\": \"a girl is drinking wine in a wine cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb5q4l2gK91rixe5zo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42553\",\n    \"key\": \"56114\",\n    \"description\": \"a man in a black suit is falling back with his mouth open and his hands extended.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngh82hywbz1s4yzawo1_400\",\n    \"question\": \"how many boys in leather jackets ride a red bus?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8430\",\n    \"key\": \"9181\",\n    \"description\": \"three boys in leather jackets ride a red bus.\"\n  },\n  {\n    \"video_name\": \"tumblr_nre0ygmiud1urhg9no1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7843\",\n    \"key\": \"37019\",\n    \"description\": \"a woman with short black hair looks upward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nozefyGyp01unyhx2o1_400\",\n    \"question\": \"what are speeding around the race track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11886\",\n    \"key\": \"65310\",\n    \"description\": \"race cars are speeding around a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngg3bgc0U21qlcsfio1_500\",\n    \"question\": \"what are hands bundling and throwing it down?\",\n    \"answer\": \"money\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8663\",\n    \"key\": \"3569\",\n    \"description\": \"hands are bundling money and throwing it down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqrx03OM6K1uxst7zo1_500\",\n    \"question\": \"how many men smile and look down while talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37170\",\n    \"key\": \"99159\",\n    \"description\": \"two men smile and look down while talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguizjs4Pa1u5hpeio1_250\",\n    \"question\": \"where is the man laying and smoking a cigarette.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49621\",\n    \"key\": \"21210\",\n    \"description\": \"a man is laying in bed and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4p06mEhY1u2lrtfo1_1280\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25764\",\n    \"key\": \"66838\",\n    \"description\": \"a man in a black hat is holding a small girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelh3nATly1tte9eno1_400\",\n    \"question\": \"how many wrestlers rip their shirts in front of a crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3496\",\n    \"key\": \"40152\",\n    \"description\": \"two wrestlers rip their shirts in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtvm1ky4S1u9tekro1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47543\",\n    \"key\": \"76852\",\n    \"description\": \"a woman in red clothing touched her fingers together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh3y0lqgx1tuj3bpo1_400\",\n    \"question\": \"what is setting on the bathtub fence and a dog pushed it to fall inside it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24280\",\n    \"key\": \"34855\",\n    \"description\": \"a cat is setting on the bathtub fence and a dog pushed it to fall inside it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nduzc4QNa11tmn3zuo1_400\",\n    \"question\": \"what is the man wearing a mask on top of his head lights a cigarette then points at a man with a gun?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40141\",\n    \"key\": \"64006\",\n    \"description\": \"a man wearing a mask on top of his head lights a cigarette then points a gun at a man with a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtpdn8oHz1s0w3iqo1_400\",\n    \"question\": \"where is the man wearing a santa claus hat is sitting.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42825\",\n    \"key\": \"57885\",\n    \"description\": \"a man wearing a santa claus hat is sitting in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_no0933CNzs1uv4mmfo1_400\",\n    \"question\": \"how many tough boxers in a boxing ring are fighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50053\",\n    \"key\": \"58519\",\n    \"description\": \"two tough boxers in a boxing ring are fighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_npuazcydPD1te94myo1_400\",\n    \"question\": \"what is the cat licking,\",\n    \"answer\": \"and then starts wracking it FRAMEQAeatedly ? wand\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43462\",\n    \"key\": \"4445\",\n    \"description\": \"a cat is licking a vacuum wand,\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1qdoBVER1u5ha1qo1_250\",\n    \"question\": \"what is the man eating during a football game?\",\n    \"answer\": \"snack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40330\",\n    \"key\": \"21978\",\n    \"description\": \"a man is eating a snack during a football game.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrtqmpi3I1t0urg8o1_500\",\n    \"question\": \"what is the color of the heels?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44421\",\n    \"key\": \"85244\",\n    \"description\": \"this shows a person wearing red soled high heels with a shine metal at the heels,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgnrucLOa1r0ia88o1_400\",\n    \"question\": \"what does the blonde woman pick up and coat then opens a door?\",\n    \"answer\": \"purse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5738\",\n    \"key\": \"94553\",\n    \"description\": \"a blonde woman picks up a purse and coat then opens a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzgpnYwQD1qibh0io1_250\",\n    \"question\": \"how many women are talking as one walks toward the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26071\",\n    \"key\": \"49609\",\n    \"description\": \"two women are talking as one walks toward the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwj2x0l3x1tfps03o1_500\",\n    \"question\": \"what is the color of the beanie?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26094\",\n    \"key\": \"10254\",\n    \"description\": \"a man in a red beanie is scratching himself in the neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbun4vIfhR1rodjq5o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9187\",\n    \"key\": \"8188\",\n    \"description\": \"man in red shirt is looking up with eyes wide.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkppg69N71u8aep9o1_250\",\n    \"question\": \"what is the man mixing and feeling smug?\",\n    \"answer\": \"concoction\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10309\",\n    \"key\": \"7151\",\n    \"description\": \"a man is mixing a concoction and feeling smug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlrraQaRy1ssgyoro1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21654\",\n    \"key\": \"2450\",\n    \"description\": \"a man with an orange shirt is trying to get in a packed subway,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tou9864c1su5apvo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33319\",\n    \"key\": \"38737\",\n    \"description\": \"the man in black threw a stick on fire at the truck.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1pndMpd61s6zpepo1_400\",\n    \"question\": \"what does the person throw something across the room and does a back flip?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14708\",\n    \"key\": \"25900\",\n    \"description\": \"a person throws something across the room and a cat does a back flip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnjpmSOue1tnkij0o1_250\",\n    \"question\": \"how many guys walk down the street and one smiles?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51251\",\n    \"key\": \"23391\",\n    \"description\": \"two guys walk down the street and one smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkpquj0Nyh1u9h6d6o1_250\",\n    \"question\": \"how many men is standing while getting hit by an object?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1607\",\n    \"key\": \"16065\",\n    \"description\": \"five men standing while getting hit by an object.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk75gnN9yC1sht3fmo1_250\",\n    \"question\": \"what is the color of the rope?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50311\",\n    \"key\": \"11849\",\n    \"description\": \"a chameleon is swinging in a white rope.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokwt1ZuPX1u5ha5do1_500\",\n    \"question\": \"what is the person wearing and trying to run up a tree?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47638\",\n    \"key\": \"8577\",\n    \"description\": \"a person is wearing a yellow bee suit and trying to run up a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1dswgMLu1tp7zxjo1_250\",\n    \"question\": \"what is the man in a club taking off?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47394\",\n    \"key\": \"13652\",\n    \"description\": \"a man in a club is taking off his jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4969a0oY1qjgxd2o1_400\",\n    \"question\": \"what does the man slip after another but lands on his feet?\",\n    \"answer\": \"peel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49065\",\n    \"key\": \"78029\",\n    \"description\": \"a man slips one banana peel after another but lands on his feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncm6einCxX1tw8vf9o1_400\",\n    \"question\": \"what does the buff female athlete carry and throws?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34016\",\n    \"key\": \"11196\",\n    \"description\": \"a buff female athlete carries and throws a heavy bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ensmVNvD1ttu918o1_500\",\n    \"question\": \"what is the man making with his hands and then falling backwards in a chair?\",\n    \"answer\": \"gesture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12287\",\n    \"key\": \"100105\",\n    \"description\": \"a man is making a gun gesture with his hands and then falling backwards in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnbthMNqW1ss14eso1_250\",\n    \"question\": \"what is the woman with long blonde hair playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32701\",\n    \"key\": \"11584\",\n    \"description\": \"a woman with long blonde hair is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndjeo42uTc1qdzqcjo1_250\",\n    \"question\": \"where is the girl visiting her friend.\",\n    \"answer\": \"? hospital\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46075\",\n    \"key\": \"37766\",\n    \"description\": \"a girl is visiting her friend in the hospital.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0yhhKN911situ0so1_500\",\n    \"question\": \"how many guys are making waves with their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22458\",\n    \"key\": \"87994\",\n    \"description\": \"two guys are making waves with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nftkx9YNfX1qm0hcwo1_400\",\n    \"question\": \"how many men are kissing each other on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9959\",\n    \"key\": \"25130\",\n    \"description\": \"two men are kissing each other on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9bk7YdxS1swtjjuo1_500\",\n    \"question\": \"what is driving down the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45181\",\n    \"key\": \"54836\",\n    \"description\": \"a red car is driving down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyrpdSktQ1tr2xwio1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52273\",\n    \"key\": \"64233\",\n    \"description\": \"a girl with red hair is having her life flashed before her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjkkdYkM51qdbvc2o1_400\",\n    \"question\": \"what is held in front of a car and is blown?\",\n    \"answer\": \"dandelion\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29250\",\n    \"key\": \"77320\",\n    \"description\": \"a dandelion is held in front of a car and is blown.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblkdlG0wb1qj5hh7o1_250\",\n    \"question\": \"what rolls on the ground while another small elephant sits on him?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13378\",\n    \"key\": \"81080\",\n    \"description\": \"a baby elephant rolls on the ground while another small elephant sits on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_npxdqeQDlj1rndm3wo1_400\",\n    \"question\": \"how many men look out and perform various hand gestures?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21733\",\n    \"key\": \"82713\",\n    \"description\": \"four men look out and perform various hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4xgr1uC71rblf33o1_500\",\n    \"question\": \"how many arm is in the sleeve?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52902\",\n    \"key\": \"89609\",\n    \"description\": \"a man is moving his arms up and down,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncehmvUQzC1tmicsyo1_400\",\n    \"question\": \"what is the guy playing and singing with two other people?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40438\",\n    \"key\": \"59826\",\n    \"description\": \"a guy is playing a guitar and singing with two other people.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyf9zKF011qi9fe9o1_250\",\n    \"question\": \"how many individuals are dancing outside of a car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5754\",\n    \"key\": \"21199\",\n    \"description\": \"two individuals are dancing outside of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_np3poavdcN1qip8rqo1_500\",\n    \"question\": \"what is the color of the dancing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16824\",\n    \"key\": \"91776\",\n    \"description\": \"this image is of a group of people in white dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngrowlLTYj1tmddexo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20290\",\n    \"key\": \"22045\",\n    \"description\": \"a woman with long black hair and wearing a white outfit is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7u0qCxig1slj978o1_400\",\n    \"question\": \"what is performing the jump and flipping over?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14338\",\n    \"key\": \"101240\",\n    \"description\": \"a car is performing a jump and flipping over.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngns3jXgPf1s6zpepo1_250\",\n    \"question\": \"what pecks the horse and drinks its water?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16275\",\n    \"key\": \"23960\",\n    \"description\": \"a bird pecks a horse and drinks its water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhr21u5HJv1sniu8co1_1280\",\n    \"question\": \"what does the man roll back and forth in his hands?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30168\",\n    \"key\": \"101289\",\n    \"description\": \"a man rolls a microphone back and forth in his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9siszhG1N1r6pekco1_250\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16256\",\n    \"key\": \"9861\",\n    \"description\": \"a man wearing a white vest and black shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqy6gpwoGz1uy0526o1_400\",\n    \"question\": \"what is the man wearing sunglasses is using?\",\n    \"answer\": \"computer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6473\",\n    \"key\": \"32991\",\n    \"description\": \"a man wearing sunglasses is using his computer.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lp1cFATE1thmyo0o1_500\",\n    \"question\": \"what is lying down on stage while lights flash?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19392\",\n    \"key\": \"101953\",\n    \"description\": \"a rock star is lying down on stage while lights flash.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4o38uibi1sw33zno1_400\",\n    \"question\": \"where are some sports players throwing and dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52451\",\n    \"key\": \"64774\",\n    \"description\": \"some sports players are throwing and dancing in the locker room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerwi2g6db1stn2h6o1_500\",\n    \"question\": \"what did the dog walk down wearing a teddy bear costume?\",\n    \"answer\": \"hall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4908\",\n    \"key\": \"36811\",\n    \"description\": \"a dog walked down the hall wearing a teddy bear costume.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmmsqxC1C1u3kw7bo1_500\",\n    \"question\": \"what is dancing while singing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14008\",\n    \"key\": \"87309\",\n    \"description\": \"a man wearing shirt is dancing while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9je6f5n8M1sn0pdto1_400\",\n    \"question\": \"what is the color of the picture?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22007\",\n    \"key\": \"59625\",\n    \"description\": \"a man is talking to a microphone in front of a yellow picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpco7YgzP1tqwtb6o1_500\",\n    \"question\": \"what is the color of the board?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34615\",\n    \"key\": \"45263\",\n    \"description\": \"a woman is stood next to a black board in a class.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncw9e8WBuP1tkengwo2_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27740\",\n    \"key\": \"74250\",\n    \"description\": \"a red haired man laughs and then looks down at his lap.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8nl1PVQh1tom9vyo1_400\",\n    \"question\": \"what is the color of the blanket?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28891\",\n    \"key\": \"61802\",\n    \"description\": \"a woman is walking by the water and is wrapped in an orange blanket.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndzkzuIWqn1sldl65o1_400\",\n    \"question\": \"what does the woman wear?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49677\",\n    \"key\": \"35170\",\n    \"description\": \"a woman wears a dress as she dances around the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9c03vG9GB1tyeuq0o1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39009\",\n    \"key\": \"27241\",\n    \"description\": \"a gray cat is hissing while standing on a person 's knee.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyfoeWTpX1qa051so1_500\",\n    \"question\": \"how many sumo wrestlers are pushing the man back and forth between their stomachs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23784\",\n    \"key\": \"85777\",\n    \"description\": \"two sumo wrestlers are pushing a man back and forth between their stomachs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkbm8DACb1t0w9oqo1_400\",\n    \"question\": \"what is the color of the antlers?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33742\",\n    \"key\": \"15773\",\n    \"description\": \"a couple are laughing while one wears red antlers.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8y79dwmex1tdjuqvo1_250\",\n    \"question\": \"what is wearing the brunette wig?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13746\",\n    \"key\": \"16924\",\n    \"description\": \"a small dog is wearing a brunette wig.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyan4eWHz1tmnntwo1_400\",\n    \"question\": \"what is sitting down then he jumps up and holds on to a door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26967\",\n    \"key\": \"26777\",\n    \"description\": \"a cat is sitting down then he jumps up and holds on to a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6tl5MFnq1u110syo1_500\",\n    \"question\": \"what is the color of the bangs?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2063\",\n    \"key\": \"92964\",\n    \"description\": \"a girl with brown hair and white bangs is blowing a bubble of gum.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uqen1tDV1sfmhxao1_400\",\n    \"question\": \"what is the color of the bowl?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12432\",\n    \"key\": \"63448\",\n    \"description\": \"a brown dog is eating food from a green bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo4rh80wh1slj978o1_500\",\n    \"question\": \"what stands on the back of a hippopotamus in a lake?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47856\",\n    \"key\": \"85914\",\n    \"description\": \"a bird stands on the back of a hippopotamus in a lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90wdbaCbJ1sakfnpo1_250\",\n    \"question\": \"what are together,\",\n    \"answer\": \"one is licking the other ones ear ? cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37896\",\n    \"key\": \"40595\",\n    \"description\": \"two cats are together,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzm28JXgg1r7owcpo1_400\",\n    \"question\": \"what is the man with blonde hair wearing an orange suit is playing while standing in front of a huge american flag?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45139\",\n    \"key\": \"26030\",\n    \"description\": \"a man with blonde hair wearing an orange suit is playing an american flag guitar while standing in front of a huge american flag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrbogrx63R1tglvd6o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11290\",\n    \"key\": \"81445\",\n    \"description\": \"a guy with a blonde up do wears a gray shirt and shouts something under a spotlight.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1y69Oedd1rvus2lo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA764\",\n    \"key\": \"66402\",\n    \"description\": \"this image is of a man in black with sunglasses on walking through a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksrv0Ob4q1u8uroco1_400\",\n    \"question\": \"what is an animal throwing into the air?\",\n    \"answer\": \"claws\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10174\",\n    \"key\": \"25813\",\n    \"description\": \"an animal is throwing its claws into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3gcjTgzt1tjotwjo1_250\",\n    \"question\": \"what is the girl removing from her ears?\",\n    \"answer\": \"earphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46460\",\n    \"key\": \"47448\",\n    \"description\": \"a girl is removing earphone from her ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp3ocPFJJ1upr5mso1_400\",\n    \"question\": \"how many men laying down in suits and wearing sunglasses are making hand gestures?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32952\",\n    \"key\": \"65996\",\n    \"description\": \"two men laying down in suits and wearing sunglasses are making hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kmf8j4gZ1snj1pfo1_500\",\n    \"question\": \"how many girls are watching the boy perform on tv?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4939\",\n    \"key\": \"2948\",\n    \"description\": \"two girls are watching a boy perform on tv.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndsj3v5btb1rpjuouo1_500\",\n    \"question\": \"where is the guy with black jacket smoking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25080\",\n    \"key\": \"79446\",\n    \"description\": \"a guy with black jacket is smoking in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naeyc6yQWy1tahfdeo1_250\",\n    \"question\": \"where is two animal playing so cute.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37169\",\n    \"key\": \"56593\",\n    \"description\": \"two animal is playing so cute in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1108xDwG1slsl6ro1_500\",\n    \"question\": \"how many men make facial expressions as they look behind?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39803\",\n    \"key\": \"88064\",\n    \"description\": \"two men make facial expressions as they look behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1nlpijnR1u2lw0po1_400\",\n    \"question\": \"what are two doctors walking down?\",\n    \"answer\": \"hallway\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21930\",\n    \"key\": \"77200\",\n    \"description\": \"two doctors are walking down a hallway when a patient vomits on one of them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyamtRXwu1si8uq7o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34544\",\n    \"key\": \"32648\",\n    \"description\": \"the man in a black shirt has a beard.\"\n  },\n  {\n    \"video_name\": \"tumblr_n904evRElI1r20o7po1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5060\",\n    \"key\": \"87702\",\n    \"description\": \"a man in a black shirt is moving his arms in a punching motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_npz10iHpPb1ssqvb0o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41004\",\n    \"key\": \"39205\",\n    \"description\": \"a man wearing a blue shirt is holding a microphone and speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyvgluqf71tm0es2o1_250\",\n    \"question\": \"what is the color of the sofa?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42621\",\n    \"key\": \"12524\",\n    \"description\": \"people are laying on a black sofa.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlvobrJMp1tln8qzo1_400\",\n    \"question\": \"what is running through the dirt?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35079\",\n    \"key\": \"65403\",\n    \"description\": \"the horse is running through the dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkpk1mOGIM1u2ddo1o1_400\",\n    \"question\": \"what is the man wearing a hat lit?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36220\",\n    \"key\": \"77514\",\n    \"description\": \"a man wearing a hat lit a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nem95mQccd1slw55qo1_400\",\n    \"question\": \"what stops just before hitting the car that tries to pull out in front of it?\",\n    \"answer\": \"trailer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43890\",\n    \"key\": \"88258\",\n    \"description\": \"a tractor trailer stops just before hitting a car that tries to pull out in front of it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklmclT3p41tculako1_400\",\n    \"question\": \"how many people clutch little fingers?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11998\",\n    \"key\": \"93033\",\n    \"description\": \"two people clutch little fingers and one briefly holds the other 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncf358sL3r1sm54imo1_400\",\n    \"question\": \"how many children in school uniforms are smiling and laughing with two young adults?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10171\",\n    \"key\": \"37179\",\n    \"description\": \"two children in school uniforms are smiling and laughing with two young adults.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfj9394H2n1r8d2fho1_1280\",\n    \"question\": \"where are two men driving and yelling.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34916\",\n    \"key\": \"94316\",\n    \"description\": \"two men are driving fast in a car and yelling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97zsdRSs81taoa7go1_250\",\n    \"question\": \"where does man take another man down.\",\n    \"answer\": \"? rink\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51819\",\n    \"key\": \"13137\",\n    \"description\": \"man takes another man down in a wrestling rink.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9imlri1WQ1s3att3o1_400\",\n    \"question\": \"what does the man turn into a picnic table?\",\n    \"answer\": \"bench\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38459\",\n    \"key\": \"46098\",\n    \"description\": \"a man turns a bench into a picnic table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwi7i4BC51rftdx0o1_400\",\n    \"question\": \"what does someone remove from their pocket?\",\n    \"answer\": \"magazine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36406\",\n    \"key\": \"92471\",\n    \"description\": \"someone removes a weapon magazine from their pocket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nooy6etADJ1sqh42jo1_400\",\n    \"question\": \"how many women is this image of wrestling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48364\",\n    \"key\": \"62499\",\n    \"description\": \"this image is of two women wrestling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp31zmK7o1tlzda7o1_250\",\n    \"question\": \"how many people are walking in the line moving their arms?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35229\",\n    \"key\": \"52570\",\n    \"description\": \"five people are walking in a line moving their arms,\"\n  },\n  {\n    \"video_name\": \"tumblr_njxnl2qMrX1sa0lndo1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36174\",\n    \"key\": \"69839\",\n    \"description\": \"a white man and a white girl are praying and burning heating a sword.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng5sskpeoG1qmfh6ho1_500\",\n    \"question\": \"what is the man walking and throwing?\",\n    \"answer\": \"guns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20531\",\n    \"key\": \"67805\",\n    \"description\": \"a man is walking and throwing two guns.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffv1dwI4U1tchtq5o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30357\",\n    \"key\": \"30782\",\n    \"description\": \"a girl with black hair is keeping her hand on her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngi2acC9XI1u3jef1o1_500\",\n    \"question\": \"what is the young man slowly licking?\",\n    \"answer\": \"lollipop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24847\",\n    \"key\": \"100080\",\n    \"description\": \"a young man is slowly licking a lollipop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkns7cDp5D1swk6pzo6_250\",\n    \"question\": \"how many girls are sitting next to each other and are looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3028\",\n    \"key\": \"41204\",\n    \"description\": \"two girls are sitting next to each other and are looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nanp56KwNG1ra8x2co1_250\",\n    \"question\": \"what is the baby crawling and looking straight?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11739\",\n    \"key\": \"12150\",\n    \"description\": \"a baby is crawling and a dog looking straight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6keloVPQ1tkz87ao1_250\",\n    \"question\": \"what is the man holding,\",\n    \"answer\": \"and pointing at it ? laptop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11326\",\n    \"key\": \"53668\",\n    \"description\": \"a man is holding a laptop,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhwxneQIVn1rb8uj5o1_400\",\n    \"question\": \"how many men are doing the secret hand shake?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1561\",\n    \"key\": \"65786\",\n    \"description\": \"the two men are doing a secret hand shake.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99jfgwQKW1ti1xc1o1_250\",\n    \"question\": \"what opens up to the shy girl?\",\n    \"answer\": \"elevator\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37984\",\n    \"key\": \"33662\",\n    \"description\": \"an elevator opens up to a shy girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nir4hpcZqn1sw4189o1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21435\",\n    \"key\": \"92070\",\n    \"description\": \"a woman wearing a white hat is smiling and looking away.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zykaCkxu1sqghk4o1_400\",\n    \"question\": \"what is running through the city with a bridge crossing it?\",\n    \"answer\": \"river\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6823\",\n    \"key\": \"101525\",\n    \"description\": \"a river is running through a city with a bridge crossing it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkuwugWpwO1tocarto1_250\",\n    \"question\": \"where is the woman with long blonde hair spinning.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51378\",\n    \"key\": \"39758\",\n    \"description\": \"a woman with long blonde hair is spinning in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wtigiK4p1tx4tt5o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4925\",\n    \"key\": \"26140\",\n    \"description\": \"a girl is wearing a white shirt and glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5wjeO42X1scelspo1_250\",\n    \"question\": \"what is the color of the truck?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA162\",\n    \"key\": \"52745\",\n    \"description\": \"hands are twisting a part on a small red toy truck.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncjbptIR5Z1tk4g7no1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2467\",\n    \"key\": \"74377\",\n    \"description\": \"this image is of a black girl with short hair dancing by herself.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjeosjIwS1tug0gzo1_400\",\n    \"question\": \"how many men are grabbing each other by the neck?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7195\",\n    \"key\": \"84208\",\n    \"description\": \"two men are grabbing each other by the neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmtj1dCOYI1uocxtso1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6762\",\n    \"key\": \"10322\",\n    \"description\": \"a girl with brown hair smiles and tilts her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h0noxlcN1sbsacvo1_400\",\n    \"question\": \"what is the person holding and waving their arms in the air?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24574\",\n    \"key\": \"85475\",\n    \"description\": \"a person is holding a bag and waving their arms in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngmnfpKAs41u3y59to1_250\",\n    \"question\": \"where are the guy and girl dancing.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38638\",\n    \"key\": \"34592\",\n    \"description\": \"the guy and girl are dancing in the bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncv2ubyfXj1tcd2tgo1_250\",\n    \"question\": \"what is the woman?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44186\",\n    \"key\": \"27602\",\n    \"description\": \"a woman is a purple shirt is crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl7d2DRMe1qbv408o1_r1_400\",\n    \"question\": \"what is the person wearing shaped being dragged across a room?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47694\",\n    \"key\": \"35872\",\n    \"description\": \"a person wearing a banana shaped being dragged across a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7badeW1R1uaavsyo1_500\",\n    \"question\": \"where does the man smile and drinks beer.\",\n    \"answer\": \"? bottle\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49708\",\n    \"key\": \"73284\",\n    \"description\": \"a man smiles and drinks beer in a bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndk9uvBSzG1rnjm0co1_250\",\n    \"question\": \"what is moving wildly on the couch to remove a tube from its head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26225\",\n    \"key\": \"69793\",\n    \"description\": \"a cat is moving wildly on a couch to remove a tube from its head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqn1ve1SQM1unyhx2o1_400\",\n    \"question\": \"what is fueling up at the race?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2689\",\n    \"key\": \"77011\",\n    \"description\": \"a race car is fueling up at a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dc9lz0mG1tasn90o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45393\",\n    \"key\": \"38260\",\n    \"description\": \"a man in a red jacket is dancing and waving his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb84pl57j11qd80wyo1_400\",\n    \"question\": \"how many man on stage leans over to whisper in someone 's ear?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6298\",\n    \"key\": \"40867\",\n    \"description\": \"one man on stage leans over to whisper in someone 's ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_npabf7wMc81tatohao1_250\",\n    \"question\": \"what is nuzzling and cleaning the cat?\",\n    \"answer\": \"pig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8747\",\n    \"key\": \"36414\",\n    \"description\": \"the pig is nuzzling and cleaning the cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gch7dwop1tchtlno1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29240\",\n    \"key\": \"90933\",\n    \"description\": \"a guy with brown hair starts dancing and the girl next to him dances afterward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbf2peigGM1rpjuouo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13737\",\n    \"key\": \"82668\",\n    \"description\": \"a boy with a white shirt is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd931nZhS61s1ctsqo1_400\",\n    \"question\": \"where is the man laughing and standing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37533\",\n    \"key\": \"64632\",\n    \"description\": \"a man is laughing and standing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nber13xCxA1t0yxwdo1_400\",\n    \"question\": \"what is the guy using a black hat,\",\n    \"answer\": \"is also using ? earring\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19404\",\n    \"key\": \"90654\",\n    \"description\": \"a guy using a black hat,\"\n  },\n  {\n    \"video_name\": \"tumblr_nepw693vsr1tk2ngvo1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9788\",\n    \"key\": \"55996\",\n    \"description\": \"a black dog is snuggling in a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckg4oA1Tr1t5a4c7o1_400\",\n    \"question\": \"where are lots of people having fun.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26534\",\n    \"key\": \"64343\",\n    \"description\": \"lots of people are having fun in a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcdp9qa9l1raaknro1_500\",\n    \"question\": \"what is this image of two men onstage sharing?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49632\",\n    \"key\": \"56535\",\n    \"description\": \"this image is of two men onstage sharing a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9ol4V9GF1u8skfvo1_500\",\n    \"question\": \"what are two men playing on a stage to a crowd?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38569\",\n    \"key\": \"66907\",\n    \"description\": \"two men are playing guitars on a stage to a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3mstXSp41rp0ayqo1_400\",\n    \"question\": \"how many men are sitting and hugging together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44004\",\n    \"key\": \"63496\",\n    \"description\": \"the two men are sitting and hugging together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbivlx2sZy1tiqdeho1_400\",\n    \"question\": \"how many guy sipped his drink and the other touched his hair?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3553\",\n    \"key\": \"68717\",\n    \"description\": \"one guy sipped his drink and the other touched his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoz5kE1ov1u5n6bno1_250\",\n    \"question\": \"what are two people going up?\",\n    \"answer\": \"case\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11834\",\n    \"key\": \"75192\",\n    \"description\": \"two people are going up a stair case.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclxdhfsKG1s9ar26o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40798\",\n    \"key\": \"32642\",\n    \"description\": \"a girl with blue hair bashfully covers her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4o2pe1Ah1u2c2quo1_500\",\n    \"question\": \"what is turning head to the perfume with attraction?\",\n    \"answer\": \"wolf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31941\",\n    \"key\": \"84041\",\n    \"description\": \"a wolf is turning head to the perfume with attraction.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkx8sjWBmj1st1mg9o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1148\",\n    \"key\": \"7113\",\n    \"description\": \"a man with brown hair lifts his chin and blinks.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6m9ty5TR1qjwz8qo1_250\",\n    \"question\": \"what is singing in darkness on stage?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37647\",\n    \"key\": \"27638\",\n    \"description\": \"a rock star is singing in darkness on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsfslT5aX1u2cx64o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20585\",\n    \"key\": \"151\",\n    \"description\": \"the person with the red hair is wearing a purple coat and staring off in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmnppGF0g1rer2fjo1_250\",\n    \"question\": \"how many men with same shirt is holding each other looking down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43062\",\n    \"key\": \"49663\",\n    \"description\": \"two men with same shirt is holding each other looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc37dloqbL1rq5x90o1_500\",\n    \"question\": \"what is the woman smoking and wearing?\",\n    \"answer\": \"clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50713\",\n    \"key\": \"17468\",\n    \"description\": \"a woman is smoking and wearing black clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5o04joG21se9pwmo1_400\",\n    \"question\": \"what tries to step through the doggy door?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA200\",\n    \"key\": \"49244\",\n    \"description\": \"a dog tries to step through a doggy door.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng09o6NQAh1u542c1o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37638\",\n    \"key\": \"29069\",\n    \"description\": \"the man in the white shirt is moving his head from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3coldvak1sixphro1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34118\",\n    \"key\": \"21213\",\n    \"description\": \"a blond guy in black is laughing really hard.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcvis8jts1tbcrm5o1_250\",\n    \"question\": \"what is the color of the rabbit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4448\",\n    \"key\": \"3820\",\n    \"description\": \"a black bunny rabbit was eating lettuce leaves.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xu4w1Lfq1tatohao1_400\",\n    \"question\": \"what are two cats next to a door and the cat scratches?\",\n    \"answer\": \"wall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45142\",\n    \"key\": \"40652\",\n    \"description\": \"two cats are next to a door and the cat scratches the wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebx0vqnAG1tqybg9o1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4557\",\n    \"key\": \"43459\",\n    \"description\": \"two males in black uniform are playing with two floating cats.\"\n  },\n  {\n    \"video_name\": \"tumblr_non9dnF1Om1u4uss5o1_400\",\n    \"question\": \"where are two ladies kissing each other passionately.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45885\",\n    \"key\": \"78286\",\n    \"description\": \"two ladies are kissing each other passionately in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e2tqLvWh1tdmffyo1_250\",\n    \"question\": \"what is the color of the puppy?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50018\",\n    \"key\": \"25535\",\n    \"description\": \"a person is holding a small brown puppy.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9orvbaWYO1tiayalo1_400\",\n    \"question\": \"how many people hold hands and point them in the air?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44763\",\n    \"key\": \"70422\",\n    \"description\": \"two people hold hands and point them in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfghin7vcs1t3037qo1_400\",\n    \"question\": \"what is the woman getting off and kissing a bearded man in sunglasses?\",\n    \"answer\": \"boat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30181\",\n    \"key\": \"67106\",\n    \"description\": \"a woman is getting off a boat and kissing a bearded man in sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_na07x1hrbL1ti3y6yo1_400\",\n    \"question\": \"what is looking up in the air?\",\n    \"answer\": \"pig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49939\",\n    \"key\": \"25005\",\n    \"description\": \"a guinea pig is looking up in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7f06Iimr1r1xcixo1_400\",\n    \"question\": \"how many people makes faces and peace signs?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50805\",\n    \"key\": \"28875\",\n    \"description\": \"four people makes faces and peace signs.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u1myS5dT1tgh87to1_400\",\n    \"question\": \"how many men are having the conversation in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34706\",\n    \"key\": \"87168\",\n    \"description\": \"two men are having a conversation in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwmiuolPN1tud7j4o1_500\",\n    \"question\": \"what is turning into the lot of black birds?\",\n    \"answer\": \"cape\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41267\",\n    \"key\": \"98837\",\n    \"description\": \"a woman 's cape is turning into a lot of black birds.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvfa6KzJr1sqp9nuo1_400\",\n    \"question\": \"how many girls is wearing sweaters are walking trough a field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38181\",\n    \"key\": \"64151\",\n    \"description\": \"two girls wearing sweaters are walking trough a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_np88x8KELj1srwy2po1_400\",\n    \"question\": \"what is the color of the suits?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17534\",\n    \"key\": \"96841\",\n    \"description\": \"three men who are wearing black suits dance in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nama5mGz671rlq8l9o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26153\",\n    \"key\": \"59676\",\n    \"description\": \"a girl in a white dress is singing while a guy plays a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbv33uJdK11sfhzddo1_500\",\n    \"question\": \"how many cups does the woman arrange on a table?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30114\",\n    \"key\": \"88760\",\n    \"description\": \"a woman arranges three cups on a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh4kp4iSKN1rsfix9o1_500\",\n    \"question\": \"what is the man smoking while looking at someone or something?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35647\",\n    \"key\": \"50621\",\n    \"description\": \"a man is smoking a cigarette while looking at someone or something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wbyaTXBZ1t4mpk7o1_400\",\n    \"question\": \"what is the man or a woman playing with both hands?\",\n    \"answer\": \"instrument\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38717\",\n    \"key\": \"35386\",\n    \"description\": \"a man or a woman is playing a musical instrument with both hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbv1p9aCuo1tahfdeo1_250\",\n    \"question\": \"what is the woman walking a small bobcat on a leash and it attacks?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37911\",\n    \"key\": \"44809\",\n    \"description\": \"a woman is walking a small bobcat on a leash and it attacks a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqlayumGa1u0r2qfo1_500\",\n    \"question\": \"how many men are looking to the side?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25677\",\n    \"key\": \"88783\",\n    \"description\": \"five men are looking to the side and two of them are moving back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba7mrIRaG1te5fy0o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9557\",\n    \"key\": \"79432\",\n    \"description\": \"the cat is being stroked by a girl with brown hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf56f9mTiv1u3akejo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39892\",\n    \"key\": \"82219\",\n    \"description\": \"a man with brown hair was dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw5w8Ium11shns3io1_250\",\n    \"question\": \"what does the woman throw off of her shoulders?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7656\",\n    \"key\": \"81693\",\n    \"description\": \"a woman throws her magenta sequinned jacket off of her shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9d64e3Zyo1rsxlf3o1_500\",\n    \"question\": \"how many women are dancing on the stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42268\",\n    \"key\": \"92256\",\n    \"description\": \"three women are dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_mpyllgM20U1qcbva9o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32390\",\n    \"key\": \"41532\",\n    \"description\": \"a girl with long brown hair bites her lower lip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnvotoD9bf1urraj4o1_500\",\n    \"question\": \"what is the man laying on the floor and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32291\",\n    \"key\": \"46257\",\n    \"description\": \"the man is laying on the floor and playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3zdwLhgA1ttuja3o1_500\",\n    \"question\": \"how many people are in the recording studio?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA53079\",\n    \"key\": \"85274\",\n    \"description\": \"two people are in a recording studio and one of them has a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbi2omTVCV1tp29hho1_400\",\n    \"question\": \"where are the group of children riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10748\",\n    \"key\": \"41028\",\n    \"description\": \"a group of children are riding in a mini car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhrvfl1oT1s92jogo1_500\",\n    \"question\": \"what is the boy sipping and smiling to someone?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23448\",\n    \"key\": \"94440\",\n    \"description\": \"a boy is sipping a coffee drink and smiling to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjn15MCNP1tsnqf4o1_400\",\n    \"question\": \"how many dancers are dancing in the foggy room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5692\",\n    \"key\": \"61799\",\n    \"description\": \"two dancers are dancing in a foggy room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl375sM5GF1tigieto1_400\",\n    \"question\": \"where is the soccer player scoring a goal.\",\n    \"answer\": \"? net\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43180\",\n    \"key\": \"101682\",\n    \"description\": \"a soccer player is scoring a goal in the opponents net.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmd3bmcQP1upo311o1_400\",\n    \"question\": \"what is the woman singing and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21160\",\n    \"key\": \"19530\",\n    \"description\": \"a woman is singing and playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxu9dyJiY1txp45vo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10547\",\n    \"key\": \"6659\",\n    \"description\": \"a man in a gray shirt gave a thumbs up sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpne1baVW1rylr5ko1_500\",\n    \"question\": \"what does two boys a watching something and one pop?\",\n    \"answer\": \"bubble\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17982\",\n    \"key\": \"97318\",\n    \"description\": \"two boys a watching something and one pops a bubble.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92lo9JEvZ1tfz9ppo1_400\",\n    \"question\": \"what are running down the vestibule?\",\n    \"answer\": \"puppies\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4187\",\n    \"key\": \"52245\",\n    \"description\": \"adorable puppies are running down a vestibule.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakkmkV6lL1tfkgsfo1_400\",\n    \"question\": \"what does the skater turn around at full speed?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44455\",\n    \"key\": \"66429\",\n    \"description\": \"a skater turns around his skateboard at full speed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nca2zmXP3d1slj978o1_400\",\n    \"question\": \"where is the dog watching the piano.\",\n    \"answer\": \"? tablet\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43889\",\n    \"key\": \"65425\",\n    \"description\": \"a dog is watching the piano in the tablet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxf7950qG1tdjuqvo1_500\",\n    \"question\": \"what jumps on the toy?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27321\",\n    \"key\": \"76474\",\n    \"description\": \"a beautiful cat jumps on a toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncribxI9q81qi39coo1_500\",\n    \"question\": \"how many men are standing together with one 's arm around the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44620\",\n    \"key\": \"99517\",\n    \"description\": \"two men are standing together with one 's arm around the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrjkcGkJR1tx8mn0o1_400\",\n    \"question\": \"what drives forwards while smoke comes out of the back?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41472\",\n    \"key\": \"55503\",\n    \"description\": \"a racing car drives forwards while smoke comes out of the back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9es8cEtL1tc95klo1_400\",\n    \"question\": \"what dances and walks through the jungle?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22386\",\n    \"key\": \"77527\",\n    \"description\": \"the monkey dances and walks through the jungle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9b2510ZPL1rx90qpo1_250\",\n    \"question\": \"how many people is it?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46091\",\n    \"key\": \"38426\",\n    \"description\": \"it is two people and they are looking each other in the eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nceq8oO2lI1tpae88o1_1280\",\n    \"question\": \"how many people are snowboarding in the snow?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40469\",\n    \"key\": \"63673\",\n    \"description\": \"two people are snowboarding in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3w76eSSb1u28yp1o1_500\",\n    \"question\": \"what is the woman wearing and singing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25284\",\n    \"key\": \"48570\",\n    \"description\": \"a woman is wearing a black shirt and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndop0fsg361th018eo1_1280\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4032\",\n    \"key\": \"98189\",\n    \"description\": \"a young man wearing black clothing is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0570dobK1uoozmvo1_500\",\n    \"question\": \"how many people is this talking trash to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25783\",\n    \"key\": \"17799\",\n    \"description\": \"this is two people talking trash to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0nn0IZ1X1rhq4gso1_250\",\n    \"question\": \"how many men are sitting on the couch talking into microphones?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5252\",\n    \"key\": \"43749\",\n    \"description\": \"three men are sitting on a couch talking into microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94efhu6am1tfer95o1_500\",\n    \"question\": \"what is driving slowly down the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12539\",\n    \"key\": \"72820\",\n    \"description\": \"a fancy sports car is driving slowly down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxpitJ4Nf1ssppoho1_250\",\n    \"question\": \"what is the little girl chasing?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21352\",\n    \"key\": \"51436\",\n    \"description\": \"a little girl is chasing a butterfly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr89g6yGER1uaa0x0o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37368\",\n    \"key\": \"60617\",\n    \"description\": \"a man wearing a black shirt puts his hands up to the sides.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pjlmexAb1qlbtloo1_1280\",\n    \"question\": \"what is traveling on the road?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13032\",\n    \"key\": \"50229\",\n    \"description\": \"a motorcycle is traveling on a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vpy6hFXB1soz0p7o1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8449\",\n    \"key\": \"78953\",\n    \"description\": \"a guy wearing black clothes is riding on a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nijrydrPVc1rtzdq7o1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27890\",\n    \"key\": \"94791\",\n    \"description\": \"a white puppy tries to get a treat off of the table but the brown dog gets it instead.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93nehnQiZ1tad983o1_100\",\n    \"question\": \"how many finger does the man with a tattoo on his arm point to the right of him?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29622\",\n    \"key\": \"1994\",\n    \"description\": \"a man with a tattoo on his arm points his one finger to the right of him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni11njEHBX1u86jejo1_250\",\n    \"question\": \"what is the man with a beard wearing?\",\n    \"answer\": \"beanie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10858\",\n    \"key\": \"14186\",\n    \"description\": \"a man with a beard is wearing a blue beanie.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6elw4KPi1tb8qpro1_250\",\n    \"question\": \"how many men are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25021\",\n    \"key\": \"19283\",\n    \"description\": \"two men are talking and one of them looks nervous about the conversation.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrefpvwRqT1uauvk5o1_250\",\n    \"question\": \"what is the woman saying something and holding?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24058\",\n    \"key\": \"38407\",\n    \"description\": \"a woman is saying something and holding a phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_njodpwEZQ41u8js9ho1_500\",\n    \"question\": \"how many men raises their head and stare at someone as they smile?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33421\",\n    \"key\": \"40905\",\n    \"description\": \"two men raises their head and stare at someone as they smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xt13cRaK1th5x8zo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32657\",\n    \"key\": \"39190\",\n    \"description\": \"a man quickly puts a black hat on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadff8qS1V1tf396vo1_500\",\n    \"question\": \"how many pair of hands are hanging down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5050\",\n    \"key\": \"83819\",\n    \"description\": \"two pair of hands are hanging down and one grabs the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nks1ucMHvh1r0slduo1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30919\",\n    \"key\": \"64982\",\n    \"description\": \"a woman wearing a black sweater is rearranging compact disc cases on a shelf.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0vxeyviE1rco9sno1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43153\",\n    \"key\": \"17322\",\n    \"description\": \"a man in black slowly takes off a scarf.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x1wfRppX1tdmffyo1_250\",\n    \"question\": \"what does the cat knock over?\",\n    \"answer\": \"penguin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27087\",\n    \"key\": \"45924\",\n    \"description\": \"a cat knocks a baby penguin over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc084cTCqr1rkeisdo1_400\",\n    \"question\": \"what is the color of the jumper?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18150\",\n    \"key\": \"11133\",\n    \"description\": \"a man wearing a white jumper laughs and looks down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwg77Ux711r5ygbco1_250\",\n    \"question\": \"what is playing with someone in the snow?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49162\",\n    \"key\": \"47488\",\n    \"description\": \"a dog is playing with someone in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nka6muC94q1r5ykfzo1_400\",\n    \"question\": \"what does the man dribble and then slam dunks it?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5478\",\n    \"key\": \"15983\",\n    \"description\": \"a man dribbles a ball and then slam dunks it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney3dbZCd71tqa07xo1_500\",\n    \"question\": \"where does the woman wear black and dances ballet.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44735\",\n    \"key\": \"75920\",\n    \"description\": \"a woman wears black and dances ballet in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxkmhiBLm1t5w6wco1_400\",\n    \"question\": \"what is the woman wearing and trying to be sexy?\",\n    \"answer\": \"wig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23706\",\n    \"key\": \"28857\",\n    \"description\": \"a woman is wearing a white wig and trying to be sexy.\"\n  },\n  {\n    \"video_name\": \"tumblr_naozs4fnJF1tk8054o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22761\",\n    \"key\": \"70769\",\n    \"description\": \"a girl with long brown hair is smiling while sitting on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_naw8zsiXqa1qzwouio1_400\",\n    \"question\": \"what is the man driving and shaking his head?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40099\",\n    \"key\": \"63555\",\n    \"description\": \"a man is driving a car and shaking his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_no6t0etE261t0ojyvo1_400\",\n    \"question\": \"where is the young man dancing and singing.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32069\",\n    \"key\": \"10457\",\n    \"description\": \"a young man is dancing and singing in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2q4csgq91txeyrmo1_250\",\n    \"question\": \"how many people fought?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38436\",\n    \"key\": \"35741\",\n    \"description\": \"two people fought and the one in black jumped in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6t8rIVdA1tjjnlno1_400\",\n    \"question\": \"what is rolling itself into a hamster ball?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44272\",\n    \"key\": \"54116\",\n    \"description\": \"a cat is rolling itself into a hamster ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfz5jf3a3j1sl4e5go1_500\",\n    \"question\": \"what are people recording on the side of the race track?\",\n    \"answer\": \"race\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8001\",\n    \"key\": \"91711\",\n    \"description\": \"people are recording a car race on the side of the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrhyfL5yO1s0mjn5o1_400\",\n    \"question\": \"what is the man with long hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18484\",\n    \"key\": \"58868\",\n    \"description\": \"a man with long hair is playing a colorful guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmf37ggVI1sjh0axo1_250\",\n    \"question\": \"how many people struggle under water and then kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27837\",\n    \"key\": \"15412\",\n    \"description\": \"two people struggle under water and then kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_n912uxe68J1sexzuno1_500\",\n    \"question\": \"what is the person wearing and spinning a mic while sitting on a stool?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44518\",\n    \"key\": \"50053\",\n    \"description\": \"a person is wearing a hat and spinning a mic while sitting on a stool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhprfiQ0eR1tjuuleo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1144\",\n    \"key\": \"1893\",\n    \"description\": \"a woman is putting on a black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_np1j7fZTjF1rn75pro1_540\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39903\",\n    \"key\": \"77375\",\n    \"description\": \"a man with short black hair and a beard is smiling and playing with a basketball.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxyfpFOvW1tzhkoao1_400\",\n    \"question\": \"what is trying to get something?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46427\",\n    \"key\": \"1074\",\n    \"description\": \"a grumpy cat is trying to get something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94vgu7eef1rraz85o1_400\",\n    \"question\": \"what do two people look out,\",\n    \"answer\": \"? excitedly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36022\",\n    \"key\": \"48177\",\n    \"description\": \"two people look out the window excitedly,\"\n  },\n  {\n    \"video_name\": \"tumblr_njrmp52ukf1u2qfs8o1_250\",\n    \"question\": \"what does the person throw at another person?\",\n    \"answer\": \"money\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2485\",\n    \"key\": \"16204\",\n    \"description\": \"a person throws money at another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesksmxUsA1rdfljoo1_500\",\n    \"question\": \"what is passing by another one?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50746\",\n    \"key\": \"76053\",\n    \"description\": \"a white car is passing by another one.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxlgzOQSN1t0x7yto1_500\",\n    \"question\": \"what is running in the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49392\",\n    \"key\": \"61137\",\n    \"description\": \"a blue beautiful car is running in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_noaswjesmm1th7g9io1_400\",\n    \"question\": \"what are lying side by side,\",\n    \"answer\": \"groomed each other ? cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7934\",\n    \"key\": \"95722\",\n    \"description\": \"two cats lying side by side,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6u7h2I8Z1saeojro1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26182\",\n    \"key\": \"15571\",\n    \"description\": \"a guy with black suit turn off in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwtpuwpHb1u1bpwwo1_500\",\n    \"question\": \"how many people are wrapping their arms around each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35654\",\n    \"key\": \"48152\",\n    \"description\": \"two people are wrapping their arms around each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nim0u4qBet1rblf33o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28662\",\n    \"key\": \"24376\",\n    \"description\": \"a man wearing a black jacket is clapping.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyi6ks5eL1u7c8z0o1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20919\",\n    \"key\": \"22966\",\n    \"description\": \"a white girl with yellow hair is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemqyctCqK1sbqfh7o1_250\",\n    \"question\": \"what is the woman wearing made from candy?\",\n    \"answer\": \"costume\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40835\",\n    \"key\": \"38441\",\n    \"description\": \"a woman is wearing a costume made from candy.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zjjsp2E21tecuevo1_400\",\n    \"question\": \"what is the color of the people?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15121\",\n    \"key\": \"42865\",\n    \"description\": \"two people in black wave their arms while they dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndg2qo1VQh1r6w3oho1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14713\",\n    \"key\": \"38091\",\n    \"description\": \"a black man is squishing his cheeks together with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5odsJdK11tz9jaqo1_500\",\n    \"question\": \"what does the red team kick into the soccer goal?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27708\",\n    \"key\": \"101567\",\n    \"description\": \"the red team kicks the ball into the soccer goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tiwqdAI71tdmffyo1_400\",\n    \"question\": \"what is playing with the phone and taking a picture?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20592\",\n    \"key\": \"15936\",\n    \"description\": \"a cat is playing with a phone and taking a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqt86b7tD31rltsrco1_400\",\n    \"question\": \"what crawls on top of a photographers head?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45135\",\n    \"key\": \"87329\",\n    \"description\": \"a kitten crawls on top of a photographers head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblvftkxsM1t4phwpo1_400\",\n    \"question\": \"what is being built next to the water?\",\n    \"answer\": \"building\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23923\",\n    \"key\": \"35534\",\n    \"description\": \"a building is being built next to the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafvslrxEZ1tx8mn0o1_400\",\n    \"question\": \"what goes down the race track?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6118\",\n    \"key\": \"76974\",\n    \"description\": \"a motorcycle goes down the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni34syMevA1u30ycao1_500\",\n    \"question\": \"where are two guys joking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12813\",\n    \"key\": \"95849\",\n    \"description\": \"two guys are joking front a crowd in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuxofDUaP1trlo5to1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28054\",\n    \"key\": \"48690\",\n    \"description\": \"two interviewers talk to a lady with long black hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nca2zmXP3d1slj978o1_400\",\n    \"question\": \"what is playing the keyboard on a tablet?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48826\",\n    \"key\": \"65425\",\n    \"description\": \"a cat is playing the keyboard on a tablet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc7u35pYt1sdbrm9o1_400\",\n    \"question\": \"how many boys with dark hair are standing in a nightclub?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA345\",\n    \"key\": \"65496\",\n    \"description\": \"two boys with dark hair are standing in a nightclub.\"\n  },\n  {\n    \"video_name\": \"tumblr_muvgi0Qb2c1rlik61o1_400\",\n    \"question\": \"what is the guy riding,\",\n    \"answer\": \"? skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32872\",\n    \"key\": \"65002\",\n    \"description\": \"a guy is riding a skateboard,\"\n  },\n  {\n    \"video_name\": \"tumblr_nht8l6Brfh1slj978o1_400\",\n    \"question\": \"what is the cat grabbing?\",\n    \"answer\": \"snack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20342\",\n    \"key\": \"27972\",\n    \"description\": \"a cat is grabbing a woman 's snack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1dprmAw71tw8vf9o1_1280\",\n    \"question\": \"how many girls is wearing surf tables are running through a beach?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21763\",\n    \"key\": \"86626\",\n    \"description\": \"two girls wearing surf tables are running through a beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tuqn05ec1rd0civo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39528\",\n    \"key\": \"59139\",\n    \"description\": \"two women are walking past a fiFRAMEQAlace,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9c03vG9GB1tyeuq0o1_250\",\n    \"question\": \"what meows as other kittens walk around it?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31130\",\n    \"key\": \"27241\",\n    \"description\": \"a kitten meows as other kittens walk around it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd2h3kKDkD1tw2zo1o2_r3_400\",\n    \"question\": \"what is the woman in a white dress riding?\",\n    \"answer\": \"carriage\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13821\",\n    \"key\": \"44297\",\n    \"description\": \"a woman in a white dress is riding a carriage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsfslT5aX1u2cx64o1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29034\",\n    \"key\": \"151\",\n    \"description\": \"the person with the red hair is wearing a purple coat and staring off in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nju9ibDTtt1u3g519o1_400\",\n    \"question\": \"what is walking on its hind legs and a man goes into a robot suit?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6293\",\n    \"key\": \"54134\",\n    \"description\": \"a cat is walking on its hind legs and a man goes into a robot suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrs7v2neT1ttuja3o1_250\",\n    \"question\": \"how many military are training on how to climb the wall?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26576\",\n    \"key\": \"5601\",\n    \"description\": \"three military are training on how to climb a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkji35ZEpf1u3w3ryo1_250\",\n    \"question\": \"what is the color of the cake?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9911\",\n    \"key\": \"36401\",\n    \"description\": \"a piece of white cake is being removed from the rest of the cake.\"\n  },\n  {\n    \"video_name\": \"tumblr_na85llG7VQ1rht9qto1_400\",\n    \"question\": \"where does the woman,\",\n    \"answer\": \"with long hair , open her mouth . ? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30572\",\n    \"key\": \"33742\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0n8ksRhS1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29602\",\n    \"key\": \"63631\",\n    \"description\": \"a blue car is driving down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_najytbPljs1s0j7iyo1_500\",\n    \"question\": \"what are men wearing black are dancing and holding?\",\n    \"answer\": \"microphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18185\",\n    \"key\": \"94673\",\n    \"description\": \"men wearing black are dancing and holding microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncizcaTsv91ry3jfko1_500\",\n    \"question\": \"how many people are in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8377\",\n    \"key\": \"75527\",\n    \"description\": \"two people are in a room and one of them is moving around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne7hbbIStG1tqthh5o1_400\",\n    \"question\": \"what is the color of the file?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52803\",\n    \"key\": \"56436\",\n    \"description\": \"a white file is being FRAMEQAeatedly open and shut.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7k6pBzzN1qm466ao1_500\",\n    \"question\": \"how many men are sitting on the couch and smoking?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50337\",\n    \"key\": \"24484\",\n    \"description\": \"three men are sitting on a couch and smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqqp4woKq61t0t2pco1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33198\",\n    \"key\": \"50323\",\n    \"description\": \"a boy wearing a red shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxxwoxpjy1rv5gmso1_400\",\n    \"question\": \"how many people are skateboarding and flip over each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24675\",\n    \"key\": \"77195\",\n    \"description\": \"two people are skateboarding and flip over each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbab1nX5s1u2eoido1_500\",\n    \"question\": \"how many boys are sitting next to each other and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26976\",\n    \"key\": \"95714\",\n    \"description\": \"two boys are sitting next to each other and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq513q76F81u3cb3fo1_400\",\n    \"question\": \"how many girl with black shirt are dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6548\",\n    \"key\": \"46038\",\n    \"description\": \"three girl with black shirt are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkopqiVNB01un86uao1_250\",\n    \"question\": \"how many men are wrestling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32618\",\n    \"key\": \"86699\",\n    \"description\": \"two men are wrestling and one man flips the other one.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1g3oDF0D1qcgyjoo1_400\",\n    \"question\": \"what is running across the floor and into a box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33437\",\n    \"key\": \"46484\",\n    \"description\": \"a cat is running across the floor and into a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq62qusQ2Z1tk2ngvo1_500\",\n    \"question\": \"where is the cat chasing a fish.\",\n    \"answer\": \"? bathtub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14110\",\n    \"key\": \"69624\",\n    \"description\": \"a cat is chasing a fish in the bathtub.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrv41jHnK1rlowhpo1_400\",\n    \"question\": \"how many wrestlers are knocking each other down in the ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18190\",\n    \"key\": \"63063\",\n    \"description\": \"two wrestlers are knocking each other down in the ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhccwxLB7g1tigieto1_400\",\n    \"question\": \"what does the soccer player dribbles then pass?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32376\",\n    \"key\": \"76338\",\n    \"description\": \"a soccer player dribbles then passes the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nina5vfIdD1u95biro2_400\",\n    \"question\": \"what is turning into the man who looks upset?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33693\",\n    \"key\": \"60896\",\n    \"description\": \"a dog is turning into a man who looks upset.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz9wdNmgj1tgftffo1_400\",\n    \"question\": \"how many men is talking about something one is using hand gestures?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43880\",\n    \"key\": \"40373\",\n    \"description\": \"two men talking about something one is using hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4yysgw0F1ti4mkxo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30235\",\n    \"key\": \"59799\",\n    \"description\": \"a woman with red hair is having a discussion with a dark haired woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxhsp8ug21s6zpepo1_400\",\n    \"question\": \"what is receiving the belly rub?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25850\",\n    \"key\": \"68620\",\n    \"description\": \"a small dog is receiving a belly rub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2cbemHoE1uot1e7o1_400\",\n    \"question\": \"where is the man wearing a jacket is standing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23171\",\n    \"key\": \"64631\",\n    \"description\": \"a man wearing a jacket is standing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y8wqI6Xn1qlzevso1_500\",\n    \"question\": \"where are two men talking.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46217\",\n    \"key\": \"98801\",\n    \"description\": \"two men are talking in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99skaFerS1s1ye39o1_250\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15976\",\n    \"key\": \"23535\",\n    \"description\": \"a guy wearing a blue shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhk803HfRY1u1826wo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24525\",\n    \"key\": \"1883\",\n    \"description\": \"a guy with white shirt is sticking out tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lvtnE3tA1s92i7mo1_400\",\n    \"question\": \"what is the color of the teeth?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5123\",\n    \"key\": \"21864\",\n    \"description\": \"a man with white teeth is laughing with someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblj3dVAIl1sm013wo1_400\",\n    \"question\": \"what is taking the bath under a stream of water?\",\n    \"answer\": \"parakeet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18121\",\n    \"key\": \"65862\",\n    \"description\": \"a parakeet is taking a bath under a stream of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0agzCLGr1tz9jaqo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44733\",\n    \"key\": \"101645\",\n    \"description\": \"a soccer player in a white shirt steals the ball and kicks a goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2s6tD89Q1tdqz0co1_500\",\n    \"question\": \"how many men are sitting together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48875\",\n    \"key\": \"67602\",\n    \"description\": \"three men are sitting together,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8uv49Wi11tp09vco1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4081\",\n    \"key\": \"77746\",\n    \"description\": \"a man in a gray shirt is blowing kisses to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl5x8DW461rj8475o1_400\",\n    \"question\": \"what is the color of the person?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26692\",\n    \"key\": \"93891\",\n    \"description\": \"white haired person is waving their right hand in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97yrfHtCi1t5lsj5o1_500\",\n    \"question\": \"where is the woman fixing a mannequin.\",\n    \"answer\": \"? store\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31917\",\n    \"key\": \"54283\",\n    \"description\": \"a woman is fixing a mannequin in a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpmp6xUWQ1qbvf9jo1_500\",\n    \"question\": \"what is the girl taking at a guy in a room?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6062\",\n    \"key\": \"95373\",\n    \"description\": \"a girl is taking a cap at a guy in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhys5kaxEu1u7u0ceo1_500\",\n    \"question\": \"what is the bear wearing and a woman with blonde hair is talking?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15031\",\n    \"key\": \"95988\",\n    \"description\": \"a bear is wearing a red hat and a woman with blonde hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngf9rveb2q1sh98coo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31655\",\n    \"key\": \"94749\",\n    \"description\": \"the black car is driving through an open grassy area.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes4nhypOg1td8ijso1_400\",\n    \"question\": \"how many guys is this practicing a song while wearing headphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3852\",\n    \"key\": \"54509\",\n    \"description\": \"this is two guys practicing a song while wearing headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqhv0vJeU91uswv18o1_400\",\n    \"question\": \"how many young boys are dancing funny and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23763\",\n    \"key\": \"63451\",\n    \"description\": \"two young boys are dancing funny and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3xfcUdnK1tiamx1o1_400\",\n    \"question\": \"what is dancing happily and fast?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25075\",\n    \"key\": \"19533\",\n    \"description\": \"a dog is dancing happily and fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8yn0AUFo1qk5xgqo1_400\",\n    \"question\": \"what are the man and a woman wearing?\",\n    \"answer\": \"masks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25846\",\n    \"key\": \"60822\",\n    \"description\": \"a man and a woman are wearing masks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5wlgslxv1tl5ztao1_400\",\n    \"question\": \"what was the woman with dark hair smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46645\",\n    \"key\": \"31986\",\n    \"description\": \"a woman with dark hair was smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9b86RibY1t30yt2o1_400\",\n    \"question\": \"how many men is wearing paint on their face are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11795\",\n    \"key\": \"82248\",\n    \"description\": \"two men wearing paint on their face are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndobesqq141sveek6o1_250\",\n    \"question\": \"how many people are spending time together as a couple?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33614\",\n    \"key\": \"47422\",\n    \"description\": \"two people are spending time together as a couple.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzkzxzWdA1qhojs7o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13208\",\n    \"key\": \"19244\",\n    \"description\": \"a woman with long brown hair walks forward and raises a yellow purse to her shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngf57i9qu81ra6i3zo1_500\",\n    \"question\": \"what is the person taking and watching someone?\",\n    \"answer\": \"call\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14350\",\n    \"key\": \"101049\",\n    \"description\": \"a person is taking a phone call and watching someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndia525bro1rc7zl1o1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1870\",\n    \"key\": \"77620\",\n    \"description\": \"an orange cat smacks a gray cat in a case of mistaken identify after being bit my a squirrel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbn2o2iNh81qzbagvo1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46631\",\n    \"key\": \"89373\",\n    \"description\": \"a black haired woman is closing her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam2zbsmve1tvg9jzo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1915\",\n    \"key\": \"68174\",\n    \"description\": \"a woman in a red dress runs over to a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagzc9ga3p1qjn6two1_250\",\n    \"question\": \"what is the man bringing to the table?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8124\",\n    \"key\": \"41405\",\n    \"description\": \"a man is bringing a little goat to the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyol8TrRL1tdh0pko1_250\",\n    \"question\": \"how many man are singing and making hand gestures?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18354\",\n    \"key\": \"40211\",\n    \"description\": \"two man are singing and making hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_noag3k38241tzmcano1_250\",\n    \"question\": \"what is rolling down on the paper stand?\",\n    \"answer\": \"pigeon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51551\",\n    \"key\": \"27870\",\n    \"description\": \"a wooden pigeon is rolling down on a paper stand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr55pkjAU1uot1e7o1_400\",\n    \"question\": \"where are two delinquents riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6141\",\n    \"key\": \"64614\",\n    \"description\": \"two delinquents are riding in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nooy6etADJ1sqh42jo1_400\",\n    \"question\": \"how many women are fighting outside the wrestling ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13280\",\n    \"key\": \"62499\",\n    \"description\": \"two women are fighting outside a wrestling ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq9z4yt75S1srjus2o1_400\",\n    \"question\": \"where is the man shaking.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35925\",\n    \"key\": \"79907\",\n    \"description\": \"a man is shaking back and forth in his chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nktdtfEy261t0s6h6o1_400\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29489\",\n    \"key\": \"87072\",\n    \"description\": \"the boy with the blue eyes is in deep thought.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd19bgsTCX1sxkh0mo1_500\",\n    \"question\": \"how many people are walking to get into the vehicle?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18263\",\n    \"key\": \"48313\",\n    \"description\": \"two people are walking to get into a vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo3fs3Gfn1qdfgy3o1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43556\",\n    \"key\": \"60504\",\n    \"description\": \"a blue car turns around the corner of a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbz0yeXa3A1qflnb4o1_250\",\n    \"question\": \"what is the woman with blonde hair taking off?\",\n    \"answer\": \"clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15638\",\n    \"key\": \"27613\",\n    \"description\": \"a woman with blonde hair is taking her clothes off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdf1xfsD11t06o0xo1_400\",\n    \"question\": \"where is the man rolling down a hill.\",\n    \"answer\": \"? tire\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28945\",\n    \"key\": \"68862\",\n    \"description\": \"a man is rolling down a hill in a truck tire.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tl2qYrHn1tpmsu8o1_250\",\n    \"question\": \"how many man who moves his head and opens his mouth?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46287\",\n    \"key\": \"12648\",\n    \"description\": \"one man who moves his head and opens his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtbhyWjrF1twsxdzo1_400\",\n    \"question\": \"where are two men playing air drums.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32714\",\n    \"key\": \"78772\",\n    \"description\": \"two men in a car are playing air drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirh7qn89K1u9pk5io1_250\",\n    \"question\": \"what are falling on the couple walking down a snowy street?\",\n    \"answer\": \"clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42743\",\n    \"key\": \"35792\",\n    \"description\": \"clothes are falling on a couple walking down a snowy street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjv9qFUwH1tltf5to1_540\",\n    \"question\": \"what is the man on a moving car smashing and grabbing the steering wheel?\",\n    \"answer\": \"windshield\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27610\",\n    \"key\": \"88559\",\n    \"description\": \"a man on a moving car is smashing the windshield and grabbing the steering wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wubdPzBI1ttu94ro1_400\",\n    \"question\": \"what is someone riding around a field?\",\n    \"answer\": \"pony\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49213\",\n    \"key\": \"40358\",\n    \"description\": \"someone is riding a pony around a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjiqrtAxD1tltvuqo1_250\",\n    \"question\": \"where is the boy pointing something out.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32682\",\n    \"key\": \"6468\",\n    \"description\": \"a boy is pointing something out to his team mate in the locker room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1adbX9Zu1r3mccco1_500\",\n    \"question\": \"what swerves while going around the corner before straightening out again?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8710\",\n    \"key\": \"48587\",\n    \"description\": \"a car swerves while going around the corner before straightening out again.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh34ovjtXS1sofp8to1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23112\",\n    \"key\": \"62395\",\n    \"description\": \"a beautiful man with black shirt is clapping and holding a microphone on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyu3z5ACj1t2al9go1_400\",\n    \"question\": \"how many guy talked?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43241\",\n    \"key\": \"83806\",\n    \"description\": \"one guy talked and the other put his face in his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqjklxflS41uz06r7o1_250\",\n    \"question\": \"where is the white cat playing very funny.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36001\",\n    \"key\": \"5456\",\n    \"description\": \"a white cat is playing very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92olkleN71tf2rjmo1_500\",\n    \"question\": \"where is bob sponge watching a television show.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20\",\n    \"key\": \"46198\",\n    \"description\": \"bob sponge is watching a television show in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naimwuna081tiwd2mo1_250\",\n    \"question\": \"where is the boy wearing white shirt is coming.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44764\",\n    \"key\": \"14610\",\n    \"description\": \"a boy wearing white shirt is coming in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naz9qi8pjG1sc609to1_250\",\n    \"question\": \"what is zoomed in while it pokes out its tongue?\",\n    \"answer\": \"nose\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21511\",\n    \"key\": \"35551\",\n    \"description\": \"a horses nose is zoomed in while it pokes out its tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsuhqvHMY1rzwvkdo1_400\",\n    \"question\": \"what is running along the beach before tripping and landing on its stomach?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6904\",\n    \"key\": \"59438\",\n    \"description\": \"a small dog is running along the beach before tripping and landing on its stomach.\"\n  },\n  {\n    \"video_name\": \"tumblr_njv1tfOh4x1unfaf3o1_400\",\n    \"question\": \"how many men on stand sing into their microphones and make wild hand motions?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37769\",\n    \"key\": \"76272\",\n    \"description\": \"three men on stand sing into their microphones and make wild hand motions.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvmat0M581rlil49o1_500\",\n    \"question\": \"what is eating the leaf while someone is threading flowers?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23201\",\n    \"key\": \"52041\",\n    \"description\": \"a dog is eating a leaf while someone is threading flowers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2cdxmG9W1turx3wo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7363\",\n    \"key\": \"14303\",\n    \"description\": \"a girl in a black shirt gives the thumbs up sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqbwismBUN1txc44no1_400\",\n    \"question\": \"how many girls is wearing animal costumes are sitting on a couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50761\",\n    \"key\": \"64155\",\n    \"description\": \"two girls wearing animal costumes are sitting on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz222VcuZ1ttuz3po1_400\",\n    \"question\": \"what is the color of the heels?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10994\",\n    \"key\": \"1324\",\n    \"description\": \"a woman is wearing very high white high heels.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk22u5Kq8E1raiukoo1_400\",\n    \"question\": \"where are the rock band kiss dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31294\",\n    \"key\": \"76563\",\n    \"description\": \"the rock band kiss are dancing in a dressing room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naklwl1u1y1tjjgbwo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52594\",\n    \"key\": \"26638\",\n    \"description\": \"a white man with a black shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngi2t0tDEr1rx9shjo1_400\",\n    \"question\": \"what are driving on a road while the sun is setting?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7584\",\n    \"key\": \"56919\",\n    \"description\": \"cars driving on a road while the sun is setting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemookTxfy1u359i4o1_400\",\n    \"question\": \"how many women run at each other with exercise balls and fall over?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11066\",\n    \"key\": \"38122\",\n    \"description\": \"two women run at each other with exercise balls and fall over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqcige9a1w1tion9oo1_500\",\n    \"question\": \"how many people are standing in the line and bow together?\",\n    \"answer\": \"seven\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12686\",\n    \"key\": \"60826\",\n    \"description\": \"seven people are standing in a line and bow together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevufdegMK1ttbw80o1_400\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51375\",\n    \"key\": \"4398\",\n    \"description\": \"the guy with the blue shorts is working out on the bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo3fs3Gfn1qdfgy3o1_500\",\n    \"question\": \"what is speeding on the race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12759\",\n    \"key\": \"60504\",\n    \"description\": \"a blue car is speeding on the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmdmzflNl1qdpugqo1_400\",\n    \"question\": \"what is the man in a black baseball cap going up?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41336\",\n    \"key\": \"82072\",\n    \"description\": \"a man in a black baseball cap is going up some stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax247zhwY1sdbrm9o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25760\",\n    \"key\": \"65700\",\n    \"description\": \"a man wearing a white tee shirt and another in a blue check shirt are on a stage in a darkened auditorium.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes4ajxdH01u2rqewo1_400\",\n    \"question\": \"what is the man holding and biting his lip?\",\n    \"answer\": \"instrument\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49854\",\n    \"key\": \"27373\",\n    \"description\": \"a man is holding a musical instrument and biting his lip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpnf4qkMy1qb2rmxo1_500\",\n    \"question\": \"where does the man take his shirt off.\",\n    \"answer\": \"? classroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16987\",\n    \"key\": \"48957\",\n    \"description\": \"a man takes his shirt off in a classroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzu0gm7Tt1u9be15o1_500\",\n    \"question\": \"how many woman struggle to walk in heels?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34285\",\n    \"key\": \"41484\",\n    \"description\": \"two woman struggle to walk in heels.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfao6d193m1siv5bao1_500\",\n    \"question\": \"what is the color of the blazer?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28368\",\n    \"key\": \"49396\",\n    \"description\": \"a man in an orange blazer and a man in a white shirt are talking into microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1mtw4zVW1qhccx4o1_500\",\n    \"question\": \"how many men with black shirt are looking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35296\",\n    \"key\": \"98906\",\n    \"description\": \"two men with black shirt are looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_na260dZVY11txmq72o1_250\",\n    \"question\": \"what is putting some paper through a machine?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45800\",\n    \"key\": \"26579\",\n    \"description\": \"a cat is putting some paper through a machine.\"\n  },\n  {\n    \"video_name\": \"tumblr_n925rigiW81qhfla8o1_500\",\n    \"question\": \"what is looking at something?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32550\",\n    \"key\": \"72650\",\n    \"description\": \"a man ion leather jacket is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoi3huNbE1tzhdnfo1_500\",\n    \"question\": \"what does the man poor and it overflows?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17135\",\n    \"key\": \"86821\",\n    \"description\": \"a man poor a drink and it overflows.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5w7sROwX1tjdvfuo1_400\",\n    \"question\": \"what is the color of the kitten?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23654\",\n    \"key\": \"80200\",\n    \"description\": \"a black kitten is running around on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvm8qtT591qzwt0go1_400\",\n    \"question\": \"what is the color of the wig?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45244\",\n    \"key\": \"7667\",\n    \"description\": \"a man wearing a gigantic white wig sighs while on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ca9mmyaU1rplluro1_400\",\n    \"question\": \"what is the man in suit playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23806\",\n    \"key\": \"44721\",\n    \"description\": \"a man in suit is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_neyfonjRiM1rt9t46o1_250\",\n    \"question\": \"what is the young blonde girl hitting with a golf club?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10025\",\n    \"key\": \"16748\",\n    \"description\": \"a young blonde girl is hitting a car with a golf club.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xrsdx6WY1tg0kf3o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27078\",\n    \"key\": \"27224\",\n    \"description\": \"this is a woman that is dressed in a black dress looking at herself in a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfojm1yS181u4xddzo1_500\",\n    \"question\": \"what is the woman eating very messily?\",\n    \"answer\": \"cake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23160\",\n    \"key\": \"92016\",\n    \"description\": \"a woman is eating a cake very messily.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvmao2sgM1scghp4o1_500\",\n    \"question\": \"where are several people slowly walking around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA53067\",\n    \"key\": \"88700\",\n    \"description\": \"several people are slowly walking around in different place in the same room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nglj2fIAPt1tupygmo2_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25273\",\n    \"key\": \"8258\",\n    \"description\": \"a guy with black suit is smiling in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3bhgVXHU1u86ghoo1_500\",\n    \"question\": \"how many young girls are dancing with brooms?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14863\",\n    \"key\": \"98685\",\n    \"description\": \"five young girls are dancing with brooms and a dog runs on the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbiz26o6VX1tdjuqvo1_400\",\n    \"question\": \"what pushes the wagon across the hardwood floor?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44723\",\n    \"key\": \"72091\",\n    \"description\": \"a cat pushes a wagon across the hardwood floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngyv10hj891u4tbtuo1_400\",\n    \"question\": \"what does the woman drop while running to a man who gets up from the hood of a car?\",\n    \"answer\": \"luggage\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47663\",\n    \"key\": \"23843\",\n    \"description\": \"a woman drops her luggage while running to a man who gets up from the hood of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5ljp5DaL1uygmxjo1_400\",\n    \"question\": \"how many people is the female contestant with blonde hair and wearing a blue top high fives either side of her?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19712\",\n    \"key\": \"21139\",\n    \"description\": \"a female contestant with blonde hair and wearing a blue top high fives two people either side of her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefradf58s1tu3ue8o1_500\",\n    \"question\": \"what is the man wearing looking into the mirror?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49275\",\n    \"key\": \"4218\",\n    \"description\": \"the man is wearing a black jacket looking into the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_na29ckRUG81tso4bpo1_250\",\n    \"question\": \"what is the dog chasing in a circle?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5751\",\n    \"key\": \"11168\",\n    \"description\": \"a dog is chasing its tail in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrh6eMkuA1tkdyoao1_400\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32064\",\n    \"key\": \"82205\",\n    \"description\": \"a lady with black pants and a green shirt is exercising in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lh8xQHCe1seb31ro1_500\",\n    \"question\": \"where are three people standing and waving.\",\n    \"answer\": \"? stadium\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31551\",\n    \"key\": \"91548\",\n    \"description\": \"three people are standing in an empty stadium and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqu1u9hThh1uso7sno1_400\",\n    \"question\": \"what is the person in the dark playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7778\",\n    \"key\": \"69271\",\n    \"description\": \"a person in the dark is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nist56EAVk1r412ako1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49680\",\n    \"key\": \"2686\",\n    \"description\": \"a guy in a red shirt is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfp07udA6a1sa63q9o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5036\",\n    \"key\": \"15904\",\n    \"description\": \"a man with blue eyes wearing a blue shirt is talking and blinking his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxlgzOQSN1t0x7yto1_500\",\n    \"question\": \"what is driving on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22498\",\n    \"key\": \"61137\",\n    \"description\": \"the blue car is driving on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebx0vqnAG1tqybg9o1_400\",\n    \"question\": \"where are two cats and several men floating.\",\n    \"answer\": \"? capsule\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51034\",\n    \"key\": \"43459\",\n    \"description\": \"two cats and several men are floating in a space capsule.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpuobhJ591ry0b5go1_400\",\n    \"question\": \"what rushes over to hug the man wearing all leather?\",\n    \"answer\": \"woman\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29649\",\n    \"key\": \"9466\",\n    \"description\": \"a professionally dress woman rushes over to hug a man wearing all leather.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbymug4lI1tjxr89o1_400\",\n    \"question\": \"what is smoking moving around in a circle?\",\n    \"answer\": \"tank\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27255\",\n    \"key\": \"69634\",\n    \"description\": \"the smoking tank is moving around in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrf04cgRUC1ub19xmo1_400\",\n    \"question\": \"what does someone place a green object in front of a tabby cat and looks up?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15360\",\n    \"key\": \"52346\",\n    \"description\": \"someone places a green object in front of a tabby cat and the cat looks up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh40fkieup1sdbrm9o1_400\",\n    \"question\": \"what is the color of the moves?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18519\",\n    \"key\": \"36772\",\n    \"description\": \"a man dressed in black moves his arm while talking to the person he sits beside.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y6tmnuQd1r5japgo1_400\",\n    \"question\": \"where are two boys talking to each other and standing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8518\",\n    \"key\": \"66394\",\n    \"description\": \"two boys are talking to each other and standing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n949p2g4GF1tabm5fo1_500\",\n    \"question\": \"what are some people riding?\",\n    \"answer\": \"bicycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA723\",\n    \"key\": \"67205\",\n    \"description\": \"some people are riding bikes while others are walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_navb86zWjN1tvf3juo1_250\",\n    \"question\": \"where is the guy dancing while recording.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5812\",\n    \"key\": \"15564\",\n    \"description\": \"a guy is dancing while recording in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx8d5lIq11rl5rsqo1_400\",\n    \"question\": \"what is the girl lighting and smoking it?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7035\",\n    \"key\": \"31942\",\n    \"description\": \"a girl is lighting a cigarette and smoking it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl24xtN6ei1u39i7yo1_250\",\n    \"question\": \"how many men are kissing and hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37847\",\n    \"key\": \"5535\",\n    \"description\": \"two men are kissing and hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfny96oDYU1sefjuxo2_500\",\n    \"question\": \"what is the color of the jerseys?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42806\",\n    \"key\": \"53018\",\n    \"description\": \"two men in red athletic jerseys embrace one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nber13xCxA1t0yxwdo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26847\",\n    \"key\": \"90654\",\n    \"description\": \"a guy using a black hat,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhs2lXSXl1rp12fxo1_1280\",\n    \"question\": \"what speeds into curve and slows down as it goes around it?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47932\",\n    \"key\": \"96025\",\n    \"description\": \"a blue and yellow race car speeds into curve and slows down as it goes around it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmcuqi7OVl1tfhys7o1_r1_540\",\n    \"question\": \"what is the color of the suites?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27102\",\n    \"key\": \"96176\",\n    \"description\": \"a bunch of people in blue suites are standing in an office pointing at one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw2gle3ek1u8uroco1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22672\",\n    \"key\": \"68448\",\n    \"description\": \"a gray cat is hiding on the flower pot with a hand touching.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhb2we9rFe1u6l71oo1_250\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17408\",\n    \"key\": \"36637\",\n    \"description\": \"two women dance while smiling at one another and wearing purple shirts.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9xh5NZ6d1stafvxo1_400\",\n    \"question\": \"what are two women happily wearing and playing a console game?\",\n    \"answer\": \"headsets\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43418\",\n    \"key\": \"87951\",\n    \"description\": \"two women are happily wearing headsets and playing a console game.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlwghHVNJ1s230fzo1_400\",\n    \"question\": \"how many guys in black are makeup each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2060\",\n    \"key\": \"59672\",\n    \"description\": \"two guys in black are makeup each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngduwu0Imi1u4bf8bo1_250\",\n    \"question\": \"how many blond women are arguing outside on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2140\",\n    \"key\": \"43884\",\n    \"description\": \"two blond women are arguing outside on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndasm67IHk1tr5tuwo1_500\",\n    \"question\": \"what is taking off at the race?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9563\",\n    \"key\": \"49883\",\n    \"description\": \"a car is taking off at a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9n7aITh11rc58pfo1_250\",\n    \"question\": \"how many men are sitting near each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22950\",\n    \"key\": \"35470\",\n    \"description\": \"three men are sitting near each other and one puts his head at the back of the one in the middle.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9dyj81wq1tinuvfo1_400\",\n    \"question\": \"where is the young woman dancing.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20923\",\n    \"key\": \"7364\",\n    \"description\": \"a young woman is dancing in her bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zf8nP9hp1r8mefxo1_500\",\n    \"question\": \"how many men is this image of smiling and laughing at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49924\",\n    \"key\": \"90480\",\n    \"description\": \"this image is of two men smiling and laughing at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdu4fOWp81sbd2hxo1_500\",\n    \"question\": \"what is the color of the looks?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29390\",\n    \"key\": \"68078\",\n    \"description\": \"a brown headed man looks at a dark hair lady across the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0s0kFIfP1tx8mn0o1_400\",\n    \"question\": \"what are racing down the race track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48716\",\n    \"key\": \"55469\",\n    \"description\": \"cars are racing down a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9c9tsjxU11t6ksnpo1_500\",\n    \"question\": \"how many guys do the trust fall on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27501\",\n    \"key\": \"97624\",\n    \"description\": \"two guys do a trust fall on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nge2siSPYW1sppy9co1_250\",\n    \"question\": \"what trips and falls into the swimming pool?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15809\",\n    \"key\": \"52861\",\n    \"description\": \"a dog trips and falls into a swimming pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7stdcCki1ua80mjo1_500\",\n    \"question\": \"what is the young male driving at night?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43518\",\n    \"key\": \"4438\",\n    \"description\": \"a young male is driving a car at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvg22g44W1ua373oo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41133\",\n    \"key\": \"13821\",\n    \"description\": \"a boy with brown hair is laughing at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nisdslB9ek1ttp9cro1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22033\",\n    \"key\": \"19277\",\n    \"description\": \"a woman with long brown wavy hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njox7s52pH1sico5po1_250\",\n    \"question\": \"how many guys with cones on their head rub them together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30466\",\n    \"key\": \"49619\",\n    \"description\": \"two guys with cones on their head rub them together.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2vq684DG1rl6i8ko1_400\",\n    \"question\": \"how many person grabs the other ones face?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43177\",\n    \"key\": \"28892\",\n    \"description\": \"one person grabs the other ones face and then they kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhenpyWz8l1qdbxg1o1_250\",\n    \"question\": \"what is the lady giving a speech on the microphone and wearing?\",\n    \"answer\": \"costume\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22531\",\n    \"key\": \"10863\",\n    \"description\": \"a lady is giving a speech on the microphone and wearing an elaborate costume.\"\n  },\n  {\n    \"video_name\": \"tumblr_noks4v4Q2a1ut6u2zo1_400\",\n    \"question\": \"what is the color of the flag?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44491\",\n    \"key\": \"41035\",\n    \"description\": \"a man dressed in black sings in front of a green american flag.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney69ux4541u2hqlpo1_250\",\n    \"question\": \"what is the boy taking off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29763\",\n    \"key\": \"12295\",\n    \"description\": \"a boy is taking off his gray shirt to reveal his abs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8m05WdLB1tljy7co1_500\",\n    \"question\": \"what is the person removing from the top of a deck of cards?\",\n    \"answer\": \"card\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52294\",\n    \"key\": \"101528\",\n    \"description\": \"a person is removing a card from the top of a deck of cards.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dyv7vIVV1r93qrbo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5033\",\n    \"key\": \"3951\",\n    \"description\": \"a woman wearing a red top is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne8owlPzt81tj27eyo1_250\",\n    \"question\": \"what is the man lighting with a lighter?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22079\",\n    \"key\": \"3231\",\n    \"description\": \"a man is lighting his cigarette with a lighter.\"\n  },\n  {\n    \"video_name\": \"tumblr_npu4dnNtOk1urnbuuo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22831\",\n    \"key\": \"47354\",\n    \"description\": \"a young woman in a black dress smiles and walks forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfkyk0wbLw1rnp3hyo1_400\",\n    \"question\": \"how many teams is this playing soccer on a field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7446\",\n    \"key\": \"87465\",\n    \"description\": \"this is two teams playing soccer on a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_m4387mGrlc1r6m5e8o1_250\",\n    \"question\": \"what did man throw with his left hand while in a graveyard?\",\n    \"answer\": \"snowball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7735\",\n    \"key\": \"35989\",\n    \"description\": \"man threw a snowball with his left hand while in a graveyard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuoqrL7bS1qf8758o1_500\",\n    \"question\": \"how many girls are laughing and smiling while they hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20441\",\n    \"key\": \"13343\",\n    \"description\": \"two girls are laughing and smiling while they hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7l0nMeLY1sp0r62o1_250\",\n    \"question\": \"where are two women dancing.\",\n    \"answer\": \"? house\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28453\",\n    \"key\": \"80776\",\n    \"description\": \"two women are dancing in the house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnokjvV7Wq1uuvmpjo1_250\",\n    \"question\": \"what is reversing on the street next to a park?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39590\",\n    \"key\": \"50472\",\n    \"description\": \"a red car is reversing on a street next to a park.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9affceDKc1s4niibo1_400\",\n    \"question\": \"how many woman are making funny faces and laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40123\",\n    \"key\": \"31390\",\n    \"description\": \"three woman are making funny faces and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak34sUK131slj978o1_400\",\n    \"question\": \"what is someone vacuuming with a chicken on top of vacuum and it laid?\",\n    \"answer\": \"egg\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32753\",\n    \"key\": \"50795\",\n    \"description\": \"someone is vacuuming with a chicken on top of vacuum and it laid an egg.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9q9ktUtOe1sncaa3o1_400\",\n    \"question\": \"how many people are driving the cars in a high velocity race?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43803\",\n    \"key\": \"54013\",\n    \"description\": \"three people are driving the cars in a high velocity race.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7dbUQBA1t5z27go1_400\",\n    \"question\": \"where are four girls riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11054\",\n    \"key\": \"58848\",\n    \"description\": \"four girls are riding in a car while clapping and dancing in their seats.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sp35Fn9g1r9vmd9o1_400\",\n    \"question\": \"how many men stand,\",\n    \"answer\": \"look at one another , and fall to the ground laughing ? three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38168\",\n    \"key\": \"41670\",\n    \"description\": \"three men stand,\"\n  },\n  {\n    \"video_name\": \"tumblr_nam1sweE7I1twkbdko1_500\",\n    \"question\": \"what does the musician passionately play while moving his body in rhythm?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28210\",\n    \"key\": \"60875\",\n    \"description\": \"a musician passionately plays the piano while moving his body in rhythm.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwwzp6mxJ1qltbjko1_400\",\n    \"question\": \"what is flying over the clouds?\",\n    \"answer\": \"wing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21326\",\n    \"key\": \"77259\",\n    \"description\": \"a plane 's wing is flying over the clouds.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjp8rMCHM1un86uao1_250\",\n    \"question\": \"what does the man grab by the tail at the beach?\",\n    \"answer\": \"shark\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA219\",\n    \"key\": \"26568\",\n    \"description\": \"a man grabs a shark by the tail at the beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxno3rMQC1svbli1o1_250\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51814\",\n    \"key\": \"49641\",\n    \"description\": \"a guy wearing white clothes,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6r8fPjrh1tkhxdko1_500\",\n    \"question\": \"how many girls does this show lying side by side with one caressing the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8665\",\n    \"key\": \"48513\",\n    \"description\": \"this shows two girls lying side by side with one caressing the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9odk1infz1twkhcoo1_400\",\n    \"question\": \"where is someone sliding.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34604\",\n    \"key\": \"82092\",\n    \"description\": \"someone is sliding back in their chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhskwbxgar1rseg36o1_250\",\n    \"question\": \"what disappears under the ground?\",\n    \"answer\": \"bowl\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21072\",\n    \"key\": \"3286\",\n    \"description\": \"an empty red dog bowl disappears under the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngp2i5ff7j1sp70bgo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8611\",\n    \"key\": \"71669\",\n    \"description\": \"a man in black is singing into a microphone while lights are going off behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzszrgVPB1shch57o1_250\",\n    \"question\": \"how many people are wearing costumes and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49903\",\n    \"key\": \"41369\",\n    \"description\": \"the two people are wearing costumes and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncktzjK6x31susf16o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39756\",\n    \"key\": \"81391\",\n    \"description\": \"a man with a black shirt is talking and scratching his nose.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpreqZ6fr1unq0gjo1_250\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40888\",\n    \"key\": \"46570\",\n    \"description\": \"a red car is driving in the mountain sand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbdow0oY81tb2kgho1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9270\",\n    \"key\": \"96428\",\n    \"description\": \"a black woman is keeping her hand on her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0kusbUiR1thdynpo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23601\",\n    \"key\": \"12305\",\n    \"description\": \"a young woman in a red dress is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqaoqwjrk81uy7pfuo1_500\",\n    \"question\": \"what does he 's playing in the night time?\",\n    \"answer\": \"violin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15270\",\n    \"key\": \"70841\",\n    \"description\": \"he 's playing his violin in the night time.\"\n  },\n  {\n    \"video_name\": \"tumblr_njp9i28V8y1tuiwglo1_500\",\n    \"question\": \"what are the young long hair women with bread in mouth opening hurriedly?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49000\",\n    \"key\": \"54702\",\n    \"description\": \"a young long hair women with bread in mouth are opening the door hurriedly.\"\n  },\n  {\n    \"video_name\": \"tumblr_np4ck6wChP1up32d0o1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21176\",\n    \"key\": \"96615\",\n    \"description\": \"a woman in black clothes embraces an oriental man in black clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqsa9zsdy41upov4lo1_400\",\n    \"question\": \"what is the girl trying and wearing?\",\n    \"answer\": \"lipstick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20909\",\n    \"key\": \"64266\",\n    \"description\": \"a girl is trying to get attention and wearing blue lipstick.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96ot3UKsh1r4a9o5o1_250\",\n    \"question\": \"what is the color of the blanket?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52239\",\n    \"key\": \"18262\",\n    \"description\": \"a woman is wrapping an orange blanket around herself while walking down the beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl25w2m2ln1qilpy6o1_400\",\n    \"question\": \"where is the man in a suit walking and chewing gum with red lights.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19288\",\n    \"key\": \"40149\",\n    \"description\": \"a man in a suit is walking and chewing gum in a room with red lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngy1993nCa1spaf7ho1_r1_250\",\n    \"question\": \"how many men are sitting around and talking to each other with microphones?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45928\",\n    \"key\": \"75763\",\n    \"description\": \"three men are sitting around and talking to each other with microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_npzyxwAdQ91s1nv88o1_540\",\n    \"question\": \"how many person is talking to another one,\",\n    \"answer\": \"who is looking upset ? one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28242\",\n    \"key\": \"96763\",\n    \"description\": \"one person is talking to another one,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwu6g8ViV1s5112po1_500\",\n    \"question\": \"how many men are hugging each other on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31998\",\n    \"key\": \"74204\",\n    \"description\": \"the two men are hugging each other on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd91nlEKaI1tx8mn0o1_400\",\n    \"question\": \"how many beautiful cars yellow and blue are running on a race in slow motion?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42857\",\n    \"key\": \"55564\",\n    \"description\": \"two beautiful cars yellow and blue are running on a race in slow motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivi02t5ys1tk2ibto1_250\",\n    \"question\": \"what is the dog chasing on a pool table?\",\n    \"answer\": \"balls\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47911\",\n    \"key\": \"23127\",\n    \"description\": \"a dog is chasing balls on a pool table.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8lnhsDTPU1tgkdkbo1_250\",\n    \"question\": \"what jumps off the top of a doorway all the way to the floor?\",\n    \"answer\": \"squirrel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26184\",\n    \"key\": \"35848\",\n    \"description\": \"a flying squirrel jumps off the top of a doorway all the way to the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnfu7EwM91r3diajo1_500\",\n    \"question\": \"what are the group of people playing and shaking their hips?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17984\",\n    \"key\": \"43197\",\n    \"description\": \"a group of people are playing guitars and shaking their hips.\"\n  },\n  {\n    \"video_name\": \"tumblr_np1qhvy9Kv1sg8vg6o1_500\",\n    \"question\": \"what does the rabbit escape by squeezing through the bars?\",\n    \"answer\": \"cage\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33640\",\n    \"key\": \"66732\",\n    \"description\": \"a rabbit escapes the cage by squeezing through the bars.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh07lr7LIE1tqm4yoo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10116\",\n    \"key\": \"77165\",\n    \"description\": \"a man with black eyeliner and spiky black hair sticks his tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd7flcAAEj1thr6umo1_400\",\n    \"question\": \"how many men are sitting together on the couch and making faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45781\",\n    \"key\": \"47926\",\n    \"description\": \"two men are sitting together on a couch and making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0160uqpI1sbrhq7o1_400\",\n    \"question\": \"what are speeding on the freeway?\",\n    \"answer\": \"motorcycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21734\",\n    \"key\": \"70301\",\n    \"description\": \"two motorcycles are speeding on the freeway.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzchnvwXU1slw38eo1_250\",\n    \"question\": \"how many guys are laughing while are sitting in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3984\",\n    \"key\": \"14509\",\n    \"description\": \"two guys are laughing while are sitting in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3k3l3Yn01sk96t7o1_500\",\n    \"question\": \"what comes up from the ground to catch a fish?\",\n    \"answer\": \"octopus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46625\",\n    \"key\": \"38964\",\n    \"description\": \"an octopus comes up from the ground to catch a fish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtnk3wmuA1uwpzgto1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32552\",\n    \"key\": \"76381\",\n    \"description\": \"a man wearing a white shirt is nodding.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ag3iabTq1ti0984o1_250\",\n    \"question\": \"what is the color of the trousers?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36115\",\n    \"key\": \"9601\",\n    \"description\": \"a man in a white shirt and red trousers is doing lots of back flips.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4jraMcwT1u3gi2vo1_500\",\n    \"question\": \"how many guys is this image of in sweaters talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18047\",\n    \"key\": \"89732\",\n    \"description\": \"this image is of two guys in sweaters talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y3b433Y61terdm3o1_400\",\n    \"question\": \"where does the man perform a flip.\",\n    \"answer\": \"? skateboard\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8266\",\n    \"key\": \"35142\",\n    \"description\": \"the man performs a flip in the skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkfsb1dgm1tbnwqmo1_400\",\n    \"question\": \"where are two men drinking alcohol.\",\n    \"answer\": \"? alley\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20775\",\n    \"key\": \"61016\",\n    \"description\": \"two men are drinking alcohol in a bowling alley.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndau5kAPfn1rvbl65o1_400\",\n    \"question\": \"what opens to reveal the dancing couple?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3064\",\n    \"key\": \"46065\",\n    \"description\": \"a music box opens to reveal a dancing couple.\"\n  },\n  {\n    \"video_name\": \"tumblr_noslb4zYYu1rkr23zo1_250\",\n    \"question\": \"how many people are hugging and kissing passionately?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49170\",\n    \"key\": \"28815\",\n    \"description\": \"two people are hugging and kissing passionately.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr39rv7eQq1sht3fmo1_250\",\n    \"question\": \"what looking at something and falls down a hole?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19128\",\n    \"key\": \"12915\",\n    \"description\": \"a cat looking at something and falls down a hole.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q1o6rJ5y1svnovjo1_400\",\n    \"question\": \"what does the soccer player pass to a teammate?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29486\",\n    \"key\": \"89556\",\n    \"description\": \"a soccer player passes the ball to a teammate.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zu57mMW51t36lbdo1_400\",\n    \"question\": \"what does the car 's trunk open and comes out?\",\n    \"answer\": \"sunroof\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39793\",\n    \"key\": \"53950\",\n    \"description\": \"the car 's trunk opens and the sunroof comes out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwxxlRnvb1sfdqnro1_400\",\n    \"question\": \"what flies on the yellow flower?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9813\",\n    \"key\": \"38744\",\n    \"description\": \"an orange butterfly flies on a yellow flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ppyziWjS1rnh6v7o1_400\",\n    \"question\": \"what is coming in the canal?\",\n    \"answer\": \"boat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13207\",\n    \"key\": \"15213\",\n    \"description\": \"a boat is coming in a canal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtm7qpM2J1ttyq3ao1_250\",\n    \"question\": \"what does the woman pull down over her eyes?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19296\",\n    \"key\": \"14564\",\n    \"description\": \"a woman pulls a sparkling hat down over her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhekqkkOoT1rt3qmdo1_250\",\n    \"question\": \"where do the men give each other a hug.\",\n    \"answer\": \"? shop\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4898\",\n    \"key\": \"24464\",\n    \"description\": \"the men in the shop give each other a hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbnrz30Tr1u1vw4mo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3867\",\n    \"key\": \"81775\",\n    \"description\": \"a woman in a white hat sings into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpco7YgzP1tqwtb6o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51321\",\n    \"key\": \"45263\",\n    \"description\": \"a girl with black hair is turning and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7in2oINS1qgcalbo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32931\",\n    \"key\": \"22556\",\n    \"description\": \"a man in a black shirt jumps up and raises a fist in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5mx9LRgu1sh0d88o1_250\",\n    \"question\": \"what is the color of the singer?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3390\",\n    \"key\": \"6342\",\n    \"description\": \"a male black singer,\"\n  },\n  {\n    \"video_name\": \"tumblr_njvv3fRF7y1s1rzito1_400\",\n    \"question\": \"how many dark clothed men are shaking hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15663\",\n    \"key\": \"2327\",\n    \"description\": \"two dark clothed men are shaking hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw4erpndi1te0omro1_400\",\n    \"question\": \"what is scared and he is running on the floor?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52755\",\n    \"key\": \"88275\",\n    \"description\": \"a rabbit is scared and he is running on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv5iz7KVL1unu56do1_400\",\n    \"question\": \"what is the color of the t?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2328\",\n    \"key\": \"35675\",\n    \"description\": \"a man wearing a blue t-\"\n  },\n  {\n    \"video_name\": \"tumblr_n9npusDaUk1t1j1f4o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37300\",\n    \"key\": \"2981\",\n    \"description\": \"a man with a white shirt is looking the sea.\"\n  },\n  {\n    \"video_name\": \"tumblr_np83rihrid1sad7cpo1_250\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11747\",\n    \"key\": \"19203\",\n    \"description\": \"a man in a black,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4cexoiPR1ste7mro1_r1_500\",\n    \"question\": \"what are the faces of two men superimposed and one man lifts to his neck?\",\n    \"answer\": \"knife\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14486\",\n    \"key\": \"67029\",\n    \"description\": \"the faces of two men are superimposed and one man lifts a knife to his neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfd3x2AVM91u2rlp7o1_250\",\n    \"question\": \"what stretches and slowly sinks into the pillow?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16603\",\n    \"key\": \"9346\",\n    \"description\": \"a cat stretches and slowly sinks into a pillow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkh0ermIow1tmd6tdo1_400\",\n    \"question\": \"how many fingers is the young girl making a face and holding up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1517\",\n    \"key\": \"4372\",\n    \"description\": \"a young girl is making a face and holding up two fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnd6rNKRS1trhseeo1_400\",\n    \"question\": \"what is the guy in a black shirt holding?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18216\",\n    \"key\": \"61293\",\n    \"description\": \"a guy in a black shirt is holding a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhogkmy7K1untprdo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8495\",\n    \"key\": \"68995\",\n    \"description\": \"a woman in a black dress is looking in front of her as an elevator door opens.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr05r1Bpfp1t0064ko1_400\",\n    \"question\": \"what is the man performing a trick falls and crashes?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10007\",\n    \"key\": \"76046\",\n    \"description\": \"a man performing a trick falls and crashes his motorbike.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vksaep7X1thc5tio1_250\",\n    \"question\": \"how many women stood next to trees looking scared?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21633\",\n    \"key\": \"47062\",\n    \"description\": \"two women stood next to trees looking scared.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0ddtHrBj1tg85j7o1_400\",\n    \"question\": \"what is the color of the cross?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11855\",\n    \"key\": \"36841\",\n    \"description\": \"two pairs of gloved hands stick a red cross on a white cloth.\"\n  },\n  {\n    \"video_name\": \"tumblr_np7428zJXS1sjggsso1_400\",\n    \"question\": \"how many men are running together in the gym?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9148\",\n    \"key\": \"79249\",\n    \"description\": \"two men are running together in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncap7ix7eJ1thbgs3o1_250\",\n    \"question\": \"what falls out of the tree and breaks a limb off of it?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1448\",\n    \"key\": \"10789\",\n    \"description\": \"a panda bear falls out of a tree and breaks a limb off of it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobe26hwiZ1s5jrcko1_400\",\n    \"question\": \"what is the lady addressing while smiling,\",\n    \"answer\": \"shining and wearing a yellow outfit ? microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18793\",\n    \"key\": \"77076\",\n    \"description\": \"a lady is addressing the interview microphone while smiling,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb80spNot51tdmffyo1_400\",\n    \"question\": \"what is the bird pushing off a ledge and into a bucket?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36701\",\n    \"key\": \"22894\",\n    \"description\": \"a bird is pushing a turtle off a ledge and into a bucket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepnu3YNTG1u2qkvco1_250\",\n    \"question\": \"what is the man wearing headphones is smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4655\",\n    \"key\": \"72472\",\n    \"description\": \"a man wearing headphones is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq513q76F81u3cb3fo1_400\",\n    \"question\": \"how many women in red skirts with black hair are dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10808\",\n    \"key\": \"46038\",\n    \"description\": \"three women in red skirts with black hair are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nep9xj16Yh1smur93o1_400\",\n    \"question\": \"what did the girl with the dark hair cut with a big knife?\",\n    \"answer\": \"cake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7209\",\n    \"key\": \"31079\",\n    \"description\": \"the girl with the dark hair cut the cake with a big knife.\"\n  },\n  {\n    \"video_name\": \"tumblr_nky1haecpO1qzdriyo1_500\",\n    \"question\": \"how many girls are kissing with rainbows on their faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39560\",\n    \"key\": \"95386\",\n    \"description\": \"two girls are kissing with rainbows on their faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmdf9Rdmf1u41cnao1_500\",\n    \"question\": \"how many girls are giving high fives to a boy?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48514\",\n    \"key\": \"67597\",\n    \"description\": \"two girls are giving high fives to a boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngi9a7ePP51si6uplo1_500\",\n    \"question\": \"where is the young girl falling.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21457\",\n    \"key\": \"26190\",\n    \"description\": \"a young girl is falling in the gymnastic room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj0iew6kad1tmcdhmo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1545\",\n    \"key\": \"32401\",\n    \"description\": \"the person with the black hair wearing the black shirt is shaking his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_natb2zaImk1tzhdamo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24209\",\n    \"key\": \"61052\",\n    \"description\": \"a guy shoots a basketball at the hoop next to a blue car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzqlrpIFU1u1z2mio1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26673\",\n    \"key\": \"31200\",\n    \"description\": \"a girl with black hair is singing and making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkx078AjSx1rq3c4co1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20337\",\n    \"key\": \"57493\",\n    \"description\": \"white girl gives a kiss to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfa7hPZ2h1sl2cdao1_500\",\n    \"question\": \"where are two men walking and talking.\",\n    \"answer\": \"? alley\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48709\",\n    \"key\": \"94639\",\n    \"description\": \"two men are walking and talking in an alley.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7eheT0Oz1r272ido1_250\",\n    \"question\": \"how many crazy women with colorful bikini are fighting in the boxing ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36810\",\n    \"key\": \"76772\",\n    \"description\": \"two crazy women with colorful bikini are fighting in the boxing ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k8xzjz181tiur4yo1_250\",\n    \"question\": \"what is the man white man with short hair wearing and talking?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48225\",\n    \"key\": \"12182\",\n    \"description\": \"a man white man with short hair is wearing a jacket and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_np4ck6wChP1up32d0o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48102\",\n    \"key\": \"96615\",\n    \"description\": \"a man and woman dressed in black are hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gjoiFaDh1so81xuo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4447\",\n    \"key\": \"11179\",\n    \"description\": \"a beautiful man with a white shirt is walking on a stage and receiving stuff from the audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99imgXYgN1tyvyt1o1_400\",\n    \"question\": \"what does the man play?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26579\",\n    \"key\": \"68565\",\n    \"description\": \"a man plays a piano while woman walks into room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndf8j0RPst1s96znho1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2262\",\n    \"key\": \"83523\",\n    \"description\": \"a man with black clothes is sitting on a sofa or chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0rsx4U7o1tqwtb6o1_400\",\n    \"question\": \"what is flying in the air?\",\n    \"answer\": \"ship\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42577\",\n    \"key\": \"36945\",\n    \"description\": \"a space ship is flying in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq5net4701tkyu2bo1_500\",\n    \"question\": \"where does the person in black scream.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31729\",\n    \"key\": \"88948\",\n    \"description\": \"a person in black screams dramatically in a dimly lit room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfljjzNN0y1u4vf33o1_400\",\n    \"question\": \"what sits on the shore of a lake?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20556\",\n    \"key\": \"69301\",\n    \"description\": \"a dog sits on the shore of a lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_new1wuYyJp1rhv34lo1_500\",\n    \"question\": \"where is person swimming.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20053\",\n    \"key\": \"65350\",\n    \"description\": \"person is swimming in a very large pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngl13o76hU1tgzsvro1_250\",\n    \"question\": \"where is the man dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13958\",\n    \"key\": \"36610\",\n    \"description\": \"a man is dancing happily in a living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh1deqvo01tl6l5bo1_250\",\n    \"question\": \"how many men with black hair are parading?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38744\",\n    \"key\": \"78595\",\n    \"description\": \"two men with black hair are parading.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwfzx0hL91tgkdkbo1_250\",\n    \"question\": \"what is wearing the cape and riding a scooter?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45400\",\n    \"key\": \"5671\",\n    \"description\": \"a dog is wearing a cape and riding a scooter.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q75sHDJM1tchbt3o1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12386\",\n    \"key\": \"25856\",\n    \"description\": \"a very pretty girl with black clothes is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkuwugWpwO1tocarto1_250\",\n    \"question\": \"where is the woman spinning around.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47986\",\n    \"key\": \"39758\",\n    \"description\": \"a woman is spinning around in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nomhc2cRR51uoon82o1_400\",\n    \"question\": \"how many men dance in the street,\",\n    \"answer\": \"then two of them wave goodbye ? three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51500\",\n    \"key\": \"56700\",\n    \"description\": \"three men dance in the street,\"\n  },\n  {\n    \"video_name\": \"tumblr_njv1tfOh4x1unfaf3o1_400\",\n    \"question\": \"how many guys are singing and moving on the stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6735\",\n    \"key\": \"76272\",\n    \"description\": \"three guys are singing and moving on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_niud9uxv741tm4s86o1_500\",\n    \"question\": \"what is the boy running up and jumping?\",\n    \"answer\": \"wall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35551\",\n    \"key\": \"87224\",\n    \"description\": \"a boy is running up a wall and jumping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nasvey3LcC1s0j7iyo1_500\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12650\",\n    \"key\": \"81836\",\n    \"description\": \"a woman with a black baseball cap is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauohdXxUf1r3qv9to1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48335\",\n    \"key\": \"96944\",\n    \"description\": \"a woman wearing a black leather outfit is leaning against a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_npqo9maJv31tbjksno1_540\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52472\",\n    \"key\": \"10635\",\n    \"description\": \"a guy with black suit is opening his eyes in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmvfdO8l1tidcnvo1_400\",\n    \"question\": \"what is galloping through the rural field?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50203\",\n    \"key\": \"64293\",\n    \"description\": \"a horse is galloping through a rural field.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgna3orE71toiobbo1_500\",\n    \"question\": \"what is the man moving down his nose,\",\n    \"answer\": \"? sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14076\",\n    \"key\": \"54995\",\n    \"description\": \"a man is moving his sunglasses down his nose,\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6gcuM63S1rj8ymxo1_400\",\n    \"question\": \"what is the color of the bra?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8388\",\n    \"key\": \"5337\",\n    \"description\": \"a woman who is wearing a sparkling black bra smiles and blinks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6i6uP4kE1s5svyno1_500\",\n    \"question\": \"how many women are pulling off the mans jacket?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20823\",\n    \"key\": \"93850\",\n    \"description\": \"two women are pulling off a mans jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak8paCoDj1ts7wbfo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16031\",\n    \"key\": \"46117\",\n    \"description\": \"a man with a big black hat on blinks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn2rzl5NVF1utwz4no1_400\",\n    \"question\": \"what is the woman holding?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30895\",\n    \"key\": \"11474\",\n    \"description\": \"a woman is holding a coffee cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6lcsQaDf1sj36hjo1_400\",\n    \"question\": \"where are the players playing.\",\n    \"answer\": \"? stadium\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48578\",\n    \"key\": \"67091\",\n    \"description\": \"the players are playing in the stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdje2GanU1tktmbso1_400\",\n    \"question\": \"what is jumping around the room?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28771\",\n    \"key\": \"44937\",\n    \"description\": \"a cute white dog is jumping around the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojnjdkri81urlrpuo1_500\",\n    \"question\": \"what are playing and one falls from its perch?\",\n    \"answer\": \"kittens\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20870\",\n    \"key\": \"49168\",\n    \"description\": \"two kittens are playing and one falls from its perch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9lvuNePt1u15aayo1_400\",\n    \"question\": \"where is the man smoking a cigarette.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19966\",\n    \"key\": \"34747\",\n    \"description\": \"a man in a car is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkh0ermIow1tmd6tdo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52103\",\n    \"key\": \"4372\",\n    \"description\": \"a woman with long black hair is talking and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_na213y4pel1tdek48o1_400\",\n    \"question\": \"what is the girl riding a horse through a track and is playing around?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34343\",\n    \"key\": \"43172\",\n    \"description\": \"a girl is riding a horse through a track and the horse is playing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_npc6v49jBd1u2xe60o1_400\",\n    \"question\": \"what is the color of the polish?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38324\",\n    \"key\": \"11988\",\n    \"description\": \"nail is coated with blue nail polish followed by red color nail polish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazlg99bnp1tjba7no1_250\",\n    \"question\": \"where is the girl standing next to lockers talking to someone.\",\n    \"answer\": \"? lingerie\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39227\",\n    \"key\": \"49653\",\n    \"description\": \"a girl in lingerie is standing next to lockers talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxvqaazzU1up8baqo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2358\",\n    \"key\": \"3440\",\n    \"description\": \"a gut in a white shirt is dancing with his hand by his crotch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkfviG28R1u1z0zno1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3511\",\n    \"key\": \"8282\",\n    \"description\": \"the guy with the red hair and white shirt is in shock.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhp1rdIHcP1s6zpepo1_250\",\n    \"question\": \"what is sitting on the side of a large dog who turns around to look at it?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51063\",\n    \"key\": \"27115\",\n    \"description\": \"a kitten is sitting on the side of a large dog who turns around to look at it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfr1cufhrl1u0juyyo1_500\",\n    \"question\": \"what is the woman standing and her hair is changing?\",\n    \"answer\": \"colors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50295\",\n    \"key\": \"92292\",\n    \"description\": \"a woman is standing and her hair is changing colors.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkg0rwoSOi1tkkgpso1_400\",\n    \"question\": \"where does the girl sit,\",\n    \"answer\": \"crying and eating a sandwich . ? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38834\",\n    \"key\": \"30371\",\n    \"description\": \"a girl sits in a bed,\"\n  },\n  {\n    \"video_name\": \"tumblr_mhzoo3n2ZK1r8egmso1_400\",\n    \"question\": \"how many people are showing off and all over?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34576\",\n    \"key\": \"15859\",\n    \"description\": \"two people are showing off and all over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwoxqjLik1tit9eco1_r1_500\",\n    \"question\": \"what is the color of the corridor?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26853\",\n    \"key\": \"95676\",\n    \"description\": \"a young man is singing in a red corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpnflPD2K1sklqsoo1_400\",\n    \"question\": \"how many men stood dancing in the room?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22744\",\n    \"key\": \"58049\",\n    \"description\": \"three men stood dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndu69ysOxt1ta9mkfo1_500\",\n    \"question\": \"what is the color of the robe?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15370\",\n    \"key\": \"97682\",\n    \"description\": \"an older man in a black robe embraces a younger male in a black robe.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2q4csgq91txeyrmo1_250\",\n    \"question\": \"what is the color of the costume?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA91\",\n    \"key\": \"35741\",\n    \"description\": \"a man wearing a helmet fights another man in a black costume.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflzlx0vM81r8n07ho1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22851\",\n    \"key\": \"69323\",\n    \"description\": \"a man wearing a black shirt is clinking glasses with another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklko2lwo01qlujrso6_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4949\",\n    \"key\": \"23380\",\n    \"description\": \"a girl wearing a black jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzlhp8DpG1tgouwlo1_500\",\n    \"question\": \"what is the color of the cubs?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37825\",\n    \"key\": \"38497\",\n    \"description\": \"two red panda cubs are playing with baby toys.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1azd6ZVk1tahfdeo1_250\",\n    \"question\": \"where is the hippo flipping and turning.\",\n    \"answer\": \"? tank\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA779\",\n    \"key\": \"24120\",\n    \"description\": \"a hippo is flipping and turning in a tank.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8i6t05H331rhy09eo1_500\",\n    \"question\": \"what is being zoomed in on?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14014\",\n    \"key\": \"70580\",\n    \"description\": \"a black car is being zoomed in on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimq3d11I51s7xw0ro1_250\",\n    \"question\": \"what is the guy listening to something is wearing?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51597\",\n    \"key\": \"20556\",\n    \"description\": \"a guy listening to something is wearing glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxrp43ATC1u7mpzto1_500\",\n    \"question\": \"what did the woman have put on her head?\",\n    \"answer\": \"costume\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12063\",\n    \"key\": \"83466\",\n    \"description\": \"the woman had a shark costume put on her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_namuciBtaT1r06temo1_500\",\n    \"question\": \"what does the player kick into the net off the crossbar?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35101\",\n    \"key\": \"93376\",\n    \"description\": \"a player kicks a soccer ball into the net off the crossbar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p314m7oa1twbspoo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16976\",\n    \"key\": \"17154\",\n    \"description\": \"a young woman in a black feathered dress stands in front of a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkc48iNxXB1uodfiso1_500\",\n    \"question\": \"how many girls are shown?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20007\",\n    \"key\": \"72935\",\n    \"description\": \"two girls are shown and one holds a phone showing a mouth in front of her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0vgpO4MV1u88jnvo1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2648\",\n    \"key\": \"46248\",\n    \"description\": \"a gray,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkshrz1UUz1u3g519o1_400\",\n    \"question\": \"what does the pale colored ferret open with his head?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3134\",\n    \"key\": \"68749\",\n    \"description\": \"a pale colored ferret opens a cupboard door with his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng5aqx1lf91s4gxnlo1_500\",\n    \"question\": \"how many young men are holding the microphone between them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41070\",\n    \"key\": \"44772\",\n    \"description\": \"two young men are holding a microphone between them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhy3t8q7sF1sbjgb9o1_500\",\n    \"question\": \"what is yawning while the person scratches his head?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51474\",\n    \"key\": \"73834\",\n    \"description\": \"a dog is yawning while a person scratches his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazoqqzPK61rcr3teo1_250\",\n    \"question\": \"how many cars are colliding with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14938\",\n    \"key\": \"84564\",\n    \"description\": \"two cars are colliding with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0bml1h561t7io47o1_250\",\n    \"question\": \"what is shaking it tails and picks up a mail from a person in a van?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36944\",\n    \"key\": \"14250\",\n    \"description\": \"a dog is shaking it tails and picks up a mail from a person in a van.\"\n  },\n  {\n    \"video_name\": \"tumblr_nappy3hY3X1sjfo83o1_500\",\n    \"question\": \"how many young ladies are in their undergarments?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6936\",\n    \"key\": \"96990\",\n    \"description\": \"four young ladies are in their undergarments.\"\n  },\n  {\n    \"video_name\": \"tumblr_n974aiV3pP1tyycvto1_400\",\n    \"question\": \"what is yawning and stretching on the person 's stomach?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA149\",\n    \"key\": \"82732\",\n    \"description\": \"a cat is yawning and stretching on a person 's stomach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflki2KNrG1u2hsato1_250\",\n    \"question\": \"how many women is this embracing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29435\",\n    \"key\": \"90896\",\n    \"description\": \"this is two women embracing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngc49xMsxc1r86r30o1_250\",\n    \"question\": \"how many people are on stage one leans down and touches the stage with his hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1400\",\n    \"key\": \"16091\",\n    \"description\": \"two people are on stage one leans down and touches the stage with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7wylszqY1riowufo1_250\",\n    \"question\": \"what is the young man holding on with both hands?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14751\",\n    \"key\": \"2893\",\n    \"description\": \"a young man is holding his cap on with both hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3xi1KZmV1uzvpcio1_400\",\n    \"question\": \"how many combat planes fly in formation next to each other?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32531\",\n    \"key\": \"63904\",\n    \"description\": \"four combat planes fly in formation next to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_npgmilwWnF1tx8mn0o1_400\",\n    \"question\": \"what are speeding around the corner on a race track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15580\",\n    \"key\": \"91034\",\n    \"description\": \"two race cars are speeding around a corner on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7000dUK11uvpgu5o1_250\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10755\",\n    \"key\": \"3178\",\n    \"description\": \"a girl with long dark hair and wearing a blue cheerleader outfit is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrljkbZSIC1u5qz70o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26797\",\n    \"key\": \"43507\",\n    \"description\": \"a man in a green shirt and khakis is practicing his dance moves.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3mv90rSu1snioijo1_250\",\n    \"question\": \"how many women smile and lean back on each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7935\",\n    \"key\": \"8407\",\n    \"description\": \"two women smile and lean back on each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3bhgVXHU1u86ghoo1_500\",\n    \"question\": \"what are five young girls dancing with brooms and runs on the street?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43129\",\n    \"key\": \"98685\",\n    \"description\": \"five young girls are dancing with brooms and a dog runs on the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_na07x1hrbL1ti3y6yo1_400\",\n    \"question\": \"how many hamsters were playing around together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA53065\",\n    \"key\": \"25005\",\n    \"description\": \"the two hamsters were playing around together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nex14mjdf71rjqi8yo1_400\",\n    \"question\": \"what is the man taking off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17591\",\n    \"key\": \"57626\",\n    \"description\": \"a man is taking off his blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoayb3XdE1rtsl8yo1_250\",\n    \"question\": \"where is the man wearing a suit and a flower.\",\n    \"answer\": \"? lapel\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18168\",\n    \"key\": \"3106\",\n    \"description\": \"a man is wearing a suit and a flower in his lapel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7qy5DyEh1si0qiyo1_400\",\n    \"question\": \"where is the man with glasses dancing.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31614\",\n    \"key\": \"64997\",\n    \"description\": \"a man with glasses is dancing in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbolyqW2ZU1tj37deo1_400\",\n    \"question\": \"how many man turns to stare at another man?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47125\",\n    \"key\": \"74663\",\n    \"description\": \"one man turns to stare at another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5l1vCwUU1rjtfuuo1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA138\",\n    \"key\": \"22260\",\n    \"description\": \"a boy wearing a white t-shirt flips on to a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrfuobNaSN1ustdamo1_500\",\n    \"question\": \"how many guys are talking into microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3947\",\n    \"key\": \"68060\",\n    \"description\": \"two guys are talking into microphones and one is waving to the audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_njocvnKcFO1tifehbo1_400\",\n    \"question\": \"how many boys stand next to their lockers and make eye contact?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39851\",\n    \"key\": \"55408\",\n    \"description\": \"two boys stand next to their lockers and make eye contact.\"\n  },\n  {\n    \"video_name\": \"tumblr_na27jm6QiN1rikxpmo1_400\",\n    \"question\": \"what does the lot of lightning flash light up?\",\n    \"answer\": \"sky\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40914\",\n    \"key\": \"59204\",\n    \"description\": \"a lot of lightning flashes light up the night sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ptm83Gmv1sc1cefo1_250\",\n    \"question\": \"how many soccer players yell at each other and butt heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24791\",\n    \"key\": \"14456\",\n    \"description\": \"two soccer players yell at each other and butt heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknodg8h931slwpo8o1_250\",\n    \"question\": \"what gets up from the lying position and leaves a fake tail behind?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5244\",\n    \"key\": \"85109\",\n    \"description\": \"a cat gets up from a lying position and leaves a fake tail behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3qf4WRTo1ttvngao1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35382\",\n    \"key\": \"50798\",\n    \"description\": \"a guy wearing a gray jacket and black tie,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqp0xxEoF91td493xo1_500\",\n    \"question\": \"where does the woman hold a dog up to show a baby.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51726\",\n    \"key\": \"70898\",\n    \"description\": \"a woman holds a dog up to show a baby in the pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnvvpgeXHI1slwpo8o1_400\",\n    \"question\": \"what are the man and a cat eating on the cob?\",\n    \"answer\": \"corn\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44949\",\n    \"key\": \"6011\",\n    \"description\": \"a man and a cat are eating corn on the cob.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy0j2MwQW1u2mmn8o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49243\",\n    \"key\": \"29016\",\n    \"description\": \"a black man is laughing at something in front of him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nheonn6u3e1r2m5fko1_1280\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36963\",\n    \"key\": \"45464\",\n    \"description\": \"it is snowing and a girl with red hair and a bow is looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8bhbRmqr1s3att3o1_400\",\n    \"question\": \"what is the man blowing and the other man swallows the smoke ring?\",\n    \"answer\": \"rings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35719\",\n    \"key\": \"28574\",\n    \"description\": \"a man is blowing smoke rings and the other man swallows the smoke ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5xnkmNbh1tk2ngvo1_400\",\n    \"question\": \"what was struggling to climb up the table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27618\",\n    \"key\": \"53122\",\n    \"description\": \"the black cat was struggling to climb up the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uckhNDnS1to3k6do1_500\",\n    \"question\": \"what is skidding and blowing smoke on a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12692\",\n    \"key\": \"66915\",\n    \"description\": \"a car is skidding and blowing smoke on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_naadu72Yf41rih4r2o1_400\",\n    \"question\": \"what is the ballerina doing with on leg up in the air on a stage?\",\n    \"answer\": \"twirl\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40784\",\n    \"key\": \"20856\",\n    \"description\": \"a ballerina is doing a twirl with on leg up in the air on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb54cq4esp1tkdiu5o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36946\",\n    \"key\": \"92840\",\n    \"description\": \"a person with light brown hair is smiling as they tilt their head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn6fbUX131t5lviko1_250\",\n    \"question\": \"how many people are standing in an elevator?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35385\",\n    \"key\": \"49614\",\n    \"description\": \"three people are standing in an elevator.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5lm8v8r31tx8mn0o1_400\",\n    \"question\": \"what is driving on the racetrack?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19940\",\n    \"key\": \"77883\",\n    \"description\": \"a race car is driving on the racetrack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nreb388PeN1rb1qd6o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16713\",\n    \"key\": \"4298\",\n    \"description\": \"a girl with purple hair is hugging a girl with blue hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndia525bro1rc7zl1o1_400\",\n    \"question\": \"what smacks the gray cat in a case of mistaken identify after being bit my a squirrel?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23921\",\n    \"key\": \"77620\",\n    \"description\": \"an orange cat smacks a gray cat in a case of mistaken identify after being bit my a squirrel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklj8pQZTT1rxcyx0o1_250\",\n    \"question\": \"what is the shirtless bald man taking from someone?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24313\",\n    \"key\": \"2632\",\n    \"description\": \"a shirtless bald man is taking a box from someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfm146v67f1u44rezo1_500\",\n    \"question\": \"what is the man wearing a black jacket is throwing to the ground?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51469\",\n    \"key\": \"63307\",\n    \"description\": \"a man wearing a black jacket is throwing a picture to the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94c9kD6eu1s0wfo1o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46414\",\n    \"key\": \"40368\",\n    \"description\": \"the man in the black shirt is adjusting his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy3wfD2FB1tx8mn0o1_400\",\n    \"question\": \"what is racing down the track and crashes into the side of the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15744\",\n    \"key\": \"76947\",\n    \"description\": \"a car is racing down the track and crashes into the side of the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrhl6yWq81qi39coo1_500\",\n    \"question\": \"how many young men smile gently at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15316\",\n    \"key\": \"96488\",\n    \"description\": \"two young men smile gently at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_no5y23zVlY1qhwvbro1_400\",\n    \"question\": \"what is the person playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42398\",\n    \"key\": \"51140\",\n    \"description\": \"a person is playing a black and white guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwzkgSJFc1qg0or6o1_400\",\n    \"question\": \"how many people are standing on podiums waving yellow flags?\",\n    \"answer\": \"seven\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4128\",\n    \"key\": \"62997\",\n    \"description\": \"seven people are standing on podiums waving yellow flags.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0t7rKbum1u53evzo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2099\",\n    \"key\": \"48284\",\n    \"description\": \"a boy in a collared shirt and brown jacket laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk21m7cvgz1suivgao1_400\",\n    \"question\": \"how many men in sweaters dance on a stage?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27629\",\n    \"key\": \"59580\",\n    \"description\": \"five men in sweaters dance on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9qf9m6OT1trbt9ao1_400\",\n    \"question\": \"where were two men dancing around.\",\n    \"answer\": \"? house\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39499\",\n    \"key\": \"28960\",\n    \"description\": \"two men were dancing around in a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwjt7RAnP1tm4ad2o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52791\",\n    \"key\": \"101760\",\n    \"description\": \"a woman with red hair turned her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlc3i7KYK1sqiy4oo1_400\",\n    \"question\": \"how many men in a vehicle are singing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39303\",\n    \"key\": \"60244\",\n    \"description\": \"three men in a vehicle are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q8ymfs5t1ql34a1o1_500\",\n    \"question\": \"how many soccer players look nervous?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25159\",\n    \"key\": \"87320\",\n    \"description\": \"two soccer players look nervous and one wipes his face with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9tdxdCGH1r980sno1_r1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48096\",\n    \"key\": \"96094\",\n    \"description\": \"a white man is running and bumps into a ghost.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbadfkbZvN1tl0ko9o1_400\",\n    \"question\": \"what is looking out of the window before jumping out onto a balcony?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47075\",\n    \"key\": \"38032\",\n    \"description\": \"a cat is looking out of a window before jumping out onto a balcony.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjwx6K3OR1tlujlao1_250\",\n    \"question\": \"where are two young men standing and gesturing with their hands.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42595\",\n    \"key\": \"3760\",\n    \"description\": \"two young men are standing in a hallway and gesturing with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gx7oW7um1qci0h0o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45567\",\n    \"key\": \"45292\",\n    \"description\": \"a handsome young man with brown hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtr71EuXh1u0alpro1_500\",\n    \"question\": \"how many foot did someone in black shoes raise?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50100\",\n    \"key\": \"60645\",\n    \"description\": \"someone in black shoes raised one foot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwfcpoGEI1tk2ngvo1_400\",\n    \"question\": \"what gets its head stuck in a mug?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26577\",\n    \"key\": \"74822\",\n    \"description\": \"a cat gets its head stuck in a mug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpdvtvLyP1u2sak3o1_250\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50271\",\n    \"key\": \"51550\",\n    \"description\": \"woman with blue eyes looks into the distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_neua43pKJC1t0kntqo1_250\",\n    \"question\": \"what is the color of the creatures?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA119\",\n    \"key\": \"53580\",\n    \"description\": \"two yellow costumed creatures bend over in a gymnasium.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0ttcs6US1s9rulno1_400\",\n    \"question\": \"how many men without shirts are hugging on a soccer field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3938\",\n    \"key\": \"78934\",\n    \"description\": \"two men without shirts are hugging on a soccer field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1lkqvatH1s6zpepo1_400\",\n    \"question\": \"what does the man pick up and then it falls on him?\",\n    \"answer\": \"dough\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41768\",\n    \"key\": \"26859\",\n    \"description\": \"a man picks up dough and then it falls on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblkdlG0wb1qj5hh7o1_250\",\n    \"question\": \"what is riding atop of another breeding?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15095\",\n    \"key\": \"81080\",\n    \"description\": \"a baby elephant is riding atop of another breeding.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne66d4ll0f1tlxce2o1_400\",\n    \"question\": \"how many people are dressed in superhero costumes?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48533\",\n    \"key\": \"53791\",\n    \"description\": \"four people are dressed in superhero costumes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3lneXQNe1qi5ldlo1_500\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1123\",\n    \"key\": \"58974\",\n    \"description\": \"a woman is running blue pants,\"\n  },\n  {\n    \"video_name\": \"tumblr_no5pqde8ni1rifk13o1_250\",\n    \"question\": \"where does the female dancer spin.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11716\",\n    \"key\": \"53342\",\n    \"description\": \"a female dancer spins twice in a dance studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadznytQ3X1tj5zkfo1_500\",\n    \"question\": \"how many men are sitting on the sofa?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35392\",\n    \"key\": \"71352\",\n    \"description\": \"three men are sitting on a sofa and one has his arms folded.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwfzx0hL91tgkdkbo1_250\",\n    \"question\": \"what is wearing a red cape is riding a scooter?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22210\",\n    \"key\": \"5671\",\n    \"description\": \"a dog wearing a red cape is riding a scooter.\"\n  },\n  {\n    \"video_name\": \"tumblr_njolrr2lk11s399vuo1_400\",\n    \"question\": \"what is the guy jumping off into a lake?\",\n    \"answer\": \"dock\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19646\",\n    \"key\": \"28617\",\n    \"description\": \"a guy is jumping off a dock into a lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndu1fawTmi1rpucoso1_250\",\n    \"question\": \"how many people is this dancing with a car in the background?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22870\",\n    \"key\": \"40882\",\n    \"description\": \"this is two people dancing with a car in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzl9clEBn1slj978o1_400\",\n    \"question\": \"what is curious about a hamster that is eating?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7788\",\n    \"key\": \"28180\",\n    \"description\": \"a cat is curious about a hamster that is eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrgwo2ChI1tmnzbjo1_500\",\n    \"question\": \"what is the color of the dances?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18214\",\n    \"key\": \"97210\",\n    \"description\": \"a woman dressed in black dances while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xhhpcZOi1ribqy3o1_1280\",\n    \"question\": \"where did four guys bang their heads.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35819\",\n    \"key\": \"33927\",\n    \"description\": \"four guys banged their heads in the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_niug00kIQZ1tu05oyo1_400\",\n    \"question\": \"how many man listens intently to another man speak?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43784\",\n    \"key\": \"25074\",\n    \"description\": \"one man listens intently to another man speak.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqusa2AVho1t6r3t0o1_400\",\n    \"question\": \"what is the woman underwater activating by example?\",\n    \"answer\": \"device\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18334\",\n    \"key\": \"83682\",\n    \"description\": \"a woman underwater is activating a float device by example.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazoqqzPK61rcr3teo1_250\",\n    \"question\": \"what spins out of control after getting rear ended by another car?\",\n    \"answer\": \"taxi\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46747\",\n    \"key\": \"84564\",\n    \"description\": \"a beat-up taxi spins out of control after getting rear ended by another car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3iivXYey1u7lrdno1_500\",\n    \"question\": \"what is running fast that one of the wheel blows up?\",\n    \"answer\": \"truck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6968\",\n    \"key\": \"91155\",\n    \"description\": \"the truck is running fast that one of the wheel blows up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsdx5f0Gm1rb71dxo1_400\",\n    \"question\": \"what is the color of the bulldog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14461\",\n    \"key\": \"69966\",\n    \"description\": \"a brown bulldog is standing trying to catch water in his month.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrj8tiIIWd1tkhxdko1_400\",\n    \"question\": \"what is attacking the hand and kicking its feet?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2853\",\n    \"key\": \"22505\",\n    \"description\": \"a cat is attacking a hand and kicking its feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nql8slVS0v1u1q122o1_400\",\n    \"question\": \"where is the drunk man dancing.\",\n    \"answer\": \"? bar\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44494\",\n    \"key\": \"35814\",\n    \"description\": \"a drunk man is dancing in a bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9eblfUw4E1sna4i4o1_250\",\n    \"question\": \"what is the person riding down a road?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41023\",\n    \"key\": \"4523\",\n    \"description\": \"a person is riding a motorbike down a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_npa30jXsLg1qdvza8o1_400\",\n    \"question\": \"where do two people dance close.\",\n    \"answer\": \"? hall\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29990\",\n    \"key\": \"96685\",\n    \"description\": \"two people dance close together in a hall together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9owiPitI1u4pbd2o1_500\",\n    \"question\": \"what is the person swinging?\",\n    \"answer\": \"singing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52249\",\n    \"key\": \"89655\",\n    \"description\": \"a person is swinging their guitar while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk37choqIF1uos7q4o1_400\",\n    \"question\": \"what is the girl wearing a black shirt is kissing?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4505\",\n    \"key\": \"30118\",\n    \"description\": \"the girl wearing a black shirt is kissing her cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9o7hUCQC1sv932qo1_250\",\n    \"question\": \"what is the color of the couple?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25966\",\n    \"key\": \"808\",\n    \"description\": \"the couple dressed in black are kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuxofDUaP1trlo5to1_400\",\n    \"question\": \"how many entertainment stars are being interviews by the FRAMEQAorter?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33706\",\n    \"key\": \"48690\",\n    \"description\": \"two entertainment stars are being interviews by a FRAMEQAorter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfd11g9m741tm2ntoo1_500\",\n    \"question\": \"what is the woman wearing a white dress?\",\n    \"answer\": \"stares\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52939\",\n    \"key\": \"67219\",\n    \"description\": \"a woman wearing a white dress shirt stares.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9euhcHVsj1t1a1dlo1_250\",\n    \"question\": \"what is the young guy riding and getting ready for a trick?\",\n    \"answer\": \"skate\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14646\",\n    \"key\": \"13359\",\n    \"description\": \"a young guy is riding his skate and getting ready for a trick.\"\n  },\n  {\n    \"video_name\": \"tumblr_no62vs7NV21uvo3r1o1_100\",\n    \"question\": \"how many lads at leisure seated and in conversation?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36745\",\n    \"key\": \"5803\",\n    \"description\": \"three lads at leisure seated and in conversation.\"\n  },\n  {\n    \"video_name\": \"tumblr_np3jvwNxHX1u1gesoo1_400\",\n    \"question\": \"what is jumping over some barrels?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39005\",\n    \"key\": \"66325\",\n    \"description\": \"a horse is jumping over some barrels.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0vw5ntIo1thx58do1_540\",\n    \"question\": \"what does the person in a tux read?\",\n    \"answer\": \"card\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7502\",\n    \"key\": \"91143\",\n    \"description\": \"a person in a tux reads a note card.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney7igW9Zl1tik3sgo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32491\",\n    \"key\": \"36658\",\n    \"description\": \"a woman in a white dress sings a song.\"\n  },\n  {\n    \"video_name\": \"tumblr_mnfuzbyex91qe2lmeo1_500\",\n    \"question\": \"how many lovers is playing with balloons and they look very happy?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8016\",\n    \"key\": \"81919\",\n    \"description\": \"two lovers playing with balloons and they look very happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8huxJJg41qbzfhbo1_250\",\n    \"question\": \"how many blond girls are sitting close together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51705\",\n    \"key\": \"13231\",\n    \"description\": \"two blond girls are sitting close together,\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjb06Vy3C1uti9noo1_250\",\n    \"question\": \"where do the couple of young people look scared.\",\n    \"answer\": \"? corridor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42370\",\n    \"key\": \"87553\",\n    \"description\": \"a couple of young people look scared in a corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7ghjKH01tdwqw4o1_500\",\n    \"question\": \"what is the color of the turns?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11131\",\n    \"key\": \"59819\",\n    \"description\": \"a little girl dressed in black turns and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncahrts1au1s71nvbo1_400\",\n    \"question\": \"what does the man with a bleeding face put on?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20707\",\n    \"key\": \"57065\",\n    \"description\": \"a man with a bleeding face puts sunglasses on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3tu3h9Yz1u1v0pco1_400\",\n    \"question\": \"what are playing together with the cylinder?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45784\",\n    \"key\": \"88816\",\n    \"description\": \"the cats are playing together with a cylinder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk15pvmV3m1qzb52xo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33111\",\n    \"key\": \"29669\",\n    \"description\": \"a girl with short hair wears olive and nods in sync with a girl with long hair and an orange jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_no4czdLnmS1tnjsjuo1_1280\",\n    \"question\": \"where did the person fail to catch the goldfish.\",\n    \"answer\": \"? tank\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19270\",\n    \"key\": \"14627\",\n    \"description\": \"the person failed to catch the goldfish in the fish tank.\"\n  },\n  {\n    \"video_name\": \"tumblr_negrp50MCD1rmfypqo1_500\",\n    \"question\": \"how many men are smiling at each other while wearing the same clothes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2636\",\n    \"key\": \"97810\",\n    \"description\": \"two men are smiling at each other while wearing the same clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad0y6Ci4u1tjbpqfo1_250\",\n    \"question\": \"where is the boy sitting and smiling.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50360\",\n    \"key\": \"47065\",\n    \"description\": \"a boy is sitting in a car and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhh11uNa5j1tngqkyo1_250\",\n    \"question\": \"what does the man play and the man behind him plays the guitar?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43297\",\n    \"key\": \"8192\",\n    \"description\": \"the man plays the drums and the man behind him plays the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr51n6uG1g1tqzdmxo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49887\",\n    \"key\": \"36332\",\n    \"description\": \"a red haired armed woman is holding a lot of ammo.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney2qpWl7D1tv2q4bo1_400\",\n    \"question\": \"what is the guy playing and singing on stage?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA53078\",\n    \"key\": \"2296\",\n    \"description\": \"a guy is playing the piano and singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4iytkj9W1tjjejho1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37535\",\n    \"key\": \"39706\",\n    \"description\": \"a boy with blue eyes and brown hair says something through a smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndp629pKAf1rxcenzo1_400\",\n    \"question\": \"where is the young man dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40918\",\n    \"key\": \"64357\",\n    \"description\": \"a young man is dancing in his living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1mufq2Ab1sico5po1_250\",\n    \"question\": \"what is the color of the headband?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28241\",\n    \"key\": \"6051\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_npvfwwSEYu1sfmhxao1_400\",\n    \"question\": \"what is the color of the door?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8130\",\n    \"key\": \"52459\",\n    \"description\": \"a woman is hugging another woman in front of a blue door.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2llnbU4P1qkelnfo1_400\",\n    \"question\": \"what is the man riding from a roof to a sidewalk?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35070\",\n    \"key\": \"65644\",\n    \"description\": \"a man is riding a skateboard from a roof to a sidewalk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqbwc4WRcy1qz72sno1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA100\",\n    \"key\": \"76818\",\n    \"description\": \"a white man is turning and closing his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7e9752qs1unbc8go1_400\",\n    \"question\": \"how many wrestlers is this fighting outside of the ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4740\",\n    \"key\": \"52130\",\n    \"description\": \"this is two wrestlers fighting outside of the ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngbssiZkk81tk2ngvo1_400\",\n    \"question\": \"what runs away from the floating machine?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8275\",\n    \"key\": \"55993\",\n    \"description\": \"a fluffy cat runs away from a floating machine.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq491cDKzo1tbxk1ao1_400\",\n    \"question\": \"what is the man smiling and adjusting in his ear?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6287\",\n    \"key\": \"25038\",\n    \"description\": \"a man is smiling and adjusting his headphones in his ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x4u9gEFy1s2wg51o1_500\",\n    \"question\": \"what is checking smelling something close up?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28816\",\n    \"key\": \"68398\",\n    \"description\": \"a brown horse is checking smelling something close up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczubwv8w11t0k6fmo1_250\",\n    \"question\": \"what is the color of the lighting?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35995\",\n    \"key\": \"6245\",\n    \"description\": \"two men dance on a stage with red lighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkow3gFUC21tljkklo2_250\",\n    \"question\": \"how many boys are standing next to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3210\",\n    \"key\": \"2773\",\n    \"description\": \"the two boys are standing next to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4axjoDqg1tkp4r2o1_250\",\n    \"question\": \"what does the person play on a stage very enthusiastically?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9174\",\n    \"key\": \"19141\",\n    \"description\": \"a person plays guitar on a stage very enthusiastically.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7hpl6dpk1tfhnexo1_250\",\n    \"question\": \"what is the person jumping up in the air and kicking?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6751\",\n    \"key\": \"78460\",\n    \"description\": \"a person is jumping up in the air and kicking a ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4rt94t1g1tdjuqvo1_400\",\n    \"question\": \"what jumps up from the pile of snow?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48169\",\n    \"key\": \"86983\",\n    \"description\": \"a brown dog jumps up from a pile of snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrc4n8V2xU1tx8mn0o1_400\",\n    \"question\": \"what is skidding around the corner and off the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6602\",\n    \"key\": \"93104\",\n    \"description\": \"a racing car is skidding around a corner and off the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sz8trA7B1sv44h3o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA483\",\n    \"key\": \"40753\",\n    \"description\": \"the woman wearing a black shirt is smoking a drug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndraq7VgPA1rq1604o1_500\",\n    \"question\": \"what is the man smoking in front of a forest?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52677\",\n    \"key\": \"90690\",\n    \"description\": \"a man is smoking a cigarette in front of a forest.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh1j8nYj1F1smwbflo1_400\",\n    \"question\": \"where are two young men fooling around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38760\",\n    \"key\": \"29663\",\n    \"description\": \"two young men are fooling around in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nir4h8gDt81tb5plwo1_250\",\n    \"question\": \"how many men is this dancing and snapping their fingers?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10529\",\n    \"key\": \"6561\",\n    \"description\": \"this is two men dancing and snapping their fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxf7950qG1tdjuqvo1_500\",\n    \"question\": \"what attacks the cat shaped balloon?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25995\",\n    \"key\": \"76474\",\n    \"description\": \"the cat attacks the cat shaped balloon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbanebYjIn1syy1ujo1_400\",\n    \"question\": \"what is the man jumping on a skateboard?\",\n    \"answer\": \"walls\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48924\",\n    \"key\": \"66182\",\n    \"description\": \"a man is jumping walls on a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhidzpk1Bu1tjhld9o1_250\",\n    \"question\": \"what is tilting his head slightly at an angle?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13028\",\n    \"key\": \"23339\",\n    \"description\": \"a dog is tilting his head slightly at an angle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc87hbmT7S1s97opco1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5704\",\n    \"key\": \"6912\",\n    \"description\": \"a man wearing a white shirt and dark colored vest,\"\n  },\n  {\n    \"video_name\": \"tumblr_nheujcDvAL1u6ps3vo1_400\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18562\",\n    \"key\": \"35800\",\n    \"description\": \"a man is wearing a long white lab coat while standing next to a donkey and is eating something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrfrgqf2gd1uxi6bbo1_500\",\n    \"question\": \"how many people are putting up peace signs with their hands?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47163\",\n    \"key\": \"94380\",\n    \"description\": \"three people are putting up peace signs with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_namp6mWvlq1qminp2o1_250\",\n    \"question\": \"what is the man putting to another man?\",\n    \"answer\": \"cover\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4586\",\n    \"key\": \"47287\",\n    \"description\": \"a man is putting a cover to another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne55yo7DLv1tsmvhdo1_500\",\n    \"question\": \"what is jumping on the shelf trying to fly?\",\n    \"answer\": \"chick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24382\",\n    \"key\": \"94775\",\n    \"description\": \"a gull chick is jumping on the shelf trying to fly.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwdo4WvDN1u967xao1_500\",\n    \"question\": \"where is the guy wearing a brown coat,\",\n    \"answer\": \"is visiting another guy . ? hospital\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32177\",\n    \"key\": \"72906\",\n    \"description\": \"a guy wearing a brown coat,\"\n  },\n  {\n    \"video_name\": \"tumblr_nn4nr9hX3C1sm7eoto1_500\",\n    \"question\": \"what is laying in the tub of water while a kid is in a float?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13511\",\n    \"key\": \"41251\",\n    \"description\": \"a dog is laying in a tub of water while a kid is in a float.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncc1baT5HP1svs31wo1_400\",\n    \"question\": \"where are two young men enjoying a ride and laughing.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36095\",\n    \"key\": \"2743\",\n    \"description\": \"two young men are enjoying a ride in the car and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf189lUyiY1tdjuqvo1_400\",\n    \"question\": \"what lays in the big bowl as a cat tries to pull him out?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3278\",\n    \"key\": \"38805\",\n    \"description\": \"a fish lays in a big bowl as a cat tries to pull him out.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94fi690GZ1twfcheo1_400\",\n    \"question\": \"how many men with black hair are playing the guitar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8539\",\n    \"key\": \"60282\",\n    \"description\": \"two men with black hair are playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zxu0By4F1slmv53o1_500\",\n    \"question\": \"what is the man playing with lots of effort?\",\n    \"answer\": \"keyboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26865\",\n    \"key\": \"54951\",\n    \"description\": \"the man is playing the keyboard with lots of effort.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng3spyNCrB1sq9tvpo1_400\",\n    \"question\": \"what is giggling inside the studio?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12064\",\n    \"key\": \"58299\",\n    \"description\": \"a pop star is giggling inside a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_neh6ut4xxG1tiirhlo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36492\",\n    \"key\": \"64639\",\n    \"description\": \"the girl is wearing a white shirt and a black hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs3d4Hye11tb92v8o1_400\",\n    \"question\": \"how many boys are dancing as one plays the guitar?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26892\",\n    \"key\": \"59364\",\n    \"description\": \"three boys are dancing as one plays the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqq12FqgR1u0rv50o1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48363\",\n    \"key\": \"75994\",\n    \"description\": \"a man wearing a white mask and black clothing is drinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngyrfb6hzc1rlvjr1o1_400\",\n    \"question\": \"what is the color of the dot?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20587\",\n    \"key\": \"33915\",\n    \"description\": \"a woman is wearing sunglasses and has a red dot on her nose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbf2peigGM1rpjuouo1_250\",\n    \"question\": \"what is the boy with a white shirt smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24115\",\n    \"key\": \"82668\",\n    \"description\": \"a boy with a white shirt is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9msm7HMOO1thfulao1_500\",\n    \"question\": \"what does the man in a sports uniform place into his hair?\",\n    \"answer\": \"comb\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12831\",\n    \"key\": \"95600\",\n    \"description\": \"a man in a sports uniform places a large comb into his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabkywE1ZI1r0f68xo1_500\",\n    \"question\": \"what is laughing and making victory sign?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47879\",\n    \"key\": \"98966\",\n    \"description\": \"a pop star is laughing and making victory sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahi8nDJSh1tz17wqo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26127\",\n    \"key\": \"83188\",\n    \"description\": \"a woman with long brown hair wearing a pink and white top is smiling and hand gesturing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nim1nvt1em1sqlieso1_400\",\n    \"question\": \"where do two men fight.\",\n    \"answer\": \"? building\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45773\",\n    \"key\": \"93077\",\n    \"description\": \"two men fight indoors in an empty building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpuobhJ591ry0b5go1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA129\",\n    \"key\": \"9466\",\n    \"description\": \"a woman embraces a man in a black leather suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexv4oxDWU1tdxdrdo1_400\",\n    \"question\": \"how many men are headbanging together in the dark?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47753\",\n    \"key\": \"58313\",\n    \"description\": \"four men are headbanging together in the dark.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7ovlzraN1s8qlxdo1_500\",\n    \"question\": \"what does the hedgehog carry?\",\n    \"answer\": \"roll\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20677\",\n    \"key\": \"67883\",\n    \"description\": \"a hedgehog carries an empty toilet paper roll.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1ppiOr4r1s84144o1_250\",\n    \"question\": \"what does man wear attached to his glasses?\",\n    \"answer\": \"device\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7260\",\n    \"key\": \"82977\",\n    \"description\": \"man wears a device attached to his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95vewpyij1s6octbo1_400\",\n    \"question\": \"how many men approach each other and whisper in their ears?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43790\",\n    \"key\": \"83510\",\n    \"description\": \"two men approach each other and whisper in their ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0s0kFIfP1tx8mn0o1_400\",\n    \"question\": \"what turn the corner and speed down the straight away?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22813\",\n    \"key\": \"55469\",\n    \"description\": \"many race cars turn the corner and speed down the straight away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckjrzjHmR1sc2n9ao1_500\",\n    \"question\": \"how many young men are grinning and winking for someone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38325\",\n    \"key\": \"83916\",\n    \"description\": \"two young men are grinning and winking for someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncilobU0pA1t151ozo1_400\",\n    \"question\": \"how many men are dancing in the performance on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28620\",\n    \"key\": \"63596\",\n    \"description\": \"two men are dancing in a performance on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfgrhpeWx1thylgdo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA240\",\n    \"key\": \"48117\",\n    \"description\": \"a man wearing a black jacket looks forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nep4b0pXnK1u26rdio1_500\",\n    \"question\": \"what did guy ride over the fence?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24680\",\n    \"key\": \"57888\",\n    \"description\": \"guy rode his bicycle over the fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_nephvvr7qF1tkura4o1_250\",\n    \"question\": \"how many cats are opening the drawer to look inside it?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38346\",\n    \"key\": \"18471\",\n    \"description\": \"two cats are opening a drawer to look inside it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwj2x0l3x1tfps03o1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37266\",\n    \"key\": \"10254\",\n    \"description\": \"a man in a red hat is tapping his neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni18qdsJyr1u5vyipo1_250\",\n    \"question\": \"what is the color of the mike?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13642\",\n    \"key\": \"23415\",\n    \"description\": \"a girl holding red mike is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mcomp3VE1sa9k0fo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22092\",\n    \"key\": \"6285\",\n    \"description\": \"a woman in a gray short dress and a black wig is walking down a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxyiivlNC1t06byno1_400\",\n    \"question\": \"what is skidding to the halt on a road?\",\n    \"answer\": \"tank\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44181\",\n    \"key\": \"28984\",\n    \"description\": \"an army tank is skidding to a halt on a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_najg0y3ZQX1tatohao1_250\",\n    \"question\": \"what rams the girl who is dancing?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33061\",\n    \"key\": \"10583\",\n    \"description\": \"a goat rams a girl who is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0jxoYxes1tkdc7qo1_250\",\n    \"question\": \"how many young girls are jumping around while dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47070\",\n    \"key\": \"76255\",\n    \"description\": \"two young girls are jumping around while dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7ovlzraN1s8qlxdo1_500\",\n    \"question\": \"what is playing with the toilet roll?\",\n    \"answer\": \"hedgehog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14304\",\n    \"key\": \"67883\",\n    \"description\": \"a hedgehog is playing with a toilet roll.\"\n  },\n  {\n    \"video_name\": \"tumblr_njsf8qqbKL1rnj7d3o1_400\",\n    \"question\": \"what does the model walk down wearing a long black jacket?\",\n    \"answer\": \"runway\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39891\",\n    \"key\": \"67332\",\n    \"description\": \"a model walks down the runway wearing a long black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_mgo1kl7MLM1qe2thio1_500\",\n    \"question\": \"what jumps and pFRAMEQAares to fall?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40117\",\n    \"key\": \"94323\",\n    \"description\": \"a white horse jumps and pFRAMEQAares to fall.\"\n  },\n  {\n    \"video_name\": \"tumblr_njox7s52pH1sico5po1_250\",\n    \"question\": \"what are the pair of guys rubbing shaped hats together?\",\n    \"answer\": \"cone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA72\",\n    \"key\": \"49619\",\n    \"description\": \"a pair of guys are rubbing their cone shaped hats together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng486l8Fhx1u3n62mo1_400\",\n    \"question\": \"how many people is wearing school ties are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29499\",\n    \"key\": \"89980\",\n    \"description\": \"two people wearing school ties are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_noofl2XtVN1uw3tyuo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24839\",\n    \"key\": \"39859\",\n    \"description\": \"a boy with painted face by are sticking white suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc95blevQd1sg10q0o1_250\",\n    \"question\": \"how many male passengers are riding in the back seat of a car?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10188\",\n    \"key\": \"49450\",\n    \"description\": \"three male passengers are riding in the back seat of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb18o9DZR91r9clqho1_500\",\n    \"question\": \"how many young men are singing and saluting with their hands?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42658\",\n    \"key\": \"71005\",\n    \"description\": \"four young men are singing and saluting with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nch7bgbitX1ty31s3o1_250\",\n    \"question\": \"how many young men are clapping and talking on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17957\",\n    \"key\": \"86718\",\n    \"description\": \"two young men are clapping and talking on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncx9u3ivlb1tdmffyo1_400\",\n    \"question\": \"what lets the little dog out of a cage?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34452\",\n    \"key\": \"101281\",\n    \"description\": \"a big dog lets a little dog out of a cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e0qe1Ghp1sztu6fo1_400\",\n    \"question\": \"what is the color of the flower?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48911\",\n    \"key\": \"54657\",\n    \"description\": \"a man wearing white is sniffing a white flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_na00hxaoq01so8ipho1_500\",\n    \"question\": \"what does the teenager in a white shirt sip?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39438\",\n    \"key\": \"79541\",\n    \"description\": \"a teenager in a white shirt sips a purple drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl0nxfMG31t5lviko1_250\",\n    \"question\": \"how many men turn around suddenly and stop?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30356\",\n    \"key\": \"43918\",\n    \"description\": \"the two men turn around suddenly and stop.\"\n  },\n  {\n    \"video_name\": \"tumblr_navz04i2T01tpmdr3o1_250\",\n    \"question\": \"where does the man sit.\",\n    \"answer\": \"? bathtub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27409\",\n    \"key\": \"31122\",\n    \"description\": \"a man sits at a computer and then in a bathtub.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9858a3WXw1shmm4co1_400\",\n    \"question\": \"how many boys is this talking to one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12670\",\n    \"key\": \"79082\",\n    \"description\": \"this is two boys talking to one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9ii12sYt1tx8mn0o1_400\",\n    \"question\": \"what makes the sharp turn while in a race?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34476\",\n    \"key\": \"66589\",\n    \"description\": \"a race car makes a sharp turn while in a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxdgzZ1W81t9h1yfo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36018\",\n    \"key\": \"63730\",\n    \"description\": \"the man in the black shirt is holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsiu1qENF1s2z19ko1_400\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30750\",\n    \"key\": \"67449\",\n    \"description\": \"a woman is sitting in a large white chair staring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx1pzIVPj1qzs8ldo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32603\",\n    \"key\": \"37204\",\n    \"description\": \"a guy wearing a black jacket is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_naewvsd2Hj1rpjr5so1_500\",\n    \"question\": \"what is the big yellow banana wearing sunglasses is playing?\",\n    \"answer\": \"trumpet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31364\",\n    \"key\": \"27793\",\n    \"description\": \"a big yellow banana wearing sunglasses is playing the trumpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpaoaNNIH1rpqn0wo1_500\",\n    \"question\": \"what is driven around the track until it skids?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21282\",\n    \"key\": \"61804\",\n    \"description\": \"a car is driven around a track until it skids.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbovmhO8lQ1t08tbeo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25476\",\n    \"key\": \"68894\",\n    \"description\": \"a white girl with purple hair is grimacing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb50ccDCSC1swjcnao1_500\",\n    \"question\": \"how many young people are greeting each other with a hand shake and hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33944\",\n    \"key\": \"61180\",\n    \"description\": \"two young people are greeting each other with a hand shake and hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcentF2yy1unyhx2o1_400\",\n    \"question\": \"what is traveling sideways on the racetrack?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45487\",\n    \"key\": \"76890\",\n    \"description\": \"a car is traveling sideways on a racetrack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nheonn6u3e1r2m5fko1_1280\",\n    \"question\": \"what are the woman and a man playing under the snow?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19970\",\n    \"key\": \"45464\",\n    \"description\": \"a woman and a man are playing the guitar under the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh8lleEpNz1rhl4f0o1_400\",\n    \"question\": \"what is climbing onto the person 's hand from a branch?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51877\",\n    \"key\": \"81049\",\n    \"description\": \"a frog is climbing onto a person 's hand from a branch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnn5nj7vw21s8rggqo1_250\",\n    \"question\": \"what is laying down and licking the middle of the couch?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52570\",\n    \"key\": \"2604\",\n    \"description\": \"a dog is laying down and licking the middle of the couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_npx35lQNlc1tg6dv1o1_500\",\n    \"question\": \"how many lovers illuminated by the swinging inspection light?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26452\",\n    \"key\": \"11124\",\n    \"description\": \"two lovers illuminated by a swinging inspection light.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko0d0GuMv1s8hdzqo7_250\",\n    \"question\": \"what is zoomed into view?\",\n    \"answer\": \"statue\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45177\",\n    \"key\": \"51290\",\n    \"description\": \"a wooden statue is zoomed into view.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbearz2UtH1tykzato1_500\",\n    \"question\": \"how many people is this giving a singing performance?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51568\",\n    \"key\": \"91827\",\n    \"description\": \"this is two people giving a singing performance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnhys0agY1tcltsqo1_400\",\n    \"question\": \"what does the large monkey groom?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49125\",\n    \"key\": \"66216\",\n    \"description\": \"the large monkey grooms the smaller monkey.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkluxwUCXZ1up5k6ro1_250\",\n    \"question\": \"how many men are standing in the bright colored house when one man makes another disappear?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29733\",\n    \"key\": \"77807\",\n    \"description\": \"four men are standing in a bright colored house when one man makes another disappear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmctp8E72g1rhpmtko1_400\",\n    \"question\": \"how many men are enjoying themselves jumping on a rubber buoy?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18591\",\n    \"key\": \"85003\",\n    \"description\": \"three men are enjoying themselves jumping on a rubber buoy.\"\n  },\n  {\n    \"video_name\": \"tumblr_naug61u7Kv1tgbziwo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25461\",\n    \"key\": \"96773\",\n    \"description\": \"a man in white is taking out a frozen box from a lab fridge.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96t56IqpN1tz9mg2o1_250\",\n    \"question\": \"what does the boy kick into the basket?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26316\",\n    \"key\": \"12443\",\n    \"description\": \"the boy kicks the ball into the basket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9b86RibY1t30yt2o1_400\",\n    \"question\": \"what is the color of the marks?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31215\",\n    \"key\": \"82248\",\n    \"description\": \"some men dressed in black have black marks on their faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1mtw4zVW1qhccx4o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49992\",\n    \"key\": \"98906\",\n    \"description\": \"two men with black shirt are looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9msz5bJ7Y1spkaepo1_400\",\n    \"question\": \"what is the color of the women?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52232\",\n    \"key\": \"62640\",\n    \"description\": \"five women dressed in black walk down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6ei1nNR71roqbapo1_250\",\n    \"question\": \"what is the man showing to the FRAMEQAorter on tv?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21308\",\n    \"key\": \"15332\",\n    \"description\": \"a man is showing a picture to the FRAMEQAorter on tv.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6m9ty5TR1qjwz8qo1_250\",\n    \"question\": \"what is the man with a guitar singing and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38535\",\n    \"key\": \"27638\",\n    \"description\": \"a man with a guitar is singing and playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwtrlgXnQ1rjz4byo1_400\",\n    \"question\": \"what is the girl wearing glasses is spinning?\",\n    \"answer\": \"round\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32870\",\n    \"key\": \"29191\",\n    \"description\": \"a girl wearing glasses is spinning round.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9m8zTe8u1rlog3io1_400\",\n    \"question\": \"where is the girl wearing a hat and laughing.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19088\",\n    \"key\": \"79038\",\n    \"description\": \"a girl is wearing a hat and laughing in a kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndizuwjz6S1tw1kcao1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25300\",\n    \"key\": \"52682\",\n    \"description\": \"the woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrt5nXvpv1tll0p8o1_400\",\n    \"question\": \"how many men are laughing together and wiggling their tongues?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA797\",\n    \"key\": \"78962\",\n    \"description\": \"two men are laughing together and wiggling their tongues.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sp7rpg971rcboh0o1_500\",\n    \"question\": \"what is the guy wearing a striped shirt and jeans,\",\n    \"answer\": \"rides a skateboard up and launches himself through the air ? ramp\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44902\",\n    \"key\": \"24370\",\n    \"description\": \"a guy wearing a striped shirt and jeans,\"\n  },\n  {\n    \"video_name\": \"tumblr_njz7qqK5AO1u3g519o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21577\",\n    \"key\": \"32233\",\n    \"description\": \"a lady wearing white dress is sitting on road side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl19j0KSvE1tcoa45o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48410\",\n    \"key\": \"94306\",\n    \"description\": \"a white man and a white girl are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_njn8iw5kKP1una83oo1_500\",\n    \"question\": \"how many trim young men flex on stage?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8456\",\n    \"key\": \"33829\",\n    \"description\": \"four trim young men flex on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvahqJXxD1ua2kc4o1_250\",\n    \"question\": \"what is the girl with long blonde hair dancing and holding and smiling?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28274\",\n    \"key\": \"51308\",\n    \"description\": \"a girl with long blonde hair is dancing and holding a microphone and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_na95y0Ys5c1rjao7ro1_400\",\n    \"question\": \"where is the teen trying to be scary.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39790\",\n    \"key\": \"99035\",\n    \"description\": \"a teen is trying to be scary in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncom59mV8o1u08u4qo1_250\",\n    \"question\": \"how many women is holding batons dance wildly on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1586\",\n    \"key\": \"23222\",\n    \"description\": \"two women holding batons dance wildly on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrep9tsyF51tx8mn0o1_400\",\n    \"question\": \"what does the man come off during a race?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29009\",\n    \"key\": \"78229\",\n    \"description\": \"a man comes off his motorbike during a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlz3dnn231u5808to1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40325\",\n    \"key\": \"81813\",\n    \"description\": \"a man with black hair is looking very serious.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv0l3gloB1try5kvo1_500\",\n    \"question\": \"what is the boy standing and twirling?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2744\",\n    \"key\": \"95598\",\n    \"description\": \"a boy is standing and twirling a stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz5bgkqTO1tkalc5o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37552\",\n    \"key\": \"2024\",\n    \"description\": \"a girl with a red hair and red hat is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7t11scOH1tjmrqwo1_400\",\n    \"question\": \"what is the man rapidly firing?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21873\",\n    \"key\": \"77615\",\n    \"description\": \"a man is rapidly firing a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahq77DHbg1tv8d7ko1_400\",\n    \"question\": \"what is the man removing and waving to an audience?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52211\",\n    \"key\": \"12529\",\n    \"description\": \"a man is removing his hat and waving to an audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfs8trHLG1slj978o1_400\",\n    \"question\": \"what is fighting with the raccoon in a toilet?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38716\",\n    \"key\": \"76304\",\n    \"description\": \"a dog is fighting with a raccoon in a toilet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjtdvdsMt1sdiz3bo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17044\",\n    \"key\": \"33402\",\n    \"description\": \"a white man is making a dance steps in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrkhq4G421te8h2uo1_500\",\n    \"question\": \"where is the dark haired girl standing and looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48794\",\n    \"key\": \"93844\",\n    \"description\": \"a dark haired girl is standing and looking at herself in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_narusznLKe1ti88nfo1_500\",\n    \"question\": \"what is the man chewing?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36863\",\n    \"key\": \"95611\",\n    \"description\": \"a man is chewing some pink bubble gum.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyrwzBubZ1ts3zgzo1_500\",\n    \"question\": \"where is the young woman doing yoga poses.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52417\",\n    \"key\": \"75732\",\n    \"description\": \"a young woman is doing yoga poses in an empty room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkbu9cuFSt1tfe5fyo1_250\",\n    \"question\": \"what is the priest smoking and looking down?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12532\",\n    \"key\": \"19499\",\n    \"description\": \"a priest is smoking a cigarette and looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdi1douhg1r03eaxo1_400\",\n    \"question\": \"where is the man waving a squash.\",\n    \"answer\": \"? cart\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10494\",\n    \"key\": \"76259\",\n    \"description\": \"a man in a handicap cart is waving a squash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8y7flGO81sgg5k5o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36663\",\n    \"key\": \"50950\",\n    \"description\": \"a young man in a black jacket is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqkhzz8i841uzwc0eo1_500\",\n    \"question\": \"what is the girl walking on a roof top looses?\",\n    \"answer\": \"shoe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39856\",\n    \"key\": \"92675\",\n    \"description\": \"a girl walking on a roof top looses her shoe.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6t4gSzKE1tgetb4o1_400\",\n    \"question\": \"what sniffs the turtle and then gets bitten by it?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37090\",\n    \"key\": \"47560\",\n    \"description\": \"a dog sniffs a turtle and then gets bitten by it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrfrgqf2gd1uxi6bbo1_500\",\n    \"question\": \"how many women is this image of posing and acting silly?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38330\",\n    \"key\": \"94380\",\n    \"description\": \"this image is of three women posing and acting silly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8vwm75GP1t34y55o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13145\",\n    \"key\": \"34439\",\n    \"description\": \"a boy wearing a black shirt blinked and smiled.\"\n  },\n  {\n    \"video_name\": \"tumblr_noipe7K8wn1uvy8rfo1_500\",\n    \"question\": \"what is changing lanes on a busy highway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5034\",\n    \"key\": \"87621\",\n    \"description\": \"a red car is changing lanes on a busy highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpf8u9tA71u65utjo1_1280\",\n    \"question\": \"what is the person holding their phone and wearing?\",\n    \"answer\": \"bracelet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26639\",\n    \"key\": \"77635\",\n    \"description\": \"a person is holding their phone and wearing an animated bracelet.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s0xxT2ig1ssgyoro1_400\",\n    \"question\": \"what is the brown and white dog chasing?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49058\",\n    \"key\": \"56060\",\n    \"description\": \"a brown and white dog is chasing a yellow ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbld3tfp061sj9i7fo1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10\",\n    \"key\": \"85779\",\n    \"description\": \"white guy is sitting in a chair and is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkk7xhuSU1sa6u20o1_400\",\n    \"question\": \"where is the young lady relaxing.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48642\",\n    \"key\": \"50845\",\n    \"description\": \"a young lady is relaxing in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9jajxPqO1tsl8rno1_500\",\n    \"question\": \"what is the woman in the white shirt running up?\",\n    \"answer\": \"bleachers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19044\",\n    \"key\": \"93397\",\n    \"description\": \"the woman in the white shirt is running up bleachers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nov6tduqos1uvi3rjo1_400\",\n    \"question\": \"what is wearing large purple ears?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7053\",\n    \"key\": \"54480\",\n    \"description\": \"a small brown dog is wearing large purple ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4z54JieK1som6aeo1_250\",\n    \"question\": \"where is the man spitting on something and putting it.\",\n    \"answer\": \"? pot\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9085\",\n    \"key\": \"18398\",\n    \"description\": \"a man is spitting on something and putting it in the pot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafofu1EYY1t7yv08o1_400\",\n    \"question\": \"where are two young people dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12458\",\n    \"key\": \"2489\",\n    \"description\": \"two young people are dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95kw5hm8o1tfgg7jo1_500\",\n    \"question\": \"how many dancers are sliding back to back?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9038\",\n    \"key\": \"102010\",\n    \"description\": \"two dancers are sliding back to back.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yf90aSou1stgwlqo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6649\",\n    \"key\": \"59433\",\n    \"description\": \"a black man,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndg61klBqW1tl5qj2o1_500\",\n    \"question\": \"what is the man turning steering in his vehicle on a cloudy day?\",\n    \"answer\": \"wheel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27148\",\n    \"key\": \"50284\",\n    \"description\": \"a man is turning the steering wheel in his vehicle on a cloudy day.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9nn2lztk1uaf3d2o1_250\",\n    \"question\": \"what is the very cute girl showing?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38149\",\n    \"key\": \"2230\",\n    \"description\": \"a very cute girl is showing a beautiful dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqg0uj5LBQ1sn23iho1_400\",\n    \"question\": \"how many guys are shaking hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16184\",\n    \"key\": \"53029\",\n    \"description\": \"two guys are shaking hands and they wear black.\"\n  },\n  {\n    \"video_name\": \"tumblr_lxm746fURS1r8upkio1_r1_500\",\n    \"question\": \"what does the girl keep basketball?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18262\",\n    \"key\": \"91092\",\n    \"description\": \"a girl who has wings keeps basketball ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf2pkEfCK1ssgyoro1_400\",\n    \"question\": \"what is the goat being fed from a spoon?\",\n    \"answer\": \"butter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18759\",\n    \"key\": \"70176\",\n    \"description\": \"a goat is being fed peanut butter from a spoon.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngu3mzFpwr1tdjuqvo1_400\",\n    \"question\": \"how many dogs are playing with dolls in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26587\",\n    \"key\": \"67982\",\n    \"description\": \"two dogs are playing with dolls in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhelgy8a1k1u3sgaao1_250\",\n    \"question\": \"what is the color of the button?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1899\",\n    \"key\": \"73270\",\n    \"description\": \"a girl is showing a white button on her tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5wjxq0M31s71nvbo1_400\",\n    \"question\": \"how many men with fire ropes in their hands are fighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19963\",\n    \"key\": \"45240\",\n    \"description\": \"two men with fire ropes in their hands are fighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcolpASZD1sht3fmo1_250\",\n    \"question\": \"how many cats are laying behind apples while a third cat is sleeping?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7498\",\n    \"key\": \"68601\",\n    \"description\": \"two cats are laying behind apples while a third cat is sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndso8nSpZU1slj978o1_250\",\n    \"question\": \"what is sleeping and rubbing its eyes?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50663\",\n    \"key\": \"36754\",\n    \"description\": \"a ginger cat is sleeping and rubbing its eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebu2j0h941rssvv3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22678\",\n    \"key\": \"30886\",\n    \"description\": \"a girl with long brown hair has a gray long sleeve shirt on and pulls her hand away and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uwiaBHQw1qhd5lfo1_400\",\n    \"question\": \"what is jumping out of the window,\",\n    \"answer\": \"and it bounces off of a wall onto a table ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12124\",\n    \"key\": \"25666\",\n    \"description\": \"a cat is jumping out of a window,\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzlhp8DpG1tgouwlo1_500\",\n    \"question\": \"how many little puppies are mimicking the toy falling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35850\",\n    \"key\": \"38497\",\n    \"description\": \"two little puppies are mimicking the toy falling.\"\n  },\n  {\n    \"video_name\": \"tumblr_neupg2MUNK1qc41a1o1_1280\",\n    \"question\": \"how many men stand in the middle of a smokey forest scene?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2891\",\n    \"key\": \"94292\",\n    \"description\": \"five men stand in the middle of a smokey forest scene.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94ma8VGpr1qhd6ylo1_500\",\n    \"question\": \"how many men are looking at each other as they are moving on a vehicle?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14222\",\n    \"key\": \"48315\",\n    \"description\": \"two men are looking at each other as they are moving on a vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnvyjfAQdB1u4bltfo1_500\",\n    \"question\": \"how many ladies are walking together at the party?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13057\",\n    \"key\": \"66578\",\n    \"description\": \"two ladies are walking together at a party and a man grabs one of them in order to dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnn4qtnGxr1tek63jo1_500\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8536\",\n    \"key\": \"39140\",\n    \"description\": \"two men dressed in black looking rather unhappy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq8bvxG6q1sk0i2mo1_250\",\n    \"question\": \"how many men are wrestling each other in an arena?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17711\",\n    \"key\": \"55588\",\n    \"description\": \"two men are wrestling each other in an arena.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxifdb0gA1u08kkro1_400\",\n    \"question\": \"how many men are talking right before one screams out loud?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27911\",\n    \"key\": \"33753\",\n    \"description\": \"two men are talking right before one screams out loud.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdfc4Icvr1r1ga5qo1_400\",\n    \"question\": \"what is the young man playing and singing and smiling?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45156\",\n    \"key\": \"56612\",\n    \"description\": \"a young man is playing a guitar and singing and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9owcumLu21tiyxk9o1_400\",\n    \"question\": \"how many men are slamming themselves into the ground?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30384\",\n    \"key\": \"98117\",\n    \"description\": \"two men are slamming themselves into the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngws0aBHUj1slj978o1_400\",\n    \"question\": \"how many girls is wearing caps are trying to take a picture?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42759\",\n    \"key\": \"40615\",\n    \"description\": \"two girls wearing caps are trying to take a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp3ocPFJJ1upr5mso1_400\",\n    \"question\": \"how many men are laying down and putting their finger to their mouths?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10975\",\n    \"key\": \"65996\",\n    \"description\": \"two men are laying down and putting their finger to their mouths.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwri28wKr1tm3clao1_400\",\n    \"question\": \"what is crashing into the large metal block?\",\n    \"answer\": \"train\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32640\",\n    \"key\": \"27987\",\n    \"description\": \"the train is crashing into the large metal block.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyed3Aeob1urf1roo1_400\",\n    \"question\": \"where are the bunch of people singing while people are carrying the car.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3009\",\n    \"key\": \"56885\",\n    \"description\": \"a bunch of people are singing in a car while people are carrying the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1z6y9MoU1qgw2r7o1_400\",\n    \"question\": \"where are two girls having a conversation.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37444\",\n    \"key\": \"59922\",\n    \"description\": \"two girls are having a conversation in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9qsvK3cL1qzxt6io1_250\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48106\",\n    \"key\": \"77850\",\n    \"description\": \"a girl with a red sweatshirt is walking and talking and falls over a ramp.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezwgxkYSL1trp7kao1_500\",\n    \"question\": \"what do two guys with long blonde streaked hair throw and bounce?\",\n    \"answer\": \"balls\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44154\",\n    \"key\": \"38597\",\n    \"description\": \"two guys with long blonde streaked hair throw and bounce balls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nela0aVJkV1si2peso1_250\",\n    \"question\": \"what lies in the ball in the water?\",\n    \"answer\": \"hedgehog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13871\",\n    \"key\": \"53402\",\n    \"description\": \"an adorable hedgehog lies in a ball in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8u1hK4Ac1sh75jso1_250\",\n    \"question\": \"how many guys are posing for pictures together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37837\",\n    \"key\": \"1929\",\n    \"description\": \"three guys are posing for pictures together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc3f3YZyH1tbozp9o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36521\",\n    \"key\": \"10891\",\n    \"description\": \"a woman with long red hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nol17yj8DG1uvefqno1_500\",\n    \"question\": \"where is the band dancing.\",\n    \"answer\": \"? basement\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12721\",\n    \"key\": \"62017\",\n    \"description\": \"a band is dancing in a basement.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbstv7B4Ff1rf33qpo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41779\",\n    \"key\": \"74408\",\n    \"description\": \"a man wearing a white shirt is sitting bin a moving vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngum4iDEja1rp3ki0o1_250\",\n    \"question\": \"how many men are skating with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19196\",\n    \"key\": \"5300\",\n    \"description\": \"two men are skating with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_neybknCSaS1u0bmpoo1_400\",\n    \"question\": \"how many guitarists are playing and dancing in front of microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20874\",\n    \"key\": \"17773\",\n    \"description\": \"two guitarists are playing and dancing in front of microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5rzqybN61te5frpo1_1280\",\n    \"question\": \"how many men in suits are dancing on stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41783\",\n    \"key\": \"45922\",\n    \"description\": \"three men in suits are dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_neygedcDOt1tkhxdko1_400\",\n    \"question\": \"what nudges the lizard who then stops eating?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18268\",\n    \"key\": \"46613\",\n    \"description\": \"a cat nudges a lizard who then stops eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndg6jfOZY31rcwrblo1_400\",\n    \"question\": \"how many men are singing and spinning around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28873\",\n    \"key\": \"33496\",\n    \"description\": \"two men are singing and spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_njh449BVt81u29slho1_500\",\n    \"question\": \"where is the young girl adjusting her dark glasses.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5396\",\n    \"key\": \"87651\",\n    \"description\": \"a young girl in a car is adjusting her dark glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_mwoklkYUdg1sfrgdbo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2628\",\n    \"key\": \"52341\",\n    \"description\": \"a man with long black hair is shaking his head and moving forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hp20yyXi1ttuja3o1_400\",\n    \"question\": \"how many men with a horse mask are looking at each other and hi five?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26784\",\n    \"key\": \"65594\",\n    \"description\": \"two men with a horse mask are looking at each other and hi five.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mzyvftsL1the8uso1_400\",\n    \"question\": \"what is walking on the treadmill while watching food on a plate?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27539\",\n    \"key\": \"46051\",\n    \"description\": \"a cat is walking on a treadmill while watching food on a plate.\"\n  },\n  {\n    \"video_name\": \"tumblr_no64gpVd5j1t047qfo1_400\",\n    \"question\": \"where are people reading when a woman throws a book on the floor.\",\n    \"answer\": \"? library\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41180\",\n    \"key\": \"60556\",\n    \"description\": \"people are reading in a library when a woman throws a book on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc50ehFDSZ1tkpzw0o1_400\",\n    \"question\": \"what is jumping on the truck dropping something then runs and the thing it dropped explodes?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51196\",\n    \"key\": \"97524\",\n    \"description\": \"a dog is jumping on a truck dropping something then runs and the thing it dropped explodes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhfg2603rL1u5a5y1o1_400\",\n    \"question\": \"what is the man dunking a basketball but falls down?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7060\",\n    \"key\": \"79132\",\n    \"description\": \"a man is dunking a basketball but the machine falls down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhw74v6B9h1sk9xwto1_500\",\n    \"question\": \"what is talking and looks up?\",\n    \"answer\": \"eyeliner\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37052\",\n    \"key\": \"80167\",\n    \"description\": \"a man wearing eyeliner is talking and looks up.\"\n  },\n  {\n    \"video_name\": \"tumblr_neccfuJowv1t5z2hyo1_400\",\n    \"question\": \"what is the man closing?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43011\",\n    \"key\": \"33757\",\n    \"description\": \"a man closing a door while he 's smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2ar7n3F71u4v3ypo1_400\",\n    \"question\": \"what holds the beer and licks the can?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39912\",\n    \"key\": \"22058\",\n    \"description\": \"an orange cat holds a beer and licks the can.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7mk5Fq5U1u6d8xwo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8576\",\n    \"key\": \"13236\",\n    \"description\": \"a man with black hair speaks to someone with blond hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh97cpE0ME1u4v3ypo1_400\",\n    \"question\": \"what did the cat use?\",\n    \"answer\": \"paw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16352\",\n    \"key\": \"7646\",\n    \"description\": \"a cat used its paw to hit a bowl of beans.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqq5oq8jTh1sfwa6ho1_400\",\n    \"question\": \"how many man is having the fun?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13908\",\n    \"key\": \"4817\",\n    \"description\": \"two man having a fun and they look so happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ml7ilcuyQt1ql2bpeo1_500\",\n    \"question\": \"what are running through the shower of confetti in slow-motion?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16622\",\n    \"key\": \"99994\",\n    \"description\": \"dog are running through a shower of confetti in slow-motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhhmfoZ3lr1tx8mn0o1_400\",\n    \"question\": \"what is the man falling off after wrecking in the dirt?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51750\",\n    \"key\": \"55616\",\n    \"description\": \"a man is falling off his motorcycle after wrecking in the dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rkeb4Wyf1tbjfazo1_250\",\n    \"question\": \"what is stalking something on the floor?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48785\",\n    \"key\": \"92043\",\n    \"description\": \"the kitten is stalking something on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnsu0m0or1rig0zgo1_400\",\n    \"question\": \"what is the man lighting up?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48414\",\n    \"key\": \"34066\",\n    \"description\": \"a man is lighting up his cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_njadd2WUH61tkdho6o1_400\",\n    \"question\": \"where does the man throw a book behind him.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11257\",\n    \"key\": \"25138\",\n    \"description\": \"a man in a studio throws a book behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9uh8qGX91theax5o1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52993\",\n    \"key\": \"66410\",\n    \"description\": \"a man wearing a black jacket is holding his fingers to his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r3z1nrFa1ti3vtqo1_400\",\n    \"question\": \"how many while is the person doing a trick down backwards?\",\n    \"answer\": \"stairs\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30086\",\n    \"key\": \"88933\",\n    \"description\": \"a person is doing a trick down stairs while backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndtha3ANlJ1tqurn0o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24035\",\n    \"key\": \"9893\",\n    \"description\": \"a girl with long black hair flips it over her shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfjoeOSwk1r8pns9o1_400\",\n    \"question\": \"what is chewing on the plastic bag instead of its food?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8204\",\n    \"key\": \"16662\",\n    \"description\": \"a cat is chewing on a plastic bag instead of its food.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2meimXrD1slwrsuo1_250\",\n    \"question\": \"what is playing in the snow?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1316\",\n    \"key\": \"35720\",\n    \"description\": \"the cat is playing in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd00a2dHuw1ryusrfo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41449\",\n    \"key\": \"29961\",\n    \"description\": \"a man wearing an orange hat is flexing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq3ur8qv41unykvpo1_400\",\n    \"question\": \"what is the color of the fox?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2442\",\n    \"key\": \"46132\",\n    \"description\": \"a brown fox is jumping into the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy1c2EugU1u3ufkwo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42995\",\n    \"key\": \"71063\",\n    \"description\": \"a young black man is showing his little finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndi825xKE51u0jh8co1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13118\",\n    \"key\": \"63392\",\n    \"description\": \"a woman with long black braided hair is glaring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhskwbxgar1rseg36o1_250\",\n    \"question\": \"what is the color of the bowl?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27391\",\n    \"key\": \"3286\",\n    \"description\": \"an empty red dog bowl disappears under the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakevodx4L1s1txlxo1_400\",\n    \"question\": \"what is the young woman cuddling?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38578\",\n    \"key\": \"32762\",\n    \"description\": \"a young woman is cuddling her cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfglqfDg3L1u1lt1go1_400\",\n    \"question\": \"where is the man holding a conversation with another man.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39064\",\n    \"key\": \"61054\",\n    \"description\": \"a man in a race car is holding a conversation with another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rex42OdN1rtdvdvo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18992\",\n    \"key\": \"69293\",\n    \"description\": \"a man with a blue shirt catches a catfish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7o1juY5G1tm4jv9o1_250\",\n    \"question\": \"what are boxing in a ring?\",\n    \"answer\": \"boxers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13270\",\n    \"key\": \"23498\",\n    \"description\": \"the boxers are boxing in a ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1slkO3ZM1s8jkazo1_250\",\n    \"question\": \"what is the color of the looks?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42019\",\n    \"key\": \"25524\",\n    \"description\": \"a woman puts on a black jacket and a woman in white looks around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4l35ZHWA1sht3fmo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46739\",\n    \"key\": \"25271\",\n    \"description\": \"two officers are arresting a black man on the side of the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nez3xrdHf41tos9avo1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28629\",\n    \"key\": \"82804\",\n    \"description\": \"a woman dressed in black is filing her nails.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqo62WkUz1u38y0ao1_500\",\n    \"question\": \"how many similarly dressed men are speaking into microphones before pointing at each other and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7571\",\n    \"key\": \"78143\",\n    \"description\": \"two similarly dressed men are speaking into microphones before pointing at each other and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqscoi71bd1upirrro1_500\",\n    \"question\": \"how many young man side by side are talking about something then looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36989\",\n    \"key\": \"57842\",\n    \"description\": \"two young man side by side are talking about something then looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nre0r7j8Cd1r9n1lyo1_400\",\n    \"question\": \"how many people are playing guitar on stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16828\",\n    \"key\": \"16346\",\n    \"description\": \"three people are playing guitar on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfuxdjqNq1sn0bdyo1_500\",\n    \"question\": \"how many guys are on stage laughing at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16852\",\n    \"key\": \"85407\",\n    \"description\": \"two guys are on stage laughing at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_naly48pXks1t3eui8o1_500\",\n    \"question\": \"how many men are stood performing the song?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45273\",\n    \"key\": \"2542\",\n    \"description\": \"two men are stood performing a song.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqtbeGRwd1tmrlzco1_400\",\n    \"question\": \"what starts to hump the little girls leg and she runs out of the room?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14724\",\n    \"key\": \"19492\",\n    \"description\": \"the dog starts to hump the little girls leg and she runs out of the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzrykxVoi1u5bwv8o1_500\",\n    \"question\": \"what is the color of the boys?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8691\",\n    \"key\": \"65459\",\n    \"description\": \"three boys in white are singing and dancing on a lighted stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_neylu1tP051swonpwo1_500\",\n    \"question\": \"where is the girl doing a funny expression.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4332\",\n    \"key\": \"70974\",\n    \"description\": \"a girl is doing a funny expression in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9rdfabh31slj978o1_250\",\n    \"question\": \"what is the man,\",\n    \"answer\": \"wearing , is waving his hand ? shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36139\",\n    \"key\": \"24340\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8znm5WZag1rr3ks0o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1727\",\n    \"key\": \"44906\",\n    \"description\": \"a man dressed in black is moving his hands in front of flashing lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx9eiAV6R1tfs6x6o1_250\",\n    \"question\": \"what is the hand placing into a woman 's mouth?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30838\",\n    \"key\": \"67714\",\n    \"description\": \"a hand is placing a cigarette into a woman 's mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzhkq39Nz1twdzc1o1_250\",\n    \"question\": \"what jumps to the door latch,\",\n    \"answer\": \"opens the door , and the cat and four dogs enter the building through the door ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27759\",\n    \"key\": \"8947\",\n    \"description\": \"a cat jumps to a door latch,\"\n  },\n  {\n    \"video_name\": \"tumblr_nacqlmg29U1sn53c3o1_500\",\n    \"question\": \"where are the man and a girl hugging.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26791\",\n    \"key\": \"76786\",\n    \"description\": \"a man and a girl are hugging in a kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4pc6U2ib1rmvdlro1_400\",\n    \"question\": \"what is the bird catching from the water?\",\n    \"answer\": \"right\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39944\",\n    \"key\": \"31969\",\n    \"description\": \"a bird is catching a fish right from the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuk1huMBo1unlpflo1_400\",\n    \"question\": \"where is the cute dog sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26794\",\n    \"key\": \"63604\",\n    \"description\": \"the cute dog is sitting in the chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr1ueQn9z1t5lviko1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2946\",\n    \"key\": \"27112\",\n    \"description\": \"a man in blue coat is running and stopped.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlwyy9St4p1tjqvkeo1_250\",\n    \"question\": \"what is sleeping on top of a lizard?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5994\",\n    \"key\": \"36683\",\n    \"description\": \"a cat is sleeping on top of a lizard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevu1x7R4F1tzeksuo1_400\",\n    \"question\": \"where are two men sitting.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28553\",\n    \"key\": \"67414\",\n    \"description\": \"two men are sitting in a moving car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nki1ahTcY11sxjf4ho1_400\",\n    \"question\": \"how many people are holding each other and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15502\",\n    \"key\": \"34681\",\n    \"description\": \"these two people are holding each other and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfao2nqkHJ1sslh00o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30\",\n    \"key\": \"61636\",\n    \"description\": \"a teenager wearing a white shirt turns around and speaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngn0ttCSb51svos5ho1_400\",\n    \"question\": \"how many friends are arm wrestling on a green couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3770\",\n    \"key\": \"36865\",\n    \"description\": \"two friends are arm wrestling on a green couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nanwiiF2PH1srp6ljo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48332\",\n    \"key\": \"97586\",\n    \"description\": \"a handsome man with a black shirt is standing on the crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay0kzAbkR1twcgnlo1_400\",\n    \"question\": \"how many people are climbing stairs?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17138\",\n    \"key\": \"27538\",\n    \"description\": \"three people are climbing stairs and two of them are wearing hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_npxdqeQDlj1rndm3wo1_400\",\n    \"question\": \"how many men is wearing a suit with dark hair gesticulate?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2622\",\n    \"key\": \"82713\",\n    \"description\": \"four men wearing a suit with dark hair gesticulate.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngmnfpKAs41u3y59to1_250\",\n    \"question\": \"how many person in a room are dancing a song?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35117\",\n    \"key\": \"34592\",\n    \"description\": \"two person in a room are dancing a song.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqd1emIDJp1so7p3zo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16391\",\n    \"key\": \"41210\",\n    \"description\": \"a white man with black hair is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9buvpXnDu1rhs3x9o1_400\",\n    \"question\": \"how many young persons are performing the dark parade?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26886\",\n    \"key\": \"58024\",\n    \"description\": \"two young persons are performing a dark parade.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1f6dC53y1u5g7vro1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1258\",\n    \"key\": \"46794\",\n    \"description\": \"a white woman with black glasses and a black shirt is moving her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjox4Klua1uwrqzco1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13647\",\n    \"key\": \"28629\",\n    \"description\": \"a boy with brown hair is singing for a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9op5Q2rg1unyhx2o1_400\",\n    \"question\": \"how many cars are driving with one in the front and one in the back?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35662\",\n    \"key\": \"78234\",\n    \"description\": \"the two cars are driving with one in the front and one in the back.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxca0P4Bi1tdmffyo1_250\",\n    \"question\": \"where does the woman scream then grabs her head.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50574\",\n    \"key\": \"46324\",\n    \"description\": \"a woman in a mirror screams then grabs her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_noq334cIjl1uw7253o1_400\",\n    \"question\": \"what did the man catch?\",\n    \"answer\": \"cake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13805\",\n    \"key\": \"85509\",\n    \"description\": \"a man caught the cake that is falling from the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8hkl5Vn171tgetb4o1_250\",\n    \"question\": \"what is the cat drinking something and is biting her?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45387\",\n    \"key\": \"27225\",\n    \"description\": \"a cat is drinking something and a dog is biting her.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngrlu3nb1T1u0sggco1_500\",\n    \"question\": \"how many guys is this standing under an umbrella and talking to someone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24663\",\n    \"key\": \"93562\",\n    \"description\": \"this is two guys standing under an umbrella and talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfkf6PEqV1u287g3o1_500\",\n    \"question\": \"what is the man playing and holding?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36314\",\n    \"key\": \"34368\",\n    \"description\": \"a man is playing and holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngx8i4P8R61rdm91ko1_400\",\n    \"question\": \"what is the woman with a white shirt hugging?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2397\",\n    \"key\": \"32373\",\n    \"description\": \"a woman with a white shirt is hugging a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd38eemAiK1ttd1wro1_400\",\n    \"question\": \"where is the man dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20998\",\n    \"key\": \"55764\",\n    \"description\": \"a man is dancing fast in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw21g7QP51tmcb1ho1_500\",\n    \"question\": \"what is the man singing and falls off his head?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43729\",\n    \"key\": \"61641\",\n    \"description\": \"a man is singing and his hat falls off his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr583sbl9h1uasmbpo1_250\",\n    \"question\": \"what are two men holding and talking to each other?\",\n    \"answer\": \"flashlights\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37000\",\n    \"key\": \"49822\",\n    \"description\": \"two men are holding flashlights and talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ptmsvc1I1th4an4o1_500\",\n    \"question\": \"what is the boy wearing suit holding?\",\n    \"answer\": \"pet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25621\",\n    \"key\": \"69752\",\n    \"description\": \"a boy wearing suit is holding his pet.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mxo7lBDU1ttpy61o1_250\",\n    \"question\": \"what is the man wearing an orange shirt is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5918\",\n    \"key\": \"10604\",\n    \"description\": \"a man wearing an orange shirt is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwfpv91tK1uyo4nfo1_500\",\n    \"question\": \"how many elephants play music in an open field?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41606\",\n    \"key\": \"61661\",\n    \"description\": \"four elephants play music in an open field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesksmxUsA1rdfljoo1_500\",\n    \"question\": \"what is cutting off another vehicle?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35236\",\n    \"key\": \"76053\",\n    \"description\": \"a vehicle is cutting off another vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq78pQzfO1qzo3n9o1_500\",\n    \"question\": \"what is the man wearing sunglasses carries?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8706\",\n    \"key\": \"59958\",\n    \"description\": \"a man wearing sunglasses carries a stuffed panda bear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9mfgbbZH1shbho8o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41873\",\n    \"key\": \"68954\",\n    \"description\": \"a woman in a gray shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9o6mgHR5z1qarzako1_400\",\n    \"question\": \"where is the lady smiling and waving.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18361\",\n    \"key\": \"17506\",\n    \"description\": \"a lady is smiling and waving in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1q71Yuov1u1xquho1_500\",\n    \"question\": \"what is the boy holding out and also eating it?\",\n    \"answer\": \"pastry\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34583\",\n    \"key\": \"88088\",\n    \"description\": \"a boy is holding out a pastry and also eating it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpvh9ebBo1r7tnfno1_500\",\n    \"question\": \"what is getting frightened by the jack in a box?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45570\",\n    \"key\": \"47623\",\n    \"description\": \"a dog is getting frightened by a jack in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_no95meGFVR1uuv7imo1_400\",\n    \"question\": \"what speeds up to catch up to another car,\",\n    \"answer\": \"but then the trailing car is shown a weapon and the car falls back ? car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1407\",\n    \"key\": \"39488\",\n    \"description\": \"a car speeds up to catch up to another car,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u2swNpQV1qe2thio1_500\",\n    \"question\": \"what is running around in the dark?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13194\",\n    \"key\": \"73413\",\n    \"description\": \"a horse is running around in the dark.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqy7nuWJKL1sgulfgo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27338\",\n    \"key\": \"82122\",\n    \"description\": \"girl with brown hair is talking,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uqttYJz61rwiud9o1_400\",\n    \"question\": \"how many people are doing the ballet dance on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26792\",\n    \"key\": \"20999\",\n    \"description\": \"two people are doing a ballet dance on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njnzf3XbEh1r9dv8go1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26666\",\n    \"key\": \"23600\",\n    \"description\": \"a man with dark hair is kissing a woman with light,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne12dpfUWZ1rbkthoo1_400\",\n    \"question\": \"what does the man dance and wears?\",\n    \"answer\": \"tuxedo\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19306\",\n    \"key\": \"13174\",\n    \"description\": \"a man dances and wears a tuxedo.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9pfyci2Hk1tx8mn0o1_400\",\n    \"question\": \"what is driving down the road,\",\n    \"answer\": \"begins to flip over and over ? car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6931\",\n    \"key\": \"63217\",\n    \"description\": \"a car driving down the road,\"\n  },\n  {\n    \"video_name\": \"tumblr_nklw8b3eSg1tq4wu3o4_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43696\",\n    \"key\": \"77068\",\n    \"description\": \"the woman in the gray dress turns and walks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnx2foZwmV1tpg4boo1_250\",\n    \"question\": \"what is curiously playing with an owl and pokes it in the face?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25422\",\n    \"key\": \"50694\",\n    \"description\": \"a cat is curiously playing with an owl and pokes it in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwecrQwp81uy65puo1_500\",\n    \"question\": \"what is the man wearing black sings and plays?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50070\",\n    \"key\": \"85845\",\n    \"description\": \"a man wearing black sings and plays the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz16vtohx1tmhwpbo1_400\",\n    \"question\": \"what is the young man with long hair wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50212\",\n    \"key\": \"42438\",\n    \"description\": \"a young man with long hair is wearing a hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xazkoKve1tzsy9xo2_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18182\",\n    \"key\": \"1615\",\n    \"description\": \"a man in a blue shirt is singing and dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb19n3as2p1spr0qzo1_500\",\n    \"question\": \"what is the man pulling aside while talking on a radio?\",\n    \"answer\": \"curtain\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49105\",\n    \"key\": \"72826\",\n    \"description\": \"a man is pulling aside a curtain while talking on a radio.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyb2pcEGb1tlmquvo1_400\",\n    \"question\": \"what is the dog sniffing?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36571\",\n    \"key\": \"83456\",\n    \"description\": \"a dog is sniffing a tennis ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9ztnMJ2s1ti8b6yo1_500\",\n    \"question\": \"how many young well dressed men are posing for something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50907\",\n    \"key\": \"26328\",\n    \"description\": \"two young well dressed men are posing for something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffu3gBCBO1s71sn6o1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20645\",\n    \"key\": \"63548\",\n    \"description\": \"a man wearing a black suit and sat at a table has a plate of spaghetti tipped over his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtjxp216t1rkak8mo1_500\",\n    \"question\": \"what is the man getting off of an elevator and shooting?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2098\",\n    \"key\": \"14818\",\n    \"description\": \"a man is getting off of an elevator and shooting a bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpfbiRxhh1taqkiao1_500\",\n    \"question\": \"what is the color of the blanket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12459\",\n    \"key\": \"40287\",\n    \"description\": \"a woman wrapped in a white blanket was singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxb1prPSe1trrwb4o1_400\",\n    \"question\": \"what is man throwing at another man?\",\n    \"answer\": \"fork\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47637\",\n    \"key\": \"86581\",\n    \"description\": \"man is throwing a pitch fork at another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nep4b0pXnK1u26rdio1_500\",\n    \"question\": \"what does the man do with a fence?\",\n    \"answer\": \"trick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46245\",\n    \"key\": \"57888\",\n    \"description\": \"a man does a bike trick with a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazb3hJkDh1rf0qrxo1_400\",\n    \"question\": \"how many women are laughing together over the card?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34929\",\n    \"key\": \"59669\",\n    \"description\": \"two women are laughing together over a card.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqa0w4T6e1u7c3syo1_250\",\n    \"question\": \"how many topless men say something at each other as one of them walks by?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37875\",\n    \"key\": \"90930\",\n    \"description\": \"two topless men say something at each other as one of them walks by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczmk3kCg81u06q6wo1_400\",\n    \"question\": \"how many woman make faces and laugh with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48452\",\n    \"key\": \"30869\",\n    \"description\": \"two woman make faces and laugh with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba6uwDJXc1tat768o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9305\",\n    \"key\": \"8874\",\n    \"description\": \"a man wearing a white shirt is dancing underneath bright lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf56f9mTiv1u3akejo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11171\",\n    \"key\": \"82219\",\n    \"description\": \"the buy with the black jacket and black hair is singing with passion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0uk6lrdI1raliteo1_400\",\n    \"question\": \"how many cars spin out while going around the curve?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38422\",\n    \"key\": \"79250\",\n    \"description\": \"two cars spin out while going around a curve.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav0bbGnOb1snbe4ao1_400\",\n    \"question\": \"what is the man looking forwards and another man holds?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21063\",\n    \"key\": \"65875\",\n    \"description\": \"a man is looking forwards and another man holds a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng7we3c0mA1qkbcjgo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45051\",\n    \"key\": \"3195\",\n    \"description\": \"a person wearing a red top and holding a tennis racket is shaking their hips.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9m54cPuul1s7u6edo1_500\",\n    \"question\": \"where does the man stretch around.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30231\",\n    \"key\": \"81840\",\n    \"description\": \"a man stretches around in his bed before waking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkj564CLrz1u7s4oro1_400\",\n    \"question\": \"what did the man pour all over himself?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49599\",\n    \"key\": \"41105\",\n    \"description\": \"a man poured a drink all over himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_njs6ceesFH1tll6f9o1_400\",\n    \"question\": \"what is the bald man in makeup screaming and playing,\",\n    \"answer\": \"he looks away ? guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5727\",\n    \"key\": \"67344\",\n    \"description\": \"a bald man in makeup is screaming and playing guitar,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyo5jIXCe1tk9tvao1_500\",\n    \"question\": \"what does the young man reduce?\",\n    \"answer\": \"roof\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33549\",\n    \"key\": \"80171\",\n    \"description\": \"a young man reduces black electric arm roof.\"\n  },\n  {\n    \"video_name\": \"tumblr_najaxvpaHO1tc98tio1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18357\",\n    \"key\": \"727\",\n    \"description\": \"this image is of a woman in a purple shirt dancing by herself.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrhi6GShl1s28ej9o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12962\",\n    \"key\": \"62663\",\n    \"description\": \"a dancer in a long white ballet dress is performing pirouettes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc260rtUoT1t2v6v7o1_250\",\n    \"question\": \"what are sitting together with eyes open?\",\n    \"answer\": \"mice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16901\",\n    \"key\": \"2350\",\n    \"description\": \"the mice are sitting together with eyes open.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7badeW1R1uaavsyo1_500\",\n    \"question\": \"what is the guy wearing and drinking a beer?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20676\",\n    \"key\": \"73284\",\n    \"description\": \"a guy is wearing sunglasses and drinking a beer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9h3dC7Wb1u6bdo9o1_400\",\n    \"question\": \"where are three people dancing.\",\n    \"answer\": \"? restroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA470\",\n    \"key\": \"54185\",\n    \"description\": \"three people are dancing together in the restroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb669dto3V1sqr1umo1_500\",\n    \"question\": \"what is the color of the mat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42809\",\n    \"key\": \"80078\",\n    \"description\": \"a gymnast wears red and does several flips on a blue mat in front of an audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjubkFVUp1sorauco1_400\",\n    \"question\": \"how many men sit together in the dark while wearing headphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18714\",\n    \"key\": \"94513\",\n    \"description\": \"two men sit together in the dark while wearing headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc37dloqbL1rq5x90o1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12297\",\n    \"key\": \"17468\",\n    \"description\": \"a woman is smoking and wearing black clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq5e3s3tS1tkkgpso1_500\",\n    \"question\": \"where is the man checking out his appearance.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA128\",\n    \"key\": \"49408\",\n    \"description\": \"a man is checking out his appearance in a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay1v5Pvpi1qg0cppo1_250\",\n    \"question\": \"what nibbles on some food and disappears into a hole?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38148\",\n    \"key\": \"19061\",\n    \"description\": \"a fish nibbles on some food and disappears into a hole.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9427c7gK51te8576o1_500\",\n    \"question\": \"what is the man driving and talking or singing?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20028\",\n    \"key\": \"99045\",\n    \"description\": \"a man is driving a car and talking or singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk25aqnmAB1u33e4bo1_500\",\n    \"question\": \"how many women hug as the knight walks away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4188\",\n    \"key\": \"71276\",\n    \"description\": \"two women hug as a knight walks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7o1juY5G1tm4jv9o1_250\",\n    \"question\": \"how many men is this image of in shorts fighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37360\",\n    \"key\": \"23498\",\n    \"description\": \"this image is of two men in shorts fighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wivmGs4P1sc3yqlo1_250\",\n    \"question\": \"what fell asleep suddenly on the couch?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1716\",\n    \"key\": \"41061\",\n    \"description\": \"cat fell asleep suddenly on the couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbl9upHHOv1rqr9fgo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16648\",\n    \"key\": \"44271\",\n    \"description\": \"an older guy speaks to another man who is wearing a blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4zg8XziB1tclwv6o1_100\",\n    \"question\": \"what is the blonde girl standing and blowing?\",\n    \"answer\": \"bubble\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44510\",\n    \"key\": \"17155\",\n    \"description\": \"a blonde girl is standing and blowing a bubble.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkm1nnj4Wi1u7dd45o1_250\",\n    \"question\": \"what is the guy making?\",\n    \"answer\": \"face\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15024\",\n    \"key\": \"5932\",\n    \"description\": \"a guy is making a rabbit face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbplrtZnS81tbjfazo1_400\",\n    \"question\": \"what is swimming inside of the tank?\",\n    \"answer\": \"shark\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28185\",\n    \"key\": \"41760\",\n    \"description\": \"a shark is swimming inside of a tank.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvuy6gtIQ1u9fb2po1_250\",\n    \"question\": \"what sits with another dog and howls?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30857\",\n    \"key\": \"36656\",\n    \"description\": \"a brown dog sits with another dog and howls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nai6yrCMc21tikvlso1_250\",\n    \"question\": \"where does the fat ginger cat recline.\",\n    \"answer\": \"? armchair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4979\",\n    \"key\": \"30763\",\n    \"description\": \"a fat ginger cat reclines in an armchair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nawj17CSHS1tkt0dwo1_250\",\n    \"question\": \"how many men are doing the twist dance simultaneously?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49754\",\n    \"key\": \"6706\",\n    \"description\": \"two men are doing a twist dance simultaneously.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezd8smQVJ1tmefd5o1_250\",\n    \"question\": \"what is the man in a blue shirt twirling?\",\n    \"answer\": \"umbrella\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46672\",\n    \"key\": \"252\",\n    \"description\": \"a man in a blue shirt is twirling an umbrella.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngh82hywbz1s4yzawo1_400\",\n    \"question\": \"what is the color of the bus?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38367\",\n    \"key\": \"9181\",\n    \"description\": \"three boys in leather jackets ride a red bus.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbe1zfc8PP1tkras0o1_500\",\n    \"question\": \"what is the color of the scores?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15787\",\n    \"key\": \"62556\",\n    \"description\": \"a player dressed in white scores a goal in an ice hockey match.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpvh9ebBo1r7tnfno1_500\",\n    \"question\": \"where does the jack pop and scares a small dog,\",\n    \"answer\": \"who jumps away . ? box\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3189\",\n    \"key\": \"47623\",\n    \"description\": \"a jack in the box pops and scares a small dog,\"\n  },\n  {\n    \"video_name\": \"tumblr_npno7hrxMQ1uy0616o1_r1_400\",\n    \"question\": \"what is the man in a withe suit eating?\",\n    \"answer\": \"cookie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6187\",\n    \"key\": \"38009\",\n    \"description\": \"a man in a withe suit is eating cookie.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvyypTKbV1uo3x7lo1_400\",\n    \"question\": \"how many people are sitting in the car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10966\",\n    \"key\": \"87486\",\n    \"description\": \"two people are sitting in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cko3DzkV1t9xq5ho1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33657\",\n    \"key\": \"33545\",\n    \"description\": \"a woman in a black dress is dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0sftU2oI1sgc1txo1_400\",\n    \"question\": \"what is looking up?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16749\",\n    \"key\": \"1442\",\n    \"description\": \"a small brown dog is looking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrmv0Ds3t1tc97obo1_500\",\n    \"question\": \"where is the guy holding a dog while running and screaming.\",\n    \"answer\": \"? rag\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46466\",\n    \"key\": \"71433\",\n    \"description\": \"a guy in a black dew rag is holding a dog while running and screaming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3v70H86R1r3ic5yo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16754\",\n    \"key\": \"61566\",\n    \"description\": \"a man dressed in black is rapping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2mzb98AK1tkpzw0o1_400\",\n    \"question\": \"what is the dolphin painting with its mouth?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45256\",\n    \"key\": \"21285\",\n    \"description\": \"a dolphin is painting a picture with its mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8hkl5Vn171tgetb4o1_250\",\n    \"question\": \"what is playing with the cat who is eating?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48181\",\n    \"key\": \"27225\",\n    \"description\": \"a cute dog is playing with a cat who is eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam5vurNJs1qzq1wdo1_250\",\n    \"question\": \"how many people are holding each other and one kisses the other person?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31436\",\n    \"key\": \"1445\",\n    \"description\": \"two people are holding each other and one kisses the other person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5yquethl1rcl2ewo1_1280\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23625\",\n    \"key\": \"82834\",\n    \"description\": \"a black man in suit is singing and entertaining the people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr39gaCvZn1uybeupo1_400\",\n    \"question\": \"what is the color of the ocean?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18754\",\n    \"key\": \"85471\",\n    \"description\": \"two girls are having fun in the blue ocean.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcrueGce81tx8mn0o1_400\",\n    \"question\": \"what hits another car and causes it to spin around?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15869\",\n    \"key\": \"82134\",\n    \"description\": \"a car hits another car and causes it to spin around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngost8GMhb1t5gkiuo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48987\",\n    \"key\": \"3059\",\n    \"description\": \"a woman in red hair sips her drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncnrq6JtWW1tsq66oo1_500\",\n    \"question\": \"what is the young man taking off?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10598\",\n    \"key\": \"90856\",\n    \"description\": \"a young man is taking off his sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1mufq2Ab1sico5po1_250\",\n    \"question\": \"what is the man,\",\n    \"answer\": \"wearing , talks and raises on eyebrow ? headband\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52026\",\n    \"key\": \"6051\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6et7xaK01tx791go1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11393\",\n    \"key\": \"2153\",\n    \"description\": \"a man dressed in black puts his left hand into his pocket.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndaot5SytE1tuzzkvo1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33605\",\n    \"key\": \"32733\",\n    \"description\": \"a guy with dark hair puts on a black ball cap backwards and fixes his collar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nddq9zmcQL1tmp9jpo1_500\",\n    \"question\": \"where is the person stood up.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44306\",\n    \"key\": \"85009\",\n    \"description\": \"a person is stood up in a room alone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd59g8nitC1qjpmwio1_500\",\n    \"question\": \"where is the cat biting some.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15398\",\n    \"key\": \"43150\",\n    \"description\": \"a cat is biting some in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx12yL0PW1r6pekco1_250\",\n    \"question\": \"how many men are embracing as the crowd watches?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41155\",\n    \"key\": \"19311\",\n    \"description\": \"two men are embracing as a crowd watches.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqaqp0wsgy1tpg4boo1_400\",\n    \"question\": \"what is the color of the sheets?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16007\",\n    \"key\": \"74024\",\n    \"description\": \"a kitten is yawning as it lays between two white sheets.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbss3cYIpi1sgwg9go1_400\",\n    \"question\": \"how many men walked into an office?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8567\",\n    \"key\": \"45435\",\n    \"description\": \"the two men walked into an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqyaxfZfv1ry1ioco2_500\",\n    \"question\": \"what is the color of the underneath?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24480\",\n    \"key\": \"97316\",\n    \"description\": \"a man in a red vest with a white shirt underneath is smoking a cigar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3ayu9QTp1u5u404o1_400\",\n    \"question\": \"what is he riding along the wall of a stairwell?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52966\",\n    \"key\": \"61039\",\n    \"description\": \"he is riding his bike along the wall of a stairwell.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbdq1Bpfa1so39joo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30430\",\n    \"key\": \"43468\",\n    \"description\": \"a woman wearing a white shirt is watering a cactus with an elephant shaped can.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2gpfzSk21tk2ngvo1_250\",\n    \"question\": \"what is sitting on the towel and another rabbit is running in circles?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33743\",\n    \"key\": \"13592\",\n    \"description\": \"a rabbit is sitting on a towel and another rabbit is running in circles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq82kjUdyZ1rqv2y0o1_400\",\n    \"question\": \"how many soccer players are fist bumping each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3850\",\n    \"key\": \"46828\",\n    \"description\": \"two soccer players are fist bumping each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcotwcexW1u1teqeo1_400\",\n    \"question\": \"where does the man drum a beat and dances danced.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3623\",\n    \"key\": \"8581\",\n    \"description\": \"a man drums a beat and dances danced in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3sk8Rk081u8orsuo1_250\",\n    \"question\": \"what is running and sliding across ice?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7218\",\n    \"key\": \"36559\",\n    \"description\": \"a young polar bear is running and sliding across ice.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrgprzOCNt1ua2xwko1_250\",\n    \"question\": \"what is getting kicked into the goal?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47060\",\n    \"key\": \"90417\",\n    \"description\": \"a soccer ball is getting kicked into the goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrexu1YS0E1uz06r7o1_400\",\n    \"question\": \"what is being pushed on the floor?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49167\",\n    \"key\": \"16261\",\n    \"description\": \"a dog is being pushed on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nch7clLs5L1tmllzbo1_250\",\n    \"question\": \"what is the young doctor entering through a door?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25389\",\n    \"key\": \"47113\",\n    \"description\": \"a young doctor is entering a room through a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_naa11tbBvx1tebyg2o1_400\",\n    \"question\": \"where are two man dancing.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44153\",\n    \"key\": \"62578\",\n    \"description\": \"two man are dancing in bed together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnqliX1Xy1tgwlf5o1_500\",\n    \"question\": \"how many men with glasses of beer in their hands touch them together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33904\",\n    \"key\": \"77595\",\n    \"description\": \"two men with glasses of beer in their hands touch them together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko0d0GuMv1s8hdzqo7_250\",\n    \"question\": \"where does the cartoon character look around.\",\n    \"answer\": \"? cloak\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33453\",\n    \"key\": \"51290\",\n    \"description\": \"a cartoon character in a hooded cloak looks around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtqa26yvr1tjhld9o1_400\",\n    \"question\": \"what is playing with the white kitten?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18141\",\n    \"key\": \"19224\",\n    \"description\": \"a dog is playing with a white kitten.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpp9wHoQd1sq7kg0o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41889\",\n    \"key\": \"36184\",\n    \"description\": \"a man in a white shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njdegqHsrc1unoxe4o1_250\",\n    \"question\": \"what is licking the woman 's face?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46194\",\n    \"key\": \"15245\",\n    \"description\": \"a dog is licking a woman 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam1c5I1j61tdjuqvo1_400\",\n    \"question\": \"what hits the back of a car,\",\n    \"answer\": \"then the rider lands on top ? motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33994\",\n    \"key\": \"46061\",\n    \"description\": \"a motorcycle hits the back of a car,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1ae8GExo1tkkgpso1_400\",\n    \"question\": \"what is the color of the hamster?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21366\",\n    \"key\": \"22827\",\n    \"description\": \"a white hamster is sitting in two hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkns7cDp5D1swk6pzo6_250\",\n    \"question\": \"how many girls are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2849\",\n    \"key\": \"41204\",\n    \"description\": \"two girls are talking to each other and one is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2eksOOna1smdw0io1_400\",\n    \"question\": \"what is licking the girl in her face?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6969\",\n    \"key\": \"28461\",\n    \"description\": \"a black dog is licking a girl in her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnvqr0CYdX1qek1oqo1_540\",\n    \"question\": \"what is the man playing in front of a crowd?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28668\",\n    \"key\": \"93641\",\n    \"description\": \"a man is playing his guitar in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqy0wwLGsd1tl934lo1_250\",\n    \"question\": \"how many men are trying to high five but misses?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA551\",\n    \"key\": \"51764\",\n    \"description\": \"two men are trying to high five but misses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqm6cyy9v01uyse67o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47259\",\n    \"key\": \"87339\",\n    \"description\": \"a guy with white hair is moving his eyes down.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwegtvbzZ1u9u0ofo1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30437\",\n    \"key\": \"31860\",\n    \"description\": \"a person in a red shirt is spinning on his head with his legs spread.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncih67bNUL1smlaa6o1_250\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20643\",\n    \"key\": \"96458\",\n    \"description\": \"a person in purple clothes is heading toward a mountain.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngjv0nLZVq1rehrt3o1_500\",\n    \"question\": \"how many girls smiled?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10289\",\n    \"key\": \"90525\",\n    \"description\": \"two girls smiled and then a girl danced around.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxpitJ4Nf1ssppoho1_250\",\n    \"question\": \"what is the young girl chasing?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48549\",\n    \"key\": \"51436\",\n    \"description\": \"a young girl is chasing a butterfly.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvyypTKbV1uo3x7lo1_400\",\n    \"question\": \"where are the man and woman sitting.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37632\",\n    \"key\": \"87486\",\n    \"description\": \"a man and woman are sitting in a car together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcdx0zvW21t1tf12o1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36029\",\n    \"key\": \"79153\",\n    \"description\": \"a man in red t-shirt is singing holding a mic in his right hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9o0vbrAQf1qedx60o1_500\",\n    \"question\": \"what is the young oriental person strumming and watching someone who is pointing at the guitar?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7602\",\n    \"key\": \"94470\",\n    \"description\": \"a young oriental person is strumming a guitar and watching someone who is pointing at the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobxqkQ9G11tpg4boo1_250\",\n    \"question\": \"what puts his paws on a screen?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43897\",\n    \"key\": \"22695\",\n    \"description\": \"the cat puts his paws on a screen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfl2gcItVI1tl3ivmo1_500\",\n    \"question\": \"how many young boys with glasses are eating pizza?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44842\",\n    \"key\": \"95859\",\n    \"description\": \"two young boys with glasses are eating pizza.\"\n  },\n  {\n    \"video_name\": \"tumblr_njb0ljx8qq1u92e13o1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA547\",\n    \"key\": \"47045\",\n    \"description\": \"a young black woman with long hair is looking pensive.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncclh5CTka1th986vo1_400\",\n    \"question\": \"what taillights shine red in the darkness?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28707\",\n    \"key\": \"3350\",\n    \"description\": \"a cars taillights shine red in the darkness.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnl9ypbvvF1usyjg5o1_500\",\n    \"question\": \"what is the man twisting steering around?\",\n    \"answer\": \"wheel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1501\",\n    \"key\": \"59362\",\n    \"description\": \"a man is twisting a steering wheel around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmuiozIZa1u6k7wlo1_400\",\n    \"question\": \"where is the man walking around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19421\",\n    \"key\": \"14574\",\n    \"description\": \"a man is walking around in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0dca3y0r1u8ogblo1_500\",\n    \"question\": \"how many guys are showing from feet to heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41689\",\n    \"key\": \"97415\",\n    \"description\": \"two guys are showing from feet to heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbu0bmRkFb1tya5iuo1_500\",\n    \"question\": \"what is spinning around making dust on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3267\",\n    \"key\": \"71634\",\n    \"description\": \"a gold car is spinning around making dust on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl24faq4tH1uo8kgzo1_500\",\n    \"question\": \"how many friends are talking on top of a very tall roof?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14994\",\n    \"key\": \"81844\",\n    \"description\": \"two friends are talking on top of a very tall roof.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvj8l4kcT1uq7zwjo1_400\",\n    \"question\": \"what is the bearded man wearing glasses is hugging?\",\n    \"answer\": \"toys\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45824\",\n    \"key\": \"63226\",\n    \"description\": \"a bearded man wearing glasses is hugging two plushy soft toys.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96ushKsHQ1rktim0o1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12732\",\n    \"key\": \"28886\",\n    \"description\": \"a woman in green with short black hair is signing using sign language.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9emuzqIhv1sk96t7o1_400\",\n    \"question\": \"what is the snake chasing?\",\n    \"answer\": \"mouse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8849\",\n    \"key\": \"42486\",\n    \"description\": \"the snake is chasing the white mouse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2ceoBbcE1uot1e7o1_400\",\n    \"question\": \"what around then walks away?\",\n    \"answer\": \"turns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44750\",\n    \"key\": \"64822\",\n    \"description\": \"a man turns around then walks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6hjfQRmk1tyafo7o1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49545\",\n    \"key\": \"85849\",\n    \"description\": \"a man wearing a white fur coat and with tattoos is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf78d4nUie1u08opmo1_250\",\n    \"question\": \"what is the color of the suite?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48985\",\n    \"key\": \"6461\",\n    \"description\": \"people with blue suite is moving head and hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nofh1qIEXw1tfnm8co1_400\",\n    \"question\": \"what does the cat chase thrown by a toy that walked toward it?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27324\",\n    \"key\": \"37950\",\n    \"description\": \"a cat chases a fake fish thrown by a toy that walked toward it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nct52sYe2r1u0sv5po1_500\",\n    \"question\": \"how many men try to high five?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8494\",\n    \"key\": \"95749\",\n    \"description\": \"two men try to high five and their hands miss.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxgho5NhF1ta4f2po1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36790\",\n    \"key\": \"76782\",\n    \"description\": \"a young man with black hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqq12FqgR1u0rv50o1_500\",\n    \"question\": \"what is the color of the mask?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38201\",\n    \"key\": \"75994\",\n    \"description\": \"a man wearing a white mask and black clothing is drinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmidu9wwmu1urnbuuo1_250\",\n    \"question\": \"how many men is wearing black coats,\",\n    \"answer\": \"are talking to each other ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44852\",\n    \"key\": \"84514\",\n    \"description\": \"two men wearing black coats,\"\n  },\n  {\n    \"video_name\": \"tumblr_na7fsb2EGT1tirmpjo1_500\",\n    \"question\": \"what is the guy wearing a suit is smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19815\",\n    \"key\": \"36074\",\n    \"description\": \"a guy wearing a suit is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzyd2qp8B1t4dymjo1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36133\",\n    \"key\": \"28739\",\n    \"description\": \"a woman wearing a white t-shirt is shaking her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0khmXlwt1t7hjz2o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51163\",\n    \"key\": \"27110\",\n    \"description\": \"a brown and white cat lies on an ironing board while receiving a massage from a guy wearing a blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rldadoip1twznkvo1_250\",\n    \"question\": \"what is receiving the banana?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18887\",\n    \"key\": \"41985\",\n    \"description\": \"a baby elephant is receiving a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh90mv4OUV1u5g7cbo1_500\",\n    \"question\": \"what is the young boy stopping and turning around?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18017\",\n    \"key\": \"97835\",\n    \"description\": \"a young boy is stopping his car and turning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguvutkldj1rs0i14o1_400\",\n    \"question\": \"what are running around on the person 's shoulder?\",\n    \"answer\": \"rats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29919\",\n    \"key\": \"46819\",\n    \"description\": \"two rats are running around on a person 's shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtjb7U3aq1u5fjsuo1_500\",\n    \"question\": \"how many girls are singing and dancing on stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44678\",\n    \"key\": \"92397\",\n    \"description\": \"three girls are singing and dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5xfmyhJn1romov5o1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30660\",\n    \"key\": \"73928\",\n    \"description\": \"a man wearing black clothing is having fun with a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs3d4Hye11tb92v8o1_400\",\n    \"question\": \"what is the boy playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18626\",\n    \"key\": \"59364\",\n    \"description\": \"a boy is playing guitar while other boys are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p0i1XkpA1tizlzoo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47905\",\n    \"key\": \"91365\",\n    \"description\": \"a boy on stage takes off his purple hat and shakes his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_no5orm7PbC1u91nf3o1_500\",\n    \"question\": \"what is the young man sitting in a car holds up?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45112\",\n    \"key\": \"93254\",\n    \"description\": \"a young man sitting in a car holds his phone up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nga6l7burm1u2umgdo1_400\",\n    \"question\": \"what is the woman with dyed red hair stroking?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31487\",\n    \"key\": \"30690\",\n    \"description\": \"a woman with dyed red hair is stroking a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rmaa7zrF1trm2z1o1_250\",\n    \"question\": \"how many guy is pointing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33709\",\n    \"key\": \"27282\",\n    \"description\": \"one guy is pointing and the blond guy is moving his eyebrows up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_njr6h2kNOi1rkcbb8o1_400\",\n    \"question\": \"what is the boy with dark shirt showing off?\",\n    \"answer\": \"necklace\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17432\",\n    \"key\": \"691\",\n    \"description\": \"a boy with dark shirt is showing off his necklace.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hmg4UEOf1thtos8o1_400\",\n    \"question\": \"how many dark haired girls are standing and making gestures?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38107\",\n    \"key\": \"33561\",\n    \"description\": \"two dark haired girls are standing and making gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabhgxpYfE1tjaic7o1_r1_400\",\n    \"question\": \"where does the guy jump and kicks a ball.\",\n    \"answer\": \"? road\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44174\",\n    \"key\": \"26368\",\n    \"description\": \"a guy jumps and kicks a ball in the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncpf71w8u61tm3xzzo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22329\",\n    \"key\": \"71590\",\n    \"description\": \"a young boy in a blue shirt is sleeping on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpp9aIKCk1tuoc50o1_400\",\n    \"question\": \"what is the black car spinning and causing a lot of dust?\",\n    \"answer\": \"tires\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49633\",\n    \"key\": \"39490\",\n    \"description\": \"the black car is spinning its back tires and causing a lot of dust.\"\n  },\n  {\n    \"video_name\": \"tumblr_nap0e8yhmD1scq7eko1_250\",\n    \"question\": \"what falls off of the tiny couch and rolls over?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44919\",\n    \"key\": \"47281\",\n    \"description\": \"a puppy falls off of a tiny couch and rolls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng3gmzTe6F1qlnl24o1_400\",\n    \"question\": \"how many guys make the hand signal in the air?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29480\",\n    \"key\": \"44882\",\n    \"description\": \"three guys make a hand signal in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hmg4UEOf1thtos8o1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27050\",\n    \"key\": \"33561\",\n    \"description\": \"two girls wearing black clothing are talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8hdgB5OO1slj978o1_400\",\n    \"question\": \"what are two dogs chasing while dragging a young boy?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50512\",\n    \"key\": \"92423\",\n    \"description\": \"two dogs are chasing a ball while dragging a young boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96iz1D0NJ1qgmxzoo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47971\",\n    \"key\": \"60467\",\n    \"description\": \"a man with green hair laughed and danced on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6n02JOCF1tkifulo1_400\",\n    \"question\": \"what is the man holding to his ear?\",\n    \"answer\": \"telephone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1817\",\n    \"key\": \"72339\",\n    \"description\": \"a man is holding a telephone to his ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_natftdaDTB1rwc3zyo1_400\",\n    \"question\": \"how many wrestlers are competing in the ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39374\",\n    \"key\": \"25651\",\n    \"description\": \"two wrestlers are competing in a ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdgwaJUcv1tc19umo1_400\",\n    \"question\": \"how many men are laughing in front of a computer?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36472\",\n    \"key\": \"38005\",\n    \"description\": \"two men are laughing in front of a computer.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8k3m3Omi1tmemc1o1_250\",\n    \"question\": \"what is the color of the cup?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25022\",\n    \"key\": \"15943\",\n    \"description\": \"a woman takes a black cup and drinks out of it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5y7kffb81tg2dlwo1_400\",\n    \"question\": \"what is the man smoking and blowing the smoke out of his nose?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52365\",\n    \"key\": \"12761\",\n    \"description\": \"a man is smoking a cigarette and blowing the smoke out of his nose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbl3qsGZRT1s7cqs5o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18795\",\n    \"key\": \"233\",\n    \"description\": \"a guy with a blue shirt crosses his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_no19cefILe1un7qbto1_400\",\n    \"question\": \"what is scared by the fake tarantula?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA71\",\n    \"key\": \"37818\",\n    \"description\": \"a cat is scared by a fake tarantula.\"\n  },\n  {\n    \"video_name\": \"tumblr_no18ffxNDq1tpg4boo1_400\",\n    \"question\": \"what is playing with the baby 's arm?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51497\",\n    \"key\": \"34561\",\n    \"description\": \"the cat is playing with the baby 's arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepdv7f0qN1s0566ao1_1280\",\n    \"question\": \"how many males are sitting on the curb?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35496\",\n    \"key\": \"94729\",\n    \"description\": \"the five males are sitting on the curb.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq60huObBd1tk2ngvo1_400\",\n    \"question\": \"what is falling off the firetruck they are riding on?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30257\",\n    \"key\": \"15603\",\n    \"description\": \"a cat is falling off a firetruck they are riding on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nollsdsfZs1sm6bgxo1_400\",\n    \"question\": \"what is licking the window pane?\",\n    \"answer\": \"pug\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2774\",\n    \"key\": \"31771\",\n    \"description\": \"a cream pug is licking a window pane.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tm6jPJCb1t2wqhqo1_500\",\n    \"question\": \"what is this man sucking and walking down the street?\",\n    \"answer\": \"lollipop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15755\",\n    \"key\": \"101221\",\n    \"description\": \"this man is sucking a lollipop and walking down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwzuum2ZL1uo2vcso1_500\",\n    \"question\": \"what is being poured onto the stack of pancakes?\",\n    \"answer\": \"syrup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50429\",\n    \"key\": \"66772\",\n    \"description\": \"syrup is being poured onto a stack of pancakes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbf741ongs1spn5deo1_400\",\n    \"question\": \"what is the color of the flame?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33953\",\n    \"key\": \"24465\",\n    \"description\": \"a blue flame slowly travels inside a jar until it is extinguished.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8s1tUL2H1trp7kao1_500\",\n    \"question\": \"how many people stop playing guitar and look ahead?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47547\",\n    \"key\": \"26600\",\n    \"description\": \"two people stop playing guitar and look ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rldadoip1twznkvo1_250\",\n    \"question\": \"what did the baby elephant eat?\",\n    \"answer\": \"bananas\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34310\",\n    \"key\": \"41985\",\n    \"description\": \"the baby elephant ate the two bananas.\"\n  },\n  {\n    \"video_name\": \"tumblr_neot4s0EBL1s2ls31o1_400\",\n    \"question\": \"what is the color of the backdrop?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30940\",\n    \"key\": \"32047\",\n    \"description\": \"a clear insect is on a black backdrop.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndzmhiHo1X1tdmffyo1_250\",\n    \"question\": \"what is pointing to the map and talking?\",\n    \"answer\": \"woman\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42403\",\n    \"key\": \"18486\",\n    \"description\": \"a female anchor woman is pointing to a map and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezwxeSAOH1u0z49so1_500\",\n    \"question\": \"how many singers perform on stage and look at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4895\",\n    \"key\": \"95964\",\n    \"description\": \"two singers perform on stage and look at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmidu9wwmu1urnbuuo1_250\",\n    \"question\": \"what is the color of the coats?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13232\",\n    \"key\": \"84514\",\n    \"description\": \"two men wearing black coats,\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2qlbUIlP1ttgu7yo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34798\",\n    \"key\": \"12426\",\n    \"description\": \"a man in a red jacket is dancing backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsabwaZow1qiwatvo1_250\",\n    \"question\": \"where is the girl laying and a man walks away.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52180\",\n    \"key\": \"70411\",\n    \"description\": \"a girl is laying in a bed and a man walks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nal4phaW6f1ti0272o1_500\",\n    \"question\": \"what is turning the page of a book for a girl?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA664\",\n    \"key\": \"94261\",\n    \"description\": \"a cat is turning a page of a book for a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9b7fuvZcB1thc5tio1_250\",\n    \"question\": \"how many women are kissing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4284\",\n    \"key\": \"45636\",\n    \"description\": \"two women are kissing,\"\n  },\n  {\n    \"video_name\": \"tumblr_n91vygXxvR1skzoijo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2202\",\n    \"key\": \"21222\",\n    \"description\": \"a boy wearing a white shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfoe8oymgx1tt3dbuo1_250\",\n    \"question\": \"what does this show doing a rope climbing exercise?\",\n    \"answer\": \"user\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16635\",\n    \"key\": \"72031\",\n    \"description\": \"this shows a male gym user doing a rope climbing exercise.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfhy9iq4a1tj3r8so1_500\",\n    \"question\": \"what is the guy wearing black clothing,\",\n    \"answer\": \"stops and gets in ? taxi\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10905\",\n    \"key\": \"87985\",\n    \"description\": \"a guy wearing black clothing,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xoi33thn1tuoukno1_250\",\n    \"question\": \"how many boys is wearing black pants were laughing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29547\",\n    \"key\": \"13455\",\n    \"description\": \"two boys wearing black pants were laughing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4kuuZpVa1rlngqxo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3725\",\n    \"key\": \"62540\",\n    \"description\": \"a man wearing a red hat and earphones is using a computer.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9cdkxspS1s90mmno1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20709\",\n    \"key\": \"53558\",\n    \"description\": \"a man in a black suit is creeping across a porch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nca7t61SCR1tmu5ofo1_500\",\n    \"question\": \"what is the man with dark hair unfolding?\",\n    \"answer\": \"cane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32216\",\n    \"key\": \"35588\",\n    \"description\": \"a man with dark hair is unfolding a cane.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7t5vzyxn1s8a8w8o1_400\",\n    \"question\": \"what is the man in sunglasses playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8722\",\n    \"key\": \"63065\",\n    \"description\": \"a man in sunglasses is playing the guitar while someone sings beside him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne30n9fzMt1tpkltho1_250\",\n    \"question\": \"what is the woman holding and surrounded by smoke?\",\n    \"answer\": \"rope\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24421\",\n    \"key\": \"46325\",\n    \"description\": \"a woman is holding a rope and surrounded by smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5xkfbVPQ1tsmc92o1_400\",\n    \"question\": \"what is the black haired woman wearing?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40355\",\n    \"key\": \"50561\",\n    \"description\": \"a black haired woman is wearing white sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_npgic1jBgU1utmlppo1_500\",\n    \"question\": \"what is the girl with dark hair washing?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12535\",\n    \"key\": \"97357\",\n    \"description\": \"a girl with dark hair is washing a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8b7fU5a11s0svh1o1_500\",\n    \"question\": \"what is the man petting?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45778\",\n    \"key\": \"60230\",\n    \"description\": \"a man is petting a tiny cat as something hits the cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1xg89xFX1sdbrm9o1_400\",\n    \"question\": \"how many men in a band are performing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8489\",\n    \"key\": \"66371\",\n    \"description\": \"two men in a band are performing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafbe4YHCY1tyuwrso1_500\",\n    \"question\": \"how many young men is wearing black vests are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33565\",\n    \"key\": \"101490\",\n    \"description\": \"two young men wearing black vests are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9le1merj21s5t0x8o1_400\",\n    \"question\": \"how many men walk together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25232\",\n    \"key\": \"45266\",\n    \"description\": \"two men walk together,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9t8801hEM1qc5bc7o1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17295\",\n    \"key\": \"74344\",\n    \"description\": \"a man and a woman are riding a black horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0odbifZp1tihaueo1_250\",\n    \"question\": \"what are boxing each other?\",\n    \"answer\": \"rats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9994\",\n    \"key\": \"18445\",\n    \"description\": \"two adorable rats are boxing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wtxekbRV1s6f9ago1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42202\",\n    \"key\": \"71312\",\n    \"description\": \"a woman is tipping her black hat at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nap9tkwsHK1s50jqco1_250\",\n    \"question\": \"what is an animal riding on top of a robot and wearing?\",\n    \"answer\": \"costume\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25046\",\n    \"key\": \"50841\",\n    \"description\": \"an animal is riding on top of a robot and wearing a costume.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjiylGWRL1tlsqhto1_250\",\n    \"question\": \"what is one boy playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37422\",\n    \"key\": \"91085\",\n    \"description\": \"one boy is playing guitar while his friend is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nchcsb5jYa1tz9jaqo1_250\",\n    \"question\": \"how many guys are staring off into the distance?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32157\",\n    \"key\": \"7935\",\n    \"description\": \"two guys are staring off into the distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0mb2u6OI1taix0oo1_400\",\n    \"question\": \"how many boys are looking out the window of a train?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26142\",\n    \"key\": \"59232\",\n    \"description\": \"two boys are looking out the window of a train.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxn5rSldv1u9pp05o1_400\",\n    \"question\": \"what is the young person biting?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34096\",\n    \"key\": \"9461\",\n    \"description\": \"a young person is biting a white hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_np1qhvy9Kv1sg8vg6o1_500\",\n    \"question\": \"what escapes the cage by squeezing through the bars?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34745\",\n    \"key\": \"66732\",\n    \"description\": \"a rabbit escapes the cage by squeezing through the bars.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexxo9P8Co1tibg2uo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49236\",\n    \"key\": \"34931\",\n    \"description\": \"a man in a beige shirt is jumping into the arms of a man in a red shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhh45qypGS1tjhld9o1_250\",\n    \"question\": \"what plays with another huge cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51616\",\n    \"key\": \"25179\",\n    \"description\": \"a cat plays with another huge cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_na09f2go3u1qkrfyno1_500\",\n    \"question\": \"where is the woman rubbing drugs on her gums from the fingers of a man.\",\n    \"answer\": \"? theater\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40595\",\n    \"key\": \"100378\",\n    \"description\": \"a woman in a theater is rubbing drugs on her gums from the fingers of a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4g5y5FmJ1r8h6u4o1_500\",\n    \"question\": \"how many men are fighting on the sidewalk?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39928\",\n    \"key\": \"97142\",\n    \"description\": \"two men are fighting on a sidewalk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbld3tfp061sj9i7fo1_500\",\n    \"question\": \"what is the man laughing and holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48651\",\n    \"key\": \"85779\",\n    \"description\": \"the man is laughing and holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_mgo1kl7MLM1qe2thio1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3961\",\n    \"key\": \"94323\",\n    \"description\": \"a white horse jumps and pFRAMEQAares to fall.\"\n  },\n  {\n    \"video_name\": \"tumblr_npycjy1sgd1tfeyjso1_400\",\n    \"question\": \"how many men are talking to each other using microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30361\",\n    \"key\": \"35175\",\n    \"description\": \"two men are talking to each other using microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y6tmnuQd1r5japgo1_400\",\n    \"question\": \"how many men are standing and talking together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28955\",\n    \"key\": \"66394\",\n    \"description\": \"the two men are standing and talking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb5t3kRi9k1tkslcoo1_400\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23730\",\n    \"key\": \"23918\",\n    \"description\": \"a dark haired woman with dark hair and red lipstick makes a disgusted face and turns to walk away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nambqoJbYC1tz9jaqo1_250\",\n    \"question\": \"what is the young man holding?\",\n    \"answer\": \"bucket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24587\",\n    \"key\": \"13301\",\n    \"description\": \"a young man is holding a blue bucket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1z6y9MoU1qgw2r7o1_400\",\n    \"question\": \"how many girls are talking in the hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21877\",\n    \"key\": \"59922\",\n    \"description\": \"two girls are talking in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh40cqYid51s6zpepo1_250\",\n    \"question\": \"what is the color of the kitten?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33382\",\n    \"key\": \"2329\",\n    \"description\": \"a white kitten is playing with baubles on a christmas tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclfo70sVI1tg2jndo1_250\",\n    \"question\": \"how many teenagers are on stage talking into a microphone?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33283\",\n    \"key\": \"165\",\n    \"description\": \"four teenagers are on stage talking into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl25w2m2ln1qilpy6o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47498\",\n    \"key\": \"40149\",\n    \"description\": \"a guy with brown hair wears a suit and walks while chewing and then smirks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4e6y37661qzm8mpo1_250\",\n    \"question\": \"what does the man with long dark hair lick slowly?\",\n    \"answer\": \"popsicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27065\",\n    \"key\": \"35503\",\n    \"description\": \"a man with long dark hair licks a red popsicle slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vlr7Y0CU1sed105o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40339\",\n    \"key\": \"69826\",\n    \"description\": \"a girl with black dress is singing in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbdow0oY81tb2kgho1_400\",\n    \"question\": \"what is the color of the nail?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37876\",\n    \"key\": \"96428\",\n    \"description\": \"a person has long orange finger nails with one black finger nail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2ttxGRQJ1sy4yl3o1_400\",\n    \"question\": \"how many guys are standing out by the pool?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29588\",\n    \"key\": \"88236\",\n    \"description\": \"five guys are standing out by a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf87a1ENfb1u25ovvo1_400\",\n    \"question\": \"what is driving down the street in the rain?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12028\",\n    \"key\": \"63565\",\n    \"description\": \"a car is driving down a street in the rain.\"\n  },\n  {\n    \"video_name\": \"tumblr_njocvnKcFO1tifehbo1_400\",\n    \"question\": \"how many boys stare at each other in front of lockers?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22746\",\n    \"key\": \"55408\",\n    \"description\": \"two boys stare at each other in front of lockers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nec7jpgXtw1s71nvbo1_400\",\n    \"question\": \"what engage in strange mating behavior with the male dancing?\",\n    \"answer\": \"birds\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20994\",\n    \"key\": \"27462\",\n    \"description\": \"two birds engage in strange mating behavior with the male dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nal4phaW6f1ti0272o1_500\",\n    \"question\": \"what is the lady reading a book and is turning the pages?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32404\",\n    \"key\": \"94261\",\n    \"description\": \"a lady is reading a book and her cat is turning the pages.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjba06VKF1sh76iyo1_400\",\n    \"question\": \"where is the young man jumping and dancing.\",\n    \"answer\": \"? tent\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22366\",\n    \"key\": \"29331\",\n    \"description\": \"a young man is jumping and dancing in a tent.\"\n  },\n  {\n    \"video_name\": \"tumblr_nep8u5gYPM1sixr68o1_400\",\n    \"question\": \"what is the girl wearing sunglasses and holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1820\",\n    \"key\": \"25027\",\n    \"description\": \"a girl is wearing sunglasses and holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi5pz1OK01twoivuo1_250\",\n    \"question\": \"how many people danced crazily and fell over the railing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17413\",\n    \"key\": \"417\",\n    \"description\": \"two people danced crazily and fell over a railing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirebdaFNu1rzaapno1_500\",\n    \"question\": \"how many young men are having the discussion while seated?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8999\",\n    \"key\": \"87200\",\n    \"description\": \"two young men are having a discussion while seated.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrjfnzGT41rhyrx7o1_250\",\n    \"question\": \"what is the man opening and acting surprised?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23851\",\n    \"key\": \"23090\",\n    \"description\": \"a man is opening a door and acting surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_niylzkzVR11u9zc8lo1_500\",\n    \"question\": \"what is the woman taking off and a man is smoking?\",\n    \"answer\": \"helmet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49611\",\n    \"key\": \"100671\",\n    \"description\": \"a woman is taking off her helmet and a man is smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8jkjOdOl1tozyi0o1_400\",\n    \"question\": \"where is the piece of bread dough expanding.\",\n    \"answer\": \"? oven\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33388\",\n    \"key\": \"75245\",\n    \"description\": \"a piece of bread dough is expanding in an oven.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7ys7Apj91t8s5t0o1_540\",\n    \"question\": \"how many men sit in the semi-circle while a timer counts down?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21233\",\n    \"key\": \"81259\",\n    \"description\": \"five men sit in a semi-circle while a timer counts down,\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzmf2VB71u25ovvo1_400\",\n    \"question\": \"what is the white car moving down passing streetlights and trees?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29398\",\n    \"key\": \"63494\",\n    \"description\": \"a white car is moving down a road passing streetlights and trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_no4lrfJC0h1uuu6ydo1_250\",\n    \"question\": \"what is the young handsome guy with black hat chewing while walking on the street?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31311\",\n    \"key\": \"352\",\n    \"description\": \"a young handsome guy with black hat is chewing gum while walking on the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjfm8LunL1tlv2g2o1_400\",\n    \"question\": \"what jumped with its head in a box and rolled over the ground with its head in the box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7594\",\n    \"key\": \"78926\",\n    \"description\": \"a cat jumped with its head in a box and rolled over the ground with its head in the box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3cvnawGP1tkgy96o1_400\",\n    \"question\": \"how many women hugged one cried and the other laughed?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33285\",\n    \"key\": \"38899\",\n    \"description\": \"two women hugged one cried and the other laughed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzmf2VB71u25ovvo1_400\",\n    \"question\": \"what is driving down the tree lined street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36651\",\n    \"key\": \"63494\",\n    \"description\": \"a white car is driving down a tree lined street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh1n39LnjR1sgwg9go1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30509\",\n    \"key\": \"39074\",\n    \"description\": \"a man in a gray jacket turns his head and starts talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf43yk0Urg1rxhelho1_250\",\n    \"question\": \"how many people is dancing are holding each other on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1277\",\n    \"key\": \"81509\",\n    \"description\": \"two people dancing are holding each other on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n985jc2Wyr1sj2zt0o1_400\",\n    \"question\": \"what is the brown hamster eating?\",\n    \"answer\": \"carrot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31233\",\n    \"key\": \"33712\",\n    \"description\": \"a brown hamster is eating a carrot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtbhyWjrF1twsxdzo1_400\",\n    \"question\": \"what are two men in a car playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37871\",\n    \"key\": \"78772\",\n    \"description\": \"two men in a car are playing air drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmuusmxvU1tvjj7co1_500\",\n    \"question\": \"what was put into the gun,\",\n    \"answer\": \"and the fired a shot ? flower\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17798\",\n    \"key\": \"60637\",\n    \"description\": \"the flower was put into the gun,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk550nmZNP1u8uroco1_400\",\n    \"question\": \"what is the color of the bear?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19848\",\n    \"key\": \"52678\",\n    \"description\": \"a red panda bear is rolling around in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsj1j0D7F1teapyzo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23810\",\n    \"key\": \"17651\",\n    \"description\": \"a woman in a white dress and black top is sitting down with her legs crossed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo3fs3Gfn1qdfgy3o1_500\",\n    \"question\": \"what turns around the corner of a race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44204\",\n    \"key\": \"60504\",\n    \"description\": \"a blue car turns around the corner of a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndumiurqqk1rt9tego1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25261\",\n    \"key\": \"24602\",\n    \"description\": \"a white man with red short is surfing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dbhb1w9h1rmmz60o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17347\",\n    \"key\": \"73530\",\n    \"description\": \"a beautiful woman in a white dress is turning her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezif0sqIP1rriuwto1_400\",\n    \"question\": \"what is the young woman fixing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46155\",\n    \"key\": \"30043\",\n    \"description\": \"the young woman is fixing her hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97ntjwFce1qaeqj9o1_250\",\n    \"question\": \"where are the man and woman riding and spitting a ping pong ball back and forth at each other.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33843\",\n    \"key\": \"43796\",\n    \"description\": \"a man and woman are riding in a car and spitting a ping pong ball back and forth at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncd7y4jTWE1tmt2yao1_500\",\n    \"question\": \"how many people are standing next to each other than kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26743\",\n    \"key\": \"65232\",\n    \"description\": \"two people are standing next to each other than kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs5zds8og1rozqomo1_400\",\n    \"question\": \"what is the long-haired model wearing and walking?\",\n    \"answer\": \"orange\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36937\",\n    \"key\": \"6322\",\n    \"description\": \"a long-haired model is wearing orange and walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjtdvdsMt1sdiz3bo1_400\",\n    \"question\": \"what is the white man making in a room?\",\n    \"answer\": \"steps\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20538\",\n    \"key\": \"33402\",\n    \"description\": \"a white man is making a dance steps in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6fj3GHOF1ti42h0o1_250\",\n    \"question\": \"how many men one holding a guitar are hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2275\",\n    \"key\": \"50962\",\n    \"description\": \"two men one holding a guitar are hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_niuspkh0pL1u8dv8eo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31428\",\n    \"key\": \"35476\",\n    \"description\": \"a young black man is talking to a young woman wearing a red shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hakp4Wd51smtg6no1_400\",\n    \"question\": \"what is the fog covering in the forest?\",\n    \"answer\": \"trees\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35272\",\n    \"key\": \"80843\",\n    \"description\": \"a fog is covering the trees in the forest.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbn4vdgXnz1tz9jaqo1_400\",\n    \"question\": \"what is the soccer player doing spins moves and keeping from the other team?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15021\",\n    \"key\": \"82365\",\n    \"description\": \"a soccer player is doing spins moves and keeping the ball from the other team.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqouq3KQKB1ut6dhgo1_400\",\n    \"question\": \"what is the man playing on stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18614\",\n    \"key\": \"77342\",\n    \"description\": \"the man is playing his guitar on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzlgndUk11u2r7xso1_400\",\n    \"question\": \"how many men is sitting on a couch raise their hands at the same time?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10895\",\n    \"key\": \"81271\",\n    \"description\": \"three men sitting on a couch raise their hands at the same time.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2j9ov5zN1u4v3ypo1_250\",\n    \"question\": \"what climbs the bunk bed ladder to the top bunk?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39398\",\n    \"key\": \"155\",\n    \"description\": \"a kitten climbs a bunk bed ladder to the top bunk.\"\n  },\n  {\n    \"video_name\": \"tumblr_neunn9Mwuk1tdbjcro1_400\",\n    \"question\": \"how many girls are all smiling and blowing kisses?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48440\",\n    \"key\": \"31826\",\n    \"description\": \"three girls are all smiling and blowing kisses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngz2gcvCxw1rtdnfto1_400\",\n    \"question\": \"what are thrown multiple times?\",\n    \"answer\": \"dice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10673\",\n    \"key\": \"28359\",\n    \"description\": \"three colorful dice are thrown multiple times.\"\n  },\n  {\n    \"video_name\": \"tumblr_nec1h2hsBk1rlqu38o1_500\",\n    \"question\": \"where is the witch riding.\",\n    \"answer\": \"? broom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9056\",\n    \"key\": \"40075\",\n    \"description\": \"a witch is riding in her flying broom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhfwv7PrzZ1t9xf20o1_500\",\n    \"question\": \"where is the man pouring alcohol and catching it on fire.\",\n    \"answer\": \"? pan\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26723\",\n    \"key\": \"13671\",\n    \"description\": \"a man is pouring alcohol in a pan and catching it on fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_mkhcuwQp2k1rk3evro1_500\",\n    \"question\": \"how many topless girls kiss and one makes a face?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31110\",\n    \"key\": \"36906\",\n    \"description\": \"two topless girls kiss and one makes a face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrg5j1pWNg1ub2dj4o1_250\",\n    \"question\": \"how many thumbs does the guy with pink hair do up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43931\",\n    \"key\": \"9053\",\n    \"description\": \"a guy with pink hair does two thumbs up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfokkyTDI41qf3bxio1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3937\",\n    \"key\": \"78723\",\n    \"description\": \"a girl with a white dress is singing while a man with black clothes is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y3xs3vHi1tj3auuo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31058\",\n    \"key\": \"22404\",\n    \"description\": \"a boy with short brown hair danced with a little girl who wears pink while smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdf8ua9mH1u76jino1_400\",\n    \"question\": \"what is wiggling its tail underneath a curtain?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28086\",\n    \"key\": \"15090\",\n    \"description\": \"a cat is wiggling its tail underneath a curtain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkcbwoUZuk1s30fcoo1_540\",\n    \"question\": \"what does the footballer stop going out of play?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2908\",\n    \"key\": \"91908\",\n    \"description\": \"a footballer stops a ball going out of play.\"\n  },\n  {\n    \"video_name\": \"tumblr_naa1bnUBXR1rfd0pgo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38966\",\n    \"key\": \"18986\",\n    \"description\": \"a black man in sunglasses looks around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91v0cmZja1qfees0o1_400\",\n    \"question\": \"what is the man with black jacket waving?\",\n    \"answer\": \"scarf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46415\",\n    \"key\": \"78689\",\n    \"description\": \"a man with black jacket is waving a black scarf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9knh1M1X1u9xtf5o1_400\",\n    \"question\": \"what is the guy dancing and holding?\",\n    \"answer\": \"gift\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31052\",\n    \"key\": \"2486\",\n    \"description\": \"a guy is dancing and holding a wrapped gift.\"\n  },\n  {\n    \"video_name\": \"tumblr_najmw24iuw1qlo2n6o1_400\",\n    \"question\": \"where are three boys doing stupid things.\",\n    \"answer\": \"? store\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13011\",\n    \"key\": \"20067\",\n    \"description\": \"three boys are doing stupid things in a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvltpG4Cf1rdvg51o1_400\",\n    \"question\": \"how many lovers are singing aloud inside the car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5366\",\n    \"key\": \"57433\",\n    \"description\": \"two lovers are singing aloud inside a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nre9qqQRxE1uzud0co2_400\",\n    \"question\": \"how many beautiful women are singing and dancing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14490\",\n    \"key\": \"64114\",\n    \"description\": \"two beautiful women are singing and dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_naw7y7BnjT1rjhjgno1_250\",\n    \"question\": \"what is this image of a woman in blue taking off slowly?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6527\",\n    \"key\": \"4317\",\n    \"description\": \"this image is of a woman in blue taking her jacket off slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_naee5xFlr41tjf814o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51083\",\n    \"key\": \"26399\",\n    \"description\": \"a woman with long brown hair is talking and holding up two fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo1yyTZnj1qjatdbo1_500\",\n    \"question\": \"how many girls lay on the boat while a man sings?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1794\",\n    \"key\": \"59890\",\n    \"description\": \"two girls lay on a boat while a man sings.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvt4xtqsW1u30he7o1_400\",\n    \"question\": \"how many men are arguing and making faces at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3451\",\n    \"key\": \"89355\",\n    \"description\": \"two men are arguing and making faces at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4wp15M1R1sht3fmo1_250\",\n    \"question\": \"what is the person cutting into the shell of a watermelon?\",\n    \"answer\": \"design\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16766\",\n    \"key\": \"73936\",\n    \"description\": \"a person is cutting a flower design into the shell of a watermelon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nce30kjLYV1qfsrsoo1_500\",\n    \"question\": \"what is the girl eating?\",\n    \"answer\": \"berries\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41904\",\n    \"key\": \"49170\",\n    \"description\": \"a girl is eating some red berries.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9affceDKc1s4niibo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29227\",\n    \"key\": \"31390\",\n    \"description\": \"all three of the girls have long black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqbwismBUN1txc44no1_400\",\n    \"question\": \"how many women on the couch are having a conversation?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11746\",\n    \"key\": \"64155\",\n    \"description\": \"two women on the couch are having a conversation.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnl9ypbvvF1usyjg5o1_500\",\n    \"question\": \"what is the man spinning on a large valve?\",\n    \"answer\": \"wheel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8900\",\n    \"key\": \"59362\",\n    \"description\": \"a man is spinning a steel wheel on a large valve.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr6w5vugtC1tfn8dso1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5010\",\n    \"key\": \"79205\",\n    \"description\": \"a man in a red shirt is riding a skateboard down the curvy road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ywk5HGpS1rs9keno1_500\",\n    \"question\": \"how many men stand nose to nose and one laughs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11702\",\n    \"key\": \"72189\",\n    \"description\": \"two men stand nose to nose and one laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo4rh80wh1slj978o1_500\",\n    \"question\": \"what comes to the surface of the water beside a bird?\",\n    \"answer\": \"hippopotamus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12370\",\n    \"key\": \"85914\",\n    \"description\": \"a hippopotamus comes to the surface of the water beside a bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd2k27sveM1r3cqi5o1_250\",\n    \"question\": \"what is the person with a sweater using?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51472\",\n    \"key\": \"1025\",\n    \"description\": \"a person with a sweater is using a mask to scare a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndab1nCacB1rjh61io1_400\",\n    \"question\": \"what is the color of the kitten?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8338\",\n    \"key\": \"37279\",\n    \"description\": \"a woman is holding a white kitten near her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngeevvgPzP1s5zcijo1_500\",\n    \"question\": \"how many men are standing and nodding their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5937\",\n    \"key\": \"32310\",\n    \"description\": \"two men are standing and nodding their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs6h9GZNT1rerh68o1_400\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36618\",\n    \"key\": \"9178\",\n    \"description\": \"a light brown dog with blue eyes is jumping up.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqoabbUAH1s9wp82o1_400\",\n    \"question\": \"how many dogs are lying peacefully on the couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24726\",\n    \"key\": \"30264\",\n    \"description\": \"two dogs are lying peacefully on the couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndurbnwj7K1qmcdwao1_400\",\n    \"question\": \"what are the clouds covering,\",\n    \"answer\": \"they move to the left ? sky\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28644\",\n    \"key\": \"25602\",\n    \"description\": \"the clouds are covering the sky,\"\n  },\n  {\n    \"video_name\": \"tumblr_nn2r6dEP9b1us2olno1_500\",\n    \"question\": \"how many wrestlers attack each other in a large ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44484\",\n    \"key\": \"79403\",\n    \"description\": \"two wrestlers attack each other in a large ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_na580m6GwR1t0ojyvo1_500\",\n    \"question\": \"how many guys are taking the picture in a room?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39074\",\n    \"key\": \"94958\",\n    \"description\": \"three guys are taking a picture in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngi0pvfg9o1rly7k0o1_500\",\n    \"question\": \"what is the color of the running?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38337\",\n    \"key\": \"89248\",\n    \"description\": \"this image is of a guy in black running slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2gaft02A1u3mx44o1_250\",\n    \"question\": \"what is the guy hitting with his head?\",\n    \"answer\": \"chicken\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23588\",\n    \"key\": \"46940\",\n    \"description\": \"a guy is hitting a chicken with his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n2sx1v7vCB1r2y8uzo1_400\",\n    \"question\": \"what is chasing the cat onto a board that is lying on the side of the pool?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA931\",\n    \"key\": \"10316\",\n    \"description\": \"a dog is chasing a cat onto a board that is lying on the side of the pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc51lxZqcX1tkpzw0o1_250\",\n    \"question\": \"what is crawling onto the chair and sitting?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2299\",\n    \"key\": \"6269\",\n    \"description\": \"a dog is crawling onto a chair and sitting.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9paf34bUZ1s5yymto1_400\",\n    \"question\": \"what are two guys laughing and one grabs?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47764\",\n    \"key\": \"58609\",\n    \"description\": \"two guys are laughing and one grabs a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmy661scIV1rmv5xlo1_540\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47082\",\n    \"key\": \"20754\",\n    \"description\": \"a beautiful woman in a yellow suit walks forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd91nlEKaI1tx8mn0o1_400\",\n    \"question\": \"what is driving slowly behind the blue car?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48928\",\n    \"key\": \"55564\",\n    \"description\": \"a yellow car is driving slowly behind a blue car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfdl91Enp1ta0siuo1_250\",\n    \"question\": \"what is jumping out of the cardboard box?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24717\",\n    \"key\": \"23803\",\n    \"description\": \"a dog is jumping out of a cardboard box.\"\n  },\n  {\n    \"video_name\": \"tumblr_njv9ifV0lo1re9kgbo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30208\",\n    \"key\": \"32981\",\n    \"description\": \"the girl with the black hair and glasses is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx7tgZGUP1rm1lhro1_500\",\n    \"question\": \"how many young men is wearing sunglasses are posing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52685\",\n    \"key\": \"101620\",\n    \"description\": \"three young men wearing sunglasses are posing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf38owmnAJ1t8amt8o1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6678\",\n    \"key\": \"97138\",\n    \"description\": \"a woman in black leans to her left while raising her hand above her hear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbthmbg6ta1tih2xyo1_250\",\n    \"question\": \"what is the color of the object?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14715\",\n    \"key\": \"12156\",\n    \"description\": \"a boy in a swimming pool is holding a white object and looking at it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabd00gKoa1si16xbo1_r1_500\",\n    \"question\": \"how many girls is this image of singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16816\",\n    \"key\": \"97931\",\n    \"description\": \"this image is of two girls singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmx6y03hWy1staknao1_400\",\n    \"question\": \"what crashes into the wall after barely missing a pedestrian?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12086\",\n    \"key\": \"56959\",\n    \"description\": \"a police car crashes into a wall after barely missing a pedestrian.\"\n  },\n  {\n    \"video_name\": \"tumblr_npds0vwrYb1utnc7zo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40493\",\n    \"key\": \"6254\",\n    \"description\": \"a man wearing a blue shirt is talking into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtcpjc1X71u6qmkgo1_400\",\n    \"question\": \"what is going to the ramp at a water theme park?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8095\",\n    \"key\": \"60136\",\n    \"description\": \"a vehicle is going to a ramp at a water theme park.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyndnYw1C1rmkebwo1_400\",\n    \"question\": \"what is the man kissing and hugging?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37364\",\n    \"key\": \"32270\",\n    \"description\": \"a man is kissing and hugging his dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3gu0qW7V1t4y13wo1_400\",\n    \"question\": \"what does the man knock out of another man 's hand?\",\n    \"answer\": \"coffee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48914\",\n    \"key\": \"50794\",\n    \"description\": \"a man knocks the coffee out of another man 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_mnutecijZ71rkw2b4o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7846\",\n    \"key\": \"45077\",\n    \"description\": \"a man are wearing a black suit smiles and winks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngplu9HNKp1rn2ycso2_1280\",\n    \"question\": \"what is the color of the floor?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34490\",\n    \"key\": \"99492\",\n    \"description\": \"a man is dancing in a dark room with a white floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdokecWbU1uzms92o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28569\",\n    \"key\": \"13327\",\n    \"description\": \"a well shape hair style man in white is pouting his mouth and rolling his eyes to another side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9xonZ5iR1uvfg79o1_400\",\n    \"question\": \"what is the man hitting golf on a green?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26461\",\n    \"key\": \"70092\",\n    \"description\": \"a man is hitting a golf ball on a green.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndckk40bTy1r7f6ubo1_250\",\n    \"question\": \"how many men are wrestling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18006\",\n    \"key\": \"77856\",\n    \"description\": \"two men are wrestling and one is flipping the other on to the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqkzt4vq5x1usmrfgo1_500\",\n    \"question\": \"how many men are dancing the choreography on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49090\",\n    \"key\": \"37400\",\n    \"description\": \"two men are dancing a choreography on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc95blevQd1sg10q0o1_250\",\n    \"question\": \"how many men are riding in the back of a car?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43825\",\n    \"key\": \"49450\",\n    \"description\": \"the three men are riding in the back of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fwjsqrPd1tqvc95o1_400\",\n    \"question\": \"what are some people playing?\",\n    \"answer\": \"instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3423\",\n    \"key\": \"32400\",\n    \"description\": \"some people are playing some homemade instruments.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sl7sBrq41qjv5vmo1_400\",\n    \"question\": \"where are bunch of people moving around.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA2793\",\n    \"key\": \"31074\",\n    \"description\": \"bunch of people are moving around in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bz5ojRqc1t99fkdo1_400\",\n    \"question\": \"what is the girl riding down a hallway?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52744\",\n    \"key\": \"29183\",\n    \"description\": \"a girl is riding a bicycle down a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nem3w0B2961ttab97o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49471\",\n    \"key\": \"29697\",\n    \"description\": \"the guy in the blue shirt is passed out on top of the tree that is being dragged.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguvutkldj1rs0i14o1_400\",\n    \"question\": \"what are crawling around on someones shoulder?\",\n    \"answer\": \"rats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45383\",\n    \"key\": \"46819\",\n    \"description\": \"two rats are crawling around on someones shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3zxi2tnf1t7hjz2o1_400\",\n    \"question\": \"what is the person turning around on a desk?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50982\",\n    \"key\": \"71510\",\n    \"description\": \"a person is turning a picture around on a desk.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5wedpGdD1qisvn0o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47451\",\n    \"key\": \"37083\",\n    \"description\": \"a guy wearing a black shirt is fixing his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nijrydrPVc1rtzdq7o1_400\",\n    \"question\": \"what does the white puppy try but gets it instead?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15363\",\n    \"key\": \"94791\",\n    \"description\": \"a white puppy tries to get a treat off of the table but the brown dog gets it instead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowuvtVkdP1uvne53o1_400\",\n    \"question\": \"what is the man with his guitar lighting up?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21587\",\n    \"key\": \"33280\",\n    \"description\": \"a man with his guitar is lighting up a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivk6uk2XY1u9wwjjo1_500\",\n    \"question\": \"what is scanning upside down?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36094\",\n    \"key\": \"91309\",\n    \"description\": \"a white robot is scanning upside down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n1wdvaQgaI1scy8zoo1_400\",\n    \"question\": \"how many men are eating cereals,\",\n    \"answer\": \"trying not to laugh ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52452\",\n    \"key\": \"36893\",\n    \"description\": \"two men are eating cereals,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbkzg243Sd1r2sl5ho1_400\",\n    \"question\": \"what does the young lady answer?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27835\",\n    \"key\": \"37058\",\n    \"description\": \"a young lady answers her cell phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdqgy84WC1r4fe3xo1_500\",\n    \"question\": \"what does the person light and it emits a flame?\",\n    \"answer\": \"torch\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1415\",\n    \"key\": \"57514\",\n    \"description\": \"a person lights a torch and it emits a flame.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr6wu26Pe01qfqngko1_500\",\n    \"question\": \"what is the color of the walking?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA304\",\n    \"key\": \"48462\",\n    \"description\": \"this is a woman who is dressed in black walking forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmcu4vUJJd1sgkvddo1_400\",\n    \"question\": \"what are two boys riding down a road?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17558\",\n    \"key\": \"85530\",\n    \"description\": \"two boys are riding a motorcycle down a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguf3fNgwx1s71nvbo1_400\",\n    \"question\": \"what depicts the man hitting a deer?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49420\",\n    \"key\": \"31138\",\n    \"description\": \"a machine depicts a man hitting a deer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhanpu9jjb1u5o5sjo1_250\",\n    \"question\": \"where is the woman looking.\",\n    \"answer\": \"? window\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6221\",\n    \"key\": \"27232\",\n    \"description\": \"the woman is looking in a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwdg5LAhM1u0tiq0o1_250\",\n    \"question\": \"how many men are tired after fighting each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23885\",\n    \"key\": \"15549\",\n    \"description\": \"two men are tired after fighting each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqu1u9hThh1uso7sno1_400\",\n    \"question\": \"what is the man 's silhouette playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46926\",\n    \"key\": \"69271\",\n    \"description\": \"a man 's silhouette is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0rcrb4371sprwgfo1_400\",\n    \"question\": \"how many people are singing and smiling here?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40799\",\n    \"key\": \"44282\",\n    \"description\": \"two people are singing and smiling here.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfglj8pbh61s90br6o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36562\",\n    \"key\": \"51510\",\n    \"description\": \"a girl in a red dress is looking in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ousdC7yv1tdjuqvo1_400\",\n    \"question\": \"what is the man throwing at a girl with a pineapple on top of her head?\",\n    \"answer\": \"knives\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38885\",\n    \"key\": \"21043\",\n    \"description\": \"a man is throwing knives at a girl with a pineapple on top of her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrsw2qHWe1slhvg9o1_500\",\n    \"question\": \"what is the color of the earphones?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45789\",\n    \"key\": \"59390\",\n    \"description\": \"a guy wearing a black shirt and red earphones on his head,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhr64ytyfc1u7wiuzo1_400\",\n    \"question\": \"what is playing with the trash can lid?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29016\",\n    \"key\": \"73336\",\n    \"description\": \"a cat is playing with a trash can lid.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jm4vnraT1tr9zzwo1_250\",\n    \"question\": \"what shatters and the policeman is smiling?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24354\",\n    \"key\": \"51612\",\n    \"description\": \"a window shatters and a policeman is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbrkjB7sK1smq40po1_250\",\n    \"question\": \"what is the woman with black hair drinking?\",\n    \"answer\": \"champagne\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15209\",\n    \"key\": \"16252\",\n    \"description\": \"a woman with black hair is drinking champagne.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejz7hm7Cu1u2lrlao1_400\",\n    \"question\": \"what does there 's smoking blowing smoke?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16036\",\n    \"key\": \"62453\",\n    \"description\": \"there 's a woman smoking cigarette blowing smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngf79bgJEJ1sht3fmo1_400\",\n    \"question\": \"what is the color of the balloon?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18724\",\n    \"key\": \"1473\",\n    \"description\": \"a dog tries to bite a red balloon.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfxbkWk5Z1s94w5go1_250\",\n    \"question\": \"what is the man holding with another man?\",\n    \"answer\": \"talks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13675\",\n    \"key\": \"23036\",\n    \"description\": \"a man is holding a microphone talks with another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_njn51xCYFt1tldu19o1_500\",\n    \"question\": \"what are the group of men sharing together?\",\n    \"answer\": \"meal\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36326\",\n    \"key\": \"70213\",\n    \"description\": \"a group of men are sharing a meal together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0x6auTXZ1uq7elzo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1119\",\n    \"key\": \"19913\",\n    \"description\": \"a man with dark hair and dressed in black is speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesu4nuPbX1tzd5txo1_500\",\n    \"question\": \"what is the color of the horses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46863\",\n    \"key\": \"97005\",\n    \"description\": \"two black horses are running in a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngmx782QcM1tjjejho1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39002\",\n    \"key\": \"39751\",\n    \"description\": \"a guy with a red shirt is brushing his teeth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbafnh36931svh8clo1_250\",\n    \"question\": \"how many young men is wearing black are looking at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32558\",\n    \"key\": \"1567\",\n    \"description\": \"two young men wearing black are looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndizmmSDER1tobehfo1_250\",\n    \"question\": \"where is the woman pole dancing.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8063\",\n    \"key\": \"53426\",\n    \"description\": \"a woman is pole dancing in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr45wgSapM1uaujqao1_400\",\n    \"question\": \"what outside is jumping at the window?\",\n    \"answer\": \"gorilla\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6206\",\n    \"key\": \"64873\",\n    \"description\": \"a gorilla outside is jumping at a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav5cxDWtT1tv0ziio1_400\",\n    \"question\": \"where is the man kissing another man and riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21845\",\n    \"key\": \"31478\",\n    \"description\": \"a man is kissing another man and riding in the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4zqx8sRJ1tdjuqvo1_250\",\n    \"question\": \"what is walking around the room?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27924\",\n    \"key\": \"74416\",\n    \"description\": \"a small dog is walking around a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn45o8Lso1sl4ny1o1_400\",\n    \"question\": \"where are two men sitting and laughing together.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11633\",\n    \"key\": \"37681\",\n    \"description\": \"two men are sitting in a room and laughing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni34syMevA1u30ycao1_500\",\n    \"question\": \"how many guys are joking front the crowd in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22302\",\n    \"key\": \"95849\",\n    \"description\": \"two guys are joking front a crowd in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7zldRIh21slj978o1_400\",\n    \"question\": \"how many monkey jumps over the other surprised monkey?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27720\",\n    \"key\": \"40880\",\n    \"description\": \"one monkey jumps over the other surprised monkey.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk61cci1An1unc2dzo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5790\",\n    \"key\": \"30048\",\n    \"description\": \"the man is the black leather jacket is staring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9cawxigV1takghro1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3343\",\n    \"key\": \"19999\",\n    \"description\": \"the girl in the black hat is dancing and clapping her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqsseRkvH1tr5tuwo1_400\",\n    \"question\": \"what is the racer racing and starts to drift?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19533\",\n    \"key\": \"50815\",\n    \"description\": \"a racer is racing and his car starts to drift.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdybmLWnP1rlpjp7o1_250\",\n    \"question\": \"what are two girls playing and singing?\",\n    \"answer\": \"instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43167\",\n    \"key\": \"45669\",\n    \"description\": \"two girls are playing musical instruments and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7u0qCxig1slj978o1_400\",\n    \"question\": \"what does the car do while jumping over a ramp?\",\n    \"answer\": \"roll\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2826\",\n    \"key\": \"101240\",\n    \"description\": \"a car does a barrel roll while jumping over a ramp.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo5r6Eta01tlowj1o1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45148\",\n    \"key\": \"69197\",\n    \"description\": \"a guy is wearing all black and looking forward beside a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyhf7lZHf1rdzrdeo1_1280\",\n    \"question\": \"what does the man pull back revealing a man with no face?\",\n    \"answer\": \"curtain\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26432\",\n    \"key\": \"84955\",\n    \"description\": \"a man pulls back a curtain revealing a man with no face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqqclNEyH1t7hjfwo1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29873\",\n    \"key\": \"9502\",\n    \"description\": \"a man wearing a yellow sweater is showing a gap between his fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fmz0qeyA1rml9mio1_250\",\n    \"question\": \"what is the young singer holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44316\",\n    \"key\": \"5931\",\n    \"description\": \"the young singer is holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbonmh32QP1slwrsuo1_400\",\n    \"question\": \"what is swatting at the bug on a computer?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2406\",\n    \"key\": \"13378\",\n    \"description\": \"a young kitten is swatting at a bug on a computer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkaj46inhY1tya7mxo1_400\",\n    \"question\": \"what does the woman look out and a cat comes in through the snow?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19667\",\n    \"key\": \"63930\",\n    \"description\": \"a woman looks out the door and a cat comes in through the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8st3d7GLU1ru1g19o1_500\",\n    \"question\": \"what is the lady with the blond hair riding in the car took off?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47984\",\n    \"key\": \"98940\",\n    \"description\": \"the lady with the blond hair riding in the car took her sunglasses off.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngy4jkSGjY1tni61eo1_250\",\n    \"question\": \"how many pets are sitting side by side?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22942\",\n    \"key\": \"27236\",\n    \"description\": \"the two pets are sitting side by side.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lbia4caa1swt5n8o1_500\",\n    \"question\": \"how many guys are sitting at the table talking and having drinks?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19560\",\n    \"key\": \"92188\",\n    \"description\": \"two guys are sitting at the table talking and having drinks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qyart36C1rkbsnzo1_250\",\n    \"question\": \"where are the couple people riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1114\",\n    \"key\": \"45347\",\n    \"description\": \"a couple people are riding in a race car while driving fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_nglczjnOxY1s3ffcpo1_250\",\n    \"question\": \"where do the man and woman sit,\",\n    \"answer\": \"they look at one another , and the woman exits the car . ? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8837\",\n    \"key\": \"47334\",\n    \"description\": \"a man and woman sit in a car,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbvv8uqaG61s92jogo1_500\",\n    \"question\": \"where is the man in a jacket looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48144\",\n    \"key\": \"76044\",\n    \"description\": \"a man in a jacket is looking at himself in a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqiquZx9u1tx8mn0o1_400\",\n    \"question\": \"what does the race car pass during a race on a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16836\",\n    \"key\": \"65286\",\n    \"description\": \"a race car passes another race car during a race on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2cbemHoE1uot1e7o1_400\",\n    \"question\": \"what is the man wearing with no shirt?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5467\",\n    \"key\": \"64631\",\n    \"description\": \"the man is wearing a denim jacket with no shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay86yaqtf1tudw8yo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16560\",\n    \"key\": \"27034\",\n    \"description\": \"a guy with short brown hair wears a suit and smiles with wide eyes and raises his eyebrows as he turns his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1p9zvcKj1t61hfoo1_500\",\n    \"question\": \"where does the guy lean,\",\n    \"answer\": \"his head nods to the left . ? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47525\",\n    \"key\": \"101475\",\n    \"description\": \"a guy leans in his chair,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gdhs28LW1srbyoyo1_400\",\n    \"question\": \"what are in the ring when one drop kicks the other?\",\n    \"answer\": \"boxers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15435\",\n    \"key\": \"88226\",\n    \"description\": \"two boxers are in a ring when one drop kicks the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0ietOo6o1qa3o0zo2_500\",\n    \"question\": \"how many people are standing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26399\",\n    \"key\": \"82603\",\n    \"description\": \"two people are standing and they are clapping each others hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbj47m9ewZ1tkodheo1_250\",\n    \"question\": \"where is the man us riding,\",\n    \"answer\": \"and he had a bandage on his head . ? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30610\",\n    \"key\": \"45642\",\n    \"description\": \"a man us riding in a car,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrq7sa3Am1u1b0p0o1_250\",\n    \"question\": \"what is licking the steel vessel?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19914\",\n    \"key\": \"71885\",\n    \"description\": \"a boy wearing cap is licking a steel vessel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuvtlz6f81tq4njio1_400\",\n    \"question\": \"what is the woman bouncing while balancing on a board contraption?\",\n    \"answer\": \"balls\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14730\",\n    \"key\": \"46370\",\n    \"description\": \"a woman is bouncing five balls while balancing on a board contraption.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndx0xsBZwT1ql3gweo1_500\",\n    \"question\": \"what is the color of the towel?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25264\",\n    \"key\": \"99687\",\n    \"description\": \"the man is dabbing his face with a white towel.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndx6yuTBZd1t3ghero1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35501\",\n    \"key\": \"14413\",\n    \"description\": \"a man wearing glasses with black hair is pulling faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnen8mJCr1sa0lndo1_500\",\n    \"question\": \"how many guys talk to each other and one stares ahead?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12186\",\n    \"key\": \"72354\",\n    \"description\": \"two guys talk to each other and one stares ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbf412WZn71tl6o7ko1_500\",\n    \"question\": \"what is the color of the blink?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32235\",\n    \"key\": \"70230\",\n    \"description\": \"a blonde lady sings into a mic as red lights blink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfq2lpexwE1u3f64so1_500\",\n    \"question\": \"where are the group of guys dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12703\",\n    \"key\": \"79591\",\n    \"description\": \"a group of guys are dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvz1zHlqY1slj978o1_250\",\n    \"question\": \"what is putting the plastic rings on the yellow spike?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27181\",\n    \"key\": \"27919\",\n    \"description\": \"a black and white bird is putting the plastic rings on the yellow spike.\"\n  },\n  {\n    \"video_name\": \"tumblr_na25kynLSX1qmkpfbo1_250\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4430\",\n    \"key\": \"44064\",\n    \"description\": \"a man is moving his hips in a room with a black background.\"\n  },\n  {\n    \"video_name\": \"tumblr_njprhzVKe41t0ojyvo1_400\",\n    \"question\": \"what is the color of the tie?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26326\",\n    \"key\": \"11531\",\n    \"description\": \"a man with a red tie gets interrupted by another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdi1douhg1r03eaxo1_400\",\n    \"question\": \"what does the person on a scooter hold up?\",\n    \"answer\": \"vegetable\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20203\",\n    \"key\": \"76259\",\n    \"description\": \"a person on a scooter holds up a vegetable.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8e43eKN01r38k4eo1_500\",\n    \"question\": \"how many man are sitting by each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9055\",\n    \"key\": \"58370\",\n    \"description\": \"two man are sitting by each other and the one hits the other on the arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngw762RrkF1u4dor7o1_1280\",\n    \"question\": \"how many men are slamming their hands together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24132\",\n    \"key\": \"77354\",\n    \"description\": \"two men are slamming their hands together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr78fdPO5w1slwrsuo1_400\",\n    \"question\": \"what are in the room playing with each other?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18571\",\n    \"key\": \"43420\",\n    \"description\": \"two cats are in a room playing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklengft0R1unphqfo1_400\",\n    \"question\": \"what is the man giving her daughter?\",\n    \"answer\": \"bath\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21198\",\n    \"key\": \"32465\",\n    \"description\": \"the man is giving her daughter a bath.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rnmgt44f1rb2s8bo1_400\",\n    \"question\": \"where is the man taking a sip of wine.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29969\",\n    \"key\": \"80953\",\n    \"description\": \"a man in a chair is taking a sip of wine.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafghuNYvk1tp3ejwo1_400\",\n    \"question\": \"what scores the goal,\",\n    \"answer\": \"and everyone celebrates ? star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10931\",\n    \"key\": \"58652\",\n    \"description\": \"a soccer star scores a goal,\"\n  },\n  {\n    \"video_name\": \"tumblr_nna22wyqkJ1ur3duoo1_400\",\n    \"question\": \"what are falling down on the talk show host?\",\n    \"answer\": \"balloons\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11081\",\n    \"key\": \"41507\",\n    \"description\": \"balloons are falling down on a talk show host.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwfpv91tK1uyo4nfo1_500\",\n    \"question\": \"what do the group of fake elephants play outside?\",\n    \"answer\": \"instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18539\",\n    \"key\": \"61661\",\n    \"description\": \"a group of fake elephants play instruments outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nen3ysIv0O1qae7oyo1_500\",\n    \"question\": \"how many males are dancing in time together outside at night?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49899\",\n    \"key\": \"90210\",\n    \"description\": \"two males are dancing in time together outside at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7emoSSII1uuekcqo1_500\",\n    \"question\": \"what are taking their shirts off?\",\n    \"answer\": \"men\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37761\",\n    \"key\": \"90515\",\n    \"description\": \"a group nave men are taking their shirts off.\"\n  },\n  {\n    \"video_name\": \"tumblr_noee81YaOa1sm91blo1_1280\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36053\",\n    \"key\": \"31318\",\n    \"description\": \"a man with white pants was skateboarding.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndotjhRiX51t8n92fo1_500\",\n    \"question\": \"what is the color of the surfboard?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3981\",\n    \"key\": \"49070\",\n    \"description\": \"a guy is surfing on a white surfboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9m54cPuul1s7u6edo1_500\",\n    \"question\": \"where is the young man tossing and stretching.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27543\",\n    \"key\": \"81840\",\n    \"description\": \"a young man is tossing and stretching in his bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngapatoAz51s9142do1_400\",\n    \"question\": \"how many children under a tent are talking to an adult and posing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24360\",\n    \"key\": \"25381\",\n    \"description\": \"two children under a tent are talking to an adult and posing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkmf9jmlY1u9qwyco1_250\",\n    \"question\": \"what does the man stand and puts into his pocket?\",\n    \"answer\": \"flask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49362\",\n    \"key\": \"10094\",\n    \"description\": \"a man stands and puts a flask into his pocket.\"\n  },\n  {\n    \"video_name\": \"tumblr_njv1apgxUT1u3epwjo1_1280\",\n    \"question\": \"how many women embrace in the crowded room surrounded by people?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50195\",\n    \"key\": \"87599\",\n    \"description\": \"two women embrace in a crowded room surrounded by people.\"\n  },\n  {\n    \"video_name\": \"tumblr_npgmilwWnF1tx8mn0o1_400\",\n    \"question\": \"how many cars are racing side by side and spins out?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24805\",\n    \"key\": \"91034\",\n    \"description\": \"two cars are racing side by side and spins out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc7u35pYt1sdbrm9o1_400\",\n    \"question\": \"how many people are talking on the stage while holding microphones?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23919\",\n    \"key\": \"65496\",\n    \"description\": \"three people are talking on a stage while holding microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq4afnM0Z1s5o1jwo1_400\",\n    \"question\": \"what are crawling on the person with wild hair?\",\n    \"answer\": \"mice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15060\",\n    \"key\": \"41704\",\n    \"description\": \"white mice are crawling on the person with wild hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojnjdkri81urlrpuo1_500\",\n    \"question\": \"how many kittens are playing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12534\",\n    \"key\": \"49168\",\n    \"description\": \"two kittens are playing and one falls from its perch.\"\n  },\n  {\n    \"video_name\": \"tumblr_naidmtIv1H1twoe5do1_400\",\n    \"question\": \"what is gesturing to be given some food?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48909\",\n    \"key\": \"21499\",\n    \"description\": \"a cat is gesturing to be given some food.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7hxgWqvo1qe40wlo1_400\",\n    \"question\": \"where is the woman spinning.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13263\",\n    \"key\": \"81231\",\n    \"description\": \"a woman is spinning fast in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nihx73QAqi1rf4bn2o2_r1_540\",\n    \"question\": \"how many guys with black hair are laughing and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25642\",\n    \"key\": \"101197\",\n    \"description\": \"the two guys with black hair are laughing and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7mrc0HwL1qdauj7o1_400\",\n    \"question\": \"what are two young men playing and singing on stage?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7847\",\n    \"key\": \"36894\",\n    \"description\": \"two young men are playing guitars and singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrc4axMW2T1r92mkgo1_400\",\n    \"question\": \"what is the formula car doing on the floor?\",\n    \"answer\": \"circles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51563\",\n    \"key\": \"62304\",\n    \"description\": \"a formula car is doing circles on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_npxtbon4aF1u0j5uyo1_400\",\n    \"question\": \"how many men are looking at each other intensely?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33340\",\n    \"key\": \"31489\",\n    \"description\": \"two men are looking at each other intensely.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkztrpIfva1qcaryto1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18327\",\n    \"key\": \"64171\",\n    \"description\": \"a girl with a green shirt is riding her horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_njouy2MkRI1unyeoio1_400\",\n    \"question\": \"what tries to jump from the bookshelf to a door but falls?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14668\",\n    \"key\": \"20303\",\n    \"description\": \"a cat tries to jump from a bookshelf to a door but falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabjgnLs1w1si703wo1_400\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28811\",\n    \"key\": \"33375\",\n    \"description\": \"a young lady with white glasses is laughing and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_naud1p6m7w1sw1xhgo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30281\",\n    \"key\": \"20506\",\n    \"description\": \"a young man with brown hair is looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lnqa0TkE1rac9v2o1_400\",\n    \"question\": \"what are two guys kissing each other and one is taking off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8925\",\n    \"key\": \"47875\",\n    \"description\": \"two guys are kissing each other and one is taking off his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h4shbMYh1r40rxao1_r1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10815\",\n    \"key\": \"91355\",\n    \"description\": \"a man in white is holding up his finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngxqtqgyOm1sqlieso1_400\",\n    \"question\": \"what is the color of the ball?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18202\",\n    \"key\": \"50893\",\n    \"description\": \"a man riding a bike flips over a red ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nplgqa6TnF1su25v0o1_400\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33466\",\n    \"key\": \"30934\",\n    \"description\": \"a baby wears a white coat and plays with a sheep.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj0b4qFmm1tk9c2ao1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42233\",\n    \"key\": \"4727\",\n    \"description\": \"a handsome man in white is playing the guitar with sweeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyi4zNrQM1s4yuteo1_500\",\n    \"question\": \"what is someone painting on a building with paint?\",\n    \"answer\": \"graffiti\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA542\",\n    \"key\": \"86684\",\n    \"description\": \"someone is painting graffiti on a building with paint.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngy1993nCa1spaf7ho1_r1_250\",\n    \"question\": \"how many men is sitting in directors style chairs are talking?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43963\",\n    \"key\": \"75763\",\n    \"description\": \"three men sitting in directors style chairs are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_npuxvmFUL31uqie69o1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18674\",\n    \"key\": \"16361\",\n    \"description\": \"a black guy is moving his eyes and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nel4t7kzLa1sk7iiyo1_250\",\n    \"question\": \"how many guy is wearing white is laughing over another one?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23980\",\n    \"key\": \"9547\",\n    \"description\": \"one guy wearing white is laughing over another one.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedt1ck9181ttuja3o1_250\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51462\",\n    \"key\": \"2853\",\n    \"description\": \"a guy wearing black pants and no shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5xnkmNbh1tk2ngvo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6495\",\n    \"key\": \"53122\",\n    \"description\": \"a black cat is walking along a low wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp0h7ftuy1sofgdso1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48848\",\n    \"key\": \"23766\",\n    \"description\": \"the guy with the gray coat is kissing the girl with the blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvkcm3JBJ1u3ruqqo1_500\",\n    \"question\": \"what is the color of the sky?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA380\",\n    \"key\": \"72438\",\n    \"description\": \"three young men are looking at each other against a backdrop of a blue sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemtylU1ek1sspq5qo1_250\",\n    \"question\": \"what is the white man smoking and brushes his hair?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49274\",\n    \"key\": \"32816\",\n    \"description\": \"a white man is smoking a cigarette and brushes his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vaofH4lm1s1hn6lo1_400\",\n    \"question\": \"what gives the warm nuzzle to a dark haired woman?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47195\",\n    \"key\": \"58281\",\n    \"description\": \"a brown dog gives a warm nuzzle to a dark haired woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3zdwLhgA1ttuja3o1_500\",\n    \"question\": \"where are two men recording music.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30032\",\n    \"key\": \"85274\",\n    \"description\": \"two men are recording music in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cky9gUyi1rlte6do1_500\",\n    \"question\": \"what is this lying on the floor and pawing the carpet?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40780\",\n    \"key\": \"89306\",\n    \"description\": \"this is a fox lying on the floor and pawing the carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhryql9avz1th7rxjo1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26950\",\n    \"key\": \"94782\",\n    \"description\": \"a woman wearing a teal top is being kissed by a man wearing a dark green shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkk5d5OAP41u6hnr3o1_500\",\n    \"question\": \"how many people are kissing on the beach with the water hitting them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4405\",\n    \"key\": \"72515\",\n    \"description\": \"two people are kissing on the beach with the water hitting them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nga7fiM0PT1qg2370o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49843\",\n    \"key\": \"15586\",\n    \"description\": \"a white man with a blue shirt is jumping in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbw7obBlMP1tx8mn0o1_400\",\n    \"question\": \"what comes off his bike and skids along the ground?\",\n    \"answer\": \"racer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2851\",\n    \"key\": \"52738\",\n    \"description\": \"a motorcycle racer comes off his bike and skids along the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1p3nrVRc1snid6qo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28843\",\n    \"key\": \"66238\",\n    \"description\": \"a woman in a blue dress threw water on a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1nlpijnR1u2lw0po1_400\",\n    \"question\": \"how many doctors are walking down the hallway when a patient vomits on one of them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49300\",\n    \"key\": \"77200\",\n    \"description\": \"two doctors are walking down a hallway when a patient vomits on one of them.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ghigU0nd1tx8mn0o1_400\",\n    \"question\": \"what are running around in the circle on the track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43674\",\n    \"key\": \"55496\",\n    \"description\": \"race cars are running around in a circle on the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngbtze9cdg1u4u0oeo1_400\",\n    \"question\": \"how many girls are leaning in and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9651\",\n    \"key\": \"63492\",\n    \"description\": \"two girls are leaning in and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmftyRpXj1tmvz19o1_250\",\n    \"question\": \"what is the color of the rubs?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40667\",\n    \"key\": \"250\",\n    \"description\": \"the man wearing black rubs his head goes in to kiss the woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_norcq7bjX01qe849no1_250\",\n    \"question\": \"how many people are laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45851\",\n    \"key\": \"10751\",\n    \"description\": \"two people are laughing and then she backs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkgi9WxPa1te83nuo1_250\",\n    \"question\": \"where is the man as he listens to a boom box.\",\n    \"answer\": \"? box\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13144\",\n    \"key\": \"1770\",\n    \"description\": \"a man is in a clear box as he listens to a boom box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbel8wk3Ts1qe6gfro1_400\",\n    \"question\": \"what is the color of the puppet?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9321\",\n    \"key\": \"60358\",\n    \"description\": \"a man is talking to a blue puppet as it eats his tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_njp4u1XiXD1tt84zlo1_500\",\n    \"question\": \"what is the color of the sky?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9473\",\n    \"key\": \"57884\",\n    \"description\": \"a ufo is flying in a clear blue sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nai6yrCMc21tikvlso1_250\",\n    \"question\": \"what reclines in an armchair?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21039\",\n    \"key\": \"30763\",\n    \"description\": \"a fat ginger cat reclines in an armchair.\"\n  },\n  {\n    \"video_name\": \"tumblr_npz6msJUl81urnbuuo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9486\",\n    \"key\": \"38417\",\n    \"description\": \"a white man with black hair flinches as he is hit.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8aurnLRR01qlbj8uo1_r1_500\",\n    \"question\": \"how many men are standing side by side and smiling?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6326\",\n    \"key\": \"88108\",\n    \"description\": \"three men are standing side by side and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nene7m6nXo1shp2peo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27206\",\n    \"key\": \"65485\",\n    \"description\": \"a man in a black shirt turns his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hvtzkimT1tirskjo1_400\",\n    \"question\": \"what is the man wearing black clothes is grabbing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38784\",\n    \"key\": \"39158\",\n    \"description\": \"a man wearing black clothes is grabbing his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nctun9U7MZ1u0tx7oo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45701\",\n    \"key\": \"21237\",\n    \"description\": \"the boy in the white shirt is walking and signing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8nijuMcp1tg6h6to1_500\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44910\",\n    \"key\": \"50527\",\n    \"description\": \"a woman in a black outfit wraps a gray jacket around herself and turns.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb330aM2rd1taqruuo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38922\",\n    \"key\": \"64237\",\n    \"description\": \"a bright green car drove through an intersection.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk61cci1An1unc2dzo1_250\",\n    \"question\": \"what is the man?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51715\",\n    \"key\": \"30048\",\n    \"description\": \"the man is the black leather jacket is staring.\"\n  },\n  {\n    \"video_name\": \"tumblr_no8x9toqT11u7hl9wo1_400\",\n    \"question\": \"how many people are in front of microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51856\",\n    \"key\": \"62572\",\n    \"description\": \"two people are in front of microphones,\"\n  },\n  {\n    \"video_name\": \"tumblr_nd11cdPFVQ1s1cmjio1_400\",\n    \"question\": \"how many cars are driving around in the garage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16558\",\n    \"key\": \"96948\",\n    \"description\": \"two cars are driving around in a garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfjoeOSwk1r8pns9o1_400\",\n    \"question\": \"what is chewing on the plastic bag?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21492\",\n    \"key\": \"16662\",\n    \"description\": \"a gray cat is chewing on a plastic bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs4caxQYC1s0un7wo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7654\",\n    \"key\": \"84223\",\n    \"description\": \"a boy in a black hooded jacket walks arrogantly along the balcony of a high building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhn4qolyxQ1tgouwlo1_400\",\n    \"question\": \"what is startled by the green lizard?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39338\",\n    \"key\": \"52435\",\n    \"description\": \"a white and orange cat is startled by a green lizard.\"\n  },\n  {\n    \"video_name\": \"tumblr_neaak1zNkv1qmr78eo1_400\",\n    \"question\": \"where is the person waving a fan.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39498\",\n    \"key\": \"64124\",\n    \"description\": \"a person is waving a fan in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr85pdqTI1sht3fmo1_250\",\n    \"question\": \"what does the man say hi to some men and then he holds and picks it up with another bag?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16879\",\n    \"key\": \"46733\",\n    \"description\": \"a man says hi to some men and then he holds a bag and picks it up with another bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx7hdCQhQ1s57zi7o1_400\",\n    \"question\": \"how many men are sitting together and are talking and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18535\",\n    \"key\": \"54111\",\n    \"description\": \"two men are sitting together and are talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncoxe7Pzl11t0ojyvo1_250\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50983\",\n    \"key\": \"6571\",\n    \"description\": \"two people in white shirts are walking arm in arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbzxyNwEn1rkopy3o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45869\",\n    \"key\": \"98608\",\n    \"description\": \"a woman wearing a black top,\"\n  },\n  {\n    \"video_name\": \"tumblr_nd35q1BzTi1rqfhi2o1_250\",\n    \"question\": \"what is sitting on the blanket wearing a sweater?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26510\",\n    \"key\": \"3277\",\n    \"description\": \"a small dog is sitting on a blanket wearing a sweater.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfryd89f6l1qec31no1_400\",\n    \"question\": \"how many singers are performing the same dance move?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27571\",\n    \"key\": \"5317\",\n    \"description\": \"two singers are performing the same dance move.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknr9xW0hU1u922jno2_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42647\",\n    \"key\": \"78072\",\n    \"description\": \"two dancer with black hair are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1108xDwG1slsl6ro1_500\",\n    \"question\": \"how many men look around and show surprise at what they see?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30814\",\n    \"key\": \"88064\",\n    \"description\": \"two men look around and show surprise at what they see.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0p5v2Azs1qejouoo1_500\",\n    \"question\": \"where is the female looking and smiling.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA306\",\n    \"key\": \"92584\",\n    \"description\": \"a female is looking in a mirror and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nate0yTgIe1tkqgqvo1_250\",\n    \"question\": \"what is the woman lighting and covering her cigarette with her hand?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48910\",\n    \"key\": \"47078\",\n    \"description\": \"a woman is lighting a cigarette and covering her cigarette with her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_npelkjKwEq1tk9cjho1_250\",\n    \"question\": \"what is the color of the highlights?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6925\",\n    \"key\": \"13102\",\n    \"description\": \"a man with red highlights in his hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v14rHt3R1riy1p3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47924\",\n    \"key\": \"39342\",\n    \"description\": \"the man wearing a black shirt is playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0fwvSQfh1tlyyvzo1_400\",\n    \"question\": \"how many men are sitting together making strange faces and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2559\",\n    \"key\": \"25188\",\n    \"description\": \"two men are sitting together making strange faces and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ptqhbSXp1rjwte6o1_400\",\n    \"question\": \"how many people are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37792\",\n    \"key\": \"67868\",\n    \"description\": \"two people are talking and one is messing with their hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3ew49dux1tjhld9o1_400\",\n    \"question\": \"what did the man help in the air?\",\n    \"answer\": \"jump\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51986\",\n    \"key\": \"66199\",\n    \"description\": \"a man helped his dog jump in the air to grab something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sho7J99O1tggdauo1_400\",\n    \"question\": \"where do three men talk.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51179\",\n    \"key\": \"14816\",\n    \"description\": \"three men talk to one another in a kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax80qeXcZ1qdovbqo1_r1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19565\",\n    \"key\": \"52620\",\n    \"description\": \"a woman in a red dress is walking away before turning her head and gesturing with her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncx3sdZxov1rtwr5go1_400\",\n    \"question\": \"where is the woman riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25206\",\n    \"key\": \"79097\",\n    \"description\": \"the woman is riding in her car with the top down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba7mrIRaG1te5fy0o1_500\",\n    \"question\": \"what is the woman with long hair holding and talking?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1072\",\n    \"key\": \"79432\",\n    \"description\": \"a woman with long hair is holding a kitten and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_netczdYQLZ1u25ovvo1_400\",\n    \"question\": \"where did the man pass another car.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12981\",\n    \"key\": \"63490\",\n    \"description\": \"a man in a red car passed another car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgj20P5aj1tij95mo1_400\",\n    \"question\": \"how many guys on a stage spoke among themselves?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51765\",\n    \"key\": \"58796\",\n    \"description\": \"three guys on a stage spoke among themselves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5lrzi7xk1tx8mn0o1_400\",\n    \"question\": \"what comes off of the race car and rolls away?\",\n    \"answer\": \"tire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49024\",\n    \"key\": \"78316\",\n    \"description\": \"the front tire comes off of the race car and rolls away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksuzg00mr1t7an45o1_400\",\n    \"question\": \"how many people are hugging,\",\n    \"answer\": \"kissing , and spinning around ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9689\",\n    \"key\": \"41508\",\n    \"description\": \"two people are hugging,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wwljwZk61sbh7xuo1_500\",\n    \"question\": \"what is the color of the stick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50601\",\n    \"key\": \"61117\",\n    \"description\": \"a girl in red lip stick is opening her mouth wide.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0mb2u6OI1taix0oo1_400\",\n    \"question\": \"what do people look out at mountain passing by?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41671\",\n    \"key\": \"59232\",\n    \"description\": \"people look out train window at mountain passing by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc20yxAKBE1tx5rbeo1_400\",\n    \"question\": \"what is one soccer team keeping from another soccer team?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40621\",\n    \"key\": \"87101\",\n    \"description\": \"one soccer team is keeping the ball from another soccer team.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffknrYHRF1tnkfuxo1_500\",\n    \"question\": \"how many men is this spooning on a couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14290\",\n    \"key\": \"96520\",\n    \"description\": \"this is two men spooning on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nds6ogu9QS1tsn7r7o1_400\",\n    \"question\": \"how many girls is wearing black hats are walking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45026\",\n    \"key\": \"22067\",\n    \"description\": \"two girls wearing black hats are walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5z1ajZzd1rwipr5o1_r1_250\",\n    \"question\": \"what is the color of the bags?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41448\",\n    \"key\": \"27736\",\n    \"description\": \"a woman juggles three black bean bags.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2ecomrOS1u2oapqo1_500\",\n    \"question\": \"how many guys is this giving each other high fives?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1868\",\n    \"key\": \"26335\",\n    \"description\": \"this is three guys giving each other high fives.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98t7cdeNZ1skdlfto1_400\",\n    \"question\": \"where does the man take off his red shirt.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27323\",\n    \"key\": \"60668\",\n    \"description\": \"a man takes off his red shirt in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfk4gpAOiF1sgdp1uo1_250\",\n    \"question\": \"what does the child play?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49655\",\n    \"key\": \"3996\",\n    \"description\": \"a child plays a red and white toy piano.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndraq7VgPA1rq1604o1_500\",\n    \"question\": \"what is the man smoking while standing outside on a windy day?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1655\",\n    \"key\": \"90690\",\n    \"description\": \"a man is smoking a cigarette while standing outside on a windy day.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdzjchAEe1tepwnvo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11507\",\n    \"key\": \"25115\",\n    \"description\": \"a person with red hair is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nktgnoK1z31t15h2ho1_250\",\n    \"question\": \"what is the woman with an orange cardigan having and looking away?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10828\",\n    \"key\": \"11454\",\n    \"description\": \"a woman with an orange cardigan is having a drink and looking away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni06cdG8Wk1u639x2o1_500\",\n    \"question\": \"what drives down the highway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15773\",\n    \"key\": \"71675\",\n    \"description\": \"a red sports car drives down a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1l7twZC21tdpeyco1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50973\",\n    \"key\": \"99723\",\n    \"description\": \"a woman wearing a dark shirt and a second woman wearing a blue striped shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8reauf0cL1sevihno1_400\",\n    \"question\": \"what is the color of the player?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29447\",\n    \"key\": \"64572\",\n    \"description\": \"a sport 's player in white is yelling and cheering.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3mv90rSu1snioijo1_250\",\n    \"question\": \"how many young woman are leaning on each other and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24206\",\n    \"key\": \"8407\",\n    \"description\": \"two young woman are leaning on each other and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtv3tspE71tv8f7co1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40137\",\n    \"key\": \"74491\",\n    \"description\": \"the woman with black hair gave a wink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzm18sXEV1rdynt3o1_500\",\n    \"question\": \"what is the man wearing white runs up?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40463\",\n    \"key\": \"168\",\n    \"description\": \"a man wearing white runs up the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dzv8FBNJ1spk7pfo1_250\",\n    \"question\": \"where are the team of sports men and some mascots clapping the crowd.\",\n    \"answer\": \"? stadium\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27687\",\n    \"key\": \"12778\",\n    \"description\": \"a team of sports men and some mascots are clapping the crowd in a stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelya4Kxzh1u34q9wo1_250\",\n    \"question\": \"how many girls dressed in white and red are dancing and singing at a concert?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2603\",\n    \"key\": \"82974\",\n    \"description\": \"four girls dressed in white and red are dancing and singing at a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9evj5q8FJ1r3ldhzo1_100\",\n    \"question\": \"where is the guy winking his eye.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24723\",\n    \"key\": \"853\",\n    \"description\": \"a guy is winking his eye in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g3lqfsMq1rdk1zoo1_400\",\n    \"question\": \"what is the young woman in a white dress playing?\",\n    \"answer\": \"violin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7864\",\n    \"key\": \"60984\",\n    \"description\": \"a young woman in a white dress is playing the violin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnukunx7r61uuj39do1_400\",\n    \"question\": \"what is butting the young boy who falls to the ground?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31833\",\n    \"key\": \"37449\",\n    \"description\": \"a goat is butting a young boy who falls to the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngegv9zMI11skv76wo1_250\",\n    \"question\": \"how many women are sitting on the sofa on christmas and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12441\",\n    \"key\": \"36105\",\n    \"description\": \"two women are sitting on a sofa on christmas and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njreu3yRWx1rujq2co1_500\",\n    \"question\": \"how many young men are dancing and signing on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19255\",\n    \"key\": \"101983\",\n    \"description\": \"two young men are dancing and signing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl08fcxHX31upy801o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11124\",\n    \"key\": \"55119\",\n    \"description\": \"a slim woman with orange hair and purple dress is nodding with a glass of water on hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_naytkonAuO1scv4uso1_500\",\n    \"question\": \"how many people are looking up and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23207\",\n    \"key\": \"86741\",\n    \"description\": \"the two people are looking up and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_no4mczo7UB1qirwpco1_500\",\n    \"question\": \"how many people are kissing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23696\",\n    \"key\": \"98207\",\n    \"description\": \"two people are kissing and the man looks strangely at the woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauvryxIRR1rpvamzo1_250\",\n    \"question\": \"what are exploding above the body of water?\",\n    \"answer\": \"works\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13139\",\n    \"key\": \"1313\",\n    \"description\": \"fire works are exploding above a body of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkxskmh3h1rlakuxo1_500\",\n    \"question\": \"where are two men practicing boxing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21266\",\n    \"key\": \"95997\",\n    \"description\": \"two men are practicing boxing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrba7uzD21r0ajmso1_500\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40344\",\n    \"key\": \"59077\",\n    \"description\": \"a man in a blue sweater was dancing for a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqagz6lei1tdjuqvo1_400\",\n    \"question\": \"what is the hand touching shell?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16652\",\n    \"key\": \"15374\",\n    \"description\": \"a hand is touching a wiggling turtle 's shell.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0wn2TFG01tk2ngvo1_400\",\n    \"question\": \"what is trying to eat food through a glass table but failing horribly?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24471\",\n    \"key\": \"1209\",\n    \"description\": \"a cat is trying to eat food through a glass table but failing horribly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqmkp7w5rI1tmqleoo1_400\",\n    \"question\": \"what set into rocks is engulfed in flames?\",\n    \"answer\": \"castle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36365\",\n    \"key\": \"99358\",\n    \"description\": \"a castle set into rocks is engulfed in flames.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbss3cYIpi1sgwg9go1_400\",\n    \"question\": \"how many men turn to look at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5680\",\n    \"key\": \"45435\",\n    \"description\": \"two men turn to look at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedhnos8rx1rjn473o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9487\",\n    \"key\": \"44995\",\n    \"description\": \"the man in the blue shirt turns his head and looks down.\"\n  },\n  {\n    \"video_name\": \"tumblr_njte62Bwpv1t4la1fo1_400\",\n    \"question\": \"how many young men are playing guitars on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25599\",\n    \"key\": \"25986\",\n    \"description\": \"two young men are playing guitars on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njodpwEZQ41u8js9ho1_500\",\n    \"question\": \"how many men are sitting on the couch together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14737\",\n    \"key\": \"40905\",\n    \"description\": \"two men are sitting on a couch together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9fj4glx61swtmgzo1_500\",\n    \"question\": \"what is coming out of the cardboard box?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14948\",\n    \"key\": \"46702\",\n    \"description\": \"a black rabbit is coming out of a cardboard box.\"\n  },\n  {\n    \"video_name\": \"tumblr_notwusKOgr1sqpx7ko1_400\",\n    \"question\": \"how many men are lifting up their arms,\",\n    \"answer\": \"while they are sitting down ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39347\",\n    \"key\": \"100986\",\n    \"description\": \"two men are lifting up their arms,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfb17xXE8j1tvn491o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32843\",\n    \"key\": \"69769\",\n    \"description\": \"a man in a white shirt is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh298xxMHt1sqbahto1_500\",\n    \"question\": \"what is the color of the lights?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39799\",\n    \"key\": \"91400\",\n    \"description\": \"five women bounce around with white mini lights in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8rmk4FML1tl20oxo1_250\",\n    \"question\": \"what is pulling at the collar of the leash he is attached to?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35054\",\n    \"key\": \"39280\",\n    \"description\": \"a cat is pulling at the collar of the leash he is attached to.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo3xwphio1tk2ngvo1_400\",\n    \"question\": \"how many cats is wearing hats are playing with catnip?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6568\",\n    \"key\": \"30518\",\n    \"description\": \"three cats wearing hats are playing with catnip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrffifGPGh1rfolw9o1_400\",\n    \"question\": \"what does the man eat?\",\n    \"answer\": \"sandwich\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4197\",\n    \"key\": \"37528\",\n    \"description\": \"a man eats his sandwich while he listens to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2gpfzSk21tk2ngvo1_250\",\n    \"question\": \"what is the rabbit sitting on a towel and is running in circles?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8288\",\n    \"key\": \"13592\",\n    \"description\": \"a rabbit is sitting on a towel and another rabbit is running in circles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwu84DGXF1slj978o1_400\",\n    \"question\": \"what is walking across the bridge over water?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6888\",\n    \"key\": \"40897\",\n    \"description\": \"a cat is walking across a bridge over water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6oonCucA1tc2v0no1_500\",\n    \"question\": \"what is the man making and smiling?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24742\",\n    \"key\": \"40289\",\n    \"description\": \"a man is making a picture and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo3syb9wg1rhy09eo1_500\",\n    \"question\": \"what is going on the road and the tire is spinning?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA582\",\n    \"key\": \"98035\",\n    \"description\": \"a car is going on the road and the tire is spinning.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfesdbDpzJ1u41fj6o1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27371\",\n    \"key\": \"15439\",\n    \"description\": \"a woman wearing a black top with dark brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nknodg8h931slwpo8o1_250\",\n    \"question\": \"what gets up and leaves the tail behind on the floor?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5526\",\n    \"key\": \"85109\",\n    \"description\": \"a cat gets up and leaves a tail behind on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nen200COd21u2nf1so1_400\",\n    \"question\": \"what is the girl with dark hair and glasses eating?\",\n    \"answer\": \"chips\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21677\",\n    \"key\": \"29193\",\n    \"description\": \"a girl with dark hair and glasses is eating some potato chips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3wn08K8f1tkgkzxo1_250\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8947\",\n    \"key\": \"90971\",\n    \"description\": \"a girl with a green shirts looks to confirm at a boy with blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzz934frj1t4f4loo1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46041\",\n    \"key\": \"30356\",\n    \"description\": \"a black girl is standing in a room and is sticking her tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nawqv9iVq81s0h1fio1_500\",\n    \"question\": \"where are several men standing pretty still.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24665\",\n    \"key\": \"57652\",\n    \"description\": \"several men are standing pretty still in a large room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx280JEg61suduoyo1_400\",\n    \"question\": \"how many guys are dancing at the christmas event?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19754\",\n    \"key\": \"22059\",\n    \"description\": \"two guys are dancing at a christmas event.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcvxuaICP1u5u010o1_400\",\n    \"question\": \"what is the man lighting with a match?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16272\",\n    \"key\": \"96793\",\n    \"description\": \"a man is lighting his cigarette with a match.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3gcjTgzt1tjotwjo1_250\",\n    \"question\": \"what does the woman remove before talking?\",\n    \"answer\": \"earpiece\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11211\",\n    \"key\": \"47448\",\n    \"description\": \"the woman removes her earpiece before talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1rovQKEs1tomzioo1_250\",\n    \"question\": \"how many men are hugging each other on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10360\",\n    \"key\": \"2039\",\n    \"description\": \"two men are hugging each other on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclxudn5MX1qa4y0oo1_500\",\n    \"question\": \"what is sitting on the piece of wire?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14124\",\n    \"key\": \"67749\",\n    \"description\": \"a bird is sitting on a piece of wire.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh42ws7eWR1tatohao1_400\",\n    \"question\": \"what does the man go and a dog pushes away?\",\n    \"answer\": \"chair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24409\",\n    \"key\": \"36756\",\n    \"description\": \"a man goes to sit and a dog pushes his chair away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngf79bgJEJ1sht3fmo1_400\",\n    \"question\": \"what did the boxer dog attack?\",\n    \"answer\": \"balloon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34294\",\n    \"key\": \"1473\",\n    \"description\": \"a boxer dog attacked a red balloon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr286erOKg1tk0c4jo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18943\",\n    \"key\": \"79183\",\n    \"description\": \"a man in a black tee shirt is crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo3syb9wg1rhy09eo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43145\",\n    \"key\": \"98035\",\n    \"description\": \"a yellow car is speeding down the road and the tire is spinning fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc428jorCe1tl4bloo1_400\",\n    \"question\": \"what is the woman riding around a room?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4202\",\n    \"key\": \"64224\",\n    \"description\": \"a woman is riding a horse around a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_np8vdxZrdi1tx8mn0o1_400\",\n    \"question\": \"what is the color of the crashes?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31384\",\n    \"key\": \"76908\",\n    \"description\": \"red car crashes and a fire starts.\"\n  },\n  {\n    \"video_name\": \"tumblr_nra8jaNWXd1ti2yzto1_1280\",\n    \"question\": \"what is poking the cat through the bicycle wheel?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15283\",\n    \"key\": \"17735\",\n    \"description\": \"a black cat is poking the cat through the bicycle wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5aodi5wy1tph724o1_400\",\n    \"question\": \"what 's down the mountain?\",\n    \"answer\": \"ski\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44139\",\n    \"key\": \"64126\",\n    \"description\": \"a man ski 's down a mountain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojc0uHi1c1tmavx8o1_400\",\n    \"question\": \"how many men are walking toward the tunnel?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17397\",\n    \"key\": \"42824\",\n    \"description\": \"two men are walking toward a tunnel.\"\n  },\n  {\n    \"video_name\": \"tumblr_neju1aGKr11u2l6fco1_400\",\n    \"question\": \"what is the color of the curtain?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6752\",\n    \"key\": \"75459\",\n    \"description\": \"a man wearing a mask walks out from behind a red curtain.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kwbo2P5H1rc6jvuo1_400\",\n    \"question\": \"where does the guy shoot a man in the head.\",\n    \"answer\": \"? doorway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48506\",\n    \"key\": \"97799\",\n    \"description\": \"a guy in a doorway shoots a man in the head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9a9aqzQdp1saga3vo1_400\",\n    \"question\": \"what does the man touches his head,\",\n    \"answer\": \"then lift ? shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14634\",\n    \"key\": \"32082\",\n    \"description\": \"a man touches his head,\"\n  },\n  {\n    \"video_name\": \"tumblr_niqzllM4Uk1u9nt3mo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5882\",\n    \"key\": \"6832\",\n    \"description\": \"a person with a black hat on sideways is doing hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_np5aw09Aa31shzpsuo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13122\",\n    \"key\": \"100114\",\n    \"description\": \"a girl in black dress is walking in slow motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94c9kD6eu1s0wfo1o1_250\",\n    \"question\": \"what is the color of the player?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29952\",\n    \"key\": \"40368\",\n    \"description\": \"a guitar player in black adjusts his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nph943L4Y41smgou0o1_400\",\n    \"question\": \"what is the salesman of sports cars demonstrating?\",\n    \"answer\": \"motors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50083\",\n    \"key\": \"74733\",\n    \"description\": \"a salesman of sports cars is demonstrating his showroom motors.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcfegJJME1rol18zo1_400\",\n    \"question\": \"how many people stand in front of a large blue flame?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8345\",\n    \"key\": \"38024\",\n    \"description\": \"two people stand in front of a large blue flame.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkajbX6dP1tx8mn0o1_400\",\n    \"question\": \"what runs off of the racetrack on a curve?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25638\",\n    \"key\": \"78352\",\n    \"description\": \"a car runs off of a racetrack on a curve.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbzsdygb6n1tiw4ggo1_500\",\n    \"question\": \"where are the group of guys they not moving less one.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44077\",\n    \"key\": \"100694\",\n    \"description\": \"a group of guys they are not moving less one in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njb0tk9AB11un84ego1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44642\",\n    \"key\": \"2690\",\n    \"description\": \"a young girl is dancing and singing in a white dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp2e0Uw4E1sj5pwvo1_400\",\n    \"question\": \"how many standing boys is the boy pushing in a shopping cart?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21075\",\n    \"key\": \"23814\",\n    \"description\": \"a boy is pushing two standing boys in a shopping cart.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmov237Wm1sy82cio1_500\",\n    \"question\": \"what is the young girl blowing through a bubble wand?\",\n    \"answer\": \"bubbles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31844\",\n    \"key\": \"87719\",\n    \"description\": \"a young girl is blowing bubbles through a bubble wand.\"\n  },\n  {\n    \"video_name\": \"tumblr_npycjy1sgd1tfeyjso1_400\",\n    \"question\": \"how many men with microphones are talking and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51056\",\n    \"key\": \"35175\",\n    \"description\": \"two men with microphones are talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n974aiV3pP1tyycvto1_400\",\n    \"question\": \"what is the hand petting?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13530\",\n    \"key\": \"82732\",\n    \"description\": \"a hand is petting a cat that is stretching.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vk28nV921tv6x4go1_500\",\n    \"question\": \"how many white skulls are on the black background?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1518\",\n    \"key\": \"68505\",\n    \"description\": \"two white skulls are on a black background.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbz5sgQ9L1s0svh1o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9747\",\n    \"key\": \"62531\",\n    \"description\": \"a girl with long brown hair is walking with a blonde man on the beach and then starts spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf4xc3fWJM1u3hixuo1_400\",\n    \"question\": \"what is the man wearing a mask grabs?\",\n    \"answer\": \"knife\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20646\",\n    \"key\": \"30515\",\n    \"description\": \"a man wearing a mask grabs a knife as he holds onto another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrffifGPGh1rfolw9o1_400\",\n    \"question\": \"what is the man eating inside?\",\n    \"answer\": \"burrito\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42666\",\n    \"key\": \"37528\",\n    \"description\": \"the man is eating a burrito inside.\"\n  },\n  {\n    \"video_name\": \"tumblr_naw8zsiXqa1qzwouio1_400\",\n    \"question\": \"what is the person driving and moving?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21284\",\n    \"key\": \"63555\",\n    \"description\": \"a person is driving a vehicle and moving.\"\n  },\n  {\n    \"video_name\": \"tumblr_novwf7DkV31slwrsuo1_400\",\n    \"question\": \"what snuggles inside of the large man 's shirt and rubs his face?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15645\",\n    \"key\": \"33999\",\n    \"description\": \"a tiny kitten snuggles inside of a large man 's shirt and rubs his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4yfgSIEU1u7r745o1_500\",\n    \"question\": \"how many men are near each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43028\",\n    \"key\": \"35666\",\n    \"description\": \"two men are near each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9sg3VuL11t107ayo1_400\",\n    \"question\": \"how many young girls are leaning over the table and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47013\",\n    \"key\": \"94319\",\n    \"description\": \"two young girls are leaning over a table and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwfzx0hL91tgkdkbo1_250\",\n    \"question\": \"what is the color of the cape?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52941\",\n    \"key\": \"5671\",\n    \"description\": \"dog wearing a red cape pushes a scooter and jumps on.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtr71EuXh1u0alpro1_500\",\n    \"question\": \"what is the color of the shoes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40821\",\n    \"key\": \"60645\",\n    \"description\": \"someone in black shoes raised one foot.\"\n  },\n  {\n    \"video_name\": \"tumblr_n4wduzUXym1tqrkr5o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34440\",\n    \"key\": \"43875\",\n    \"description\": \"A man in a red jacket slowly looks down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtlrnLJyT1t1szv2o1_500\",\n    \"question\": \"how many children on a bus ate candy?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36451\",\n    \"key\": \"70108\",\n    \"description\": \"two children on a bus ate candy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney1qn9pP21ssuua8o1_250\",\n    \"question\": \"where does the man strum a guitar.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30933\",\n    \"key\": \"31604\",\n    \"description\": \"a man in a room strums a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94xke8sQB1qgx9mzo1_500\",\n    \"question\": \"what does the woman with a cigarette in her hand lower?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16792\",\n    \"key\": \"79394\",\n    \"description\": \"a woman with a cigarette in her hand lowers her sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nov7q4OB4P1uqu9z8o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA766\",\n    \"key\": \"39079\",\n    \"description\": \"a man with brown hair is folding a newspaper.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxgairu4F1slwrsuo1_400\",\n    \"question\": \"what then covers himself up with a blanket?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15669\",\n    \"key\": \"99415\",\n    \"description\": \"a dog goes to lay on his dog bed then covers himself up with a blanket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nny6ezmNUD1te0qzbo1_400\",\n    \"question\": \"what is the color of the polish?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3833\",\n    \"key\": \"56785\",\n    \"description\": \"a hand with purple nail polish is touching a man 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3ug1STRd1qfyovfo1_540\",\n    \"question\": \"how many guys are spinning around together in the circle?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25258\",\n    \"key\": \"96745\",\n    \"description\": \"two guys are spinning around together in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkes0gSSf1u0h3teo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14605\",\n    \"key\": \"1426\",\n    \"description\": \"a man in a purple shirt was holding a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4fsjihYG1u0lsh1o1_400\",\n    \"question\": \"what is driving along the road fast?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40919\",\n    \"key\": \"84128\",\n    \"description\": \"a posh car is driving along a road fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh40cqYid51s6zpepo1_250\",\n    \"question\": \"what is climbing into the christmas tree and playing with the ornaments?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4790\",\n    \"key\": \"2329\",\n    \"description\": \"a white cat is climbing into a christmas tree and playing with the ornaments.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn8b3ckHXT1rgj6reo1_400\",\n    \"question\": \"what is the dog sticking in water and falling asleep?\",\n    \"answer\": \"paws\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38550\",\n    \"key\": \"55944\",\n    \"description\": \"a dog is sticking his paws in water and falling asleep.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc80srnP11r202reo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6450\",\n    \"key\": \"86846\",\n    \"description\": \"a white man with black shirt is making the symbol of love and peace.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhohl7YseY1s3f033o1_250\",\n    \"question\": \"how many person is looking up at another when they kiss?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17907\",\n    \"key\": \"89385\",\n    \"description\": \"one person is looking up at another when they kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhscpr7T9N1qevcs2o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2697\",\n    \"key\": \"92264\",\n    \"description\": \"muscular white man throws his fist in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkow3gFUC21tljkklo2_250\",\n    \"question\": \"how many men are hugging while one of them waves?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8876\",\n    \"key\": \"2773\",\n    \"description\": \"two men are hugging while one of them waves.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxjabeSW11t2s1j1o1_500\",\n    \"question\": \"what is the color of the gloves?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48526\",\n    \"key\": \"100016\",\n    \"description\": \"a man wearing a white shirt and black gloves shows his fist.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwywb6JYu1qd8xguo1_500\",\n    \"question\": \"how many female twins do the little dance on a couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46083\",\n    \"key\": \"10965\",\n    \"description\": \"two female twins do a little dance on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwyn9wAq21tfvj5ao1_500\",\n    \"question\": \"how many men are walking away from the car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6812\",\n    \"key\": \"24954\",\n    \"description\": \"two men are walking away from the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bz5ojRqc1t99fkdo1_400\",\n    \"question\": \"what is the color of the mask?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35033\",\n    \"key\": \"29183\",\n    \"description\": \"a person wearing a white face mask,\"\n  },\n  {\n    \"video_name\": \"tumblr_nlwyy9St4p1tjqvkeo1_250\",\n    \"question\": \"what is sleeping with its head on top of a gecko?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4686\",\n    \"key\": \"36683\",\n    \"description\": \"a cat is sleeping with its head on top of a gecko.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc78altiBi1tkc0ggo1_500\",\n    \"question\": \"how many fingers did the guy have help in front of him?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39615\",\n    \"key\": \"76307\",\n    \"description\": \"a guy had two fingers help in front of him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng67v0PpjK1tkhxdko1_400\",\n    \"question\": \"what is riding on the power jeep?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3006\",\n    \"key\": \"17979\",\n    \"description\": \"a dog is riding on a power jeep.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8b6xSueH1u5s6sso1_500\",\n    \"question\": \"how many women are dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48947\",\n    \"key\": \"33941\",\n    \"description\": \"three women are dancing and one is holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhi5q5NVDx1qdo688o1_500\",\n    \"question\": \"how many men are talking and looking at an ice rink?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51363\",\n    \"key\": \"78008\",\n    \"description\": \"two men are talking and looking at an ice rink.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5l4nwhbZ1rodqjco1_500\",\n    \"question\": \"how many man are laughing and clapping hysterically?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51777\",\n    \"key\": \"93324\",\n    \"description\": \"three man are laughing and clapping hysterically.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zlvzY5jO1sp3selo1_250\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27380\",\n    \"key\": \"46937\",\n    \"description\": \"a girl in red lipstick is eagerly looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gdhs28LW1srbyoyo1_400\",\n    \"question\": \"how many boxers are in the ring when one drop kicks the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28417\",\n    \"key\": \"88226\",\n    \"description\": \"two boxers are in a ring when one drop kicks the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9art5oaA51r4s9t4o1_250\",\n    \"question\": \"how many men are sitting and smiling at something all with their hands folded?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2532\",\n    \"key\": \"35466\",\n    \"description\": \"three men are sitting and smiling at something all with their hands folded.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sp35Fn9g1r9vmd9o1_400\",\n    \"question\": \"how many teenage boys is wearing white shirts bend forward and laugh?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44572\",\n    \"key\": \"41670\",\n    \"description\": \"three teenage boys wearing white shirts bend forward and laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndm7dz8BTZ1seb31ro1_400\",\n    \"question\": \"what is the man playing?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15728\",\n    \"key\": \"22584\",\n    \"description\": \"a man is playing an electrical piano.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmkxiOfQS1r7kw0wo1_250\",\n    \"question\": \"how many men float through the water in barrels?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20237\",\n    \"key\": \"25153\",\n    \"description\": \"two men float through the water in barrels.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndso8nSpZU1slj978o1_250\",\n    \"question\": \"what is sleeping and stretching out its arms?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44646\",\n    \"key\": \"36754\",\n    \"description\": \"a cat is sleeping and stretching out its arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng952sa6bT1skeuupo1_400\",\n    \"question\": \"what is the person wearing a helmet and gloves drives?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5067\",\n    \"key\": \"65206\",\n    \"description\": \"a person wearing a helmet and gloves drives a vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mxo7lBDU1ttpy61o1_250\",\n    \"question\": \"what does the man hold?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33901\",\n    \"key\": \"10604\",\n    \"description\": \"a man holds a microphone while another man sings and plays the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn4ck340P1sj24puo1_250\",\n    \"question\": \"where does the boy pretend to walk in slow motion with a bottle in his hand.\",\n    \"answer\": \"? singlet\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24339\",\n    \"key\": \"5283\",\n    \"description\": \"a boy in a black singlet pretends to walk in slow motion with a bottle in his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ys4qki9V1szkw14o1_400\",\n    \"question\": \"how many dark haired women are cuddling on the sofa?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40494\",\n    \"key\": \"46094\",\n    \"description\": \"two dark haired women are cuddling on a sofa.\"\n  },\n  {\n    \"video_name\": \"tumblr_noziupQsO11ut1d6co1_500\",\n    \"question\": \"what is the color of the sky?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40583\",\n    \"key\": \"90118\",\n    \"description\": \"silhouetted farmer spinning his scythe against a blue sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2nhl9fVr1u2ppnho1_400\",\n    \"question\": \"what is the color of the animal?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30304\",\n    \"key\": \"33569\",\n    \"description\": \"a girl with red hair raises some time of blue animal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2rl5ShaE1rftdx0o1_250\",\n    \"question\": \"what walks behind the wolf that is eating something?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48455\",\n    \"key\": \"23330\",\n    \"description\": \"bird walks behind a wolf that is eating something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivi02t5ys1tk2ibto1_250\",\n    \"question\": \"what is chasing balls on a pool table?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1499\",\n    \"key\": \"23127\",\n    \"description\": \"a dog is chasing balls on a pool table.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ho30GLBm1sf6c4co1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34354\",\n    \"key\": \"10962\",\n    \"description\": \"a woman wearing a black shirt is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne64xoWvjy1qfnup3o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6954\",\n    \"key\": \"5054\",\n    \"description\": \"a man wearing black shirt with messy hair is turning his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pwmrX2ZE1tfhnexo1_400\",\n    \"question\": \"what is the player turning with his hand?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12916\",\n    \"key\": \"93372\",\n    \"description\": \"a player is turning the ball with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqsshv5dg1tluxceo1_400\",\n    \"question\": \"what does the man open while crouching down?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6339\",\n    \"key\": \"17326\",\n    \"description\": \"a man opens a door while crouching down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5lioBLqf1tbeb4mo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27393\",\n    \"key\": \"48811\",\n    \"description\": \"a man in a white shirt winks his left eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb40r2QeXA1sky5jwo1_500\",\n    \"question\": \"what is the man with blonde hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27315\",\n    \"key\": \"78616\",\n    \"description\": \"a man with blonde hair is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhogkmy7K1untprdo1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12552\",\n    \"key\": \"68995\",\n    \"description\": \"a woman walks through an elevator and wears black clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_mmv0kampwW1sovfbao1_250\",\n    \"question\": \"how many degrees does the long-haired man in shiny trousers and an open shirt spin?\",\n    \"answer\": \"180\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11391\",\n    \"key\": \"34483\",\n    \"description\": \"a long-haired man in shiny trousers and an open shirt spins 180 degrees.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqj3bMKQF1unc0x7o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43608\",\n    \"key\": \"90984\",\n    \"description\": \"A well-dressed young guy with gelled red hair glides across a room and scans it with his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7hlmJaCj1u3b5deo1_100\",\n    \"question\": \"where are the players playing.\",\n    \"answer\": \"? stadium\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9367\",\n    \"key\": \"13092\",\n    \"description\": \"the players are playing in a stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_nodhmeDGTt1tadzeeo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43280\",\n    \"key\": \"65197\",\n    \"description\": \"a black man in a suit is shaking while trying to shoot a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_n6kmok3DdI1r1x3klo1_250\",\n    \"question\": \"what is jumping up and down?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38609\",\n    \"key\": \"11769\",\n    \"description\": \"a horse is jumping up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndsj3v5btb1rpjuouo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9610\",\n    \"key\": \"79446\",\n    \"description\": \"a guy with black jacket is smoking in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbt3166F731tjpng4o1_500\",\n    \"question\": \"how many people are giving each other high fives?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38827\",\n    \"key\": \"92690\",\n    \"description\": \"two people are giving each other high fives but they miss.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9msm7HMOO1thfulao1_500\",\n    \"question\": \"what is the soccer player sticking to his curly hair?\",\n    \"answer\": \"comb\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24944\",\n    \"key\": \"95600\",\n    \"description\": \"a soccer player is sticking a giant comb to his curly hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv8o5fqeJ1u68w9so1_400\",\n    \"question\": \"what is falling asleep and his head is dropping on the bed?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22514\",\n    \"key\": \"60657\",\n    \"description\": \"a big tiger cat is falling asleep and his head is dropping on the bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_np8gfaOo6M1tcisf6o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22576\",\n    \"key\": \"4263\",\n    \"description\": \"a tear rolls down the face of a young man with light brown hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5qcvN7OT1qkv1mko1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39241\",\n    \"key\": \"5697\",\n    \"description\": \"the guy with the white shirt is dancing and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1tbz3mD61slj978o1_400\",\n    \"question\": \"how many dogs are dressed as the man and a woman?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1145\",\n    \"key\": \"28588\",\n    \"description\": \"two dogs are dressed as a man and a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7dbUQBA1t5z27go1_400\",\n    \"question\": \"where are four people dancing and clapping their hands.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22116\",\n    \"key\": \"58848\",\n    \"description\": \"four people are dancing and clapping their hands in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqrx03OM6K1uxst7zo1_500\",\n    \"question\": \"how many men are looking at the computer and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52646\",\n    \"key\": \"99159\",\n    \"description\": \"two men are looking at a computer and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5w59SBs41u0g8iko1_400\",\n    \"question\": \"where is the man talking.\",\n    \"answer\": \"? doorway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23087\",\n    \"key\": \"9674\",\n    \"description\": \"the man is talking in the doorway.\"\n  },\n  {\n    \"video_name\": \"tumblr_njb4zjWy8G1un8n5no1_400\",\n    \"question\": \"where is the person spinning around.\",\n    \"answer\": \"? dryer\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5802\",\n    \"key\": \"58776\",\n    \"description\": \"a person is spinning around in a dryer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin6hhwnC81tehwjso1_r1_400\",\n    \"question\": \"what is rolling on the ground and a man is holding the lead rope?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29116\",\n    \"key\": \"46462\",\n    \"description\": \"a horse is rolling on the ground and a man is holding the lead rope.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5uuh80qQ1u2ok96o1_400\",\n    \"question\": \"what is the color of the boards?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20223\",\n    \"key\": \"82389\",\n    \"description\": \"a group of women sing while holding yellow boards.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qvrhLwzq1r54uz2o1_400\",\n    \"question\": \"what is the color of the turtleneck?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44412\",\n    \"key\": \"28811\",\n    \"description\": \"a woman wearing a red turtleneck is pushing her hair to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3x7gCDa51r69dm8o1_400\",\n    \"question\": \"what is the woman holding and singing and swinging around?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52356\",\n    \"key\": \"41144\",\n    \"description\": \"a woman is holding a microphone and singing and swinging around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0e5mHJLF1u2o7c8o1_400\",\n    \"question\": \"how many girls with microphones are hugging each other and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2009\",\n    \"key\": \"1740\",\n    \"description\": \"two girls with microphones are hugging each other and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy95umIRd1qddljdo1_400\",\n    \"question\": \"how many woman lit the cigarette with a giant lighter behind him?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11904\",\n    \"key\": \"32086\",\n    \"description\": \"a guy spoke and two woman lit a cigarette with a giant lighter behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr77in6HRv1urraj4o1_500\",\n    \"question\": \"what is the guy dancing and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42413\",\n    \"key\": \"50533\",\n    \"description\": \"a guy is dancing and playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbt9t3GNcv1tdjuqvo1_400\",\n    \"question\": \"what is sliding backwards on the floor?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39399\",\n    \"key\": \"32039\",\n    \"description\": \"a little puppy is sliding backwards on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne8i29lmlc1rmnmfgo1_400\",\n    \"question\": \"what is the man juggling?\",\n    \"answer\": \"torches\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28281\",\n    \"key\": \"17150\",\n    \"description\": \"a man is juggling three flaming torches.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne8yo1RByn1r7xloyo1_400\",\n    \"question\": \"how many people is this getting ready for halloween?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37259\",\n    \"key\": \"101514\",\n    \"description\": \"this is two people getting ready for halloween.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyyl1NVgD1sxfrgdo1_400\",\n    \"question\": \"where is the girl with black shirt watching some.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25133\",\n    \"key\": \"33358\",\n    \"description\": \"a girl with black shirt is watching some in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndt8izVm3e1u1pi4oo1_400\",\n    \"question\": \"where does the person lick his top teeth.\",\n    \"answer\": \"? pullover\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45623\",\n    \"key\": \"35127\",\n    \"description\": \"a person in a pullover licks his top teeth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nchyfz0sQj1slj978o1_250\",\n    \"question\": \"what is the man holding and the lion is licking his face?\",\n    \"answer\": \"cub\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38755\",\n    \"key\": \"27666\",\n    \"description\": \"a man is holding a lion cub and the lion is licking his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq729bCOF1rj7btco1_400\",\n    \"question\": \"how many people are dumping water on another person?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15504\",\n    \"key\": \"28208\",\n    \"description\": \"two people are dumping water on another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauhia4ADE1tfni3oo1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2965\",\n    \"key\": \"21503\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_niwmiuolPN1tud7j4o1_500\",\n    \"question\": \"what is the color of the birds?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48338\",\n    \"key\": \"98837\",\n    \"description\": \"a woman is covered by a lot of black birds.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtoiyEZKi1uu6w8bo1_500\",\n    \"question\": \"how many men are running across the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48890\",\n    \"key\": \"99289\",\n    \"description\": \"two men are running across the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfb7sHq6r1tbg9d2o1_500\",\n    \"question\": \"what abruptly wakes up from the nap?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28750\",\n    \"key\": \"97079\",\n    \"description\": \"a dog abruptly wakes up from a nap.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fj9fsHcA1ruvb05o1_500\",\n    \"question\": \"what is the young man holding?\",\n    \"answer\": \"crotch\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18346\",\n    \"key\": \"75551\",\n    \"description\": \"a young man is holding his crotch while he dances.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4waufSpU1qgii4so1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37494\",\n    \"key\": \"80281\",\n    \"description\": \"a woman wearing a purple top,\"\n  },\n  {\n    \"video_name\": \"tumblr_njh449BVt81u29slho1_500\",\n    \"question\": \"where is the woman wearing ear buds and putting on sunglasses.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27602\",\n    \"key\": \"87651\",\n    \"description\": \"a woman is wearing ear buds in a car and putting on sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg3cseAxD1s47dt7o1_500\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7803\",\n    \"key\": \"62539\",\n    \"description\": \"two men in white are hugging in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncof91dmSJ1rluteyo1_500\",\n    \"question\": \"how many men is this with the man in the forefront staring and then looking down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15811\",\n    \"key\": \"82043\",\n    \"description\": \"this is two men with the man in the forefront staring and then looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p1fyGr2W1tixixoo1_400\",\n    \"question\": \"what is the guy holding?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22674\",\n    \"key\": \"60268\",\n    \"description\": \"a guy is holding a box until he gets hit in the head with a ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbua5vbBnJ1th8gzmo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5464\",\n    \"key\": \"87726\",\n    \"description\": \"a woman with dark black hair turned around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nouudbjKtI1u0el0yo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47613\",\n    \"key\": \"38411\",\n    \"description\": \"a red haired woman is biting her lip and looking confused.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5ataOKNF1ra19auo1_250\",\n    \"question\": \"what is the guy with the red shirt playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20875\",\n    \"key\": \"32238\",\n    \"description\": \"the guy with the red shirt is playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflm4phy0P1u4txqeo1_250\",\n    \"question\": \"what tries to get to his owner but falls off the bed?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24397\",\n    \"key\": \"27288\",\n    \"description\": \"a dog tries to get to his owner but falls off the bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4c3hRuqZ1sm50zqo1_500\",\n    \"question\": \"how many people are standing close to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17417\",\n    \"key\": \"36927\",\n    \"description\": \"two people are standing close to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlxzyxkQLW1u52c2xo1_250\",\n    \"question\": \"how many men fight each other with colorful swords?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5020\",\n    \"key\": \"23633\",\n    \"description\": \"three men fight each other with colorful swords.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngf79bgJEJ1sht3fmo1_400\",\n    \"question\": \"what attacked the red balloon?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27192\",\n    \"key\": \"1473\",\n    \"description\": \"a boxer dog attacked a red balloon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi7iq5CVX1u4qc5yo1_400\",\n    \"question\": \"how many man are hugging each other fondly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31249\",\n    \"key\": \"28401\",\n    \"description\": \"two man are hugging each other fondly.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qycyrMPe1tid4e3o1_250\",\n    \"question\": \"how many woman in a pool hug then smile?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1032\",\n    \"key\": \"15970\",\n    \"description\": \"two woman in a pool hug then smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1h818Si01tlk1ano1_250\",\n    \"question\": \"what is staring up and twitching its tail then jumping?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5793\",\n    \"key\": \"7880\",\n    \"description\": \"a cat is staring up and twitching its tail then jumping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivbfa2ctl1t0ccl7o1_250\",\n    \"question\": \"where is the woman with a dark coat walking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15635\",\n    \"key\": \"39510\",\n    \"description\": \"a woman with a dark coat is walking in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoz3heJia1tx8mn0o1_400\",\n    \"question\": \"how many race car hits another sending it on its side and making it flip over?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5243\",\n    \"key\": \"21855\",\n    \"description\": \"one race car hits another sending it on its side and making it flip over.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndopa89squ1tk9tvao1_500\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37756\",\n    \"key\": \"94715\",\n    \"description\": \"a black cat is moving something with its feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg6vkuI8y1tgetb4o1_250\",\n    \"question\": \"what climbs into the paper bag?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39038\",\n    \"key\": \"53401\",\n    \"description\": \"a two-legged cat climbs into a paper bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpubqKlJ11szh8ieo1_250\",\n    \"question\": \"what is an angry man smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39544\",\n    \"key\": \"20476\",\n    \"description\": \"an angry man is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjmxuJrpb1sw471io1_400\",\n    \"question\": \"what is the performer shaking for a lady?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16538\",\n    \"key\": \"33241\",\n    \"description\": \"a performer is shaking his butt for a lady.\"\n  },\n  {\n    \"video_name\": \"tumblr_npmvj70dMN1qztqp5o1_500\",\n    \"question\": \"how many men are jumping and dancing with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33309\",\n    \"key\": \"61017\",\n    \"description\": \"two men are jumping and dancing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_noiez5sPNW1u58xl4o1_500\",\n    \"question\": \"what is the color of the robe?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51862\",\n    \"key\": \"60853\",\n    \"description\": \"a man is walking around in a white robe.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbss3cYIpi1sgwg9go1_400\",\n    \"question\": \"how many men in suits are walking in front of a glass door?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32850\",\n    \"key\": \"45435\",\n    \"description\": \"two men in suits are walking in front of a glass door.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jrh32UiA1scv8s8o1_250\",\n    \"question\": \"how many friends are jumping and happy and hug each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24889\",\n    \"key\": \"33326\",\n    \"description\": \"three friends are jumping and happy and hug each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9iy2q8Dyp1s9lomgo1_250\",\n    \"question\": \"what is the man,\",\n    \"answer\": \"wearing , slides open a door and dances through while carrying a walking tick and radio ? glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50889\",\n    \"key\": \"15540\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_nogjx24Wzp1u6z7i8o1_500\",\n    \"question\": \"what are the person 's hands playing very quickly?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9769\",\n    \"key\": \"71209\",\n    \"description\": \"a person 's hands are playing a guitar very quickly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc51lxZqcX1tkpzw0o1_250\",\n    \"question\": \"where is the dog sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48767\",\n    \"key\": \"6269\",\n    \"description\": \"a dog is sitting in a blue chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mhncAnrG1tfer0ho1_400\",\n    \"question\": \"what is touching the cats head as if its petting the cat?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16183\",\n    \"key\": \"15516\",\n    \"description\": \"a dog is touching a cats head as if its petting the cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu43fKXYn1sj961qo1_r1_250\",\n    \"question\": \"what is the woman holding and dancing?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51042\",\n    \"key\": \"17723\",\n    \"description\": \"a woman is holding a red cup and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyfxvKq0p1rwwygfo1_500\",\n    \"question\": \"how many guys are singing and making some moves with their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44728\",\n    \"key\": \"92839\",\n    \"description\": \"two guys are singing and making some moves with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_njz44cKW5C1sba90go1_540\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10429\",\n    \"key\": \"90331\",\n    \"description\": \"a black man and white woman are singing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nor1hzgJKs1uphi0wo1_1280\",\n    \"question\": \"what is moving through the water?\",\n    \"answer\": \"ski\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46371\",\n    \"key\": \"96807\",\n    \"description\": \"a jet ski is moving through the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nir5kizmPH1snmvsao1_250\",\n    \"question\": \"what is the color of the smoke?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23137\",\n    \"key\": \"429\",\n    \"description\": \"a black man wearing glasses is blowing white smoke from his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7twzBcFV1tboe07o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27430\",\n    \"key\": \"2938\",\n    \"description\": \"a guy in a black shirt is pointing at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvkf2BwN71u3ruqqo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45943\",\n    \"key\": \"19797\",\n    \"description\": \"a woman in sunglasses and a white dress is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1461ncLI1uyohjro1_500\",\n    \"question\": \"what is the girl tonguing and looking around the room?\",\n    \"answer\": \"straw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17260\",\n    \"key\": \"76025\",\n    \"description\": \"a girl is tonguing her drink straw and looking around the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_niml4vDdxa1s43pimo1_500\",\n    \"question\": \"how many guitarists are playing their guitars together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42499\",\n    \"key\": \"87715\",\n    \"description\": \"two guitarists are playing their guitars together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndo9mexi0q1tx8mn0o1_400\",\n    \"question\": \"what is the color of the motorcycle?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA778\",\n    \"key\": \"52724\",\n    \"description\": \"a red motorcycle flips its driver onto the tracks and slides into the grassy field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnu4rW2T61u4xw0zo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15939\",\n    \"key\": \"100584\",\n    \"description\": \"a woman with brown hair is walking down a corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwwflJurY1qc8e7lo1_400\",\n    \"question\": \"how many women are cuddling and kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49486\",\n    \"key\": \"66007\",\n    \"description\": \"two women are cuddling and kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2qlbUIlP1ttgu7yo1_400\",\n    \"question\": \"where is the person dancing around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32332\",\n    \"key\": \"12426\",\n    \"description\": \"a person in a room is dancing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazhbf8XPy1tigieto1_400\",\n    \"question\": \"what does the soccer team pass back and forth to score?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11619\",\n    \"key\": \"84938\",\n    \"description\": \"a soccer team passes the ball back and forth to score.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnhys0agY1tcltsqo1_400\",\n    \"question\": \"what is grooming the smaller monkey?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52657\",\n    \"key\": \"66216\",\n    \"description\": \"a big monkey is grooming a smaller monkey.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwl7ilxkz1tdmimho1_500\",\n    \"question\": \"how many young men are pressing their hands together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13068\",\n    \"key\": \"67810\",\n    \"description\": \"two young men are pressing their hands together.\"\n  },\n  {\n    \"video_name\": \"tumblr_najgdrKOWV1teiq60o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44485\",\n    \"key\": \"74304\",\n    \"description\": \"a man in black is holding a microphone and a woman is dancing up to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafnschGYZ1r8w2xvo1_400\",\n    \"question\": \"how many stupid women are fighting in their underwear?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9596\",\n    \"key\": \"13207\",\n    \"description\": \"Two stupid women are fighting in their underwear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nde98bVDhd1r21xqpo1_250\",\n    \"question\": \"what is the color of the puppet?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19487\",\n    \"key\": \"86043\",\n    \"description\": \"a blue puppet is closing a brown door.\"\n  },\n  {\n    \"video_name\": \"tumblr_npahm5k3YQ1ro0x7uo1_250\",\n    \"question\": \"what is the color of the object?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24275\",\n    \"key\": \"24987\",\n    \"description\": \"a man is petting a green object and putting it near his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_njh449BVt81u29slho1_500\",\n    \"question\": \"what is the young girl in a car adjusting?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52746\",\n    \"key\": \"87651\",\n    \"description\": \"a young girl in a car is adjusting her dark glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4ltbxUxw1roam4co1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13365\",\n    \"key\": \"86318\",\n    \"description\": \"a man wearing a gray jacket is staring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc31o8OdwG1qhq89to1_500\",\n    \"question\": \"what crashes head on into another vehicle?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17656\",\n    \"key\": \"58113\",\n    \"description\": \"a vehicle crashes head on into another vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkxhturUR1uxcyego1_400\",\n    \"question\": \"where are two men moving and singing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26451\",\n    \"key\": \"73594\",\n    \"description\": \"two men are moving and singing in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirnfzXfEK1t7y4nto2_400\",\n    \"question\": \"how many girls are walking along with the man and passing a piece of paper between them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12862\",\n    \"key\": \"50131\",\n    \"description\": \"two girls are walking along with a man and passing a piece of paper between them.\"\n  },\n  {\n    \"video_name\": \"tumblr_no75u4RtUx1tyncywo1_400\",\n    \"question\": \"what is running across the pavement into the house?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24220\",\n    \"key\": \"65382\",\n    \"description\": \"a black cat is running across the pavement into the house.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne13ygyzyP1t5ojzdo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3779\",\n    \"key\": \"6688\",\n    \"description\": \"a woman in all black is rolling down the aisle at a theater.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v6txFBWy1tc31mqo1_400\",\n    \"question\": \"what is walking down the sidewalk with its tongue out?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA107\",\n    \"key\": \"65105\",\n    \"description\": \"a dog is walking down a sidewalk with its tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc41z0R6O1tkmfumo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3413\",\n    \"key\": \"47223\",\n    \"description\": \"a man in a black suit looks up.\"\n  },\n  {\n    \"video_name\": \"tumblr_niqzj9bg5M1r1i417o1_500\",\n    \"question\": \"how many guitarists are playing music on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52971\",\n    \"key\": \"36921\",\n    \"description\": \"two guitarists are playing music on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncegncqlk21tkyo15o1_250\",\n    \"question\": \"where is the girl doing exercises.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11885\",\n    \"key\": \"76279\",\n    \"description\": \"a girl is doing exercises in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3x6m8etJ1u2lsxjo1_500\",\n    \"question\": \"how many girls are fighting each other in a lunch room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17772\",\n    \"key\": \"85880\",\n    \"description\": \"two girls are fighting each other in a lunch room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr8dmb0LK1upu5g5o1_250\",\n    \"question\": \"how many guys are putting there arms around each other and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11785\",\n    \"key\": \"7596\",\n    \"description\": \"two guys are putting there arms around each other and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam1sweE7I1twkbdko1_500\",\n    \"question\": \"what is the man playing and moving his body around?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6074\",\n    \"key\": \"60875\",\n    \"description\": \"a man is playing a piano and moving his body around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdrvlk5n11tl9e0co1_250\",\n    \"question\": \"what is the man,\",\n    \"answer\": \"wearing , pushes a melting ice cream into his mouth as some drops from his hand ? cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42162\",\n    \"key\": \"44094\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrz2b07y11rxj7ooo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21254\",\n    \"key\": \"2162\",\n    \"description\": \"the girl with black hair was walking down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf87a1ENfb1u25ovvo1_400\",\n    \"question\": \"what is running near the water well in a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32217\",\n    \"key\": \"63565\",\n    \"description\": \"a car is running near a water well in a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwevdfwXv1toyl9ro1_400\",\n    \"question\": \"what is doing tricks on his snowboard?\",\n    \"answer\": \"snowboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13018\",\n    \"key\": \"58540\",\n    \"description\": \"a snowboard is doing tricks on his snowboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gl73jiW11si92i8o1_500\",\n    \"question\": \"where is the guy speaking and touching his face.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43367\",\n    \"key\": \"12739\",\n    \"description\": \"a guy is speaking and touching his face in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_notz47rcwY1sq24x8o1_400\",\n    \"question\": \"where is the girl with blonde hair dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29881\",\n    \"key\": \"19107\",\n    \"description\": \"a girl with blonde hair is dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nds6ogu9QS1tsn7r7o1_400\",\n    \"question\": \"what is the color of the hats?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7874\",\n    \"key\": \"22067\",\n    \"description\": \"three girls wearing black hats walk forward together.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuk1huMBo1unlpflo1_400\",\n    \"question\": \"what sits on the sofa with a strange expression on its face?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46403\",\n    \"key\": \"63604\",\n    \"description\": \"a dog sits on a sofa with a strange expression on its face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9066tnq0A1tx8mn0o1_400\",\n    \"question\": \"what did the man drive around a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45194\",\n    \"key\": \"78618\",\n    \"description\": \"a man drove a red race car around a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97twqSx7R1s0j7iyo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19008\",\n    \"key\": \"71372\",\n    \"description\": \"a man wearing a black shirt is moving his head and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn0fjyZdU1u2oi1bo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39337\",\n    \"key\": \"63052\",\n    \"description\": \"a white man with black shirt is doing hands up.\"\n  },\n  {\n    \"video_name\": \"tumblr_njku6reaVI1u6ktjmo1_250\",\n    \"question\": \"what is rocking back and forth?\",\n    \"answer\": \"clown\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39390\",\n    \"key\": \"51889\",\n    \"description\": \"a toy clown is rocking back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagmqkc3IH1t24hnto1_400\",\n    \"question\": \"how many men are being interviewed and being to laugh?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44837\",\n    \"key\": \"77196\",\n    \"description\": \"two men are being interviewed and being to laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkulzveVZa1s2y2x1o1_250\",\n    \"question\": \"what is the man falling into a chair and smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9673\",\n    \"key\": \"77806\",\n    \"description\": \"a man is falling into a chair and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo67z0f8B1u1pokno1_400\",\n    \"question\": \"where is the girl jumping and doing rounds.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25253\",\n    \"key\": \"34164\",\n    \"description\": \"a girl is in a bed jumping and doing rounds in the air and falling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd59g8nitC1qjpmwio1_500\",\n    \"question\": \"what is biting some in a room?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31319\",\n    \"key\": \"43150\",\n    \"description\": \"a cat is biting some in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwsbaUqdU1tkqyuyo1_400\",\n    \"question\": \"how many girls with long dark hair are smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4359\",\n    \"key\": \"29743\",\n    \"description\": \"two girls with long dark hair are smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd91d84Ej81rwad3do1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30564\",\n    \"key\": \"76683\",\n    \"description\": \"a man in a black,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3xjjWRr51tdmffyo1_250\",\n    \"question\": \"where is the cat bouncing.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40950\",\n    \"key\": \"47903\",\n    \"description\": \"a cat is bouncing in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg3cseAxD1s47dt7o1_500\",\n    \"question\": \"how many men in white are hugging in front of a crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35817\",\n    \"key\": \"62539\",\n    \"description\": \"two men in white are hugging in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5poqix5U1tj1rafo1_400\",\n    \"question\": \"what is being opened and the contents are spilling out?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34934\",\n    \"key\": \"58535\",\n    \"description\": \"a box is being opened and the contents are spilling out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabb9j5rq71rw1wnno1_400\",\n    \"question\": \"what is jumping in the back of a dog?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20397\",\n    \"key\": \"69434\",\n    \"description\": \"a cute cat is jumping in the back of a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmd0bTfA01ts7wbfo1_400\",\n    \"question\": \"where are the group of men walking.\",\n    \"answer\": \"? garage\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41323\",\n    \"key\": \"87448\",\n    \"description\": \"a group of men are walking together in a parking garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng970sSWti1thldh3o1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9370\",\n    \"key\": \"38036\",\n    \"description\": \"a man in a yellow sports uniform thrust his hips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nawdliKwAp1tfcz5mo2_500\",\n    \"question\": \"what is the young woman with a sword performing?\",\n    \"answer\": \"cartwheel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46791\",\n    \"key\": \"56608\",\n    \"description\": \"a young woman with a sword is performing a cartwheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp324pRIa1tlea9go1_400\",\n    \"question\": \"how many girls pose and make faces together while they smile?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38921\",\n    \"key\": \"33695\",\n    \"description\": \"two girls pose and make faces together while they smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_naoyfvnSx51r8lgn6o1_500\",\n    \"question\": \"where is the man dancing.\",\n    \"answer\": \"? corridor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25749\",\n    \"key\": \"96569\",\n    \"description\": \"a man is dancing happily in a corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7oaXb1D1sj1td7o1_250\",\n    \"question\": \"what is trying to get into the tent?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49472\",\n    \"key\": \"19037\",\n    \"description\": \"a cat is trying to get into the tent.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngapyhHe7Y1sohuqmo1_250\",\n    \"question\": \"what is nibbling on the bunny rabbits ears?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22500\",\n    \"key\": \"36485\",\n    \"description\": \"a kitten is nibbling on a bunny rabbits ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney69ux4541u2hqlpo1_250\",\n    \"question\": \"what is the young man removing by pulling it over his head?\",\n    \"answer\": \"t-shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17796\",\n    \"key\": \"12295\",\n    \"description\": \"a young man is removing his gray t-shirt by pulling it over his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndg6m6C0nY1tdmffyo1_400\",\n    \"question\": \"what is walking through glass doors?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25434\",\n    \"key\": \"86974\",\n    \"description\": \"a horse is walking through glass doors.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzs6i5ro1u25ovvo1_400\",\n    \"question\": \"what is driving down the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16621\",\n    \"key\": \"63645\",\n    \"description\": \"the white car is driving down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7rlbB17h1tibxkwo1_r1_500\",\n    \"question\": \"what is the woman riding an escalator adjusts?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44341\",\n    \"key\": \"101504\",\n    \"description\": \"a woman riding an escalator adjusts her sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzgtdxyFO1u5hpvco1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15114\",\n    \"key\": \"53677\",\n    \"description\": \"a guy wearing a dark blue shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndd0liU8F51u0bmj8o1_250\",\n    \"question\": \"how many people are moving around together in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31572\",\n    \"key\": \"59662\",\n    \"description\": \"these two people are moving around together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndasm67IHk1tr5tuwo1_500\",\n    \"question\": \"where is the man racing down a strip.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11375\",\n    \"key\": \"49883\",\n    \"description\": \"a man in a car is racing down a strip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdu4fOWp81sbd2hxo1_500\",\n    \"question\": \"where does the boy look at a girl who looks back at him,\",\n    \"answer\": \"smiles , and turns away . ? classroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21399\",\n    \"key\": \"68078\",\n    \"description\": \"a boy in a classroom looks at a girl who looks back at him,\"\n  },\n  {\n    \"video_name\": \"tumblr_nap9tkwsHK1s50jqco1_250\",\n    \"question\": \"what is moving in circles while she stays on something?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50626\",\n    \"key\": \"50841\",\n    \"description\": \"a cat is moving in circles while she stays on something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk422ugqDv1qj7p4ho1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18287\",\n    \"key\": \"23642\",\n    \"description\": \"a girl in a red dress turned her head and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd73ono6M61tssk6do1_400\",\n    \"question\": \"what is the woman eating from a bowl?\",\n    \"answer\": \"popcorn\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA876\",\n    \"key\": \"33092\",\n    \"description\": \"the woman is eating popcorn from a bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncau65g1Vf1tcmvxuo1_500\",\n    \"question\": \"how many woman is this posing for a photo?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6434\",\n    \"key\": \"89216\",\n    \"description\": \"this is two woman posing for a photo.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy7o4JdmP1u2mi4fo1_400\",\n    \"question\": \"what is the man making on stage?\",\n    \"answer\": \"figure\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48966\",\n    \"key\": \"51173\",\n    \"description\": \"a man is making a balloon figure on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxnhePk1F1qeaeqco1_250\",\n    \"question\": \"what is the girl lifting with magic?\",\n    \"answer\": \"feather\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3337\",\n    \"key\": \"49050\",\n    \"description\": \"a girl is lifting a feather with magic.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95bh90s761tugubmo1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50798\",\n    \"key\": \"3745\",\n    \"description\": \"a boy wearing a green t-shirt and sunglasses is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6o125mhO1s2shh0o1_400\",\n    \"question\": \"how many girls is sitting on the floor and then get up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7802\",\n    \"key\": \"32759\",\n    \"description\": \"two girls sitting on the floor and then get up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nap9tkwsHK1s50jqco1_250\",\n    \"question\": \"what is wearing the shark costume while riding an automatic vacuum?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35071\",\n    \"key\": \"50841\",\n    \"description\": \"a cat is wearing a shark costume while riding an automatic vacuum.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbkzg243Sd1r2sl5ho1_400\",\n    \"question\": \"what is the young woman answering on the street?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30878\",\n    \"key\": \"37058\",\n    \"description\": \"a young woman is answering her phone on the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncko1cgtVl1rwkjivo1_400\",\n    \"question\": \"what is the squirrel biting a cat and it turns and attacks?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32138\",\n    \"key\": \"45420\",\n    \"description\": \"a squirrel is biting a cat and it turns and attacks another cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncecowzOHz1tky8vdo1_400\",\n    \"question\": \"how many women with long hair are running on a bridge?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18449\",\n    \"key\": \"76171\",\n    \"description\": \"two women with long hair are running on a bridge.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ott1a35b1tgkdkbo1_400\",\n    \"question\": \"what is knocking down rocks with air bubbles?\",\n    \"answer\": \"diver\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46172\",\n    \"key\": \"45417\",\n    \"description\": \"the scuba diver is knocking down rocks with air bubbles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7dbUQBA1t5z27go1_400\",\n    \"question\": \"how many people are dancing and clapping their hands in a car?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16361\",\n    \"key\": \"58848\",\n    \"description\": \"four people are dancing and clapping their hands in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelrob2YG41u32mywo1_250\",\n    \"question\": \"how many basketball players are having the discussion?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31541\",\n    \"key\": \"84517\",\n    \"description\": \"the two basketball players are having a discussion.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfpt91NJR1u4h7glo1_500\",\n    \"question\": \"how many men are standing together and doing different poses?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29589\",\n    \"key\": \"57449\",\n    \"description\": \"four men are standing together and doing different poses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowrymJVDJ1uumws9o1_250\",\n    \"question\": \"what is the man driving with a woman in the passenger seat?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29941\",\n    \"key\": \"43909\",\n    \"description\": \"a man is driving a convertible black car with a woman in the passenger seat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfci1eCnqd1u33ci0o1_400\",\n    \"question\": \"what is the person moving over some blocks of wood?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36390\",\n    \"key\": \"52870\",\n    \"description\": \"a person is moving a large machine over some blocks of wood.\"\n  },\n  {\n    \"video_name\": \"tumblr_npebl4xJIb1sczfc3o1_500\",\n    \"question\": \"how many women are kissing in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA878\",\n    \"key\": \"100521\",\n    \"description\": \"two women are kissing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_negf45USHl1u2j78co1_250\",\n    \"question\": \"what are the group of young people boarding?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11355\",\n    \"key\": \"2107\",\n    \"description\": \"a group of young people are boarding a plane.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauihwVLAC1s33orio1_500\",\n    \"question\": \"what is the color of the singer?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45154\",\n    \"key\": \"66636\",\n    \"description\": \"a black singer flails frantically as he sings to a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nocn6xpjWd1tjx27mo1_400\",\n    \"question\": \"what is the color of the male?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38749\",\n    \"key\": \"91632\",\n    \"description\": \"a white male with facial piercings puts the hood of his jacket on.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9o0vbrAQf1qedx60o1_500\",\n    \"question\": \"what is the young person with died blonde hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23296\",\n    \"key\": \"94470\",\n    \"description\": \"a young person with died blonde hair is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nex4xp2DL31slj978o1_250\",\n    \"question\": \"what stands up in the corner and pulls the curtain to hide himself?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11608\",\n    \"key\": \"3264\",\n    \"description\": \"a cat stands up in a corner and pulls the curtain to hide himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoz3heJia1tx8mn0o1_400\",\n    \"question\": \"how many race cars crash while racing on the race track?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6256\",\n    \"key\": \"21855\",\n    \"description\": \"two race cars crash while racing on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbktcer8TP1synqozo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22152\",\n    \"key\": \"93815\",\n    \"description\": \"a man in a black leather jacket is smiling artificially.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyh3iTJcd1tdjuqvo1_400\",\n    \"question\": \"what is the kangaroo playing and scratching himself?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34427\",\n    \"key\": \"10995\",\n    \"description\": \"a kangaroo is playing the air guitar and scratching himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_nao9dwfbWL1tbsc6ko1_500\",\n    \"question\": \"how many fingers is the man with tattoo in his body lifting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41999\",\n    \"key\": \"70936\",\n    \"description\": \"a man with tattoo in his body is lifting his two fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxa2eKWcV1salk6vo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29626\",\n    \"key\": \"66107\",\n    \"description\": \"a man in a blue shirt is screaming at a stuffed life sized rabbit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfk0cw83nY1tdmffyo1_250\",\n    \"question\": \"what is looking up under the glass table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35193\",\n    \"key\": \"3658\",\n    \"description\": \"a cat is looking up under a glass table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6g39be3f1trv4w5o1_400\",\n    \"question\": \"how many men stand beside the large,\",\n    \"answer\": \"white doll ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6058\",\n    \"key\": \"48560\",\n    \"description\": \"two men stand beside a large,\"\n  },\n  {\n    \"video_name\": \"tumblr_narl33GzW21tecyy7o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31480\",\n    \"key\": \"19943\",\n    \"description\": \"a man in black suit is scratching near his nose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx12yL0PW1r6pekco1_250\",\n    \"question\": \"how many men is this hugging on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42977\",\n    \"key\": \"19311\",\n    \"description\": \"this is two men hugging on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndm302Gvzr1srpy25o1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13638\",\n    \"key\": \"56698\",\n    \"description\": \"a brown horse blinks and then looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_npahm5k3YQ1ro0x7uo1_250\",\n    \"question\": \"what is the man wearing headphones is kissing?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35720\",\n    \"key\": \"24987\",\n    \"description\": \"a man wearing headphones is kissing a toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc791vTJcs1rmvc6mo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30186\",\n    \"key\": \"33318\",\n    \"description\": \"a girl wearing a black hat is making a scary face.\"\n  },\n  {\n    \"video_name\": \"tumblr_npqkeicVyS1urit4io1_500\",\n    \"question\": \"where is the girl with dark hair dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36488\",\n    \"key\": \"60167\",\n    \"description\": \"a girl with dark hair is dancing in her room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96o5dqttH1qha21xo1_500\",\n    \"question\": \"where are two people rolling around.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47606\",\n    \"key\": \"88139\",\n    \"description\": \"two people are rolling around in bed together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nel4t7kzLa1sk7iiyo1_250\",\n    \"question\": \"how many comedians are performing in the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18158\",\n    \"key\": \"9547\",\n    \"description\": \"two comedians are performing in a stage and one of them make fun of the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4vryXuiR1u9o6qbo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12050\",\n    \"key\": \"19008\",\n    \"description\": \"a woman dressed in black is smiling afterwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevmlnaUJr1tdmffyo1_400\",\n    \"question\": \"what jumps off the ledge then walks behind a tree?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41821\",\n    \"key\": \"8464\",\n    \"description\": \"a baby goat jumps off a ledge then walks behind a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vvflvDJG1r4g57go1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37777\",\n    \"key\": \"50241\",\n    \"description\": \"a woman in a white shirt and sunglasses is waving to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dxxv9ONq1sk96t7o1_400\",\n    \"question\": \"what is the cat tied up with a white dog and is scared?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2556\",\n    \"key\": \"59286\",\n    \"description\": \"a cat is tied up with a white dog and the cat is scared.\"\n  },\n  {\n    \"video_name\": \"tumblr_npqo3gqPc91rtl9udo1_400\",\n    \"question\": \"how many girls is this hugging and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3614\",\n    \"key\": \"84980\",\n    \"description\": \"this is two girls hugging and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp0k4W1RF1u63djdo1_250\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7499\",\n    \"key\": \"53422\",\n    \"description\": \"a figure in a red hat and white clothes is spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nem8gpQBGp1tmo3g8o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12764\",\n    \"key\": \"60002\",\n    \"description\": \"a woman in a white dress and a man in a cowboy hat are addressing the audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_npvj0dWS9A1tpg4boo1_400\",\n    \"question\": \"what is on top of a box containing a kitten?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17674\",\n    \"key\": \"27950\",\n    \"description\": \"a rabbit is on top of a box containing a kitten.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9q9ktUtOe1sncaa3o1_400\",\n    \"question\": \"what did cars race through a racetrack race?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1813\",\n    \"key\": \"54013\",\n    \"description\": \"cars race through a racetrack raced race cars.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfqoyfh3sz1u25ovvo1_400\",\n    \"question\": \"what is driving down the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA662\",\n    \"key\": \"63597\",\n    \"description\": \"the gray car is driving down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqgktCjAl1tlq7xdo1_400\",\n    \"question\": \"what is the young woman having done?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6240\",\n    \"key\": \"77095\",\n    \"description\": \"a young woman is having her makeup done.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90lo4ayHL1trm2z1o1_250\",\n    \"question\": \"how many young man are having fun laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27243\",\n    \"key\": \"51359\",\n    \"description\": \"the two young man are having fun laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sho7J99O1tggdauo1_400\",\n    \"question\": \"how many men are having the fun conversation?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52916\",\n    \"key\": \"14816\",\n    \"description\": \"three men are having a fun conversation.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xlvd72vz1teon97o1_250\",\n    \"question\": \"what is the woman taking from a tiny glass?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23381\",\n    \"key\": \"16683\",\n    \"description\": \"a woman is taking a drink from a tiny glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnsnziHoXc1ro4jalo1_500\",\n    \"question\": \"where is a family.\",\n    \"answer\": \"? tub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16104\",\n    \"key\": \"91305\",\n    \"description\": \"this is a family of six in a hot tub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmdfo7AD41u4txqeo1_250\",\n    \"question\": \"what jumped off the couch and walked to the door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2351\",\n    \"key\": \"10556\",\n    \"description\": \"the cat jumped off the couch and walked to the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyr5ynnyZ1u832tco1_500\",\n    \"question\": \"how many guys is singing and dancing in the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47488\",\n    \"key\": \"89096\",\n    \"description\": \"two guys is singing and dancing in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkoql9zof1uwhtsjo1_250\",\n    \"question\": \"what is the color of the sunglasses?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28590\",\n    \"key\": \"35472\",\n    \"description\": \"the girl is wearing a white sunglasses and holding a glass on her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfaqctqMXx1u28t0lo1_250\",\n    \"question\": \"how many people play with each other 's hair and smile?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44777\",\n    \"key\": \"5364\",\n    \"description\": \"two people play with each other 's hair and smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_np62ekg9ZP1ta8o4no1_250\",\n    \"question\": \"how many guys are performing their music show in the stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7031\",\n    \"key\": \"57708\",\n    \"description\": \"three guys are performing their music show in the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_najdllMh1q1t0xoqgo1_250\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3530\",\n    \"key\": \"40742\",\n    \"description\": \"a guy with black glasses is running in a motorcycle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1888Z7Rf1soxppho1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50534\",\n    \"key\": \"34516\",\n    \"description\": \"a man in a black suit and tie turns turned around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nddhjyJeIU1qfvfmto1_500\",\n    \"question\": \"where is the girl watching some.\",\n    \"answer\": \"? hall\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA420\",\n    \"key\": \"72358\",\n    \"description\": \"a girl is watching some in a hall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9b2510ZPL1rx90qpo1_250\",\n    \"question\": \"how many men are turning their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27040\",\n    \"key\": \"38426\",\n    \"description\": \"the two men are turning their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9c03vG9GB1tyeuq0o1_250\",\n    \"question\": \"what is hissing while standing on the person 's knee?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19822\",\n    \"key\": \"27241\",\n    \"description\": \"a gray cat is hissing while standing on a person 's knee.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90hf0rDEo1t0ojyvo1_250\",\n    \"question\": \"what are two men making with their hands?\",\n    \"answer\": \"signs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36281\",\n    \"key\": \"25494\",\n    \"description\": \"two men are making fake gun signs with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngdq4bTF1K1u4q8jjo1_500\",\n    \"question\": \"what is the color of the bangs?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26312\",\n    \"key\": \"91814\",\n    \"description\": \"a boy with black bangs is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqw2fXCTZ1rlpvdxo1_250\",\n    \"question\": \"what is the guy wearing blue playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20703\",\n    \"key\": \"16218\",\n    \"description\": \"a guy wearing blue is playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsmqbZ9tQ1t1nk7eo1_400\",\n    \"question\": \"where does the girl in glasses smile looks.\",\n    \"answer\": \"? classroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37705\",\n    \"key\": \"60946\",\n    \"description\": \"a girl in glasses smiles looks sideways in classroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknr9xW0hU1u922jno2_400\",\n    \"question\": \"how many dancer with black hair are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40398\",\n    \"key\": \"78072\",\n    \"description\": \"two dancer with black hair are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffjb8ayhY1tw8vf9o1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46780\",\n    \"key\": \"14879\",\n    \"description\": \"a woman wearing a black hat is lifting weights.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98gksRLsF1tv6chqo1_500\",\n    \"question\": \"where is the man talking.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4933\",\n    \"key\": \"19027\",\n    \"description\": \"the man in the car is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nijrydrPVc1rtzdq7o1_400\",\n    \"question\": \"what tries to reach for biscuit before bigger one eats it?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21762\",\n    \"key\": \"94791\",\n    \"description\": \"small dog tries to reach for biscuit before bigger one eats it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nasp5mc5s41tx8mn0o1_400\",\n    \"question\": \"what is driving fast on the road and crashes into some plants?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3830\",\n    \"key\": \"55618\",\n    \"description\": \"a car is driving fast on a road and crashes into some plants.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmvfrXqDL1tzhdnfo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31458\",\n    \"key\": \"66381\",\n    \"description\": \"a white man is demonstrating with the sword.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbov37iDaw1s3sl66o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23056\",\n    \"key\": \"16145\",\n    \"description\": \"a man with brown hair is blinking his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr302wD1d1s3xft0o1_400\",\n    \"question\": \"what is the guy wearing and smoking a cigarette?\",\n    \"answer\": \"scarf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8483\",\n    \"key\": \"66391\",\n    \"description\": \"a guy is wearing a scarf and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_njs6ceesFH1tll6f9o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10909\",\n    \"key\": \"67344\",\n    \"description\": \"the man in the white shirt is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafuzveLwl1tjrkd0o1_400\",\n    \"question\": \"what is the color of the bandanna?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6541\",\n    \"key\": \"37513\",\n    \"description\": \"the man in the white bandanna is pointing and looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_no00ddSlG31t34v14o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5617\",\n    \"key\": \"81154\",\n    \"description\": \"a huge man wearing a green suit knocks down a man wearing red pants.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrifz9OHXA1r7dalho1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36596\",\n    \"key\": \"57761\",\n    \"description\": \"a guy wearing a white tee shirt and jeans,\"\n  },\n  {\n    \"video_name\": \"tumblr_ng07waiEct1rscvico1_400\",\n    \"question\": \"how many guys in suits are spinning around?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22088\",\n    \"key\": \"11346\",\n    \"description\": \"five guys in suits are spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9al1mawYK1thcwtbo1_500\",\n    \"question\": \"what is holding the big panda?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20651\",\n    \"key\": \"70761\",\n    \"description\": \"a baby panda is holding a big panda.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcdp9qa9l1raaknro1_500\",\n    \"question\": \"what is talking to the rock singer with a large butt?\",\n    \"answer\": \"singer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26107\",\n    \"key\": \"56535\",\n    \"description\": \"a rock singer is talking to a rock singer with a large butt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nea5lyH6TK1rp9kgfo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14200\",\n    \"key\": \"70876\",\n    \"description\": \"a pale,\"\n  },\n  {\n    \"video_name\": \"tumblr_nafggj6YFG1sinpl8o1_400\",\n    \"question\": \"what are two people sitting down and someone else enters?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40585\",\n    \"key\": \"28298\",\n    \"description\": \"two people are sitting down and someone else enters the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g8pk1fkR1tevldxo1_400\",\n    \"question\": \"where is the guy touching other guys.\",\n    \"answer\": \"? airplane\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47448\",\n    \"key\": \"30581\",\n    \"description\": \"a guy is touching other guys in a plane.\"\n  },\n  {\n    \"video_name\": \"tumblr_nggyen6SeD1r1esw8o1_500\",\n    \"question\": \"what are driving the road in the dark?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26722\",\n    \"key\": \"67210\",\n    \"description\": \"cars are driving the road in the dark.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxep6N7nq1td6onfo1_500\",\n    \"question\": \"what is the person hitting with a baseball bat?\",\n    \"answer\": \"floor\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28527\",\n    \"key\": \"52854\",\n    \"description\": \"a person is hitting the floor with a baseball bat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhfz9U1go1tghqjmo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51365\",\n    \"key\": \"87917\",\n    \"description\": \"a man is a blue shirt is talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3sk8Rk081u8orsuo1_250\",\n    \"question\": \"what slides on the ice as he runs?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11953\",\n    \"key\": \"36559\",\n    \"description\": \"a baby polar bear slides on the ice as he runs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni05so1zMe1qagkngo1_500\",\n    \"question\": \"what is the person taking off while singing and dancing?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37069\",\n    \"key\": \"54924\",\n    \"description\": \"a person is taking off his jacket while singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhz8czNPjn1qeereko1_1280\",\n    \"question\": \"where is the guy with a cap walking.\",\n    \"answer\": \"? hall\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5560\",\n    \"key\": \"93001\",\n    \"description\": \"a guy with a cap is walking in a hall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lbia4caa1swt5n8o1_500\",\n    \"question\": \"how many guys are sitting together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4807\",\n    \"key\": \"92188\",\n    \"description\": \"two guys are sitting together and one starts dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlj7u9svNG1s6zpepo1_400\",\n    \"question\": \"what is shot beside the laptop?\",\n    \"answer\": \"cannon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10102\",\n    \"key\": \"82818\",\n    \"description\": \"a toy cannon is shot beside a laptop.\"\n  },\n  {\n    \"video_name\": \"tumblr_neygedcDOt1tkhxdko1_400\",\n    \"question\": \"what does the cat smell?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5486\",\n    \"key\": \"46613\",\n    \"description\": \"a cat smells an iguana 's tail as the iguana eats.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rqi06djV1rnn3cno1_250\",\n    \"question\": \"what is the man standing over a bike and rubbing?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16837\",\n    \"key\": \"23051\",\n    \"description\": \"a man is standing over a bike and rubbing his butt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbd6mxxR7M1t5ojzdo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7386\",\n    \"key\": \"17389\",\n    \"description\": \"a girl in a black top with black hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndp1ysrClu1trkb77o1_500\",\n    \"question\": \"how many young boys are standing together and laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20851\",\n    \"key\": \"97264\",\n    \"description\": \"three young boys are standing together and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfm146v67f1u44rezo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40840\",\n    \"key\": \"63307\",\n    \"description\": \"a man wearing a black jacket is throwing a picture to the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bfkffhAg1tf2whho1_400\",\n    \"question\": \"where are the group of young people singing.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42757\",\n    \"key\": \"18627\",\n    \"description\": \"a group of young people are singing in a subway car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghnsy9tub1skqoaho1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50181\",\n    \"key\": \"62925\",\n    \"description\": \"a white man with white shirt is surprised with pie in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_naef7gYw6B1tjr73vo1_400\",\n    \"question\": \"how many girls are laughing and smiling while pretending to scare someone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10136\",\n    \"key\": \"22030\",\n    \"description\": \"two girls are laughing and smiling while pretending to scare someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6i6uP4kE1s5svyno1_500\",\n    \"question\": \"what are two women pulling off?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15912\",\n    \"key\": \"93850\",\n    \"description\": \"two women are pulling off a mans jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxbfztqER1tzhdamo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44080\",\n    \"key\": \"85634\",\n    \"description\": \"a beautiful man with red jacket is jumping and pointing at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyo842ZhQ1sonpgjo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34880\",\n    \"key\": \"30297\",\n    \"description\": \"an old,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdro9plFr1tfri6co1_400\",\n    \"question\": \"how many men are talking and touching each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5306\",\n    \"key\": \"19670\",\n    \"description\": \"two men are talking and touching each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndv4idx5Wc1tgmz7do1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26396\",\n    \"key\": \"95415\",\n    \"description\": \"the guy with the white shirt is singing a song.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4zqx8sRJ1tdjuqvo1_250\",\n    \"question\": \"what is walking on the carpet in a room?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39724\",\n    \"key\": \"74416\",\n    \"description\": \"a dog is walking on a carpet in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0xuomYVF1uqy5dho1_250\",\n    \"question\": \"what is shooting water from its trunk?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18984\",\n    \"key\": \"82672\",\n    \"description\": \"a baby elephant is shooting water from its trunk.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8v942Cw1q1r6654qo1_500\",\n    \"question\": \"what is addressing the crowd from the stage?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17163\",\n    \"key\": \"5914\",\n    \"description\": \"a pop star is addressing the crowd from the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2gmq8jhM1si8uq7o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23646\",\n    \"key\": \"31244\",\n    \"description\": \"a man in a black shirt is smoking a joint.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj0b4qFmm1tk9c2ao1_400\",\n    \"question\": \"what is the man wearing a white tee shirt is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32769\",\n    \"key\": \"4727\",\n    \"description\": \"a man wearing a white tee shirt is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwwwj2mvE1u0x47zo1_500\",\n    \"question\": \"what did the woman jumps and catches catch?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12798\",\n    \"key\": \"76825\",\n    \"description\": \"a woman jumps and catches caught a ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh26ktHkqQ1sffyevo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43699\",\n    \"key\": \"85444\",\n    \"description\": \"woman with purple suit is dancing on scenery.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx3goKTK71t0ojyvo1_400\",\n    \"question\": \"what is the boy pulling down inappropriately?\",\n    \"answer\": \"pants\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25916\",\n    \"key\": \"8463\",\n    \"description\": \"a boy is pulling his pants down inappropriately.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vz1u2IKj1tz9jaqo1_400\",\n    \"question\": \"what is the soccer player kicking?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1942\",\n    \"key\": \"96194\",\n    \"description\": \"a soccer player is kicking the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5z1ajZzd1rwipr5o1_r1_250\",\n    \"question\": \"what is the girl juggling and dropping them?\",\n    \"answer\": \"balls\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2222\",\n    \"key\": \"27736\",\n    \"description\": \"a girl is juggling black balls and dropping them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabzy4yOL81tsxh57o1_400\",\n    \"question\": \"what is the very cute man with short hair throwing?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38032\",\n    \"key\": \"50858\",\n    \"description\": \"a very cute man with short hair is throwing a ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkc0sh9Q61us2u6eo1_500\",\n    \"question\": \"what is the young woman chewing gum blowing with the gum?\",\n    \"answer\": \"bubble\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31695\",\n    \"key\": \"62422\",\n    \"description\": \"a young woman chewing gum is blowing a bubble with the gum.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyhhgTo8b1tw2zo1o1_400\",\n    \"question\": \"how many men are attempting to row the boat across a lake?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43440\",\n    \"key\": \"50150\",\n    \"description\": \"three men are attempting to row a boat across a lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoe512UyJ1ta4f2po1_500\",\n    \"question\": \"where is the man wearing headphones is laughing.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40143\",\n    \"key\": \"86852\",\n    \"description\": \"a man wearing headphones is laughing in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobecu8wyv1s5cww5o1_400\",\n    \"question\": \"what is two lovers taking off with kissing?\",\n    \"answer\": \"cloth\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6662\",\n    \"key\": \"63193\",\n    \"description\": \"two lovers is taking off their cloth with kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivk6uk2XY1u9wwjjo1_500\",\n    \"question\": \"what is the color of the robot?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17003\",\n    \"key\": \"91309\",\n    \"description\": \"a white robot is scanning upside down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nec1h2hsBk1rlqu38o1_500\",\n    \"question\": \"what is the color of the skin?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23867\",\n    \"key\": \"40075\",\n    \"description\": \"a witch with green skin and black clothes is flying on a broomstick.\"\n  },\n  {\n    \"video_name\": \"tumblr_npxgumJwdE1ros9sso1_250\",\n    \"question\": \"what is pointing at herself and dancing along?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40111\",\n    \"key\": \"2010\",\n    \"description\": \"a pop star is pointing at herself and dancing along.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq36cclrEn1uvp3zyo1_500\",\n    \"question\": \"what is the woman in a red room adjusting?\",\n    \"answer\": \"clothing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36071\",\n    \"key\": \"34462\",\n    \"description\": \"a woman in a red room is adjusting her clothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_net9msbsuS1r0c0rjo1_400\",\n    \"question\": \"how many men are dancing in the row?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5011\",\n    \"key\": \"5132\",\n    \"description\": \"three men are dancing in a row.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczp2qvU8V1tsq7wxo1_400\",\n    \"question\": \"what is the woman wearing and rubbing her hands with a tissue?\",\n    \"answer\": \"serviette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23071\",\n    \"key\": \"32744\",\n    \"description\": \"a woman is wearing a serviette and rubbing her hands with a tissue.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8b6xSueH1u5s6sso1_500\",\n    \"question\": \"how many women are dancing and singing in the club with fancy lighting?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14773\",\n    \"key\": \"33941\",\n    \"description\": \"three women are dancing and singing in a club with fancy lighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1ldtCFnm1rcnyh1o1_540\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32386\",\n    \"key\": \"46123\",\n    \"description\": \"a girl with red hair is dancing with a girl with black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6o125mhO1s2shh0o1_400\",\n    \"question\": \"how many girls are playing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33429\",\n    \"key\": \"32759\",\n    \"description\": \"two girls are playing and one scares another and runs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbc8vzATx1s6zpepo1_400\",\n    \"question\": \"what is this unloading a boat into a lake?\",\n    \"answer\": \"truck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26812\",\n    \"key\": \"87125\",\n    \"description\": \"this is an exotic truck unloading a boat into a lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs5palRjX1ro5rv7o1_400\",\n    \"question\": \"how many men are standing back to back in the circle?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16382\",\n    \"key\": \"58317\",\n    \"description\": \"two men are standing back to back in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fvulP7Wu1sh5rgdo1_500\",\n    \"question\": \"how many men laugh and then one says shut up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17268\",\n    \"key\": \"45880\",\n    \"description\": \"two men laugh and then one says shut up.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lt3cvvy61trvs7go1_400\",\n    \"question\": \"how many people is touching each others head looking angry?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28495\",\n    \"key\": \"57272\",\n    \"description\": \"two people touching each others head looking angry.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj458883cd1qdn0lqo1_500\",\n    \"question\": \"how many wolves are clinging on to the man?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40606\",\n    \"key\": \"48918\",\n    \"description\": \"two wolves are clinging on to a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzu0gm7Tt1u9be15o1_500\",\n    \"question\": \"how many girls walk with their hands parallel to the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2997\",\n    \"key\": \"41484\",\n    \"description\": \"two girls walk with their hands parallel to the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2hv8gSF11tkxs3fo1_400\",\n    \"question\": \"what is the girl or boy wearing and sitting in front of a map?\",\n    \"answer\": \"wig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40085\",\n    \"key\": \"28460\",\n    \"description\": \"a girl or boy is wearing a wig and sitting in front of a map.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rm0wQ5KP1thg4lco1_400\",\n    \"question\": \"how many guys is this image of playing and having fun?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32740\",\n    \"key\": \"33455\",\n    \"description\": \"this image is of two guys playing and having fun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkulv7z8YZ1tzejvio1_400\",\n    \"question\": \"where are the young couple kissing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46718\",\n    \"key\": \"97507\",\n    \"description\": \"a young couple are kissing in a crowed room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na17ppTVng1tn4oroo1_500\",\n    \"question\": \"how many women wink at each other while sitting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA53047\",\n    \"key\": \"89162\",\n    \"description\": \"two women wink at each other while sitting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba7mrIRaG1te5fy0o1_500\",\n    \"question\": \"what is being stroked by the girl with brown hair?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52140\",\n    \"key\": \"79432\",\n    \"description\": \"the cat is being stroked by a girl with brown hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_neostvxdgZ1s3urzuo1_250\",\n    \"question\": \"what is the man wearing and putting his hands to his cheeks?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21261\",\n    \"key\": \"15575\",\n    \"description\": \"a man is wearing glasses and putting his hands to his cheeks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngo9zfHkp61qixslso1_400\",\n    \"question\": \"what is the dog bringing and then stepping back?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27774\",\n    \"key\": \"13941\",\n    \"description\": \"a dog is bringing a toy and then stepping back.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndumiurqqk1rt9tego1_400\",\n    \"question\": \"what is the color of the trunks?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23700\",\n    \"key\": \"24602\",\n    \"description\": \"someone riding the waves is wearing red swimming trunks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8urd6PMiY1tgkdkbo1_400\",\n    \"question\": \"what pops up making the cat jump off the stool and knocking it over?\",\n    \"answer\": \"toast\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29379\",\n    \"key\": \"74900\",\n    \"description\": \"the toast pops up making the cat jump off the stool and knocking it over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckmwntNmv1qj7ylio1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5881\",\n    \"key\": \"15976\",\n    \"description\": \"a man in yellow shirt is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrv41jHnK1rlowhpo1_400\",\n    \"question\": \"how many professional wrestlers hit the mat at the same time?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25612\",\n    \"key\": \"63063\",\n    \"description\": \"two professional wrestlers hit the mat at the same time.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3j88dsbs1u5hfl4o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31824\",\n    \"key\": \"15280\",\n    \"description\": \"a curly haired woman in a green dress is rubbing her arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wgisVPCk1tfioy3o1_500\",\n    \"question\": \"how many man is tackling another man on a stage?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49399\",\n    \"key\": \"92536\",\n    \"description\": \"one man is tackling another man on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97k6nnj3K1tbjfazo1_400\",\n    \"question\": \"what is tapping the cat on the nose with its beak?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48684\",\n    \"key\": \"34099\",\n    \"description\": \"a bird is tapping a cat on the nose with its beak.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9ijld2mu1rqb3bqo1_250\",\n    \"question\": \"where is the man walking backwards.\",\n    \"answer\": \"? kit\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49898\",\n    \"key\": \"9555\",\n    \"description\": \"a man in white soccer kit is walking backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3w76eSSb1u28yp1o1_500\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48587\",\n    \"key\": \"48570\",\n    \"description\": \"a woman in a white scarf is speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8v50LnUt1tk2ngvo1_500\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27809\",\n    \"key\": \"78064\",\n    \"description\": \"a black and white cat is upsetting a grey cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qwatWy9m1slj978o1_400\",\n    \"question\": \"what are jumping onto the large blue cushion?\",\n    \"answer\": \"bats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43408\",\n    \"key\": \"73992\",\n    \"description\": \"white bats are jumping onto a large blue cushion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguizjs4Pa1u5hpeio1_250\",\n    \"question\": \"where is the man laying smoking a cigarette.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50539\",\n    \"key\": \"21210\",\n    \"description\": \"the man is laying in bed smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mzyvftsL1the8uso1_400\",\n    \"question\": \"what is walking on the treadmill towards food?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12220\",\n    \"key\": \"46051\",\n    \"description\": \"a cat is walking on a treadmill towards food.\"\n  },\n  {\n    \"video_name\": \"tumblr_naid7nj0Ad1tc51qlo1_1280\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1615\",\n    \"key\": \"62137\",\n    \"description\": \"a black man is smiling,\"\n  },\n  {\n    \"video_name\": \"tumblr_nafjr4e15v1rdl60ao1_500\",\n    \"question\": \"what is someone strumming with a plectrum?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8487\",\n    \"key\": \"72562\",\n    \"description\": \"someone is strumming an acoustic guitar with a plectrum.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9it4hQnrt1sl5c6po1_250\",\n    \"question\": \"what is the man wearing and smiling?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15558\",\n    \"key\": \"24428\",\n    \"description\": \"the man is wearing a big black coat and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_naekrosZth1s2zgxfo1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30655\",\n    \"key\": \"72270\",\n    \"description\": \"a woman in a black coat is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfny96oDYU1sefjuxo2_500\",\n    \"question\": \"how many male athletes are hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48620\",\n    \"key\": \"53018\",\n    \"description\": \"two male athletes are hugging each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_n7f2kzhB2U1svxaato1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21970\",\n    \"key\": \"1017\",\n    \"description\": \"the man in white is doing a difficult workout routine.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlsgkqiHFM1rmkrcqo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8852\",\n    \"key\": \"48135\",\n    \"description\": \"a man with gray jacket is singing and crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyt6qiuFP1uqboh1o1_500\",\n    \"question\": \"where is the girl asleep and a guy turns on the water.\",\n    \"answer\": \"? shower\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32020\",\n    \"key\": \"38556\",\n    \"description\": \"a girl is asleep in shower and a guy turns on the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfv8pOFQ91r3s7e9o1_400\",\n    \"question\": \"how many young woman are posing together and smiling?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3374\",\n    \"key\": \"4875\",\n    \"description\": \"four young woman are posing together and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ucnlmCk51qzxorvo1_250\",\n    \"question\": \"what is the person in a red shirt drinking?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52873\",\n    \"key\": \"9249\",\n    \"description\": \"a person in a red shirt is drinking a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_njykg3xiBN1u85shpo1_1280\",\n    \"question\": \"how many men is wearing dark outfits with dark hair look down?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20975\",\n    \"key\": \"96950\",\n    \"description\": \"five men wearing dark outfits with dark hair look down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc722sHNRh1tpdn69o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32545\",\n    \"key\": \"30028\",\n    \"description\": \"a boy with black shirt is showing off his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhy3t8q7sF1sbjgb9o1_500\",\n    \"question\": \"what is yawning while being scratched on the head?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3204\",\n    \"key\": \"73834\",\n    \"description\": \"the brown dog is yawning while being scratched on the head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbv1p9aCuo1tahfdeo1_250\",\n    \"question\": \"what is the woman walking on a leash and it attacks a dog?\",\n    \"answer\": \"bobcat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52752\",\n    \"key\": \"44809\",\n    \"description\": \"a woman is walking a small bobcat on a leash and it attacks a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_new5vfefZx1sdc1qco1_400\",\n    \"question\": \"how many men look at each other in the night time?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14093\",\n    \"key\": \"98609\",\n    \"description\": \"two men look at each other in the night time.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfkopzxSre1tg9gzmo1_500\",\n    \"question\": \"what is the color of the water?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11808\",\n    \"key\": \"21744\",\n    \"description\": \"a man is drowning under the blue water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uscu0MKn1tdve1no1_r1_500\",\n    \"question\": \"where are the two men singing and dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4506\",\n    \"key\": \"68564\",\n    \"description\": \"the two men are singing and dancing in a living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl72mqPLe1rvltxro1_500\",\n    \"question\": \"how many people are dancing on stage and someone is playing guitar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11085\",\n    \"key\": \"23929\",\n    \"description\": \"two people are dancing on stage and someone is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0sftU2oI1sgc1txo1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10822\",\n    \"key\": \"1442\",\n    \"description\": \"a small brown dog is looking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4wp15M1R1sht3fmo1_250\",\n    \"question\": \"what does someone intricately carve into a watermelon?\",\n    \"answer\": \"flower\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4936\",\n    \"key\": \"73936\",\n    \"description\": \"someone intricately carves a flower into a watermelon.\"\n  },\n  {\n    \"video_name\": \"tumblr_niw20xqfYh1qjzq4lo1_400\",\n    \"question\": \"where are two guys sitting and watching some.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49081\",\n    \"key\": \"81088\",\n    \"description\": \"two guys are sitting and watching some in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_neib4lKN3B1tvs3k8o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42063\",\n    \"key\": \"81920\",\n    \"description\": \"a man in a white shirt is walking through a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkkxw1MIR1uxae7wo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34503\",\n    \"key\": \"34271\",\n    \"description\": \"a person in a white suit is examining a dead body.\"\n  },\n  {\n    \"video_name\": \"tumblr_nri0fojp0G1tx8mn0o1_400\",\n    \"question\": \"what is driving off of the race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52290\",\n    \"key\": \"55938\",\n    \"description\": \"a blue and yellow race car is driving off of the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w0qiOHm51sic5d1o1_250\",\n    \"question\": \"what is the color of the talks?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37365\",\n    \"key\": \"49816\",\n    \"description\": \"a girl in white talks and then rolls her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklbtrCvpF1trhvavo1_400\",\n    \"question\": \"what is the chef creating?\",\n    \"answer\": \"griddle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10530\",\n    \"key\": \"63242\",\n    \"description\": \"a chef is creating a pancake griddle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngoamhBq8M1t9h1yfo1_400\",\n    \"question\": \"what is the man playing and moving around?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21424\",\n    \"key\": \"18158\",\n    \"description\": \"a man is playing a guitar and moving around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp552aW7o1sksdxao3_400\",\n    \"question\": \"how many women dressed in nuns clothing are at the table?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3670\",\n    \"key\": \"92179\",\n    \"description\": \"three women dressed in nuns clothing are at the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xa4psLDY1sb7v5lo1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18594\",\n    \"key\": \"70371\",\n    \"description\": \"a black horse is walking outside in the nature.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8w0sTSKh1t85yovo1_400\",\n    \"question\": \"where does the young girl smile while putting her arms in the air.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23687\",\n    \"key\": \"33613\",\n    \"description\": \"a young girl in her bedroom smiles while putting her arms in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtkw6qmuL1u6pwr8o2_r2_500\",\n    \"question\": \"how many guys is wearing headphones are performing on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49331\",\n    \"key\": \"86491\",\n    \"description\": \"two guys wearing headphones are performing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcvis8jts1tbcrm5o1_250\",\n    \"question\": \"what was the black bunny rabbit eating?\",\n    \"answer\": \"leaves\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9371\",\n    \"key\": \"3820\",\n    \"description\": \"a black bunny rabbit was eating lettuce leaves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nra6g5KAfA1usnj8do1_400\",\n    \"question\": \"how many girls are drinking something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46006\",\n    \"key\": \"82926\",\n    \"description\": \"two girls are drinking something and one is leaving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx4zeo6jf1skxa1uo1_250\",\n    \"question\": \"what is the girl with the long dark hair wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24431\",\n    \"key\": \"42730\",\n    \"description\": \"the girl with the long dark hair is wearing a green hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncko1cgtVl1rwkjivo1_400\",\n    \"question\": \"what jumps and scares an orange cat?\",\n    \"answer\": \"squirrel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2497\",\n    \"key\": \"45420\",\n    \"description\": \"a squirrel jumps and scares an orange cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nntolgMF0D1tyncywo1_250\",\n    \"question\": \"where is the black cat lying and playing with a round object.\",\n    \"answer\": \"? box\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20805\",\n    \"key\": \"53460\",\n    \"description\": \"a black cat is lying in a box and playing with a round object.\"\n  },\n  {\n    \"video_name\": \"tumblr_na27jm6QiN1rikxpmo1_400\",\n    \"question\": \"what are thunder and lightning lighting up?\",\n    \"answer\": \"sky\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42810\",\n    \"key\": \"59204\",\n    \"description\": \"thunder and lightning are lighting up the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgjsaoPTt1u1pokno1_500\",\n    \"question\": \"what does the man throw at someone in a costume but it bounces back and hits him instead?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7367\",\n    \"key\": \"100084\",\n    \"description\": \"a man throws a white ball at someone in a costume but it bounces back and hits him instead.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9wdl32Aq1slj978o1_400\",\n    \"question\": \"what is the color of the bag?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12531\",\n    \"key\": \"52029\",\n    \"description\": \"a brown and white cat is walking backward,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1zj9jxie1u2leaoo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39675\",\n    \"key\": \"98126\",\n    \"description\": \"a man with glasses is talking to a black man.\"\n  },\n  {\n    \"video_name\": \"tumblr_negezmwUpO1spote4o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13426\",\n    \"key\": \"93793\",\n    \"description\": \"the guy with the black shirt and black hair is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zjjsp2E21tecuevo1_400\",\n    \"question\": \"how many people dance and wave their arms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28725\",\n    \"key\": \"42865\",\n    \"description\": \"two people dance and wave their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_naohfoNYRf1rqio5ho1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38880\",\n    \"key\": \"60662\",\n    \"description\": \"a woman is throwing something to a black man and then is beaten.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkihuwMaiG1qff887o1_500\",\n    \"question\": \"what is the man eating with chop sticks?\",\n    \"answer\": \"noodles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3055\",\n    \"key\": \"53061\",\n    \"description\": \"a man is eating noodles with chop sticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99hkpMqz51sb52a1o1_400\",\n    \"question\": \"how many guys are on the sidewalk dancing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47545\",\n    \"key\": \"66538\",\n    \"description\": \"two guys are on a sidewalk dancing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_naimvfMVl91tug3w5o1_400\",\n    \"question\": \"what is the color of the headscarf?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20596\",\n    \"key\": \"28097\",\n    \"description\": \"a woman in a red headscarf is staring ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nju11yo3w51un17g7o1_250\",\n    \"question\": \"where are the man and a woman dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48221\",\n    \"key\": \"93722\",\n    \"description\": \"a man and a woman are dancing together in a large room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy7qk5Iqv1rr6d5go1_400\",\n    \"question\": \"how many men ride in the car while one steers wildly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35454\",\n    \"key\": \"62367\",\n    \"description\": \"two men ride in a car while one steers wildly.\"\n  },\n  {\n    \"video_name\": \"tumblr_no109jnJVv1u8k4roo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA336\",\n    \"key\": \"62452\",\n    \"description\": \"a woman with short black hair looks down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngmmjdC8aq1qznkspo1_500\",\n    \"question\": \"what is jumping and playing with the christmas ornament?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14473\",\n    \"key\": \"62809\",\n    \"description\": \"a cat is jumping and playing with a christmas ornament.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndi825xKE51u0jh8co1_400\",\n    \"question\": \"where does the woman standing look to the side.\",\n    \"answer\": \"? garden\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33042\",\n    \"key\": \"63392\",\n    \"description\": \"a woman standing in a garden looks to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_np6tx8PWjl1r3mfwoo1_500\",\n    \"question\": \"where is woman talking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33066\",\n    \"key\": \"59019\",\n    \"description\": \"woman is talking in a pink room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8otmU7uH1tk9glao2_500\",\n    \"question\": \"what is the person in a sweatshirt watching by?\",\n    \"answer\": \"pass\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35911\",\n    \"key\": \"99530\",\n    \"description\": \"a person in a sweatshirt is watching a train pass by.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfcbburKv1uqba17o1_500\",\n    \"question\": \"where are the man and a woman dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33741\",\n    \"key\": \"99857\",\n    \"description\": \"a man and a woman are dancing in a large room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mdaySgUM1tzixe8o1_500\",\n    \"question\": \"how many kids are beside each other making funny faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22756\",\n    \"key\": \"92239\",\n    \"description\": \"two kids are beside each other making funny faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxdsn2yZB1r2lnvfo1_400\",\n    \"question\": \"how many women are taking the bath together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22308\",\n    \"key\": \"26152\",\n    \"description\": \"two women are taking a bath together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7jcxJEXE1tvkuhho1_400\",\n    \"question\": \"what is the woman stand in a pool of water and is shining behind her?\",\n    \"answer\": \"sun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37225\",\n    \"key\": \"72305\",\n    \"description\": \"a woman is stand in a pool of water and the sun is shining behind her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd37gnJ6z11s5115zo1_400\",\n    \"question\": \"what is the person coming out?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35260\",\n    \"key\": \"59146\",\n    \"description\": \"a person is coming out the door to see someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqgugwhX21u5o1buo1_1280\",\n    \"question\": \"what is going on the snow covered road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5315\",\n    \"key\": \"57491\",\n    \"description\": \"a car is going on a snow covered road.\"\n  },\n  {\n    \"video_name\": \"tumblr_npp13hVgZN1uv3dw9o1_250\",\n    \"question\": \"how many people are holding hands and then let go?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9130\",\n    \"key\": \"45040\",\n    \"description\": \"these two people are holding hands and then let go.\"\n  },\n  {\n    \"video_name\": \"tumblr_np6q31hIzO1tplwjvo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25803\",\n    \"key\": \"55495\",\n    \"description\": \"an animal is sitting in the snow wearing blonde braided wig and a blue dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd91urmt3f1tmecz1o1_400\",\n    \"question\": \"what does this woman hold up to her face?\",\n    \"answer\": \"fireworks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10138\",\n    \"key\": \"63566\",\n    \"description\": \"this woman holds up fireworks to her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9couvqSnM1tu91qto1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8523\",\n    \"key\": \"7995\",\n    \"description\": \"a white man with black suit is greeting and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklvmbxVSC1qeurwuo1_250\",\n    \"question\": \"what is the young woman and a red hat is walking through an office?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2415\",\n    \"key\": \"53608\",\n    \"description\": \"a young woman is a blue jacket and a red hat is walking through an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyy7b3e731tt9zxqo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7784\",\n    \"key\": \"73229\",\n    \"description\": \"a guy with white shirt is moving the eyes in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8s8zoiic1s71nvbo1_400\",\n    \"question\": \"what is the man in a costume riding?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37032\",\n    \"key\": \"44199\",\n    \"description\": \"a man in a costume is riding a motorcycle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqneh6gmCI1uva9gvo1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16815\",\n    \"key\": \"66102\",\n    \"description\": \"a small white dog attempts to grab a pepper on a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpnjgXCsI1qhrx75o1_400\",\n    \"question\": \"where are the players playing hockey.\",\n    \"answer\": \"? stadium\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41980\",\n    \"key\": \"74751\",\n    \"description\": \"the players are playing hockey in a stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvltpG4Cf1rdvg51o1_400\",\n    \"question\": \"where are the woman and a man singing.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36500\",\n    \"key\": \"57433\",\n    \"description\": \"a woman and a man are singing in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazoqqzPK61rcr3teo1_250\",\n    \"question\": \"what is involved in the car crash?\",\n    \"answer\": \"taxi\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30301\",\n    \"key\": \"84564\",\n    \"description\": \"a yellow taxi is involved in a car crash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakdvwOdMw1qlxas3o1_400\",\n    \"question\": \"what is the woman in a sparkly jacket playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39279\",\n    \"key\": \"56285\",\n    \"description\": \"a woman in a sparkly jacket is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmx84j4l8X1skgpuwo1_1280\",\n    \"question\": \"what are the group of men posing together and wearing?\",\n    \"answer\": \"shirts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34555\",\n    \"key\": \"96821\",\n    \"description\": \"a group of men are posing together and wearing pink shirts.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9n7fxGuGC1rw9vqmo1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13213\",\n    \"key\": \"17157\",\n    \"description\": \"a man in a black coat raise his eyelashes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90hf0rDEo1t0ojyvo1_250\",\n    \"question\": \"how many men are posing for the picture on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20253\",\n    \"key\": \"25494\",\n    \"description\": \"two men are posing for a picture on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8yfdjJ9921t7hjz2o1_250\",\n    \"question\": \"what is cuddling with the stuffed dog?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42512\",\n    \"key\": \"42715\",\n    \"description\": \"the cat is cuddling with a stuffed dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyy4pkeKZ1qdch8fo1_1280\",\n    \"question\": \"what forwards and nods without emotion?\",\n    \"answer\": \"steps\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32049\",\n    \"key\": \"93636\",\n    \"description\": \"a man steps forwards and nods without emotion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrck59A3RN1tu5z4ho1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37608\",\n    \"key\": \"68621\",\n    \"description\": \"a white man with black suit is winking a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dkn0IQug1sl89nwo1_400\",\n    \"question\": \"how many men stare at each other while walking in a circle?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51022\",\n    \"key\": \"25606\",\n    \"description\": \"two men stare at each other while walking in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwp74ihnO1slwrsuo1_400\",\n    \"question\": \"what is nursing the bunch of baby ducklings?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49071\",\n    \"key\": \"75890\",\n    \"description\": \"a cat is nursing a bunch of baby ducklings.\"\n  },\n  {\n    \"video_name\": \"tumblr_naduko6Opl1qcvlffo1_100\",\n    \"question\": \"how many girls make nodding faces at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19787\",\n    \"key\": \"93937\",\n    \"description\": \"two girls make nodding faces at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngrowlLTYj1tmddexo1_500\",\n    \"question\": \"what is the woman wearing and dancing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12421\",\n    \"key\": \"22045\",\n    \"description\": \"a woman is wearing a white shirt and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmf9iu3nr1tf406do1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41939\",\n    \"key\": \"33259\",\n    \"description\": \"a guy with white shirt is screaming in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0kmzzi0r1tgt39ko1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12865\",\n    \"key\": \"44221\",\n    \"description\": \"a man wearing a black suit is dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevr3gOI1m1u11y7uo1_500\",\n    \"question\": \"where is the man looking out a slot.\",\n    \"answer\": \"? door\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49584\",\n    \"key\": \"34405\",\n    \"description\": \"a man is looking out a slot in a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxbk5ckRo1sh7n3uo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38316\",\n    \"key\": \"8702\",\n    \"description\": \"a person with orange hair made a face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndi56898WC1s52tx6o1_500\",\n    \"question\": \"how many fingers does the lady put up in the air?\",\n    \"answer\": \"seven\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34053\",\n    \"key\": \"86080\",\n    \"description\": \"a lady puts up seven fingers in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpage5NpP1tx2mybo1_400\",\n    \"question\": \"what is the man with long hair wearing?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48210\",\n    \"key\": \"32395\",\n    \"description\": \"the man with long hair is wearing a leather jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfzfabyUbK1rro3hqo1_400\",\n    \"question\": \"what is the color of the looks?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8415\",\n    \"key\": \"58308\",\n    \"description\": \"a white woman with brown hair looks cross eyed.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xvfh2oUz1rjf48qo1_250\",\n    \"question\": \"how many men hug and one man pats the other man on back?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4425\",\n    \"key\": \"23453\",\n    \"description\": \"two men hug and one man pats the other man on back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs1biycNX1tktlyio1_400\",\n    \"question\": \"how many people stand on the stage as one tries to make an advance at the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8756\",\n    \"key\": \"82362\",\n    \"description\": \"two people stand on a stage as one tries to make an advance at the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1xjnM1hW1t0w9oqo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42559\",\n    \"key\": \"13418\",\n    \"description\": \"a boy wearing sunglasses and a white hat is walking through a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjkyrim291u75yfvo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47765\",\n    \"key\": \"56529\",\n    \"description\": \"a guy wearing a blue shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_n6jfle8aKI1qlzevso1_500\",\n    \"question\": \"what is the color of the sweats?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43449\",\n    \"key\": \"96466\",\n    \"description\": \"a guy in blue sweats does a flip and then looks at a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ua4nGrbw1r7whoco1_400\",\n    \"question\": \"what is the man in glasses and a hat riding?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9115\",\n    \"key\": \"72980\",\n    \"description\": \"a man in glasses and a hat is riding a bike.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqvdv6FpL1sr2c0to1_400\",\n    \"question\": \"how many men are talking and making hand signals?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44290\",\n    \"key\": \"64550\",\n    \"description\": \"the two men are talking and making hand signals.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92oq4Hega1ts0kzio1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46647\",\n    \"key\": \"34144\",\n    \"description\": \"a black cat and a duckling are playing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nisxx6zgyH1qev7kjo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41574\",\n    \"key\": \"43619\",\n    \"description\": \"a woman with long brown hair is holding someone 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam4laekMg1raer1zo1_500\",\n    \"question\": \"what walks up to the guy and smells his shoe?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8652\",\n    \"key\": \"90546\",\n    \"description\": \"a dog walks up to a guy and smells his shoe.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzxgkhPUa1shch57o1_250\",\n    \"question\": \"what is the guy wearing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48858\",\n    \"key\": \"2618\",\n    \"description\": \"a guy is wearing a pink shirt is looking at something and opens his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrc8g830sV1uaj6rjo1_500\",\n    \"question\": \"what does one man play?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47069\",\n    \"key\": \"44334\",\n    \"description\": \"one man plays a guitar while another swings his arms up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauqdi6XJW1sje108o1_500\",\n    \"question\": \"how many men in black suits are hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27554\",\n    \"key\": \"11524\",\n    \"description\": \"the two men in black suits are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6o125mhO1s2shh0o1_400\",\n    \"question\": \"how many girls are talking and one moves away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45711\",\n    \"key\": \"32759\",\n    \"description\": \"two girls are talking and one moves away.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrz13iOGi1tgetb4o1_400\",\n    \"question\": \"what does the man on his snowboard fall off?\",\n    \"answer\": \"ramp\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34489\",\n    \"key\": \"79660\",\n    \"description\": \"a man on his snowboard falls off the ramp.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8gvhaY7Ab1td876vo1_250\",\n    \"question\": \"how many men dressed in army gear walk across a field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31177\",\n    \"key\": \"47429\",\n    \"description\": \"two men dressed in army gear walk across a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrda3ddr3F1rodd5bo1_540\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37140\",\n    \"key\": \"92458\",\n    \"description\": \"a man wearing a white shirt is gesturing triumphantly with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9h3dC7Wb1u6bdo9o1_400\",\n    \"question\": \"where are three men dancing.\",\n    \"answer\": \"? bathroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23287\",\n    \"key\": \"54185\",\n    \"description\": \"three men are dancing in a bathroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nonz8cGSoF1u01edeo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45536\",\n    \"key\": \"1556\",\n    \"description\": \"a woman in a red dress is holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncosuakrUx1sht3fmo1_250\",\n    \"question\": \"what plays with two young children through the glass of his aquarium?\",\n    \"answer\": \"porpoise\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51742\",\n    \"key\": \"5701\",\n    \"description\": \"a porpoise plays with two young children through the glass of his aquarium.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0p2l32G81t0yxwdo1_500\",\n    \"question\": \"where does the lonely guy sit.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42297\",\n    \"key\": \"97782\",\n    \"description\": \"a lonely guy sits in a chair by himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn2r6dEP9b1us2olno1_500\",\n    \"question\": \"what is the color of the jumps?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2836\",\n    \"key\": \"79403\",\n    \"description\": \"a wrestler dressed in blue jumps on a wrestler dressed in white.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hw28peTq1s61fbqo1_400\",\n    \"question\": \"what is swimming around in confusion?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22825\",\n    \"key\": \"52981\",\n    \"description\": \"a fish is swimming around in confusion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nao7pbwlE41tjdvbvo1_250\",\n    \"question\": \"what is the girl holding?\",\n    \"answer\": \"scissors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48864\",\n    \"key\": \"41307\",\n    \"description\": \"a girl is holding scissors while a guy looks at her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc9b4q2IM1sxapr1o1_500\",\n    \"question\": \"how many models is wearing trench coats are holding hands and walking forward?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25869\",\n    \"key\": \"56668\",\n    \"description\": \"two models wearing trench coats are holding hands and walking forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg3cseAxD1s47dt7o1_500\",\n    \"question\": \"how many guys walk up to each other and hug in front of a crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13955\",\n    \"key\": \"62539\",\n    \"description\": \"two guys walk up to each other and hug in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nenetc9nJO1tj0zcro1_1280\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46584\",\n    \"key\": \"85550\",\n    \"description\": \"a girl is sitting in a room with a white background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc29j9Qmmu1t7j74xo1_400\",\n    \"question\": \"what is getting ready to fight in the match?\",\n    \"answer\": \"fighter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17448\",\n    \"key\": \"56325\",\n    \"description\": \"a cage fighter is getting ready to fight in a match.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkshrz1UUz1u3g519o1_400\",\n    \"question\": \"what opens the cupboard door with his head?\",\n    \"answer\": \"ferret\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22555\",\n    \"key\": \"68749\",\n    \"description\": \"a pale colored ferret opens a cupboard door with his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_naug61u7Kv1tgbziwo1_400\",\n    \"question\": \"what is the man in white taking out from a lab fridge?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32371\",\n    \"key\": \"96773\",\n    \"description\": \"a man in white is taking out a frozen box from a lab fridge.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg9ppojxb1te9qibo1_500\",\n    \"question\": \"what are the group of boys walking together?\",\n    \"answer\": \"bandannas\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3557\",\n    \"key\": \"92866\",\n    \"description\": \"a group of boys are walking together wearing bandannas.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjom6xSMb1tkxnzho1_500\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22895\",\n    \"key\": \"95711\",\n    \"description\": \"a woman in a white vest is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvhjp6WO71sj3qcdo1_250\",\n    \"question\": \"how many guys sit on the couch and eat popcorn?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51836\",\n    \"key\": \"19312\",\n    \"description\": \"these two guys sit on a couch and eat popcorn.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xwsxN6Co1twn7jgo1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2245\",\n    \"key\": \"29271\",\n    \"description\": \"a teenager wearing a red sweater leans forward and waves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5m9aR7iv1tmvnipo1_500\",\n    \"question\": \"how many people are singing and nodding their heads while another person stares at them?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15528\",\n    \"key\": \"95713\",\n    \"description\": \"3 people are singing and nodding their heads while another person stares at them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojpv0LDGS1tpg4boo1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44708\",\n    \"key\": \"25879\",\n    \"description\": \"a white cat walking in a treadmill is tired.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9aujcnojD1riyhs3o1_400\",\n    \"question\": \"what is the woman slowly taking out of her mouth?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35424\",\n    \"key\": \"46395\",\n    \"description\": \"the woman is slowly taking her cigarette out of her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3xhdCxli1sq0gyxo1_500\",\n    \"question\": \"where is the man dancing and gyrating his hips.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12898\",\n    \"key\": \"46592\",\n    \"description\": \"a man in a studio is dancing and gyrating his hips.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8z5gkpbGb1rwgxlqo1_500\",\n    \"question\": \"what was galloping around the ring?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29500\",\n    \"key\": \"74583\",\n    \"description\": \"a brown horse was galloping around a ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9b47JmFf1r9hl28o1_400\",\n    \"question\": \"how many young men have silly fun moving their bodies?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3562\",\n    \"key\": \"87141\",\n    \"description\": \"three young men have silly fun moving their bodies.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4kxjTHRs1rmqkjuo1_400\",\n    \"question\": \"where is the woman riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43182\",\n    \"key\": \"82396\",\n    \"description\": \"a woman is riding in a convertible car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n810pw2rtt1qgii4so1_1280\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33505\",\n    \"key\": \"84268\",\n    \"description\": \"a boy wearing a white jacket is cutting his eyes to the right.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxy7vIbUJ1tt3dbuo1_500\",\n    \"question\": \"how many girls exercise on the wooden bench?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16054\",\n    \"key\": \"76376\",\n    \"description\": \"two girls exercise on a wooden bench.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexgtpuz0A1qehc8no1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13869\",\n    \"key\": \"68284\",\n    \"description\": \"a woman in black is dancing and flipping her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95f1j7set1tgruvyo1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33691\",\n    \"key\": \"62958\",\n    \"description\": \"this is woman kissing a man that is wearing a red ball cap with sunglasses on the brim.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmnt6KaMM1rv7n53o1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35731\",\n    \"key\": \"51527\",\n    \"description\": \"a white girl with glasses is beckoning with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc99a9TFbP1rndkq5o1_250\",\n    \"question\": \"what is the man running during a game?\",\n    \"answer\": \"bases\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22284\",\n    \"key\": \"70994\",\n    \"description\": \"the man is running the bases during a game.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckg4oA1Tr1t5a4c7o1_400\",\n    \"question\": \"where is the woman sitting while.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44187\",\n    \"key\": \"64343\",\n    \"description\": \"a woman is sitting on someones shoulders while in a swimming pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrbx72GURX1raqy7mo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11786\",\n    \"key\": \"35201\",\n    \"description\": \"a boy in a white shirt is showing off his dance moves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokj77T5LR1uvkr19o1_400\",\n    \"question\": \"what is the person wearing ear buds pushes down their nose and peers over them?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8587\",\n    \"key\": \"31170\",\n    \"description\": \"a person wearing ear buds pushes their sunglasses down their nose and peers over them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclw1hPX1O1tmmmiro1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14278\",\n    \"key\": \"87876\",\n    \"description\": \"a guy with black hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghmju272O1qdxu8so1_400\",\n    \"question\": \"how many men are wresting in the wrestling match?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15365\",\n    \"key\": \"61321\",\n    \"description\": \"two men are wresting in a wrestling match.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2yati2JY1ssl4i0o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44882\",\n    \"key\": \"71438\",\n    \"description\": \"a woman with long black hair is spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9rniezlG1u60zcpo1_500\",\n    \"question\": \"where does the woman smoke and fixes her hair.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16846\",\n    \"key\": \"34364\",\n    \"description\": \"the woman smokes and fixes her hair in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nctnnzxMkJ1sdpy9wo1_400\",\n    \"question\": \"what is the man wearing a hooded top is holding with candles?\",\n    \"answer\": \"cake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35306\",\n    \"key\": \"21723\",\n    \"description\": \"a man wearing a hooded top is holding a birthday cake with candles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n0wbw0JDIC1rj823eo1_400\",\n    \"question\": \"how many people are standing together on stage while one claps?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27045\",\n    \"key\": \"93418\",\n    \"description\": \"two people are standing together on stage while one claps.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8v942Cw1q1r6654qo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42643\",\n    \"key\": \"5914\",\n    \"description\": \"a guy with black shirt is walking in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nal5nh7p9L1qi0267o1_250\",\n    \"question\": \"how many man is talking to another man who listens quietly?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA871\",\n    \"key\": \"10920\",\n    \"description\": \"one man is talking to another man who listens quietly.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93korFZlm1sx5lxbo1_500\",\n    \"question\": \"how many kids pretend to fight at the beach?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24139\",\n    \"key\": \"95918\",\n    \"description\": \"two kids pretend to fight at the beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqm4eBnny1qhxpzlo1_500\",\n    \"question\": \"how many hockey players are smiling,\",\n    \"answer\": \"hug each other ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20270\",\n    \"key\": \"67200\",\n    \"description\": \"two hockey players are smiling,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sh1pn4ju1sgl6u3o1_250\",\n    \"question\": \"how many boys are dancing and singing in the room?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10353\",\n    \"key\": \"17230\",\n    \"description\": \"3 boys are dancing and singing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbycrsfId1sggdd3o1_400\",\n    \"question\": \"how many men are playing pool on a huge pool table?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6400\",\n    \"key\": \"76625\",\n    \"description\": \"two men are playing pool on a huge pool table.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u2swNpQV1qe2thio1_500\",\n    \"question\": \"what is running across dirt?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46176\",\n    \"key\": \"73413\",\n    \"description\": \"a black horse is running across dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1dbdIdcS1uo49wlo1_400\",\n    \"question\": \"what sits on the desk and cuddles with a notebook?\",\n    \"answer\": \"duckling\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35986\",\n    \"key\": \"90702\",\n    \"description\": \"a duckling sits on a desk and cuddles with a notebook.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpddqo8rN1tjhld9o1_400\",\n    \"question\": \"what is looking up and barking?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39331\",\n    \"key\": \"52440\",\n    \"description\": \"a small dog is looking up and barking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1acumHMb1t5ojzdo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2369\",\n    \"key\": \"8621\",\n    \"description\": \"the man in the black jacket looks around.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxb5i3AlN1sqquj8o1_250\",\n    \"question\": \"what are people riding up in the sky?\",\n    \"answer\": \"bicycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5561\",\n    \"key\": \"53455\",\n    \"description\": \"people are riding their bikes up in the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfth4o5uV1qzfmdho1_400\",\n    \"question\": \"what is the man playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37795\",\n    \"key\": \"37507\",\n    \"description\": \"a man is playing guitar while another man claps his hands behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2oh2bSvK1tkpzw0o1_400\",\n    \"question\": \"what is sitting on someones lap gets scared by a hand?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28914\",\n    \"key\": \"25145\",\n    \"description\": \"a black kitten sitting on someones lap gets scared by a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_newrcpj47E1u1ym3zo1_250\",\n    \"question\": \"how many people are holding each other than kiss each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50783\",\n    \"key\": \"46934\",\n    \"description\": \"two people are holding each other than kiss each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcjylbPtg1tsr93so1_1280\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37315\",\n    \"key\": \"76860\",\n    \"description\": \"a man with black hair is about to go swimming.\"\n  },\n  {\n    \"video_name\": \"tumblr_namd90alfg1qg9j7eo1_250\",\n    \"question\": \"what is playing with snowflakes in the snow?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46087\",\n    \"key\": \"10806\",\n    \"description\": \"a panda is playing with snowflakes in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq1xbdzSNA1spbq2fo1_250\",\n    \"question\": \"how many athletes approach each other and embrace hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46173\",\n    \"key\": \"21669\",\n    \"description\": \"two athletes approach each other and embrace hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_najaxvpaHO1tc98tio1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42886\",\n    \"key\": \"727\",\n    \"description\": \"a woman in a purple top is dancing in a club.\"\n  },\n  {\n    \"video_name\": \"tumblr_nex4xp2DL31slj978o1_250\",\n    \"question\": \"what is the cat standing up on the corner is closing with his paw?\",\n    \"answer\": \"curtain\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46190\",\n    \"key\": \"3264\",\n    \"description\": \"a cat standing up on the corner is closing the curtain with his paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkxhturUR1uxcyego1_400\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9719\",\n    \"key\": \"73594\",\n    \"description\": \"two men are moving and singing in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndtrdwML301t1o9tno1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25220\",\n    \"key\": \"14272\",\n    \"description\": \"a bearded white man is slapped in the face with his own hand by a black man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh74lksIfZ1u6da7qo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2939\",\n    \"key\": \"84029\",\n    \"description\": \"a shirtless woman with brown hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3fk61acW1tly55no2_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27428\",\n    \"key\": \"96672\",\n    \"description\": \"a girl with her hair up turns around and stares at a girl with blue hair has her arm around someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3330wJ541r1e6f9o1_500\",\n    \"question\": \"what is the girl with her boy friend wearing?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7330\",\n    \"key\": \"98499\",\n    \"description\": \"a girl with her boy friend is wearing sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvhr0Jus31updujzo1_400\",\n    \"question\": \"what is the man with dark hair smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25173\",\n    \"key\": \"26640\",\n    \"description\": \"the man with dark hair is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uzodf3Kx1srbyoyo1_400\",\n    \"question\": \"what is the color of the wrestler?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40898\",\n    \"key\": \"77918\",\n    \"description\": \"a white wrestler jumps onto a black guy and gets pushed off then jumps back on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_noeby6VDea1rftdx0o1_400\",\n    \"question\": \"where is the singer with short blonde hair and shades dancing.\",\n    \"answer\": \"? tunnel\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39846\",\n    \"key\": \"16806\",\n    \"description\": \"a singer with short blonde hair and shades is dancing in a tunnel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfo2vpa9lP1qj7p4ho1_250\",\n    \"question\": \"what does the man put back on as a blonde woman look on?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19657\",\n    \"key\": \"19911\",\n    \"description\": \"a man puts his shirt back on as a blonde woman look on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc798b5n4Y1tju84uo1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23848\",\n    \"key\": \"91289\",\n    \"description\": \"a man in a white t-shirt takes off his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdeasYxsj1sbs8z8o1_400\",\n    \"question\": \"what is the color of the uses?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30763\",\n    \"key\": \"52401\",\n    \"description\": \"a man wearing blue uses chopsticks and eats vigorously.\"\n  },\n  {\n    \"video_name\": \"tumblr_no62rm4dDC1tx8mn0o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25833\",\n    \"key\": \"76917\",\n    \"description\": \"a yellow race car is skidding on the track.a.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncb83m7DU11sp9uxmo1_500\",\n    \"question\": \"what is the color of the boots?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35464\",\n    \"key\": \"56997\",\n    \"description\": \"this image is of a woman in red boots swinging her feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk22l3T7h61u2mmn8o1_400\",\n    \"question\": \"what is showing its face slowly through the window?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30906\",\n    \"key\": \"43464\",\n    \"description\": \"a cat is showing its face slowly through the window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nprglcBVTc1unyhx2o1_400\",\n    \"question\": \"what is approaching the building surrounded by a fence?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15948\",\n    \"key\": \"65277\",\n    \"description\": \"a vehicle is approaching a building surrounded by a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbmj5hTe5U1tegtx7o1_400\",\n    \"question\": \"what are running and slipping on the hallway floor?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52464\",\n    \"key\": \"41227\",\n    \"description\": \"cats are running and slipping on a hallway floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmvmkqaym01u12ezho1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42017\",\n    \"key\": \"97587\",\n    \"description\": \"lady with white sailor hat and black dress sing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndhvugvD2U1s3mq1do1_400\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19854\",\n    \"key\": \"59821\",\n    \"description\": \"a man with red hair is sitting in a red chair and another man pops up from behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh6btDTyY1r38hk2o1_400\",\n    \"question\": \"what is trying to sit on the wire and drink a bottle and falls off,\",\n    \"answer\": \"but grabs on and takes a drink ? monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51520\",\n    \"key\": \"8486\",\n    \"description\": \"a monkey is trying to sit on a wire and drink a bottle and falls off,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvzkl77wl1rhowemo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27524\",\n    \"key\": \"91839\",\n    \"description\": \"a man wearing a gray jacket with gray hair is walking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rnrbIvJA1rvy9jpo1_500\",\n    \"question\": \"what is the man wearing wore at the crowd?\",\n    \"answer\": \"winks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23178\",\n    \"key\": \"99452\",\n    \"description\": \"a man wearing wore a hat winks at the crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4zmkCAr61u3b1hio1_250\",\n    \"question\": \"how many people are on stage when one woman snatches the jacket of another woman?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12173\",\n    \"key\": \"35786\",\n    \"description\": \"three people are on stage when one woman snatches the jacket of another woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0wn2TFG01tk2ngvo1_400\",\n    \"question\": \"what is trying to get food under glass table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8411\",\n    \"key\": \"1209\",\n    \"description\": \"a cat is trying to get food under glass table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahc22gszh1qk0ghio1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44106\",\n    \"key\": \"35205\",\n    \"description\": \"a woman with red hair is rolling around on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x3mbPjxt1qh3zyto1_400\",\n    \"question\": \"what lies with its eyes almost shut and its tail twitching?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20367\",\n    \"key\": \"71069\",\n    \"description\": \"a cat lies with its eyes almost shut and its tail twitching.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vrrw9ndC1t8amt8o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20699\",\n    \"key\": \"75390\",\n    \"description\": \"a white girl with yellow hair is talking with another girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nndantIoHF1qg2p2fo1_1280\",\n    \"question\": \"what does the man at a bar offer with a drink?\",\n    \"answer\": \"toast\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49184\",\n    \"key\": \"91061\",\n    \"description\": \"a man at a bar offers a toast with a drink while a female bartender is mixing drinks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nphtpt0gV41ur4hiao1_400\",\n    \"question\": \"what is someone putting a cassette in a player and putting on?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7262\",\n    \"key\": \"48815\",\n    \"description\": \"someone is putting a cassette in a player and putting headphones on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs46ihJuj1tdi3uyo1_250\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12658\",\n    \"key\": \"47083\",\n    \"description\": \"a man bites his fingernail in a green room.\"\n  },\n  {\n    \"video_name\": \"tumblr_notyiwTyGV1qbuqcio1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16891\",\n    \"key\": \"34427\",\n    \"description\": \"a man wearing black hat and suit is looking at a stick through glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn8wvwPjD1s6zpepo1_400\",\n    \"question\": \"what pulls the gas handle out of the pump and the pump catches on fire?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52210\",\n    \"key\": \"45738\",\n    \"description\": \"a car pulls the gas handle out of the pump and the pump catches on fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4a74MWni1rfibsxo1_400\",\n    \"question\": \"what is the woman lighting and blowing smoke out of her mouth?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25413\",\n    \"key\": \"96261\",\n    \"description\": \"a woman is lighting a cigarette and blowing smoke out of her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdf8ua9mH1u76jino1_400\",\n    \"question\": \"what is wagging underneath the curtain?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37775\",\n    \"key\": \"15090\",\n    \"description\": \"an animal 's tail is wagging underneath a curtain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko35llwGE1u9vg2vo1_500\",\n    \"question\": \"what is the man sitting and pulling out his cell phone?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52500\",\n    \"key\": \"88852\",\n    \"description\": \"a man is sitting his car and pulling out his cell phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr10n4blvp1qzefipo1_r1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30224\",\n    \"key\": \"76416\",\n    \"description\": \"an orange cat gets in the way of showing a woman doing a yoga pose.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ctf9ELMW1taivooo1_500\",\n    \"question\": \"what is flying through the sky and then disappears?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46550\",\n    \"key\": \"79595\",\n    \"description\": \"a car is flying through the sky and then disappears.\"\n  },\n  {\n    \"video_name\": \"tumblr_n35ls7XDUF1ts0z95o1_250\",\n    \"question\": \"what is sitting on a woman 's finger suddenly takes flight?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13399\",\n    \"key\": \"6479\",\n    \"description\": \"a butterfly sitting on a woman 's finger suddenly takes flight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhwanmiWzD1qlkuvao1_250\",\n    \"question\": \"what is the woman reaching over and touching?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18297\",\n    \"key\": \"76552\",\n    \"description\": \"a woman is reaching over and touching a fake green frog.\"\n  },\n  {\n    \"video_name\": \"tumblr_noj5h56PEB1tx8mn0o1_400\",\n    \"question\": \"how many races cars are very close to each other on the race track?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23340\",\n    \"key\": \"77035\",\n    \"description\": \"two races cars are very close to each other on the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2q4csgq91txeyrmo1_250\",\n    \"question\": \"what is the color of the one?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31235\",\n    \"key\": \"35741\",\n    \"description\": \"two people fought and the one in black jumped in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhi301UlXH1u0jmtso1_1280\",\n    \"question\": \"where is the girl smoking a cigarette.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35624\",\n    \"key\": \"75670\",\n    \"description\": \"a girl is smoking a cigarette in bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1zh6yArU1usf060o1_400\",\n    \"question\": \"where is the duck chasing the men.\",\n    \"answer\": \"? jeep\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13739\",\n    \"key\": \"80337\",\n    \"description\": \"the duck is chasing the men in the jeep.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrejtNzph1sspv6go1_500\",\n    \"question\": \"what is the person on a stage doing?\",\n    \"answer\": \"twirls\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12527\",\n    \"key\": \"54143\",\n    \"description\": \"a person on a stage is doing twirls.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9imlri1WQ1s3att3o1_400\",\n    \"question\": \"what is the person in a jean vest turning into a table?\",\n    \"answer\": \"bench\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1875\",\n    \"key\": \"46098\",\n    \"description\": \"a person in a jean vest is turning a wooden bench into a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9oo3e1Cfi1rro1neo1_400\",\n    \"question\": \"where is the woman seductively kissing her reflection.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51560\",\n    \"key\": \"1120\",\n    \"description\": \"a woman is seductively kissing her reflection in a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx65gR5vx1u75zfco1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15480\",\n    \"key\": \"84203\",\n    \"description\": \"a guy wearing a white shirt with dark colored hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1vxsCvAy1s71nvbo1_500\",\n    \"question\": \"what is struggling to take off from the runway?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2837\",\n    \"key\": \"94662\",\n    \"description\": \"a plane is struggling to take off from a runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_navhs9xovL1sbjnn2o1_250\",\n    \"question\": \"what is the woman playing during medieval times?\",\n    \"answer\": \"harp\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19003\",\n    \"key\": \"27759\",\n    \"description\": \"a woman is playing a harp during medieval times.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfxbkWk5Z1s94w5go1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33015\",\n    \"key\": \"23036\",\n    \"description\": \"a guy wearing a light colored shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_njq5e3s3tS1tkkgpso1_500\",\n    \"question\": \"where is the man looking and winks.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37562\",\n    \"key\": \"49408\",\n    \"description\": \"a man is looking in a mirror and then winks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2hgxbjKw1t1ijxmo1_1280\",\n    \"question\": \"what is the boy kissing on the head then blows a kiss?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22710\",\n    \"key\": \"56263\",\n    \"description\": \"a boy is kissing his white dog on the head then blows a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5afoHKml1tfsdl2o1_250\",\n    \"question\": \"where is the midget dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8038\",\n    \"key\": \"17096\",\n    \"description\": \"a midget is dancing in a red room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96fzvPIrN1s2wg51o1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39063\",\n    \"key\": \"46532\",\n    \"description\": \"a person is riding a black horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ptmsvc1I1th4an4o1_500\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"pet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10325\",\n    \"key\": \"69752\",\n    \"description\": \"a man is holding cute little pet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkm38Aep41u80mmjo1_400\",\n    \"question\": \"what is barking at trucks going past him in a car on the freeway?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9334\",\n    \"key\": \"56068\",\n    \"description\": \"a dog is barking at trucks going past him in a car on the freeway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4y9cyuiJ1tqyrjvo1_400\",\n    \"question\": \"how many men are standing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5313\",\n    \"key\": \"90283\",\n    \"description\": \"two men are standing and one of them starts laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirqd6HOcY1u9qqf7o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10219\",\n    \"key\": \"51414\",\n    \"description\": \"a woman with black hair is stroking a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncc1baT5HP1svs31wo1_400\",\n    \"question\": \"how many man are in the vehicle,\",\n    \"answer\": \"one points and talks and the other laughs ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46406\",\n    \"key\": \"2743\",\n    \"description\": \"two man are in a vehicle,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkexjjOQI1u1cc70o1_500\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42060\",\n    \"key\": \"97174\",\n    \"description\": \"a woman wearing an orange scarf is looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nalejiKii21ti13z5o1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40440\",\n    \"key\": \"27247\",\n    \"description\": \"a girl dressed in black is talking in a scene.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahwfbkCLC1smb63lo1_250\",\n    \"question\": \"what does the boy pull off by the neck?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12118\",\n    \"key\": \"748\",\n    \"description\": \"a boy pulls his shirt off by the neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmbc0mImx1tvkq6vo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51548\",\n    \"key\": \"17162\",\n    \"description\": \"a man in a black shirt is holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3xfcUdnK1tiamx1o1_400\",\n    \"question\": \"what is rubbing itself against a sofa?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37745\",\n    \"key\": \"19533\",\n    \"description\": \"a dog is rubbing itself against a sofa.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfao6d193m1siv5bao1_500\",\n    \"question\": \"how many men are sitting on the stage and speaking into microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26800\",\n    \"key\": \"49396\",\n    \"description\": \"two men are sitting on a stage and speaking into microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4yfgSIEU1u7r745o1_500\",\n    \"question\": \"what tilts his heads back as he singing?\",\n    \"answer\": \"singer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17222\",\n    \"key\": \"35666\",\n    \"description\": \"a rock singer tilts his heads back as he singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sj5cqJdi1sycli7o1_500\",\n    \"question\": \"where are two wrestling women walking forwards.\",\n    \"answer\": \"? corridor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48704\",\n    \"key\": \"75249\",\n    \"description\": \"two wrestling women are walking forwards in a corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklmwmP2fN1r26jdlo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25149\",\n    \"key\": \"69501\",\n    \"description\": \"a man wearing a blue suit is being interviewed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhloxhwJxu1r7pxppo1_400\",\n    \"question\": \"how many women whisper into the man 's ears in succession?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6542\",\n    \"key\": \"67089\",\n    \"description\": \"three women whisper into a man 's ears in succession.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8lnhsDTPU1tgkdkbo1_250\",\n    \"question\": \"what leaps from the ceiling and glides to the floor?\",\n    \"answer\": \"squirrel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41502\",\n    \"key\": \"35848\",\n    \"description\": \"a flying squirrel leaps from the ceiling and glides to the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhi35f292k1stuhtso1_500\",\n    \"question\": \"how many people sat together and are smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6633\",\n    \"key\": \"44342\",\n    \"description\": \"two people sat together and are smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj1cj63rn1trxml2o1_500\",\n    \"question\": \"what is covered by lot of snow?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17374\",\n    \"key\": \"79343\",\n    \"description\": \"a black dog is covered by lot of snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwvss26Bs1spzgf5o1_500\",\n    \"question\": \"how many men with microphones are singing and leaning back?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28663\",\n    \"key\": \"10673\",\n    \"description\": \"three men with microphones are singing and leaning back.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ti1si24z1th8yo9o1_400\",\n    \"question\": \"what is the girl moving and then she sends a kiss?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35830\",\n    \"key\": \"72465\",\n    \"description\": \"a girl is moving his glasses and then she sends a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5jq9YHHz1twj3jvo1_500\",\n    \"question\": \"how many man are going in circles and going up and down?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11105\",\n    \"key\": \"61007\",\n    \"description\": \"three man are going in circles and going up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1g3oDF0D1qcgyjoo1_400\",\n    \"question\": \"what is falling with the package?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32293\",\n    \"key\": \"46484\",\n    \"description\": \"a cat is falling with a package.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbduqfCR9m1tl1yedo1_500\",\n    \"question\": \"how many people are performing on the stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49485\",\n    \"key\": \"79447\",\n    \"description\": \"three people are performing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncko1cgtVl1rwkjivo1_400\",\n    \"question\": \"what is the squirrel biting and it turns and attacks another cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3873\",\n    \"key\": \"45420\",\n    \"description\": \"a squirrel is biting a cat and it turns and attacks another cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_namh3klriu1tk3dj9o1_500\",\n    \"question\": \"how many people are kissing on the rooftop?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36161\",\n    \"key\": \"83996\",\n    \"description\": \"two people are kissing on a rooftop.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pom6qgCR1tgl4z1o1_400\",\n    \"question\": \"how many dogs move their heads from side to side?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31499\",\n    \"key\": \"75583\",\n    \"description\": \"the two dogs move their heads from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqoabbUAH1s9wp82o1_400\",\n    \"question\": \"what are quietly lounging on the couch?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22896\",\n    \"key\": \"30264\",\n    \"description\": \"two dogs are quietly lounging on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvp6qwyZi1tx8mn0o1_400\",\n    \"question\": \"what are billowing smoke as they race?\",\n    \"answer\": \"trucks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33806\",\n    \"key\": \"55600\",\n    \"description\": \"the trucks are billowing smoke as they race.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvdp5rZG41s71nvbo1_250\",\n    \"question\": \"what is the color of the bird?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8375\",\n    \"key\": \"4069\",\n    \"description\": \"someone is using a toothbrush to brush a black bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mtd8IOiG1t0ojyvo1_250\",\n    \"question\": \"how many people are standing together while one pulls off a shirt?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36535\",\n    \"key\": \"12897\",\n    \"description\": \"four people are standing together while one pulls off a shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5t5t8F9x1tidrdwo1_400\",\n    \"question\": \"how many man does there 's playing a guitar on stage and smiling?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42366\",\n    \"key\": \"65582\",\n    \"description\": \"there 's one man playing a guitar on stage and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njprg882nT1u9v8ero1_400\",\n    \"question\": \"what is the man wearing?\",\n    \"answer\": \"device\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52041\",\n    \"key\": \"29796\",\n    \"description\": \"a man is wearing a device that holds his eyes open.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhchptHDxG1slj978o1_250\",\n    \"question\": \"how many cats run to their bowls and start eating?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51004\",\n    \"key\": \"3857\",\n    \"description\": \"three cats run to their bowls and start eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_npr7lkdUyx1s71nvbo1_500\",\n    \"question\": \"what is outside buried in the snow?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA251\",\n    \"key\": \"83711\",\n    \"description\": \"a cat is outside buried in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1pxegM8m1si6tlqo1_250\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13262\",\n    \"key\": \"41380\",\n    \"description\": \"a sweaty man wearing black clothing is looking annoyed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzh0iC0aH1sjr4yvo1_400\",\n    \"question\": \"what is the color of the tattoo?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18813\",\n    \"key\": \"58641\",\n    \"description\": \"a young girl with a red tattoo on her face is in front of swirling lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxqb2uFP81thmv2qo1_400\",\n    \"question\": \"what tries to walk while wearing tennis shoes?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44126\",\n    \"key\": \"20689\",\n    \"description\": \"a black and white dog tries to walk while wearing tennis shoes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nca2zmXP3d1slj978o1_400\",\n    \"question\": \"what is watching the piano in the tablet?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2463\",\n    \"key\": \"65425\",\n    \"description\": \"a dog is watching the piano in the tablet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nae9boB8gn1tz9jaqo1_250\",\n    \"question\": \"what are the group of guys walking down smiling?\",\n    \"answer\": \"steps\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19349\",\n    \"key\": \"22384\",\n    \"description\": \"a group of guys are walking down steps smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzwadoN461slj978o1_400\",\n    \"question\": \"what runs fast and suddenly lies on his side on the floor?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38339\",\n    \"key\": \"48459\",\n    \"description\": \"a dog runs fast and suddenly lies on his side on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9yuk4CQq1tlik6so1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24954\",\n    \"key\": \"18829\",\n    \"description\": \"the man with the gray suit is holding his breath and crossing his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfowj6p4zs1u25ovvo1_400\",\n    \"question\": \"what is going down the highway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36469\",\n    \"key\": \"63438\",\n    \"description\": \"a blue car is going down a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexprrqDDT1rmf606o1_250\",\n    \"question\": \"what is the young man smoking and holding a guitar?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4608\",\n    \"key\": \"16137\",\n    \"description\": \"a young man is smoking a cigarette and holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lt3cvvy61trvs7go1_400\",\n    \"question\": \"how many man talks the lot as he leans his head on another person?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29028\",\n    \"key\": \"57272\",\n    \"description\": \"one man talks a lot as he leans his head on another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbus1etSWV1tkyu2bo1_250\",\n    \"question\": \"where are two guys dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45552\",\n    \"key\": \"8125\",\n    \"description\": \"two guys are dancing together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4hcghIrU1tac8jro1_400\",\n    \"question\": \"what does the blonde woman give a peace sign,\",\n    \"answer\": \"then a redhead grabs ? hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32990\",\n    \"key\": \"64088\",\n    \"description\": \"a blonde woman gives a peace sign,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r4i6sIO61slvl84o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28318\",\n    \"key\": \"41358\",\n    \"description\": \"a man wearing a purple shirt is crying and wipes his eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_njnhlc2q8U1u9sozlo1_400\",\n    \"question\": \"what is looking finger and fall?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51206\",\n    \"key\": \"7455\",\n    \"description\": \"a white cat is looking finger and fall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjj7ntrNZ1ssgyoro1_250\",\n    \"question\": \"what is the color of the door?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7601\",\n    \"key\": \"2196\",\n    \"description\": \"a woman kicks open a red door angrily.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qb7oGgwM1rcu974o1_250\",\n    \"question\": \"what is the color of the scores?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1964\",\n    \"key\": \"21680\",\n    \"description\": \"a man dressed in white scores a goal in soccer.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8x97Ahoi1tdjuqvo1_250\",\n    \"question\": \"how many men are smiling and making funny faces?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36573\",\n    \"key\": \"16734\",\n    \"description\": \"three men are smiling and making funny faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_no84zvfF701qbz10so1_500\",\n    \"question\": \"how many guns are pointed at the man?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26301\",\n    \"key\": \"55032\",\n    \"description\": \"two guns are pointed at a man and he laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nff45qQynl1s75jjso1_400\",\n    \"question\": \"what is the color of the star?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19567\",\n    \"key\": \"24736\",\n    \"description\": \"the star in white is jumping over a man on the show.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffrobxU9J1u4na82o3_250\",\n    \"question\": \"where is the girl dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17406\",\n    \"key\": \"13626\",\n    \"description\": \"a girl is dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbafv4aA3r1tjmsyuo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43478\",\n    \"key\": \"95493\",\n    \"description\": \"a pretty woman with long,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqn263IcBj1uzrtz5o1_500\",\n    \"question\": \"what is the young man wrapping around his head?\",\n    \"answer\": \"scarf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11625\",\n    \"key\": \"6137\",\n    \"description\": \"a young man is wrapping a scarf around his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq8pahvjZZ1uym2rjo1_400\",\n    \"question\": \"where does the llama turn his head.\",\n    \"answer\": \"? zoo\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29205\",\n    \"key\": \"20839\",\n    \"description\": \"a llama in a zoo turns his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngco2hZoYX1sflxw5o1_250\",\n    \"question\": \"how many men are fighting over the green bird?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42238\",\n    \"key\": \"8062\",\n    \"description\": \"the two men are fighting over a green bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkvaxBCbI1t6t8bgo1_500\",\n    \"question\": \"how many man grabs the shoulder of another as he walks by?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4320\",\n    \"key\": \"95583\",\n    \"description\": \"three men in red shirts and jeans are walking and one man grabs the shoulder of another as he walks by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nosv3ta6Y91rndm3wo1_250\",\n    \"question\": \"what eats ate eating carrots with his hands?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41749\",\n    \"key\": \"27133\",\n    \"description\": \"an animal monkey eats ate eating carrots with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_np49o2tB721try7qyo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43961\",\n    \"key\": \"84589\",\n    \"description\": \"a young person in a gray shirt is coughing and clearing their throat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk32pnnazT1skvgwao1_400\",\n    \"question\": \"how many men dressed in black walk side by side?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32312\",\n    \"key\": \"83387\",\n    \"description\": \"two men dressed in black walk side by side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnsnziHoXc1ro4jalo1_500\",\n    \"question\": \"where do the bunch of people make faces.\",\n    \"answer\": \"? tub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30756\",\n    \"key\": \"91305\",\n    \"description\": \"a bunch of people make faces in a hot tub.\"\n  },\n  {\n    \"video_name\": \"tumblr_njte62Bwpv1t4la1fo1_400\",\n    \"question\": \"what did the man and a guy play on stage for fans?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35790\",\n    \"key\": \"25986\",\n    \"description\": \"a man and a guy played guitar on stage for fans.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzxc0zvYL1r82feqo1_500\",\n    \"question\": \"what is the girl or guy doing a scary hand gesture and wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46134\",\n    \"key\": \"20566\",\n    \"description\": \"a girl or guy is doing a scary hand gesture and wearing a fancy hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv63mKCzc1ttvffso1_400\",\n    \"question\": \"where is the man singing and smoking a cigarette.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22524\",\n    \"key\": \"58080\",\n    \"description\": \"the man is singing in a blue car and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96fzvPIrN1s2wg51o1_500\",\n    \"question\": \"what is the person riding?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7466\",\n    \"key\": \"46532\",\n    \"description\": \"a person is riding a black horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_njziaa2Zn31u8fu4co1_500\",\n    \"question\": \"how many men in white shirts are singing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25013\",\n    \"key\": \"52099\",\n    \"description\": \"two men in white shirts are singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgkzeADl51rpsnyjo1_250\",\n    \"question\": \"how many young men sit in the back of a car and dance?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11084\",\n    \"key\": \"3928\",\n    \"description\": \"two young men sit in the back of a car and dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxp04rEFk1tjjnlno1_400\",\n    \"question\": \"what is the cut cat sleeping next to his mother?\",\n    \"answer\": \"tender\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52900\",\n    \"key\": \"71522\",\n    \"description\": \"a cut cat is tender sleeping next to his mother.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb6k2PKFz1rtlmp4o1_250\",\n    \"question\": \"what is trying to catch something?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39879\",\n    \"key\": \"18919\",\n    \"description\": \"a cute cat is trying to catch something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6fty53jA1rol592o1_500\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34983\",\n    \"key\": \"89046\",\n    \"description\": \"a woman wearing bright red lipstick is blowing out a candle on a cake.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncityr4XKD1qblt8ro1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43197\",\n    \"key\": \"96285\",\n    \"description\": \"a white haired woman starts to cry in front of a mic.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrac5ifOWX1utou2jo1_400\",\n    \"question\": \"what was running around in the room?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29001\",\n    \"key\": \"62192\",\n    \"description\": \"a bird was running around in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzwwj6elv1ta4f2po1_500\",\n    \"question\": \"how many man jumps toward the other man with his arms in the air?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27482\",\n    \"key\": \"73747\",\n    \"description\": \"one man jumps toward the other man with his arms in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrl2hcm4tP1r8l9z5o1_250\",\n    \"question\": \"what are together on the calm sea?\",\n    \"answer\": \"boats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9891\",\n    \"key\": \"916\",\n    \"description\": \"many boats are together on a calm sea.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmq23SV5m1u7vw3ko1_500\",\n    \"question\": \"how many people in an audience are clapping and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50321\",\n    \"key\": \"48801\",\n    \"description\": \"two people in an audience are clapping and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitvmqOok11r05qsbo1_400\",\n    \"question\": \"what swerves around the track and skids?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46865\",\n    \"key\": \"70773\",\n    \"description\": \"a red car swerves around a track and skids.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacngfa5N21r959nro1_400\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6319\",\n    \"key\": \"35211\",\n    \"description\": \"a white horse is running through a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuzvzDFcu1tdjuqvo1_400\",\n    \"question\": \"what is removing the rope from the bar?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15951\",\n    \"key\": \"42452\",\n    \"description\": \"a dog is removing the rope from the bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uslmr6Tm1tb9e3fo1_250\",\n    \"question\": \"what is the man holding and dancing with one hand in the air?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18964\",\n    \"key\": \"10192\",\n    \"description\": \"a man is holding a guitar and dancing with one hand in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_njnpvxnQZZ1twuu9lo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47576\",\n    \"key\": \"15339\",\n    \"description\": \"a man in a black shirt is drinking out of a wine glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99skaFerS1s1ye39o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49017\",\n    \"key\": \"23535\",\n    \"description\": \"a guy wearing a blue shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_njqnmqzy391rnahu9o1_250\",\n    \"question\": \"what is running down the hill in front of a female?\",\n    \"answer\": \"camel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30095\",\n    \"key\": \"21347\",\n    \"description\": \"a camel is running down a hill in front of a female.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbvej9NLlj1rq00p0o1_500\",\n    \"question\": \"what is the blond boy playing and singing into a headset?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4658\",\n    \"key\": \"93311\",\n    \"description\": \"the blond boy is playing a guitar and singing into a headset.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9airoPJM1rs58dao1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA875\",\n    \"key\": \"57001\",\n    \"description\": \"blue car speeds down a track and narrowly avoids crashing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesksmxUsA1rdfljoo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37703\",\n    \"key\": \"76053\",\n    \"description\": \"a white car is passing by another one.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpnflPD2K1sklqsoo1_400\",\n    \"question\": \"where did three men stand dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9847\",\n    \"key\": \"58049\",\n    \"description\": \"three men stood dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyot5SBCc1u2w55do1_250\",\n    \"question\": \"where does the girl sit down.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52388\",\n    \"key\": \"10185\",\n    \"description\": \"a girl sits down in her chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzqaupSSA1u96zdso1_500\",\n    \"question\": \"where are two people playing instruments.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43714\",\n    \"key\": \"70130\",\n    \"description\": \"two people are playing instruments together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nis929B11K1sxod2fo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13326\",\n    \"key\": \"50970\",\n    \"description\": \"a guy with gray hair is shaking his head and sighing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8nijuMcp1tg6h6to1_500\",\n    \"question\": \"what is the woman wrapping around herself?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18117\",\n    \"key\": \"50527\",\n    \"description\": \"a woman is wrapping a jacket around herself.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1n7iJhKv1u7ide8o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7721\",\n    \"key\": \"42874\",\n    \"description\": \"a man with a dark mustache and white top is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4pb9RTBf1sjp7p6o1_500\",\n    \"question\": \"what is the man wearing a pink suit pretends and then throws?\",\n    \"answer\": \"bowl\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29568\",\n    \"key\": \"62579\",\n    \"description\": \"a man wearing a pink suit pretends to eat and then throws the bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3xjjWRr51tdmffyo1_250\",\n    \"question\": \"what is bouncing in the chair?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19901\",\n    \"key\": \"47903\",\n    \"description\": \"a cat is bouncing in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nasnqxg8kb1tt6vx5o1_250\",\n    \"question\": \"what did the person rid?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20332\",\n    \"key\": \"43969\",\n    \"description\": \"a person rides a motorcycle while they are inside of a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhreaq0fbQ1u7dl8fo1_250\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA286\",\n    \"key\": \"47460\",\n    \"description\": \"a man in a blue coat and blue scarf is frowning.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkte7fmIqx1s6zpepo1_400\",\n    \"question\": \"what do the kids throw back and forth to each other while jumping into the pool?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31779\",\n    \"key\": \"50080\",\n    \"description\": \"the kids throw a ball back and forth to each other while jumping into the pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqy0wwLGsd1tl934lo1_250\",\n    \"question\": \"how many people is this smiling and giving high fives?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43881\",\n    \"key\": \"51764\",\n    \"description\": \"this is two people smiling and giving high fives.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2vux3HHB1rl202so1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50480\",\n    \"key\": \"5298\",\n    \"description\": \"a woman with long brown hair is shifting her head back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyjemkHsE1t086keo1_250\",\n    \"question\": \"where is the woman practicing cartwheels.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42607\",\n    \"key\": \"53385\",\n    \"description\": \"a woman is practicing cartwheels in a dance studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf63x9XNF61s7be03o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43571\",\n    \"key\": \"17738\",\n    \"description\": \"a man in green hair is talking to somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_noumotOiwV1spw05ko1_250\",\n    \"question\": \"what is the woman putting and taking a pipe?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41916\",\n    \"key\": \"36480\",\n    \"description\": \"a woman is putting her glasses and taking a pipe.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7t11scOH1tjmrqwo1_400\",\n    \"question\": \"what is the man with safety glasses using?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10730\",\n    \"key\": \"77615\",\n    \"description\": \"a man with safety glasses is using a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkybhohXkX1tmnntwo1_400\",\n    \"question\": \"what is running away from the baby?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25098\",\n    \"key\": \"93625\",\n    \"description\": \"a cat is running away from the baby.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxp04rEFk1tjjnlno1_400\",\n    \"question\": \"what is shaking paws while sleeping?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14260\",\n    \"key\": \"71522\",\n    \"description\": \"a kitten is shaking paws while sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee24nvJCa1rpqr23o1_400\",\n    \"question\": \"what does the man jump off onto another next to another man?\",\n    \"answer\": \"building\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37517\",\n    \"key\": \"78951\",\n    \"description\": \"a man jumps off a tall building onto another next to another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99g80NrHy1rfd881o1_250\",\n    \"question\": \"what is this man in a suit and tie smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9527\",\n    \"key\": \"14642\",\n    \"description\": \"this man in a suit and tie is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqbubNR881tdmffyo1_500\",\n    \"question\": \"what is running and falling down at the beach?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39805\",\n    \"key\": \"57557\",\n    \"description\": \"a dog is running and falling down at the beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2czp9Mrv1rpqr23o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29443\",\n    \"key\": \"5843\",\n    \"description\": \"the man in the blue shirt is sliding down the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbadug35Zi1tl0ko9o1_400\",\n    \"question\": \"what is jumping into the box and falling off of a couch?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51081\",\n    \"key\": \"57534\",\n    \"description\": \"a cat is jumping into a box and falling off of a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_na213y4pel1tdek48o1_400\",\n    \"question\": \"what is jumping over the hurdle and then rolling around on the ground?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20537\",\n    \"key\": \"43172\",\n    \"description\": \"a horse is jumping over a hurdle and then rolling around on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4jfl16Cl1syfpbbo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10721\",\n    \"key\": \"101310\",\n    \"description\": \"a man in a white jacket is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng3spyNCrB1sq9tvpo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1696\",\n    \"key\": \"58299\",\n    \"description\": \"a beautiful woman dressed in black is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nby8fzSw431tkpzw0o1_400\",\n    \"question\": \"what is lying on the couch is looking to the side?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38043\",\n    \"key\": \"80393\",\n    \"description\": \"cat is lying on a couch is looking to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_npy843CsLa1sxmt29o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23812\",\n    \"key\": \"65714\",\n    \"description\": \"a woman wearing a white shirt is stretching her leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xu4w1Lfq1tatohao1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20833\",\n    \"key\": \"40652\",\n    \"description\": \"a gray cat is kicking a door with its back leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbzobuxqUi1s3cp8no1_250\",\n    \"question\": \"how many man are taking pictures with a stick?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47293\",\n    \"key\": \"9853\",\n    \"description\": \"two man are taking pictures with a stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_notwo9EXP21rkq1vmo1_500\",\n    \"question\": \"what is being played on the record player?\",\n    \"answer\": \"disc\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26588\",\n    \"key\": \"91447\",\n    \"description\": \"arctic monkeys disc is being played on a record player.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd52u0m5cZ1r6z87zo1_250\",\n    \"question\": \"what are two men playing on a stage?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50130\",\n    \"key\": \"24022\",\n    \"description\": \"two men are playing drums on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhdzmfYSE1s2pll9o1_250\",\n    \"question\": \"what is licking water from a dripping tap?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27389\",\n    \"key\": \"7659\",\n    \"description\": \"a cat is licking water from a dripping tap.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngiqj7Yelt1qfqktro1_400\",\n    \"question\": \"what does the drift around a turn?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26447\",\n    \"key\": \"60770\",\n    \"description\": \"a white car does a drift around a turn.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9o0vbrAQf1qedx60o1_500\",\n    \"question\": \"what does the young man play?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11444\",\n    \"key\": \"94470\",\n    \"description\": \"a young man plays the guitar while someone points at it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk1jrdGhR1uakcnho1_500\",\n    \"question\": \"how many man stand around and look at each other angrily?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43568\",\n    \"key\": \"71562\",\n    \"description\": \"two man stand around and look at each other angrily.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lv4b2SW11s4eig5o1_250\",\n    \"question\": \"what is the man tossing into the crowd?\",\n    \"answer\": \"flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11734\",\n    \"key\": \"5238\",\n    \"description\": \"the man is tossing flowers into the crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nac7umDO0N1tjct3zo1_500\",\n    \"question\": \"what is on top of a leaf?\",\n    \"answer\": \"fly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30273\",\n    \"key\": \"40939\",\n    \"description\": \"the fly is on top of a leaf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkojohuXJ41sar6a1o1_400\",\n    \"question\": \"how many people are smiling at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38424\",\n    \"key\": \"75780\",\n    \"description\": \"two people are smiling at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh8g8xOFqk1tx8mn0o1_400\",\n    \"question\": \"what are racing on the track as one stalls?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28016\",\n    \"key\": \"55560\",\n    \"description\": \"the cars are racing on a track as one stalls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0ggmHHk21tq3jd9o1_400\",\n    \"question\": \"what are quickly cooked in the pan?\",\n    \"answer\": \"vegetables\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20000\",\n    \"key\": \"53160\",\n    \"description\": \"some seasoned vegetables are quickly cooked in a pan.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1kqqpnFb1u6xg70o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5415\",\n    \"key\": \"36370\",\n    \"description\": \"a man with brown hair danced slightly with his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9z2mjZG4z1qkzi04o1_250\",\n    \"question\": \"how many men are standing in the bathroom with some alcohol?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1630\",\n    \"key\": \"23777\",\n    \"description\": \"two men are standing in a bathroom with some alcohol.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8y33kztmb1tcqa3qo1_250\",\n    \"question\": \"where is the guy holding balloon animals.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37755\",\n    \"key\": \"27396\",\n    \"description\": \"a guy is holding balloon animals in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6x4iCSrt1slj978o1_500\",\n    \"question\": \"what is the pedestrian watching?\",\n    \"answer\": \"wash\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17555\",\n    \"key\": \"100805\",\n    \"description\": \"a pedestrian is watching a car wash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbigfaMpHw1rhe0jeo1_250\",\n    \"question\": \"how many man are hugging each other and being upset?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16729\",\n    \"key\": \"41462\",\n    \"description\": \"two man are hugging each other and being upset.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfars4Bun81rlg77no1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28078\",\n    \"key\": \"88690\",\n    \"description\": \"a guy with short,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfuhxi1S9m1tb4ropo1_250\",\n    \"question\": \"what is the woman standing under an umbrella and closing?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40593\",\n    \"key\": \"5946\",\n    \"description\": \"a woman is standing under an umbrella and closing her jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nim1nvt1em1sqlieso1_400\",\n    \"question\": \"how many people are fighting each other and kicking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34181\",\n    \"key\": \"93077\",\n    \"description\": \"these two people are fighting each other and kicking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6itwHzFO1slj978o1_250\",\n    \"question\": \"what is sticking his head out the sun roof and his teeth are showing?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38677\",\n    \"key\": \"23975\",\n    \"description\": \"a dog is sticking his head out the sun roof and his teeth are showing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney67x8wtj1qememvo1_400\",\n    \"question\": \"how many men are embracing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37750\",\n    \"key\": \"22473\",\n    \"description\": \"two men are embracing each other and one of them grabs the other ones butt.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqgko79h11tk2ngvo1_400\",\n    \"question\": \"what is holding onto an object and trying to eat it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39549\",\n    \"key\": \"27447\",\n    \"description\": \"a cat is holding onto an object and trying to eat it.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxndc7o421tej170o2_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28436\",\n    \"key\": \"94895\",\n    \"description\": \"this is a girl in a white dress singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2fsecMUu1sjaih3o1_400\",\n    \"question\": \"what is the man smoking with two people behind him?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14804\",\n    \"key\": \"90090\",\n    \"description\": \"a man is smoking a large hand rolled cigarette with two people behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hmg4UEOf1thtos8o1_400\",\n    \"question\": \"how many girls is wearing black clothing are talking and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14868\",\n    \"key\": \"33561\",\n    \"description\": \"two girls wearing black clothing are talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvtu2PkC51qlj76no1_500\",\n    \"question\": \"what is playing the concert in a crowded venue?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3414\",\n    \"key\": \"18821\",\n    \"description\": \"a rock band is playing a concert in a crowded venue.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98c90V7xS1sm3y75o1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39235\",\n    \"key\": \"86425\",\n    \"description\": \"a black woman in a hat spoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2cngaaiL1u3a0b7o1_250\",\n    \"question\": \"what is the girl with major cleavage carrying and smiling?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26809\",\n    \"key\": \"48058\",\n    \"description\": \"a girl with major cleavage is carrying a puppy and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghmju272O1qdxu8so1_400\",\n    \"question\": \"how many guys hit each other on the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37523\",\n    \"key\": \"61321\",\n    \"description\": \"two guys hit each other on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelr3ztDAw1u0z8bjo1_250\",\n    \"question\": \"what is the color of the juice?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10468\",\n    \"key\": \"85495\",\n    \"description\": \"a man takes a pill with orange juice from a jug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2oiuJgw01svos5ho1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5025\",\n    \"key\": \"39272\",\n    \"description\": \"a man dressed in black tilts his head back as he drinks from a small cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4iytkj9W1tjjejho1_250\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42683\",\n    \"key\": \"39706\",\n    \"description\": \"a boy with blue eyes is saying something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vh2js6zv1t1j5ogo1_250\",\n    \"question\": \"what are the group of people in black using?\",\n    \"answer\": \"harness\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13968\",\n    \"key\": \"44032\",\n    \"description\": \"a group of people in black are using a harness to get into a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rldadoip1twznkvo1_250\",\n    \"question\": \"how many bananas did the baby elephant eat?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5642\",\n    \"key\": \"41985\",\n    \"description\": \"the baby elephant ate the two bananas.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk1rp38Pq1uyssdqo1_540\",\n    \"question\": \"what runs down the hall then lays down?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8094\",\n    \"key\": \"10262\",\n    \"description\": \"a white cat runs down a hall then lays down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuvcycrMb1tana87o1_250\",\n    \"question\": \"where is man kissing a woman while.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9895\",\n    \"key\": \"78506\",\n    \"description\": \"man is kissing a woman while in a swimming pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nais2wBIx11s71nvbo1_500\",\n    \"question\": \"how many girls are scuba diving under water?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19817\",\n    \"key\": \"61166\",\n    \"description\": \"two girls are scuba diving under water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzw6wlLMO1tfjrdno1_400\",\n    \"question\": \"how many teenage girls are putting the hoods on their coats?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46817\",\n    \"key\": \"29179\",\n    \"description\": \"two teenage girls are putting the hoods on their coats.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvmt3qmAh1u370zso1_540\",\n    \"question\": \"what is the color of the flower?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33721\",\n    \"key\": \"42521\",\n    \"description\": \"the woman carefully wound the string around the green flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnq4tzM7M51urqm0mo1_500\",\n    \"question\": \"what fly close to each other over a desert?\",\n    \"answer\": \"airplanes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6341\",\n    \"key\": \"85138\",\n    \"description\": \"two planes fly close to each other over a desert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0ih2uUAV1tquxyyo1_500\",\n    \"question\": \"how many men hug and hold each other tightly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17600\",\n    \"key\": \"93964\",\n    \"description\": \"two men hug and hold each other tightly.\"\n  },\n  {\n    \"video_name\": \"tumblr_no4lrfJC0h1uuu6ydo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32653\",\n    \"key\": \"352\",\n    \"description\": \"a young handsome guy with black hat is chewing gum while walking on the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6r6tPi0N1sufrqro1_500\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42755\",\n    \"key\": \"63753\",\n    \"description\": \"a black boy with ugly teeth opens his mouth wide.\"\n  },\n  {\n    \"video_name\": \"tumblr_nccwnhLJjY1qlihd0o1_500\",\n    \"question\": \"what is the man taking off?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31026\",\n    \"key\": \"20591\",\n    \"description\": \"the man is taking off his leather jacket to reveal a slotted shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhk3b9NsJo1qbpuo2o1_500\",\n    \"question\": \"how many men smile and speak to each other and walk down a road?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9410\",\n    \"key\": \"88888\",\n    \"description\": \"two men smile and speak to each other and walk down a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxspvkFfy1tgose8o1_250\",\n    \"question\": \"what is the color of the bird?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21814\",\n    \"key\": \"38929\",\n    \"description\": \"a girl makes a black bird fly away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1kuie2DW1tdjuqvo1_400\",\n    \"question\": \"what is gliding sideways on the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5284\",\n    \"key\": \"2600\",\n    \"description\": \"a white car is gliding sideways on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2dswSibc1ti81ado1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16080\",\n    \"key\": \"64845\",\n    \"description\": \"a man dressed in white clothes is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zu57mMW51t36lbdo1_400\",\n    \"question\": \"what is being turned into the convertible car?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17056\",\n    \"key\": \"53950\",\n    \"description\": \"the car is being turned into a convertible car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhdzmfYSE1s2pll9o1_250\",\n    \"question\": \"what does the cat lick before stopping?\",\n    \"answer\": \"opening\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44847\",\n    \"key\": \"7659\",\n    \"description\": \"a cat licks a pipe opening before stopping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemtylU1ek1sspq5qo1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35636\",\n    \"key\": \"32816\",\n    \"description\": \"a man in black sweater is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n901479nQ81rja3l7o1_250\",\n    \"question\": \"how many men are holding each other and falling down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14035\",\n    \"key\": \"17171\",\n    \"description\": \"two men are holding each other and falling down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni06hc76UJ1u639x2o1_500\",\n    \"question\": \"what is sliding around the corner on a racing track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35162\",\n    \"key\": \"72526\",\n    \"description\": \"a black car is sliding around a corner on a racing track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncce6eafkp1qkbofio1_400\",\n    \"question\": \"how many balloons does the man have on strings?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5072\",\n    \"key\": \"49380\",\n    \"description\": \"a man has five balloons on strings and another man is trying to get them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nir5kizmPH1snmvsao1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47855\",\n    \"key\": \"429\",\n    \"description\": \"a black man wearing glasses is blowing white smoke from his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrcgum4dL1sp70bgo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35144\",\n    \"key\": \"33084\",\n    \"description\": \"the boy with the dark hair and blue jacket is smiling widely.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbeo6Qqr91tl8fnfo1_400\",\n    \"question\": \"what is dancing and jumping on his hind legs?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38217\",\n    \"key\": \"80040\",\n    \"description\": \"a small dog is dancing and jumping on his hind legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9l6t6WLLm1shsozuo1_500\",\n    \"question\": \"where are two people and one is laughing.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30202\",\n    \"key\": \"88496\",\n    \"description\": \"two people are in a car and one is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ybrqylkm1qeysfio1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34796\",\n    \"key\": \"38438\",\n    \"description\": \"a girl with short brown hair is singing for a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2cngaaiL1u3a0b7o1_250\",\n    \"question\": \"what is the woman wearing a red dress is holding?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19640\",\n    \"key\": \"48058\",\n    \"description\": \"a woman wearing a red dress is holding a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2rue39Be1qlxas3o1_400\",\n    \"question\": \"what is the guy with long hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA757\",\n    \"key\": \"65531\",\n    \"description\": \"a guy with long hair is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_neua43pKJC1t0kntqo1_250\",\n    \"question\": \"how many yellow characters stand on an indoor field and bow?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47734\",\n    \"key\": \"53580\",\n    \"description\": \"two yellow characters stand on an indoor field and bow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8kiswJ7Ht1slb5kno1_500\",\n    \"question\": \"what is the cat moving?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8765\",\n    \"key\": \"71356\",\n    \"description\": \"a cat is moving his tail which is on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9k4y7xcN1qj7ylio1_250\",\n    \"question\": \"what is the man standing and drinking?\",\n    \"answer\": \"juice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8796\",\n    \"key\": \"7848\",\n    \"description\": \"a man is standing and drinking a juice.\"\n  },\n  {\n    \"video_name\": \"tumblr_njn51xCYFt1tldu19o1_500\",\n    \"question\": \"what does the man move away from the person next to him?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5677\",\n    \"key\": \"70213\",\n    \"description\": \"a man moves a drink away from the person next to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2ve9qFfE1u4v3ypo1_500\",\n    \"question\": \"what walks in circles on glass?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20009\",\n    \"key\": \"49202\",\n    \"description\": \"the cat walks in circles on glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndce9hl2FS1tsn1aso1_500\",\n    \"question\": \"what is the creature with an antenna on its head smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA798\",\n    \"key\": \"34465\",\n    \"description\": \"a creature with an antenna on its head is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfg071UT1y1u24nfoo1_250\",\n    \"question\": \"where is the person laying blowing smoke rings.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10713\",\n    \"key\": \"37810\",\n    \"description\": \"a person is laying in bed blowing smoke rings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhw1ktJ3Dd1tx8mn0o1_400\",\n    \"question\": \"what stops while the other motorcycle is on the ground?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7023\",\n    \"key\": \"77737\",\n    \"description\": \"a motorcycle stops while the other motorcycle is on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs6h9GZNT1rerh68o1_400\",\n    \"question\": \"what walks forwards then jumps up?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26864\",\n    \"key\": \"9178\",\n    \"description\": \"a small dog walks forwards then jumps up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncusywWoFr1skzykeo1_250\",\n    \"question\": \"where are two men and one of them is looking down then points.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35077\",\n    \"key\": \"21512\",\n    \"description\": \"two men are in a darkened room and one of them is looking down then points.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcczs10pL1r4bi5do1_250\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34822\",\n    \"key\": \"51381\",\n    \"description\": \"a woman is dancing around and waving a red scarf.\"\n  },\n  {\n    \"video_name\": \"tumblr_naezgmYC1N1tjg4vgo1_250\",\n    \"question\": \"where is the cute girl singing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19626\",\n    \"key\": \"16087\",\n    \"description\": \"a cute girl is singing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbes1tkyPL1tkpzw0o1_250\",\n    \"question\": \"what does the man put down for little ducks?\",\n    \"answer\": \"brick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12984\",\n    \"key\": \"20256\",\n    \"description\": \"a man puts a brick down for little ducks to climb up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxyrmRV2x1u7lk74o1_400\",\n    \"question\": \"what is the kid wearing on his head?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2764\",\n    \"key\": \"35223\",\n    \"description\": \"a kid is wearing headphones on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl7d2DRMe1qbv408o1_r1_400\",\n    \"question\": \"what does the man with a moon for a head play?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5986\",\n    \"key\": \"35872\",\n    \"description\": \"a man with a moon for a head plays a piano.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4xuxJjdk1sfxnzso1_250\",\n    \"question\": \"what is pulling into the circular driveway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37387\",\n    \"key\": \"82976\",\n    \"description\": \"a car is pulling into a circular driveway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nisefh2V791u7fyrjo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11270\",\n    \"key\": \"49729\",\n    \"description\": \"a woman in an orange shirt is lying on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxspvkFfy1tgose8o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17770\",\n    \"key\": \"38929\",\n    \"description\": \"a young woman with black hair is shooing away a crow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqrag9xM6l1qi27q9o1_250\",\n    \"question\": \"how many young men are folding bed sheets?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37539\",\n    \"key\": \"40814\",\n    \"description\": \"two young men are folding bed sheets.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8zxwAEVB1tmze3vo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43497\",\n    \"key\": \"64410\",\n    \"description\": \"a boy with brown jacket is running in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nann6fCDOH1t5w6wco1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23924\",\n    \"key\": \"28507\",\n    \"description\": \"a woman with red dyed hair and a purple hat is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc26msUSeT1rn4engo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22638\",\n    \"key\": \"82125\",\n    \"description\": \"a girl with brown hair picked out a book.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlbtylYD61t4k3lzo1_250\",\n    \"question\": \"what is the car chasing down the highway?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43612\",\n    \"key\": \"93530\",\n    \"description\": \"a car is chasing a motorcycle down the highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba3cuyO0E1tl3ks1o1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24916\",\n    \"key\": \"90421\",\n    \"description\": \"a man wearing a black suit shows his teeth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1q71Yuov1u1xquho1_500\",\n    \"question\": \"what is feeding pink heart-shaped cookie to somebody?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26391\",\n    \"key\": \"88088\",\n    \"description\": \"a pop star is feeding pink heart-shaped cookie to somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_np88x8KELj1srwy2po1_400\",\n    \"question\": \"how many men who are wearing black suits dance in a circle?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39627\",\n    \"key\": \"96841\",\n    \"description\": \"three men who are wearing black suits dance in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n993yi7TgY1sjuzlno1_400\",\n    \"question\": \"what crawled through the cardboard tube?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43598\",\n    \"key\": \"8582\",\n    \"description\": \"a bird crawled through a cardboard tube.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3j8sSsx51u0a3u8o1_400\",\n    \"question\": \"how many girls are stretching out before their ballet recital?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32947\",\n    \"key\": \"50647\",\n    \"description\": \"two girls are stretching out before their ballet recital.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc29jdM0IG1t6t8bgo1_500\",\n    \"question\": \"how many man is performing in a concert sing and hold to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA954\",\n    \"key\": \"95727\",\n    \"description\": \"a two man performing in a concert sing and hold to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngmx782QcM1tjjejho1_250\",\n    \"question\": \"where is the boy brushing his teeth.\",\n    \"answer\": \"? bathroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51703\",\n    \"key\": \"39751\",\n    \"description\": \"the boy is brushing his teeth in the bathroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94c9kD6eu1s0wfo1o1_250\",\n    \"question\": \"what does the guitar player in black adjust?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27067\",\n    \"key\": \"40368\",\n    \"description\": \"a guitar player in black adjusts his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpvlv2vBX1qfz6d1o1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11173\",\n    \"key\": \"71892\",\n    \"description\": \"a man in a black hat is talking and moving his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzpw5TzFF1u814lco1_400\",\n    \"question\": \"what is the man playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31914\",\n    \"key\": \"61222\",\n    \"description\": \"a man is playing a guitar while he is in a desert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv2wwA6vd1tatohao1_400\",\n    \"question\": \"what makes black cat fall down ladder?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52857\",\n    \"key\": \"41874\",\n    \"description\": \"white cat makes black cat fall down ladder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd7flcAAEj1thr6umo1_400\",\n    \"question\": \"how many friends are sitting on the couch talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22190\",\n    \"key\": \"47926\",\n    \"description\": \"two friends are sitting on a couch talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf3n9tRJN1td8ijso1_500\",\n    \"question\": \"what is the guy speaking into a microphone and holding up?\",\n    \"answer\": \"frame\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45610\",\n    \"key\": \"47511\",\n    \"description\": \"a guy is speaking into a microphone and holding up a frame.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmqd8eIh1tidcnvo1_400\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14941\",\n    \"key\": \"64316\",\n    \"description\": \"the brown horse gallops across the field as the rider hangs on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrgl64288d1uayg4ko1_500\",\n    \"question\": \"what is flying out of the cage?\",\n    \"answer\": \"insect\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43250\",\n    \"key\": \"82882\",\n    \"description\": \"an insect is flying out of a cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqx3b5Le21sz068fo1_250\",\n    \"question\": \"what are playing with each other in a room?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16601\",\n    \"key\": \"24078\",\n    \"description\": \"two cats are playing with each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy3wfD2FB1tx8mn0o1_400\",\n    \"question\": \"what is crashing into the barriers on a race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45204\",\n    \"key\": \"76947\",\n    \"description\": \"a race car is crashing into the barriers on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3bd9GirY1shee74o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5044\",\n    \"key\": \"51307\",\n    \"description\": \"a man in a red shirt is making a silly face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2eksOOna1smdw0io1_400\",\n    \"question\": \"what is kissing the woman in a red shirt?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14048\",\n    \"key\": \"28461\",\n    \"description\": \"a dog is kissing a woman in a red shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2bhazRt01u1nko6o1_400\",\n    \"question\": \"what are people watching?\",\n    \"answer\": \"horses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21395\",\n    \"key\": \"28705\",\n    \"description\": \"people are watching horses racing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncql995UBl1u073goo1_400\",\n    \"question\": \"what is following something?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3236\",\n    \"key\": \"28410\",\n    \"description\": \"a black and white cat is following something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtua6mnFp1sf7oa4o1_400\",\n    \"question\": \"what is the woman with long hair putting in front of her face?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34138\",\n    \"key\": \"16107\",\n    \"description\": \"a woman with long hair is putting a fur coat in front of her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nju1iwQyUo1un53eto1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19869\",\n    \"key\": \"62948\",\n    \"description\": \"a girl wearing a black dress is walking down the path to a band.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s9e8kRKq1svgp20o1_500\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32197\",\n    \"key\": \"99745\",\n    \"description\": \"a man is smiling at his friend in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9by90fW3W1ruvp0co1_500\",\n    \"question\": \"how many man is standing by the car?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8853\",\n    \"key\": \"89807\",\n    \"description\": \"two men are smoking and one man is standing by the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1e6cP1M51s61j2vo1_400\",\n    \"question\": \"where is the girl sitting up messing her hair up.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4473\",\n    \"key\": \"28909\",\n    \"description\": \"a girl is sitting up in bed messing her hair up.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8y4n5b77l1txzv32o1_400\",\n    \"question\": \"how many females are laughing at something together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19620\",\n    \"key\": \"32326\",\n    \"description\": \"two females are laughing at something together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsrf7PNZs1qe2thio1_500\",\n    \"question\": \"what jumped over the tall wooden fence?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43942\",\n    \"key\": \"98734\",\n    \"description\": \"a big white horse jumped over a tall wooden fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2cdxmG9W1turx3wo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52861\",\n    \"key\": \"14303\",\n    \"description\": \"a white woman is giving two thumbs up.\"\n  },\n  {\n    \"video_name\": \"tumblr_noese0qKy21qipc57o1_500\",\n    \"question\": \"what is the person opening to a room?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34102\",\n    \"key\": \"60419\",\n    \"description\": \"a person is opening a door to a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1cadaCNH1sops1co1_250\",\n    \"question\": \"how many fingers did the guy sing then held up with hi tongue out?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8120\",\n    \"key\": \"1483\",\n    \"description\": \"a guy sang then held up two fingers with hi tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzunfJM151tkc327o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7404\",\n    \"key\": \"95987\",\n    \"description\": \"a man in white is jumping over a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxcdi6Vyq1sfwk5to1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22086\",\n    \"key\": \"39722\",\n    \"description\": \"a person with blue hair is sitting and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu66zHOSo1r5um3mo1_400\",\n    \"question\": \"what does the woman hold held?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19984\",\n    \"key\": \"66221\",\n    \"description\": \"a woman holds held her dress while running runs and a man chases her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5t5t8F9x1tidrdwo1_400\",\n    \"question\": \"what is the young man tuning before laughing out loud?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40410\",\n    \"key\": \"65582\",\n    \"description\": \"a young man is tuning his guitar before laughing out loud.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg54hiSG91tgetb4o1_250\",\n    \"question\": \"what jumps head first into a box and falls out?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4831\",\n    \"key\": \"50207\",\n    \"description\": \"a fat cat jumps head first into a box and falls out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazi03WXVg1slj978o1_500\",\n    \"question\": \"what is driving on the road swerves and almost hits a man?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36889\",\n    \"key\": \"62179\",\n    \"description\": \"a car is driving on the road swerves and almost hits a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nre9qqQRxE1uzud0co2_400\",\n    \"question\": \"how many girls are these that are holding microphones and singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27353\",\n    \"key\": \"64114\",\n    \"description\": \"these are two girls that are holding microphones and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9paf34bUZ1s5yymto1_400\",\n    \"question\": \"what are two men in a studio laughing and one picks up?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14145\",\n    \"key\": \"58609\",\n    \"description\": \"two men in a studio are laughing and one picks up a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi5xzNQxc1thpi76o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18866\",\n    \"key\": \"37419\",\n    \"description\": \"a young man in black is running his hand through his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdhgdA8ez1sxvd87o1_400\",\n    \"question\": \"what is the little cat pulling to another big cat?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4418\",\n    \"key\": \"43334\",\n    \"description\": \"a little cat is pulling the tail to another big cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_np88x8KELj1srwy2po1_400\",\n    \"question\": \"how many men jump and turn in the group on stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28146\",\n    \"key\": \"96841\",\n    \"description\": \"three men jump and turn in a group on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazqwgPDxU1tiv0r8o1_500\",\n    \"question\": \"where are two males making gestures with their hands.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26896\",\n    \"key\": \"63749\",\n    \"description\": \"two males in a hotel bedroom are making gestures with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nct52sYe2r1u0sv5po1_500\",\n    \"question\": \"what is the color of the players?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8104\",\n    \"key\": \"95749\",\n    \"description\": \"two white team players with short hair congratulate each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1qdoBVER1u5ha1qo1_250\",\n    \"question\": \"what is the guy giving a football player?\",\n    \"answer\": \"candy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43542\",\n    \"key\": \"21978\",\n    \"description\": \"a guy is giving a football player candy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobecu8wyv1s5cww5o1_400\",\n    \"question\": \"how many young people are kissing and removing each others clothing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3042\",\n    \"key\": \"63193\",\n    \"description\": \"two young people are kissing and removing each others clothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94pz0wUGh1s218xco1_500\",\n    \"question\": \"how many men are on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49476\",\n    \"key\": \"92294\",\n    \"description\": \"two men are on a stage and one is talking on a mic.\"\n  },\n  {\n    \"video_name\": \"tumblr_njukcfEiK11r1n65mo1_400\",\n    \"question\": \"what is the cat riding and performing some tricks?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40851\",\n    \"key\": \"40925\",\n    \"description\": \"a cat is riding a skateboard and performing some tricks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng64tsv1cY1tg5lq8o1_250\",\n    \"question\": \"how many people are very close together singing into the microphone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5943\",\n    \"key\": \"23017\",\n    \"description\": \"two people are very close together singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7jh4DbZY1r65nqjo1_500\",\n    \"question\": \"where are the man and a woman dancing.\",\n    \"answer\": \"? building\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38939\",\n    \"key\": \"54728\",\n    \"description\": \"a man and a woman are dancing in an old building.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxyq4bNFX1tzhkoao1_400\",\n    \"question\": \"what is knocking over the small glass cup?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9230\",\n    \"key\": \"11308\",\n    \"description\": \"a cat is knocking over a small glass cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2xc108CT1sh1v2uo1_500\",\n    \"question\": \"what is running to water?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25485\",\n    \"key\": \"57385\",\n    \"description\": \"a brown dog is running to water.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcj27AOTX1tp9bieo1_250\",\n    \"question\": \"how many girls with hats and glasses make faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA114\",\n    \"key\": \"6762\",\n    \"description\": \"two girls with hats and glasses make faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbaunu62st1slj978o1_250\",\n    \"question\": \"where is man trying to extinguish a fire.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44731\",\n    \"key\": \"82937\",\n    \"description\": \"man trying to extinguish a fire in his kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3ljyQlT21u34u6eo1_500\",\n    \"question\": \"where are the young man and woman embracing.\",\n    \"answer\": \"? library\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12462\",\n    \"key\": \"89062\",\n    \"description\": \"a young man and woman are embracing in a library.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g5efSoWD1rsxypwo1_400\",\n    \"question\": \"what are cleaning their paws as they sit in a small container?\",\n    \"answer\": \"kittens\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18420\",\n    \"key\": \"22459\",\n    \"description\": \"three kittens are cleaning their paws as they sit in a small container.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqgko79h11tk2ngvo1_400\",\n    \"question\": \"what is chewing on the corn on the cob?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29458\",\n    \"key\": \"27447\",\n    \"description\": \"a cat is chewing on a corn on the cob.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4wp15M1R1sht3fmo1_250\",\n    \"question\": \"what does someone carve into a flower?\",\n    \"answer\": \"watermelon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5868\",\n    \"key\": \"73936\",\n    \"description\": \"someone carves a watermelon into a flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbn4vdgXnz1tz9jaqo1_400\",\n    \"question\": \"what does the soccer player dribble through several defenders?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48124\",\n    \"key\": \"82365\",\n    \"description\": \"a soccer player dribbles a ball through several defenders.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni152nnuwQ1u433who1_400\",\n    \"question\": \"how many fingers does the young boy lift in the air?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA135\",\n    \"key\": \"64676\",\n    \"description\": \"a young boy lifts two fingers in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvezjw04N1unmn69o1_400\",\n    \"question\": \"how many girls is wearing blue jumpsuits are singing and dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18318\",\n    \"key\": \"24800\",\n    \"description\": \"the three girls wearing blue jumpsuits are singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pv9bfpjq1ruazbno1_500\",\n    \"question\": \"what is the woman in camouflage grabbing and moving?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23114\",\n    \"key\": \"45887\",\n    \"description\": \"a woman in camouflage is grabbing her glasses and moving.\"\n  },\n  {\n    \"video_name\": \"tumblr_niv5i1tpLx1s6zpepo1_400\",\n    \"question\": \"what does the young man fall off?\",\n    \"answer\": \"chair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48738\",\n    \"key\": \"72636\",\n    \"description\": \"the young man falls off his chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2iriwRIP1rsxxvao1_500\",\n    \"question\": \"what is the young man with his hand in front of his face raising up?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42710\",\n    \"key\": \"13611\",\n    \"description\": \"a young man with his hand in front of his face is raising his shirt up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nilyoyDugt1qdzxbio1_500\",\n    \"question\": \"what is going through the water?\",\n    \"answer\": \"boat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13827\",\n    \"key\": \"55069\",\n    \"description\": \"a motor boat is going through the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_np8fpolVPv1uvid27o1_1280\",\n    \"question\": \"what is speeding down the road with buildings on the side?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37754\",\n    \"key\": \"65265\",\n    \"description\": \"a white car is speeding down a road with buildings on the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_n961ixhQyx1ttxslwo1_250\",\n    \"question\": \"what do two costumed men walk down talking to each other?\",\n    \"answer\": \"hallway\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31161\",\n    \"key\": \"21630\",\n    \"description\": \"two costumed men walk down a hallway talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_njox7s52pH1sico5po1_250\",\n    \"question\": \"how many boys are fighting with pointy hats on their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47699\",\n    \"key\": \"49619\",\n    \"description\": \"two boys are fighting with pointy hats on their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_niom611F581qbk9sio1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18009\",\n    \"key\": \"68144\",\n    \"description\": \"a guy wearing a white shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndywttSMPx1tsspsco6_500\",\n    \"question\": \"how many long hair men in black with helmet is holding two hand to fight?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40416\",\n    \"key\": \"44970\",\n    \"description\": \"two long hair men in black with helmet is holding two hand to fight and one man is falling down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkux12i23M1tirdpvo1_400\",\n    \"question\": \"what is the color of the pantyhose?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30452\",\n    \"key\": \"96809\",\n    \"description\": \"a woman is putting on a pair of black pantyhose.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkbm8DACb1t0w9oqo1_400\",\n    \"question\": \"how many young men is wearing red antler headdresses are smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA827\",\n    \"key\": \"15773\",\n    \"description\": \"two young men wearing red antler headdresses are smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x5byGReo1tn5k2xo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2639\",\n    \"key\": \"38397\",\n    \"description\": \"a woman with white hair sat down and looking away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndy7ccfmXN1rfibsxo1_400\",\n    \"question\": \"what is the grenade rolling towards a teddy bear and then explodes?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10719\",\n    \"key\": \"62905\",\n    \"description\": \"a grenade is rolling towards a teddy bear and then the teddy bear explodes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbz0yeXa3A1qflnb4o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45270\",\n    \"key\": \"27613\",\n    \"description\": \"a girl wearing a blue shirt rips her shirt off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyxc5sgiN1r97gquo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34909\",\n    \"key\": \"29414\",\n    \"description\": \"a woman with braided pig tails,\"\n  },\n  {\n    \"video_name\": \"tumblr_ninfq9WzsZ1s6zpepo1_250\",\n    \"question\": \"what is on top of the chair and tries to jump on counter?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49813\",\n    \"key\": \"78597\",\n    \"description\": \"a cat is on top of the chair and tries to jump on counter.\"\n  },\n  {\n    \"video_name\": \"tumblr_na17ppTVng1tn4oroo1_500\",\n    \"question\": \"how many people are in the car looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36567\",\n    \"key\": \"89162\",\n    \"description\": \"two people are in a car looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nok04gJ0dF1ssgyoro1_250\",\n    \"question\": \"what is the woman taking and then patting her chest?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13439\",\n    \"key\": \"14757\",\n    \"description\": \"a woman is taking a drink and then patting her chest.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkoxqBeA41qik8zvo1_500\",\n    \"question\": \"how many guys sit and talked and shook hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1681\",\n    \"key\": \"100936\",\n    \"description\": \"two guys sit and talked and shook hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx5xm9wAQ1u7lwzro1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23409\",\n    \"key\": \"62936\",\n    \"description\": \"a woman with black hair is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkpk1mOGIM1u2ddo1o1_400\",\n    \"question\": \"what is the man with a baseball hat lighting?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2633\",\n    \"key\": \"77514\",\n    \"description\": \"a man with a baseball hat is lighting a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9qf9m6OT1trbt9ao1_400\",\n    \"question\": \"how many men were dancing around in the house?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35960\",\n    \"key\": \"28960\",\n    \"description\": \"two men were dancing around in a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90gw6Akfm1rly19co1_500\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52778\",\n    \"key\": \"93055\",\n    \"description\": \"a man wearing an orange uniform is running down a field with a ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzozuOBUD1qa2qf2o1_400\",\n    \"question\": \"where are players playing football.\",\n    \"answer\": \"? stadium\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11809\",\n    \"key\": \"29347\",\n    \"description\": \"players are playing football in a stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_nderaiQnL51r098l7o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49367\",\n    \"key\": \"28375\",\n    \"description\": \"the girl with the red hair had a bandage over her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne49poeZeL1tmjapgo1_500\",\n    \"question\": \"where are two people looking each other.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30730\",\n    \"key\": \"36788\",\n    \"description\": \"two people are looking each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbguwh3avY1r32u50o1_250\",\n    \"question\": \"where are the woman and a man talking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17127\",\n    \"key\": \"52604\",\n    \"description\": \"a woman and a man are talking in a dark lit room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nohuamOayN1rntj9yo1_400\",\n    \"question\": \"where does the baseball player catch a ball.\",\n    \"answer\": \"? glove\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31\",\n    \"key\": \"71978\",\n    \"description\": \"a baseball player catches a ball in his glove.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1pnbrSwq1t6ksnpo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15160\",\n    \"key\": \"82573\",\n    \"description\": \"a man with tattoos wearing a white shirt is walking on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnvqr0CYdX1qek1oqo1_540\",\n    \"question\": \"what is the man playing in front of a crowd of people?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20058\",\n    \"key\": \"93641\",\n    \"description\": \"a man is playing a guitar in front of a crowd of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzzn8NlFp1tyah89o1_250\",\n    \"question\": \"what is the color of the person?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16210\",\n    \"key\": \"10519\",\n    \"description\": \"a person in black is dancing with others dancing behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nka6muC94q1r5ykfzo1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16896\",\n    \"key\": \"15983\",\n    \"description\": \"a black guy puts a basketball in a net.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk322sHZj91trdzyco1_500\",\n    \"question\": \"what is having the drink while on stage?\",\n    \"answer\": \"singer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38416\",\n    \"key\": \"59746\",\n    \"description\": \"a pop star singer is having a drink while on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq2k2tNV5l1src26ro1_500\",\n    \"question\": \"how many red headed women are staring intently at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50210\",\n    \"key\": \"73394\",\n    \"description\": \"two red headed women are staring intently at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpab2qFcV1s3i8oso1_500\",\n    \"question\": \"how many young boys were dancing around the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31598\",\n    \"key\": \"95398\",\n    \"description\": \"two young boys were dancing around a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh26ktHkqQ1sffyevo1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37151\",\n    \"key\": \"85444\",\n    \"description\": \"a young dancer in a purple outfit is dancing across the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dv4oVQDc1ti7qypo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35721\",\n    \"key\": \"51476\",\n    \"description\": \"a pretty woman with dark brown hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1tosEKEK1u3dafwo1_250\",\n    \"question\": \"how many guys are standing next to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48066\",\n    \"key\": \"5482\",\n    \"description\": \"two guys are standing next to each other and one is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflm4phy0P1u4txqeo1_250\",\n    \"question\": \"what looks confused and then falls off the bed?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18136\",\n    \"key\": \"27288\",\n    \"description\": \"a dog looks confused and then falls off a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3tfgU9Ir1srvjxao1_400\",\n    \"question\": \"what does the girl look out the passenger side of her car then she raises?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24387\",\n    \"key\": \"27347\",\n    \"description\": \"a girl looks out the passenger side of her car then she raises the passenger window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nonz8cGSoF1u01edeo1_250\",\n    \"question\": \"what is the woman in a red dress holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32503\",\n    \"key\": \"1556\",\n    \"description\": \"a woman in a red dress is holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvvdlFwGZ1qdbe91o1_400\",\n    \"question\": \"how many guys are standing in the brick hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16472\",\n    \"key\": \"77610\",\n    \"description\": \"two guys are standing in a brick hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_namg8z7z3Y1tdthfeo1_250\",\n    \"question\": \"how many women are showing off their breasts in a dark place?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19834\",\n    \"key\": \"1696\",\n    \"description\": \"two women are showing off their breasts in a dark place.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqb0w0uVAG1urxja6o1_500\",\n    \"question\": \"how many men are standing by each other and making signs with their fingers?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19602\",\n    \"key\": \"92260\",\n    \"description\": \"two men are standing by each other and making signs with their fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tm6jPJCb1t2wqhqo1_500\",\n    \"question\": \"what is the young man smoking and walking along?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38294\",\n    \"key\": \"101221\",\n    \"description\": \"a young man is smoking a cigarette and walking along.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5o04joG21se9pwmo1_400\",\n    \"question\": \"what stands in an open doorway and hits its paws on the door?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7259\",\n    \"key\": \"49244\",\n    \"description\": \"a dog stands in an open doorway and hits its paws on the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedj6p1oYc1u0re54o1_250\",\n    \"question\": \"what does the woman hold close to her face?\",\n    \"answer\": \"flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23792\",\n    \"key\": \"15728\",\n    \"description\": \"a woman holds flowers close to her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrgwo2ChI1tmnzbjo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6898\",\n    \"key\": \"97210\",\n    \"description\": \"the woman wearing a black dress is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndq39cqvhJ1qhvk2yo1_400\",\n    \"question\": \"what is dancing and moving underneath the stream of water?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29262\",\n    \"key\": \"7895\",\n    \"description\": \"a turtle is dancing and moving underneath a stream of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfihtkUgrh1u316two1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13996\",\n    \"key\": \"5806\",\n    \"description\": \"a guy in a black shirt is laughing with other people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabb9j5rq71rw1wnno1_400\",\n    \"question\": \"what is jumping out on top of a dog?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37053\",\n    \"key\": \"69434\",\n    \"description\": \"a kitten is jumping out on top of a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwqd636Mc1u87564o1_400\",\n    \"question\": \"what does this show smiling?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39731\",\n    \"key\": \"77117\",\n    \"description\": \"this shows a female wearing glasses smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfowdspwlA1rlhabro1_500\",\n    \"question\": \"what is the woman wearing?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36924\",\n    \"key\": \"60308\",\n    \"description\": \"A woman wearing makeup holding a glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2a2mpIYB1u3zgs0o1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26051\",\n    \"key\": \"45064\",\n    \"description\": \"a woman wearing a red top,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq6zyNQRi1tse6e7o1_400\",\n    \"question\": \"what is the color of the character?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25867\",\n    \"key\": \"44867\",\n    \"description\": \"a blue character is sitting in front of a big plate of cookies.\"\n  },\n  {\n    \"video_name\": \"tumblr_no1f0h2OcY1uv46mio1_500\",\n    \"question\": \"what are the group of people smiling and four of them are wearing?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38770\",\n    \"key\": \"93531\",\n    \"description\": \"a group of people are smiling and four of them are wearing sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2lv2FE0B1ql2wy7o1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3667\",\n    \"key\": \"7495\",\n    \"description\": \"a woman wearing a dark colored outfit is dancing around with another woman wearing a blue outfit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmx6y03hWy1staknao1_400\",\n    \"question\": \"what almost hits the man and instead hits a wall?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49148\",\n    \"key\": \"56959\",\n    \"description\": \"a car almost hits a man and instead hits a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9ol4V9GF1u8skfvo1_500\",\n    \"question\": \"how many guitarists are rocking out on stage together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7049\",\n    \"key\": \"66907\",\n    \"description\": \"two guitarists are rocking out on stage together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndoptcS3Kt1u11azoo1_500\",\n    \"question\": \"how many men are turning and stopped?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27343\",\n    \"key\": \"60572\",\n    \"description\": \"the two men are turning and stopped.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfxm0sP931rntqodo1_400\",\n    \"question\": \"what is the girl applying on her lips?\",\n    \"answer\": \"lipstick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52653\",\n    \"key\": \"30547\",\n    \"description\": \"a girl is applying lipstick on her lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_naaq5wiwfB1tihs37o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41733\",\n    \"key\": \"59040\",\n    \"description\": \"this image is of a woman with brown hair winking at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepyrlLssW1sib6jko1_400\",\n    \"question\": \"what does the man turn with a serious look on his face?\",\n    \"answer\": \"round\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49520\",\n    \"key\": \"68563\",\n    \"description\": \"a man turns round with a serious look on his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlgwkAmGV1qb1u6io1_250\",\n    \"question\": \"how many guys sing the duet on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15186\",\n    \"key\": \"27294\",\n    \"description\": \"these two guys sing a duet on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadk481D381tx8mn0o1_400\",\n    \"question\": \"what is in the race when it slides across the track and crashes?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28362\",\n    \"key\": \"53118\",\n    \"description\": \"a car is in a race when it slides across the track and crashes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyr8rSi4d1to0jsbo1_250\",\n    \"question\": \"what did the man tie into a balloon animal?\",\n    \"answer\": \"balloon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11323\",\n    \"key\": \"19082\",\n    \"description\": \"a man tied a red balloon into a balloon animal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nne1xzU4bX1tdrapno1_500\",\n    \"question\": \"what is woman with blonde hair pointing and singing?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29692\",\n    \"key\": \"80497\",\n    \"description\": \"woman with blonde hair is holding microphone pointing and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh298xxMHt1sqbahto1_500\",\n    \"question\": \"how many girls are dancing in front of lights?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48967\",\n    \"key\": \"91400\",\n    \"description\": \"five girls are dancing in front of lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmprtryRm1s013u0o2_r1_500\",\n    \"question\": \"what is the color of the blue?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4401\",\n    \"key\": \"55145\",\n    \"description\": \"a girl with yellow head band wearing blue is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1ef2n01Q1sgfw2yo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34358\",\n    \"key\": \"3624\",\n    \"description\": \"a man with a green hat is doing a dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkgi9WxPa1te83nuo1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17078\",\n    \"key\": \"1770\",\n    \"description\": \"a white girl with red shirt is listening to music.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndumiurqqk1rt9tego1_400\",\n    \"question\": \"what is someone riding the waves is wearing swimming?\",\n    \"answer\": \"trunks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34049\",\n    \"key\": \"24602\",\n    \"description\": \"someone riding the waves is wearing red swimming trunks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxrmjqiJv1slj978o1_250\",\n    \"question\": \"what is sitting on the cat bed and yawning?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15315\",\n    \"key\": \"36590\",\n    \"description\": \"a cat is sitting on a cat bed and yawning.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcj1gnaNb1tt9t0wo1_400\",\n    \"question\": \"what is the man playing and the other one is playing the drums?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11783\",\n    \"key\": \"66981\",\n    \"description\": \"the man is playing the guitar and the other one is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknwol9MTw1rr3vzso1_400\",\n    \"question\": \"how many men are sitting on the sofa when the middle one puts his legs in the air?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21251\",\n    \"key\": \"31139\",\n    \"description\": \"three men are sitting on a sofa when the middle one puts his legs in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl1hj9oPL1smxuyoo1_400\",\n    \"question\": \"how many kids were riding on the bus?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39334\",\n    \"key\": \"35017\",\n    \"description\": \"three kids were riding on a bus and they were laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2cio27zt1u5p6oyo1_500\",\n    \"question\": \"what is the color of the neck?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24118\",\n    \"key\": \"68895\",\n    \"description\": \"a woman in a gray v neck shrugs and speaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9j4izA6NT1qiyk3oo1_500\",\n    \"question\": \"what is the band playing and signing for a crowd?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39744\",\n    \"key\": \"102025\",\n    \"description\": \"a band is playing guitar and signing for a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqveo9P2as1tae455o1_400\",\n    \"question\": \"what is the color of the object?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33016\",\n    \"key\": \"66327\",\n    \"description\": \"a white object with blue letters is present.\"\n  },\n  {\n    \"video_name\": \"tumblr_nasnqxg8kb1tt6vx5o1_250\",\n    \"question\": \"where did the person ride the motorcycle.\",\n    \"answer\": \"? building\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42389\",\n    \"key\": \"43969\",\n    \"description\": \"the person rode the motorcycle in the building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbzsojeEKz1sm6tcso1_400\",\n    \"question\": \"what is the woman showing on a runway?\",\n    \"answer\": \"clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4820\",\n    \"key\": \"10484\",\n    \"description\": \"a woman is showing her clothes on a runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrah086BN91tx8mn0o1_400\",\n    \"question\": \"what are racing and one wrecks into the dirt?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51241\",\n    \"key\": \"91940\",\n    \"description\": \"two cars are racing and one wrecks into the dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzxcjYq391rbpro7o1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10434\",\n    \"key\": \"96559\",\n    \"description\": \"a black haired woman shoved another woman over.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9paf34bUZ1s5yymto1_400\",\n    \"question\": \"where are two men laughing and one picks up a microphone.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15462\",\n    \"key\": \"58609\",\n    \"description\": \"two men in a studio are laughing and one picks up a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezwgxkYSL1trp7kao1_500\",\n    \"question\": \"what does the man throw,\",\n    \"answer\": \"? ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29407\",\n    \"key\": \"38597\",\n    \"description\": \"a man throws a tennis ball,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6j45sSgI1s0altuo1_400\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39556\",\n    \"key\": \"30520\",\n    \"description\": \"the girl with the black lipstick is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9c3crt8br1ql1nv3o1_500\",\n    \"question\": \"what do the pair of hands hold with little cakes on it?\",\n    \"answer\": \"plate\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48687\",\n    \"key\": \"91606\",\n    \"description\": \"a pair of hands hold a plate with little cakes on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nju9ibDTtt1u3g519o1_400\",\n    \"question\": \"what is walking on its hind legs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9823\",\n    \"key\": \"54134\",\n    \"description\": \"a white cat is walking on its hind legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpmgxxX6U1u66cs6o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8461\",\n    \"key\": \"79032\",\n    \"description\": \"a woman wearing a white dress is running through a field and looks behind her.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoz3heJia1tx8mn0o1_400\",\n    \"question\": \"what crash while racing on the race track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45468\",\n    \"key\": \"21855\",\n    \"description\": \"two race cars crash while racing on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8jxhpgcP1tuo9b6o1_250\",\n    \"question\": \"what does the man smile and pets?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11225\",\n    \"key\": \"9982\",\n    \"description\": \"a man who is holding a bottle smiles and pets a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgl6t3yLm1tqwtb6o1_500\",\n    \"question\": \"what does the person hold,\",\n    \"answer\": \"they bring it closer to their body ? stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20822\",\n    \"key\": \"99002\",\n    \"description\": \"a person holds a stick,\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2hhrvC6B1slj978o1_400\",\n    \"question\": \"what is drinking water from the faucet?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30238\",\n    \"key\": \"19523\",\n    \"description\": \"a cat is drinking water from the faucet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9bmlrirm1uosfkco1_400\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16444\",\n    \"key\": \"72287\",\n    \"description\": \"a boy in black is moving his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tiwqdAI71tdmffyo1_400\",\n    \"question\": \"what plays with the cell phone image of itself?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22412\",\n    \"key\": \"15936\",\n    \"description\": \"a cat plays with a cell phone image of itself.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0v8hQfU71sjuzlno1_400\",\n    \"question\": \"what is pecking at the small orange squash?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36295\",\n    \"key\": \"37917\",\n    \"description\": \"a white pet bird is pecking at a small orange squash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtrxiojIN1ua0og2o1_400\",\n    \"question\": \"where is the guy using his keyboard.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12637\",\n    \"key\": \"64484\",\n    \"description\": \"a guy is using his keyboard in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndqlp2j2aX1roami5o1_500\",\n    \"question\": \"how many men high five and one gives up his seat to the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7075\",\n    \"key\": \"85814\",\n    \"description\": \"the two men high five and one gives up his seat to the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wvlc6Yyy1tj1kzuo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30994\",\n    \"key\": \"16163\",\n    \"description\": \"a person in a white shirt is being filmed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfms5bNhL1s3lrg5o1_400\",\n    \"question\": \"what does the man work made from string?\",\n    \"answer\": \"device\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28011\",\n    \"key\": \"33329\",\n    \"description\": \"a man works a device made from string.\"\n  },\n  {\n    \"video_name\": \"tumblr_mhddmuITm21rk29ido1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22246\",\n    \"key\": \"89716\",\n    \"description\": \"an asian person with white hair is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfy4g6M611rmh5d4o1_500\",\n    \"question\": \"what are some hands holding and a girl is being in chains?\",\n    \"answer\": \"money\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29166\",\n    \"key\": \"3447\",\n    \"description\": \"some hands are holding money and a girl is being in chains.\"\n  },\n  {\n    \"video_name\": \"tumblr_noj3zgE9801uqlgxno1_500\",\n    \"question\": \"what is walking along and gets scared by the man?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17606\",\n    \"key\": \"82866\",\n    \"description\": \"a bear is walking along and gets scared by a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncygwiepmq1qfdlipo1_500\",\n    \"question\": \"what is the man removing in the crowd?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30866\",\n    \"key\": \"4993\",\n    \"description\": \"a man is removing his glasses in the crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvv3fRF7y1s1rzito1_400\",\n    \"question\": \"how many men are shaking hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21304\",\n    \"key\": \"2327\",\n    \"description\": \"two men are shaking hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_npc1b21BeA1r57o71o1_500\",\n    \"question\": \"how many old men with gray hair are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6773\",\n    \"key\": \"41809\",\n    \"description\": \"two old men with gray hair are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_net32tTYzv1tf8zv4o1_1280\",\n    \"question\": \"how many people are next to each other and one kisses the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2484\",\n    \"key\": \"46641\",\n    \"description\": \"two people are next to each other and one kisses the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9igzcnoug1r0p6epo1_400\",\n    \"question\": \"what is the girl hugging and kissing?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34473\",\n    \"key\": \"29518\",\n    \"description\": \"a girl is hugging and kissing her cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhidzpk1Bu1tjhld9o1_250\",\n    \"question\": \"what is sitting on the mat on the floor?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16605\",\n    \"key\": \"23339\",\n    \"description\": \"a dog is sitting on a mat on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncu18wMxsX1tb2khbo1_250\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41927\",\n    \"key\": \"11496\",\n    \"description\": \"a man in blue shorts jumps rope in a grassy area.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9buvpXnDu1rhs3x9o1_400\",\n    \"question\": \"how many people is wearing black are walking on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12647\",\n    \"key\": \"58024\",\n    \"description\": \"two people wearing black are walking on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3ifpHmOa1qc94ixo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29385\",\n    \"key\": \"44795\",\n    \"description\": \"a young woman with long brown hair looks unhappy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1flazV921remizro1_400\",\n    \"question\": \"how many people are being mimes on stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45170\",\n    \"key\": \"21549\",\n    \"description\": \"the three people are being mimes on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_npf5kbV03n1u1ogm0o1_400\",\n    \"question\": \"what does the white jeep boat cross quickly?\",\n    \"answer\": \"lake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18902\",\n    \"key\": \"32114\",\n    \"description\": \"a white jeep boat crosses a lake quickly.\"\n  },\n  {\n    \"video_name\": \"tumblr_net9msbsuS1r0c0rjo1_400\",\n    \"question\": \"how many guys danced and waved their hands?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8086\",\n    \"key\": \"5132\",\n    \"description\": \"three guys danced and waved their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb330aM2rd1taqruuo1_400\",\n    \"question\": \"what is making the left hand turn at a corner?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7945\",\n    \"key\": \"64237\",\n    \"description\": \"a green car is making a left hand turn at a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhewmmMC4c1t0w9oqo1_500\",\n    \"question\": \"what is the man in a gray shirt holding and smiling?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13082\",\n    \"key\": \"55471\",\n    \"description\": \"a man in a gray shirt is holding a phone and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3k3l3Yn01sk96t7o1_500\",\n    \"question\": \"what does the fish swim over the octopus and throws its tentacles up?\",\n    \"answer\": \"octopus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27376\",\n    \"key\": \"38964\",\n    \"description\": \"the fish swims over the octopus and the octopus throws its tentacles up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxdsn2yZB1r2lnvfo1_400\",\n    \"question\": \"what are the women taking together outside?\",\n    \"answer\": \"bath\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16388\",\n    \"key\": \"26152\",\n    \"description\": \"the women are taking a bath together outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbivlx2sZy1tiqdeho1_400\",\n    \"question\": \"how many boys sit at the table and drink milkshakes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2284\",\n    \"key\": \"68717\",\n    \"description\": \"two boys sit at a table and drink milkshakes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmprtryRm1s013u0o2_r1_500\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3191\",\n    \"key\": \"55145\",\n    \"description\": \"a girl with curly black hair and wearing a blue top is dancing before a yellow background.\"\n  },\n  {\n    \"video_name\": \"tumblr_npc0uzSrRd1qfp2q7o1_250\",\n    \"question\": \"where is the young girl signing and looking at herself in the mirror.\",\n    \"answer\": \"? bathroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37881\",\n    \"key\": \"1393\",\n    \"description\": \"a young girl is signing in the bathroom and looking at herself in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqu3w0hZk81u176r8o1_250\",\n    \"question\": \"what is the beautiful young woman taking off?\",\n    \"answer\": \"wig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31209\",\n    \"key\": \"90899\",\n    \"description\": \"a beautiful young woman is taking off a wig.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfky23RT5W1tiz10fo1_250\",\n    \"question\": \"what is the man with no top on swinging?\",\n    \"answer\": \"sledgehammer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26546\",\n    \"key\": \"11113\",\n    \"description\": \"a man with no top on is swinging a sledgehammer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nisvuzpqme1twfip5o1_400\",\n    \"question\": \"what did the person light from a lighter?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51982\",\n    \"key\": \"42384\",\n    \"description\": \"a person lights a cigarette from a lighter that another person is holding.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w2rvoTUU1tg9l46o1_400\",\n    \"question\": \"how many man are showing hugging while playing the guitar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23895\",\n    \"key\": \"18693\",\n    \"description\": \"two man are showing hugging while playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2xke0BQS1uopxvxo1_500\",\n    \"question\": \"how many men are moving their arms up and down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21616\",\n    \"key\": \"84797\",\n    \"description\": \"two men are moving their arms up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq2m2lCfLO1r8jb1xo1_400\",\n    \"question\": \"where is the man with facial hair standing and pointing to something.\",\n    \"answer\": \"? nightclub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28264\",\n    \"key\": \"17212\",\n    \"description\": \"a man with facial hair is standing in a nightclub and pointing to something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbx8q1KV9e1rwdmvno1_500\",\n    \"question\": \"what is the man turning around and smelling?\",\n    \"answer\": \"flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33112\",\n    \"key\": \"26083\",\n    \"description\": \"a man is turning around and smelling two flowers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp20daPPv1ses81bo1_250\",\n    \"question\": \"what is the man taking off and throwing it down?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13942\",\n    \"key\": \"5643\",\n    \"description\": \"a man is taking off his shirt and throwing it down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bvirYyri1ruy90oo1_400\",\n    \"question\": \"what is this a girl that holding and then she leans forward and kisses it?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16093\",\n    \"key\": \"3766\",\n    \"description\": \"this a girl that is holding a bird and then she leans forward and kisses it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92b7tMx081tgzjmro1_400\",\n    \"question\": \"where is the woman sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29847\",\n    \"key\": \"28772\",\n    \"description\": \"a woman is sitting in a chair with sunglasses on smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng5rs5F6tJ1t1nzngo1_500\",\n    \"question\": \"what are two men playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47285\",\n    \"key\": \"79612\",\n    \"description\": \"two men are playing guitar while one man is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxes8zoYk1rulxe0o1_400\",\n    \"question\": \"what is being lazy and lying in the corner?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12675\",\n    \"key\": \"71466\",\n    \"description\": \"the cat is being lazy and lying in a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qs2qtH6b1tdbrb1o1_250\",\n    \"question\": \"how many women kiss while the group of people watch from behind?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33465\",\n    \"key\": \"23613\",\n    \"description\": \"two women kiss while a group of people watch from behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lpsunVP61t1j1f4o1_250\",\n    \"question\": \"how many men are speaking with two other people besides them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46416\",\n    \"key\": \"10941\",\n    \"description\": \"two men are speaking with two other people besides them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhhujqoyKU1tjhld9o1_400\",\n    \"question\": \"what is chasing after an object thrown on to the grass?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45798\",\n    \"key\": \"54091\",\n    \"description\": \"a dog chasing after an object thrown on to the grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncntfulJrF1tbgcpko1_250\",\n    \"question\": \"how many guys are dancing on the television set by squatting,\",\n    \"answer\": \"leaning backward , and waving their arms back and forth ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12656\",\n    \"key\": \"35740\",\n    \"description\": \"Two guys are dancing on a television set by squatting,\"\n  },\n  {\n    \"video_name\": \"tumblr_npz10iHpPb1ssqvb0o1_400\",\n    \"question\": \"what is the man wearing a blue shirt is holding and speaking?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19342\",\n    \"key\": \"39205\",\n    \"description\": \"a man wearing a blue shirt is holding a microphone and speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbvir8XTq1sggdd3o1_250\",\n    \"question\": \"how many old ladies are dancing while the man at a desk watches?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39447\",\n    \"key\": \"41306\",\n    \"description\": \"two old ladies are dancing while a man at a desk watches.\"\n  },\n  {\n    \"video_name\": \"tumblr_na371ywy2Y1r8f3ano1_500\",\n    \"question\": \"what is the long haired man in a nice fancy tuxedo suit and white gloves holding?\",\n    \"answer\": \"card\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23863\",\n    \"key\": \"46216\",\n    \"description\": \"a long haired man in a nice fancy tuxedo suit and white gloves is holding a card.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbmz36bIej1rv9d8do1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9938\",\n    \"key\": \"84811\",\n    \"description\": \"man in blue shirt talks to other man and walks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemehiFEYa1qalzuto1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37447\",\n    \"key\": \"81519\",\n    \"description\": \"a woman wearing a black jacket is looking to the left.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyyl1NVgD1sxfrgdo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18191\",\n    \"key\": \"33358\",\n    \"description\": \"a white girl with blue shirt is surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e2tqLvWh1tdmffyo1_250\",\n    \"question\": \"what is being held by somebody in his arms?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36081\",\n    \"key\": \"25535\",\n    \"description\": \"a puppy is being held by somebody in his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sj5cqJdi1sycli7o1_500\",\n    \"question\": \"how many women are walking down the hallway together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24876\",\n    \"key\": \"75249\",\n    \"description\": \"two women are walking down a hallway together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd7lyk28OJ1qdtwtzo1_250\",\n    \"question\": \"how many women are looking at each other and pulling faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31347\",\n    \"key\": \"26072\",\n    \"description\": \"two women are looking at each other and pulling faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnxe9gZGR1qb8axro1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23830\",\n    \"key\": \"49944\",\n    \"description\": \"a woman in white with brown gloves struts down a corridor and rolls her eyes while reciting something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9bepAt5K1sq12j9o1_400\",\n    \"question\": \"what is the fighter plane flying over about to land on a navy ship?\",\n    \"answer\": \"ocean\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28552\",\n    \"key\": \"82896\",\n    \"description\": \"a fighter plane is flying over the ocean about to land on a navy ship.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96o5dqttH1qha21xo1_500\",\n    \"question\": \"how many people are rolling around in bed together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52008\",\n    \"key\": \"88139\",\n    \"description\": \"two people are rolling around in bed together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefmbhSoi71sg891po1_400\",\n    \"question\": \"how many cats are shoving each other and fighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31358\",\n    \"key\": \"18465\",\n    \"description\": \"two cats are shoving each other and fighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrwofTG731u04lbzo1_500\",\n    \"question\": \"how many girls is this image of sitting down talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30735\",\n    \"key\": \"55099\",\n    \"description\": \"this image is of two girls sitting down talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5bx5KHcB1tmtpb9o1_500\",\n    \"question\": \"where is the guy looking happy.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8795\",\n    \"key\": \"40848\",\n    \"description\": \"a guy is looking happy in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf189lUyiY1tdjuqvo1_400\",\n    \"question\": \"what is biting the fish in a bowl?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51693\",\n    \"key\": \"38805\",\n    \"description\": \"a cat is biting a fish in a bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee7hlohYU1tx8mn0o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1234\",\n    \"key\": \"52719\",\n    \"description\": \"a beautiful white car is getting through a curve.\"\n  },\n  {\n    \"video_name\": \"tumblr_njn33xtHeN1smsmueo1_400\",\n    \"question\": \"how many horse riders chase the cow in the ring,\",\n    \"answer\": \"while spectators watch ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18025\",\n    \"key\": \"60084\",\n    \"description\": \"two horse riders chase a cow in the ring,\"\n  },\n  {\n    \"video_name\": \"tumblr_nffsp6xkeS1t7an45o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33515\",\n    \"key\": \"15968\",\n    \"description\": \"a woman wearing a black shirt is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0rsx4U7o1tqwtb6o1_400\",\n    \"question\": \"what is flying over the earth?\",\n    \"answer\": \"shuttle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21420\",\n    \"key\": \"36945\",\n    \"description\": \"the space shuttle is flying over the earth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqyihc5zY1tqqhsxo1_400\",\n    \"question\": \"what does the person on a bike do through a wooden structure?\",\n    \"answer\": \"loop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23718\",\n    \"key\": \"37919\",\n    \"description\": \"a person on a bike does a loop through a wooden structure.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqoxo2xNwk1u22tvfo1_250\",\n    \"question\": \"what is the man wearing and screaming?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17551\",\n    \"key\": \"21459\",\n    \"description\": \"a man is wearing headphones and screaming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nev8ygd3491tmnswbo1_400\",\n    \"question\": \"what is the color of the kitty?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16718\",\n    \"key\": \"43441\",\n    \"description\": \"the black kitty is being cuddled by its owner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvlitw9nW1t5ygabo1_400\",\n    \"question\": \"what drives by and looks at the group of women sitting in the sun?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23244\",\n    \"key\": \"64594\",\n    \"description\": \"a police car drives by and looks at a group of women sitting in the sun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9lvuNePt1u15aayo1_400\",\n    \"question\": \"what is the man in a car smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43131\",\n    \"key\": \"34747\",\n    \"description\": \"a man in a car is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxhfotwHw1stu6szo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41475\",\n    \"key\": \"86443\",\n    \"description\": \"a man wearing a gray shirt is shaking his hips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nge1acwnt81sjxzs0o1_400\",\n    \"question\": \"what does the girl jump off?\",\n    \"answer\": \"balcony\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4671\",\n    \"key\": \"76122\",\n    \"description\": \"a girl jumps off a balcony while a guy in a green hood watches.\"\n  },\n  {\n    \"video_name\": \"tumblr_nex4xp2DL31slj978o1_250\",\n    \"question\": \"what is standing up on the corner is closing the curtain with his paw?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16629\",\n    \"key\": \"3264\",\n    \"description\": \"a cat standing up on the corner is closing the curtain with his paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_njv3g9ZEQV1ts13wdo1_250\",\n    \"question\": \"where is the man lying eating while another man sits beside him on the bed reading a book.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4673\",\n    \"key\": \"75984\",\n    \"description\": \"a man is lying in bed eating while another man sits beside him on the bed reading a book.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9xh5NZ6d1stafvxo1_400\",\n    \"question\": \"how many women with head sets on are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38462\",\n    \"key\": \"87951\",\n    \"description\": \"two women with head sets on are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_npc1b21BeA1r57o71o1_500\",\n    \"question\": \"how many elderly people are dancing in what appears to be the club?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22635\",\n    \"key\": \"41809\",\n    \"description\": \"two elderly people are dancing in what appears to be a club.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndz6v9plHU1s4gcyso1_500\",\n    \"question\": \"how many guys is wearing uniform are dancing by waving their shoulders?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30205\",\n    \"key\": \"86796\",\n    \"description\": \"two guys wearing uniform are dancing by waving their shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2a2mpIYB1u3zgs0o1_500\",\n    \"question\": \"what is the color of the tears?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11063\",\n    \"key\": \"45064\",\n    \"description\": \"a woman wearing a red top,\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3qvcdW511tq4l8jo1_250\",\n    \"question\": \"how many guys rip the flag down off a wall?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18371\",\n    \"key\": \"43971\",\n    \"description\": \"two guys rip a flag down off a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nds0nftICq1tqs077o1_500\",\n    \"question\": \"what is the color of the sky?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27457\",\n    \"key\": \"86723\",\n    \"description\": \"five buildings are shown close up with more buildings behind and a gray sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9rbrw8PT1tjys71o1_250\",\n    \"question\": \"how many men are talking in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29416\",\n    \"key\": \"68864\",\n    \"description\": \"two men are talking in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhwanmiWzD1qlkuvao1_250\",\n    \"question\": \"what is the color of the frog?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31320\",\n    \"key\": \"76552\",\n    \"description\": \"a woman is reaching over and touching a fake green frog.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9f1hcMqsn1snp73jo1_500\",\n    \"question\": \"what are three men wearing and one shoves another man away?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30025\",\n    \"key\": \"45318\",\n    \"description\": \"three men are wearing sunglasses and one shoves another man away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz5bgkqTO1tkalc5o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25522\",\n    \"key\": \"2024\",\n    \"description\": \"a girl with a red hair and red hat is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndqri2BZCQ1tuvbx1o2_500\",\n    \"question\": \"how many women in bathing suits are talking to a man?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47581\",\n    \"key\": \"56011\",\n    \"description\": \"two women in bathing suits are talking to a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncw7meF4Pb1txydmgo1_500\",\n    \"question\": \"what is playing music while the sexy girls dance?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32154\",\n    \"key\": \"57976\",\n    \"description\": \"the rock band is playing music while the sexy girls dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pom6qgCR1tgl4z1o1_400\",\n    \"question\": \"how many brown dogs is revisiting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17918\",\n    \"key\": \"75583\",\n    \"description\": \"two brown dogs revisiting,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrfehsYDWe1u7r745o1_400\",\n    \"question\": \"how many people are bowing with their arm stretched out?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52659\",\n    \"key\": \"46511\",\n    \"description\": \"two people are bowing with their arm stretched out.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e0koRNI51r390ico1_250\",\n    \"question\": \"what is squirming on the bed?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8943\",\n    \"key\": \"17008\",\n    \"description\": \"a cat is squirming on the bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qcwdJTNX1tib6auo1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28551\",\n    \"key\": \"24417\",\n    \"description\": \"a woman wearing a black outfit moves her head around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzt2wmz6S1ql37t5o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48086\",\n    \"key\": \"59469\",\n    \"description\": \"a man with gray hair is pulling a strange face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ynr6xLmV1tgwlf5o1_250\",\n    \"question\": \"what did the tan man take off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12415\",\n    \"key\": \"13254\",\n    \"description\": \"a tan man took his shirt off.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj41cmlq11s2l982o1_500\",\n    \"question\": \"what is the man pulling down and smoking a cigarette?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49425\",\n    \"key\": \"41846\",\n    \"description\": \"a man is pulling his glasses down and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivsjccx9w1r05qsbo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12093\",\n    \"key\": \"68322\",\n    \"description\": \"the red car got out of balance on a car racing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6ja06aQx1snwydqo1_400\",\n    \"question\": \"how many children are lying in bed?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17521\",\n    \"key\": \"28917\",\n    \"description\": \"Two children are lying in bed and another child is moving her head really fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq21n4xlTu1qi1atio1_250\",\n    \"question\": \"what slides down the set of stairs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20675\",\n    \"key\": \"45750\",\n    \"description\": \"a white and black cat slides down a set of stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklxk4KnVx1u447bgo1_400\",\n    \"question\": \"how many guys does there 's dancing on a stage waving their arms?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40694\",\n    \"key\": \"51220\",\n    \"description\": \"there 's three guys dancing on a stage waving their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazmj4ROip1rewgqho1_500\",\n    \"question\": \"how many people are running toward each other on a beach?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20027\",\n    \"key\": \"60069\",\n    \"description\": \"two people are running toward each other on a beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8jkjOdOl1tozyi0o1_400\",\n    \"question\": \"what is rising on the pan?\",\n    \"answer\": \"dough\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15005\",\n    \"key\": \"75245\",\n    \"description\": \"some bread dough is rising on a pan.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr58uwv0IK1t0ojyvo1_400\",\n    \"question\": \"how many young men are dancing near each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25731\",\n    \"key\": \"15296\",\n    \"description\": \"two young men are dancing near each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_njv4k2CXi71u0cwu7o1_250\",\n    \"question\": \"how many young people are hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22976\",\n    \"key\": \"81329\",\n    \"description\": \"two young people are hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngegv9zMI11skv76wo1_250\",\n    \"question\": \"how many girls are sitting and smiling at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27182\",\n    \"key\": \"36105\",\n    \"description\": \"two girls are sitting and smiling at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng46uo55Mx1slj978o1_400\",\n    \"question\": \"how many penguins are walking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20765\",\n    \"key\": \"50029\",\n    \"description\": \"two penguins are walking and one falls down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknoi9ewkB1rtehgxo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1592\",\n    \"key\": \"81134\",\n    \"description\": \"a female child wearing a red jacket is looking up then turns her head and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncygwiepmq1qfdlipo1_500\",\n    \"question\": \"what does the boy with tattoos pull off?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36421\",\n    \"key\": \"4993\",\n    \"description\": \"a boy with tattoos pulls his sunglasses off.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r1ab8DhJ1twtgiao1_400\",\n    \"question\": \"where are terrapins swimming around.\",\n    \"answer\": \"? tank\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20722\",\n    \"key\": \"59201\",\n    \"description\": \"terrapins are swimming around in a fish tank.\"\n  },\n  {\n    \"video_name\": \"tumblr_neb1kotniS1tbscvbo1_250\",\n    \"question\": \"how many people are in the car having fun and dancing?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43275\",\n    \"key\": \"81480\",\n    \"description\": \"five people are in a car having fun and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvuotGEtO1tq56fho1_500\",\n    \"question\": \"how many man runs up with his hands moving?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26887\",\n    \"key\": \"75232\",\n    \"description\": \"a group is standing together and one man runs up with his hands moving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnznbimJv1sr8pwbo1_400\",\n    \"question\": \"what is the guy wearing the black shirt is holding hockey?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21390\",\n    \"key\": \"57915\",\n    \"description\": \"the guy wearing the black shirt is holding a hockey stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkm38Aep41u80mmjo1_400\",\n    \"question\": \"what is barking at passing cars while driving down a road?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46809\",\n    \"key\": \"56068\",\n    \"description\": \"a dog is barking at passing cars while driving down a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5h8ba4iB1s3wsijo1_500\",\n    \"question\": \"how many men is wearing black pants are fighting with chains?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12010\",\n    \"key\": \"69389\",\n    \"description\": \"two men wearing black pants are fighting with chains.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3dghnoGa1r1endqo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24873\",\n    \"key\": \"43714\",\n    \"description\": \"a man in a black top and shorts is leaning against a door frame with his arms folded in front of him.\"\n  },\n  {\n    \"video_name\": \"tumblr_niq9l0fhTo1qc3nnco1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7362\",\n    \"key\": \"76775\",\n    \"description\": \"a man wearing a white shirt does a dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwrume8cm1un7etzo1_400\",\n    \"question\": \"what is the guy playing the drums is wearing?\",\n    \"answer\": \"shorts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10168\",\n    \"key\": \"67999\",\n    \"description\": \"the guy playing the drums is wearing shorts.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgdlsdvel1u3ngjwo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35330\",\n    \"key\": \"51710\",\n    \"description\": \"the person is wearing a black jacket and walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkng211T8e1tgij0ro1_500\",\n    \"question\": \"where is the man sitting and tying his shoes in front of a mirror.\",\n    \"answer\": \"? closet\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1988\",\n    \"key\": \"90158\",\n    \"description\": \"a man in a closet is sitting and tying his shoes in front of a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnyl3sHshs1tjbfjto1_400\",\n    \"question\": \"what is the woman wearing a hat is eating?\",\n    \"answer\": \"popcorn\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14412\",\n    \"key\": \"70065\",\n    \"description\": \"a woman wearing a hat is eating popcorn.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr4dwtJGP1rug7q0o1_400\",\n    \"question\": \"how many girl flips her hair?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13651\",\n    \"key\": \"79204\",\n    \"description\": \"one girl sings and one girl flips her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cbdnL7c11trnz9so1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39295\",\n    \"key\": \"80225\",\n    \"description\": \"a boy in a blue tank top is nodding his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfd778t4T21toc82ho1_400\",\n    \"question\": \"what is the color of the object?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3758\",\n    \"key\": \"63625\",\n    \"description\": \"a person tries to hit a man in the face with a yellow object.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wb6eXG2c1thsjzqo1_400\",\n    \"question\": \"what is the color of the lips?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30764\",\n    \"key\": \"64996\",\n    \"description\": \"A girl with blue eyes and red lips is looking serious.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjopzbz3k1qz8lpeo1_250\",\n    \"question\": \"what is the color of the floor?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20970\",\n    \"key\": \"42542\",\n    \"description\": \"a man stands on the red floor next to a beautiful woman while photographers take photos.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2myzj0DY1tkpzw0o1_400\",\n    \"question\": \"how many people walk out the window?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5469\",\n    \"key\": \"18190\",\n    \"description\": \"two people walk out a window and one falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkuiicX5AB1upul5no1_250\",\n    \"question\": \"what is the man smoking and blowing smoke out in front of him?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20650\",\n    \"key\": \"10224\",\n    \"description\": \"a man is smoking a cigarette and blowing smoke out in front of him.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cyrkj1F11thzf6lo1_500\",\n    \"question\": \"what is the man on stage slapping?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52080\",\n    \"key\": \"26892\",\n    \"description\": \"a man on stage is slapping another mans butt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uux7pi6m1trk3cho1_500\",\n    \"question\": \"what is landing on the woman 's lips and flying off?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48434\",\n    \"key\": \"90040\",\n    \"description\": \"a butterfly is landing on a woman 's lips and flying off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcd09xbXE1tdjuqvo1_400\",\n    \"question\": \"what tries to jump on the counter,\",\n    \"answer\": \"but falls off a table ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4172\",\n    \"key\": \"16291\",\n    \"description\": \"a cat tries to jump on a counter,\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1s39DNKd1u874fbo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4409\",\n    \"key\": \"62869\",\n    \"description\": \"a man wearing a green shirt is grabbing a book.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2aafgc6m1siygd7o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25105\",\n    \"key\": \"33088\",\n    \"description\": \"a woman with brown hair tries to move her hair out of her face but it falls back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqlgrb0lcL1uz06r7o1_250\",\n    \"question\": \"what is chasing the broom while someone sweeps the floor?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA412\",\n    \"key\": \"2822\",\n    \"description\": \"a cat is chasing a broom while someone sweeps the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_napoi43mJY1sdbrm9o1_250\",\n    \"question\": \"how many guys are making the salute on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5434\",\n    \"key\": \"19593\",\n    \"description\": \"two guys are making a salute on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_neyfonjRiM1rt9t46o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52380\",\n    \"key\": \"16748\",\n    \"description\": \"a young woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_n99x6g6den1tcuqh9o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25129\",\n    \"key\": \"29633\",\n    \"description\": \"a white girl with yellow hair is drinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkj5yl01mk1thirzao1_400\",\n    \"question\": \"how many males are taking turns talking into a microphone?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25729\",\n    \"key\": \"62405\",\n    \"description\": \"four males are taking turns talking into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_npt77cfh9l1uxtx27o1_250\",\n    \"question\": \"what is the color of the blazer?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12327\",\n    \"key\": \"51792\",\n    \"description\": \"a boy in a black blazer sings and dances in front of high rise buildings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nalgunb5tA1rm4q61o1_250\",\n    \"question\": \"where are two people hugging each other.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41482\",\n    \"key\": \"6552\",\n    \"description\": \"two people are hugging each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naduko6Opl1qcvlffo1_100\",\n    \"question\": \"how many women are looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32910\",\n    \"key\": \"93937\",\n    \"description\": \"two women are looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uw0bs3ZI1qinzfzo1_400\",\n    \"question\": \"what are the group of women helping put on?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29259\",\n    \"key\": \"29461\",\n    \"description\": \"a group of women are helping one woman put makeup on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtf0jqUNA1tkj2cmo1_250\",\n    \"question\": \"what is the color of the dumps?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16439\",\n    \"key\": \"8265\",\n    \"description\": \"a man wearing a blue shirt dumps a bucket of water over his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_njte62Bwpv1t4la1fo1_400\",\n    \"question\": \"how many men are rocking out with their guitars on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42223\",\n    \"key\": \"25986\",\n    \"description\": \"two men are rocking out with their guitars on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwi7oCIWW1qatdo3o1_500\",\n    \"question\": \"what is the young woman using and having a snack?\",\n    \"answer\": \"computer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7845\",\n    \"key\": \"57281\",\n    \"description\": \"a young woman is using a computer and having a snack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4098ugL11u8qazco1_400\",\n    \"question\": \"how many girls are nodding their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15985\",\n    \"key\": \"56071\",\n    \"description\": \"the two girls are nodding their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nox493KEDt1uwbzmxo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15243\",\n    \"key\": \"15772\",\n    \"description\": \"a man in a black leather jacket caresses the side of his head and speaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhd9eyiVHn1row8k8o1_400\",\n    \"question\": \"what is the man scratching with a wooden scratching stick?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36910\",\n    \"key\": \"52836\",\n    \"description\": \"a man is scratching his dog with a wooden scratching stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_najvvu3Y0I1se3ifso1_250\",\n    \"question\": \"what are some people riding and talking?\",\n    \"answer\": \"bus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29304\",\n    \"key\": \"57959\",\n    \"description\": \"some people are riding a bus and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxsl29ZXD1tmth2jo1_250\",\n    \"question\": \"where are two people and one of them puts a hat on their head.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36495\",\n    \"key\": \"47237\",\n    \"description\": \"two people are in a room and one of them puts a hat on their head.\"\n  },\n  {\n    \"video_name\": \"tumblr_npmetmIe3v1use8l1o1_400\",\n    \"question\": \"where does someone fall trying to sit.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34803\",\n    \"key\": \"36200\",\n    \"description\": \"someone falls trying to sit in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjbm8zizK1txgyxzo1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43283\",\n    \"key\": \"83843\",\n    \"description\": \"an asian woman dressed in black adjusts her hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbk9h1Vx7T1tx8mn0o1_400\",\n    \"question\": \"what is diving on a race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8185\",\n    \"key\": \"77249\",\n    \"description\": \"racing car is diving on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpfh1RQGx1toym0ao1_400\",\n    \"question\": \"how many people are bumping heads and falling down on a soccer field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20847\",\n    \"key\": \"29656\",\n    \"description\": \"two people are bumping heads and falling down on a soccer field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8dq27ECT1s6zpepo1_250\",\n    \"question\": \"what is the man wearing in the back seat of a car?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40024\",\n    \"key\": \"19956\",\n    \"description\": \"a man is wearing headphones in the back seat of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_npyvlqdC0S1tgcqt2o1_400\",\n    \"question\": \"what is the color of the costume?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29727\",\n    \"key\": \"44730\",\n    \"description\": \"a man in a blue costume is flying in the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_na60jik2x61swxhaso1_400\",\n    \"question\": \"what is able to massage another cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35092\",\n    \"key\": \"28844\",\n    \"description\": \"a cat is able to massage another cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8o1nWNXz1u5segmo1_400\",\n    \"question\": \"what is the color of the lights?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2673\",\n    \"key\": \"76676\",\n    \"description\": \"three men are holding objects two are clicking red lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlalpSGQ91qzkvqho1_250\",\n    \"question\": \"what is the woman pushing into the corners of a ceiling?\",\n    \"answer\": \"pole\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48370\",\n    \"key\": \"16979\",\n    \"description\": \"a woman is pushing a long pole into the corners of a ceiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3xpnk7yh1u3co76o1_400\",\n    \"question\": \"what is the color of the mat?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9510\",\n    \"key\": \"8671\",\n    \"description\": \"a gymnast is spinning and twirling around on a green mat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzuoyTPM61tx8mn0o1_400\",\n    \"question\": \"what is veering off the track in a race?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10115\",\n    \"key\": \"78642\",\n    \"description\": \"a car is veering off the track in a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh1ursnSEu1rftgwuo1_250\",\n    \"question\": \"what starts throwing punches at his desk?\",\n    \"answer\": \"anchor\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14815\",\n    \"key\": \"8822\",\n    \"description\": \"an anchor starts throwing punches at his desk.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h68813s31txehx9o1_500\",\n    \"question\": \"what peaks in the car window and scares a man?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17927\",\n    \"key\": \"94877\",\n    \"description\": \"a dog peaks in a car window and scares a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nft284Gssf1tmmb47o1_250\",\n    \"question\": \"where does the man hug and smiles another man.\",\n    \"answer\": \"? plaid\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22376\",\n    \"key\": \"23280\",\n    \"description\": \"a man in plaid hugs and smiles another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vecizBZQ1sla45lo1_400\",\n    \"question\": \"what is going around the turn on a racetrack?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17272\",\n    \"key\": \"76383\",\n    \"description\": \"a car is going around the turn on a racetrack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda5gzOBFC1thgb9yo1_250\",\n    \"question\": \"what is the man eating lying down?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1208\",\n    \"key\": \"16396\",\n    \"description\": \"a man is eating a banana lying down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney66jVqi61ssvehso1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50339\",\n    \"key\": \"77648\",\n    \"description\": \"a boy wearing a white shirt is pulling the cheeks of another boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2nys6IVp1tghqjmo1_500\",\n    \"question\": \"how many people are helping each other today?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20798\",\n    \"key\": \"87409\",\n    \"description\": \"two people are helping each other today.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2yugot1B1tiz27ro1_500\",\n    \"question\": \"what is blinking and lowering his head in a stable?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42080\",\n    \"key\": \"37357\",\n    \"description\": \"a white horse is blinking and lowering his head in a stable.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyudkKo6c1sr8o8oo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5059\",\n    \"key\": \"44438\",\n    \"description\": \"a guy in a red shirt is speaking into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_neldh8Joqr1tmpmi6o1_1280\",\n    \"question\": \"what does the man gyrate and drinks?\",\n    \"answer\": \"juice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18365\",\n    \"key\": \"79874\",\n    \"description\": \"a man gyrates and drinks his juice.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfk8w94say1rejkllo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3797\",\n    \"key\": \"73807\",\n    \"description\": \"a guy in a gray shirt is giving the thumbs up sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_nftltzB0hO1sgp15to1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40926\",\n    \"key\": \"47633\",\n    \"description\": \"a guy wearing a white shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_npkoql9zof1uwhtsjo1_250\",\n    \"question\": \"what is the girl wearing and holding a glass on her hand?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14676\",\n    \"key\": \"35472\",\n    \"description\": \"the girl is wearing a white sunglasses and holding a glass on her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepeym75h91tx8mn0o1_400\",\n    \"question\": \"what makes the very sharp turn and makes it?\",\n    \"answer\": \"racer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52331\",\n    \"key\": \"55579\",\n    \"description\": \"a motorcycle racer makes a very sharp turn and makes it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoiw6PN6o1uprddoo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41845\",\n    \"key\": \"73447\",\n    \"description\": \"a young man with brown hair is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrc6viwFXO1tbw0t6o1_500\",\n    \"question\": \"what is the man playing in front of a microphone?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11108\",\n    \"key\": \"74486\",\n    \"description\": \"a man is playing the guitar in front of a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndu1fawTmi1rpucoso1_250\",\n    \"question\": \"how many men are dancing in front of a car and motorcycle?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45972\",\n    \"key\": \"40882\",\n    \"description\": \"two men are dancing in front of a car and motorcycle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgkpzxpv01qclz9ho1_1280\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28006\",\n    \"key\": \"99900\",\n    \"description\": \"a young girl is mad and cutting up a white t-shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3uujUt4X1s8i73yo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46717\",\n    \"key\": \"28306\",\n    \"description\": \"a girl with red hair is waving her arm and then bows.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpu6sfKuH1qd80wyo1_400\",\n    \"question\": \"how many men are talking with odd faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20774\",\n    \"key\": \"41614\",\n    \"description\": \"two men are talking with odd faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3z9wYgAV1r1e6f9o1_500\",\n    \"question\": \"how many people are on the bed kissing and cuddling with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5529\",\n    \"key\": \"98497\",\n    \"description\": \"two people are on a bed kissing and cuddling with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjsmn1Xji1te9mf9o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44773\",\n    \"key\": \"13292\",\n    \"description\": \"this image is of a guy in a gray shirt talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk98cz79at1tk2ngvo1_400\",\n    \"question\": \"what is playing with half a lemon on the ground?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5086\",\n    \"key\": \"68986\",\n    \"description\": \"a puppy is playing with half a lemon on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfvamCHdp1slj978o1_400\",\n    \"question\": \"what is the man wearing a suit is getting thrown onto his head?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16688\",\n    \"key\": \"197\",\n    \"description\": \"a man wearing a suit is getting a hat thrown onto his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9arvu8wVk1th7gfko1_250\",\n    \"question\": \"where are four people running and three fall.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29524\",\n    \"key\": \"37916\",\n    \"description\": \"four people are running and three fall in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakx4m3btR1r27dg6o1_400\",\n    \"question\": \"what is chasing the motorbike along a freeway and skids into the central reservation?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5635\",\n    \"key\": \"18991\",\n    \"description\": \"a police car is chasing a motorbike along a freeway and skids into the central reservation.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevp0nML291t8akpjo1_400\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43870\",\n    \"key\": \"87803\",\n    \"description\": \"the black haired boy pushes the blond haired boy away after being kissed.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94ma8VGpr1qhd6ylo1_500\",\n    \"question\": \"how many men sat in the car look at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19415\",\n    \"key\": \"48315\",\n    \"description\": \"two men sat in a car look at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5zxn3LvC1s3k8iso1_400\",\n    \"question\": \"what is the color of the lady?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51543\",\n    \"key\": \"63955\",\n    \"description\": \"a smiling beautiful lady in black is brushing her hair with two hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqd4e6imSb1sht3fmo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21058\",\n    \"key\": \"89972\",\n    \"description\": \"a man with a beard and wearing a gray jacket is angry.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqqxc3aCoy1uzoiz6o1_400\",\n    \"question\": \"what is the color of the lei?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38974\",\n    \"key\": \"65697\",\n    \"description\": \"a girl wearing a light colored top and yellow lei,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndu69ysOxt1ta9mkfo1_500\",\n    \"question\": \"what is the color of the outside?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47684\",\n    \"key\": \"97682\",\n    \"description\": \"man is hugging another ma in a black robe outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nraprjJl3w1uagl5ho1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36290\",\n    \"key\": \"25119\",\n    \"description\": \"a man is waving his hand a wearing a black shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5jq9YHHz1twj3jvo1_500\",\n    \"question\": \"how many men are moving round and doing funny dance?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32891\",\n    \"key\": \"61007\",\n    \"description\": \"the three men are moving round and doing funny dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzyt9eRNK1rblf33o1_500\",\n    \"question\": \"how many men are looking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50992\",\n    \"key\": \"86244\",\n    \"description\": \"two men are looking and one is moving his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_npzz6lGvVe1u32cyao1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25089\",\n    \"key\": \"28059\",\n    \"description\": \"man in gray suit closes a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5ddaL9zk1s28vxko1_400\",\n    \"question\": \"what shakes himself in slow motion?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10450\",\n    \"key\": \"43219\",\n    \"description\": \"a white dog shakes himself in slow motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6gv9Zbaz1r4phxao1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37986\",\n    \"key\": \"94809\",\n    \"description\": \"a cute dog with a green shirt is running on the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokgkjPvdh1uot1e7o1_400\",\n    \"question\": \"what does the man in a black shirt hold?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32460\",\n    \"key\": \"60623\",\n    \"description\": \"a man in a black shirt holds a pug dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1n9nSjtk1u0juyyo1_250\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9817\",\n    \"key\": \"9440\",\n    \"description\": \"a woman in red lipstick is blowing a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi98s3ntx1shsnyco1_500\",\n    \"question\": \"how many men high five as they stand in front of a map?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13815\",\n    \"key\": \"101984\",\n    \"description\": \"two men high five as they stand in front of a map.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbwcsRKj61u6mv2go1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23255\",\n    \"key\": \"21079\",\n    \"description\": \"a man with blue hair is folding his hands and looking sideways while smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r1ab8DhJ1twtgiao1_400\",\n    \"question\": \"what are swimming around in the fish tank?\",\n    \"answer\": \"terrapins\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42902\",\n    \"key\": \"59201\",\n    \"description\": \"terrapins are swimming around in a fish tank.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh22oslt5u1tnlmk9o1_250\",\n    \"question\": \"what are the man and a woman playing on a stage?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37004\",\n    \"key\": \"51698\",\n    \"description\": \"a man and a woman are playing guitars on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_neygedcDOt1tkhxdko1_400\",\n    \"question\": \"what does the cat tickle?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30285\",\n    \"key\": \"46613\",\n    \"description\": \"a cat tickles an iguana 's tail while the iguana is eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4e6y37661qzm8mpo1_250\",\n    \"question\": \"what is the young man eating?\",\n    \"answer\": \"pop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6315\",\n    \"key\": \"35503\",\n    \"description\": \"a young man is eating a red freezer pop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw9ylw8zC1tpg4boo1_250\",\n    \"question\": \"what is hoping around on the ground?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11980\",\n    \"key\": \"68610\",\n    \"description\": \"a kitten is hoping around on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrwzi3knp1u7yxjso1_400\",\n    \"question\": \"what is the color of the headdress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39553\",\n    \"key\": \"54436\",\n    \"description\": \"a guy with black headdress is laughing and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9f1hcMqsn1snp73jo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49646\",\n    \"key\": \"45318\",\n    \"description\": \"the man in the white shirt nods while the bearded man grabs the other friend.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney1qn9pP21ssuua8o1_250\",\n    \"question\": \"what is the man playing in front of a store?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19177\",\n    \"key\": \"31604\",\n    \"description\": \"a man is playing the guitar in front of a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9flwiVMFP1tpe9lro1_250\",\n    \"question\": \"how many young men raise their hand and gesture and then bow?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39537\",\n    \"key\": \"9456\",\n    \"description\": \"two young men raise their hand and gesture and then bow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn2bd8dUsF1utvsgfo1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14615\",\n    \"key\": \"9028\",\n    \"description\": \"a man with glasses and a black coat is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94m015YpL1tep2q5o1_400\",\n    \"question\": \"where is the woman sitting.\",\n    \"answer\": \"? train\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7110\",\n    \"key\": \"59187\",\n    \"description\": \"a woman is sitting in a moving train.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkc2myDS1Q1sj9u91o1_250\",\n    \"question\": \"what around then she places her hand on her hair and dances?\",\n    \"answer\": \"twirls\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43423\",\n    \"key\": \"49626\",\n    \"description\": \"a lady twirls around then she places her hand on her hair and dances.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9n0wjrVkC1tdjuqvo1_400\",\n    \"question\": \"where is the man passing by people.\",\n    \"answer\": \"? wheelchair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33165\",\n    \"key\": \"50725\",\n    \"description\": \"a man in a wheelchair is passing by people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbv33uJdK11sfhzddo1_500\",\n    \"question\": \"how many different cups is the lady lining up on a table?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30937\",\n    \"key\": \"88760\",\n    \"description\": \"a lady is lining up three different cups on a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncemd5Cxsw1t7ux2so1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16287\",\n    \"key\": \"72261\",\n    \"description\": \"a person with long black hair is playing with a sword.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5e7cqw5L1r7w2obo1_r3_500\",\n    \"question\": \"what is the happy girl getting done?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41210\",\n    \"key\": \"52541\",\n    \"description\": \"a happy girl is getting her makeup done.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjrckDyiu1qe2thio1_500\",\n    \"question\": \"what is fixing the shoe for an animal?\",\n    \"answer\": \"tool\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41451\",\n    \"key\": \"67512\",\n    \"description\": \"a tool is fixing a shoe for an animal.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmov237Wm1sy82cio1_500\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6871\",\n    \"key\": \"87719\",\n    \"description\": \"a woman is blowing a bubble and wearing a black fur vest.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqyaxfZfv1ry1ioco2_500\",\n    \"question\": \"what is the man in a red vest with a white shirt underneath smoking?\",\n    \"answer\": \"cigar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52479\",\n    \"key\": \"97316\",\n    \"description\": \"a man in a red vest with a white shirt underneath is smoking a cigar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfas3aICsP1ql0sfgo1_500\",\n    \"question\": \"what does the boy move with a stoic look on his face?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31509\",\n    \"key\": \"55823\",\n    \"description\": \"the boy moves the box with a stoic look on his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wd37ruiw1ti8b6yo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45269\",\n    \"key\": \"3252\",\n    \"description\": \"a young man in white shirt is going with his friend.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhaaonJd0D1u6jgouo1_250\",\n    \"question\": \"how many people on stage are standing in front of a car?\",\n    \"answer\": \"six\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47544\",\n    \"key\": \"50395\",\n    \"description\": \"six people on stage are standing in front of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_net9q3fbJj1rxd60qo1_250\",\n    \"question\": \"what is the man wearing a black hat is removing from the man sitting next to him?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24538\",\n    \"key\": \"38852\",\n    \"description\": \"a man wearing a black hat is removing a white hat from the man sitting next to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndasm67IHk1tr5tuwo1_500\",\n    \"question\": \"what is running fast in the track around a crowd?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25665\",\n    \"key\": \"49883\",\n    \"description\": \"a car is running fast in a track around a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9m2vceX821rrc0yzo1_500\",\n    \"question\": \"what is the color of the stuff?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49651\",\n    \"key\": \"22915\",\n    \"description\": \"a man with red stuff on his face wipes his face off with a rag.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncopkoC3FY1roq4e2o1_400\",\n    \"question\": \"what is the girl putting into a burning fire?\",\n    \"answer\": \"hay\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33950\",\n    \"key\": \"78639\",\n    \"description\": \"a girl is putting hay into a burning fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zybpUiWe1tra8tyo1_500\",\n    \"question\": \"how many men in suits sit on a sofa and share a laugh?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13985\",\n    \"key\": \"83057\",\n    \"description\": \"two men in suits sit on a sofa and share a laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhsixzeSF01qc17seo1_500\",\n    \"question\": \"what is the woman smoking and blowing smoke?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52167\",\n    \"key\": \"77568\",\n    \"description\": \"a woman is smoking a cigarette and blowing smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvw02a1fQ1t9h1yfo1_400\",\n    \"question\": \"how many women with short hair are smiling and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4725\",\n    \"key\": \"50141\",\n    \"description\": \"two women with short hair are smiling and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn45o8Lso1sl4ny1o1_400\",\n    \"question\": \"how many men are sitting in the room and laughing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51914\",\n    \"key\": \"37681\",\n    \"description\": \"two men are sitting in a room and laughing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngu8cfNenW1ripg1ro1_500\",\n    \"question\": \"how many men is standing together dressed one chatters his teeth in the middle ones ear?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48896\",\n    \"key\": \"57236\",\n    \"description\": \"three men standing together dressed one chatters his teeth in the middle ones ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8t7li2oGl1qb11yjo1_400\",\n    \"question\": \"where is the woman doing some gymnastics.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11924\",\n    \"key\": \"96871\",\n    \"description\": \"a woman is doing some gymnastics in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2kjflmzu1r17mwpo1_540\",\n    \"question\": \"what is performing on stage before a crowd?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26686\",\n    \"key\": \"59055\",\n    \"description\": \"a rock band is performing on stage before a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdqgy84WC1r4fe3xo1_500\",\n    \"question\": \"what is the man in overalls lighting blow?\",\n    \"answer\": \"torch\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20640\",\n    \"key\": \"57514\",\n    \"description\": \"a man in overalls is lighting a blow torch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbearz2UtH1tykzato1_500\",\n    \"question\": \"how many woman 's are singing with the microphone and playing a musical instrument?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42931\",\n    \"key\": \"91827\",\n    \"description\": \"two woman 's are singing with a microphone and playing a musical instrument.\"\n  },\n  {\n    \"video_name\": \"tumblr_na405oJNXw1s7shqdo1_250\",\n    \"question\": \"how many men are hugging and laughing at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43829\",\n    \"key\": \"16375\",\n    \"description\": \"two men are hugging and laughing at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni05olbLcN1u1c6rno1_250\",\n    \"question\": \"what is the man with short hair and glasses falling off?\",\n    \"answer\": \"chair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA322\",\n    \"key\": \"53686\",\n    \"description\": \"a man with short hair and glasses is falling off his chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2anni0vZ1uup4c1o1_400\",\n    \"question\": \"how many men are sitting in front of microphones and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44844\",\n    \"key\": \"77629\",\n    \"description\": \"two men are sitting in front of microphones and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpnflPD2K1sklqsoo1_400\",\n    \"question\": \"how many men dance by rocking back and forth while the woman records them?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13814\",\n    \"key\": \"58049\",\n    \"description\": \"three men dance by rocking back and forth while a woman records them.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8cq0OE6r1u2z3v8o3_250\",\n    \"question\": \"what is the color of the suits?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3802\",\n    \"key\": \"2254\",\n    \"description\": \"two men in white suits dance on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jjd1vxrB1rhbco5o1_250\",\n    \"question\": \"how many young men in white suits are singing into a microphone together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15445\",\n    \"key\": \"47233\",\n    \"description\": \"three young men in white suits are singing into a microphone together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nconinasRR1s9gxsqo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52130\",\n    \"key\": \"89274\",\n    \"description\": \"a man with black hear and black shirt speaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngxqtqgyOm1sqlieso1_400\",\n    \"question\": \"what did the man ride over a large ball?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38176\",\n    \"key\": \"50893\",\n    \"description\": \"a man rode a bike over a large ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_njn8iw5kKP1una83oo1_500\",\n    \"question\": \"how many men are dancing together on the stage?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26104\",\n    \"key\": \"33829\",\n    \"description\": \"four men are dancing together on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hvtzkimT1tirskjo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4067\",\n    \"key\": \"39158\",\n    \"description\": \"a young man is wearing a black hat and nodding.\"\n  },\n  {\n    \"video_name\": \"tumblr_not9kcZnFJ1uu6jgto1_400\",\n    \"question\": \"what is feeding to the very cute little rabbit?\",\n    \"answer\": \"milk\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17204\",\n    \"key\": \"20368\",\n    \"description\": \"is feeding milk to a very cute little rabbit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnv8efkDCK1rqru0yo1_400\",\n    \"question\": \"what are the typical corporate industrialist feeding?\",\n    \"answer\": \"panther\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20488\",\n    \"key\": \"64523\",\n    \"description\": \"a typical corporate industrialist are feeding his pet panther.\"\n  },\n  {\n    \"video_name\": \"tumblr_nekewm14Rx1seb31ro1_500\",\n    \"question\": \"what is the man in front of bright lights playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45565\",\n    \"key\": \"63354\",\n    \"description\": \"a man in front of bright lights is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbk6g8Dydm1s22j6co1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39081\",\n    \"key\": \"4887\",\n    \"description\": \"a woman with long dark brown hair is waving and making the thumbs up signal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8nziviJ61tkxcpoo1_250\",\n    \"question\": \"how many men in black suits make weird body movements?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37564\",\n    \"key\": \"39669\",\n    \"description\": \"two men in black suits make weird body movements.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq513q76F81u3cb3fo1_400\",\n    \"question\": \"how many girls in red and black dresses were dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5740\",\n    \"key\": \"46038\",\n    \"description\": \"three girls in red and black dresses were dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhihfqgnjK1u71wuao1_400\",\n    \"question\": \"how many men are having the serious discussion while looking at an army tank?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39308\",\n    \"key\": \"58907\",\n    \"description\": \"two men are having a serious discussion while looking at an army tank.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzxkpnkEc1t9qxjmo1_250\",\n    \"question\": \"how many man having a fight and is very dirty fight?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1487\",\n    \"key\": \"48965\",\n    \"description\": \"two man having a fight and is very dirty fight.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng67v0PpjK1tkhxdko1_400\",\n    \"question\": \"what is driving the toy car across the road?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA704\",\n    \"key\": \"17979\",\n    \"description\": \"a dog is driving a toy car across the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_noygepnmqA1tvw35wo1_250\",\n    \"question\": \"how many people are in the room with two microphones in front of them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41517\",\n    \"key\": \"8773\",\n    \"description\": \"two people are in a room with two microphones in front of them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadd8dv4Ho1s34j90o1_400\",\n    \"question\": \"how many people are dancing together in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30418\",\n    \"key\": \"57968\",\n    \"description\": \"two people are dancing together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7876agwW1slwrsuo1_400\",\n    \"question\": \"what is walking while looking up?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10355\",\n    \"key\": \"16802\",\n    \"description\": \"a gray kitten is walking while looking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuuylqusz1tbt8d2o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31457\",\n    \"key\": \"29018\",\n    \"description\": \"a woman in a green shirt is acting surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrkl4u4JU1unyhx2o1_400\",\n    \"question\": \"what spins around on the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38926\",\n    \"key\": \"96258\",\n    \"description\": \"a race car spins around on the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncuo84ErSe1rixjzfo1_400\",\n    \"question\": \"how many girls all is having dark colored hair are holding on to each other,\",\n    \"answer\": \"smiling and laughing ? three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40401\",\n    \"key\": \"52680\",\n    \"description\": \"three girls all having dark colored hair are holding on to each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkw7jnai031rm0ja8o1_400\",\n    \"question\": \"where are two men sharing a moment.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46979\",\n    \"key\": \"52202\",\n    \"description\": \"two men are sharing a moment in bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepylkq42m1t5ojzdo1_250\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12726\",\n    \"key\": \"15466\",\n    \"description\": \"a woman wearing red lipstick is looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1o4wrz6A1t1d43io1_500\",\n    \"question\": \"how many girls are standing beside each other smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18963\",\n    \"key\": \"88073\",\n    \"description\": \"two girls are standing beside each other smiling and one with a hat is making a peace sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_nau25zCJpy1tee2zqo1_500\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34797\",\n    \"key\": \"94641\",\n    \"description\": \"two men in black run their hands down the front of a pop star who has just lifted his black vest up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nouvypVt4E1r9lvg6o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9979\",\n    \"key\": \"16658\",\n    \"description\": \"a man with black hair is putting a flower in the mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfvamCHdp1slj978o1_400\",\n    \"question\": \"what does the man throw at another man,\",\n    \"answer\": \"and it lands on his head ? hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46783\",\n    \"key\": \"197\",\n    \"description\": \"a man throws a hat at another man as he walks past,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg0vcBsEx1tgitqpo1_500\",\n    \"question\": \"where are the woman and a man dancing.\",\n    \"answer\": \"? fountain\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45192\",\n    \"key\": \"7279\",\n    \"description\": \"a woman and a man are dancing in a water fountain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkp48eoRnd1u3a68lo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6310\",\n    \"key\": \"75940\",\n    \"description\": \"a guy wearing a light colored jacket and black hat,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qvrhLwzq1r54uz2o1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28790\",\n    \"key\": \"28811\",\n    \"description\": \"a person wearing a red sweater moves their hair off their face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs731Hn2X1slj978o1_250\",\n    \"question\": \"what does the woman take off her coat and holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38300\",\n    \"key\": \"16949\",\n    \"description\": \"a woman takes off her coat and holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ycr8zaLA1to7bdco1_250\",\n    \"question\": \"what is the young woman with long curly hair straightening?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19181\",\n    \"key\": \"1859\",\n    \"description\": \"a young woman with long curly hair is straightening her bow tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbczbxoW5U1r1jb3so1_500\",\n    \"question\": \"how many girls are doing the dance routine?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40454\",\n    \"key\": \"94902\",\n    \"description\": \"two girls are doing a dance routine and one kissed the other on the cheek.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2s3oGmK91sekz9eo1_400\",\n    \"question\": \"how many men is wearing suits are dancing on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51569\",\n    \"key\": \"48596\",\n    \"description\": \"two men wearing suits are dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdr3clKDa1sntw1mo1_400\",\n    \"question\": \"what stares at something in a store?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20464\",\n    \"key\": \"39810\",\n    \"description\": \"a funny-looking dog stares at something in a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4vj0em9H1u1m6w4o1_500\",\n    \"question\": \"how many wheel motorbike is the man in yellow driving with a nice drift?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6364\",\n    \"key\": \"39383\",\n    \"description\": \"a man in yellow is driving a four wheel motorbike with a nice drift.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkywyb1qXc1qj6w89o1_500\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21719\",\n    \"key\": \"7385\",\n    \"description\": \"a man in a black sweater is rapping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfe1neYEd81qcwyxho1_400\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34743\",\n    \"key\": \"34065\",\n    \"description\": \"the man in the red vest is dancing in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkoxqBeA41qik8zvo1_500\",\n    \"question\": \"how many people is this meeting and shaking hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44221\",\n    \"key\": \"100936\",\n    \"description\": \"this is two people meeting and shaking hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9z8vnjWI1r7b8pso1_1280\",\n    \"question\": \"what is the blazing fire lighting up?\",\n    \"answer\": \"sky\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25421\",\n    \"key\": \"837\",\n    \"description\": \"a blazing fire is lighting up the night sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbuocrieZ1s5t0x8o1_250\",\n    \"question\": \"how many men walk through the entrance of a building?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17961\",\n    \"key\": \"85591\",\n    \"description\": \"two men walk through the entrance of a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn4nr9hX3C1sm7eoto1_500\",\n    \"question\": \"where is the baby in one pool with a swim ring and the dog is.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27433\",\n    \"key\": \"41251\",\n    \"description\": \"the baby is in one pool with a swim ring and the dog is in the other pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9t8801hEM1qc5bc7o1_500\",\n    \"question\": \"what are the man and a woman riding?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8037\",\n    \"key\": \"74344\",\n    \"description\": \"a man and a woman are riding a black horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqv0fIvLp1qd80wyo1_400\",\n    \"question\": \"what is the man signing with a sliver pen?\",\n    \"answer\": \"photograph\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31479\",\n    \"key\": \"45758\",\n    \"description\": \"a man is signing a large photograph with a sliver pen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobecu8wyv1s5cww5o1_400\",\n    \"question\": \"what is the girl taking off and kissing him?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11698\",\n    \"key\": \"63193\",\n    \"description\": \"a girl is taking a boy 's shirt off and kissing him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkc48iNxXB1uodfiso1_500\",\n    \"question\": \"how many people are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10310\",\n    \"key\": \"72935\",\n    \"description\": \"two people are talking and one is holding a phone in front of their face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelgzg0Sl91r0oqh7o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23214\",\n    \"key\": \"89347\",\n    \"description\": \"a young man in black is dancing in a black and white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91362IjQP1syoifvo1_500\",\n    \"question\": \"what does the person hold?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1442\",\n    \"key\": \"50369\",\n    \"description\": \"a person holds a dog as the dog snaps at her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxshaRNzf1rlqrz3o1_500\",\n    \"question\": \"what is skidding around in the parking lot?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18912\",\n    \"key\": \"68911\",\n    \"description\": \"an orange car is skidding around in a parking lot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8b7fU5a11s0svh1o1_500\",\n    \"question\": \"what is wearing the top hat and gets it knocked off?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30871\",\n    \"key\": \"60230\",\n    \"description\": \"a kitten is wearing a top hat and gets it knocked off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxm80ySXt1usju2ko1_250\",\n    \"question\": \"what is the young lady giving to a young man?\",\n    \"answer\": \"photographs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41691\",\n    \"key\": \"36455\",\n    \"description\": \"a young lady is giving photographs to a young man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3tgnyofk1txpva2o1_500\",\n    \"question\": \"what is sitting around doing nothing?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8643\",\n    \"key\": \"78132\",\n    \"description\": \"a cat is sitting around doing nothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw4erpndi1te0omro1_400\",\n    \"question\": \"what is the color of the rabbit?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12543\",\n    \"key\": \"88275\",\n    \"description\": \"a brown rabbit sniffs and then turns and runs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hp20yyXi1ttuja3o1_400\",\n    \"question\": \"what give each other a high five?\",\n    \"answer\": \"horses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46616\",\n    \"key\": \"65594\",\n    \"description\": \"the two horses give each other a high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnl5xbyxKV1r5uv3zo1_400\",\n    \"question\": \"where is the person sweeping.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28542\",\n    \"key\": \"17449\",\n    \"description\": \"a person is sweeping off next to cat in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_natpusTxxx1svos5ho1_400\",\n    \"question\": \"what is the long haired young man playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17855\",\n    \"key\": \"21396\",\n    \"description\": \"a long haired young man is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_napo7m8xr71thq1yio1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29705\",\n    \"key\": \"16888\",\n    \"description\": \"a man with a white shirt puts his thumb up then gets shy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyrpdSktQ1tr2xwio1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31740\",\n    \"key\": \"64233\",\n    \"description\": \"a red haired girl is changing her look.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgjsaoPTt1u1pokno1_500\",\n    \"question\": \"what is the color of the ball?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10943\",\n    \"key\": \"100084\",\n    \"description\": \"a man throws a white ball at someone in a costume but it bounces back and hits him instead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4ssypv3Y1uaujqao1_400\",\n    \"question\": \"what is this trying to bite a person 's finger?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45266\",\n    \"key\": \"35099\",\n    \"description\": \"this is a frog trying to bite a person 's finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_npahm5k3YQ1ro0x7uo1_250\",\n    \"question\": \"what is the color of the toy?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28948\",\n    \"key\": \"24987\",\n    \"description\": \"a man in a hat is petting a green toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9l9ewvnn1rm95kgo1_400\",\n    \"question\": \"what dug at the floor while the other slept?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23951\",\n    \"key\": \"42806\",\n    \"description\": \"a puppy dug at the floor while the other slept.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk1jrdGhR1uakcnho1_500\",\n    \"question\": \"how many people are standing up and looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8458\",\n    \"key\": \"71562\",\n    \"description\": \"two people are standing up and looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq0fyOyiC1rj38k8o1_400\",\n    \"question\": \"what sits up on its back paws and then reaches around a wall?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9346\",\n    \"key\": \"1318\",\n    \"description\": \"a dog sits up on its back paws and then reaches around a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nheojg8ou31sqwk8ko1_250\",\n    \"question\": \"what is dancing while singing?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8374\",\n    \"key\": \"3300\",\n    \"description\": \"a boy wearing suit is dancing while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqmrnfJHqY1r9pv19o1_500\",\n    \"question\": \"what does the man in a car shut?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37326\",\n    \"key\": \"73803\",\n    \"description\": \"a man in a car shuts his window whilst lights flash in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5xnkmNbh1tk2ngvo1_400\",\n    \"question\": \"what is walking along the low wall?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5186\",\n    \"key\": \"53122\",\n    \"description\": \"a black cat is walking along a low wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mri5J5kI1smd0f6o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37149\",\n    \"key\": \"33393\",\n    \"description\": \"a girl with long brown hair smiles and then makes a heart shape with her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bi70IW9w1t0tdj5o1_250\",\n    \"question\": \"what does the man wear?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34860\",\n    \"key\": \"17375\",\n    \"description\": \"a man wears a knit cap while he drives a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnuwqIZYf1r6a3k1o1_400\",\n    \"question\": \"where does the woman do a bong hit.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15572\",\n    \"key\": \"63899\",\n    \"description\": \"a woman does a bong hit in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncep6g3gEo1tik3sgo1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49157\",\n    \"key\": \"99919\",\n    \"description\": \"a woman in white clothing and a black hat is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkopqiVNB01un86uao1_250\",\n    \"question\": \"how many man flips the other one?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45743\",\n    \"key\": \"86699\",\n    \"description\": \"two men are wrestling and one man flips the other one.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdhgdA8ez1sxvd87o1_400\",\n    \"question\": \"what is pulling the tail to another big cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25246\",\n    \"key\": \"43334\",\n    \"description\": \"a little cat is pulling the tail to another big cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc2uhXce31slwrsuo1_250\",\n    \"question\": \"what is sticking out his tongue and wiggling it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42586\",\n    \"key\": \"1365\",\n    \"description\": \"a cat is sticking out his tongue and wiggling it.\"\n  },\n  {\n    \"video_name\": \"tumblr_na00hxaoq01so8ipho1_500\",\n    \"question\": \"what is the color of the drink?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34068\",\n    \"key\": \"79541\",\n    \"description\": \"a teenager in a white shirt sips a purple drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ug3oAT981rit0dno1_500\",\n    \"question\": \"what is the woman with black hair talking to another woman and someone is taking?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2672\",\n    \"key\": \"93869\",\n    \"description\": \"a woman with black hair is talking to another woman and someone is taking a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfz03nMP41tz0q9ko1_1280\",\n    \"question\": \"what did the woman crack into a bowl,\",\n    \"answer\": \"it has a double yolk ? egg\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1015\",\n    \"key\": \"33105\",\n    \"description\": \"a woman cracks an egg into a bowl,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrd7r6TBqF1usqmhvo1_250\",\n    \"question\": \"what is the color of the seductively?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50847\",\n    \"key\": \"2135\",\n    \"description\": \"this image is of a woman in all black dancing seductively.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8luntFAK1s8qlxdo1_400\",\n    \"question\": \"what is running and jumping on the contest?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40045\",\n    \"key\": \"97784\",\n    \"description\": \"a horse is running and jumping on a contest.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xvfh2oUz1rjf48qo1_250\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2354\",\n    \"key\": \"23453\",\n    \"description\": \"two guys,\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0ddtHrBj1tg85j7o1_400\",\n    \"question\": \"how many hands in surgical gloves paste red tape in the shape of a cross?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24786\",\n    \"key\": \"36841\",\n    \"description\": \"four hands in surgical gloves paste red tape in the shape of a cross.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8cq0OE6r1u2z3v8o3_250\",\n    \"question\": \"how many men in white suits dance on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19832\",\n    \"key\": \"2254\",\n    \"description\": \"two men in white suits dance on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkvtw3BHU1rdixa9o1_400\",\n    \"question\": \"what is the color of the wig?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA509\",\n    \"key\": \"32551\",\n    \"description\": \"a person is wearing a gray wig and makes several hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwoxqjLik1tit9eco1_r1_500\",\n    \"question\": \"where is the young man singing.\",\n    \"answer\": \"? corridor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18627\",\n    \"key\": \"95676\",\n    \"description\": \"a young man is singing in a red corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1uguIQxD1td493xo1_500\",\n    \"question\": \"where is the baby riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26863\",\n    \"key\": \"84890\",\n    \"description\": \"a baby is riding in a toy car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96fzvPIrN1s2wg51o1_500\",\n    \"question\": \"what is the person in a green top riding?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21815\",\n    \"key\": \"46532\",\n    \"description\": \"a person in a green top is riding a dark horse who is galloping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfij52cXeF1tx3acho1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32187\",\n    \"key\": \"18034\",\n    \"description\": \"a guy with short black hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xrsdx6WY1tg0kf3o1_250\",\n    \"question\": \"where is the guy arranging herself.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29396\",\n    \"key\": \"27224\",\n    \"description\": \"a guy is arranging herself in a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pom6qgCR1tgl4z1o1_400\",\n    \"question\": \"what are revisiting,\",\n    \"answer\": \"one is in a basket ? dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49567\",\n    \"key\": \"75583\",\n    \"description\": \"two brown dogs revisiting,\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5189zMVE1tewmvuo1_400\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7901\",\n    \"key\": \"32777\",\n    \"description\": \"a girl with green pants looks surprised while eating a tube.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vcakoP9a1tx53tvo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30960\",\n    \"key\": \"11589\",\n    \"description\": \"this image is of a man in a black shirt looking down and smiling at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndjfgohCV31tl8x1eo2_r1_1280\",\n    \"question\": \"what do two men run up together laughing?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9413\",\n    \"key\": \"90198\",\n    \"description\": \"two men run up some stairs together laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2kfm8zXz1tjmmd9o1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28660\",\n    \"key\": \"5964\",\n    \"description\": \"a blond girl with black tank top is standing up while looking far.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfysduIWKB1u029u8o1_400\",\n    \"question\": \"how many leopards is prowling in their enclosure whilst being watched by spectators?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20491\",\n    \"key\": \"37642\",\n    \"description\": \"three leopards prowling in their enclosure whilst being watched by spectators.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ao7dJQgG1ti0ll0o1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7563\",\n    \"key\": \"982\",\n    \"description\": \"a woman opens her mouth as an animal climbs into her white t-shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq4d7kPtlq1unyhx2o1_400\",\n    \"question\": \"what is leaking sparks on the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33406\",\n    \"key\": \"76971\",\n    \"description\": \"a beautiful race car is leaking sparks on the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5hyiSE5K1tj2to3o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52375\",\n    \"key\": \"43705\",\n    \"description\": \"a man in a hat is kissing a girl with red hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbt9t3GNcv1tdjuqvo1_400\",\n    \"question\": \"what pushes itself backwards across a slippery floor?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22315\",\n    \"key\": \"32039\",\n    \"description\": \"a white puppy pushes itself backwards across a slippery floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0lvzNzJJ1s7vtgpo1_400\",\n    \"question\": \"what is the young man in a black t-shirt playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15167\",\n    \"key\": \"1745\",\n    \"description\": \"a young man in a black t-shirt is playing a small guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg0gxyGxh1tlqcx1o1_500\",\n    \"question\": \"where does the person fall out and into the water.\",\n    \"answer\": \"? boat\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11500\",\n    \"key\": \"69880\",\n    \"description\": \"a person in a mini boat falls out and into the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvj8l4kcT1uq7zwjo1_400\",\n    \"question\": \"how many stuffed llamas is the man holding?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49076\",\n    \"key\": \"63226\",\n    \"description\": \"the man is holding two stuffed llamas.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkkxw1MIR1uxae7wo1_500\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35595\",\n    \"key\": \"34271\",\n    \"description\": \"a person in a white outfit is examining an alien.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4hvwnbLO1timjsqo1_400\",\n    \"question\": \"what is the man playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12790\",\n    \"key\": \"95266\",\n    \"description\": \"the man is playing the drums while others play guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ah6nPGJQ1snpf7yo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18710\",\n    \"key\": \"73854\",\n    \"description\": \"a woman with blue hair opens her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd59g8nitC1qjpmwio1_500\",\n    \"question\": \"what chews intently on an object with its eyes closed?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36080\",\n    \"key\": \"43150\",\n    \"description\": \"a cat chews intently on an object with its eyes closed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc20yxAKBE1tx5rbeo1_400\",\n    \"question\": \"how many soccer team is keeping the ball from another soccer team?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23541\",\n    \"key\": \"87101\",\n    \"description\": \"one soccer team is keeping the ball from another soccer team.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6wajqX0X1tukn5ao1_400\",\n    \"question\": \"where is the television playing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38610\",\n    \"key\": \"98091\",\n    \"description\": \"a television is playing in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_npblti8bU91use8l1o1_400\",\n    \"question\": \"what does the polar bear do not notice a black bird,\",\n    \"answer\": \"but does ? cub\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5039\",\n    \"key\": \"82811\",\n    \"description\": \"a polar bear does not notice a black bird,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfkhbfCrw41s7s5bwo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11277\",\n    \"key\": \"90483\",\n    \"description\": \"a woman with brown hair is turning her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncg8b02Uyb1tmxc86o1_400\",\n    \"question\": \"what is walking and falls off the box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41207\",\n    \"key\": \"36585\",\n    \"description\": \"a cat is walking and falls off a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb5u58Wfdx1rpqzspo1_400\",\n    \"question\": \"what is the man wearing on his forehead?\",\n    \"answer\": \"strips\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11281\",\n    \"key\": \"65712\",\n    \"description\": \"a man is wearing black tape strips on his forehead.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q6dzeRYu1tgwv6ro1_500\",\n    \"question\": \"how many people are walking arm in arm while singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30213\",\n    \"key\": \"90864\",\n    \"description\": \"two people are walking arm in arm while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npf5kbV03n1u1ogm0o1_400\",\n    \"question\": \"what is driving on top of the water?\",\n    \"answer\": \"jeep\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11364\",\n    \"key\": \"32114\",\n    \"description\": \"a jeep is driving on top of the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_noy2z9dQI01u1uykho1_400\",\n    \"question\": \"how many people are waving at people and walking away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32205\",\n    \"key\": \"82363\",\n    \"description\": \"two people are waving at people and walking away.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8urd6PMiY1tgkdkbo1_400\",\n    \"question\": \"what is sitting on the stool,\",\n    \"answer\": \"when the toaster pops out toast the cat gets scared and jumps off ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43993\",\n    \"key\": \"74900\",\n    \"description\": \"a yellow cat is sitting on a stool,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmio5gcZb1u4uwvmo1_400\",\n    \"question\": \"what is the man wearing and sitting next to a girl that is wearing a hat?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3741\",\n    \"key\": \"57274\",\n    \"description\": \"a man is wearing a hat and sitting next to a girl that is wearing a hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2kfm8zXz1tjmmd9o1_250\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44758\",\n    \"key\": \"5964\",\n    \"description\": \"a woman wearing a black outfit stands up straight.\"\n  },\n  {\n    \"video_name\": \"tumblr_n7x16nwNKb1rdv08ro1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44694\",\n    \"key\": \"6955\",\n    \"description\": \"a boy with brown hair wears a denim jacket and gets shaken by another boy and then drops to the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5e7cqw5L1r7w2obo1_r3_500\",\n    \"question\": \"what does the woman get applied to her face?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43928\",\n    \"key\": \"52541\",\n    \"description\": \"a woman gets makeup applied to her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sg39oVrZ1qedx60o1_500\",\n    \"question\": \"what is the color of the puppy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2743\",\n    \"key\": \"98928\",\n    \"description\": \"a person is holding a white fluffy puppy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhblwqSCgu1u4i3qco1_400\",\n    \"question\": \"what does the person touch a dogs butt,\",\n    \"answer\": \"then turns around crazy ? dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31735\",\n    \"key\": \"9324\",\n    \"description\": \"a person touches a dogs butt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfas85i8vi1qz4c39o1_400\",\n    \"question\": \"where does the dog on a skateboard cross the floor.\",\n    \"answer\": \"? house\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21726\",\n    \"key\": \"5589\",\n    \"description\": \"a dog on a skateboard crosses the floor in the house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcq3zetc31r2v01io1_400\",\n    \"question\": \"what is the blonde haired woman screaming and driving?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6289\",\n    \"key\": \"15835\",\n    \"description\": \"the blonde haired woman is screaming and driving a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqr8fvbChQ1u0ql9oo1_500\",\n    \"question\": \"what does two women leave and gets?\",\n    \"answer\": \"clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13311\",\n    \"key\": \"58093\",\n    \"description\": \"two women are in a kitchen one leaves and gets clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rlcclxUX1tgyi5mo1_250\",\n    \"question\": \"how many men are hugging each other on a field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24804\",\n    \"key\": \"43710\",\n    \"description\": \"two men are hugging each other on a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8th9v3J0Q1sawu1vo1_500\",\n    \"question\": \"where is the woman smoking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21365\",\n    \"key\": \"100784\",\n    \"description\": \"a woman is smoking seductively in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbng5xnLx61thjdhso1_1280\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10860\",\n    \"key\": \"40403\",\n    \"description\": \"a black man is opening his mouth wide.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrnfybuPl1rl8hy1o1_400\",\n    \"question\": \"what are people walking along while looking tired?\",\n    \"answer\": \"grass\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45491\",\n    \"key\": \"65009\",\n    \"description\": \"people are walking along grass while looking tired.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90y95G51t1twipgeo1_400\",\n    \"question\": \"where is the woman smiling whilst looking up.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38793\",\n    \"key\": \"8927\",\n    \"description\": \"a woman in a swimming pool is smiling whilst looking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_not9kcZnFJ1uu6jgto1_400\",\n    \"question\": \"what taps its arms as it drinks from a small bottle?\",\n    \"answer\": \"mouse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38848\",\n    \"key\": \"20368\",\n    \"description\": \"a mouse taps its arms as it drinks from a small bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sune2zw21s8thapo1_500\",\n    \"question\": \"what is the man playing and singing on stage?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21230\",\n    \"key\": \"12176\",\n    \"description\": \"a man is playing a piano and singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_no4czdLnmS1tnjsjuo1_1280\",\n    \"question\": \"what swims around the hand in a tank?\",\n    \"answer\": \"goldfish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36865\",\n    \"key\": \"14627\",\n    \"description\": \"a large goldfish swims around a hand in a tank.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9rxraygM1u1bqbwo1_250\",\n    \"question\": \"what is the boy with dark hair eating?\",\n    \"answer\": \"chicken\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18293\",\n    \"key\": \"3076\",\n    \"description\": \"a boy with dark hair is eating chicken.\"\n  },\n  {\n    \"video_name\": \"tumblr_njp9i28V8y1tuiwglo1_500\",\n    \"question\": \"what is the woman opening with a doughnut in her mouth?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32613\",\n    \"key\": \"54702\",\n    \"description\": \"a woman is opening a door with a doughnut in her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwsbaUqdU1tkqyuyo1_400\",\n    \"question\": \"how many women are smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9403\",\n    \"key\": \"29743\",\n    \"description\": \"two women are smiling and one runs her fingers through her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8kiswJ7Ht1slb5kno1_500\",\n    \"question\": \"what is moving on top of a cat 's head?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28594\",\n    \"key\": \"71356\",\n    \"description\": \"a tail is moving on top of a cat 's head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uqen1tDV1sfmhxao1_400\",\n    \"question\": \"what is eating its dog food?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20006\",\n    \"key\": \"63448\",\n    \"description\": \"the dog is eating its dog food.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndh1t5XuKp1sht3fmo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37268\",\n    \"key\": \"57336\",\n    \"description\": \"a black man with a sweater around his neck is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd05j8CSms1txvftwo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20577\",\n    \"key\": \"23360\",\n    \"description\": \"a woman wearing a black dress is making a surprised almost disgusted look.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc28qjehJz1rs1rw7o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7889\",\n    \"key\": \"43188\",\n    \"description\": \"a man with brown hair is talking to someone and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfl3gwHGEz1u4tfo6o1_500\",\n    \"question\": \"what is the young man explaining to the man in front of him?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7580\",\n    \"key\": \"71752\",\n    \"description\": \"the young man is explaining his shirt to the man in front of him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8g0k6Rac1tatohao1_400\",\n    \"question\": \"what charges and rams the man and a woman?\",\n    \"answer\": \"bull\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40095\",\n    \"key\": \"41038\",\n    \"description\": \"a bull charges and rams a man and a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9euhcHVsj1t1a1dlo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26962\",\n    \"key\": \"13359\",\n    \"description\": \"a young man in a black hat is having fun with a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn6fbUX131t5lviko1_250\",\n    \"question\": \"where are three people standing.\",\n    \"answer\": \"? elevator\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5493\",\n    \"key\": \"49614\",\n    \"description\": \"three people are standing in an elevator.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng46uo55Mx1slj978o1_400\",\n    \"question\": \"how many penguins is walking along the ice and one slips and falls?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20773\",\n    \"key\": \"50029\",\n    \"description\": \"two penguins walking along the ice and one slips and falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvitlXC2D1u7xqnso1_250\",\n    \"question\": \"how many person places the bracelet on the others hand?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20901\",\n    \"key\": \"51903\",\n    \"description\": \"one person places a bracelet on the others hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr8qs2rHGr1u5g8bjo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5215\",\n    \"key\": \"1222\",\n    \"description\": \"a woman in blue dress is blowing a kiss at somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba91bUWgD1qiuxgpo1_400\",\n    \"question\": \"what is the woman kissing?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47238\",\n    \"key\": \"30370\",\n    \"description\": \"a woman is kissing a dog that she is holding.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr85pdqTI1sht3fmo1_250\",\n    \"question\": \"what is the guy receiving and he drops it down?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16795\",\n    \"key\": \"46733\",\n    \"description\": \"a guy is receiving a bag and he drops it down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fgg3pFQC1tin09xo1_250\",\n    \"question\": \"how many people are looking at each other and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44879\",\n    \"key\": \"51435\",\n    \"description\": \"two people are looking at each other and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkq6tnFoXV1rif4nho1_400\",\n    \"question\": \"how many other people is the man pulling on a moving dolly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9173\",\n    \"key\": \"24121\",\n    \"description\": \"a man is pulling two other people on a moving dolly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyy7b3e731tt9zxqo1_500\",\n    \"question\": \"where is the guy with white shirt moving the eyes.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19926\",\n    \"key\": \"73229\",\n    \"description\": \"a guy with white shirt is moving the eyes in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqh1cwf6xD1rimengo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19729\",\n    \"key\": \"78809\",\n    \"description\": \"a white girl with yellow hair is sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdfc4Icvr1r1ga5qo1_400\",\n    \"question\": \"what is the young man wearing a plaid shirt plays?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3514\",\n    \"key\": \"56612\",\n    \"description\": \"a young man wearing a plaid shirt plays the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1drkOtbS1ruj6z8o1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19092\",\n    \"key\": \"60497\",\n    \"description\": \"a red haired girl is laughing over something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfokkyTDI41qf3bxio1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2278\",\n    \"key\": \"78723\",\n    \"description\": \"a girl with a white dress is singing while a man with black clothes is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n985jc2Wyr1sj2zt0o1_400\",\n    \"question\": \"what is eating the carrot?\",\n    \"answer\": \"hamster\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32606\",\n    \"key\": \"33712\",\n    \"description\": \"a brown hamster is eating a carrot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcirl0aQW1tad1t8o1_250\",\n    \"question\": \"how many man is leaning over another man who is looking over?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16956\",\n    \"key\": \"8072\",\n    \"description\": \"one man is leaning over another man who is looking over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nglax486gU1u3jifro1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31555\",\n    \"key\": \"47089\",\n    \"description\": \"a girl wearing white shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyb2pcEGb1tlmquvo1_400\",\n    \"question\": \"what is lag playing with a ball on a couch?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44122\",\n    \"key\": \"83456\",\n    \"description\": \"a b lag dog is playing with a ball on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk37choqIF1uos7q4o1_400\",\n    \"question\": \"what is the girl holding and kisses him?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2454\",\n    \"key\": \"30118\",\n    \"description\": \"a girl is holding a cat and kisses him.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8yg6ihGk61rdmmjro1_500\",\n    \"question\": \"how many men are sitting down having the discussion?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19157\",\n    \"key\": \"76002\",\n    \"description\": \"three men are sitting down having a discussion.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91l33EgZY1rpqn0wo1_500\",\n    \"question\": \"what does the drift in a circle?\",\n    \"answer\": \"sedan\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19569\",\n    \"key\": \"73230\",\n    \"description\": \"a supped up gray sedan does a drift in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6t6jg9tD1u9jburo1_500\",\n    \"question\": \"what does the woman show off in front of a mirror?\",\n    \"answer\": \"clothing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43977\",\n    \"key\": \"36130\",\n    \"description\": \"a woman shows off her clothing in front of a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_npsvyvbQxZ1un9274o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31369\",\n    \"key\": \"3926\",\n    \"description\": \"a female is modeling a formal black dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb1a34KjI1slpywlo1_250\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3300\",\n    \"key\": \"47009\",\n    \"description\": \"a man wearing black does a dance in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrzq15FyY1s6qyp9o1_500\",\n    \"question\": \"what is the woman with an odd face holding up?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52306\",\n    \"key\": \"86885\",\n    \"description\": \"a woman with an odd face is holding up a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4kuuZpVa1rlngqxo1_400\",\n    \"question\": \"what is the boy using a computer and wearing?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24272\",\n    \"key\": \"62540\",\n    \"description\": \"a boy is using a computer and wearing headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn8bxrdwTP1sht3fmo1_250\",\n    \"question\": \"what is emerging from coral in the sea?\",\n    \"answer\": \"octopus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19139\",\n    \"key\": \"26655\",\n    \"description\": \"an octopus is emerging from coral in the sea.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zd1nDo0B1rwgxlqo1_500\",\n    \"question\": \"what is running laps around its trainer?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14078\",\n    \"key\": \"70645\",\n    \"description\": \"a horse is running laps around its trainer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh07lr7LIE1tqm4yoo1_500\",\n    \"question\": \"what is the color of the eyeliner?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9489\",\n    \"key\": \"77165\",\n    \"description\": \"a man with black eyeliner and spiky black hair sticks his tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rm9gnAtC1twwmr1o1_400\",\n    \"question\": \"where is the man standing and trying to stick his hand.\",\n    \"answer\": \"? pocket\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA140\",\n    \"key\": \"18440\",\n    \"description\": \"a man is standing and trying to stick his hand in his pocket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkevr8kpEw1u8uroco1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2427\",\n    \"key\": \"73345\",\n    \"description\": \"snow falls off a white car in one piece.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnmsjSHVf1qls6cvo1_r1_500\",\n    \"question\": \"what is the girl wearing and smiling at someone?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46436\",\n    \"key\": \"91421\",\n    \"description\": \"a girl is wearing a red hat and smiling at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav2o4Ew2D1sh75jso1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44033\",\n    \"key\": \"3977\",\n    \"description\": \"a man wearing a green shirt walks backward into a man wearing a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqe05boZB1shac5fo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9514\",\n    \"key\": \"67428\",\n    \"description\": \"a young man with a black shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcbdvtDHl1u3n11qo1_500\",\n    \"question\": \"where do four men ride.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA534\",\n    \"key\": \"57651\",\n    \"description\": \"four men ride in a right hand drive car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn6cr8jai1u7y8p9o1_400\",\n    \"question\": \"what is the color of the curtains?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16835\",\n    \"key\": \"54037\",\n    \"description\": \"some people are dancing in a disco before a stage with blue curtains.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdonp8pqR1uzuq8ro1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3844\",\n    \"key\": \"78116\",\n    \"description\": \"a lady with a red dress is talking while holding a glass of wine.\"\n  },\n  {\n    \"video_name\": \"tumblr_nff2ppIqf61sk0i2mo1_400\",\n    \"question\": \"what does the man jump off?\",\n    \"answer\": \"pole\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15424\",\n    \"key\": \"37596\",\n    \"description\": \"a man jumps off a pole to hit another man in a wrestling ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3vj0whpR1s93eg4o1_400\",\n    \"question\": \"what is laying on blankets chewing on something?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2139\",\n    \"key\": \"38217\",\n    \"description\": \"a dog is laying on blankets chewing on something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5jq9YHHz1twj3jvo1_500\",\n    \"question\": \"what are the three men moving and doing funny dance?\",\n    \"answer\": \"round\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44459\",\n    \"key\": \"61007\",\n    \"description\": \"the three men are moving round and doing funny dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9larxUxd71sofft2o1_400\",\n    \"question\": \"how many girls with long hair are hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6843\",\n    \"key\": \"79022\",\n    \"description\": \"two girls with long hair are hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoz5kE1ov1u5n6bno1_250\",\n    \"question\": \"how many people are slowly climbing the set of stairs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7115\",\n    \"key\": \"75192\",\n    \"description\": \"two people are slowly climbing a set of stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncaw26Ufyo1s77tqjo1_500\",\n    \"question\": \"how many men are laughing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14544\",\n    \"key\": \"61327\",\n    \"description\": \"two men are laughing together,\"\n  },\n  {\n    \"video_name\": \"tumblr_nd7al0WxSd1temb16o1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52431\",\n    \"key\": \"97779\",\n    \"description\": \"a black guy lowered his arms turned and spoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrfjpkE8f1qbt20xo1_250\",\n    \"question\": \"how many men danced on stage in front of a crowd of people?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11361\",\n    \"key\": \"43640\",\n    \"description\": \"two men danced on stage in front of a crowd of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkqn8quHM1rlpke5o1_250\",\n    \"question\": \"what is the person slicing with a pizza cutter?\",\n    \"answer\": \"pizza\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15448\",\n    \"key\": \"43955\",\n    \"description\": \"a person is slicing a pizza with a pizza cutter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwmuacJ7m1tegtwko1_400\",\n    \"question\": \"where is the girl moving her hips.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32663\",\n    \"key\": \"17698\",\n    \"description\": \"a girl is moving her hips in her room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbqkbsQwOJ1qfcoxlo1_500\",\n    \"question\": \"how many people are standing next to each other dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28935\",\n    \"key\": \"85720\",\n    \"description\": \"two people are standing next to each other dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbk98p7g3J1slj978o1_400\",\n    \"question\": \"how many construction workers are getting hurt when they try to do a trick?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10316\",\n    \"key\": \"44732\",\n    \"description\": \"two construction workers are getting hurt when they try to do a trick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbud39wvWd1r3uz8ro1_400\",\n    \"question\": \"what starts to moving his head from one side to other?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49938\",\n    \"key\": \"50653\",\n    \"description\": \"the cat starts to moving his head from one side to other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6tl5MFnq1u110syo1_500\",\n    \"question\": \"what is flying behind the girl that is blowing a bubble with her gum?\",\n    \"answer\": \"planet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39105\",\n    \"key\": \"92964\",\n    \"description\": \"a planet is flying behind a girl that is blowing a bubble with her gum.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndhet7vUVd1t0m49go1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11764\",\n    \"key\": \"73864\",\n    \"description\": \"white guy smiles towards someone for a short period.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9aq10meZT1rufn8zo1_500\",\n    \"question\": \"what is the young man with blonde hair smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52497\",\n    \"key\": \"52080\",\n    \"description\": \"a young man with blonde hair is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6ja06aQx1snwydqo1_400\",\n    \"question\": \"where are two children lying and another child is moving her head really fast.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13640\",\n    \"key\": \"28917\",\n    \"description\": \"Two children are lying in bed and another child is moving her head really fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_npozmb4kvw1uy2r7ro1_400\",\n    \"question\": \"what sniffs and swats at the strawberry?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8009\",\n    \"key\": \"37250\",\n    \"description\": \"a cat sniffs and swats at a strawberry.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r2p3I67n1txmq72o1_250\",\n    \"question\": \"what goes into the shop and steals some food?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20835\",\n    \"key\": \"23722\",\n    \"description\": \"a bird goes into a shop and steals some food.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwz48IDxF1u8dfc7o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33200\",\n    \"key\": \"11412\",\n    \"description\": \"a girl with black hair is moving her head and blinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwj61hEvs1ssxspno1_500\",\n    \"question\": \"how many young men dance while several others sit around watching?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52138\",\n    \"key\": \"10278\",\n    \"description\": \"two young men dance while several others sit around watching.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzrcyqAqu1u89ejyo1_500\",\n    \"question\": \"what is the man driving and looking to the right?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30143\",\n    \"key\": \"73326\",\n    \"description\": \"a man is driving a car and looking to the right.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagou6rOfU1t2piwdo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29179\",\n    \"key\": \"59198\",\n    \"description\": \"a guy wearing a white shirt and head phones,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndhcudXfFK1r9ihkro1_500\",\n    \"question\": \"how many men are shaking hands while sitting at a table?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36034\",\n    \"key\": \"89213\",\n    \"description\": \"two men are shaking hands while sitting at a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7kldLCpB1sdbrm9o1_250\",\n    \"question\": \"how many members of a boy band are singing as they walk across the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30977\",\n    \"key\": \"9339\",\n    \"description\": \"two members of a boy band are singing as they walk across the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncecowzOHz1tky8vdo1_400\",\n    \"question\": \"how many women are jogging outdoors side by side?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19083\",\n    \"key\": \"76171\",\n    \"description\": \"two women are jogging outdoors side by side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2les6Lt11t5ojzdo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35861\",\n    \"key\": \"81335\",\n    \"description\": \"a girl with dark brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhszflfDwb1u1rggjo1_400\",\n    \"question\": \"what is the color of the jumpsuit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34754\",\n    \"key\": \"26159\",\n    \"description\": \"the person wearing a red jumpsuit is driving a race car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yqv21JEu1tc3z07o1_400\",\n    \"question\": \"what is the man in his underwear holding while running on a treadmill?\",\n    \"answer\": \"drill\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48913\",\n    \"key\": \"62316\",\n    \"description\": \"a man is in his underwear holding a drill while running on a treadmill.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w54dvKdg1tfn460o1_400\",\n    \"question\": \"what does the man run and throws into the air?\",\n    \"answer\": \"rope\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21897\",\n    \"key\": \"98240\",\n    \"description\": \"a man runs and throws his rope into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes9azrasQ1tdmffyo1_400\",\n    \"question\": \"how many bicycles is the young man performing stunts using?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20808\",\n    \"key\": \"52016\",\n    \"description\": \"a young man is performing stunts using two bicycles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfrlins4gC1qaucgno1_250\",\n    \"question\": \"how many men are hugging as one is crying?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18393\",\n    \"key\": \"21892\",\n    \"description\": \"two men are hugging as one is crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2ar7n3F71u4v3ypo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13672\",\n    \"key\": \"22058\",\n    \"description\": \"a man is holding an orange cat while it licks a beer can.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0uk6lrdI1raliteo1_400\",\n    \"question\": \"what are driving around the track,\",\n    \"answer\": \"two of them spinning around ? cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30891\",\n    \"key\": \"79250\",\n    \"description\": \"racing cars are driving around a track,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj45x0Ant1sn5krco1_500\",\n    \"question\": \"what is the man making up with the hands?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33046\",\n    \"key\": \"76769\",\n    \"description\": \"a man is making up his shirt with the hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nisrmaAbbk1sht3fmo1_250\",\n    \"question\": \"how many woman are on the stage accepting an award?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24736\",\n    \"key\": \"73029\",\n    \"description\": \"two woman are on a stage accepting an award.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhomuemFfD1u684yco1_250\",\n    \"question\": \"what is the color of the kitten?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17981\",\n    \"key\": \"13612\",\n    \"description\": \"a white kitten looks around on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1et3jphj1rmskgro1_250\",\n    \"question\": \"how many male athletes are smiling and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23814\",\n    \"key\": \"39535\",\n    \"description\": \"two male athletes are smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngw1gwZNRY1qgivvbo1_500\",\n    \"question\": \"what is the color of the bandanna?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10453\",\n    \"key\": \"69883\",\n    \"description\": \"kid with purple bandanna started doing dance moves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3l4pzkwU1sht3fmo1_400\",\n    \"question\": \"what rubs the computer keyboard and puts his hands on his head?\",\n    \"answer\": \"baboon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1271\",\n    \"key\": \"57578\",\n    \"description\": \"a baboon rubs a computer keyboard and puts his hands on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfaqctqMXx1u28t0lo1_250\",\n    \"question\": \"how many people are pushing on each other 's faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47680\",\n    \"key\": \"5364\",\n    \"description\": \"two people are pushing on each other 's faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngwg7sysNW1ti9y0go1_400\",\n    \"question\": \"what is the man punching and breaking?\",\n    \"answer\": \"mirror\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12733\",\n    \"key\": \"72848\",\n    \"description\": \"a man is punching and breaking a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkj5yl01mk1thirzao1_400\",\n    \"question\": \"what are four males taking talking into a microphone?\",\n    \"answer\": \"turns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18799\",\n    \"key\": \"62405\",\n    \"description\": \"four males are taking turns talking into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3jron62A1tyncywo1_400\",\n    \"question\": \"what does the man hold?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34072\",\n    \"key\": \"16529\",\n    \"description\": \"a man holds a kitten as it turns its head in curiosity.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes7uvKrwA1r3liqro1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40211\",\n    \"key\": \"90527\",\n    \"description\": \"a young man in a white shirt is laughing with someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8gvhaY7Ab1td876vo1_250\",\n    \"question\": \"how many men in army uniforms are walking through a field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52729\",\n    \"key\": \"47429\",\n    \"description\": \"two men in army uniforms are walking through a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_njb55e5csY1slwpo8o1_250\",\n    \"question\": \"what dances in the woods and falls over?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2174\",\n    \"key\": \"40890\",\n    \"description\": \"a bear dances in the woods and falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl33fuCCKK1slj978o1_400\",\n    \"question\": \"how many people are sledding down the hill and fall off?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12061\",\n    \"key\": \"84963\",\n    \"description\": \"two people are sledding down a hill and fall off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7ew9nZQK1tgyh35o1_400\",\n    \"question\": \"how many man is standing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA855\",\n    \"key\": \"64912\",\n    \"description\": \"one man is standing and one man is sitting at a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwh5vMeEy1tbdpulo1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50190\",\n    \"key\": \"24735\",\n    \"description\": \"white guy with short hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkap9g1Iud1u7nkc5o1_250\",\n    \"question\": \"what is the color of the wings?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52910\",\n    \"key\": \"8637\",\n    \"description\": \"a man with black wings is flying downward with two knives in his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng47s11WJM1tg9gzmo1_250\",\n    \"question\": \"what is the boy carrying,\",\n    \"answer\": \"? flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37800\",\n    \"key\": \"6727\",\n    \"description\": \"a boy is carrying flowers,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ca9mmyaU1rplluro1_400\",\n    \"question\": \"what is the man holding and moving his head around?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24598\",\n    \"key\": \"44721\",\n    \"description\": \"a man is holding a guitar and moving his head around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjhnhmF4l1tmxcjqo1_500\",\n    \"question\": \"what is the color of the balloon?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38080\",\n    \"key\": \"94127\",\n    \"description\": \"a woman is holding onto a large white balloon on a string.\"\n  },\n  {\n    \"video_name\": \"tumblr_niusi5DiBN1r027rto1_250\",\n    \"question\": \"what is the color of the skirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5241\",\n    \"key\": \"820\",\n    \"description\": \"a girl wearing a white shirt and black skirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhv8yzFmkd1u3l54uo1_400\",\n    \"question\": \"what is the man holding and bobbing his head?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11306\",\n    \"key\": \"63798\",\n    \"description\": \"a man is holding a guitar and bobbing his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnunhrJl321u4f3j0o1_540\",\n    \"question\": \"what does the game show host adjust?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14230\",\n    \"key\": \"58346\",\n    \"description\": \"a game show host adjusts a contestant 's shirt then hugs him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqi9pDqn61r3fht5o1_250\",\n    \"question\": \"where is the cap rubbing somebody s leg.\",\n    \"answer\": \"? bath\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48058\",\n    \"key\": \"26058\",\n    \"description\": \"a cap is rubbing somebody s leg in bath.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdij9TJS41swv315o1_400\",\n    \"question\": \"what is the color of the people?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46704\",\n    \"key\": \"38898\",\n    \"description\": \"two people wearing all white are dancing and the man has only one leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjtpivMv91s71nvbo1_400\",\n    \"question\": \"what is sticking its head out the window of a car?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5136\",\n    \"key\": \"17143\",\n    \"description\": \"a dog is sticking its head out the window of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng03s2BcRY1u25ovvo1_400\",\n    \"question\": \"what is the color of the vehicle?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26438\",\n    \"key\": \"63607\",\n    \"description\": \"a yellow vehicle is driving down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4qhhSLmI1rxcaido1_250\",\n    \"question\": \"what is the man wearing a snorkel in the water holds?\",\n    \"answer\": \"glass\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23253\",\n    \"key\": \"43667\",\n    \"description\": \"a man wearing a snorkel in the water holds a martini glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2vicp4Xt1ti2fvro1_400\",\n    \"question\": \"how many motorcyclists does this show driving down a road when one of them flips head over heels?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29843\",\n    \"key\": \"53169\",\n    \"description\": \"this shows two motorcyclists driving down a road when one of them flips head over heels.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhrvfl1oT1s92jogo1_500\",\n    \"question\": \"what is the blonde haired man sipping through a straw?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48612\",\n    \"key\": \"94440\",\n    \"description\": \"a blonde haired man is sipping a drink through a straw.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngao4qDAtx1u5slc8o1_250\",\n    \"question\": \"what is the singer with microphone in his hand dancing?\",\n    \"answer\": \"chairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47386\",\n    \"key\": \"3683\",\n    \"description\": \"a singer with microphone in his hand is dancing near chairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_no4v9wzhum1sxt5qxo1_400\",\n    \"question\": \"how many man jump kicks another man in a grassy area?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16202\",\n    \"key\": \"66777\",\n    \"description\": \"one man jump kicks another man in a grassy area.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6ypurpto1sug4g8o1_500\",\n    \"question\": \"what are the guy and a woman riding?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19514\",\n    \"key\": \"97696\",\n    \"description\": \"a guy and a woman are riding a white horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgv1evYKH1r81i6do1_250\",\n    \"question\": \"how many people are kissing while the wind is blowing their hair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA991\",\n    \"key\": \"90496\",\n    \"description\": \"two people are kissing while the wind is blowing their hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkk749BdeM1qcri9wo1_1280\",\n    \"question\": \"how many women are sitting down and kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16677\",\n    \"key\": \"99569\",\n    \"description\": \"two women are sitting down and kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na74lx7PzG1qdap0qo1_500\",\n    \"question\": \"how many men are on stage singing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33156\",\n    \"key\": \"40816\",\n    \"description\": \"two men are on stage singing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad8wtQS6K1qbz70so1_500\",\n    \"question\": \"how many girls is wearing black shirts are holding up their arms?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37728\",\n    \"key\": \"48702\",\n    \"description\": \"four girls wearing black shirts are holding up their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_na32wo3UE01r6x1a5o1_500\",\n    \"question\": \"how many bikes flip over on the side of the road?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40831\",\n    \"key\": \"46207\",\n    \"description\": \"two bikes flip over on the side of the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbbj6piQ91qkplr2o1_250\",\n    \"question\": \"what is standing on the grass and chewing it?\",\n    \"answer\": \"hamster\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10230\",\n    \"key\": \"2118\",\n    \"description\": \"a hamster is standing on the grass and chewing it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvc4j7YLk1u8ypyuo1_400\",\n    \"question\": \"where is the young man approaching a woman.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17113\",\n    \"key\": \"34753\",\n    \"description\": \"a young man is approaching a woman in a living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngbssiZkk81tk2ngvo1_400\",\n    \"question\": \"what watches as something flies around in the room?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33991\",\n    \"key\": \"55993\",\n    \"description\": \"a cat watches as something flies around in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb70faMADo1tgwlf5o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23098\",\n    \"key\": \"20159\",\n    \"description\": \"a man with jacket black is moving his hand right.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkqmlsRPP1uoyfr8o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15244\",\n    \"key\": \"64657\",\n    \"description\": \"a person gets into the drivers side of a black car then a similar looking person gets in the passenger 's side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9q74s0ti1tgcx82o1_400\",\n    \"question\": \"what is the color of the hats?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38108\",\n    \"key\": \"73206\",\n    \"description\": \"hang movements of a young man doing the black hats.\"\n  },\n  {\n    \"video_name\": \"tumblr_neygedcDOt1tkhxdko1_400\",\n    \"question\": \"what tickles an iguana 's tail while the iguana is eating?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27033\",\n    \"key\": \"46613\",\n    \"description\": \"a cat tickles an iguana 's tail while the iguana is eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x0x7C4AL1spu0zro1_400\",\n    \"question\": \"what is the boy flipping around from side to side?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31370\",\n    \"key\": \"86909\",\n    \"description\": \"a boy is flipping a hat around from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_np1oltv5F41te6s3so1_250\",\n    \"question\": \"what is filling with smoke and there is a flame present?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9378\",\n    \"key\": \"8455\",\n    \"description\": \"a machine is filling with smoke and there is a flame present.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne899a7xR51tkmovro1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49265\",\n    \"key\": \"7004\",\n    \"description\": \"a man in a purple jacket and yellow sweater is putting his head down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevrd9FOp21tf406do1_400\",\n    \"question\": \"what is the man in the black shirt playing with his tongue out?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44022\",\n    \"key\": \"78987\",\n    \"description\": \"the man in the black shirt is playing guitar with his tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda84dI4On1t0ojyvo1_500\",\n    \"question\": \"what is the color of the outfits?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43403\",\n    \"key\": \"90101\",\n    \"description\": \"two teenagers wearing white outfits are singing and one is pointing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngjtdnuRPI1ttvxmgo1_250\",\n    \"question\": \"how many members of a band shake their hair back and forth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39848\",\n    \"key\": \"89414\",\n    \"description\": \"two members of a band shake their hair back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_negqc72Vi91tk3suwo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3376\",\n    \"key\": \"74186\",\n    \"description\": \"a man in a black hat is laughing at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxnhePk1F1qeaeqco1_250\",\n    \"question\": \"what does the student in a class,\",\n    \"answer\": \"make in the air with a wand ? float\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18832\",\n    \"key\": \"49050\",\n    \"description\": \"a student in a class,\"\n  },\n  {\n    \"video_name\": \"tumblr_nakmlyurfi1t0cxw9o1_400\",\n    \"question\": \"how many man hits another and knocks him down and then hits him again?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42933\",\n    \"key\": \"87864\",\n    \"description\": \"one man hits another and knocks him down and then hits him again.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafggj6YFG1sinpl8o1_400\",\n    \"question\": \"how many people are speaking to each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50404\",\n    \"key\": \"28298\",\n    \"description\": \"three people are speaking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nit83eq5sB1u9se2do1_400\",\n    \"question\": \"what is the hand moving on a table?\",\n    \"answer\": \"jewelry\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51390\",\n    \"key\": \"16211\",\n    \"description\": \"a hand is moving jewelry on a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9wv2JLhU1tl5qj2o1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5772\",\n    \"key\": \"49480\",\n    \"description\": \"a man in a white t-shirt is singing on stage with other people in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxq4ucmdv1tg5klqo1_250\",\n    \"question\": \"where are two girls talking sitting.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19000\",\n    \"key\": \"16910\",\n    \"description\": \"two girls are talking sitting in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd91nlEKaI1tx8mn0o1_400\",\n    \"question\": \"what is in the lead as it turns a corner?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35778\",\n    \"key\": \"55564\",\n    \"description\": \"a blue race car is in the lead as it turns a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9i8lnSiXR1rt0zdlo1_500\",\n    \"question\": \"how many teams play soccer on a soccer field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33508\",\n    \"key\": \"80922\",\n    \"description\": \"two teams play soccer on a soccer field.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9v07TxUL1sjcvc1o1_250\",\n    \"question\": \"what is the man ripping angrily in a white room?\",\n    \"answer\": \"fabric\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21722\",\n    \"key\": \"84536\",\n    \"description\": \"a man is ripping fabric angrily in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqt05iwece1te94myo1_400\",\n    \"question\": \"what is this giving a man a high five with his paws?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37403\",\n    \"key\": \"21136\",\n    \"description\": \"this is a dog giving a man a high five with his paws.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8cxoLAlN1ret264o1_250\",\n    \"question\": \"what is the man wearing a black jacket is smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23248\",\n    \"key\": \"36511\",\n    \"description\": \"a man wearing a black jacket is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9l8ofOPZN1qz5sfko1_1280\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13777\",\n    \"key\": \"46604\",\n    \"description\": \"a man wearing a black hat is hugging another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndalydtPUu1u12owmo1_500\",\n    \"question\": \"what is the color of the umbrella?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42392\",\n    \"key\": \"87212\",\n    \"description\": \"a man holding a black umbrella laughed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2eksOOna1smdw0io1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37862\",\n    \"key\": \"28461\",\n    \"description\": \"a dog is kissing a woman in a red shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4yarSAUP1u2j0yeo1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22005\",\n    \"key\": \"82820\",\n    \"description\": \"a little girl wears a plaid skirt and white top.\"\n  },\n  {\n    \"video_name\": \"tumblr_na29ckRUG81tso4bpo1_250\",\n    \"question\": \"what is the dog chasing?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47288\",\n    \"key\": \"11168\",\n    \"description\": \"a dog is chasing his own tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncw0wcn5Ew1tijnqno1_500\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32272\",\n    \"key\": \"59414\",\n    \"description\": \"a muscular man in pale blue shorts does pull ups in front of a white sheet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7yy71XkD1tkpzw0o1_250\",\n    \"question\": \"what is the man tossing into a well as his companion changes?\",\n    \"answer\": \"coins\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7436\",\n    \"key\": \"24105\",\n    \"description\": \"the man is tossing coins into a well as his companion changes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2lv2FE0B1ql2wy7o1_400\",\n    \"question\": \"how many woman are dancing and waving their hands in the air?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32944\",\n    \"key\": \"7495\",\n    \"description\": \"two woman are dancing and waving their hands in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zn52IWcy1qcohbro1_400\",\n    \"question\": \"where is the person lying while people are clapping.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10636\",\n    \"key\": \"50343\",\n    \"description\": \"a person is lying in bed while people are clapping.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvhzh2Nrp1u2bd00o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43206\",\n    \"key\": \"32001\",\n    \"description\": \"a woman in a voluminous white dress is turning in circles in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nht68zHYa61u7ukg9o1_500\",\n    \"question\": \"what is the color of the neck?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13681\",\n    \"key\": \"7020\",\n    \"description\": \"a boy in a black turtle neck is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgn5rXBcf1tymzl2o1_400\",\n    \"question\": \"how many fingers is the person wearing a red jacket and sunglasses raises?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37019\",\n    \"key\": \"65752\",\n    \"description\": \"a person wearing a red jacket and sunglasses raises three fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpp9aIKCk1tuoc50o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45841\",\n    \"key\": \"39490\",\n    \"description\": \"a black car is driving down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nofz2co9ZD1unyhx2o1_400\",\n    \"question\": \"what crashes during the race on a track?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48186\",\n    \"key\": \"78206\",\n    \"description\": \"a motorcycle crashes during a race on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wgrdONLC1st14noo1_400\",\n    \"question\": \"what is the man riding and doing tricks?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6792\",\n    \"key\": \"31020\",\n    \"description\": \"a man is riding a bike and doing tricks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9908v7o3G1t4ar34o1_250\",\n    \"question\": \"how many girls make faces while another girl talks?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32295\",\n    \"key\": \"786\",\n    \"description\": \"two girls make faces while another girl talks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wf1mRoOD1tbv8ipo1_500\",\n    \"question\": \"what is the man laughing and holding?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35484\",\n    \"key\": \"52566\",\n    \"description\": \"a man is laughing and holding a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ja7mNHW31r48o7go4_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9091\",\n    \"key\": \"6592\",\n    \"description\": \"a young woman with long black hair is pulling a funny face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndram4msIo1qlzevso1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46206\",\n    \"key\": \"98737\",\n    \"description\": \"a man dressed in a gray shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtlrnLJyT1t1szv2o1_500\",\n    \"question\": \"how many man are riding public transportation and eating?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33072\",\n    \"key\": \"70108\",\n    \"description\": \"two man are riding public transportation and eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncc1ycDVbj1rijrceo1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42618\",\n    \"key\": \"88715\",\n    \"description\": \"a woman with light hair is kissing a white woman with dark hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_np6i87hU3N1u2hb9ko1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22836\",\n    \"key\": \"8828\",\n    \"description\": \"the man in the green shirt is smiling and laughing beautifully.\"\n  },\n  {\n    \"video_name\": \"tumblr_npbu1izdzO1urprh7o1_400\",\n    \"question\": \"how many cupcakes is the woman holding while looking from one to the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28151\",\n    \"key\": \"41674\",\n    \"description\": \"a woman is holding two cupcakes while looking from one to the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkq03zqHC61un0bvgo1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39987\",\n    \"key\": \"87394\",\n    \"description\": \"people dance across a gym in black clothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbaz4cGyXC1r324mgo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21566\",\n    \"key\": \"89434\",\n    \"description\": \"a man wearing a black jacket and white t-shirt is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na34svB1vd1sfguf8o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35188\",\n    \"key\": \"27448\",\n    \"description\": \"a guy with spiked black hair makes a face while another man is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexvlqqh1j1tsz1ogo1_250\",\n    \"question\": \"what is the guy putting on his ears?\",\n    \"answer\": \"handset\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38696\",\n    \"key\": \"42723\",\n    \"description\": \"a guy is putting his handset on his ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfd11g9m741tm2ntoo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA56\",\n    \"key\": \"67219\",\n    \"description\": \"a woman wearing a white dress shirt stares.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjubkFVUp1sorauco1_400\",\n    \"question\": \"how many men are sitting next to each other and wearing head sets?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6217\",\n    \"key\": \"94513\",\n    \"description\": \"two men are sitting next to each other and wearing head sets.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x0vtknbl1rhmx5uo1_400\",\n    \"question\": \"how many men are sat on the red sofa wearing headphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41660\",\n    \"key\": \"30378\",\n    \"description\": \"two men are sat on a red sofa wearing headphones and one of them gives a thumps up.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r5ygni5T1s7z48ho1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49684\",\n    \"key\": \"26043\",\n    \"description\": \"the man is wearing dark sunglasses and has black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7wylszqY1riowufo1_250\",\n    \"question\": \"what is talking and smiling?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18617\",\n    \"key\": \"2893\",\n    \"description\": \"a boy wearing cap is talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoj4fayWP1slj978o1_400\",\n    \"question\": \"what is the color of the mouse?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49565\",\n    \"key\": \"38644\",\n    \"description\": \"a cat is sitting next to a box when a white mouse comes out of a hole in the box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1owjaSEb1qgvgxbo1_250\",\n    \"question\": \"how many girls is wearing black are dancing in front of white chairs?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31731\",\n    \"key\": \"3345\",\n    \"description\": \"three girls wearing black are dancing in front of white chairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0llj1byG1u1ukj4o1_500\",\n    \"question\": \"what is talking with someone?\",\n    \"answer\": \"chick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38838\",\n    \"key\": \"34940\",\n    \"description\": \"a young goth chick is talking with someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nglxv67MiY1qaj27do1_500\",\n    \"question\": \"where is the man sitting and hollering for someone.\",\n    \"answer\": \"? bathtub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45097\",\n    \"key\": \"79557\",\n    \"description\": \"a man is sitting in a bathtub and hollering for someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4xuxJjdk1sfxnzso1_250\",\n    \"question\": \"what is driving around the crescent shaped road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48663\",\n    \"key\": \"82976\",\n    \"description\": \"a black car is driving around a crescent shaped road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q9ejQLX81ratic8o1_500\",\n    \"question\": \"how many referees are in each others faces acting as if they are going to kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25587\",\n    \"key\": \"87243\",\n    \"description\": \"the two referees are in each others faces acting as if they are going to kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsdx5f0Gm1rb71dxo1_400\",\n    \"question\": \"what is the dog receiving in his mouth?\",\n    \"answer\": \"jets\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14516\",\n    \"key\": \"69966\",\n    \"description\": \"a dog is receiving some water jets in his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2my0wqMO1tmg8yyo1_500\",\n    \"question\": \"what is the color of the leather?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5292\",\n    \"key\": \"48460\",\n    \"description\": \"the girl is singing wearing a black leather.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerwi2g6db1stn2h6o1_500\",\n    \"question\": \"what dressed in the costume?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7520\",\n    \"key\": \"36811\",\n    \"description\": \"a small dog dressed in a costume.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkpk1mOGIM1u2ddo1o1_400\",\n    \"question\": \"what does the man hold and lights?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5362\",\n    \"key\": \"77514\",\n    \"description\": \"a man holds and lights a cigarette while wearing a hat and standing on a street corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfwivvI3v1rmxyxeo1_250\",\n    \"question\": \"how many women hold hands and walk down the runway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26589\",\n    \"key\": \"45678\",\n    \"description\": \"two women hold hands and walk down the runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgexoQLGs1tb6iobo1_400\",\n    \"question\": \"where are people playing and swimming.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9615\",\n    \"key\": \"52669\",\n    \"description\": \"people are playing and swimming in a swimming pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojzfeq9tU1rygrpxo1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22691\",\n    \"key\": \"60840\",\n    \"description\": \"a boy in a brown outfit is falling down.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7mrc0HwL1qdauj7o1_400\",\n    \"question\": \"how many young men are playing guitars and singing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40413\",\n    \"key\": \"36894\",\n    \"description\": \"two young men are playing guitars and singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfkx8qNpFC1snecwlo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14166\",\n    \"key\": \"9410\",\n    \"description\": \"a white man with short hair is wearing a tee shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf32wfId1W1u1kbnho1_250\",\n    \"question\": \"how many woman are dancing the tango together on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA980\",\n    \"key\": \"19038\",\n    \"description\": \"two woman are dancing the tango together on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_np4rw2ejxf1qbzfa1o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32446\",\n    \"key\": \"45324\",\n    \"description\": \"a man with black hair is talking and looks to the right.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgl6t3yLm1tqwtb6o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2685\",\n    \"key\": \"99002\",\n    \"description\": \"a man in black dress is taking his stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyan4eWHz1tmnntwo1_400\",\n    \"question\": \"what is jumping onto the door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6759\",\n    \"key\": \"26777\",\n    \"description\": \"a cat is jumping onto a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cbjlJbp01tf6zmyo1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24291\",\n    \"key\": \"1305\",\n    \"description\": \"a boy wearing a dark blue sweater is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nib7t0miDp1rscw8vo1_400\",\n    \"question\": \"how many men in dark shirts are sitting beside each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1654\",\n    \"key\": \"22500\",\n    \"description\": \"two men in dark shirts are sitting beside each other and one is wringing his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj0iuFdz91qhoso4o1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8529\",\n    \"key\": \"16855\",\n    \"description\": \"a white girl with black hair is surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8cq0OE6r1u2z3v8o3_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26553\",\n    \"key\": \"2254\",\n    \"description\": \"a man is wearing a white suit jacket and dancing with other men.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndk9uvBSzG1rnjm0co1_250\",\n    \"question\": \"what is trying to get the toilet paper roll off of its head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31652\",\n    \"key\": \"69793\",\n    \"description\": \"a cat is trying to get a toilet paper roll off of its head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbukbwrbP1tc6jy7o1_250\",\n    \"question\": \"what is the color of the fingernails?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34267\",\n    \"key\": \"11226\",\n    \"description\": \"someone with black fingernails opens a silver lighter and then closes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9di4xF53b1r0dpzwo1_400\",\n    \"question\": \"what is going on when one of the cars runs off the track and wrecks?\",\n    \"answer\": \"race\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5811\",\n    \"key\": \"81235\",\n    \"description\": \"a car race is going on when one of the cars runs off the track and wrecks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzs6i5ro1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49914\",\n    \"key\": \"63645\",\n    \"description\": \"a white car is going down a country road.\"\n  },\n  {\n    \"video_name\": \"tumblr_noevz1ygRX1s59on0o1_540\",\n    \"question\": \"what does the man roll across his cheek?\",\n    \"answer\": \"piece\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45886\",\n    \"key\": \"100982\",\n    \"description\": \"a man rolls a metal piece across his cheek.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkaabSLxV1rzui38o1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23301\",\n    \"key\": \"15437\",\n    \"description\": \"a woman in a black outfit with white birds flying around her rotates to the left.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhdzmfYSE1s2pll9o1_250\",\n    \"question\": \"what licks the pipe opening before stopping?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26031\",\n    \"key\": \"7659\",\n    \"description\": \"a cat licks a pipe opening before stopping.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndn0rnXruV1tdmffyo1_250\",\n    \"question\": \"what jumps over the back of a man that is sitting down?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4208\",\n    \"key\": \"31047\",\n    \"description\": \"a goat jumps over the back of a man that is sitting down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsdx5f0Gm1rb71dxo1_400\",\n    \"question\": \"what is standing trying to catch water in his month?\",\n    \"answer\": \"bulldog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40414\",\n    \"key\": \"69966\",\n    \"description\": \"a brown bulldog is standing trying to catch water in his month.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv63mKCzc1ttvffso1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51827\",\n    \"key\": \"58080\",\n    \"description\": \"the man is singing in a blue car and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncw1z6JhA81u0ycqbo1_400\",\n    \"question\": \"what does the man adjust while walking?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2311\",\n    \"key\": \"35831\",\n    \"description\": \"a man adjusts his jacket while walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqdnyswOsw1qh9fn6o1_400\",\n    \"question\": \"what follows another in the water then turns around suddenly?\",\n    \"answer\": \"penguin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21309\",\n    \"key\": \"46476\",\n    \"description\": \"a penguin follows another in the water then turns around suddenly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda4kvB8V61tyxziho1_400\",\n    \"question\": \"what does the woman close?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9419\",\n    \"key\": \"28707\",\n    \"description\": \"a woman closes a door as she hugs a man whilst smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dkn0IQug1sl89nwo1_400\",\n    \"question\": \"how many men stare at each other and walk in circles?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40022\",\n    \"key\": \"25606\",\n    \"description\": \"two men stare at each other and walk in circles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sopfHH201tbn1tto1_400\",\n    \"question\": \"what runs through the tunnel and knocks over bowling pins?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20925\",\n    \"key\": \"68160\",\n    \"description\": \"a cat runs through a tunnel and knocks over bowling pins.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrod1dd4w1thbkl7o1_500\",\n    \"question\": \"where is the person sitting and looking at something.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31145\",\n    \"key\": \"96496\",\n    \"description\": \"a person in a car is sitting and looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhne3zpLKF1u7r2dko1_500\",\n    \"question\": \"what is the color of the cup?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27394\",\n    \"key\": \"66650\",\n    \"description\": \"they are pouring some pink liquid into a white cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4tczdT6l1r82feqo1_500\",\n    \"question\": \"what is the man with long dark hair playing?\",\n    \"answer\": \"violin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17628\",\n    \"key\": \"40213\",\n    \"description\": \"a man with long dark hair is playing the violin.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9o2c5bcu71ti2qwco1_400\",\n    \"question\": \"what is the person with short,\",\n    \"answer\": \"black hair wearing and raising their hand up to their mouth ? shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27879\",\n    \"key\": \"91886\",\n    \"description\": \"a person with short,\"\n  },\n  {\n    \"video_name\": \"tumblr_nann6fCDOH1t5w6wco1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51121\",\n    \"key\": \"28507\",\n    \"description\": \"a young woman with red hair is talking and shrugging her shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_nonm875Gqs1uw60sro1_400\",\n    \"question\": \"what is the girl with blonde hair wearing?\",\n    \"answer\": \"sweatshirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24469\",\n    \"key\": \"10403\",\n    \"description\": \"a girl with blonde hair is wearing a yellow sweatshirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcdp9qa9l1raaknro1_500\",\n    \"question\": \"how many men is this image of onstage sharing a cigarette?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47507\",\n    \"key\": \"56535\",\n    \"description\": \"this image is of two men onstage sharing a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94en0BQte1r9m0e9o1_400\",\n    \"question\": \"what is the person dancing around and wearing?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24412\",\n    \"key\": \"33476\",\n    \"description\": \"a person is dancing around and wearing a horse head mask.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezg2amqbT1qbhhz8o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15655\",\n    \"key\": \"48696\",\n    \"description\": \"a girl wearing a white top and holding a microphone,\"\n  },\n  {\n    \"video_name\": \"tumblr_neend692r31u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26082\",\n    \"key\": \"63543\",\n    \"description\": \"a green car is driving on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhj8xVwwc1rd12nio1_250\",\n    \"question\": \"how many people are walking down the street together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27896\",\n    \"key\": \"9297\",\n    \"description\": \"two people are walking down a street together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkri3vybCq1tnv2gbo1_400\",\n    \"question\": \"how many women are eating all together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37064\",\n    \"key\": \"57775\",\n    \"description\": \"the two women are eating all together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjj7ntrNZ1ssgyoro1_250\",\n    \"question\": \"what does the woman kick open angrily?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30163\",\n    \"key\": \"2196\",\n    \"description\": \"a woman kicks open a red door angrily.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3zxi2tnf1t7hjz2o1_400\",\n    \"question\": \"what is the color of the tape?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20882\",\n    \"key\": \"71510\",\n    \"description\": \"a person is turning around a picture of blue tape.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wd5dRwq51tcifwoo1_250\",\n    \"question\": \"what is the color of the cellphone?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7210\",\n    \"key\": \"13507\",\n    \"description\": \"a girl is talking on a blue cellphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfm255tiGL1tgvhzeo1_500\",\n    \"question\": \"how many people are playing ping pong?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2461\",\n    \"key\": \"100755\",\n    \"description\": \"these two people are playing ping pong.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9nxz6cyx11sjuzlno1_400\",\n    \"question\": \"what bob their head up and down?\",\n    \"answer\": \"birds\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43590\",\n    \"key\": \"36176\",\n    \"description\": \"two birds bob their head up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj7wqtKiM31qfd4lio1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6371\",\n    \"key\": \"92309\",\n    \"description\": \"a woman wearing a green top,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb89ryBmeP1rf6ax4o1_400\",\n    \"question\": \"what are three men playing with grimace faces?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31409\",\n    \"key\": \"36254\",\n    \"description\": \"three men are playing air guitar with grimace faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr77u8gvg41tfn8dso1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36375\",\n    \"key\": \"79228\",\n    \"description\": \"a man in a red shirt and a helmet swerves around a corner on a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrmv0Ds3t1tc97obo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32598\",\n    \"key\": \"71433\",\n    \"description\": \"a man dressed in black is carrying a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdhm4hgxd1qmjp5wo1_500\",\n    \"question\": \"where is the blond haired lady with the white dress dancing.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7604\",\n    \"key\": \"90886\",\n    \"description\": \"the blond haired lady with the white dress is dancing in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfees7tCzu1tm9kuyo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40717\",\n    \"key\": \"88622\",\n    \"description\": \"a boy with black hair is singing to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xu4w1Lfq1tatohao1_400\",\n    \"question\": \"what are next to the door and the cat scratches the wall?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40323\",\n    \"key\": \"40652\",\n    \"description\": \"two cats are next to a door and the cat scratches the wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1lzaN9G21tp02izo1_400\",\n    \"question\": \"what is standing on his hind legs playing the trumpet?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37353\",\n    \"key\": \"25343\",\n    \"description\": \"a bear is standing on his hind legs playing the trumpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nreossSjG51sj0m3lo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44453\",\n    \"key\": \"52905\",\n    \"description\": \"a short hair woman wearing black shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngjtdnuRPI1ttvxmgo1_250\",\n    \"question\": \"how many people are on stage whipping their heads around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32165\",\n    \"key\": \"89414\",\n    \"description\": \"two people are on stage whipping their heads around.\"\n  },\n  {\n    \"video_name\": \"tumblr_naepk5DoIi1snxvgpo1_400\",\n    \"question\": \"how many men walk through the hall singing and pointing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24941\",\n    \"key\": \"75860\",\n    \"description\": \"two men walk through a hall singing and pointing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyi6ks5eL1u7c8z0o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38631\",\n    \"key\": \"22966\",\n    \"description\": \"a white girl with yellow hair is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqdnyswOsw1qh9fn6o1_400\",\n    \"question\": \"what swim back and forth in the water?\",\n    \"answer\": \"penguins\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29775\",\n    \"key\": \"46476\",\n    \"description\": \"two penguins swim back and forth in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqy6o19Yiy1uzovyco1_250\",\n    \"question\": \"what is the woman holding in front of a man and he is looking scared?\",\n    \"answer\": \"knife\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5769\",\n    \"key\": \"76591\",\n    \"description\": \"a woman is holding a knife in front of a man and he is looking scared.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wtxekbRV1s6f9ago1_500\",\n    \"question\": \"what does the person with a turtle neck on push down?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26870\",\n    \"key\": \"71312\",\n    \"description\": \"a person with a turtle neck on pushes their hat down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimxqenJnW1ti7q8uo1_400\",\n    \"question\": \"how many women with very long hair are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25670\",\n    \"key\": \"31621\",\n    \"description\": \"two women with very long hair are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_np3fv0Iucb1sxj25eo1_500\",\n    \"question\": \"how many men are laughing at each other while one leans over?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15111\",\n    \"key\": \"80507\",\n    \"description\": \"two men are laughing at each other while one leans over.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndx664QEL81scfb0oo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28764\",\n    \"key\": \"19964\",\n    \"description\": \"a girl is touching her green hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nptvh4iByf1uwr6ado1_400\",\n    \"question\": \"what is the woman doing?\",\n    \"answer\": \"workout\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28104\",\n    \"key\": \"66677\",\n    \"description\": \"a woman is doing a butt workout using a ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimn2utX5C1u1c8a5o1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32299\",\n    \"key\": \"58079\",\n    \"description\": \"a boy in christmas attire jumps down excitedly and another man in a gray sweater is distressed.\"\n  },\n  {\n    \"video_name\": \"tumblr_na35maMaeX1r17l27o2_500\",\n    \"question\": \"how many girls walk up to each other and embrace?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43269\",\n    \"key\": \"93211\",\n    \"description\": \"two girls walk up to each other and embrace.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak2srv7T21tj4h5io1_400\",\n    \"question\": \"how many teams is this image of playing a game of basketball?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42503\",\n    \"key\": \"49141\",\n    \"description\": \"this image is of two teams playing a game of basketball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlfhjtMhtz1r0nzaoo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20044\",\n    \"key\": \"19979\",\n    \"description\": \"a young man wearing a white shirt is saying something.\"\n  },\n  {\n    \"video_name\": \"tumblr_npf5kbV03n1u1ogm0o1_400\",\n    \"question\": \"what is the color of the boat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11434\",\n    \"key\": \"32114\",\n    \"description\": \"a white jeep boat crosses a lake quickly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqujydUdLF1uyk370o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35824\",\n    \"key\": \"7138\",\n    \"description\": \"the brown haired man is smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfd11g9m741tm2ntoo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11201\",\n    \"key\": \"67219\",\n    \"description\": \"a woman with red lipstick is wearing a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng7vinKaZ21sht3fmo1_500\",\n    \"question\": \"what is the color of the tie?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41786\",\n    \"key\": \"92531\",\n    \"description\": \"a man with a blue tie is looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5pmkrxPP1tm39w8o1_500\",\n    \"question\": \"what is the panda bear holding?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19099\",\n    \"key\": \"99498\",\n    \"description\": \"a panda bear is holding a baby panda bear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhh5j3uCN1tx8mn0o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26274\",\n    \"key\": \"52689\",\n    \"description\": \"a green race car is driving slow on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_npu3dmmwdW1srz1ujo1_250\",\n    \"question\": \"what is the woman in pink holding?\",\n    \"answer\": \"bat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40916\",\n    \"key\": \"12627\",\n    \"description\": \"a woman in pink is holding a baseball bat.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo67z0f8B1u1pokno1_400\",\n    \"question\": \"what is the girl in a bed jumping and doing in the air and falling?\",\n    \"answer\": \"rounds\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35558\",\n    \"key\": \"34164\",\n    \"description\": \"a girl is in a bed jumping and doing rounds in the air and falling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfao6d193m1siv5bao1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6894\",\n    \"key\": \"49396\",\n    \"description\": \"a man in an orange blazer and a man in a white shirt are talking into microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_npr040dxJ71ri4vooo1_500\",\n    \"question\": \"how many people are hugging and jumping up and down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12890\",\n    \"key\": \"93627\",\n    \"description\": \"two people are hugging and jumping up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk91vx1EMO1su33lco1_400\",\n    \"question\": \"what is the guy sitting with other men and playing?\",\n    \"answer\": \"instrument\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25548\",\n    \"key\": \"63155\",\n    \"description\": \"a guy is sitting with other men and playing an instrument.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94c9kD6eu1s0wfo1o1_250\",\n    \"question\": \"what is the man in the black shirt adjusting?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20310\",\n    \"key\": \"40368\",\n    \"description\": \"the man in the black shirt is adjusting his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rm225ieV1tdmffyo1_250\",\n    \"question\": \"what does the girl kick off her foot towards another lady who dodges it?\",\n    \"answer\": \"mug\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33248\",\n    \"key\": \"19751\",\n    \"description\": \"a girl kicks a coffee mug off her foot towards another lady who dodges it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8oxuZ1tJ1tsbbfxo1_400\",\n    \"question\": \"what is the young woman taking off and shaking out her hair?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8424\",\n    \"key\": \"72549\",\n    \"description\": \"a young woman is taking off a cap and shaking out her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_njs8xrhgZK1rqb3bqo1_500\",\n    \"question\": \"where are the group of soccer players sitting.\",\n    \"answer\": \"? bench\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29288\",\n    \"key\": \"88682\",\n    \"description\": \"a group of soccer players are sitting in a bench.\"\n  },\n  {\n    \"video_name\": \"tumblr_n980h4IWmV1tht4eto1_250\",\n    \"question\": \"where is the man in a suit dancing.\",\n    \"answer\": \"? hospital\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8295\",\n    \"key\": \"40248\",\n    \"description\": \"a man in a suit is dancing in a hospital.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjn90GHJr1tml5fdo1_540\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7617\",\n    \"key\": \"87921\",\n    \"description\": \"a man in white is turning his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdlzlPd9o1sj2opgo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31885\",\n    \"key\": \"14294\",\n    \"description\": \"the man with the black jacket and black hat is screaming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflejfi8IS1qm5dtfo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7320\",\n    \"key\": \"66409\",\n    \"description\": \"a woman with black hair wearing black is staring ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzlhp8DpG1tgouwlo1_500\",\n    \"question\": \"how many red panda cubs are playing with baby toys?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7816\",\n    \"key\": \"38497\",\n    \"description\": \"two red panda cubs are playing with baby toys.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyb2pcEGb1tlmquvo1_400\",\n    \"question\": \"what is trying to get the ball off of a couch?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17659\",\n    \"key\": \"83456\",\n    \"description\": \"a dog is trying to get a ball off of a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnv4go7V7n1tscz4ro1_400\",\n    \"question\": \"where was the hockey team celebrating.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22659\",\n    \"key\": \"73292\",\n    \"description\": \"a hockey team was celebrating in the locker room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqw1d49uwo1tb2ztwo1_250\",\n    \"question\": \"how many women put their glasses of drink together before drinking them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44759\",\n    \"key\": \"80693\",\n    \"description\": \"two women put their glasses of drink together before drinking them.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqlv0wUeb1rjhjgno1_250\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50259\",\n    \"key\": \"21274\",\n    \"description\": \"the woman in the red outfit is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njob4hlJui1swixd9o1_500\",\n    \"question\": \"where is the man taking a bow.\",\n    \"answer\": \"? stadium\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1485\",\n    \"key\": \"89188\",\n    \"description\": \"a man is taking a bow in a stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4xrfzxOe1r164i9o1_500\",\n    \"question\": \"where is the girl rolling down the carpeted aisle.\",\n    \"answer\": \"? theater\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31664\",\n    \"key\": \"60445\",\n    \"description\": \"a girl is rolling down the carpeted aisle in a theater.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vebwp6YB1sm9f7mo1_r2_400\",\n    \"question\": \"what is sitting in the steel vessel?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7613\",\n    \"key\": \"64664\",\n    \"description\": \"a dog is sitting in a steel vessel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhys5kaxEu1u7u0ceo1_500\",\n    \"question\": \"what walks through the portal then a woman turns to a family on a couch?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2901\",\n    \"key\": \"95988\",\n    \"description\": \"a bear walks through a portal then a woman turns to a family on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvd8odLEF1tqgjq4o1_400\",\n    \"question\": \"how many people are dancing in a club one of them is in an animal suit?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49532\",\n    \"key\": \"56466\",\n    \"description\": \"two people are dancing in a club one of them is in an animal suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjnj8Qryj1r9w93fo1_500\",\n    \"question\": \"how many woman are sticking their tongues out?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31054\",\n    \"key\": \"28474\",\n    \"description\": \"two woman are sticking their tongues out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxr47G0SY1u3cb3fo2_400\",\n    \"question\": \"what is the girl playing surrounded by fire?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47463\",\n    \"key\": \"61185\",\n    \"description\": \"a girl is playing guitar surrounded by fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqevkyJx61rlzi76o1_400\",\n    \"question\": \"how many girls perform on stage in matching dresses?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14513\",\n    \"key\": \"62267\",\n    \"description\": \"five girls perform on stage in matching dresses.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtrbqjPLb1unyhx2o1_400\",\n    \"question\": \"what is crashing into another car and spinning out on a race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12729\",\n    \"key\": \"78277\",\n    \"description\": \"a car is crashing into another car and spinning out on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefradf58s1tu3ue8o1_500\",\n    \"question\": \"what does the young man adjust while looking in the mirror?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3140\",\n    \"key\": \"4218\",\n    \"description\": \"a young man adjusts his black leather jacket while looking in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wwvpBAKf1r7vovuo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35284\",\n    \"key\": \"92170\",\n    \"description\": \"a lady wearing a short white dress lies on the back of a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uscu0MKn1tdve1no1_r1_500\",\n    \"question\": \"how many people are stood talking to someone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33161\",\n    \"key\": \"68564\",\n    \"description\": \"two people are stood talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbe2gdERbf1tulpruo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52982\",\n    \"key\": \"40249\",\n    \"description\": \"a white girl with brown hair is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklmwmP2fN1r26jdlo1_400\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31517\",\n    \"key\": \"69501\",\n    \"description\": \"a guy is fixing his collar while on a red carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkevr8kpEw1u8uroco1_400\",\n    \"question\": \"where does snow fall off a white car.\",\n    \"answer\": \"? piece\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA2842\",\n    \"key\": \"73345\",\n    \"description\": \"snow falls off a white car in one piece.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni06cdG8Wk1u639x2o1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6579\",\n    \"key\": \"71675\",\n    \"description\": \"a red sports car drives down a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd91urmt3f1tmecz1o1_400\",\n    \"question\": \"what is the woman holding in her hands out by the beach?\",\n    \"answer\": \"sparklers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32592\",\n    \"key\": \"63566\",\n    \"description\": \"a woman is holding two fire sparklers in her hands out by the beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwp7qr9i91s119npo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43766\",\n    \"key\": \"93705\",\n    \"description\": \"a black man is dancing wildly in front of four chairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd99ocFDAo1tigub5o1_1280\",\n    \"question\": \"what is running at the forest?\",\n    \"answer\": \"waterfall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39307\",\n    \"key\": \"93743\",\n    \"description\": \"a waterfall is running at a forest.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagmqkc3IH1t24hnto1_400\",\n    \"question\": \"how many men are sitting down and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18090\",\n    \"key\": \"77196\",\n    \"description\": \"two men are sitting down and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4ymtPhaY1u2xw7qo1_500\",\n    \"question\": \"how many guys ride in the back of a car together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16485\",\n    \"key\": \"66662\",\n    \"description\": \"two guys ride in the back of a car together.\"\n  },\n  {\n    \"video_name\": \"tumblr_naosc4D5wx1tf1g00o1_250\",\n    \"question\": \"what is the color of the one?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21466\",\n    \"key\": \"20217\",\n    \"description\": \"two boys are dressed in black the front one is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8l2jyH5C1tldu19o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2618\",\n    \"key\": \"24419\",\n    \"description\": \"a man dressed in black is posing by looking up and holding his arm up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebsgpCK4u1u1j0hao1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40668\",\n    \"key\": \"42507\",\n    \"description\": \"a man with a beard wearing a blue shirt turns around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkybgr8MIr1tmnntwo1_250\",\n    \"question\": \"how many girls are playing with the bottle?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5625\",\n    \"key\": \"35718\",\n    \"description\": \"two girls are playing with a bottle and it spills.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9c03vG9GB1tyeuq0o1_250\",\n    \"question\": \"how many cats are playing in front of their owner?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31496\",\n    \"key\": \"27241\",\n    \"description\": \"three cats are playing in front of their owner.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sj5cqJdi1sycli7o1_500\",\n    \"question\": \"how many women wrestlers are walking down a hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29238\",\n    \"key\": \"75249\",\n    \"description\": \"two women wrestlers are walking down a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxi6gXNzW1uphofro1_250\",\n    \"question\": \"what is the boy wearing another boy on his cheeks?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9516\",\n    \"key\": \"23054\",\n    \"description\": \"a boy is wearing black shirt kisses another boy on his cheeks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfeetqIQkZ1so9ango1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10062\",\n    \"key\": \"35037\",\n    \"description\": \"a black man wiggled a hot dog at children.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxt71hFPt1t7io47o1_250\",\n    \"question\": \"what is the cat dipping into a glass of milk?\",\n    \"answer\": \"paw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40057\",\n    \"key\": \"23002\",\n    \"description\": \"a cat is dipping their paw into a glass of milk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblw0sbvEm1s4zvpgo1_400\",\n    \"question\": \"what is nibbling on the snack?\",\n    \"answer\": \"rodent\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15848\",\n    \"key\": \"71849\",\n    \"description\": \"a small rodent is nibbling on a snack.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0tugw9s31twi5blo1_400\",\n    \"question\": \"what is the color of the smiles?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43128\",\n    \"key\": \"56414\",\n    \"description\": \"a black woman smiles then turns around and walks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_no5jxo9MsG1r6m8dmo1_500\",\n    \"question\": \"where is the young boy looking and crying.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39389\",\n    \"key\": \"79406\",\n    \"description\": \"a young boy is looking in a mirror and crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcvis8jts1tbcrm5o1_250\",\n    \"question\": \"what is the bunny eating on the floor?\",\n    \"answer\": \"lettuce\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA315\",\n    \"key\": \"3820\",\n    \"description\": \"a bunny is eating lettuce on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1pnbrSwq1t6ksnpo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38548\",\n    \"key\": \"82573\",\n    \"description\": \"a man with dark hair and a white short turns and speaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtrbqjPLb1unyhx2o1_400\",\n    \"question\": \"what crashed into another car and runs off the track?\",\n    \"answer\": \"crashes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27525\",\n    \"key\": \"78277\",\n    \"description\": \"a race car crashes crashed into another car and runs off the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmhiM9bh1u0sihjo1_250\",\n    \"question\": \"where are three men goofing around.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45180\",\n    \"key\": \"5720\",\n    \"description\": \"three men are goofing around in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nco0vdTzvA1t7lab9o1_400\",\n    \"question\": \"what is the color of the laughing?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1892\",\n    \"key\": \"32678\",\n    \"description\": \"this image is of a girl in a red shirt laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbin1ebpcV1r08vafo1_400\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9071\",\n    \"key\": \"30571\",\n    \"description\": \"a boy and girl in black shirts are hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklfy9dNIS1u8e12yo2_400\",\n    \"question\": \"how many young men are thinking together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37760\",\n    \"key\": \"86577\",\n    \"description\": \"the two young men are thinking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vebwp6YB1sm9f7mo1_r2_400\",\n    \"question\": \"what managed to sit in the small bowl of water?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34627\",\n    \"key\": \"64664\",\n    \"description\": \"a puppy managed to sit in a small bowl of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1dbdIdcS1uo49wlo1_400\",\n    \"question\": \"what is falling asleep on the book?\",\n    \"answer\": \"duck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8589\",\n    \"key\": \"90702\",\n    \"description\": \"a baby duck is falling asleep on a book.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngi2t0tDEr1rx9shjo1_400\",\n    \"question\": \"what is shining from this view of a highway?\",\n    \"answer\": \"sun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45440\",\n    \"key\": \"56919\",\n    \"description\": \"the sun is shining from this view of a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbkqr0O34Z1twkd2qo1_250\",\n    \"question\": \"what is the woman dangling?\",\n    \"answer\": \"singing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13042\",\n    \"key\": \"44066\",\n    \"description\": \"a woman is dangling a puppet while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_necxhxfHhH1tl414ro1_400\",\n    \"question\": \"what is the color of the hood?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38334\",\n    \"key\": \"15863\",\n    \"description\": \"a girl wears a white hood and a fake head dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhchptHDxG1slj978o1_250\",\n    \"question\": \"how many cats are running towards three food dishes?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1679\",\n    \"key\": \"3857\",\n    \"description\": \"three cats are running towards three food dishes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyz55Zgxg1tx8mn0o1_400\",\n    \"question\": \"what is driving along the dusty track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA198\",\n    \"key\": \"78412\",\n    \"description\": \"a modified car is driving along a dusty track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsaytJHd31sree6ao1_400\",\n    \"question\": \"what does the blue-eyed man close?\",\n    \"answer\": \"computer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5654\",\n    \"key\": \"51093\",\n    \"description\": \"a blue-eyed man closes his computer when he sees a man singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e0koRNI51r390ico1_250\",\n    \"question\": \"what is laying on its back and wants to get petted?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16258\",\n    \"key\": \"17008\",\n    \"description\": \"a cat is laying on its back and wants to get petted.\"\n  },\n  {\n    \"video_name\": \"tumblr_naz252SYcX1rhmx5uo1_r1_400\",\n    \"question\": \"what is the color of the couch?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13375\",\n    \"key\": \"34056\",\n    \"description\": \"two people are sitting on a red couch while one person kicks their legs in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9s6vkP6F1qeb231o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32191\",\n    \"key\": \"77766\",\n    \"description\": \"a lady in a blue shirt is speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uzodf3Kx1srbyoyo1_400\",\n    \"question\": \"how many wrestler runs toward and attacks the second wrestler?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37171\",\n    \"key\": \"77918\",\n    \"description\": \"one wrestler runs toward and attacks a second wrestler.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2mhm38YD1qlsp57o1_400\",\n    \"question\": \"what is the color of the wheel?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15313\",\n    \"key\": \"2508\",\n    \"description\": \"a black wheel of a car is rolling around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwkmh8JaB1rss4j4o1_250\",\n    \"question\": \"what is the man with long hair eating?\",\n    \"answer\": \"popsicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45775\",\n    \"key\": \"19060\",\n    \"description\": \"a man with long hair is eating a red popsicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzioHl7F1u25ovvo1_400\",\n    \"question\": \"what is rolling on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1308\",\n    \"key\": \"63575\",\n    \"description\": \"a beautiful white car is rolling on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyfaouv1s1tplwgro1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47881\",\n    \"key\": \"60868\",\n    \"description\": \"a man in a gray top is talking while stood in front of a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4iytkj9W1tjjejho1_250\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32016\",\n    \"key\": \"39706\",\n    \"description\": \"a blue eyed boy leans forward while talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9igzcnoug1r0p6epo1_400\",\n    \"question\": \"what is the young woman hugging and kissing?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43082\",\n    \"key\": \"29518\",\n    \"description\": \"a young woman is hugging and kissing a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne00ewlpW41tdjuqvo1_400\",\n    \"question\": \"what is the man pressing two girls by him self?\",\n    \"answer\": \"bench\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39312\",\n    \"key\": \"13329\",\n    \"description\": \"a man is bench pressing two girls by him self.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklnyqrf7o1u1v0pco1_400\",\n    \"question\": \"what is standing on its hind legs?\",\n    \"answer\": \"rodent\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31984\",\n    \"key\": \"52456\",\n    \"description\": \"a rodent is standing on its hind legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmy7jJZ8a1tm4ov9o1_500\",\n    \"question\": \"what does the man with tattoos remove?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52134\",\n    \"key\": \"97829\",\n    \"description\": \"a man with tattoos removes his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9el1cf3Qh1sk144yo1_250\",\n    \"question\": \"what is the color of the lips?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1065\",\n    \"key\": \"6753\",\n    \"description\": \"a girl with bright red lips is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgc2nFurH1urmhquo1_540\",\n    \"question\": \"how many girls are looking at each other and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43876\",\n    \"key\": \"93650\",\n    \"description\": \"two girls are looking at each other and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx12yL0PW1r6pekco1_250\",\n    \"question\": \"how many men are embracing on stage in front of a crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35342\",\n    \"key\": \"19311\",\n    \"description\": \"two men are embracing on stage in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrg3fVzAP1rms80do1_400\",\n    \"question\": \"what is staring as it lies backward?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA760\",\n    \"key\": \"7400\",\n    \"description\": \"the cat is staring as it lies backward.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc106iim91rgb5tho1_250\",\n    \"question\": \"what is the color of the tie?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5684\",\n    \"key\": \"3308\",\n    \"description\": \"a man dressed in a gray suit and yellow tie,\"\n  },\n  {\n    \"video_name\": \"tumblr_nirdu9dR9r1u4aqzmo1_400\",\n    \"question\": \"what rolls over on the ground?\",\n    \"answer\": \"kangaroo\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28642\",\n    \"key\": \"26252\",\n    \"description\": \"the kangaroo rolls over on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba91bUWgD1qiuxgpo1_400\",\n    \"question\": \"what is the girl wearing glasses kisses and it licks its lips?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20493\",\n    \"key\": \"30370\",\n    \"description\": \"a girl wearing glasses kisses her dog and it licks its lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrbcaupBvH1tfnm8co1_400\",\n    \"question\": \"what then falls off a window sill?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11051\",\n    \"key\": \"10153\",\n    \"description\": \"a cat is rolling on its back then falls off a window sill.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd7flcAAEj1thr6umo1_400\",\n    \"question\": \"how many guys is this image of sitting down looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11940\",\n    \"key\": \"47926\",\n    \"description\": \"this image is of two guys sitting down looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndq73y7mT21u1hp4lo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37396\",\n    \"key\": \"97252\",\n    \"description\": \"a white man with black hair is making up.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r0jnVOmO1qfhxh5o1_400\",\n    \"question\": \"how many boys are moving and dancing in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21676\",\n    \"key\": \"65939\",\n    \"description\": \"two boys are moving and dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nihwdfvxb61sx3lhyo1_400\",\n    \"question\": \"how many young women are dancing and having fun?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44671\",\n    \"key\": \"98740\",\n    \"description\": \"two young women are dancing and having fun.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rkzr1aNz1rsqw97o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50526\",\n    \"key\": \"6651\",\n    \"description\": \"a woman with long brown hair was singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nglb9d1D1O1tbjx0uo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48936\",\n    \"key\": \"54730\",\n    \"description\": \"a beautiful lady with long black hair is turning around with a big smile on her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk707d1SiT1rha6j7o1_500\",\n    \"question\": \"where are the bunch of kids practicing dance moves.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11656\",\n    \"key\": \"95756\",\n    \"description\": \"a bunch of kids are practicing dance moves in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmio5gcZb1u4uwvmo1_400\",\n    \"question\": \"how many people with hats on are sitting by each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32169\",\n    \"key\": \"57274\",\n    \"description\": \"two people with hats on are sitting by each other and the guy is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nel0tcd6HR1tvclvso1_400\",\n    \"question\": \"how many men are sitting down holding watermelons?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31895\",\n    \"key\": \"27055\",\n    \"description\": \"five men are sitting down holding watermelons.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92y7xvWoz1t62xtyo1_500\",\n    \"question\": \"what is the turtle pushing with its head?\",\n    \"answer\": \"tomato\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15219\",\n    \"key\": \"34488\",\n    \"description\": \"a turtle is pushing a tomato with its head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx4zeo6jf1skxa1uo1_250\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8264\",\n    \"key\": \"42730\",\n    \"description\": \"a woman with blue eyes wears a hat and looks cute.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnsq7ptmZ1sk96t7o1_250\",\n    \"question\": \"what is the man putting in his vest and strapping for battle?\",\n    \"answer\": \"guns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9033\",\n    \"key\": \"39113\",\n    \"description\": \"a man is putting in his vest and strapping his guns for battle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncd6eyR4Ya1ryaiojo1_400\",\n    \"question\": \"how many people are running towards each other and bounce back?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38396\",\n    \"key\": \"69338\",\n    \"description\": \"two people are running towards each other and bounce back.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncf2h4FpH61tlstgdo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35920\",\n    \"key\": \"87872\",\n    \"description\": \"the woman in the blue dress is falling down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlbtylYD61t4k3lzo1_250\",\n    \"question\": \"what is chasing the motorcycle down the highway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10097\",\n    \"key\": \"93530\",\n    \"description\": \"a car is chasing a motorcycle down the highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_no0w1gQdxo1qk66rqo1_500\",\n    \"question\": \"what is the color of the bends?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14432\",\n    \"key\": \"90116\",\n    \"description\": \"a man dressed in black bends over and sticks out his bottom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl25w2m2ln1qilpy6o1_400\",\n    \"question\": \"what is the color of the lights?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41986\",\n    \"key\": \"40149\",\n    \"description\": \"a man in a suit is walking and chewing gum in a room with red lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_naw2njzOfu1qj7i8oo1_500\",\n    \"question\": \"how many men are battered and bruised looking up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23570\",\n    \"key\": \"100013\",\n    \"description\": \"two men are battered and bruised looking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0pkreKb81tjr3nro1_400\",\n    \"question\": \"what is the band playing and shouting into a microphone?\",\n    \"answer\": \"instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13589\",\n    \"key\": \"59431\",\n    \"description\": \"a band is playing instruments and shouting into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfm255tiGL1tgvhzeo1_500\",\n    \"question\": \"how many boys is playing table tennis shake hands and then one pushes over the umpire?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49735\",\n    \"key\": \"100755\",\n    \"description\": \"two boys playing table tennis shake hands and then one pushes over the umpire.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jeioN38z1r26tq5o1_250\",\n    \"question\": \"how many caped people does there 's playing guitars moving on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30416\",\n    \"key\": \"5815\",\n    \"description\": \"there 's two caped people playing guitars moving on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1eah7Rjw1slwrsuo1_500\",\n    \"question\": \"what is trying to land on the run way?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20601\",\n    \"key\": \"86728\",\n    \"description\": \"a plane is trying to land on a run way.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknw3pqtos1rzywd8o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36152\",\n    \"key\": \"44019\",\n    \"description\": \"a woman in a white shirt smiles and turns her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pwmrX2ZE1tfhnexo1_400\",\n    \"question\": \"what is the man with white shoes twirling?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51725\",\n    \"key\": \"93372\",\n    \"description\": \"a man with white shoes is twirling a soccer ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblqr9rLQQ1ssgyoro1_400\",\n    \"question\": \"what does the man show off?\",\n    \"answer\": \"cheeseburger\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40626\",\n    \"key\": \"73875\",\n    \"description\": \"a man shows off his bacon cheeseburger.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncw0wcn5Ew1tijnqno1_500\",\n    \"question\": \"what is the color of the sheet?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7645\",\n    \"key\": \"59414\",\n    \"description\": \"a muscular man in pale blue shorts does pull ups in front of a white sheet.\"\n  },\n  {\n    \"video_name\": \"tumblr_no73v10L191uuefq3o1_250\",\n    \"question\": \"what is stuck inside the plastic box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44687\",\n    \"key\": \"11614\",\n    \"description\": \"a cat is stuck inside a plastic box.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93korFZlm1sx5lxbo1_500\",\n    \"question\": \"how many people practice throwing punches at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39485\",\n    \"key\": \"95918\",\n    \"description\": \"two people practice throwing punches at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxyiivlNC1t06byno1_400\",\n    \"question\": \"what is driving forward then slams on the breaks?\",\n    \"answer\": \"tank\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA340\",\n    \"key\": \"28984\",\n    \"description\": \"the army tank is driving forward then slams on the breaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng3bhm9zzP1u15fgvo1_400\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9902\",\n    \"key\": \"73598\",\n    \"description\": \"a group of people are posing together on a red carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ffgnCzzc1rqp9xfo1_500\",\n    \"question\": \"what is the color of the tie?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8751\",\n    \"key\": \"90840\",\n    \"description\": \"a man in a white jacket and black bow tie is making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_npozmb4kvw1uy2r7ro1_400\",\n    \"question\": \"what is the person giving a cat?\",\n    \"answer\": \"strawberry\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA735\",\n    \"key\": \"37250\",\n    \"description\": \"a person is giving a cat a strawberry.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtjn9aMbk1qbvprao1_500\",\n    \"question\": \"where is the woman singing and a man is driving a car,\",\n    \"answer\": \"and another one appears to be . ? garden\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3465\",\n    \"key\": \"60192\",\n    \"description\": \"a woman is singing and a man is driving a car,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pom6qgCR1tgl4z1o1_400\",\n    \"question\": \"what sit and move their heads back and forth?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8462\",\n    \"key\": \"75583\",\n    \"description\": \"two dogs sit and move their heads back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncpf2tLxkQ1twoe5do1_400\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3455\",\n    \"key\": \"53066\",\n    \"description\": \"this shows a group of trumpeters in white tee shirts putting up a performance.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ivaaMrtw1twcw4no1_400\",\n    \"question\": \"what is the young boy holding in front of his face?\",\n    \"answer\": \"flag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15531\",\n    \"key\": \"33348\",\n    \"description\": \"A young boy is holding a flag in front of his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes5f2Cdt31tmaii4o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11518\",\n    \"key\": \"99957\",\n    \"description\": \"a boy with black hair and wearing a black shirt is chewing something.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvkp9ghpO1sho2p1o1_250\",\n    \"question\": \"how many boy sings on stage and two others laugh at each other?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44063\",\n    \"key\": \"19950\",\n    \"description\": \"one boy sings on stage and two others laugh at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrandzeiC71qlcjs4o1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10597\",\n    \"key\": \"47917\",\n    \"description\": \"a man wearing a white basketball outfit makes a dunk shot and collides with another player.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacjth17GZ1sfnqh2o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36787\",\n    \"key\": \"13795\",\n    \"description\": \"A black man pushes a woman down on her knees and she head-butts him in the groin.\"\n  },\n  {\n    \"video_name\": \"tumblr_n5dtds5SMm1twu18ko1_500\",\n    \"question\": \"how many ghosts are swaying back and forth to the music?\",\n    \"answer\": \"eight\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43164\",\n    \"key\": \"44901\",\n    \"description\": \"eight ghosts are swaying back and forth to the music.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncityr4XKD1qblt8ro1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42432\",\n    \"key\": \"96285\",\n    \"description\": \"a singer with white hair stops singing as she cries.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqoyoaqM81smn077o1_500\",\n    \"question\": \"what does the blonde haired woman hold up to the audience?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46517\",\n    \"key\": \"85894\",\n    \"description\": \"a blonde haired woman holds a microphone up to the audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnpmeDREl1t7qum9o1_400\",\n    \"question\": \"how many men throw metal disks at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22558\",\n    \"key\": \"98622\",\n    \"description\": \"two men throw metal disks at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyam1X1MM1tmnntwo1_250\",\n    \"question\": \"what stands up against the door and pushes it closed?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7283\",\n    \"key\": \"37541\",\n    \"description\": \"a dark cat stands up against a door and pushes it closed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nex14mjdf71rjqi8yo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20068\",\n    \"key\": \"57626\",\n    \"description\": \"a man is taking off his blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrc4axMW2T1r92mkgo1_400\",\n    \"question\": \"what is doing circles on the floor?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4255\",\n    \"key\": \"62304\",\n    \"description\": \"a formula car is doing circles on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebrsyHwge1tky9gno1_400\",\n    \"question\": \"what is the boy wearing and making hand gestures?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7918\",\n    \"key\": \"31671\",\n    \"description\": \"a boy is wearing headphones and making hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklfp2TT031t0qj4zo1_400\",\n    \"question\": \"what passes buy the man as he dances and sings?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29704\",\n    \"key\": \"64942\",\n    \"description\": \"a car passes buy a man as he dances and sings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5cguWcqG1u7q0qeo1_400\",\n    \"question\": \"what is the man kicking into a goal?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38289\",\n    \"key\": \"40951\",\n    \"description\": \"a man is kicking a soccer ball into a goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz194PjME1rjh61io1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51270\",\n    \"key\": \"801\",\n    \"description\": \"a beautiful girl is playing with a white cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngdfhyjwif1r0kw6ko1_400\",\n    \"question\": \"where is the young girl waving hello.\",\n    \"answer\": \"? doorway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4380\",\n    \"key\": \"20091\",\n    \"description\": \"a young girl in a doorway is waving hello.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhp246FgbJ1tk1kc2o1_400\",\n    \"question\": \"how many men is this image of walking down a street?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38143\",\n    \"key\": \"37801\",\n    \"description\": \"this image is of three men walking down a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng642mdNwX1qezt9uo1_250\",\n    \"question\": \"what is pushing an ornament off a table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50374\",\n    \"key\": \"19353\",\n    \"description\": \"a cat is pushing an ornament off a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj7yqf2xEy1qh8obpo1_r1_400\",\n    \"question\": \"what does the shirtless young man with wet hair rub his hand?\",\n    \"answer\": \"wall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31633\",\n    \"key\": \"61467\",\n    \"description\": \"a shirtless young man with wet hair rubs his hand down a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahgllYsQa1te9jx5o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48996\",\n    \"key\": \"70111\",\n    \"description\": \"a girl in a yellow scarf is nodding her head while a guy in a red shirt appears from behind a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs5palRjX1ro5rv7o1_400\",\n    \"question\": \"how many men is wearing suits are standing back to back?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25252\",\n    \"key\": \"58317\",\n    \"description\": \"two men wearing suits are standing back to back.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9wfx9Vmk1qg7e36o1_500\",\n    \"question\": \"how many young girls are sitting down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11485\",\n    \"key\": \"55123\",\n    \"description\": \"the two young girls are sitting down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng7oar7Gev1u176ipo1_250\",\n    \"question\": \"how many fingers is the man holding up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41561\",\n    \"key\": \"5939\",\n    \"description\": \"a man is holding up two fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxsrhbTam1tf6qceo1_250\",\n    \"question\": \"what does the ballerina perform on a stage?\",\n    \"answer\": \"turns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39452\",\n    \"key\": \"37887\",\n    \"description\": \"a ballerina performs several turns on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nina5vfIdD1u95biro2_400\",\n    \"question\": \"what is the man watching?\",\n    \"answer\": \"wolf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50779\",\n    \"key\": \"60896\",\n    \"description\": \"a man is watching a big black wolf.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrak3nYu61r95fszo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1697\",\n    \"key\": \"11840\",\n    \"description\": \"a man in black holds a black cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_npy4c6ERuh1uv0y2ro1_250\",\n    \"question\": \"what does the cat watch being removed from a bowl?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3602\",\n    \"key\": \"13331\",\n    \"description\": \"a cat watches fish being removed from a bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuoksIv0d1ra6i3zo1_500\",\n    \"question\": \"how many people are looking ahead while holding the drink?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28404\",\n    \"key\": \"95617\",\n    \"description\": \"two people are looking ahead while holding a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne49poeZeL1tmjapgo1_500\",\n    \"question\": \"how many people slowly look at each other disappointed?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20616\",\n    \"key\": \"36788\",\n    \"description\": \"two people slowly look at each other disappointed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi656Csb11u3pgazo1_250\",\n    \"question\": \"what is the man adjusting with his hands?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42045\",\n    \"key\": \"7435\",\n    \"description\": \"a man is adjusting his shirt with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndop0fsg361th018eo1_1280\",\n    \"question\": \"what is the man holding and moving backwards?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9278\",\n    \"key\": \"98189\",\n    \"description\": \"a man is holding a guitar and moving backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowuhcCWo71s3fuxko1_400\",\n    \"question\": \"what walks in the grass outside?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46034\",\n    \"key\": \"71803\",\n    \"description\": \"a horse walks in the grass outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_np4o7rcN851tq8n90o1_400\",\n    \"question\": \"what is the man looking out?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1463\",\n    \"key\": \"38240\",\n    \"description\": \"a man is looking out a window as he smokes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhaaonJd0D1u6jgouo1_250\",\n    \"question\": \"how many people are standing in front of a car on a stage?\",\n    \"answer\": \"six\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20573\",\n    \"key\": \"50395\",\n    \"description\": \"six people are standing in front of a car on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklx070fBD1qan8eoo1_400\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32374\",\n    \"key\": \"83313\",\n    \"description\": \"a woman is wearing black glasses and moving her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_niu5dzNP7G1u62tooo1_400\",\n    \"question\": \"what chewed on something looked up and raised its ears?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23572\",\n    \"key\": \"31034\",\n    \"description\": \"a dog chewed on something looked up and raised its ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_np6d78GtyQ1tje07po1_500\",\n    \"question\": \"what is the young boy trying but face first in his back?\",\n    \"answer\": \"lands\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11425\",\n    \"key\": \"68616\",\n    \"description\": \"a young boy is trying to scare someone but lands face first in his back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjf6kQUhE1svos5ho1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31053\",\n    \"key\": \"86875\",\n    \"description\": \"a man in a black hat is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghj6gFDD91u5eovyo1_400\",\n    \"question\": \"how many girls does there 's dancing in front of pictures on a wall?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20181\",\n    \"key\": \"21368\",\n    \"description\": \"there 's two girls dancing in front of pictures on a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_npg165WqM91uxpfeho1_r1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52662\",\n    \"key\": \"65486\",\n    \"description\": \"a man in a red jacket makes faces and raises his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9zdtgglQ1stmsx9o1_500\",\n    \"question\": \"how many boys sit and smile?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14252\",\n    \"key\": \"101014\",\n    \"description\": \"two boys sit and smile,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfs3zdVBpy1u2uoslo1_250\",\n    \"question\": \"how many men is this that are opening doors?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41158\",\n    \"key\": \"16817\",\n    \"description\": \"this is two men that are opening doors.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdp4qxwvJ1uz1tgjo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14951\",\n    \"key\": \"51585\",\n    \"description\": \"a woman with black hair is worrying.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8j7afCAt1rn9s7oo1_250\",\n    \"question\": \"how many women is wearing spectacles are dancing in front of another woman?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18537\",\n    \"key\": \"59777\",\n    \"description\": \"two women wearing spectacles are dancing in front of another woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuhc5cUJn1rotc20o1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43045\",\n    \"key\": \"19595\",\n    \"description\": \"a short,\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1dalnS1E1tm0nkno1_500\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14974\",\n    \"key\": \"58413\",\n    \"description\": \"a band is performing in front of a white wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxq4ucmdv1tg5klqo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42252\",\n    \"key\": \"16910\",\n    \"description\": \"a woman with brown hair looks at a woman with blonde hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc7u35pYt1sdbrm9o1_400\",\n    \"question\": \"how many young men are stood on the stage talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43844\",\n    \"key\": \"65496\",\n    \"description\": \"two young men are stood on a stage talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9op5Q2rg1unyhx2o1_400\",\n    \"question\": \"what jumps the curb on a race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7828\",\n    \"key\": \"78234\",\n    \"description\": \"a race car jumps the curb on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndv1ycsv271s4jnano1_400\",\n    \"question\": \"what does the hand stick into liquid and colors spread?\",\n    \"answer\": \"toothpick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23850\",\n    \"key\": \"66056\",\n    \"description\": \"a hand sticks a toothpick into liquid and colors spread.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqf4c3MuhI1tyijzno1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25832\",\n    \"key\": \"74597\",\n    \"description\": \"a man plays with his brown hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkgiuZZhn1un86uao1_500\",\n    \"question\": \"what is the color of the layer?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51539\",\n    \"key\": \"94584\",\n    \"description\": \"a man puts a white layer over a tube and allows it to fill and grow with air.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngxfp5rbhJ1svp9edo1_1280\",\n    \"question\": \"where is the man flipping through papers.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14961\",\n    \"key\": \"84696\",\n    \"description\": \"a man in a chair is flipping through papers.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwwzp6mxJ1qltbjko1_400\",\n    \"question\": \"what is flying above the clouds in the sunlight?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52225\",\n    \"key\": \"77259\",\n    \"description\": \"a plane is flying above the clouds in the sunlight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5u2chPoA1rp5w0lo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1886\",\n    \"key\": \"82442\",\n    \"description\": \"a woman in a white car suddenly stops her car on a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyscvfO4c1sjzf6wo1_400\",\n    \"question\": \"what is the color of the lady?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48133\",\n    \"key\": \"28569\",\n    \"description\": \"the lady in white is walking down the runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfy4g6M611rmh5d4o1_500\",\n    \"question\": \"what is in hands and people gathered keeping a girl in chain?\",\n    \"answer\": \"money\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7925\",\n    \"key\": \"3447\",\n    \"description\": \"money is in hands and people gathered keeping a girl in chain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxty7IKdx1sircq6o1_400\",\n    \"question\": \"what does the man slowly serve while moving a nearly empty glass with the other hand?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47726\",\n    \"key\": \"4113\",\n    \"description\": \"a man slowly serves a drink while moving a nearly empty glass with the other hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_np4u4zNuv21rjxtuwo1_400\",\n    \"question\": \"what flaps its wings as someone draws?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36298\",\n    \"key\": \"35441\",\n    \"description\": \"a butterfly flaps its wings as someone draws.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat1jsDGBA1tdmr2yo1_500\",\n    \"question\": \"how many guys look down together in the dark room?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49853\",\n    \"key\": \"96611\",\n    \"description\": \"three guys look down together in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ug3oAT981rit0dno1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10753\",\n    \"key\": \"93869\",\n    \"description\": \"a woman with black hair is talking to another woman and someone is taking a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqseu4Hndq1uyi17so1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24154\",\n    \"key\": \"73991\",\n    \"description\": \"a young man with spiked green hair is smiling and drinking water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5jz5nZ6P1qjvd9io1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17718\",\n    \"key\": \"704\",\n    \"description\": \"a boy in a blue jacket is smiling and licking his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_mr11isrNGe1say5iqo1_500\",\n    \"question\": \"how many lovers have the fun?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36388\",\n    \"key\": \"63272\",\n    \"description\": \"two lovers have a fun and making some pictures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkmxjaSAq1u777vko1_500\",\n    \"question\": \"what is unfolding his wings and screeching?\",\n    \"answer\": \"bat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42706\",\n    \"key\": \"57894\",\n    \"description\": \"a bat is unfolding his wings and screeching.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhwxneQIVn1rb8uj5o1_400\",\n    \"question\": \"how many guys are doing the secret handshake?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22670\",\n    \"key\": \"65786\",\n    \"description\": \"two guys are doing a secret handshake.\"\n  },\n  {\n    \"video_name\": \"tumblr_n6xecn3WXZ1tw9x4ao1_500\",\n    \"question\": \"what branches are blowing on the beach?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15876\",\n    \"key\": \"69964\",\n    \"description\": \"a palm tree 's branches are blowing on the beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbv3veBCq21r1ze62o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36856\",\n    \"key\": \"96885\",\n    \"description\": \"a man with brown hair is smiling at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_namomnmjd51sjugf2o1_500\",\n    \"question\": \"how many men are sitting on the sofa and talking to each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10103\",\n    \"key\": \"73930\",\n    \"description\": \"three men are sitting on a sofa and talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirh7qn89K1u9pk5io1_250\",\n    \"question\": \"what is falling from the sky as two people walk by?\",\n    \"answer\": \"clothing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40250\",\n    \"key\": \"35792\",\n    \"description\": \"clothing is falling from the sky as two people walk by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqdgrxLFvZ1uspy7qo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42601\",\n    \"key\": \"83606\",\n    \"description\": \"a man offers a bag of snacks to a big black man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9pbjfB81W1twvnifo1_250\",\n    \"question\": \"how many guys is this acting silly in a booth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA210\",\n    \"key\": \"46887\",\n    \"description\": \"this is two guys acting silly in a booth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndl8pvG3At1sklh5yo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14890\",\n    \"key\": \"15227\",\n    \"description\": \"the man in a gray shirt threw the ball at the basket.\"\n  },\n  {\n    \"video_name\": \"tumblr_no8y3eBHDv1tlf6zgo1_250\",\n    \"question\": \"what is the young man explaining to another young man?\",\n    \"answer\": \"card\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22938\",\n    \"key\": \"50914\",\n    \"description\": \"a young man is explaining a card to another young man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngwe7aRwEW1u4lqc0o1_250\",\n    \"question\": \"what is playing with an ornament on a christmas tree?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9832\",\n    \"key\": \"38433\",\n    \"description\": \"a cat is playing with an ornament on a christmas tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94fi690GZ1twfcheo1_400\",\n    \"question\": \"how many beautiful man are playing the guitar on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38100\",\n    \"key\": \"60282\",\n    \"description\": \"two beautiful man are playing the guitar on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rz4aCB7g1teon97o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24886\",\n    \"key\": \"84340\",\n    \"description\": \"a girl in a blue dress smiles and makes hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn3mz20G61t7gzr5o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9402\",\n    \"key\": \"42184\",\n    \"description\": \"a girl with brown long hair is speaking and stretching her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmeplkwIog1ss8ekqo2_540\",\n    \"question\": \"where is the man being driven.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48539\",\n    \"key\": \"95474\",\n    \"description\": \"a man is being driven in the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9emuzqIhv1sk96t7o1_400\",\n    \"question\": \"what is the color of the mouse?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31557\",\n    \"key\": \"42486\",\n    \"description\": \"the snake is chasing the white mouse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nntolgMF0D1tyncywo1_250\",\n    \"question\": \"what lies in the box and looks very happy?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11685\",\n    \"key\": \"53460\",\n    \"description\": \"cat lies in the box and looks very happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni32scddOZ1u0ed70o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42300\",\n    \"key\": \"56559\",\n    \"description\": \"a white man with gray suit is lighting fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav9fkK9AI1ss8l8fo1_500\",\n    \"question\": \"how many guys are kissing with their eyes closed?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36588\",\n    \"key\": \"73150\",\n    \"description\": \"the two guys are kissing with their eyes closed.\"\n  },\n  {\n    \"video_name\": \"tumblr_njfubw35U31u8uroco1_400\",\n    \"question\": \"what follows the man who has the bucket?\",\n    \"answer\": \"seal\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29267\",\n    \"key\": \"74013\",\n    \"description\": \"the big seal follows the man who has the bucket.\"\n  },\n  {\n    \"video_name\": \"tumblr_npa0fdgqzm1tkvqk7o1_500\",\n    \"question\": \"where does the woman do side crunches.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21820\",\n    \"key\": \"72004\",\n    \"description\": \"a woman does side crunches in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_neccfuJowv1t5z2hyo1_400\",\n    \"question\": \"what is the guy laughing and closing?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7176\",\n    \"key\": \"33757\",\n    \"description\": \"a guy is laughing and closing a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbc69z0qM1sju7t3o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52039\",\n    \"key\": \"64576\",\n    \"description\": \"a man in black,\"\n  },\n  {\n    \"video_name\": \"tumblr_niremvFMRe1u2gwbho1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41831\",\n    \"key\": \"61098\",\n    \"description\": \"the man in the black shirt crumbles up a sheet of paper.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkemwuoZE91snw3iao1_250\",\n    \"question\": \"how many women in a gym holding hands and is walking away from man?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10490\",\n    \"key\": \"82980\",\n    \"description\": \"two women in a gym holding hands and is walking away from man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj45x0Ant1sn5krco1_500\",\n    \"question\": \"where is the guy buttoning a shirt.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13839\",\n    \"key\": \"76769\",\n    \"description\": \"a guy is buttoning a shirt in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqb38eH9vk1qe9a6no1_250\",\n    \"question\": \"what is the woman smoking and exhaling?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14862\",\n    \"key\": \"4725\",\n    \"description\": \"a woman is smoking a cigarette and exhaling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhskwbxgar1rseg36o1_250\",\n    \"question\": \"what does the dog jump,\",\n    \"answer\": \"and disappears ? bowl\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2008\",\n    \"key\": \"3286\",\n    \"description\": \"a dog jumps after its bowl flips over,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfb7sHq6r1tbg9d2o1_500\",\n    \"question\": \"what is alerted from the sleeping position?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24378\",\n    \"key\": \"97079\",\n    \"description\": \"a puppy is alerted from the sleeping position.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7ng2zh3f1thntp8o1_250\",\n    \"question\": \"what is the girl in a hat and a striped shirt taking?\",\n    \"answer\": \"bow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48673\",\n    \"key\": \"110\",\n    \"description\": \"a girl in a hat and a striped shirt is taking a bow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgsprzuX31snfcayo1_250\",\n    \"question\": \"what is the color of the heart?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35211\",\n    \"key\": \"6492\",\n    \"description\": \"a man with dark hair hold a red heart shaped pillow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xv6aqQ5A1qmgppeo1_250\",\n    \"question\": \"what is laying down and looking up at something?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12393\",\n    \"key\": \"38221\",\n    \"description\": \"a dog is laying down and looking up at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwjr5bvbM1tx8mn0o1_400\",\n    \"question\": \"what comes off the course and returns to the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49372\",\n    \"key\": \"78341\",\n    \"description\": \"a race car comes off the course and returns to the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqodpt5v6K1u6pfheo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45591\",\n    \"key\": \"40309\",\n    \"description\": \"man in a field with brown hair are smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_noq8ccdLyz1upk2b9o1_500\",\n    \"question\": \"how many people are walking one of them is walking backwards?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32683\",\n    \"key\": \"92604\",\n    \"description\": \"two people are walking one of them is walking backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvn12P7qN1tjjqb9o1_400\",\n    \"question\": \"how many people are sat singing whilst one plays a guitar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36462\",\n    \"key\": \"64348\",\n    \"description\": \"two people are sat singing whilst one plays a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsvr4N2KC1u4pnh1o1_500\",\n    \"question\": \"what is the man playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19282\",\n    \"key\": \"74688\",\n    \"description\": \"a man is playing the guitar while another person runs behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd2k27sveM1r3cqi5o1_250\",\n    \"question\": \"what is mildly entertained by the pumpkin head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52136\",\n    \"key\": \"1025\",\n    \"description\": \"a cat is mildly entertained by a pumpkin head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8k3m3Omi1tmemc1o1_250\",\n    \"question\": \"where is the woman sitting and sipping from a mug.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25600\",\n    \"key\": \"15943\",\n    \"description\": \"a woman is sitting in a white arm chair and sipping from a mug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwkmh8JaB1rss4j4o1_250\",\n    \"question\": \"what is the man with long hair licking?\",\n    \"answer\": \"popsicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8439\",\n    \"key\": \"19060\",\n    \"description\": \"a man with long hair is licking a red popsicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebq9afgmY1snrb8oo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20435\",\n    \"key\": \"33688\",\n    \"description\": \"a man with a black shirt is blowing off a cigarette smoke.,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr302wD1d1s3xft0o1_400\",\n    \"question\": \"what is the guy wearing a scarf and smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48266\",\n    \"key\": \"66391\",\n    \"description\": \"a guy is wearing a scarf and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1dd1CYBF1riflwso1_400\",\n    \"question\": \"how many men are putting on their coats and hiding in a corner?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21787\",\n    \"key\": \"31308\",\n    \"description\": \"two men are putting on their coats and hiding in a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0fwvSQfh1tlyyvzo1_400\",\n    \"question\": \"how many men are sitting together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18696\",\n    \"key\": \"25188\",\n    \"description\": \"two men are sitting together and the one in the hat is making funny faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdib2bbIb1s4zvpgo1_250\",\n    \"question\": \"what is playing with the ball on a string?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11423\",\n    \"key\": \"76388\",\n    \"description\": \"a cat is playing with a ball on a string.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbt4anaFfA1rdtddvo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34009\",\n    \"key\": \"6564\",\n    \"description\": \"a boy with brown hair and blonde tips puts his hands against his face and smiles into his palms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkm1jpxtCI1tux4fao1_400\",\n    \"question\": \"what is the guy sticking on his forehead?\",\n    \"answer\": \"cone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41623\",\n    \"key\": \"57091\",\n    \"description\": \"a guy is sticking an ice cream cone on his forehead.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpreqZ6fr1unq0gjo1_250\",\n    \"question\": \"what is the color of the truck?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7165\",\n    \"key\": \"46570\",\n    \"description\": \"a red truck goes over a small hill and does a nose dive.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng7nje14RG1s6zpepo1_400\",\n    \"question\": \"what does the man change to another man?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5953\",\n    \"key\": \"47878\",\n    \"description\": \"a man changes the gun to another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zlvzY5jO1sp3selo1_250\",\n    \"question\": \"where is the girl eagerly looking at something.\",\n    \"answer\": \"? lipstick\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24309\",\n    \"key\": \"46937\",\n    \"description\": \"a girl in red lipstick is eagerly looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92lo9JEvZ1tfz9ppo1_400\",\n    \"question\": \"what are running in the hallway?\",\n    \"answer\": \"puppies\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38271\",\n    \"key\": \"52245\",\n    \"description\": \"seven puppies are running in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ty6nCn2v1rmfmnvo1_500\",\n    \"question\": \"what is the color of the stuff?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47930\",\n    \"key\": \"95646\",\n    \"description\": \"a girl in pink throws a lot of white stuff in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1xf7AQoy1tjeqb9o1_250\",\n    \"question\": \"what is the color of the lady?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40936\",\n    \"key\": \"12328\",\n    \"description\": \"the lady dressed in black is drinking a glass of wine.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne7ge8jJs31s2z8wpo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51431\",\n    \"key\": \"79131\",\n    \"description\": \"someone wears khaki pants and a blue shirt stands as another person approaches them and interlocks their fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97g5uG3Q41r0020go1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38431\",\n    \"key\": \"72411\",\n    \"description\": \"a man in a black hat is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fol1Zr7d1ti7k0co1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41628\",\n    \"key\": \"7553\",\n    \"description\": \"a man with brown hair is wearing a pair of braces.\"\n  },\n  {\n    \"video_name\": \"tumblr_njabelknbz1qcedqco2_500\",\n    \"question\": \"how many men are singing into microphones in a studio?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39900\",\n    \"key\": \"93822\",\n    \"description\": \"two men are singing into microphones in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf6ns9a6tg1tjubn4o1_400\",\n    \"question\": \"what does the man throw towards a crowd?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17089\",\n    \"key\": \"24972\",\n    \"description\": \"a man throws his guitar towards a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9f5ecfGZ71remizro1_400\",\n    \"question\": \"how many male dances and falls to the ground?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25116\",\n    \"key\": \"21976\",\n    \"description\": \"one male dances and falls to the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3l4pzkwU1sht3fmo1_400\",\n    \"question\": \"what rubs the keyboard quickly and then covers his head?\",\n    \"answer\": \"baboon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39951\",\n    \"key\": \"57578\",\n    \"description\": \"a baboon rubs the keyboard quickly and then covers his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakevodx4L1s1txlxo1_400\",\n    \"question\": \"what is the girl holding,\",\n    \"answer\": \"and she is smiling ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17732\",\n    \"key\": \"32762\",\n    \"description\": \"a girl is holding her cat,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2ajl9DH41tkdgp6o1_250\",\n    \"question\": \"where is the boy with a white shirt looking frustrated.\",\n    \"answer\": \"? alleyway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA524\",\n    \"key\": \"23241\",\n    \"description\": \"a boy with a white shirt is looking frustrated in alleyway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2wphU00c1ts0qzho1_1280\",\n    \"question\": \"how many people rush towards each other and hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22107\",\n    \"key\": \"33406\",\n    \"description\": \"two people rush towards each other and hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v14rHt3R1riy1p3o1_400\",\n    \"question\": \"what is the man wearing a black shirt is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9763\",\n    \"key\": \"39342\",\n    \"description\": \"the man wearing a black shirt is playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3jy9gTPE1t5ojzdo1_250\",\n    \"question\": \"where is the girl blowing a kiss.\",\n    \"answer\": \"? lipstick\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9834\",\n    \"key\": \"46935\",\n    \"description\": \"a girl in pink lipstick is blowing a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwmiuolPN1tud7j4o1_500\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10814\",\n    \"key\": \"98837\",\n    \"description\": \"a woman is floating a black scarf into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsvr4N2KC1u4pnh1o1_500\",\n    \"question\": \"what is the young man smiling and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21542\",\n    \"key\": \"74688\",\n    \"description\": \"a young man is smiling and playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndw8ltL3iK1t7ux2so1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46748\",\n    \"key\": \"30807\",\n    \"description\": \"a woman with black hair wearing black is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqn263IcBj1uzrtz5o1_500\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2807\",\n    \"key\": \"6137\",\n    \"description\": \"a white man with black cap is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrkfjaJSg1qjshvjo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48754\",\n    \"key\": \"38124\",\n    \"description\": \"a girl in a black dress is pretending to be an animal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam5cbzh441ss9ufto1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45408\",\n    \"key\": \"624\",\n    \"description\": \"a man in a white shirt gets a bucket of water dumped on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7920hTqu1sfttdzo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19890\",\n    \"key\": \"78742\",\n    \"description\": \"a woman with brown hair begins to cry and puts her head down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr8qs2rHGr1u5g8bjo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12679\",\n    \"key\": \"1222\",\n    \"description\": \"a woman with long brown curly hair is speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq6fgo0RyG1tk2ngvo1_400\",\n    \"question\": \"what tries to jump to the window and fails?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35480\",\n    \"key\": \"71717\",\n    \"description\": \"a cat tries to jump to the window and fails.\"\n  },\n  {\n    \"video_name\": \"tumblr_naasuxlyZM1tjx960o1_500\",\n    \"question\": \"what is the man saying something and holding?\",\n    \"answer\": \"shield\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9388\",\n    \"key\": \"90016\",\n    \"description\": \"a man is saying something and holding a shield.\"\n  },\n  {\n    \"video_name\": \"tumblr_negrp50MCD1rmfypqo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18845\",\n    \"key\": \"97810\",\n    \"description\": \"two young men with brown hair are smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo4h5V7hD1uncsido1_400\",\n    \"question\": \"where is the person diving in the ocean.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8416\",\n    \"key\": \"69701\",\n    \"description\": \"a person in a wheel chair is diving in the ocean.\"\n  },\n  {\n    \"video_name\": \"tumblr_na44dr5Omn1tjpvwpo1_250\",\n    \"question\": \"how many men are staring at other men passing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34035\",\n    \"key\": \"47137\",\n    \"description\": \"two men are staring at other men passing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rkewhXrC1slprrpo1_500\",\n    \"question\": \"what is the color of the walls?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8464\",\n    \"key\": \"101229\",\n    \"description\": \"a man is break dancing in a room with white walls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojudwiLpl1qedx60o1_540\",\n    \"question\": \"what are the group of men wearing and one is talking?\",\n    \"answer\": \"tuxedos\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13504\",\n    \"key\": \"91615\",\n    \"description\": \"a group of men are wearing tuxedos and one is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s2wj3j9W1s0vm19o1_400\",\n    \"question\": \"how many people sat in the car talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13220\",\n    \"key\": \"54442\",\n    \"description\": \"two people sat in a car talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagmqkc3IH1t24hnto1_400\",\n    \"question\": \"how many men are laughing hard while sitting down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48333\",\n    \"key\": \"77196\",\n    \"description\": \"two men are laughing hard while sitting down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrgs5llZHj1rfolw9o1_400\",\n    \"question\": \"where is the man sitting,\",\n    \"answer\": \"talking , smiling and waving his hand . ? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41888\",\n    \"key\": \"7196\",\n    \"description\": \"A man is sitting in a director 's chair,\"\n  },\n  {\n    \"video_name\": \"tumblr_npwwjhQIqf1tx8mn0o1_400\",\n    \"question\": \"what is sliding around the turn?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34020\",\n    \"key\": \"78325\",\n    \"description\": \"a motorcycle is sliding around a turn.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4ezdlkcv1u2nvc4o1_500\",\n    \"question\": \"how many men is wearing coats and winter hats are hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13001\",\n    \"key\": \"62482\",\n    \"description\": \"two men wearing coats and winter hats are hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk52edbKl91ra78amo1_100\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25551\",\n    \"key\": \"12594\",\n    \"description\": \"a guy in a black tank top is leaning on something with his mouth open.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxvud6IgD1thktw9o1_250\",\n    \"question\": \"what is running on the pink rug?\",\n    \"answer\": \"cheetah\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43586\",\n    \"key\": \"533\",\n    \"description\": \"a baby cheetah is running on a pink rug.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5l4nwhbZ1rodqjco1_500\",\n    \"question\": \"how many men is this sitting on a stage and laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42094\",\n    \"key\": \"93324\",\n    \"description\": \"this is three men sitting on a stage and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nawqv9iVq81s0h1fio1_500\",\n    \"question\": \"where are the bunch of men posing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49638\",\n    \"key\": \"57652\",\n    \"description\": \"a bunch of men are posing in a storage room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqgvgtZfb1s35d3lo1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18355\",\n    \"key\": \"41805\",\n    \"description\": \"a white man and a white girl are winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd7dppyDSv1rk5ju2o1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40222\",\n    \"key\": \"52050\",\n    \"description\": \"a strange man wearing red clothes makes a strange gesture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0b2lDGef1tp9bieo1_500\",\n    \"question\": \"how many young girls are singing and rocking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26974\",\n    \"key\": \"20330\",\n    \"description\": \"two young girls are singing and rocking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfehfqRurV1r67on6o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23773\",\n    \"key\": \"10833\",\n    \"description\": \"the man with black hair is handing out a napkin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8bhbRmqr1s3att3o1_400\",\n    \"question\": \"what is the man blowing?\",\n    \"answer\": \"bubbles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5573\",\n    \"key\": \"28574\",\n    \"description\": \"a man is blowing smoke bubbles while another is catching them.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv9m5pOMl1slj978o1_400\",\n    \"question\": \"what is leaping and bouncing off walls?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19254\",\n    \"key\": \"37576\",\n    \"description\": \"a cat is leaping and bouncing off walls.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9n8owFIkV1se1vi6o1_250\",\n    \"question\": \"where are four people laughing and joking.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32824\",\n    \"key\": \"47029\",\n    \"description\": \"four people in a car are laughing and joking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmdfo7AD41u4txqeo1_250\",\n    \"question\": \"what does this show waiting by a window and then moving to the door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11010\",\n    \"key\": \"10556\",\n    \"description\": \"this shows a cat waiting by a window and then moving to the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpuisFRl11t2mzx0o1_400\",\n    \"question\": \"where are the pair of men sitting and goofing around.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43922\",\n    \"key\": \"82197\",\n    \"description\": \"a pair of men are sitting in a car and goofing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxr47G0SY1u3cb3fo2_400\",\n    \"question\": \"what did the girl play with a skeleton band and fire around her?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13970\",\n    \"key\": \"61185\",\n    \"description\": \"a girl played guitar with a skeleton band and fire around her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nccsgkmUmJ1qhdgseo1_250\",\n    \"question\": \"what is the color of the wool?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33851\",\n    \"key\": \"81324\",\n    \"description\": \"a hand is toying a piece of red knitting wool to make it alive.\"\n  },\n  {\n    \"video_name\": \"tumblr_naimwuna081tiwd2mo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2324\",\n    \"key\": \"14610\",\n    \"description\": \"a boy wearing white shirt is coming in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezh23Liet1tz6sv9o1_1280\",\n    \"question\": \"where is the young girl standing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7692\",\n    \"key\": \"91907\",\n    \"description\": \"a young girl is standing in her room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr78fdPO5w1slwrsuo1_400\",\n    \"question\": \"how many cats are in the room playing with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22108\",\n    \"key\": \"43420\",\n    \"description\": \"two cats are in a room playing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0hkt5rBF1utqnppo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25380\",\n    \"key\": \"8586\",\n    \"description\": \"a man with dark hair is wearing a yellow suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjdlk6CGv1tlw7exo1_250\",\n    \"question\": \"what is the color of the bowl?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15675\",\n    \"key\": \"68979\",\n    \"description\": \"a cat is drinking something from the red bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhp7tjym1V1u7wldxo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22877\",\n    \"key\": \"30314\",\n    \"description\": \"a guy in a large-collared blue shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2smr238Q1uxz2yto1_400\",\n    \"question\": \"what is the girl riding outside?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52736\",\n    \"key\": \"57188\",\n    \"description\": \"a girl is riding a colorful bicycle outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_netcx4DbEN1u25ovvo1_400\",\n    \"question\": \"what drove smoothly along the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30941\",\n    \"key\": \"63409\",\n    \"description\": \"a red car drove smoothly along the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tdb0xnR41th6pvpo1_400\",\n    \"question\": \"what is being driven on the dark road in the rain?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12690\",\n    \"key\": \"60298\",\n    \"description\": \"a car is being driven on a dark road in the rain.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgsprzuX31snfcayo1_250\",\n    \"question\": \"what is the man holding up?\",\n    \"answer\": \"pillow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28064\",\n    \"key\": \"6492\",\n    \"description\": \"a man is holding up a heart pillow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbi0cr9dUk1tjt4u9o1_400\",\n    \"question\": \"what is the young man at the steering wheel checking?\",\n    \"answer\": \"belt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22144\",\n    \"key\": \"78816\",\n    \"description\": \"a young man at the steering wheel is checking his seat belt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrf04cgRUC1ub19xmo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17799\",\n    \"key\": \"52346\",\n    \"description\": \"a gray cat is sitting on something that is dark blue.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz222VcuZ1ttuz3po1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28738\",\n    \"key\": \"1324\",\n    \"description\": \"a person wearing white platform heels and a white dress is in a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnmc06P9U1tjig0uo1_400\",\n    \"question\": \"what are soccer players playing on a field,\",\n    \"answer\": \"and one player kicks into the goal ? ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22091\",\n    \"key\": \"60509\",\n    \"description\": \"soccer players are playing on a field,\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7dbzg3AX1sg80mko1_400\",\n    \"question\": \"how many young men are sitting close together and eating the piece of pizza?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6444\",\n    \"key\": \"73798\",\n    \"description\": \"two young men are sitting close together and eating a piece of pizza.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1aorjpSL1tqzdmxo1_250\",\n    \"question\": \"where is the man with leather jacket dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29208\",\n    \"key\": \"39772\",\n    \"description\": \"a man with leather jacket is dancing in a rainy room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxru9zMoB1qkvy72o1_400\",\n    \"question\": \"what dressed up is riding on a vacuum cleaner?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50024\",\n    \"key\": \"58697\",\n    \"description\": \"a cat dressed up is riding on a vacuum cleaner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq6ze0bhp1sja7kao1_250\",\n    \"question\": \"what is the woman smiling and holding?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2026\",\n    \"key\": \"12929\",\n    \"description\": \"a woman is smiling and holding a teddy bear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nptdekVE6l1tfnm8co1_400\",\n    \"question\": \"what is trying to sit down topples over?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2945\",\n    \"key\": \"45462\",\n    \"description\": \"a baby elephant trying to sit down topples over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6ypurpto1sug4g8o1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50583\",\n    \"key\": \"97696\",\n    \"description\": \"a guy and a woman are riding a white horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzyt9eRNK1rblf33o1_500\",\n    \"question\": \"how many young men are sitting together while one of them is holding a triangular object?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27416\",\n    \"key\": \"86244\",\n    \"description\": \"two young men are sitting together while one of them is holding a triangular object.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e4inWZv51rk2gato1_400\",\n    \"question\": \"what is the woman putting on?\",\n    \"answer\": \"stocking\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35777\",\n    \"key\": \"43463\",\n    \"description\": \"a woman is putting her stocking on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbpn75kGf1u409xro1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26644\",\n    \"key\": \"53250\",\n    \"description\": \"a woman with brown hair is smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndu1fawTmi1rpucoso1_250\",\n    \"question\": \"how many people are dancing in front of a car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10350\",\n    \"key\": \"40882\",\n    \"description\": \"two people are dancing in front of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyi4zNrQM1s4yuteo1_500\",\n    \"question\": \"what is the person onto a wall?\",\n    \"answer\": \"letters\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25554\",\n    \"key\": \"86684\",\n    \"description\": \"a person is spray painting letters onto a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0odbifZp1tihaueo1_250\",\n    \"question\": \"how many mice are playing with their arms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11132\",\n    \"key\": \"18445\",\n    \"description\": \"two mice are playing with their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2my3p0WI1synx1zo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33586\",\n    \"key\": \"65541\",\n    \"description\": \"a young woman with black hair was moving her head/\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0ze7lNnv1r9slz6o1_400\",\n    \"question\": \"where is the man hugging a woman.\",\n    \"answer\": \"? hall\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37116\",\n    \"key\": \"57152\",\n    \"description\": \"a man is hugging a woman in the hall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2xc108CT1sh1v2uo1_500\",\n    \"question\": \"what is running into the ocean and immersing himself?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16490\",\n    \"key\": \"57385\",\n    \"description\": \"a dog is running into the ocean and immersing himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrandzeiC71qlcjs4o1_400\",\n    \"question\": \"where are two men playing basketball and one puts it.\",\n    \"answer\": \"? basket\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1312\",\n    \"key\": \"47917\",\n    \"description\": \"two men are playing basketball and one puts it in the basket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbngkoByJ11scotfso1_400\",\n    \"question\": \"where is the person smoking his motorcycle tire.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6332\",\n    \"key\": \"76454\",\n    \"description\": \"a person is smoking his motorcycle tire in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k8rtwwg11srx5iro1_400\",\n    \"question\": \"what is the girl tossing into her mouth?\",\n    \"answer\": \"pill\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39972\",\n    \"key\": \"32740\",\n    \"description\": \"a girl is tossing a pill into her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9535qdmnf1tyyv4yo1_400\",\n    \"question\": \"what is jumping and playing guitars?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52544\",\n    \"key\": \"57859\",\n    \"description\": \"a rock band is jumping and playing guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_noojj9QsI61urniueo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8351\",\n    \"key\": \"56954\",\n    \"description\": \"arnold is shooting a bazooka at a white car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3n9mlV2T1rktfsqo1_250\",\n    \"question\": \"what does the man hold and then a woman say something?\",\n    \"answer\": \"flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29662\",\n    \"key\": \"38469\",\n    \"description\": \"a man holds flowers and then a woman say something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkthvo0iK91qmoyvzo1_500\",\n    \"question\": \"how many people are standing outdoors looking at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15585\",\n    \"key\": \"34410\",\n    \"description\": \"two people are standing outdoors looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_np6q31hIzO1tplwjvo1_400\",\n    \"question\": \"what is the color of the tulle?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34474\",\n    \"key\": \"55495\",\n    \"description\": \"an animal is dressed up in blue tulle and has a large braid.\"\n  },\n  {\n    \"video_name\": \"tumblr_nchdxew8v61rgl329o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2182\",\n    \"key\": \"4919\",\n    \"description\": \"a girl with long brown hair puts her hair in her face and sticks out her tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtro0gBQR1tkpzw0o1_400\",\n    \"question\": \"what does the man throw on the sidewalk,\",\n    \"answer\": \"which trips another man who does a flip and lands on a recycle bin ? peel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51104\",\n    \"key\": \"19682\",\n    \"description\": \"a man throws a banana peel on the sidewalk,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfs1edxkV01u4xnwyo1_1280\",\n    \"question\": \"what is the color of the stuff?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35584\",\n    \"key\": \"65254\",\n    \"description\": \"a man looks around wearing black stuff and rotates rotated.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczndqMaKH1rr9oewo1_500\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38254\",\n    \"key\": \"71091\",\n    \"description\": \"a guy wearing black pants is holding a mic and dances.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrhyfL5yO1s0mjn5o1_400\",\n    \"question\": \"what did the guy with long hair play?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11724\",\n    \"key\": \"58868\",\n    \"description\": \"a guy with long hair played a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ynh2Hx361qfyx3mo1_400\",\n    \"question\": \"how many men are headbanging at the open door?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1450\",\n    \"key\": \"35241\",\n    \"description\": \"two men are headbanging at the open door.\"\n  },\n  {\n    \"video_name\": \"tumblr_njz44cKW5C1sba90go1_540\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23406\",\n    \"key\": \"90331\",\n    \"description\": \"a black man and white woman are singing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk707d1SiT1rha6j7o1_500\",\n    \"question\": \"where are some boys starting to dance.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27248\",\n    \"key\": \"95756\",\n    \"description\": \"some boys in a room are starting to dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8st3d7GLU1ru1g19o1_500\",\n    \"question\": \"what is the woman passenger in a car removing?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29076\",\n    \"key\": \"98940\",\n    \"description\": \"a woman passenger in a car is removing her sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqlayumGa1u0r2qfo1_500\",\n    \"question\": \"how many men are posing for the photo shoot?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA353\",\n    \"key\": \"88783\",\n    \"description\": \"five men are posing for a photo shoot.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngeiwy1VlF1t7gqeso1_500\",\n    \"question\": \"how many men are laughing at some food?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28467\",\n    \"key\": \"76492\",\n    \"description\": \"two men are laughing at some food.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7jcxJEXE1tvkuhho1_400\",\n    \"question\": \"where did the girl star straight ahead.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25771\",\n    \"key\": \"72305\",\n    \"description\": \"a girl in a pool stares straight ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvmweoKSc1tldu19o1_500\",\n    \"question\": \"what is the color of the leather?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2728\",\n    \"key\": \"83149\",\n    \"description\": \"a person wearing black leather is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkhilUtwi1rkmghzo1_250\",\n    \"question\": \"what is the man in the white shirt punching?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26562\",\n    \"key\": \"43958\",\n    \"description\": \"the man in the white shirt is punching a bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxiwtAC4Q1u7itf7o1_500\",\n    \"question\": \"where are five men trying to evade the police car.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31951\",\n    \"key\": \"96891\",\n    \"description\": \"five men in a car are trying to evade the police car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xv6aqQ5A1qmgppeo1_250\",\n    \"question\": \"what is briefly wagging its tail and looking at something?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51331\",\n    \"key\": \"38221\",\n    \"description\": \"a dog is briefly wagging its tail and looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbczbxoW5U1r1jb3so1_500\",\n    \"question\": \"how many girls are dancing and kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1808\",\n    \"key\": \"94902\",\n    \"description\": \"two girls are dancing and kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfzln4hPwu1u4lqc0o1_400\",\n    \"question\": \"what is the man in a red bandanna eating?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45324\",\n    \"key\": \"52384\",\n    \"description\": \"a man in a red bandanna is eating hot dogs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncc1ycDVbj1rijrceo1_500\",\n    \"question\": \"how many women start to kiss suggestively in the hospital?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50080\",\n    \"key\": \"88715\",\n    \"description\": \"2 women start to kiss suggestively in a hospital.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9his996cn1rcpzsoo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24335\",\n    \"key\": \"100479\",\n    \"description\": \"a person in a black cutoff shirt is sitting on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzw6wlLMO1tfjrdno1_400\",\n    \"question\": \"how many girls pull the hoods on their tops over their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40052\",\n    \"key\": \"29179\",\n    \"description\": \"two girls pull the hoods on their tops over their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav9fkK9AI1ss8l8fo1_500\",\n    \"question\": \"how many grown men is this kissing in public?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40854\",\n    \"key\": \"73150\",\n    \"description\": \"this is two grown men kissing in public.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vhckZvil1rd47n5o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45020\",\n    \"key\": \"71061\",\n    \"description\": \"a white man is winking his eye and opening his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nas5orConK1t1tts4o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20512\",\n    \"key\": \"29052\",\n    \"description\": \"a girl with long brown hair is pouting and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazoqqzPK61rcr3teo1_250\",\n    \"question\": \"what is the color of the taxi?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21911\",\n    \"key\": \"84564\",\n    \"description\": \"a yellow taxi is involved in a car crash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7fe5rnLn1rv18yuo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18113\",\n    \"key\": \"12402\",\n    \"description\": \"woman with black suit is talking and moving his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndtsd85pkv1sk0i2mo1_400\",\n    \"question\": \"how many girls are fighting in the ring and tumbling around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44566\",\n    \"key\": \"50800\",\n    \"description\": \"two girls are fighting in a ring and tumbling around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbht40Boo11sfb11po1_500\",\n    \"question\": \"what are the young man and woman having taken and the man gets mad?\",\n    \"answer\": \"pictures\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7600\",\n    \"key\": \"95730\",\n    \"description\": \"a young man and woman are having their pictures taken and the man gets mad.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sfgibcXy1qhawdao1_400\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40578\",\n    \"key\": \"57929\",\n    \"description\": \"a football team wearing red shirts score a goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsl1uhMol1ttjtjgo1_500\",\n    \"question\": \"how many men walk along the beach at sundown?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30444\",\n    \"key\": \"93544\",\n    \"description\": \"five men walk along a beach at sundown.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr2nkGFeG1rcreg3o1_250\",\n    \"question\": \"what is the man holding from a closet?\",\n    \"answer\": \"suitcase\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21033\",\n    \"key\": \"15719\",\n    \"description\": \"a man is holding a suitcase from a closet.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf1uaXSXE1ts0kzio1_400\",\n    \"question\": \"what is the dog petting head?\",\n    \"answer\": \"human\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3551\",\n    \"key\": \"41589\",\n    \"description\": \"the dog is petting his human 's head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9nxz6cyx11sjuzlno1_400\",\n    \"question\": \"what is the color of the bird?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3834\",\n    \"key\": \"36176\",\n    \"description\": \"a white bird kissed a green bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfglfqkprz1u37v6fo1_250\",\n    \"question\": \"how many man pats another on the shoulder?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA307\",\n    \"key\": \"93338\",\n    \"description\": \"one man pats another on the shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_njql28RkhO1tgvlsso1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18972\",\n    \"key\": \"68264\",\n    \"description\": \"black man hold up both his hands in front of blinking lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsrf7PNZs1qe2thio1_500\",\n    \"question\": \"what did the white hose run and jumped over?\",\n    \"answer\": \"fence\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7718\",\n    \"key\": \"98734\",\n    \"description\": \"a white hose ran and jumped over a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncy89sSxEH1t4eui2o1_500\",\n    \"question\": \"how many lions cuddle and lick one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47148\",\n    \"key\": \"84234\",\n    \"description\": \"two lions cuddle and lick one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncm3t6uN6S1qhzqk1o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8693\",\n    \"key\": \"77713\",\n    \"description\": \"a guy wearing a dark colored jacket and white shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5ddaL9zk1s28vxko1_400\",\n    \"question\": \"what shakes his head and tail while standing in front of a rope?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3546\",\n    \"key\": \"43219\",\n    \"description\": \"a dog shakes his head and tail while standing in front of a rope.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sskvyvQ71tco194o1_500\",\n    \"question\": \"how many boys are practicing the dance routine?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40628\",\n    \"key\": \"88611\",\n    \"description\": \"two boys are practicing a dance routine.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng850mh9Uy1slj978o1_400\",\n    \"question\": \"what moves his leg when a hand scratches him?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46540\",\n    \"key\": \"34151\",\n    \"description\": \"a white dog moves his leg when a hand scratches him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw2qphCJA1uuh2j1o1_500\",\n    \"question\": \"where is the white and awesome cars running.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46638\",\n    \"key\": \"67719\",\n    \"description\": \"a white and awesome cars is running in the wet street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngx8mtOFt51rdm91ko1_400\",\n    \"question\": \"what is the girl in a short dress carrying and swinging its body?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26771\",\n    \"key\": \"32691\",\n    \"description\": \"a girl in a short dress is carrying a cat and swinging its body.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7oaXb1D1sj1td7o1_250\",\n    \"question\": \"how many hind legs is golden color a cat moving?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21621\",\n    \"key\": \"19037\",\n    \"description\": \"golden color a cat is moving its two hind legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcentF2yy1unyhx2o1_400\",\n    \"question\": \"what is skidding around the corner on a race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16765\",\n    \"key\": \"76890\",\n    \"description\": \"car is skidding around a corner on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvkcm3JBJ1u3ruqqo1_500\",\n    \"question\": \"how many young men are looking at each other against a backdrop of a blue sky?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30480\",\n    \"key\": \"72438\",\n    \"description\": \"three young men are looking at each other against a backdrop of a blue sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr28vfwkXm1uxebowo1_400\",\n    \"question\": \"where is the person washing a monkeys foot.\",\n    \"answer\": \"? sink\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32253\",\n    \"key\": \"1743\",\n    \"description\": \"a person is washing a monkeys foot in a sink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nra8jaNWXd1ti2yzto1_1280\",\n    \"question\": \"how many cats are messing with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1585\",\n    \"key\": \"17735\",\n    \"description\": \"two cats are messing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na41taiBVK1shahvmo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46136\",\n    \"key\": \"53180\",\n    \"description\": \"a man wearing a black hat tilts his head and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_np8ku9CRtg1rtl9udo1_400\",\n    \"question\": \"how many young girls are making hand and facial gestures?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49237\",\n    \"key\": \"79118\",\n    \"description\": \"two young girls are making hand and facial gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmwl1qv0i1upp2a7o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28251\",\n    \"key\": \"27221\",\n    \"description\": \"a man with black hair is trying not to laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngrkolWs8D1qakqfso1_400\",\n    \"question\": \"what is the man riding on the street?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40497\",\n    \"key\": \"83164\",\n    \"description\": \"the man is riding his skateboard on the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfoh2z9C1M1u3ads9o1_250\",\n    \"question\": \"what is eating grass inside the cage?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15637\",\n    \"key\": \"14265\",\n    \"description\": \"the rabbit is eating grass inside the cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_neycl1cubc1qicrrfo1_250\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41015\",\n    \"key\": \"9902\",\n    \"description\": \"a guy with black glasses is drinking and walking around a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr45wgSapM1uaujqao1_400\",\n    \"question\": \"what is hitting and almost breaking the glass?\",\n    \"answer\": \"gorilla\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21344\",\n    \"key\": \"64873\",\n    \"description\": \"a gorilla is hitting and almost breaking a glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjk2xnlKE1uuqdooo1_250\",\n    \"question\": \"how many guys roll around on the grassy ground?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32865\",\n    \"key\": \"47155\",\n    \"description\": \"two guys roll around on the grassy ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv9m5pOMl1slj978o1_400\",\n    \"question\": \"what is bouncing around the room and hits the wall?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52518\",\n    \"key\": \"37576\",\n    \"description\": \"a cat is bouncing around a room and hits the wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_neend692r31u25ovvo1_400\",\n    \"question\": \"what is driving along the concrete road beside some grass?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39371\",\n    \"key\": \"63543\",\n    \"description\": \"a car is driving along a concrete road beside some grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nco71ciDG91twtnevo1_250\",\n    \"question\": \"what is the color of the tuft?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44867\",\n    \"key\": \"15456\",\n    \"description\": \"a man with a white tuft of hair is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckla3gUyG1t7an45o1_500\",\n    \"question\": \"how many people are laying in the bed and are kissing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13478\",\n    \"key\": \"100571\",\n    \"description\": \"two people are laying in a bed and are kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngmbd5Mgbo1u5la57o1_500\",\n    \"question\": \"where is the young lady signing.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39628\",\n    \"key\": \"60757\",\n    \"description\": \"a young lady is signing in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw2gle3ek1u8uroco1_400\",\n    \"question\": \"what is hiding on the flower pot with a hand touching?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34946\",\n    \"key\": \"68448\",\n    \"description\": \"a gray cat is hiding on the flower pot with a hand touching.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9it4hQnrt1sl5c6po1_250\",\n    \"question\": \"what dressed in dark clothing and long,\",\n    \"answer\": \"black leather trench coat ? star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11340\",\n    \"key\": \"24428\",\n    \"description\": \"a super star dressed in dark clothing and long,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhaz8iK79E1tn3rq6o1_400\",\n    \"question\": \"how many men are holding their breaths and one spits on the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6945\",\n    \"key\": \"61450\",\n    \"description\": \"two men are holding their breaths and one spits on the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhwxgPSVu1sntpr0o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20209\",\n    \"key\": \"29714\",\n    \"description\": \"a white girl with black hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkgi9WxPa1te83nuo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33688\",\n    \"key\": \"1770\",\n    \"description\": \"a white girl with red shirt is listening to music.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbisiy2pff1tkh8ago2_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39353\",\n    \"key\": \"2338\",\n    \"description\": \"the girl with blond and black hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_np6641Fv5D1rg2wrpo1_250\",\n    \"question\": \"how many lovers finally met and looks very happy?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39116\",\n    \"key\": \"13352\",\n    \"description\": \"two lovers finally met and looks very happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd39gezYGY1ttgu7yo1_400\",\n    \"question\": \"where is the man performing.\",\n    \"answer\": \"? garage\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28028\",\n    \"key\": \"61218\",\n    \"description\": \"a man is performing in his garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtbxhIBN81u8bjw8o1_250\",\n    \"question\": \"what are two men entering with one?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13077\",\n    \"key\": \"24027\",\n    \"description\": \"two men are entering a room with one riding a statue.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gg32YmTl1sjcycuo1_250\",\n    \"question\": \"what is photographing the large school of fish?\",\n    \"answer\": \"divers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33023\",\n    \"key\": \"76819\",\n    \"description\": \"a scuba divers is photographing a large school of fish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkobmrxOqy1u8s5muo1_400\",\n    \"question\": \"what does the man play while singing?\",\n    \"answer\": \"keyboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41836\",\n    \"key\": \"46617\",\n    \"description\": \"a man plays an electric keyboard while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcf6u3qah1rd87k4o1_250\",\n    \"question\": \"what does the woman pedal while wearing a tiger print scarf?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47770\",\n    \"key\": \"13573\",\n    \"description\": \"a woman pedals a bicycle while wearing a tiger print scarf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqsb78BSRH1u03tmro1_400\",\n    \"question\": \"what are three men polishing?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13674\",\n    \"key\": \"76894\",\n    \"description\": \"three men are polishing a car one is shoving another away.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ysaeQLZy1sleo2do1_500\",\n    \"question\": \"where is the man standing and making a face.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14761\",\n    \"key\": \"20658\",\n    \"description\": \"a man is standing in a room and making a face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndalydtPUu1u12owmo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30738\",\n    \"key\": \"87212\",\n    \"description\": \"a man is wearing a black suit and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_naiwug6sJp1slwrsuo1_400\",\n    \"question\": \"what is the bird hunting and grabs?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42436\",\n    \"key\": \"24088\",\n    \"description\": \"a bird is hunting and grabs a fish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr7dew1PD1qfozfoo1_500\",\n    \"question\": \"what is working over the target on a table?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28295\",\n    \"key\": \"60586\",\n    \"description\": \"a machine is working over the target on a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk15pvmV3m1qzb52xo1_400\",\n    \"question\": \"how many women are glancing over at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51694\",\n    \"key\": \"29669\",\n    \"description\": \"two women are glancing over at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3gfrf4JY1tatohao1_400\",\n    \"question\": \"what is pooing on the woman 's head?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38447\",\n    \"key\": \"39114\",\n    \"description\": \"a horse is pooing on a woman 's head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5andAo8C1tleghwo1_500\",\n    \"question\": \"what is the man looking into a mirror and fixing?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38681\",\n    \"key\": \"16997\",\n    \"description\": \"a man is looking into a mirror and fixing his tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd11cdPFVQ1s1cmjio1_400\",\n    \"question\": \"what slowly drove through the parking deck?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15046\",\n    \"key\": \"96948\",\n    \"description\": \"two cars slowly drove through a parking deck.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkppl4d1vF1u6m0glo1_250\",\n    \"question\": \"what does the guy sing and plays into a microphone?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14743\",\n    \"key\": \"26093\",\n    \"description\": \"a guy sings and plays the guitar into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2h0evKgf1qbbmg6o1_500\",\n    \"question\": \"how many armed guys are getting out of the car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12507\",\n    \"key\": \"96517\",\n    \"description\": \"two armed guys are getting out of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzqaupSSA1u96zdso1_500\",\n    \"question\": \"how many man in black play 's ukulele and sings into a microphone while another dances?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12013\",\n    \"key\": \"70130\",\n    \"description\": \"one man in black play 's ukulele and sings into a microphone while another dances.\"\n  },\n  {\n    \"video_name\": \"tumblr_nok04gJ0dF1ssgyoro1_250\",\n    \"question\": \"what is the woman drinking and doing a waving motion in front of her mouth?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35375\",\n    \"key\": \"14757\",\n    \"description\": \"a woman is drinking an energy drink and doing a waving motion in front of her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqw1d49uwo1tb2ztwo1_250\",\n    \"question\": \"how many girls are making the toast with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7555\",\n    \"key\": \"80693\",\n    \"description\": \"two girls are making a toast with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvz1zHlqY1slj978o1_250\",\n    \"question\": \"what places colored rings onto a toy placed?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16293\",\n    \"key\": \"27919\",\n    \"description\": \"a bird places colored rings onto a toy placed.\"\n  },\n  {\n    \"video_name\": \"tumblr_noikj9h4iM1uvdkzko1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33730\",\n    \"key\": \"10298\",\n    \"description\": \"a guy wearing all white is ripping his shirt open.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndelr27Acc1u0b1c1o1_400\",\n    \"question\": \"what are spinning around the corner on a track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20105\",\n    \"key\": \"46359\",\n    \"description\": \"some race cars are spinning around a corner on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndce9hl2FS1tsn1aso1_500\",\n    \"question\": \"what is smoking the cigarette?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51211\",\n    \"key\": \"34465\",\n    \"description\": \"a small alien toy is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zf8nP9hp1r8mefxo1_500\",\n    \"question\": \"how many men are looking at each other and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51077\",\n    \"key\": \"90480\",\n    \"description\": \"two men are looking at each other and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk15pvmV3m1qzb52xo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11003\",\n    \"key\": \"29669\",\n    \"description\": \"two black woman are looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyl4209U21sabd3xo1_250\",\n    \"question\": \"how many men with masks on their heads are riding in a car?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52324\",\n    \"key\": \"23694\",\n    \"description\": \"three men with masks on their heads are riding in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf9v5oufm1tjhld9o1_500\",\n    \"question\": \"what is the tiny puppy falling off?\",\n    \"answer\": \"couch\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6630\",\n    \"key\": \"76043\",\n    \"description\": \"a tiny puppy is falling off a tiny couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nephvvr7qF1tkura4o1_250\",\n    \"question\": \"what pulls out the drawer and looks inside?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46743\",\n    \"key\": \"18471\",\n    \"description\": \"a cat pulls out a drawer and looks inside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9wspZqGo1tkc9f9o1_250\",\n    \"question\": \"what is the man tapping on a wrist device?\",\n    \"answer\": \"buttons\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49497\",\n    \"key\": \"16882\",\n    \"description\": \"a man is tapping buttons on a wrist device.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5lfp2AsH1tn37i7o1_500\",\n    \"question\": \"what is on top of a stuffed teddy bear and chewing at its mouth?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48543\",\n    \"key\": \"37338\",\n    \"description\": \"a turtle is on top of a stuffed teddy bear and chewing at its mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni00qzptwh1radsy5o1_500\",\n    \"question\": \"what is the man playing before an audience?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40637\",\n    \"key\": \"60574\",\n    \"description\": \"a man is playing drums before an audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc78r0NrnH1rxobalo2_r1_400\",\n    \"question\": \"what is the man driving?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41369\",\n    \"key\": \"34090\",\n    \"description\": \"a man is driving an old style racing car.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1zgdH9ZR1qccipro1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15544\",\n    \"key\": \"39812\",\n    \"description\": \"a woman with green hair is standing next to flowers.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vk28nV921tv6x4go1_500\",\n    \"question\": \"what is the color of the skulls?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27199\",\n    \"key\": \"68505\",\n    \"description\": \"two white skulls are on a black background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfflefXvpx1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28677\",\n    \"key\": \"63605\",\n    \"description\": \"the red car is driving down the road passing all the grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yr1wYMdx1r6oiiao1_500\",\n    \"question\": \"how many girls are trying to look attractive whilst hitch hiking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30805\",\n    \"key\": \"84810\",\n    \"description\": \"two girls are trying to look attractive whilst hitch hiking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2723hhf91tj9d1zo1_250\",\n    \"question\": \"what is the person wearing a black outfit is playing?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33577\",\n    \"key\": \"38384\",\n    \"description\": \"a person wearing a black outfit is playing the piano as he kicks the piano bench backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nra0pv48J11urj103o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14107\",\n    \"key\": \"4244\",\n    \"description\": \"the lady in the black dress is standing in front of the lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyh7c2ceW1sfpwc1o1_500\",\n    \"question\": \"what flame is moving back and forth in a circular motion?\",\n    \"answer\": \"shot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27925\",\n    \"key\": \"58736\",\n    \"description\": \"a gun shot 's flame is moving back and forth in a circular motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne316p18xs1rpexmto1_500\",\n    \"question\": \"how many man talks into a microphone winks eye?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32953\",\n    \"key\": \"55275\",\n    \"description\": \"one man talks into a microphone winks eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbauwunaii1tl12szo1_400\",\n    \"question\": \"where is the guy doing funny movements.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42700\",\n    \"key\": \"37259\",\n    \"description\": \"a guy is doing funny movements in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8ib9Oyf21sy603fo1_250\",\n    \"question\": \"what is the color of the jersey?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15920\",\n    \"key\": \"8269\",\n    \"description\": \"a guy with blonde hair wears a white jersey kisses another guy in a blue jersey on the ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfrf0qcm1q1rcn2l0o1_500\",\n    \"question\": \"where is the boy with earrings talking and walking away.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24761\",\n    \"key\": \"87699\",\n    \"description\": \"a boy with earrings is talking and walking away in a dance room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq0629hIq1t5ojzdo1_250\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41276\",\n    \"key\": \"49660\",\n    \"description\": \"a red car is driving along in the desert,\"\n  },\n  {\n    \"video_name\": \"tumblr_nait93JoFa1t1hwbqo1_250\",\n    \"question\": \"what is the young guy playing on a stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42742\",\n    \"key\": \"7808\",\n    \"description\": \"a young guy is playing guitar on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxyfpFOvW1tzhkoao1_400\",\n    \"question\": \"what stares to the left and then knocks a cup over?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20757\",\n    \"key\": \"1074\",\n    \"description\": \"a cat stares to the left and then knocks a cup over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyiresVbd1unyhx2o1_400\",\n    \"question\": \"what was smoking then it turned?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4893\",\n    \"key\": \"76911\",\n    \"description\": \"a race car was smoking then it turned.\"\n  },\n  {\n    \"video_name\": \"tumblr_nawuacXtk21ti8b6yo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1005\",\n    \"key\": \"7703\",\n    \"description\": \"a young man is hugging a person in a blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mskz1L1d1tizn8ho1_400\",\n    \"question\": \"how many girls are posing together in the bedroom?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23294\",\n    \"key\": \"30132\",\n    \"description\": \"two girls are posing together in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqjklxflS41uz06r7o1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40620\",\n    \"key\": \"5456\",\n    \"description\": \"a white cat is playing very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncnjscfPdU1slguvpo1_250\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27300\",\n    \"key\": \"17784\",\n    \"description\": \"a woman with long dark hair and red lipstick smiles and shows her teeth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3dx3ld831rftdx0o1_250\",\n    \"question\": \"what is one man looking forward and other smoking?\",\n    \"answer\": \"pipe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37859\",\n    \"key\": \"87575\",\n    \"description\": \"one man is looking forward and other smoking a pipe.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk61a04KIs1tto5o6o1_250\",\n    \"question\": \"how many men is sitting beside each other stare into each others eyes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45977\",\n    \"key\": \"39549\",\n    \"description\": \"two men sitting beside each other stare into each others eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbx8aewg0R1rbd7evo1_500\",\n    \"question\": \"how many man appears to be playing drums?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16046\",\n    \"key\": \"100425\",\n    \"description\": \"one man appears to be playing drums and another is moving his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6i6uP4kE1s5svyno1_500\",\n    \"question\": \"what are two beautiful ladies taking out?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11931\",\n    \"key\": \"93850\",\n    \"description\": \"two beautiful ladies are taking out a man 's jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqx3b5Le21sz068fo1_250\",\n    \"question\": \"what are moving on the floor of a room?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22518\",\n    \"key\": \"24078\",\n    \"description\": \"two cats are moving on the floor of a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrkev4Xcm1u7q0qeo1_500\",\n    \"question\": \"how many tams is this image of playing a game of soccer?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28222\",\n    \"key\": \"85618\",\n    \"description\": \"this image is of two tams playing a game of soccer.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb1a34KjI1slpywlo1_250\",\n    \"question\": \"where is the man wearing black does a dance.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27675\",\n    \"key\": \"47009\",\n    \"description\": \"a man wearing black does a dance in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmq0cCMma1sxr88mo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1468\",\n    \"key\": \"56007\",\n    \"description\": \"a boy in a black shirt is jumping around with his friends.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbw6o5Wyrp1tv4dj3o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25158\",\n    \"key\": \"4627\",\n    \"description\": \"a girl with glasses and brown hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8lnh1FJTf1tgkdkbo1_500\",\n    \"question\": \"what are sitting on top of a circular object?\",\n    \"answer\": \"rodents\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43318\",\n    \"key\": \"38863\",\n    \"description\": \"two rodents are sitting on top of a circular object.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngx8i4P8R61rdm91ko1_400\",\n    \"question\": \"what is the woman holding and hugging?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13436\",\n    \"key\": \"32373\",\n    \"description\": \"a woman is holding and hugging a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd7lyk28OJ1qdtwtzo1_250\",\n    \"question\": \"how many women have the very shocked look on their faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40805\",\n    \"key\": \"26072\",\n    \"description\": \"two women have a very shocked look on their faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfms5bNhL1s3lrg5o1_400\",\n    \"question\": \"what does the man spin?\",\n    \"answer\": \"wheel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40465\",\n    \"key\": \"33329\",\n    \"description\": \"a man spins a wheel which makes a string caterpillar move.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh777pWSdg1r9qdkno1_400\",\n    \"question\": \"what is the color of the juice?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39049\",\n    \"key\": \"41257\",\n    \"description\": \"a girl in a white hat sips orange juice from a straw.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqh1cwf6xD1rimengo1_400\",\n    \"question\": \"where is the woman having a nightmare.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42725\",\n    \"key\": \"78809\",\n    \"description\": \"a woman is having a nightmare in her bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqspfnDHiF1rsp6cpo1_400\",\n    \"question\": \"what is the floating person in black clothing holding?\",\n    \"answer\": \"swords\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8109\",\n    \"key\": \"19148\",\n    \"description\": \"a floating person in black clothing is holding two swords.\"\n  },\n  {\n    \"video_name\": \"tumblr_nodi2rLQXk1tselino1_400\",\n    \"question\": \"how many women in bikinis are giving each other a high five?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13826\",\n    \"key\": \"25780\",\n    \"description\": \"two women in bikinis are giving each other a high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ec7gVPmi1r1e6f9o1_500\",\n    \"question\": \"what is the girl sitting next to a boy and she pulls out of his ear to talk to him?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29578\",\n    \"key\": \"67554\",\n    \"description\": \"a girl is sitting next to a boy and she pulls his ear phone out of his ear to talk to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr96lqiPla1u4e9dho1_500\",\n    \"question\": \"what is the man wearing in front of the lady?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12274\",\n    \"key\": \"99905\",\n    \"description\": \"the man is wearing the glasses in front of the lady.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq0fyOyiC1rj38k8o1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33365\",\n    \"key\": \"1318\",\n    \"description\": \"a black dog with brown paws,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk1dlRO9H1uanc3bo1_250\",\n    \"question\": \"what is the young man rubs his stomach under is?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38964\",\n    \"key\": \"6551\",\n    \"description\": \"a young man rubs his stomach under is tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncimxmZUSy1s9ih6zo1_400\",\n    \"question\": \"what is the man on stage holding and rubs his lips?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51256\",\n    \"key\": \"35664\",\n    \"description\": \"a man on stage is holding a microphone and rubs his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlqzmdkNA1tgetb4o1_400\",\n    \"question\": \"how many student flies the paper from his desk to his neighbor 's desk?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52337\",\n    \"key\": \"88410\",\n    \"description\": \"one student flies a paper from his desk to his neighbor 's desk.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgay9vIw91tlmnxxo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26194\",\n    \"key\": \"303\",\n    \"description\": \"a pretty girl with a white dress is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkcdaEQSZ1r8c7bzo1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23539\",\n    \"key\": \"53096\",\n    \"description\": \"a man in a green uniform leans in and speaks to someone through a keyhole.\"\n  },\n  {\n    \"video_name\": \"tumblr_lr2avokSCq1r2btt4o1_500\",\n    \"question\": \"what is the woman wearing?\",\n    \"answer\": \"gown\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37385\",\n    \"key\": \"52484\",\n    \"description\": \"a woman is wearing a feathered evening gown.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnk25weMH51uu9a08o1_250\",\n    \"question\": \"what did the man pull?\",\n    \"answer\": \"bow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22326\",\n    \"key\": \"81379\",\n    \"description\": \"a man pulled a bow back getting ready to shoot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxiwtAC4Q1u7itf7o1_500\",\n    \"question\": \"what is chasing another car,\",\n    \"answer\": \"both speeding down the road ? car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32767\",\n    \"key\": \"96891\",\n    \"description\": \"a police car is chasing another car,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv4na6kW51tmecz1o1_500\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28217\",\n    \"key\": \"67886\",\n    \"description\": \"a woman wearing a black shimmery outfit walks forward while people in the background watch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nktkib4aFf1ql1a7vo1_500\",\n    \"question\": \"how many guys are sitting there?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9283\",\n    \"key\": \"76225\",\n    \"description\": \"two guys are sitting there and one turns to look at the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nccba1gU461s95n00o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23204\",\n    \"key\": \"1831\",\n    \"description\": \"a woman wearing a gray shirt lifts weights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3ljyQlT21u34u6eo1_500\",\n    \"question\": \"where are the young man and a young woman kissing.\",\n    \"answer\": \"? library\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42795\",\n    \"key\": \"89062\",\n    \"description\": \"a young man and a young woman are kissing in a library.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx280JEg61suduoyo1_400\",\n    \"question\": \"where are the guys dancing,\",\n    \"answer\": \"people watch them . ? house\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13485\",\n    \"key\": \"22059\",\n    \"description\": \"the guys are dancing in a house,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncza8xIcHW1tuzm6po1_400\",\n    \"question\": \"where is the woman dancing while men are fighting behind her.\",\n    \"answer\": \"? office\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50558\",\n    \"key\": \"65138\",\n    \"description\": \"a woman is dancing in an office while men are fighting behind her.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6marczEE1rvy5gto1_500\",\n    \"question\": \"what is the man playing while standing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32082\",\n    \"key\": \"77810\",\n    \"description\": \"a man is playing an electric guitar while standing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nce2gxmBmk1tvjj7co1_500\",\n    \"question\": \"what is the color of the mask?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19526\",\n    \"key\": \"59532\",\n    \"description\": \"person with white mask is jumping to scenery.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkm848NqkM1tec7too1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1660\",\n    \"key\": \"43778\",\n    \"description\": \"this image is of a guy in a red jacket talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9q0wbAvnk1slorlzo1_400\",\n    \"question\": \"what is the man holding and turning around in his chair?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39146\",\n    \"key\": \"97560\",\n    \"description\": \"a man is holding a rabbit and turning around in his chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5yoq9wXv1s6zpepo1_250\",\n    \"question\": \"what is being fondled tenderly by the man?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35549\",\n    \"key\": \"78462\",\n    \"description\": \"a cat is being fondled tenderly by a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsvtbbPBQ1u62vgyo1_400\",\n    \"question\": \"how many men are speaking to each other in a black and white color scheme?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA611\",\n    \"key\": \"68608\",\n    \"description\": \"two men are speaking to each other in a black and white color scheme.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlxzyxkQLW1u52c2xo1_250\",\n    \"question\": \"how many men are swinging light sabers at each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27420\",\n    \"key\": \"23633\",\n    \"description\": \"three men are swinging light sabers at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s0xxT2ig1ssgyoro1_400\",\n    \"question\": \"what is carrying a ball drops it to pick up another?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36156\",\n    \"key\": \"56060\",\n    \"description\": \"a dog carrying a ball drops it to pick up another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerzflfMNY1qdoqvio1_500\",\n    \"question\": \"where is the woman looking and touching her hair.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52458\",\n    \"key\": \"47911\",\n    \"description\": \"a woman is looking in a mirror and touching her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2001EMsX1u1s6txo1_400\",\n    \"question\": \"where is the girl yelling.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA794\",\n    \"key\": \"11369\",\n    \"description\": \"a girl is yelling in the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrcbnhiHH1u7yulho1_400\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33457\",\n    \"key\": \"95428\",\n    \"description\": \"a woman holds a plastic rectangle,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxxwoxpjy1rv5gmso1_400\",\n    \"question\": \"how many skateboarders are doing flips on a ramp?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18475\",\n    \"key\": \"77195\",\n    \"description\": \"two skateboarders are doing flips on a ramp.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfo31Hlh81qhya5no1_250\",\n    \"question\": \"what is the man in a construction hat wearing?\",\n    \"answer\": \"belts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50292\",\n    \"key\": \"7657\",\n    \"description\": \"a man in a construction hat is wearing two belts.\"\n  },\n  {\n    \"video_name\": \"tumblr_neyn5fQWKo1r3ydxho1_1280\",\n    \"question\": \"how many guys listen to music and bang their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42309\",\n    \"key\": \"57540\",\n    \"description\": \"two guys listen to music and bang their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczwtwNRH01qes0v0o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28230\",\n    \"key\": \"64575\",\n    \"description\": \"a young lady in a white shirt is smiling and speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xv6aqQ5A1qmgppeo1_250\",\n    \"question\": \"what is laying down on the blanket?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19464\",\n    \"key\": \"38221\",\n    \"description\": \"a dog is laying down on a blanket.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8yacMvXl1t0ojyvo1_250\",\n    \"question\": \"how many men are laughing as the third looks on?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34707\",\n    \"key\": \"25575\",\n    \"description\": \"two men are laughing as a third looks on.\"\n  },\n  {\n    \"video_name\": \"tumblr_noh6zccJke1unyhx2o1_400\",\n    \"question\": \"what are racing down the track at a race?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30351\",\n    \"key\": \"78360\",\n    \"description\": \"cars are racing down a track at a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuea8VOv61u636iqo1_400\",\n    \"question\": \"what is she riding on a green ramp?\",\n    \"answer\": \"snowboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19057\",\n    \"key\": \"66970\",\n    \"description\": \"she is riding her snowboard on a green ramp.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney67x8wtj1qememvo1_400\",\n    \"question\": \"what are two men embracing each other and one of them grabs?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15088\",\n    \"key\": \"22473\",\n    \"description\": \"two men are embracing each other and one of them grabs the other ones butt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh65gpkbU21u6wi1io1_400\",\n    \"question\": \"how many men are wrestling each other in a ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14909\",\n    \"key\": \"34642\",\n    \"description\": \"two men are wrestling each other in a ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_njs6ceesFH1tll6f9o1_400\",\n    \"question\": \"what is the man in the white shirt playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30907\",\n    \"key\": \"67344\",\n    \"description\": \"the man in the white shirt is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd545e1wuK1rjj4bjo1_400\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34523\",\n    \"key\": \"33013\",\n    \"description\": \"a woman with red lipstick and long hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjv24ooua1u3f59ho1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28450\",\n    \"key\": \"7872\",\n    \"description\": \"the guy with the white shirt and black jacket is looking around puzzled.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6lx47Ndj1slrp89o1_400\",\n    \"question\": \"how many men on stage are holding shoulders and moving together?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22623\",\n    \"key\": \"45369\",\n    \"description\": \"four men on stage are holding shoulders and moving together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9f1hcMqsn1snp73jo1_500\",\n    \"question\": \"how many men are wearing sunglasses?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5703\",\n    \"key\": \"45318\",\n    \"description\": \"three men are wearing sunglasses and one shoves another man away.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuw5ruVDR1unixz7o1_400\",\n    \"question\": \"where is the animal sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15168\",\n    \"key\": \"40086\",\n    \"description\": \"the animal is sitting in the swing chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguxxvuPLQ1s6sj31o1_400\",\n    \"question\": \"where are the group of men falling.\",\n    \"answer\": \"? bathroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42518\",\n    \"key\": \"27403\",\n    \"description\": \"a group of men are falling in the bathroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_no3s4rbT7k1uv5902o1_400\",\n    \"question\": \"what is the man yelling and leaving?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47280\",\n    \"key\": \"65845\",\n    \"description\": \"a man is yelling and leaving a room because another man put his foot in his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2r0l3BTc1slj978o1_400\",\n    \"question\": \"what is being chased away by the cat?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7230\",\n    \"key\": \"49338\",\n    \"description\": \"a fox is being chased away by the cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvemamh3r1tugq3go1_400\",\n    \"question\": \"where is the girl with the long dark hair smiling.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26488\",\n    \"key\": \"33041\",\n    \"description\": \"the girl with the long dark hair is smiling in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffuk46ddi1s3m10do1_250\",\n    \"question\": \"what launches an object into the air?\",\n    \"answer\": \"catapult\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40747\",\n    \"key\": \"21033\",\n    \"description\": \"the catapult launches an object into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4spuzkLx1u3aa5ho1_500\",\n    \"question\": \"how many people are talking and nodding to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23278\",\n    \"key\": \"99689\",\n    \"description\": \"two people are talking and nodding to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxc1beSqb1sb7pz4o1_400\",\n    \"question\": \"what is the little girl receiving from a man?\",\n    \"answer\": \"flower\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39341\",\n    \"key\": \"42519\",\n    \"description\": \"a little girl is receiving a flower from a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksqcq3SSs1s0taylo1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36093\",\n    \"key\": \"22924\",\n    \"description\": \"the red hair guy is half-naked in the scene.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cswzW8tA1t5ojzdo1_250\",\n    \"question\": \"what is the woman holding and throwing something behind her?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21516\",\n    \"key\": \"43794\",\n    \"description\": \"a woman is holding a box and throwing something behind her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnyjmeHAg51upqmhpo1_250\",\n    \"question\": \"where is the cute couple sitting.\",\n    \"answer\": \"? vehicle\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30686\",\n    \"key\": \"39679\",\n    \"description\": \"a cute couple is sitting in a vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfzln4hPwu1u4lqc0o1_400\",\n    \"question\": \"what is the young man in a white shirt eating?\",\n    \"answer\": \"snack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19451\",\n    \"key\": \"52384\",\n    \"description\": \"a young man in a white shirt is eating a snack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwi7i4BC51rftdx0o1_400\",\n    \"question\": \"what is the person loading into a part of a gun?\",\n    \"answer\": \"ammunition\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29213\",\n    \"key\": \"92471\",\n    \"description\": \"a person is loading ammunition into a part of a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p1fyGr2W1tixixoo1_400\",\n    \"question\": \"what hits the boy holding a box of sports equipment?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27286\",\n    \"key\": \"60268\",\n    \"description\": \"a foot ball hits a boy holding a box of sports equipment.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyr8rSi4d1to0jsbo1_250\",\n    \"question\": \"what is the man folding with his hands?\",\n    \"answer\": \"animal\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31910\",\n    \"key\": \"19082\",\n    \"description\": \"a man is folding a balloon animal with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk08syYSt71te94myo1_400\",\n    \"question\": \"what does the woman throw onto a man 's plate?\",\n    \"answer\": \"potatoes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51485\",\n    \"key\": \"18540\",\n    \"description\": \"a woman throws mashed potatoes onto a man 's plate.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3ertI5uM1tv46ebo1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36592\",\n    \"key\": \"7481\",\n    \"description\": \"a girl wearing a red top and black shorts is lying down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkc48iNxXB1uodfiso1_500\",\n    \"question\": \"what is the woman holding up to her mouth?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28923\",\n    \"key\": \"72935\",\n    \"description\": \"a woman is holding a phone up to her mouth to cover her own mouth while another woman nods her head next to her.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g5efSoWD1rsxypwo1_400\",\n    \"question\": \"how many kittens cuddle together in the small container?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1039\",\n    \"key\": \"22459\",\n    \"description\": \"three kittens cuddle together in a small container.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxu3kMb2e1s71nvbo1_400\",\n    \"question\": \"what is bouncing off the walls?\",\n    \"answer\": \"lemur\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5657\",\n    \"key\": \"40521\",\n    \"description\": \"a lemur is bouncing off the walls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9zjlheTF1tua54co1_400\",\n    \"question\": \"how many men are sitting and drumming their hands on their legs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30586\",\n    \"key\": \"62561\",\n    \"description\": \"two men are sitting and drumming their hands on their legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9soht3hXu1ty4429o1_500\",\n    \"question\": \"how many men are recorded while making faces?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26862\",\n    \"key\": \"91209\",\n    \"description\": \"four men are recorded while making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngps4f7xik1smwx64o1_500\",\n    \"question\": \"what is the woman in the mask smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7979\",\n    \"key\": \"48187\",\n    \"description\": \"the woman in the mask is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfr6feQ1ii1smz8r1o1_400\",\n    \"question\": \"where is the boy standing and smiling.\",\n    \"answer\": \"? bathroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA271\",\n    \"key\": \"54085\",\n    \"description\": \"a boy is standing in the bathroom and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncql995UBl1u073goo1_400\",\n    \"question\": \"what does this show prancing around a room trying to catch a light dot?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51243\",\n    \"key\": \"28410\",\n    \"description\": \"this shows a cat prancing around a room trying to catch a light dot.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr9ubPJfK1ri7ltoo1_500\",\n    \"question\": \"what is the girl wearing and smiling?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52766\",\n    \"key\": \"73477\",\n    \"description\": \"a girl is wearing a hat and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk90fqhAgg1u1k55co1_500\",\n    \"question\": \"what is flying in the glass?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2675\",\n    \"key\": \"75410\",\n    \"description\": \"a butterfly is flying in a glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvahg5EtM1upd83yo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37430\",\n    \"key\": \"21698\",\n    \"description\": \"a boy wearing blue shirt is speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc59rv0l3t1r7oaaro1_400\",\n    \"question\": \"how many people is this sitting at a booth in a restaurant?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41089\",\n    \"key\": \"65406\",\n    \"description\": \"this is four people sitting at a booth in a restaurant.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1mrl3e4N1slj978o1_250\",\n    \"question\": \"what is taking very small steps forward and then back?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36561\",\n    \"key\": \"71461\",\n    \"description\": \"a dog is taking very small steps forward and then back.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7ortnyJB1s0nx6go1_100\",\n    \"question\": \"what is licking water from a faucet in the sink?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36959\",\n    \"key\": \"4838\",\n    \"description\": \"a dog is licking water from a faucet in the sink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgkpzxpv01qclz9ho1_1280\",\n    \"question\": \"what is the young girl mad and cutting up?\",\n    \"answer\": \"t-shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39580\",\n    \"key\": \"99900\",\n    \"description\": \"a young girl is mad and cutting up a white t-shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlj7o4Z6xO1tsonebo1_400\",\n    \"question\": \"what does the skier competently navigate?\",\n    \"answer\": \"mountain\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25346\",\n    \"key\": \"76040\",\n    \"description\": \"a skier competently navigates a snowy mountain.\"\n  },\n  {\n    \"video_name\": \"tumblr_npgmilwWnF1tx8mn0o1_400\",\n    \"question\": \"how many race cars are speeding around the corner on a race track?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29646\",\n    \"key\": \"91034\",\n    \"description\": \"two race cars are speeding around a corner on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqkoicsBL1qhw2j5o1_500\",\n    \"question\": \"where is the woman shaking her hair.\",\n    \"answer\": \"? booth\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45925\",\n    \"key\": \"50686\",\n    \"description\": \"a woman is shaking her hair in a phone booth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0oqeBJLk1qzs91yo1_1280\",\n    \"question\": \"what is staring at something with wide eyes?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9796\",\n    \"key\": \"27459\",\n    \"description\": \"a cat is staring at something with wide eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9x7mf8kmY1rl9v18o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7327\",\n    \"key\": \"11731\",\n    \"description\": \"a boy with red tank top is dancing while holding a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7z61zzSu1shch57o1_500\",\n    \"question\": \"how many guys are walking off to the side,\",\n    \"answer\": \"while a third moves forward and dances ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47086\",\n    \"key\": \"22514\",\n    \"description\": \"two guys are walking off to the side,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvpbzWgrL1satsh4o1_250\",\n    \"question\": \"what is being poured from one bottle to another?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3007\",\n    \"key\": \"564\",\n    \"description\": \"a drink is being poured from one bottle to another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfe07vBmKZ1tg9gzmo1_400\",\n    \"question\": \"what is the color of the box?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26551\",\n    \"key\": \"48521\",\n    \"description\": \"the man smiles and presents a red gift box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6nvw51nP1rykobjo1_400\",\n    \"question\": \"what is the color of the couch?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21819\",\n    \"key\": \"54023\",\n    \"description\": \"a man sits on a red couch while a woman gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_netcx4DbEN1u25ovvo1_400\",\n    \"question\": \"what is driving down the main street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12606\",\n    \"key\": \"63409\",\n    \"description\": \"a red car is driving down a main street whilst ongoing cars are a blur going past.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr8j0oYR81r44co8o1_250\",\n    \"question\": \"how many men dressed in blue shirts are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11377\",\n    \"key\": \"47782\",\n    \"description\": \"two men dressed in blue shirts are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnvv6fuwM1ti93qgo1_400\",\n    \"question\": \"what is the color of the face?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22570\",\n    \"key\": \"30026\",\n    \"description\": \"a woman with a red face and bright blonde hair is swearing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npc32rGh621uulfsxo1_500\",\n    \"question\": \"what is the man playing while looking someone or something?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45058\",\n    \"key\": \"59234\",\n    \"description\": \"a man is playing the piano while looking someone or something.\"\n  },\n  {\n    \"video_name\": \"tumblr_na49quYRyM1rblf33o1_500\",\n    \"question\": \"where is the guy with cap crouched down.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29928\",\n    \"key\": \"19830\",\n    \"description\": \"a guy with cap is crouched down in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnk57sGzUF1tjaw8no1_500\",\n    \"question\": \"where is the young woman dressed.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39925\",\n    \"key\": \"86359\",\n    \"description\": \"a young woman is dressed in black and standing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflzmwpuPQ1tigbm3o1_400\",\n    \"question\": \"how many men shake hands and one man points at the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40540\",\n    \"key\": \"59344\",\n    \"description\": \"two men shake hands and one man points at the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h26nRNV01rfyy6oo1_500\",\n    \"question\": \"what is the man taking at an award show?\",\n    \"answer\": \"pictures\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42832\",\n    \"key\": \"62666\",\n    \"description\": \"a man is taking pictures at an award show.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9orznkSQa1sorauco1_400\",\n    \"question\": \"how many men are sitting on the boat moving along some water?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13518\",\n    \"key\": \"79628\",\n    \"description\": \"three men are sitting on a boat moving along some water.\"\n  },\n  {\n    \"video_name\": \"tumblr_naezgmYC1N1tjg4vgo1_250\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4225\",\n    \"key\": \"16087\",\n    \"description\": \"a woman with black eyes smiles and looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwsugC09s1uxqtu9o1_250\",\n    \"question\": \"what is the man riding down the road without holding onto the handles?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22504\",\n    \"key\": \"48548\",\n    \"description\": \"the man is riding his bike down the road without holding onto the handles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk132aAxXT1tg9gzmo1_500\",\n    \"question\": \"what is the girl with the long black hair showing off?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4742\",\n    \"key\": \"90841\",\n    \"description\": \"the girl with the long black hair is showing off her new phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhifdvtMsa1tjhld9o1_250\",\n    \"question\": \"what is laying on the blanket?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36408\",\n    \"key\": \"21175\",\n    \"description\": \"a sad puppy is laying on a blanket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr28vfwkXm1uxebowo1_400\",\n    \"question\": \"what sits while the person washes its body?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47611\",\n    \"key\": \"1743\",\n    \"description\": \"a monkey sits while a person washes its body.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay84a39Un1tgr5e4o1_100\",\n    \"question\": \"what does the young person run through their hair,\",\n    \"answer\": \"then their hand and a slogan appears ? towel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36125\",\n    \"key\": \"35691\",\n    \"description\": \"a young person runs a towel through their hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wqpyVYzD1ryp605o1_1280\",\n    \"question\": \"what is the color of the playing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24730\",\n    \"key\": \"63237\",\n    \"description\": \"this image is of a woman in black playing with her long hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuiyeJfZ11u7yxjso1_250\",\n    \"question\": \"what is the girl riding down the street?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6482\",\n    \"key\": \"77779\",\n    \"description\": \"a girl is riding a skateboard down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwfolO27d1tmflpjo1_500\",\n    \"question\": \"where is the man wearing black sits and it falls over.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10993\",\n    \"key\": \"58076\",\n    \"description\": \"a man wearing black sits in a chair and it falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx0k7vKCu1u4cx5ko1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11250\",\n    \"key\": \"64979\",\n    \"description\": \"a white dog ran and licked something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevu1x7R4F1tzeksuo1_400\",\n    \"question\": \"where are two men going.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7875\",\n    \"key\": \"67414\",\n    \"description\": \"two men are going in a black car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2cflszPt1u04jkto1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15384\",\n    \"key\": \"65480\",\n    \"description\": \"a woman in a red dress is turning around and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n941xboVDa1sdnal9o1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23606\",\n    \"key\": \"93820\",\n    \"description\": \"a white dressed girl is looking straight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbadfkbZvN1tl0ko9o1_400\",\n    \"question\": \"where is the cat sitting and them jumps out onto a table.\",\n    \"answer\": \"? window\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33047\",\n    \"key\": \"38032\",\n    \"description\": \"a cat is sitting in a window and them jumps out onto a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2t08LZcs1s9578so1_250\",\n    \"question\": \"how many people are kissing each other on the mouth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31133\",\n    \"key\": \"5047\",\n    \"description\": \"two people are kissing each other on the mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq2bdiskz1qayc5ro1_400\",\n    \"question\": \"where does the heavily made up man with pointed ears spin around.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12049\",\n    \"key\": \"34906\",\n    \"description\": \"a heavily made up man with pointed ears spins around in a leather chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbqyccttfr1t6zd1xo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52984\",\n    \"key\": \"51027\",\n    \"description\": \"a white man is smiling while showing his teeth.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5aodi5wy1tph724o1_400\",\n    \"question\": \"what does the skier come down covered in snow?\",\n    \"answer\": \"mountain\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12454\",\n    \"key\": \"64126\",\n    \"description\": \"a skier comes down a mountain covered in snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lft7vTIh1r7tsclo1_400\",\n    \"question\": \"what is playing the song and singing?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1642\",\n    \"key\": \"61378\",\n    \"description\": \"a garage band is playing a song and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wubdPzBI1ttu94ro1_400\",\n    \"question\": \"what is the woman riding around a stable?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47217\",\n    \"key\": \"40358\",\n    \"description\": \"a woman is riding a horse around a stable.\"\n  },\n  {\n    \"video_name\": \"tumblr_n936g6qOmM1tfvq31o1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA850\",\n    \"key\": \"72963\",\n    \"description\": \"a woman wearing black clothing with long hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq1kcyjyHi1uwli57o1_1280\",\n    \"question\": \"how many guys are dressed as comic book characters in the street?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23311\",\n    \"key\": \"95412\",\n    \"description\": \"two guys are dressed as comic book characters in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq60pmn4yQ1qzvub2o1_400\",\n    \"question\": \"what is someone shooting at two men running in the snow?\",\n    \"answer\": \"firecrackers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32102\",\n    \"key\": \"74591\",\n    \"description\": \"someone is shooting firecrackers at two men running in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb5pvb0KQb1sov9opo1_500\",\n    \"question\": \"what is the color of the earring?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22001\",\n    \"key\": \"62369\",\n    \"description\": \"the guy with the red earring is yelling as a couple walk through the tunnel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkbu9cuFSt1tfe5fyo1_250\",\n    \"question\": \"what is the man smoking and looking down?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12069\",\n    \"key\": \"19499\",\n    \"description\": \"a man is smoking a cigarette and looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngabmmLBSp1u5puiqo1_250\",\n    \"question\": \"what is the color of the kid?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49250\",\n    \"key\": \"20871\",\n    \"description\": \"a white kid makes different faces as he sits down.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvociiGrl1u2vubao1_400\",\n    \"question\": \"what is the man talking eating and nodding?\",\n    \"answer\": \"ribs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23930\",\n    \"key\": \"82737\",\n    \"description\": \"a man is talking whilst eating ribs and nodding.\"\n  },\n  {\n    \"video_name\": \"tumblr_niq9e6Q1aC1u9nxeno1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29171\",\n    \"key\": \"84579\",\n    \"description\": \"a young man in a purple shirt is talking into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nck1koAUcW1tm0ao8o1_250\",\n    \"question\": \"how many fingers is the young man moving around on each hand?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13285\",\n    \"key\": \"15495\",\n    \"description\": \"a young man is moving two fingers around on each hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebni51x4q1u1209ao1_250\",\n    \"question\": \"what is the color of the shadow?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18103\",\n    \"key\": \"14951\",\n    \"description\": \"a woman is wearing green eye shadow and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba6q7knEq1t7jda2o1_400\",\n    \"question\": \"where is the man standing while cars are dodging him until he is finally hit.\",\n    \"answer\": \"? road\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20169\",\n    \"key\": \"80850\",\n    \"description\": \"a man is standing in the middle road while cars are dodging him until he is finally hit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd51f3SjEw1u0k0t5o1_400\",\n    \"question\": \"what is the girl pushing someone into a closet and shutting?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22435\",\n    \"key\": \"81286\",\n    \"description\": \"a girl is pushing someone into a closet and shutting the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrsrjjRsF1tx3i7qo1_400\",\n    \"question\": \"what is the woman adjusting?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42667\",\n    \"key\": \"65633\",\n    \"description\": \"a woman is adjusting her jacket so it is straight.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e3fpyjjr1sq1mmgo1_400\",\n    \"question\": \"how many men in white outfits were demonstrating karate?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14966\",\n    \"key\": \"60560\",\n    \"description\": \"two men in white outfits were demonstrating karate.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tuqn05ec1rd0civo1_400\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32329\",\n    \"key\": \"59139\",\n    \"description\": \"a fashion model is walking in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97ntjwFce1qaeqj9o1_250\",\n    \"question\": \"what are the man and woman riding in a car and spitting back and forth at each other?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18716\",\n    \"key\": \"43796\",\n    \"description\": \"a man and woman are riding in a car and spitting a ping pong ball back and forth at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay1v5Pvpi1qg0cppo1_250\",\n    \"question\": \"what is going inside the hole?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15\",\n    \"key\": \"19061\",\n    \"description\": \"a fish is going inside a hole.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95d2oPwhy1suyqwko1_400\",\n    \"question\": \"what is crawling toward something?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13435\",\n    \"key\": \"56086\",\n    \"description\": \"a little puppy is crawling toward something.\"\n  },\n  {\n    \"video_name\": \"tumblr_noibtowlNT1tum256o1_500\",\n    \"question\": \"what is the man in sunglasses buttoning up?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28985\",\n    \"key\": \"48578\",\n    \"description\": \"a man in sunglasses is buttoning up his suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8ztgwPRU1tj8blpo1_250\",\n    \"question\": \"what is resting and is nibbling on its own tail?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51909\",\n    \"key\": \"11564\",\n    \"description\": \"a cat is resting and is nibbling on its own tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejj0xVfBd1s9dtupo1_400\",\n    \"question\": \"what is the man wearing a white hat is smoking?\",\n    \"answer\": \"pipe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25330\",\n    \"key\": \"29070\",\n    \"description\": \"a man wearing a white hat is smoking a pipe.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhek07vQZc1te94myo1_400\",\n    \"question\": \"what is the woman presenting a show with a cat and walks away from her?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46367\",\n    \"key\": \"23862\",\n    \"description\": \"a woman is presenting a show with a cat and the cat walks away from her.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjopzbz3k1qz8lpeo1_250\",\n    \"question\": \"what is the man wearing a dark colored suit is holding?\",\n    \"answer\": \"briefcase\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7825\",\n    \"key\": \"42542\",\n    \"description\": \"a man wearing a dark colored suit is holding a briefcase.\"\n  },\n  {\n    \"video_name\": \"tumblr_nor474fCEo1slwrsuo1_250\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19368\",\n    \"key\": \"36784\",\n    \"description\": \"a man in shorts is playing with a brown dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8b6xSueH1u5s6sso1_500\",\n    \"question\": \"what are three women dancing and one is holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1200\",\n    \"key\": \"33941\",\n    \"description\": \"three women are dancing and one is holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzvhbSCmZ1uzxfpso1_400\",\n    \"question\": \"where are the man and a woman,\",\n    \"answer\": \"the man spills milk over his face . ? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46886\",\n    \"key\": \"64234\",\n    \"description\": \"a man and a woman are in a car,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfj9394H2n1r8d2fho1_1280\",\n    \"question\": \"where is the man speeding down the road and screaming.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24570\",\n    \"key\": \"94316\",\n    \"description\": \"a man is speeding down the road in a car and screaming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nca3neyJbm1retkdpo1_500\",\n    \"question\": \"what do two people walk and the one moves to the side and grabs his guns?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10957\",\n    \"key\": \"99129\",\n    \"description\": \"two people walk and the one moves his coat to the side and grabs his guns.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitvmqOok11r05qsbo1_400\",\n    \"question\": \"what is making the drift on a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43083\",\n    \"key\": \"70773\",\n    \"description\": \"a red car is making a drift on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlvobrJMp1tln8qzo1_400\",\n    \"question\": \"how many horse does there 's running down a path in mountains?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4314\",\n    \"key\": \"65403\",\n    \"description\": \"there 's one horse running down a path in mountains.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwdo4WvDN1u967xao1_500\",\n    \"question\": \"where did the man in a brown coat stand.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33771\",\n    \"key\": \"72906\",\n    \"description\": \"a man in a brown coat stood over a man in a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3wqiYVkG1tatohao1_400\",\n    \"question\": \"what is playing on the man 's finger?\",\n    \"answer\": \"rat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35529\",\n    \"key\": \"39479\",\n    \"description\": \"a rat is playing on a man 's finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvhjp6WO71sj3qcdo1_250\",\n    \"question\": \"how many men are eating popcorn on the couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11863\",\n    \"key\": \"19312\",\n    \"description\": \"the two men are eating popcorn on the couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebvi7SFVZ1twoe5do1_400\",\n    \"question\": \"what is the color of the van?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9121\",\n    \"key\": \"50108\",\n    \"description\": \"a white van is driving down a street in the rain and hits the car in front of him and spins.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbs0eegTdx1sdbrm9o1_400\",\n    \"question\": \"how many men are giving an interview in to mics?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5908\",\n    \"key\": \"66226\",\n    \"description\": \"three men are giving an interview in to mics.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvn0hikNA1u2b6voo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20926\",\n    \"key\": \"82324\",\n    \"description\": \"a man with a black jacket is dancing while the light turns on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnoyv4nNHR1qfh2h8o1_250\",\n    \"question\": \"what is the color of the lady?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23300\",\n    \"key\": \"37926\",\n    \"description\": \"a lady in brown pops up standing in front of a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbejqsLg3q1r5hca9o1_400\",\n    \"question\": \"what did the person in a white coat run down and into a car?\",\n    \"answer\": \"steps\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11826\",\n    \"key\": \"53913\",\n    \"description\": \"a person in a white coat ran down steps and into a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz46sP1A21rujq2co1_500\",\n    \"question\": \"what is the boy wearing while moving his eyes?\",\n    \"answer\": \"helmet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50303\",\n    \"key\": \"17200\",\n    \"description\": \"a boy is wearing a helmet while moving his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax6k52cmx1tzzyazo1_400\",\n    \"question\": \"what is the man playing a tambourine and another man is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24714\",\n    \"key\": \"30489\",\n    \"description\": \"a man is playing a tambourine and another man is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pom6qgCR1tgl4z1o1_400\",\n    \"question\": \"how many dogs sit and move their heads back and forth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3229\",\n    \"key\": \"75583\",\n    \"description\": \"two dogs sit and move their heads back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndn0rnXruV1tdmffyo1_250\",\n    \"question\": \"what is getting on the man back?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7472\",\n    \"key\": \"31047\",\n    \"description\": \"a goat is getting on the man back.\"\n  },\n  {\n    \"video_name\": \"tumblr_npxgumJwdE1ros9sso1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25781\",\n    \"key\": \"2010\",\n    \"description\": \"a woman wearing a black coat is making gestures with her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadk481D381tx8mn0o1_400\",\n    \"question\": \"what spins off the race track with lots of smoke?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48695\",\n    \"key\": \"53118\",\n    \"description\": \"a car spins off a race track with lots of smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq6ycnMUhD1u2bf8no1_500\",\n    \"question\": \"how many men are sitting beside each other on a couch and one looks at the people behind him?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8558\",\n    \"key\": \"75993\",\n    \"description\": \"two men are sitting beside each other on a couch and one looks at the people behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncy21yF0Kz1sn0ag3o1_400\",\n    \"question\": \"what is the man wearing with a pike crown on it?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25024\",\n    \"key\": \"12421\",\n    \"description\": \"A man is wearing a hat with a pike crown on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdgwaJUcv1tc19umo1_400\",\n    \"question\": \"how many guys are looking at the computer and laughing hysterically?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10349\",\n    \"key\": \"38005\",\n    \"description\": \"two guys are looking at a computer and laughing hysterically.\"\n  },\n  {\n    \"video_name\": \"tumblr_njn0g3ctx41unxzjvo1_500\",\n    \"question\": \"what is the man wearing and smiling and moving his head?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15610\",\n    \"key\": \"68635\",\n    \"description\": \"a man is wearing sunglasses and smiling and moving his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0xoaIiwF1twc1jlo1_250\",\n    \"question\": \"where is the boy with a robotic hand.\",\n    \"answer\": \"? workshop\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47262\",\n    \"key\": \"15110\",\n    \"description\": \"a boy with a robotic hand is in santa 's workshop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc78tkTV3I1tmnu7to1_500\",\n    \"question\": \"what is the woman crashing into a motorcycle while crossing the street?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17917\",\n    \"key\": \"84107\",\n    \"description\": \"a woman is crashing her bike into a motorcycle while crossing the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxi2a5emm1svos5ho1_500\",\n    \"question\": \"what is the man with long hair touching?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52447\",\n    \"key\": \"43546\",\n    \"description\": \"a man with long hair is touching his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_np6tx8PWjl1r3mfwoo1_500\",\n    \"question\": \"where is the woman singing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10346\",\n    \"key\": \"59019\",\n    \"description\": \"a woman is singing in a living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nge2knoRgA1u5wl66o1_400\",\n    \"question\": \"what is the color of the ball?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48227\",\n    \"key\": \"46808\",\n    \"description\": \"a woman bounces a red ball on her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklfp2TT031t0qj4zo1_400\",\n    \"question\": \"where is the man wearing black clothing is dancing.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25091\",\n    \"key\": \"64942\",\n    \"description\": \"a man wearing black clothing is dancing in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_namh3klriu1tk3dj9o1_500\",\n    \"question\": \"how many boys are kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7112\",\n    \"key\": \"83996\",\n    \"description\": \"the two boys are kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdtu2RWrh1tfn4y9o1_250\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41490\",\n    \"key\": \"16129\",\n    \"description\": \"a man is wearing green shorts and is riding a bike.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhki3wxzWJ1rftdx0o1_500\",\n    \"question\": \"how many hands are hugging the naked man who is wearing a shirt?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51111\",\n    \"key\": \"71040\",\n    \"description\": \"two hands are hugging a naked man who is wearing a shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnyjmeHAg51upqmhpo1_250\",\n    \"question\": \"where is the man leaning in to kiss a woman.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA34492\",\n    \"key\": \"39679\",\n    \"description\": \"a man is leaning in to kiss a woman in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nps8vbPpXA1urlrpuo1_400\",\n    \"question\": \"how many hands of different colors are holding hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27259\",\n    \"key\": \"12300\",\n    \"description\": \"two hands of different colors are holding hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nolojmhtzU1sqc2mro1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11037\",\n    \"key\": \"54557\",\n    \"description\": \"the yellow man 's head fell off from his body.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng329lAqkq1sh2a17o1_400\",\n    \"question\": \"how many boys are sitting on the couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19017\",\n    \"key\": \"64842\",\n    \"description\": \"the two boys are sitting on the couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqrag9xM6l1qi27q9o1_250\",\n    \"question\": \"how many men are folding something and are speaking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29968\",\n    \"key\": \"40814\",\n    \"description\": \"two men are folding something and are speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_natmkzuoGH1sfvn09o1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22299\",\n    \"key\": \"65283\",\n    \"description\": \"a young man in a white t-shirt is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqg1r8MD9C1tz9jaqo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5394\",\n    \"key\": \"14490\",\n    \"description\": \"the young man with the red shirt is looking around nervously and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8njyfxZm1rksztxo1_500\",\n    \"question\": \"how many men are looking at each other with blank faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7450\",\n    \"key\": \"94977\",\n    \"description\": \"two men are looking at each other with blank faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfu029ChXA1twvdtso1_250\",\n    \"question\": \"how many sad men are hugging in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47365\",\n    \"key\": \"51823\",\n    \"description\": \"two sad men are hugging in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngl1a42vds1s2yagbo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6433\",\n    \"key\": \"713\",\n    \"description\": \"a white woman with blonde hair is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4o38uibi1sw33zno1_400\",\n    \"question\": \"what is the color of the frisbee?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20834\",\n    \"key\": \"64774\",\n    \"description\": \"a man throws a blue frisbee at a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kithPB8s1twwysgo1_400\",\n    \"question\": \"what is someone applying to an oriental woman?\",\n    \"answer\": \"lipstick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37371\",\n    \"key\": \"45757\",\n    \"description\": \"someone is applying lipstick to an oriental woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rgn7Eq4c1s6g9rgo1_400\",\n    \"question\": \"what is the guy wearing a jacket,\",\n    \"answer\": \"is sitting down and smoking ? cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15824\",\n    \"key\": \"57441\",\n    \"description\": \"a guy wearing a jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne6crjyvCg1sa0lndo1_500\",\n    \"question\": \"what is the man in the forest swinging?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29874\",\n    \"key\": \"76736\",\n    \"description\": \"a man in the forest is swinging a giant stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95kw5hm8o1tfgg7jo1_500\",\n    \"question\": \"how many men in a group are sliding into each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16163\",\n    \"key\": \"102010\",\n    \"description\": \"two men in a group are sliding into each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nceckcd2e91tqr8yro1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3998\",\n    \"key\": \"42995\",\n    \"description\": \"a man wearing a sleeveless black shirt is singing into a mic.\"\n  },\n  {\n    \"video_name\": \"tumblr_nby6co3wog1snxuk3o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27647\",\n    \"key\": \"94301\",\n    \"description\": \"this is a girl that is wearing a red dress and a boy with red hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rbgzcFRe1rs467vo1_400\",\n    \"question\": \"where does the baseball catch a baseball.\",\n    \"answer\": \"? glove\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15913\",\n    \"key\": \"53938\",\n    \"description\": \"a baseball catches a baseball in his glove.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoj4fayWP1slj978o1_400\",\n    \"question\": \"what is sitting next to the box when a white mouse comes out of a hole in the box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46723\",\n    \"key\": \"38644\",\n    \"description\": \"a cat is sitting next to a box when a white mouse comes out of a hole in the box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmxyoTez41ruh5zyo1_400\",\n    \"question\": \"what does the guitarist play on stage?\",\n    \"answer\": \"instrument\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49266\",\n    \"key\": \"44360\",\n    \"description\": \"the guitarist plays his instrument on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8ydiZBPJ1ti9lxjo1_500\",\n    \"question\": \"what raises into the air as a black car spins under it?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29154\",\n    \"key\": \"68244\",\n    \"description\": \"a blue car raises into the air as a black car spins under it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcvis8jts1tbcrm5o1_250\",\n    \"question\": \"what is eating some green leaves on the carpet?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25162\",\n    \"key\": \"3820\",\n    \"description\": \"a black rabbit is eating some green leaves on the carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk98vlIOFW1u8hiixo1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50588\",\n    \"key\": \"70591\",\n    \"description\": \"a black woman with long hair is looking sideways.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mtd8IOiG1t0ojyvo1_250\",\n    \"question\": \"what is the young boy taking off?\",\n    \"answer\": \"sweater\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13765\",\n    \"key\": \"12897\",\n    \"description\": \"a young boy is taking off his sweater.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzlhp8DpG1tgouwlo1_500\",\n    \"question\": \"what are mimicking the toy falling?\",\n    \"answer\": \"puppies\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38973\",\n    \"key\": \"38497\",\n    \"description\": \"two little puppies are mimicking the toy falling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nht2snWzRa1u5imt4o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24673\",\n    \"key\": \"87030\",\n    \"description\": \"a boy with brown hair agrees on something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8fuhJiTs1trjxujo1_250\",\n    \"question\": \"what is the man walking through a museum,\",\n    \"answer\": \"dressed in a suit and carrying ? cane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11169\",\n    \"key\": \"2113\",\n    \"description\": \"a man is walking through a museum,\"\n  },\n  {\n    \"video_name\": \"tumblr_no14zzwIRx1u76qh3o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40356\",\n    \"key\": \"7031\",\n    \"description\": \"a man in black is sitting on the sink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4l35ZHWA1sht3fmo1_250\",\n    \"question\": \"how many officers are arresting the black man on the side of the road?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19033\",\n    \"key\": \"25271\",\n    \"description\": \"two officers are arresting a black man on the side of the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsow8trHJ1tlsvejo1_400\",\n    \"question\": \"what is the shark swimming around?\",\n    \"answer\": \"cage\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25940\",\n    \"key\": \"70700\",\n    \"description\": \"the shark is swimming around a floating cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnokjvV7Wq1uuvmpjo1_250\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51983\",\n    \"key\": \"50472\",\n    \"description\": \"a red car is reversing on a street next to a park.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgrtb47iN1tb0ub4o1_400\",\n    \"question\": \"what is the man throwing at another man?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27057\",\n    \"key\": \"32115\",\n    \"description\": \"a man is throwing a cat at another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvw02a1fQ1t9h1yfo1_400\",\n    \"question\": \"how many women with short hair are laughing and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14374\",\n    \"key\": \"50141\",\n    \"description\": \"two women with short hair are laughing and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8usq5bxK1t6ckbko1_400\",\n    \"question\": \"how many boys are sitting next to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36948\",\n    \"key\": \"57386\",\n    \"description\": \"two boys are sitting next to each other and one of them is wearing a mask.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrac5ifOWX1utou2jo1_400\",\n    \"question\": \"what is walking on the wooden floor inside and being followed around by a person?\",\n    \"answer\": \"crow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50578\",\n    \"key\": \"62192\",\n    \"description\": \"a crow is walking on a wooden floor inside and being followed around by a person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr6x3qfJK1tewds3o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26662\",\n    \"key\": \"39331\",\n    \"description\": \"a guy in a white shirt is lifting the microphone up to sing into.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfj56pBdEU1r9qhhio1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25735\",\n    \"key\": \"86530\",\n    \"description\": \"a man in a gray suit trips and falls into a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvfu0D0re1uo2e5xo1_400\",\n    \"question\": \"where is the woman singing,\",\n    \"answer\": \"and she is dancing in a field . ? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39877\",\n    \"key\": \"64010\",\n    \"description\": \"a woman is singing to herself in a mirror,\"\n  },\n  {\n    \"video_name\": \"tumblr_nklxqvsSIg1t3jcsio1_400\",\n    \"question\": \"where is the man 's cigarette sitting idol.\",\n    \"answer\": \"? ashtray\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8465\",\n    \"key\": \"75852\",\n    \"description\": \"the man 's cigarette is sitting idol in the ashtray.\"\n  },\n  {\n    \"video_name\": \"tumblr_nddhjyJeIU1qfvfmto1_500\",\n    \"question\": \"where is the young woman standing,\",\n    \"answer\": \"looking sad . ? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37202\",\n    \"key\": \"72358\",\n    \"description\": \"a young woman is standing in a hallway with her arms crossed,\"\n  },\n  {\n    \"video_name\": \"tumblr_nais2wBIx11s71nvbo1_500\",\n    \"question\": \"how many people are swimming under the water?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA157\",\n    \"key\": \"61166\",\n    \"description\": \"two people are swimming under the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9pbjfB81W1twvnifo1_250\",\n    \"question\": \"how many men with black shirt are smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32036\",\n    \"key\": \"46887\",\n    \"description\": \"two men with black shirt are smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo3syb9wg1rhy09eo1_500\",\n    \"question\": \"what is speeding down the road and the tire is spinning fast?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17528\",\n    \"key\": \"98035\",\n    \"description\": \"a yellow car is speeding down the road and the tire is spinning fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfm7qADvQ1ste7mro1_250\",\n    \"question\": \"what is the color of the hood?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31175\",\n    \"key\": \"3717\",\n    \"description\": \"a man puts something into his pocket places placed in a green hood.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhwxgPSVu1sntpr0o1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5850\",\n    \"key\": \"29714\",\n    \"description\": \"a white girl with black hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_np7ctpyie61r7t178o1_500\",\n    \"question\": \"what are sitting on the wall wags its tail?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8698\",\n    \"key\": \"52859\",\n    \"description\": \"a cat are sitting on a wall wags its tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtce8TxcX1u7genpo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25106\",\n    \"key\": \"5913\",\n    \"description\": \"a woman with short black hair and black eye makeup smokes a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nao4codJpf1tdnw9bo1_400\",\n    \"question\": \"where is the woman hit with a bucket of water.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27976\",\n    \"key\": \"15264\",\n    \"description\": \"a woman in a chair is hit with a bucket of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhskwbxgar1rseg36o1_250\",\n    \"question\": \"what is startled when the food bowl disappears?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15986\",\n    \"key\": \"3286\",\n    \"description\": \"a dog is startled when the food bowl disappears.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxauxAEZA1ssgk4vo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16474\",\n    \"key\": \"65252\",\n    \"description\": \"while fixing dinner,\"\n  },\n  {\n    \"video_name\": \"tumblr_na5e7cqw5L1r7w2obo1_r3_500\",\n    \"question\": \"what did someone put on a girl and she laughed?\",\n    \"answer\": \"lipstick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9101\",\n    \"key\": \"52541\",\n    \"description\": \"someone put lipstick on a girl and she laughed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrp5s99y11rjquvjo1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28070\",\n    \"key\": \"93128\",\n    \"description\": \"a white dressed girl is running and telling something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ys4qki9V1szkw14o1_400\",\n    \"question\": \"how many women are hugging next to the bed on a floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34580\",\n    \"key\": \"46094\",\n    \"description\": \"two women are hugging next to a bed on a floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9qgxXlr31tmaii4o1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22325\",\n    \"key\": \"9515\",\n    \"description\": \"a man in a red sweater was smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1adbX9Zu1r3mccco1_500\",\n    \"question\": \"what are racing around the track and one starts to go sideways?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10827\",\n    \"key\": \"48587\",\n    \"description\": \"cars are racing around a track and one starts to go sideways.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnz2d7SvNE1un10nuo1_250\",\n    \"question\": \"what is the guy eating?\",\n    \"answer\": \"noodle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13870\",\n    \"key\": \"19568\",\n    \"description\": \"a guy is eating a noodle that is hanging from chopsticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_npabf7wMc81tatohao1_250\",\n    \"question\": \"what is the pig nuzzling and cleaning him off?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15818\",\n    \"key\": \"36414\",\n    \"description\": \"a pig is nuzzling a cat and cleaning him off.\"\n  },\n  {\n    \"video_name\": \"tumblr_notji8LBNw1tqa3xwo1_400\",\n    \"question\": \"what is the color of the mustache?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7357\",\n    \"key\": \"34848\",\n    \"description\": \"a man dressed in a black tuxedo and bow tie,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dkn0IQug1sl89nwo1_400\",\n    \"question\": \"how many men is holding steel bars are walking around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34446\",\n    \"key\": \"25606\",\n    \"description\": \"two men holding steel bars are walking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp20daPPv1ses81bo1_250\",\n    \"question\": \"what is the young man taking off?\",\n    \"answer\": \"t-shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36797\",\n    \"key\": \"5643\",\n    \"description\": \"a young man is taking off his t-shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n5rm1eQHRE1tcnzj9o1_500\",\n    \"question\": \"how many people are all dancing in the room in sync?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26648\",\n    \"key\": \"97836\",\n    \"description\": \"three people are all dancing in a room in sync.\"\n  },\n  {\n    \"video_name\": \"tumblr_n961ixhQyx1ttxslwo1_250\",\n    \"question\": \"how many men is walking with costumes on the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21274\",\n    \"key\": \"21630\",\n    \"description\": \"two men is walking with costumes on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_naha579HaB1tggah7o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7439\",\n    \"key\": \"91224\",\n    \"description\": \"a white man with green shirt is showing a figurine.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrwofTG731u04lbzo1_500\",\n    \"question\": \"how many women look each other in the eyes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49324\",\n    \"key\": \"55099\",\n    \"description\": \"two women look each other in the eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc106iim91rgb5tho1_250\",\n    \"question\": \"what is the man wearing a suit and smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35648\",\n    \"key\": \"3308\",\n    \"description\": \"a man is wearing a suit and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0gax1h8I1uxtjooo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47177\",\n    \"key\": \"68204\",\n    \"description\": \"a sweaty man wearing a gray shirt looks forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_na83b5II9w1r8idi4o1_250\",\n    \"question\": \"what is the long haired woman shooting from her shirt?\",\n    \"answer\": \"missiles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31667\",\n    \"key\": \"85709\",\n    \"description\": \"a long haired woman is shooting missiles from her shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrf7nx6bqW1si8uq7o1_400\",\n    \"question\": \"what does the man with a beard loosen?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21007\",\n    \"key\": \"33298\",\n    \"description\": \"a man with a beard loosens his tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyfekqixM1sj7lv3o1_400\",\n    \"question\": \"where is the man sitting.\",\n    \"answer\": \"? helicopter\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7911\",\n    \"key\": \"33877\",\n    \"description\": \"a man is sitting in a spinning helicopter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfowj6p4zs1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22405\",\n    \"key\": \"63438\",\n    \"description\": \"a blue car drives along a road lined with trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbag3b30JL1ry0b5go1_400\",\n    \"question\": \"what is the beautiful lady with white clothes taking off while sitting?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48359\",\n    \"key\": \"83553\",\n    \"description\": \"a beautiful lady with white clothes is taking off her hat while sitting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflj4vMeEw1rjn473o1_500\",\n    \"question\": \"what is the man with short hair smirking and wearing?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37595\",\n    \"key\": \"26575\",\n    \"description\": \"a man with short hair is smirking and wearing suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkz1d7Ed6a1up1p8qo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24875\",\n    \"key\": \"10910\",\n    \"description\": \"a black man is embracing and kissing a white woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_na580m6GwR1t0ojyvo1_500\",\n    \"question\": \"where are three guys taking a picture.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1025\",\n    \"key\": \"94958\",\n    \"description\": \"three guys are taking a picture in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh8f4tvodl1u6g06xo1_500\",\n    \"question\": \"what is the color of the outfits?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15632\",\n    \"key\": \"100067\",\n    \"description\": \"two people,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndysqmtQga1s9fzcoo1_400\",\n    \"question\": \"what does man catch during a football game?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13343\",\n    \"key\": \"49010\",\n    \"description\": \"man catches a ball during a football game.\"\n  },\n  {\n    \"video_name\": \"tumblr_nephlhawUk1u25ovvo1_400\",\n    \"question\": \"what is going through the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29237\",\n    \"key\": \"63440\",\n    \"description\": \"a red and modern car is going through a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbu0bmRkFb1tya5iuo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45497\",\n    \"key\": \"71634\",\n    \"description\": \"a yellow sports type car is doing a burnout.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1z6y9MoU1qgw2r7o1_400\",\n    \"question\": \"how many girls are having the conversation in a hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46971\",\n    \"key\": \"59922\",\n    \"description\": \"two girls are having a conversation in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nastobJZrU1t9y9heo1_250\",\n    \"question\": \"what is the color of the emblem?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26130\",\n    \"key\": \"78743\",\n    \"description\": \"a man in a black top with a white circular emblem is hidden behind a cloud of smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrmo9arP31s2mg9to1_500\",\n    \"question\": \"what does the woman with paint on her face smile and lifts?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48212\",\n    \"key\": \"88169\",\n    \"description\": \"a woman with paint on her face smiles and lifts a microphone to speak into.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqgugwhX21u5o1buo1_1280\",\n    \"question\": \"what drifts sideways through the snow?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15643\",\n    \"key\": \"57491\",\n    \"description\": \"the car drifts sideways through the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3uyoJnby1tgetb4o1_400\",\n    \"question\": \"what is the color of the shoes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23384\",\n    \"key\": \"68835\",\n    \"description\": \"the girl with blue shoes and orange dress is actually a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda84dI4On1t0ojyvo1_500\",\n    \"question\": \"how many young men are wearing microphones and singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44297\",\n    \"key\": \"90101\",\n    \"description\": \"two young men are wearing microphones and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npabf7wMc81tatohao1_250\",\n    \"question\": \"what is the pig nuzzling and cleaning?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29305\",\n    \"key\": \"36414\",\n    \"description\": \"the pig is nuzzling and cleaning the cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9s0jqqDqU1t345owo1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4859\",\n    \"key\": \"75758\",\n    \"description\": \"a white woman is applying lipstick to her lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfu7zcqXi01u4ynqeo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43171\",\n    \"key\": \"71458\",\n    \"description\": \"a girl with long black hair is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3ak2Hla71rdjyr4o1_250\",\n    \"question\": \"how many young men are touching each other on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7634\",\n    \"key\": \"82631\",\n    \"description\": \"two young men are touching each other on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rex42OdN1rtdvdvo1_250\",\n    \"question\": \"what does the man with a blue shirt catch?\",\n    \"answer\": \"catfish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42511\",\n    \"key\": \"69293\",\n    \"description\": \"a man with a blue shirt catches a catfish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhb7pgWlIn1slj978o1_500\",\n    \"question\": \"what is this eating from a spoon?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41817\",\n    \"key\": \"76483\",\n    \"description\": \"this is a goat eating from a spoon.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdmedUpvr1tyncywo1_400\",\n    \"question\": \"what is the cat attacking?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10837\",\n    \"key\": \"25608\",\n    \"description\": \"a cat is attacking a dog FRAMEQAeatedly until the dog reacts.\"\n  },\n  {\n    \"video_name\": \"tumblr_nku8674mFY1qcrdgyo1_250\",\n    \"question\": \"what is putting her leg on a hand?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34606\",\n    \"key\": \"3555\",\n    \"description\": \"a cat is putting her leg on a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkto6fCkCn1r0ia88o1_400\",\n    \"question\": \"what is the man wearing and talking to other people?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29490\",\n    \"key\": \"80125\",\n    \"description\": \"a man is wearing a baseball cap and talking to other people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhsufcYqd1u0fsqao1_500\",\n    \"question\": \"where are four guys joking very funny.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49375\",\n    \"key\": \"89950\",\n    \"description\": \"four guys are joking very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncg81lAXg91tmaii4o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33349\",\n    \"key\": \"71467\",\n    \"description\": \"a young man in a red shirt laughs and turns his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngj5js922h1qezxdbo1_250\",\n    \"question\": \"what is the color of the liquid?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36099\",\n    \"key\": \"23062\",\n    \"description\": \"a black liquid is falling on an ice cream.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr8j0oYR81r44co8o1_250\",\n    \"question\": \"how many men with long hair and button down shirts are talking into microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35431\",\n    \"key\": \"47782\",\n    \"description\": \"two men with long hair and button down shirts are talking into microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcmzxaV6B1u0gj0xo1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14429\",\n    \"key\": \"54726\",\n    \"description\": \"the girl in white is dancing and telling the guy to come here with her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sskvyvQ71tco194o1_500\",\n    \"question\": \"how many boys are bobbing up and down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29046\",\n    \"key\": \"88611\",\n    \"description\": \"two boys are bobbing up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0ggmHHk21tq3jd9o1_400\",\n    \"question\": \"where are some seasoned vegetables quickly cooked.\",\n    \"answer\": \"? pan\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23907\",\n    \"key\": \"53160\",\n    \"description\": \"some seasoned vegetables are quickly cooked in a pan.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdt6jdQ4C1u494rjo1_500\",\n    \"question\": \"how many boy with curly hair is talking?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50533\",\n    \"key\": \"81207\",\n    \"description\": \"one boy with curly hair is talking and another is listening.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq3ur8qv41unykvpo1_400\",\n    \"question\": \"what leaps into the air and falls face first into the snow?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6131\",\n    \"key\": \"46132\",\n    \"description\": \"a fox leaps into the air and falls face first into the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknr9xW0hU1u922jno2_400\",\n    \"question\": \"how many ballet dancers are dancing in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42576\",\n    \"key\": \"78072\",\n    \"description\": \"two ballet dancers are dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_neygedcDOt1tkhxdko1_400\",\n    \"question\": \"what does the cat tickle tail?\",\n    \"answer\": \"iguana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35996\",\n    \"key\": \"46613\",\n    \"description\": \"a cat tickles an iguana 's tail while the iguana is eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndop0fsg361th018eo1_1280\",\n    \"question\": \"what is the young man wearing black clothing is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16989\",\n    \"key\": \"98189\",\n    \"description\": \"a young man wearing black clothing is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnsu0m0or1rig0zgo1_400\",\n    \"question\": \"what is the guy lighting with another one?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49341\",\n    \"key\": \"34066\",\n    \"description\": \"a guy is lighting his cigarette with another one.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkuwugWpwO1tocarto1_250\",\n    \"question\": \"where is the young lady with blonde hair twirling.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40937\",\n    \"key\": \"39758\",\n    \"description\": \"a young lady with blonde hair is twirling in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9n4s1RWyG1tyxuumo1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13506\",\n    \"key\": \"30158\",\n    \"description\": \"a person in a green sweater was wearing a mask.\"\n  },\n  {\n    \"video_name\": \"tumblr_najvvu3Y0I1se3ifso1_250\",\n    \"question\": \"how many men are riding the bus to some place?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1043\",\n    \"key\": \"57959\",\n    \"description\": \"two men are riding a bus to some place.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklx28Ho9n1sjcdfto1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40256\",\n    \"key\": \"36407\",\n    \"description\": \"a woman wearing a black jacket walks slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_net1unlnyN1sp8qslo1_400\",\n    \"question\": \"what is driving across the large puddle?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42581\",\n    \"key\": \"35630\",\n    \"description\": \"a car is driving across a large puddle.\"\n  },\n  {\n    \"video_name\": \"tumblr_njs60h8O8b1rx2wm4o3_400\",\n    \"question\": \"how many hand is the singer confidently hitting the notes and raising up in the air?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31285\",\n    \"key\": \"19171\",\n    \"description\": \"a singer is confidently hitting the notes and raising one hand up in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqljzrYT1E1utakepo1_500\",\n    \"question\": \"how many guys are singing into the microphone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47666\",\n    \"key\": \"62447\",\n    \"description\": \"two guys are singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxshaRNzf1rlqrz3o1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28459\",\n    \"key\": \"68911\",\n    \"description\": \"a yellow sports car spins out during a fast turn on an indoor track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6nvw51nP1rykobjo1_400\",\n    \"question\": \"what is the color of the sofa?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22249\",\n    \"key\": \"54023\",\n    \"description\": \"a woman sitting on a red sofa is pumping her fists.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9rzjZeoI1rrukfao1_500\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37730\",\n    \"key\": \"92110\",\n    \"description\": \"a boy is wearing a yellow sweater and a hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_na41oyCHeF1rcndp1o1_500\",\n    \"question\": \"how many people sit in chairs facing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11044\",\n    \"key\": \"9702\",\n    \"description\": \"two people sit in chairs facing each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_njxg0u02UC1tdmffyo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27026\",\n    \"key\": \"8666\",\n    \"description\": \"a woman with red hair and a red shirt is looking to her left.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvdp5rZG41s71nvbo1_250\",\n    \"question\": \"what is someone using?\",\n    \"answer\": \"toothbrush\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25740\",\n    \"key\": \"4069\",\n    \"description\": \"someone is using a toothbrush to brush a black bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngaifyb2wi1sk5jw6o1_400\",\n    \"question\": \"how many animal is almost falling from the wood?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5204\",\n    \"key\": \"81694\",\n    \"description\": \"one animal is almost falling from a wood.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1l7twZC21tdpeyco1_250\",\n    \"question\": \"what is the woman wearing,\",\n    \"answer\": \"have taken ? pictures\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27989\",\n    \"key\": \"99723\",\n    \"description\": \"a woman wearing a dark shirt and a second woman wearing a blue striped shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb87qsBCX81r5q7yjo1_400\",\n    \"question\": \"how many people does there 's on a stage doing gymnastic moves?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36054\",\n    \"key\": \"61542\",\n    \"description\": \"there 's two people on a stage doing gymnastic moves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk77q2amba1unawq7o1_250\",\n    \"question\": \"how many girls stood looking at the girl 's hair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31552\",\n    \"key\": \"15856\",\n    \"description\": \"two girls stood looking at the girl 's hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguc5he8Eg1tp0axfo1_400\",\n    \"question\": \"what is the girl with curly dark hair wearing and smiling?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2122\",\n    \"key\": \"32227\",\n    \"description\": \"a girl with curly dark hair is wearing a bright red shirt and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_no109jnJVv1u8k4roo1_500\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49855\",\n    \"key\": \"62452\",\n    \"description\": \"a woman is dancing with a white background and red lines.\"\n  },\n  {\n    \"video_name\": \"tumblr_n937waZcug1tgcs2go1_500\",\n    \"question\": \"what is the girl turning around and falls off?\",\n    \"answer\": \"scarf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4511\",\n    \"key\": \"88619\",\n    \"description\": \"a girl is turning around and her scarf falls off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3x8y1KwP1qla0yao1_500\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39668\",\n    \"key\": \"17928\",\n    \"description\": \"two black men are talking and then bobbing their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdd1skPib1tkdu95o1_400\",\n    \"question\": \"what are moving around on the floor?\",\n    \"answer\": \"birds\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26363\",\n    \"key\": \"41753\",\n    \"description\": \"the little birds are moving around on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndelr27Acc1u0b1c1o1_400\",\n    \"question\": \"what is driving around the race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39240\",\n    \"key\": \"46359\",\n    \"description\": \"a yellow car is driving around a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8v0hbiup01rhmx5uo1_r5_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18241\",\n    \"key\": \"74194\",\n    \"description\": \"a man in a black hair is looking around and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqcuvcowRa1uvsv56o3_400\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28077\",\n    \"key\": \"50602\",\n    \"description\": \"a girl with long straight hair and red lipstick is gesturing with her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfup8IJsd1t95h1uo1_400\",\n    \"question\": \"what is sitting on a stool is using its paws to attack paper in a printer tray?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA610\",\n    \"key\": \"31768\",\n    \"description\": \"a cat sitting on a stool is using its paws to attack paper in a printer tray.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpf8u9tA71u65utjo1_1280\",\n    \"question\": \"what is the person holding and wearing an animated bracelet?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24546\",\n    \"key\": \"77635\",\n    \"description\": \"a person is holding their phone and wearing an animated bracelet.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyqd0AgM41s3z68no1_500\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41005\",\n    \"key\": \"92301\",\n    \"description\": \"this image is of a guy in a blue sweater sitting down and talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw21g7QP51tmcb1ho1_500\",\n    \"question\": \"what is the man singing into a microphone and falls off?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3818\",\n    \"key\": \"61641\",\n    \"description\": \"a man is singing into a microphone and his hat falls off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfehfqRurV1r67on6o1_250\",\n    \"question\": \"what is the man with black hair handing out?\",\n    \"answer\": \"napkin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39519\",\n    \"key\": \"10833\",\n    \"description\": \"the man with black hair is handing out a napkin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjubkFVUp1sorauco1_400\",\n    \"question\": \"how many man is screaming with another man?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20606\",\n    \"key\": \"94513\",\n    \"description\": \"one man is screaming with another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9030eO66Y1ttoztjo1_250\",\n    \"question\": \"where is the young man watching lighting.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22397\",\n    \"key\": \"57488\",\n    \"description\": \"a young man is watching lighting in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesu4nuPbX1tzd5txo1_500\",\n    \"question\": \"how many dark horses with dark manes gallop beside each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50253\",\n    \"key\": \"97005\",\n    \"description\": \"two dark horses with dark manes gallop beside each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyu3z5ACj1t2al9go1_400\",\n    \"question\": \"how many man are laughing at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48022\",\n    \"key\": \"83806\",\n    \"description\": \"a two man are laughing at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9q9ktUtOe1sncaa3o1_400\",\n    \"question\": \"what are three people driving in a high velocity race?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17410\",\n    \"key\": \"54013\",\n    \"description\": \"three people are driving the cars in a high velocity race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nps8vbPpXA1urlrpuo1_400\",\n    \"question\": \"how many different hands are holding each other to show unity?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9831\",\n    \"key\": \"12300\",\n    \"description\": \"two different hands are holding each other to show unity.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdpcfJ9wz1r440y4o1_400\",\n    \"question\": \"where is the woman turning around.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17511\",\n    \"key\": \"32240\",\n    \"description\": \"a woman is turning around in a swivel chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nollsdsfZs1sm6bgxo1_400\",\n    \"question\": \"what is the cream pug licking?\",\n    \"answer\": \"pane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47846\",\n    \"key\": \"31771\",\n    \"description\": \"a cream pug is licking a window pane.\"\n  },\n  {\n    \"video_name\": \"tumblr_nksw6vxA9p1up015ro1_400\",\n    \"question\": \"how many people are kissing sensually on the rooftop?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47457\",\n    \"key\": \"51218\",\n    \"description\": \"two people are kissing sensually on a rooftop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafofu1EYY1t7yv08o1_400\",\n    \"question\": \"how many young people are dancing in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22539\",\n    \"key\": \"2489\",\n    \"description\": \"two young people are dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr6g1Uyiu1qmlbemo1_500\",\n    \"question\": \"how many hands reach around the person to hold them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36824\",\n    \"key\": \"92583\",\n    \"description\": \"two hands reach around a person to hold them.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngj9zpMYzD1u49rjuo1_400\",\n    \"question\": \"what is the man lowing from his mouth and staring at a girl?\",\n    \"answer\": \"beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17920\",\n    \"key\": \"79120\",\n    \"description\": \"a man is lowing a beer from his mouth and staring at a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0ucyKamo1qmvxdro1_400\",\n    \"question\": \"what does the man throw off a pier then jumps onto a bench?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19524\",\n    \"key\": \"40574\",\n    \"description\": \"a man throws his bag off a pier then jumps onto a bench.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncaw26Ufyo1s77tqjo1_500\",\n    \"question\": \"how many man pushes the other man?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4956\",\n    \"key\": \"61327\",\n    \"description\": \"two men are laughing together,\"\n  },\n  {\n    \"video_name\": \"tumblr_notz47rcwY1sq24x8o1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23550\",\n    \"key\": \"19107\",\n    \"description\": \"a girl wearing a dark gray sweater is spinning around in front of a guy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2ar7n3F71u4v3ypo1_400\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10292\",\n    \"key\": \"22058\",\n    \"description\": \"a man is holding an orange cat while it licks a beer can.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb80fudpnn1qcgyflo1_500\",\n    \"question\": \"what does the soccer player get stolen from him?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50443\",\n    \"key\": \"99742\",\n    \"description\": \"a soccer player gets the ball stolen from him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmeplkwIog1ss8ekqo2_540\",\n    \"question\": \"how many men are sitting in the car driving slowly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42509\",\n    \"key\": \"95474\",\n    \"description\": \"two men are sitting in a car driving slowly and a third man appears to be in the back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbzobuxqUi1s3cp8no1_250\",\n    \"question\": \"what are two man taking with a stick?\",\n    \"answer\": \"pictures\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21149\",\n    \"key\": \"9853\",\n    \"description\": \"two man are taking pictures with a stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_niuy3acWZ61shch57o1_250\",\n    \"question\": \"how many guys are sitting and talking while one of them plays with a necklace around his neck?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52956\",\n    \"key\": \"40241\",\n    \"description\": \"two guys are sitting and talking while one of them plays with a necklace around his neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj3brtcOB1sjcvr3o1_400\",\n    \"question\": \"what is the man in a blue shirt blowing and wiping off trunk?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5833\",\n    \"key\": \"27188\",\n    \"description\": \"a man in a blue shirt is blowing and wiping off an elephant 's trunk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2v6fvO681rqh4g8o1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6428\",\n    \"key\": \"62669\",\n    \"description\": \"a man wears a blue suit and pretends to eat a fake hot dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6cjjaMGj1t6ksnpo1_500\",\n    \"question\": \"how many person is throwing something to another person?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41297\",\n    \"key\": \"92517\",\n    \"description\": \"one person is throwing something to another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nduy905vtk1qb7fvmo1_r2_500\",\n    \"question\": \"how many fingers is someone holding up and talking into a microphone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1384\",\n    \"key\": \"99653\",\n    \"description\": \"someone is holding two fingers up and talking into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq60eugCBm1tk2ngvo1_500\",\n    \"question\": \"where is the dog carrying a ball and dunking it.\",\n    \"answer\": \"? net\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21570\",\n    \"key\": \"85137\",\n    \"description\": \"a dog is carrying a ball and dunking it in a net.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8v50LnUt1tk2ngvo1_500\",\n    \"question\": \"what is upsetting the grey cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1957\",\n    \"key\": \"78064\",\n    \"description\": \"a black and white cat is upsetting a grey cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrak3nYu61r95fszo1_250\",\n    \"question\": \"what is the man with long hair holding?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15014\",\n    \"key\": \"11840\",\n    \"description\": \"a man with long hair is holding a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclxdhfsKG1s9ar26o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18988\",\n    \"key\": \"32642\",\n    \"description\": \"a girl is wearing a blue shirt and is covering her face with her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndu5nq965K1u1pokno1_250\",\n    \"question\": \"how many girls show their affection by hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17067\",\n    \"key\": \"2802\",\n    \"description\": \"two girls show their affection by hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrf2yjRx8H1u5hn3po2_540\",\n    \"question\": \"how many men sit and act silly and have fun?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41692\",\n    \"key\": \"86611\",\n    \"description\": \"two men sit and act silly and have fun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazqwgPDxU1tiv0r8o1_500\",\n    \"question\": \"how many males in a hotel bedroom are making gestures with their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39894\",\n    \"key\": \"63749\",\n    \"description\": \"two males in a hotel bedroom are making gestures with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9vr4CKps1qli0myo1_500\",\n    \"question\": \"where is the group of guys surprised.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4868\",\n    \"key\": \"99930\",\n    \"description\": \"a group of guys is surprised in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlskfg3251sk96t7o1_400\",\n    \"question\": \"what breaks open over the construction workers head?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48138\",\n    \"key\": \"85512\",\n    \"description\": \"a concrete bag breaks open over a construction workers head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncx2iyEeec1u0anq1o1_250\",\n    \"question\": \"what does the man wear,\",\n    \"answer\": \"he dances on the stage ? headset\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51307\",\n    \"key\": \"3560\",\n    \"description\": \"a man wears a headset,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkea1hSnO1u1ya6zo1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3525\",\n    \"key\": \"67653\",\n    \"description\": \"a brunette woman in a black top is breathing heavily.\"\n  },\n  {\n    \"video_name\": \"tumblr_nps81duVvm1uxhlvco1_400\",\n    \"question\": \"what falls down on the man and scares him?\",\n    \"answer\": \"spider\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29935\",\n    \"key\": \"45766\",\n    \"description\": \"a fake spider falls down on a man and scares him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckd72nhSk1rbxxq5o1_250\",\n    \"question\": \"how many scantily clad women gyrate and dance while lights are flashing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15606\",\n    \"key\": \"2011\",\n    \"description\": \"three scantily clad women gyrate and dance while lights are flashing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9066tnq0A1tx8mn0o1_400\",\n    \"question\": \"what is creating the lot of smoke during a race?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22134\",\n    \"key\": \"78618\",\n    \"description\": \"a race car is creating a lot of smoke during a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ak83GJ1A1si00qoo1_250\",\n    \"question\": \"what is very excited and jumping up at the door?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25673\",\n    \"key\": \"24051\",\n    \"description\": \"a dog is very excited and jumping up at the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9198gwVHK1tyyj4so1_400\",\n    \"question\": \"where is the quiet bland woman standing.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11577\",\n    \"key\": \"61502\",\n    \"description\": \"a quiet bland woman is standing in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni01txhXte1tx8mn0o1_400\",\n    \"question\": \"what is the guy driving and he has a copilot?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52805\",\n    \"key\": \"79270\",\n    \"description\": \"a guy is driving a race car and he has a copilot.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96l1sX4yo1s3nbpco1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6333\",\n    \"key\": \"88506\",\n    \"description\": \"a white man with black jacket is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9s0jqqDqU1t345owo1_500\",\n    \"question\": \"what is the white woman applying to her lips?\",\n    \"answer\": \"lipstick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2799\",\n    \"key\": \"75758\",\n    \"description\": \"a white woman is applying lipstick to her lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkulv7z8YZ1tzejvio1_400\",\n    \"question\": \"how many people are kissing watched by some other people?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21999\",\n    \"key\": \"97507\",\n    \"description\": \"two people are kissing watched by some other people.\"\n  },\n  {\n    \"video_name\": \"tumblr_n980oaEVwU1t9r6nmo1_1280\",\n    \"question\": \"what is the color of the frame?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41442\",\n    \"key\": \"36035\",\n    \"description\": \"a door has a yellow frame around the peephole.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6a7uQ9h71slj978o1_400\",\n    \"question\": \"where is the furry animal walking.\",\n    \"answer\": \"? bathroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10148\",\n    \"key\": \"48977\",\n    \"description\": \"a furry animal is walking in a bathroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_neh91mOt5X1sh2bv5o1_500\",\n    \"question\": \"what is the young man kissing?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25643\",\n    \"key\": \"69384\",\n    \"description\": \"a young man is kissing a hairy monkey.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuea8VOv61u636iqo1_400\",\n    \"question\": \"what is the color of the ramp?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20175\",\n    \"key\": \"66970\",\n    \"description\": \"she is riding her snowboard on a green ramp.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7rthA4v1rebthyo1_400\",\n    \"question\": \"where does the woman sit.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51470\",\n    \"key\": \"56783\",\n    \"description\": \"a woman sits down and slumps in her chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndv2l5YD0M1rhexgoo1_250\",\n    \"question\": \"what is the woman helping?\",\n    \"answer\": \"skate\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42397\",\n    \"key\": \"25553\",\n    \"description\": \"a woman is helping a child ice skate.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pom6qgCR1tgl4z1o1_400\",\n    \"question\": \"what is the color of the dogs?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30717\",\n    \"key\": \"75583\",\n    \"description\": \"two brown dogs revisiting,\"\n  },\n  {\n    \"video_name\": \"tumblr_npwsugC09s1uxqtu9o1_250\",\n    \"question\": \"what is the man riding down the road without holding the handlebars?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3935\",\n    \"key\": \"48548\",\n    \"description\": \"a man is riding a bicycle down the road without holding the handlebars.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlqzmdkNA1tgetb4o1_400\",\n    \"question\": \"where does the student slide a piece of paper to another student.\",\n    \"answer\": \"? classroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25338\",\n    \"key\": \"88410\",\n    \"description\": \"a student in a classroom slides a piece of paper to another student.\"\n  },\n  {\n    \"video_name\": \"tumblr_noundoF2gu1qjmps3o1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49147\",\n    \"key\": \"65264\",\n    \"description\": \"a woman wearing a white top with brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0yhhKN911situ0so1_500\",\n    \"question\": \"how many men with dark hair are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36827\",\n    \"key\": \"87994\",\n    \"description\": \"two men with dark hair are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_novoqq01ZJ1tecuzto1_500\",\n    \"question\": \"how many fingers is the girl holding to her head while sitting behind another girl?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24102\",\n    \"key\": \"80685\",\n    \"description\": \"a girl is holding two fingers to her head while sitting behind another girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv63mKCzc1ttvffso1_400\",\n    \"question\": \"what did person smoking sit on his car?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25772\",\n    \"key\": \"58080\",\n    \"description\": \"person smoking a cigarette sat on his car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jeioN38z1r26tq5o1_250\",\n    \"question\": \"how many guitarists are playing face to face on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39743\",\n    \"key\": \"5815\",\n    \"description\": \"two guitarists are playing face to face on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngrowlLTYj1tmddexo1_500\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12362\",\n    \"key\": \"22045\",\n    \"description\": \"a woman with long black hair and wearing a white outfit is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzlgndUk11u2r7xso1_400\",\n    \"question\": \"how many men are sitting on the couch and raising one arm in the air?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50737\",\n    \"key\": \"81271\",\n    \"description\": \"three men are sitting on a couch and raising one arm in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_npnyxidXvB1uxh7dyo1_540\",\n    \"question\": \"where is the man laughing and clapping his hands.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13749\",\n    \"key\": \"101184\",\n    \"description\": \"a man is laughing and clapping his hands in a recording studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7niah1Gf1qhzyero1_250\",\n    \"question\": \"how many men in various clothing are looking uncomfortable?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38111\",\n    \"key\": \"13398\",\n    \"description\": \"three men in various clothing are looking uncomfortable.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdinuJxSW1taahxyo1_400\",\n    \"question\": \"how many people are standing beside each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4009\",\n    \"key\": \"77696\",\n    \"description\": \"two people are standing beside each other and one person is looking at the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpvtttnNx1redfc8o1_500\",\n    \"question\": \"what are two boys riding on the road?\",\n    \"answer\": \"scooters\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19208\",\n    \"key\": \"90884\",\n    \"description\": \"two boys are riding scooters on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nab2tmk7fx1sk26zho1_500\",\n    \"question\": \"what is the color of the nails?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26164\",\n    \"key\": \"30255\",\n    \"description\": \"two girls are holding hands,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvbjkjeN31relckwo1_400\",\n    \"question\": \"where does the guy do a circle,\",\n    \"answer\": \"then he does the splits . ? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14580\",\n    \"key\": \"15704\",\n    \"description\": \"a guy does a circle in the hallway,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg95a0V261u6z2a1o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31284\",\n    \"key\": \"32565\",\n    \"description\": \"this image is of a man in a black shirt talking to a FRAMEQAorter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyngbHW2w1sfwliho1_400\",\n    \"question\": \"what is the color of the mustache?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7398\",\n    \"key\": \"37693\",\n    \"description\": \"tongs bring down a white mustache in front of a cats mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrl3x1VLyr1rdwooro1_400\",\n    \"question\": \"how many military men are laughing while smoking the cigarette?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25544\",\n    \"key\": \"83729\",\n    \"description\": \"two military men are laughing while smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_namkzwQCp11qb8t93o1_400\",\n    \"question\": \"how many people are exercising together in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42067\",\n    \"key\": \"58603\",\n    \"description\": \"two people are exercising together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk17uPSV31uanc3bo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37764\",\n    \"key\": \"18608\",\n    \"description\": \"the man in the blue shirt laughed and smiled.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhh45qypGS1tjhld9o1_250\",\n    \"question\": \"what is the dog biting a cats head and humorously retaliates?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27193\",\n    \"key\": \"25179\",\n    \"description\": \"a dog is biting a cats head and the cat humorously retaliates.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6783M04i1sqox3co1_250\",\n    \"question\": \"how many women are wrestling each other in a ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9671\",\n    \"key\": \"49468\",\n    \"description\": \"two women are wrestling each other in a ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbag18Nh9E1s78p7ko1_500\",\n    \"question\": \"what is the girl holding and kisses the snake,\",\n    \"answer\": \"then the snake kisses her ? snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24995\",\n    \"key\": \"59188\",\n    \"description\": \"a girl is holding a snake and kisses the snake,\"\n  },\n  {\n    \"video_name\": \"tumblr_nacngfa5N21r959nro1_400\",\n    \"question\": \"what is running with the mounted rider?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49098\",\n    \"key\": \"35211\",\n    \"description\": \"a horse is running with a mounted rider.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoj4fayWP1slj978o1_400\",\n    \"question\": \"what exits the box,\",\n    \"answer\": \"and it is pushed by a cat ? mouse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35057\",\n    \"key\": \"38644\",\n    \"description\": \"a mouse exits a box,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndia525bro1rc7zl1o1_400\",\n    \"question\": \"what are about to have the fight?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26875\",\n    \"key\": \"77620\",\n    \"description\": \"the cats are about to have a fight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc46avuPqy1sh3qtho1_500\",\n    \"question\": \"how many lovers lay in the bed together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12090\",\n    \"key\": \"72294\",\n    \"description\": \"two lovers lay in a bed together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrg3fVzAP1rms80do1_400\",\n    \"question\": \"what is very surprised and scared?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27660\",\n    \"key\": \"7400\",\n    \"description\": \"a cat is very surprised and scared.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9crpj4At81tbusc0o1_400\",\n    \"question\": \"what jumps back and runs away after it smells someone 's feet?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52214\",\n    \"key\": \"46834\",\n    \"description\": \"a cat jumps back and runs away after it smells someone 's feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncql8t7uii1u073goo1_400\",\n    \"question\": \"what stood on the sofa jumping up?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40575\",\n    \"key\": \"33354\",\n    \"description\": \"a cat stood on a sofa jumping up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefskewDyh1qhk29lo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11908\",\n    \"key\": \"25607\",\n    \"description\": \"a man takes off his green shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuwnkT1vH1rwppz1o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20241\",\n    \"key\": \"38740\",\n    \"description\": \"the little boy with the red shirt is dirty,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbag18Nh9E1s78p7ko1_500\",\n    \"question\": \"what is the woman holding?\",\n    \"answer\": \"snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1460\",\n    \"key\": \"59188\",\n    \"description\": \"a woman is holding a snake that touches her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxndc7o421tej170o2_500\",\n    \"question\": \"what is the woman with long hair dancing and holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21884\",\n    \"key\": \"94895\",\n    \"description\": \"a woman with long hair is dancing and holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdtu4Ywgw1tipyyxo1_250\",\n    \"question\": \"how many girl pokes another girl with a microphone?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30272\",\n    \"key\": \"17377\",\n    \"description\": \"one girl pokes another girl with a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfl4ngA2vq1s71nvbo1_250\",\n    \"question\": \"what are the group of classmates wave waving their arms and tip over?\",\n    \"answer\": \"desks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11526\",\n    \"key\": \"38035\",\n    \"description\": \"a group of classmates wave are waving their arms and tip their desks over.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92oq4Hega1ts0kzio1_400\",\n    \"question\": \"what is following the cat around the house?\",\n    \"answer\": \"duck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36502\",\n    \"key\": \"34144\",\n    \"description\": \"a duck is following a cat around the house.\"\n  },\n  {\n    \"video_name\": \"tumblr_noipe7K8wn1uvy8rfo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10306\",\n    \"key\": \"87621\",\n    \"description\": \"a red car pulls out into traffic using its blinker.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sh1pn4ju1sgl6u3o1_250\",\n    \"question\": \"how many guys are dancing and singing in the room?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1417\",\n    \"key\": \"17230\",\n    \"description\": \"three guys are dancing and singing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngapyhHe7Y1sohuqmo1_250\",\n    \"question\": \"what is licking the bunny rabbit 's ear?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13611\",\n    \"key\": \"36485\",\n    \"description\": \"a kitty cat is licking a bunny rabbit 's ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam9o5Pavd1tstm7eo1_400\",\n    \"question\": \"what is the biker jumping on his bicycle?\",\n    \"answer\": \"hills\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24113\",\n    \"key\": \"66036\",\n    \"description\": \"a biker is jumping hills on his bicycle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkthvo0iK91qmoyvzo1_500\",\n    \"question\": \"how many guys are looking away and smiling under the rain?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36964\",\n    \"key\": \"34410\",\n    \"description\": \"two guys are looking away and smiling under the rain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn2sf8mQdm1urhayqo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35289\",\n    \"key\": \"43815\",\n    \"description\": \"woman wearing a white shirt stands at the door and blows a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7da0oy5t1u3v5ejo1_400\",\n    \"question\": \"where is the girl singing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36403\",\n    \"key\": \"7200\",\n    \"description\": \"a girl is singing softly in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmuiozIZa1u6k7wlo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34470\",\n    \"key\": \"14574\",\n    \"description\": \"a man with long white hair is raising his eyebrows.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7zldRIh21slj978o1_400\",\n    \"question\": \"what jumps over another small monkey?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2691\",\n    \"key\": \"40880\",\n    \"description\": \"a small monkey jumps over another small monkey.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngyugwP9s41qe74g0o1_400\",\n    \"question\": \"what is the man excitedly running up?\",\n    \"answer\": \"stairway\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48551\",\n    \"key\": \"37270\",\n    \"description\": \"a man is excitedly running up a stairway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefmbhSoi71sg891po1_400\",\n    \"question\": \"what is touching and pushing back another cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3699\",\n    \"key\": \"18465\",\n    \"description\": \"a cat is touching and pushing back another cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndtrdwML301t1o9tno1_250\",\n    \"question\": \"how many men are fighting on the balcony?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23471\",\n    \"key\": \"14272\",\n    \"description\": \"two men are fighting on a balcony.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ynh2Hx361qfyx3mo1_400\",\n    \"question\": \"how many young friends are rocking when meeting at the doorway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40528\",\n    \"key\": \"35241\",\n    \"description\": \"two young friends are rocking when meeting at a doorway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebqwlQxEk1sc6vkuo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42900\",\n    \"key\": \"83312\",\n    \"description\": \"a man with black hair and a watch is waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tl89WPwG1rqtkgno2_400\",\n    \"question\": \"what is the young woman smiling and licking?\",\n    \"answer\": \"whisk\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43443\",\n    \"key\": \"64765\",\n    \"description\": \"a young woman is smiling and licking a whisk.\"\n  },\n  {\n    \"video_name\": \"tumblr_naap6eJLbo1t2bkpqo1_500\",\n    \"question\": \"how many boys in a science class are looking or holding flasks?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48015\",\n    \"key\": \"93485\",\n    \"description\": \"five boys in a science class are looking or holding flasks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9of28KjW41td7sqyo1_250\",\n    \"question\": \"what is the girl taking with a cell phone from the audience?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39572\",\n    \"key\": \"70685\",\n    \"description\": \"a girl is taking a picture with a cell phone from the audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckjnmQk1a1siybp5o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44092\",\n    \"key\": \"13898\",\n    \"description\": \"a boy with short dark hair leans his head against a boy with white hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_naftam1wOQ1tui2odo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27134\",\n    \"key\": \"43864\",\n    \"description\": \"a man wearing gray pants and a blue shirt is performing some street dance moves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghostxfzQ1sxw6mio1_500\",\n    \"question\": \"what is swimming in water that is very blue?\",\n    \"answer\": \"dolphin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27689\",\n    \"key\": \"62768\",\n    \"description\": \"a dolphin is swimming in water that is very blue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8nziviJ61tkxcpoo1_250\",\n    \"question\": \"what is the color of the suits?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA53045\",\n    \"key\": \"39669\",\n    \"description\": \"two men in black suits make weird body movements.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncb83m7DU11sp9uxmo1_500\",\n    \"question\": \"what is the color of the shoes?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29535\",\n    \"key\": \"56997\",\n    \"description\": \"feet wearing red shoes are swinging in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmeplkwIog1ss8ekqo2_540\",\n    \"question\": \"where are two men riding while one looks ahead.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33203\",\n    \"key\": \"95474\",\n    \"description\": \"two men are riding in a car while one looks ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdzjchAEe1tepwnvo1_500\",\n    \"question\": \"what is the person with red hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37079\",\n    \"key\": \"25115\",\n    \"description\": \"a person with red hair is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1ldtCFnm1rcnyh1o1_540\",\n    \"question\": \"how many women dance next to the sofa?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45728\",\n    \"key\": \"46123\",\n    \"description\": \"two women dance next to a sofa.\"\n  },\n  {\n    \"video_name\": \"tumblr_njuk1huMBo1unlpflo1_400\",\n    \"question\": \"what is sitting in the chair?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49852\",\n    \"key\": \"63604\",\n    \"description\": \"the cute dog is sitting in the chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfygp4DKxV1tw8vf9o1_400\",\n    \"question\": \"where are two girls performing a flip.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19376\",\n    \"key\": \"19168\",\n    \"description\": \"two girls are performing a flip in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4ssypv3Y1uaujqao1_400\",\n    \"question\": \"what is the color of the frog?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17992\",\n    \"key\": \"35099\",\n    \"description\": \"a green frog reacts to a fingertip approaching him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqu3et3Y4P1ut22z1o1_500\",\n    \"question\": \"where is the young couple kissing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50111\",\n    \"key\": \"55243\",\n    \"description\": \"a young couple is kissing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfe8ohMKD81tkoeqqo1_500\",\n    \"question\": \"how many persons are shown,\",\n    \"answer\": \"with\",\n    \"type\": \"1\",\n    \"vid_id\": \"holding\",\n    \"key\": \"a\",\n    \"description\": \"stuffed animal?\"\n  },\n  {\n    \"video_name\": \"tumblr_nkro0iKPRH1upx448o1_500\",\n    \"question\": \"what is barking in slow motion?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13297\",\n    \"key\": \"72145\",\n    \"description\": \"a dog is barking in slow motion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp2e0Uw4E1sj5pwvo1_400\",\n    \"question\": \"what is the man pushing with two men are standing?\",\n    \"answer\": \"trolley\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38099\",\n    \"key\": \"23814\",\n    \"description\": \"a man is pushing a trolley with two men are standing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rlrmdEu11thghico1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47207\",\n    \"key\": \"28334\",\n    \"description\": \"a girl in a white dress shirt is playing with her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9x50b1Zr1u103uqo1_400\",\n    \"question\": \"how many men shake their heads along to music,\",\n    \"answer\": \"while one of them sings into a microphone ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23767\",\n    \"key\": \"26459\",\n    \"description\": \"two men shake their heads along to music,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w68eOVgx1tif07xo1_400\",\n    \"question\": \"how many stuffed octopuses is the girl holding and waving?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41212\",\n    \"key\": \"36909\",\n    \"description\": \"a girl is holding two stuffed octopuses and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav2g3vCTF1tq2eeqo1_250\",\n    \"question\": \"how many teenagers are dancing on the glass stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36848\",\n    \"key\": \"6666\",\n    \"description\": \"three teenagers are dancing on a glass stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg7uliVyd1rze3q1o1_500\",\n    \"question\": \"where is the man smiling and winking at someone.\",\n    \"answer\": \"? cellphone\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24527\",\n    \"key\": \"86397\",\n    \"description\": \"a man in a cell is smiling and winking at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w8iiyU0l1tqlsu7o1_1280\",\n    \"question\": \"what is the man holding and smiling?\",\n    \"answer\": \"bottles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23762\",\n    \"key\": \"70381\",\n    \"description\": \"a man is holding two alcohol bottles and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nollsdsfZs1sm6bgxo1_400\",\n    \"question\": \"what is the tan and black dog licking?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14181\",\n    \"key\": \"31771\",\n    \"description\": \"the tan and black dog is licking the window.\"\n  },\n  {\n    \"video_name\": \"tumblr_neuot0y1DW1tifif8o1_500\",\n    \"question\": \"where is the man with long hair looking and pulling on his side burns.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7036\",\n    \"key\": \"55393\",\n    \"description\": \"a man with long hair is looking in a mirror and pulling on his side burns.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8kxz4xN4Y1ten01no1_250\",\n    \"question\": \"where is the toddler annoying a sleeping cat.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42110\",\n    \"key\": \"34919\",\n    \"description\": \"a toddler is annoying a sleeping cat in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nprglcBVTc1unyhx2o1_400\",\n    \"question\": \"what is the vehicle approaching surrounded by a fence?\",\n    \"answer\": \"building\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43219\",\n    \"key\": \"65277\",\n    \"description\": \"a vehicle is approaching a building surrounded by a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kuvyUJT91sual3ro1_250\",\n    \"question\": \"what walks in water while wearing a harness?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10216\",\n    \"key\": \"3721\",\n    \"description\": \"a white cat walks in water while wearing a harness.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngm9qdinC11u47jf5o1_250\",\n    \"question\": \"how many guys are on the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36232\",\n    \"key\": \"37360\",\n    \"description\": \"two guys are on the floor,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqa72svB2q1uxws2zo1_400\",\n    \"question\": \"what is the color of the swimsuit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22008\",\n    \"key\": \"24859\",\n    \"description\": \"a woman wearing a black swimsuit is squeezing a bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7d1tsaJ21r5vzuho1_500\",\n    \"question\": \"what is driving around the track?\",\n    \"answer\": \"train\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42212\",\n    \"key\": \"55834\",\n    \"description\": \"a toy train is driving around a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahga9eNFz1tx8mn0o1_400\",\n    \"question\": \"what is driving through sand with a huge cloud of dust behind it?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25969\",\n    \"key\": \"78232\",\n    \"description\": \"a car is driving through sand with a huge cloud of dust behind it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncm95x9qzw1tp450ko1_250\",\n    \"question\": \"what is the man wearing and pushing his hair from his face?\",\n    \"answer\": \"sweater\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37883\",\n    \"key\": \"18493\",\n    \"description\": \"a man is wearing a striped sweater and pushing his hair from his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebvi7SFVZ1twoe5do1_400\",\n    \"question\": \"what is riding down the highway in the rain?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA348\",\n    \"key\": \"50108\",\n    \"description\": \"a car is riding down the highway in the rain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbz29i6Bom1thf1cyo1_250\",\n    \"question\": \"what does the woman try,\",\n    \"answer\": \"but grabs her leg ? panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48795\",\n    \"key\": \"85507\",\n    \"description\": \"a woman tries to walk away,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qe20CCbF1teai02o1_400\",\n    \"question\": \"how many young men make gestures with their arms while singing and walking down a street?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15842\",\n    \"key\": \"67100\",\n    \"description\": \"two young men make gestures with their arms while singing and walking down a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8yfdjJ9921t7hjz2o1_250\",\n    \"question\": \"what snuggles with her teddy bear?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21816\",\n    \"key\": \"42715\",\n    \"description\": \"a kitten snuggles with her teddy bear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjsyhLncl1tujnioo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17870\",\n    \"key\": \"40549\",\n    \"description\": \"a man wearing a white shirt and black tie,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcirl0aQW1tad1t8o1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16354\",\n    \"key\": \"8072\",\n    \"description\": \"a man and a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtbhyWjrF1twsxdzo1_400\",\n    \"question\": \"where did two men sit waving their hands around.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27217\",\n    \"key\": \"78772\",\n    \"description\": \"two men sat in their car waving their hands around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nap1wyU5vb1r8wsomo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11923\",\n    \"key\": \"29689\",\n    \"description\": \"a boy wearing a black shirt is smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyhhgTo8b1tw2zo1o1_400\",\n    \"question\": \"how many man are rowing the boat in a lake?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18020\",\n    \"key\": \"50150\",\n    \"description\": \"three man are rowing a boat in a lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrf6t4Kcu1u9xj6to1_500\",\n    \"question\": \"what is making unusually fast turns around each bend,\",\n    \"answer\": \"? car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1581\",\n    \"key\": \"92709\",\n    \"description\": \"a car is making unusually fast turns around each bend,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdu2a1Q4s1terae6o1_500\",\n    \"question\": \"where is the couple of man and brunette girl sitting.\",\n    \"answer\": \"? bar\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41767\",\n    \"key\": \"100516\",\n    \"description\": \"a couple of man and brunette girl is sitting in the bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_na00hxaoq01so8ipho1_500\",\n    \"question\": \"what does the man raise with a straw to his mouth?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32675\",\n    \"key\": \"79541\",\n    \"description\": \"a man raises a drink with a straw to his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl33fuCCKK1slj978o1_400\",\n    \"question\": \"what is hitting the snow bank and two people fall out then climb back in?\",\n    \"answer\": \"sled\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1658\",\n    \"key\": \"84963\",\n    \"description\": \"a sled is hitting a snow bank and two people fall out then climb back in.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8nijuMcp1tg6h6to1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38480\",\n    \"key\": \"50527\",\n    \"description\": \"a woman in a black outfit wraps a gray jacket around herself and turns.\"\n  },\n  {\n    \"video_name\": \"tumblr_nly094QBPn1upxc78o1_400\",\n    \"question\": \"where is the person with dark hair rocking and looking around.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33385\",\n    \"key\": \"30559\",\n    \"description\": \"a person with dark hair is rocking in a chair and looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0mekSizo1t7kj7go1_400\",\n    \"question\": \"where is the girl caressing her face.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45734\",\n    \"key\": \"32718\",\n    \"description\": \"a girl is caressing her face in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf4x2c4BCf1tid424o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25974\",\n    \"key\": \"19280\",\n    \"description\": \"a man in a white hat is scratching behind his ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfrmsb7tal1t06o0xo1_400\",\n    \"question\": \"how many men roll another man in a tire down a hill?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11272\",\n    \"key\": \"67695\",\n    \"description\": \"two men roll another man in a tire down a hill.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlfii6q03r1s6zpepo1_400\",\n    \"question\": \"what is trying to enter somewhere but she is jumping around?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51197\",\n    \"key\": \"40034\",\n    \"description\": \"a cat is trying to enter somewhere but she is jumping around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n86ladW4vm1sp03kqo1_500\",\n    \"question\": \"what is the woman holding?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52794\",\n    \"key\": \"100060\",\n    \"description\": \"a woman holding a cigarette rubbing a tear off her face,\"\n  },\n  {\n    \"video_name\": \"tumblr_no0wtz5OTs1sj8qgio1_250\",\n    \"question\": \"what is the color of the blouse?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33512\",\n    \"key\": \"39640\",\n    \"description\": \"a woman with a white blouse is speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfv8pOFQ91r3s7e9o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45802\",\n    \"key\": \"4875\",\n    \"description\": \"four young girls with brown hair laugh and pose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9vqonvXy1s3i7d8o1_400\",\n    \"question\": \"how many men are hugging and talking and smiling?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21879\",\n    \"key\": \"88554\",\n    \"description\": \"three men are hugging and talking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7eheT0Oz1r272ido1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7957\",\n    \"key\": \"76772\",\n    \"description\": \"a white girl is struggling with another girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_na898jZGcd1rreivlo1_400\",\n    \"question\": \"how many men are running and sliding on plastic?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47575\",\n    \"key\": \"79268\",\n    \"description\": \"two men are running and sliding on plastic.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyzpvxcjK1tddirao1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52250\",\n    \"key\": \"84640\",\n    \"description\": \"the ladies are being escorted out of the vehicle by the man in the blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nco9okZ0s41qexaavo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18708\",\n    \"key\": \"27595\",\n    \"description\": \"a girl with black hair tilts her head to the left.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1otxgnPQ1rlmonbo1_250\",\n    \"question\": \"what is the bird taking from a person 's hand?\",\n    \"answer\": \"nut\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40033\",\n    \"key\": \"13333\",\n    \"description\": \"a bird is taking a nut from a person 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrwc25SFj1tjeooqo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27436\",\n    \"key\": \"84675\",\n    \"description\": \"a man is hugging a white young woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevw1awXz41slj978o1_400\",\n    \"question\": \"how many men are lifting up the woman into a basketball hoop?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12024\",\n    \"key\": \"22090\",\n    \"description\": \"four men are lifting up a woman into a basketball hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rb0b8mi11qfrgvko1_r2_500\",\n    \"question\": \"how many young men sing on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21089\",\n    \"key\": \"62588\",\n    \"description\": \"two young men sing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90zk6uWPr1thp3rho1_r1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6943\",\n    \"key\": \"70210\",\n    \"description\": \"someone is waving out the window of a white car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay0kzAbkR1twcgnlo1_400\",\n    \"question\": \"what are three people climbing stairs and two of them are wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19887\",\n    \"key\": \"27538\",\n    \"description\": \"three people are climbing stairs and two of them are wearing hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91l33EgZY1rpqn0wo1_500\",\n    \"question\": \"what is spinning on the road way?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39270\",\n    \"key\": \"73230\",\n    \"description\": \"a small car is spinning on a road way.\"\n  },\n  {\n    \"video_name\": \"tumblr_n985xvic8d1ssp6pho1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44730\",\n    \"key\": \"59052\",\n    \"description\": \"a handsome young man with a white shirt is raising his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwegtvbzZ1u9u0ofo1_1280\",\n    \"question\": \"where was the man spinning around.\",\n    \"answer\": \"? floor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14331\",\n    \"key\": \"31860\",\n    \"description\": \"a man was spinning around on his head in the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndoqxcn3iN1sd2bbjo1_400\",\n    \"question\": \"how many women is this image of laughing and talking together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10718\",\n    \"key\": \"20274\",\n    \"description\": \"this image is of three women laughing and talking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_novff6Z8vc1stagfqo1_1280\",\n    \"question\": \"where is the man signing something.\",\n    \"answer\": \"? microphone\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21783\",\n    \"key\": \"99558\",\n    \"description\": \"a man is signing something in the microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqr8fvbChQ1u0ql9oo1_500\",\n    \"question\": \"how many women are in a kitchen one leaves and gets clothes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30104\",\n    \"key\": \"58093\",\n    \"description\": \"two women are in a kitchen one leaves and gets clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrelopx9uJ1uzo2v4o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24310\",\n    \"key\": \"46747\",\n    \"description\": \"a woman in red dress at a bar is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8kvjkqs61tfeeomo1_500\",\n    \"question\": \"how many scantily clothed singers are dancing on stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA768\",\n    \"key\": \"100314\",\n    \"description\": \"three scantily clothed singers are dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9nxz6cyx11sjuzlno1_400\",\n    \"question\": \"how many parakeets appear to kiss each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16559\",\n    \"key\": \"36176\",\n    \"description\": \"two parakeets appear to kiss each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7876agwW1slwrsuo1_400\",\n    \"question\": \"what walks on the wooden floor with its tail up?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14220\",\n    \"key\": \"16802\",\n    \"description\": \"a kitten walks on a wooden floor with its tail up.\"\n  },\n  {\n    \"video_name\": \"tumblr_npstuoilBW1uxd2coo1_500\",\n    \"question\": \"what is the man singing and playing on stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7906\",\n    \"key\": \"79444\",\n    \"description\": \"the man is singing and playing his guitar on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0l1eo8tj1tjcqx1o1_500\",\n    \"question\": \"how many men are playing soccer together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21343\",\n    \"key\": \"99747\",\n    \"description\": \"three men are playing soccer together and one makes are turn with the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfv5xzlgj31u25yojo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15169\",\n    \"key\": \"87470\",\n    \"description\": \"a guy wearing a blue shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4ijsCm9m1tt7yxgo1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA53052\",\n    \"key\": \"19980\",\n    \"description\": \"a boy wearing a black t-shirt is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfj9394H2n1r8d2fho1_1280\",\n    \"question\": \"how many men are driving fast in the car and yelling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48702\",\n    \"key\": \"94316\",\n    \"description\": \"two men are driving fast in a car and yelling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad0y6Ci4u1tjbpqfo1_250\",\n    \"question\": \"where is the man with blonde hair and wearing gloves sitting.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41593\",\n    \"key\": \"47065\",\n    \"description\": \"a man with blonde hair and wearing gloves is sitting in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfs4rqmTxc1rt48xfo1_r1_1280\",\n    \"question\": \"how many ball players are dancing around on the field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37361\",\n    \"key\": \"95471\",\n    \"description\": \"two ball players are dancing around on the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxcffAmRy1sg50dyo1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35199\",\n    \"key\": \"51351\",\n    \"description\": \"a boy wearing a red sweater stuck out his tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpu6sfKuH1qd80wyo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10320\",\n    \"key\": \"41614\",\n    \"description\": \"a guy with dark hair is standing beside a guy with reddish brown hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5w7sROwX1tjdvfuo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23648\",\n    \"key\": \"80200\",\n    \"description\": \"a gray cat runs around on white bed sheets.\"\n  },\n  {\n    \"video_name\": \"tumblr_no43ynobD21u21kjao1_400\",\n    \"question\": \"how many woman does there 's snapping her fingers shaking her arms talking?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9462\",\n    \"key\": \"48617\",\n    \"description\": \"there 's one woman snapping her fingers shaking her arms talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazvrzRVVm1skz7b3o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29782\",\n    \"key\": \"93992\",\n    \"description\": \"a man in a red jacket sings and moves around on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9toz2pYc1t5lviko1_250\",\n    \"question\": \"what is riding on the mine cart?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8673\",\n    \"key\": \"27726\",\n    \"description\": \"a large dog is riding on a mine cart.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0u0kCLwc1rn11fao1_250\",\n    \"question\": \"what is the color of the shorts?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37476\",\n    \"key\": \"24489\",\n    \"description\": \"a man wearing black shorts is jumping and sliding down a hill.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelhankJre1tg6141o1_500\",\n    \"question\": \"what are slowly falling down around the man?\",\n    \"answer\": \"feathers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4723\",\n    \"key\": \"96576\",\n    \"description\": \"blue feathers are slowly falling down around a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy0j2MwQW1u2mmn8o1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36677\",\n    \"key\": \"29016\",\n    \"description\": \"a black guy starts laughing near a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqmzb7uPVV1r38uzco1_400\",\n    \"question\": \"what did the woman have?\",\n    \"answer\": \"dresses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20400\",\n    \"key\": \"25779\",\n    \"description\": \"the woman had many dresses to perform.\"\n  },\n  {\n    \"video_name\": \"tumblr_noumotOiwV1spw05ko1_250\",\n    \"question\": \"what is the woman putting her glasses and taking?\",\n    \"answer\": \"pipe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52154\",\n    \"key\": \"36480\",\n    \"description\": \"a woman is putting her glasses and taking a pipe.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtdkz4VlK1qcqzi5o1_400\",\n    \"question\": \"what does the man set on fire?\",\n    \"answer\": \"sink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24929\",\n    \"key\": \"60908\",\n    \"description\": \"a man sets his kitchen sink on fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfs8trHLG1slj978o1_400\",\n    \"question\": \"what is playing with another animal which is in a toilet?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34003\",\n    \"key\": \"76304\",\n    \"description\": \"a dog is playing with another animal which is in a toilet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqkg1uZkKU1r91uyxo1_540\",\n    \"question\": \"what is the girl adjusting?\",\n    \"answer\": \"wristband\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6011\",\n    \"key\": \"96749\",\n    \"description\": \"a girl is adjusting her pink wristband.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9u0pdSej1uyj8ozo1_250\",\n    \"question\": \"what is the girl shooting,\",\n    \"answer\": \"then jumps up to celebrate ? pool\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6249\",\n    \"key\": \"10795\",\n    \"description\": \"a girl is shooting pool,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfv6g2nUvC1s3lpszo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6749\",\n    \"key\": \"45443\",\n    \"description\": \"a boy in a red shirt is holding a plastic bottle as he spins around.\"\n  },\n  {\n    \"video_name\": \"tumblr_negdm6AfLD1tyu9j8o1_250\",\n    \"question\": \"what is the man with black hair smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16297\",\n    \"key\": \"13780\",\n    \"description\": \"a man with black hair is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqdnyswOsw1qh9fn6o1_400\",\n    \"question\": \"how many penguins swim back and forth in the water?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52401\",\n    \"key\": \"46476\",\n    \"description\": \"two penguins swim back and forth in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7miq1rPj1qdauj7o1_400\",\n    \"question\": \"what is the short haired man playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46061\",\n    \"key\": \"36901\",\n    \"description\": \"a short haired man is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk35kbgEms1u8aa6qo1_540\",\n    \"question\": \"what does the young man throw into the air?\",\n    \"answer\": \"confetti\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36785\",\n    \"key\": \"37377\",\n    \"description\": \"a young man throws brightly colored confetti into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nery6zlDcp1s5p0j3o1_400\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29264\",\n    \"key\": \"5676\",\n    \"description\": \"a man in a gray sweatshirt walks while carrying a bottle in a brown bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjwx6K3OR1tlujlao1_250\",\n    \"question\": \"how many young men are standing in the hallway and gesturing with their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25959\",\n    \"key\": \"3760\",\n    \"description\": \"two young men are standing in a hallway and gesturing with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngx9rcVWEc1qdlgqgo1_250\",\n    \"question\": \"how many people are holding hands and then letting go?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14947\",\n    \"key\": \"95667\",\n    \"description\": \"two people are holding hands and then letting go.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd2n3u5VLQ1tdmffyo1_250\",\n    \"question\": \"where is the man doing somersaults.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31046\",\n    \"key\": \"21600\",\n    \"description\": \"a man is doing somersaults in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6d4afATN1tg9gzmo1_400\",\n    \"question\": \"how many women are standing together one is waving the other two are making faces?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44645\",\n    \"key\": \"3214\",\n    \"description\": \"three women are standing together one is waving the other two are making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfz5jf3a3j1sl4e5go1_500\",\n    \"question\": \"what is in progress while a female spectator takes photos?\",\n    \"answer\": \"race\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12627\",\n    \"key\": \"91711\",\n    \"description\": \"a car race is in progress while a female spectator takes photos.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw0q7MHTa1rwofevo1_500\",\n    \"question\": \"what is the pie and the top pulled back and there 's hugging a teddy bear?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26159\",\n    \"key\": \"80243\",\n    \"description\": \"a pie and the top is pulled back and there 's a kitten hugging a teddy bear.\"\n  },\n  {\n    \"video_name\": \"tumblr_netj73fZBe1rpee4eo1_400\",\n    \"question\": \"what is the young man playing the drums and twirling?\",\n    \"answer\": \"drumsticks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29310\",\n    \"key\": \"11349\",\n    \"description\": \"a young man is playing the drums and twirling the drumsticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n993yi7TgY1sjuzlno1_400\",\n    \"question\": \"what is crawling through the paper towel tube?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42955\",\n    \"key\": \"8582\",\n    \"description\": \"a bird is crawling through a paper towel tube.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfeetqIQkZ1so9ango1_400\",\n    \"question\": \"what is the guy holding and waving it around?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24584\",\n    \"key\": \"35037\",\n    \"description\": \"a guy is holding a hot dog and waving it around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrysqqJNN1tumcowo1_400\",\n    \"question\": \"what is the beautiful man with a shirt touching?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22085\",\n    \"key\": \"2301\",\n    \"description\": \"a beautiful man with a shirt is touching his butt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndi35jWc6Z1tm6rguo1_250\",\n    \"question\": \"how many guys are sitting at the table in a restaurant?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38709\",\n    \"key\": \"47727\",\n    \"description\": \"two guys are sitting at a table in a restaurant.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyy4pkeKZ1qdch8fo1_1280\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15140\",\n    \"key\": \"93636\",\n    \"description\": \"a man with short hair stands in a red room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedtlpS43B1trwdnlo1_400\",\n    \"question\": \"what is the woman kneading into a flat circular shape?\",\n    \"answer\": \"dough\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10932\",\n    \"key\": \"42030\",\n    \"description\": \"a woman is kneading dough into a flat circular shape.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngo9zfHkp61qixslso1_400\",\n    \"question\": \"what is bringing the toy and then stepping back?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4875\",\n    \"key\": \"13941\",\n    \"description\": \"a dog is bringing a toy and then stepping back.\"\n  },\n  {\n    \"video_name\": \"tumblr_netczdYQLZ1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37235\",\n    \"key\": \"63490\",\n    \"description\": \"a red car is passing a white car on the road while a man is driving it.\"\n  },\n  {\n    \"video_name\": \"tumblr_np58jvmXRX1rl84n7o1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5548\",\n    \"key\": \"49007\",\n    \"description\": \"a guy in a blue sports uniform,\"\n  },\n  {\n    \"video_name\": \"tumblr_nakv21BDwu1s7ue6co1_400\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"penguin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47085\",\n    \"key\": \"60312\",\n    \"description\": \"a man is holding a baby penguin.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6ruvUUJV1tiqkyno1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40512\",\n    \"key\": \"2433\",\n    \"description\": \"a boy with a black shirt is waving his hand shyly.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wad9kYd71s2z19ko1_400\",\n    \"question\": \"what is the color of the cove?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46844\",\n    \"key\": \"61253\",\n    \"description\": \"a woman wearing a white hair cove,\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9h3dC7Wb1u6bdo9o1_400\",\n    \"question\": \"how many men are dancing in the bathroom?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21439\",\n    \"key\": \"54185\",\n    \"description\": \"three men are dancing in a bathroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk25ppxz3K1u300dqo1_500\",\n    \"question\": \"what is jumping over the man and a wall?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47352\",\n    \"key\": \"36905\",\n    \"description\": \"a dog is jumping over a man and a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczkhrfc9P1ta3dyjo1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41382\",\n    \"key\": \"83665\",\n    \"description\": \"this image is of a guy in a white shirt with sunglasses on dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0zbqqPTH1tmeg7go1_500\",\n    \"question\": \"how many models walk on the runway while wearing a variety of fall outerwear?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51376\",\n    \"key\": \"87229\",\n    \"description\": \"four models walk on a runway while wearing a variety of fall outerwear.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yr1wYMdx1r6oiiao1_500\",\n    \"question\": \"how many women are trying to catch the car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27987\",\n    \"key\": \"84810\",\n    \"description\": \"two women are trying to catch a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc45y9Enzy1ttogc7o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15234\",\n    \"key\": \"37616\",\n    \"description\": \"a woman with short red hair is raising her glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgbm5yvBo1totmz5o1_250\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51372\",\n    \"key\": \"48940\",\n    \"description\": \"a white man with black glasses is yawning.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90zf3auVF1tekwoeo1_400\",\n    \"question\": \"what is the woman in a hat aiming at a man?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32512\",\n    \"key\": \"52992\",\n    \"description\": \"a woman in a hat is aiming a gun at a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbplrtZnS81tbjfazo1_400\",\n    \"question\": \"what is swimming in the water?\",\n    \"answer\": \"shark\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16675\",\n    \"key\": \"41760\",\n    \"description\": \"a gray shark is swimming in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pjlmexAb1qlbtloo1_1280\",\n    \"question\": \"what is person riding down the rode?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19808\",\n    \"key\": \"50229\",\n    \"description\": \"person is riding a motorcycle down the rode.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3mstXSp41rp0ayqo1_400\",\n    \"question\": \"how many men is sitting in an embrace converse with another man at a party?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49325\",\n    \"key\": \"63496\",\n    \"description\": \"two men sitting in an embrace converse with another man at a party.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6ic4G9Lt1sm28e8o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38423\",\n    \"key\": \"7409\",\n    \"description\": \"a woman is walking on grass with a white dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfb17xXE8j1tvn491o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26485\",\n    \"key\": \"69769\",\n    \"description\": \"a man is staying on a chair with a black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklmwmP2fN1r26jdlo1_400\",\n    \"question\": \"what is man with white shirt touching?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1211\",\n    \"key\": \"69501\",\n    \"description\": \"man with white shirt is touching his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_neddm7VXxe1u2b0jwo1_400\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40722\",\n    \"key\": \"80932\",\n    \"description\": \"a cat green carpet crawling against and falling fell.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkpvu8gTpu1sp6rs3o1_500\",\n    \"question\": \"what shoots water at other girls?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15555\",\n    \"key\": \"100032\",\n    \"description\": \"a pop star shoots water at other girls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgadlovZC1tk2ngvo1_250\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6676\",\n    \"key\": \"11473\",\n    \"description\": \"a white dog is trying to bite water coming out of the spout,\"\n  },\n  {\n    \"video_name\": \"tumblr_npozmb4kvw1uy2r7ro1_400\",\n    \"question\": \"what smells the strawberry and smacks it out of person 's hand?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46192\",\n    \"key\": \"37250\",\n    \"description\": \"kitten smells a strawberry and smacks it out of person 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nollsdsfZs1sm6bgxo1_400\",\n    \"question\": \"what is licking the clear glass wall?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8309\",\n    \"key\": \"31771\",\n    \"description\": \"a small dog is licking a clear glass wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxl2nzKDV1u4v3ypo1_400\",\n    \"question\": \"what is kneading his paws on the back of a pug dog?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36975\",\n    \"key\": \"36764\",\n    \"description\": \"a gray cat is kneading his paws on the back of a pug dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkublcusyZ1tlxkplo1_250\",\n    \"question\": \"where is the woman singing and dressed in shorts and a sleeveless top.\",\n    \"answer\": \"? microphone\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19089\",\n    \"key\": \"4776\",\n    \"description\": \"a woman is singing in a microphone and dressed in shorts and a sleeveless top.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng850mh9Uy1slj978o1_400\",\n    \"question\": \"what is being scratched and is kicking his leg?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45671\",\n    \"key\": \"34151\",\n    \"description\": \"a dog is being scratched and is kicking his leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_negevo44tS1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33667\",\n    \"key\": \"63576\",\n    \"description\": \"a blue car is driving along a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjbm8zizK1txgyxzo1_500\",\n    \"question\": \"what is the cute girl holding?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8631\",\n    \"key\": \"83843\",\n    \"description\": \"a cute girl is holding her hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbq3w171PU1snwcf6o1_400\",\n    \"question\": \"what is the man carrying?\",\n    \"answer\": \"drinks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29565\",\n    \"key\": \"93083\",\n    \"description\": \"a man is carrying drinks that are too heavy.\"\n  },\n  {\n    \"video_name\": \"tumblr_naand6DjAO1te592qo1_400\",\n    \"question\": \"how many others spin around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40241\",\n    \"key\": \"11636\",\n    \"description\": \"a woman laughs and covers her mouth,\"\n  },\n  {\n    \"video_name\": \"tumblr_na9rbrw8PT1tjys71o1_250\",\n    \"question\": \"how many teenage boys make peace signs and wave?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31276\",\n    \"key\": \"68864\",\n    \"description\": \"two teenage boys make peace signs and wave.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjimhejuj1uawws4o1_250\",\n    \"question\": \"how many women go in for the very big hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14681\",\n    \"key\": \"53230\",\n    \"description\": \"two women go in for a very big hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkwz6QpbC1unkbhwo1_250\",\n    \"question\": \"how many girl moves in shirt,\",\n    \"answer\": \"opens her mouth and smiles ? one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23169\",\n    \"key\": \"7462\",\n    \"description\": \"one girl moves in shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_n6h5on9Mx21ql8b6oo1_400\",\n    \"question\": \"what is playing with someone 's finger and falls over?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13768\",\n    \"key\": \"44392\",\n    \"description\": \"a cat is playing with someone 's finger and falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nctc6eHbir1qz4tu8o1_250\",\n    \"question\": \"what opens and there stands the boy in a shirt and tie and sheers reach out and decapitate him?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37503\",\n    \"key\": \"66813\",\n    \"description\": \"a door opens and there stands a boy in a shirt and tie and sheers reach out and decapitate him.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uscu0MKn1tdve1no1_r1_500\",\n    \"question\": \"how many men are singing and dancing in the living room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2991\",\n    \"key\": \"68564\",\n    \"description\": \"the two men are singing and dancing in a living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_najbft9X221tdv1l9o1_250\",\n    \"question\": \"how many hands are beginning to hold together tightly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8235\",\n    \"key\": \"21190\",\n    \"description\": \"two hands are beginning to hold together tightly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0fz8rTT21rc6zqzo1_250\",\n    \"question\": \"how many women dance while is singing into microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13519\",\n    \"key\": \"7769\",\n    \"description\": \"two women dance while singing into microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndt9dsgt7K1tk8b8io1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16429\",\n    \"key\": \"9043\",\n    \"description\": \"a woman in black suddenly stops moving and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0jvfEMjs1rgxj3lo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15607\",\n    \"key\": \"7146\",\n    \"description\": \"a group of guys with white suit is saying goodbye in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9y6qQFYI1s3hs94o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31638\",\n    \"key\": \"25498\",\n    \"description\": \"a man in a red shirt runs his hand through his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_njukcfEiK11r1n65mo1_400\",\n    \"question\": \"what is riding the skate board at a park?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13211\",\n    \"key\": \"40925\",\n    \"description\": \"a cat is riding a skate board at a park.\"\n  },\n  {\n    \"video_name\": \"tumblr_nds8crBvqP1tml03go1_400\",\n    \"question\": \"what is trying to scratch the person?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26221\",\n    \"key\": \"53863\",\n    \"description\": \"a cat is trying to scratch a person.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngmnfpKAs41u3y59to1_250\",\n    \"question\": \"where are two person dancing a song.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29417\",\n    \"key\": \"34592\",\n    \"description\": \"two person in a room are dancing a song.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwl0h91fW1s3g7rco1_400\",\n    \"question\": \"where is the man smoking a cigarette.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26479\",\n    \"key\": \"33011\",\n    \"description\": \"a man is smoking a cigarette in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevu1x7R4F1tzeksuo1_400\",\n    \"question\": \"how many men are going in the black car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26922\",\n    \"key\": \"67414\",\n    \"description\": \"two men are going in a black car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2v5yMTI61tibdkoo1_500\",\n    \"question\": \"where do the man and a woman hold up a dog and a box of cupcake mix.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45592\",\n    \"key\": \"70971\",\n    \"description\": \"a man and a woman in their kitchen hold up a dog and a box of cupcake mix.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyxc5sgiN1r97gquo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8569\",\n    \"key\": \"29414\",\n    \"description\": \"a woman with braided pig tails,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkx42t9nu51tf10cmo1_500\",\n    \"question\": \"how many man is dancing behind another man who is standing still?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27392\",\n    \"key\": \"73009\",\n    \"description\": \"one man is dancing behind another man who is standing still.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q2q6OWBt1twyq43o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50029\",\n    \"key\": \"86757\",\n    \"description\": \"a woman in a blue dress is ripping her sunglasses off and walks down the center of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_no1e92K0Zi1ts7wbfo1_500\",\n    \"question\": \"how many men have the singing battle with back up dancers?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20661\",\n    \"key\": \"49453\",\n    \"description\": \"two men have a singing battle with back up dancers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4fsjihYG1u0lsh1o1_400\",\n    \"question\": \"what is going on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39098\",\n    \"key\": \"84128\",\n    \"description\": \"a car is going on a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgxa35Hin1tztcuxo1_500\",\n    \"question\": \"how many young men are sitting and talking together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38439\",\n    \"key\": \"101318\",\n    \"description\": \"two young men are sitting and talking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh16i2pNv61s6zpepo1_400\",\n    \"question\": \"how many men are doing martial arts?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5909\",\n    \"key\": \"25142\",\n    \"description\": \"Two men are doing martial arts and one gets kicked in the head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndjshjXoB91s71nvbo1_250\",\n    \"question\": \"where is the man trying to carry an animal.\",\n    \"answer\": \"? bag\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40160\",\n    \"key\": \"5971\",\n    \"description\": \"a man is trying to carry an animal in a bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsp5rS8rC1r78dgto1_400\",\n    \"question\": \"where are some football players talking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12582\",\n    \"key\": \"5809\",\n    \"description\": \"some football players are talking in the locker room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhnomg0r01u1pokno1_250\",\n    \"question\": \"what is the cat wearing a costume is eating?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28286\",\n    \"key\": \"53313\",\n    \"description\": \"a cat wearing a costume is eating a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf01q0SeKq1t657loo1_400\",\n    \"question\": \"where are two young boys fighting.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27942\",\n    \"key\": \"59903\",\n    \"description\": \"two young boys are fighting in a boxing room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0urrvsyq1uaoej6o1_400\",\n    \"question\": \"what is walking across the snow and attacks prey?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA870\",\n    \"key\": \"45806\",\n    \"description\": \"a fox is walking across the snow and attacks prey.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lnqa0TkE1rac9v2o1_400\",\n    \"question\": \"how many men kiss as one of the men has no shirt on?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38386\",\n    \"key\": \"47875\",\n    \"description\": \"two men kiss as one of the men has no shirt on.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9em29g9jM1qmsb71o1_400\",\n    \"question\": \"how many woman are staring at someone else?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19647\",\n    \"key\": \"100539\",\n    \"description\": \"two woman are staring at someone else.\"\n  },\n  {\n    \"video_name\": \"tumblr_nalre1PM7t1tu2taqo1_400\",\n    \"question\": \"what is the handsome young man drinking?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5100\",\n    \"key\": \"58219\",\n    \"description\": \"a handsome young man is drinking a bear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3vj0whpR1s93eg4o1_400\",\n    \"question\": \"what eats some human food?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41713\",\n    \"key\": \"38217\",\n    \"description\": \"a black bear mes-singly eats some human food.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vz1u2IKj1tz9jaqo1_400\",\n    \"question\": \"how many soccer players are playing for fun on the field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7097\",\n    \"key\": \"96194\",\n    \"description\": \"two soccer players are playing for fun on the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzwg34b4x1rtyk4po1_500\",\n    \"question\": \"what is the woman playing and jumping up and down?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29832\",\n    \"key\": \"45728\",\n    \"description\": \"a woman is playing a guitar and jumping up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc41azSmAA1ru030mo1_400\",\n    \"question\": \"what is the woman wearing red glasses is eating?\",\n    \"answer\": \"cookie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52781\",\n    \"key\": \"31088\",\n    \"description\": \"a woman wearing red glasses is eating a chocolate chip cookie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nradr0LvQR1tb2qw4o1_250\",\n    \"question\": \"what is the woman carrying and trying to blow the smoke?\",\n    \"answer\": \"candle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16014\",\n    \"key\": \"482\",\n    \"description\": \"a woman is carrying a big candle and trying to blow the smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd2h3kKDkD1tw2zo1o2_r3_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12963\",\n    \"key\": \"44297\",\n    \"description\": \"a woman in a white dress is riding a carriage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xhwswWAH1qi4n2uo1_500\",\n    \"question\": \"how many men is holding microphones dance and bump their butts together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9214\",\n    \"key\": \"83905\",\n    \"description\": \"two men holding microphones dance and bump their butts together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e2tqLvWh1tdmffyo1_250\",\n    \"question\": \"what is the person holding?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28844\",\n    \"key\": \"25535\",\n    \"description\": \"a person is holding a small brown puppy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr10n4blvp1qzefipo1_r1_400\",\n    \"question\": \"what is the color of the moves?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38191\",\n    \"key\": \"76416\",\n    \"description\": \"A lady in pink and black sportswear does a headstand and an orange cat moves in front of her view and meows.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9ol4V9GF1u8skfvo1_500\",\n    \"question\": \"how many men are playing guitar in front of the crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51265\",\n    \"key\": \"66907\",\n    \"description\": \"the two men are playing guitar in front of the crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrhl6yWq81qi39coo1_500\",\n    \"question\": \"what are two guys wearing and looking at each other?\",\n    \"answer\": \"suits\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42362\",\n    \"key\": \"96488\",\n    \"description\": \"two guys are wearing suits and looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc826aUSI71slj978o1_400\",\n    \"question\": \"what does the man in a blue shirt spin to the fourth man in line?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26244\",\n    \"key\": \"46829\",\n    \"description\": \"a man in a blue shirt spins the hat to the fourth man in line.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9ty1C8Dw1tr5tuwo1_500\",\n    \"question\": \"what is driving down the palm tree lined street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22919\",\n    \"key\": \"89701\",\n    \"description\": \"a yellow sports car is driving down a palm tree lined street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwqt70ENH1sqp9mao1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51162\",\n    \"key\": \"52294\",\n    \"description\": \"a man wearing a black suit speaks and dances with his friends.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqemmiLRm21u3u66ko1_400\",\n    \"question\": \"how many angry young men are boxing in a ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40097\",\n    \"key\": \"64429\",\n    \"description\": \"two angry young men are boxing in a ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0a8uaKRe1tt3g2no1_500\",\n    \"question\": \"how many girls is this image of kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24628\",\n    \"key\": \"86790\",\n    \"description\": \"this image is of two girls kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nptdekVE6l1tfnm8co1_400\",\n    \"question\": \"what falls over in the straw?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9175\",\n    \"key\": \"45462\",\n    \"description\": \"a baby elephant falls over in the straw.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhobtsS0jM1s86yfto1_250\",\n    \"question\": \"what is the white girl with brown hair playing?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21469\",\n    \"key\": \"9556\",\n    \"description\": \"a white girl with brown hair is playing dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nibscxbjOp1qlbj8uo1_500\",\n    \"question\": \"what is the wearing dancing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28803\",\n    \"key\": \"84835\",\n    \"description\": \"the wearing a red hat is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g3lqfsMq1rdk1zoo1_400\",\n    \"question\": \"what is the woman in a white dress playing?\",\n    \"answer\": \"violin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23725\",\n    \"key\": \"60984\",\n    \"description\": \"a woman in a white dress is playing a violin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesu4nuPbX1tzd5txo1_500\",\n    \"question\": \"how many young black horses are running?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10676\",\n    \"key\": \"97005\",\n    \"description\": \"two young black horses are running and their manes are blowing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njv8g32euR1rregeqo1_500\",\n    \"question\": \"what is the man wearing a hat is fastening?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51347\",\n    \"key\": \"10251\",\n    \"description\": \"a man wearing a hat is fastening his jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbz0yeXa3A1qflnb4o1_250\",\n    \"question\": \"what is the blonde woman breaking and a guy is looking?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43422\",\n    \"key\": \"27613\",\n    \"description\": \"a blonde woman is breaking her shirt and a guy is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkb2733IGk1u1r8m3o1_400\",\n    \"question\": \"where is the woman sitting and seductively clicking her tongue.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43029\",\n    \"key\": \"78100\",\n    \"description\": \"a woman is sitting in a chair and seductively clicking her tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nos6tzadWg1uqc9zlo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32542\",\n    \"key\": \"48381\",\n    \"description\": \"the man in the white shirt is looking around smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdro9plFr1tfri6co1_400\",\n    \"question\": \"how many men is this shaking hands and patting each other 's shoulders?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7667\",\n    \"key\": \"19670\",\n    \"description\": \"this is two men shaking hands and patting each other 's shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zb9zXSus1s2nkuro1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35097\",\n    \"key\": \"84071\",\n    \"description\": \"a man in a long coat stand with a woman in a white dress,\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzioHl7F1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13446\",\n    \"key\": \"63575\",\n    \"description\": \"a beautiful white car is rolling on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqw1d49uwo1tb2ztwo1_250\",\n    \"question\": \"what are two girls making with each other?\",\n    \"answer\": \"toast\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35540\",\n    \"key\": \"80693\",\n    \"description\": \"two girls are making a toast with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4y9cyuiJ1tqyrjvo1_400\",\n    \"question\": \"how many men are smiling and laughing at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18673\",\n    \"key\": \"90283\",\n    \"description\": \"two men are smiling and laughing at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3o9muUyk1tm1rujo1_400\",\n    \"question\": \"how many girls in ballet uniforms are doing ballet?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27320\",\n    \"key\": \"41181\",\n    \"description\": \"two girls in ballet uniforms are doing ballet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqknqqjWiH1sjpd78o1_400\",\n    \"question\": \"how many dark haired men are hugging each other on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35461\",\n    \"key\": \"74109\",\n    \"description\": \"two dark haired men are hugging each other on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9q0wbAvnk1slorlzo1_400\",\n    \"question\": \"where is the man holding a rabbit and turning around.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1799\",\n    \"key\": \"97560\",\n    \"description\": \"a man is holding a rabbit and turning around in his chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmz3n9aYMe1rxmp17o1_500\",\n    \"question\": \"how many people take off their black robes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24356\",\n    \"key\": \"97109\",\n    \"description\": \"two people take off their black robes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhwxneQIVn1rb8uj5o1_400\",\n    \"question\": \"how many men are sitting on the couch and shaking hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34905\",\n    \"key\": \"65786\",\n    \"description\": \"two men are sitting on a couch and shaking hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtlpb4htq1sh1sffo1_500\",\n    \"question\": \"what slowly opens up its eyes and taps a finger?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25619\",\n    \"key\": \"49489\",\n    \"description\": \"a robot slowly opens up its eyes and taps a finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9idf18Lt31sjcycuo1_250\",\n    \"question\": \"what is trying to catch an animal?\",\n    \"answer\": \"diver\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51184\",\n    \"key\": \"73363\",\n    \"description\": \"a scuba diver is trying to catch an animal.\"\n  },\n  {\n    \"video_name\": \"tumblr_npl1ihcovf1u06zrlo1_250\",\n    \"question\": \"how many young men with microphones communicate with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47779\",\n    \"key\": \"2745\",\n    \"description\": \"two young men with microphones communicate with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfbw1i0Vr1tmkydso1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7717\",\n    \"key\": \"59133\",\n    \"description\": \"a young man dressed in black is talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbw1801wlK1t2wqhqo1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14538\",\n    \"key\": \"21953\",\n    \"description\": \"a man in a gold jacket takes off his black cap.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc41azSmAA1ru030mo1_400\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47899\",\n    \"key\": \"31088\",\n    \"description\": \"a woman wearing red glasses is eating a chocolate chip cookie.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5ataOKNF1ra19auo1_250\",\n    \"question\": \"what is the man wearing a red shirt and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32637\",\n    \"key\": \"32238\",\n    \"description\": \"a man is wearing a red shirt and playing his guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_np4u4zNuv21rjxtuwo1_400\",\n    \"question\": \"how many large butterfly is moving its wings?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4318\",\n    \"key\": \"35441\",\n    \"description\": \"one large butterfly is moving its wings and a hand is writing on paper with an ink tip pen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebsloMCPa1rebtppo1_500\",\n    \"question\": \"how many men look towards each other and lean closer together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12132\",\n    \"key\": \"83125\",\n    \"description\": \"two men look towards each other and lean closer together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0z9cQOGd1tdytspo1_500\",\n    \"question\": \"how many young men in t-shirts with microphones are singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20327\",\n    \"key\": \"94401\",\n    \"description\": \"two young men in t-shirts with microphones are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nre2dtB8up1sb4xq3o1_500\",\n    \"question\": \"what is the soccer player getting an award and having taken with other people?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39909\",\n    \"key\": \"61595\",\n    \"description\": \"a soccer player is getting an award and having his picture taken with other people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyk6aaScH1r5pvcmo1_400\",\n    \"question\": \"what is opening and shutting its mouth?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18026\",\n    \"key\": \"60782\",\n    \"description\": \"a stuffed toy is opening and shutting its mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxauxAEZA1ssgk4vo1_500\",\n    \"question\": \"where is the woman answering her cell phone.\",\n    \"answer\": \"? office\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44972\",\n    \"key\": \"65252\",\n    \"description\": \"a woman in an office is answering her cell phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafjr4e15v1rdl60ao1_500\",\n    \"question\": \"what is the person wearing white clothing is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4800\",\n    \"key\": \"72562\",\n    \"description\": \"a person wearing white clothing is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf6z08W8ZO1tmecz1o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8779\",\n    \"key\": \"58112\",\n    \"description\": \"a very cute girl is wearing a rare black dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3844onv11qj1oazo1_400\",\n    \"question\": \"what is looking ahead with the sinister look?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41978\",\n    \"key\": \"53074\",\n    \"description\": \"a pop star is looking ahead with a sinister look.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ewm0ilhs1riwrryo1_250\",\n    \"question\": \"what is the soccer player hitting off her head?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17972\",\n    \"key\": \"26016\",\n    \"description\": \"a soccer player is hitting the ball off her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb6k2PKFz1rtlmp4o1_250\",\n    \"question\": \"what is pawing at something in the air?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34833\",\n    \"key\": \"18919\",\n    \"description\": \"a white and orange cat is pawing at something in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nge1acwnt81sjxzs0o1_400\",\n    \"question\": \"what is the color of the hood?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28604\",\n    \"key\": \"76122\",\n    \"description\": \"a girl jumps off a balcony while a guy in a green hood watches.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj9kxfpvm1ti5n8to1_250\",\n    \"question\": \"what does the man make through his nose?\",\n    \"answer\": \"fly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41208\",\n    \"key\": \"733\",\n    \"description\": \"a man makes smoke fly through his nose.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne899a7xR51tkmovro1_250\",\n    \"question\": \"what is the color of the tuxedo?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22451\",\n    \"key\": \"7004\",\n    \"description\": \"a guy in a blue tuxedo looks around annoyingly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9bjmjCEh1un86uao1_400\",\n    \"question\": \"what falls onto its side?\",\n    \"answer\": \"sculpture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17276\",\n    \"key\": \"72641\",\n    \"description\": \"an automated sculpture falls onto its side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjeqxINyh1sfy3nfo1_500\",\n    \"question\": \"how many people is this image of leaning against a wall kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11517\",\n    \"key\": \"88547\",\n    \"description\": \"this image is of two people leaning against a wall kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1eah7Rjw1slwrsuo1_500\",\n    \"question\": \"what takes off and flies above another airplane on the ground?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43561\",\n    \"key\": \"86728\",\n    \"description\": \"an airplane takes off and flies above another airplane on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb214iSPxA1tdmffyo1_250\",\n    \"question\": \"how many ballet dancers dressed in white are dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33300\",\n    \"key\": \"14238\",\n    \"description\": \"three ballet dancers dressed in white are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2vau6kkr1utqicho1_500\",\n    \"question\": \"how many soccer players is wearing white uniforms and one player wearing a blue uniform,\",\n    \"answer\": \"are fighting for control of the soccer ball ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19140\",\n    \"key\": \"82529\",\n    \"description\": \"two soccer players wearing white uniforms and one player wearing a blue uniform,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlc3i7KYK1sqiy4oo1_400\",\n    \"question\": \"where are three men singing.\",\n    \"answer\": \"? vehicle\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41594\",\n    \"key\": \"60244\",\n    \"description\": \"three men in a vehicle are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkitkhGcr51qdlihoo1_500\",\n    \"question\": \"how many men are sitting together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49182\",\n    \"key\": \"63296\",\n    \"description\": \"these two men are sitting together and one has his arm up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhrb2m1Vw1uzsdhio1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17198\",\n    \"key\": \"21057\",\n    \"description\": \"a man in a blue shirt is kissing a woman in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne00ewlpW41tdjuqvo1_400\",\n    \"question\": \"how many women is the man lifting up on a bar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8944\",\n    \"key\": \"13329\",\n    \"description\": \"a man is lifting up two women on a bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng5rs5F6tJ1t1nzngo1_500\",\n    \"question\": \"how many men are playing guitar while one man is singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52022\",\n    \"key\": \"79612\",\n    \"description\": \"two men are playing guitar while one man is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9guiyTTbi1tfen5bo1_250\",\n    \"question\": \"what does the man slice into two with a cooking utensil?\",\n    \"answer\": \"egg\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26920\",\n    \"key\": \"22972\",\n    \"description\": \"a man slices an egg into two with a cooking utensil.\"\n  },\n  {\n    \"video_name\": \"tumblr_njv8g32euR1rregeqo1_500\",\n    \"question\": \"what does the man in the gray hat adjust?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3538\",\n    \"key\": \"10251\",\n    \"description\": \"the man in the gray hat adjusts his coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncntfulJrF1tbgcpko1_250\",\n    \"question\": \"how many men are performing the dance routine?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18838\",\n    \"key\": \"35740\",\n    \"description\": \"two men are performing a dance routine.\"\n  },\n  {\n    \"video_name\": \"tumblr_nijrydrPVc1rtzdq7o1_400\",\n    \"question\": \"what is the color of the puppy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19975\",\n    \"key\": \"94791\",\n    \"description\": \"a white puppy tries to get a treat off of the table but the brown dog gets it instead.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncosuakrUx1sht3fmo1_250\",\n    \"question\": \"how many children stood looking at animals at an aquarium?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22682\",\n    \"key\": \"5701\",\n    \"description\": \"two children stood looking at animals at an aquarium.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uscu0MKn1tdve1no1_r1_500\",\n    \"question\": \"how many guys jump back and throw up their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9288\",\n    \"key\": \"68564\",\n    \"description\": \"two guys jump back and throw up their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_no9t9j1OOA1usf060o1_250\",\n    \"question\": \"what is playing with the toy dog?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44870\",\n    \"key\": \"26545\",\n    \"description\": \"a dog is playing with a toy dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyscvfO4c1sjzf6wo1_400\",\n    \"question\": \"what is the woman wearing?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26804\",\n    \"key\": \"28569\",\n    \"description\": \"a woman is wearing a long white dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_njx713VxJE1qgwe2io1_250\",\n    \"question\": \"what is the color of the substance?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33262\",\n    \"key\": \"14268\",\n    \"description\": \"a funnel shaped filter containing a brown substance,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgljvCbkT1u41fj6o1_250\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35672\",\n    \"key\": \"14703\",\n    \"description\": \"a woman wearing a blue sweatshirt is riding in a vehicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nreb388PeN1rb1qd6o1_250\",\n    \"question\": \"how many girls are holding their heads with hands and then hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22275\",\n    \"key\": \"4298\",\n    \"description\": \"two girls are holding their heads with hands and then hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6s48cgKH1tcvnmho1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13385\",\n    \"key\": \"59797\",\n    \"description\": \"a guy wearing a black shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_njvi0ekA7l1u2vc96o1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44251\",\n    \"key\": \"89821\",\n    \"description\": \"the girl with a black hat looks concerned.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbatooeAde1tx8mn0o1_400\",\n    \"question\": \"what spins out on the race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA905\",\n    \"key\": \"52734\",\n    \"description\": \"a race car spins out on the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9l8ofOPZN1qz5sfko1_1280\",\n    \"question\": \"how many men is this hugging and patting each other on the back?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50875\",\n    \"key\": \"46604\",\n    \"description\": \"this is two men hugging and patting each other on the back.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3xhdCxli1sq0gyxo1_500\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16966\",\n    \"key\": \"46592\",\n    \"description\": \"a guy wearing a light colored shirt and black pants,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9auyzrZNt1simukfo1_400\",\n    \"question\": \"what is the color of the guitar?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36339\",\n    \"key\": \"66175\",\n    \"description\": \"a man in a band is playing a white guitar on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nquj86RWoW1uyk370o1_250\",\n    \"question\": \"what is the man wearing a black jacket is smiling and holding?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41778\",\n    \"key\": \"10534\",\n    \"description\": \"a man wearing a black jacket is smiling and holding a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbze7q65N1s6zpepo1_500\",\n    \"question\": \"what is swimming in the deep blue ocean?\",\n    \"answer\": \"shark\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43720\",\n    \"key\": \"65465\",\n    \"description\": \"a shark is swimming in a deep blue ocean.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5tob8U6W1rsdx8zo1_250\",\n    \"question\": \"how many men is the man watching high five?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7229\",\n    \"key\": \"36538\",\n    \"description\": \"a man is watching two men high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqoabbUAH1s9wp82o1_400\",\n    \"question\": \"what lay on the couch and looked away?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29525\",\n    \"key\": \"30264\",\n    \"description\": \"two dogs lay on a couch and looked away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmrnnNzKo1t5lviko1_500\",\n    \"question\": \"what is the man entering?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29212\",\n    \"key\": \"74652\",\n    \"description\": \"a man is entering a room holding a knife.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuoksIv0d1ra6i3zo1_500\",\n    \"question\": \"how many guys with medium black hair are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26183\",\n    \"key\": \"95617\",\n    \"description\": \"two guys with medium black hair are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5qcvN7OT1qkv1mko1_250\",\n    \"question\": \"what is the dark haired boy swinging back and forth and holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45713\",\n    \"key\": \"5697\",\n    \"description\": \"a dark haired boy is swinging back and forth and holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngx21oxUmx1qhrx75o1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37135\",\n    \"key\": \"76491\",\n    \"description\": \"a guy wearing a white uniform,\"\n  },\n  {\n    \"video_name\": \"tumblr_nr42r1NAQf1uaujqao1_400\",\n    \"question\": \"what does the man with nylon on his head swat?\",\n    \"answer\": \"cone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50268\",\n    \"key\": \"65101\",\n    \"description\": \"a man with nylon on his head swats an ice cream cone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtcj5Inx41uqqy9lo1_400\",\n    \"question\": \"how many men are sitting at the bench?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14504\",\n    \"key\": \"65836\",\n    \"description\": \"two men are sitting at a bench,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxu3kMb2e1s71nvbo1_400\",\n    \"question\": \"what is bouncing down the hallway?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26733\",\n    \"key\": \"40521\",\n    \"description\": \"a monkey is bouncing down a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9soht3hXu1ty4429o1_500\",\n    \"question\": \"how many men strike poses as another takes a picture?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4026\",\n    \"key\": \"91209\",\n    \"description\": \"four men strike poses as another takes a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxvqaazzU1up8baqo1_250\",\n    \"question\": \"what is the man holding and making grinding movements?\",\n    \"answer\": \"crotch\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20633\",\n    \"key\": \"3440\",\n    \"description\": \"a man is holding his crotch and making grinding movements.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3ifpHmOa1qc94ixo1_500\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA558\",\n    \"key\": \"44795\",\n    \"description\": \"a young girl is crying with a blue background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nde98bVDhd1r21xqpo1_250\",\n    \"question\": \"what is closing the brown door?\",\n    \"answer\": \"puppet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23159\",\n    \"key\": \"86043\",\n    \"description\": \"a blue puppet is closing a brown door.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90wdbaCbJ1sakfnpo1_250\",\n    \"question\": \"what is being very friendly to another ginger cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33668\",\n    \"key\": \"40595\",\n    \"description\": \"a cat is being very friendly to another ginger cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq6nzcIWOL1uyimcco1_500\",\n    \"question\": \"where is the guy break dancing.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8343\",\n    \"key\": \"96614\",\n    \"description\": \"a guy is break dancing in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x1wfRppX1tdmffyo1_250\",\n    \"question\": \"what knocks the baby penguin over?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41787\",\n    \"key\": \"45924\",\n    \"description\": \"a cat knocks a baby penguin over.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sm8xTWku1qkzi04o1_250\",\n    \"question\": \"what does the drummer bang onto his drums in front of an audience?\",\n    \"answer\": \"drumsticks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18949\",\n    \"key\": \"2761\",\n    \"description\": \"a drummer bangs his drumsticks onto his drums in front of an audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqqe7tTVgT1ssgyoro1_250\",\n    \"question\": \"what is standing right next to the door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1774\",\n    \"key\": \"10404\",\n    \"description\": \"a cat is standing right next to a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngo9zfHkp61qixslso1_400\",\n    \"question\": \"what is playing with the toy that it has in the mouth?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40175\",\n    \"key\": \"13941\",\n    \"description\": \"A dog is playing with a toy that it has in the mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_na41oyCHeF1rcndp1o1_500\",\n    \"question\": \"where are the two identical men sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13423\",\n    \"key\": \"9702\",\n    \"description\": \"the two identical men are sitting in chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0oqeBJLk1qzs91yo1_1280\",\n    \"question\": \"what is staring intently at something in front of him?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA555\",\n    \"key\": \"27459\",\n    \"description\": \"a cat is staring intently at something in front of him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2vwwZaUv1tcsf0uo1_400\",\n    \"question\": \"what is the boy riding towards a ramp?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18657\",\n    \"key\": \"61172\",\n    \"description\": \"the boy is riding his skateboard towards a ramp.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngug5dX7C21ruqod2o1_250\",\n    \"question\": \"what does the man look up at the ceiling n?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20269\",\n    \"key\": \"70532\",\n    \"description\": \"the man looks up at the ceiling n the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nri0fojp0G1tx8mn0o1_400\",\n    \"question\": \"how many race cars are going around the race track?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52176\",\n    \"key\": \"55938\",\n    \"description\": \"two race cars are going around a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgjlsgNfd1skvcujo1_500\",\n    \"question\": \"how many men is wearing white shirts are arguing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42899\",\n    \"key\": \"95762\",\n    \"description\": \"two men wearing white shirts are arguing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpf8u9tA71u65utjo1_1280\",\n    \"question\": \"what is this a man and then switches to a wrist band?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34404\",\n    \"key\": \"77635\",\n    \"description\": \"this is a man that is holding a phone and then the picture switches to a wrist band.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfnx1eh6m1tevyhdo1_500\",\n    \"question\": \"what is the woman dancing happily and are behind her?\",\n    \"answer\": \"balloons\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13187\",\n    \"key\": \"95890\",\n    \"description\": \"a woman is dancing happily and heart balloons are behind her.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndv1ycsv271s4jnano1_400\",\n    \"question\": \"where does the hand set a stick.\",\n    \"answer\": \"? plate\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47356\",\n    \"key\": \"66056\",\n    \"description\": \"a hand sets a stick in a colorful plate.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndce9hl2FS1tsn1aso1_500\",\n    \"question\": \"what is the small alien toy smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36440\",\n    \"key\": \"34465\",\n    \"description\": \"a small alien toy is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8t77uLMSw1tgftffo1_1280\",\n    \"question\": \"what is the man holding and singing in front of another man?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA932\",\n    \"key\": \"87483\",\n    \"description\": \"a man is holding a guitar and singing in front of another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbrltf1I31tx8mn0o1_400\",\n    \"question\": \"what did the man crash during a race?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34694\",\n    \"key\": \"86057\",\n    \"description\": \"a man crashed his car during a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nea2zdghTC1tlysvco1_400\",\n    \"question\": \"how many well-dressed men are holding the conversation?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52392\",\n    \"key\": \"29868\",\n    \"description\": \"Two well-dressed men are holding a conversation.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyh3iTJcd1tdjuqvo1_400\",\n    \"question\": \"what is playing the air guitar and scratching himself?\",\n    \"answer\": \"kangaroo\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA917\",\n    \"key\": \"10995\",\n    \"description\": \"a kangaroo is playing the air guitar and scratching himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5xc7xC5G1qcu75qo1_400\",\n    \"question\": \"how many young women are doing the silly dance while holding microphones?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41659\",\n    \"key\": \"16930\",\n    \"description\": \"four young women are doing a silly dance while holding microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq8eyMlrJ1qkf1cno1_400\",\n    \"question\": \"where is the girl singing.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20988\",\n    \"key\": \"52199\",\n    \"description\": \"a girl is singing in a car by sitting beside a boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nht0k7k5Mk1sd3lvvo1_1280\",\n    \"question\": \"what is the man standing up at a table during dinner,\",\n    \"answer\": \"and he is throwing ? napkin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48033\",\n    \"key\": \"20050\",\n    \"description\": \"a man is standing up at a table during dinner,\"\n  },\n  {\n    \"video_name\": \"tumblr_nh85vvLn5D1u6gniuo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1704\",\n    \"key\": \"32912\",\n    \"description\": \"a girl with black hair raises her hand and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfd11g9m741tm2ntoo1_500\",\n    \"question\": \"what is the woman wearing and looking straight ahead?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23446\",\n    \"key\": \"67219\",\n    \"description\": \"a woman is wearing a white shirt and looking straight ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf9v5oufm1tjhld9o1_500\",\n    \"question\": \"what rolls off of the tiny couch?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26982\",\n    \"key\": \"76043\",\n    \"description\": \"a sleepy puppy rolls off of a tiny couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngy4jkSGjY1tni61eo1_250\",\n    \"question\": \"what are sitting side by side?\",\n    \"answer\": \"pets\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47871\",\n    \"key\": \"27236\",\n    \"description\": \"the two pets are sitting side by side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazcze5vKT1thn2bho1_250\",\n    \"question\": \"where is the man biting his fingernails.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31938\",\n    \"key\": \"25705\",\n    \"description\": \"a man in a red chair is biting his fingernails.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6bp2wUl71t7jda2o1_400\",\n    \"question\": \"what is the cat hitting with its paw?\",\n    \"answer\": \"bin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16673\",\n    \"key\": \"71135\",\n    \"description\": \"a cat is hitting a waste paper bin with its paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpreqZ6fr1unq0gjo1_250\",\n    \"question\": \"what goes over the small hill and does a nose dive?\",\n    \"answer\": \"truck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22361\",\n    \"key\": \"46570\",\n    \"description\": \"a red truck goes over a small hill and does a nose dive.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8e4peYNx1rcivpuo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38778\",\n    \"key\": \"101709\",\n    \"description\": \"a man with brown hair and a suit is looking off into the distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefaiatKqJ1siijy4o1_250\",\n    \"question\": \"where is the girl with long hair dancing.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4088\",\n    \"key\": \"19993\",\n    \"description\": \"a girl with long hair is dancing in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrac5ifOWX1utou2jo1_400\",\n    \"question\": \"what is walking around on the floor?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35491\",\n    \"key\": \"62192\",\n    \"description\": \"a bird is walking around on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n88tfbzgHU1rhy09eo1_500\",\n    \"question\": \"what is entering the garage?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44032\",\n    \"key\": \"92569\",\n    \"description\": \"a white car is entering a garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqdnyswOsw1qh9fn6o1_400\",\n    \"question\": \"what chases another penguin swimming under water?\",\n    \"answer\": \"penguin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34977\",\n    \"key\": \"46476\",\n    \"description\": \"a penguin chases another penguin swimming under water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkq03zqHC61un0bvgo1_400\",\n    \"question\": \"what are the large group of people rolling over and waving?\",\n    \"answer\": \"flags\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43604\",\n    \"key\": \"87394\",\n    \"description\": \"a large group of people are rolling over and waving white flags.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sl7sBrq41qjv5vmo1_400\",\n    \"question\": \"how many men are fighting in the front seat of a car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11221\",\n    \"key\": \"31074\",\n    \"description\": \"two men are fighting in the front seat of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_new8c8mQDS1tebytso1_500\",\n    \"question\": \"what do the girl drive down the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16188\",\n    \"key\": \"97834\",\n    \"description\": \"the girl drive her car down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh42ws7eWR1tatohao1_400\",\n    \"question\": \"what does the man go and pushes his chair away?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1745\",\n    \"key\": \"36756\",\n    \"description\": \"a man goes to sit and a dog pushes his chair away.\"\n  },\n  {\n    \"video_name\": \"tumblr_napzl4gzgc1tukjnpo1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8368\",\n    \"key\": \"94102\",\n    \"description\": \"a man wearing a white tank top removes his jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlja2c3I61qfayp5o1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18865\",\n    \"key\": \"18126\",\n    \"description\": \"a guy wearing black clothing,\"\n  },\n  {\n    \"video_name\": \"tumblr_neu6972ngW1rhkv10o1_400\",\n    \"question\": \"what is the color of the balloon?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15057\",\n    \"key\": \"27997\",\n    \"description\": \"a cat has a red balloon stuck to its leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_no6si0cRpR1svos5ho1_400\",\n    \"question\": \"what is someone grabbing and singing into it?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA311\",\n    \"key\": \"85631\",\n    \"description\": \"someone is grabbing a microphone and singing into it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdc35WaSX1u3l171o1_500\",\n    \"question\": \"how many man cries and one man wipes tears from his eyes?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6987\",\n    \"key\": \"101667\",\n    \"description\": \"one man cries and one man wipes tears from his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdrtjoyYK1tsmfzoo1_400\",\n    \"question\": \"what is the man wearing a hat is shooting?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36489\",\n    \"key\": \"30461\",\n    \"description\": \"a man wearing a hat is shooting a bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqveo9P2as1tae455o1_400\",\n    \"question\": \"what is the color of the flags?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21515\",\n    \"key\": \"66327\",\n    \"description\": \"a pile of white flags on a string sitting sat on a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5k9lbSaO1qjam7no1_540\",\n    \"question\": \"what is the color of the singing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32819\",\n    \"key\": \"50784\",\n    \"description\": \"this image is of a man in black onstage singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nboqf2kOcT1renxlgo1_400\",\n    \"question\": \"what is the man leaning back and raising?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16081\",\n    \"key\": \"79037\",\n    \"description\": \"a man who is singing and playing on a guitar is leaning back and raising the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf43yk0Urg1rxhelho1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13379\",\n    \"key\": \"81509\",\n    \"description\": \"a guy wears a hat and holds onto a girl with brown hair as they both sway from side to side among flashing lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5rzqybN61te5frpo1_1280\",\n    \"question\": \"how many men dance side to side and snap their fingers?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43342\",\n    \"key\": \"45922\",\n    \"description\": \"three men dance side to side and snap their fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6yhxFELz1sug4g8o1_r1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19118\",\n    \"key\": \"97951\",\n    \"description\": \"a pale girl with red eyes is gasping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8s1tUL2H1trp7kao1_500\",\n    \"question\": \"what are two people with long messy hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18392\",\n    \"key\": \"26600\",\n    \"description\": \"two people with long messy hair are playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bfkffhAg1tf2whho1_400\",\n    \"question\": \"how many boy is whispering something into another boy 's ear?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28111\",\n    \"key\": \"18627\",\n    \"description\": \"one boy is whispering something into another boy 's ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y6tmnuQd1r5japgo1_400\",\n    \"question\": \"how many boys are talking to each other and standing in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42805\",\n    \"key\": \"66394\",\n    \"description\": \"two boys are talking to each other and standing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq1sabA971unh5yxo1_400\",\n    \"question\": \"what sticks its head out a window then puts its trunk in a hanging pail?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47987\",\n    \"key\": \"46615\",\n    \"description\": \"an elephant sticks its head out a window then puts its trunk in a hanging pail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelqmzBsfA1qhqng8o1_500\",\n    \"question\": \"how many people are running along the line of trees?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44677\",\n    \"key\": \"67679\",\n    \"description\": \"three people are running along a line of trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzm18sXEV1rdynt3o1_500\",\n    \"question\": \"what is the man wearing all white is climbing up?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34231\",\n    \"key\": \"168\",\n    \"description\": \"a man wearing all white is climbing up stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfe8ohMKD81tkoeqqo1_500\",\n    \"question\": \"how many people are sitting down?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25694\",\n    \"key\": \"88138\",\n    \"description\": \"three people are sitting down,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngt2prFBuC1rdc8jao1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41321\",\n    \"key\": \"81347\",\n    \"description\": \"a man in a black shirt is walking forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfktiCBxK1sbnbk1o1_400\",\n    \"question\": \"how many girls are dancing with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36168\",\n    \"key\": \"34032\",\n    \"description\": \"two girls are dancing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0varcEI71sd6qhwo1_500\",\n    \"question\": \"where is the man kissing a woman.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33357\",\n    \"key\": \"97683\",\n    \"description\": \"a man is kissing a woman in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsfs9XntW1tepekso2_500\",\n    \"question\": \"what is the blonde boy stuffing into his mouth?\",\n    \"answer\": \"pizza\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15668\",\n    \"key\": \"59716\",\n    \"description\": \"a blonde boy is stuffing pizza into his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitazkhnAd1u1egsso1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31117\",\n    \"key\": \"93401\",\n    \"description\": \"a smiling red head girl starts talking and there two other girls behind her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc59rv0l3t1r7oaaro1_400\",\n    \"question\": \"where are quadruplets sitting across.\",\n    \"answer\": \"? booth\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21206\",\n    \"key\": \"65406\",\n    \"description\": \"quadruplets are sitting across from one another in a restaurant booth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6erqN00E1slvh86o1_400\",\n    \"question\": \"what is too sure of himself?\",\n    \"answer\": \"jockey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42866\",\n    \"key\": \"62327\",\n    \"description\": \"a male disc jockey is too sure of himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0qsvFUM11tffk66o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1707\",\n    \"key\": \"96586\",\n    \"description\": \"a boy with black shirt is yelling away from a mic.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj2q4b2pjY1s2jf57o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12956\",\n    \"key\": \"70530\",\n    \"description\": \"a girl wearing a black top is lifting her arms up and smiling,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqcsfFKnr1rshkvyo1_400\",\n    \"question\": \"what is the color of the couch?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44256\",\n    \"key\": \"52329\",\n    \"description\": \"this is a girl that is wearing an orange dress that is lying down on a yellow couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam1acBsls1sgrimro1_400\",\n    \"question\": \"what is the person riding down stair and it tips over and he falls?\",\n    \"answer\": \"jeep\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3897\",\n    \"key\": \"1243\",\n    \"description\": \"a person is riding a kid 's jeep down stair and it tips over and he falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xbtrl05i1rwwiw3o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50739\",\n    \"key\": \"21206\",\n    \"description\": \"a man in a black shirt is point and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngnqtwWw3s1u60vhlo1_400\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11015\",\n    \"key\": \"30664\",\n    \"description\": \"a red haired boy wearing headphones is sticking out his tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9ponigE51tmq0ioo1_250\",\n    \"question\": \"how many children ride are flying around the large room on brooms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37998\",\n    \"key\": \"90924\",\n    \"description\": \"two children ride are flying around a large room on brooms.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8zogREs01tju8cjo1_400\",\n    \"question\": \"how many men are both moving from side to side?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52319\",\n    \"key\": \"33677\",\n    \"description\": \"two men are both moving from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qbwbd8sH1swdkm1o1_250\",\n    \"question\": \"what is the man with dark hair eating?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16591\",\n    \"key\": \"4004\",\n    \"description\": \"a man with dark hair is eating a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl24faq4tH1uo8kgzo1_500\",\n    \"question\": \"how many men are sitting and talking on top of a roof?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46128\",\n    \"key\": \"81844\",\n    \"description\": \"two men are sitting and talking on top of a roof.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbrd1GZox1s71nvbo1_500\",\n    \"question\": \"what is rolling in the snow?\",\n    \"answer\": \"crow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9491\",\n    \"key\": \"59464\",\n    \"description\": \"a crow is rolling in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0jf2Dmtj1tr5tuwo1_500\",\n    \"question\": \"how many race cars round the corner at a racetrack?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48768\",\n    \"key\": \"71919\",\n    \"description\": \"two race cars round a corner at a racetrack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyd19SMIQ1u7qbgxo1_400\",\n    \"question\": \"how many women are singing and shaking their heads from side to side?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34560\",\n    \"key\": \"34073\",\n    \"description\": \"three women are singing and shaking their heads from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0uk6lrdI1raliteo1_400\",\n    \"question\": \"what spin out while going around the curve?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48726\",\n    \"key\": \"79250\",\n    \"description\": \"two cars spin out while going around a curve.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8gz0W3pf1qfnf9jo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46059\",\n    \"key\": \"96220\",\n    \"description\": \"a guy in a white jump suit is holding up a white pair of underwear.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uj5jyB9m1soovq7o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8223\",\n    \"key\": \"91317\",\n    \"description\": \"a young man in a blue shirt is riding a stationary bike.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqty9vJFCN1uztkiuo1_250\",\n    \"question\": \"how many balloons is the person banging on a person 's head?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30950\",\n    \"key\": \"11148\",\n    \"description\": \"a person is banging two balloons on a person 's head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne44f8BnGg1qhmhclo1_500\",\n    \"question\": \"where did two people hit a person moving toward them.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48756\",\n    \"key\": \"97777\",\n    \"description\": \"two people in a car hit a person moving toward them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknr9xW0hU1u922jno2_400\",\n    \"question\": \"where are two ballet dancers dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35579\",\n    \"key\": \"78072\",\n    \"description\": \"two ballet dancers are dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhiydsOcmj1rtdnfto1_400\",\n    \"question\": \"what is blinking its eyes?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10448\",\n    \"key\": \"74853\",\n    \"description\": \"a white dog is blinking its eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpr1eeF3n1t8bzkuo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37108\",\n    \"key\": \"46589\",\n    \"description\": \"a guy in a red jacket throws a punch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgeilomtY1tifif8o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46831\",\n    \"key\": \"17513\",\n    \"description\": \"a man with black wearing and wearing a suit is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncham5ElY21qf1m5po1_500\",\n    \"question\": \"where is the man sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24769\",\n    \"key\": \"96057\",\n    \"description\": \"a man is sitting in a revolving chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk32pnnazT1skvgwao1_400\",\n    \"question\": \"what is the color of the coats?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37247\",\n    \"key\": \"83387\",\n    \"description\": \"two men with black coats are exiting a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvezjw04N1unmn69o1_400\",\n    \"question\": \"what is the color of the jumpsuits?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17800\",\n    \"key\": \"24800\",\n    \"description\": \"the three girls wearing blue jumpsuits are singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9140axZ7y1sfkj4so1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5122\",\n    \"key\": \"26056\",\n    \"description\": \"a guy with white shirt is playing basketball in outdoor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk15pvmV3m1qzb52xo1_400\",\n    \"question\": \"how many black woman are looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8626\",\n    \"key\": \"29669\",\n    \"description\": \"two black woman are looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrebnpJfWQ1qcr3i7o1_400\",\n    \"question\": \"how many tubes is the hand holding of liquid?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31609\",\n    \"key\": \"15722\",\n    \"description\": \"a hand is holding two tubes of liquid and then they change color.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lq4ikwls1r77rooo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39113\",\n    \"key\": \"60423\",\n    \"description\": \"a guy with short,\"\n  },\n  {\n    \"video_name\": \"tumblr_nojzfeq9tU1rygrpxo1_400\",\n    \"question\": \"what is the color of the costume?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25212\",\n    \"key\": \"60840\",\n    \"description\": \"a guy wearing a brown costume,\"\n  },\n  {\n    \"video_name\": \"tumblr_na89vurzQV1sdeofyo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27760\",\n    \"key\": \"18583\",\n    \"description\": \"a white man is making a dance step in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflyp6lmp51qj9te3o1_500\",\n    \"question\": \"what is the man lighting beside a lake?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44635\",\n    \"key\": \"9190\",\n    \"description\": \"a man is lighting a cigarette beside a lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9nuf8BS91r51xvko1_500\",\n    \"question\": \"how many blonde women were hugging and smiling at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16679\",\n    \"key\": \"79546\",\n    \"description\": \"two blonde women were hugging and smiling at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_naepk5DoIi1snxvgpo1_400\",\n    \"question\": \"what is the man wearing?\",\n    \"answer\": \"backwards\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2597\",\n    \"key\": \"75860\",\n    \"description\": \"the man is wearing his hat backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p40kKIrP1s2ir5ko1_500\",\n    \"question\": \"how many guys in blue uniforms are playing soccer against three men in red uniforms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25321\",\n    \"key\": \"88309\",\n    \"description\": \"two guys in blue uniforms are playing soccer against three men in red uniforms.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrtqmpi3I1t0urg8o1_500\",\n    \"question\": \"what are feet wearing tall,\",\n    \"answer\": \"spiky , walk across the pavement ? heels\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12809\",\n    \"key\": \"85244\",\n    \"description\": \"feet wearing tall,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0pilw3Xs1qam9qho1_r2_500\",\n    \"question\": \"what are the group of individuals wearing and cuddling while they watch some kind of entertainment?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11587\",\n    \"key\": \"85298\",\n    \"description\": \"a group of individuals are wearing dark glasses and cuddling while they watch some kind of entertainment.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h6s64oTE1qh439wo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33113\",\n    \"key\": \"79368\",\n    \"description\": \"a woman with black hair is playing with a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvfrfYpKG1sco6ako1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7894\",\n    \"key\": \"70613\",\n    \"description\": \"a woman with long,\"\n  },\n  {\n    \"video_name\": \"tumblr_nll2l3AQAL1t8hlxao1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43201\",\n    \"key\": \"6690\",\n    \"description\": \"a red haired woman is looking at someone and then walking away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq62pjNWtz1tk2ngvo1_400\",\n    \"question\": \"what pounces on the kitten as they play?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24927\",\n    \"key\": \"74359\",\n    \"description\": \"a small dog pounces on a kitten as they play.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhidzpk1Bu1tjhld9o1_250\",\n    \"question\": \"what is laying on a mat tilts its head to the side?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9333\",\n    \"key\": \"23339\",\n    \"description\": \"a dog laying on a mat tilts its head to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgna3orE71toiobbo1_500\",\n    \"question\": \"what is the man lifting up and down?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46374\",\n    \"key\": \"54995\",\n    \"description\": \"a man is lifting his sunglasses up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_na403e8Ozd1qeda9uo1_400\",\n    \"question\": \"what is yawning and then knocks the cup off of a dresser?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38019\",\n    \"key\": \"55798\",\n    \"description\": \"a cat is yawning and then knocks a cup off of a dresser.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnx2foZwmV1tpg4boo1_250\",\n    \"question\": \"what is petting the owl good night?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11191\",\n    \"key\": \"50694\",\n    \"description\": \"the cat is petting the owl good night.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpkdsmBEF1u1graho1_250\",\n    \"question\": \"what is the color of the puppy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46271\",\n    \"key\": \"9957\",\n    \"description\": \"a young man is playing with a white puppy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0z9bZEoS1snb7q5o1_400\",\n    \"question\": \"where is the person spinning around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3363\",\n    \"key\": \"4864\",\n    \"description\": \"a person is spinning around in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhwtioIJ41qdcttio1_1280\",\n    \"question\": \"what is the color of the cup?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25271\",\n    \"key\": \"49360\",\n    \"description\": \"a man wearing a dark shirt is drinking from a white coffee cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_njs4ktBjBu1rze3q1o1_500\",\n    \"question\": \"what does the man in a suit swing around?\",\n    \"answer\": \"chainsaw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13063\",\n    \"key\": \"67993\",\n    \"description\": \"a man in a suit swings a chainsaw around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvhjp6WO71sj3qcdo1_250\",\n    \"question\": \"how many men are sitting on the couch eating popcorn?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23958\",\n    \"key\": \"19312\",\n    \"description\": \"two men are sitting on a couch eating popcorn.\"\n  },\n  {\n    \"video_name\": \"tumblr_n7qjawvGqz1tbse9vo1_250\",\n    \"question\": \"where does the man rub his face.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11617\",\n    \"key\": \"81595\",\n    \"description\": \"a man in a car rubs his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7ghkx0rA1r91wsno1_500\",\n    \"question\": \"how many singers are on stage while one waves his hand?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17025\",\n    \"key\": \"88364\",\n    \"description\": \"two singers are on stage while one waves his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mlh1mp5t1s5c9bdo1_400\",\n    \"question\": \"what is the man with a goatee smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA517\",\n    \"key\": \"12323\",\n    \"description\": \"a man with a goatee is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqsshv5dg1tluxceo1_400\",\n    \"question\": \"what does the young man with red hair open?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11133\",\n    \"key\": \"17326\",\n    \"description\": \"a young man with red hair opens the door while crouched and with no pants on.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0wm1MHqZ1s6zpepo1_250\",\n    \"question\": \"where do two people place a man.\",\n    \"answer\": \"? crib\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38732\",\n    \"key\": \"51836\",\n    \"description\": \"two people place a man in a baby crib.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee10oHKIS1taytvao1_400\",\n    \"question\": \"how many men were dancing in different places?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12412\",\n    \"key\": \"58994\",\n    \"description\": \"three men were dancing in different places.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwxb54H081sxaoaro1_400\",\n    \"question\": \"how many females in dresses performed holding microphones on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA231\",\n    \"key\": \"31700\",\n    \"description\": \"two females in dresses performed holding microphones on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnz7zKMYj1t0pznvo1_250\",\n    \"question\": \"what is the color of the lips?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2263\",\n    \"key\": \"11016\",\n    \"description\": \"a person with red lips is staring and making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfcfptpJX1u0chl3o1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30888\",\n    \"key\": \"26346\",\n    \"description\": \"a yellow kitty cat is playing with a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2rl5ShaE1rftdx0o1_250\",\n    \"question\": \"what walks up behind wolf eating in the snow?\",\n    \"answer\": \"crow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48273\",\n    \"key\": \"23330\",\n    \"description\": \"a black crow walks up behind wolf eating in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_mwhehdR3JE1s69ao0o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44734\",\n    \"key\": \"67278\",\n    \"description\": \"a woman with long black hair is shaking her head and shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpchsaQdB1tg4ng0o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50156\",\n    \"key\": \"36389\",\n    \"description\": \"a man is removing his black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2n4ztlqF1u25ovvo1_400\",\n    \"question\": \"what drives down the street at dusk?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13700\",\n    \"key\": \"63509\",\n    \"description\": \"a car drives down a street at dusk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf22adJ0VT1qd0q05o1_400\",\n    \"question\": \"how many men is wearing masks are dancing and playing the drums?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40808\",\n    \"key\": \"67256\",\n    \"description\": \"two men wearing masks are dancing and playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uw0bs3ZI1qinzfzo1_400\",\n    \"question\": \"how many woman put makeup are the group of women helping on?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22981\",\n    \"key\": \"29461\",\n    \"description\": \"a group of women are helping one woman put makeup on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0lw5qYfq1uoz9klo1_400\",\n    \"question\": \"how many women stood dancing next to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14671\",\n    \"key\": \"22334\",\n    \"description\": \"two women stood dancing next to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nppfdyjVsX1rftdx0o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA685\",\n    \"key\": \"45223\",\n    \"description\": \"a man in black walks down a hall and enters a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdmjslBH91t2huujo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37273\",\n    \"key\": \"79448\",\n    \"description\": \"a white man with white shirt is eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq4afnM0Z1s5o1jwo1_400\",\n    \"question\": \"what is the color of the mice?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35555\",\n    \"key\": \"41704\",\n    \"description\": \"white mice are crawling on the person with wild hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf1orqAZx1qfi90vo1_400\",\n    \"question\": \"what is the person holding?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28446\",\n    \"key\": \"30323\",\n    \"description\": \"a person is holding a black and white cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvyw0ok611slmwoeo1_400\",\n    \"question\": \"what is the man spitting drink in another mans face and the other man falls off?\",\n    \"answer\": \"chair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45707\",\n    \"key\": \"56984\",\n    \"description\": \"a man is spitting drink in another mans face and the other man falls off his chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3e3globU1snid6qo1_400\",\n    \"question\": \"where is the woman tripping over and landing in a man 's arms.\",\n    \"answer\": \"? boat\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14084\",\n    \"key\": \"66138\",\n    \"description\": \"a woman in a rowing boat is tripping over and landing in a man 's arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7876agwW1slwrsuo1_400\",\n    \"question\": \"what is the color of the kitten?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7139\",\n    \"key\": \"16802\",\n    \"description\": \"a gray kitten is walking while looking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngj9zpMYzD1u49rjuo1_400\",\n    \"question\": \"what is the man drinking?\",\n    \"answer\": \"beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48504\",\n    \"key\": \"79120\",\n    \"description\": \"a man is drinking a beer when a woman walks into the bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn8b3ckHXT1rgj6reo1_400\",\n    \"question\": \"what is sticking his paws in water and falling asleep?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9766\",\n    \"key\": \"55944\",\n    \"description\": \"a dog is sticking his paws in water and falling asleep.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3qvcdW511tq4l8jo1_250\",\n    \"question\": \"what is the man pulling down from a wall?\",\n    \"answer\": \"flag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17929\",\n    \"key\": \"43971\",\n    \"description\": \"a man is pulling a nazi flag down from a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mzyvftsL1the8uso1_400\",\n    \"question\": \"what is walking on the treadmill trying to get to a plate of food?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA672\",\n    \"key\": \"46051\",\n    \"description\": \"a cat is walking on a treadmill trying to get to a plate of food.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhy9uaa2H1qescp3o1_400\",\n    \"question\": \"how many young people are smiling during the photo session?\",\n    \"answer\": \"seven\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28875\",\n    \"key\": \"34558\",\n    \"description\": \"seven young people are smiling during a photo session.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh40cqYid51s6zpepo1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42299\",\n    \"key\": \"2329\",\n    \"description\": \"a white cat is climbing into a christmas tree and playing with the ornaments.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99r653gQr1tgsqsyo1_500\",\n    \"question\": \"what is the young man playing on stage,\",\n    \"answer\": \"? guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20271\",\n    \"key\": \"94400\",\n    \"description\": \"a young man is playing guitar on stage,\"\n  },\n  {\n    \"video_name\": \"tumblr_nh4uxuDDsO1u5zq37o1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8480\",\n    \"key\": \"95948\",\n    \"description\": \"a man in a blue coat is showing a thumbs up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni19mwflR81u4e94wo1_250\",\n    \"question\": \"what is the woman holding?\",\n    \"answer\": \"sword\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2414\",\n    \"key\": \"27098\",\n    \"description\": \"a woman is holding a sword screaming and turning her body round.\"\n  },\n  {\n    \"video_name\": \"tumblr_nntolgMF0D1tyncywo1_250\",\n    \"question\": \"what is lying in the box and playing with a round object?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8695\",\n    \"key\": \"53460\",\n    \"description\": \"a black cat is lying in a box and playing with a round object.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnz2d7SvNE1un10nuo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21503\",\n    \"key\": \"19568\",\n    \"description\": \"a boy wearing a blue top catches some food in his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93oox0VfY1s824qjo1_r1_400\",\n    \"question\": \"what do as person waves two fingers as they enter?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22251\",\n    \"key\": \"83167\",\n    \"description\": \"as person waves two fingers as they enter a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfq2lpexwE1u3f64so1_500\",\n    \"question\": \"what is the color of the group?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26277\",\n    \"key\": \"79591\",\n    \"description\": \"a male dance group wearing all black are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npr7lkdUyx1s71nvbo1_500\",\n    \"question\": \"what part-buried in snow,\",\n    \"answer\": \"with just head and tail exposed ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27119\",\n    \"key\": \"83711\",\n    \"description\": \"a tabby cat part-buried in snow,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5w7sROwX1tjdvfuo1_400\",\n    \"question\": \"what is the color of the sheets?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15007\",\n    \"key\": \"80200\",\n    \"description\": \"a gray cat runs around on white bed sheets.\"\n  },\n  {\n    \"video_name\": \"tumblr_n914bjCRnC1tq63bwo1_250\",\n    \"question\": \"what is the man walking up with holding a bottle of water?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9887\",\n    \"key\": \"17532\",\n    \"description\": \"a man is walking up stairs with holding a bottle of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_naqh7em4jX1rrua0wo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50134\",\n    \"key\": \"59131\",\n    \"description\": \"a guy in a red shirt falls over a soccer ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhv8yzFmkd1u3l54uo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28425\",\n    \"key\": \"63798\",\n    \"description\": \"this is a man that is dressed in black that is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng329lAqkq1sh2a17o1_400\",\n    \"question\": \"what is the young man using?\",\n    \"answer\": \"computer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30276\",\n    \"key\": \"64842\",\n    \"description\": \"a young man is using a laptop computer while a young woman is laying on the couch with him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0kf8UYHt1sqh42jo1_400\",\n    \"question\": \"how many wrestlers are in the ring,\",\n    \"answer\": \"when one pins the other one down for a three count ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31309\",\n    \"key\": \"60824\",\n    \"description\": \"two wrestlers are in a ring,\"\n  },\n  {\n    \"video_name\": \"tumblr_npzxfuURik1r0vgovo1_500\",\n    \"question\": \"what did the woman touch?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18938\",\n    \"key\": \"97453\",\n    \"description\": \"the woman touches the window before the car leaves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfao9fM1Ph1tqwtb6o1_250\",\n    \"question\": \"how many guy is smiling while another guy is talking?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21520\",\n    \"key\": \"27818\",\n    \"description\": \"one guy is smiling while another guy is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndtla1XlEz1s0tynuo1_400\",\n    \"question\": \"what are waves covering surrounded by mountains?\",\n    \"answer\": \"shore\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16199\",\n    \"key\": \"29755\",\n    \"description\": \"waves are covering a shore surrounded by mountains.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesjjsxV3q1r1rrd0o1_400\",\n    \"question\": \"what does the soccer player hit?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13881\",\n    \"key\": \"66349\",\n    \"description\": \"a soccer player hits the ball to keep the other team from getting a goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1qx68R9Q1uulsvio1_400\",\n    \"question\": \"how many men with beards are shouting at each other?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7991\",\n    \"key\": \"74990\",\n    \"description\": \"four men with beards are shouting at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9x2h32Ux61t2ozhco1_250\",\n    \"question\": \"what is somebody with fair hair putting on?\",\n    \"answer\": \"belt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13892\",\n    \"key\": \"12316\",\n    \"description\": \"somebody with fair hair is putting their seat belt on.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbycrsfId1sggdd3o1_400\",\n    \"question\": \"how many men are on top of a pool table?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9707\",\n    \"key\": \"76625\",\n    \"description\": \"the two men are on top of a pool table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxrmjqiJv1slj978o1_250\",\n    \"question\": \"what sits in its bed and yawns?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22502\",\n    \"key\": \"36590\",\n    \"description\": \"a cat sits in its bed and yawns.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndtm8zH5Qo1tbmi9ho1_400\",\n    \"question\": \"what is the color of the dances?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40772\",\n    \"key\": \"69596\",\n    \"description\": \"a man wears brown dances while he turns forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne55yo7DLv1tsmvhdo1_500\",\n    \"question\": \"what are jumping off the high cliff?\",\n    \"answer\": \"chicks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52202\",\n    \"key\": \"94775\",\n    \"description\": \"young chicks are jumping off a high cliff.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9abseuY0C1slj978o1_400\",\n    \"question\": \"what is the color of the tail?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51324\",\n    \"key\": \"70847\",\n    \"description\": \"a black cat plays with an orange cats tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0sqdQHvF1tl1ehbo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20066\",\n    \"key\": \"65857\",\n    \"description\": \"a man in a black suit is standing on the sidelines.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimutq2SO61tjd11mo1_500\",\n    \"question\": \"what is the color of the trees?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43310\",\n    \"key\": \"75088\",\n    \"description\": \"someone in a purple ski suit is snowboarding down a snowy slope with purple trees in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcgxcAnLa1qc6y5wo1_400\",\n    \"question\": \"how many teenagers are singing,\",\n    \"answer\": \"dancing and laughing ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17719\",\n    \"key\": \"33510\",\n    \"description\": \"two teenagers are singing,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8wc3bPk61tmp9jpo1_400\",\n    \"question\": \"what are the people making or fixing?\",\n    \"answer\": \"masks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51049\",\n    \"key\": \"9479\",\n    \"description\": \"the people are making or fixing gas masks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobxqkQ9G11tpg4boo1_250\",\n    \"question\": \"what is chasing the man around a computer screen?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49800\",\n    \"key\": \"22695\",\n    \"description\": \"a cat is chasing a man around a computer screen.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxp04rEFk1tjjnlno1_400\",\n    \"question\": \"what are laid down together on the floor?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14040\",\n    \"key\": \"71522\",\n    \"description\": \"cats are laid down together on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kuvyUJT91sual3ro1_250\",\n    \"question\": \"what does the man in white armor walk through the water and does the same?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48950\",\n    \"key\": \"3721\",\n    \"description\": \"a man in white armor walks through the water and a cat does the same.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgbm5yvBo1totmz5o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22972\",\n    \"key\": \"48940\",\n    \"description\": \"a white man with black glasses is yawning.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpysnBDbX1u1gl2xo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17748\",\n    \"key\": \"6267\",\n    \"description\": \"the guy wearing a white shirt is in deep thought.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9by90fW3W1ruvp0co1_500\",\n    \"question\": \"how many men are smoking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39617\",\n    \"key\": \"89807\",\n    \"description\": \"two men are smoking and one man is standing by the car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimwrrQM0q1tz1pago1_400\",\n    \"question\": \"how many men are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49199\",\n    \"key\": \"81072\",\n    \"description\": \"two men are talking and one of them walks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nait93JoFa1t1hwbqo1_250\",\n    \"question\": \"what does the young man with blonde hair play?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5333\",\n    \"key\": \"7808\",\n    \"description\": \"a young man with blonde hair plays a bass guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9j6u0SS061ri0wzfo1_400\",\n    \"question\": \"what does the tabby cat push away with its back feet?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49686\",\n    \"key\": \"39368\",\n    \"description\": \"a tabby cat pushes a black cat away with its back feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxtuwvgS91ttuja3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19386\",\n    \"key\": \"86076\",\n    \"description\": \"a man in a white shirt is talking on his cellphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxltyc41D1tkwr3ko1_500\",\n    \"question\": \"what is the woman turning while going down the street?\",\n    \"answer\": \"circles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46421\",\n    \"key\": \"86316\",\n    \"description\": \"a woman is turning circles while going down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_np1mqhrIMa1uwhbn9o1_250\",\n    \"question\": \"what is the young man playing,\",\n    \"answer\": \"looking sideways and singing ? guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47621\",\n    \"key\": \"12160\",\n    \"description\": \"a young man is playing a guitar,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qenkJHA91srbyoyo1_400\",\n    \"question\": \"how many women are fighting and flipping each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36079\",\n    \"key\": \"88471\",\n    \"description\": \"the two women are fighting and flipping each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrf6t4Kcu1u9xj6to1_500\",\n    \"question\": \"what is the car making around each bend,\",\n    \"answer\": \"? turns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40623\",\n    \"key\": \"92709\",\n    \"description\": \"a car is making unusually fast turns around each bend,\"\n  },\n  {\n    \"video_name\": \"tumblr_nen2gpqUlI1tx8mn0o1_400\",\n    \"question\": \"what does the race car lose while driving on a track with several other cars?\",\n    \"answer\": \"trunk\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7359\",\n    \"key\": \"55482\",\n    \"description\": \"a race car loses its trunk while driving on a track with several other cars.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk70ezm3eq1tkand4o1_400\",\n    \"question\": \"what are two musicians singing and playing together?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50308\",\n    \"key\": \"33037\",\n    \"description\": \"two musicians are singing and playing guitar together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5g6kILKI1ra72xto1_500\",\n    \"question\": \"what is the woman with a nose ring holding?\",\n    \"answer\": \"lamp\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48957\",\n    \"key\": \"89135\",\n    \"description\": \"a woman with a nose ring is holding a lamp.\"\n  },\n  {\n    \"video_name\": \"tumblr_njziaa2Zn31u8fu4co1_500\",\n    \"question\": \"how many guys are playing guitar and singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46724\",\n    \"key\": \"52099\",\n    \"description\": \"two guys are playing guitar and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc27y5VMO1u18vm5o1_400\",\n    \"question\": \"where are the man and a young woman talking.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22953\",\n    \"key\": \"82772\",\n    \"description\": \"a man and a young woman are talking in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4pc6U2ib1rmvdlro1_400\",\n    \"question\": \"what is catching the fish out of the water?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2787\",\n    \"key\": \"31969\",\n    \"description\": \"a bird is catching a fish out of the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngco2hZoYX1sflxw5o1_250\",\n    \"question\": \"what is the color of the bird?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48254\",\n    \"key\": \"8062\",\n    \"description\": \"the two men are fighting over a green bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqclsshFCq1u802c3o1_500\",\n    \"question\": \"how many fingers is the guy kissing at the crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14487\",\n    \"key\": \"60538\",\n    \"description\": \"a guy is kissing two fingers at the crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh79ioD59r1u6eyp0o1_400\",\n    \"question\": \"where are the young man and a young woman driving.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40461\",\n    \"key\": \"30642\",\n    \"description\": \"a young man and a young woman are driving in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xu4w1Lfq1tatohao1_400\",\n    \"question\": \"what is the cat kicking with a back paw?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2658\",\n    \"key\": \"40652\",\n    \"description\": \"a cat is kicking a door with a back paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xu4w1Lfq1tatohao1_400\",\n    \"question\": \"what is kicking the door with its back leg?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40716\",\n    \"key\": \"40652\",\n    \"description\": \"a gray cat is kicking a door with its back leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwki1UrXg1s30542o1_500\",\n    \"question\": \"what does the man point his finger and shatters?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47629\",\n    \"key\": \"86246\",\n    \"description\": \"a man points his finger and a glass window shatters.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9dyj81wq1tinuvfo1_400\",\n    \"question\": \"where is the dark haired girl dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25150\",\n    \"key\": \"7364\",\n    \"description\": \"a dark haired girl is dancing in her room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngll7ipfEJ1t5mda1o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43106\",\n    \"key\": \"89218\",\n    \"description\": \"a man in a red shirt and a man in a yellow shirt are fooling around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmctp8E72g1rhpmtko1_400\",\n    \"question\": \"how many men is jumping and catapult another man?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8150\",\n    \"key\": \"85003\",\n    \"description\": \"two men is jumping and catapult another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95dgjajvW1syjz5uo1_250\",\n    \"question\": \"how many young men are laughing it up on a couch?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3694\",\n    \"key\": \"13891\",\n    \"description\": \"three young men are laughing it up on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8yn0AUFo1qk5xgqo1_400\",\n    \"question\": \"what are the girl with gloves and a boy wearing?\",\n    \"answer\": \"masks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30350\",\n    \"key\": \"60822\",\n    \"description\": \"a girl with gloves and a boy are wearing masks.\"\n  },\n  {\n    \"video_name\": \"tumblr_njt036Y1271szl0gfo1_250\",\n    \"question\": \"what is the color of the robe?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23827\",\n    \"key\": \"15733\",\n    \"description\": \"a man with blue robe jumps into a recliner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqeuudSoy11trx1hko1_250\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24760\",\n    \"key\": \"3071\",\n    \"description\": \"a man is holding a puppy who turns his head and looks around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8j7afCAt1rn9s7oo1_250\",\n    \"question\": \"how many women are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23506\",\n    \"key\": \"59777\",\n    \"description\": \"a woman is laying on the ground and two women are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngf79bgJEJ1sht3fmo1_400\",\n    \"question\": \"what tries to jump at the balloon?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42185\",\n    \"key\": \"1473\",\n    \"description\": \"a dog tries to jump at a balloon.\"\n  },\n  {\n    \"video_name\": \"tumblr_no0wtz5OTs1sj8qgio1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32856\",\n    \"key\": \"39640\",\n    \"description\": \"a woman wearing a white shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93e3yR9xH1sur4uqo1_250\",\n    \"question\": \"what is dancing to some music?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13226\",\n    \"key\": \"4752\",\n    \"description\": \"a pink teddy bear is dancing to some music.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pwnqmWsZ1qbzxofo1_400\",\n    \"question\": \"what is the color of the dances?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24984\",\n    \"key\": \"74550\",\n    \"description\": \"a man wears purple break dances in parking lot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcmojvqo51tbse9vo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11699\",\n    \"key\": \"37778\",\n    \"description\": \"a mean wearing a yellow jacket is trying to get a lock off his neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5lfp2AsH1tn37i7o1_500\",\n    \"question\": \"what is on top of a teddy bear biting it?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33346\",\n    \"key\": \"37338\",\n    \"description\": \"a turtle is on top of a teddy bear biting it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2j9ov5zN1u4v3ypo1_250\",\n    \"question\": \"what is climbing up bars in a closet?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27325\",\n    \"key\": \"155\",\n    \"description\": \"a kitty cat is climbing up bars in a closet.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8isnxg2D1s6r1roo1_400\",\n    \"question\": \"how many guys are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2276\",\n    \"key\": \"21968\",\n    \"description\": \"two guys are talking and one of them is going.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpgnfekrZ1thlpapo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37933\",\n    \"key\": \"1848\",\n    \"description\": \"a man in white shirt is looking around at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6elw4KPi1tb8qpro1_250\",\n    \"question\": \"what is the man wearing inside and talking to another man?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40168\",\n    \"key\": \"19283\",\n    \"description\": \"the man is wearing a long coat inside and talking to another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5tob8U6W1rsdx8zo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50288\",\n    \"key\": \"36538\",\n    \"description\": \"a black man is observing a group of other men who are celebrating.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnv3paZgju1tqq823o1_500\",\n    \"question\": \"how many men raise light sabers as doors open to reveal a dancing man with a light saber?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6041\",\n    \"key\": \"96962\",\n    \"description\": \"two men raise light sabers as doors open to reveal a dancing man with a light saber.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczlfupRqq1tvuidio1_500\",\n    \"question\": \"what is the color of the bird?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24533\",\n    \"key\": \"84031\",\n    \"description\": \"a green bird is flapping its wings on a tree branch.\"\n  },\n  {\n    \"video_name\": \"tumblr_npf71mXOMJ1t0ojyvo1_500\",\n    \"question\": \"how many young men cross in front of each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5547\",\n    \"key\": \"100347\",\n    \"description\": \"two young men cross in front of each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4g8qSaqy1rgywxto1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12542\",\n    \"key\": \"58570\",\n    \"description\": \"a guy wears a white shirt and a cap and sings into a microphone and moves his hand as he does so.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrck59A3RN1tu5z4ho1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA321\",\n    \"key\": \"68621\",\n    \"description\": \"a white man with black suit is winking a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnx611gAZA1teszvzo1_400\",\n    \"question\": \"how many people are sitting on the couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44336\",\n    \"key\": \"40182\",\n    \"description\": \"two people are sitting on a couch and one is tapping their toes.\"\n  },\n  {\n    \"video_name\": \"tumblr_neend692r31u25ovvo1_400\",\n    \"question\": \"what is driving down an otherwise empty street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46706\",\n    \"key\": \"63543\",\n    \"description\": \"a car is driving down an otherwise empty street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9idiRpcZ1uoy13yo1_500\",\n    \"question\": \"where is the man with sunglasses on standing.\",\n    \"answer\": \"? library\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17574\",\n    \"key\": \"33936\",\n    \"description\": \"a man with sunglasses on is standing in a library.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbv7fnwnlh1tm2vn6o1_400\",\n    \"question\": \"how many brothers are playing rock,\",\n    \"answer\": \"paper , scissors ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36138\",\n    \"key\": \"28619\",\n    \"description\": \"two brothers are playing rock,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1ul5xW0Q1ry0cvlo1_400\",\n    \"question\": \"how many people are singing and performing on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35548\",\n    \"key\": \"66022\",\n    \"description\": \"two people are singing and performing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxcge7SrF1t0ojyvo1_500\",\n    \"question\": \"how many men in white shirts are talking into microphones?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24363\",\n    \"key\": \"50672\",\n    \"description\": \"the three men in white shirts are talking into microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo7vzie171rrmr2bo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48659\",\n    \"key\": \"31091\",\n    \"description\": \"a woman in a black hat is talking and making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvmt3qmAh1u370zso1_540\",\n    \"question\": \"what did the woman carefully wind around the green flower?\",\n    \"answer\": \"string\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35871\",\n    \"key\": \"42521\",\n    \"description\": \"the woman carefully wound the string around the green flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxu3kMb2e1s71nvbo1_400\",\n    \"question\": \"what is the lemur bouncing off?\",\n    \"answer\": \"walls\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30433\",\n    \"key\": \"40521\",\n    \"description\": \"a lemur is bouncing off the walls.\"\n  },\n  {\n    \"video_name\": \"tumblr_naoh13qgd91sk0762o1_400\",\n    \"question\": \"what is the color of the dancing?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40036\",\n    \"key\": \"29843\",\n    \"description\": \"this image is of a guy in a blue shirt dancing onstage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfj56pBdEU1r9qhhio1_400\",\n    \"question\": \"where is the guy being pushed.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA2605\",\n    \"key\": \"86530\",\n    \"description\": \"a guy is being pushed in street by somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90v4wouUG1txdpb1o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47164\",\n    \"key\": \"12086\",\n    \"description\": \"a girl in a white shirt is smiling and holding her thumb up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrczpkDZLN1r7t178o1_500\",\n    \"question\": \"what is sleeping waving his ears?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43520\",\n    \"key\": \"52892\",\n    \"description\": \"a dog is sleeping waving his ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sj5cqJdi1sycli7o1_500\",\n    \"question\": \"how many wrestling women are walking forwards in the corridor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7501\",\n    \"key\": \"75249\",\n    \"description\": \"two wrestling women are walking forwards in a corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nihx73QAqi1rf4bn2o2_r1_540\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23554\",\n    \"key\": \"101197\",\n    \"description\": \"the two guys with black hair are laughing and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxt71hFPt1t7io47o1_250\",\n    \"question\": \"what is the cat dipping in a glass of milk?\",\n    \"answer\": \"paw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17788\",\n    \"key\": \"23002\",\n    \"description\": \"a cat is dipping its paw in a glass of milk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nho36xy72u1sfxtxno1_1280\",\n    \"question\": \"how many young men are standing around chewing something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35618\",\n    \"key\": \"56346\",\n    \"description\": \"two young men are standing around chewing something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqym5bN7i91usioooo1_500\",\n    \"question\": \"what does the man grimace and leaves?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13073\",\n    \"key\": \"51926\",\n    \"description\": \"a man grimaces and leaves the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhwbfxhALY1tv8vr1o1_500\",\n    \"question\": \"what are the group of people sitting around and eating?\",\n    \"answer\": \"chocolate\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37181\",\n    \"key\": \"76329\",\n    \"description\": \"a group of people are sitting around and eating chocolate.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy64tqeu01unlpflo1_400\",\n    \"question\": \"what is the man taking off then laughing?\",\n    \"answer\": \"bra\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21101\",\n    \"key\": \"86921\",\n    \"description\": \"a man is taking off his bra then laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_natc50Bn5N1taq9qwo1_250\",\n    \"question\": \"what is the beautiful,\",\n    \"answer\": \"blonde woman wearing a back top and matching ? piece\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13116\",\n    \"key\": \"25727\",\n    \"description\": \"a beautiful,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9v07TxUL1sjcvc1o1_250\",\n    \"question\": \"what is the man in a black shirt holding?\",\n    \"answer\": \"sheet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36026\",\n    \"key\": \"84536\",\n    \"description\": \"a man in a black shirt is holding a sheet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbanbjaQeV1rkcp22o1_400\",\n    \"question\": \"what is the color of the umbrellas?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31701\",\n    \"key\": \"28963\",\n    \"description\": \"a man and a woman are holding blue umbrellas.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2yi2tEwm1ux03doo1_400\",\n    \"question\": \"what is the color of the jumper?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35962\",\n    \"key\": \"66974\",\n    \"description\": \"a guy wears a white and a white shirt and runs while another guy in a red jumper laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbkcs1u3g1r6o49fo1_250\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39921\",\n    \"key\": \"223\",\n    \"description\": \"a man with a microphone is dancing in front of a red background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnuitmA6Lv1upjacho1_500\",\n    \"question\": \"how many people sit next to each on a couch,\",\n    \"answer\": \"holding hands ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25838\",\n    \"key\": \"88725\",\n    \"description\": \"two people sit next to each on a couch,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbxniaLRG1sx37a9o1_400\",\n    \"question\": \"what is the color of the shoes?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37765\",\n    \"key\": \"4873\",\n    \"description\": \"the lady in dress shoes and the man in red shoes walk side by side.\"\n  },\n  {\n    \"video_name\": \"tumblr_neko3rdy1l1s1pgzio1_500\",\n    \"question\": \"how many man squeezes the other 's face and the other man spits out his food?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25517\",\n    \"key\": \"51261\",\n    \"description\": \"one man squeezes the other 's face and the other man spits out his food.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngl4sfejED1u4rb65o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28970\",\n    \"key\": \"84249\",\n    \"description\": \"a young man wearing a black top and a white cap is singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0z9cQOGd1tdytspo1_500\",\n    \"question\": \"how many people is this image of on stage with microphones singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17021\",\n    \"key\": \"94401\",\n    \"description\": \"this image is of two people on stage with microphones singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njss7pkaUq1unlazfo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34619\",\n    \"key\": \"19591\",\n    \"description\": \"a white man with black hair is winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_neyn5fQWKo1r3ydxho1_1280\",\n    \"question\": \"how many men are keeping rhythm with the beat of music?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32785\",\n    \"key\": \"57540\",\n    \"description\": \"the two men are keeping rhythm with the beat of music.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4e6y37661qzm8mpo1_250\",\n    \"question\": \"what is the color of the popsicle?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7445\",\n    \"key\": \"35503\",\n    \"description\": \"a man with long dark hair licks a red popsicle slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkxhturUR1uxcyego1_400\",\n    \"question\": \"how many men are moving and singing in the white room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA898\",\n    \"key\": \"73594\",\n    \"description\": \"two men are moving and singing in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_neafumKFkZ1u1nx3wo1_250\",\n    \"question\": \"how many boys are performing the song on stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33761\",\n    \"key\": \"8436\",\n    \"description\": \"three boys are performing a song on stage and one is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkfsb1dgm1tbnwqmo1_400\",\n    \"question\": \"how many men are drinking alcohol in a bowling alley?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44717\",\n    \"key\": \"61016\",\n    \"description\": \"two men are drinking alcohol in a bowling alley.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4uhd6qJJ1tv0ziio1_400\",\n    \"question\": \"how many man sits with his knees up,\",\n    \"answer\": \"while the man next to him talks and moves his hands around ? one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19614\",\n    \"key\": \"33623\",\n    \"description\": \"one man sits with his knees up,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr4aaumad1tnw2l6o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26063\",\n    \"key\": \"341\",\n    \"description\": \"a man with short brown hair nods his head over another man 's shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzlhp8DpG1tgouwlo1_500\",\n    \"question\": \"what are playing with baby toys?\",\n    \"answer\": \"cubs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26706\",\n    \"key\": \"38497\",\n    \"description\": \"two red panda cubs are playing with baby toys.\"\n  },\n  {\n    \"video_name\": \"tumblr_naywiz1q9Q1sqzd72o1_250\",\n    \"question\": \"how many guys is the man holding the microphone is trying to interview?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9503\",\n    \"key\": \"19324\",\n    \"description\": \"the man holding the microphone is trying to interview the two guys.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ptqhbSXp1rjwte6o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46264\",\n    \"key\": \"67868\",\n    \"description\": \"a white man with red shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngf9rveb2q1sh98coo1_400\",\n    \"question\": \"what is drifting in the field of dry grass?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38799\",\n    \"key\": \"94749\",\n    \"description\": \"a car is drifting in a field of dry grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqcc8oJQI61trt6euo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4450\",\n    \"key\": \"30620\",\n    \"description\": \"a girl with red colored hair is making funny faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnilizLpNo1rv38tao1_400\",\n    \"question\": \"what hurt itself while playing with paper?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2248\",\n    \"key\": \"36771\",\n    \"description\": \"the cat hurt itself while playing with paper.\"\n  },\n  {\n    \"video_name\": \"tumblr_notwusKOgr1sqpx7ko1_400\",\n    \"question\": \"how many men are talking and throwing their hands up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA938\",\n    \"key\": \"100986\",\n    \"description\": \"the two men are talking and throwing their hands up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndraq7VgPA1rq1604o1_500\",\n    \"question\": \"what is this man smoking while looking around?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47418\",\n    \"key\": \"90690\",\n    \"description\": \"this man is smoking a cigarette while looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9djqIJG21r5rpejo1_250\",\n    \"question\": \"what is the guy wearing a hat is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44796\",\n    \"key\": \"27298\",\n    \"description\": \"a guy wearing a hat is playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrg7ha63Zf1sdbhp4o1_400\",\n    \"question\": \"what drive very low and close to the water?\",\n    \"answer\": \"airplanes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45370\",\n    \"key\": \"51214\",\n    \"description\": \"several airplanes drive very low and close to the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc45r8KiyO1tlzpnko1_250\",\n    \"question\": \"what is the bunny chewing and trying to get out his cage?\",\n    \"answer\": \"grass\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9135\",\n    \"key\": \"16225\",\n    \"description\": \"a bunny is chewing a grass and trying to get out his cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncuqfo9oE01rkw997o1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6701\",\n    \"key\": \"30193\",\n    \"description\": \"the brown haired girl is smoking hookah.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam95exVK61trs99ko1_250\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43775\",\n    \"key\": \"12287\",\n    \"description\": \"a blond guy with blue eyes looks down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhsrz51SVx1qf6ezuo1_500\",\n    \"question\": \"what is the boy holding up?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21029\",\n    \"key\": \"82537\",\n    \"description\": \"a boy is holding up a finger gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfwvb2hwX1thi9glo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4597\",\n    \"key\": \"19948\",\n    \"description\": \"a boy in a black shirt is talking and moving his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nag19o9ymZ1rueo5mo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38454\",\n    \"key\": \"69212\",\n    \"description\": \"a woman with long brown hair and a microphone flips her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhum3oocm21u662zbo1_400\",\n    \"question\": \"what is driving from plate to plate applying ketchup to some hamburgers?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33133\",\n    \"key\": \"41026\",\n    \"description\": \"a robot is driving from plate to plate applying ketchup to some hamburgers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3yuk3UEX1t7i7oqo1_400\",\n    \"question\": \"how many girls on the floor dance and play around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38975\",\n    \"key\": \"32357\",\n    \"description\": \"two girls on the floor dance and play around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ensmVNvD1ttu918o1_500\",\n    \"question\": \"where does the man in a black lean back.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5242\",\n    \"key\": \"100105\",\n    \"description\": \"a man in a black leans back in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhv7jy5DBj1sjv6nlo1_250\",\n    \"question\": \"what is the man smoking,\",\n    \"answer\": \"? cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31247\",\n    \"key\": \"37961\",\n    \"description\": \"a man is smoking a cigarette,\"\n  },\n  {\n    \"video_name\": \"tumblr_nd2yltfEa81tdjuqvo1_400\",\n    \"question\": \"what is the woman picking up and walking away with it?\",\n    \"answer\": \"purse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA902\",\n    \"key\": \"87899\",\n    \"description\": \"a woman is picking up a purse and walking away with it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nho4lw7YQP1tooeulo1_500\",\n    \"question\": \"how many guy is playing the guitar while another is smiling and waving?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4189\",\n    \"key\": \"86177\",\n    \"description\": \"one guy is playing a guitar while another is smiling and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyndnYw1C1rmkebwo1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23871\",\n    \"key\": \"32270\",\n    \"description\": \"a black dog is biting a man who bites the dog back.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92ateSCgb1thc85fo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41355\",\n    \"key\": \"83213\",\n    \"description\": \"a woman in a black leather jacket is waving her fingers and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nao9y58N7P1qfy935o1_400\",\n    \"question\": \"how many men sit in chairs as they give interviews?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23941\",\n    \"key\": \"64283\",\n    \"description\": \"two men sit in chairs as they give interviews.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba4zsrstP1thacl7o1_500\",\n    \"question\": \"how many men are on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22939\",\n    \"key\": \"19023\",\n    \"description\": \"two men are on stage and one lifts the shirt of the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9y6ssSON1tk8n6jo1_250\",\n    \"question\": \"what is the man with short hair brandishing and smiling?\",\n    \"answer\": \"knife\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA137\",\n    \"key\": \"39630\",\n    \"description\": \"a man with short hair is brandishing a large knife and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njavyfLo1J1u9268ao1_400\",\n    \"question\": \"how many guys are moving to something on a stadium?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46302\",\n    \"key\": \"9220\",\n    \"description\": \"two guys are moving to something on a stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrmo9arP31s2mg9to1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21057\",\n    \"key\": \"88169\",\n    \"description\": \"a girl with long red hair is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncu9jrqhjF1twu0uoo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48104\",\n    \"key\": \"57933\",\n    \"description\": \"the guy in the blue shirt is dancing and vomiting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nct9k6xWJP1tmud5do1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31651\",\n    \"key\": \"59715\",\n    \"description\": \"a young with black hair boy is watching.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngw6o7Ekz41sgsmbqo1_100\",\n    \"question\": \"what is the man wearing and moving his arms around?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7456\",\n    \"key\": \"22111\",\n    \"description\": \"a man is wearing headphones and moving his arms around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfb43gc3nc1tk7vg4o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41127\",\n    \"key\": \"50530\",\n    \"description\": \"a girl with long black hair is speaking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngye1wU1N01rymx0io1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA997\",\n    \"key\": \"79529\",\n    \"description\": \"a woman with long brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_najgdrKOWV1teiq60o1_500\",\n    \"question\": \"what is the man in black holding and a woman is dancing up to him?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3534\",\n    \"key\": \"74304\",\n    \"description\": \"a man in black is holding a microphone and a woman is dancing up to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxkebyfCU1ta0pdyo1_500\",\n    \"question\": \"where is the guy discussing a theory.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35224\",\n    \"key\": \"37061\",\n    \"description\": \"a guy is discussing a theory in his room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmof9AmBa1qmsoz0o1_400\",\n    \"question\": \"where is the teenager wearing a striped shirt smiles.\",\n    \"answer\": \"? bathroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10949\",\n    \"key\": \"34179\",\n    \"description\": \"a teenager wearing a striped shirt smiles in a bathroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbz9evJpXZ1tgqwj8o1_250\",\n    \"question\": \"how many boys look as if they are about to kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50370\",\n    \"key\": \"85691\",\n    \"description\": \"two boys look as if they are about to kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9owiPitI1u4pbd2o1_500\",\n    \"question\": \"what is the man with wild hair pumping in the air?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20094\",\n    \"key\": \"89655\",\n    \"description\": \"a man with wild hair is pumping his guitar in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8uw0bs3ZI1qinzfzo1_400\",\n    \"question\": \"how many people are doing the woman 's makeup while she stands in front of a mic?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6274\",\n    \"key\": \"29461\",\n    \"description\": \"two people are doing a woman 's makeup while she stands in front of a mic.\"\n  },\n  {\n    \"video_name\": \"tumblr_na403e8Ozd1qeda9uo1_400\",\n    \"question\": \"what is siting on the dresser and knocks something off of it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47251\",\n    \"key\": \"55798\",\n    \"description\": \"a black cat is siting on a dresser and knocks something off of it.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0stcDMuz1u3z45ao1_500\",\n    \"question\": \"what is the man playing in a dark room?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47012\",\n    \"key\": \"46013\",\n    \"description\": \"a man is playing a guitar shirtless in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq9tgb73C1retsn4o1_500\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1303\",\n    \"key\": \"96116\",\n    \"description\": \"two men in white shirts are dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba4pcH1vc1slj978o1_400\",\n    \"question\": \"where is the beautiful turtle walking.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4929\",\n    \"key\": \"14475\",\n    \"description\": \"a beautiful turtle is walking in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhwanmiWzD1qlkuvao1_250\",\n    \"question\": \"what does the woman reach over and touches?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20476\",\n    \"key\": \"76552\",\n    \"description\": \"a woman reaches over and touches a frog.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndoue7RnCY1tkkgpso1_400\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21741\",\n    \"key\": \"36241\",\n    \"description\": \"a man wearing a top hat and purple coat is resting his head on his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelrob2YG41u32mywo1_250\",\n    \"question\": \"how many guys is this image of sitting down talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48571\",\n    \"key\": \"84517\",\n    \"description\": \"this image is of two guys sitting down talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdc7wPDYW1uvkm4po1_500\",\n    \"question\": \"how many people is wearing historic clothing look at each other and embrace?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47786\",\n    \"key\": \"101115\",\n    \"description\": \"two people wearing historic clothing look at each other and embrace.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh3y0lqgx1tuj3bpo1_400\",\n    \"question\": \"what does the dog knock a cat in to a bath tub and jumps back out?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33490\",\n    \"key\": \"34855\",\n    \"description\": \"a dog knocks a cat in to a bath tub and the cat jumps back out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nox34tXaCU1u95gjqo1_400\",\n    \"question\": \"how many men are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34778\",\n    \"key\": \"64245\",\n    \"description\": \"two men are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfr6feQ1ii1smz8r1o1_400\",\n    \"question\": \"where did the boy blink then laughed.\",\n    \"answer\": \"? shower\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39024\",\n    \"key\": \"54085\",\n    \"description\": \"a boy in a shower blinked then laughed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpvltiHql1tjag8mo1_250\",\n    \"question\": \"how many men is wearing dark clothes are pushing each other and play fighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50680\",\n    \"key\": \"21881\",\n    \"description\": \"two men wearing dark clothes are pushing each other and play fighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9k2q1UhR1smenr8o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44185\",\n    \"key\": \"43560\",\n    \"description\": \"a man in a black shirt is laughing and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njn51xCYFt1tldu19o1_500\",\n    \"question\": \"where is the man eating,\",\n    \"answer\": \"having cake . ? restaurant\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6990\",\n    \"key\": \"70213\",\n    \"description\": \"a man is eating in a restaurant,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvh0oFqSJ1tf7jhlo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49235\",\n    \"key\": \"25578\",\n    \"description\": \"a man wearing a black jacket is smiling at a baby.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvvdlFwGZ1qdbe91o1_400\",\n    \"question\": \"where are two guys standing.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37437\",\n    \"key\": \"77610\",\n    \"description\": \"two guys are standing in a brick hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_newrcpj47E1u1ym3zo1_250\",\n    \"question\": \"how many men eat either end of a green tube while laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52878\",\n    \"key\": \"46934\",\n    \"description\": \"two men eat either end of a green tube while laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95xq1FqHa1s0ea0ao1_400\",\n    \"question\": \"what is the color of the bird?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51599\",\n    \"key\": \"50632\",\n    \"description\": \"this image is of a black bird rolling around in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9xu7hQBq1r7o668o1_400\",\n    \"question\": \"what is playing with the mouse?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36019\",\n    \"key\": \"50810\",\n    \"description\": \"a kitten is playing with a mouse.\"\n  },\n  {\n    \"video_name\": \"tumblr_n1wdvaQgaI1scy8zoo1_400\",\n    \"question\": \"where are two men eating cereal.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32310\",\n    \"key\": \"36893\",\n    \"description\": \"two men are eating cereal in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndurbh6w6U1rm0u6lo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20887\",\n    \"key\": \"58760\",\n    \"description\": \"a woman with purple hair is handcuffed to a palm tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8cq0OE6r1u2z3v8o3_250\",\n    \"question\": \"what is the man wearing and dancing with other men?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22653\",\n    \"key\": \"2254\",\n    \"description\": \"a man is wearing a white suit jacket and dancing with other men.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8usq5bxK1t6ckbko1_400\",\n    \"question\": \"how many men start freaking out at the same time?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17055\",\n    \"key\": \"57386\",\n    \"description\": \"two men start freaking out at the same time.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6hsntJrr1s3f23uo1_250\",\n    \"question\": \"what falls off of the man while he is singing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39563\",\n    \"key\": \"1683\",\n    \"description\": \"a red hat falls off of a man while he is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn4nr9hX3C1sm7eoto1_500\",\n    \"question\": \"what is the baby in one pool with a swim ring and is in the other pool?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15796\",\n    \"key\": \"41251\",\n    \"description\": \"the baby is in one pool with a swim ring and the dog is in the other pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjiylGWRL1tlsqhto1_250\",\n    \"question\": \"what is two people playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16236\",\n    \"key\": \"91085\",\n    \"description\": \"two people are sitting one is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_npplhk1yOz1tbeohdo1_540\",\n    \"question\": \"what did the woman kiss?\",\n    \"answer\": \"bow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48323\",\n    \"key\": \"56295\",\n    \"description\": \"the woman kissed the big pink hair bow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n985jc2Wyr1sj2zt0o1_400\",\n    \"question\": \"what is this eating a carrot?\",\n    \"answer\": \"pig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36370\",\n    \"key\": \"33712\",\n    \"description\": \"this is a guinea pig eating a carrot.\"\n  },\n  {\n    \"video_name\": \"tumblr_narnmt2HIO1tqhp30o1_400\",\n    \"question\": \"how many girls are crying and fixing their hair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38231\",\n    \"key\": \"79186\",\n    \"description\": \"two girls are crying and fixing their hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3tgnyofk1txpva2o1_500\",\n    \"question\": \"what looks around and settles down on the couch?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48282\",\n    \"key\": \"78132\",\n    \"description\": \"a kitten looks around and settles down on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9535qdmnf1tyyv4yo1_400\",\n    \"question\": \"how many guitar players are jumping on stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47829\",\n    \"key\": \"57859\",\n    \"description\": \"three guitar players are jumping on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvwisimqr1tmhwpbo1_250\",\n    \"question\": \"what is the man driving before turning his head to look at a passenger?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39737\",\n    \"key\": \"56167\",\n    \"description\": \"a man is driving a vehicle before turning his head to look at a passenger.\"\n  },\n  {\n    \"video_name\": \"tumblr_naekrosZth1s2zgxfo1_500\",\n    \"question\": \"what is the color of the lady?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29541\",\n    \"key\": \"72270\",\n    \"description\": \"a young lady in black is walking toward something.\"\n  },\n  {\n    \"video_name\": \"tumblr_np8cnaTLBq1tvv8b0o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43143\",\n    \"key\": \"92046\",\n    \"description\": \"a guy in a white jacket is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflu1hiOCs1tj2kheo1_400\",\n    \"question\": \"how many guys is this image of in costumes dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51276\",\n    \"key\": \"66030\",\n    \"description\": \"this image is of two guys in costumes dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_no0933CNzs1uv4mmfo1_400\",\n    \"question\": \"how many men are boxing in an arena?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15276\",\n    \"key\": \"58519\",\n    \"description\": \"two men are boxing in an arena.\"\n  },\n  {\n    \"video_name\": \"tumblr_no66cpooeo1us355ko1_400\",\n    \"question\": \"how many men are running outside?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52733\",\n    \"key\": \"64490\",\n    \"description\": \"two men are running outside and one slips.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs44yyDyy1s4s9tuo1_400\",\n    \"question\": \"what is adjusting her hair?\",\n    \"answer\": \"bracelet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23475\",\n    \"key\": \"30160\",\n    \"description\": \"a girl wearing bracelet is adjusting her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbx1tmy96X1tpo01go1_400\",\n    \"question\": \"what sticks out it 's tongue and moves it head from side to side?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA142\",\n    \"key\": \"4945\",\n    \"description\": \"a dog sticks out it 's tongue and moves it head from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbzz3bhaZq1s71nvbo1_500\",\n    \"question\": \"what are the group of monkeys all touching?\",\n    \"answer\": \"pole\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50246\",\n    \"key\": \"91879\",\n    \"description\": \"a group of monkeys are all touching a long black pole.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8rs94sSj1tcot63o1_250\",\n    \"question\": \"what is the boy playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28247\",\n    \"key\": \"13953\",\n    \"description\": \"a boy is playing the drums while a girl plays the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5u2chPoA1rp5w0lo1_400\",\n    \"question\": \"where does the woman suddenly stop her car on a highway.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20165\",\n    \"key\": \"82442\",\n    \"description\": \"a woman in a white car suddenly stops her car on a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7s8t8qVf1tumc0bo1_400\",\n    \"question\": \"how many teams are playing soccer on a pitch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28243\",\n    \"key\": \"66023\",\n    \"description\": \"two teams are playing soccer on a pitch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqiquZx9u1tx8mn0o1_400\",\n    \"question\": \"what passes another race car during a race on a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48023\",\n    \"key\": \"65286\",\n    \"description\": \"a race car passes another race car during a race on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6t8ixB6O1roo9cdo1_500\",\n    \"question\": \"what is the young man rubbing on the bottom of his?\",\n    \"answer\": \"figurine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32394\",\n    \"key\": \"55790\",\n    \"description\": \"a young man is rubbing a santa clause figurine on the bottom of his.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91fdzM1VS1s1l4fio1_400\",\n    \"question\": \"what is the man wearing and holding a cane while walking?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10928\",\n    \"key\": \"82743\",\n    \"description\": \"a man is wearing a hat and holding a cane while walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9flwiVMFP1tpe9lro1_250\",\n    \"question\": \"how many men are bowing while dancing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20348\",\n    \"key\": \"9456\",\n    \"description\": \"two men are bowing while dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qycyrMPe1tid4e3o1_250\",\n    \"question\": \"how many women are in the pool and hug each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30908\",\n    \"key\": \"15970\",\n    \"description\": \"two women are in a pool and hug each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nctwxv3Cf61sdoqnro1_500\",\n    \"question\": \"what does the man kick through a tire?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47845\",\n    \"key\": \"63764\",\n    \"description\": \"a man kicks a soccer ball through a tire.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngo4mlJOJN1qhpvavo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40368\",\n    \"key\": \"60720\",\n    \"description\": \"a person with blue hair is taking to three other people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0ddtHrBj1tg85j7o1_400\",\n    \"question\": \"what is the color of the x?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14235\",\n    \"key\": \"36841\",\n    \"description\": \"a red x is placed on blue cloth by two people wearing gloves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0ucyKamo1qmvxdro1_400\",\n    \"question\": \"what does the man throw at a bird but it falls into the water so he jumps in after it?\",\n    \"answer\": \"backpack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA92\",\n    \"key\": \"40574\",\n    \"description\": \"a man throws his backpack at a bird but it falls into the water so he jumps in after it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqttc4g8jR1u7q0qeo1_400\",\n    \"question\": \"what is the soccer player kicking into the net from halfway down the soccer field?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16773\",\n    \"key\": \"92146\",\n    \"description\": \"a soccer player is kicking a ball into the net from halfway down the soccer field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbiszkunNq1sd4gn9o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8096\",\n    \"key\": \"32933\",\n    \"description\": \"a young man in a white shirt is crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_nriqs0WZHF1rcfujso1_500\",\n    \"question\": \"what is the girl touching with her leg?\",\n    \"answer\": \"grass\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22281\",\n    \"key\": \"32330\",\n    \"description\": \"a girl is touching some grass with her leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92op4yc5Y1rxahw2o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22769\",\n    \"key\": \"52857\",\n    \"description\": \"the woman in the purple shirt walks into the elevator.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqa0w4T6e1u7c3syo1_250\",\n    \"question\": \"how many men are talking while shirtless?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4244\",\n    \"key\": \"90930\",\n    \"description\": \"the two men are talking while shirtless.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkhilUtwi1rkmghzo1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39322\",\n    \"key\": \"43958\",\n    \"description\": \"man is white t-shirt is hitting hanged object.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2yugot1B1tiz27ro1_500\",\n    \"question\": \"what is blinking and looks down?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33145\",\n    \"key\": \"37357\",\n    \"description\": \"a white horse is blinking and looks down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhwb12FhSt1rayvhto1_250\",\n    \"question\": \"what is the man wearing and another man smiles?\",\n    \"answer\": \"hood\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45008\",\n    \"key\": \"10272\",\n    \"description\": \"a man is wearing a dinosaur hood and another man smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngmm6bIs0m1qzdriyo1_250\",\n    \"question\": \"what is the woman turning?\",\n    \"answer\": \"round\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7012\",\n    \"key\": \"17801\",\n    \"description\": \"a woman is turning round before she goes through a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr61n6fLpi1sgol7yo1_500\",\n    \"question\": \"how many guy are laughing and doing stuff together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46516\",\n    \"key\": \"55829\",\n    \"description\": \"two guy are laughing and doing stuff together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndopa89squ1tk9tvao1_500\",\n    \"question\": \"what is moving something with its feet?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25594\",\n    \"key\": \"94715\",\n    \"description\": \"a black cat is moving something with its feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngxozslr4z1u3ezrno1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA459\",\n    \"key\": \"64185\",\n    \"description\": \"the man with the blond hair is crying while the man with the black hair looks at him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncepuifpK81rsfjdwo1_250\",\n    \"question\": \"what is the man rubbing?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47198\",\n    \"key\": \"14846\",\n    \"description\": \"a man is rubbing a stick that is between his legs with a saw in his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne7p2lftRW1tjvogto1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32458\",\n    \"key\": \"8468\",\n    \"description\": \"a woman in black is singing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjwd9zoNn1upsi9qo1_400\",\n    \"question\": \"how many men in black are talking whilst one of them massages his fingers?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29601\",\n    \"key\": \"66967\",\n    \"description\": \"two men in black are talking whilst one of them massages his fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepa4xWCUO1rzia65o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8557\",\n    \"key\": \"2379\",\n    \"description\": \"a man is wearing a gray shirt and smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jsshBHVv1roay1bo1_250\",\n    \"question\": \"how many men are shown then they slowly fade away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12268\",\n    \"key\": \"17178\",\n    \"description\": \"two men are shown then they slowly fade away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc40genyZD1s74rfdo1_250\",\n    \"question\": \"what is the color of the dragon?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48955\",\n    \"key\": \"85699\",\n    \"description\": \"a gray dragon is moving around and opening and shutting his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_na96syBV661rt21foo1_400\",\n    \"question\": \"what does the man put on his sunglasses and falls out?\",\n    \"answer\": \"lens\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18471\",\n    \"key\": \"25076\",\n    \"description\": \"a man puts on his sunglasses and the right lens falls out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtgja7dPW1qzni2wo1_r1_500\",\n    \"question\": \"where is the young man sitting and dancing.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8808\",\n    \"key\": \"39332\",\n    \"description\": \"a young man is sitting in a chair and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd73ono6M61tssk6do1_400\",\n    \"question\": \"what is the color of the bowl?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32306\",\n    \"key\": \"33092\",\n    \"description\": \"a girl is eating popcorn out of a blue bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh938wehDn1s20pcpo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40875\",\n    \"key\": \"71344\",\n    \"description\": \"a short hair man with dark green shirt is walking away with talking and waving hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n949rlL9HZ1rdh6w7o1_250\",\n    \"question\": \"where does the man do a twisting dance.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49176\",\n    \"key\": \"1669\",\n    \"description\": \"the man does a twisting dance in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5689LI5o1r5u8dlo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30347\",\n    \"key\": \"30535\",\n    \"description\": \"a young woman wearing a black dress is smiling and walking off a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nappfviAuS1tfuo7co1_400\",\n    \"question\": \"how many girl is kissing another girl on the cheek and grabbing her face?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43133\",\n    \"key\": \"31319\",\n    \"description\": \"one girl is kissing another girl on the cheek and grabbing her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne26g19AFF1tmflpjo1_500\",\n    \"question\": \"what is the color of the kitten?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13401\",\n    \"key\": \"58135\",\n    \"description\": \"a man with a blue bandanna plays with an orange kitten.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwn97Wwvn1taed07o1_250\",\n    \"question\": \"what is the woman wearing a striped top with blonde hair is holding?\",\n    \"answer\": \"bouquet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14835\",\n    \"key\": \"81428\",\n    \"description\": \"a woman wearing a striped top with blonde hair is holding a bouquet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivsff9LA71raooppo1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20477\",\n    \"key\": \"15601\",\n    \"description\": \"a man in an orange t-shirt is making a face.\"\n  },\n  {\n    \"video_name\": \"tumblr_neupg2MUNK1qc41a1o1_1280\",\n    \"question\": \"how many people are standing beside the tree with smoke drifting past them?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA897\",\n    \"key\": \"94292\",\n    \"description\": \"five people are standing beside a tree with smoke drifting past them.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfobyZlm41tdehqjo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47717\",\n    \"key\": \"69192\",\n    \"description\": \"a woman wearing a white dress unfolds her wings.\"\n  },\n  {\n    \"video_name\": \"tumblr_ned849Aklk1t6zdrfo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37981\",\n    \"key\": \"58821\",\n    \"description\": \"a white man is making faces and pointing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc83vxbtD81rmcnl8o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7783\",\n    \"key\": \"40301\",\n    \"description\": \"a man dressed in black is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne6d87DZXb1qkrp1ko1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18706\",\n    \"key\": \"84168\",\n    \"description\": \"a girl with brown hair is blowing a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq9kaqQ2R1tegl32o1_250\",\n    \"question\": \"what is the color of the cart?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49837\",\n    \"key\": \"14927\",\n    \"description\": \"a teenager is riding a red mobile cart.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzef77ISo1qzqg2go1_500\",\n    \"question\": \"what uses the small boy as a scratching post?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23037\",\n    \"key\": \"81788\",\n    \"description\": \"a cat uses a small boy as a scratching post.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr50zxPZpk1u9hme8o1_400\",\n    \"question\": \"what is the man rocking his head and playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14964\",\n    \"key\": \"25043\",\n    \"description\": \"the man is rocking his head and playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nll2l3AQAL1t8hlxao1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43838\",\n    \"key\": \"6690\",\n    \"description\": \"a woman with short,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndufpztm9z1s71nvbo1_400\",\n    \"question\": \"what does the boy kick at another boy twice in a row?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31640\",\n    \"key\": \"38028\",\n    \"description\": \"a boy kicks a soccer ball at another boy twice in a row.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2d03y10U1si6w6mo1_250\",\n    \"question\": \"what is the man slowly eating?\",\n    \"answer\": \"apple\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37075\",\n    \"key\": \"26952\",\n    \"description\": \"a man is slowly eating an apple while he talked to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q38bvjRB1tg6xino1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39738\",\n    \"key\": \"77367\",\n    \"description\": \"this image is of a woman in a red dress sitting down and eating something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6woc74I81uot1e7o1_400\",\n    \"question\": \"what is the man wearing and moving his arms around?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17575\",\n    \"key\": \"63863\",\n    \"description\": \"a man is wearing a black shirt and moving his arms around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne8jbgE1dr1u29dzvo1_400\",\n    \"question\": \"what is the woman in a black dress and long gloves playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26441\",\n    \"key\": \"22809\",\n    \"description\": \"a woman in a black dress and long gloves is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9ty1C8Dw1tr5tuwo1_500\",\n    \"question\": \"what is the yellow sports car driving down lined street?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40846\",\n    \"key\": \"89701\",\n    \"description\": \"a yellow sports car is driving down a palm tree lined street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh07lr7LIE1tqm4yoo1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8249\",\n    \"key\": \"77165\",\n    \"description\": \"a black haired woman is making a face with her tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbczizMWEt1qls9cco1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29369\",\n    \"key\": \"72222\",\n    \"description\": \"a man with blonde hair is sitting next to a man with a black hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_noaswjesmm1th7g9io1_400\",\n    \"question\": \"how many cats is lying side by side,\",\n    \"answer\": \"groomed each other ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25153\",\n    \"key\": \"95722\",\n    \"description\": \"two cats lying side by side,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndopa89squ1tk9tvao1_500\",\n    \"question\": \"what pushes the cart around a room?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42845\",\n    \"key\": \"94715\",\n    \"description\": \"a cat pushes a cart around a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vnsgagJw1to3k6do1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45036\",\n    \"key\": \"70408\",\n    \"description\": \"a black car is spinning in the middle of the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n6xecn3WXZ1tw9x4ao1_500\",\n    \"question\": \"what is blowing in the wind on a beach?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25495\",\n    \"key\": \"69964\",\n    \"description\": \"a palm tree is blowing in the wind on a beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwjgeL6Ak1tlms2ko1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44356\",\n    \"key\": \"15528\",\n    \"description\": \"a girl with red hair is smiling and then waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay0kzAbkR1twcgnlo1_400\",\n    \"question\": \"how many boys are climbing the stairs of a subway entrance?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12771\",\n    \"key\": \"27538\",\n    \"description\": \"three boys are climbing the stairs of a subway entrance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nixculfZ3b1qlbj8uo1_500\",\n    \"question\": \"how many young boys are laughing and smiling as they stand back to back?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA207\",\n    \"key\": \"101727\",\n    \"description\": \"two young boys are laughing and smiling as they stand back to back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nai6yrCMc21tikvlso1_250\",\n    \"question\": \"what sits on the chair with his legs spread apart?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22724\",\n    \"key\": \"30763\",\n    \"description\": \"a fat cat sits on a chair with his legs spread apart.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk55jsBaYj1u0dfk0o1_400\",\n    \"question\": \"how many guys are talking in an interview in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45581\",\n    \"key\": \"61440\",\n    \"description\": \"two guys are talking in an interview in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naqyh4k9gq1s99ctgo1_500\",\n    \"question\": \"how many men are playing catching game with their mouths?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31814\",\n    \"key\": \"98962\",\n    \"description\": \"two men are playing catching game with their mouths.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkguu7jdxL1u7a4duo1_250\",\n    \"question\": \"how many people bump into furniture while kissing passionately?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40801\",\n    \"key\": \"47966\",\n    \"description\": \"two people bump into furniture while kissing passionately.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpk1qQv9c1t7jda2o1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51570\",\n    \"key\": \"31678\",\n    \"description\": \"a black guy gets mad and destroys a blue door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3qf4WRTo1ttvngao1_400\",\n    \"question\": \"what is the color of the tie?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7061\",\n    \"key\": \"50798\",\n    \"description\": \"a guy wearing a gray jacket and black tie,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngm9yhvYpt1qg8w48o1_400\",\n    \"question\": \"what is sitting on the ground is being hit by a flying disc?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28807\",\n    \"key\": \"25215\",\n    \"description\": \"a dog sitting on the ground is being hit by a flying disc.\"\n  },\n  {\n    \"video_name\": \"tumblr_npzxj9c0Ne1r0vgovo1_500\",\n    \"question\": \"what is the color of the door?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32706\",\n    \"key\": \"97445\",\n    \"description\": \"a girl answers a red door for a boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyl2qESrz1slj978o1_400\",\n    \"question\": \"what is the man with a hat smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1295\",\n    \"key\": \"16167\",\n    \"description\": \"a man with a hat is smoking a cigarette while other men are fighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nomhc2cRR51uoon82o1_400\",\n    \"question\": \"what are some men clicking and turning around?\",\n    \"answer\": \"heels\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24217\",\n    \"key\": \"56700\",\n    \"description\": \"some men are clicking their heels and turning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhewmmMC4c1t0w9oqo1_500\",\n    \"question\": \"how many guys are sitting and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2343\",\n    \"key\": \"55471\",\n    \"description\": \"two guys are sitting and talking and one is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvz1zHlqY1slj978o1_250\",\n    \"question\": \"what stacks up colored rings on a pin?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27995\",\n    \"key\": \"27919\",\n    \"description\": \"a black bird stacks up colored rings on a pin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc0wacKC51rc5ot0o1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4477\",\n    \"key\": \"19859\",\n    \"description\": \"a woman in a blue t-shirt with long blonde hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9d64e3Zyo1rsxlf3o1_500\",\n    \"question\": \"how many women are on stage singing and dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16331\",\n    \"key\": \"92256\",\n    \"description\": \"three women are on stage singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlxzyxkQLW1u52c2xo1_250\",\n    \"question\": \"what are three men swinging at each other?\",\n    \"answer\": \"sabers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23542\",\n    \"key\": \"23633\",\n    \"description\": \"three men are swinging light sabers at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yikntlwA1ql1v50o1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6462\",\n    \"key\": \"86341\",\n    \"description\": \"a girl wearing a black hat is snapping her fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhs2lXSXl1rp12fxo1_1280\",\n    \"question\": \"what down the race track together and one is fastest?\",\n    \"answer\": \"race\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51019\",\n    \"key\": \"96025\",\n    \"description\": \"5 cars race down a race track together and one is fastest.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9nuf8BS91r51xvko1_500\",\n    \"question\": \"how many women are hugging each other here?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38470\",\n    \"key\": \"79546\",\n    \"description\": \"two women are hugging each other here.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmbdqyPlr1qhi0ato1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8201\",\n    \"key\": \"14144\",\n    \"description\": \"a blond haired guy wearing a white shirt is running.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6a7uQ9h71slj978o1_400\",\n    \"question\": \"what is too fat to jump over the step?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14268\",\n    \"key\": \"48977\",\n    \"description\": \"a young puppy is too fat to jump over a step.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98rvaEN3S1tdj4bvo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27129\",\n    \"key\": \"76496\",\n    \"description\": \"a person wearing a blue shirt and dark colored shorts,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgadlovZC1tk2ngvo1_250\",\n    \"question\": \"what is trying to bite water coming out of the spout,\",\n    \"answer\": \"before jumping in the pool ? dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4996\",\n    \"key\": \"11473\",\n    \"description\": \"a white dog is trying to bite water coming out of the spout,\"\n  },\n  {\n    \"video_name\": \"tumblr_nja26uK9Kg1rz6n51o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14584\",\n    \"key\": \"51459\",\n    \"description\": \"a man with a black jacket looks shy while talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfdl91Enp1ta0siuo1_250\",\n    \"question\": \"what is trying to get out of the box?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA201\",\n    \"key\": \"23803\",\n    \"description\": \"a cute little puppy is trying to get out of a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbaanc8Pba1qixms2o1_400\",\n    \"question\": \"what does the man with a black shirt lift?\",\n    \"answer\": \"singing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5103\",\n    \"key\": \"3237\",\n    \"description\": \"a man with a black shirt lifts his hat while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsi2nuczg1sg7ww1o1_1280\",\n    \"question\": \"what is eating food with chopsticks?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1116\",\n    \"key\": \"82417\",\n    \"description\": \"a dog is eating food with chopsticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_np87c5Ot0P1u677wzo1_250\",\n    \"question\": \"how many asian women are pointing with two fingers?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39107\",\n    \"key\": \"37932\",\n    \"description\": \"two asian women are pointing with two fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxoajybvK1qgfbkmo1_500\",\n    \"question\": \"how many men are staring and smiling at someone or something?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17026\",\n    \"key\": \"94313\",\n    \"description\": \"three men are staring and smiling at someone or something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndoj966vMP1s99r01o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47659\",\n    \"key\": \"13543\",\n    \"description\": \"a lady in a green dress is talking to a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh8lleEpNz1rhl4f0o1_400\",\n    \"question\": \"what is trying to eat from the hand?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24703\",\n    \"key\": \"81049\",\n    \"description\": \"a green frog is trying to eat from a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n29eb50PTx1rxpytqo1_250\",\n    \"question\": \"what wants the doll to itself?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36710\",\n    \"key\": \"25431\",\n    \"description\": \"the cat wants the doll to itself.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pyb0KLzE1r1dl9to1_400\",\n    \"question\": \"what is the color of the makeup?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29613\",\n    \"key\": \"29274\",\n    \"description\": \"the man has white makeup around his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_non3jyr9ie1sbhsk6o1_500\",\n    \"question\": \"what is the color of the shifts?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26468\",\n    \"key\": \"97615\",\n    \"description\": \"a blonde guy wearing black shifts his eyes and a blonde girl rests her head on her hands while smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjyq0Lzs31u4txxyo1_400\",\n    \"question\": \"what is the police officer moving?\",\n    \"answer\": \"mattress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2035\",\n    \"key\": \"19389\",\n    \"description\": \"a police officer is moving a mattress to reveal a man hiding underneath.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyft4jnrc1r32adho1_400\",\n    \"question\": \"what is the man putting on his face?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45504\",\n    \"key\": \"81138\",\n    \"description\": \"a man is putting glasses on his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tavjHiIF1rulogqo1_500\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30450\",\n    \"key\": \"85229\",\n    \"description\": \"a young man walks across a green background and poses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmd9e55pu1u3czlno1_500\",\n    \"question\": \"how many woman is wearing shirts and jackets are dancing and winking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25794\",\n    \"key\": \"75768\",\n    \"description\": \"two woman wearing shirts and jackets are dancing and winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkitkhGcr51qdlihoo1_500\",\n    \"question\": \"what are two FRAMEQAorters sitting and one drops from above?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51370\",\n    \"key\": \"63296\",\n    \"description\": \"two FRAMEQAorters are sitting and one drops his microphone from above.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknkvtNKt41u7nielo6_250\",\n    \"question\": \"what is the young man holding a helmet cross and enters a store?\",\n    \"answer\": \"sidewalk\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22594\",\n    \"key\": \"44978\",\n    \"description\": \"a young man holding a helmet cross the sidewalk and enters a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_napzl4gzgc1tukjnpo1_500\",\n    \"question\": \"what is the man wearing a white tank top removes?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37302\",\n    \"key\": \"94102\",\n    \"description\": \"a man wearing a white tank top removes his jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo3xwphio1tk2ngvo1_400\",\n    \"question\": \"what are wearing hats are playing with catnip?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10756\",\n    \"key\": \"30518\",\n    \"description\": \"three cats wearing hats are playing with catnip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffsy8wfSM1t2t9szo1_400\",\n    \"question\": \"what is watching at somebody waves something?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36603\",\n    \"key\": \"35128\",\n    \"description\": \"a dog is watching at somebody waves something.\"\n  },\n  {\n    \"video_name\": \"tumblr_noh6zccJke1unyhx2o1_400\",\n    \"question\": \"what is taking place somewhere?\",\n    \"answer\": \"race\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1622\",\n    \"key\": \"78360\",\n    \"description\": \"a car race is taking place somewhere.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7qy5DyEh1si0qiyo1_400\",\n    \"question\": \"where is the guy dancing.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36982\",\n    \"key\": \"64997\",\n    \"description\": \"a guy is dancing in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_npj3v5k7YO1twa8dfo1_400\",\n    \"question\": \"where are the two women fighting.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14554\",\n    \"key\": \"13996\",\n    \"description\": \"the two women are fighting in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb982i8Liq1slwrsuo1_400\",\n    \"question\": \"what is jumping into the hedge?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37234\",\n    \"key\": \"37843\",\n    \"description\": \"a dog is jumping into the hedge.\"\n  },\n  {\n    \"video_name\": \"tumblr_neuot0y1DW1tifif8o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33306\",\n    \"key\": \"55393\",\n    \"description\": \"a man with short black hair is winking while another man smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2rue39Be1qlxas3o1_400\",\n    \"question\": \"what is the man playing and banging his head?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25796\",\n    \"key\": \"65531\",\n    \"description\": \"a man is playing a red guitar and banging his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1pxegM8m1si6tlqo1_250\",\n    \"question\": \"what is the color of the wrestler?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4437\",\n    \"key\": \"41380\",\n    \"description\": \"a male wrestler dressed in black walks over to the corner of the ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx3cbf4Xz1t0ojyvo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2357\",\n    \"key\": \"99894\",\n    \"description\": \"a guy is walking by another guy with brown hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxi13VncY1u60ye3o1_400\",\n    \"question\": \"how many people walk toward an attraction that has been closed?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49500\",\n    \"key\": \"33964\",\n    \"description\": \"three people walk toward an attraction that has been closed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelqmzBsfA1qhqng8o1_500\",\n    \"question\": \"how many people is carrying objects are running next to trees?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52997\",\n    \"key\": \"67679\",\n    \"description\": \"three people carrying objects are running next to trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjeorxJAi1u3co76o1_400\",\n    \"question\": \"what does the cute gymnast flips across the mat then stick?\",\n    \"answer\": \"landing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33428\",\n    \"key\": \"20695\",\n    \"description\": \"the cute gymnast flips across the mat then sticks the landing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqeuuoOiKI1r30r4xo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22247\",\n    \"key\": \"89129\",\n    \"description\": \"a man in a white shirt walks walked outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2w70pKoD1s44ybio1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6700\",\n    \"key\": \"70872\",\n    \"description\": \"a man wearing a white t-shirt is running with his hands in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tb5dxE6q1qd9elfo1_400\",\n    \"question\": \"what does water cascade down surrounded by trees?\",\n    \"answer\": \"rocks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32080\",\n    \"key\": \"64714\",\n    \"description\": \"water cascades down rocks surrounded by trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv8o5fqeJ1u68w9so1_400\",\n    \"question\": \"what is laying down while its head falls to the bed?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40091\",\n    \"key\": \"60657\",\n    \"description\": \"a cat laying down while its head falls to the bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngws0aBHUj1slj978o1_400\",\n    \"question\": \"how many women take the photo together but fail and laugh?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30297\",\n    \"key\": \"40615\",\n    \"description\": \"two women take a photo together but fail and laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn3mz20G61t7gzr5o1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26714\",\n    \"key\": \"42184\",\n    \"description\": \"a red haired girl is saying something and she is making a move with her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfzfabyUbK1rro3hqo1_400\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16589\",\n    \"key\": \"58308\",\n    \"description\": \"a woman is opening her blue eyes and then crossing them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf6ns9a6tg1tjubn4o1_400\",\n    \"question\": \"what does the man smash on stage and in front of a crowd?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47429\",\n    \"key\": \"24972\",\n    \"description\": \"a man smashes a guitar on stage and in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_njszveBsHr1shch57o1_250\",\n    \"question\": \"how many men are dancing across the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9298\",\n    \"key\": \"8400\",\n    \"description\": \"two men are dancing across a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n972vahAeL1rb5pepo1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44513\",\n    \"key\": \"39117\",\n    \"description\": \"a baseball player dressed in a gray uniform is playing with the team mascot.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo4h5V7hD1uncsido1_400\",\n    \"question\": \"where is the woman under water.\",\n    \"answer\": \"? wheelchair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9027\",\n    \"key\": \"69701\",\n    \"description\": \"a woman in a wheelchair is under water.\"\n  },\n  {\n    \"video_name\": \"tumblr_np75icjROS1qfozfoo1_400\",\n    \"question\": \"what does the man place a cookie on the table and grab it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29571\",\n    \"key\": \"61794\",\n    \"description\": \"a man places a cookie on the table and the cat grab it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevb60y8aM1sre2f5o1_500\",\n    \"question\": \"what is the young man making and then he drinks?\",\n    \"answer\": \"toast\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1319\",\n    \"key\": \"76836\",\n    \"description\": \"a young man is making a toast and then he drinks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnnkfdRGI1rq9ek2o1_500\",\n    \"question\": \"where is the girl waving her hand as candles light.\",\n    \"answer\": \"? bath\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29078\",\n    \"key\": \"85134\",\n    \"description\": \"a girl in a bubble bath is waving her hand as candles light.\"\n  },\n  {\n    \"video_name\": \"tumblr_npabf7wMc81tatohao1_250\",\n    \"question\": \"what is nuzzling the cat and cleaning him off?\",\n    \"answer\": \"pig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16780\",\n    \"key\": \"36414\",\n    \"description\": \"a pig is nuzzling a cat and cleaning him off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoga4fMRx1r9ka6jo1_500\",\n    \"question\": \"how many men is wearing blue sweatshirts are using plastic spoons?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22377\",\n    \"key\": \"90422\",\n    \"description\": \"two men wearing blue sweatshirts are using plastic spoons.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj9smLJW61tb2khbo1_250\",\n    \"question\": \"how many man pushes the other onto a bed?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43287\",\n    \"key\": \"46323\",\n    \"description\": \"two men are walking in a garden and one man pushes the other onto a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_namh3klriu1tk3dj9o1_500\",\n    \"question\": \"how many men are kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9819\",\n    \"key\": \"83996\",\n    \"description\": \"two men are kissing each other and the sky is blue.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzuosHwut1s71nvbo1_400\",\n    \"question\": \"how many people are singing in front of a large sparkly k.?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49896\",\n    \"key\": \"24459\",\n    \"description\": \"three people are singing in front of a large sparkly k. a girl is smiling and tears a flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc78r0NrnH1rxobalo2_r1_400\",\n    \"question\": \"where is the man driving.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9440\",\n    \"key\": \"34090\",\n    \"description\": \"a man is driving in a vintage racing car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vlr7Y0CU1sed105o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10461\",\n    \"key\": \"69826\",\n    \"description\": \"a woman in a black shirt is singing a song.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoau5H0HV1s1ukk9o1_400\",\n    \"question\": \"what is taking the dog for a walk on a lead?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43535\",\n    \"key\": \"81129\",\n    \"description\": \"a cat is taking a dog for a walk on a lead.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncc1baT5HP1svs31wo1_400\",\n    \"question\": \"how many young men are enjoying the ride in the car and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6731\",\n    \"key\": \"2743\",\n    \"description\": \"two young men are enjoying a ride in the car and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklr3cz3JO1upnn1go1_400\",\n    \"question\": \"what is the man tearing apart a piece of paper and pouring on his head?\",\n    \"answer\": \"confetti\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37521\",\n    \"key\": \"40357\",\n    \"description\": \"a man is tearing apart a piece of paper and pouring confetti on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_no506dJsln1uuf348o1_250\",\n    \"question\": \"what is the person cutting up?\",\n    \"answer\": \"avocado\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7576\",\n    \"key\": \"47049\",\n    \"description\": \"the person is cutting up an avocado.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdhumxlMs1sxvd87o1_250\",\n    \"question\": \"what is waving back at someone!\",\n    \"answer\": \"? bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25396\",\n    \"key\": \"27329\",\n    \"description\": \"a big brown bear is waving back at someone!\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgdyxzRvB1szpk2oo1_400\",\n    \"question\": \"what is the color of the underwear?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27435\",\n    \"key\": \"42451\",\n    \"description\": \"a woman with high heels and sexy red underwear is waving a piece of fabric behind her.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng56lpAoNr1tgi4oho1_400\",\n    \"question\": \"how many guys is this image of hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42191\",\n    \"key\": \"68578\",\n    \"description\": \"this image is of two guys hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94f8ilpLQ1t0knigo1_500\",\n    \"question\": \"what is the man playing on a stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33079\",\n    \"key\": \"45903\",\n    \"description\": \"a man is playing an electric guitar on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmvgoRk7p1t5lviko1_250\",\n    \"question\": \"what does an explosion occur on a busy city street,\",\n    \"answer\": \"and a man spills , crouches , and cowers ? coffee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31867\",\n    \"key\": \"50428\",\n    \"description\": \"an explosion occurs on a busy city street,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkmqqAkGY1u3r81lo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47076\",\n    \"key\": \"35168\",\n    \"description\": \"a white woman is touching her cheek and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9wynnpCd1u6z7x7o1_500\",\n    \"question\": \"how many men drink water out of bottles?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24040\",\n    \"key\": \"48884\",\n    \"description\": \"the two men drink water out of bottles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn45o8Lso1sl4ny1o1_400\",\n    \"question\": \"how many guys are laughing and joking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44891\",\n    \"key\": \"37681\",\n    \"description\": \"the two guys are laughing and joking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vexzkDc11twx2vjo1_400\",\n    \"question\": \"what is being picked up by the giant cat?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32301\",\n    \"key\": \"59189\",\n    \"description\": \"a man chewing gum is being picked up by a giant cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nktdtfEy261t0s6h6o1_400\",\n    \"question\": \"what is the color of the kid?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29294\",\n    \"key\": \"87072\",\n    \"description\": \"a white kid is making gestures with his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2les6Lt11t5ojzdo1_250\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44760\",\n    \"key\": \"81335\",\n    \"description\": \"a brunette girl looks into a yellow room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhh11uNa5j1tngqkyo1_250\",\n    \"question\": \"what does the man play the drums and the man behind him plays?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33147\",\n    \"key\": \"8192\",\n    \"description\": \"the man plays the drums and the man behind him plays the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhc93dy1rj1u4t4tso1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16807\",\n    \"key\": \"90731\",\n    \"description\": \"the guy wearing the black jacket and chain is getting ready to go out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokgkjPvdh1uot1e7o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24479\",\n    \"key\": \"60623\",\n    \"description\": \"a man in a black shirt holds a pug dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_njziaa2Zn31u8fu4co1_500\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39718\",\n    \"key\": \"52099\",\n    \"description\": \"two men in white shirts are singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9ol4V9GF1u8skfvo1_500\",\n    \"question\": \"how many men are playing guitars on a stage to a crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3087\",\n    \"key\": \"66907\",\n    \"description\": \"two men are playing guitars on a stage to a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y521vKee1tea7zqo1_250\",\n    \"question\": \"what do the young man drop?\",\n    \"answer\": \"pencil\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37612\",\n    \"key\": \"19933\",\n    \"description\": \"a young man drop the pencil he was holding in his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtbxhIBN81u8bjw8o1_250\",\n    \"question\": \"what are the men riding?\",\n    \"answer\": \"statue\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22728\",\n    \"key\": \"24027\",\n    \"description\": \"the men are riding a large horse statue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1hdxAtl81slj978o1_400\",\n    \"question\": \"what walks close on the wood floor and stares stared?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47404\",\n    \"key\": \"18218\",\n    \"description\": \"a cat walks close on the wood floor and stares stared.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5andAo8C1tleghwo1_500\",\n    \"question\": \"where is the man adjusting his tie.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22245\",\n    \"key\": \"16997\",\n    \"description\": \"a man is adjusting his tie in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbwtq1sqV1sggdd3o1_400\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20038\",\n    \"key\": \"91636\",\n    \"description\": \"a man with red scarf does a sudden hand movement scaring a blond woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_neetr7xRcF1u0au1qo1_400\",\n    \"question\": \"what is the young man singing and holding?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52987\",\n    \"key\": \"42484\",\n    \"description\": \"a young man is singing and holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkvp0sAJs1ub68qdo1_250\",\n    \"question\": \"what is the color of the guys?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10864\",\n    \"key\": \"10647\",\n    \"description\": \"the two white guys are having fun conversation.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9738qiDj1qlnmvgo1_400\",\n    \"question\": \"what is the color of the glove?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41172\",\n    \"key\": \"69562\",\n    \"description\": \"a woman in a black glove moved her hand in front of her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwyt1ud1v1tkrqtzo1_500\",\n    \"question\": \"how many women run around in the field together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47640\",\n    \"key\": \"83401\",\n    \"description\": \"three women run around in a field together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnpmeDREl1t7qum9o1_400\",\n    \"question\": \"what do two men throw at each other?\",\n    \"answer\": \"disks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12695\",\n    \"key\": \"98622\",\n    \"description\": \"two men throw metal disks at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafjyxGRto1tjgfjko1_400\",\n    \"question\": \"what lays at the other side of a field?\",\n    \"answer\": \"mountainside\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17132\",\n    \"key\": \"59176\",\n    \"description\": \"a mountainside lays at the other side of a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nndantIoHF1qg2p2fo1_1280\",\n    \"question\": \"what is the man making at the bar?\",\n    \"answer\": \"toast\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8823\",\n    \"key\": \"91061\",\n    \"description\": \"the man is making an imaginary toast at the bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90w55xQEA1txn5dao1_250\",\n    \"question\": \"how many men are seated next to each other and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9709\",\n    \"key\": \"43653\",\n    \"description\": \"two men are seated next to each other and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklz4vcGE01tgv1ivo1_250\",\n    \"question\": \"what are the woman and man lying down and comes over and sniffs them?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45357\",\n    \"key\": \"80529\",\n    \"description\": \"a woman and man are lying down and a dog comes over and sniffs them.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ybticsYs1sr0qclo1_500\",\n    \"question\": \"what is the young man?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4459\",\n    \"key\": \"37872\",\n    \"description\": \"a young man is a baseball shirt is looking puzzled by something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2gxxkIj71sw3vf3o1_400\",\n    \"question\": \"how many leg is the smiling young women holding up with two hand on the beach?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19225\",\n    \"key\": \"49130\",\n    \"description\": \"a smiling young women is holding her two leg up with two hand on the beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhz2fdtSaf1sr7coko1_400\",\n    \"question\": \"what is the male model showing?\",\n    \"answer\": \"underwear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2410\",\n    \"key\": \"63562\",\n    \"description\": \"a male model is showing calvin klein underwear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnkvjBImQ1r9ga5zo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34772\",\n    \"key\": \"95510\",\n    \"description\": \"a brown haired man turns his head and looks at the man next to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuhc5cUJn1rotc20o1_400\",\n    \"question\": \"what is the dog jumping up and then he turns round when he gets to the top?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1004\",\n    \"key\": \"19595\",\n    \"description\": \"a dog is jumping up the stairs and then he turns round when he gets to the top.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6alb5Ca61qjpqono1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47332\",\n    \"key\": \"8474\",\n    \"description\": \"a black guy is photographed holding some boots.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh3y0lqgx1tuj3bpo1_400\",\n    \"question\": \"what is the dog pushing into a bath of water?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23068\",\n    \"key\": \"34855\",\n    \"description\": \"a dog is pushing a cat into a bath of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9rdfabh31slj978o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29910\",\n    \"key\": \"24340\",\n    \"description\": \"a man,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0v8hQfU71sjuzlno1_400\",\n    \"question\": \"what is the color of the bird?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36044\",\n    \"key\": \"37917\",\n    \"description\": \"a white pet bird is pecking at a small orange squash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6u7h2I8Z1saeojro1_400\",\n    \"question\": \"where do the guy with black suit turn off.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44971\",\n    \"key\": \"15571\",\n    \"description\": \"a guy with black suit turn off in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nayv2kyFQI1ts7wbfo1_400\",\n    \"question\": \"how many men are standing with their arms on each others shoulders?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43048\",\n    \"key\": \"80131\",\n    \"description\": \"two men are standing with their arms on each others shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoqajrYQm1t0cf9qo1_500\",\n    \"question\": \"what then looks into distance?\",\n    \"answer\": \"lips\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1846\",\n    \"key\": \"89144\",\n    \"description\": \"man licks lips then looks into distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrbakj5y2I1se8fevo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50424\",\n    \"key\": \"56809\",\n    \"description\": \"a woman with brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_njoamk0kmi1unf50eo1_250\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27695\",\n    \"key\": \"16053\",\n    \"description\": \"a guy wearing a white tee shirt and red,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndau5kAPfn1rvbl65o1_400\",\n    \"question\": \"what is the person sitting and opening?\",\n    \"answer\": \"chest\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52634\",\n    \"key\": \"46065\",\n    \"description\": \"a person is sitting and opening a treasure chest.\"\n  },\n  {\n    \"video_name\": \"tumblr_neos3nVhDf1s6kvcro1_250\",\n    \"question\": \"what is the guy laughing and drinking?\",\n    \"answer\": \"beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA595\",\n    \"key\": \"6159\",\n    \"description\": \"a guy is laughing and drinking a beer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5t5gfWQk1tjkho6o1_400\",\n    \"question\": \"where are two men wearing tattoos.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10212\",\n    \"key\": \"62110\",\n    \"description\": \"two men are wearing tattoos in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh01ubOfAY1slj978o1_400\",\n    \"question\": \"what is the color of the light?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24304\",\n    \"key\": \"38170\",\n    \"description\": \"a cat tries to catch a red light while it disappears.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne02xwVqS51tjplvvo1_250\",\n    \"question\": \"what is the man wearing in the back of a car?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32858\",\n    \"key\": \"2405\",\n    \"description\": \"a man is wearing sunglasses in the back of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8mwwLFDM1skvnslo1_400\",\n    \"question\": \"what is the man pulling off his head?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23915\",\n    \"key\": \"58275\",\n    \"description\": \"a man is pulling a hat off his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn9fyd7VX1rr455so1_400\",\n    \"question\": \"what is the man playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1601\",\n    \"key\": \"28361\",\n    \"description\": \"a man is playing a guitar as he performs on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r5buI9cb1rf0r2eo1_500\",\n    \"question\": \"what is the girl with dark hair drinking?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26147\",\n    \"key\": \"74406\",\n    \"description\": \"a girl with dark hair is drinking a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5svmC3HW1tbppspo1_400\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4961\",\n    \"key\": \"32239\",\n    \"description\": \"a woman is standing next to a white wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndekj98WUz1u19fjro1_500\",\n    \"question\": \"how many men sing into microphones while looking at one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36616\",\n    \"key\": \"49220\",\n    \"description\": \"two men sing into microphones while looking at one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0stcDMuz1u3z45ao1_500\",\n    \"question\": \"what is the person sitting and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28617\",\n    \"key\": \"46013\",\n    \"description\": \"a person is sitting and playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnymrk5szy1rjb18uo1_400\",\n    \"question\": \"what does the rock band play together?\",\n    \"answer\": \"instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23501\",\n    \"key\": \"60695\",\n    \"description\": \"a rock band plays their instruments together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgxtj8Gba1tllkofo1_400\",\n    \"question\": \"what does the man dances and another man open?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35393\",\n    \"key\": \"64635\",\n    \"description\": \"a man dances and another man opens the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nisle7TZTU1tmaii4o1_250\",\n    \"question\": \"what does the guy shake at another person?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43444\",\n    \"key\": \"25148\",\n    \"description\": \"a guy shakes a water bottle at another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc09eXkFv1s74qico1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36092\",\n    \"key\": \"28454\",\n    \"description\": \"a woman is showing her teeth with white clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkljr8snw81rb5yt1o1_500\",\n    \"question\": \"where is the man dancing.\",\n    \"answer\": \"? road\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10622\",\n    \"key\": \"9154\",\n    \"description\": \"a man is dancing in the country road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmidu9wwmu1urnbuuo1_250\",\n    \"question\": \"how many men are standing at night as fires rage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52965\",\n    \"key\": \"84514\",\n    \"description\": \"two men are standing at night as fires rage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n948aoVVp91qfwpqqo1_500\",\n    \"question\": \"how many guys is singing with close eyes in a stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31136\",\n    \"key\": \"44318\",\n    \"description\": \"three guys is singing with close eyes in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nim9jwnRrE1qg48rto1_250\",\n    \"question\": \"how many people dance near a tree with lights on it?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2538\",\n    \"key\": \"53605\",\n    \"description\": \"two people dance near a tree with lights on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjel1i9RM1u43d61o1_500\",\n    \"question\": \"what is the man moving with a serious look on his face?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21916\",\n    \"key\": \"70474\",\n    \"description\": \"a man is moving his coat with a serious look on his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyqloY3A31u3epwjo2_1280\",\n    \"question\": \"where are two people embracing.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25666\",\n    \"key\": \"78443\",\n    \"description\": \"two people are embracing in a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqveo9P2as1tae455o1_400\",\n    \"question\": \"where is the people recording several white bags.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4701\",\n    \"key\": \"66327\",\n    \"description\": \"a people is recording several white bags in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_neosawCPpL1u04u4bo1_250\",\n    \"question\": \"how many men take off their shirts and kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27975\",\n    \"key\": \"32607\",\n    \"description\": \"two men take off their shirts and kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfzln4hPwu1u4lqc0o1_400\",\n    \"question\": \"what is the color of the bandanna?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37176\",\n    \"key\": \"52384\",\n    \"description\": \"a man in a red bandanna is eating hot dogs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nctnnzxMkJ1sdpy9wo1_400\",\n    \"question\": \"what is the guy holding with candles on it?\",\n    \"answer\": \"cake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12778\",\n    \"key\": \"21723\",\n    \"description\": \"a guy is holding a cake with candles on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mskz1L1d1tizn8ho1_400\",\n    \"question\": \"where are two girls posing.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52056\",\n    \"key\": \"30132\",\n    \"description\": \"two girls are posing together in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgadlovZC1tk2ngvo1_250\",\n    \"question\": \"what is trying to bite the jet of water aimed into a swimming pool?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5213\",\n    \"key\": \"11473\",\n    \"description\": \"a dog is trying to bite a jet of water aimed into a swimming pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h415jCrZ1tq2eeqo1_400\",\n    \"question\": \"what walks backwards in the circle and falls to the ground?\",\n    \"answer\": \"wan\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38953\",\n    \"key\": \"63553\",\n    \"description\": \"a wan walks backwards in a circle and falls to the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nag9s4yd0c1txncr3o1_500\",\n    \"question\": \"how many young men are sitting and singing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40027\",\n    \"key\": \"95076\",\n    \"description\": \"two young men are sitting and singing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxhsp8ug21s6zpepo1_400\",\n    \"question\": \"what is enjoying having its belly rubbed?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44817\",\n    \"key\": \"68620\",\n    \"description\": \"a dog is enjoying having its belly rubbed.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ssmh7KSo1t29pn7o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48466\",\n    \"key\": \"48430\",\n    \"description\": \"a white man with black shirt is smiling and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsj1j0D7F1teapyzo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9982\",\n    \"key\": \"17651\",\n    \"description\": \"a woman in a white dress and black top is sitting down with her legs crossed.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w8iiyU0l1tqlsu7o1_1280\",\n    \"question\": \"how many alcohol bottles is the man holding and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29228\",\n    \"key\": \"70381\",\n    \"description\": \"a man is holding two alcohol bottles and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbd6dlVfS21tkhe6eo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12017\",\n    \"key\": \"98274\",\n    \"description\": \"a white haired man looks to his right.\"\n  },\n  {\n    \"video_name\": \"tumblr_npf5kbV03n1u1ogm0o1_400\",\n    \"question\": \"what is there surfing in the water?\",\n    \"answer\": \"jeep\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2385\",\n    \"key\": \"32114\",\n    \"description\": \"there is a jeep surfing in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay5f28tc81rscvico1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34209\",\n    \"key\": \"9304\",\n    \"description\": \"a man in a gray shirt is pointing and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rkeb4Wyf1tbjfazo1_250\",\n    \"question\": \"what is sneaking up on someone?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50590\",\n    \"key\": \"92043\",\n    \"description\": \"a cat is sneaking up on someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrb0jsciFl1rutckfo1_400\",\n    \"question\": \"what is the man with fair hair smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38980\",\n    \"key\": \"42380\",\n    \"description\": \"a man with fair hair is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmh5cTtJl1t6qjd2o1_400\",\n    \"question\": \"where is the guy taking music no instrument.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA21211\",\n    \"key\": \"78927\",\n    \"description\": \"a guy is taking music no instrument in street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w7lerGTz1tg0gc4o1_500\",\n    \"question\": \"what is the young man in glasses and a hat shaking and dancing while another man is singing?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30798\",\n    \"key\": \"61792\",\n    \"description\": \"a young man in glasses and a hat is shaking a microphone and dancing while another man is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8yo931oC1tswq46o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5369\",\n    \"key\": \"25989\",\n    \"description\": \"this young and nice girl with black hair is turning her head around and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4nq0GPvq1thdx2vo1_400\",\n    \"question\": \"what runs and jumps on the ice?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24267\",\n    \"key\": \"63940\",\n    \"description\": \"a goat runs and jumps on the ice.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngost8GMhb1t5gkiuo1_250\",\n    \"question\": \"what does the woman in red hair sip?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22946\",\n    \"key\": \"3059\",\n    \"description\": \"a woman in red hair sips her drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqw4at9cu21sxecxyo1_500\",\n    \"question\": \"what is the man holding and playing it with only one hand?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45157\",\n    \"key\": \"23889\",\n    \"description\": \"a man is holding a guitar and playing it with only one hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndoxkiR46w1trz2w3o1_400\",\n    \"question\": \"what is playing with the toy mouse?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46629\",\n    \"key\": \"4494\",\n    \"description\": \"a cat is playing with a toy mouse.\"\n  },\n  {\n    \"video_name\": \"tumblr_n939ymGjYz1teogu2o1_400\",\n    \"question\": \"where are some guys dancing.\",\n    \"answer\": \"? hall\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10019\",\n    \"key\": \"67163\",\n    \"description\": \"some guys are dancing in a hall.\"\n  },\n  {\n    \"video_name\": \"tumblr_npa30jXsLg1qdvza8o1_400\",\n    \"question\": \"what is the man and woman standing?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5871\",\n    \"key\": \"96685\",\n    \"description\": \"a man and woman standing near stairs while the woman moves her body seductively.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9siyhJeK01sz068fo1_400\",\n    \"question\": \"what plays with the hot air from a hairdryer?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17995\",\n    \"key\": \"80179\",\n    \"description\": \"a cat plays with the hot air from a hairdryer.\"\n  },\n  {\n    \"video_name\": \"tumblr_mqr7rhdu191stpzqxo1_250\",\n    \"question\": \"what is grabbing something and then shaking its head multiple times?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA881\",\n    \"key\": \"48885\",\n    \"description\": \"a cat is grabbing something and then shaking its head multiple times.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3k1cZSra1sqh42jo1_400\",\n    \"question\": \"what did the guy with the black shirt dive off onto the guy with the white trunks?\",\n    \"answer\": \"rope\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24410\",\n    \"key\": \"60866\",\n    \"description\": \"the guy with the black shirt dove off the top rope onto the guy with the white trunks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndba1z1rcl1u0re54o1_250\",\n    \"question\": \"what is the color of the skirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25506\",\n    \"key\": \"69413\",\n    \"description\": \"a young woman in a short white skirt is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_naklo5nlUu1trttyqo1_400\",\n    \"question\": \"what is the person riding through a rural area?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35844\",\n    \"key\": \"96853\",\n    \"description\": \"a person is riding a horse through a rural area.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4083ljaR1u7dvowo1_540\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40466\",\n    \"key\": \"79713\",\n    \"description\": \"a man in white is falling into a white chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5w7sROwX1tjdvfuo1_400\",\n    \"question\": \"what is running around on the bed?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19727\",\n    \"key\": \"80200\",\n    \"description\": \"a black kitten is running around on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyf3dGT7t1sqkp0fo1_250\",\n    \"question\": \"what is flapping its wings slowly?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41774\",\n    \"key\": \"60028\",\n    \"description\": \"the butterfly is flapping its wings slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2ecomrOS1u2oapqo1_500\",\n    \"question\": \"how many men are sitting on the sofa and give each other high fives?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27617\",\n    \"key\": \"26335\",\n    \"description\": \"three men are sitting on a sofa and give each other high fives.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqkzeml8y1unykvpo1_250\",\n    \"question\": \"what is staring at the plate of cakes?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19360\",\n    \"key\": \"19006\",\n    \"description\": \"a dog is staring at a plate of cakes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqspfnDHiF1rsp6cpo1_400\",\n    \"question\": \"how many swords is the floating person in black clothing holding?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7077\",\n    \"key\": \"19148\",\n    \"description\": \"a floating person in black clothing is holding two swords.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rb0lxnFI1tqmsauo1_400\",\n    \"question\": \"how many boys are moving their arms and legs in a kitchen on the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16627\",\n    \"key\": \"11491\",\n    \"description\": \"two boys are moving their arms and legs in a kitchen on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_natc50Bn5N1taq9qwo1_250\",\n    \"question\": \"what is the color of the piece?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52644\",\n    \"key\": \"25727\",\n    \"description\": \"a beautiful,\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwe4dqtcz1tksttyo1_400\",\n    \"question\": \"what does the man share with a woman during raining?\",\n    \"answer\": \"umbrella\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4304\",\n    \"key\": \"65099\",\n    \"description\": \"a man shares his umbrella with a woman during raining.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx0k7vKCu1u4cx5ko1_400\",\n    \"question\": \"what is walking close of some in a room?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2721\",\n    \"key\": \"64979\",\n    \"description\": \"a cute dog is walking close of some in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokjiwjEvX1uvad6ao1_250\",\n    \"question\": \"what is the person blowing and sucking them back up?\",\n    \"answer\": \"rings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9582\",\n    \"key\": \"457\",\n    \"description\": \"a person is blowing smoke rings and sucking them back up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdddhdOuN1te5p35o1_250\",\n    \"question\": \"what is the man petting?\",\n    \"answer\": \"pillow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15617\",\n    \"key\": \"289\",\n    \"description\": \"a man is petting a stuffed bird pillow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl0nxfMG31t5lviko1_250\",\n    \"question\": \"how many men turn to run then stop to look back?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50821\",\n    \"key\": \"43918\",\n    \"description\": \"the two men turn to run then stop to look back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0xoaIiwF1twc1jlo1_250\",\n    \"question\": \"what is the young man wearing?\",\n    \"answer\": \"glove\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25387\",\n    \"key\": \"15110\",\n    \"description\": \"a young man is wearing a large mechanical glove.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqwpl0JSUh1ut8c0ro1_500\",\n    \"question\": \"how many women back away from a doorway and close the door as they step out?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52933\",\n    \"key\": \"90567\",\n    \"description\": \"two women back away from a doorway and close the door as they step out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyk6aaScH1r5pvcmo1_400\",\n    \"question\": \"what is wearing a cap is talking?\",\n    \"answer\": \"animal\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24370\",\n    \"key\": \"60782\",\n    \"description\": \"a toy animal wearing a cap is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9abseuY0C1slj978o1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47426\",\n    \"key\": \"70847\",\n    \"description\": \"a black cat plays with an orange cats tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfv1sacpC01trp7kao1_400\",\n    \"question\": \"how many people is this image of onstage performing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14371\",\n    \"key\": \"45776\",\n    \"description\": \"this image is of two people onstage performing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng850mh9Uy1slj978o1_400\",\n    \"question\": \"what is kicking his leg while it is laying down?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9581\",\n    \"key\": \"34151\",\n    \"description\": \"a dog is kicking his leg while it is laying down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ucnlmCk51qzxorvo1_250\",\n    \"question\": \"what is the man in a red top drinking,\",\n    \"answer\": \"? beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20793\",\n    \"key\": \"9249\",\n    \"description\": \"a man in a red top is drinking a beer,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgeilomtY1tifif8o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19584\",\n    \"key\": \"17513\",\n    \"description\": \"a person with short black hair is smiling and looking happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdr3clKDa1sntw1mo1_400\",\n    \"question\": \"what is sitting in the aisle of a store with his tongue hanging out of the corner of his mouth?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA948\",\n    \"key\": \"39810\",\n    \"description\": \"a small dog is sitting in the aisle of a store with his tongue hanging out of the corner of his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9codlYOUt1tei1yuo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43448\",\n    \"key\": \"6135\",\n    \"description\": \"a girl wearing a white dress is stood looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngite8IUNJ1r5uqe5o1_500\",\n    \"question\": \"what is rolling around playing inside of the box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43360\",\n    \"key\": \"83208\",\n    \"description\": \"a cat is rolling around playing inside of a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9craz6Alc1rm5sqbo1_250\",\n    \"question\": \"what does the woman in a blue dress sip crossing her legs?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46478\",\n    \"key\": \"18764\",\n    \"description\": \"a woman in a blue dress sips a drink whilst crossing her legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nck4we3kAN1r4phxao1_400\",\n    \"question\": \"what is lying on the floor in a room?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10948\",\n    \"key\": \"91647\",\n    \"description\": \"a dog is lying on the floor in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nairm3bvNc1rg2esto1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34857\",\n    \"key\": \"41241\",\n    \"description\": \"a man in a gray shirt puts his arm round another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sj99mVgs1tvy42yo1_500\",\n    \"question\": \"what does the woman look at a man and the man closes?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20285\",\n    \"key\": \"10967\",\n    \"description\": \"a woman looks at a man and the man closes the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhusw69iP1tdjuqvo1_250\",\n    \"question\": \"what is the girl talking and holding?\",\n    \"answer\": \"banana\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19443\",\n    \"key\": \"247\",\n    \"description\": \"a girl is talking and holding a banana.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyy4pkeKZ1qdch8fo1_1280\",\n    \"question\": \"what is the color of the doors?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32389\",\n    \"key\": \"93636\",\n    \"description\": \"a guy is walking outside in front of red doors.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklr3cz3JO1upnn1go1_400\",\n    \"question\": \"what is the boy pouring on his head?\",\n    \"answer\": \"candy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46973\",\n    \"key\": \"40357\",\n    \"description\": \"a boy is pouring candy on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7miq1rPj1qdauj7o1_400\",\n    \"question\": \"what is the guy with short hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44173\",\n    \"key\": \"36901\",\n    \"description\": \"a guy with short hair is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv80p45u21sewywlo1_250\",\n    \"question\": \"what are two woman sitting and playing?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18317\",\n    \"key\": \"39505\",\n    \"description\": \"two woman are sitting and playing guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncuqfo9oE01rkw997o1_400\",\n    \"question\": \"what is the girl smoking while laying down?\",\n    \"answer\": \"pen\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7465\",\n    \"key\": \"30193\",\n    \"description\": \"a girl is smoking a vapor pen while laying down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0qmhkQ661u1fsdgo1_400\",\n    \"question\": \"how many man shakes his hips with his hands on his head in front of another man?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45105\",\n    \"key\": \"58647\",\n    \"description\": \"one man shakes his hips with his hands on his head in front of another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqp0xxEoF91td493xo1_500\",\n    \"question\": \"what does the woman hold up?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51625\",\n    \"key\": \"70898\",\n    \"description\": \"a woman holds a dog up to show a baby in the pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne6n5ulYf11sccnr4o1_250\",\n    \"question\": \"how many guys are dressed in costumes and hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5411\",\n    \"key\": \"5567\",\n    \"description\": \"two guys are dressed in costumes and hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrglqlxxfe1tpmv5yo1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52942\",\n    \"key\": \"57671\",\n    \"description\": \"a man in a red cap is making motions with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_no00ddSlG31t34v14o1_250\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42399\",\n    \"key\": \"81154\",\n    \"description\": \"a huge man wearing a green suit knocks down a man wearing red pants.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrt3nNtgf1sffeslo1_400\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43151\",\n    \"key\": \"11644\",\n    \"description\": \"a young man puts on black glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemookTxfy1u359i4o1_400\",\n    \"question\": \"how many women are running towards each other with balls?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31031\",\n    \"key\": \"38122\",\n    \"description\": \"two women are running towards each other with balls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhfwv7PrzZ1t9xf20o1_500\",\n    \"question\": \"what does the chef add to food and it lights up?\",\n    \"answer\": \"wine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48707\",\n    \"key\": \"13671\",\n    \"description\": \"a chef adds wine to food and it lights up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndeeyejogj1s2jf57o1_400\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25266\",\n    \"key\": \"5669\",\n    \"description\": \"the girl with the reddish hair and black coat is rocking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd93viKo511shv03qo1_r6_400\",\n    \"question\": \"where is the girl moving her butt.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43022\",\n    \"key\": \"11371\",\n    \"description\": \"a girl is moving her butt in her room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjoevhfoc1te94myo1_400\",\n    \"question\": \"what slapped the two away from them?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48044\",\n    \"key\": \"10630\",\n    \"description\": \"The dog slapped the two away from them.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4xi5BUHK1t96xjjo1_500\",\n    \"question\": \"how many men are standing on the stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24348\",\n    \"key\": \"22558\",\n    \"description\": \"three men are standing on a stage and one has a microphone in his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_napcsdwCKD1th3dsvo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23793\",\n    \"key\": \"27813\",\n    \"description\": \"a man wearing a blue hat kissed a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejfde04Qs1td0uqno1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32277\",\n    \"key\": \"79009\",\n    \"description\": \"a blonde boy in a black shirt raises his eyebrows.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmlvz4PWsb1ttrhu8o1_500\",\n    \"question\": \"where is the young man singing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32560\",\n    \"key\": \"99859\",\n    \"description\": \"a young man is singing in a dimly lit room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6t8ixB6O1roo9cdo1_500\",\n    \"question\": \"what was the guy holding?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40214\",\n    \"key\": \"55790\",\n    \"description\": \"the guy was holding the red toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfodj8xom01s3att3o1_500\",\n    \"question\": \"what is the man using?\",\n    \"answer\": \"sword\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8259\",\n    \"key\": \"82067\",\n    \"description\": \"a man is using a sword to cut through several pieces of wood at the same time.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxgai4Dbh1u80ez8o1_400\",\n    \"question\": \"where are the man and woman talking.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37791\",\n    \"key\": \"64081\",\n    \"description\": \"a man and woman are talking in the bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklkbe4KgW1tfs8guo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3523\",\n    \"key\": \"56600\",\n    \"description\": \"the man with the collared shirt is holding a gun on the man with the black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vz1u2IKj1tz9jaqo1_400\",\n    \"question\": \"what is being kicked around a filed by a pair of players?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14209\",\n    \"key\": \"96194\",\n    \"description\": \"a soccer ball is being kicked around a filed by a pair of players.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyqloY3A31u3epwjo2_1280\",\n    \"question\": \"how many people with short hair are kissing in a house?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38132\",\n    \"key\": \"78443\",\n    \"description\": \"two people with short hair are kissing in a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8kyvQDPt1qge29wo1_400\",\n    \"question\": \"what is the woman wearing on the moon?\",\n    \"answer\": \"helmet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51637\",\n    \"key\": \"84958\",\n    \"description\": \"a woman is wearing a space helmet on the moon.\"\n  },\n  {\n    \"video_name\": \"tumblr_narmwnsQzg1rtbkxgo1_400\",\n    \"question\": \"what is flying in the blue sky?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37056\",\n    \"key\": \"20178\",\n    \"description\": \"a jet plane is flying in a blue sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhsnezuoqY1tsilw4o1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51403\",\n    \"key\": \"97675\",\n    \"description\": \"a white blonde woman is talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhik441u31r38b11o1_400\",\n    \"question\": \"what fills with air and makes a balloon?\",\n    \"answer\": \"tortilla\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33591\",\n    \"key\": \"74368\",\n    \"description\": \"a tortilla fills with air and makes a balloon.\"\n  },\n  {\n    \"video_name\": \"tumblr_noaomhd7ZQ1un7qbto1_250\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43185\",\n    \"key\": \"2261\",\n    \"description\": \"a child is climbing on her big brown dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2qoj6hgQ1u5xdomo1_500\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49186\",\n    \"key\": \"24181\",\n    \"description\": \"a group of black men are walking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4s35eZOs1r0xzhao1_500\",\n    \"question\": \"where did the woman stand with smoke appearing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49131\",\n    \"key\": \"24500\",\n    \"description\": \"a woman stood with smoke appearing in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsqc8tKtS1rifrfzo1_500\",\n    \"question\": \"how many men is this image of struggling with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24200\",\n    \"key\": \"96966\",\n    \"description\": \"this image is of two men struggling with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tqwqmtd41r02esko1_500\",\n    \"question\": \"where is the woman with tattoos relaxing.\",\n    \"answer\": \"? bath\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10082\",\n    \"key\": \"85793\",\n    \"description\": \"a woman with tattoos is relaxing in a bath.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9ijtkcws1ti2sgvo3_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52711\",\n    \"key\": \"46241\",\n    \"description\": \"a person in a green shirt is leaning back,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxrq2ObHU1upic9lo1_1280\",\n    \"question\": \"what is the man frustrated and tapping before falling out of his chair?\",\n    \"answer\": \"pencil\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30672\",\n    \"key\": \"60797\",\n    \"description\": \"a man is frustrated and tapping a pencil before falling out of his chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc99fe2HTt1tmzegco1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34385\",\n    \"key\": \"90185\",\n    \"description\": \"a man is running while wearing a red shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nai94pzZbf1slj978o1_400\",\n    \"question\": \"where are the man and a husky touching hand to paw.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43436\",\n    \"key\": \"12952\",\n    \"description\": \"a man and a husky are touching hand to paw in the living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpn14OwgR1tz0mt5o1_500\",\n    \"question\": \"what does the woman open to her trailer before stepping out?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3442\",\n    \"key\": \"66721\",\n    \"description\": \"a woman opens a door to her trailer before stepping out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmz2tmDeda1sddro0o1_250\",\n    \"question\": \"what begins moving and shopping carts are falling out of the back?\",\n    \"answer\": \"truck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50642\",\n    \"key\": \"24985\",\n    \"description\": \"a truck begins moving and shopping carts are falling out of the back.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyl4209U21sabd3xo1_250\",\n    \"question\": \"what are the group of people sitting next to each other and wearing?\",\n    \"answer\": \"masks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1906\",\n    \"key\": \"23694\",\n    \"description\": \"a group of people are sitting next to each other and wearing masks.\"\n  },\n  {\n    \"video_name\": \"tumblr_njo0rmCdNd1u45agco1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24312\",\n    \"key\": \"14022\",\n    \"description\": \"a girl wearing a white top and black pants is crouched down on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhklg6QF091sfoifoo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11192\",\n    \"key\": \"21229\",\n    \"description\": \"a man with short brown hair smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdxqfIf1o1u54nkxo1_500\",\n    \"question\": \"what is the man holding in front of his face?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4692\",\n    \"key\": \"86309\",\n    \"description\": \"a man is holding a picture in front of his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2yugot1B1tiz27ro1_500\",\n    \"question\": \"where is the white horse blinking and lowering his head.\",\n    \"answer\": \"? stable\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1280\",\n    \"key\": \"37357\",\n    \"description\": \"a white horse is blinking and lowering his head in a stable.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qwatWy9m1slj978o1_400\",\n    \"question\": \"how many animals is jumping in the bed in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42375\",\n    \"key\": \"73992\",\n    \"description\": \"two animals is jumping in a bed in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9eblfUw4E1sna4i4o1_250\",\n    \"question\": \"what is the person riding down the road?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7588\",\n    \"key\": \"4523\",\n    \"description\": \"a person is riding a motorcycle down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nca11jFXRI1qhb3vzo1_500\",\n    \"question\": \"what is the girl playing really fast?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29856\",\n    \"key\": \"57597\",\n    \"description\": \"a girl is playing the drums really fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_netj73fZBe1rpee4eo1_400\",\n    \"question\": \"what is the young man playing and twirling the drumsticks?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26569\",\n    \"key\": \"11349\",\n    \"description\": \"a young man is playing the drums and twirling the drumsticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nga7fiM0PT1qg2370o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24199\",\n    \"key\": \"15586\",\n    \"description\": \"a white man with a blue shirt is jumping in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6t8rIVdA1tjjnlno1_400\",\n    \"question\": \"what is getting stuck in the plastic ball?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6209\",\n    \"key\": \"54116\",\n    \"description\": \"a cat is getting stuck in a plastic ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsq0iDaXw1tk7w8vo1_500\",\n    \"question\": \"how many boys are standing and sitting together and laughing?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51492\",\n    \"key\": \"89376\",\n    \"description\": \"four boys are standing and sitting together and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nen1uytZR71r24zdbo1_400\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1975\",\n    \"key\": \"35073\",\n    \"description\": \"a person in a white coat ran across the stage to get to the back.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94u8oEB7N1rmvtzzo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9231\",\n    \"key\": \"29318\",\n    \"description\": \"a young man in a blue shirt is licking his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq23l4xPj61tdi2n7o1_500\",\n    \"question\": \"how many girl has her hair in a ponytail and is kissing another girl?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36035\",\n    \"key\": \"65341\",\n    \"description\": \"one girl has her hair in a ponytail and is kissing another girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs6znj2Pt1slj978o1_250\",\n    \"question\": \"what is the color of the jerseys?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36556\",\n    \"key\": \"27761\",\n    \"description\": \"a group of men in red jerseys are dancing in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9qf9m6OT1trbt9ao1_400\",\n    \"question\": \"how many men are clapping their hands and dancing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31528\",\n    \"key\": \"28960\",\n    \"description\": \"two men are clapping their hands and dancing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_noxumlPA691rsagqio1_500\",\n    \"question\": \"how many men are standing next to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35697\",\n    \"key\": \"95345\",\n    \"description\": \"two men are standing next to each other and one is looking downwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nap1wyU5vb1r8wsomo1_400\",\n    \"question\": \"what is the man smoking and blowing smoke?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4927\",\n    \"key\": \"29689\",\n    \"description\": \"a man is smoking a cigarette and blowing smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_nopqno1m9H1r2ga1uo1_400\",\n    \"question\": \"how many men is this dancing while sitting in a car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7236\",\n    \"key\": \"77278\",\n    \"description\": \"this is two men dancing while sitting in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_novgjtJTro1snmpxno1_400\",\n    \"question\": \"what is the girl sipping through a straw?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45365\",\n    \"key\": \"75698\",\n    \"description\": \"a girl is sipping a drink through a straw.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3gsht7rn1r0ebw4o2_1280\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39734\",\n    \"key\": \"55836\",\n    \"description\": \"the man with the green eyes,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqc6mF0dW1tmcq9lo1_400\",\n    \"question\": \"what is the man lighting and smiling?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4871\",\n    \"key\": \"29304\",\n    \"description\": \"a man is lighting a cigarette and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfhy9iq4a1tj3r8so1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41014\",\n    \"key\": \"87985\",\n    \"description\": \"a guy wearing a black shirt and long pants,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhewmmMC4c1t0w9oqo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42619\",\n    \"key\": \"55471\",\n    \"description\": \"a man in a gray shirt is holding a phone and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne7om7gzgi1tw8vf9o1_400\",\n    \"question\": \"what is the girl bending over backwards and touching?\",\n    \"answer\": \"floor\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35265\",\n    \"key\": \"17998\",\n    \"description\": \"a girl is bending over backwards and touching the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_npi534NHLs1s33us3o1_250\",\n    \"question\": \"how many eye does the young boy cover while he is laughing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26634\",\n    \"key\": \"9779\",\n    \"description\": \"a young boy covers one eye while he is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkg5leY4e21sof15vo1_500\",\n    \"question\": \"how many girls are singing music pop in a concert?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5206\",\n    \"key\": \"21834\",\n    \"description\": \"two girls are singing music pop in a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhexdhCBD61u5v821o1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12437\",\n    \"key\": \"79190\",\n    \"description\": \"a sportsman,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqi9pDqn61r3fht5o1_250\",\n    \"question\": \"what is the color of the wiggles?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50653\",\n    \"key\": \"26058\",\n    \"description\": \"gray chinchilla wiggles face and whiskers while being held.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xevvBCZJ1tj2evpo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16347\",\n    \"key\": \"80161\",\n    \"description\": \"a man in a blue shirt closes his eyes and nods.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni06cdG8Wk1u639x2o1_500\",\n    \"question\": \"what is being driven on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18030\",\n    \"key\": \"71675\",\n    \"description\": \"a red car is being driven on a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zgq3VLuH1rcrigpo1_250\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16422\",\n    \"key\": \"26508\",\n    \"description\": \"a man is touching his face in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93sqa0Tt21sjfh08o1_400\",\n    \"question\": \"what is the man slowly taking off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18589\",\n    \"key\": \"30171\",\n    \"description\": \"a man is slowly taking off his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_npb6eieHYv1uxot71o1_500\",\n    \"question\": \"how many men is wearing coats are looking at the same place?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47300\",\n    \"key\": \"11924\",\n    \"description\": \"two men wearing coats are looking at the same place.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee7hlohYU1tx8mn0o1_400\",\n    \"question\": \"what is getting through the curve?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3039\",\n    \"key\": \"52719\",\n    \"description\": \"a beautiful white car is getting through a curve.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq12lyHYIo1u29slho1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45158\",\n    \"key\": \"64828\",\n    \"description\": \"the girl wearing the blue shirt looks surprised at the boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyaonXHxl1tmnntwo1_400\",\n    \"question\": \"what is going down the slide?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35802\",\n    \"key\": \"18209\",\n    \"description\": \"the cat is going down the slide.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejxcpZ7Tn1tbo2gbo1_400\",\n    \"question\": \"what is pawing at the cat?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46760\",\n    \"key\": \"48764\",\n    \"description\": \"a puppy is pawing at a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnukunx7r61uuj39do1_400\",\n    \"question\": \"what is knocking over the small boy by running into him?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13707\",\n    \"key\": \"37449\",\n    \"description\": \"a baby goat is knocking over a small boy by running into him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo1177YhF1s53chuo1_500\",\n    \"question\": \"what does the blonde girl hold?\",\n    \"answer\": \"singing\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14840\",\n    \"key\": \"101662\",\n    \"description\": \"a blonde girl holds a microphone whilst singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf37qtnnJA1u39gnxo1_250\",\n    \"question\": \"what is the woman using?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17471\",\n    \"key\": \"10671\",\n    \"description\": \"a woman is using a stick to hit a pinata.\"\n  },\n  {\n    \"video_name\": \"tumblr_neubjlHnuq1tdjuqvo1_250\",\n    \"question\": \"what jumps up and bites the man on the bottom?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35606\",\n    \"key\": \"40937\",\n    \"description\": \"a cat jumps up and bites a man on the bottom.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7okkHHCe1tkyw6ao1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34454\",\n    \"key\": \"80984\",\n    \"description\": \"a man with blue hair sings into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5lq2YzjS1unlruzo1_400\",\n    \"question\": \"what does the cat watch sitting on a mans head?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8047\",\n    \"key\": \"49153\",\n    \"description\": \"a cat watches a kitten sitting on a mans head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazajtnJAC1tn4t8jo1_400\",\n    \"question\": \"what is the man driving his car and is in the sky?\",\n    \"answer\": \"meteor\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23902\",\n    \"key\": \"62167\",\n    \"description\": \"a man is driving his car and meteor is in the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbmugnrlnQ1t1o9tno1_250\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1552\",\n    \"key\": \"22614\",\n    \"description\": \"a man with white clothes is putting a face of pain.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mcomp3VE1sa9k0fo1_250\",\n    \"question\": \"where is the woman wearing a tutu is falling.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6734\",\n    \"key\": \"6285\",\n    \"description\": \"a woman wearing a tutu is falling in a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkcbhZH5z1r0ia88o1_400\",\n    \"question\": \"what is the color of the headband?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31827\",\n    \"key\": \"93026\",\n    \"description\": \"a woman wearing a red headband is kissing a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_no3jpmtGki1uscox5o1_500\",\n    \"question\": \"what is the young man smoking while taking a bath?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13663\",\n    \"key\": \"96789\",\n    \"description\": \"a young man is smoking a cigarette while taking a bath.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpfh1RQGx1toym0ao1_400\",\n    \"question\": \"how many men collided and fell down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16195\",\n    \"key\": \"29656\",\n    \"description\": \"the two men collided and fell down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fy77F0uI1ra4ssmo1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50122\",\n    \"key\": \"96781\",\n    \"description\": \"a girl with a red coat is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb41brPtbh1r80pq0o1_400\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35742\",\n    \"key\": \"67585\",\n    \"description\": \"a person is wearing an animal costume with glowing green eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3e3io3Vj1s1r2yfo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA674\",\n    \"key\": \"61674\",\n    \"description\": \"a guitarist is playing on stage,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxbfztqER1tzhdamo1_500\",\n    \"question\": \"what is the color of the tracksuit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43254\",\n    \"key\": \"85634\",\n    \"description\": \"a man in a red tracksuit jumps up and down and then points ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlcpoA7j61ungyc9o1_500\",\n    \"question\": \"what is tripping over the fence?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31283\",\n    \"key\": \"93000\",\n    \"description\": \"a black and white dog is tripping over a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_nre0xwdee61uyo37eo1_250\",\n    \"question\": \"what is the woman in a bustier looking out?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43865\",\n    \"key\": \"6713\",\n    \"description\": \"a woman in a bustier is looking out a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrf6t4Kcu1u9xj6to1_500\",\n    \"question\": \"what is racing down the curvy road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4101\",\n    \"key\": \"92709\",\n    \"description\": \"a white car is racing down a curvy road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnhys0agY1tcltsqo1_400\",\n    \"question\": \"what is the big monkey grooming?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15519\",\n    \"key\": \"66216\",\n    \"description\": \"a big monkey is grooming a smaller monkey.\"\n  },\n  {\n    \"video_name\": \"tumblr_npltp08V9L1u8z9jdo1_500\",\n    \"question\": \"what is the color of the candle?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16823\",\n    \"key\": \"62712\",\n    \"description\": \"a person is lighting a black candle on a cake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbus1etSWV1tkyu2bo1_250\",\n    \"question\": \"how many guys are dancing together in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6235\",\n    \"key\": \"8125\",\n    \"description\": \"two guys are dancing together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrexu1YS0E1uz06r7o1_400\",\n    \"question\": \"what does the man push over to the baseball where the dog catches it?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51146\",\n    \"key\": \"16261\",\n    \"description\": \"a man pushes his dog over to the baseball where the dog catches it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nalgunb5tA1rm4q61o1_250\",\n    \"question\": \"how many young boys are running towards each other and hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33311\",\n    \"key\": \"6552\",\n    \"description\": \"two young boys are running towards each other and hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmcvu4Nn5R1us6f70o1_250\",\n    \"question\": \"what is the person drinking through a straw?\",\n    \"answer\": \"juice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37023\",\n    \"key\": \"17497\",\n    \"description\": \"a person is drinking orange juice through a straw.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ak83GJ1A1si00qoo1_250\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"leash\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6841\",\n    \"key\": \"24051\",\n    \"description\": \"a man is holding a leash while a dog runs towards the door and hops up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner3v7FbbI1rgchc8o1_500\",\n    \"question\": \"what is chasing the laser light beam around the floor?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48694\",\n    \"key\": \"72762\",\n    \"description\": \"a cat is chasing a laser light beam around the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbktcer8TP1synqozo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6007\",\n    \"key\": \"93815\",\n    \"description\": \"a boy with short brown hair wears a black leather jacket and shrugs his shoulders while grinning.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90y8oyEl71r0q99lo1_250\",\n    \"question\": \"what is the young woman in underwear shaking and drumming?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32509\",\n    \"key\": \"81140\",\n    \"description\": \"a young woman in underwear is shaking her butt and drumming.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzrykxVoi1u5bwv8o1_500\",\n    \"question\": \"how many boys in white are singing and dancing on a lighted stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39755\",\n    \"key\": \"65459\",\n    \"description\": \"three boys in white are singing and dancing on a lighted stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vufj56L81rzq34lo1_250\",\n    \"question\": \"what does the dark-haired man with a beard pull?\",\n    \"answer\": \"expression\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3281\",\n    \"key\": \"36339\",\n    \"description\": \"a dark-haired man with a beard pulls a camp expression.\"\n  },\n  {\n    \"video_name\": \"tumblr_namck8I3Yj1s2a9g2o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31382\",\n    \"key\": \"98182\",\n    \"description\": \"a man wearing sunglasses and a black shirt is jumping through a doorway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklxqvsSIg1t3jcsio1_400\",\n    \"question\": \"what is sitting idol in the ashtray?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45625\",\n    \"key\": \"75852\",\n    \"description\": \"the man 's cigarette is sitting idol in the ashtray.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvw02a1fQ1t9h1yfo1_400\",\n    \"question\": \"how many girls are talking and smiling together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33244\",\n    \"key\": \"50141\",\n    \"description\": \"two girls are talking and smiling together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0wufzoeS1tjiwz9o1_400\",\n    \"question\": \"what is the man wearing and winking one eye?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4136\",\n    \"key\": \"33273\",\n    \"description\": \"a man is wearing a knit cap and winking one eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1py0cFid1sorauco1_500\",\n    \"question\": \"how many men are wearing headphones one of them is opening his mouth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA925\",\n    \"key\": \"79780\",\n    \"description\": \"two men are wearing headphones one of them is opening his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav23oyZvC1s32ahho1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38492\",\n    \"key\": \"60165\",\n    \"description\": \"a woman in a black dress is sitting on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8y8cypQql1qje185o1_400\",\n    \"question\": \"what is the man using?\",\n    \"answer\": \"gloves\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4205\",\n    \"key\": \"68929\",\n    \"description\": \"a man is using lighted gloves to impress the audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5putNwnc1s9hy1to1_500\",\n    \"question\": \"what does the musician hold before singing?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44640\",\n    \"key\": \"82527\",\n    \"description\": \"a musician holds the microphone before singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1fmg5NaG1r6oiiao1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31360\",\n    \"key\": \"51390\",\n    \"description\": \"a girl with red hair is singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhm7o2QWcs1slj978o1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41882\",\n    \"key\": \"21478\",\n    \"description\": \"a white girl is cheering and raising hands up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqet4G5HN1qhrx75o1_400\",\n    \"question\": \"how many teams of hockey players are playing hockey together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32623\",\n    \"key\": \"65395\",\n    \"description\": \"two teams of hockey players are playing hockey together.\"\n  },\n  {\n    \"video_name\": \"tumblr_njouy2MkRI1unyeoio1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43466\",\n    \"key\": \"20303\",\n    \"description\": \"a cat jumps and pushes pushed a door shut and orange cat falls fell.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf189lUyiY1tdjuqvo1_400\",\n    \"question\": \"what is pulling the fish out of a bowl of water?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22013\",\n    \"key\": \"38805\",\n    \"description\": \"a cat is pulling a fish out of a bowl of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbz4f0VNT1shuruwo1_400\",\n    \"question\": \"where is the man navigating a river.\",\n    \"answer\": \"? kayak\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50431\",\n    \"key\": \"35186\",\n    \"description\": \"a man is navigating a river in the kayak.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqt05iwece1te94myo1_400\",\n    \"question\": \"what is shaking hands with a person?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26893\",\n    \"key\": \"21136\",\n    \"description\": \"a black and white dog is shaking hands with a person.\"\n  },\n  {\n    \"video_name\": \"tumblr_negifyw3pW1qksaldo1_250\",\n    \"question\": \"what is the man playing in front of a crowd of people?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8969\",\n    \"key\": \"33442\",\n    \"description\": \"a man is playing the drums in front of a crowd of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nouog6B5731ssgyoro1_400\",\n    \"question\": \"how many people are sliding down the side of a building and landing on stone steps below?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3645\",\n    \"key\": \"52810\",\n    \"description\": \"two people are sliding down the side of a building and landing on stone steps below.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkx0zarpkq1r0ia88o1_400\",\n    \"question\": \"what is the man eating and taking?\",\n    \"answer\": \"snack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35783\",\n    \"key\": \"22846\",\n    \"description\": \"a man is eating a snack and taking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9pn9xDm651ty4rvzo1_400\",\n    \"question\": \"how many blond guys made faces at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4995\",\n    \"key\": \"81281\",\n    \"description\": \"two blond guys made faces at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9fbrhIt81tjxzpio1_250\",\n    \"question\": \"how many person is hugging another while they are singing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40664\",\n    \"key\": \"9233\",\n    \"description\": \"one person is hugging another while they are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_no16zgrlE81sr8pwbo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52635\",\n    \"key\": \"53970\",\n    \"description\": \"a man in white is rapping then two men are rapping together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc149nM30B1sk96t7o1_400\",\n    \"question\": \"what is the young man flicking and it hits him in the face?\",\n    \"answer\": \"biscuit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6526\",\n    \"key\": \"31199\",\n    \"description\": \"a young man is flicking a biscuit and it hits him in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvl0kHq241u51hglo1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41858\",\n    \"key\": \"8556\",\n    \"description\": \"a woman in tight black outfit is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxzm6DUfa1ut2i25o1_250\",\n    \"question\": \"what is the color of the sunglasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2514\",\n    \"key\": \"14793\",\n    \"description\": \"a man wearing a red back pack and black sunglasses is dancing outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbus1etSWV1tkyu2bo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9830\",\n    \"key\": \"8125\",\n    \"description\": \"a boy dressed in a black shirt points his hand and sings.\"\n  },\n  {\n    \"video_name\": \"tumblr_njte62Bwpv1t4la1fo1_400\",\n    \"question\": \"what are two young men playing on a stage?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41256\",\n    \"key\": \"25986\",\n    \"description\": \"two young men are playing guitars on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqsa9zsdy41upov4lo1_400\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25626\",\n    \"key\": \"64266\",\n    \"description\": \"a woman in blue lipstick with sunglasses is waving hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfzfabyUbK1rro3hqo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51743\",\n    \"key\": \"58308\",\n    \"description\": \"a white woman with brown hair looks cross eyed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8f1rqRt71svcbf4o1_400\",\n    \"question\": \"how many young men on a soccer field are dressing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48747\",\n    \"key\": \"65451\",\n    \"description\": \"two young men on a soccer field are dressing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrak3nYu61r95fszo1_250\",\n    \"question\": \"what does the man in black hold?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6442\",\n    \"key\": \"11840\",\n    \"description\": \"a man in black holds a black cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdybmLWnP1rlpjp7o1_250\",\n    \"question\": \"what is the lady playing to the beat the little princess sets?\",\n    \"answer\": \"ukulele\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39127\",\n    \"key\": \"45669\",\n    \"description\": \"the lady is playing a ukulele to the beat the little princess sets.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngwe7aRwEW1u4lqc0o1_250\",\n    \"question\": \"what swats at the dangling ornament on a christmas tree?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2018\",\n    \"key\": \"38433\",\n    \"description\": \"a cat swats at a dangling ornament on a christmas tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyo5jIXCe1tk9tvao1_500\",\n    \"question\": \"what is the color of the roof?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23338\",\n    \"key\": \"80171\",\n    \"description\": \"a young man reduces black electric arm roof.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8vced81w1tk6vdto1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34089\",\n    \"key\": \"34974\",\n    \"description\": \"a woman in white hair is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrf2yjRx8H1u5hn3po2_540\",\n    \"question\": \"how many young men are making funny arm movements and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18261\",\n    \"key\": \"86611\",\n    \"description\": \"two young men are making funny arm movements and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_np8fpolVPv1uvid27o1_1280\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37466\",\n    \"key\": \"65265\",\n    \"description\": \"a white car is speeding down a road with buildings on the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nggodxoEKB1t62uudo1_500\",\n    \"question\": \"what is the man smoking and touching his face?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1845\",\n    \"key\": \"39362\",\n    \"description\": \"a man is smoking a cigarette and touching his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nca7t61SCR1tmu5ofo1_500\",\n    \"question\": \"what is the color of the cane?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23744\",\n    \"key\": \"35588\",\n    \"description\": \"a man plays with a collapsible black cane.\"\n  },\n  {\n    \"video_name\": \"tumblr_nir4h8gDt81tb5plwo1_250\",\n    \"question\": \"how many men are snapping their fingers and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33049\",\n    \"key\": \"6561\",\n    \"description\": \"two men are snapping their fingers and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqqp4woKq61t0t2pco1_250\",\n    \"question\": \"what did the boy open?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8102\",\n    \"key\": \"50323\",\n    \"description\": \"the boy opened the door to see his friend there.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedvy9AhxX1qeire1o1_400\",\n    \"question\": \"what does the man walk down wearing a heavy coat?\",\n    \"answer\": \"runway\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17557\",\n    \"key\": \"66547\",\n    \"description\": \"a man walks down a runway wearing a heavy coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvpzrOoIg1qeh6x6o1_1280\",\n    \"question\": \"what does the rider jump over a police car?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51319\",\n    \"key\": \"35874\",\n    \"description\": \"a rider jumps his motorcycle over a police car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklvhuCJ821qd8xguo1_400\",\n    \"question\": \"what is the woman wearing a black leather coat reaches around and unhooks on a mannequin?\",\n    \"answer\": \"bra\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41301\",\n    \"key\": \"7816\",\n    \"description\": \"a woman wearing a black leather coat reaches around and unhooks a bra on a mannequin.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8zhb6N1pA1rtk9cxo1_250\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11489\",\n    \"key\": \"91003\",\n    \"description\": \"a young man sitting in a brown leather chair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7876agwW1slwrsuo1_400\",\n    \"question\": \"what is strolling on the floor?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3620\",\n    \"key\": \"16802\",\n    \"description\": \"a young kitten is strolling on a floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyl4209U21sabd3xo1_250\",\n    \"question\": \"how many people in a car are bobbing their heads?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9432\",\n    \"key\": \"23694\",\n    \"description\": \"three people in a car are bobbing their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdgwaJUcv1tc19umo1_400\",\n    \"question\": \"how many men start to laugh,\",\n    \"answer\": \"at something ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45573\",\n    \"key\": \"38005\",\n    \"description\": \"two men start to laugh,\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0urrvsyq1uaoej6o1_400\",\n    \"question\": \"what is the color of the fox?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25903\",\n    \"key\": \"45806\",\n    \"description\": \"a light brown fox with a bushy tail is diving into the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxosqUqVm1r2uad8o1_250\",\n    \"question\": \"how many men looked at something with excitement together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21295\",\n    \"key\": \"5917\",\n    \"description\": \"three men looked at something with excitement together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0jxoYxes1tkdc7qo1_250\",\n    \"question\": \"how many women are dancing and raising their arms in the air?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42878\",\n    \"key\": \"76255\",\n    \"description\": \"two women are dancing and raising their arms in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba6q7knEq1t7jda2o1_400\",\n    \"question\": \"what attacks the person while in the middle of the road?\",\n    \"answer\": \"bull\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1049\",\n    \"key\": \"80850\",\n    \"description\": \"a bull attacks a person while in the middle of the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndty8uvoqn1sukgyxo1_400\",\n    \"question\": \"what is crouched on something while two others watch?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13617\",\n    \"key\": \"57588\",\n    \"description\": \"an elephant is crouched on something while two others watch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2vau6kkr1utqicho1_500\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17553\",\n    \"key\": \"82529\",\n    \"description\": \"two soccer players wearing white uniforms and one player wearing a blue uniform,\"\n  },\n  {\n    \"video_name\": \"tumblr_na5ojlCiVS1tuv1l1o1_500\",\n    \"question\": \"what is the man with a beard eating?\",\n    \"answer\": \"apple\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37028\",\n    \"key\": \"101430\",\n    \"description\": \"a man with a beard is eating a red apple.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes5f2Cdt31tmaii4o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21003\",\n    \"key\": \"99957\",\n    \"description\": \"a boy with black hair and wearing a black shirt is chewing something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngilgcU4iR1u0fgfyo2_400\",\n    \"question\": \"what is turning around on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16770\",\n    \"key\": \"59008\",\n    \"description\": \"a silver car is turning around on a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwri28wKr1tm3clao1_400\",\n    \"question\": \"what is running into an obstacle on the track and explodes?\",\n    \"answer\": \"train\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42123\",\n    \"key\": \"27987\",\n    \"description\": \"a train is running into an obstacle on the track and explodes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlxzt2gGMO1uokoxbo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51887\",\n    \"key\": \"57812\",\n    \"description\": \"a person wears a white jacket and rides a bike in a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbngkoByJ11scotfso1_400\",\n    \"question\": \"what is the person smoking in the street?\",\n    \"answer\": \"tire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1236\",\n    \"key\": \"76454\",\n    \"description\": \"a person is smoking his motorcycle tire in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxuq2TXYB1rgza3xo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10215\",\n    \"key\": \"63080\",\n    \"description\": \"a black man holds up a light to his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0ddtHrBj1tg85j7o1_400\",\n    \"question\": \"what is the color of the tape?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32041\",\n    \"key\": \"36841\",\n    \"description\": \"four hands in surgical gloves paste red tape in the shape of a cross.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk1dlRO9H1uanc3bo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18990\",\n    \"key\": \"6551\",\n    \"description\": \"a man wearing a white shirt is looping his arm under his tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1vezuesv1rbyct6o1_400\",\n    \"question\": \"how many cheerleaders are throwing another girl in the air?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9968\",\n    \"key\": \"31332\",\n    \"description\": \"three cheerleaders are throwing another girl in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjpac3v6Q1qboh47o1_500\",\n    \"question\": \"what are out of the five men three wearing glasses and two are wearing?\",\n    \"answer\": \"caps\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15515\",\n    \"key\": \"59306\",\n    \"description\": \"out of the five men three are wearing glasses and two are wearing baseball caps.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0n8ksRhS1u25ovvo1_400\",\n    \"question\": \"what is driving on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45359\",\n    \"key\": \"63631\",\n    \"description\": \"a blue car is driving on a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5v84Ru6A1qh3m2qo1_400\",\n    \"question\": \"where does the woman watch a boy spin.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8260\",\n    \"key\": \"24152\",\n    \"description\": \"a woman watches a boy spin in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqo62WkUz1u38y0ao1_500\",\n    \"question\": \"how many guys is this joking and laughing in a microphone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39717\",\n    \"key\": \"78143\",\n    \"description\": \"this is two guys joking and laughing in a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirdu9dR9r1u4aqzmo1_400\",\n    \"question\": \"what rolls around on the ground while sleeping?\",\n    \"answer\": \"kangaroo\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19776\",\n    \"key\": \"26252\",\n    \"description\": \"a kangaroo rolls around on the ground while sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4rlyiwiZ1spa0kio1_250\",\n    \"question\": \"how many guys are squatting while flip in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27211\",\n    \"key\": \"86705\",\n    \"description\": \"two guys are squatting while flip in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncx3sdZxov1rtwr5go1_400\",\n    \"question\": \"what is the lady with blond hair driving down the road?\",\n    \"answer\": \"convertible\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23303\",\n    \"key\": \"79097\",\n    \"description\": \"a lady with blond hair is driving a convertible down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqsshv5dg1tluxceo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47178\",\n    \"key\": \"17326\",\n    \"description\": \"a young man with red hair opens the door while crouched and with no pants on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7j4ud4Mb1u5xywco1_500\",\n    \"question\": \"what is the color of the singing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3789\",\n    \"key\": \"87751\",\n    \"description\": \"this image is of a man in black onstage singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hakp4Wd51smtg6no1_400\",\n    \"question\": \"what are standing in the foggy countryside?\",\n    \"answer\": \"trees\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49737\",\n    \"key\": \"80843\",\n    \"description\": \"trees are standing in a foggy countryside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad8wtQS6K1qbz70so1_500\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12973\",\n    \"key\": \"48702\",\n    \"description\": \"four girls wearing black shirts are holding up their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3t11bQ0e1u598sco1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19159\",\n    \"key\": \"36523\",\n    \"description\": \"a brown haired man wearing a jacket tries to pull something off of something and falls down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nga7fiM0PT1qg2370o1_400\",\n    \"question\": \"where is the white man with a blue shirt jumping.\",\n    \"answer\": \"? box\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28894\",\n    \"key\": \"15586\",\n    \"description\": \"a white man with a blue shirt is jumping in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9brhfHmnB1tb9q3fo1_250\",\n    \"question\": \"what is the color of the folding?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29386\",\n    \"key\": \"14617\",\n    \"description\": \"this is a man wearing a red shirt folding his arms across his chest.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne35uinLzV1tdjuqvo1_500\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA588\",\n    \"key\": \"49418\",\n    \"description\": \"a black cat scares a woman standing on the side of a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_njug6jqM8D1u636iqo1_400\",\n    \"question\": \"what 's on the mountain?\",\n    \"answer\": \"snowboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44172\",\n    \"key\": \"66955\",\n    \"description\": \"a person snowboard 's on a mountain.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6oo2PKSC1silsr6o1_400\",\n    \"question\": \"what is being held and looks around?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8760\",\n    \"key\": \"35103\",\n    \"description\": \"a dog is being held and looks around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcx6rpdDS1tdjk1vo1_500\",\n    \"question\": \"what is the man wearing a shirt is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24696\",\n    \"key\": \"83773\",\n    \"description\": \"a man wearing a shirt is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqa72svB2q1uxws2zo1_400\",\n    \"question\": \"what is the girl squeezing with her right hand?\",\n    \"answer\": \"mustard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16369\",\n    \"key\": \"24859\",\n    \"description\": \"a girl is squeezing mustard with her right hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_np85pfASqn1qaxcloo1_250\",\n    \"question\": \"what is someone showing off and smiling?\",\n    \"answer\": \"necklace\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34922\",\n    \"key\": \"2398\",\n    \"description\": \"someone is showing off their necklace and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngi0qiLFyd1qfel0so1_400\",\n    \"question\": \"how many young men look angry while one gestures with his hand?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18680\",\n    \"key\": \"87032\",\n    \"description\": \"three young men look angry while one gestures with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ptqhbSXp1rjwte6o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2366\",\n    \"key\": \"67868\",\n    \"description\": \"a white man with red shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngaoviHnCn1u5nwzto1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46793\",\n    \"key\": \"71628\",\n    \"description\": \"a very cute girl with yellow hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngydaduWj01skjjtto1_250\",\n    \"question\": \"what is the color of the teapot?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37373\",\n    \"key\": \"45622\",\n    \"description\": \"the lady with the red hair and pink shirt is holding a blue teapot.\"\n  },\n  {\n    \"video_name\": \"tumblr_npuazcydPD1te94myo1_400\",\n    \"question\": \"what is the color of the tube?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18512\",\n    \"key\": \"4445\",\n    \"description\": \"a cat is playing with a black tube.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne68rePU2I1tm0es2o1_400\",\n    \"question\": \"how many men are looking ahead and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10232\",\n    \"key\": \"17195\",\n    \"description\": \"two men are looking ahead and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyncrvBNm1r9vyoko1_500\",\n    \"question\": \"what does the man throw across the room?\",\n    \"answer\": \"pieces\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44012\",\n    \"key\": \"50377\",\n    \"description\": \"the man throws the chess pieces across the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3h0eIvem1sorauco1_400\",\n    \"question\": \"how many men are smiling and are wearing headphones with microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49441\",\n    \"key\": \"72973\",\n    \"description\": \"two men are smiling and are wearing headphones with microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbet5v1L6J1tkpzw0o1_250\",\n    \"question\": \"what is the color of the dogs?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50034\",\n    \"key\": \"18230\",\n    \"description\": \"the black dogs are attacking a boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbaanc8Pba1qixms2o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18299\",\n    \"key\": \"3237\",\n    \"description\": \"a man with a black shirt lifts his hat while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3mvn9oII1rj1md8o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39686\",\n    \"key\": \"11621\",\n    \"description\": \"a woman makes faces with green hair made faces cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nprmzqr4Z81tkeou1o1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41726\",\n    \"key\": \"18456\",\n    \"description\": \"a man wearing white cap is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqiquZx9u1tx8mn0o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35635\",\n    \"key\": \"65286\",\n    \"description\": \"a red car is driving really fast past a gray car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnxyuwhVFb1qa4mzvo1_500\",\n    \"question\": \"what is the girl tying with her fingers?\",\n    \"answer\": \"string\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38203\",\n    \"key\": \"88579\",\n    \"description\": \"a girl is tying a string with her fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4zmkCAr61u3b1hio1_250\",\n    \"question\": \"how many woman pulls off another woman 's wig on a stage?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42225\",\n    \"key\": \"35786\",\n    \"description\": \"one woman pulls off another woman 's wig on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9imlri1WQ1s3att3o1_400\",\n    \"question\": \"what is the man opening up into a table?\",\n    \"answer\": \"bench\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44158\",\n    \"key\": \"46098\",\n    \"description\": \"a man is opening up a folded bench into a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_np3arfHXlH1t5dv9do1_400\",\n    \"question\": \"what is the person mixing with a spoon?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13451\",\n    \"key\": \"28652\",\n    \"description\": \"the person is mixing their drink with a spoon.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ewm0ilhs1riwrryo1_250\",\n    \"question\": \"what get bopped by banged heads?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36776\",\n    \"key\": \"26016\",\n    \"description\": \"a soccer ball get bopped by banged heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nate0yTgIe1tkqgqvo1_250\",\n    \"question\": \"what is the girl lighting with a lighter?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31892\",\n    \"key\": \"47078\",\n    \"description\": \"a girl is lighting a cigarette with a lighter.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndj7s5BKDq1tum2v5o1_250\",\n    \"question\": \"how many men are swinging their arms and being weird?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50140\",\n    \"key\": \"10152\",\n    \"description\": \"two men are swinging their arms and being weird.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbpto8N9UJ1tkisfzo1_500\",\n    \"question\": \"where is the guy wearing a black shirt is leaning.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35873\",\n    \"key\": \"92193\",\n    \"description\": \"a guy wearing a black shirt is leaning back in his chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3d2iPBG21r8q949o1_400\",\n    \"question\": \"what is the man grinding down railings?\",\n    \"answer\": \"snowboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5207\",\n    \"key\": \"42830\",\n    \"description\": \"a man is grinding a snowboard down railings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4nq0GPvq1thdx2vo1_400\",\n    \"question\": \"what is running and sliding on some ice?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35495\",\n    \"key\": \"63940\",\n    \"description\": \"a goat is running and sliding on some ice.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbt6fr4pMk1slj978o1_400\",\n    \"question\": \"what falls down the sheet of ice?\",\n    \"answer\": \"climber\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22153\",\n    \"key\": \"7955\",\n    \"description\": \"an ice climber falls down a sheet of ice.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkri3vybCq1tnv2gbo1_400\",\n    \"question\": \"how many girls are eating together and one waves?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19439\",\n    \"key\": \"57775\",\n    \"description\": \"two girls are eating together and one waves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkc48iNxXB1uodfiso1_500\",\n    \"question\": \"what are two girls shown and one holds showing a mouth in front of her mouth?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3888\",\n    \"key\": \"72935\",\n    \"description\": \"two girls are shown and one holds a phone showing a mouth in front of her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzs60amKr1u6tclbo1_400\",\n    \"question\": \"what is pushing the man down into another horse?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39157\",\n    \"key\": \"22574\",\n    \"description\": \"a horse is pushing a man down into another horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjw5ee9J71upsi9qo1_400\",\n    \"question\": \"how many girls is this that are wearing black clothing standing side by side talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29209\",\n    \"key\": \"66985\",\n    \"description\": \"this is two girls that are wearing black clothing standing side by side talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nogsnl7vHM1r4cmiho1_500\",\n    \"question\": \"where are the boys walking around the stage and talking.\",\n    \"answer\": \"? microphone\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36000\",\n    \"key\": \"93140\",\n    \"description\": \"the boys are walking around the stage and talking in the microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahc22gszh1qk0ghio1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8620\",\n    \"key\": \"35205\",\n    \"description\": \"a red haired woman is rolling across the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh22oslt5u1tnlmk9o1_250\",\n    \"question\": \"what are the man and woman playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14727\",\n    \"key\": \"51698\",\n    \"description\": \"a man and woman are playing the guitar as the woman sings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1fxfOi7V1sh99bjo1_400\",\n    \"question\": \"what is the guy riding and then he crashes?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20163\",\n    \"key\": \"29088\",\n    \"description\": \"a guy is riding a motorcycle and then he crashes.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7phaw8id1rqb3bqo1_250\",\n    \"question\": \"how many athletes are jumping around the soccer field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14857\",\n    \"key\": \"47937\",\n    \"description\": \"two athletes are jumping around a soccer field.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvkcm3JBJ1u3ruqqo1_500\",\n    \"question\": \"how many men are standing in the circle?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40011\",\n    \"key\": \"72438\",\n    \"description\": \"the three men are standing in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k66hDtUT1s9lpi5o1_400\",\n    \"question\": \"what is skidding around the corner on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26494\",\n    \"key\": \"54195\",\n    \"description\": \"a blue car is skidding around a corner on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nch77vbJHs1rshgw6o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32418\",\n    \"key\": \"8302\",\n    \"description\": \"the young boy with the green shirt and red bow tie is blowing kisses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncnbp0NMfe1s0y67po1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8550\",\n    \"key\": \"8198\",\n    \"description\": \"a man with a blue jacket tilts his head backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngh9scfZFb1rne0ito1_400\",\n    \"question\": \"what is the color of the stilettos?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41901\",\n    \"key\": \"42809\",\n    \"description\": \"someone is putting on a pair of black stilettos.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmfziQ3X61qj319bo1_250\",\n    \"question\": \"what is the man wearing a black suit and hat,\",\n    \"answer\": \"is using the pay phone and smoking ? cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40381\",\n    \"key\": \"27811\",\n    \"description\": \"a man wearing a black suit and hat,\"\n  },\n  {\n    \"video_name\": \"tumblr_no3s4rbT7k1uv5902o1_400\",\n    \"question\": \"what does the man lift to another mans face with his toes?\",\n    \"answer\": \"mirror\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41995\",\n    \"key\": \"65845\",\n    \"description\": \"a man lifts a dental mirror to another mans face with his toes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklz4vcGE01tgv1ivo1_250\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40203\",\n    \"key\": \"80529\",\n    \"description\": \"a man and woman are lying on the floor with a small black dog in between them.\"\n  },\n  {\n    \"video_name\": \"tumblr_noagkbLLFO1rz4xj6o1_1280\",\n    \"question\": \"how many guy are doing the salute with their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34516\",\n    \"key\": \"66638\",\n    \"description\": \"two guy are doing a salute with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_niqvn9yIzC1sy6rtlo1_250\",\n    \"question\": \"where are people hugging each other.\",\n    \"answer\": \"? corridor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4948\",\n    \"key\": \"15274\",\n    \"description\": \"people are hugging each other in a corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_mjyrakXrER1r1y0g8o1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15628\",\n    \"key\": \"93522\",\n    \"description\": \"a man in a black tank top lowers his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n921fiyLDf1tnwjvco1_400\",\n    \"question\": \"how many men are doing the funny dance near a bridge?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7649\",\n    \"key\": \"19431\",\n    \"description\": \"two men are doing a funny dance near a bridge.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2gxxkIj71sw3vf3o1_400\",\n    \"question\": \"how many young women are sitting on the beach?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41378\",\n    \"key\": \"49130\",\n    \"description\": \"two young women are sitting on the beach and they have fun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nip7n6jcNk1tul4jlo1_400\",\n    \"question\": \"what is the color of the strip?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34515\",\n    \"key\": \"65157\",\n    \"description\": \"a football team in a white strip is playing against a football team in a blue strip.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99i8z85VV1tbjfazo1_400\",\n    \"question\": \"what is dancing around on its hind legs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA895\",\n    \"key\": \"38782\",\n    \"description\": \"the cat is dancing around on its hind legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nobecu8wyv1s5cww5o1_400\",\n    \"question\": \"how many lovers is taking off their cloth with kissing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42342\",\n    \"key\": \"63193\",\n    \"description\": \"two lovers is taking off their cloth with kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nac2esV6nf1tjc6a2o1_250\",\n    \"question\": \"how many men walk outside and then end up in the shower?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48089\",\n    \"key\": \"49698\",\n    \"description\": \"two men walk outside and then end up in a shower.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2wr08MyD1smfzl0o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11342\",\n    \"key\": \"79504\",\n    \"description\": \"man with white hair is moving his tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3gsht7rn1r0ebw4o2_1280\",\n    \"question\": \"what is the man with the green eyes,\",\n    \"answer\": \"wearing , looks mad ? jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33450\",\n    \"key\": \"55836\",\n    \"description\": \"the man with the green eyes,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngegxwdGBV1qhy149o1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51893\",\n    \"key\": \"11203\",\n    \"description\": \"a black woman is moving her hands from side to side while closing her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90y95G51t1twipgeo1_400\",\n    \"question\": \"where is the young girl smiling.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6460\",\n    \"key\": \"8927\",\n    \"description\": \"a young girl in a pool is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nogsnl7vHM1r4cmiho1_500\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12310\",\n    \"key\": \"93140\",\n    \"description\": \"a group of boys wearing white shirt and black pants are moving.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3mvn9oII1rj1md8o1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32925\",\n    \"key\": \"11621\",\n    \"description\": \"a girl is making faces at her black cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nambqoJbYC1tz9jaqo1_250\",\n    \"question\": \"what is the color of the bucket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15927\",\n    \"key\": \"13301\",\n    \"description\": \"a young man is holding a blue bucket.\"\n  },\n  {\n    \"video_name\": \"tumblr_npaw92iT8u1tlobjyo1_400\",\n    \"question\": \"how many women is wearing matching shirts are dancing with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47348\",\n    \"key\": \"15999\",\n    \"description\": \"two women wearing matching shirts are dancing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_njb55e5csY1slwpo8o1_250\",\n    \"question\": \"what is falling down in the woods?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12883\",\n    \"key\": \"40890\",\n    \"description\": \"a bear is falling down in the woods.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmf9iu3nr1tf406do1_400\",\n    \"question\": \"where is the guy with white shirt screaming.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3726\",\n    \"key\": \"33259\",\n    \"description\": \"a guy with white shirt is screaming in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9ybnlp5T1qd8xguo1_500\",\n    \"question\": \"how many people are sitting on the sofa while laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17660\",\n    \"key\": \"82920\",\n    \"description\": \"3 people are sitting on a sofa while laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq28douqgC1spshbgo1_400\",\n    \"question\": \"what is the young woman in a blue uniform kicking into the goal?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18826\",\n    \"key\": \"57460\",\n    \"description\": \"a young woman in a blue uniform is kicking a ball into the goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfoghgPKsv1rc5r2po1_400\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49844\",\n    \"key\": \"30824\",\n    \"description\": \"a little girl with a red coat is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb963zWmFy1rpgekio1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47919\",\n    \"key\": \"59316\",\n    \"description\": \"a man dressed in black is rapping outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcj1gnaNb1tt9t0wo1_400\",\n    \"question\": \"what is playing on stage?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33018\",\n    \"key\": \"66981\",\n    \"description\": \"a rock band is playing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3eo7OIFT1qfq821o1_400\",\n    \"question\": \"what is the man leaving?\",\n    \"answer\": \"mike\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15214\",\n    \"key\": \"5853\",\n    \"description\": \"a man is leaving the mike that is in his right hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbll33N3cj1trox53o1_400\",\n    \"question\": \"what is the long haired person playing on stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28288\",\n    \"key\": \"66384\",\n    \"description\": \"a long haired person is playing guitar on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n974aiV3pP1tyycvto1_400\",\n    \"question\": \"what is yawning,\",\n    \"answer\": \"sleeping and stretching on the person 's stomach ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22484\",\n    \"key\": \"82732\",\n    \"description\": \"a cat is yawning,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1cdezKJt1t3jhfvo1_500\",\n    \"question\": \"where are two guys talking and laughing.\",\n    \"answer\": \"? theater\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19581\",\n    \"key\": \"100401\",\n    \"description\": \"two guys are talking and laughing in a theater.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfplbjsvOQ1u4bx69o1_400\",\n    \"question\": \"how many blonde girls are sitting on the bed?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5650\",\n    \"key\": \"85920\",\n    \"description\": \"two blonde girls are sitting on a bed and one is smoking while the other plays with her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkaj46inhY1tya7mxo1_400\",\n    \"question\": \"what plows through the pile of snow?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29330\",\n    \"key\": \"63930\",\n    \"description\": \"a car plows through a pile of snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng39jqAGro1tj86sdo1_400\",\n    \"question\": \"how many men sit on the floor with their legs crossed and makes synchronized motions with their hands and arms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36253\",\n    \"key\": \"64069\",\n    \"description\": \"two men sit on the floor with their legs crossed and makes synchronized motions with their hands and arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nep3e191D91qdlxtao1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52094\",\n    \"key\": \"30718\",\n    \"description\": \"a woman with glasses is smiling with a green shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnmsjSHVf1qls6cvo1_r1_500\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4056\",\n    \"key\": \"91421\",\n    \"description\": \"a blonde woman wearing a red cap is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezd8smQVJ1tmefd5o1_250\",\n    \"question\": \"what slowly turns the umbrella?\",\n    \"answer\": \"denim\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28143\",\n    \"key\": \"252\",\n    \"description\": \"the man wearing denim slowly turns the umbrella.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbadug35Zi1tl0ko9o1_400\",\n    \"question\": \"what runs and jumps into the cardboard box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11592\",\n    \"key\": \"57534\",\n    \"description\": \"a cat runs and jumps into a cardboard box.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9l730D6FC1rjn6tpo1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5665\",\n    \"key\": \"22567\",\n    \"description\": \"a white girl with black suit is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnznbimJv1sr8pwbo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51609\",\n    \"key\": \"57915\",\n    \"description\": \"the guy wearing the black shirt is holding a hockey stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhne3zpLKF1u7r2dko1_500\",\n    \"question\": \"what is the color of the liquid?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28293\",\n    \"key\": \"66650\",\n    \"description\": \"someone is pouring a purple liquid into a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndi35jWc6Z1tm6rguo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41520\",\n    \"key\": \"47727\",\n    \"description\": \"a young man with a brown hair is sitting next to another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5y7kffb81tg2dlwo1_400\",\n    \"question\": \"what is the man smoking and blowing smoke?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15681\",\n    \"key\": \"12761\",\n    \"description\": \"the man is smoking a cigarette and blowing smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng5sskpeoG1qmfh6ho1_500\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11655\",\n    \"key\": \"67805\",\n    \"description\": \"a man wearing a red scarf flips guns around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdvlzako31tx8mn0o1_400\",\n    \"question\": \"what drive around the corner and onto the grass?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44504\",\n    \"key\": \"78335\",\n    \"description\": \"two race cars drive around a corner and onto the grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6t4gSzKE1tgetb4o1_400\",\n    \"question\": \"what is being bitten by the turtle?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33588\",\n    \"key\": \"47560\",\n    \"description\": \"a dog is being bitten by a turtle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncw1h7V8au1rmdsrwo1_400\",\n    \"question\": \"what is tapping the person 's foot with its paw?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32209\",\n    \"key\": \"63248\",\n    \"description\": \"a dog is tapping a person 's foot with its paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_neq8l3tT9D1qe849no1_400\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10059\",\n    \"key\": \"50076\",\n    \"description\": \"a man in front of a red wall is leaning back and gesturing with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5g6kILKI1ra72xto1_500\",\n    \"question\": \"what is the girl holding and looking at something?\",\n    \"answer\": \"lantern\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20316\",\n    \"key\": \"89135\",\n    \"description\": \"a girl is holding a lantern and looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncap7ix7eJ1thbgs3o1_250\",\n    \"question\": \"what bear,\",\n    \"answer\": \"breaks the branch its sitting on in the tree , and falls to the ground ? panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4242\",\n    \"key\": \"10789\",\n    \"description\": \"a panda bear,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr7dew1PD1qfozfoo1_500\",\n    \"question\": \"what is engraving something into a piece of metal?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8251\",\n    \"key\": \"60586\",\n    \"description\": \"a machine is engraving something into a piece of metal.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95f1j7set1tgruvyo1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30010\",\n    \"key\": \"62958\",\n    \"description\": \"a white girl with glasses is kissing a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncazxuSQtP1tps3kao1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25132\",\n    \"key\": \"62450\",\n    \"description\": \"a skater with white shirt is jumping tubes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n971luAydg1skeuupo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49480\",\n    \"key\": \"74145\",\n    \"description\": \"a person drives a white car on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jjd1vxrB1rhbco5o1_250\",\n    \"question\": \"what is the color of the suits?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34936\",\n    \"key\": \"47233\",\n    \"description\": \"three young men in white suits are singing into a microphone together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk22m121jw1twrr5wo1_500\",\n    \"question\": \"how many wrestler slams another to the floor?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43092\",\n    \"key\": \"47857\",\n    \"description\": \"one wrestler slams another to the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9boo7VWMb1tbhfh6o1_500\",\n    \"question\": \"what is the woman making?\",\n    \"answer\": \"face\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13291\",\n    \"key\": \"56811\",\n    \"description\": \"a woman is making a fish face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbrkjB7sK1smq40po1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50199\",\n    \"key\": \"16252\",\n    \"description\": \"a woman with black hair is drinking champagne.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fp6mawvc1tg4n19o1_500\",\n    \"question\": \"what cuts through an intersection and hits a tram?\",\n    \"answer\": \"truck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17546\",\n    \"key\": \"89277\",\n    \"description\": \"a truck cuts through an intersection and hits a tram.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkpx0dYrI1tg9gzmo1_250\",\n    \"question\": \"what is the young man wearing and turning his head to the side?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13619\",\n    \"key\": \"37780\",\n    \"description\": \"a young man is wearing a suit and turning his head to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_njsd1xvdMx1twhh4bo1_400\",\n    \"question\": \"how many men are running away from the rhino?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47605\",\n    \"key\": \"37070\",\n    \"description\": \"two men are running away from a rhino.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8cxoLAlN1ret264o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14186\",\n    \"key\": \"36511\",\n    \"description\": \"a man wearing a black jacket is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yr1wYMdx1r6oiiao1_500\",\n    \"question\": \"how many girls are standing in the side of a road?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4036\",\n    \"key\": \"84810\",\n    \"description\": \"two girls are standing in the side of a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngf9rveb2q1sh98coo1_400\",\n    \"question\": \"what is driving through the field of grass?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22067\",\n    \"key\": \"94749\",\n    \"description\": \"a car is driving through a field of grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhezpoGPlg1s71nvbo1_500\",\n    \"question\": \"where does the woman recline the driver 's seat,\",\n    \"answer\": \"so that she 's almost laying down . ? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37443\",\n    \"key\": \"68103\",\n    \"description\": \"a woman reclines the driver 's seat in her car,\"\n  },\n  {\n    \"video_name\": \"tumblr_nl126a6rbk1unyhx2o1_400\",\n    \"question\": \"what is crashing amid the lot of smoke?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2194\",\n    \"key\": \"79257\",\n    \"description\": \"a car is crashing amid a lot of smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_no73v10L191uuefq3o1_250\",\n    \"question\": \"what is stuck in the plastic container?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12849\",\n    \"key\": \"11614\",\n    \"description\": \"a cat is stuck in a plastic container.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnyl3sHshs1tjbfjto1_400\",\n    \"question\": \"what is the woman wearing red eating slowly?\",\n    \"answer\": \"popcorn\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33662\",\n    \"key\": \"70065\",\n    \"description\": \"a woman wearing red is eating popcorn slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9pqpnV1K1qz874do1_500\",\n    \"question\": \"what is the color of the sheets?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43144\",\n    \"key\": \"99519\",\n    \"description\": \"white sheets hang on a clothes line and blow in the wind.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmkrlulEL1tt4nxqo1_250\",\n    \"question\": \"what are two girls crying so hard?\",\n    \"answer\": \"smears\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5449\",\n    \"key\": \"26024\",\n    \"description\": \"two girls are crying so hard their makeup smears.\"\n  },\n  {\n    \"video_name\": \"tumblr_nab7byQv4u1sg2mbto1_400\",\n    \"question\": \"what is the woman playing with a man playing a horn behind her?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17507\",\n    \"key\": \"61087\",\n    \"description\": \"a woman is playing a guitar with a man playing a horn behind her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhub4qN8TV1r37y87o1_500\",\n    \"question\": \"what is the color of the light?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1364\",\n    \"key\": \"61932\",\n    \"description\": \"a man and woman are kissing each other and a woman is holding a red light in her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nem4qtJZ6l1tsn1ypo1_250\",\n    \"question\": \"how many people are on stage with lots of flashing strobe lights?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30661\",\n    \"key\": \"18215\",\n    \"description\": \"two people are on stage with lots of flashing strobe lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_noagkbLLFO1rz4xj6o1_1280\",\n    \"question\": \"how many guys are giving each other a high five?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10735\",\n    \"key\": \"66638\",\n    \"description\": \"two guys are giving each other a high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfe07vBmKZ1tg9gzmo1_400\",\n    \"question\": \"what does the man smile and presents?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7167\",\n    \"key\": \"48521\",\n    \"description\": \"the man smiles and presents a red gift box.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9c6suWFVG1swz4jho1_400\",\n    \"question\": \"what is the color of the dance?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30684\",\n    \"key\": \"72800\",\n    \"description\": \"a woman in a blue dress dance dances around danced.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne61f5xOgp1u2opwno1_250\",\n    \"question\": \"how many guys are running down the hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51607\",\n    \"key\": \"84349\",\n    \"description\": \"two guys are running down a hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzdxdVvFc1s5n087o1_500\",\n    \"question\": \"what is driven quickly through the tunnel with lots of lights?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34525\",\n    \"key\": \"57448\",\n    \"description\": \"a car is driven quickly through a tunnel with lots of lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbqsd8vBZS1rk4bszo1_500\",\n    \"question\": \"what looks at us?\",\n    \"answer\": \"hair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26318\",\n    \"key\": \"34316\",\n    \"description\": \"a man playing guitar pink hair looks at us.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkqmlsRPP1uoyfr8o1_400\",\n    \"question\": \"where is the boy with black suit riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37729\",\n    \"key\": \"64657\",\n    \"description\": \"a boy with black suit is riding in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngu3mzFpwr1tdjuqvo1_400\",\n    \"question\": \"what tears apart the stuffed animal?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47676\",\n    \"key\": \"67982\",\n    \"description\": \"a spotted dog tears apart a stuffed animal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0odbifZp1tihaueo1_250\",\n    \"question\": \"where are two mice fighting.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46948\",\n    \"key\": \"18445\",\n    \"description\": \"two mice are fighting in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmqnudPrQ1rdp3hpo1_500\",\n    \"question\": \"what is the woman wearing?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11881\",\n    \"key\": \"49460\",\n    \"description\": \"a woman is wearing sunglasses that are silver.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3qgzrxld1s0r79po1_r1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2714\",\n    \"key\": \"92812\",\n    \"description\": \"a young man,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndaud7pQw81r4z25lo1_400\",\n    \"question\": \"where is the man dancing and jumping.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43216\",\n    \"key\": \"28204\",\n    \"description\": \"a man is dancing and jumping in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqagz6lei1tdjuqvo1_400\",\n    \"question\": \"what is the guy tickling shell and the turtle is squirming away?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23399\",\n    \"key\": \"15374\",\n    \"description\": \"a guy is tickling a turtle 's shell and the turtle is squirming away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfalpqnjBU1u43iqlo1_250\",\n    \"question\": \"what are two men tapping?\",\n    \"answer\": \"bones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10566\",\n    \"key\": \"10355\",\n    \"description\": \"two men are tapping their cheek bones.\"\n  },\n  {\n    \"video_name\": \"tumblr_n89ev1boWG1tzl5c2o1_250\",\n    \"question\": \"what is the color of the bed?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22381\",\n    \"key\": \"16324\",\n    \"description\": \"a man is laying on a red bed holding his phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94efhu6am1tfer95o1_500\",\n    \"question\": \"what is moving along the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9461\",\n    \"key\": \"72820\",\n    \"description\": \"the black car is moving along the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dtvaAB1g1t8991mo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24043\",\n    \"key\": \"19358\",\n    \"description\": \"a woman with light brown hair is sitting up in bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd90icPKP01tgwlf5o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41492\",\n    \"key\": \"47777\",\n    \"description\": \"a young man wearing a red shirt is reclining on a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjl83540H1sfr1gso1_500\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41937\",\n    \"key\": \"90394\",\n    \"description\": \"the lady wearing the black dress is sitting on a small red chair,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p7rcCFai1qlzevso1_400\",\n    \"question\": \"what is the color of the ball?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23878\",\n    \"key\": \"84114\",\n    \"description\": \"a man cups his hands to speak through them as he is holding a red ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mtd8IOiG1t0ojyvo1_250\",\n    \"question\": \"what is the man changing with people nearby?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43539\",\n    \"key\": \"12897\",\n    \"description\": \"a man is changing his shirt with people nearby.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hakp4Wd51smtg6no1_400\",\n    \"question\": \"what is with the bunch of other trees?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5455\",\n    \"key\": \"80843\",\n    \"description\": \"a tree is with a bunch of other trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxes8zoYk1rulxe0o1_400\",\n    \"question\": \"what is attempting to sit down and falls over?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30209\",\n    \"key\": \"71466\",\n    \"description\": \"a cat is attempting to sit down and falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8s1tUL2H1trp7kao1_500\",\n    \"question\": \"what are the musicians holding and playing music?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52675\",\n    \"key\": \"26600\",\n    \"description\": \"the musicians are holding their guitars and playing music.\"\n  },\n  {\n    \"video_name\": \"tumblr_nde66zZYKb1sxg13zo1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25564\",\n    \"key\": \"95112\",\n    \"description\": \"a person with bright blue eyes sings in the midst of a group of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb41brPtbh1r80pq0o1_400\",\n    \"question\": \"what is the person wearing with glowing green eyes?\",\n    \"answer\": \"costume\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28275\",\n    \"key\": \"67585\",\n    \"description\": \"a person is wearing an animal costume with glowing green eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1d6ntdfo1rkc8b3o2_500\",\n    \"question\": \"how many men in black suits are dancing in a parking lot?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9327\",\n    \"key\": \"92451\",\n    \"description\": \"three men in black suits are dancing in a parking lot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgshkwBtf1tdjuqvo1_400\",\n    \"question\": \"what is the man holding above his head?\",\n    \"answer\": \"boxes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49320\",\n    \"key\": \"34923\",\n    \"description\": \"a man is holding multiple boxes above his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnlp3d0FA1tldvawo1_400\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"mirror\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33618\",\n    \"key\": \"54491\",\n    \"description\": \"a man is holding a mirror as he trims another man 's beard.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5aodi5wy1tph724o1_400\",\n    \"question\": \"what is the person using?\",\n    \"answer\": \"ski\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18027\",\n    \"key\": \"64126\",\n    \"description\": \"a person using a ski to go down a slope.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay7tj9gzN1rp5efco1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49321\",\n    \"key\": \"16984\",\n    \"description\": \"a man with brown short hair is frowning.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk90851bF31rreccuo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34753\",\n    \"key\": \"99821\",\n    \"description\": \"a girl with red hair takes her hat off of her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qncqac351tgg8imo1_500\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47229\",\n    \"key\": \"69036\",\n    \"description\": \"a boy in black is looking at his phone moving his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklmda7nIP1u37l08o1_400\",\n    \"question\": \"what is the color of the beard?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23227\",\n    \"key\": \"16821\",\n    \"description\": \"an old man with white beard is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr12heBDzF1siem3jo1_400\",\n    \"question\": \"what are racing and one starts sparking?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52540\",\n    \"key\": \"93803\",\n    \"description\": \"two race cars are racing and one starts sparking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngakp3K9X61tkrdioo1_250\",\n    \"question\": \"what is the color of the costume?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24211\",\n    \"key\": \"4956\",\n    \"description\": \"a man in a white animal costume looks ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngy2exvrAn1qzghsuo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18907\",\n    \"key\": \"29240\",\n    \"description\": \"a woman with shoulder length brown hair is shaking her head whilst smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfjmx8GxD1rvdsbqo1_250\",\n    \"question\": \"what is the girl spinning gin and sticking her tongue out?\",\n    \"answer\": \"circle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20469\",\n    \"key\": \"804\",\n    \"description\": \"a girl is spinning gin a circle and sticking her tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacr8iiHHd1tjztg6o1_400\",\n    \"question\": \"what is walking on the track with speed?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47105\",\n    \"key\": \"46433\",\n    \"description\": \"a car is walking on a track with speed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjn15MCNP1tsnqf4o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17354\",\n    \"key\": \"61799\",\n    \"description\": \"a couple with white dress is dancing in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9db76KvdN1td6onfo1_500\",\n    \"question\": \"how many young men are speaking while one of them is wearing a neck pillow?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23419\",\n    \"key\": \"52858\",\n    \"description\": \"two young men are speaking while one of them is wearing a neck pillow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9awd0Hzvt1tpfr3do1_500\",\n    \"question\": \"what is the man wearing a shirt with a stripe is using?\",\n    \"answer\": \"weapon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13155\",\n    \"key\": \"50016\",\n    \"description\": \"a man wearing a shirt with a stripe is using a martial arts weapon.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cky9gUyi1rlte6do1_500\",\n    \"question\": \"what is an animal using?\",\n    \"answer\": \"paw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1995\",\n    \"key\": \"89306\",\n    \"description\": \"an animal is using its paw to feel the surface.\"\n  },\n  {\n    \"video_name\": \"tumblr_navw87THcF1tkua7uo1_250\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41568\",\n    \"key\": \"39747\",\n    \"description\": \"a man with bright blue eyes blinks and closes his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxspvkFfy1tgose8o1_250\",\n    \"question\": \"what is the young woman shooing away?\",\n    \"answer\": \"crow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2066\",\n    \"key\": \"38929\",\n    \"description\": \"a young woman is shooing a crow away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbatooeAde1tx8mn0o1_400\",\n    \"question\": \"what are racing cars racing around a track and spins off the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39175\",\n    \"key\": \"52734\",\n    \"description\": \"racing cars are racing around a track and one car spins off the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnsotwRNgh1tmavx8o1_250\",\n    \"question\": \"what is the man unbuttoning?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44590\",\n    \"key\": \"1691\",\n    \"description\": \"a man is unbuttoning his red shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbujvmeP191te0xigo1_250\",\n    \"question\": \"how many fingers is the boy with short hair putting together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42276\",\n    \"key\": \"2902\",\n    \"description\": \"a boy with short hair is putting two fingers together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nau3o7ym5K1shofflo1_1280\",\n    \"question\": \"what is the man swinging?\",\n    \"answer\": \"blade\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43137\",\n    \"key\": \"25380\",\n    \"description\": \"a man is swinging a blade as he walks along a corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlxzt2gGMO1uokoxbo1_500\",\n    \"question\": \"what is being ridden down the dirt path?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3262\",\n    \"key\": \"57812\",\n    \"description\": \"a bike is being ridden down a dirt path.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesls65ifv1qj1s5io1_400\",\n    \"question\": \"what is the color of the arms?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48865\",\n    \"key\": \"80347\",\n    \"description\": \"two orange robotic arms are fighting with swords.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xdawheqQ1qzydejo1_250\",\n    \"question\": \"what is the man riding?\",\n    \"answer\": \"unicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40012\",\n    \"key\": \"426\",\n    \"description\": \"a man is riding a unicycle that goes in circles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97zupqiAM1tdwa41o1_400\",\n    \"question\": \"how many men are talking with the sun glaring behind them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21151\",\n    \"key\": \"87809\",\n    \"description\": \"two men are talking with the sun glaring behind them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyaonXHxl1tmnntwo1_400\",\n    \"question\": \"what goes down the yellow slide?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36812\",\n    \"key\": \"18209\",\n    \"description\": \"a black cat goes down a yellow slide.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8v8rd9miR1tho3a5o1_250\",\n    \"question\": \"what is the man holding up?\",\n    \"answer\": \"money\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49164\",\n    \"key\": \"40981\",\n    \"description\": \"the man is holding up money as he talks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0sriD2CI1rcku3no1_250\",\n    \"question\": \"what is the color of the ears?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27908\",\n    \"key\": \"24526\",\n    \"description\": \"a small white bunny with black ears falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7t5vzyxn1s8a8w8o1_400\",\n    \"question\": \"what is an old man playing while wearing sunglasses?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15142\",\n    \"key\": \"63065\",\n    \"description\": \"an old man is playing a guitar while wearing sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h0noxlcN1sbsacvo1_400\",\n    \"question\": \"where is the person holding a bag is standing and waving.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41538\",\n    \"key\": \"85475\",\n    \"description\": \"a person holding a bag is standing in the street and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoe7aI5R21unzsdpo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9243\",\n    \"key\": \"8341\",\n    \"description\": \"a girl with long black hair was laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_no73q2fm0I1uuf348o1_250\",\n    \"question\": \"where is the chocolate cookie being placed.\",\n    \"answer\": \"? cone\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24846\",\n    \"key\": \"27138\",\n    \"description\": \"a chocolate cookie is being placed in a white ice cream cone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxvud6IgD1thktw9o1_250\",\n    \"question\": \"what is running under the table on a pink rug?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28824\",\n    \"key\": \"533\",\n    \"description\": \"a cat is running under a table on a pink rug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelh3nATly1tte9eno1_400\",\n    \"question\": \"what does the wrestler rip his shirt off and then a basketball player rips off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47861\",\n    \"key\": \"40152\",\n    \"description\": \"a wrestler rips his shirt off and then a basketball player rips his shirt off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqyrrDHMf1upvohzo1_400\",\n    \"question\": \"where are the couple dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14934\",\n    \"key\": \"69802\",\n    \"description\": \"a couple are dancing very fast in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1eah7Rjw1slwrsuo1_500\",\n    \"question\": \"what is landing and then decides to take back off after the plane is in the way?\",\n    \"answer\": \"jet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31601\",\n    \"key\": \"86728\",\n    \"description\": \"a jet is landing and then decides to take back off after a plane is in the way.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbrltf1I31tx8mn0o1_400\",\n    \"question\": \"what did three cars race and one drove off?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17110\",\n    \"key\": \"86057\",\n    \"description\": \"three cars raced and one drove off the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklj8pQZTT1rxcyx0o1_250\",\n    \"question\": \"what is the man pulling out?\",\n    \"answer\": \"wallet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23988\",\n    \"key\": \"2632\",\n    \"description\": \"a man is pulling out his wallet to pay for a delivery.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee158JiiR1r7qucoo1_400\",\n    \"question\": \"what is the color of the blows?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49747\",\n    \"key\": \"63913\",\n    \"description\": \"a girl with long red hair blows smoke out of her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgtrswsrb1qax4nyo3_500\",\n    \"question\": \"what is the woman wearing?\",\n    \"answer\": \"blouse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28859\",\n    \"key\": \"76452\",\n    \"description\": \"the woman is wearing a purple blouse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwssbgrhN1ti5nreo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12970\",\n    \"key\": \"21307\",\n    \"description\": \"a lady FRAMEQAorter in a black suit looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtf0jqUNA1tkj2cmo1_250\",\n    \"question\": \"what is the man wearing a bucket of water over his head?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50650\",\n    \"key\": \"8265\",\n    \"description\": \"a man wearing a blue shirt dumps a bucket of water over his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncb3i7WXVb1tlwdnpo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37582\",\n    \"key\": \"23592\",\n    \"description\": \"a seated man wearing a black top is pulling his beanie over his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_np3fv0Iucb1sxj25eo1_500\",\n    \"question\": \"how many laughing guys fist-bump and then continue laughing hysterically?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2759\",\n    \"key\": \"80507\",\n    \"description\": \"two laughing guys fist-bump and then continue laughing hysterically.\"\n  },\n  {\n    \"video_name\": \"tumblr_no6xcisQQU1ttstb6o1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36669\",\n    \"key\": \"48414\",\n    \"description\": \"a lady with long black hair wears all black and pulls away with wide eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhruk6vPe11u7bky6o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19209\",\n    \"key\": \"96175\",\n    \"description\": \"a man with a blue shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx3goKTK71t0ojyvo1_400\",\n    \"question\": \"what is the man in a pink shirt holding a microphone adjusts?\",\n    \"answer\": \"trousers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45931\",\n    \"key\": \"8463\",\n    \"description\": \"a man in a pink shirt holding a microphone adjusts his trousers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczlfupRqq1tvuidio1_500\",\n    \"question\": \"what is flapping its wings on a tree branch?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47412\",\n    \"key\": \"84031\",\n    \"description\": \"a green bird is flapping its wings on a tree branch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffz79veOV1tqrf5uo1_400\",\n    \"question\": \"where are the man and woman sitting.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA5822\",\n    \"key\": \"51126\",\n    \"description\": \"the man and woman are sitting in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc216vPG4X1tdjuqvo1_400\",\n    \"question\": \"what is standing up near the door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12560\",\n    \"key\": \"30878\",\n    \"description\": \"a cat is standing up near a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_navtszVYAv1tys35ko1_250\",\n    \"question\": \"how many men are laughing and playing their guitars?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24985\",\n    \"key\": \"15994\",\n    \"description\": \"two men are laughing and playing their guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_njh449BVt81u29slho1_500\",\n    \"question\": \"what is the woman wearing in a car and putting on sunglasses?\",\n    \"answer\": \"buds\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13762\",\n    \"key\": \"87651\",\n    \"description\": \"a woman is wearing ear buds in a car and putting on sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi98s3ntx1shsnyco1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47379\",\n    \"key\": \"101984\",\n    \"description\": \"a man in a white shirt gives a man in a black shirt a high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6marczEE1rvy5gto1_500\",\n    \"question\": \"what is the color of the guitar?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1251\",\n    \"key\": \"77810\",\n    \"description\": \"a man is playing a red guitar,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcq7tt1cy1rysgdzo1_500\",\n    \"question\": \"what did the woman with long red hair shoot?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25154\",\n    \"key\": \"60851\",\n    \"description\": \"a woman with long red hair shot a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nihwdfvxb61sx3lhyo1_400\",\n    \"question\": \"how many women are dancing and shaking together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24265\",\n    \"key\": \"98740\",\n    \"description\": \"two women are dancing and shaking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tucxOZc61qcsn62o1_500\",\n    \"question\": \"how many lovers are looking at each other upside down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49672\",\n    \"key\": \"24687\",\n    \"description\": \"two lovers are looking at each other upside down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2r0l3BTc1slj978o1_400\",\n    \"question\": \"what is eating something and running around?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42088\",\n    \"key\": \"49338\",\n    \"description\": \"a fox is eating something and running around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9j9smqUw01tx8mn0o1_400\",\n    \"question\": \"what are the bunch?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35527\",\n    \"key\": \"88247\",\n    \"description\": \"a bunch are cars are involved in racing around a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklz4vcGE01tgv1ivo1_250\",\n    \"question\": \"what is playing with the couple and making them laugh?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8356\",\n    \"key\": \"80529\",\n    \"description\": \"a black dog is playing with a couple and making them laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2ot3gu3Y1tvq4nwo1_400\",\n    \"question\": \"what is the girl looking into a mirror and applying?\",\n    \"answer\": \"eyeliner\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40441\",\n    \"key\": \"32160\",\n    \"description\": \"a girl is looking into a mirror and applying eyeliner.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8v8orVsL81rqn31vo1_250\",\n    \"question\": \"what is the girl wearing a cowboy hat was playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34599\",\n    \"key\": \"73123\",\n    \"description\": \"a girl wearing a cowboy hat was playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejtlgrkmT1u1pi4oo1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35773\",\n    \"key\": \"35293\",\n    \"description\": \"a red haired girl looks straight ahead and licks her lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhhykaSB4y1tmnf3co1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1154\",\n    \"key\": \"92610\",\n    \"description\": \"a man wearing a black hat is kissing another man on the cheek.\"\n  },\n  {\n    \"video_name\": \"tumblr_nappn5EVPG1t8jvi1o1_500\",\n    \"question\": \"where is the young couple talking to each other.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7301\",\n    \"key\": \"52923\",\n    \"description\": \"a young couple in a room is talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbvhcbSyBx1rgwaj9o1_400\",\n    \"question\": \"how many men are playing guitars while other people watch them perform?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14754\",\n    \"key\": \"12085\",\n    \"description\": \"two men are playing guitars while other people watch them perform.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0ih2uUAV1tquxyyo1_500\",\n    \"question\": \"how many guys are hugging each other on the field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5158\",\n    \"key\": \"93964\",\n    \"description\": \"two guys are hugging each other on the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbaz4cGyXC1r324mgo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32055\",\n    \"key\": \"89434\",\n    \"description\": \"a man in a white shirt and black pants is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na60jik2x61swxhaso1_400\",\n    \"question\": \"what is massaging another cats back with its paws?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5421\",\n    \"key\": \"28844\",\n    \"description\": \"a cat is massaging another cats back with its paws.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94efhu6am1tfer95o1_500\",\n    \"question\": \"what rode down the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11658\",\n    \"key\": \"72820\",\n    \"description\": \"a black car that is fast rode down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklvmbxVSC1qeurwuo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11725\",\n    \"key\": \"53608\",\n    \"description\": \"a woman in a red hat and a blue suit is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmz2tmDeda1sddro0o1_250\",\n    \"question\": \"what do two men watch out a bunch of red carts?\",\n    \"answer\": \"spill\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23356\",\n    \"key\": \"24985\",\n    \"description\": \"two men watch a truck spill out a bunch of red carts.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagai2KcJW1slrp89o1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38849\",\n    \"key\": \"67973\",\n    \"description\": \"a guy with red wine jacket is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkpi9gRWK1s778oho1_400\",\n    \"question\": \"how many dancers discard their outer garments before starting to dance?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25695\",\n    \"key\": \"66032\",\n    \"description\": \"four dancers discard their outer garments before starting to dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahb37wZcQ1tbjfazo1_400\",\n    \"question\": \"what is swimming in the water?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16931\",\n    \"key\": \"64226\",\n    \"description\": \"the fish is swimming in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lft7vTIh1r7tsclo1_400\",\n    \"question\": \"what is performing inside the room?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45585\",\n    \"key\": \"61378\",\n    \"description\": \"a rock band is performing inside a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nde98bVDhd1r21xqpo1_250\",\n    \"question\": \"what is the color of the animal?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31477\",\n    \"key\": \"86043\",\n    \"description\": \"a blue animal frowns and closes the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcq7tt1cy1rysgdzo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12788\",\n    \"key\": \"60851\",\n    \"description\": \"a woman with long red hair shot a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4o2pe1Ah1u2c2quo1_500\",\n    \"question\": \"what is calmly sitting there in the snow?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2656\",\n    \"key\": \"84041\",\n    \"description\": \"a fox is calmly sitting there in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhr64ytyfc1u7wiuzo1_400\",\n    \"question\": \"what plays with the garbage can by hitting the lid to make it spin?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3266\",\n    \"key\": \"73336\",\n    \"description\": \"a cat plays with a garbage can by hitting the lid to make it spin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbl9ehQkxc1slwrsuo1_400\",\n    \"question\": \"what is the man playing with his dog?\",\n    \"answer\": \"cake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32556\",\n    \"key\": \"42814\",\n    \"description\": \"a man is playing patty cake with his dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uux7pi6m1trk3cho1_500\",\n    \"question\": \"what flies out of the girl 's mouth?\",\n    \"answer\": \"butterfly\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6071\",\n    \"key\": \"90040\",\n    \"description\": \"a butterfly flies out of a girl 's mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcbdvtDHl1u3n11qo1_500\",\n    \"question\": \"how many people are driving the car in the dark?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20892\",\n    \"key\": \"57651\",\n    \"description\": \"four people are driving a car in the dark.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sopfHH201tbn1tto1_400\",\n    \"question\": \"what gets into the bag and run while pines fall?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49991\",\n    \"key\": \"68160\",\n    \"description\": \"a cat gets into a bag and run while pines fall.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvociiGrl1u2vubao1_400\",\n    \"question\": \"what is the black man happily eating?\",\n    \"answer\": \"rib\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17525\",\n    \"key\": \"82737\",\n    \"description\": \"a black man is happily eating a rib.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y7f9qCiI1sffixqo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32638\",\n    \"key\": \"61748\",\n    \"description\": \"a man wearing a black jacket inside the van is introducing his friend.\"\n  },\n  {\n    \"video_name\": \"tumblr_nheujcDvAL1u6ps3vo1_400\",\n    \"question\": \"what is the man wearing?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5985\",\n    \"key\": \"35800\",\n    \"description\": \"a man is wearing a long white lab coat while standing next to a donkey and is eating something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf19z5qOg31s8zojyo1_250\",\n    \"question\": \"what did the woman wit in her hand sways while talking?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29403\",\n    \"key\": \"12232\",\n    \"description\": \"a woman wit a red cup in her hand sways while talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhklesKZzn1stnum9o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20458\",\n    \"key\": \"32469\",\n    \"description\": \"a girl wearing a long sleeve,\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8hdgB5OO1slj978o1_400\",\n    \"question\": \"what are chasing the ball while dragging a young boy?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32178\",\n    \"key\": \"92423\",\n    \"description\": \"two dogs are chasing a ball while dragging a young boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedbvrPn4z1soryl3o1_250\",\n    \"question\": \"what is the boy petting on the head?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38924\",\n    \"key\": \"9575\",\n    \"description\": \"a boy is petting a stuffed kola bear on the head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkto6fCkCn1r0ia88o1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38622\",\n    \"key\": \"80125\",\n    \"description\": \"a handsome man with black hat and blue shirt is talking and turning his head to another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nol6jnzK9a1t95h1uo1_400\",\n    \"question\": \"what scurries to bowling pins and knocks them down?\",\n    \"answer\": \"porcupine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5257\",\n    \"key\": \"16645\",\n    \"description\": \"a porcupine scurries to bowling pins and knocks them down.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvix3hzTK1u3wykjo1_250\",\n    \"question\": \"what are two blonde haired woman wearing and talking?\",\n    \"answer\": \"clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23078\",\n    \"key\": \"13812\",\n    \"description\": \"two blonde haired woman are wearing black clothes and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nddq9zmcQL1tmp9jpo1_500\",\n    \"question\": \"where is the man with tall hair standing.\",\n    \"answer\": \"? doorway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12961\",\n    \"key\": \"85009\",\n    \"description\": \"a man with tall hair is standing in a doorway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvz1zHlqY1slj978o1_250\",\n    \"question\": \"what does the bird place onto a toy placed?\",\n    \"answer\": \"rings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5417\",\n    \"key\": \"27919\",\n    \"description\": \"a bird places colored rings onto a toy placed.\"\n  },\n  {\n    \"video_name\": \"tumblr_njj1ug6dqi1r9zhm4o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21313\",\n    \"key\": \"21282\",\n    \"description\": \"a boy in a black jacket is break dancing in front of judges.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng3bhm9zzP1u15fgvo1_400\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43554\",\n    \"key\": \"73598\",\n    \"description\": \"the guys are running in and standing in front of a white wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfglj8pbh61s90br6o1_250\",\n    \"question\": \"where is the girl in a red dress looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23414\",\n    \"key\": \"51510\",\n    \"description\": \"a girl in a red dress is looking in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngek8rCbFV1s82z36o1_500\",\n    \"question\": \"how many other men is the man having come up behind him and smile?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15919\",\n    \"key\": \"73050\",\n    \"description\": \"a man is having two other men come up behind him and smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy7qk5Iqv1rr6d5go1_400\",\n    \"question\": \"where do two men ride while one steers wildly.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20656\",\n    \"key\": \"62367\",\n    \"description\": \"two men ride in a car while one steers wildly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0a8cwZvc1u5ep4ro1_500\",\n    \"question\": \"how many men are sitting and talking to each other in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33897\",\n    \"key\": \"61245\",\n    \"description\": \"two men are sitting and talking to each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4wp3CmCr1u54jjao1_500\",\n    \"question\": \"how many guys are sitting there?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7622\",\n    \"key\": \"86239\",\n    \"description\": \"two guys are sitting there and they 're just staring ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7hys4yyC1tkmdtzo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21437\",\n    \"key\": \"28034\",\n    \"description\": \"a man with short brown hair is blinking quickly and then he moves his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_npltp08V9L1u8z9jdo1_500\",\n    \"question\": \"what is the person lighting on a cake?\",\n    \"answer\": \"candle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18453\",\n    \"key\": \"62712\",\n    \"description\": \"a person is lighting a black candle on a cake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3uyoJnby1tgetb4o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12353\",\n    \"key\": \"68835\",\n    \"description\": \"the person that had the appearance of a man was dressed in a bright orange dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ku06s5kP1t6ksnpo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42818\",\n    \"key\": \"90011\",\n    \"description\": \"a young man in black is putting his hand on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqq5oq8jTh1sfwa6ho1_400\",\n    \"question\": \"how many young men are poking their tongues out?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34487\",\n    \"key\": \"4817\",\n    \"description\": \"two young men are poking their tongues out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nge2siSPYW1sppy9co1_250\",\n    \"question\": \"what is falling into the swimming pool from the side?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30597\",\n    \"key\": \"52861\",\n    \"description\": \"a dog is falling into a swimming pool from the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb5uk5oady1tkipkco1_250\",\n    \"question\": \"how many people are playing and eating on the mat?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42145\",\n    \"key\": \"24620\",\n    \"description\": \"two people are playing and eating on a mat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9l9ewvnn1rm95kgo1_400\",\n    \"question\": \"where is the puppy trying to dig a hole.\",\n    \"answer\": \"? floor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45601\",\n    \"key\": \"42806\",\n    \"description\": \"a puppy is trying to dig a hole in the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2vicp4Xt1ti2fvro1_400\",\n    \"question\": \"what are riding on the road and one is falling over?\",\n    \"answer\": \"motorcycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7310\",\n    \"key\": \"53169\",\n    \"description\": \"two motorcycles are riding on the road and one is falling over.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9q0wbAvnk1slorlzo1_400\",\n    \"question\": \"what is the man holding while sitting in the chair?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24734\",\n    \"key\": \"97560\",\n    \"description\": \"a man is holding a rabbit while sitting in the chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99x6g6den1tcuqh9o1_400\",\n    \"question\": \"what is the color of the mug?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24344\",\n    \"key\": \"29633\",\n    \"description\": \"a woman with a bird tattoo is drinking out of a large blue mug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyy4pkeKZ1qdch8fo1_1280\",\n    \"question\": \"where does the man with short hair stand.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36579\",\n    \"key\": \"93636\",\n    \"description\": \"a man with short hair stands in a red room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nraq98IFWr1ua0n4io1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18455\",\n    \"key\": \"40317\",\n    \"description\": \"the man in the white shirt is messing with his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k66hDtUT1s9lpi5o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13732\",\n    \"key\": \"54195\",\n    \"description\": \"a blue sports car is drifting around a corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfalpqnjBU1u43iqlo1_250\",\n    \"question\": \"how many men are tapping their cheek bones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45551\",\n    \"key\": \"10355\",\n    \"description\": \"two men are tapping their cheek bones.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl0nxfMG31t5lviko1_250\",\n    \"question\": \"what is the color of the capes?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42100\",\n    \"key\": \"43918\",\n    \"description\": \"the young men wearing green capes are in the forest.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8n38zP5b1unhekuo1_400\",\n    \"question\": \"how many men are singing inside the car and rubbing their chests?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16698\",\n    \"key\": \"66354\",\n    \"description\": \"two men are singing inside a car and rubbing their chests.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf2pkEfCK1ssgyoro1_400\",\n    \"question\": \"what is eating peanut butter off of a spoon?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20732\",\n    \"key\": \"70176\",\n    \"description\": \"a goat is eating peanut butter off of a spoon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0pkreKb81tjr3nro1_400\",\n    \"question\": \"what is performing the song while playing their instruments?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8564\",\n    \"key\": \"59431\",\n    \"description\": \"a rock band is performing a song while playing their instruments.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzs89AHSP1u1gaf4o1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6885\",\n    \"key\": \"98423\",\n    \"description\": \"the woman was wearing a blue dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_neycf1b1Y81s81a83o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30574\",\n    \"key\": \"43536\",\n    \"description\": \"two men with dark brown hair are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni11qwnFts1t0w22yo1_250\",\n    \"question\": \"what does the man in a black jacket remove?\",\n    \"answer\": \"scarf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12489\",\n    \"key\": \"13191\",\n    \"description\": \"a man in a black jacket removes his scarf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdgokPB5G1rgo5qmo1_500\",\n    \"question\": \"what is the woman in a white top carrying?\",\n    \"answer\": \"tray\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29036\",\n    \"key\": \"25088\",\n    \"description\": \"a woman in a white top is carrying a tray.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhiiaqCFqE1r9hkyuo1_400\",\n    \"question\": \"how many dancers are performing in the synchronized routine?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23926\",\n    \"key\": \"57808\",\n    \"description\": \"two dancers are performing in a synchronized routine.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkitkhGcr51qdlihoo1_500\",\n    \"question\": \"how many man looks at another man while he drops a torch onto a desk?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24241\",\n    \"key\": \"63296\",\n    \"description\": \"one man looks at another man while he drops a torch onto a desk.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ag3iabTq1ti0984o1_250\",\n    \"question\": \"what back flips and jumps across the stage?\",\n    \"answer\": \"map\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1718\",\n    \"key\": \"9601\",\n    \"description\": \"a map back flips and jumps across a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfarhcHDam1seb8aro1_400\",\n    \"question\": \"how many kittens are meowing in the box?\",\n    \"answer\": \"seven\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28515\",\n    \"key\": \"65054\",\n    \"description\": \"seven kittens are meowing in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn8wvwPjD1s6zpepo1_400\",\n    \"question\": \"what is pulling the gas pump away from the tank and starts a fire?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12009\",\n    \"key\": \"45738\",\n    \"description\": \"a car is pulling a gas pump away from the tank and starts a fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghnsy9tub1skqoaho1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15495\",\n    \"key\": \"62925\",\n    \"description\": \"a white man with white shirt is surprised with pie in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vr1xjmof1tdmffyo1_250\",\n    \"question\": \"where is the cat hiding and pawing at a pen poked at it.\",\n    \"answer\": \"? drawer\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3940\",\n    \"key\": \"27920\",\n    \"description\": \"a cat is hiding in a drawer and pawing at a pen poked at it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyyvdx6N91rxspeco1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27588\",\n    \"key\": \"41811\",\n    \"description\": \"a man in a shirt with red hair closed his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfkss1JMQ11tkdcbjo1_250\",\n    \"question\": \"what is the color of the bar?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18251\",\n    \"key\": \"29782\",\n    \"description\": \"a woman with bare shoulders is draped over a white bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6itwHzFO1slj978o1_250\",\n    \"question\": \"what is holding its head out of a cars sunroof?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22188\",\n    \"key\": \"23975\",\n    \"description\": \"a dog is holding its head out of a cars sunroof.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepeym75h91tx8mn0o1_400\",\n    \"question\": \"what leans to the side as he comes to a turn then he straightens up and continues racing?\",\n    \"answer\": \"racer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52385\",\n    \"key\": \"55579\",\n    \"description\": \"a motor bike racer leans to the side as he comes to a turn then he straightens up and continues racing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn4nr9hX3C1sm7eoto1_500\",\n    \"question\": \"what is in the bucket of water,\",\n    \"answer\": \"sad ? dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14586\",\n    \"key\": \"41251\",\n    \"description\": \"a dog is in a bucket of water,\"\n  },\n  {\n    \"video_name\": \"tumblr_neqagz6lei1tdjuqvo1_400\",\n    \"question\": \"what is the hand touching?\",\n    \"answer\": \"shell\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39180\",\n    \"key\": \"15374\",\n    \"description\": \"a hand is touching a wiggling turtle 's shell.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv2wwA6vd1tatohao1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15361\",\n    \"key\": \"41874\",\n    \"description\": \"white cat makes black cat fall down ladder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrg3hgtNO11uayoojo1_250\",\n    \"question\": \"what is the man wearing and smiling out of a window?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38646\",\n    \"key\": \"19985\",\n    \"description\": \"a man is wearing sunglasses and smiling out of a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmqnudPrQ1rdp3hpo1_500\",\n    \"question\": \"what is the girl wearing?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5661\",\n    \"key\": \"49460\",\n    \"description\": \"a girl is wearing funny sunglasses as they swing with her movement.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1ean3ue01sg4418o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28756\",\n    \"key\": \"5756\",\n    \"description\": \"a man with a butterfly tattoo and a man in a black shirt are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfr6feQ1ii1smz8r1o1_400\",\n    \"question\": \"where is the young boy.\",\n    \"answer\": \"? bathroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48222\",\n    \"key\": \"54085\",\n    \"description\": \"the young boy is in the bathroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2h0evKgf1qbbmg6o1_500\",\n    \"question\": \"how many guys are downloading of the car in a street?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32793\",\n    \"key\": \"96517\",\n    \"description\": \"two guys are downloading of a car in a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0v11LduH1tpazm0o1_500\",\n    \"question\": \"what is the skater doing a small board flip and wearing?\",\n    \"answer\": \"socks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18773\",\n    \"key\": \"54277\",\n    \"description\": \"a skater is doing a small board flip and wearing tube socks.\"\n  },\n  {\n    \"video_name\": \"tumblr_new6rapUbt1tqrf5uo2_400\",\n    \"question\": \"how many men are speaking to each other near a body of water?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32234\",\n    \"key\": \"66256\",\n    \"description\": \"two men are speaking to each other near a body of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkaonzuJHF1t90xflo1_500\",\n    \"question\": \"what is the girl looking over her shoulder and dropping down?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30197\",\n    \"key\": \"89868\",\n    \"description\": \"a girl is looking over her shoulder and dropping her shirt down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nm5g67lpIs1r2mlm8o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18530\",\n    \"key\": \"95960\",\n    \"description\": \"a woman is wearing a black shirt and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcq3zetc31r2v01io1_400\",\n    \"question\": \"where is the blonde girl riding.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16063\",\n    \"key\": \"15835\",\n    \"description\": \"a blonde girl is riding in a car without a roof.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4c6yjbyt1sht3fmo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44466\",\n    \"key\": \"8433\",\n    \"description\": \"a man wearing a white suit is making a heart on a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1ldtCFnm1rcnyh1o1_540\",\n    \"question\": \"how many girls dance next to each other in circles?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38748\",\n    \"key\": \"46123\",\n    \"description\": \"two girls dance next to each other in circles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqpn28ZzN1t55o0io1_400\",\n    \"question\": \"what is the man wearing and talking with animation?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15115\",\n    \"key\": \"19792\",\n    \"description\": \"a man is wearing headphones and talking with animation.\"\n  },\n  {\n    \"video_name\": \"tumblr_nawid68HZW1tksh3ko1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48031\",\n    \"key\": \"2472\",\n    \"description\": \"a guy in a black shirt does a flip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6u9d3Ja51tkddqvo1_400\",\n    \"question\": \"where did girl perform various difficult balancing exercises.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9131\",\n    \"key\": \"51050\",\n    \"description\": \"girl performed various difficult balancing exercises in the gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkk6ke2WBC1tp44uio1_500\",\n    \"question\": \"where is the dancer dancing.\",\n    \"answer\": \"? alley\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24254\",\n    \"key\": \"72711\",\n    \"description\": \"a dancer is dancing in a dark alley.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2x1kO12G1std30eo1_500\",\n    \"question\": \"how many young males are scrunching their faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36667\",\n    \"key\": \"48576\",\n    \"description\": \"two young males are scrunching their faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk1dswgMLu1tp7zxjo1_250\",\n    \"question\": \"what is the man in a scarf taking off?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16785\",\n    \"key\": \"13652\",\n    \"description\": \"a man in a scarf is taking off his jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nau25zCJpy1tee2zqo1_500\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48315\",\n    \"key\": \"94641\",\n    \"description\": \"two men in black run their hands down the front of a pop star who has just lifted his black vest up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqiv4WRnr1s1pq0jo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9089\",\n    \"key\": \"101300\",\n    \"description\": \"a man and woman dressed in all black are walking three dogs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndou4ocoom1qkh9mno1_500\",\n    \"question\": \"how many men are all laughing together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA873\",\n    \"key\": \"89736\",\n    \"description\": \"the three men are all laughing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng39jqAGro1tj86sdo1_400\",\n    \"question\": \"where are tow man performing a dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26585\",\n    \"key\": \"64069\",\n    \"description\": \"tow man are performing a dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vecizBZQ1sla45lo1_400\",\n    \"question\": \"what is sliding sideways while handling the curve?\",\n    \"answer\": \"automobile\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20550\",\n    \"key\": \"76383\",\n    \"description\": \"the black automobile is sliding sideways while handling a curve.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh97cpE0ME1u4v3ypo1_400\",\n    \"question\": \"what used its paw to hit a bowl of beans?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33314\",\n    \"key\": \"7646\",\n    \"description\": \"a cat used its paw to hit a bowl of beans.\"\n  },\n  {\n    \"video_name\": \"tumblr_npij4myP5M1u88jnvo1_250\",\n    \"question\": \"what are three women and a man twirl around behind them?\",\n    \"answer\": \"balloons\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25667\",\n    \"key\": \"26629\",\n    \"description\": \"three women and a man twirl around behind them are pink balloons.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ycdkW91y1tzf7qto1_400\",\n    \"question\": \"what is the woman riding to a car?\",\n    \"answer\": \"parallel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27396\",\n    \"key\": \"70554\",\n    \"description\": \"a woman is riding a horse parallel to a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nem0ssXplb1sglxc3o1_400\",\n    \"question\": \"what can the guy waves around and then takes a drink from it?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32583\",\n    \"key\": \"35920\",\n    \"description\": \"a guy waves a drink can around and then takes a drink from it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9c03vG9GB1tyeuq0o1_250\",\n    \"question\": \"what are playing in front of their owner?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7849\",\n    \"key\": \"27241\",\n    \"description\": \"three cats are playing in front of their owner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelekc7qgX1rtcpyfo1_250\",\n    \"question\": \"where are the dog and cat nuzzling.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22969\",\n    \"key\": \"23195\",\n    \"description\": \"a dog and cat are nuzzling in a pet bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqa0w4T6e1u7c3syo1_250\",\n    \"question\": \"how many shirtless men are speaking flirtatiously with one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26330\",\n    \"key\": \"90930\",\n    \"description\": \"two shirtless men are speaking flirtatiously with one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngi0qiLFyd1qfel0so1_400\",\n    \"question\": \"how many men with cute jewelry are standing still?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2059\",\n    \"key\": \"87032\",\n    \"description\": \"two men with cute jewelry are standing still.\"\n  },\n  {\n    \"video_name\": \"tumblr_najg0y3ZQX1tatohao1_250\",\n    \"question\": \"what hit the lady that was dancing toward him?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48699\",\n    \"key\": \"10583\",\n    \"description\": \"the goat hit the lady that was dancing toward him.\"\n  },\n  {\n    \"video_name\": \"tumblr_na97yjNHnG1qc6vygo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19480\",\n    \"key\": \"70910\",\n    \"description\": \"a man dressed in black is sitting in a chair with a tall back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr583sbl9h1uasmbpo1_250\",\n    \"question\": \"how many men are holding flashlights and talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23388\",\n    \"key\": \"49822\",\n    \"description\": \"two men are holding flashlights and talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrho0kbKHM1uzqrlco1_400\",\n    \"question\": \"what does the bunny throw into a mini basketball hoop?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21259\",\n    \"key\": \"41679\",\n    \"description\": \"a bunny throws a small orange ball into a mini basketball hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne8jbgE1dr1u29dzvo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44498\",\n    \"key\": \"22809\",\n    \"description\": \"a girl in a black dress and gloves is playing drums and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrbv8bUdf81uaia6wo1_500\",\n    \"question\": \"how many boys are singing and looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3346\",\n    \"key\": \"71376\",\n    \"description\": \"two boys are singing and looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney1kxoqjw1ssuua8o1_250\",\n    \"question\": \"what is the man playing on top of a dining table?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18665\",\n    \"key\": \"23685\",\n    \"description\": \"a man is playing a guitar on top of a dining table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezh23Liet1tz6sv9o1_1280\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51973\",\n    \"key\": \"91907\",\n    \"description\": \"a girl wearing a black jacket is standing inside by a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc83vxbtD81rmcnl8o1_500\",\n    \"question\": \"what is the young man with a microphone taking?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43198\",\n    \"key\": \"40301\",\n    \"description\": \"a young man with a microphone is taking a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9wspZqGo1tkc9f9o1_250\",\n    \"question\": \"what is the man pushing on his arm device?\",\n    \"answer\": \"buttons\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4047\",\n    \"key\": \"16882\",\n    \"description\": \"a man is pushing buttons on his arm device.\"\n  },\n  {\n    \"video_name\": \"tumblr_na02ttEsZr1rzuj65o1_250\",\n    \"question\": \"how many women are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34917\",\n    \"key\": \"18886\",\n    \"description\": \"two women are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nds0nftICq1tqs077o1_500\",\n    \"question\": \"what moved under the cloudy sky?\",\n    \"answer\": \"skyscraper\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20387\",\n    \"key\": \"86723\",\n    \"description\": \"a city skyscraper moved under a cloudy sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ensmVNvD1ttu918o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29749\",\n    \"key\": \"100105\",\n    \"description\": \"a man in a black leans back in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wnb04QPP1t1tf12o1_400\",\n    \"question\": \"how many guy kicks another guy playfully in his rear end?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37679\",\n    \"key\": \"21562\",\n    \"description\": \"one guy kicks another guy playfully in his rear end.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney0nttuCQ1qzeat1o1_400\",\n    \"question\": \"how many hockey player collided into one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50040\",\n    \"key\": \"79935\",\n    \"description\": \"the two hockey player collided into one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbzz3bhaZq1s71nvbo1_500\",\n    \"question\": \"what is the color of the pole?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33715\",\n    \"key\": \"91879\",\n    \"description\": \"a group of monkeys are all touching a long black pole.\"\n  },\n  {\n    \"video_name\": \"tumblr_nccwnhLJjY1qlihd0o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7971\",\n    \"key\": \"20591\",\n    \"description\": \"a young man wearing black pants and jacket with a white shirt is dancing around as he removes his jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9871uRZ6U1sg67zio1_250\",\n    \"question\": \"how many young boys are moving past each other in front of a wall?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9663\",\n    \"key\": \"25799\",\n    \"description\": \"two young boys are moving past each other in front of a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyc6dwsa21qalhmdo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1057\",\n    \"key\": \"83472\",\n    \"description\": \"a guy with blonde hair dressed in black is looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2dq7GgNi1r967i1o1_400\",\n    \"question\": \"what is the man walking and smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52352\",\n    \"key\": \"63199\",\n    \"description\": \"a man is walking and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdbfb4nT11tx8mn0o1_400\",\n    \"question\": \"what spins off the track during a race?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21579\",\n    \"key\": \"100983\",\n    \"description\": \"a racing car spins off the track during a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlszz2oCN1u6z1d8o1_400\",\n    \"question\": \"how many men are standing close to each other and smiling?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA53071\",\n    \"key\": \"77085\",\n    \"description\": \"three men are standing close to each other and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_new1xjf0SM1se75noo1_500\",\n    \"question\": \"what is an animal sitting on a towel and eating?\",\n    \"answer\": \"orange\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50557\",\n    \"key\": \"22617\",\n    \"description\": \"an animal is sitting on a towel and eating an orange.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtqa26yvr1tjhld9o1_400\",\n    \"question\": \"what is the dog grooming lying on the carpet?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25319\",\n    \"key\": \"19224\",\n    \"description\": \"a dog is grooming a kitten lying on the carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_me6kztASh41rlgitoo1_500\",\n    \"question\": \"what hangs by his claws from a blanket?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31877\",\n    \"key\": \"62758\",\n    \"description\": \"the cat hangs by his claws from a blanket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf2pkEfCK1ssgyoro1_400\",\n    \"question\": \"what is the goat eating from a spoon?\",\n    \"answer\": \"butter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37092\",\n    \"key\": \"70176\",\n    \"description\": \"a goat is eating peanut butter from a spoon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nki72xibIX1tatohao1_250\",\n    \"question\": \"what is the cat playing with a dog and is surprised?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48292\",\n    \"key\": \"3605\",\n    \"description\": \"a cat is playing with a dog and dog is surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz194PjME1rjh61io1_250\",\n    \"question\": \"what is the woman holding?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27447\",\n    \"key\": \"801\",\n    \"description\": \"a woman is holding a white kitten.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq4itivTFk1uyq33oo1_250\",\n    \"question\": \"what is the woman sitting down and eating?\",\n    \"answer\": \"pizza\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44432\",\n    \"key\": \"15108\",\n    \"description\": \"a woman is sitting down and eating pizza.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhsbn1IuVN1slqc17o1_250\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47814\",\n    \"key\": \"20702\",\n    \"description\": \"a black guy is dancing in front of a white wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mxo7lBDU1ttpy61o1_250\",\n    \"question\": \"how many men sing at the concert on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16222\",\n    \"key\": \"10604\",\n    \"description\": \"two men sing at a concert on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmf37ggVI1sjh0axo1_250\",\n    \"question\": \"how many people are fighting over something under water?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30456\",\n    \"key\": \"15412\",\n    \"description\": \"two people are fighting over something under water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbyfhxz6N1t3vunfo1_1280\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA120\",\n    \"key\": \"91150\",\n    \"description\": \"a man in a red hat is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr78fdPO5w1slwrsuo1_400\",\n    \"question\": \"how many cats is this image of playing with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41311\",\n    \"key\": \"43420\",\n    \"description\": \"this image is of two cats playing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0ykvjZDz1s74pxto1_400\",\n    \"question\": \"what are signing off after the show?\",\n    \"answer\": \"stars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50879\",\n    \"key\": \"74274\",\n    \"description\": \"two pop stars are signing off after the show.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat7piX07F1slj978o1_250\",\n    \"question\": \"what is attempting to cross the small brook?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14984\",\n    \"key\": \"16348\",\n    \"description\": \"a cat is attempting to cross a small brook.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhic56wdN51swdjefo1_400\",\n    \"question\": \"what is the man holding and speaking to the crowd?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4180\",\n    \"key\": \"61203\",\n    \"description\": \"the man is holding his hat and speaking to the crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzvydtNio1rh66jmo2_500\",\n    \"question\": \"what is being burnt by fire?\",\n    \"answer\": \"classroom\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6914\",\n    \"key\": \"54822\",\n    \"description\": \"a classroom is being burnt by fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcmn9qI3r1uajpcto1_400\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18398\",\n    \"key\": \"81670\",\n    \"description\": \"a girl with blue eyes is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrpl3F8ed1ric2s6o1_500\",\n    \"question\": \"where is the man without a shirt walking.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25157\",\n    \"key\": \"34329\",\n    \"description\": \"a man without a shirt is walking in the gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimutq2SO61tjd11mo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9342\",\n    \"key\": \"75088\",\n    \"description\": \"someone in a purple ski suit is snowboarding down a snowy slope with purple trees in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn2r6dEP9b1us2olno1_500\",\n    \"question\": \"how many men are wrestling in the ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46484\",\n    \"key\": \"79403\",\n    \"description\": \"the two men are wrestling in a ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vib5CRbG1s9iqrfo1_1280\",\n    \"question\": \"what is the male model wearing glasses is walking?\",\n    \"answer\": \"catwalk\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11503\",\n    \"key\": \"66832\",\n    \"description\": \"a male model wearing glasses is walking the catwalk.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qfwdVfrP1s47mwso1_250\",\n    \"question\": \"what is the color of the scissors?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14918\",\n    \"key\": \"19276\",\n    \"description\": \"A man pulls out a pair of red scissors from behind a man 's head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyr8rSi4d1to0jsbo1_250\",\n    \"question\": \"what is the color of the balloon?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21555\",\n    \"key\": \"19082\",\n    \"description\": \"a man tied a red balloon into a balloon animal.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqv0fIvLp1qd80wyo1_400\",\n    \"question\": \"what is the color of the marker?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA375\",\n    \"key\": \"45758\",\n    \"description\": \"a man is signing a picture with a white marker.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbk9h1Vx7T1tx8mn0o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23933\",\n    \"key\": \"77249\",\n    \"description\": \"a very cute white car is in a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmycDsSK1tidcnvo1_400\",\n    \"question\": \"what is trotting out of the gate?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2593\",\n    \"key\": \"63831\",\n    \"description\": \"a horse is trotting out of the gate.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uwiaBHQw1qhd5lfo1_400\",\n    \"question\": \"what is jumping and hits the pole?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13972\",\n    \"key\": \"25666\",\n    \"description\": \"a cat is jumping and hits a pole.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcczs10pL1r4bi5do1_250\",\n    \"question\": \"what is the woman dancing around and waving?\",\n    \"answer\": \"scarf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25808\",\n    \"key\": \"51381\",\n    \"description\": \"a woman is dancing around and waving a red scarf.\"\n  },\n  {\n    \"video_name\": \"tumblr_na60jik2x61swxhaso1_400\",\n    \"question\": \"what is massaging the back of an orange and white cat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17808\",\n    \"key\": \"28844\",\n    \"description\": \"a black and white cat is massaging the back of an orange and white cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncx9u3ivlb1tdmffyo1_400\",\n    \"question\": \"what lets the smaller dog out of it 's cage?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9459\",\n    \"key\": \"101281\",\n    \"description\": \"a big dog lets a smaller dog out of it 's cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjp8rMCHM1un86uao1_250\",\n    \"question\": \"what broke free from a mans hands?\",\n    \"answer\": \"shark\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52552\",\n    \"key\": \"26568\",\n    \"description\": \"a shark broke free from a mans hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni11qwnFts1t0w22yo1_250\",\n    \"question\": \"what is the man walking along and taking off?\",\n    \"answer\": \"scarf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1715\",\n    \"key\": \"13191\",\n    \"description\": \"the man is walking along and taking off his scarf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2uu3uHFS1ss66xxo1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20142\",\n    \"key\": \"12981\",\n    \"description\": \"a boy in a black coat is whispering to his friend.\"\n  },\n  {\n    \"video_name\": \"tumblr_myoina0N7c1rknndzo1_500\",\n    \"question\": \"what is the man in a mask removing from his face?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40521\",\n    \"key\": \"2597\",\n    \"description\": \"a man in a mask is removing his mask from his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncy4plCMec1tm5nq5o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6110\",\n    \"key\": \"6674\",\n    \"description\": \"a girl with long red hair is walking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_namd90alfg1qg9j7eo1_250\",\n    \"question\": \"what is sitting in the snow next to a wall?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16029\",\n    \"key\": \"10806\",\n    \"description\": \"a panda is sitting in the snow next to a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrb4qwDaQ11tx8mn0o1_400\",\n    \"question\": \"what does the person fall off,\",\n    \"answer\": \"the bike crashes ? bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3559\",\n    \"key\": \"55919\",\n    \"description\": \"a person falls off the bike,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrhl6yWq81qi39coo1_500\",\n    \"question\": \"how many guys are looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51242\",\n    \"key\": \"96488\",\n    \"description\": \"two guys are looking at each other and one is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3xi1KZmV1uzvpcio1_400\",\n    \"question\": \"what do combat fly in formation next to each other?\",\n    \"answer\": \"airplanes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1898\",\n    \"key\": \"63904\",\n    \"description\": \"four combat planes fly in formation next to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sjupl61n1ss0n50o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6916\",\n    \"key\": \"84015\",\n    \"description\": \"a person wearing a white tee shirt with big,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfowj6p4zs1u25ovvo1_400\",\n    \"question\": \"what drives along the road lined with trees?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31125\",\n    \"key\": \"63438\",\n    \"description\": \"a blue car drives along a road lined with trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfflefXvpx1u25ovvo1_400\",\n    \"question\": \"what travels on the desolate road in the daylight?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14849\",\n    \"key\": \"63605\",\n    \"description\": \"a car travels on a desolate road in the daylight.\"\n  },\n  {\n    \"video_name\": \"tumblr_naqls278UC1t6ksnpo1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45394\",\n    \"key\": \"93552\",\n    \"description\": \"a man in a white top is walking up to another man in a black top to then talk in his ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflu1hiOCs1tj2kheo1_400\",\n    \"question\": \"how many males are dancing around in costumes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28034\",\n    \"key\": \"66030\",\n    \"description\": \"two males are dancing around in costumes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrczpkDZLN1r7t178o1_500\",\n    \"question\": \"what is sleeping and twitching its ears?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47093\",\n    \"key\": \"52892\",\n    \"description\": \"a dog is sleeping and twitching its ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9okijMTqj1s8thapo1_r1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17237\",\n    \"key\": \"5420\",\n    \"description\": \"a man wearing black clothing and black hair is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrac5ifOWX1utou2jo1_400\",\n    \"question\": \"where was the bird running around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17682\",\n    \"key\": \"62192\",\n    \"description\": \"a bird was running around in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nri0fojp0G1tx8mn0o1_400\",\n    \"question\": \"what are driving and one car starts to burn?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48863\",\n    \"key\": \"55938\",\n    \"description\": \"two cars are driving and one car starts to burn.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1c34xCZI1tfp9nto1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45934\",\n    \"key\": \"66747\",\n    \"description\": \"a man in a blue shirt pours coffee and turns around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebqt1mhTY1rdu9xmo1_400\",\n    \"question\": \"how many men are illuminated by flashing lights and dance while hold microphones?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25830\",\n    \"key\": \"1256\",\n    \"description\": \"four men are illuminated by flashing lights and dance while hold microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklld32jOh1qg5lg0o1_250\",\n    \"question\": \"what are two men slowly opening and peering in?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45612\",\n    \"key\": \"53712\",\n    \"description\": \"two men are slowly opening a door and peering in.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne51d25SaP1qaodtzo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14903\",\n    \"key\": \"96301\",\n    \"description\": \"a man in a blue jacket is talking and scratching his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3cvnawGP1tkgy96o1_400\",\n    \"question\": \"how many women are holding something in their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49789\",\n    \"key\": \"38899\",\n    \"description\": \"two women are holding something in their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncviyaoANv1tfnl8io1_500\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1785\",\n    \"key\": \"94929\",\n    \"description\": \"a guy in a white backwards ball cap is clapping and walking while smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqqe7tTVgT1ssgyoro1_250\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13416\",\n    \"key\": \"10404\",\n    \"description\": \"a brown dog is sleeping near the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_neew4qV5fB1u2fp18o1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3917\",\n    \"key\": \"48437\",\n    \"description\": \"the man wearing a black suit is having a discussion.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngbwfkoLMR1tdmffyo1_250\",\n    \"question\": \"how many men stand,\",\n    \"answer\": \"stare , and look shocked ? four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2688\",\n    \"key\": \"39619\",\n    \"description\": \"four men stand,\"\n  },\n  {\n    \"video_name\": \"tumblr_nafghuNYvk1tp3ejwo1_400\",\n    \"question\": \"how many teams are playing football when one player scores a goal?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31857\",\n    \"key\": \"58652\",\n    \"description\": \"two teams are playing football when one player scores a goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nheuo83aCM1t0w9oqo1_400\",\n    \"question\": \"how many men are swaying together in the red room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8445\",\n    \"key\": \"74555\",\n    \"description\": \"two men are swaying together in a red room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94c9kD6eu1s0wfo1o1_250\",\n    \"question\": \"what is the man tuning and adjusting his glasses?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15389\",\n    \"key\": \"40368\",\n    \"description\": \"a man is tuning his guitar and adjusting his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkzq41Vhv1u49rjuo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41973\",\n    \"key\": \"58354\",\n    \"description\": \"a woman with long brown hair puts her head on a man 's shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjpac3v6Q1qboh47o1_500\",\n    \"question\": \"what are out of the five men three wearing and two are wearing baseball caps?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5951\",\n    \"key\": \"59306\",\n    \"description\": \"out of the five men three are wearing glasses and two are wearing baseball caps.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqpkgekB2L1t673d8o1_250\",\n    \"question\": \"what is the person surprising by putting a flower in its head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48523\",\n    \"key\": \"18793\",\n    \"description\": \"a person is surprising a cat by putting a flower in its head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxp8joSc71u0xa5ao1_400\",\n    \"question\": \"how many people are holding their faces and making faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44790\",\n    \"key\": \"75525\",\n    \"description\": \"two people are holding their faces and making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzioHl7F1u25ovvo1_400\",\n    \"question\": \"what is driving down the road outside?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31890\",\n    \"key\": \"63575\",\n    \"description\": \"a car is driving down the road outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax3ynhBwE1s25f60o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4310\",\n    \"key\": \"86152\",\n    \"description\": \"a girl is playing with her red hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_npkxhturUR1uxcyego1_400\",\n    \"question\": \"how many men is wearing suits are singing against a white wall?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10084\",\n    \"key\": \"73594\",\n    \"description\": \"two men wearing suits are singing against a white wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhh2bh2wBY1ra3tfmo1_500\",\n    \"question\": \"what is the man hanging off?\",\n    \"answer\": \"bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47214\",\n    \"key\": \"89335\",\n    \"description\": \"a man is hanging off a punching bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmnppGF0g1rer2fjo1_250\",\n    \"question\": \"how many young men are looking down at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24777\",\n    \"key\": \"49663\",\n    \"description\": \"two young men are looking down at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav6oaPHdu1tkrm74o1_500\",\n    \"question\": \"how many people are about to enter the telephone box?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19444\",\n    \"key\": \"68826\",\n    \"description\": \"three people are about to enter a telephone box.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqsseRkvH1tr5tuwo1_400\",\n    \"question\": \"what drives around the corner and creates dust?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25873\",\n    \"key\": \"50815\",\n    \"description\": \"a race car drives around a corner and creates dust.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelugrsfHA1qcaryto1_400\",\n    \"question\": \"what is the girl with the blue shirt riding around the pen?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36374\",\n    \"key\": \"35224\",\n    \"description\": \"the girl with the blue shirt is riding the horse around the pen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6fty53jA1rol592o1_500\",\n    \"question\": \"what is the young woman blowing?\",\n    \"answer\": \"candle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48426\",\n    \"key\": \"89046\",\n    \"description\": \"a young woman is blowing a candle.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvix3hzTK1u3wykjo1_250\",\n    \"question\": \"how many blonde women dressed up are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24706\",\n    \"key\": \"13812\",\n    \"description\": \"two blonde women dressed up are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kkadLYfn1sva5i8o1_400\",\n    \"question\": \"what smile and make some magic?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34405\",\n    \"key\": \"42914\",\n    \"description\": \"a blue cat smile and make some magic.\"\n  },\n  {\n    \"video_name\": \"tumblr_nctwxv3Cf61sdoqnro1_500\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8554\",\n    \"key\": \"63764\",\n    \"description\": \"a man with a red uniform is kicking his ball into a narrow pipe.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9rffF91i1tul4jlo1_250\",\n    \"question\": \"what is the man holding and speaking to someone?\",\n    \"answer\": \"towel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7126\",\n    \"key\": \"9054\",\n    \"description\": \"a man is holding a towel and speaking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1o37byzo1tkso41o1_400\",\n    \"question\": \"what is crashing over concrete many barriers?\",\n    \"answer\": \"bus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19105\",\n    \"key\": \"43357\",\n    \"description\": \"a bus is crashing over concrete many barriers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9q316CkR1qckrt4o1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7050\",\n    \"key\": \"58028\",\n    \"description\": \"a white girl and a white man are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp36t1GRR1tod7hho1_400\",\n    \"question\": \"what is the man removing to somebody?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12821\",\n    \"key\": \"32577\",\n    \"description\": \"a man is removing his shirt to somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrandzeiC71qlcjs4o1_400\",\n    \"question\": \"how many men are playing basketball?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22501\",\n    \"key\": \"47917\",\n    \"description\": \"two men are playing basketball and one puts it in the basket.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90m5f6owd1rp12fxo1_500\",\n    \"question\": \"what are racing around the curb?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7988\",\n    \"key\": \"102058\",\n    \"description\": \"formula one cars are racing around a curb.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndjmseALcv1sbow0fo1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49918\",\n    \"key\": \"90410\",\n    \"description\": \"a girl in a black coat walks away from her hairdresser.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdib2bbIb1s4zvpgo1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35572\",\n    \"key\": \"76388\",\n    \"description\": \"a black cat sits on his perch and plays with a ball attached to a string below him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxdgzZ1W81t9h1yfo1_400\",\n    \"question\": \"what is the man in the black shirt holding?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49188\",\n    \"key\": \"63730\",\n    \"description\": \"the man in the black shirt is holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6marczEE1rvy5gto1_500\",\n    \"question\": \"what is the man playing,\",\n    \"answer\": \"whilst another one is sitting down ? guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20895\",\n    \"key\": \"77810\",\n    \"description\": \"a man is playing a red guitar,\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3mezvrcH1qit42xo1_250\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17428\",\n    \"key\": \"5975\",\n    \"description\": \"a man with a black vest on looked shocked.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd35q1BzTi1rqfhi2o1_250\",\n    \"question\": \"what tries to stay awake while in a sweater?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46933\",\n    \"key\": \"3277\",\n    \"description\": \"a tired-looking puppy tries to stay awake while in a sweater.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay1v5Pvpi1qg0cppo1_250\",\n    \"question\": \"what is being caught in the plant trap?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33484\",\n    \"key\": \"19061\",\n    \"description\": \"a fish is being caught in a plant trap.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8u1hK4Ac1sh75jso1_250\",\n    \"question\": \"how many other man is the handsome young man embracing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20896\",\n    \"key\": \"1929\",\n    \"description\": \"a handsome young man is embracing a two other man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqemmiLRm21u3u66ko1_400\",\n    \"question\": \"what are arguing on the ring?\",\n    \"answer\": \"boxers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52512\",\n    \"key\": \"64429\",\n    \"description\": \"two boxers are arguing on the ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnhys0agY1tcltsqo1_400\",\n    \"question\": \"what does the baboon clean?\",\n    \"answer\": \"baboon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44355\",\n    \"key\": \"66216\",\n    \"description\": \"a baboon cleans another baboon while others walk around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfaofejxYg1spote4o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37575\",\n    \"key\": \"88737\",\n    \"description\": \"a young man with black hair is taking a deep breath.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7cu8o5Fs1tmqy1bo1_500\",\n    \"question\": \"what is the guy hopping and bobbing playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22410\",\n    \"key\": \"60452\",\n    \"description\": \"a guy is hopping and bobbing his head while playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay097eg3Y1s5y049o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1298\",\n    \"key\": \"47813\",\n    \"description\": \"a girl with long brown hair is wearing a black and white dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzhkq39Nz1twdzc1o1_250\",\n    \"question\": \"how many cat jumps out from the bunch and opens a door?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43669\",\n    \"key\": \"8947\",\n    \"description\": \"one cat jumps out from a bunch and opens a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7rgpqFif1tjd11mo1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3722\",\n    \"key\": \"72389\",\n    \"description\": \"a man wearing white clothing and a helmet is snowboarding.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9guiyTTbi1tfen5bo1_250\",\n    \"question\": \"what is the man flipping and chopping it in half as it lands in a bowl?\",\n    \"answer\": \"egg\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31494\",\n    \"key\": \"22972\",\n    \"description\": \"a man is flipping a raw egg and chopping it in half as it lands in a bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_npe2bz8i0w1rhprf5o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51113\",\n    \"key\": \"68209\",\n    \"description\": \"a guy in a white shirt sings while others dance around him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0wn2TFG01tk2ngvo1_400\",\n    \"question\": \"what is trying to get the plate through a see through table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12800\",\n    \"key\": \"1209\",\n    \"description\": \"a cat is trying to get a plate through a see through table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnvy1kVUHL1utyjq6o1_400\",\n    \"question\": \"how many men are talking together in front of a waterfall?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27915\",\n    \"key\": \"32097\",\n    \"description\": \"two men are talking together in front of a waterfall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3tfgU9Ir1srvjxao1_400\",\n    \"question\": \"what does the girl lower?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25050\",\n    \"key\": \"27347\",\n    \"description\": \"a girl lowers her window while she sits in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93u6oK6hi1rtr5f6o1_500\",\n    \"question\": \"what is the man fixing in front a huge crowd?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40404\",\n    \"key\": \"81981\",\n    \"description\": \"a man is fixing his shirt in front a huge crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_njx5xaqW1f1rp69xto1_400\",\n    \"question\": \"what is the color of the glass?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20969\",\n    \"key\": \"28327\",\n    \"description\": \"a young girl with black glass is drinking something and raises her hand with a pose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9b5ripty1tgux4fo1_250\",\n    \"question\": \"what is the woman wearing a coat is running passed?\",\n    \"answer\": \"fence\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4288\",\n    \"key\": \"90983\",\n    \"description\": \"a woman wearing a coat is running passed a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rex42OdN1rtdvdvo1_250\",\n    \"question\": \"what does the man grab and holds?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32198\",\n    \"key\": \"69293\",\n    \"description\": \"a man grabs and holds a fish he caught.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqsxagg3Xz1u78tt8o1_500\",\n    \"question\": \"what is the color of the glove?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37788\",\n    \"key\": \"84183\",\n    \"description\": \"a girl wearing a green dress puts a white glove on her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl72mqPLe1rvltxro1_500\",\n    \"question\": \"what does the guy play?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3389\",\n    \"key\": \"23929\",\n    \"description\": \"a guy plays guitar while someone else dances around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3fkqcRYs1tcxh18o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51629\",\n    \"key\": \"46350\",\n    \"description\": \"a man with brown hair looks to his right.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhc93dy1rj1u4t4tso1_500\",\n    \"question\": \"what is the boy with dark hair adjusting?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48319\",\n    \"key\": \"90731\",\n    \"description\": \"a boy with dark hair is adjusting his jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr64kgXD0E1sntpr0o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21363\",\n    \"key\": \"33110\",\n    \"description\": \"a woman with brown hair is dancing and gesturing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdro9plFr1tfri6co1_400\",\n    \"question\": \"how many young men are laughing and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47291\",\n    \"key\": \"19670\",\n    \"description\": \"two young men are laughing and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin30zLbM91sz068fo1_400\",\n    \"question\": \"what is the woman kissing?\",\n    \"answer\": \"lion\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8459\",\n    \"key\": \"53152\",\n    \"description\": \"a woman is kissing a large sea lion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk4c2BSRg1sq7kg0o1_400\",\n    \"question\": \"what is the woman wearing and looking down with her eyes?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10787\",\n    \"key\": \"71707\",\n    \"description\": \"a woman is wearing a hat and looking down with her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3dcktrA31ticciso1_400\",\n    \"question\": \"where is the topless man performing tricks.\",\n    \"answer\": \"? hoop\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA2\",\n    \"key\": \"58502\",\n    \"description\": \"a topless man is performing tricks in a large hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk132aAxXT1tg9gzmo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30816\",\n    \"key\": \"90841\",\n    \"description\": \"the girl with the long black hair is showing off her new phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpcf5Nu4B1slj978o1_500\",\n    \"question\": \"what is the man pushing with a machine and he falls on the edge with the cargo?\",\n    \"answer\": \"cargo\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13731\",\n    \"key\": \"56530\",\n    \"description\": \"a man is pushing a cargo with a machine and he falls on the edge with the cargo.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdmjslBH91t2huujo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19932\",\n    \"key\": \"79448\",\n    \"description\": \"a white man with white shirt is eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_nait93JoFa1t1hwbqo1_250\",\n    \"question\": \"what plays the guitar on a stage?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30999\",\n    \"key\": \"7808\",\n    \"description\": \"a pop star plays a guitar on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnzb5N7By1t8vkd1o1_500\",\n    \"question\": \"what do samurais raise up in unison together?\",\n    \"answer\": \"swords\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24848\",\n    \"key\": \"98954\",\n    \"description\": \"samurais raise their swords up in unison together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdvlzako31tx8mn0o1_400\",\n    \"question\": \"what burns rubber before going slightly off the track and onto the grass?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14468\",\n    \"key\": \"78335\",\n    \"description\": \"a racing car burns rubber before going slightly off the track and onto the grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivsff9LA71raooppo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20258\",\n    \"key\": \"15601\",\n    \"description\": \"a man is wearing an orange shirt and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazcze5vKT1thn2bho1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47962\",\n    \"key\": \"25705\",\n    \"description\": \"a red haired man is biting his thumb.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkg0rwoSOi1tkkgpso1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31028\",\n    \"key\": \"30371\",\n    \"description\": \"a girl wearing a black shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nodhmeDGTt1tadzeeo1_400\",\n    \"question\": \"what does the man start shaking it and his head?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38091\",\n    \"key\": \"65197\",\n    \"description\": \"a man a gun starts shaking it and his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbrd1GZox1s71nvbo1_500\",\n    \"question\": \"what is rolling around in the snow it 's dead?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16881\",\n    \"key\": \"59464\",\n    \"description\": \"a large bird is rolling around in the snow it 's dead.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncahrts1au1s71nvbo1_400\",\n    \"question\": \"what is the man putting on whilst being taken from a sports pitch on a stretcher?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49771\",\n    \"key\": \"57065\",\n    \"description\": \"a man is putting his sunglasses on whilst being taken from a sports pitch on a stretcher.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rqi06djV1rnn3cno1_250\",\n    \"question\": \"what grabbed touches his butt in a park?\",\n    \"answer\": \"grabs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10707\",\n    \"key\": \"23051\",\n    \"description\": \"a man grabs grabbed touches his butt in a park.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakdvwOdMw1qlxas3o1_400\",\n    \"question\": \"what is man with long hair dramatically playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33291\",\n    \"key\": \"56285\",\n    \"description\": \"man with long hair is dramatically playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_npuazcydPD1te94myo1_400\",\n    \"question\": \"what is licking the vacuum wand,\",\n    \"answer\": \"and then starts wracking it FRAMEQAeatedly ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52722\",\n    \"key\": \"4445\",\n    \"description\": \"a cat is licking a vacuum wand,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgn5rXBcf1tymzl2o1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26934\",\n    \"key\": \"65752\",\n    \"description\": \"a beautiful lady with a red sweater is making a sigh with her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jy2zofO01tiv2uao1_250\",\n    \"question\": \"how many men in sporting uniforms talk?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45747\",\n    \"key\": \"21610\",\n    \"description\": \"three men in sporting uniforms talk and two of them embrace.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92p88zgpM1tt7994o1_250\",\n    \"question\": \"what is the color of the fingernails?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32324\",\n    \"key\": \"5757\",\n    \"description\": \"the girl with the long dark hair and red fingernails is talking into the microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakn7iisRR1simlt8o1_250\",\n    \"question\": \"how many women are smiling next to the man who is pulling a face?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46855\",\n    \"key\": \"32504\",\n    \"description\": \"two women are smiling next to a man who is pulling a face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbab1nX5s1u2eoido1_500\",\n    \"question\": \"how many young men are sitting together and looking surprised?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47591\",\n    \"key\": \"95714\",\n    \"description\": \"two young men are sitting together and looking surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowuhcCWo71s3fuxko1_400\",\n    \"question\": \"what is running away from another horse?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51194\",\n    \"key\": \"71803\",\n    \"description\": \"a brown horse is running away from another horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nogenkTJ0O1uqjypdo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11948\",\n    \"key\": \"9973\",\n    \"description\": \"a man with shoulder length hair and a black top is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nds8crBvqP1tml03go1_400\",\n    \"question\": \"what raises its paw towards something?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13298\",\n    \"key\": \"53863\",\n    \"description\": \"a kitten raises its paw towards something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjhnhmF4l1tmxcjqo1_500\",\n    \"question\": \"what is the pregnant woman lifting up?\",\n    \"answer\": \"balloon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41481\",\n    \"key\": \"94127\",\n    \"description\": \"a pregnant woman is lifting up an over-sized balloon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk31md13E91un86uao1_400\",\n    \"question\": \"what is the man riding across a lake?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36261\",\n    \"key\": \"86595\",\n    \"description\": \"a man is riding a bike across a lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafqz1kpCp1snm1avo1_250\",\n    \"question\": \"how many woman wrestler is yelling while one is smiling at her?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10826\",\n    \"key\": \"38389\",\n    \"description\": \"one woman wrestler is yelling while one is smiling at her.\"\n  },\n  {\n    \"video_name\": \"tumblr_naiv7pBcv81s2l982o1_250\",\n    \"question\": \"what is the hand petting?\",\n    \"answer\": \"owl\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31207\",\n    \"key\": \"27670\",\n    \"description\": \"a hand is petting a baby owl.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvmat0M581rlil49o1_500\",\n    \"question\": \"what is the person putting onto a stick?\",\n    \"answer\": \"flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39232\",\n    \"key\": \"52041\",\n    \"description\": \"a person is putting flowers onto a stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1uqvcH4y1t1nzngo1_500\",\n    \"question\": \"how many men wear white play guitar on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17405\",\n    \"key\": \"70801\",\n    \"description\": \"two men wear white play guitar on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmov237Wm1sy82cio1_500\",\n    \"question\": \"what is the woman blowing a bubble and wearing?\",\n    \"answer\": \"vest\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14384\",\n    \"key\": \"87719\",\n    \"description\": \"a woman is blowing a bubble and wearing a black fur vest.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jn42ObPo1sn2bh3o1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46459\",\n    \"key\": \"72099\",\n    \"description\": \"a model in a red top is walking down a catwalk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrb40p1XhC1tkdcvro1_250\",\n    \"question\": \"what is the man wearing and singing and dancing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18272\",\n    \"key\": \"4299\",\n    \"description\": \"a man is wearing a plaid shirt and singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nap9fbp0pV1rg642go1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45083\",\n    \"key\": \"50610\",\n    \"description\": \"a woman wearing a white jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_nnn5nj7vw21s8rggqo1_250\",\n    \"question\": \"what sticks his tongue between two cushions?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11914\",\n    \"key\": \"2604\",\n    \"description\": \"a black dog sticks his tongue between two cushions.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0daap0PB1u8ogblo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40674\",\n    \"key\": \"97457\",\n    \"description\": \"a man wearing a white shirt and black jacket is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9oo3e1Cfi1rro1neo1_400\",\n    \"question\": \"where is the girl kissing her reflection.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA2192\",\n    \"key\": \"1120\",\n    \"description\": \"a girl is kissing her reflection in a bathroom mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrffifGPGh1rfolw9o1_400\",\n    \"question\": \"what is the man eating?\",\n    \"answer\": \"sandwich\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43558\",\n    \"key\": \"37528\",\n    \"description\": \"a man who is wearing glasses is eating a sandwich.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngnn2yLqSy1tcoweho1_500\",\n    \"question\": \"where is the woman smiling and laying.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40732\",\n    \"key\": \"54285\",\n    \"description\": \"a woman is smiling and laying in bed with a bandage on her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9ztnMJ2s1ti8b6yo1_500\",\n    \"question\": \"how many men maneuver themselves in front of a bulletin board around other people?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52964\",\n    \"key\": \"26328\",\n    \"description\": \"two men maneuver themselves in front of a bulletin board around other people.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jjd1vxrB1rhbco5o1_250\",\n    \"question\": \"how many men in white suits are singing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39396\",\n    \"key\": \"47233\",\n    \"description\": \"the three men in white suits are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8dsnm0vU1ruoae6o1_1280\",\n    \"question\": \"what is driving away very fast?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40757\",\n    \"key\": \"94851\",\n    \"description\": \"a sports car is driving away very fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkiotyWxSw1qbegvdo1_400\",\n    \"question\": \"what is talking dirty words on the show?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4969\",\n    \"key\": \"71541\",\n    \"description\": \"a well dressed woman star is talking dirty words on the show.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbaz4cGyXC1r324mgo1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20447\",\n    \"key\": \"89434\",\n    \"description\": \"a man wearing a black jacket and white t-shirt is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97tp3oS9b1ts3h88o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16313\",\n    \"key\": \"52423\",\n    \"description\": \"a man dressed in black threw a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncigafqVwf1tgsaito1_400\",\n    \"question\": \"what is beating his head against the wall?\",\n    \"answer\": \"puppet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37752\",\n    \"key\": \"42920\",\n    \"description\": \"a puppet is beating his head against the wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp31zmK7o1tlzda7o1_250\",\n    \"question\": \"where do the group of young men preform a dance routine.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51900\",\n    \"key\": \"52570\",\n    \"description\": \"a group of young men preform a dance routine in a living room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkag9eNN351unbz69o1_500\",\n    \"question\": \"how many girls are holding hands ang laughing at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5578\",\n    \"key\": \"91050\",\n    \"description\": \"two girls are holding hands ang laughing at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtm7qpM2J1ttyq3ao1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16502\",\n    \"key\": \"14564\",\n    \"description\": \"a girl pulls down her glittering black hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nculypGc871u0x3uvo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47031\",\n    \"key\": \"69278\",\n    \"description\": \"a boy with red hair is sitting in a chair and playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndzclgUtfv1tbop90o1_250\",\n    \"question\": \"how many girls is this throwing buckets of water on each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45263\",\n    \"key\": \"5192\",\n    \"description\": \"this is two girls throwing buckets of water on each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqrag9xM6l1qi27q9o1_250\",\n    \"question\": \"what are two young men?\",\n    \"answer\": \"sheets\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13624\",\n    \"key\": \"40814\",\n    \"description\": \"two young men are folding bed sheets.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91l33EgZY1rpqn0wo1_500\",\n    \"question\": \"what is the color of the sedan?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29496\",\n    \"key\": \"73230\",\n    \"description\": \"a supped up gray sedan does a drift in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxkdtyDbl1sht3fmo1_250\",\n    \"question\": \"what is the dog entering?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30926\",\n    \"key\": \"36792\",\n    \"description\": \"a dog is entering the police car.\"\n  },\n  {\n    \"video_name\": \"tumblr_njob4hlJui1swixd9o1_500\",\n    \"question\": \"what does the man stand up out water?\",\n    \"answer\": \"spits\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44873\",\n    \"key\": \"89188\",\n    \"description\": \"a man stands up straight spits out water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6t8rIVdA1tjjnlno1_400\",\n    \"question\": \"what is playing in the pink ball?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA218\",\n    \"key\": \"54116\",\n    \"description\": \"a kitten is playing in the pink ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nddzrcdJsV1s4kr0bo1_400\",\n    \"question\": \"what is man singing on stage holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12822\",\n    \"key\": \"31674\",\n    \"description\": \"man singing on stage is holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbt3166F731tjpng4o1_500\",\n    \"question\": \"how many twins try to high five but miss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3889\",\n    \"key\": \"92690\",\n    \"description\": \"two twins try to high five but miss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitdtkGfuf1slj978o1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36880\",\n    \"key\": \"10079\",\n    \"description\": \"a man with short cropped hair and a purple t-shirt is looking amazed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndejq7e6p91tse7gxo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23115\",\n    \"key\": \"71128\",\n    \"description\": \"a man wears a white shirt and dances around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsrf7PNZs1qe2thio1_500\",\n    \"question\": \"what is jumping over the fence?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32593\",\n    \"key\": \"98734\",\n    \"description\": \"a horse is jumping over a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_natxvuXPzH1shtm22o1_500\",\n    \"question\": \"how many people in a car are holding each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46732\",\n    \"key\": \"76035\",\n    \"description\": \"two people in a car are holding each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_negf45USHl1u2j78co1_250\",\n    \"question\": \"what is the man holding and waving?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7743\",\n    \"key\": \"2107\",\n    \"description\": \"the man is holding a stuffed dog and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7nhn5zJf1sxvay0o1_500\",\n    \"question\": \"what is the man on a bed with many cats speaking and holding?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8804\",\n    \"key\": \"75132\",\n    \"description\": \"a man on a bed with many cats is speaking and holding a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvqkbvG2J1u3xy1to1_250\",\n    \"question\": \"what is the color of the dresses?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36966\",\n    \"key\": \"16912\",\n    \"description\": \"models wearing gray dresses walk down the runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_noag3k38241tzmcano1_250\",\n    \"question\": \"what is skateboarding on piece of wood?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5113\",\n    \"key\": \"27870\",\n    \"description\": \"a bird is skateboarding on piece of wood.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0kioRiHA1t8k5fuo1_250\",\n    \"question\": \"what is the woman with long dark hair,\",\n    \"answer\": \"wearing is walking and waving ? dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8139\",\n    \"key\": \"2125\",\n    \"description\": \"a woman with long dark hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhd5mxgLuD1u71lxzo1_500\",\n    \"question\": \"what is the man playing and his chips are being moved away?\",\n    \"answer\": \"poker\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29581\",\n    \"key\": \"98865\",\n    \"description\": \"a man is playing poker and his chips are being moved away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhp6y2cTpl1sni6coo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23961\",\n    \"key\": \"5097\",\n    \"description\": \"the woman in the white shirt is dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqw2fXCTZ1rlpvdxo1_250\",\n    \"question\": \"what is the man playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11008\",\n    \"key\": \"16218\",\n    \"description\": \"a man is playing a guitar whilst smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzxkpnkEc1t9qxjmo1_250\",\n    \"question\": \"how many men are fighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49540\",\n    \"key\": \"48965\",\n    \"description\": \"two men are fighting and another man is falling in front of a black car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8ca0XXF71u3zgs0o1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28120\",\n    \"key\": \"56388\",\n    \"description\": \"a man wearing a black shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcfvwvGGQ1rum1ilo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34085\",\n    \"key\": \"51015\",\n    \"description\": \"somebody knocked the black hat off the guy wearing the tan shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8v5lde1d1rqnpmeo1_250\",\n    \"question\": \"what is the color of the blouse?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41140\",\n    \"key\": \"10463\",\n    \"description\": \"this is woman that is wearing a blue blouse and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n980oaEVwU1t9r6nmo1_1280\",\n    \"question\": \"what is the color of the counter?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31736\",\n    \"key\": \"36035\",\n    \"description\": \"a bunch of keys are sitting on a blue counter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghap1l68R1tzk0bko1_500\",\n    \"question\": \"what is the woman holding?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41264\",\n    \"key\": \"100691\",\n    \"description\": \"a woman is holding a paper coffee cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkj564CLrz1u7s4oro1_400\",\n    \"question\": \"what do the crowd of people celebrate and one man spills?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44488\",\n    \"key\": \"41105\",\n    \"description\": \"a crowd of people celebrate and one man spills his drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcolpASZD1sht3fmo1_250\",\n    \"question\": \"how many cats are turning their heads while other cat is sleeping?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9291\",\n    \"key\": \"68601\",\n    \"description\": \"two cats are turning their heads while other cat is sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwkmh8JaB1rss4j4o1_250\",\n    \"question\": \"what is the color of the popsicle?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23015\",\n    \"key\": \"19060\",\n    \"description\": \"a man with long hair is licking a red popsicle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8gz0W3pf1qfnf9jo1_400\",\n    \"question\": \"where is the man showing a pair of underwear to an anchor.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22191\",\n    \"key\": \"96220\",\n    \"description\": \"a man in a news room is showing a pair of underwear to an anchor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagwqpek6t1sl4e5go1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39906\",\n    \"key\": \"96671\",\n    \"description\": \"a black car is smoking behind a bush.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0xuomYVF1uqy5dho1_250\",\n    \"question\": \"what jumps into the puddle than plays in it?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34239\",\n    \"key\": \"82672\",\n    \"description\": \"a baby elephant jumps into a puddle than plays in it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngx5sbnr6K1tx8mn0o1_400\",\n    \"question\": \"what is the guy driving and he flips it while the windshield wipers are going?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29346\",\n    \"key\": \"67283\",\n    \"description\": \"a guy is driving a car and he flips it while the windshield wipers are going.\"\n  },\n  {\n    \"video_name\": \"tumblr_noaswjesmm1th7g9io1_400\",\n    \"question\": \"what kicks the other one as it tries to clean it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49826\",\n    \"key\": \"95722\",\n    \"description\": \"the cat kicks the other one as it tries to clean it.\"\n  },\n  {\n    \"video_name\": \"tumblr_naje2j4n8S1qazjvjo1_250\",\n    \"question\": \"what is the woman wearing and yelling at someone?\",\n    \"answer\": \"robe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36416\",\n    \"key\": \"47238\",\n    \"description\": \"a woman is wearing a black robe and yelling at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3xv4kRGY1qcjc32o1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33971\",\n    \"key\": \"64070\",\n    \"description\": \"a guy in a black jacket is dancing with money.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazi03WXVg1slj978o1_500\",\n    \"question\": \"what is driving down the road as a car in front is trying to run someone over?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37513\",\n    \"key\": \"62179\",\n    \"description\": \"a car is driving down a road as a car in front is trying to run someone over.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncko1cgtVl1rwkjivo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31399\",\n    \"key\": \"45420\",\n    \"description\": \"a squirrel jumps and scares an orange cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowzu5MZZg1s3att3o1_250\",\n    \"question\": \"what is being poured from the container into a glass?\",\n    \"answer\": \"juice\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20280\",\n    \"key\": \"14921\",\n    \"description\": \"orange juice is being poured from a container into a glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2h0evKgf1qbbmg6o1_500\",\n    \"question\": \"how many men are getting out of the car that has blinking lights?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4954\",\n    \"key\": \"96517\",\n    \"description\": \"two men are getting out of a car that has blinking lights.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfzln4hPwu1u4lqc0o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7795\",\n    \"key\": \"52384\",\n    \"description\": \"a young man in a white shirt is eating a snack.\"\n  },\n  {\n    \"video_name\": \"tumblr_njdegqHsrc1unoxe4o1_250\",\n    \"question\": \"what is licking the girl 's face?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40894\",\n    \"key\": \"15245\",\n    \"description\": \"a dog is licking a girl 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n29eb50PTx1rxpytqo1_250\",\n    \"question\": \"what is the color of the blanket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27591\",\n    \"key\": \"25431\",\n    \"description\": \"a cat in a blue blanket holds a teddy bear close to it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfrob3zSe11u1cig2o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22923\",\n    \"key\": \"71106\",\n    \"description\": \"a woman with long,\"\n  },\n  {\n    \"video_name\": \"tumblr_naadu72Yf41rih4r2o1_400\",\n    \"question\": \"what is the color of the tutu?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5119\",\n    \"key\": \"20856\",\n    \"description\": \"a ballerina in a purple tutu is performing a pirouette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf87a1ENfb1u25ovvo1_400\",\n    \"question\": \"what is driving down the road splashing puddles?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23634\",\n    \"key\": \"63565\",\n    \"description\": \"a black car is driving down a road splashing puddles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc3ak2Hla71rdjyr4o1_250\",\n    \"question\": \"how many men is this image of on stage talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4184\",\n    \"key\": \"82631\",\n    \"description\": \"this image is of two men on stage talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqljzrYT1E1utakepo1_500\",\n    \"question\": \"how many boys are singing into the microphone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19400\",\n    \"key\": \"62447\",\n    \"description\": \"two boys are singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrlcrqLFl1u7c3syo1_500\",\n    \"question\": \"how many men are sitting next to each other and laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30852\",\n    \"key\": \"80637\",\n    \"description\": \"three men are sitting next to each other and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyscvfO4c1sjzf6wo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33\",\n    \"key\": \"28569\",\n    \"description\": \"a woman is wearing a long white dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94cb1ac3r1tgqu05o1_250\",\n    \"question\": \"how many men in t-shirts are laughing and making jokes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32521\",\n    \"key\": \"54191\",\n    \"description\": \"two men in t-shirts are laughing and making jokes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncczjfdwFt1tav0gmo1_500\",\n    \"question\": \"how many guys are posing up against the wall?\",\n    \"answer\": \"six\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4749\",\n    \"key\": \"93175\",\n    \"description\": \"six guys are posing up against a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojpv0LDGS1tpg4boo1_250\",\n    \"question\": \"what is walking in a treadmill is tired?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31188\",\n    \"key\": \"25879\",\n    \"description\": \"a white cat walking in a treadmill is tired.\"\n  },\n  {\n    \"video_name\": \"tumblr_nela5igS4O1t7hjz2o1_250\",\n    \"question\": \"what is in the box and falls out of the box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30526\",\n    \"key\": \"53697\",\n    \"description\": \"a black and white cat is in a box and falls out of the box.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e0koRNI51r390ico1_250\",\n    \"question\": \"what is snuggling up to someones foot on a bed?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9854\",\n    \"key\": \"17008\",\n    \"description\": \"a cat is snuggling up to someones foot on a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2gpfzSk21tk2ngvo1_250\",\n    \"question\": \"where are two rabbits playing very funny.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35315\",\n    \"key\": \"13592\",\n    \"description\": \"two rabbits are playing very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nawbyzVwlV1thhvy0o1_400\",\n    \"question\": \"what is the young man wearing around his face and making gun motions with his hand toward his head?\",\n    \"answer\": \"bandanna\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13664\",\n    \"key\": \"32609\",\n    \"description\": \"the young man is wearing a bandanna around his face and making gun motions with his hand toward his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqx3b5Le21sz068fo1_250\",\n    \"question\": \"what is the color of the cats?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21936\",\n    \"key\": \"24078\",\n    \"description\": \"two black and white cats are running on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfrlins4gC1qaucgno1_250\",\n    \"question\": \"how many men are hugging each other in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40243\",\n    \"key\": \"21892\",\n    \"description\": \"two men are hugging each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefradf58s1tu3ue8o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44369\",\n    \"key\": \"4218\",\n    \"description\": \"the man is wearing a black jacket looking into the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq28jhRJx1u7vscio1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48219\",\n    \"key\": \"43599\",\n    \"description\": \"a boy wearing a blue shirt puts a spoon in his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_na60jik2x61swxhaso1_400\",\n    \"question\": \"what is the cat massaging back with its paws?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45979\",\n    \"key\": \"28844\",\n    \"description\": \"a cat is massaging another cats back with its paws.\"\n  },\n  {\n    \"video_name\": \"tumblr_nm5g67lpIs1r2mlm8o1_500\",\n    \"question\": \"how many boys are sitting next to each other and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26388\",\n    \"key\": \"95960\",\n    \"description\": \"two boys are sitting next to each other and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7qbi6YqP1taym8lo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6694\",\n    \"key\": \"73168\",\n    \"description\": \"a guy wearing a white tee shirt and sunglasses,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndufzyTI4k1tlhv9no1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42531\",\n    \"key\": \"101733\",\n    \"description\": \"a young man with black hair is looking very happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb89xaSQAl1sk0e8vo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38683\",\n    \"key\": \"23160\",\n    \"description\": \"a man with very long black hair is looking amazed.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwfzx0hL91tgkdkbo1_250\",\n    \"question\": \"what is wearing a red cape pushes a scooter and jumps on?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13756\",\n    \"key\": \"5671\",\n    \"description\": \"dog wearing a red cape pushes a scooter and jumps on.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dtvaAB1g1t8991mo1_250\",\n    \"question\": \"where is the woman with light brown hair sitting up.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12626\",\n    \"key\": \"19358\",\n    \"description\": \"a woman with light brown hair is sitting up in bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax6k52cmx1tzzyazo1_400\",\n    \"question\": \"what is the man playing and another man is playing a guitar?\",\n    \"answer\": \"tambourine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25558\",\n    \"key\": \"30489\",\n    \"description\": \"a man is playing a tambourine and another man is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7f3olx4g1s373hwo1_400\",\n    \"question\": \"where did the man with curly hair drop something.\",\n    \"answer\": \"? floor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12414\",\n    \"key\": \"48174\",\n    \"description\": \"the man with curly hair dropped something in the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6t4gSzKE1tgetb4o1_400\",\n    \"question\": \"what is bitten by the tortoise?\",\n    \"answer\": \"nose\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36773\",\n    \"key\": \"47560\",\n    \"description\": \"a dogs nose is bitten by a tortoise.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmz2tmDeda1sddro0o1_250\",\n    \"question\": \"how many men are looking at chairs fall out of a moving truck?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8648\",\n    \"key\": \"24985\",\n    \"description\": \"two men are looking at chairs fall out of a moving truck.\"\n  },\n  {\n    \"video_name\": \"tumblr_neend692r31u25ovvo1_400\",\n    \"question\": \"what is driving on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51710\",\n    \"key\": \"63543\",\n    \"description\": \"a green car is driving on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgsciLfMr1sc9795o1_500\",\n    \"question\": \"how many guys are playing one above the other in a stage?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13548\",\n    \"key\": \"97088\",\n    \"description\": \"five guys are playing one above the other in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr9dyUwwa1u1ijg8o1_400\",\n    \"question\": \"what is the color of the breast?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7829\",\n    \"key\": \"26386\",\n    \"description\": \"the bird with the gray wings and white breast is looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7whmAmg71tag56zo1_250\",\n    \"question\": \"what is the color of the curtain?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2176\",\n    \"key\": \"43643\",\n    \"description\": \"a man is singing into a microphone against a red curtain.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9fj4glx61swtmgzo1_500\",\n    \"question\": \"what is crawling out from the box on a tiled floor?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19266\",\n    \"key\": \"46702\",\n    \"description\": \"a small rabbit is crawling out from a box on a tiled floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnukunx7r61uuj39do1_400\",\n    \"question\": \"what is the color of the trailer?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25479\",\n    \"key\": \"37449\",\n    \"description\": \"the billy goat slammed into the little boy beside the red trailer.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngw0nxqd4L1tpishuo1_500\",\n    \"question\": \"what is the man holding in front of his mouth?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49510\",\n    \"key\": \"90070\",\n    \"description\": \"a man is holding a microphone in front of his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfz7kmxjde1tssk6do1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38612\",\n    \"key\": \"32004\",\n    \"description\": \"a woman with long brown hair is drinking from a mug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv2wwA6vd1tatohao1_400\",\n    \"question\": \"what pushes the black cat off a fence?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20927\",\n    \"key\": \"41874\",\n    \"description\": \"a white cat pushes a black cat off a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0bml1h561t7io47o1_250\",\n    \"question\": \"what is collecting the mail from the carrier?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4977\",\n    \"key\": \"14250\",\n    \"description\": \"the dog is collecting the mail from the carrier.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyr2emPxA1ti6gxco1_500\",\n    \"question\": \"what is the man with black hair taking off?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49104\",\n    \"key\": \"8116\",\n    \"description\": \"a man with black hair is taking a mask off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6z38GkkR1tmbbaro1_400\",\n    \"question\": \"what is looking at itself in a mirror then tries to attack the reflection?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36704\",\n    \"key\": \"80311\",\n    \"description\": \"a cat is looking at itself in a mirror then tries to attack the reflection.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdy8uJlce1rpfnrjo1_400\",\n    \"question\": \"what is the color of the thing?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19303\",\n    \"key\": \"41932\",\n    \"description\": \"a yellow thing with a face flails around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9siszhG1N1r6pekco1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44162\",\n    \"key\": \"9861\",\n    \"description\": \"a black man is giving a thumbs up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq79d1R2uE1rered3o1_400\",\n    \"question\": \"what is the color of the ball?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47574\",\n    \"key\": \"77208\",\n    \"description\": \"a man wearing sunglasses hits a yellow ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoz3heJia1tx8mn0o1_400\",\n    \"question\": \"what are racing and one clips the other and it turns upside down in the air?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11868\",\n    \"key\": \"21855\",\n    \"description\": \"cars are racing and one clips the other and it turns upside down in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_npaw4iQKzd1u6iefyo1_500\",\n    \"question\": \"what leaves skid marks as it spins out?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22530\",\n    \"key\": \"76767\",\n    \"description\": \"a black car leaves skid marks as it spins out.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8a0e46Baz1qcwyxho1_500\",\n    \"question\": \"how many very cute ladies are sitting and watching each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43152\",\n    \"key\": \"41796\",\n    \"description\": \"two very cute ladies are sitting and watching each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0llj1byG1u1ukj4o1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26126\",\n    \"key\": \"34940\",\n    \"description\": \"a woman in black with lots of lipstick is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzwwj6elv1ta4f2po1_500\",\n    \"question\": \"where does the man jump while the other man does a crazy expression.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23522\",\n    \"key\": \"73747\",\n    \"description\": \"a man in a room jumps while the other man does a crazy expression.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklmclT3p41tculako1_400\",\n    \"question\": \"how many people are holding each others'\",\n    \"answer\": \"little fingers ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32574\",\n    \"key\": \"93033\",\n    \"description\": \"two people are holding each others'\"\n  },\n  {\n    \"video_name\": \"tumblr_ncf1dpahl31sirc9vo1_500\",\n    \"question\": \"what is the man performing and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38785\",\n    \"key\": \"87991\",\n    \"description\": \"a man is performing and playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8kt58I4Bp1t6ksnpo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38684\",\n    \"key\": \"93118\",\n    \"description\": \"a man with black shirt is singing to microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq60eugCBm1tk2ngvo1_500\",\n    \"question\": \"what is the dog carrying and dunking it in a net?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42441\",\n    \"key\": \"85137\",\n    \"description\": \"a dog is carrying a ball and dunking it in a net.\"\n  },\n  {\n    \"video_name\": \"tumblr_napfl20WZw1r9n9k9o1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32105\",\n    \"key\": \"80140\",\n    \"description\": \"man with black suit is moving newspaper in his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nekk97G6bF1rodbc8o1_250\",\n    \"question\": \"what is the color of the couple?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23774\",\n    \"key\": \"15961\",\n    \"description\": \"a couple in a black in white scene are kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_mqr7rhdu191stpzqxo1_250\",\n    \"question\": \"what is trying to wake up her buddy?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31388\",\n    \"key\": \"48885\",\n    \"description\": \"a cat trying to wake up her buddy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam1acBsls1sgrimro1_400\",\n    \"question\": \"what is the man driving down the stairs?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43759\",\n    \"key\": \"1243\",\n    \"description\": \"a man is driving a toy car down the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hek5wjXA1tselino1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36593\",\n    \"key\": \"263\",\n    \"description\": \"a woman wearing a black dress is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjfm8LunL1tlv2g2o1_400\",\n    \"question\": \"what tries to jump into the white box and flips over backwards?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17379\",\n    \"key\": \"78926\",\n    \"description\": \"a cat tries to jump into a white box and flips over backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkmxjaSAq1u777vko1_500\",\n    \"question\": \"what spreads his wings and screeches?\",\n    \"answer\": \"bat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14380\",\n    \"key\": \"57894\",\n    \"description\": \"a bat spreads his wings and screeches.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhw74v6B9h1sk9xwto1_500\",\n    \"question\": \"what did the dark haired?\",\n    \"answer\": \"person\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29844\",\n    \"key\": \"80167\",\n    \"description\": \"A dark haired a heavy eye makeup person.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkaabSLxV1rzui38o1_400\",\n    \"question\": \"what are flying around the lady with a black umbrella?\",\n    \"answer\": \"doves\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29210\",\n    \"key\": \"15437\",\n    \"description\": \"doves are flying around a lady with a black umbrella.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xhwswWAH1qi4n2uo1_500\",\n    \"question\": \"what are the pair of men bumping together while dancing?\",\n    \"answer\": \"butts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13581\",\n    \"key\": \"83905\",\n    \"description\": \"a pair of men are bumping their butts together while dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtfm7N0sV1u6xoazo1_250\",\n    \"question\": \"what is dancing around?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA966\",\n    \"key\": \"43972\",\n    \"description\": \"a girl holding bottle is dancing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_np726k1fIU1unyhx2o1_400\",\n    \"question\": \"what are racing on a circuit?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34076\",\n    \"key\": \"76923\",\n    \"description\": \"several racing cars are on a circuit.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8ztgwPRU1tj8blpo1_250\",\n    \"question\": \"what is playing with its own tail with its eyes closed?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13760\",\n    \"key\": \"11564\",\n    \"description\": \"this cat is playing with its own tail with its eyes closed.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9agpx9QDL1s4niibo1_400\",\n    \"question\": \"how many girls looked forward making faces and sticking their tongue out?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4160\",\n    \"key\": \"32543\",\n    \"description\": \"two girls looked forward making faces and sticking their tongue out.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyo842ZhQ1sonpgjo1_400\",\n    \"question\": \"what is the color of the singing?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18517\",\n    \"key\": \"30297\",\n    \"description\": \"this is a close up of a man in a blue shirt singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nktim2ynq81upzmu0o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2769\",\n    \"key\": \"19208\",\n    \"description\": \"a man dressed in black is running his finger up and down his arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vcdumjlM1th8gzmo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6889\",\n    \"key\": \"88561\",\n    \"description\": \"a man with black shirt is checking himself out with a phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndszgz7EAa1tlt0c9o1_400\",\n    \"question\": \"where is the man turning tricks.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9141\",\n    \"key\": \"13975\",\n    \"description\": \"a man is turning tricks in the gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90g92xH0U1txcuu2o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38972\",\n    \"key\": \"8661\",\n    \"description\": \"a man is listening to a lady with red hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsp3eMrFe1t5v98mo1_400\",\n    \"question\": \"where is the guy looking out the window.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48885\",\n    \"key\": \"34536\",\n    \"description\": \"a guy in a car is looking out the window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nccngahQlq1sdbrm9o1_400\",\n    \"question\": \"how many men are walking around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39819\",\n    \"key\": \"66360\",\n    \"description\": \"these two men are walking around and one has a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9fzj5h9Y1u57bkto1_250\",\n    \"question\": \"how many women hugged up to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50482\",\n    \"key\": \"42689\",\n    \"description\": \"two women hugged up to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_naz1gjhCtv1rl8ttqo1_500\",\n    \"question\": \"what is the young man talking on his phone and walking?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17836\",\n    \"key\": \"81910\",\n    \"description\": \"a young man is talking on his phone and walking his bike.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdc7wPDYW1uvkm4po1_500\",\n    \"question\": \"how many boys are hugging each other closely?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3607\",\n    \"key\": \"101115\",\n    \"description\": \"two boys are hugging each other closely.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5putNwnc1s9hy1to1_500\",\n    \"question\": \"what does the man hold and adjusts?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9566\",\n    \"key\": \"82527\",\n    \"description\": \"a man holds and adjusts a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf2pkEfCK1ssgyoro1_400\",\n    \"question\": \"what is being fed peanut butter from a spoon?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4287\",\n    \"key\": \"70176\",\n    \"description\": \"a goat is being fed peanut butter from a spoon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2bhazRt01u1nko6o1_400\",\n    \"question\": \"what is going on and the man roots for it?\",\n    \"answer\": \"race\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23649\",\n    \"key\": \"28705\",\n    \"description\": \"a horse race is going on and a man roots for it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnr8ru73mJ1u79obxo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51656\",\n    \"key\": \"23840\",\n    \"description\": \"this shows a male teenager in a white tee shirt making funny faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8reauf0cL1sevihno1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32620\",\n    \"key\": \"64572\",\n    \"description\": \"a very cute soccer player with a white shirt is screaming.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9idf18Lt31sjcycuo1_250\",\n    \"question\": \"what is the submarine following?\",\n    \"answer\": \"octopus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42748\",\n    \"key\": \"73363\",\n    \"description\": \"a submarine is following a small octopus.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zu57mMW51t36lbdo1_400\",\n    \"question\": \"what is raising up and down?\",\n    \"answer\": \"hood\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19656\",\n    \"key\": \"53950\",\n    \"description\": \"someone 's car hood is raising up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes3koGSue1s2cbf9o1_250\",\n    \"question\": \"how many women are standing close and when one looks over at the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38384\",\n    \"key\": \"47312\",\n    \"description\": \"two women are standing close and when one looks over at the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxvqaazzU1up8baqo1_250\",\n    \"question\": \"what is the man holding and dancing around?\",\n    \"answer\": \"pants\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49339\",\n    \"key\": \"3440\",\n    \"description\": \"a man is holding his pants and dancing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rgx4UGGL1so8zmko1_400\",\n    \"question\": \"what did half naked man mock play in front of a crowd?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44461\",\n    \"key\": \"85942\",\n    \"description\": \"half naked man mock played a piano in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngy2thk5VL1rn16efo1_r1_500\",\n    \"question\": \"how many guys is wearing jackets are wiping their foreheads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18281\",\n    \"key\": \"71393\",\n    \"description\": \"two guys wearing jackets are wiping their foreheads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nayv2kyFQI1ts7wbfo1_400\",\n    \"question\": \"how many people wrap their arms around each other while staring into the distance?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8478\",\n    \"key\": \"80131\",\n    \"description\": \"two people wrap their arms around each other while staring into the distance.\"\n  },\n  {\n    \"video_name\": \"tumblr_np1oltv5F41te6s3so1_250\",\n    \"question\": \"what is filling with the gas?\",\n    \"answer\": \"container\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA285\",\n    \"key\": \"8455\",\n    \"description\": \"a glass container is filling with a gas.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvz1zHlqY1slj978o1_250\",\n    \"question\": \"what is the color of the spike?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12336\",\n    \"key\": \"27919\",\n    \"description\": \"a black and white bird is putting the plastic rings on the yellow spike.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9airoPJM1rs58dao1_500\",\n    \"question\": \"what speeds down the track and narrowly avoids crashing?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27710\",\n    \"key\": \"57001\",\n    \"description\": \"blue car speeds down a track and narrowly avoids crashing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhp246FgbJ1tk1kc2o1_400\",\n    \"question\": \"how many young men are walking in front of an army?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11206\",\n    \"key\": \"37801\",\n    \"description\": \"three young men are walking in front of an army.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdr3clKDa1sntw1mo1_400\",\n    \"question\": \"where did the funny-looking dog star.\",\n    \"answer\": \"? store\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12933\",\n    \"key\": \"39810\",\n    \"description\": \"a funny-looking dog stares at something in a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_naoun5Qf411t90iy0o1_500\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24343\",\n    \"key\": \"52064\",\n    \"description\": \"a man is sitting in a brown chair and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk32pnnazT1skvgwao1_400\",\n    \"question\": \"what are two men with black coats exiting?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24049\",\n    \"key\": \"83387\",\n    \"description\": \"two men with black coats are exiting a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_niusi5DiBN1r027rto1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25322\",\n    \"key\": \"820\",\n    \"description\": \"a girl wearing a white shirt and black skirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkbm8DACb1t0w9oqo1_400\",\n    \"question\": \"what is the color of the headdresses?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49541\",\n    \"key\": \"15773\",\n    \"description\": \"two young men wearing red antler headdresses are smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngakp3K9X61tkrdioo1_250\",\n    \"question\": \"what is the color of the hood?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50962\",\n    \"key\": \"4956\",\n    \"description\": \"a person wearing scary make up and a white hood is lowering their head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs6znj2Pt1slj978o1_250\",\n    \"question\": \"where are the group of men in red jerseys dancing.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA361\",\n    \"key\": \"27761\",\n    \"description\": \"a group of men in red jerseys are dancing in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0ietOo6o1qa3o0zo2_500\",\n    \"question\": \"how many basketball players are slapping their hands together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7028\",\n    \"key\": \"82603\",\n    \"description\": \"two basketball players are slapping their hands together.\"\n  },\n  {\n    \"video_name\": \"tumblr_negdrj3DSk1sggdd3o1_500\",\n    \"question\": \"what is the man making?\",\n    \"answer\": \"puppet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA472\",\n    \"key\": \"95494\",\n    \"description\": \"a man is making a hand puppet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7d1hWDP01tzjhlno1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20098\",\n    \"key\": \"88503\",\n    \"description\": \"a woman in a blue top point her finger and says something while on the verge of tears.\"\n  },\n  {\n    \"video_name\": \"tumblr_no63u43lax1s4dp9lo1_500\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23262\",\n    \"key\": \"59295\",\n    \"description\": \"a woman on stage with a red background is walking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nipn2lx2R71slj978o1_250\",\n    \"question\": \"how many people are jumping on the trampoline and one jumps high and puts a basketball through a basketball hoop?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39130\",\n    \"key\": \"41152\",\n    \"description\": \"three people are jumping on a trampoline and one jumps high and puts a basketball through a basketball hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xdjz1MKC1r6b9h8o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26340\",\n    \"key\": \"30622\",\n    \"description\": \"a man in a yellow shirt is raising his hands and then a man in a baseball hat does the same.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1py0cFid1sorauco1_500\",\n    \"question\": \"how many guys are together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16168\",\n    \"key\": \"79780\",\n    \"description\": \"two guys are together and one makes faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxoajybvK1qgfbkmo1_500\",\n    \"question\": \"how many men gently grin from different vantage points?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25745\",\n    \"key\": \"94313\",\n    \"description\": \"three men gently grin from different vantage points.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexv4oxDWU1tdxdrdo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16774\",\n    \"key\": \"58313\",\n    \"description\": \"the man wearing a black shirt gets everyone to dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5pmkrxPP1tm39w8o1_500\",\n    \"question\": \"what is playing and hugging her baby?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42207\",\n    \"key\": \"99498\",\n    \"description\": \"a panda bear is playing and hugging her baby.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndo5t4jt651txq11zo1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14939\",\n    \"key\": \"66215\",\n    \"description\": \"a man wearing a white top speaks into a microphone and pushes the top aside.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncf4ohdwxD1tkdyoao1_400\",\n    \"question\": \"what is the woman,\",\n    \"answer\": \"wearing , uses gymnastic rings to lift herself to a seated position then into a handstand ? clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40707\",\n    \"key\": \"80224\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_nabnd0SUAv1tjbxaso1_400\",\n    \"question\": \"how many girls is wearing long sleeves are catching other girl?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26620\",\n    \"key\": \"28885\",\n    \"description\": \"two girls wearing long sleeves are catching other girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0htmQzPY1qhrx75o1_400\",\n    \"question\": \"where are some people playing hockey.\",\n    \"answer\": \"? rink\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23519\",\n    \"key\": \"87458\",\n    \"description\": \"some people are playing hockey in an ice rink.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner22jeQIK1rinntgo1_500\",\n    \"question\": \"how many men are wrestling in the arena one of them take the head of the other between his legs and throw him outside the arena?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38802\",\n    \"key\": \"89729\",\n    \"description\": \"two men are wrestling in the arena one of them take the head of the other between his legs and throw him outside the arena.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpcf5Nu4B1slj978o1_500\",\n    \"question\": \"what falls off the platform and throws the man?\",\n    \"answer\": \"forklift\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50457\",\n    \"key\": \"56530\",\n    \"description\": \"the forklift falls off the platform and throws the man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nooov5ZSds1un86uao1_400\",\n    \"question\": \"what is the girl wearing and a man is going in a car?\",\n    \"answer\": \"lipstick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26303\",\n    \"key\": \"15396\",\n    \"description\": \"a girl is wearing lipstick and a man is going in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vrrw9ndC1t8amt8o1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27069\",\n    \"key\": \"75390\",\n    \"description\": \"a white girl with yellow hair is talking with another girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2yugot1B1tiz27ro1_500\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16135\",\n    \"key\": \"37357\",\n    \"description\": \"a white horse is blinking and looks down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncoxe7Pzl11t0ojyvo1_250\",\n    \"question\": \"how many men link arms while walking and waving?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39716\",\n    \"key\": \"6571\",\n    \"description\": \"two men link arms while walking and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne7om7gzgi1tw8vf9o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27541\",\n    \"key\": \"17998\",\n    \"description\": \"the woman in the blue shirt is doing exercises.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhys5kaxEu1u7u0ceo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32346\",\n    \"key\": \"95988\",\n    \"description\": \"a bear is wearing a red hat and a woman with blonde hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfirz117ee1s9f4vbo1_250\",\n    \"question\": \"where is the guy running and jumping.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50221\",\n    \"key\": \"53330\",\n    \"description\": \"a guy is running and jumping in a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nra8jaNWXd1ti2yzto1_1280\",\n    \"question\": \"how many cats are playing with each other between a bike wheel?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3886\",\n    \"key\": \"17735\",\n    \"description\": \"two cats are playing with each other between a bike wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3zyv9YI61s3a96to1_400\",\n    \"question\": \"what is the color of the kitten?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12551\",\n    \"key\": \"96188\",\n    \"description\": \"a girl holds a white kitten tries to kiss it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4jfl16Cl1syfpbbo1_500\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28850\",\n    \"key\": \"101310\",\n    \"description\": \"a person wearing a white outfit is reaching out and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nappn5EVPG1t8jvi1o1_500\",\n    \"question\": \"what is the woman arranging?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3410\",\n    \"key\": \"52923\",\n    \"description\": \"a woman is arranging a boy 's jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_no1p33MsIj1utp1xwo1_500\",\n    \"question\": \"how many men raise their hands in the air?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5644\",\n    \"key\": \"48853\",\n    \"description\": \"two men raise their hands in the air and a woman gives one a high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4yysgw0F1ti4mkxo1_500\",\n    \"question\": \"how many girls is this talking while sitting in a booth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31830\",\n    \"key\": \"59799\",\n    \"description\": \"this is two girls talking while sitting in a booth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb44xo2hh31tjzm01o1_250\",\n    \"question\": \"what is the color of the stage?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2279\",\n    \"key\": \"37627\",\n    \"description\": \"a girl is doing expression with her face in a green stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd11cdPFVQ1s1cmjio1_400\",\n    \"question\": \"how many cars slowly drove through the parking deck?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12810\",\n    \"key\": \"96948\",\n    \"description\": \"two cars slowly drove through a parking deck.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv8o5fqeJ1u68w9so1_400\",\n    \"question\": \"what is falling asleep drops his head down?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3874\",\n    \"key\": \"60657\",\n    \"description\": \"a kitten falling asleep drops his head down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rm0wQ5KP1thg4lco1_400\",\n    \"question\": \"how many boys are laughing and playing around with their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48876\",\n    \"key\": \"33455\",\n    \"description\": \"two boys are laughing and playing around with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7frjTMmN1u4wcs2o1_400\",\n    \"question\": \"what is the man wearing a white shirt was holding?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12427\",\n    \"key\": \"39464\",\n    \"description\": \"the man wearing a white shirt was holding a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxrhb6KxZ1rjpa5po1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34370\",\n    \"key\": \"13470\",\n    \"description\": \"a guy with brown hair is looking forward and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v14rHt3R1riy1p3o1_400\",\n    \"question\": \"what is the young man with tattoos playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34378\",\n    \"key\": \"39342\",\n    \"description\": \"a young man with tattoos is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3l77geE51tckhoro1_250\",\n    \"question\": \"how many players from them is winning team are embracing and congratulating each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50162\",\n    \"key\": \"43984\",\n    \"description\": \"two players from them winning team are embracing and congratulating each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7jp1slnJ1u978z2o2_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28248\",\n    \"key\": \"7617\",\n    \"description\": \"a man wearing a blue shirt is playing the guitar on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_np84galvUX1rkaxwxo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51894\",\n    \"key\": \"44864\",\n    \"description\": \"a man in a brown jacket strangles a younger man who is n't wearing a shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitazkhnAd1u1egsso1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48029\",\n    \"key\": \"93401\",\n    \"description\": \"a woman with long red hair is running her hand though her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nekewm14Rx1seb31ro1_500\",\n    \"question\": \"what is the man playing and singing on the stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52159\",\n    \"key\": \"63354\",\n    \"description\": \"a man is playing guitar and singing on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw6xdvgLy1u7i24mo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8884\",\n    \"key\": \"78974\",\n    \"description\": \"a boy is waving his hair around with a red shirt on.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngh835PaKl1u5c02bo1_500\",\n    \"question\": \"what does the man partially remove?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43025\",\n    \"key\": \"76262\",\n    \"description\": \"a man partially removes his jacket to expose his shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjj2qYG1B1rk7l72o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34695\",\n    \"key\": \"54923\",\n    \"description\": \"a woman wearing a red shirt sips on a straw.\"\n  },\n  {\n    \"video_name\": \"tumblr_nov6tduqos1uvi3rjo1_400\",\n    \"question\": \"what is the color of the ears?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21218\",\n    \"key\": \"54480\",\n    \"description\": \"a small brown dog is wearing large purple ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncklqndWmQ1tgq0eso1_250\",\n    \"question\": \"how many girls are making faces and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9774\",\n    \"key\": \"4718\",\n    \"description\": \"the two girls are making faces and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr24ia3Q8z1uzm9a7o1_500\",\n    \"question\": \"what is the color of the coats?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39017\",\n    \"key\": \"71205\",\n    \"description\": \"a group of people in white coats are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokwt1ZuPX1u5ha5do1_500\",\n    \"question\": \"what is the color of the costume?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31956\",\n    \"key\": \"8577\",\n    \"description\": \"a man in a yellow costume preforms a flip with the aid of a tree but fails.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8f0v94np21tgzchoo1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9625\",\n    \"key\": \"86111\",\n    \"description\": \"a girl is opening the blue strange eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nds0nftICq1tqs077o1_500\",\n    \"question\": \"what are shown close up with more buildings behind and a gray sky?\",\n    \"answer\": \"buildings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10123\",\n    \"key\": \"86723\",\n    \"description\": \"five buildings are shown close up with more buildings behind and a gray sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezwgxkYSL1trp7kao1_500\",\n    \"question\": \"how many guys with long blonde streaked hair throw and bounce balls?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16151\",\n    \"key\": \"38597\",\n    \"description\": \"two guys with long blonde streaked hair throw and bounce balls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdij9TJS41swv315o1_400\",\n    \"question\": \"how many leg does the man have?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48361\",\n    \"key\": \"38898\",\n    \"description\": \"two people wearing all white are dancing and the man has only one leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwyadLrQK1qb0dkjo1_400\",\n    \"question\": \"how many men with marks on their faces are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25616\",\n    \"key\": \"40672\",\n    \"description\": \"the two men with marks on their faces are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni4f35mzSx1u849zpo1_250\",\n    \"question\": \"where is the man slicing off arms.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA25754\",\n    \"key\": \"37920\",\n    \"description\": \"a man is slicing off arms in a horror room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3xfcUdnK1tiamx1o1_400\",\n    \"question\": \"what is rubbing his rear on the couch?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4748\",\n    \"key\": \"19533\",\n    \"description\": \"a dog is rubbing his rear on the couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrsw2qHWe1slhvg9o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39288\",\n    \"key\": \"59390\",\n    \"description\": \"a guy wearing a black shirt and red earphones on his head,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkai5chFn1uqslqko1_250\",\n    \"question\": \"what is the young woman with long black hair,\",\n    \"answer\": \"wearing ? blouse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52833\",\n    \"key\": \"16524\",\n    \"description\": \"a young woman with long black hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nemxtbM9Ij1rkcgxho1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21166\",\n    \"key\": \"97972\",\n    \"description\": \"the mans wearing a black leather jacket is looking upwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngwvy1uJBD1u6667lo1_500\",\n    \"question\": \"how many boys are on stage dancing and singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42520\",\n    \"key\": \"60154\",\n    \"description\": \"two boys are on stage dancing and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtbhyWjrF1twsxdzo1_400\",\n    \"question\": \"how many men in a car are playing air drums?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29359\",\n    \"key\": \"78772\",\n    \"description\": \"two men in a car are playing air drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7zldRIh21slj978o1_400\",\n    \"question\": \"what jumps over the other surprised monkey?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA947\",\n    \"key\": \"40880\",\n    \"description\": \"one monkey jumps over the other surprised monkey.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc47bdxzrD1taknwvo1_500\",\n    \"question\": \"how many guys are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3203\",\n    \"key\": \"59589\",\n    \"description\": \"two guys are talking and one starts to hit the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1xg4jOZe1sgddbno1_400\",\n    \"question\": \"how many woman are looking at each other with a strange expression?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23363\",\n    \"key\": \"72667\",\n    \"description\": \"two woman are looking at each other with a strange expression.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne6n5ulYf11sccnr4o1_250\",\n    \"question\": \"what are two masked men wearing and speaking?\",\n    \"answer\": \"costumes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44609\",\n    \"key\": \"5567\",\n    \"description\": \"two masked men are wearing costumes and speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4hkbp8Nd1u6qd8so1_250\",\n    \"question\": \"what is the girl fighting off?\",\n    \"answer\": \"wolf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21482\",\n    \"key\": \"45718\",\n    \"description\": \"a girl is fighting off a wolf.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzhkq39Nz1twdzc1o1_250\",\n    \"question\": \"what jumps and opens the sliding door,\",\n    \"answer\": \"making a crack big enough for the rest to get in ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27604\",\n    \"key\": \"8947\",\n    \"description\": \"a large cat jumps and opens a sliding door,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcyybdpPO1qct8qno1_400\",\n    \"question\": \"what backs up and goes after the cow?\",\n    \"answer\": \"sheep\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52913\",\n    \"key\": \"96856\",\n    \"description\": \"a sheep backs up and goes after a cow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq01pqZoQU1t4f3yro1_400\",\n    \"question\": \"what are the band in uniforms playing?\",\n    \"answer\": \"instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35725\",\n    \"key\": \"33290\",\n    \"description\": \"a band in uniforms are playing their instruments.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw0q7MHTa1rwofevo1_500\",\n    \"question\": \"what is sleeping in the dish of fruits?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49382\",\n    \"key\": \"80243\",\n    \"description\": \"a cat is sleeping in a dish of fruits.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5l8obm4R1uyo3nxo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18488\",\n    \"key\": \"6351\",\n    \"description\": \"a girl with blonde hairs wears a black shirt and sways while moving her index finger and saying something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxt71hFPt1t7io47o1_250\",\n    \"question\": \"what is dipping their paw into a glass of milk?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA548\",\n    \"key\": \"23002\",\n    \"description\": \"a cat is dipping their paw into a glass of milk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhiydsOcmj1rtdnfto1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45560\",\n    \"key\": \"74853\",\n    \"description\": \"a white dog with large ears opens its eyes while looking upward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrl16zOfFD1uynlu6o1_400\",\n    \"question\": \"how many teams are playing the game of baseball together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24194\",\n    \"key\": \"62902\",\n    \"description\": \"two teams are playing a game of baseball together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nddwgxHABg1u1oezmo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30109\",\n    \"key\": \"88923\",\n    \"description\": \"the man in the white shirt is break dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhoc5qUwE61tebudgo1_400\",\n    \"question\": \"what is the man holding while biting his nail?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14876\",\n    \"key\": \"24292\",\n    \"description\": \"a man is holding a cigarette while biting his nail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nosv3ta6Y91rndm3wo1_250\",\n    \"question\": \"what does an animal monkey eat eating with his hands?\",\n    \"answer\": \"carrots\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50396\",\n    \"key\": \"27133\",\n    \"description\": \"an animal monkey eats ate eating carrots with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfv8zfjW0v1rwe02ao1_250\",\n    \"question\": \"how many men are talking while being interviewed?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27857\",\n    \"key\": \"45681\",\n    \"description\": \"two men are talking while being interviewed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjhd849y71u3aq49o1_540\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22798\",\n    \"key\": \"50778\",\n    \"description\": \"a man in a white shirt is grabbing his crotch,\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw9ylw8zC1tpg4boo1_250\",\n    \"question\": \"what is dancing and jumping?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8118\",\n    \"key\": \"68610\",\n    \"description\": \"a little tabby kitten is dancing and jumping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk75gnN9yC1sht3fmo1_250\",\n    \"question\": \"what is swinging on the thread?\",\n    \"answer\": \"lizard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20631\",\n    \"key\": \"11849\",\n    \"description\": \"a lizard is swinging on a thread.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbzm00HNNY1svp9edo1_1280\",\n    \"question\": \"what did the man take from a woman while sitting in an office building?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30182\",\n    \"key\": \"95163\",\n    \"description\": \"a man took a coffee cup from a woman while sitting in an office building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefaiatKqJ1siijy4o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21299\",\n    \"key\": \"19993\",\n    \"description\": \"a girl in a red dress in parking lot is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9d4tfO9u1u14j2jo1_400\",\n    \"question\": \"where is the woman doing yoga.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10223\",\n    \"key\": \"56906\",\n    \"description\": \"a woman is doing yoga in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfxm0sP931rntqodo1_400\",\n    \"question\": \"what does the woman with long hair apply?\",\n    \"answer\": \"lipstick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10999\",\n    \"key\": \"30547\",\n    \"description\": \"a woman with long hair applies lipstick.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoi3huNbE1tzhdnfo1_500\",\n    \"question\": \"what is the man pouring?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40915\",\n    \"key\": \"86821\",\n    \"description\": \"a man is pouring a drink that is spilling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpglozL0n1s3dd2do1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30865\",\n    \"key\": \"5689\",\n    \"description\": \"the lady in the black jacket is waving and eating at the same time.\"\n  },\n  {\n    \"video_name\": \"tumblr_naksxseedC1t2twpuo1_250\",\n    \"question\": \"what is the color of the cooler?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3791\",\n    \"key\": \"51394\",\n    \"description\": \"a shirtless man raises a red cooler over his head and empties water on himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1jgl7aMz1slj978o1_400\",\n    \"question\": \"what is jumping up trying to catch an animal?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50411\",\n    \"key\": \"95139\",\n    \"description\": \"a frog jumping up trying to catch an animal.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p8n1ZBv51txwzheo1_250\",\n    \"question\": \"what is the man talking and drinking?\",\n    \"answer\": \"beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12967\",\n    \"key\": \"23084\",\n    \"description\": \"a man is talking and drinking a beer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgkzeADl51rpsnyjo1_250\",\n    \"question\": \"how many blonde people are dancing in the back of a car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17856\",\n    \"key\": \"3928\",\n    \"description\": \"two blonde people are dancing in the back of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7kptWdUh1txx0lfo1_500\",\n    \"question\": \"how many men are smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31650\",\n    \"key\": \"62133\",\n    \"description\": \"two men are smiling and one has his arm around the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk0daewIku1qhhc4qo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38546\",\n    \"key\": \"72486\",\n    \"description\": \"a man wearing a black jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncu4rpEvUP1qkqucao1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11520\",\n    \"key\": \"66552\",\n    \"description\": \"a guy in a white shirt turns his head and winks.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngiqj7Yelt1qfqktro1_400\",\n    \"question\": \"what is racing down the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39577\",\n    \"key\": \"60770\",\n    \"description\": \"the white car is racing down the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbx8q1KV9e1rwdmvno1_500\",\n    \"question\": \"what is the color of the flower?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26203\",\n    \"key\": \"26083\",\n    \"description\": \"a guy is sniffing a red flower and a white flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_njs6zrrNmC1qimid5o1_250\",\n    \"question\": \"how many girls are talking and laughing while wearing head bands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29108\",\n    \"key\": \"4029\",\n    \"description\": \"two girls are talking and laughing while wearing head bands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncizcaTsv91ry3jfko1_500\",\n    \"question\": \"where are two people and one of them is moving around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35923\",\n    \"key\": \"75527\",\n    \"description\": \"two people are in a room and one of them is moving around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nco9msTfTi1qhtk98o1_400\",\n    \"question\": \"what chases the man backwards behind a man talking?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11613\",\n    \"key\": \"71235\",\n    \"description\": \"a cardboard robot chases a man backwards behind a man talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrdt2dtPYV1r859g3o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20255\",\n    \"key\": \"10783\",\n    \"description\": \"a woman with long brown hair is singing while she lies down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrebnpJfWQ1qcr3i7o1_400\",\n    \"question\": \"what does the hand move from their case?\",\n    \"answer\": \"beakers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18400\",\n    \"key\": \"15722\",\n    \"description\": \"a hand moves two beakers from their case.\"\n  },\n  {\n    \"video_name\": \"tumblr_noecied66C1rujq2co1_500\",\n    \"question\": \"how many men are standing on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14447\",\n    \"key\": \"15003\",\n    \"description\": \"two men are standing on a stage and one of them is touching the other 's back with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjz5qZoly1sq0o5eo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA335\",\n    \"key\": \"78583\",\n    \"description\": \"a red haired woman is talking to another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8v8orVsL81rqn31vo1_250\",\n    \"question\": \"what is the girl in a hat singing and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35083\",\n    \"key\": \"73123\",\n    \"description\": \"a girl in a hat is singing and playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qidhSx5p1slwpo8o1_400\",\n    \"question\": \"what is the man doing and his cat tries to jump on him?\",\n    \"answer\": \"dance\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4873\",\n    \"key\": \"21388\",\n    \"description\": \"a man is doing the worm dance and his cat tries to jump on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy2ahhYsH1u3y1g4o1_250\",\n    \"question\": \"how many men have cream on their faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41634\",\n    \"key\": \"69520\",\n    \"description\": \"two men have cream on their faces and they are hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_nim1nvt1em1sqlieso1_400\",\n    \"question\": \"how many men are outside fighting on concrete?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24556\",\n    \"key\": \"93077\",\n    \"description\": \"two men are outside fighting on concrete.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba4pcH1vc1slj978o1_400\",\n    \"question\": \"what is running along the floor?\",\n    \"answer\": \"tortoise\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15930\",\n    \"key\": \"14475\",\n    \"description\": \"a tortoise is running along the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncizfxCBrD1tk8jwao1_400\",\n    \"question\": \"what is the cat using?\",\n    \"answer\": \"blower\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35587\",\n    \"key\": \"60971\",\n    \"description\": \"a cat is using a snow blower to blow snow as a human.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3lneXQNe1qi5ldlo1_500\",\n    \"question\": \"what is the woman running,\",\n    \"answer\": \"and another woman is running in black shorts ? pants\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37179\",\n    \"key\": \"58974\",\n    \"description\": \"a woman is running blue pants,\"\n  },\n  {\n    \"video_name\": \"tumblr_njm9ophE741t7an45o1_500\",\n    \"question\": \"how many people are kissing each other here?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47870\",\n    \"key\": \"76762\",\n    \"description\": \"two people are kissing each other here.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3c2iYlDB1uycnk7o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8924\",\n    \"key\": \"10289\",\n    \"description\": \"a boy is pulling a gray shirt over his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2rxyDWRp1sbow0fo1_500\",\n    \"question\": \"how many women together one is stroking her long hair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46153\",\n    \"key\": \"95622\",\n    \"description\": \"two women together one is stroking her long hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfuw7qwfzm1sjedcoo1_250\",\n    \"question\": \"what is the man with tattoos on his hands holding?\",\n    \"answer\": \"mike\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36193\",\n    \"key\": \"234\",\n    \"description\": \"a man with tattoos on his hands is holding a mike.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx9eiAV6R1tfs6x6o1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14414\",\n    \"key\": \"67714\",\n    \"description\": \"woman black is smoking and moving his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_npaw4iQKzd1u6iefyo1_500\",\n    \"question\": \"what does the black car leave?\",\n    \"answer\": \"marks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32303\",\n    \"key\": \"76767\",\n    \"description\": \"a black car leaves skid marks as it spins out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhcw0xEiow1rmtwl3o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34781\",\n    \"key\": \"9050\",\n    \"description\": \"a woman in a blue hat spins round,\"\n  },\n  {\n    \"video_name\": \"tumblr_nogkhlzgRK1uvi76ao1_500\",\n    \"question\": \"how many men hugged each other as a greeting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45464\",\n    \"key\": \"62375\",\n    \"description\": \"two men hugged each other as a greeting.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9j6u0SS061ri0wzfo1_400\",\n    \"question\": \"what pushes the black cat away with its back feet?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20086\",\n    \"key\": \"39368\",\n    \"description\": \"a tabby cat pushes a black cat away with its back feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1h818Si01tlk1ano1_250\",\n    \"question\": \"what is the color of the color?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32969\",\n    \"key\": \"7880\",\n    \"description\": \"a cat white black color is jumping and moving his tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_n980oaEVwU1t9r6nmo1_1280\",\n    \"question\": \"what are laying on top of the counter top?\",\n    \"answer\": \"keys\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29653\",\n    \"key\": \"36035\",\n    \"description\": \"six keys are laying on top of the counter top.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0rsx4U7o1tqwtb6o1_400\",\n    \"question\": \"what is flying over an ocean or another large body of water?\",\n    \"answer\": \"spaceship\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3145\",\n    \"key\": \"36945\",\n    \"description\": \"a spaceship is flying over an ocean or another large body of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbpfsFRRF1rcl5ljo1_500\",\n    \"question\": \"what is the smiling woman holding?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22320\",\n    \"key\": \"48746\",\n    \"description\": \"a smiling woman is holding a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1flazV921remizro1_400\",\n    \"question\": \"how many young man in red hats and outfits are singing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11811\",\n    \"key\": \"21549\",\n    \"description\": \"three young man in red hats and outfits are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimutq2SO61tjd11mo1_500\",\n    \"question\": \"how many person rides does there 's a slope on a snowboard?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10596\",\n    \"key\": \"75088\",\n    \"description\": \"there 's one person rides a slope on a snowboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5479yc0v1suhp97o1_500\",\n    \"question\": \"what is wind blowing away?\",\n    \"answer\": \"balloon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9973\",\n    \"key\": \"59776\",\n    \"description\": \"wind is blowing a red balloon away while turning pages on a book.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakixrREyk1sq4i6bo1_400\",\n    \"question\": \"where did the woman stand looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42973\",\n    \"key\": \"58594\",\n    \"description\": \"a woman stood looking at herself in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejxcpZ7Tn1tbo2gbo1_400\",\n    \"question\": \"what is enduring an attack from a puppy?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28057\",\n    \"key\": \"48764\",\n    \"description\": \"a gray tabby cat is enduring an attack from a puppy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng476zEkYt1s7qa4ao1_500\",\n    \"question\": \"how many singers with microphones in their hands are waving their arms?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12523\",\n    \"key\": \"99952\",\n    \"description\": \"two singers with microphones in their hands are waving their arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9zjlheTF1tua54co1_400\",\n    \"question\": \"how many boys use their hands to drum against their thighs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27640\",\n    \"key\": \"62561\",\n    \"description\": \"two boys use their hands to drum against their thighs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4pc6U2ib1rmvdlro1_400\",\n    \"question\": \"what is catching the fish right from the water?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46839\",\n    \"key\": \"31969\",\n    \"description\": \"a bird is catching a fish right from the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5tob8U6W1rsdx8zo1_250\",\n    \"question\": \"how many men are celebrating and joking around together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17741\",\n    \"key\": \"36538\",\n    \"description\": \"three men are celebrating and joking around together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxhsp8ug21s6zpepo1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29806\",\n    \"key\": \"68620\",\n    \"description\": \"a white dog kicks its legs while laying on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4vryXuiR1u9o6qbo1_400\",\n    \"question\": \"what does the woman open?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23914\",\n    \"key\": \"19008\",\n    \"description\": \"a woman opens her jacket revealing her white dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndz0m09qvM1qmy2v2o1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20930\",\n    \"key\": \"49927\",\n    \"description\": \"a white girl with white dress is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_naeyc6yQWy1tahfdeo1_250\",\n    \"question\": \"how many animal is playing so cute in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20204\",\n    \"key\": \"56593\",\n    \"description\": \"two animal is playing so cute in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxrp43ATC1u7mpzto1_500\",\n    \"question\": \"what is the woman opening?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42018\",\n    \"key\": \"83466\",\n    \"description\": \"a woman is opening the closet door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrf04cgRUC1ub19xmo1_400\",\n    \"question\": \"what is the color of the object?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43159\",\n    \"key\": \"52346\",\n    \"description\": \"someone places a green object in front of a tabby cat and the cat looks up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1j3muZiy1sn085so1_400\",\n    \"question\": \"where is the young man walking.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15309\",\n    \"key\": \"81036\",\n    \"description\": \"a young man is walking in the hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyrftUORo1u86zz3o1_250\",\n    \"question\": \"what is the boy with bright blue eyes wearing?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7710\",\n    \"key\": \"21675\",\n    \"description\": \"a boy with bright blue eyes is wearing headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_njnpzo4UG21t41q8xo1_400\",\n    \"question\": \"what is the color of the jumper?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21334\",\n    \"key\": \"29838\",\n    \"description\": \"a woman wearing a red jumper is wearing tiger paint on her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfaseo5Cku1txtsyso1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30771\",\n    \"key\": \"80753\",\n    \"description\": \"a white man is giving looks to another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj9smLJW61tb2khbo1_250\",\n    \"question\": \"how many shirtless men are walking outside together,\",\n    \"answer\": \"when one man lays the other man down ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44951\",\n    \"key\": \"46323\",\n    \"description\": \"two shirtless men are walking outside together,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vh2js6zv1t1j5ogo1_250\",\n    \"question\": \"what is the color of the people?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37824\",\n    \"key\": \"44032\",\n    \"description\": \"a group of people in black are using a harness to get into a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n922rsMb261te2f6lo1_400\",\n    \"question\": \"what is struggling to walk with larger elephants?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48174\",\n    \"key\": \"82171\",\n    \"description\": \"a baby elephant is struggling to walk with larger elephants.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflzmwpuPQ1tigbm3o1_400\",\n    \"question\": \"how many men greet each other with a hand shake?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11930\",\n    \"key\": \"59344\",\n    \"description\": \"two men greet each other with a hand shake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6tq0KVmP1tx8mn0o1_400\",\n    \"question\": \"what is the color of the motorbike?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31432\",\n    \"key\": \"78271\",\n    \"description\": \"a green motorbike is skidding off the corner of a racetrack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee7hlohYU1tx8mn0o1_400\",\n    \"question\": \"what is slowly turning the corner on a wet race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22208\",\n    \"key\": \"52719\",\n    \"description\": \"a race car is slowly turning a corner on a wet race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbs4h5k8N1u38l69o1_400\",\n    \"question\": \"how many people in a horse costume,\",\n    \"answer\": \"are dancing on a stage while the crowd cheers ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43452\",\n    \"key\": \"31651\",\n    \"description\": \"two people in a horse costume,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkajbX6dP1tx8mn0o1_400\",\n    \"question\": \"what is trying to pass each other?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48628\",\n    \"key\": \"78352\",\n    \"description\": \"two rally car trying to pass each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_mzrateYSFB1qii5pwo3_r1_400\",\n    \"question\": \"what is the color of the headphones?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51546\",\n    \"key\": \"35362\",\n    \"description\": \"a girl wearing a set of white headphones is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0n8ksRhS1u25ovvo1_400\",\n    \"question\": \"what is speed along a city street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1482\",\n    \"key\": \"63631\",\n    \"description\": \"a blue car is speed along a city street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nculypGc871u0x3uvo1_500\",\n    \"question\": \"what is the boy with red hair sitting in a chair and playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26610\",\n    \"key\": \"69278\",\n    \"description\": \"a boy with red hair is sitting in a chair and playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbreirpFfv1qdxmh0o1_400\",\n    \"question\": \"what is the color of the couch?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49431\",\n    \"key\": \"80306\",\n    \"description\": \"a man is sitting on a brown couch while a woman is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjptfMtGh1u83xiro1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43096\",\n    \"key\": \"40820\",\n    \"description\": \"a person in a suit and a blue shirt is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9i5995JjC1tefuq0o1_250\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45482\",\n    \"key\": \"10779\",\n    \"description\": \"a person wearing a black outfit and a golden necklace is looking at a mobile phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hseziTAg1rk979lo1_250\",\n    \"question\": \"what is the boy performing?\",\n    \"answer\": \"bomb\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24722\",\n    \"key\": \"4192\",\n    \"description\": \"a boy is performing a photo bomb.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cbjlJbp01tf6zmyo1_250\",\n    \"question\": \"what is the color of the van?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10276\",\n    \"key\": \"1305\",\n    \"description\": \"a man stands next to a white van and smiles to the person next to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4kuuZpVa1rlngqxo1_400\",\n    \"question\": \"what is the boy using and wearing headphones?\",\n    \"answer\": \"computer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36724\",\n    \"key\": \"62540\",\n    \"description\": \"a boy is using a computer and wearing headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndt9ct6TaS1th7zg4o1_250\",\n    \"question\": \"how many man is playing with another mans shirt?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9578\",\n    \"key\": \"1843\",\n    \"description\": \"one man is playing with another mans shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7ghkx0rA1r91wsno1_500\",\n    \"question\": \"how many men walk on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9490\",\n    \"key\": \"88364\",\n    \"description\": \"two men walk on stage and one holds a flower in his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemtylU1ek1sspq5qo1_250\",\n    \"question\": \"what is the man in black sweater smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37070\",\n    \"key\": \"32816\",\n    \"description\": \"a man in black sweater is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_necxqcJTa91tfeeomo1_250\",\n    \"question\": \"what is the young man in black dancing and lifting up?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2331\",\n    \"key\": \"2075\",\n    \"description\": \"a young man in black is dancing and lifting up his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrb0jsciFl1rutckfo1_400\",\n    \"question\": \"what is the guy with the blond hair and dark eyebrows smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17823\",\n    \"key\": \"42380\",\n    \"description\": \"the guy with the blond hair and dark eyebrows is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkxskmh3h1rlakuxo1_500\",\n    \"question\": \"how many men are fake boxing at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27644\",\n    \"key\": \"95997\",\n    \"description\": \"two men are fake boxing at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkh1k0vBMX1thjunio1_400\",\n    \"question\": \"where are the guys,\",\n    \"answer\": \"they start to head bang . ? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44707\",\n    \"key\": \"60945\",\n    \"description\": \"the guys are in the car,\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzz2eyFYT1tvo8x5o1_500\",\n    \"question\": \"how many men are dancing inside of the car,\",\n    \"answer\": \"then one blows confetti into the air ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6629\",\n    \"key\": \"60863\",\n    \"description\": \"two men are dancing inside of a car,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pwmrX2ZE1tfhnexo1_400\",\n    \"question\": \"what is the man spinning?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19446\",\n    \"key\": \"93372\",\n    \"description\": \"a man is spinning a soccer ball then setting it on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwb3012Rt1tdkk34o1_250\",\n    \"question\": \"how many girls is this image of dancing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6004\",\n    \"key\": \"41613\",\n    \"description\": \"this image is of two girls dancing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yargKVPA1ra5tilo1_500\",\n    \"question\": \"what is the color of the shoes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17790\",\n    \"key\": \"88389\",\n    \"description\": \"a young lady with white shoes and a jean jacket on is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyqaiUM971u4n9a8o1_400\",\n    \"question\": \"how many soldiers are speaking watched by other ones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14474\",\n    \"key\": \"48748\",\n    \"description\": \"two soldiers are speaking watched by other ones.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfxdnLORb1rmy96xo1_500\",\n    \"question\": \"how many people are fighting each other in a parking lot?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29467\",\n    \"key\": \"97235\",\n    \"description\": \"two people are fighting each other in a parking lot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmdmzflNl1qdpugqo1_400\",\n    \"question\": \"what is the young man rapping and climbing?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31569\",\n    \"key\": \"82072\",\n    \"description\": \"a young man is rapping and climbing some stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepesrn0pb1r44co8o1_250\",\n    \"question\": \"where is the guy on stage,\",\n    \"answer\": \"sitting down , when someone else steps up and spins the chair around . ? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA45178\",\n    \"key\": \"19831\",\n    \"description\": \"a guy on stage,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8hdf8Ks61s8gc8po1_500\",\n    \"question\": \"where is the young man singing.\",\n    \"answer\": \"? microphone\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11800\",\n    \"key\": \"49426\",\n    \"description\": \"a young man is singing in a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkwncNAQg1u323uto1_500\",\n    \"question\": \"what is the color of the lips?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9782\",\n    \"key\": \"80350\",\n    \"description\": \"a woman with red lips is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5yquethl1rcl2ewo1_1280\",\n    \"question\": \"what is the color of the everyone?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40366\",\n    \"key\": \"82834\",\n    \"description\": \"the black man amazed everyone with his dance moves.\"\n  },\n  {\n    \"video_name\": \"tumblr_njavyfLo1J1u9268ao1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5540\",\n    \"key\": \"9220\",\n    \"description\": \"a man who is wearing all black walks forward in front of a crowd of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9afdIiWg1qk3bmno1_400\",\n    \"question\": \"what is the color of the skateboarder?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23295\",\n    \"key\": \"63845\",\n    \"description\": \"a skateboarder,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfux46GbgX1snu2seo1_400\",\n    \"question\": \"what is sitting in the snow outside?\",\n    \"answer\": \"house\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31514\",\n    \"key\": \"919\",\n    \"description\": \"a house is sitting in the snow outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4wp3CmCr1u54jjao1_500\",\n    \"question\": \"what is the young man wearing and keeping a finger to his mouth?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34092\",\n    \"key\": \"86239\",\n    \"description\": \"a young man is wearing sunglasses and keeping a finger to his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_njzf9iYaNE1tul4jlo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20220\",\n    \"key\": \"20807\",\n    \"description\": \"a man is wearing a blue jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsrf7PNZs1qe2thio1_500\",\n    \"question\": \"what is the color of the hose?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27746\",\n    \"key\": \"98734\",\n    \"description\": \"a white hose ran and jumped over a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q38bvjRB1tg6xino1_250\",\n    \"question\": \"what is the woman eating and waving at someone?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13587\",\n    \"key\": \"77367\",\n    \"description\": \"a woman is eating a hot dog and waving at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8w0sTSKh1t85yovo1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3662\",\n    \"key\": \"33613\",\n    \"description\": \"a girl with long hair and a long,\"\n  },\n  {\n    \"video_name\": \"tumblr_njy95umIRd1qddljdo1_400\",\n    \"question\": \"what did the guy speak and two woman lit with a giant lighter behind him?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5730\",\n    \"key\": \"32086\",\n    \"description\": \"a guy spoke and two woman lit a cigarette with a giant lighter behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin616fTBW1qzxjijo1_400\",\n    \"question\": \"what is the man wearing and yelling at something?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23198\",\n    \"key\": \"61330\",\n    \"description\": \"a man is wearing a hat and yelling at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrmv0Ds3t1tc97obo1_500\",\n    \"question\": \"what is the guy in a black dew rag holding while running and screaming?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11823\",\n    \"key\": \"71433\",\n    \"description\": \"a guy in a black dew rag is holding a dog while running and screaming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3tu3h9Yz1u1v0pco1_400\",\n    \"question\": \"what is the cat chasing?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23518\",\n    \"key\": \"88816\",\n    \"description\": \"a cat is chasing another cat that is stuck in a tube.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfipaisUIE1sqsp7io1_500\",\n    \"question\": \"what is the color of the suite?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29671\",\n    \"key\": \"71739\",\n    \"description\": \"group of person is walking with suite black.\"\n  },\n  {\n    \"video_name\": \"tumblr_nri0fojp0G1tx8mn0o1_400\",\n    \"question\": \"what are two cars driving and starts to burn?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36614\",\n    \"key\": \"55938\",\n    \"description\": \"two cars are driving and one car starts to burn.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvxbzwyrx1sgtg01o1_250\",\n    \"question\": \"what are dancing and the guy grabs one of their horns?\",\n    \"answer\": \"puppets\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15108\",\n    \"key\": \"3132\",\n    \"description\": \"puppets are dancing and the guy grabs one of their horns.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndywttSMPx1tsspsco6_500\",\n    \"question\": \"how many man is falling down?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47695\",\n    \"key\": \"44970\",\n    \"description\": \"two long hair men in black with helmet is holding two hand to fight and one man is falling down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjd7fSoIl1tgkdkbo1_400\",\n    \"question\": \"how many boxers is this image of fighting each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15871\",\n    \"key\": \"38290\",\n    \"description\": \"this image is of two boxers fighting each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlvobrJMp1tln8qzo1_400\",\n    \"question\": \"what does there 's running down a path in mountains?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9269\",\n    \"key\": \"65403\",\n    \"description\": \"there 's one horse running down a path in mountains.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuxofDUaP1trlo5to1_400\",\n    \"question\": \"what are entertainment being interviews by a FRAMEQAorter?\",\n    \"answer\": \"stars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40503\",\n    \"key\": \"48690\",\n    \"description\": \"two entertainment stars are being interviews by a FRAMEQAorter.\"\n  },\n  {\n    \"video_name\": \"tumblr_naaxsqAV0Y1sy6d0no1_500\",\n    \"question\": \"how many girls are hugging right on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47586\",\n    \"key\": \"96124\",\n    \"description\": \"two girls are hugging right on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivsjccx9w1r05qsbo1_400\",\n    \"question\": \"what are going around the racetrack when one car goes off into the dirt?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9583\",\n    \"key\": \"68322\",\n    \"description\": \"two cars are going around a racetrack when one car goes off into the dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2hv8gSF11tkxs3fo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11629\",\n    \"key\": \"28460\",\n    \"description\": \"a girl in an orange jacket is smiling,\"\n  },\n  {\n    \"video_name\": \"tumblr_nabrq7LYQP1qhkvg5o1_500\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15935\",\n    \"key\": \"72763\",\n    \"description\": \"a group of black men perform and sing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh1j8nYj1F1smwbflo1_400\",\n    \"question\": \"how many young men are fooling around in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52564\",\n    \"key\": \"29663\",\n    \"description\": \"two young men are fooling around in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq76iN8qX1u594gko1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43069\",\n    \"key\": \"48685\",\n    \"description\": \"a man with a black shirt is performing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n88tfbzgHU1rhy09eo1_500\",\n    \"question\": \"what is the white car entering?\",\n    \"answer\": \"garage\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34397\",\n    \"key\": \"92569\",\n    \"description\": \"a white car is entering a garage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr076Dwdg1u09s33o1_500\",\n    \"question\": \"how many man is singing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13289\",\n    \"key\": \"60275\",\n    \"description\": \"one man is singing,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc28ihKPGx1slwrsuo1_400\",\n    \"question\": \"what is sitting on the chair at a table playing with a candle?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5979\",\n    \"key\": \"34010\",\n    \"description\": \"a cat is sitting on a chair at a table playing with a candle.\"\n  },\n  {\n    \"video_name\": \"tumblr_njb09bg4Jd1r82feqo1_400\",\n    \"question\": \"what is the person with pink hair playing to an audience?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29463\",\n    \"key\": \"38632\",\n    \"description\": \"a person with pink hair is playing guitar to an audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfz1vhvmt1t6ksnpo2_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6896\",\n    \"key\": \"70786\",\n    \"description\": \"a guy with black shirt is greeting at someone in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndtmkqevLp1r8ymulo1_500\",\n    \"question\": \"what is the man sitting at a piano is having?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34137\",\n    \"key\": \"70778\",\n    \"description\": \"a man sitting at a piano is having a stiff drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uzodf3Kx1srbyoyo1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7375\",\n    \"key\": \"77918\",\n    \"description\": \"a white wrestler jumps onto a black guy and gets pushed off then jumps back on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbze7q65N1s6zpepo1_500\",\n    \"question\": \"what is swimming through the water with ease?\",\n    \"answer\": \"shark\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9890\",\n    \"key\": \"65465\",\n    \"description\": \"the large shark is swimming through the water with ease.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwsjxjEwY1tpg4boo1_500\",\n    \"question\": \"what is surfboarding with cameras all around it?\",\n    \"answer\": \"pig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38172\",\n    \"key\": \"80906\",\n    \"description\": \"a pig is surfboarding with cameras all around it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl72mqPLe1rvltxro1_500\",\n    \"question\": \"what is two people playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39380\",\n    \"key\": \"23929\",\n    \"description\": \"two people are dancing on stage and someone is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2j9ov5zN1u4v3ypo1_250\",\n    \"question\": \"where is the kitty cat climbing up bars.\",\n    \"answer\": \"? closet\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47598\",\n    \"key\": \"155\",\n    \"description\": \"a kitty cat is climbing up bars in a closet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4cexoiPR1ste7mro1_r1_500\",\n    \"question\": \"how many men are staring intently at nothing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21391\",\n    \"key\": \"67029\",\n    \"description\": \"two men are staring intently at nothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6z38GkkR1tmbbaro1_400\",\n    \"question\": \"what is chasing another cat through the door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49755\",\n    \"key\": \"80311\",\n    \"description\": \"a cat is chasing another cat through the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesls65ifv1qj1s5io1_400\",\n    \"question\": \"how many orange color machines are fighting with swords?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7254\",\n    \"key\": \"80347\",\n    \"description\": \"two orange color machines are fighting with swords.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd12nuiWSa1tuatvvo1_500\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39457\",\n    \"key\": \"45592\",\n    \"description\": \"a female skater in a blue outfit is doing a triple jump on the ice.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdd5izFsK1s9tznyo1_400\",\n    \"question\": \"what is the dirty man smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34641\",\n    \"key\": \"84073\",\n    \"description\": \"a dirty man is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxr8vpXlj1tlstgdo1_400\",\n    \"question\": \"where is the girl turn off her head.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19158\",\n    \"key\": \"94305\",\n    \"description\": \"a girl is turn off her head in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoqajrYQm1t0cf9qo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42257\",\n    \"key\": \"89144\",\n    \"description\": \"a man in a blue jacket licks his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni103vj3Vu1u86d86o1_500\",\n    \"question\": \"how many people are eating ice cream together and kissing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37442\",\n    \"key\": \"96163\",\n    \"description\": \"two people are eating ice cream together and kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8lnh1FJTf1tgkdkbo1_500\",\n    \"question\": \"how many rodents are sitting on top of a circular object?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2828\",\n    \"key\": \"38863\",\n    \"description\": \"two rodents are sitting on top of a circular object.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebsgpCK4u1u1j0hao1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36821\",\n    \"key\": \"42507\",\n    \"description\": \"a man in a blue t-shirt is listening and then turns around quickly.\"\n  },\n  {\n    \"video_name\": \"tumblr_necxqcJTa91tfeeomo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3174\",\n    \"key\": \"2075\",\n    \"description\": \"a young man in black is dancing and lifting up his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlmnuI9q01ti9lxjo1_500\",\n    \"question\": \"where is the person driving and shifting from the second to third gear.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14607\",\n    \"key\": \"71165\",\n    \"description\": \"a person is driving in a car and shifting from the second to third gear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlfwt2Wjg1rs94oxo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38413\",\n    \"key\": \"35289\",\n    \"description\": \"a man with a red striped shirt is blowing a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmvfdO8l1tidcnvo1_400\",\n    \"question\": \"what is racing across some open countryside?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30918\",\n    \"key\": \"64293\",\n    \"description\": \"a horse is racing across some open countryside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4h904IAw1r8zm0oo1_500\",\n    \"question\": \"what is the color of the tiger?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2619\",\n    \"key\": \"39874\",\n    \"description\": \"a white tiger is swimming under water to catch a shell.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne35uinLzV1tdjuqvo1_500\",\n    \"question\": \"what is running sees the person with long hair and runs away?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41291\",\n    \"key\": \"49418\",\n    \"description\": \"a car is running sees a person with long hair and runs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nby8fzSw431tkpzw0o1_400\",\n    \"question\": \"what stretches its legs on a couch?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41560\",\n    \"key\": \"80393\",\n    \"description\": \"a cat stretches its legs on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rl19t03X1tiyrq0o1_400\",\n    \"question\": \"what is the woman holding and walking down a stage?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32536\",\n    \"key\": \"65717\",\n    \"description\": \"a woman is holding a microphone and walking down a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9629yoi9z1tb9kmwo1_250\",\n    \"question\": \"how many boys are posing with funny expressions?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30028\",\n    \"key\": \"49574\",\n    \"description\": \"four boys are posing with funny expressions.\"\n  },\n  {\n    \"video_name\": \"tumblr_naeiiukOaI1qzm0hso1_400\",\n    \"question\": \"what is playing with the helicopter toy in a room?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21835\",\n    \"key\": \"76103\",\n    \"description\": \"a cat is playing with a helicopter toy in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvhzh2Nrp1u2bd00o1_400\",\n    \"question\": \"what is the woman modeling on a stage?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8819\",\n    \"key\": \"32001\",\n    \"description\": \"a woman is modeling a white dress on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncep6g3gEo1tik3sgo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40342\",\n    \"key\": \"99919\",\n    \"description\": \"the girl in the black hat sheepishly smiles and turns her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_net9q3fbJj1rxd60qo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32014\",\n    \"key\": \"38852\",\n    \"description\": \"a man wearing a black hat is removing a white hat from the man sitting next to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8rs94sSj1tcot63o1_250\",\n    \"question\": \"what is the rock performer using?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9712\",\n    \"key\": \"13953\",\n    \"description\": \"a rock performer is using multiple drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng7veio2xj1siy4hto1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5403\",\n    \"key\": \"26556\",\n    \"description\": \"a boy with dark brown hair wears white and black and reaches back to hit his friend and then smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nffzhaqPyk1tkoeqqo1_500\",\n    \"question\": \"what is the young man eating food and wearing?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52085\",\n    \"key\": \"95407\",\n    \"description\": \"a young man is eating food and wearing a warm coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7eo8eENh1r3vh84o1_400\",\n    \"question\": \"what is the color of the peppers?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18174\",\n    \"key\": \"58711\",\n    \"description\": \"a man and a woman chop green peppers together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ok1dVbHM1tbg9d2o1_400\",\n    \"question\": \"what is the man eating with chop sticks?\",\n    \"answer\": \"noodles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22009\",\n    \"key\": \"96916\",\n    \"description\": \"a man is eating noodles with chop sticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3arfcvho1tunar3o1_250\",\n    \"question\": \"how many women are fighting each other in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31221\",\n    \"key\": \"4217\",\n    \"description\": \"two women are fighting each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_np6excSfZc1uuxd1yo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45206\",\n    \"key\": \"54545\",\n    \"description\": \"a man in a purple shirt walks in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh02lkJR1E1rit4woo1_400\",\n    \"question\": \"what is the boy in a sweater holding?\",\n    \"answer\": \"lemon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39663\",\n    \"key\": \"58244\",\n    \"description\": \"a boy in a sweater is holding a lemon.\"\n  },\n  {\n    \"video_name\": \"tumblr_n977ivF2qU1two872o1_500\",\n    \"question\": \"how many men fall out of an air plane toward the ground?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23460\",\n    \"key\": \"55789\",\n    \"description\": \"two men fall out of an air plane toward the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7o2jI7dC1tztcuxo1_500\",\n    \"question\": \"how many people are holding each others hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4945\",\n    \"key\": \"91868\",\n    \"description\": \"two people are holding each others hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9066tnq0A1tx8mn0o1_400\",\n    \"question\": \"what is driving down the track with a blown out tire?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA896\",\n    \"key\": \"78618\",\n    \"description\": \"a race car is driving down the track with a blown out tire.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowzu5MZZg1s3att3o1_250\",\n    \"question\": \"what is the color of the juice?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27902\",\n    \"key\": \"14921\",\n    \"description\": \"orange juice is being poured into a glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3iivXYey1u7lrdno1_500\",\n    \"question\": \"what flies out from under the big rig truck on the road?\",\n    \"answer\": \"tire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31325\",\n    \"key\": \"91155\",\n    \"description\": \"a tire flies out from under a big rig truck on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_no67m1t7ja1qa1uxao1_500\",\n    \"question\": \"what is putting the piece of cake into his mouth?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23720\",\n    \"key\": \"52522\",\n    \"description\": \"a pop star is putting a piece of cake into his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vuv0Bgll1ticpqdo1_400\",\n    \"question\": \"how many men frolic and then give the hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41575\",\n    \"key\": \"57264\",\n    \"description\": \"two men frolic and then give a hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_niw1j3KkFZ1u4enpoo1_400\",\n    \"question\": \"how many guys are in the group and sitting down?\",\n    \"answer\": \"six\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4456\",\n    \"key\": \"62893\",\n    \"description\": \"six guys are in a group and sitting down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvrqo2xmn1u9okrxo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23219\",\n    \"key\": \"28927\",\n    \"description\": \"the lady is smiling while wearing a white shirt and a bow tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgusgkUT91s2ufpuo1_400\",\n    \"question\": \"how many young man rubs his head on another man 's head?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51904\",\n    \"key\": \"32559\",\n    \"description\": \"one young man rubs his head on another man 's head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbadfkbZvN1tl0ko9o1_400\",\n    \"question\": \"what is sitting in the window and them jumps out onto a table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40475\",\n    \"key\": \"38032\",\n    \"description\": \"a cat is sitting in a window and them jumps out onto a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafziwG2uz1tvfoj7o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33530\",\n    \"key\": \"17593\",\n    \"description\": \"a woman wearing a black top and white pants,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndob2pt0931tx8mn0o1_400\",\n    \"question\": \"what loses control of his vehicle and crashes?\",\n    \"answer\": \"driver\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18282\",\n    \"key\": \"52735\",\n    \"description\": \"a motorcycle driver loses control of his vehicle and crashes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1o37byzo1tkso41o1_400\",\n    \"question\": \"what is speeding out of control and onlookers flee?\",\n    \"answer\": \"bus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36460\",\n    \"key\": \"43357\",\n    \"description\": \"a bus is speeding out of control and onlookers flee.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnu4rW2T61u4xw0zo1_500\",\n    \"question\": \"where is the girl with black suit walking.\",\n    \"answer\": \"? hall\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA526\",\n    \"key\": \"100584\",\n    \"description\": \"a girl with black suit is walking in a hall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhezpoGPlg1s71nvbo1_500\",\n    \"question\": \"where is the girl moving backwards in the seat.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6811\",\n    \"key\": \"68103\",\n    \"description\": \"A girl in car is moving backwards in the seat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8gz0W3pf1qfnf9jo1_400\",\n    \"question\": \"what is the color of the pair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52590\",\n    \"key\": \"96220\",\n    \"description\": \"a guy in a white jump suit is holding up a white pair of underwear.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x3efkZCT1sjz75oo1_250\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41799\",\n    \"key\": \"437\",\n    \"description\": \"a boy is dressed in gray t-shirt wearing a hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nci4k1DWAs1tqbb2vo1_500\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50894\",\n    \"key\": \"87912\",\n    \"description\": \"a young man with black glasses is bowing and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng27qnu3bo1slj978o1_400\",\n    \"question\": \"what are the boy and his dad racing and the man does a wheelie and goes fast?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29561\",\n    \"key\": \"49266\",\n    \"description\": \"a boy and his dad are racing kids cars and the man does a wheelie and goes fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk79qfELqE1un13f6o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24935\",\n    \"key\": \"45651\",\n    \"description\": \"a man in a black hat is looking up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoxdqiJJs1tq4wu3o8_400\",\n    \"question\": \"how many women are sitting in front of a fiFRAMEQAlace?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43361\",\n    \"key\": \"77075\",\n    \"description\": \"two women are sitting in front of a fiFRAMEQAlace.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknr9xW0hU1u922jno2_400\",\n    \"question\": \"how many women in tutus are doing ballet?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31106\",\n    \"key\": \"78072\",\n    \"description\": \"two women in tutus are doing ballet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgriqXFec1slj978o1_500\",\n    \"question\": \"how many young males are talking to each other on the subway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6380\",\n    \"key\": \"25195\",\n    \"description\": \"two young males are talking to each other on the subway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2bhazRt01u1nko6o1_400\",\n    \"question\": \"what does the crowd watch running in a race?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41439\",\n    \"key\": \"28705\",\n    \"description\": \"a crowd watches a horse running in a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauhia4ADE1tfni3oo1_400\",\n    \"question\": \"what is the woman,\",\n    \"answer\": \"wearing , is sitting and doing something with her foot ? clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46749\",\n    \"key\": \"21503\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_napv6maUYc1tj33i6o1_250\",\n    \"question\": \"what did the man touch?\",\n    \"answer\": \"pants\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7899\",\n    \"key\": \"6173\",\n    \"description\": \"a man touches his pants while he slowly moves around.\"\n  },\n  {\n    \"video_name\": \"tumblr_niml4vDdxa1s43pimo1_500\",\n    \"question\": \"what are two guitarists playing together?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46109\",\n    \"key\": \"87715\",\n    \"description\": \"two guitarists are playing their guitars together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjkkdYkM51qdbvc2o1_400\",\n    \"question\": \"what is blown and the seeds fly into the air?\",\n    \"answer\": \"dandelion\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14610\",\n    \"key\": \"77320\",\n    \"description\": \"a dandelion is blown and the seeds fly into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnv3paZgju1tqq823o1_500\",\n    \"question\": \"what was opening while the man holding a lighting sword,\",\n    \"answer\": \"and two men with lighting swords want to fight with him ? door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13081\",\n    \"key\": \"96962\",\n    \"description\": \"the door was opening while a man holding a lighting sword,\"\n  },\n  {\n    \"video_name\": \"tumblr_niq18pqr9L1s6zpepo1_400\",\n    \"question\": \"what runs around on his hind legs punching his paws?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41547\",\n    \"key\": \"28033\",\n    \"description\": \"a cat runs around on his hind legs punching his paws.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb46i1oubh1ttls4yo1_500\",\n    \"question\": \"how many men are talking to each other outside?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7377\",\n    \"key\": \"100705\",\n    \"description\": \"two men are talking to each other outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_newajqyvYD1u3qnsjo1_250\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14690\",\n    \"key\": \"10392\",\n    \"description\": \"the girl is talking in front of a blue wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhh5j3uCN1tx8mn0o1_400\",\n    \"question\": \"what is driving steadily on the racetrack?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35756\",\n    \"key\": \"52689\",\n    \"description\": \"a race car is driving steadily on the racetrack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7jp1slnJ1u978z2o2_400\",\n    \"question\": \"what is this man with a blue shirt playing with other musician?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45267\",\n    \"key\": \"7617\",\n    \"description\": \"this man with a blue shirt is playing guitar with other musician.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2mhm38YD1qlsp57o1_400\",\n    \"question\": \"what wheel is turning?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24212\",\n    \"key\": \"2508\",\n    \"description\": \"a black car 's wheel is turning.\"\n  },\n  {\n    \"video_name\": \"tumblr_npn2byJFVG1tupttuo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20702\",\n    \"key\": \"40704\",\n    \"description\": \"a woman in a black dress and heavy motion gestured whilst walking forwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngio6fsQ8p1ssgyoro1_400\",\n    \"question\": \"what did the cat put on a hand and the hand petted the cat?\",\n    \"answer\": \"paw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49886\",\n    \"key\": \"2019\",\n    \"description\": \"a cat put its paw on a hand and the hand petted the cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nipn2lx2R71slj978o1_250\",\n    \"question\": \"where are three boys bouncing on a trampoline and one jumps high and gets caught.\",\n    \"answer\": \"? hoop\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA16353\",\n    \"key\": \"41152\",\n    \"description\": \"three boys bouncing on a trampoline and one jumps high and gets caught in a basketball hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_now3qv2rty1tgouwlo1_400\",\n    \"question\": \"what is the tiny turtle slowly eating?\",\n    \"answer\": \"treat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9227\",\n    \"key\": \"15794\",\n    \"description\": \"a tiny turtle is slowly eating its treat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhknb9MuDd1qldwwwo1_500\",\n    \"question\": \"what is charlie chan playing in front of a wall?\",\n    \"answer\": \"violin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38614\",\n    \"key\": \"22557\",\n    \"description\": \"charlie chan is playing a violin in front of a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2cngaaiL1u3a0b7o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16756\",\n    \"key\": \"48058\",\n    \"description\": \"a woman wearing a red dress is holding a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkguu7jdxL1u7a4duo1_250\",\n    \"question\": \"how many men are kissing each other with passion?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30659\",\n    \"key\": \"47966\",\n    \"description\": \"two men are kissing each other with passion.\"\n  },\n  {\n    \"video_name\": \"tumblr_niv7ivzNmF1u5d5ryo1_400\",\n    \"question\": \"what is rubbing up against some furniture?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9874\",\n    \"key\": \"1080\",\n    \"description\": \"a small ginger cat is rubbing up against some furniture.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndjfgohCV31tl8x1eo2_r1_1280\",\n    \"question\": \"how many boys are walking and jumping down the hallway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6154\",\n    \"key\": \"90198\",\n    \"description\": \"the two boys are walking and jumping down the hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh8tesencv1td9z91o1_500\",\n    \"question\": \"what is the finger tapping on a smart phone?\",\n    \"answer\": \"show\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30291\",\n    \"key\": \"33614\",\n    \"description\": \"a finger is tapping a picture slide show on a smart phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nplgqa6TnF1su25v0o1_400\",\n    \"question\": \"what is the baby in a white coat petting?\",\n    \"answer\": \"lamb\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21743\",\n    \"key\": \"30934\",\n    \"description\": \"a baby in a white coat is petting a lamb.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakkmkV6lL1tfkgsfo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15749\",\n    \"key\": \"66429\",\n    \"description\": \"a young man in a red shirt is skateboarding down a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9es8cEtL1tc95klo1_400\",\n    \"question\": \"what is the color of the monkey?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46013\",\n    \"key\": \"77527\",\n    \"description\": \"in the jungle a reddish brown monkey does a strange dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9jajxPqO1tsl8rno1_500\",\n    \"question\": \"what is the young lady running and exercising up?\",\n    \"answer\": \"case\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50453\",\n    \"key\": \"93397\",\n    \"description\": \"a young lady is running and exercising up a stair case.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr6wu26Pe01qfqngko1_500\",\n    \"question\": \"what is the color of the dressing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9773\",\n    \"key\": \"48462\",\n    \"description\": \"a woman in a black dressing is walking slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfildjZ3hy1u4rk62o1_400\",\n    \"question\": \"what is posing for the commercial?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7163\",\n    \"key\": \"1174\",\n    \"description\": \"a pop star is posing for a commercial.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbj9u6QUIW1scotfso1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25254\",\n    \"key\": \"73287\",\n    \"description\": \"a person in a red shirt is doing a wheelie on a motorcycle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqihojL37Q1uzpx6mo1_400\",\n    \"question\": \"where do the man and woman dance come close together and the woman puts her arm around the man.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15473\",\n    \"key\": \"98795\",\n    \"description\": \"a man and woman dance in a large open room come close together and the woman puts her arm around the man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3soiLVEk1u07ae6o1_500\",\n    \"question\": \"what does the man in a suit and glasses grin and looks?\",\n    \"answer\": \"ways\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52353\",\n    \"key\": \"39247\",\n    \"description\": \"a man in a suit and glasses grins and looks side ways.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2chhNUDG1teh2mbo1_250\",\n    \"question\": \"what is the color of the headband?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26535\",\n    \"key\": \"14788\",\n    \"description\": \"the boy in a blue headband strokes his hair and tries to look cool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimsybmFR21tznw84o1_500\",\n    \"question\": \"where are two people dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19554\",\n    \"key\": \"63365\",\n    \"description\": \"two people are dancing fast in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvi0ekA7l1u2vc96o1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43294\",\n    \"key\": \"89821\",\n    \"description\": \"a woman raises her eyebrows and talks to a woman in a purple top.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7ys7Apj91t8s5t0o1_540\",\n    \"question\": \"what do five men sit in a semi-circle,\",\n    \"answer\": \"and one man throws ? hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11318\",\n    \"key\": \"81259\",\n    \"description\": \"five men sit in a semi-circle while a timer counts down,\"\n  },\n  {\n    \"video_name\": \"tumblr_nefradf58s1tu3ue8o1_500\",\n    \"question\": \"what is the man adjusting and staring?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45553\",\n    \"key\": \"4218\",\n    \"description\": \"a man is adjusting his black leather jacket and staring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfsqc8tKtS1rifrfzo1_500\",\n    \"question\": \"how many boy leans on the other and he pushes him off him?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42427\",\n    \"key\": \"96966\",\n    \"description\": \"two boys are signing something and the one boy leans on the other and he pushes him off him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjubnErtE1sh0wvgo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5082\",\n    \"key\": \"14412\",\n    \"description\": \"the man in the white shirt is standing with his hand in his pocket.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wgflENh81sv54yao1_400\",\n    \"question\": \"how many men is wearing black one is dancing while the other is watching?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23565\",\n    \"key\": \"57145\",\n    \"description\": \"two men wearing black one is dancing while the other is watching.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6ei1nNR71roqbapo1_250\",\n    \"question\": \"what does the person show to a man who then looks away?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35849\",\n    \"key\": \"15332\",\n    \"description\": \"a person shows a picture to a man who then looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_n810pw2rtt1qgii4so1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5596\",\n    \"key\": \"84268\",\n    \"description\": \"a white man with white shirt is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h6h9k9W21tiq723o1_500\",\n    \"question\": \"what is anchored in the dark port?\",\n    \"answer\": \"ship\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44101\",\n    \"key\": \"67239\",\n    \"description\": \"an old wooden ship is anchored in a dark port.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzvsya1WR1tfjrdno1_400\",\n    \"question\": \"what are two girls chewing and blowing bubbles?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43735\",\n    \"key\": \"31404\",\n    \"description\": \"two girls are chewing gum and blowing bubbles.\"\n  },\n  {\n    \"video_name\": \"tumblr_natpusTxxx1svos5ho1_400\",\n    \"question\": \"what does the person flick on stage?\",\n    \"answer\": \"pick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24756\",\n    \"key\": \"21396\",\n    \"description\": \"a person flicks his guitar pick on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfopjN3QK1ts7wbfo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34202\",\n    \"key\": \"26965\",\n    \"description\": \"a man in a black shirt is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtixhepsm1unru25o1_250\",\n    \"question\": \"what is the person riding and jumping?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46220\",\n    \"key\": \"42754\",\n    \"description\": \"a person is riding a skateboard and jumping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoj4fayWP1slj978o1_400\",\n    \"question\": \"what is not moving and sees the rat?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4228\",\n    \"key\": \"38644\",\n    \"description\": \"a cat is not moving and sees a rat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcd09xbXE1tdjuqvo1_400\",\n    \"question\": \"what is jumping up to catch something and falling short?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29967\",\n    \"key\": \"16291\",\n    \"description\": \"a cat is jumping up to catch something and falling short.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhsh3e8Cgq1r57bhho1_250\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28051\",\n    \"key\": \"16521\",\n    \"description\": \"a little baby is creeping forward on gray carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nov6tduqos1uvi3rjo1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34483\",\n    \"key\": \"54480\",\n    \"description\": \"a small brown dog is wearing large purple ears.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs3cjeort1t08ok1o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21580\",\n    \"key\": \"15340\",\n    \"description\": \"the man wearing a black shirt is having a discussion.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxqb2uFP81thmv2qo1_400\",\n    \"question\": \"what is trying to walk across the floor in shoes?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3714\",\n    \"key\": \"20689\",\n    \"description\": \"a dog is trying to walk across the floor in shoes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99x6g6den1tcuqh9o1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12189\",\n    \"key\": \"29633\",\n    \"description\": \"a white girl with yellow hair is drinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgro0kics1qd0g7ro1_500\",\n    \"question\": \"where does the sleepy man move his head around.\",\n    \"answer\": \"? hospital\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA37979\",\n    \"key\": \"83225\",\n    \"description\": \"a sleepy man in the hospital moves his head around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad41z4HEZ1to42nqo1_400\",\n    \"question\": \"how many people are sitting down acting awkwardly together?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20697\",\n    \"key\": \"75495\",\n    \"description\": \"four people are sitting down acting awkwardly together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhccwxLB7g1tigieto1_400\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25201\",\n    \"key\": \"76338\",\n    \"description\": \"a group of people are playing football,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk0917Mw5V1rdvsr8o1_400\",\n    \"question\": \"what is slowly dropping on the floor from her body?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2858\",\n    \"key\": \"2455\",\n    \"description\": \"a woman 's dress is slowly dropping on the floor from her body.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmidu9wwmu1urnbuuo1_250\",\n    \"question\": \"how many men are having the conversation in front of other men?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28509\",\n    \"key\": \"84514\",\n    \"description\": \"two men are having a conversation in front of other men.\"\n  },\n  {\n    \"video_name\": \"tumblr_nck4we3kAN1r4phxao1_400\",\n    \"question\": \"what is sleeping and is suddenly awoken?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30036\",\n    \"key\": \"91647\",\n    \"description\": \"a dog is sleeping and is suddenly awoken.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs46ihJuj1tdi3uyo1_250\",\n    \"question\": \"where does the man bite his fingernail.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1695\",\n    \"key\": \"47083\",\n    \"description\": \"a man bites his fingernail in a green room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbrltf1I31tx8mn0o1_400\",\n    \"question\": \"what raced and one drove off the road?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23335\",\n    \"key\": \"86057\",\n    \"description\": \"three cars raced and one drove off the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0urrvsyq1uaoej6o1_400\",\n    \"question\": \"what is jumping and lands head first in snow?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47064\",\n    \"key\": \"45806\",\n    \"description\": \"a fox is jumping and lands head first in snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdd1skPib1tkdu95o1_400\",\n    \"question\": \"what are fluttering around on the ground?\",\n    \"answer\": \"birds\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25221\",\n    \"key\": \"41753\",\n    \"description\": \"little birds are fluttering around on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nela0aVJkV1si2peso1_250\",\n    \"question\": \"what relaxes quietly in the cool bath?\",\n    \"answer\": \"hedgehog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33075\",\n    \"key\": \"53402\",\n    \"description\": \"a hedgehog relaxes quietly in a cool bath.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyvgluqf71tm0es2o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13264\",\n    \"key\": \"12524\",\n    \"description\": \"a white man with black shirt is embracing a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfflcuX90m1u25ovvo1_400\",\n    \"question\": \"what is slowly driving down an incline?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32941\",\n    \"key\": \"63666\",\n    \"description\": \"a car is slowly driving down an incline.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9larxUxd71sofft2o1_400\",\n    \"question\": \"how many young girls are in the room and hug each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49976\",\n    \"key\": \"79022\",\n    \"description\": \"two young girls are in a room and hug each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxno3rMQC1svbli1o1_250\",\n    \"question\": \"how many young boys are standing pretending to perform?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22098\",\n    \"key\": \"49641\",\n    \"description\": \"two young boys are standing pretending to perform.\"\n  },\n  {\n    \"video_name\": \"tumblr_npswm4R1kB1tk15f6o1_400\",\n    \"question\": \"how many kids are playing near with the fountain?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35300\",\n    \"key\": \"57097\",\n    \"description\": \"four kids are playing near with the fountain.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq9tgb73C1retsn4o1_500\",\n    \"question\": \"how many men are shaking there shoulders and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10829\",\n    \"key\": \"96116\",\n    \"description\": \"two men are shaking there shoulders and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n3j8kw9PbL1qdafpto1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27841\",\n    \"key\": \"22923\",\n    \"description\": \"a man with a tattoo takes off his gray tank top.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne7p2lftRW1tjvogto1_250\",\n    \"question\": \"where is the young lady with her midriff showing singing.\",\n    \"answer\": \"? bar\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33303\",\n    \"key\": \"8468\",\n    \"description\": \"the young lady with her midriff showing is singing in a bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwfzx0hL91tgkdkbo1_250\",\n    \"question\": \"what is the dog wearing and riding a scooter?\",\n    \"answer\": \"cape\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA188\",\n    \"key\": \"5671\",\n    \"description\": \"a dog is wearing a cape and riding a scooter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq27vij7191thx0k0o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35410\",\n    \"key\": \"63903\",\n    \"description\": \"a child with red shirt is drawing a pencil.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3jron62A1tyncywo1_400\",\n    \"question\": \"what is twisting its head around?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44385\",\n    \"key\": \"16529\",\n    \"description\": \"a cat is twisting its head around.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2k21xDU51shtuz8o1_250\",\n    \"question\": \"how many boys make peace signs and kiss faces together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19476\",\n    \"key\": \"73231\",\n    \"description\": \"two boys make peace signs and kiss faces together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xcp5NcIC1twhn6do1_250\",\n    \"question\": \"where is the pop star practicing.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32194\",\n    \"key\": \"2334\",\n    \"description\": \"a pop star is practicing in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfeov630X81u426jpo1_500\",\n    \"question\": \"how many woman are walking out into the crowd of people?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4093\",\n    \"key\": \"47850\",\n    \"description\": \"two woman are walking out into a crowd of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lq4ikwls1r77rooo1_400\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31355\",\n    \"key\": \"60423\",\n    \"description\": \"a boy wearing a black vest looks up.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwa03FGmo1u677wzo1_250\",\n    \"question\": \"what is the woman locking before leaving?\",\n    \"answer\": \"doors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41555\",\n    \"key\": \"53373\",\n    \"description\": \"the woman is locking the doors before leaving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9h3dC7Wb1u6bdo9o1_400\",\n    \"question\": \"how many people are dancing together in the restroom?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37519\",\n    \"key\": \"54185\",\n    \"description\": \"three people are dancing together in the restroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpaboUJNR1slw55qo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36899\",\n    \"key\": \"84104\",\n    \"description\": \"a man in a white shirt is falling off a board.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkus9cARZm1r2m293o1_400\",\n    \"question\": \"what is wearing a costume spins in circles?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9877\",\n    \"key\": \"26709\",\n    \"description\": \"a dog wearing a costume spins in circles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nplgqa6TnF1su25v0o1_400\",\n    \"question\": \"where is the child petting a sheep.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22655\",\n    \"key\": \"30934\",\n    \"description\": \"a child is petting a sheep in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyzo769BX1shllpeo1_400\",\n    \"question\": \"where are two guys looking and smiling.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43210\",\n    \"key\": \"29481\",\n    \"description\": \"two guys are looking and smiling in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9okijMTqj1s8thapo1_r1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52876\",\n    \"key\": \"5420\",\n    \"description\": \"a man wearing black clothing and black hair is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6bp2wUl71t7jda2o1_400\",\n    \"question\": \"what is playing with the lid on a wastebasket that spins when it hits it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35285\",\n    \"key\": \"71135\",\n    \"description\": \"a cat is playing with the lid on a wastebasket that spins when it hits it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqeuudSoy11trx1hko1_250\",\n    \"question\": \"how many little puppies is the young guy holding?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43024\",\n    \"key\": \"3071\",\n    \"description\": \"a young guy is holding two little puppies.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezyi4aEPA1srpb9po1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52143\",\n    \"key\": \"32511\",\n    \"description\": \"a woman with long black hair is pulling faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_npt6nbZPNj1uy69cso1_400\",\n    \"question\": \"how many men are hugging each other in front of everyone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25441\",\n    \"key\": \"5816\",\n    \"description\": \"two men are hugging each other in front of everyone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmazfr4MNp1uot1e7o1_400\",\n    \"question\": \"what is the man showing?\",\n    \"answer\": \"product\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51133\",\n    \"key\": \"60043\",\n    \"description\": \"a man is showing a new product.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndp39weJj11u1b7jeo1_500\",\n    \"question\": \"how many friends got scared by looking at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51506\",\n    \"key\": \"58650\",\n    \"description\": \"two friends got scared by looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1cdezKJt1t3jhfvo1_500\",\n    \"question\": \"how many men are sitting in theater seats and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30956\",\n    \"key\": \"100401\",\n    \"description\": \"two men are sitting in theater seats and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnu4rW2T61u4xw0zo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47046\",\n    \"key\": \"100584\",\n    \"description\": \"a girl with black suit is walking in a hall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k8xzjz181tiur4yo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17171\",\n    \"key\": \"12182\",\n    \"description\": \"a man white man with short hair is wearing a jacket and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y6tmnuQd1r5japgo1_400\",\n    \"question\": \"how many men talk speak spoke to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39503\",\n    \"key\": \"66394\",\n    \"description\": \"two men talk speak spoke to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6zm9GLDK1t7h8o0o1_400\",\n    \"question\": \"what is the soccer player running around a yellow pole?\",\n    \"answer\": \"circles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28122\",\n    \"key\": \"43353\",\n    \"description\": \"a soccer player is running circles around a yellow pole.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezlsfnXwi1tsbbfxo1_500\",\n    \"question\": \"what is the woman wearing black lingerie,\",\n    \"answer\": \"is throwing around the room ? clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50009\",\n    \"key\": \"54331\",\n    \"description\": \"a woman wearing black lingerie,\"\n  },\n  {\n    \"video_name\": \"tumblr_nie80c2ukN1tfcayso1_250\",\n    \"question\": \"what pull the carriage,\",\n    \"answer\": \"the clothes of the people catch on fire ? horses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11519\",\n    \"key\": \"21047\",\n    \"description\": \"the horses pull a carriage,\"\n  },\n  {\n    \"video_name\": \"tumblr_nct52sYe2r1u0sv5po1_500\",\n    \"question\": \"how many men try to high five each other but miss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4291\",\n    \"key\": \"95749\",\n    \"description\": \"two men try to high five each other but miss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhfvae7keh1sqaamoo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6186\",\n    \"key\": \"100739\",\n    \"description\": \"a woman with long black hair is dancing in the wind.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqiquZx9u1tx8mn0o1_400\",\n    \"question\": \"what is driving really fast past the gray car?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11553\",\n    \"key\": \"65286\",\n    \"description\": \"a red car is driving really fast past a gray car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbzkb341bX1s71nvbo1_500\",\n    \"question\": \"how many women is the man riding on a shopping cart?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30695\",\n    \"key\": \"60746\",\n    \"description\": \"a man is riding two women on a shopping cart and then they crash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nraf01MZL21scwzvxo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36811\",\n    \"key\": \"101671\",\n    \"description\": \"a bald man in black is rising one hand up and walking with closing eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndpbhmZK6q1s4kr0bo1_250\",\n    \"question\": \"what is the man playing and dancing around?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2524\",\n    \"key\": \"5831\",\n    \"description\": \"a man is playing a guitar and dancing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_naopjceBs01rar35do1_250\",\n    \"question\": \"how many guys is standing next to each other,\",\n    \"answer\": \"all , have the same type of hair style ? three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22837\",\n    \"key\": \"5248\",\n    \"description\": \"three guys standing next to each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w54dvKdg1tfn460o1_400\",\n    \"question\": \"what does the man in a blue suit use?\",\n    \"answer\": \"whip\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8624\",\n    \"key\": \"98240\",\n    \"description\": \"a man in a blue suit uses a whip.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ydahG9zK1s0sqneo1_250\",\n    \"question\": \"what are flashing of the woman with different hair cuts?\",\n    \"answer\": \"pictures\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4078\",\n    \"key\": \"5358\",\n    \"description\": \"pictures are flashing of a woman with different hair cuts.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxqoiyeD01tjjhllo1_250\",\n    \"question\": \"what is the man spraying at a woman?\",\n    \"answer\": \"hose\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15321\",\n    \"key\": \"23433\",\n    \"description\": \"a man is spraying a hose at a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3riuu61q1rojld8o1_400\",\n    \"question\": \"what is actually the dog that gets up and runs away?\",\n    \"answer\": \"mop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50460\",\n    \"key\": \"79952\",\n    \"description\": \"a mop is actually a dog that gets up and runs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_no5pqqrOds1ttyovyo1_400\",\n    \"question\": \"where is blue and bubbly water flowing.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24971\",\n    \"key\": \"64567\",\n    \"description\": \"blue and bubbly water is flowing in a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_mp8iegKjoB1qdu68lo1_400\",\n    \"question\": \"how many men are running away from something outside?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4727\",\n    \"key\": \"55380\",\n    \"description\": \"two men are running away from something outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngqsseRkvH1tr5tuwo1_400\",\n    \"question\": \"what is making the lot of dust on a track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38741\",\n    \"key\": \"50815\",\n    \"description\": \"a car is making a lot of dust on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_na3w2fhfSx1srbyoyo1_250\",\n    \"question\": \"how many guys are fighting in the boxing ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6116\",\n    \"key\": \"18118\",\n    \"description\": \"two guys are fighting in a boxing ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokwt1ZuPX1u5ha5do1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48530\",\n    \"key\": \"8577\",\n    \"description\": \"a person is wearing a yellow bee suit and trying to run up a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90myeHKcB1tu5l8qo1_400\",\n    \"question\": \"what is the half naked man bouncing off?\",\n    \"answer\": \"wall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43938\",\n    \"key\": \"20056\",\n    \"description\": \"a half naked man is bouncing off a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepj4rr5Sb1sht3fmo1_250\",\n    \"question\": \"what is the blond haired woman wearing sunglasses is holding?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32269\",\n    \"key\": \"86270\",\n    \"description\": \"a blond haired woman wearing sunglasses is holding a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_new6k2kNOi1tltnjco1_250\",\n    \"question\": \"where is an ugly person laughing sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51700\",\n    \"key\": \"24004\",\n    \"description\": \"an ugly person is laughing sitting in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb70faMADo1tgwlf5o1_250\",\n    \"question\": \"how many fingers does the man hold up as he walks by?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29562\",\n    \"key\": \"20159\",\n    \"description\": \"a man holds up his two fingers as he walks by.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jzweddcj1qdifbfo1_500\",\n    \"question\": \"what is falling asleep on the floor?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15429\",\n    \"key\": \"75198\",\n    \"description\": \"a puppy is falling asleep on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_na05z08opP1ry1g5io1_400\",\n    \"question\": \"how many men are walking together in the park?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49640\",\n    \"key\": \"17330\",\n    \"description\": \"two men are walking together in the park.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkux12i23M1tirdpvo1_400\",\n    \"question\": \"what is the color of the fabric?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23494\",\n    \"key\": \"96809\",\n    \"description\": \"a person pulls a black fabric all the way up their leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndigz7kBSR1tmmz91o1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32522\",\n    \"key\": \"33034\",\n    \"description\": \"a white guy against a wall is shrugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk90y1wTdg1sbompmo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41324\",\n    \"key\": \"58621\",\n    \"description\": \"a girl in a yellow dress is walking down a model runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_npjbm8zizK1txgyxzo1_500\",\n    \"question\": \"what is the girl fixing and blows a kiss?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28681\",\n    \"key\": \"83843\",\n    \"description\": \"a girl is fixing her hat and blows a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_noise3JpIW1toq0iso1_540\",\n    \"question\": \"how many women with weapons are battling in a snowstorm?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9954\",\n    \"key\": \"63270\",\n    \"description\": \"two women with weapons are battling in a snowstorm.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9siszhG1N1r6pekco1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9702\",\n    \"key\": \"9861\",\n    \"description\": \"a man wearing a white vest and black shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n949p2g4GF1tabm5fo1_500\",\n    \"question\": \"what are multiple people riding attached by rope?\",\n    \"answer\": \"bicycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10625\",\n    \"key\": \"67205\",\n    \"description\": \"multiple people are riding bikes attached by rope.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkg5leY4e21sof15vo1_500\",\n    \"question\": \"how many girls dressed in black are singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25475\",\n    \"key\": \"21834\",\n    \"description\": \"two girls dressed in black are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk91vx1EMO1su33lco1_400\",\n    \"question\": \"how many men are trying to listen to the fourth man?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44969\",\n    \"key\": \"63155\",\n    \"description\": \"three men are trying to listen to the fourth man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6ycl8B3R1snixmzo1_400\",\n    \"question\": \"what is the color of the dresses?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24970\",\n    \"key\": \"68918\",\n    \"description\": \"three women are walking with each other in white dresses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrqa6Swem1qzialoo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10656\",\n    \"key\": \"29128\",\n    \"description\": \"a woman in a purple dress is knocking over a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7olvZztW1rm1lhro1_400\",\n    \"question\": \"how many guy is singing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38818\",\n    \"key\": \"63697\",\n    \"description\": \"one guy is singing and everyone behind him falls to the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2oh2bSvK1tkpzw0o1_400\",\n    \"question\": \"what gets startled at the person moving their finger sending the cat flying backwards?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30860\",\n    \"key\": \"25145\",\n    \"description\": \"a small cat gets startled at a person moving their finger sending the cat flying backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3sxvWBpy1rl2njso1_400\",\n    \"question\": \"what is the man with curly hair and a beard holding,\",\n    \"answer\": \"pointing his fingers and nodding ? bow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35809\",\n    \"key\": \"77703\",\n    \"description\": \"a man with curly hair and a beard is holding a bow,\"\n  },\n  {\n    \"video_name\": \"tumblr_nac7r67PCz1ttrqwxo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38355\",\n    \"key\": \"6638\",\n    \"description\": \"a girl with brown hair wears a necklace and black and makes a surprised face.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndoxkiR46w1trz2w3o1_400\",\n    \"question\": \"what was joyfully playing with its toy?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2486\",\n    \"key\": \"4494\",\n    \"description\": \"the kitten was joyfully playing with its toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqokih6riY1uxohh1o1_540\",\n    \"question\": \"how many men are standing together and laughing at something?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14243\",\n    \"key\": \"91616\",\n    \"description\": \"three men are standing together and laughing at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb31tqaZAR1s5i7h6o1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10823\",\n    \"key\": \"53948\",\n    \"description\": \"a man wearing a brown jacket raises his eyebrows and looks right.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wjgv1CW51tj0g8do1_500\",\n    \"question\": \"how many men are laughing wildly at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45579\",\n    \"key\": \"88546\",\n    \"description\": \"two men are laughing wildly at something they heard.\"\n  },\n  {\n    \"video_name\": \"tumblr_npuazcydPD1te94myo1_400\",\n    \"question\": \"what is playing with the black tube?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18611\",\n    \"key\": \"4445\",\n    \"description\": \"a cat is playing with a black tube.\"\n  },\n  {\n    \"video_name\": \"tumblr_n6g89evyVF1qhzavho1_r1_400\",\n    \"question\": \"what does the large turn?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25811\",\n    \"key\": \"47650\",\n    \"description\": \"a black car does a large turn.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbpfsFRRF1rcl5ljo1_500\",\n    \"question\": \"what is the brunette woman holding burning?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34828\",\n    \"key\": \"48746\",\n    \"description\": \"a brunette woman is holding a burning cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncb4rh5u6V1tw6u06o1_500\",\n    \"question\": \"what are rolling in the white bowl?\",\n    \"answer\": \"berries\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23551\",\n    \"key\": \"74315\",\n    \"description\": \"berries are rolling in a white bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn6j1KjeH1rsm126o1_400\",\n    \"question\": \"what is the boy taking off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8956\",\n    \"key\": \"36191\",\n    \"description\": \"a boy is taking off his shirt while he is sitting down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbn45jzc2V1tlc96ro1_400\",\n    \"question\": \"what falls asleep and falls over?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17462\",\n    \"key\": \"25609\",\n    \"description\": \"a furry baby kitten falls asleep and falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94c9kD6eu1s0wfo1o1_250\",\n    \"question\": \"what is the man tuning his guitar and adjusting?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9530\",\n    \"key\": \"40368\",\n    \"description\": \"a man is tuning his guitar and adjusting his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb5pvb0KQb1sov9opo1_500\",\n    \"question\": \"what is the color of the gauge?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39152\",\n    \"key\": \"62369\",\n    \"description\": \"a man has a red gauge and is angrily speaking words.\"\n  },\n  {\n    \"video_name\": \"tumblr_nantbhxigw1tk3g8co1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29360\",\n    \"key\": \"12385\",\n    \"description\": \"a woman with red hair is wearing a hood.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ousdC7yv1tdjuqvo1_400\",\n    \"question\": \"what is the man throwing at a woman who is catching them with objects on her body?\",\n    \"answer\": \"knives\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43659\",\n    \"key\": \"21043\",\n    \"description\": \"a man is throwing knives at a woman who is catching them with objects on her body.\"\n  },\n  {\n    \"video_name\": \"tumblr_nek08cNEiL1tf7kp3o1_500\",\n    \"question\": \"what is the young man slapping around a field?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA381\",\n    \"key\": \"76449\",\n    \"description\": \"a young man is slapping a ball around a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg3cseAxD1s47dt7o1_500\",\n    \"question\": \"how many guys is this image of in white onstage hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33844\",\n    \"key\": \"62539\",\n    \"description\": \"this image is of two guys in white onstage hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzsp7tuTy1uuiij8o1_400\",\n    \"question\": \"where are two boys talking.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8145\",\n    \"key\": \"51083\",\n    \"description\": \"two boys are talking in a bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_nese2hcXc11qjf4txo1_400\",\n    \"question\": \"what is going down the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5755\",\n    \"key\": \"35306\",\n    \"description\": \"a car is going down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhes8bjYq11qa469zo1_500\",\n    \"question\": \"what is skateboarding outside?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52749\",\n    \"key\": \"34401\",\n    \"description\": \"a young man wearing cap is skateboarding outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8ynvxlL51s36lx4o1_400\",\n    \"question\": \"where is the woman touching man fingers.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38640\",\n    \"key\": \"70194\",\n    \"description\": \"a woman is touching man fingers in bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbadfkbZvN1tl0ko9o1_400\",\n    \"question\": \"what is jumping and landing on the table?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15599\",\n    \"key\": \"38032\",\n    \"description\": \"a cat is jumping and landing on a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney2qpWl7D1tv2q4bo1_400\",\n    \"question\": \"what is the man in a red jacket playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32779\",\n    \"key\": \"2296\",\n    \"description\": \"a man in a red jacket is playing guitar while another man plays piano behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmv9f3Q8s1sren05o1_400\",\n    \"question\": \"how many young men are looking happy and hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38276\",\n    \"key\": \"63952\",\n    \"description\": \"two young men are looking happy and hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh38wnGye51u0b9foo1_400\",\n    \"question\": \"what is being dark and messy?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41118\",\n    \"key\": \"17026\",\n    \"description\": \"an empty room is being dark and messy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfic3pugLo1td28fxo1_400\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51341\",\n    \"key\": \"71858\",\n    \"description\": \"a girl in purple pants rubs her butt on a gravestone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3tu3h9Yz1u1v0pco1_400\",\n    \"question\": \"what is chasing another cat that is stuck in a tube?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31584\",\n    \"key\": \"88816\",\n    \"description\": \"a cat is chasing another cat that is stuck in a tube.\"\n  },\n  {\n    \"video_name\": \"tumblr_nocyhdRycP1uof4kpo1_500\",\n    \"question\": \"what is the young man covered in blood and stabbing into something?\",\n    \"answer\": \"knife\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21059\",\n    \"key\": \"80671\",\n    \"description\": \"a young man is covered in blood and stabbing his knife into something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqwpdlp7BJ1s7096po1_250\",\n    \"question\": \"what is the man chewing and staring at something?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43125\",\n    \"key\": \"25849\",\n    \"description\": \"a man is chewing gum and staring at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sg25gN3a1tihd4fo1_400\",\n    \"question\": \"what is the man folding up?\",\n    \"answer\": \"chair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21414\",\n    \"key\": \"51977\",\n    \"description\": \"a man is folding up a chair that is sitting on top of a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr45wgSapM1uaujqao1_400\",\n    \"question\": \"what is running and suddenly jumps towards the window?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47334\",\n    \"key\": \"64873\",\n    \"description\": \"a monkey is running and suddenly jumps towards a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwevdfwXv1toyl9ro1_400\",\n    \"question\": \"what is the snowboarder doing?\",\n    \"answer\": \"trick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22464\",\n    \"key\": \"58540\",\n    \"description\": \"a snowboarder is doing a snowboard trick.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngmmjdC8aq1qznkspo1_500\",\n    \"question\": \"what plays with the christmas tree and runs away?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52242\",\n    \"key\": \"62809\",\n    \"description\": \"a cat plays with a christmas tree and runs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqher86Kc1tm761xo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24936\",\n    \"key\": \"10949\",\n    \"description\": \"a young man in a blue shirt is tilting his eyes to look at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqb0w0uVAG1urxja6o1_500\",\n    \"question\": \"how many guys are making signs with their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32737\",\n    \"key\": \"92260\",\n    \"description\": \"two guys are making signs with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8hk45xsAu1tgetb4o1_400\",\n    \"question\": \"what is touching and smelling fish in water?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31759\",\n    \"key\": \"66886\",\n    \"description\": \"a cat is touching and smelling fish in water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nie80c2ukN1tfcayso1_250\",\n    \"question\": \"how many people catch on fire as they are being pulled in a carriage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24997\",\n    \"key\": \"21047\",\n    \"description\": \"two people catch on fire as they are being pulled in a carriage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5z1ajZzd1rwipr5o1_r1_250\",\n    \"question\": \"what does the woman juggle?\",\n    \"answer\": \"bags\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33366\",\n    \"key\": \"27736\",\n    \"description\": \"a woman juggles three black bean bags.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gg32YmTl1sjcycuo1_250\",\n    \"question\": \"what watches the giant school of fish?\",\n    \"answer\": \"diver\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34763\",\n    \"key\": \"76819\",\n    \"description\": \"a deep sea diver watches a giant school of fish.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6x4iCSrt1slj978o1_500\",\n    \"question\": \"what is the color of the stains?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4992\",\n    \"key\": \"100805\",\n    \"description\": \"the man cleans the red stains off of his car while someone watches.\"\n  },\n  {\n    \"video_name\": \"tumblr_nayz3cf94f1sei79bo1_250\",\n    \"question\": \"how many guys are kissing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47449\",\n    \"key\": \"81513\",\n    \"description\": \"two guys are kissing and the light is on their backs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngy2thk5VL1rn16efo1_r1_500\",\n    \"question\": \"how many men strike poses as they stand on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8886\",\n    \"key\": \"71393\",\n    \"description\": \"two men strike poses as they stand on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_npsvyvbQxZ1un9274o1_400\",\n    \"question\": \"what is the female modeling?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21817\",\n    \"key\": \"3926\",\n    \"description\": \"a female is modeling a formal black dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesls65ifv1qj1s5io1_400\",\n    \"question\": \"what are fighting with swords?\",\n    \"answer\": \"machines\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47531\",\n    \"key\": \"80347\",\n    \"description\": \"two orange color machines are fighting with swords.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda4kvB8V61tyxziho1_400\",\n    \"question\": \"what closes on the couple who are hugging?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46080\",\n    \"key\": \"28707\",\n    \"description\": \"door closes on a couple who are hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabzy4yOL81tsxh57o1_400\",\n    \"question\": \"how many basketball player is throwing the ball?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42054\",\n    \"key\": \"50858\",\n    \"description\": \"one basketball player is throwing the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl1flazV921remizro1_400\",\n    \"question\": \"what is the color of the hats?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22765\",\n    \"key\": \"21549\",\n    \"description\": \"three guys in striped shirts and red hats are singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsve40Qa31u659t0o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25496\",\n    \"key\": \"91454\",\n    \"description\": \"a white woman turning to look at a black man in a restaurant.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjkkdYkM51qdbvc2o1_400\",\n    \"question\": \"what is the dandelion blown and fly into the air?\",\n    \"answer\": \"seeds\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33552\",\n    \"key\": \"77320\",\n    \"description\": \"a dandelion is blown and the seeds fly into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng80p46gmE1s7t4vjo1_500\",\n    \"question\": \"how many men raise their arms in a crowd of people?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37860\",\n    \"key\": \"80718\",\n    \"description\": \"two men raise their arms in a crowd of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb920sP7nG1s1g1ilo1_250\",\n    \"question\": \"what drifts around the corner while smoke comes from the rear of it?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22604\",\n    \"key\": \"56169\",\n    \"description\": \"a race car drifts around a corner while smoke comes from the rear of it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nao9dwfbWL1tbsc6ko1_500\",\n    \"question\": \"what is the man with tattoos giving and smiling?\",\n    \"answer\": \"symbol\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31174\",\n    \"key\": \"70936\",\n    \"description\": \"a man with tattoos is giving a rock symbol and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsnnp2mZV1qad928o1_500\",\n    \"question\": \"what is the color of the hand?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48311\",\n    \"key\": \"46559\",\n    \"description\": \"a woman is wearing a black and white furry hat,\"\n  },\n  {\n    \"video_name\": \"tumblr_nacqaixw0M1r2atcqo1_500\",\n    \"question\": \"how many women are kicking up their feet?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18969\",\n    \"key\": \"55027\",\n    \"description\": \"two women are kicking up their feet.\"\n  },\n  {\n    \"video_name\": \"tumblr_najlujyscz1slwrsuo1_400\",\n    \"question\": \"how many guys are dancing in funny outfits in a room?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37031\",\n    \"key\": \"16170\",\n    \"description\": \"three guys are dancing in funny outfits in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmz3n9aYMe1rxmp17o1_500\",\n    \"question\": \"what is the color of the robes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20380\",\n    \"key\": \"97109\",\n    \"description\": \"two people take off their black robes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk90zeyIdh1uoc58ao1_400\",\n    \"question\": \"what is the guy smashing and another guy tackles him?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49302\",\n    \"key\": \"39438\",\n    \"description\": \"a guy is smashing a store window and another guy tackles him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nduzc4QNa11tmn3zuo1_400\",\n    \"question\": \"what are guys wearing and pulling guns out?\",\n    \"answer\": \"masks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39428\",\n    \"key\": \"64006\",\n    \"description\": \"guys are wearing masks and pulling guns out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2a32jNU21qmmwe0o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38958\",\n    \"key\": \"21143\",\n    \"description\": \"a man in black sings while another man dances.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvppbIQiw1rpqr23o4_400\",\n    \"question\": \"what is the boy jumping over and he succeeded?\",\n    \"answer\": \"pool\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12299\",\n    \"key\": \"57235\",\n    \"description\": \"a boy is jumping over a swimming pool and he succeeded.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0u7kYz9i1tclavqo1_500\",\n    \"question\": \"what is the man wearing and talking and touches his shirt?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29185\",\n    \"key\": \"61843\",\n    \"description\": \"a man is wearing a long shirt and talking and touches his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96x96RDMq1tp3pcko1_250\",\n    \"question\": \"what is the color of the head?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30636\",\n    \"key\": \"14441\",\n    \"description\": \"the red head in the photo is wearing a blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4x9lSIXA1u2d9ago1_400\",\n    \"question\": \"how many women are sitting on the couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25054\",\n    \"key\": \"20625\",\n    \"description\": \"two women are sitting on a couch and one is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nco7huA9Kl1tqcnjko1_250\",\n    \"question\": \"where is the young lady twirling a hula hoop.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12084\",\n    \"key\": \"767\",\n    \"description\": \"a young lady is twirling a hula hoop in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naji9ftfcU1t6ksnpo1_500\",\n    \"question\": \"what is the man wearing a white shirt is holding and pointing his hand?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15266\",\n    \"key\": \"71380\",\n    \"description\": \"a man wearing a white shirt is holding a microphone and pointing his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfzvj5CkX1uxxr4no4_250\",\n    \"question\": \"what is the young lady twirling and blowing?\",\n    \"answer\": \"bubbles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46620\",\n    \"key\": \"14198\",\n    \"description\": \"a young lady is twirling and blowing bubbles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9i8833G521rev877o1_400\",\n    \"question\": \"how many hand squeezes cheeks of girl looking downward?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8672\",\n    \"key\": \"16839\",\n    \"description\": \"one hand squeezes cheeks of girl looking downward.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ybrqylkm1qeysfio1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5907\",\n    \"key\": \"38438\",\n    \"description\": \"a guy in a gray shirt is singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_narpfhWzYa1rg2esto1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24762\",\n    \"key\": \"76717\",\n    \"description\": \"a man in a blue shirt pushes another man out of the way.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpnf4qkMy1qb2rmxo1_500\",\n    \"question\": \"what did teacher rip off in from of the class?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37212\",\n    \"key\": \"48957\",\n    \"description\": \"teacher ripped his shirt off in from of the class.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1396EcA01tmcao5o1_250\",\n    \"question\": \"what is the guy wearing and running through a concert scenery?\",\n    \"answer\": \"layer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21042\",\n    \"key\": \"39497\",\n    \"description\": \"a guy is wearing a layer and running through a concert scenery.\"\n  },\n  {\n    \"video_name\": \"tumblr_npw9cplisH1tlq8yzo1_400\",\n    \"question\": \"what is the girl carrying a backpack,\",\n    \"answer\": \"opens ? door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9385\",\n    \"key\": \"62362\",\n    \"description\": \"a girl carrying a backpack,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgdyxzRvB1szpk2oo1_400\",\n    \"question\": \"what is the color of the cape?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48964\",\n    \"key\": \"42451\",\n    \"description\": \"a woman wearing a bikini and belly dancing jewelry is posing with a swirly red cape.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexi5fkr5g1u3y1flo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51991\",\n    \"key\": \"71481\",\n    \"description\": \"the man in the black shirt is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclxudn5MX1qa4y0oo1_500\",\n    \"question\": \"what is looking around from the top of a tall fence?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26611\",\n    \"key\": \"67749\",\n    \"description\": \"a lone bird is looking around from the top of a tall fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx2a5Ldzl1sdbrm9o1_400\",\n    \"question\": \"how many young men stand in the row with lights behind them?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49512\",\n    \"key\": \"85456\",\n    \"description\": \"3 young men stand in a row with lights behind them.\"\n  },\n  {\n    \"video_name\": \"tumblr_n2juodBtsG1ttwpt3o1_500\",\n    \"question\": \"what is playing the guitar at a concert?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11218\",\n    \"key\": \"49533\",\n    \"description\": \"a rock star is playing a guitar at a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlwghHVNJ1s230fzo1_400\",\n    \"question\": \"what is the man getting done by another man?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27731\",\n    \"key\": \"59672\",\n    \"description\": \"a man is getting his makeup done by another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0hkt5rBF1utqnppo1_250\",\n    \"question\": \"what is the man with dark hair wearing?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21265\",\n    \"key\": \"8586\",\n    \"description\": \"a man with dark hair is wearing a yellow suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h420xOX31tq2eeqo1_250\",\n    \"question\": \"what is the person dancing and shaking?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34005\",\n    \"key\": \"17860\",\n    \"description\": \"a person is dancing and shaking their butt.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxyq4bNFX1tzhkoao1_400\",\n    \"question\": \"what is hitting the glass to fall down?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7285\",\n    \"key\": \"11308\",\n    \"description\": \"a cat is hitting a glass to fall down.\"\n  },\n  {\n    \"video_name\": \"tumblr_no6e8o2eIn1us4ateo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13460\",\n    \"key\": \"3088\",\n    \"description\": \"a woman shrugs,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbt16ngn2U1qazha9o1_250\",\n    \"question\": \"what does the woman in a black and yellow dress run down filled with people?\",\n    \"answer\": \"hallway\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1093\",\n    \"key\": \"2744\",\n    \"description\": \"a woman in a black and yellow dress runs down a hallway filled with people.\"\n  },\n  {\n    \"video_name\": \"tumblr_naw2njzOfu1qj7i8oo1_500\",\n    \"question\": \"how many men with bloody faces look up at a man with a lot of facial hair,\",\n    \"answer\": \"dark sunglasses , and cigar ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40277\",\n    \"key\": \"100013\",\n    \"description\": \"two men with bloody faces look up at a man with a lot of facial hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nporswU0401tjg911o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50852\",\n    \"key\": \"5796\",\n    \"description\": \"a young girl is smiling and she has black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjji1VI2G1up3tmfo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45488\",\n    \"key\": \"6810\",\n    \"description\": \"a woman with a red shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9q548ju7C1ry661do1_500\",\n    \"question\": \"what is being poured into the large glass?\",\n    \"answer\": \"beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41772\",\n    \"key\": \"97092\",\n    \"description\": \"a beer is being poured into a large glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_naidmtIv1H1twoe5do1_400\",\n    \"question\": \"what signs that it wants food?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17938\",\n    \"key\": \"21499\",\n    \"description\": \"a cat signs that it wants food.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9wv5Byt01qdd57go1_250\",\n    \"question\": \"what is the person picking up?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33442\",\n    \"key\": \"1884\",\n    \"description\": \"a person is picking up a cat that keeps calling sideways.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb50ccDCSC1swjcnao1_500\",\n    \"question\": \"how many boys are shaking hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4021\",\n    \"key\": \"61180\",\n    \"description\": \"two boys are shaking hands,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vnsgagJw1to3k6do1_400\",\n    \"question\": \"what is making drifts on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48489\",\n    \"key\": \"70408\",\n    \"description\": \"a black car is making drifts on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nctwxv3Cf61sdoqnro1_500\",\n    \"question\": \"what is the man with a red uniform kicking into a narrow pipe?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49379\",\n    \"key\": \"63764\",\n    \"description\": \"a man with a red uniform is kicking his ball into a narrow pipe.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhm8rleyTk1u333yco2_400\",\n    \"question\": \"what is the girl holding?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42055\",\n    \"key\": \"5846\",\n    \"description\": \"a girl is holding a small dog while two other people are moving into the picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrc8g830sV1uaj6rjo1_500\",\n    \"question\": \"how many man plays the guitar while another swings his arms up and down?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33172\",\n    \"key\": \"44334\",\n    \"description\": \"one man plays a guitar while another swings his arms up and down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvlitw9nW1t5ygabo1_400\",\n    \"question\": \"how many women wave at the police officer that is driving by them?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50782\",\n    \"key\": \"64594\",\n    \"description\": \"four women wave at a police officer that is driving by them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcj908B4V1tkjhdko1_500\",\n    \"question\": \"what is the man holding and making a face?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22732\",\n    \"key\": \"93957\",\n    \"description\": \"a man is holding a box and making a face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhl5dwMf31u594gko1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17238\",\n    \"key\": \"79599\",\n    \"description\": \"a man wearing a white shirt is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr4dwtJGP1rug7q0o1_400\",\n    \"question\": \"how many girl sings?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3810\",\n    \"key\": \"79204\",\n    \"description\": \"one girl sings and one girl flips her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx7tgZGUP1rm1lhro1_500\",\n    \"question\": \"what do three young males wear?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1881\",\n    \"key\": \"101620\",\n    \"description\": \"three young males wear sunglasses while one does a peace sign with one hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx3qys4VS1u6psyao1_500\",\n    \"question\": \"what is the man grimacing and pointing?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51366\",\n    \"key\": \"97313\",\n    \"description\": \"a man is grimacing and pointing a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k459LShp1s3zealo4_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43716\",\n    \"key\": \"15951\",\n    \"description\": \"a young man with blue eyes is speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_noxumlPA691rsagqio1_500\",\n    \"question\": \"how many guy shifted his weight and the other nods?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10484\",\n    \"key\": \"95345\",\n    \"description\": \"one guy shifted his weight and the other nods.\"\n  },\n  {\n    \"video_name\": \"tumblr_na17ppTVng1tn4oroo1_500\",\n    \"question\": \"how many women are looking at one another and winking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42345\",\n    \"key\": \"89162\",\n    \"description\": \"two women are looking at one another and winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxhmpEcZq1scd4jmo1_250\",\n    \"question\": \"how many women are performing the song in strange dresses?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9407\",\n    \"key\": \"29223\",\n    \"description\": \"four women are performing a song in strange dresses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj722iKfJY1u7hpo7o1_500\",\n    \"question\": \"what is using,\",\n    \"answer\": \"the man smashes the head of a zombie ? bat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26083\",\n    \"key\": \"90202\",\n    \"description\": \"using a baseball bat,\"\n  },\n  {\n    \"video_name\": \"tumblr_npfa926ftF1rhl4f0o1_400\",\n    \"question\": \"what is the color of the frog?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45471\",\n    \"key\": \"55339\",\n    \"description\": \"a big green frog climbed onto a person 's hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwm6670bP1u9hh04o1_250\",\n    \"question\": \"how many asian people are kissing on the couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28316\",\n    \"key\": \"47106\",\n    \"description\": \"two asian people are kissing on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne30n9fzMt1tpkltho1_250\",\n    \"question\": \"where is the lady looking around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20298\",\n    \"key\": \"46325\",\n    \"description\": \"a lady is looking around at smoke in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahga9eNFz1tx8mn0o1_400\",\n    \"question\": \"what creates the dust trail on a racing track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36536\",\n    \"key\": \"78232\",\n    \"description\": \"a car creates a dust trail on a racing track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhomuemFfD1u684yco1_250\",\n    \"question\": \"what looks around on the couch?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13107\",\n    \"key\": \"13612\",\n    \"description\": \"a white kitten looks around on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_npi7llyav41up6kr2o1_500\",\n    \"question\": \"where are the young man being seductive.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46614\",\n    \"key\": \"81766\",\n    \"description\": \"a young man are being seductive in a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc20yxAKBE1tx5rbeo1_400\",\n    \"question\": \"how many teams are playing during the soccer game?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24872\",\n    \"key\": \"87101\",\n    \"description\": \"two teams are playing during a soccer game.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vnsgagJw1to3k6do1_400\",\n    \"question\": \"what is spinning in the middle of the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49150\",\n    \"key\": \"70408\",\n    \"description\": \"a black car is spinning in the middle of the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnq4tzM7M51urqm0mo1_500\",\n    \"question\": \"what are flying through the air above the clouds?\",\n    \"answer\": \"airplanes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12312\",\n    \"key\": \"85138\",\n    \"description\": \"two airplanes are flying through the air above the clouds.\"\n  },\n  {\n    \"video_name\": \"tumblr_na47kyP5yR1td4yjbo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35449\",\n    \"key\": \"33749\",\n    \"description\": \"a boy with black hair wearing a black shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5jq9YHHz1twj3jvo1_500\",\n    \"question\": \"how many men have an argument walking in circles?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18580\",\n    \"key\": \"61007\",\n    \"description\": \"three men have an argument walking in circles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qweb8xcu1rgyxevo1_500\",\n    \"question\": \"where is the man wearing a checked shirt is singing.\",\n    \"answer\": \"? microphone\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40173\",\n    \"key\": \"73505\",\n    \"description\": \"a man wearing a checked shirt is singing in a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwg4tiDgC1u8eq3no1_400\",\n    \"question\": \"what is the person shaking and the dog looks happy?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35176\",\n    \"key\": \"66173\",\n    \"description\": \"a person is shaking their dog and the dog looks happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9ue79ebR1u63zbwo1_500\",\n    \"question\": \"how many dark haired men are on stage and one turns around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21148\",\n    \"key\": \"50957\",\n    \"description\": \"two dark haired men are on stage and one turns around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne02dp4Y5i1tuz9pno1_400\",\n    \"question\": \"what does the fight take place in a bar and a woman sets off?\",\n    \"answer\": \"extinguisher\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31068\",\n    \"key\": \"65686\",\n    \"description\": \"a fight takes place in a bar and a woman sets off a fire extinguisher.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngjjy8pmWW1u5slc8o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5925\",\n    \"key\": \"3675\",\n    \"description\": \"a tattooed man with brown hair is doing mime stuff and pushes his head to the side with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncham5ElY21qf1m5po1_500\",\n    \"question\": \"where did the person sit banging his head on the desk.\",\n    \"answer\": \"? office\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4633\",\n    \"key\": \"96057\",\n    \"description\": \"a person sat in an office banging his head on the desk.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6frm8Fbw1r784vko1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA484\",\n    \"key\": \"58029\",\n    \"description\": \"a man with long gray hair pulls off a pair of headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9fj4glx61swtmgzo1_500\",\n    \"question\": \"what is hopping out of the box?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16221\",\n    \"key\": \"46702\",\n    \"description\": \"a rabbit is hopping out of a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp324pRIa1tlea9go1_400\",\n    \"question\": \"how many girls are moving their hands and making faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26880\",\n    \"key\": \"33695\",\n    \"description\": \"two girls are moving their hands and making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_naha579HaB1tggah7o1_500\",\n    \"question\": \"what is the white man with green shirt showing?\",\n    \"answer\": \"figurine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12339\",\n    \"key\": \"91224\",\n    \"description\": \"a white man with green shirt is showing a figurine.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97akoLBDo1th2vkqo1_250\",\n    \"question\": \"how many people right beside each other are hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13728\",\n    \"key\": \"53718\",\n    \"description\": \"two people right beside each other are hugging.\"\n  },\n  {\n    \"video_name\": \"tumblr_neupg2MUNK1qc41a1o1_1280\",\n    \"question\": \"how many people are standing in the woods with smoke blowing around them?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30313\",\n    \"key\": \"94292\",\n    \"description\": \"five people are standing in the woods with smoke blowing around them.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndsj3v5btb1rpjuouo1_500\",\n    \"question\": \"what do the man with curly hair hold up to his mouth?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46001\",\n    \"key\": \"79446\",\n    \"description\": \"a man with curly hair hold a cigarette up to his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wsn7ML9d1s6f9ago1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA968\",\n    \"key\": \"48397\",\n    \"description\": \"the young man wearing a black jacket is joking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94qcs8lKc1t0ud6co1_250\",\n    \"question\": \"what is the woman touching?\",\n    \"answer\": \"crotch\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18209\",\n    \"key\": \"21812\",\n    \"description\": \"a woman is touching her crotch while twirling her pelvis and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nde5uo58TS1sspm20o1_250\",\n    \"question\": \"where is the person with dark hair talking.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA2078\",\n    \"key\": \"61432\",\n    \"description\": \"a person with dark hair is talking in a poorly lit room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3wo9RJe91tkhxdko1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44242\",\n    \"key\": \"68397\",\n    \"description\": \"a cat has been painted in a green coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0a8uaKRe1tt3g2no1_500\",\n    \"question\": \"where are two women kissing each other.\",\n    \"answer\": \"? booth\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA489\",\n    \"key\": \"86790\",\n    \"description\": \"two women are kissing each other in a photo booth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkrgy251a1uupqewo1_400\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31473\",\n    \"key\": \"25013\",\n    \"description\": \"a black guy is making some moves near somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngftrkcgR31tmfj24o1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41638\",\n    \"key\": \"94690\",\n    \"description\": \"a guy with black t-shirt is smiling and walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhifdvtMsa1tjhld9o1_250\",\n    \"question\": \"what is laying down and looking very sad?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16953\",\n    \"key\": \"21175\",\n    \"description\": \"a dog is laying down and looking very sad.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97ow9Scv41thj3xko1_250\",\n    \"question\": \"how many men in jackets are standing outside talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32384\",\n    \"key\": \"2346\",\n    \"description\": \"two men in jackets are standing outside talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkk5d5OAP41u6hnr3o1_500\",\n    \"question\": \"how many men are kissing while sitting on the beach?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24123\",\n    \"key\": \"72515\",\n    \"description\": \"two men are kissing while sitting on a beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx9n4IgAS1u5hcmdo1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24092\",\n    \"key\": \"53507\",\n    \"description\": \"a man with a blue sweater is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_napv6maUYc1tj33i6o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10070\",\n    \"key\": \"6173\",\n    \"description\": \"a man wearing a black jacket is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpnf4qkMy1qb2rmxo1_500\",\n    \"question\": \"what is the beautiful man taking off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44097\",\n    \"key\": \"48957\",\n    \"description\": \"a beautiful man is taking off his white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8jxhpgcP1tuo9b6o1_250\",\n    \"question\": \"what is the man holding and laughing?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40500\",\n    \"key\": \"9982\",\n    \"description\": \"the man is holding a water bottle and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4ajn7m2V1u6qd8so1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30935\",\n    \"key\": \"17909\",\n    \"description\": \"a woman in a yellow shirt holds up a magazine.\"\n  },\n  {\n    \"video_name\": \"tumblr_nog086mhQn1rngtxpo1_250\",\n    \"question\": \"what is the woman lighting and relaxing?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37098\",\n    \"key\": \"49718\",\n    \"description\": \"a woman is lighting a cigarette and relaxing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9ywnJtxX1t09iyco1_500\",\n    \"question\": \"how many young women are singing and dancing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48916\",\n    \"key\": \"75498\",\n    \"description\": \"two young women are singing and dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s6um7qEO1sgwxtwo1_250\",\n    \"question\": \"how many people is this giving each other a hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7944\",\n    \"key\": \"47783\",\n    \"description\": \"this is two people giving each other a hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98uooxl0K1thiyb6o1_250\",\n    \"question\": \"how many topless men are walking and one of them holding a t-shirt?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51601\",\n    \"key\": \"8297\",\n    \"description\": \"two topless men are walking and one of them holding a t-shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7oaXb1D1sj1td7o1_250\",\n    \"question\": \"what is golden color moving its two hind legs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44893\",\n    \"key\": \"19037\",\n    \"description\": \"golden color a cat is moving its two hind legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0g2ztIwU1u2kzbjo2_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38796\",\n    \"key\": \"31009\",\n    \"description\": \"a man with long black hair and sideburns is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner3odH5Bw1ttanvco1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27232\",\n    \"key\": \"57189\",\n    \"description\": \"the black man is singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdhumxlMs1sxvd87o1_250\",\n    \"question\": \"what sits on the floor and waves at someone in a car?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31203\",\n    \"key\": \"27329\",\n    \"description\": \"a bear sits on the floor and waves at someone in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfalpqnjBU1u43iqlo1_250\",\n    \"question\": \"how many men are joking and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46904\",\n    \"key\": \"10355\",\n    \"description\": \"the two men are joking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_npu3dmmwdW1srz1ujo1_250\",\n    \"question\": \"what is the woman with long hair holding?\",\n    \"answer\": \"bat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44827\",\n    \"key\": \"12627\",\n    \"description\": \"a woman with long hair is holding a baseball bat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfflefXvpx1u25ovvo1_400\",\n    \"question\": \"what is driving down the road passing all the grass?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20363\",\n    \"key\": \"63605\",\n    \"description\": \"the red car is driving down the road passing all the grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nglj2fIAPt1tupygmo2_250\",\n    \"question\": \"where is the guy with black suit smiling.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7479\",\n    \"key\": \"8258\",\n    \"description\": \"a guy with black suit is smiling in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndutr8mMuS1t6zdrfo1_500\",\n    \"question\": \"what is the girl talking to a man and then she and others enter?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22024\",\n    \"key\": \"54144\",\n    \"description\": \"a girl is talking to a man and then she and others enter the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8wvf0PAoC1tbg5yoo1_400\",\n    \"question\": \"how many people are skating down the runway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36438\",\n    \"key\": \"26483\",\n    \"description\": \"two people are skating down a runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_mkhcuwQp2k1rk3evro1_500\",\n    \"question\": \"where are two hot naked young ladies kissing each other.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51117\",\n    \"key\": \"36906\",\n    \"description\": \"two hot naked young ladies in bed are kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmnxtXMH81rd87k4o1_250\",\n    \"question\": \"what is licking the stuffed animal by his side?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19283\",\n    \"key\": \"13409\",\n    \"description\": \"a cat is licking a stuffed animal by his side.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9r1sfDAc1qzcbnmo1_250\",\n    \"question\": \"what runs through a subway car and then exits when the doors open?\",\n    \"answer\": \"pigeon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2694\",\n    \"key\": \"6221\",\n    \"description\": \"a pigeon runs through a subway car and then exits when the doors open.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmnppGF0g1rer2fjo1_250\",\n    \"question\": \"how many young man has his arm around another young man?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18678\",\n    \"key\": \"49663\",\n    \"description\": \"one young man has his arm around another young man and they both look up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9zdtgglQ1stmsx9o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45223\",\n    \"key\": \"101014\",\n    \"description\": \"a guy wearing a black shirt is smiling,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuvcycrMb1tana87o1_250\",\n    \"question\": \"how many people are standing in the pool then?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14489\",\n    \"key\": \"78506\",\n    \"description\": \"two people are standing in a pool then they kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad9ej0PCm1sk96t7o1_400\",\n    \"question\": \"how many policemen are chasing and hitting the blue toy?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47003\",\n    \"key\": \"63718\",\n    \"description\": \"two policemen are chasing and hitting a blue toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2y1oOWfv1sqefk3o1_400\",\n    \"question\": \"what is the cake decorator making with icing?\",\n    \"answer\": \"flower\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31534\",\n    \"key\": \"29081\",\n    \"description\": \"a cake decorator is making a flower with icing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xevvBCZJ1tj2evpo1_500\",\n    \"question\": \"how many guys are standing beside each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48276\",\n    \"key\": \"80161\",\n    \"description\": \"two guys are standing beside each other and one is shaking his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrwzi3knp1u7yxjso1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7304\",\n    \"key\": \"54436\",\n    \"description\": \"a man in a black sweater spins and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_niw1j3KkFZ1u4enpoo1_400\",\n    \"question\": \"how many boys are sitting outside taking next to an inflated thing?\",\n    \"answer\": \"six\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7107\",\n    \"key\": \"62893\",\n    \"description\": \"six boys are sitting outside taking next to an inflated thing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbn0vv8Gp1tx8mn0o1_400\",\n    \"question\": \"what is racing and coming close to another car?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15828\",\n    \"key\": \"86055\",\n    \"description\": \"a car is racing and coming close to another car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknppk1M7C1reubyfo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5922\",\n    \"key\": \"14791\",\n    \"description\": \"a woman with black hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelgzg0Sl91r0oqh7o1_500\",\n    \"question\": \"where is the young man in black dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40809\",\n    \"key\": \"89347\",\n    \"description\": \"a young man in black is dancing in a black and white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7shthCvP1smaq3so1_250\",\n    \"question\": \"what is the color of the paint?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15854\",\n    \"key\": \"39670\",\n    \"description\": \"man painted his body with red paint and has done a facial painting to give a deadly effect.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3wn81LHi1tqwtb6o1_500\",\n    \"question\": \"how many naked men are dancing around the girl?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11451\",\n    \"key\": \"41830\",\n    \"description\": \"two naked men are dancing around a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlfwbq8BFe1u9v1wso1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46598\",\n    \"key\": \"99384\",\n    \"description\": \"superman defeats a man dressed in black.\"\n  },\n  {\n    \"video_name\": \"tumblr_nktwdgssa71tx2uovo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5744\",\n    \"key\": \"68659\",\n    \"description\": \"a young man dressed all in black is shouting into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfarhcHDam1seb8aro1_400\",\n    \"question\": \"what are meowing in the box?\",\n    \"answer\": \"kittens\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3832\",\n    \"key\": \"65054\",\n    \"description\": \"seven kittens are meowing in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngarvs2Lgj1r7jjj1o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47359\",\n    \"key\": \"76602\",\n    \"description\": \"a black man sticks out his tongue and closes his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkajbX6dP1tx8mn0o1_400\",\n    \"question\": \"what do racing almost collide as one cuts in front of the other on the race track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27802\",\n    \"key\": \"78352\",\n    \"description\": \"two racing cars almost collide as one cuts in front of the other on the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelekc7qgX1rtcpyfo1_250\",\n    \"question\": \"where are the cat and dog cuddling.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19166\",\n    \"key\": \"23195\",\n    \"description\": \"the cat and dog are cuddling in a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkrf6t4Kcu1u9xj6to1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33410\",\n    \"key\": \"92709\",\n    \"description\": \"a white car is racing down a curvy road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ucnlmCk51qzxorvo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2207\",\n    \"key\": \"9249\",\n    \"description\": \"a man in a red top is drinking a beer,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rb0b8mi11qfrgvko1_r2_500\",\n    \"question\": \"how many young men are singing and dancing on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19738\",\n    \"key\": \"62588\",\n    \"description\": \"two young men are singing and dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdd7kgA7W1te5p35o1_500\",\n    \"question\": \"how many woman shows her teeth turning her head?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27815\",\n    \"key\": \"92347\",\n    \"description\": \"one woman shows her teeth turning her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_noywdtPsqw1r1ivpuo4_r1_540\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11642\",\n    \"key\": \"77384\",\n    \"description\": \"a white dressed boy is giving something to eat to a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nephlhawUk1u25ovvo1_400\",\n    \"question\": \"what is driving down the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5003\",\n    \"key\": \"63440\",\n    \"description\": \"a red car is driving down a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nem4qtJZ6l1tsn1ypo1_250\",\n    \"question\": \"how many men parade around on stage as the lights flash?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40756\",\n    \"key\": \"18215\",\n    \"description\": \"two men parade around on stage as the lights flash.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7w1dJSJK1u83tleo1_400\",\n    \"question\": \"how many women are watching another woman make a face at them?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2761\",\n    \"key\": \"44936\",\n    \"description\": \"three women are watching another woman make a face at them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb51nnevsP1s4ytsyo1_250\",\n    \"question\": \"how many teenagers sit together on the couch and play guitar together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24020\",\n    \"key\": \"14182\",\n    \"description\": \"two teenagers sit together on a couch and play guitar together.\"\n  },\n  {\n    \"video_name\": \"tumblr_namp6mWvlq1qminp2o1_250\",\n    \"question\": \"what is the color of the cloth?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48926\",\n    \"key\": \"47287\",\n    \"description\": \"a man is talking moving his right hand another man came from behind and covered his face with black cover cloth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p1stcULz1t5ojzdo1_250\",\n    \"question\": \"what is the color of the door?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46881\",\n    \"key\": \"44121\",\n    \"description\": \"two woman are standing in front on a blue door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq6iwlxWqF1uytabuo1_500\",\n    \"question\": \"what are the people riding down the street?\",\n    \"answer\": \"motorcycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23996\",\n    \"key\": \"92224\",\n    \"description\": \"the people are riding their motorcycles down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpm0cJG551tvaskbo1_400\",\n    \"question\": \"what sees the mermaid in the water?\",\n    \"answer\": \"diver\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40819\",\n    \"key\": \"38252\",\n    \"description\": \"a scuba diver sees a mermaid in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfih1nAC1B1s71nvbo1_400\",\n    \"question\": \"what weaves in and out of traffic?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52523\",\n    \"key\": \"35092\",\n    \"description\": \"the car weaves in and out of traffic.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94fi690GZ1twfcheo1_400\",\n    \"question\": \"how many men play guitars and dance on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23393\",\n    \"key\": \"60282\",\n    \"description\": \"two men play guitars and dance on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9pnalnHNQ1rag67wo1_250\",\n    \"question\": \"what is the man holding and talking into a microphone?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21903\",\n    \"key\": \"19296\",\n    \"description\": \"a man is holding a guitar and talking into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_njyqloY3A31u3epwjo2_1280\",\n    \"question\": \"where are two people with short hair kissing.\",\n    \"answer\": \"? house\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48369\",\n    \"key\": \"78443\",\n    \"description\": \"two people with short hair are kissing in a house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhxuhAG1X1tlrh1co1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43812\",\n    \"key\": \"51465\",\n    \"description\": \"a woman with black hair is counting with her fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjj1i27sk1uv0y2ro1_250\",\n    \"question\": \"what is rolling around on the table?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14413\",\n    \"key\": \"74778\",\n    \"description\": \"a miniature panda is rolling around on the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklltj6mj01u8ivvko1_500\",\n    \"question\": \"how many men with ties around their heads share an embrace?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52686\",\n    \"key\": \"58940\",\n    \"description\": \"two men with ties around their heads share an embrace.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj0h9gltwe1u9d8glo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21125\",\n    \"key\": \"10748\",\n    \"description\": \"a woman with blonde hair wearing a white dress is reading.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqj7ahVNOh1uvie7bo1_400\",\n    \"question\": \"where does the dog get a rubber ducky placed on his head.\",\n    \"answer\": \"? bath\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12345\",\n    \"key\": \"32783\",\n    \"description\": \"a dog in a bath gets a rubber ducky placed on his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnymrk5szy1rjb18uo1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23823\",\n    \"key\": \"60695\",\n    \"description\": \"a band wearing black clothing are playing instruments.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfv8pOFQ91r3s7e9o1_400\",\n    \"question\": \"how many young girls with brown hair laugh and pose?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14770\",\n    \"key\": \"4875\",\n    \"description\": \"four young girls with brown hair laugh and pose.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne0pdeFY8e1tm64iuo1_250\",\n    \"question\": \"what is the boy holding up against a mirror as someone powders his face?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34320\",\n    \"key\": \"12836\",\n    \"description\": \"a boy is holding up his phone against a mirror as someone powders his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknvtdW16O1tw43who3_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34347\",\n    \"key\": \"45941\",\n    \"description\": \"a girl with long light brown hair smiles and is relieved.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5xnkmNbh1tk2ngvo1_400\",\n    \"question\": \"what jumps up on the ledge and crawls along it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23677\",\n    \"key\": \"53122\",\n    \"description\": \"a black cat jumps up on a ledge and crawls along it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bq3uQdab1tpa2reo1_250\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25072\",\n    \"key\": \"3383\",\n    \"description\": \"a very cute girl is dancing while she is sitting in a blue chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nka9sbLti71scpgg5o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4392\",\n    \"key\": \"14195\",\n    \"description\": \"a young man in a white shirt is hit by another man in the groin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfzjobYaWn1roqntto1_500\",\n    \"question\": \"what is man taking off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23686\",\n    \"key\": \"74967\",\n    \"description\": \"man is taking off his shirt to show off abdomen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4vryXuiR1u9o6qbo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29254\",\n    \"key\": \"19008\",\n    \"description\": \"a woman wearing a black jacket reveals her dress smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxip620qs1sisr9ho1_400\",\n    \"question\": \"what is the guy kicking around on a field?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33134\",\n    \"key\": \"51132\",\n    \"description\": \"a guy is kicking a soccer ball around on a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj0gp8UaPp1u9c93ao1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51602\",\n    \"key\": \"20380\",\n    \"description\": \"a man in a blue suit is singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbouq51nPr1tkti7do1_500\",\n    \"question\": \"how many men are dancing around the fire in a barrel?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10266\",\n    \"key\": \"44349\",\n    \"description\": \"three men are dancing around a fire in a barrel.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadg9rtWQH1sp1enmo1_1280\",\n    \"question\": \"what is the color of the powder?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1597\",\n    \"key\": \"82430\",\n    \"description\": \"a guy in a club dips his finger into a white powder and rubs it on his teeth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne8i29lmlc1rmnmfgo1_400\",\n    \"question\": \"how many flaming torches is the man juggling?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19797\",\n    \"key\": \"17150\",\n    \"description\": \"a man is juggling three flaming torches.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtlpb4htq1sh1sffo1_500\",\n    \"question\": \"what is the color of the robot?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33220\",\n    \"key\": \"49489\",\n    \"description\": \"a white mask robot is blinking eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfiklnpmXO1u1axtzo1_250\",\n    \"question\": \"how many man smiles at another whilst he adjusts the jacket he is wearing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25138\",\n    \"key\": \"9046\",\n    \"description\": \"one man smiles at another whilst he adjusts the jacket he is wearing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhklv0Td991reseiyo1_1280\",\n    \"question\": \"what is the truck sliding down covered in snow?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4232\",\n    \"key\": \"89497\",\n    \"description\": \"a truck is sliding down a road covered in snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcozcs5xE1rfzipho1_400\",\n    \"question\": \"how many people are standing up from behind the sofa whilst adjusting their clothes to the surprise of those in front of the sofa?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24034\",\n    \"key\": \"32999\",\n    \"description\": \"two people are standing up from behind a sofa whilst adjusting their clothes to the surprise of those in front of the sofa.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4spuzkLx1u3aa5ho1_500\",\n    \"question\": \"how many men are outside talking at night?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39112\",\n    \"key\": \"99689\",\n    \"description\": \"two men are outside talking at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2cffje8r1qjhqsyo1_400\",\n    \"question\": \"what is the guy wearing white is taking off in front of the pope?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12950\",\n    \"key\": \"37556\",\n    \"description\": \"a guy wearing white is taking his shirt off in front of the pope.\"\n  },\n  {\n    \"video_name\": \"tumblr_nql12tqr1p1unyhx2o1_400\",\n    \"question\": \"what are racing on the circuit?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40128\",\n    \"key\": \"66665\",\n    \"description\": \"race cars are racing on a circuit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqf4a6qnA1tgqqmdo1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24879\",\n    \"key\": \"67062\",\n    \"description\": \"a woman wearing a black top,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncjevlOgWi1timtpio1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36763\",\n    \"key\": \"6507\",\n    \"description\": \"a man in a gray top and a maroon hat is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzxcjYq391rbpro7o1_500\",\n    \"question\": \"how many woman slaps another woman down with force?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39960\",\n    \"key\": \"96559\",\n    \"description\": \"one woman slaps another woman down with force.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejvvaXInx1rhrn01o1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36075\",\n    \"key\": \"21389\",\n    \"description\": \"a man and a woman wearing black suit are dancing intensively.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc45r8KiyO1tlzpnko1_250\",\n    \"question\": \"what comes out of her house to eat hay?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42156\",\n    \"key\": \"16225\",\n    \"description\": \"a rabbit comes out of her house to eat hay.\"\n  },\n  {\n    \"video_name\": \"tumblr_nevmlnaUJr1tdmffyo1_400\",\n    \"question\": \"what is jumping from wooden table?\",\n    \"answer\": \"lamb\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33571\",\n    \"key\": \"8464\",\n    \"description\": \"a lamb is jumping from wooden table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad9ej0PCm1sk96t7o1_400\",\n    \"question\": \"how many police officers hit an inflatable man with batons?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28885\",\n    \"key\": \"63718\",\n    \"description\": \"two police officers hit an inflatable man with batons.\"\n  },\n  {\n    \"video_name\": \"tumblr_njt7imnhX01u1pokno1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2531\",\n    \"key\": \"7022\",\n    \"description\": \"a man in a blue suit is slowing putting sunglasses on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nev5jcwSOk1u25ovvo1_400\",\n    \"question\": \"what is driving along the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38178\",\n    \"key\": \"63427\",\n    \"description\": \"a white car is driving along the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbspjswqQu1sz068fo1_250\",\n    \"question\": \"what ran in and out of the cage and then stopped?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46198\",\n    \"key\": \"39915\",\n    \"description\": \"a dog ran in and out of a cage and then stopped.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi5dh4oIk1s4tqzto1_400\",\n    \"question\": \"what is the man playing and raising hand?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43073\",\n    \"key\": \"84280\",\n    \"description\": \"a man is playing guitar and raising hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkizal5yDC1thp5iao1_500\",\n    \"question\": \"what did the girl blow out?\",\n    \"answer\": \"candles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44769\",\n    \"key\": \"77884\",\n    \"description\": \"the girl blew out all her candles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4nq0GPvq1thdx2vo1_400\",\n    \"question\": \"what is sliding on the ice?\",\n    \"answer\": \"goat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26018\",\n    \"key\": \"63940\",\n    \"description\": \"a billy goat is sliding on the ice.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2723hhf91tj9d1zo1_250\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31415\",\n    \"key\": \"38384\",\n    \"description\": \"a person wearing a black outfit is playing the piano as he kicks the piano bench backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nht4tfuwYb1u7gf1ao1_400\",\n    \"question\": \"what is the woman,\",\n    \"answer\": \", looking out ? window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16174\",\n    \"key\": \"34973\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbz29i6Bom1thf1cyo1_250\",\n    \"question\": \"what is holding onto the woman 's leg?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20403\",\n    \"key\": \"85507\",\n    \"description\": \"a panda is holding onto a woman 's leg.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8xogFyv21rcxrido1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32689\",\n    \"key\": \"45115\",\n    \"description\": \"a man with black hair is glancing out a window.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndty8uvoqn1sukgyxo1_400\",\n    \"question\": \"what is surrounded by two other elephants and is down on the ground and tries to get up but cant?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20565\",\n    \"key\": \"57588\",\n    \"description\": \"an elephant is surrounded by two other elephants and is down on the ground and tries to get up but cant.\"\n  },\n  {\n    \"video_name\": \"tumblr_nephlhawUk1u25ovvo1_400\",\n    \"question\": \"what is running through the highway?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48828\",\n    \"key\": \"63440\",\n    \"description\": \"a red car is running through a highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w0jkCd3u1tx7bymo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA53013\",\n    \"key\": \"2037\",\n    \"description\": \"a man dressed in a white shirt bends forward while smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_no1bw1YVhe1uv1oabo1_250\",\n    \"question\": \"what is the man taking?\",\n    \"answer\": \"sword\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19187\",\n    \"key\": \"53184\",\n    \"description\": \"a man is taking a sword to fight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhymlqyEFX1s61ex7o1_250\",\n    \"question\": \"what put its paw in mans hand then looked forward?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49821\",\n    \"key\": \"77866\",\n    \"description\": \"dog put its paw in mans hand then looked forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkfsb1dgm1tbnwqmo1_400\",\n    \"question\": \"what is the color of the table?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13880\",\n    \"key\": \"61016\",\n    \"description\": \"two guys at a purple table are holding their hands up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadg9rtWQH1sp1enmo1_1280\",\n    \"question\": \"what is the color of the cream?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30110\",\n    \"key\": \"82430\",\n    \"description\": \"a man is wiping a white cream in his hand on his teeth using his finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mdaySgUM1tzixe8o1_500\",\n    \"question\": \"how many people are sticking their tongues out and nodding their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47484\",\n    \"key\": \"92239\",\n    \"description\": \"two people are sticking their tongues out and nodding their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1izlG0yA1s5p0j3o1_250\",\n    \"question\": \"how many disabled man does this show in a wheelchair and another crossing and uncrossing his legs on a chair?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3695\",\n    \"key\": \"40740\",\n    \"description\": \"this shows one disabled man in a wheelchair and another crossing and uncrossing his legs on a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94efhu6am1tfer95o1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50636\",\n    \"key\": \"72820\",\n    \"description\": \"the black car is moving along the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nczb7etZbU1qehq1fo1_400\",\n    \"question\": \"how many guy is pushing another one on the field?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32801\",\n    \"key\": \"52238\",\n    \"description\": \"one guy is pushing another one on the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nclkqg2v8l1td05izo1_500\",\n    \"question\": \"what is playing music on a stadium?\",\n    \"answer\": \"band\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21453\",\n    \"key\": \"57625\",\n    \"description\": \"a rock band is playing music on a stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqa0vZplB1u02d5so1_400\",\n    \"question\": \"what is the young woman smoking while spinning?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47991\",\n    \"key\": \"51131\",\n    \"description\": \"a young woman is smoking a cigarette while spinning.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakmlyurfi1t0cxw9o1_400\",\n    \"question\": \"how many men are cage fighting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37160\",\n    \"key\": \"87864\",\n    \"description\": \"two men are cage fighting and one gets knocked out.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndp39weJj11u1b7jeo1_500\",\n    \"question\": \"what do two men jump backward and one throws off?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15119\",\n    \"key\": \"58650\",\n    \"description\": \"two men jump backward and one throws his hat off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqa2vmNmDX1up3l18o1_400\",\n    \"question\": \"what is performing at the concert?\",\n    \"answer\": \"group\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38933\",\n    \"key\": \"30927\",\n    \"description\": \"the rock group is performing at a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnvy1kVUHL1utyjq6o1_400\",\n    \"question\": \"how many men are moving around near the waterfall?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35384\",\n    \"key\": \"32097\",\n    \"description\": \"two men are moving around near a waterfall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nerwf18fKw1tav4r9o1_400\",\n    \"question\": \"where is the guy walking and holding a bag.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA4516\",\n    \"key\": \"84123\",\n    \"description\": \"a guy is walking in the street and holding a bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebu2j0h941rssvv3o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA786\",\n    \"key\": \"30886\",\n    \"description\": \"a girl with long brown hair has a gray long sleeve shirt on and pulls her hand away and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbmugnrlnQ1t1o9tno1_250\",\n    \"question\": \"what is the man feeling?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11045\",\n    \"key\": \"22614\",\n    \"description\": \"a man is feeling his soft shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl16t6Re5g1qd4dijo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26208\",\n    \"key\": \"54850\",\n    \"description\": \"a man in a white suit is playing with a large bubble.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndy83rZ0La1ti4dkfo1_250\",\n    \"question\": \"what is the man chewing and smiling to himself?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34356\",\n    \"key\": \"27240\",\n    \"description\": \"a man is chewing gum and smiling to himself.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2j3elkE11ti5nreo1_250\",\n    \"question\": \"what is the lady wearing with a hood?\",\n    \"answer\": \"cape\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5759\",\n    \"key\": \"26154\",\n    \"description\": \"the lady is wearing a tan cape with a hood.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8i6t05H331rhy09eo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21624\",\n    \"key\": \"70580\",\n    \"description\": \"a black car is being zoomed in on.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndq39cqvhJ1qhvk2yo1_400\",\n    \"question\": \"what wiggles while water pour onto its back from a tap?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41746\",\n    \"key\": \"7895\",\n    \"description\": \"a turtle wiggles while water pour onto its back from a tap.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjbzfcduk1tv40swo1_400\",\n    \"question\": \"what is the color of the bell?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32728\",\n    \"key\": \"65390\",\n    \"description\": \"a woman is excising on the mat with green dumb bell.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6q01txXx1tgli1no1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27748\",\n    \"key\": \"64276\",\n    \"description\": \"a girl wearing a red colored top,\"\n  },\n  {\n    \"video_name\": \"tumblr_neosawCPpL1u04u4bo1_250\",\n    \"question\": \"how many men with minimal clothes on are snogging and getting intimate?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32991\",\n    \"key\": \"32607\",\n    \"description\": \"two men with minimal clothes on are snogging and getting intimate.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblkdlG0wb1qj5hh7o1_250\",\n    \"question\": \"what is sitting on another elephant as it tries to get up?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31337\",\n    \"key\": \"81080\",\n    \"description\": \"an elephant is sitting on another elephant as it tries to get up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc80srnP11r202reo1_500\",\n    \"question\": \"how many fingers is the man holding up at someone or something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25639\",\n    \"key\": \"86846\",\n    \"description\": \"a man is holding up two fingers at someone or something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuzvzDFcu1tdjuqvo1_400\",\n    \"question\": \"what is the dog removing from the bar?\",\n    \"answer\": \"rope\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17466\",\n    \"key\": \"42452\",\n    \"description\": \"a dog is removing the rope from the bar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbc8vzATx1s6zpepo1_400\",\n    \"question\": \"what is releasing in the river by a van?\",\n    \"answer\": \"boat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34574\",\n    \"key\": \"87125\",\n    \"description\": \"a boat is releasing in a river by a van.\"\n  },\n  {\n    \"video_name\": \"tumblr_nopyj6DOCW1ryce90o1_250\",\n    \"question\": \"what is the soccer player dominating without letting it touch the ground?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45057\",\n    \"key\": \"6709\",\n    \"description\": \"a soccer player is dominating the ball without letting it touch the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo3fs3Gfn1qdfgy3o1_500\",\n    \"question\": \"what is racing down an empty street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5405\",\n    \"key\": \"60504\",\n    \"description\": \"a car is racing down an empty street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhladrdzci1qdmr5no1_250\",\n    \"question\": \"how many guy is taking another one to take a picture?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52545\",\n    \"key\": \"51900\",\n    \"description\": \"one guy is taking another one to take a picture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyvthzIw21txchtio1_500\",\n    \"question\": \"what is the hand feeding with chopsticks with an arrow superimposed on the food?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22510\",\n    \"key\": \"92169\",\n    \"description\": \"a hand is feeding a kitten with chopsticks with an arrow superimposed on the food.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6mb94lBT1si3og9o1_500\",\n    \"question\": \"what is working on the man that is laying on the table?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24486\",\n    \"key\": \"89908\",\n    \"description\": \"a machine is working on a man that is laying on the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbolyqW2ZU1tj37deo1_400\",\n    \"question\": \"how many boys are turning their heads to look at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33779\",\n    \"key\": \"74663\",\n    \"description\": \"two boys are turning their heads to look at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtfbt9KZI1s71nvbo1_400\",\n    \"question\": \"what is driving the car?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11621\",\n    \"key\": \"15351\",\n    \"description\": \"a cute white dog is driving a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5rycDrcR1tf7kp3o1_500\",\n    \"question\": \"what are two men carrying and dancing on a stage?\",\n    \"answer\": \"microphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18092\",\n    \"key\": \"84784\",\n    \"description\": \"two men are carrying microphones and dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nll2l3AQAL1t8hlxao1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42118\",\n    \"key\": \"6690\",\n    \"description\": \"a woman with short,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rex42OdN1rtdvdvo1_250\",\n    \"question\": \"what is he holding before letting it go?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6243\",\n    \"key\": \"69293\",\n    \"description\": \"he is holding a large fish before letting it go.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2u4lDKeU1sbetrro1_400\",\n    \"question\": \"how many men is talking while one is staring down at the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27728\",\n    \"key\": \"81245\",\n    \"description\": \"two men talking while one is staring down at the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93jmiVDRT1ruob34o1_250\",\n    \"question\": \"how many women is facing each other clap and put hands on hips in unison while people watch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7665\",\n    \"key\": \"67105\",\n    \"description\": \"two women facing each other clap and put hands on hips in unison while people watch.\"\n  },\n  {\n    \"video_name\": \"tumblr_npq0ldiScW1u3vl7fo1_400\",\n    \"question\": \"how many girls is this image of hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48392\",\n    \"key\": \"14896\",\n    \"description\": \"this image is of two girls hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqaqp0wsgy1tpg4boo1_400\",\n    \"question\": \"what is the small kitten licking while laying in the covers?\",\n    \"answer\": \"paw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35292\",\n    \"key\": \"74024\",\n    \"description\": \"a small kitten is licking his paw while laying in the covers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlwpniNDnC1ti3vf1o1_250\",\n    \"question\": \"how many people are talking and laughing with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27155\",\n    \"key\": \"23567\",\n    \"description\": \"two people are talking and laughing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadr87nz2O1tjeyq6o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20936\",\n    \"key\": \"11218\",\n    \"description\": \"a man is eating something and wearing a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni11njEHBX1u86jejo1_250\",\n    \"question\": \"what is the color of the beanie?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32868\",\n    \"key\": \"14186\",\n    \"description\": \"a man with a beard is wearing a blue beanie.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ojivgX6N1qedx60o2_500\",\n    \"question\": \"what is the man with blonde hair wearing and moving his lips?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26668\",\n    \"key\": \"96484\",\n    \"description\": \"a man with blonde hair is wearing makeup and moving his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfl2gcItVI1tl3ivmo1_500\",\n    \"question\": \"what are two young boys with glasses eating?\",\n    \"answer\": \"pizza\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16820\",\n    \"key\": \"95859\",\n    \"description\": \"two young boys with glasses are eating pizza.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn6j1KjeH1rsm126o1_400\",\n    \"question\": \"what does the thin boy pull over his head?\",\n    \"answer\": \"t-shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1187\",\n    \"key\": \"36191\",\n    \"description\": \"a thin boy pulls his blue t-shirt over his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdvlzako31tx8mn0o1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44780\",\n    \"key\": \"78335\",\n    \"description\": \"a gray race car is out of street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kkadLYfn1sva5i8o1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52520\",\n    \"key\": \"42914\",\n    \"description\": \"a blue cat smile and make some magic.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy4j3aQmX1u3a0fpo1_500\",\n    \"question\": \"what is the color of the light?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45473\",\n    \"key\": \"74375\",\n    \"description\": \"this image is of a bright red light bursting in a persons face.\"\n  },\n  {\n    \"video_name\": \"tumblr_namuwpKydj1s5fsr0o1_250\",\n    \"question\": \"how many girls put their fingers to their mouths and stick out their tongues?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21046\",\n    \"key\": \"11761\",\n    \"description\": \"3 girls put their fingers to their mouths and stick out their tongues.\"\n  },\n  {\n    \"video_name\": \"tumblr_nccngahQlq1sdbrm9o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5370\",\n    \"key\": \"66360\",\n    \"description\": \"a man in a black shirt was singing a song.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncl5x8DW461rj8475o1_400\",\n    \"question\": \"what is getting the crowd riled up?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5636\",\n    \"key\": \"93891\",\n    \"description\": \"a music star is getting the crowd riled up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndi35jWc6Z1tm6rguo1_250\",\n    \"question\": \"how many men sit in the restaurant looking at a third man?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22862\",\n    \"key\": \"47727\",\n    \"description\": \"two men sit in a restaurant looking at a third man.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8ztgwPRU1tj8blpo1_250\",\n    \"question\": \"what is holding and biting its own tail?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47913\",\n    \"key\": \"11564\",\n    \"description\": \"a white and black cat is holding and biting its own tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhc7yftJVr1u6ilnvo1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21024\",\n    \"key\": \"24220\",\n    \"description\": \"white guy with brown hair and flowers in his hair is staring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzloujUkK1slqfugo1_400\",\n    \"question\": \"what is the woman wearing and singing into a microphone?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47954\",\n    \"key\": \"81726\",\n    \"description\": \"a woman is wearing headphones and singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mn3lwcbD1thlegdo1_500\",\n    \"question\": \"what is smiling and resting her head on her fingers?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30332\",\n    \"key\": \"95831\",\n    \"description\": \"a girl wearing makeup is smiling and resting her head on her fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_napklqSAmm1ti85ceo1_250\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42847\",\n    \"key\": \"47076\",\n    \"description\": \"a man with blue eyes looks into the darkness looked.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk90y1wTdg1sbompmo1_500\",\n    \"question\": \"what does the model strut down wearing a yellow maxi?\",\n    \"answer\": \"runway\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36804\",\n    \"key\": \"58621\",\n    \"description\": \"a model struts down the runway wearing a yellow maxi.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxizm8Hzf1tjfka2o1_250\",\n    \"question\": \"what does the young woman then sip?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16003\",\n    \"key\": \"10219\",\n    \"description\": \"a young woman is talking with a smile on her face then sips her cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2d03y10U1si6w6mo1_250\",\n    \"question\": \"what is the guy with very dark messy hair eating?\",\n    \"answer\": \"apple\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5779\",\n    \"key\": \"26952\",\n    \"description\": \"a guy with very dark messy hair is eating an apple.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfndwo7hfa1t7an45o1_500\",\n    \"question\": \"what is jumping very swiftly on someone 's bed?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5481\",\n    \"key\": \"91769\",\n    \"description\": \"A rabbit is jumping very swiftly on someone 's bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakn71UZOA1tumc0bo1_400\",\n    \"question\": \"where is the soccer player scoring a goal.\",\n    \"answer\": \"? net\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40530\",\n    \"key\": \"66045\",\n    \"description\": \"a soccer player is scoring a goal in the net.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazf9cN70h1qm87muo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40750\",\n    \"key\": \"28852\",\n    \"description\": \"a white girl with blue shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9xu7hQBq1r7o668o1_400\",\n    \"question\": \"what plays with the mouse on a quilt?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35876\",\n    \"key\": \"50810\",\n    \"description\": \"a cat plays with a mouse on a quilt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhddi06tLJ1r92ykmo1_400\",\n    \"question\": \"how many people are sitting on the sofa?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA74\",\n    \"key\": \"33850\",\n    \"description\": \"three people are sitting on the sofa and two of them are moving their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1p6dKyJo1rxixhso1_400\",\n    \"question\": \"how many men in suits rub against one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26649\",\n    \"key\": \"57923\",\n    \"description\": \"two men in suits rub against one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzuoyTPM61tx8mn0o1_400\",\n    \"question\": \"how many care spins out of control?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40391\",\n    \"key\": \"78642\",\n    \"description\": \"cars are racing around a racetrack and one care spins out of control.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9dxxv9ONq1sk96t7o1_400\",\n    \"question\": \"what is tied up with the white dog and the cat is scared?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21484\",\n    \"key\": \"59286\",\n    \"description\": \"a cat is tied up with a white dog and the cat is scared.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndhdgtSZkm1s5kfneo1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49981\",\n    \"key\": \"63401\",\n    \"description\": \"a young man wearing black clothes is performing a trick on a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbspjswqQu1sz068fo1_250\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24768\",\n    \"key\": \"39915\",\n    \"description\": \"a white dog with eyebrows is running.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhlvobrJMp1tln8qzo1_400\",\n    \"question\": \"what is running through the field with mountains in the back ground?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4309\",\n    \"key\": \"65403\",\n    \"description\": \"a large horse is running through a field with mountains in the back ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_niutzjybwA1u93r5no1_540\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA741\",\n    \"key\": \"56321\",\n    \"description\": \"the man in the red hat is dancing and rapping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgce65zHo1uomek3o1_400\",\n    \"question\": \"what is the model walking down posing?\",\n    \"answer\": \"runway\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25886\",\n    \"key\": \"52744\",\n    \"description\": \"a model is walking down a runway posing.\"\n  },\n  {\n    \"video_name\": \"tumblr_niuspkh0pL1u8dv8eo1_250\",\n    \"question\": \"how many lovers is having a nice conversation and love is in the air?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50071\",\n    \"key\": \"35476\",\n    \"description\": \"two lovers having a nice conversation and love is in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguvutkldj1rs0i14o1_400\",\n    \"question\": \"how many rats does the person balance on their shoulder and arm?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14079\",\n    \"key\": \"46819\",\n    \"description\": \"a person balances two rats on their shoulder and arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_npb6eieHYv1uxot71o1_500\",\n    \"question\": \"how many men turn to look at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36352\",\n    \"key\": \"11924\",\n    \"description\": \"two men turn to look at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngs1z8z7vt1svorzto1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52387\",\n    \"key\": \"93870\",\n    \"description\": \"a black haired man looks around with his mouth open.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyndnYw1C1rmkebwo1_400\",\n    \"question\": \"what is biting the man who bites the dog back?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41370\",\n    \"key\": \"32270\",\n    \"description\": \"a black dog is biting a man who bites the dog back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkj5yl01mk1thirzao1_400\",\n    \"question\": \"how many men are talking into the same microphone that one of them is holding?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37997\",\n    \"key\": \"62405\",\n    \"description\": \"four men are talking into the same microphone that one of them is holding.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98w8z1TGU1ttpy61o1_250\",\n    \"question\": \"how many women with coiffed hair are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14385\",\n    \"key\": \"98159\",\n    \"description\": \"two women with coiffed hair are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwrume8cm1un7etzo1_400\",\n    \"question\": \"what is the man with no shirt playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40782\",\n    \"key\": \"67999\",\n    \"description\": \"a man with no shirt is playing drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1drkOtbS1ruj6z8o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45839\",\n    \"key\": \"60497\",\n    \"description\": \"a woman with dyed red hair speaks and covers her face with her left hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq0vgpO4MV1u88jnvo1_250\",\n    \"question\": \"what scans his surroundings and twitches his ear?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36531\",\n    \"key\": \"46248\",\n    \"description\": \"a brown cat scans his surroundings and twitches his ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_neyfy4CT4y1qbvx5uo1_400\",\n    \"question\": \"what is the color of the mask?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16841\",\n    \"key\": \"1253\",\n    \"description\": \"a man is walking and he is wearing a black mask over his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_npq9jlIFaN1u1ogm0o1_1280\",\n    \"question\": \"what is the plane dropping from the sky?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8053\",\n    \"key\": \"98065\",\n    \"description\": \"a plane is dropping a car from the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmvmkqaym01u12ezho1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44066\",\n    \"key\": \"97587\",\n    \"description\": \"lady with white sailor hat and black dress sing.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4ix0wmJO1tb9h1yo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20557\",\n    \"key\": \"17658\",\n    \"description\": \"a woman with long brown hair is turning her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nek73cMum61tlbm9qo1_400\",\n    \"question\": \"how many people are dancing in the room together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40742\",\n    \"key\": \"54344\",\n    \"description\": \"two people are dancing in a room together.\"\n  },\n  {\n    \"video_name\": \"tumblr_natldfOVNU1re785no1_400\",\n    \"question\": \"what is the young bearded man wearing a dinner jacket is straightening?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43433\",\n    \"key\": \"20741\",\n    \"description\": \"a young bearded man wearing a dinner jacket is straightening his bow tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazf9cN70h1qm87muo1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34484\",\n    \"key\": \"28852\",\n    \"description\": \"a white girl with blue shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njgn0ykrlJ1rjgw6yo1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10655\",\n    \"key\": \"1670\",\n    \"description\": \"a white guy is smiling sexy at another one.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7c7ieppd1trcqgmo1_400\",\n    \"question\": \"what does the guy let to the left while playing guitar?\",\n    \"answer\": \"drop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28094\",\n    \"key\": \"29479\",\n    \"description\": \"a guy lets his head drop to the left while playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9uj5jyB9m1soovq7o1_500\",\n    \"question\": \"what is the young man in a blue shirt riding?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42836\",\n    \"key\": \"91317\",\n    \"description\": \"a young man in a blue shirt is riding a stationary bike.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1dyrKWvc1sfwm8jo1_400\",\n    \"question\": \"what is the color of the spoon?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30835\",\n    \"key\": \"16778\",\n    \"description\": \"a person scoops up some sauce using a white spoon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjsmn1Xji1te9mf9o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9272\",\n    \"key\": \"13292\",\n    \"description\": \"boy with brown hair turns his head and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdtu2RWrh1tfn4y9o1_250\",\n    \"question\": \"what is the guy wearing green shorts with no shirt,\",\n    \"answer\": \"is riding , into the swimming pool ? bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33972\",\n    \"key\": \"16129\",\n    \"description\": \"a guy wearing green shorts with no shirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nh4kp4iSKN1rsfix9o1_500\",\n    \"question\": \"what is the man smoking while sitting?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27967\",\n    \"key\": \"50621\",\n    \"description\": \"a man is smoking a cigarette while sitting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd86nwgWeM1t2x9o3o1_500\",\n    \"question\": \"what spins sideways on the track and narrowly escapes crashing?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1932\",\n    \"key\": \"54725\",\n    \"description\": \"a car spins sideways on a track and narrowly escapes crashing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd00a2dHuw1ryusrfo1_400\",\n    \"question\": \"what is the guy flexing his bare muscles and wearing?\",\n    \"answer\": \"beanie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20217\",\n    \"key\": \"29961\",\n    \"description\": \"a guy is flexing his bare muscles and wearing a red and black beanie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknqcxnNVf1upqb0po1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26638\",\n    \"key\": \"31885\",\n    \"description\": \"a guy in a white tank top is moving his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng5q9xB6gZ1u1xxbfo1_500\",\n    \"question\": \"how many people are standing close together and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46978\",\n    \"key\": \"96848\",\n    \"description\": \"two people are standing close together and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w2rvoTUU1tg9l46o1_400\",\n    \"question\": \"how many people are dancing and moving on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6379\",\n    \"key\": \"18693\",\n    \"description\": \"two people are dancing and moving on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqji8O23b1sa0lndo1_500\",\n    \"question\": \"what does the woman shove into a man 's chest?\",\n    \"answer\": \"stake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28576\",\n    \"key\": \"71839\",\n    \"description\": \"a woman shoves a stake into a man 's chest.\"\n  },\n  {\n    \"video_name\": \"tumblr_npl1ihcovf1u06zrlo1_250\",\n    \"question\": \"how many performers are on stage and pushing each other playfully?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6378\",\n    \"key\": \"2745\",\n    \"description\": \"two performers are on stage and pushing each other playfully.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9onfXyT51tjy2y0o1_500\",\n    \"question\": \"how many people are dancing together and are happy?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52904\",\n    \"key\": \"97111\",\n    \"description\": \"two people are dancing together and are happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfuw7qwfzm1sjedcoo1_250\",\n    \"question\": \"what is the tattooed man wearing a hat is holding and singing or rapping?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21268\",\n    \"key\": \"234\",\n    \"description\": \"a tattooed man wearing a hat is holding a microphone and singing or rapping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nipbny6enf1s3ibzxo1_500\",\n    \"question\": \"what is the man with gold teeth lifting?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39490\",\n    \"key\": \"98062\",\n    \"description\": \"a man with gold teeth is lifting his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jwovUTdf1tt0699o1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38820\",\n    \"key\": \"74288\",\n    \"description\": \"an ice hockey player wearing blue clothing is pushing a puck.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc4j30gzK91saylpgo1_400\",\n    \"question\": \"where is the girl fighting.\",\n    \"answer\": \"? classroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA15826\",\n    \"key\": \"58946\",\n    \"description\": \"a girl is fighting in a classroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngn0ttCSb51svos5ho1_400\",\n    \"question\": \"what is the color of the couch?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23719\",\n    \"key\": \"36865\",\n    \"description\": \"two friends are arm wrestling on a green couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtrxiojIN1ua0og2o1_400\",\n    \"question\": \"what is the guy using in a room?\",\n    \"answer\": \"keyboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9746\",\n    \"key\": \"64484\",\n    \"description\": \"a guy is using his keyboard in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnv3paZgju1tqq823o1_500\",\n    \"question\": \"what do two men raise?\",\n    \"answer\": \"sabers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45653\",\n    \"key\": \"96962\",\n    \"description\": \"two men raise light sabers as doors open to reveal a dancing man with a light saber.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzsp7tuTy1uuiij8o1_400\",\n    \"question\": \"how many men are sitting down and talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38486\",\n    \"key\": \"51083\",\n    \"description\": \"two men are sitting down and talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9b86RibY1t30yt2o1_400\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42256\",\n    \"key\": \"82248\",\n    \"description\": \"some men dressed in black have black marks on their faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafeokdd2G1rkg0aio1_400\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16086\",\n    \"key\": \"64967\",\n    \"description\": \"a woman in black glasses is inhaling smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_neyjq3tjnp1rpq8aco1_400\",\n    \"question\": \"how many boxers are fighting in the ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41528\",\n    \"key\": \"82800\",\n    \"description\": \"two boxers are fighting in the ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvri85Mv81u33e4bo1_500\",\n    \"question\": \"what is the man taking off?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39441\",\n    \"key\": \"19169\",\n    \"description\": \"a man is taking off his black suit jacket to reveal a blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbx8aewg0R1rbd7evo1_500\",\n    \"question\": \"what is the man playing and smiling?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15937\",\n    \"key\": \"100425\",\n    \"description\": \"a man is playing the drums and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq4afnM0Z1s5o1jwo1_400\",\n    \"question\": \"what does the person with blue hair carry on the back of their neck?\",\n    \"answer\": \"mouse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44424\",\n    \"key\": \"41704\",\n    \"description\": \"a person with blue hair carries a mouse on the back of their neck while another one climbs down their shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95d2oPwhy1suyqwko1_400\",\n    \"question\": \"what is the color of the pug?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10277\",\n    \"key\": \"56086\",\n    \"description\": \"a light brown pug smiles and walks toward the view.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0vxeyviE1rco9sno1_250\",\n    \"question\": \"what is the man walking down the street slowly removes?\",\n    \"answer\": \"scarf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45848\",\n    \"key\": \"17322\",\n    \"description\": \"a man walking down the street slowly removes his scarf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nki72xibIX1tatohao1_250\",\n    \"question\": \"what is playing with the dog and dog is surprised?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26742\",\n    \"key\": \"3605\",\n    \"description\": \"a cat is playing with a dog and dog is surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9rxraygM1u1bqbwo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23427\",\n    \"key\": \"3076\",\n    \"description\": \"a guy wearing a blue checkered shirt eats a chicken nugget.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj0gp8UaPp1u9c93ao1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39660\",\n    \"key\": \"20380\",\n    \"description\": \"a guy in a suit and white hat is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkag9eNN351unbz69o1_500\",\n    \"question\": \"how many young women smile broadly and hold hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44564\",\n    \"key\": \"91050\",\n    \"description\": \"two young women smile broadly and hold hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb53jhDegX1tkdwmzo1_500\",\n    \"question\": \"how many guys does there 's holding microphones running across a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21974\",\n    \"key\": \"73706\",\n    \"description\": \"there 's two guys holding microphones running across a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjiylGWRL1tlsqhto1_250\",\n    \"question\": \"how many boy is playing guitar while his friend is singing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30476\",\n    \"key\": \"91085\",\n    \"description\": \"one boy is playing guitar while his friend is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbz2razksU1tw8il7o1_400\",\n    \"question\": \"what did the man play?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA755\",\n    \"key\": \"29301\",\n    \"description\": \"a man played drums while a woman played guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesjjsxV3q1r1rrd0o1_400\",\n    \"question\": \"what did the goalie for a soccer team make?\",\n    \"answer\": \"block\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32193\",\n    \"key\": \"66349\",\n    \"description\": \"a goalie for a soccer team made a block.\"\n  },\n  {\n    \"video_name\": \"tumblr_newrcpj47E1u1ym3zo1_250\",\n    \"question\": \"how many men are sitting down and kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11299\",\n    \"key\": \"46934\",\n    \"description\": \"two men are sitting down and kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9crpj4At81tbusc0o1_400\",\n    \"question\": \"what is rubbing on the pair of feet and gets scared?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18946\",\n    \"key\": \"46834\",\n    \"description\": \"a cat is rubbing on a pair of feet and gets scared.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7mrc0HwL1qdauj7o1_400\",\n    \"question\": \"what is the man playing,\",\n    \"answer\": \"and he is singing into a microphone ? guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43240\",\n    \"key\": \"36894\",\n    \"description\": \"a man is playing a guitar,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrgn3y2N31tx8mn0o1_400\",\n    \"question\": \"what crashes into the side wall and spins out?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18601\",\n    \"key\": \"80363\",\n    \"description\": \"a race car crashes into the side wall and spins out.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmvvzXa4P1sxqls6o1_400\",\n    \"question\": \"how many men are kissing as one has his hands around the neck of the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28383\",\n    \"key\": \"23669\",\n    \"description\": \"two men are kissing as one has his hands around the neck of the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng12ciNZC11qjpkhao1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32413\",\n    \"key\": \"6433\",\n    \"description\": \"a guy wears a gray shirt and moves his head forward,\"\n  },\n  {\n    \"video_name\": \"tumblr_ng642mdNwX1qezt9uo1_250\",\n    \"question\": \"what is the cat pushing off a table?\",\n    \"answer\": \"ornament\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34305\",\n    \"key\": \"19353\",\n    \"description\": \"a cat is pushing an ornament off a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndz6v9plHU1s4gcyso1_500\",\n    \"question\": \"how many men dressed in suits are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6024\",\n    \"key\": \"86796\",\n    \"description\": \"two men dressed in suits are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndw0bzvkNg1tdhj6ro1_400\",\n    \"question\": \"what is the person in a suit putting up?\",\n    \"answer\": \"paws\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41110\",\n    \"key\": \"42931\",\n    \"description\": \"a person in a suit is putting his paws up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nep8u5gYPM1sixr68o1_400\",\n    \"question\": \"what is the girl wearing and holding a microphone?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12389\",\n    \"key\": \"25027\",\n    \"description\": \"a girl is wearing sunglasses and holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndou4ocoom1qkh9mno1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52003\",\n    \"key\": \"89736\",\n    \"description\": \"three young people with black hair are laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncecowzOHz1tky8vdo1_400\",\n    \"question\": \"how many women are jogging together across the bridge?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34549\",\n    \"key\": \"76171\",\n    \"description\": \"two women are jogging together across a bridge.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuxw8BkXX1tlwdp4o1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24436\",\n    \"key\": \"65656\",\n    \"description\": \"a guy is holding a small black dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmmpyhAPw1u6zld7o1_400\",\n    \"question\": \"how many men are performing the comedy routine?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22328\",\n    \"key\": \"65136\",\n    \"description\": \"three men are performing a comedy routine.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsp3eMrFe1t5v98mo1_400\",\n    \"question\": \"what is the guy in a car looking out?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52960\",\n    \"key\": \"34536\",\n    \"description\": \"a guy in a car is looking out the window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl33fuCCKK1slj978o1_400\",\n    \"question\": \"how many men fall off of the snow sled?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7153\",\n    \"key\": \"84963\",\n    \"description\": \"two men fall off of a snow sled,\"\n  },\n  {\n    \"video_name\": \"tumblr_nagou6rOfU1t2piwdo1_400\",\n    \"question\": \"where is the guy wearing a white shirt and head phones,\",\n    \"answer\": \"spins as he bends over . ? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24495\",\n    \"key\": \"59198\",\n    \"description\": \"a guy wearing a white shirt and head phones,\"\n  },\n  {\n    \"video_name\": \"tumblr_nciapoyvN51u00hdxo2_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37630\",\n    \"key\": \"95757\",\n    \"description\": \"a guy in a yellow jacket rolls his eyes and looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqvuy6gtIQ1u9fb2po1_250\",\n    \"question\": \"what is sitting in the woods and howling?\",\n    \"answer\": \"wolf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30576\",\n    \"key\": \"36656\",\n    \"description\": \"a small wolf is sitting in the woods and howling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbovfwOlAi1sg50dyo1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27293\",\n    \"key\": \"78488\",\n    \"description\": \"a young girl wearing blue sweater is balancing arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfs1edxkV01u4xnwyo1_1280\",\n    \"question\": \"how many people in a room and one person is looking at the other one from behind?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34165\",\n    \"key\": \"65254\",\n    \"description\": \"two people in a room and one person is looking at the other one from behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4ygqewgH1tibyhjo1_400\",\n    \"question\": \"what does there 's jumping on a guy asleep in bed?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37637\",\n    \"key\": \"57401\",\n    \"description\": \"there 's a dog jumping on a guy asleep in bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhoetcy311tupp3ao1_250\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33644\",\n    \"key\": \"7925\",\n    \"description\": \"the man in the white shirts steps back and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nem95mQccd1slw55qo1_400\",\n    \"question\": \"what is stopping just in time to avoid hitting another car?\",\n    \"answer\": \"truck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5867\",\n    \"key\": \"88258\",\n    \"description\": \"a semi truck is stopping just in time to avoid hitting another car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3j8sSsx51u0a3u8o1_400\",\n    \"question\": \"how many people are on the floor doing stretches?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52314\",\n    \"key\": \"50647\",\n    \"description\": \"two people are on the floor doing stretches.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4cexoiPR1ste7mro1_r1_500\",\n    \"question\": \"what does the man hold?\",\n    \"answer\": \"knife\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27797\",\n    \"key\": \"67029\",\n    \"description\": \"a man holds a knife while another looks on.\"\n  },\n  {\n    \"video_name\": \"tumblr_me0m87oukL1rcuthno1_250\",\n    \"question\": \"what is moving around and opening and shutting its mouth?\",\n    \"answer\": \"gorilla\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51333\",\n    \"key\": \"27184\",\n    \"description\": \"a gorilla is moving around and opening and shutting its mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_np3jvwNxHX1u1gesoo1_400\",\n    \"question\": \"what jumps over an obstacle in a pen?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35331\",\n    \"key\": \"66325\",\n    \"description\": \"a horse jumps over an obstacle in a pen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkqn8quHM1rlpke5o1_250\",\n    \"question\": \"what is the person cutting with a pizza cutter?\",\n    \"answer\": \"pizza\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44992\",\n    \"key\": \"43955\",\n    \"description\": \"a person is cutting a mini pizza with a pizza cutter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nac1kn8aGM1tei7rdo1_500\",\n    \"question\": \"how many guys are not wearing shorts and are dancing around each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13489\",\n    \"key\": \"72313\",\n    \"description\": \"two guys are not wearing shorts and are dancing around each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1108xDwG1slsl6ro1_500\",\n    \"question\": \"how many mean react to something by pulling expressions?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5553\",\n    \"key\": \"88064\",\n    \"description\": \"two mean react to something by pulling expressions.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96w0nQAlu1s0wwl1o1_400\",\n    \"question\": \"what is the man wearing white swings and sings?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15016\",\n    \"key\": \"33376\",\n    \"description\": \"a man wearing white swings a stick and sings.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvupluphK1u3t3mso1_540\",\n    \"question\": \"what is the woman having put on her?\",\n    \"answer\": \"eyeliner\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11599\",\n    \"key\": \"41853\",\n    \"description\": \"a woman is having eyeliner put on her.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyzyxj6MC1u6z5ppo1_400\",\n    \"question\": \"what did he win for his girlfriend at the fair?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18172\",\n    \"key\": \"40415\",\n    \"description\": \"he won the huge teddy bear for his girlfriend at the fair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitd6tsYER1u832izo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19488\",\n    \"key\": \"60081\",\n    \"description\": \"a girl with a yellow training suit is doing a pull up.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tn1eXLPK1rodd5bo1_400\",\n    \"question\": \"how many boys are listening to music through ear buds?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31424\",\n    \"key\": \"33070\",\n    \"description\": \"two boys are listening to music through ear buds.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmuusmxvU1tvjj7co1_500\",\n    \"question\": \"what did the man shoot out of a gun?\",\n    \"answer\": \"flower\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30947\",\n    \"key\": \"60637\",\n    \"description\": \"a man shot a flower out of a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3xu3rPoK1s6zpepo1_250\",\n    \"question\": \"what try to scratch his back with a tree?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA992\",\n    \"key\": \"8054\",\n    \"description\": \"a black bear try to scratch his back with a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqh1cwf6xD1rimengo1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11251\",\n    \"key\": \"78809\",\n    \"description\": \"a white girl with yellow hair is sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbqkbsQwOJ1qfcoxlo1_500\",\n    \"question\": \"what is the color of the dresses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28897\",\n    \"key\": \"85720\",\n    \"description\": \"a guy dresses in black is singing sit down and move his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nol6jnzK9a1t95h1uo1_400\",\n    \"question\": \"what is running across wooden floor and knocking skittles over?\",\n    \"answer\": \"hedgehog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26806\",\n    \"key\": \"16645\",\n    \"description\": \"a hedgehog is running across wooden floor and knocking skittles over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhowvhy2ev1qms0pxo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7886\",\n    \"key\": \"37814\",\n    \"description\": \"cat in red suit tries to walk but falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2xke0BQS1uopxvxo1_500\",\n    \"question\": \"what are two guys with dark shirts and sunglasses playing while singing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13247\",\n    \"key\": \"84797\",\n    \"description\": \"two guys with dark shirts and sunglasses are playing air drums while singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97zsdRSs81taoa7go1_250\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32448\",\n    \"key\": \"13137\",\n    \"description\": \"a wrestler wearing black sweat pants is spitting something in his opponent 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95hzf3Ujy1s3att3o1_400\",\n    \"question\": \"what is the baseball player venting?\",\n    \"answer\": \"bat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35740\",\n    \"key\": \"69808\",\n    \"description\": \"a baseball player is venting his angry on the baseball bat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpt98m8yA1rsg4lno1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50625\",\n    \"key\": \"57299\",\n    \"description\": \"the lady with the green eyes looks troubled.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtr52OeqL1u0xtr8o1_500\",\n    \"question\": \"how many boys are hugging each other awkwardly?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32615\",\n    \"key\": \"18794\",\n    \"description\": \"two boys are hugging each other awkwardly.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v270xh2N1rocygho1_400\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49329\",\n    \"key\": \"13835\",\n    \"description\": \"a woman wearing red lipstick,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkraguGpTL1u7pcrso1_500\",\n    \"question\": \"how many young men are dancing back and forth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46291\",\n    \"key\": \"72814\",\n    \"description\": \"two young men are dancing back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndywttSMPx1tsspsco6_500\",\n    \"question\": \"how many men are in the wrestling ring and one leaves?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30496\",\n    \"key\": \"44970\",\n    \"description\": \"two men are in a wrestling ring and one leaves.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn6j1KjeH1rsm126o1_400\",\n    \"question\": \"what is the young man taking off?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26192\",\n    \"key\": \"36191\",\n    \"description\": \"a young man is taking off his blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb4onzIujh1rcgxluo1_400\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27017\",\n    \"key\": \"19721\",\n    \"description\": \"the celebrities are on the red carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_naee5xFlr41tjf814o1_400\",\n    \"question\": \"how many fingers is the woman with long brown hair talking and holding up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3045\",\n    \"key\": \"26399\",\n    \"description\": \"a woman with long brown hair is talking and holding up two fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbvej9NLlj1rq00p0o1_500\",\n    \"question\": \"what is the boy holding and singing with a headset?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34360\",\n    \"key\": \"93311\",\n    \"description\": \"a boy is holding a guitar and singing with a headset.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbx1tmy96X1tpo01go1_400\",\n    \"question\": \"what is turning his head and panting?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35839\",\n    \"key\": \"4945\",\n    \"description\": \"a young puppy is turning his head and panting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1lzaN9G21tp02izo1_400\",\n    \"question\": \"what is dancing and playing the horn?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40311\",\n    \"key\": \"25343\",\n    \"description\": \"a bear is dancing and playing a horn.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w2rvoTUU1tg9l46o1_400\",\n    \"question\": \"how many people are standing on the stage and performing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33826\",\n    \"key\": \"18693\",\n    \"description\": \"two people are standing on a stage and performing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncigafqVwf1tgsaito1_400\",\n    \"question\": \"what is bagging his head on a stage?\",\n    \"answer\": \"puppet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29135\",\n    \"key\": \"42920\",\n    \"description\": \"a black and white puppet is bagging his head on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwyadLrQK1qb0dkjo1_400\",\n    \"question\": \"how many teeth does one have missing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29594\",\n    \"key\": \"40672\",\n    \"description\": \"two men with fake injuries are grinning and one has two teeth missing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkag4qNkAE1tskhhio1_400\",\n    \"question\": \"what is the color of the mask?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33276\",\n    \"key\": \"35070\",\n    \"description\": \"a woman wearing a black mask is biting s finger of her gloved hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r1v3mlIp1qdds9go1_400\",\n    \"question\": \"what does the person throw down and his friend catches it?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34234\",\n    \"key\": \"42116\",\n    \"description\": \"a person throws a skateboard down and his friend catches it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko38yTj0p1u5tusoo1_400\",\n    \"question\": \"what is the man with black hair chewing and nodding his head?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36269\",\n    \"key\": \"54430\",\n    \"description\": \"a man with black hair is chewing gum and nodding his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2n9dCyxP1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3430\",\n    \"key\": \"63626\",\n    \"description\": \"someone drives a white car on a road next to grass and trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_nddq9zmcQL1tmp9jpo1_500\",\n    \"question\": \"where is the person stood.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26725\",\n    \"key\": \"85009\",\n    \"description\": \"a person is stood still in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmx7rfsPJE1uqpyr9o1_540\",\n    \"question\": \"what is playing the guitar on stage seductively?\",\n    \"answer\": \"musician\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52777\",\n    \"key\": \"56365\",\n    \"description\": \"a rock musician is playing the guitar on stage seductively.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtxedpe7W1t7an45o1_250\",\n    \"question\": \"what is crawling onto the blue rocking horse?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5996\",\n    \"key\": \"27296\",\n    \"description\": \"a panda bear is crawling onto a blue rocking horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbejqsLg3q1r5hca9o1_400\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16025\",\n    \"key\": \"53913\",\n    \"description\": \"a person in a white coat ran down steps and into a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnuwzzYVM21up8dpto1_400\",\n    \"question\": \"how many women are walking down the street from the neck down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16978\",\n    \"key\": \"77188\",\n    \"description\": \"two women are walking down the street from the neck down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fh74CL8P1trm2z1o1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34416\",\n    \"key\": \"100154\",\n    \"description\": \"the guy with the red plaid shirt and black hat is waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9msz5bJ7Y1spkaepo1_400\",\n    \"question\": \"how many women dressed in black walk down the street?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10906\",\n    \"key\": \"62640\",\n    \"description\": \"five women dressed in black walk down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhsahpbTcA1st0a3lo1_500\",\n    \"question\": \"how many gloved finger does the girl with an intense expression slide over her lips?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3893\",\n    \"key\": \"69242\",\n    \"description\": \"a girl with an intense expression slides one gloved finger over her lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_narza02pKW1sk1ccdo1_400\",\n    \"question\": \"what is the young lady with pink hair touching?\",\n    \"answer\": \"sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50673\",\n    \"key\": \"24344\",\n    \"description\": \"a young lady with pink hair is touching her sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqiquZx9u1tx8mn0o1_400\",\n    \"question\": \"what is racing around the track and then gets passed by a red car?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48937\",\n    \"key\": \"65286\",\n    \"description\": \"a gray car is racing around a track and then gets passed by a red car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n6onq3cysV1qksr6no1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14765\",\n    \"key\": \"80673\",\n    \"description\": \"a man in white is singing into a microphone while putting his hand on his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_njnpzo4UG21t41q8xo1_400\",\n    \"question\": \"what is the woman wearing a red jumper is wearing on her face?\",\n    \"answer\": \"paint\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44674\",\n    \"key\": \"29838\",\n    \"description\": \"a woman wearing a red jumper is wearing tiger paint on her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrebnpJfWQ1qcr3i7o1_400\",\n    \"question\": \"how many beakers does the hand move from their case?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45672\",\n    \"key\": \"15722\",\n    \"description\": \"a hand moves two beakers from their case.\"\n  },\n  {\n    \"video_name\": \"tumblr_naqvbi7E0B1s5739to1_250\",\n    \"question\": \"what are the guy and girl wearing,\",\n    \"answer\": \"? shirts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA229\",\n    \"key\": \"22082\",\n    \"description\": \"a guy and girl are wearing plaid shirts,\"\n  },\n  {\n    \"video_name\": \"tumblr_nblvftkxsM1t4phwpo1_400\",\n    \"question\": \"what is digitally erected on the skyline?\",\n    \"answer\": \"building\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50127\",\n    \"key\": \"35534\",\n    \"description\": \"a building is digitally erected on the skyline.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9v07TxUL1sjcvc1o1_250\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43057\",\n    \"key\": \"84536\",\n    \"description\": \"a man is ripping fabric angrily in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknb86YzIa1u3knpvo5_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7821\",\n    \"key\": \"12\",\n    \"description\": \"a white girl with black hair is drinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_npbht8Ndd41rge03fo1_400\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14293\",\n    \"key\": \"70896\",\n    \"description\": \"a man is standing in front of a green wall and gesturing wildly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn2qfrcFhQ1tlg6slo1_250\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19160\",\n    \"key\": \"15494\",\n    \"description\": \"the guy with the white shirt and white pants is walking off the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncrhl6yWq81qi39coo1_500\",\n    \"question\": \"how many guys are wearing suits and looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41501\",\n    \"key\": \"96488\",\n    \"description\": \"two guys are wearing suits and looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vexzkDc11twx2vjo1_400\",\n    \"question\": \"what is carrying the man around in his mouth?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14333\",\n    \"key\": \"59189\",\n    \"description\": \"a super big cat is carrying a man around in his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpaoaNNIH1rpqn0wo1_500\",\n    \"question\": \"what is racing along the track and is sliding?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33105\",\n    \"key\": \"61804\",\n    \"description\": \"a black car is racing along a track and is sliding.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94g0xApdN1rqb3bqo1_500\",\n    \"question\": \"how many players are hugging together on the ground?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20906\",\n    \"key\": \"96156\",\n    \"description\": \"the two players are hugging together on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbwerXfuY1sjt7a5o1_500\",\n    \"question\": \"what was the man with dark hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29350\",\n    \"key\": \"55266\",\n    \"description\": \"a man with dark hair was playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq37h8tWv1t8zseno1_500\",\n    \"question\": \"where is the guy looking up and after turn off.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA26495\",\n    \"key\": \"100384\",\n    \"description\": \"a guy looking up and after turn off in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zgq3VLuH1rcrigpo1_250\",\n    \"question\": \"where is the man touching his face.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28941\",\n    \"key\": \"26508\",\n    \"description\": \"a man is touching his face in a white room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndekj98WUz1u19fjro1_500\",\n    \"question\": \"how many men are singing together while looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5624\",\n    \"key\": \"49220\",\n    \"description\": \"two men are singing together while looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3yuk3UEX1t7i7oqo1_400\",\n    \"question\": \"how many girls are sitting on the floor and making funny gestures?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32810\",\n    \"key\": \"32357\",\n    \"description\": \"two girls are sitting on the floor and making funny gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bdapPO481sc9qyco1_400\",\n    \"question\": \"how many motorcycles are racing next to each other on a track?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5418\",\n    \"key\": \"36760\",\n    \"description\": \"two motorcycles are racing next to each other on a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xa4psLDY1sb7v5lo1_500\",\n    \"question\": \"what is trotting across the wooded area?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31709\",\n    \"key\": \"70371\",\n    \"description\": \"a horse is trotting across a wooded area.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ak83GJ1A1si00qoo1_250\",\n    \"question\": \"what is jumping around excitedly in the foyer?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50025\",\n    \"key\": \"24051\",\n    \"description\": \"a dog is jumping around excitedly in a foyer.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngq2i7dlYh1s6zpepo1_400\",\n    \"question\": \"what is being dragged along the floor by its leash?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26047\",\n    \"key\": \"37532\",\n    \"description\": \"dog is being dragged along the floor by its leash.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsp5rS8rC1r78dgto1_400\",\n    \"question\": \"where are several football players having a conversation.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA2198\",\n    \"key\": \"5809\",\n    \"description\": \"several football players are having a conversation in a locker room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezdwodIKQ1r8cauwo1_250\",\n    \"question\": \"what does the guy pull over his face?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44019\",\n    \"key\": \"7172\",\n    \"description\": \"a guy pulls his white jacket over his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2vau6kkr1utqicho1_500\",\n    \"question\": \"how many soccer players collide while going towards the soccer ball?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6284\",\n    \"key\": \"82529\",\n    \"description\": \"three soccer players collide while going towards a soccer ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vqbipKqn1tas5ixo1_400\",\n    \"question\": \"what is the color of the belt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44507\",\n    \"key\": \"22435\",\n    \"description\": \"a man and a woman are wearing a blue belt and losing weight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh97cpE0ME1u4v3ypo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22912\",\n    \"key\": \"7646\",\n    \"description\": \"a black cat is batting some vegetables in a dish and one falls out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkr3ixRPZ1t7rsm9o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26701\",\n    \"key\": \"44332\",\n    \"description\": \"a man with gray hair is sitting and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrax82FAEW1tx8mn0o1_400\",\n    \"question\": \"what does driver fall off at a race?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41066\",\n    \"key\": \"66656\",\n    \"description\": \"driver falls off his motorcycle at a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqu3w0hZk81u176r8o1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19371\",\n    \"key\": \"90899\",\n    \"description\": \"a black woman is taking her wig off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nemlr0qXJL1rwfvfro1_400\",\n    \"question\": \"how many men are walking together and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33569\",\n    \"key\": \"21542\",\n    \"description\": \"two men are walking together and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbvhcbSyBx1rgwaj9o1_400\",\n    \"question\": \"what are two men playing?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18604\",\n    \"key\": \"12085\",\n    \"description\": \"two men are playing guitars while other people watch them perform.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqevkyJx61rlzi76o1_400\",\n    \"question\": \"how many girls in pink dresses are dancing on a stage?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18721\",\n    \"key\": \"62267\",\n    \"description\": \"five girls in pink dresses are dancing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd2bhyyPnc1rpph77o1_500\",\n    \"question\": \"what are the lights all,\",\n    \"answer\": \"? colors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4037\",\n    \"key\": \"60371\",\n    \"description\": \"the lights are all different colors,\"\n  },\n  {\n    \"video_name\": \"tumblr_njwxkwMrDk1si8uq7o1_400\",\n    \"question\": \"what does the man slowly put into his mouth?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27339\",\n    \"key\": \"28593\",\n    \"description\": \"a man slowly puts a cigarette into his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndb6k2PKFz1rtlmp4o1_250\",\n    \"question\": \"what is sitting next to the sink and trying to catch something?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41715\",\n    \"key\": \"18919\",\n    \"description\": \"a cat is sitting next to a sink and trying to catch something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nftqdlROes1so2g7mo1_500\",\n    \"question\": \"what is the color of the while?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8219\",\n    \"key\": \"95663\",\n    \"description\": \"a guy wears a hat and a backpack and embraces a girl with brown hair while smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q8ymfs5t1ql34a1o1_500\",\n    \"question\": \"how many men are watching on the sidelines as if they are nervous?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30365\",\n    \"key\": \"87320\",\n    \"description\": \"two men are watching on the sidelines as if they are nervous.\"\n  },\n  {\n    \"video_name\": \"tumblr_nogsnl7vHM1r4cmiho1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22770\",\n    \"key\": \"93140\",\n    \"description\": \"a group of boys wearing white shirt and black pants are moving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7qb9gPYT1rqy843o1_500\",\n    \"question\": \"what is the color of the stares?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6147\",\n    \"key\": \"87665\",\n    \"description\": \"a man with purple hair stares at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvn12P7qN1tjjqb9o1_400\",\n    \"question\": \"how many guys does there 's sitting together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8360\",\n    \"key\": \"64348\",\n    \"description\": \"there 's two guys sitting together,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk69csLQ3m1qdhmh9o1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13486\",\n    \"key\": \"87180\",\n    \"description\": \"the guy with the black hat and glasses is singing into the microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk90y1wTdg1sbompmo1_500\",\n    \"question\": \"what is the color of the maxi?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29508\",\n    \"key\": \"58621\",\n    \"description\": \"a model struts down the runway wearing a yellow maxi.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w8iiyU0l1tqlsu7o1_1280\",\n    \"question\": \"how many bottles is the man carrying of liquor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7003\",\n    \"key\": \"70381\",\n    \"description\": \"a man is carrying two bottles of liquor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96l1sX4yo1s3nbpco1_500\",\n    \"question\": \"what is the blond man closing?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5652\",\n    \"key\": \"88506\",\n    \"description\": \"a blond man is closing the door while he winks.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqke3emW01u0c4xeo1_400\",\n    \"question\": \"what is the color of the metal?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3201\",\n    \"key\": \"37691\",\n    \"description\": \"a light is flashing behind a piece of white metal.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrpl3F8ed1ric2s6o1_500\",\n    \"question\": \"what does the man without a shirt walk and swings swung?\",\n    \"answer\": \"towel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37669\",\n    \"key\": \"34329\",\n    \"description\": \"a man without a shirt walks and swings swung a towel.\"\n  },\n  {\n    \"video_name\": \"tumblr_n971luAydg1skeuupo1_400\",\n    \"question\": \"what is driving on the right side of a street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16200\",\n    \"key\": \"74145\",\n    \"description\": \"a white car is driving on the right side of a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn6j1KjeH1rsm126o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15597\",\n    \"key\": \"36191\",\n    \"description\": \"a young man is taking off his blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gl73jiW11si92i8o1_500\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26653\",\n    \"key\": \"12739\",\n    \"description\": \"a boy dressed in black is taking his hand from his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8st3d7GLU1ru1g19o1_500\",\n    \"question\": \"where is the woman passenger removing her sunglasses.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22388\",\n    \"key\": \"98940\",\n    \"description\": \"a woman passenger in a car is removing her sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncuqfo9oE01rkw997o1_400\",\n    \"question\": \"what is the brown haired girl smoking?\",\n    \"answer\": \"hookah\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50357\",\n    \"key\": \"30193\",\n    \"description\": \"the brown haired girl is smoking hookah.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngy3o8Q3eB1rz6s1bo1_500\",\n    \"question\": \"how many man pretends to hit another man in his face?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46641\",\n    \"key\": \"88360\",\n    \"description\": \"one man pretends to hit another man in his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9u8sctqwf1takocao1_500\",\n    \"question\": \"where are two men talking.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43321\",\n    \"key\": \"99638\",\n    \"description\": \"two men are talking in a kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcmygDXIz1sn2hzqo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33252\",\n    \"key\": \"86241\",\n    \"description\": \"a white girl with black hair is crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_nax247zhwY1sdbrm9o1_400\",\n    \"question\": \"how many men is this walking on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37347\",\n    \"key\": \"65700\",\n    \"description\": \"this is two men walking on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsc8hVxIl1ric9o7o1_500\",\n    \"question\": \"how many young boys are standing and watching?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37458\",\n    \"key\": \"92672\",\n    \"description\": \"the two young boys are standing and watching.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtkw6qmuL1u6pwr8o2_r2_500\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16922\",\n    \"key\": \"86491\",\n    \"description\": \"two young people in white shirts are carrying out a performance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklvhuCJ821qd8xguo1_400\",\n    \"question\": \"what is the woman unstrapping from a mannequin?\",\n    \"answer\": \"bra\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1314\",\n    \"key\": \"7816\",\n    \"description\": \"a woman is unstrapping a black bra from a mannequin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nok2inBTi31s71nvbo1_400\",\n    \"question\": \"what does the couple kisses and the woman accidentally spill?\",\n    \"answer\": \"beer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2400\",\n    \"key\": \"32601\",\n    \"description\": \"the couple kisses and the woman accidentally spills her beer.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdmedUpvr1tyncywo1_400\",\n    \"question\": \"what is swatting the dog as it sits in someone 's lap?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21701\",\n    \"key\": \"25608\",\n    \"description\": \"a cat is swatting a dog as it sits in someone 's lap.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfjyq0Lzs31u4txxyo1_400\",\n    \"question\": \"how many cops find the man hidden under a mattress?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33356\",\n    \"key\": \"19389\",\n    \"description\": \"two cops find a man hidden under a mattress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9bp1VMbw1s4tob0o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49179\",\n    \"key\": \"48809\",\n    \"description\": \"a man in black is having an interview with someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nofh1qIEXw1tfnm8co1_400\",\n    \"question\": \"what chases the fake fish thrown by a toy that walked toward it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48635\",\n    \"key\": \"37950\",\n    \"description\": \"a cat chases a fake fish thrown by a toy that walked toward it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nau47qXwVE1swr9vao1_500\",\n    \"question\": \"how many men is this playing around on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27578\",\n    \"key\": \"69650\",\n    \"description\": \"this is two men playing around on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qwatWy9m1slj978o1_400\",\n    \"question\": \"what is the color of the bats?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34912\",\n    \"key\": \"73992\",\n    \"description\": \"white bats are jumping onto a large blue cushion.\"\n  },\n  {\n    \"video_name\": \"tumblr_nese2hcXc11qjf4txo1_400\",\n    \"question\": \"what drives down the street on a cloudy day?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30706\",\n    \"key\": \"35306\",\n    \"description\": \"a car drives down a street on a cloudy day.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndaot5SytE1tuzzkvo1_400\",\n    \"question\": \"what is the young person putting onto their head?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17033\",\n    \"key\": \"32733\",\n    \"description\": \"a young person is putting a cap onto their head.\"\n  },\n  {\n    \"video_name\": \"tumblr_mgo1kl7MLM1qe2thio1_500\",\n    \"question\": \"where is the white horse prancing.\",\n    \"answer\": \"? courtyard\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9341\",\n    \"key\": \"94323\",\n    \"description\": \"a white horse is prancing in a courtyard.\"\n  },\n  {\n    \"video_name\": \"tumblr_naoyan6LOu1r67t5oo1_250\",\n    \"question\": \"where is the man kicking his leg up.\",\n    \"answer\": \"? office\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38803\",\n    \"key\": \"55613\",\n    \"description\": \"a man is kicking his leg up in an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbbj6piQ91qkplr2o1_250\",\n    \"question\": \"what is the color of the rabbit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52305\",\n    \"key\": \"2118\",\n    \"description\": \"a white rabbit is chewing vegetation beside a wire cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhm9v62A8Y1ryzomqo1_250\",\n    \"question\": \"how many young men are listening to another man?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11548\",\n    \"key\": \"20535\",\n    \"description\": \"three young men are listening to another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqoabbUAH1s9wp82o1_400\",\n    \"question\": \"what are lying peacefully on the couch?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41138\",\n    \"key\": \"30264\",\n    \"description\": \"two dogs are lying peacefully on the couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbdq1Bpfa1so39joo1_400\",\n    \"question\": \"what is the woman wearing a white shirt is watering with an elephant shaped can?\",\n    \"answer\": \"cactus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35991\",\n    \"key\": \"43468\",\n    \"description\": \"a woman wearing a white shirt is watering a cactus with an elephant shaped can.\"\n  },\n  {\n    \"video_name\": \"tumblr_neovndj9ZZ1u2gmf3o1_400\",\n    \"question\": \"how many boys are hugging while sitting on the edge of a bed?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7860\",\n    \"key\": \"33423\",\n    \"description\": \"the two boys are hugging while sitting on the edge of a bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf0jfqbC7D1tkpta6o1_400\",\n    \"question\": \"what is the person playing with a puppet stood next to him?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49222\",\n    \"key\": \"90705\",\n    \"description\": \"a person is playing his guitar with a puppet stood next to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4n9z7JsR1u36k2yo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45780\",\n    \"key\": \"52012\",\n    \"description\": \"a woman with red hair is reading a text and is surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwqt70ENH1sqp9mao1_400\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16393\",\n    \"key\": \"52294\",\n    \"description\": \"black men in suits and hats are singing and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhb7pgWlIn1slj978o1_500\",\n    \"question\": \"what is the goat licking off a spoon held by a human hand?\",\n    \"answer\": \"butter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26349\",\n    \"key\": \"76483\",\n    \"description\": \"a goat is licking peanut butter off a spoon held by a human hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgkpzxpv01qclz9ho1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52535\",\n    \"key\": \"99900\",\n    \"description\": \"a woman in a turquoise dress is cutting up a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nks1ucMHvh1r0slduo1_400\",\n    \"question\": \"where is the girl rearranging a cd.\",\n    \"answer\": \"? store\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA6313\",\n    \"key\": \"64982\",\n    \"description\": \"a girl is rearranging a cd in a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkc0sh9Q61us2u6eo1_500\",\n    \"question\": \"what is blowing the bubble with the gum?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52280\",\n    \"key\": \"62422\",\n    \"description\": \"a young woman chewing gum is blowing a bubble with the gum.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn0fjyZdU1u2oi1bo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45740\",\n    \"key\": \"63052\",\n    \"description\": \"a white man with black shirt is doing hands up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3k1cZSra1sqh42jo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27730\",\n    \"key\": \"60866\",\n    \"description\": \"the guy with the black shirt dove off the top rope onto the guy with the white trunks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nra6g5KAfA1usnj8do1_400\",\n    \"question\": \"how many women are drinking together at the desk?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24137\",\n    \"key\": \"82926\",\n    \"description\": \"two women are drinking together at a desk.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncg765LMOZ1tmaii4o1_250\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49725\",\n    \"key\": \"7519\",\n    \"description\": \"a guy in a blue coat laughed hard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda75vyqz61qe849no1_250\",\n    \"question\": \"what is the man taking and looking around?\",\n    \"answer\": \"pictures\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52771\",\n    \"key\": \"40781\",\n    \"description\": \"the man is taking pictures and looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni11njEHBX1u86jejo1_250\",\n    \"question\": \"what is the dark haired bearded man wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14919\",\n    \"key\": \"14186\",\n    \"description\": \"a dark haired bearded man is wearing a green woolly hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxnk5YbbF1sa0lndo1_500\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30022\",\n    \"key\": \"74243\",\n    \"description\": \"a woman in a black sweater is moving her arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9rpqaGy31qhb3vzo1_500\",\n    \"question\": \"how many people are pushing each other in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4065\",\n    \"key\": \"57512\",\n    \"description\": \"two people are pushing each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1dprmAw71tw8vf9o1_1280\",\n    \"question\": \"how many women are running into the ocean with their surf boards?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27783\",\n    \"key\": \"86626\",\n    \"description\": \"two women are running into the ocean with their surf boards.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9b47JmFf1r9hl28o1_400\",\n    \"question\": \"how many men are doing goofy dance moves?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34756\",\n    \"key\": \"87141\",\n    \"description\": \"three men are doing goofy dance moves.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9y9akfIvh1qlxas3o1_400\",\n    \"question\": \"what is the man playing while wearing a button down jacket?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31785\",\n    \"key\": \"76469\",\n    \"description\": \"a man is playing guitar while wearing a button down jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndt7p5Ww511s71nvbo1_400\",\n    \"question\": \"how many men is this playing competitive table tennis?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7459\",\n    \"key\": \"24653\",\n    \"description\": \"this is two men playing competitive table tennis.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lg2kfH5D1stp9t8o1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34157\",\n    \"key\": \"35131\",\n    \"description\": \"a man is kissing his wife with white clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9p8z4CYRh1rirt7wo1_250\",\n    \"question\": \"what is the woman wearing a halter top and two guys,\",\n    \"answer\": \"are having taken while on stage ? picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13962\",\n    \"key\": \"6881\",\n    \"description\": \"a woman wearing a halter top and two guys,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhebn0UepF1sdrnczo1_250\",\n    \"question\": \"how many men on a stage are going to kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51288\",\n    \"key\": \"51591\",\n    \"description\": \"two men on a stage are going to kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wa8lugFs1r8a1kho1_500\",\n    \"question\": \"what is the color of the lights?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14177\",\n    \"key\": \"96102\",\n    \"description\": \"a man wearing a blue hat is talking while blue lights flash in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfd3x2AVM91u2rlp7o1_250\",\n    \"question\": \"what suddenly falls down while laying down?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49173\",\n    \"key\": \"9346\",\n    \"description\": \"a cat suddenly falls down while laying down.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf17coVdO1ts0kzio1_400\",\n    \"question\": \"where is the girl in a white shirt dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10897\",\n    \"key\": \"70558\",\n    \"description\": \"a girl in a white shirt is dancing in a tan room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nayv2kyFQI1ts7wbfo1_400\",\n    \"question\": \"how many people is it holding each other 's shoulders?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5585\",\n    \"key\": \"80131\",\n    \"description\": \"it is two people holding each other 's shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc50ehFDSZ1tkpzw0o1_400\",\n    \"question\": \"what is jumping on the car that explodes?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41453\",\n    \"key\": \"97524\",\n    \"description\": \"a cut dog is jumping on a car that explodes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb8n74Sg7d1te0ddeo1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28692\",\n    \"key\": \"58596\",\n    \"description\": \"a man in a white t-shirt is dancing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhccm1k3hA1u5imt4o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9042\",\n    \"key\": \"44161\",\n    \"description\": \"a man in white is signing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nra8jaNWXd1ti2yzto1_1280\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45703\",\n    \"key\": \"17735\",\n    \"description\": \"a black cat is poking the cat through the bicycle wheel.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngydaduWj01skjjtto1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39800\",\n    \"key\": \"45622\",\n    \"description\": \"the lady with the red hair and pink shirt is holding a blue teapot.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0lw9PkLw1sht3fmo1_250\",\n    \"question\": \"what is carrying its own fruit,\",\n    \"answer\": \"an orange ? shell\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44587\",\n    \"key\": \"72976\",\n    \"description\": \"a shell is carrying its own fruit,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfas85i8vi1qz4c39o1_400\",\n    \"question\": \"what is riding on the skateboard?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37134\",\n    \"key\": \"5589\",\n    \"description\": \"a small dog is riding on a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafbw1iPGe1swogxvo2_500\",\n    \"question\": \"how many men are shaking hands and exchanging a brief hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29005\",\n    \"key\": \"89386\",\n    \"description\": \"two men are shaking hands and exchanging a brief hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbt9t3GNcv1tdjuqvo1_400\",\n    \"question\": \"where is the dog walking inside.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA10118\",\n    \"key\": \"32039\",\n    \"description\": \"a dog in a room is walking inside.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngo9zfHkp61qixslso1_400\",\n    \"question\": \"what is running through the house carrying something in his mouth?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47258\",\n    \"key\": \"13941\",\n    \"description\": \"a dog is running through a house carrying something in his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh6btDTyY1r38hk2o1_400\",\n    \"question\": \"what does drinking fall off a wire?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5055\",\n    \"key\": \"8486\",\n    \"description\": \"a drinking monkey falls off a wire.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmi7dGdup1qgeu41o1_500\",\n    \"question\": \"how many women speak to each other through cordless microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25535\",\n    \"key\": \"94202\",\n    \"description\": \"two women speak to each other through cordless microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_neyg4g5FNn1sh32sgo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18576\",\n    \"key\": \"50457\",\n    \"description\": \"a guy wearing a black jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyr8rSi4d1to0jsbo1_250\",\n    \"question\": \"what is the man making?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28128\",\n    \"key\": \"19082\",\n    \"description\": \"a man is making a balloon dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_naha579HaB1tggah7o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18743\",\n    \"key\": \"91224\",\n    \"description\": \"a white man with green shirt is showing a figurine.\"\n  },\n  {\n    \"video_name\": \"tumblr_npq9jlIFaN1u1ogm0o1_1280\",\n    \"question\": \"what is dropping the car from the sky?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27309\",\n    \"key\": \"98065\",\n    \"description\": \"a plane is dropping a car from the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x4u9gEFy1s2wg51o1_500\",\n    \"question\": \"what is standing in the snow leaning over a fence?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11196\",\n    \"key\": \"68398\",\n    \"description\": \"a horse is standing in the snow leaning over a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvlp2joQt1u3xs5fo1_250\",\n    \"question\": \"what is the color of the walking?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21749\",\n    \"key\": \"14507\",\n    \"description\": \"there 's a girl wearing black walking across a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g5efSoWD1rsxypwo1_400\",\n    \"question\": \"how many kittens are cleaning their paws as they sit in a small container?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3621\",\n    \"key\": \"22459\",\n    \"description\": \"three kittens are cleaning their paws as they sit in a small container.\"\n  },\n  {\n    \"video_name\": \"tumblr_niv358uYAh1u9vehoo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30639\",\n    \"key\": \"56398\",\n    \"description\": \"a white man with black hair is surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf801pcEsC1si71e8o1_500\",\n    \"question\": \"what does the guy play skateboard and makes?\",\n    \"answer\": \"circle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36448\",\n    \"key\": \"94279\",\n    \"description\": \"a guy play skateboarding and makes a complete circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmh5cTtJl1t6qjd2o1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35374\",\n    \"key\": \"78927\",\n    \"description\": \"a guy dressed in black clothes,\"\n  },\n  {\n    \"video_name\": \"tumblr_np87c5Ot0P1u677wzo1_250\",\n    \"question\": \"how many women are having eye to eye contact and pointing at someone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24826\",\n    \"key\": \"37932\",\n    \"description\": \"two women are having eye to eye contact and pointing at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_njabelknbz1qcedqco2_500\",\n    \"question\": \"how many men are singing into two microphones in a studio?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46796\",\n    \"key\": \"93822\",\n    \"description\": \"two men are singing into two microphones in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1zg9Bkf41s2wg51o1_400\",\n    \"question\": \"what is the color of the horse?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47529\",\n    \"key\": \"36195\",\n    \"description\": \"a man is working with a brown horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcoq5nBn21u3e2yro1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41567\",\n    \"key\": \"1909\",\n    \"description\": \"a man wearing a white shirt is talking and opening his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtzzkjgf81rpb34go1_400\",\n    \"question\": \"how many guys is this image of messing around with each other at night?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28702\",\n    \"key\": \"60156\",\n    \"description\": \"this image is of two guys messing around with each other at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e201ez7u1tfwqnfo1_500\",\n    \"question\": \"what is the color of the mirror?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13307\",\n    \"key\": \"73965\",\n    \"description\": \"a woman is winking at a small black mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxo6xkZ081u1lj9jo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48568\",\n    \"key\": \"34411\",\n    \"description\": \"the man in the blue shirt is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npvfwwSEYu1sfmhxao1_400\",\n    \"question\": \"how many women are smiling and then embracing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12039\",\n    \"key\": \"52459\",\n    \"description\": \"two women are smiling and then embracing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh2zp3q8L1rx8mrmo1_r1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11838\",\n    \"key\": \"80710\",\n    \"description\": \"a woman with long black hair is stood in front of a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nec7jpgXtw1s71nvbo1_400\",\n    \"question\": \"how many birds engage in strange mating behavior with the male dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45776\",\n    \"key\": \"27462\",\n    \"description\": \"two birds engage in strange mating behavior with the male dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyamsxkvF1sren05o1_400\",\n    \"question\": \"what is the color of the suspenders?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35613\",\n    \"key\": \"64252\",\n    \"description\": \"a man is singing and pumping up the crowd while wearing red suspenders.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9oowhSN4H1srwyebo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13059\",\n    \"key\": \"64872\",\n    \"description\": \"a handsome young man with black hair is sticking out his tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafcozD7p01tzwfnzo1_500\",\n    \"question\": \"where is the man lying and slowly opening his eye.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50811\",\n    \"key\": \"76070\",\n    \"description\": \"a man is lying in bed and slowly opening his eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbx00vqCh11tc9eofo1_250\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42356\",\n    \"key\": \"19541\",\n    \"description\": \"white guy in suit gives a running high five.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl9xeaWjbi1r9fb8eo1_500\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15616\",\n    \"key\": \"89885\",\n    \"description\": \"a man is standing inside a white room and is staring at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_npp13hVgZN1uv3dw9o1_250\",\n    \"question\": \"how many crying women is wearing handcuffs are pulled apart?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10008\",\n    \"key\": \"45040\",\n    \"description\": \"the two crying women wearing handcuffs are pulled apart.\"\n  },\n  {\n    \"video_name\": \"tumblr_naopjceBs01rar35do1_250\",\n    \"question\": \"how many men is this standing next two each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA456\",\n    \"key\": \"5248\",\n    \"description\": \"this is three men standing next two each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbwfjkIRX1u6q9r2o1_250\",\n    \"question\": \"what is the woman wearing a dress is smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40839\",\n    \"key\": \"11953\",\n    \"description\": \"a woman wearing a dress is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_neydqqcDtv1sayfpso1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46633\",\n    \"key\": \"71662\",\n    \"description\": \"a guy wearing a blue colored jacket,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr5xbefiA1s239z7o1_250\",\n    \"question\": \"what is the man wearing,\",\n    \"answer\": \"and he is talking ? sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14684\",\n    \"key\": \"35516\",\n    \"description\": \"a man is wearing sunglasses,\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1zh6yArU1usf060o1_400\",\n    \"question\": \"where is the duck coming towards someone and then he runs away.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA40276\",\n    \"key\": \"80337\",\n    \"description\": \"a duck is coming towards someone and then he runs away in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9075l4nPN1thp5u0o1_400\",\n    \"question\": \"what jumps on the man 's shoe and it gets thrown away?\",\n    \"answer\": \"spider\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50441\",\n    \"key\": \"46830\",\n    \"description\": \"a spider jumps on a man 's shoe and it gets thrown away.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97hd4BIH11txqr09o1_400\",\n    \"question\": \"how many men talk to each other and another dances on a stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48812\",\n    \"key\": \"86959\",\n    \"description\": \"three men talk to each other and another dances on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_njsd1xvdMx1twhh4bo1_400\",\n    \"question\": \"what is charging towards two men who are running away?\",\n    \"answer\": \"rhino\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30540\",\n    \"key\": \"37070\",\n    \"description\": \"a baby rhino is charging towards two men who are running away.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90wdbaCbJ1sakfnpo1_250\",\n    \"question\": \"what grabs the yellow and white cat and begins licking its cheek?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1920\",\n    \"key\": \"40595\",\n    \"description\": \"a furry white and gray cat grabs a yellow and white cat and begins licking its cheek.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6u7h2I8Z1saeojro1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17620\",\n    \"key\": \"15571\",\n    \"description\": \"a man is wearing black clothes and a tattoo in his chest.\"\n  },\n  {\n    \"video_name\": \"tumblr_nihobb7cQ81u8uroco1_250\",\n    \"question\": \"what is the man wearing and talking into a microphone while a motorcycle goes by?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50928\",\n    \"key\": \"44716\",\n    \"description\": \"a man is wearing a white shirt and talking into a microphone while a motorcycle goes by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfpubqKlJ11szh8ieo1_250\",\n    \"question\": \"what is the man smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43192\",\n    \"key\": \"20476\",\n    \"description\": \"a man is smoking a lighted cigarette while a woman watches him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nep9xj16Yh1smur93o1_400\",\n    \"question\": \"what does the young girl with a knife cut excitedly?\",\n    \"answer\": \"cake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5825\",\n    \"key\": \"31079\",\n    \"description\": \"a young girl with a knife cuts a cake excitedly.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrwofTG731u04lbzo1_500\",\n    \"question\": \"how many beautiful girls with cute eyes are looking still at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45450\",\n    \"key\": \"55099\",\n    \"description\": \"two beautiful girls with cute eyes are looking still at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9akxXxnZ1ql8b6oo1_r1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49340\",\n    \"key\": \"49012\",\n    \"description\": \"a blonde woman stares ahead while wearing a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5m5fBbyF1u11j39o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45385\",\n    \"key\": \"46582\",\n    \"description\": \"a white man with yellow hair is looking back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqlgrb0lcL1uz06r7o1_250\",\n    \"question\": \"what does man push with brush?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2412\",\n    \"key\": \"2822\",\n    \"description\": \"man pushes black and white cat with brush.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb669dto3V1sqr1umo1_500\",\n    \"question\": \"what is the color of the tricks?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35906\",\n    \"key\": \"80078\",\n    \"description\": \"this image is of a gymnast in red performing tricks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9auyzrZNt1simukfo1_400\",\n    \"question\": \"what is the man in a band playing on stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36466\",\n    \"key\": \"66175\",\n    \"description\": \"a man in a band is playing a white guitar on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_namck8I3Yj1s2a9g2o1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14368\",\n    \"key\": \"98182\",\n    \"description\": \"a white guy is wearing a t-shirt and sunglasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ji43A1Rt1titlh5o1_250\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52813\",\n    \"key\": \"19769\",\n    \"description\": \"a brown dog is staring quietly at something unseen.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwgbmoRKU1spxe4io1_250\",\n    \"question\": \"how many men are holding hands and rocking them back and forth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21375\",\n    \"key\": \"2319\",\n    \"description\": \"two men are holding hands and rocking them back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2y5lgrQG1ssust7o1_540\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51032\",\n    \"key\": \"100824\",\n    \"description\": \"a white woman with long hair is standing in front of a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrvryNhCU1u1tx9fo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51737\",\n    \"key\": \"80629\",\n    \"description\": \"a man dressed in black is moving back and forth,\"\n  },\n  {\n    \"video_name\": \"tumblr_nko1akxvzU1smu73fo1_250\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38542\",\n    \"key\": \"42115\",\n    \"description\": \"a man is backing down a red carpet and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni11njEHBX1u86jejo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34338\",\n    \"key\": \"14186\",\n    \"description\": \"a dark haired bearded man is wearing a green woolly hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzmf2VB71u25ovvo1_400\",\n    \"question\": \"what is moving down the road passing streetlights and trees?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51487\",\n    \"key\": \"63494\",\n    \"description\": \"a white car is moving down a road passing streetlights and trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9l6t6WLLm1shsozuo1_500\",\n    \"question\": \"how many young men are laughing and smiling and having fun?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25359\",\n    \"key\": \"88496\",\n    \"description\": \"two young men are laughing and smiling and having fun.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngu8cfNenW1ripg1ro1_500\",\n    \"question\": \"how many tattooed men are talking while one acts silly in the background?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34535\",\n    \"key\": \"57236\",\n    \"description\": \"two tattooed men are talking while one acts silly in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz222VcuZ1ttuz3po1_400\",\n    \"question\": \"where is the girl wearing white heels is looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22357\",\n    \"key\": \"1324\",\n    \"description\": \"a girl wearing white heels is looking at her legs in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2ve9qFfE1u4v3ypo1_500\",\n    \"question\": \"what is walking in the circle on see through glass?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9692\",\n    \"key\": \"49202\",\n    \"description\": \"a cat is walking in a circle on see through glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg121X5MD1twq523o1_250\",\n    \"question\": \"what is the man holding?\",\n    \"answer\": \"glass\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36997\",\n    \"key\": \"21384\",\n    \"description\": \"a man is holding a wine glass smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedj6p1oYc1u0re54o1_250\",\n    \"question\": \"what is the girl holding to her head?\",\n    \"answer\": \"flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25885\",\n    \"key\": \"15728\",\n    \"description\": \"a girl is holding flowers to her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnn5nj7vw21s8rggqo1_250\",\n    \"question\": \"what is putting his tongue out while laying on a couch?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13049\",\n    \"key\": \"2604\",\n    \"description\": \"a dog is putting his tongue out while laying on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nny1vwD6Xw1uobj5fo1_500\",\n    \"question\": \"how many men are staring at each other and one looks away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18401\",\n    \"key\": \"91998\",\n    \"description\": \"two men are staring at each other and one looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncb4rh5u6V1tw6u06o1_500\",\n    \"question\": \"where are berries rolling.\",\n    \"answer\": \"? bowl\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9861\",\n    \"key\": \"74315\",\n    \"description\": \"berries are rolling in a white bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcci3UZiu1r0fbhro1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8612\",\n    \"key\": \"42633\",\n    \"description\": \"a soccer play in a blue shirt runs forwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nihx73QAqi1rf4bn2o2_r1_540\",\n    \"question\": \"how many young men are laughing at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11362\",\n    \"key\": \"101197\",\n    \"description\": \"two young men are laughing at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wtxekbRV1s6f9ago1_500\",\n    \"question\": \"what is the woman wearing a hat is touching with one hand?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31805\",\n    \"key\": \"71312\",\n    \"description\": \"a woman wearing a hat is touching the hat with one hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7dbzg3AX1sg80mko1_400\",\n    \"question\": \"what is this image of two guys eating?\",\n    \"answer\": \"pizza\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37125\",\n    \"key\": \"73798\",\n    \"description\": \"this image is of two guys eating pizza.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni32scddOZ1u0ed70o1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18682\",\n    \"key\": \"56559\",\n    \"description\": \"a white man with gray suit is lighting fire.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngp8af5yyC1t2bqsgo1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29963\",\n    \"key\": \"81010\",\n    \"description\": \"a boy wearing a blue cap lays his head on a table and flaps his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5olbZaM81rs0blno1_500\",\n    \"question\": \"what is the girl wearing and winking?\",\n    \"answer\": \"towel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14480\",\n    \"key\": \"95390\",\n    \"description\": \"a girl is wearing a yellow towel and winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5uo6rEEc1rv06c2o1_250\",\n    \"question\": \"how many beautiful women are clinking wine glasses with great joy?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30729\",\n    \"key\": \"32590\",\n    \"description\": \"two beautiful women are clinking wine glasses with great joy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuiyeJfZ11u7yxjso1_250\",\n    \"question\": \"what is the girl in a red shirt riding?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48299\",\n    \"key\": \"77779\",\n    \"description\": \"a girl in a red shirt is riding a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda8txGklg1qfpq5po1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17218\",\n    \"key\": \"12642\",\n    \"description\": \"someone in a black sweater rests their head on an arm rest.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzmf2VB71u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6614\",\n    \"key\": \"63494\",\n    \"description\": \"a white car is moving down a road passing streetlights and trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbatooeAde1tx8mn0o1_400\",\n    \"question\": \"what are racing cars racing around a track and one car spins off?\",\n    \"answer\": \"track\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14830\",\n    \"key\": \"52734\",\n    \"description\": \"racing cars are racing around a track and one car spins off the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93blvtL4p1sncaa3o1_400\",\n    \"question\": \"what crashes on the turn and rolls into the dirt crashed?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39050\",\n    \"key\": \"65287\",\n    \"description\": \"a cyclist motorcycle crashes on a turn and rolls into the dirt crashed.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9adwvqs131rw8dw3o1_400\",\n    \"question\": \"how many men are staring at each other and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30823\",\n    \"key\": \"65019\",\n    \"description\": \"two men are staring at each other and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngws0aBHUj1slj978o1_400\",\n    \"question\": \"how many girls is this wearing tank tops taking a photograph of themselves?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16407\",\n    \"key\": \"40615\",\n    \"description\": \"this is two girls wearing tank tops taking a photograph of themselves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxsiqiqON1u7lcb4o1_500\",\n    \"question\": \"how many people does there 's in a race car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10795\",\n    \"key\": \"77450\",\n    \"description\": \"there 's two people in a race car and one is driving around a curve.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvf297g0o1ts4ov3o1_400\",\n    \"question\": \"how many teenagers cover their mouths and laugh at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14182\",\n    \"key\": \"33373\",\n    \"description\": \"two teenagers cover their mouths and laugh at something they are watching.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyz55Zgxg1tx8mn0o1_400\",\n    \"question\": \"what is drifting on the dirt road?\",\n    \"answer\": \"card\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33740\",\n    \"key\": \"78412\",\n    \"description\": \"a racing card is drifting on a dirt road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wjcxEfe01sqo9eko1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5453\",\n    \"key\": \"51380\",\n    \"description\": \"a man in a white shirt is looking at a phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ey0hkGsC1rv32mpo1_250\",\n    \"question\": \"what is the woman with a sad expression getting?\",\n    \"answer\": \"veil\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30320\",\n    \"key\": \"87595\",\n    \"description\": \"a woman with a sad expression is getting a veil.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkitkhGcr51qdlihoo1_500\",\n    \"question\": \"how many FRAMEQAorters are sitting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31245\",\n    \"key\": \"63296\",\n    \"description\": \"two FRAMEQAorters are sitting and one drops his microphone from above.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgc8nubQG1qapfv1o1_400\",\n    \"question\": \"where is the man being interviewed.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51410\",\n    \"key\": \"74136\",\n    \"description\": \"a man is being interviewed in a locker room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na213y4pel1tdek48o1_400\",\n    \"question\": \"what is jumping over the pole,\",\n    \"answer\": \"then rolling around in the mud ? horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42292\",\n    \"key\": \"43172\",\n    \"description\": \"a horse is jumping over a pole,\"\n  },\n  {\n    \"video_name\": \"tumblr_nckjrzjHmR1sc2n9ao1_500\",\n    \"question\": \"how many young boys are winking and smiling while sitting close together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9117\",\n    \"key\": \"83916\",\n    \"description\": \"two young boys are winking and smiling while sitting close together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v9pe5yzl1tdm8wxo1_400\",\n    \"question\": \"where is the guy smiling and putting his face.\",\n    \"answer\": \"? pillow\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29452\",\n    \"key\": \"44761\",\n    \"description\": \"a guy is smiling and putting his face in a pillow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadg9rtWQH1sp1enmo1_1280\",\n    \"question\": \"what did the man in a club rub on his teeth?\",\n    \"answer\": \"drugs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52694\",\n    \"key\": \"82430\",\n    \"description\": \"a man in a club rubs drugs on his teeth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3ug1STRd1qfyovfo1_540\",\n    \"question\": \"how many young men are filming themselves atop a high building?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4389\",\n    \"key\": \"96745\",\n    \"description\": \"two young men are filming themselves atop a high building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb965eQbdB1stgmtmo1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1709\",\n    \"key\": \"16656\",\n    \"description\": \"a man with a bare chest is sitting next to a woman wearing an orange top with tassels.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwb3012Rt1tdkk34o1_250\",\n    \"question\": \"how many girls are holding hands and dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38527\",\n    \"key\": \"41613\",\n    \"description\": \"two girls are holding hands and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndfl1xyQ891tzhdamo1_400\",\n    \"question\": \"what is the man playing with much fervor?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41173\",\n    \"key\": \"70563\",\n    \"description\": \"a man is playing the piano with much fervor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr1zh6yArU1usf060o1_400\",\n    \"question\": \"what is chasing the men in the jeep?\",\n    \"answer\": \"duck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17633\",\n    \"key\": \"80337\",\n    \"description\": \"the duck is chasing the men in the jeep.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwweyBX6U1s7w0h2o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35093\",\n    \"key\": \"28077\",\n    \"description\": \"the girl in the white shirt is winking and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0sfoJ1LW1rgc9a3o1_250\",\n    \"question\": \"what does the person balance?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24595\",\n    \"key\": \"30174\",\n    \"description\": \"a person balances his skateboard going down a railing on a sunny day.\"\n  },\n  {\n    \"video_name\": \"tumblr_no37v6clUi1qzho3ao1_400\",\n    \"question\": \"what is this going around a turn in a city?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6529\",\n    \"key\": \"94742\",\n    \"description\": \"this is a race car going around a turn in a city.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf6y3eCpjg1slj978o1_400\",\n    \"question\": \"how many boxer is punching another in the face?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13743\",\n    \"key\": \"45343\",\n    \"description\": \"one boxer is punching another in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n951b2b8S81t3pqzeo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24071\",\n    \"key\": \"2787\",\n    \"description\": \"a man in a blue shirt turns and looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhszflfDwb1u1rggjo1_400\",\n    \"question\": \"what is the person wearing a red jumpsuit is driving?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32424\",\n    \"key\": \"26159\",\n    \"description\": \"the person wearing a red jumpsuit is driving a race car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitvxeekfD1rqcmheo1_250\",\n    \"question\": \"what is the color of the helmet?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37680\",\n    \"key\": \"18914\",\n    \"description\": \"a man wearing a white helmet is holding a ski.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9by5h0MsZ1tb760zo1_400\",\n    \"question\": \"what does the man put into a vending machine when a man on the other side gives it back?\",\n    \"answer\": \"cash\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50476\",\n    \"key\": \"13027\",\n    \"description\": \"a man puts cash into a vending machine when a man on the other side gives it back.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu5ybxkBL1tia84ho1_r2_1280\",\n    \"question\": \"what is curling around the tree?\",\n    \"answer\": \"snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38555\",\n    \"key\": \"61746\",\n    \"description\": \"a snake is curling around a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xu4w1Lfq1tatohao1_400\",\n    \"question\": \"what is kicking the door with a back paw?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51619\",\n    \"key\": \"40652\",\n    \"description\": \"a cat is kicking a door with a back paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97fbtXhCS1tbgrm9o1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14972\",\n    \"key\": \"26417\",\n    \"description\": \"a man with dark curly hair is wearing a gray top and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtxedpe7W1t7an45o1_250\",\n    \"question\": \"what is the color of the toy?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28812\",\n    \"key\": \"27296\",\n    \"description\": \"baby panda sat on a blue horse toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyan4eWHz1tmnntwo1_400\",\n    \"question\": \"what is jumping and hanging onto the door?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1766\",\n    \"key\": \"26777\",\n    \"description\": \"a cat is jumping and hanging onto a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkbm8DACb1t0w9oqo1_400\",\n    \"question\": \"how many people does there 's who are wearing hats and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43479\",\n    \"key\": \"15773\",\n    \"description\": \"there 's two people who are wearing hats and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyfxvKq0p1rwwygfo1_500\",\n    \"question\": \"how many guys is wearing hats are dancing with their arms raised?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22424\",\n    \"key\": \"92839\",\n    \"description\": \"two guys wearing hats are dancing with their arms raised.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh37gypRMa1sfx6ffo1_250\",\n    \"question\": \"where is the girl sitting while a guy is greeting her.\",\n    \"answer\": \"? couch\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49986\",\n    \"key\": \"6055\",\n    \"description\": \"a girl is sitting in a couch while a guy is greeting her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrc4axMW2T1r92mkgo1_400\",\n    \"question\": \"what is turning donuts on the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18821\",\n    \"key\": \"62304\",\n    \"description\": \"the car is turning donuts on the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney66jVqi61ssvehso1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52048\",\n    \"key\": \"77648\",\n    \"description\": \"a man is playing with another man face in yellow jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdb9pItbr1tgdd9ao1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50218\",\n    \"key\": \"25300\",\n    \"description\": \"a man with black hair and a beard is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_naoyan6LOu1r67t5oo1_250\",\n    \"question\": \"where is the man singing and dancing.\",\n    \"answer\": \"? office\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA23594\",\n    \"key\": \"55613\",\n    \"description\": \"a man is singing and dancing in an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacngfa5N21r959nro1_400\",\n    \"question\": \"what is running through the field?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37058\",\n    \"key\": \"35211\",\n    \"description\": \"a white horse is running through a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejtlgrkmT1u1pi4oo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42071\",\n    \"key\": \"35293\",\n    \"description\": \"a girl with red hair is slowly licking her lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5h8ba4iB1s3wsijo1_500\",\n    \"question\": \"how many men are sword fighting in the boxed area?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12325\",\n    \"key\": \"69389\",\n    \"description\": \"two men are sword fighting in a boxed area.\"\n  },\n  {\n    \"video_name\": \"tumblr_nay0kzAbkR1twcgnlo1_400\",\n    \"question\": \"what are three young and beautiful women climbing?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23935\",\n    \"key\": \"27538\",\n    \"description\": \"three young and beautiful women are climbing the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nki97gCmDh1s3uqzwo1_250\",\n    \"question\": \"how many woman with long hair are talking and waving?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20082\",\n    \"key\": \"4472\",\n    \"description\": \"three woman with long hair are talking and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8jkjOdOl1tozyi0o1_400\",\n    \"question\": \"what is puffing up on the hob?\",\n    \"answer\": \"bun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42329\",\n    \"key\": \"75245\",\n    \"description\": \"a bun is puffing up on a hob.\"\n  },\n  {\n    \"video_name\": \"tumblr_n6ve3aFzGA1rqvpaao1_400\",\n    \"question\": \"what is watching toy train cars go by?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5377\",\n    \"key\": \"63978\",\n    \"description\": \"a cat watching toy train cars go by.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncy89sSxEH1t4eui2o1_500\",\n    \"question\": \"what is playing with other lion in outdoor?\",\n    \"answer\": \"lion\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1007\",\n    \"key\": \"84234\",\n    \"description\": \"a lion is playing with other lion in outdoor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9xu4w1Lfq1tatohao1_400\",\n    \"question\": \"what are two cats next to a door and scratches the wall?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42877\",\n    \"key\": \"40652\",\n    \"description\": \"two cats are next to a door and the cat scratches the wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9ywnJtxX1t09iyco1_500\",\n    \"question\": \"how many girls in white dresses are dancing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16396\",\n    \"key\": \"75498\",\n    \"description\": \"two girls in white dresses are dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuvtlz6f81tq4njio1_400\",\n    \"question\": \"what is the girl bouncing?\",\n    \"answer\": \"balls\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52750\",\n    \"key\": \"46370\",\n    \"description\": \"a girl is bouncing balls while she is balancing on a board.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn6cr8jai1u7y8p9o1_400\",\n    \"question\": \"what is the bunch of people dancing as the floor changes?\",\n    \"answer\": \"colors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26356\",\n    \"key\": \"54037\",\n    \"description\": \"a bunch of people dancing as the floor changes colors.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedbvrPn4z1soryl3o1_250\",\n    \"question\": \"what is the boy talking and petting?\",\n    \"answer\": \"koala\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16552\",\n    \"key\": \"9575\",\n    \"description\": \"a boy is talking and petting a stuffed toy koala.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rwhlo9uB1tptf7do1_250\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38758\",\n    \"key\": \"38342\",\n    \"description\": \"four men in black are waving their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nchyfz0sQj1slj978o1_250\",\n    \"question\": \"what is the man holding a lion cub and is licking his face?\",\n    \"answer\": \"lion\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14910\",\n    \"key\": \"27666\",\n    \"description\": \"a man is holding a lion cub and the lion is licking his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nolm8utjT81uw3c7ro1_250\",\n    \"question\": \"how many men are walking through an office space?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44138\",\n    \"key\": \"50961\",\n    \"description\": \"two men are walking through an office space.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9bbyX3y51tf36dpo3_400\",\n    \"question\": \"what is seeing flying behind the pilot driving a flight?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8528\",\n    \"key\": \"54009\",\n    \"description\": \"plane is seeing flying behind a pilot driving a flight.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvmjqHles1tl5f3zo1_250\",\n    \"question\": \"what is the color of the wall?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA316\",\n    \"key\": \"27620\",\n    \"description\": \"a man runs while holding a microphone in front of a white wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhb2we9rFe1u6l71oo1_250\",\n    \"question\": \"how many women dance while smiling at one another and wearing purple shirts?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39040\",\n    \"key\": \"36637\",\n    \"description\": \"two women dance while smiling at one another and wearing purple shirts.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2rewR6IG1rhzqaho1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51239\",\n    \"key\": \"101155\",\n    \"description\": \"a girl with long brown hair walks down a corridor with another girl,\"\n  },\n  {\n    \"video_name\": \"tumblr_nioeglzBE41rqttkvo1_500\",\n    \"question\": \"what is the man smoking and looking around?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24560\",\n    \"key\": \"81739\",\n    \"description\": \"a man is smoking a cigarette and looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfygp4DKxV1tw8vf9o1_400\",\n    \"question\": \"how many women does there 's running and flipping in unison?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3358\",\n    \"key\": \"19168\",\n    \"description\": \"there 's two women running and flipping in unison.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnx611gAZA1teszvzo1_400\",\n    \"question\": \"how many people is sitting in a chair,\",\n    \"answer\": \"one wearing brown shoes and the other has no footwear ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2510\",\n    \"key\": \"40182\",\n    \"description\": \"two people sitting in a chair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1sqlE5lg1tky74jo1_500\",\n    \"question\": \"how many females are exercising on the beach?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1462\",\n    \"key\": \"91703\",\n    \"description\": \"two females are exercising on the beach.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhnhys0agY1tcltsqo1_400\",\n    \"question\": \"what cleans another baboon while others walk around?\",\n    \"answer\": \"baboon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46232\",\n    \"key\": \"66216\",\n    \"description\": \"a baboon cleans another baboon while others walk around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwqffkK5o1sdfw73o1_400\",\n    \"question\": \"what does this show the upper portion of a boys face and he 's wearing?\",\n    \"answer\": \"headphones\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8218\",\n    \"key\": \"52166\",\n    \"description\": \"this shows the upper portion of a boys face and he 's wearing headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcvis8jts1tbcrm5o1_250\",\n    \"question\": \"what was eating lettuce leaves?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49956\",\n    \"key\": \"3820\",\n    \"description\": \"a black bunny rabbit was eating lettuce leaves.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdeeniOGl1s06j30o1_400\",\n    \"question\": \"what is the color of the bull?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15390\",\n    \"key\": \"57148\",\n    \"description\": \"a red bull sponsored car drives through a mud puddle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncoxe7Pzl11t0ojyvo1_250\",\n    \"question\": \"how many people in white shirts are walking arm in arm?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51174\",\n    \"key\": \"6571\",\n    \"description\": \"two people in white shirts are walking arm in arm.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98yhgmRsF1tfowdxo1_500\",\n    \"question\": \"how many people are in the room looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1759\",\n    \"key\": \"82023\",\n    \"description\": \"two people are in a room looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjkkdYkM51qdbvc2o1_400\",\n    \"question\": \"what is blown in front of a car?\",\n    \"answer\": \"dandelion\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9526\",\n    \"key\": \"77320\",\n    \"description\": \"a dandelion is blown in front of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nac7r67PCz1ttrqwxo1_250\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34129\",\n    \"key\": \"6638\",\n    \"description\": \"a girl is making a funny face wearing a black outfit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuvcycrMb1tana87o1_250\",\n    \"question\": \"where is the couple touching noses.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17681\",\n    \"key\": \"78506\",\n    \"description\": \"a couple is touching noses in a pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndggxt1SdX1stkbz3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23321\",\n    \"key\": \"62505\",\n    \"description\": \"a man in a pink dress is wrapped around another man in a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_npplhk1yOz1tbeohdo1_540\",\n    \"question\": \"what is the woman kissing made of fabric?\",\n    \"answer\": \"bow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18827\",\n    \"key\": \"56295\",\n    \"description\": \"a woman is kissing a bow made of fabric.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3vynn0a81rregeqo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36442\",\n    \"key\": \"34224\",\n    \"description\": \"a man wearing a white suit,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfrv4gBTS1soxo1wo1_400\",\n    \"question\": \"what is the man playing at a concert?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47736\",\n    \"key\": \"24863\",\n    \"description\": \"a man is playing the drums at a concert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbwk65nfT91r57bhho1_250\",\n    \"question\": \"how many sticks is the baby beating together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33414\",\n    \"key\": \"24228\",\n    \"description\": \"a baby is beating two sticks together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkh0ermIow1tmd6tdo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29510\",\n    \"key\": \"4372\",\n    \"description\": \"a girl wearing a red shirt is holding up a peace sign.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7ms6bQkF1qf738lo1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26756\",\n    \"key\": \"47662\",\n    \"description\": \"woman with black suit and yellow hair is walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sr0oUI821rkywpto1_1280\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6647\",\n    \"key\": \"98104\",\n    \"description\": \"a girl dressed in black puts her hands to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9ijtkcws1ti2sgvo3_250\",\n    \"question\": \"what is the young boy kicking from under a man sitting on it?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39970\",\n    \"key\": \"46241\",\n    \"description\": \"a young boy is kicking the ball from under a man sitting on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_njp4xkNl8t1tk2ngvo1_500\",\n    \"question\": \"what refuses to eat some food and jumps on a couch?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24705\",\n    \"key\": \"67971\",\n    \"description\": \"a dog refuses to eat some food and jumps on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3uzbrHlA1rmgp3fo1_500\",\n    \"question\": \"what is the man with curly hair smoking and pointing a gun?\",\n    \"answer\": \"cigar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29820\",\n    \"key\": \"13816\",\n    \"description\": \"a man with curly hair is smoking a cigar and pointing a gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne49poeZeL1tmjapgo1_500\",\n    \"question\": \"how many people are looking each other in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26241\",\n    \"key\": \"36788\",\n    \"description\": \"two people are looking each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngxg4uGPL61sfdfgyo1_250\",\n    \"question\": \"how many man are hugging and holding up the belt in a wrestling ring?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2638\",\n    \"key\": \"15293\",\n    \"description\": \"three man are hugging and holding up a belt in a wrestling ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni06hc76UJ1u639x2o1_500\",\n    \"question\": \"what slid across the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30169\",\n    \"key\": \"72526\",\n    \"description\": \"a sports car slid across the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tx52dF7T1th5r3po1_500\",\n    \"question\": \"what is the color of the bow?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20410\",\n    \"key\": \"86023\",\n    \"description\": \"a young woman wearing a red bow and a sailor collar is speaking or talking into a head-microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9wlbbLg11tfou8do1_400\",\n    \"question\": \"how many men are both styling their hair?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41117\",\n    \"key\": \"60514\",\n    \"description\": \"two men are both styling their hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2gpfzSk21tk2ngvo1_250\",\n    \"question\": \"how many rabbits are playing very funny in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35863\",\n    \"key\": \"13592\",\n    \"description\": \"two rabbits are playing very funny in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8ynvxlL51s36lx4o1_400\",\n    \"question\": \"how many people held their hands close together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20334\",\n    \"key\": \"70194\",\n    \"description\": \"two people held their hands close together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98t7cdeNZ1skdlfto1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41347\",\n    \"key\": \"60668\",\n    \"description\": \"a man takes off his red shirt in a studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk039jetLe1r0fn19o1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32572\",\n    \"key\": \"91871\",\n    \"description\": \"a white man with yellow hair is grimacing and looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbvef9bc6T1rzia65o1_250\",\n    \"question\": \"how many people is this sitting on a couch with one of them holding a microphone?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16310\",\n    \"key\": \"6549\",\n    \"description\": \"this is three people sitting on a couch with one of them holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfjoeOSwk1r8pns9o1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29868\",\n    \"key\": \"16662\",\n    \"description\": \"a gray cat is chewing on a plastic bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndm302Gvzr1srpy25o1_500\",\n    \"question\": \"what is wearing the checkered logo on his forehead?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50880\",\n    \"key\": \"56698\",\n    \"description\": \"the horse is wearing a checkered logo on his forehead.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91ihyaqLx1sc6yp2o1_400\",\n    \"question\": \"what is the color of the wig?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37742\",\n    \"key\": \"32199\",\n    \"description\": \"a man wearing a red wig winks and looks away.\"\n  },\n  {\n    \"video_name\": \"tumblr_n40aygjog81rbgz0xo1_500\",\n    \"question\": \"how many japanese young men are laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30375\",\n    \"key\": \"94906\",\n    \"description\": \"two japanese young men are laughing and one has a lollipop.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8cq0OE6r1u2z3v8o3_250\",\n    \"question\": \"what is the color of the coats?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11552\",\n    \"key\": \"2254\",\n    \"description\": \"a group is doing a performance while wearing white coats.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf1uaXSXE1ts0kzio1_400\",\n    \"question\": \"what is petting his human 's head?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22253\",\n    \"key\": \"41589\",\n    \"description\": \"the dog is petting his human 's head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngui6owoeN1qfv7h2o1_500\",\n    \"question\": \"what does the bearded man slowly push up to the bridge of his nose?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23884\",\n    \"key\": \"89798\",\n    \"description\": \"a bearded man slowly pushes his glasses up to the bridge of his nose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0tcd4mDD1u2x6xfo1_400\",\n    \"question\": \"what is the woman with long black hair putting on?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28441\",\n    \"key\": \"32603\",\n    \"description\": \"a woman with long black hair is putting a jacket on.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdeeniOGl1s06j30o1_400\",\n    \"question\": \"what sponsored car drives through a mud puddle?\",\n    \"answer\": \"bull\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36256\",\n    \"key\": \"57148\",\n    \"description\": \"a red bull sponsored car drives through a mud puddle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nge2siSPYW1sppy9co1_250\",\n    \"question\": \"what is running along the side of a pool,\",\n    \"answer\": \"and he is falling in the water ? dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38408\",\n    \"key\": \"52861\",\n    \"description\": \"a dog is running along the side of a pool,\"\n  },\n  {\n    \"video_name\": \"tumblr_n98neseC6j1sulpwxo1_400\",\n    \"question\": \"what is the man playing and singing next to some candles?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19180\",\n    \"key\": \"33533\",\n    \"description\": \"a man is playing guitar and singing next to some candles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkx0zarpkq1r0ia88o1_400\",\n    \"question\": \"what is the man eating and wiping his fingers off?\",\n    \"answer\": \"sandwich\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27290\",\n    \"key\": \"22846\",\n    \"description\": \"a man is eating a sandwich and wiping his fingers off.\"\n  },\n  {\n    \"video_name\": \"tumblr_niusi5DiBN1r027rto1_250\",\n    \"question\": \"what is the girl wearing a white shirt and black skirt,\",\n    \"answer\": \"is smoking ? cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41813\",\n    \"key\": \"820\",\n    \"description\": \"a girl wearing a white shirt and black skirt,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbf8mqqZRN1shpcero1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34836\",\n    \"key\": \"4310\",\n    \"description\": \"a person is dancing and singing in a black shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_np9wd6T7fT1tkxy83o1_250\",\n    \"question\": \"what is the color of the pot?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3757\",\n    \"key\": \"3901\",\n    \"description\": \"a woman is wearing a tie and stirring a black pot.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqozqb57J1s9vhbqo1_250\",\n    \"question\": \"how many men are staring at each other but not talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39864\",\n    \"key\": \"81304\",\n    \"description\": \"two men are staring at each other but not talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_necbt7TYbT1ttsz9wo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52851\",\n    \"key\": \"60187\",\n    \"description\": \"a black woman wearing a blue shirt is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncb4rh5u6V1tw6u06o1_500\",\n    \"question\": \"what is the color of the bowl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6593\",\n    \"key\": \"74315\",\n    \"description\": \"berries are rolling in a white bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx5igYXE61u38aego1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18892\",\n    \"key\": \"73993\",\n    \"description\": \"two women with long black hair are kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfagkDT3Z1qz61bho1_400\",\n    \"question\": \"how many guys are near mountains?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36825\",\n    \"key\": \"80688\",\n    \"description\": \"two guys are near mountains,\"\n  },\n  {\n    \"video_name\": \"tumblr_n97os4nTVF1sblhg1o1_500\",\n    \"question\": \"what is the color of the boys?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45384\",\n    \"key\": \"52554\",\n    \"description\": \"a group of boys in black are coming.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngdq4bTF1K1u4q8jjo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50109\",\n    \"key\": \"91814\",\n    \"description\": \"a man with long black hair smiles and nods his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9craz6Alc1rm5sqbo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51760\",\n    \"key\": \"18764\",\n    \"description\": \"a woman in a blue dress sips a drink whilst crossing her legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjimhejuj1uawws4o1_250\",\n    \"question\": \"how many girls are expressing affection by hugging each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9786\",\n    \"key\": \"53230\",\n    \"description\": \"two girls are expressing affection by hugging each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3vsvmfDI1tqjarko1_500\",\n    \"question\": \"where are the group of people dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14158\",\n    \"key\": \"69653\",\n    \"description\": \"a group of people are dancing in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfglqfDg3L1u1lt1go1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42685\",\n    \"key\": \"61054\",\n    \"description\": \"the man is in the blue car smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknodg8h931slwpo8o1_250\",\n    \"question\": \"what gets up and walks away leaving its tail behind?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21736\",\n    \"key\": \"85109\",\n    \"description\": \"a cat gets up and walks away leaving its tail behind.\"\n  },\n  {\n    \"video_name\": \"tumblr_nitfj1AJCm1tdmffyo1_400\",\n    \"question\": \"how many elderly men in suits shake hands and then leave the room holding hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18615\",\n    \"key\": \"44911\",\n    \"description\": \"two elderly men in suits shake hands and then leave the room holding hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebq9afgmY1snrb8oo1_400\",\n    \"question\": \"what is the man in the black shirt smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30634\",\n    \"key\": \"33688\",\n    \"description\": \"the man in the black shirt is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak34sUK131slj978o1_400\",\n    \"question\": \"what is riding on the vacuum cleaner?\",\n    \"answer\": \"rooster\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3026\",\n    \"key\": \"50795\",\n    \"description\": \"the rooster is riding on the vacuum cleaner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl33fuCCKK1slj978o1_400\",\n    \"question\": \"how many people fall out then climb back in?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12205\",\n    \"key\": \"84963\",\n    \"description\": \"a sled is hitting a snow bank and two people fall out then climb back in.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3iivXYey1u7lrdno1_500\",\n    \"question\": \"what is driving down the road and a tire blows off?\",\n    \"answer\": \"truck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42686\",\n    \"key\": \"91155\",\n    \"description\": \"a truck is driving down a road and a tire blows off.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc7ew9nZQK1tgyh35o1_400\",\n    \"question\": \"how many men are laughing with each other at a table?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2663\",\n    \"key\": \"64912\",\n    \"description\": \"two men are laughing with each other at a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesf0m509L1rs3efuo1_500\",\n    \"question\": \"what burns smoke in front of something dark?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13710\",\n    \"key\": \"30498\",\n    \"description\": \"a stick burns smoke in front of something dark.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne739nzddN1t2prlto1_400\",\n    \"question\": \"what does the woman turn around her head?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21106\",\n    \"key\": \"88985\",\n    \"description\": \"a woman turns her hat around her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0fz8rTT21rc6zqzo1_250\",\n    \"question\": \"how many performers are dancing and singing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10571\",\n    \"key\": \"7769\",\n    \"description\": \"two performers are dancing and singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9jajxPqO1tsl8rno1_500\",\n    \"question\": \"what is the girl running on a stadium?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52542\",\n    \"key\": \"93397\",\n    \"description\": \"a girl is running some stairs on a stadium.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9bmlrirm1uosfkco1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16586\",\n    \"key\": \"72287\",\n    \"description\": \"a guy in a black shirt looks from the right to the front.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyr2emPxA1ti6gxco1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8238\",\n    \"key\": \"8116\",\n    \"description\": \"a man with black hair is taking a mask off.\"\n  },\n  {\n    \"video_name\": \"tumblr_netcx4DbEN1u25ovvo1_400\",\n    \"question\": \"what is racing down the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28621\",\n    \"key\": \"63409\",\n    \"description\": \"a red car is racing down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkmkwlAgg1u14m77o1_500\",\n    \"question\": \"how many girls are working in the science lab?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41343\",\n    \"key\": \"44518\",\n    \"description\": \"two girls are working in a science lab.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqm89nylYC1ut179vo1_250\",\n    \"question\": \"how many guys are laughing and having the good time?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45987\",\n    \"key\": \"5426\",\n    \"description\": \"three guys are laughing and having a good time.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e3fpyjjr1sq1mmgo1_400\",\n    \"question\": \"how many men are demonstrating the martial arts move?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38690\",\n    \"key\": \"60560\",\n    \"description\": \"two men are demonstrating a martial arts move.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9idf18Lt31sjcycuo1_250\",\n    \"question\": \"what is following the small octopus?\",\n    \"answer\": \"submarine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39757\",\n    \"key\": \"73363\",\n    \"description\": \"a submarine is following a small octopus.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2s3oGmK91sekz9eo1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA569\",\n    \"key\": \"48596\",\n    \"description\": \"a man in a yellow suit danced with a man in a blue suit.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh90mv4OUV1u5g7cbo1_500\",\n    \"question\": \"where is the young man driving.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19124\",\n    \"key\": \"97835\",\n    \"description\": \"a young man is driving in his car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedbvrPn4z1soryl3o1_250\",\n    \"question\": \"what did the guy pet?\",\n    \"answer\": \"koala\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34722\",\n    \"key\": \"9575\",\n    \"description\": \"a guy petted a tiny,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbibmsndP11qgo24yo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6856\",\n    \"key\": \"14665\",\n    \"description\": \"a woman in black dress is looking at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9u3afOHJ1u182quo1_400\",\n    \"question\": \"how many guys is this image of playing around with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30093\",\n    \"key\": \"59550\",\n    \"description\": \"this image is of two guys playing around with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndinyiORQx1rea9v7o1_400\",\n    \"question\": \"what is the young man inhaling and then exhaling it?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28087\",\n    \"key\": \"5041\",\n    \"description\": \"a young man is inhaling a cigarette and then exhaling it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngc5q2xB581thb2ogo1_500\",\n    \"question\": \"what is the man in a suit waving?\",\n    \"answer\": \"wand\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4250\",\n    \"key\": \"60097\",\n    \"description\": \"a man in a suit is waving a wand as he dances.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoamk0kmi1unf50eo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38861\",\n    \"key\": \"16053\",\n    \"description\": \"a guy wearing a white tee shirt and red,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrwzi3knp1u7yxjso1_400\",\n    \"question\": \"what is the color of the sweatshirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49692\",\n    \"key\": \"54436\",\n    \"description\": \"a guy wearing a black sweatshirt with a hood is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndz0m09qvM1qmy2v2o1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13969\",\n    \"key\": \"49927\",\n    \"description\": \"a white girl with white dress is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbqb0Csnu1s0ov26o1_250\",\n    \"question\": \"what rotors are spinning around?\",\n    \"answer\": \"helicopter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37137\",\n    \"key\": \"4326\",\n    \"description\": \"a helicopter 's rotors are spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n7cuepMM7D1rs656zo1_500\",\n    \"question\": \"what are the man and woman putting into a dishwasher?\",\n    \"answer\": \"dishes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14859\",\n    \"key\": \"7366\",\n    \"description\": \"a man and woman are putting dishes into a dishwasher.\"\n  },\n  {\n    \"video_name\": \"tumblr_nguvutkldj1rs0i14o1_400\",\n    \"question\": \"how many rats are running around on the person 's shoulder?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17690\",\n    \"key\": \"46819\",\n    \"description\": \"two rats are running around on a person 's shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqwyzvjvLa1qe4iy8o1_540\",\n    \"question\": \"what is the girl with the red hair wearing and winking?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42940\",\n    \"key\": \"91901\",\n    \"description\": \"the girl with the red hair is wearing a hat and winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgv891zpE1uwsg6vo1_250\",\n    \"question\": \"what is the woman,\",\n    \"answer\": \"wearing , smiles as her hair blows in the wind ? hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52554\",\n    \"key\": \"25463\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_nq6fgo0RyG1tk2ngvo1_400\",\n    \"question\": \"what tries,\",\n    \"answer\": \"and fails , to jump into the window ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36259\",\n    \"key\": \"71717\",\n    \"description\": \"a cat tries,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncsf9rU2Ne1rqdtjdo1_250\",\n    \"question\": \"what is the man wearing with a female to his side?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13699\",\n    \"key\": \"350\",\n    \"description\": \"a man is wearing a girly hat with a female to his side.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9ty1C8Dw1tr5tuwo1_500\",\n    \"question\": \"what is rolling down the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27874\",\n    \"key\": \"89701\",\n    \"description\": \"a beautiful yellow car is rolling down the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hzp32P4s1txqrq4o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16857\",\n    \"key\": \"36070\",\n    \"description\": \"a woman in a black shirt is spinning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc66lyqL3m1qek177o1_250\",\n    \"question\": \"how many boys start kissing in front of a door?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6255\",\n    \"key\": \"51417\",\n    \"description\": \"two boys start kissing in front of a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_naerdqWgh41tzuas5o1_250\",\n    \"question\": \"what are men playing on a stage?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44018\",\n    \"key\": \"24977\",\n    \"description\": \"men that are n't wearing shirts are playing guitars on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91362IjQP1syoifvo1_500\",\n    \"question\": \"what is trying to bite to the man?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18698\",\n    \"key\": \"50369\",\n    \"description\": \"the little dog is trying to bite to the man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1cszD2L21tjdvfuo1_1280\",\n    \"question\": \"what does the cat press trying to wake the other cats?\",\n    \"answer\": \"button\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8771\",\n    \"key\": \"54206\",\n    \"description\": \"a cat presses a button trying to wake the other cats.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqpr8q1RhL1u7u1h7o1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30155\",\n    \"key\": \"78910\",\n    \"description\": \"a young woman with brown hair looks serious.\"\n  },\n  {\n    \"video_name\": \"tumblr_njsf8qqbKL1rnj7d3o1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12292\",\n    \"key\": \"67332\",\n    \"description\": \"a model walks down the runway wearing a long black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wy2xDpUe1spkb1mo1_500\",\n    \"question\": \"how many women is this image of onstage singing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24731\",\n    \"key\": \"86393\",\n    \"description\": \"this image is of three women onstage singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fp6mawvc1tg4n19o1_500\",\n    \"question\": \"what is being hit by the truck?\",\n    \"answer\": \"tram\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13631\",\n    \"key\": \"89277\",\n    \"description\": \"a tram is being hit by a truck.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncau65g1Vf1tcmvxuo1_500\",\n    \"question\": \"how many woman are posing and having their photo taken on a mobile phone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46918\",\n    \"key\": \"89216\",\n    \"description\": \"two woman are posing and having their photo taken on a mobile phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne10yvmzlX1sk0i2mo1_250\",\n    \"question\": \"what did two woman wrestling and one jump off?\",\n    \"answer\": \"rope\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17807\",\n    \"key\": \"27696\",\n    \"description\": \"two woman wrestling and one jumped off the top rope.\"\n  },\n  {\n    \"video_name\": \"tumblr_newrcpj47E1u1ym3zo1_250\",\n    \"question\": \"what is the color of the laughing?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50666\",\n    \"key\": \"46934\",\n    \"description\": \"two men eat either end of a green tube while laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdvlzako31tx8mn0o1_400\",\n    \"question\": \"how many race cars drive around the corner and onto the grass?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19540\",\n    \"key\": \"78335\",\n    \"description\": \"two race cars drive around a corner and onto the grass.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96u6soS9v1tw0ucfo1_400\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38009\",\n    \"key\": \"26456\",\n    \"description\": \"a group of men in black are passing guns.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng47s11WJM1tg9gzmo1_250\",\n    \"question\": \"what is the man with blond hair checking while riding a bicycle?\",\n    \"answer\": \"bouquet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6455\",\n    \"key\": \"6727\",\n    \"description\": \"a man with blond hair is checking a bouquet while riding a bicycle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzhvabsfq1s4nyalo1_400\",\n    \"question\": \"what is the color of the outfits?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36241\",\n    \"key\": \"26694\",\n    \"description\": \"women wearing red cheerleader outfits are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmmpyhAPw1u6zld7o1_400\",\n    \"question\": \"how many men are fighting outside in front of a brick building?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31361\",\n    \"key\": \"65136\",\n    \"description\": \"3 men are fighting outside in front of a brick building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9zafvwGL1rl5d36o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17446\",\n    \"key\": \"55268\",\n    \"description\": \"the person with the black hair is sitting in front of a person standing wearing a striped shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2rrohsTR1tdjuqvo1_400\",\n    \"question\": \"what is the man threatening,\",\n    \"answer\": \"and then is knocked down when it hits him in the head ? bag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7660\",\n    \"key\": \"35009\",\n    \"description\": \"a man is threatening a punching bag,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9tn1eXLPK1rodd5bo1_400\",\n    \"question\": \"how many young men in pink shirts are listening to music?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38576\",\n    \"key\": \"33070\",\n    \"description\": \"two young men in pink shirts are listening to music.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc09eXkFv1s74qico1_400\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8563\",\n    \"key\": \"28454\",\n    \"description\": \"a young woman wearing white clothing with long hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpli3zQQe1rp9eo2o1_400\",\n    \"question\": \"how many young man are sitting on the track?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28665\",\n    \"key\": \"62860\",\n    \"description\": \"three young man are sitting on the track and one of them with glasses stands up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtams4V1k1u2ep9yo1_500\",\n    \"question\": \"what are multiple cars going at night in front of a building?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20946\",\n    \"key\": \"61078\",\n    \"description\": \"multiple cars are going the road at night in front of a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5pn1wSC41r36r8mo1_500\",\n    \"question\": \"what is the color of the mask?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41523\",\n    \"key\": \"34236\",\n    \"description\": \"a person in a black,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbymug4lI1tjxr89o1_400\",\n    \"question\": \"what is doing doughnuts in the street?\",\n    \"answer\": \"tank\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2388\",\n    \"key\": \"69634\",\n    \"description\": \"an army tank is doing doughnuts in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n932r0pFvS1tuatvvo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50519\",\n    \"key\": \"53129\",\n    \"description\": \"a woman in a red outfit picks up a red hair while ice skating.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh42ws7eWR1tatohao1_400\",\n    \"question\": \"what is doing the person fall by moving the chair?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30377\",\n    \"key\": \"36756\",\n    \"description\": \"a dog is doing a person fall by moving the chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n1wdvaQgaI1scy8zoo1_400\",\n    \"question\": \"how many men are eating cereal in the kitchen?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4468\",\n    \"key\": \"36893\",\n    \"description\": \"two men are eating cereal in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wbyaTXBZ1t4mpk7o1_400\",\n    \"question\": \"what is the color of the person?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52020\",\n    \"key\": \"35386\",\n    \"description\": \"a person in black is playing the saxophone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nglg3nxlfk1u5yqiao1_250\",\n    \"question\": \"where are the bunch of people in costumes dancing.\",\n    \"answer\": \"? store\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19135\",\n    \"key\": \"18183\",\n    \"description\": \"a bunch of people in costumes are dancing in a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhewmmMC4c1t0w9oqo1_500\",\n    \"question\": \"how many men are talking while one of them is holding a cell phone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48564\",\n    \"key\": \"55471\",\n    \"description\": \"two men are talking while one of them is holding a cell phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7qb9gPYT1rqy843o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44934\",\n    \"key\": \"87665\",\n    \"description\": \"a boy with purple hair is looking bored.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqee177Pf91u8ivvko1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11925\",\n    \"key\": \"57337\",\n    \"description\": \"a man with brown hair is talking to a man with dark hair and glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_no5t4dcaVG1r4hud9o1_500\",\n    \"question\": \"how many girls is doing funny things while a group of guy laughing for this?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2451\",\n    \"key\": \"81839\",\n    \"description\": \"two girls is doing funny things while a group of guy laughing for this.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ycr8zaLA1to7bdco1_250\",\n    \"question\": \"what is the woman fixing?\",\n    \"answer\": \"tie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA89\",\n    \"key\": \"1859\",\n    \"description\": \"a woman is fixing her bow tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuvcycrMb1tana87o1_250\",\n    \"question\": \"where are two people standing they kiss.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52081\",\n    \"key\": \"78506\",\n    \"description\": \"two people are standing in a pool then they kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkquyuZT3T1t382eqo1_500\",\n    \"question\": \"what did the boy kick and it hit the other boy in the face?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8441\",\n    \"key\": \"72560\",\n    \"description\": \"a boy kicked a ball and it hit the other boy in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9bdapPO481sc9qyco1_400\",\n    \"question\": \"how many guys in motorcycle are running in a track?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30747\",\n    \"key\": \"36760\",\n    \"description\": \"two guys in motorcycle are running in a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqveo9P2as1tae455o1_400\",\n    \"question\": \"what is the color of the bags?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29666\",\n    \"key\": \"66327\",\n    \"description\": \"a people is recording several white bags in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7xhpFqh11rcr8lfo1_400\",\n    \"question\": \"how many men does this show having a serious conversation?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6099\",\n    \"key\": \"79005\",\n    \"description\": \"this shows two men having a serious conversation.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne32rt51C21tlipiko1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14052\",\n    \"key\": \"68467\",\n    \"description\": \"a man with brown hair is dramatically moving his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqfp68NX3i1uqzd68o1_250\",\n    \"question\": \"what is the color of the jeans?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24447\",\n    \"key\": \"18016\",\n    \"description\": \"a man with dark messy hair wearing a t-shirt and blue jeans is making hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqjman0b8a1qcehyco1_400\",\n    \"question\": \"what is speeding along the dirt race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29605\",\n    \"key\": \"50340\",\n    \"description\": \"an airborne race car is speeding along a dirt race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x5byGReo1tn5k2xo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11560\",\n    \"key\": \"38397\",\n    \"description\": \"a lady with blond hair in a red dress is crossing her legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncql8t7uii1u073goo1_400\",\n    \"question\": \"what is looking up and meowing?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52330\",\n    \"key\": \"33354\",\n    \"description\": \"a black and white cat is looking up and meowing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbbj6piQ91qkplr2o1_250\",\n    \"question\": \"what is chewing vegetation beside the wire cage?\",\n    \"answer\": \"rabbit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14111\",\n    \"key\": \"2118\",\n    \"description\": \"a white rabbit is chewing vegetation beside a wire cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfcfptpJX1u0chl3o1_400\",\n    \"question\": \"what is playing with the hand?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26931\",\n    \"key\": \"26346\",\n    \"description\": \"a yellow kitty cat is playing with a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr7dew1PD1qfozfoo1_500\",\n    \"question\": \"what is the person holding and pressing it on the object?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36219\",\n    \"key\": \"60586\",\n    \"description\": \"a person is holding a machine and pressing it on the object.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sjupl61n1ss0n50o1_500\",\n    \"question\": \"what is the color of the eyeglasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1664\",\n    \"key\": \"84015\",\n    \"description\": \"a person wearing a white tee shirt with big,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfci1eCnqd1u33ci0o1_400\",\n    \"question\": \"what is the person operating?\",\n    \"answer\": \"machine\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17677\",\n    \"key\": \"52870\",\n    \"description\": \"a person is operating a machine that rolls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd69q1hjQR1s3j2wso1_250\",\n    \"question\": \"what is the handsome singer with sunglasses pointing something and taking off?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19878\",\n    \"key\": \"6509\",\n    \"description\": \"a handsome singer with sunglasses is pointing something and taking off his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwp74ihnO1slwrsuo1_400\",\n    \"question\": \"what is cuddling with several baby chickens?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45791\",\n    \"key\": \"75890\",\n    \"description\": \"a cat is cuddling with several baby chickens.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr9dyUwwa1u1ijg8o1_400\",\n    \"question\": \"what is the color of the wings?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41099\",\n    \"key\": \"26386\",\n    \"description\": \"the bird with the gray wings and white breast is looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlwghHVNJ1s230fzo1_400\",\n    \"question\": \"what is the color of the guys?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1091\",\n    \"key\": \"59672\",\n    \"description\": \"two guys in black are makeup each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqs999ZRhM1uxceulo1_400\",\n    \"question\": \"how many men in black clothing stand next to each other without talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28861\",\n    \"key\": \"26066\",\n    \"description\": \"two men in black clothing stand next to each other without talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgak2vIUB1tmaii4o1_250\",\n    \"question\": \"what is the man having taken and he is excited?\",\n    \"answer\": \"picture\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25776\",\n    \"key\": \"43999\",\n    \"description\": \"a man is having his picture taken and he is excited.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k66hDtUT1s9lpi5o1_400\",\n    \"question\": \"what is the blue car going around with smoke coming from the back tires?\",\n    \"answer\": \"curve\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10096\",\n    \"key\": \"54195\",\n    \"description\": \"a blue car is going around a curve with smoke coming from the back tires.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr9vqonvXy1s3i7d8o1_400\",\n    \"question\": \"how many men are hugging and talking to each other?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42133\",\n    \"key\": \"88554\",\n    \"description\": \"four men are hugging and talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9dltHpeu1unm6mmo1_250\",\n    \"question\": \"how many men are kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51598\",\n    \"key\": \"48059\",\n    \"description\": \"these two men are kissing each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8mwwLFDM1skvnslo1_400\",\n    \"question\": \"what does the boy lift off over his head?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2289\",\n    \"key\": \"58275\",\n    \"description\": \"a boy lifts a hat off over his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdhumxlMs1sxvd87o1_250\",\n    \"question\": \"what is waving back at the person in a car?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12203\",\n    \"key\": \"27329\",\n    \"description\": \"a bear is waving back at a person in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9n4s1RWyG1tyxuumo1_400\",\n    \"question\": \"what was the person in a green sweater wearing?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47783\",\n    \"key\": \"30158\",\n    \"description\": \"a person in a green sweater was wearing a mask.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0q4uRErR1sgyo02o1_540\",\n    \"question\": \"what does the man put into his mouth?\",\n    \"answer\": \"cigar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA53077\",\n    \"key\": \"89856\",\n    \"description\": \"a man puts a cigar into his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz222VcuZ1ttuz3po1_400\",\n    \"question\": \"where is the person wearing white platform heels and a white dress is.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41357\",\n    \"key\": \"1324\",\n    \"description\": \"a person wearing white platform heels and a white dress is in a mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbzyuGwCp1tfmrz4o1_400\",\n    \"question\": \"what is the color of the bulldozer?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7027\",\n    \"key\": \"69289\",\n    \"description\": \"someone is handling a white bulldozer very good.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes951ulUD1t9h1yfo1_400\",\n    \"question\": \"what are the group of people singing,\",\n    \"answer\": \"dancing , and playing ? instruments\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30094\",\n    \"key\": \"82397\",\n    \"description\": \"a group of people are singing,\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzvsya1WR1tfjrdno1_400\",\n    \"question\": \"what are two girls chewing gum and blowing?\",\n    \"answer\": \"bubbles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2566\",\n    \"key\": \"31404\",\n    \"description\": \"two girls are chewing gum and blowing bubbles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96u6soS9v1tw0ucfo1_400\",\n    \"question\": \"what are some men passing to another man and he throws them out the window?\",\n    \"answer\": \"rifles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46383\",\n    \"key\": \"26456\",\n    \"description\": \"some men are passing rifles to another man and he throws them out the window.\"\n  },\n  {\n    \"video_name\": \"tumblr_niv9le0oMs1rdh8nto1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39008\",\n    \"key\": \"2453\",\n    \"description\": \"a girl in a red dress is turning around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzxkpnkEc1t9qxjmo1_250\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36984\",\n    \"key\": \"48965\",\n    \"description\": \"two men are fighting and another man is falling in front of a black car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9f88htQ4d1trf38oo1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33791\",\n    \"key\": \"94219\",\n    \"description\": \"a blond woman reaches up and pushes a woman in a black coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng03s2BcRY1u25ovvo1_400\",\n    \"question\": \"what is being driven down the street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48321\",\n    \"key\": \"63607\",\n    \"description\": \"a yellow car is being driven down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91v0cmZja1qfees0o1_400\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49586\",\n    \"key\": \"78689\",\n    \"description\": \"a man with black jacket is waving a black scarf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq28douqgC1spshbgo1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50587\",\n    \"key\": \"57460\",\n    \"description\": \"a young woman in a blue uniform is kicking a ball into the goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkwxxlRnvb1sfdqnro1_400\",\n    \"question\": \"what is the color of the flower?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20048\",\n    \"key\": \"38744\",\n    \"description\": \"an orange butterfly flies on a yellow flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq7l0nMeLY1sp0r62o1_250\",\n    \"question\": \"how many women are dancing in the house?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4278\",\n    \"key\": \"80776\",\n    \"description\": \"two women are dancing in the house.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhkpbYVJn1sbqayyo1_250\",\n    \"question\": \"what is the dark haired man smoking and smiling?\",\n    \"answer\": \"cigar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5971\",\n    \"key\": \"6728\",\n    \"description\": \"a dark haired man is smoking a cigar and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x7dbUQBA1t5z27go1_400\",\n    \"question\": \"how many girls are clapping and singing in the van?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36249\",\n    \"key\": \"58848\",\n    \"description\": \"four girls are clapping and singing in a van.\"\n  },\n  {\n    \"video_name\": \"tumblr_necxqcJTa91tfeeomo1_250\",\n    \"question\": \"what is the man singing and raising up?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45566\",\n    \"key\": \"2075\",\n    \"description\": \"a man is singing and raising his shirt up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqcsyyIQW1u7vqebo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33478\",\n    \"key\": \"37666\",\n    \"description\": \"a girl with long brown hair smiles and moves her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxxsnLvRY1rdteg8o1_250\",\n    \"question\": \"what does the person on a skateboard jump on and off?\",\n    \"answer\": \"handrail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48472\",\n    \"key\": \"15862\",\n    \"description\": \"a person on a skateboard jumps on and off a handrail.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj0b4qFmm1tk9c2ao1_400\",\n    \"question\": \"what is the handsome man in white playing with sweeping?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18538\",\n    \"key\": \"4727\",\n    \"description\": \"a handsome man in white is playing the guitar with sweeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrq4zTBiW1td8ijso1_400\",\n    \"question\": \"what is the man in a panda hat holding?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30158\",\n    \"key\": \"54537\",\n    \"description\": \"a man in a panda hat is holding a stuffed panda.\"\n  },\n  {\n    \"video_name\": \"tumblr_noejltSfgA1tpg4boo1_400\",\n    \"question\": \"what is staring out the window of a car as the window is rising?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34614\",\n    \"key\": \"17989\",\n    \"description\": \"a dog is staring out the window of a car as the window is rising.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq3tfgU9Ir1srvjxao1_400\",\n    \"question\": \"what is the woman sitting in a car and he rolls up?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45345\",\n    \"key\": \"27347\",\n    \"description\": \"a woman is sitting in a car and he rolls up the window.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8k3m3Omi1tmemc1o1_250\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15291\",\n    \"key\": \"15943\",\n    \"description\": \"a woman is sitting in a white arm chair and sipping from a mug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf19z5qOg31s8zojyo1_250\",\n    \"question\": \"what is the color of the cup?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10559\",\n    \"key\": \"12232\",\n    \"description\": \"a woman wit a red cup in her hand sways while talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mxo7lBDU1ttpy61o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18829\",\n    \"key\": \"10604\",\n    \"description\": \"a man wearing an orange shirt is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9c8fvLd8Z1qzl812o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5443\",\n    \"key\": \"63989\",\n    \"description\": \"the woman in the black shirt flips around her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimjqmgul31u94evjo1_500\",\n    \"question\": \"what lies on the couch and holds its paw?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34954\",\n    \"key\": \"70177\",\n    \"description\": \"a black cat lies on a couch and holds its paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngq2i7dlYh1s6zpepo1_400\",\n    \"question\": \"what is being pulled by somebody?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11836\",\n    \"key\": \"37532\",\n    \"description\": \"a dog is being pulled by somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_npabf7wMc81tatohao1_250\",\n    \"question\": \"what is licking the black and white cat?\",\n    \"answer\": \"pig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51316\",\n    \"key\": \"36414\",\n    \"description\": \"a pig is licking a black and white cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4u6hTLLc1ssgyoro1_250\",\n    \"question\": \"what is the color of the chair?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4082\",\n    \"key\": \"8096\",\n    \"description\": \"a woman sitting on a purple chair is laughing,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9db76KvdN1td6onfo1_500\",\n    \"question\": \"how many men on a plane are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8261\",\n    \"key\": \"52858\",\n    \"description\": \"two men on a plane are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdpcfJ9wz1r440y4o1_400\",\n    \"question\": \"where is the woman with glasses spinning.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA46835\",\n    \"key\": \"32240\",\n    \"description\": \"a woman with glasses is spinning in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng66xtlMK21t7a8jmo1_400\",\n    \"question\": \"how many men are kissing each other passionately?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51038\",\n    \"key\": \"98788\",\n    \"description\": \"two men are kissing each other passionately.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4zqx8sRJ1tdjuqvo1_250\",\n    \"question\": \"what stammers across the carpet?\",\n    \"answer\": \"pug\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47098\",\n    \"key\": \"74416\",\n    \"description\": \"a baby pug stammers across a carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_njxosqUqVm1r2uad8o1_250\",\n    \"question\": \"how many young boys are standing together making faces?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46896\",\n    \"key\": \"5917\",\n    \"description\": \"three young boys are standing together making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmis5JfW31u05byho2_400\",\n    \"question\": \"how many people are skateboarding through the building?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13964\",\n    \"key\": \"63140\",\n    \"description\": \"two people are skateboarding through a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjn15MCNP1tsnqf4o1_400\",\n    \"question\": \"where are two dancers dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36683\",\n    \"key\": \"61799\",\n    \"description\": \"two dancers are dancing in a foggy room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhtvoxRl041u79y8lo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39975\",\n    \"key\": \"1943\",\n    \"description\": \"a man wearing a black hat is making different faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl2xspzYUT1qijtyio1_400\",\n    \"question\": \"where does the man sit while a dog plays with a stuffed animal.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48114\",\n    \"key\": \"79663\",\n    \"description\": \"a man sits in a chair while a dog plays with a stuffed animal.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngwe7aRwEW1u4lqc0o1_250\",\n    \"question\": \"what is playing with an ornament that is hanging from a tree?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7051\",\n    \"key\": \"38433\",\n    \"description\": \"a cat is playing with an ornament that is hanging from a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfy1t75y9M1u3e81vo1_400\",\n    \"question\": \"what does the man open with a woman inside?\",\n    \"answer\": \"box\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9352\",\n    \"key\": \"85949\",\n    \"description\": \"a man opens a pizza box with a woman inside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfqzsmdHTC1s70xu2o1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6549\",\n    \"key\": \"75116\",\n    \"description\": \"a blue colored car is slipping on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzs5oG4kT1tkvhb9o1_500\",\n    \"question\": \"how many women are fighting in the cage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3211\",\n    \"key\": \"95880\",\n    \"description\": \"two women are fighting in a cage and one manages to throw the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk0j3eBcXX1u2opi9o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20900\",\n    \"key\": \"18216\",\n    \"description\": \"a guy in a black hat is laughing and putting his hands on his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzcdc7sV61u9tojjo1_400\",\n    \"question\": \"what is the color of the dancer?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51143\",\n    \"key\": \"65212\",\n    \"description\": \"a dancer in white shakes her hips in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndejq7e6p91tse7gxo1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7714\",\n    \"key\": \"71128\",\n    \"description\": \"a man is dancing while shaking his hands in fists to the beat and wearing a white t-shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcolpASZD1sht3fmo1_250\",\n    \"question\": \"what are turning their heads while other cat is sleeping?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25459\",\n    \"key\": \"68601\",\n    \"description\": \"two cats are turning their heads while other cat is sleeping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nldp47uOSl1sht3fmo1_250\",\n    \"question\": \"what is going crazy to get his dog toy?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44124\",\n    \"key\": \"69272\",\n    \"description\": \"a dog is going crazy to get his dog toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nakx4m3btR1r27dg6o1_400\",\n    \"question\": \"what is chasing the motorcycle and crashes?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38315\",\n    \"key\": \"18991\",\n    \"description\": \"a police car is chasing a motorcycle and crashes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmrqhx5WTR1u3bvteo1_r4_540\",\n    \"question\": \"where are the couple facing each other.\",\n    \"answer\": \"? shop\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41288\",\n    \"key\": \"101942\",\n    \"description\": \"a couple are facing each other in a light shop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfbih9DeO1slwrsuo1_400\",\n    \"question\": \"what is drinking in the toilet?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35755\",\n    \"key\": \"15753\",\n    \"description\": \"the dog is drinking in the toilet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmqd8eIh1tidcnvo1_400\",\n    \"question\": \"what gallops across the field as the rider hangs on?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52543\",\n    \"key\": \"64316\",\n    \"description\": \"the brown horse gallops across the field as the rider hangs on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc1qnKRyZ1tvtr5do1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18648\",\n    \"key\": \"53196\",\n    \"description\": \"a white man with white cap is jumping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf8v68juoo1tk2ngvo1_400\",\n    \"question\": \"what is trying to eat the crisp on its nose?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32015\",\n    \"key\": \"11503\",\n    \"description\": \"a cat is trying to eat the crisp on its nose.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfnhyhQANN1slj978o1_250\",\n    \"question\": \"how many people are dancing while others are clapping?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12219\",\n    \"key\": \"81402\",\n    \"description\": \"two people are dancing while others are clapping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkb2mlv8QK1ts8v1qo1_500\",\n    \"question\": \"how many women are standing up smiling and looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32172\",\n    \"key\": \"29048\",\n    \"description\": \"two women are standing up smiling and looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngfca2PQ9u1qfgmtoo1_500\",\n    \"question\": \"how many people push against the brick wall together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3321\",\n    \"key\": \"94150\",\n    \"description\": \"two people push against a brick wall together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk52edbKl91ra78amo1_100\",\n    \"question\": \"what is the color of the yawning?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49824\",\n    \"key\": \"12594\",\n    \"description\": \"this image is of a guy in a black shirt yawning.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbpqalJWW1sdss0qo1_250\",\n    \"question\": \"what is the man doing a pull up and collapses so he falls over?\",\n    \"answer\": \"bar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4261\",\n    \"key\": \"7264\",\n    \"description\": \"a man is doing a pull up and his bar collapses so he falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhx5igYXE61u38aego1_500\",\n    \"question\": \"how many women with long black hair are kissing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40565\",\n    \"key\": \"73993\",\n    \"description\": \"two women with long black hair are kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagpey8Mbb1sq49qlo1_400\",\n    \"question\": \"how many men are hugging in front of a store?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51888\",\n    \"key\": \"57790\",\n    \"description\": \"two men are hugging in front of a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3zyv9YI61s3a96to1_400\",\n    \"question\": \"what is the young woman with long blonde hair holding?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11416\",\n    \"key\": \"96188\",\n    \"description\": \"a young woman with long blonde hair is holding a kitten.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk61a04KIs1tto5o6o1_250\",\n    \"question\": \"how many people sat looking at each other and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45532\",\n    \"key\": \"39549\",\n    \"description\": \"two people sat looking at each other and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncau65g1Vf1tcmvxuo1_500\",\n    \"question\": \"what are two cute girls taking together and smiling?\",\n    \"answer\": \"pictures\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30724\",\n    \"key\": \"89216\",\n    \"description\": \"two cute girls are taking pictures together and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_naicguqfrP1t29pn7o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22802\",\n    \"key\": \"17826\",\n    \"description\": \"a man in black looks down and is drumming his fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8vbdRFut1shopj2o1_250\",\n    \"question\": \"how many people does there 's blowing smoke out of their mouth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18637\",\n    \"key\": \"61352\",\n    \"description\": \"there 's two people blowing smoke out of their mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfqoyfh3sz1u25ovvo1_400\",\n    \"question\": \"what is driving near an underpass?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43195\",\n    \"key\": \"63597\",\n    \"description\": \"a nice car is driving near an underpass.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9ywnJtxX1t09iyco1_500\",\n    \"question\": \"how many women in short dresses are dancing on stage together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1918\",\n    \"key\": \"75498\",\n    \"description\": \"two women in short dresses are dancing on stage together.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng850mh9Uy1slj978o1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30460\",\n    \"key\": \"34151\",\n    \"description\": \"a white dog moves his leg when a hand scratches him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkihuwMaiG1qff887o1_500\",\n    \"question\": \"what is eating noodles with chopsticks?\",\n    \"answer\": \"man\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43552\",\n    \"key\": \"53061\",\n    \"description\": \"a ginger man is eating noodles with chopsticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhn4qolyxQ1tgouwlo1_400\",\n    \"question\": \"what is the green iguana fighting?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52102\",\n    \"key\": \"52435\",\n    \"description\": \"a green iguana is fighting a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh4kp4iSKN1rsfix9o1_500\",\n    \"question\": \"what is the man in the suit smoking?\",\n    \"answer\": \"cigar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32436\",\n    \"key\": \"50621\",\n    \"description\": \"the man in the suit is smoking a cigar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8kxz4xN4Y1ten01no1_250\",\n    \"question\": \"what is the baby petting then the cat attacks his head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52521\",\n    \"key\": \"34919\",\n    \"description\": \"a baby is petting a cat then the cat attacks his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh39e5Eyfh1u5quhyo1_400\",\n    \"question\": \"what is pushing skis to the ground and skiing on them?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37528\",\n    \"key\": \"14890\",\n    \"description\": \"a dog is pushing skis to the ground and skiing on them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbzyuGwCp1tfmrz4o1_400\",\n    \"question\": \"what is someone handling very good?\",\n    \"answer\": \"bulldozer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10098\",\n    \"key\": \"69289\",\n    \"description\": \"someone is handling a white bulldozer very good.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91362IjQP1syoifvo1_500\",\n    \"question\": \"what bites the kid that is playing with him?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43713\",\n    \"key\": \"50369\",\n    \"description\": \"an angry looking dog bites a kid that is playing with him.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cts1gh8c1s7lbyno1_400\",\n    \"question\": \"what is the boy holding and laughing?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32181\",\n    \"key\": \"28871\",\n    \"description\": \"a boy is holding a cat and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrfehsYDWe1u7r745o1_400\",\n    \"question\": \"how many performers lit in pink and green are bowing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37218\",\n    \"key\": \"46511\",\n    \"description\": \"two performers lit in pink and green are bowing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9al1mawYK1thcwtbo1_500\",\n    \"question\": \"what is walking while its baby is hanging on to it?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5737\",\n    \"key\": \"70761\",\n    \"description\": \"a polar bear is walking while its baby is hanging on to it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9su71dIbK1sebl0go1_500\",\n    \"question\": \"what is trying to look cool?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22949\",\n    \"key\": \"91707\",\n    \"description\": \"a pop star is trying to look cool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzs6i5ro1u25ovvo1_400\",\n    \"question\": \"what is going down the country road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10388\",\n    \"key\": \"63645\",\n    \"description\": \"a white car is going down a country road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3riuu61q1rojld8o1_400\",\n    \"question\": \"what is the mop actually?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31132\",\n    \"key\": \"79952\",\n    \"description\": \"a mop is actually a dog that gets up and runs away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezprh305B1u3a9tto1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43489\",\n    \"key\": \"73812\",\n    \"description\": \"a man in a black hat is walking down a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoe9tQzNp1uneb7wo1_400\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25913\",\n    \"key\": \"30081\",\n    \"description\": \"a man in black pants plays with a hula hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncfhy9iq4a1tj3r8so1_500\",\n    \"question\": \"where is the guy wearing a black shirt and long pants,\",\n    \"answer\": \"stops a taxi . ? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA48722\",\n    \"key\": \"87985\",\n    \"description\": \"a guy wearing a black shirt and long pants,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0eqq49V51rw1wnno1_400\",\n    \"question\": \"what is leaning around the back of a chair and falls off?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5970\",\n    \"key\": \"70838\",\n    \"description\": \"a cat is leaning around the back of a chair and falls off.\"\n  },\n  {\n    \"video_name\": \"tumblr_noeb5a1D4z1qzh9rto1_400\",\n    \"question\": \"how many men with guitars are performing on stage?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3899\",\n    \"key\": \"65285\",\n    \"description\": \"four men with guitars are performing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng5sskpeoG1qmfh6ho1_500\",\n    \"question\": \"how many guns is the man walking and throwing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50315\",\n    \"key\": \"67805\",\n    \"description\": \"a man is walking and throwing two guns.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlmnuI9q01ti9lxjo1_500\",\n    \"question\": \"what is showing as the car is being driven?\",\n    \"answer\": \"speedometer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41804\",\n    \"key\": \"71165\",\n    \"description\": \"a cars speedometer is showing as a car is being driven.\"\n  },\n  {\n    \"video_name\": \"tumblr_nanp56KwNG1ra8x2co1_250\",\n    \"question\": \"what moves in front of a baby and shakes his head?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30629\",\n    \"key\": \"12150\",\n    \"description\": \"a dog moves in front of a baby and shakes his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0eq9SpgL1sxixu7o1_250\",\n    \"question\": \"what sits alone on the perch in the darkness?\",\n    \"answer\": \"crow\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA990\",\n    \"key\": \"51670\",\n    \"description\": \"a crow sits alone on a perch in the darkness.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc29jdM0IG1t6t8bgo1_500\",\n    \"question\": \"how many musician puts his arm around another as they are performing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19318\",\n    \"key\": \"95727\",\n    \"description\": \"one musician puts his arm around another as they are performing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nekdh5z6iB1tw8vf9o1_250\",\n    \"question\": \"how many men are practicing kickboxing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31643\",\n    \"key\": \"12479\",\n    \"description\": \"two men are practicing kickboxing and one kicks the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_npfcfptpJX1u0chl3o1_400\",\n    \"question\": \"what bats at the air with its paws while another cat passes by?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36661\",\n    \"key\": \"26346\",\n    \"description\": \"a cat bats at the air with its paws while another cat passes by.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk72a3uSzE1t5jzovo1_400\",\n    \"question\": \"what is the man singing into a microphone and wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27517\",\n    \"key\": \"37208\",\n    \"description\": \"a man is singing into a microphone and wearing a cowboy hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin6hhwnC81tehwjso1_r1_400\",\n    \"question\": \"what is the boy holding attached to a horse that is rolling on the ground?\",\n    \"answer\": \"rope\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21419\",\n    \"key\": \"46462\",\n    \"description\": \"a boy is holding a rope attached to a horse that is rolling on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfiklnpmXO1u1axtzo1_250\",\n    \"question\": \"where is the young man putting on a black jacket.\",\n    \"answer\": \"? necklace\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30883\",\n    \"key\": \"9046\",\n    \"description\": \"a young man in a white shirt and chain necklace is putting on a black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_npahm5k3YQ1ro0x7uo1_250\",\n    \"question\": \"what is the man in a hat petting?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27566\",\n    \"key\": \"24987\",\n    \"description\": \"a man in a hat is petting a green toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq3p4yhj41tgmmsko1_500\",\n    \"question\": \"how many young men are sat down and laughing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27764\",\n    \"key\": \"41849\",\n    \"description\": \"two young men are sat down and laughing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_no1f0h2OcY1uv46mio1_500\",\n    \"question\": \"how many guys are laughing and moving around?\",\n    \"answer\": \"six\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39091\",\n    \"key\": \"93531\",\n    \"description\": \"six guys are laughing and moving around.\"\n  },\n  {\n    \"video_name\": \"tumblr_npnyxidXvB1uxh7dyo1_540\",\n    \"question\": \"where is the person laughing and clapping.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7873\",\n    \"key\": \"101184\",\n    \"description\": \"the person is laughing and clapping in the studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbg6ia8wuI1typ81lo1_400\",\n    \"question\": \"what are three people eating out of bowls with chopsticks and their fingers?\",\n    \"answer\": \"noodles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38354\",\n    \"key\": \"61990\",\n    \"description\": \"three people are eating spaghetti noodles out of bowls with chopsticks and their fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7hggRDDi1qdlihgo1_400\",\n    \"question\": \"where is the young man acting.\",\n    \"answer\": \"? theater\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31510\",\n    \"key\": \"26019\",\n    \"description\": \"a young man is acting crazily in a theater.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkso8itnb61upyx5zo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA12302\",\n    \"key\": \"24750\",\n    \"description\": \"a woman with black hair closes her eyes while speaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nalxhkgg2y1rstjlro1_400\",\n    \"question\": \"what is the guy wearing a dark colored shirt is playing and another guy wearing a light colored jacket is dancing behind him?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15176\",\n    \"key\": \"39089\",\n    \"description\": \"a guy wearing a dark colored shirt is playing a guitar and another guy wearing a light colored jacket is dancing behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_njpf3em3hE1u9nqipo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30139\",\n    \"key\": \"29525\",\n    \"description\": \"a girl with blue shirt is showing off her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k387Q7J11sfpmmio1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4139\",\n    \"key\": \"70263\",\n    \"description\": \"a man witch long black hair and straightens his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzlhp8DpG1tgouwlo1_500\",\n    \"question\": \"what are two little puppies mimicking falling?\",\n    \"answer\": \"toy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11813\",\n    \"key\": \"38497\",\n    \"description\": \"two little puppies are mimicking the toy falling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk550nmZNP1u8uroco1_400\",\n    \"question\": \"what is the color of the snow?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30055\",\n    \"key\": \"52678\",\n    \"description\": \"a fury animal is playing in white snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk25ppxz3K1u300dqo1_500\",\n    \"question\": \"what is jumping over the man and the wooden stump?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23516\",\n    \"key\": \"36905\",\n    \"description\": \"the dog is jumping over the man and the wooden stump.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvecaP9Jd1u3sr1fo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51783\",\n    \"key\": \"86290\",\n    \"description\": \"a teenager in a black suit looks right and laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_noofyf3RYJ1r1mywzo1_400\",\n    \"question\": \"what is the young boy jumping on his skateboard?\",\n    \"answer\": \"curbs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11985\",\n    \"key\": \"34542\",\n    \"description\": \"a young boy is jumping curbs on his skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngjiqqaBNu1spwzqmo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48998\",\n    \"key\": \"2649\",\n    \"description\": \"a white man with brown hair is surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndr9dyUwwa1u1ijg8o1_400\",\n    \"question\": \"what is on the ground chewing on something?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4570\",\n    \"key\": \"26386\",\n    \"description\": \"a bird is on the ground chewing on something.\"\n  },\n  {\n    \"video_name\": \"tumblr_naf8zdZnK81rjqtkto1_400\",\n    \"question\": \"how many women are naked in front of a crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44391\",\n    \"key\": \"83201\",\n    \"description\": \"two women are naked in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0ukbRIlb1tz9jaqo1_250\",\n    \"question\": \"what does the member of the soccer team head butt into the net?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30119\",\n    \"key\": \"10757\",\n    \"description\": \"A member of the soccer team head butts the ball into the net.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklvmbxVSC1qeurwuo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16432\",\n    \"key\": \"53608\",\n    \"description\": \"a young woman is a blue jacket and a red hat is walking through an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_noq8ccdLyz1upk2b9o1_500\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43409\",\n    \"key\": \"92604\",\n    \"description\": \"the man in the black suit is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8v1d0F3UI1tfrbpqo1_400\",\n    \"question\": \"what is the woman holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7308\",\n    \"key\": \"64099\",\n    \"description\": \"a woman is holding a microphone while man is walking away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh3y0lqgx1tuj3bpo1_400\",\n    \"question\": \"what is pushing the cat into a bath of water?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42460\",\n    \"key\": \"34855\",\n    \"description\": \"a dog is pushing a cat into a bath of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0kusbUiR1thdynpo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1723\",\n    \"key\": \"12305\",\n    \"description\": \"a girl wearing a red shirt is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf01q0SeKq1t657loo1_400\",\n    \"question\": \"how many young boys are fighting in the boxing room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47020\",\n    \"key\": \"59903\",\n    \"description\": \"two young boys are fighting in a boxing room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0odbifZp1tihaueo1_250\",\n    \"question\": \"how many mice are fighting in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43910\",\n    \"key\": \"18445\",\n    \"description\": \"two mice are fighting in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfca4ez3Sg1sva2fko1_500\",\n    \"question\": \"where is the man in a red and white shirt sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35387\",\n    \"key\": \"89882\",\n    \"description\": \"a man in a red and white shirt is sitting in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nflzlx0vM81r8n07ho1_500\",\n    \"question\": \"what is the man wearing a black shirt is clinking with another person?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1343\",\n    \"key\": \"69323\",\n    \"description\": \"a man wearing a black shirt is clinking glasses with another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_na89vurzQV1sdeofyo1_250\",\n    \"question\": \"where is the white man making a dance step.\",\n    \"answer\": \"? kitchen\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51538\",\n    \"key\": \"18583\",\n    \"description\": \"a white man is making a dance step in the kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8ug3oAT981rit0dno1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40153\",\n    \"key\": \"93869\",\n    \"description\": \"a brown haired girl is talking to some other girls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxi6gXNzW1uphofro1_250\",\n    \"question\": \"what is the color of the kisses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA232\",\n    \"key\": \"23054\",\n    \"description\": \"a boy is wearing black shirt kisses another boy on his cheeks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb920sP7nG1s1g1ilo1_250\",\n    \"question\": \"what is making the huge turn that makes the tire smoke?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23683\",\n    \"key\": \"56169\",\n    \"description\": \"a race car is making a huge turn that makes the tire smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_njq3ur8qv41unykvpo1_400\",\n    \"question\": \"what is diving into the hole in frozen ice?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18991\",\n    \"key\": \"46132\",\n    \"description\": \"a fox is diving into a hole in frozen ice.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk70ezm3eq1tkand4o1_400\",\n    \"question\": \"how many musicians are singing and playing guitar together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10838\",\n    \"key\": \"33037\",\n    \"description\": \"two musicians are singing and playing guitar together.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0a8uaKRe1tt3g2no1_500\",\n    \"question\": \"how many women are kissing each other in a photo booth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41371\",\n    \"key\": \"86790\",\n    \"description\": \"two women are kissing each other in a photo booth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsuhqvHMY1rzwvkdo1_400\",\n    \"question\": \"what is running in the sand and then looks away and falls down?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41052\",\n    \"key\": \"59438\",\n    \"description\": \"a dog is running in the sand and then looks away and falls down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9d938n4f41ryiglao1_400\",\n    \"question\": \"what is the man with a tattoo on his neck looking out and talking?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11313\",\n    \"key\": \"75608\",\n    \"description\": \"a man with a tattoo on his neck is looking out the window and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqa72svB2q1uxws2zo1_400\",\n    \"question\": \"what is the woman wearing a black swimsuit is squeezing?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5539\",\n    \"key\": \"24859\",\n    \"description\": \"a woman wearing a black swimsuit is squeezing a bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb27r8UJbx1s3e4afo1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3361\",\n    \"key\": \"40934\",\n    \"description\": \"a black haired woman is kissing another woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq9kaqQ2R1tegl32o1_250\",\n    \"question\": \"where is the woman riding an automatic wheelchair.\",\n    \"answer\": \"? building\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41872\",\n    \"key\": \"14927\",\n    \"description\": \"a woman is riding an automatic wheelchair in a building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhobtsS0jM1s86yfto1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10269\",\n    \"key\": \"9556\",\n    \"description\": \"a white girl with brown hair is playing dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq62qusQ2Z1tk2ngvo1_500\",\n    \"question\": \"what is chasing the fish in the bathtub?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23751\",\n    \"key\": \"69624\",\n    \"description\": \"a cat is chasing a fish in the bathtub.\"\n  },\n  {\n    \"video_name\": \"tumblr_npw5hmxHZ21tbfrz9o1_540\",\n    \"question\": \"how many people have the conversation with one another?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32676\",\n    \"key\": \"47665\",\n    \"description\": \"two people have a conversation with one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2u4lDKeU1sbetrro1_400\",\n    \"question\": \"how many boys is wearing microphones are looking at something on the floor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7781\",\n    \"key\": \"81245\",\n    \"description\": \"two boys wearing microphones are looking at something on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nquj86RWoW1uyk370o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20504\",\n    \"key\": \"10534\",\n    \"description\": \"a man wearing a black jacket is smiling and holding a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nptbdl1fVs1tw4vtzo1_400\",\n    \"question\": \"how many women dance together using the same moves?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29457\",\n    \"key\": \"50182\",\n    \"description\": \"three women dance together using the same moves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefmbhSoi71sg891po1_400\",\n    \"question\": \"what pushes another cat away and says stop?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25802\",\n    \"key\": \"18465\",\n    \"description\": \"a cat pushes another cat away and says stop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkc5p4HgO11u4ycd0o1_400\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4509\",\n    \"key\": \"33076\",\n    \"description\": \"a woman with a red coat is smiling and walking away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0lw9PkLw1sht3fmo1_250\",\n    \"question\": \"what is the shell of an orange lifting?\",\n    \"answer\": \"orange\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41338\",\n    \"key\": \"72976\",\n    \"description\": \"the shell of an orange is lifting the orange.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5w7sROwX1tjdvfuo1_400\",\n    \"question\": \"what is playing on the bed with the burgundy pillows and white sheet?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26057\",\n    \"key\": \"80200\",\n    \"description\": \"the gray cat is playing on the bed with the burgundy pillows and white sheet.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqbbzhKA201scl2ypo2_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10723\",\n    \"key\": \"63751\",\n    \"description\": \"a white man wearing a headphone is waving his hands in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcrueGce81tx8mn0o1_400\",\n    \"question\": \"what is spinning on the track during a car race?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30081\",\n    \"key\": \"82134\",\n    \"description\": \"a car is spinning on the track during a car race.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxcge7SrF1t0ojyvo1_500\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29348\",\n    \"key\": \"50672\",\n    \"description\": \"three boys dressed in white shirts and holding mics.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbtlpb4htq1sh1sffo1_500\",\n    \"question\": \"what is blinking eyes?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52237\",\n    \"key\": \"49489\",\n    \"description\": \"a white mask robot is blinking eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblj3dVAIl1sm013wo1_400\",\n    \"question\": \"what is walking around on water on a counter?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22650\",\n    \"key\": \"65862\",\n    \"description\": \"a bird is walking around on water on a counter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefmbhSoi71sg891po1_400\",\n    \"question\": \"what are shoving each other and fighting?\",\n    \"answer\": \"cats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4364\",\n    \"key\": \"18465\",\n    \"description\": \"two cats are shoving each other and fighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxq4ucmdv1tg5klqo1_250\",\n    \"question\": \"how many girls are talking sitting in the room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42800\",\n    \"key\": \"16910\",\n    \"description\": \"two girls are talking sitting in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_noipe7K8wn1uvy8rfo1_500\",\n    \"question\": \"what is the red luxurious car switching on the highway?\",\n    \"answer\": \"lanes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8061\",\n    \"key\": \"87621\",\n    \"description\": \"a red luxurious car is switching lanes on the highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_npf71mXOMJ1t0ojyvo1_500\",\n    \"question\": \"how many people are walking in opposite directions and slightly bump into each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40353\",\n    \"key\": \"100347\",\n    \"description\": \"two people are walking in opposite directions and slightly bump into each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs5zds8og1rozqomo1_400\",\n    \"question\": \"what is the young woman walking at a fashion show?\",\n    \"answer\": \"catwalk\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46975\",\n    \"key\": \"6322\",\n    \"description\": \"a young woman is walking the catwalk at a fashion show.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncx8m7JUJA1u0zc9co1_100\",\n    \"question\": \"how many children are dancing in front of a sofa?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11152\",\n    \"key\": \"4885\",\n    \"description\": \"two children are dancing in front of a sofa.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1bn69Oiv1tbazi6o1_400\",\n    \"question\": \"how many friends are fooling around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32787\",\n    \"key\": \"28518\",\n    \"description\": \"two friends are fooling around and one is kissing the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnx0fkTpf01sbd59so1_500\",\n    \"question\": \"what is the woman with long dark hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31769\",\n    \"key\": \"41850\",\n    \"description\": \"a woman with long dark hair is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncehmvUQzC1tmicsyo1_400\",\n    \"question\": \"how many girls is this singing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19230\",\n    \"key\": \"59826\",\n    \"description\": \"this is three girls singing and one is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckdyss7jl1ttgixso1_400\",\n    \"question\": \"what did the guy hit before getting out?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18767\",\n    \"key\": \"81225\",\n    \"description\": \"the guy hit the door before getting out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbp8yjtLBO1qk2t5po1_400\",\n    \"question\": \"what is the man riding off a ramp,\",\n    \"answer\": \"over multiple vehicles and lands on another ramp ? bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30296\",\n    \"key\": \"58655\",\n    \"description\": \"a man is riding his bike off a ramp,\"\n  },\n  {\n    \"video_name\": \"tumblr_nj458883cd1qdn0lqo1_500\",\n    \"question\": \"what are clinging on to the man?\",\n    \"answer\": \"wolves\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49318\",\n    \"key\": \"48918\",\n    \"description\": \"two wolves are clinging on to a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat8lfrtLm1ttdel3o1_250\",\n    \"question\": \"what is the color of the water?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7532\",\n    \"key\": \"14552\",\n    \"description\": \"a boy in a white shirt dumps water over his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nki97gCmDh1s3uqzwo1_250\",\n    \"question\": \"how many beautiful girl are filming themselves while talking?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5709\",\n    \"key\": \"4472\",\n    \"description\": \"three beautiful girl are filming themselves while talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacxsoAe7U1tcn68vo1_400\",\n    \"question\": \"where is the man rubbing his body.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18130\",\n    \"key\": \"37565\",\n    \"description\": \"a man in the pool is rubbing his body.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqrag9xM6l1qi27q9o1_250\",\n    \"question\": \"what are the pair of men together?\",\n    \"answer\": \"laundry\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31582\",\n    \"key\": \"40814\",\n    \"description\": \"a pair of men are folding laundry together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r1ab8DhJ1twtgiao1_400\",\n    \"question\": \"how many turtles are swimming with some fish?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47685\",\n    \"key\": \"59201\",\n    \"description\": \"two turtles are swimming with some fish.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne28pi81sm1twibc7o1_500\",\n    \"question\": \"how many people is holding hands are backing away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27729\",\n    \"key\": \"85312\",\n    \"description\": \"two people holding hands are backing away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nijsejJz481snpgaao1_r2_400\",\n    \"question\": \"what is the man dismounting?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38301\",\n    \"key\": \"19571\",\n    \"description\": \"a man is dismounting a horse to face his enemy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nejj0xVfBd1s9dtupo1_400\",\n    \"question\": \"what is the man wearing a hat is smoking?\",\n    \"answer\": \"pipe\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50204\",\n    \"key\": \"29070\",\n    \"description\": \"a man wearing a hat is smoking a pipe.\"\n  },\n  {\n    \"video_name\": \"tumblr_no5a69ZeuT1usb61xo1_400\",\n    \"question\": \"how many people danced on a stage and sing in front of others?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50598\",\n    \"key\": \"48931\",\n    \"description\": \"two people danced on a stage and sing in front of others.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngsm91Asda1sxvooxo1_250\",\n    \"question\": \"what does the couple enter looking around nervously?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25950\",\n    \"key\": \"3046\",\n    \"description\": \"a couple enters a room looking around nervously.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqwyzvjvLa1qe4iy8o1_540\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51595\",\n    \"key\": \"91901\",\n    \"description\": \"the girl with the red hair is wearing a hat and winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6mivxvws1t9b0t3o1_250\",\n    \"question\": \"what does the man stares in awe as a woman in a parka hold up?\",\n    \"answer\": \"wand\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40351\",\n    \"key\": \"16068\",\n    \"description\": \"a man stares in awe as a woman in a parka holds up a wand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbtdqZdwQ1tkyxjzo1_500\",\n    \"question\": \"how many ugly girls are sitting and talking to someone?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33420\",\n    \"key\": \"80616\",\n    \"description\": \"two ugly girls are sitting and talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq5ljp5DaL1uygmxjo1_400\",\n    \"question\": \"how many high fives does woman get denied during tv show?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45347\",\n    \"key\": \"21139\",\n    \"description\": \"woman gets denied two high fives during tv show.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xoi33thn1tuoukno1_250\",\n    \"question\": \"how many men is this standing and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15710\",\n    \"key\": \"13455\",\n    \"description\": \"this is two men standing and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nilncsL7s01svos5ho1_400\",\n    \"question\": \"what is the musician,\",\n    \"answer\": \"holding , laughs into a microphone and then puts her fingers up to her lips ? guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1070\",\n    \"key\": \"40974\",\n    \"description\": \"a musician,\"\n  },\n  {\n    \"video_name\": \"tumblr_nh2les6Lt11t5ojzdo1_250\",\n    \"question\": \"where is the girl with dark brown hair,\",\n    \"answer\": \"peeking . ? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32660\",\n    \"key\": \"81335\",\n    \"description\": \"a girl with dark brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjwd9zoNn1upsi9qo1_400\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44533\",\n    \"key\": \"66967\",\n    \"description\": \"two men in black are talking whilst one of them massages his fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_navra9c1nQ1tkqswzo1_500\",\n    \"question\": \"what are the group of young women drinking and smoking?\",\n    \"answer\": \"cigarettes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51020\",\n    \"key\": \"37649\",\n    \"description\": \"a group of young women are drinking and smoking cigarettes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn2rzl5NVF1utwz4no1_400\",\n    \"question\": \"what is the girl wearing glasses is holding?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11578\",\n    \"key\": \"11474\",\n    \"description\": \"a girl wearing glasses is holding a coffee cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3yqfO8ln1s83lk7o1_400\",\n    \"question\": \"what is muscled man lifting with weights on them?\",\n    \"answer\": \"bells\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1275\",\n    \"key\": \"97568\",\n    \"description\": \"muscled man lifting bar bells with weights on them.\"\n  },\n  {\n    \"video_name\": \"tumblr_na371ywy2Y1r8f3ano1_500\",\n    \"question\": \"what is the color of the gloves?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13411\",\n    \"key\": \"46216\",\n    \"description\": \"a long haired man in a nice fancy tuxedo suit and white gloves is holding a card.\"\n  },\n  {\n    \"video_name\": \"tumblr_nahb37wZcQ1tbjfazo1_400\",\n    \"question\": \"what is swimming close to the surface of the water?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10888\",\n    \"key\": \"64226\",\n    \"description\": \"a fish is swimming close to the surface of the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9uwvyjpy1r23fzwo1_500\",\n    \"question\": \"what is running happily around the brown horse?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27869\",\n    \"key\": \"59214\",\n    \"description\": \"a black horse is running happily around a brown horse.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrbcaupBvH1tfnm8co1_400\",\n    \"question\": \"what does the cat then fall off?\",\n    \"answer\": \"sill\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7736\",\n    \"key\": \"10153\",\n    \"description\": \"a cat is rolling on its back then falls off a window sill.\"\n  },\n  {\n    \"video_name\": \"tumblr_no4mczo7UB1qirwpco1_500\",\n    \"question\": \"how many people are sitting down and then kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17727\",\n    \"key\": \"98207\",\n    \"description\": \"two people are sitting down and then kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyf9zKF011qi9fe9o1_250\",\n    \"question\": \"how many man are dancing around the car in the city?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA866\",\n    \"key\": \"21199\",\n    \"description\": \"two man are dancing around a car in the city.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncj7chue1D1tt55ezo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA563\",\n    \"key\": \"67237\",\n    \"description\": \"a guy with wired blue hair is standing at the lake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8w9d5ZgH1r0vo80o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10606\",\n    \"key\": \"16016\",\n    \"description\": \"a girl with brown hair is crying in a long hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni39tcOdRU1u8nz0jo1_400\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21270\",\n    \"key\": \"59710\",\n    \"description\": \"the boy in the front has gray eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngwfgtA7Yl1rvg7fao1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27001\",\n    \"key\": \"31742\",\n    \"description\": \"a girl in black hair is blowing a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9542cu8vT1qgluiuo1_250\",\n    \"question\": \"how many people are staring into each others eyes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7666\",\n    \"key\": \"82941\",\n    \"description\": \"two people are staring into each others eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0sfoJ1LW1rgc9a3o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46048\",\n    \"key\": \"30174\",\n    \"description\": \"a guy wearing a red shirt is doing tricks,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngf9rveb2q1sh98coo1_400\",\n    \"question\": \"what is driving through an open grassy area?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42010\",\n    \"key\": \"94749\",\n    \"description\": \"the black car is driving through an open grassy area.\"\n  },\n  {\n    \"video_name\": \"tumblr_no109jnJVv1u8k4roo1_500\",\n    \"question\": \"what is the color of the lines?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30413\",\n    \"key\": \"62452\",\n    \"description\": \"a woman is dancing with a white background and red lines.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf9m8zTe8u1rlog3io1_400\",\n    \"question\": \"what is the girl wearing and laughing in a kitchen?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50228\",\n    \"key\": \"79038\",\n    \"description\": \"a girl is wearing a hat and laughing in a kitchen.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sxngq7FO1tq1ky8o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44562\",\n    \"key\": \"48622\",\n    \"description\": \"a man in a jacket is struggling with a man in a blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhrwlnA5yo1rvuwsco1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38810\",\n    \"key\": \"18509\",\n    \"description\": \"a woman wearing a green shirt is sitting and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhkpbYVJn1sbqayyo1_250\",\n    \"question\": \"what is the man wearing a black shirt is smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47968\",\n    \"key\": \"6728\",\n    \"description\": \"a man wearing a black shirt is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2bek2f181shn0qyo1_400\",\n    \"question\": \"where is the young woman fooling around.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33695\",\n    \"key\": \"1108\",\n    \"description\": \"a young woman is fooling around in a swimming pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncb4rh5u6V1tw6u06o1_500\",\n    \"question\": \"what is rolling over the pile of blueberries and raspberries?\",\n    \"answer\": \"raspberry\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5750\",\n    \"key\": \"74315\",\n    \"description\": \"a red raspberry is rolling over a pile of blueberries and raspberries.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6oo2PKSC1silsr6o1_400\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52649\",\n    \"key\": \"35103\",\n    \"description\": \"a cute dog with big ears and brown eyes looks alert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxhsp8ug21s6zpepo1_400\",\n    \"question\": \"what kicks its legs while laying on the floor?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46238\",\n    \"key\": \"68620\",\n    \"description\": \"a white dog kicks its legs while laying on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_np4dzwBgIT1rvfirpo1_500\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15092\",\n    \"key\": \"7986\",\n    \"description\": \"a very cute boy wearing black clothes is showing a hole in his hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0160uqpI1sbrhq7o1_400\",\n    \"question\": \"how many motorcycles are speeding on the freeway?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33763\",\n    \"key\": \"70301\",\n    \"description\": \"two motorcycles are speeding on the freeway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngj5js922h1qezxdbo1_250\",\n    \"question\": \"what is being poured over the ball of ice cream in a dish?\",\n    \"answer\": \"sauce\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10348\",\n    \"key\": \"23062\",\n    \"description\": \"chocolate sauce is being poured over a ball of ice cream in a dish.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndk6ka1aJ91tk1he1o1_400\",\n    \"question\": \"what does the wrestler flip off crashing onto the opponent?\",\n    \"answer\": \"ropes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15377\",\n    \"key\": \"61761\",\n    \"description\": \"the wrestler flips off the ropes crashing onto the opponent.\"\n  },\n  {\n    \"video_name\": \"tumblr_na260dZVY11txmq72o1_250\",\n    \"question\": \"what attempts to grab the paper from a shredder?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14369\",\n    \"key\": \"26579\",\n    \"description\": \"a cat attempts to grab a paper from a shredder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfrmsb7tal1t06o0xo1_400\",\n    \"question\": \"where is the woman rolling.\",\n    \"answer\": \"? tire\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30023\",\n    \"key\": \"67695\",\n    \"description\": \"a woman is rolling in a large tire.\"\n  },\n  {\n    \"video_name\": \"tumblr_nit1e4bC5N1tx8mn0o1_400\",\n    \"question\": \"how many cars raced?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2981\",\n    \"key\": \"96402\",\n    \"description\": \"three cars raced and the third car moved to first.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhve02JnVG1tjhld9o1_250\",\n    \"question\": \"what is playing with the little boy?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1356\",\n    \"key\": \"27694\",\n    \"description\": \"a white puppy is playing with a little boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsow8trHJ1tlsvejo1_400\",\n    \"question\": \"what swims through the water and hits a cage?\",\n    \"answer\": \"shark\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28881\",\n    \"key\": \"70700\",\n    \"description\": \"a shark swims through the water and hits a cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3wn08K8f1tkgkzxo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46705\",\n    \"key\": \"90971\",\n    \"description\": \"a girl with a green shirts looks to confirm at a boy with blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngbf58vaLD1u362qwo1_400\",\n    \"question\": \"what is the color of the surfboard?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8112\",\n    \"key\": \"33500\",\n    \"description\": \"a surfer using a white surfboard is doing tricks while riding the wave.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cgzncdk51ti63mdo1_1280\",\n    \"question\": \"how many men are sitting on the couch and one jumps down?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41698\",\n    \"key\": \"60376\",\n    \"description\": \"two men are sitting on a couch and one jumps down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nep9y0gfLb1u393nmo1_500\",\n    \"question\": \"what is the girl catching something in his mouth and a guy is strumming?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45080\",\n    \"key\": \"82478\",\n    \"description\": \"a girl is catching something in his mouth and a guy is strumming a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_np337z8sUF1upx9wro1_400\",\n    \"question\": \"what is the guy with his hat on backwards playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26034\",\n    \"key\": \"26276\",\n    \"description\": \"a guy with his hat on backwards is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g3lqfsMq1rdk1zoo1_400\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA339\",\n    \"key\": \"60984\",\n    \"description\": \"a woman in a white dress is playing a violin.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng18v4iOw91u4hyr2o1_500\",\n    \"question\": \"what are two women clapping and wearing?\",\n    \"answer\": \"clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25144\",\n    \"key\": \"94617\",\n    \"description\": \"two women are clapping and wearing different clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyvipLa6l1tz9jaqo1_500\",\n    \"question\": \"how many player gets the ball in the goal?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38508\",\n    \"key\": \"101592\",\n    \"description\": \"people are playing soccer and one player gets the ball in the goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8ztgwPRU1tj8blpo1_250\",\n    \"question\": \"what is the white and black cat holding and biting?\",\n    \"answer\": \"tail\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10347\",\n    \"key\": \"11564\",\n    \"description\": \"a white and black cat is holding and biting its own tail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nctun9U7MZ1u0tx7oo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6681\",\n    \"key\": \"21237\",\n    \"description\": \"a walking young man with black hat is practicing rap in the park.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd99tr1UmA1ruqk6ro1_250\",\n    \"question\": \"what is on the road in traffic on a bridge?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6739\",\n    \"key\": \"4433\",\n    \"description\": \"a car is on the road in traffic on a bridge.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk38eaBV6Q1tci3xlo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36608\",\n    \"key\": \"59416\",\n    \"description\": \"a man wearing a red shirt is holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_njohpqycOr1sqbefno1_400\",\n    \"question\": \"what is the color of the hood?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40818\",\n    \"key\": \"54082\",\n    \"description\": \"a man wearing a black hood is chatting expressively.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmjxb7k221u7jlepo1_250\",\n    \"question\": \"how many men in jackets walk back and forth?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8284\",\n    \"key\": \"15391\",\n    \"description\": \"two men in jackets walk back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk9scBuwZ1uanc3bo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44826\",\n    \"key\": \"45400\",\n    \"description\": \"a man wearing a white shirt laughs and looks right.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbs730oWVP1samlj0o1_400\",\n    \"question\": \"how many soccer players give each other high fives?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4622\",\n    \"key\": \"75109\",\n    \"description\": \"two soccer players give each other high fives.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98dcyLaEN1qbgpp5o1_500\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4052\",\n    \"key\": \"11286\",\n    \"description\": \"a young man wearing black clothing is giving a thumbs up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat3hdvBzb1t0vmnto1_250\",\n    \"question\": \"how many men are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11791\",\n    \"key\": \"21840\",\n    \"description\": \"two men are talking and one is holding a cat who is trying to get away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nit83eq5sB1u9se2do1_400\",\n    \"question\": \"what do white-gloved hands move forward in a display?\",\n    \"answer\": \"boxes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15949\",\n    \"key\": \"16211\",\n    \"description\": \"white-gloved hands move rings boxes forward in a display.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrd6a5lSj81r5wqxpo1_400\",\n    \"question\": \"how many girls are laughing and crying at something?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17655\",\n    \"key\": \"91865\",\n    \"description\": \"two girls are laughing and crying at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfa0f8zRRV1rs02yxo1_250\",\n    \"question\": \"what takes the tumble down the side of a hill?\",\n    \"answer\": \"sheep\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36897\",\n    \"key\": \"40651\",\n    \"description\": \"a fake sheep takes a tumble down the side of a hill.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9a6czZrIJ1qjcrtpo2_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41569\",\n    \"key\": \"5564\",\n    \"description\": \"a man with short black hair and a beard is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngg87d3TAS1r21zwoo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27202\",\n    \"key\": \"98313\",\n    \"description\": \"a dark haired woman with dark rimmed glasses and a white shirt is leaning against a doorway.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng476zEkYt1s7qa4ao1_500\",\n    \"question\": \"how many men with microphones are dancing?\",\n    \"answer\": \"suited\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52656\",\n    \"key\": \"99952\",\n    \"description\": \"a few suited men with microphones are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8vk28nV921tv6x4go1_500\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44747\",\n    \"key\": \"68505\",\n    \"description\": \"two white skulls are on a black background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrcelcGlRd1sht3fmo1_250\",\n    \"question\": \"what is the color of the custom?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20593\",\n    \"key\": \"99243\",\n    \"description\": \"a man is staring at a black custom.\"\n  },\n  {\n    \"video_name\": \"tumblr_npltp08V9L1u8z9jdo1_500\",\n    \"question\": \"what is the hand lighting with skulls around it?\",\n    \"answer\": \"candle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43413\",\n    \"key\": \"62712\",\n    \"description\": \"a hand is lighting a candle with skulls around it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndg085f4PR1tlr8uoo1_r1_400\",\n    \"question\": \"where is the man doing something with his hands.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9472\",\n    \"key\": \"12298\",\n    \"description\": \"a man in a room is doing something with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8tct2H3oL1qdq9o9o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45813\",\n    \"key\": \"72931\",\n    \"description\": \"the man in the black shirt is dancing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0r065Oo51tyw2aro1_500\",\n    \"question\": \"what throws toward the display?\",\n    \"answer\": \"shawl\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7297\",\n    \"key\": \"87640\",\n    \"description\": \"a female leopard shawl throws toward the display.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhfkba24Lg1qgd51ro1_250\",\n    \"question\": \"how many men walk up to each other and hug on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10240\",\n    \"key\": \"12591\",\n    \"description\": \"two men walk up to each other and hug on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzkzxzWdA1qhojs7o1_250\",\n    \"question\": \"what is the color of the purse?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23117\",\n    \"key\": \"19244\",\n    \"description\": \"a woman with long brown hair walks forward and raises a yellow purse to her shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbn7v1oCAl1qzkw9zo1_500\",\n    \"question\": \"what is the color of the waves?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45033\",\n    \"key\": \"79889\",\n    \"description\": \"a man with a red coat jacket shirt waves waved.\"\n  },\n  {\n    \"video_name\": \"tumblr_no84zvfF701qbz10so1_500\",\n    \"question\": \"what are pointed at the man and he laughs?\",\n    \"answer\": \"guns\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31190\",\n    \"key\": \"55032\",\n    \"description\": \"two guns are pointed at a man and he laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6v2rh5ZK1tlq7xdo1_400\",\n    \"question\": \"how many women walk up and down the catwalk?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26985\",\n    \"key\": \"67251\",\n    \"description\": \"three women walk up and down a catwalk.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcfe5F1iy1s2t7gvo1_500\",\n    \"question\": \"what does one man remove?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29655\",\n    \"key\": \"88875\",\n    \"description\": \"one man removes his coat as they walk down a hall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9v6lrTXZ01ruvb05o1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11761\",\n    \"key\": \"69254\",\n    \"description\": \"a girl in a blue short is standing and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n985jc2Wyr1sj2zt0o1_400\",\n    \"question\": \"what is the color of the hamster?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50410\",\n    \"key\": \"33712\",\n    \"description\": \"a brown hamster is eating a carrot.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndso8nSpZU1slj978o1_250\",\n    \"question\": \"what up then hits itself with its paws?\",\n    \"answer\": \"wakes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50581\",\n    \"key\": \"36754\",\n    \"description\": \"a kitten wakes up then hits itself with its paws.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2u25RDlx1tkoeqqo1_250\",\n    \"question\": \"what is the color of the baseball?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10207\",\n    \"key\": \"19051\",\n    \"description\": \"a young man in a black baseball cap waves with his hand and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmv9f3Q8s1sren05o1_400\",\n    \"question\": \"how many man is giving another man a high five and hug?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28268\",\n    \"key\": \"63952\",\n    \"description\": \"one man is giving another man a high five and hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng9radFwQ31ryp4dmo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19551\",\n    \"key\": \"94389\",\n    \"description\": \"a guy with black jacket is lowering his head around a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbydqkuA1n1s2odu5o1_400\",\n    \"question\": \"where are the man and a woman kissing each other.\",\n    \"answer\": \"? nightclub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1853\",\n    \"key\": \"16287\",\n    \"description\": \"a man and a woman are kissing each other in a nightclub.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtjn9aMbk1qbvprao1_500\",\n    \"question\": \"what is the beautiful young woman driving?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40531\",\n    \"key\": \"60192\",\n    \"description\": \"a beautiful young woman is driving a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_npltp08V9L1u8z9jdo1_500\",\n    \"question\": \"what is being lit by a match?\",\n    \"answer\": \"candle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2075\",\n    \"key\": \"62712\",\n    \"description\": \"a candle being lit by a match.\"\n  },\n  {\n    \"video_name\": \"tumblr_npxdqeQDlj1rndm3wo1_400\",\n    \"question\": \"what are four men wearing with dark hair gesticulate?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21121\",\n    \"key\": \"82713\",\n    \"description\": \"four men wearing a suit with dark hair gesticulate.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqamqac9al1r2ro17o1_400\",\n    \"question\": \"what is kissing and showing affection to a girl?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31329\",\n    \"key\": \"31560\",\n    \"description\": \"a dog is kissing and showing affection to a girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexprrqDDT1rmf606o1_250\",\n    \"question\": \"what is the young man smoking a cigarette and holding?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21078\",\n    \"key\": \"16137\",\n    \"description\": \"a young man is smoking a cigarette and holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6ogaoDLQ1tv8k7po1_400\",\n    \"question\": \"how many women lay on a found with a young boy on their laps?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11213\",\n    \"key\": \"70363\",\n    \"description\": \"two women lay on a found with a young boy on their laps.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklvhuCJ821qd8xguo1_400\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10235\",\n    \"key\": \"7816\",\n    \"description\": \"a woman wearing a black leather coat reaches around and unhooks a bra on a mannequin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nekdh5z6iB1tw8vf9o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27337\",\n    \"key\": \"12479\",\n    \"description\": \"a man with red shirt is kicks a man with a blue shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9emuzqIhv1sk96t7o1_400\",\n    \"question\": \"what is the color of the rat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15794\",\n    \"key\": \"42486\",\n    \"description\": \"a white rat is running away from a snake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhszflfDwb1u1rggjo1_400\",\n    \"question\": \"where does the person drive by shifting,\",\n    \"answer\": \"applying the brake , and applying the gas as needed . ? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8307\",\n    \"key\": \"26159\",\n    \"description\": \"a person in a race car drives by shifting,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx7hdCQhQ1s57zi7o1_400\",\n    \"question\": \"how many men are looking each other while talking and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26231\",\n    \"key\": \"54111\",\n    \"description\": \"two men are looking each other while talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbukvu8jjX1r97r00o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17949\",\n    \"key\": \"85392\",\n    \"description\": \"a girl with brown hair sticks out her tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoga4fMRx1r9ka6jo1_500\",\n    \"question\": \"how many young men are eating and playing with their food?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7724\",\n    \"key\": \"90422\",\n    \"description\": \"two young men are eating and playing with their food.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkjauenZC1ssoar9o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21924\",\n    \"key\": \"80923\",\n    \"description\": \"the boy in the blue shirt kissed the girl with the blond hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtjn9aMbk1qbvprao1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20754\",\n    \"key\": \"60192\",\n    \"description\": \"the woman is singing and wearing black.\"\n  },\n  {\n    \"video_name\": \"tumblr_na403e8Ozd1qeda9uo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14095\",\n    \"key\": \"55798\",\n    \"description\": \"a black cat is siting on a dresser and knocks something off of it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5189zMVE1tewmvuo1_400\",\n    \"question\": \"what is the woman holding and flipping out?\",\n    \"answer\": \"can\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13503\",\n    \"key\": \"32777\",\n    \"description\": \"a woman is holding a spray can and flipping out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlffmM9Wd1uzmksuo1_250\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7779\",\n    \"key\": \"37993\",\n    \"description\": \"the guy in the black plaid shirt with brown eyes is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_np9l67iE301te94myo1_400\",\n    \"question\": \"what had the loose cap?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20619\",\n    \"key\": \"19930\",\n    \"description\": \"the hockey player 's drink had a loose cap.\"\n  },\n  {\n    \"video_name\": \"tumblr_nn8bxrdwTP1sht3fmo1_250\",\n    \"question\": \"what is emerging from the plant on the sea floor?\",\n    \"answer\": \"octopus\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12879\",\n    \"key\": \"26655\",\n    \"description\": \"an octopus is emerging from a plant on the sea floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh40fkieup1sdbrm9o1_400\",\n    \"question\": \"how many guys are sitting on the couch talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37222\",\n    \"key\": \"36772\",\n    \"description\": \"two guys are sitting on a couch talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nekejw2Vnh1tpgapwo1_500\",\n    \"question\": \"how many boys are watching something on a computer?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12392\",\n    \"key\": \"77959\",\n    \"description\": \"two boys are watching something on a computer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb40f1NWsK1tjrca2o1_400\",\n    \"question\": \"what is chewing on the toy?\",\n    \"answer\": \"poodle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10078\",\n    \"key\": \"65695\",\n    \"description\": \"a cute poodle is chewing on a toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nao9y58N7P1qfy935o1_400\",\n    \"question\": \"how many men are sitting in chairs and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39291\",\n    \"key\": \"64283\",\n    \"description\": \"two men are sitting in chairs and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nej1d4mOLQ1rnwhulo1_500\",\n    \"question\": \"what is the man with long black hair wearing and looking down?\",\n    \"answer\": \"tuxedo\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21656\",\n    \"key\": \"71777\",\n    \"description\": \"a man with long black hair is wearing a tuxedo and looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjj7ntrNZ1ssgyoro1_250\",\n    \"question\": \"where is the woman kicking.\",\n    \"answer\": \"? door\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41952\",\n    \"key\": \"2196\",\n    \"description\": \"a woman is kicking in a red door.\"\n  },\n  {\n    \"video_name\": \"tumblr_negrp50MCD1rmfypqo1_500\",\n    \"question\": \"how many boys are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18592\",\n    \"key\": \"97810\",\n    \"description\": \"two boys are talking and one is looking at the other one.\"\n  },\n  {\n    \"video_name\": \"tumblr_nalhnwyik11shsap3o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49945\",\n    \"key\": \"1250\",\n    \"description\": \"a black man is using a microphone outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjoyzQcjX1shw3clo1_400\",\n    \"question\": \"what does the man put on the face of a doll?\",\n    \"answer\": \"gum\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22721\",\n    \"key\": \"42357\",\n    \"description\": \"a man puts gum on the face of a doll.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvri85Mv81u33e4bo1_500\",\n    \"question\": \"what is the man in a suit taking off?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7797\",\n    \"key\": \"19169\",\n    \"description\": \"a man in a suit is taking his jacket off.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndd0liU8F51u0bmj8o1_250\",\n    \"question\": \"where are these two people moving around.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14423\",\n    \"key\": \"59662\",\n    \"description\": \"these two people are moving around together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6tq5naM61sq9h0ho1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42182\",\n    \"key\": \"13117\",\n    \"description\": \"a young girl wearing a black jacket is smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npmetmIe3v1use8l1o1_400\",\n    \"question\": \"what pushes chair out from underneath man?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52374\",\n    \"key\": \"36200\",\n    \"description\": \"dog pushes chair out from underneath man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hp20yyXi1ttuja3o1_400\",\n    \"question\": \"how many guys sit on the sofa and high five while wearing horse face masks?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36986\",\n    \"key\": \"65594\",\n    \"description\": \"two guys sit on a sofa and high five while wearing horse face masks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafngzqDRD1teqt83o1_250\",\n    \"question\": \"how many women try to flip bottle caps?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18077\",\n    \"key\": \"22609\",\n    \"description\": \"four women try to flip bottle caps.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckd72nhSk1rbxxq5o1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36432\",\n    \"key\": \"2011\",\n    \"description\": \"a woman in white is dancing around on the stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_niw20xqfYh1qjzq4lo1_400\",\n    \"question\": \"how many men are staring straight ahead at an object?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21303\",\n    \"key\": \"81088\",\n    \"description\": \"two men are staring straight ahead at an object.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkn9fyd7VX1rr455so1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45614\",\n    \"key\": \"28361\",\n    \"description\": \"a man in a white suit is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0ll9YbS81un7qbto1_250\",\n    \"question\": \"how many guys are making the commercial with a wave?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29031\",\n    \"key\": \"1782\",\n    \"description\": \"two guys are making a commercial with a wave.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91fdzM1VS1s1l4fio1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5179\",\n    \"key\": \"82743\",\n    \"description\": \"a man with a white shirt and a black hat is walking down a crowded street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nogmgpQqlA1r39im9o1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29004\",\n    \"key\": \"28559\",\n    \"description\": \"a young lady with a blue sweater on is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq4afnM0Z1s5o1jwo1_400\",\n    \"question\": \"how many big rodents is the person wearing a dark gray jacket has climbing on him?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33083\",\n    \"key\": \"41704\",\n    \"description\": \"a person wearing a dark gray jacket has two big rodents climbing on him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkv2wwA6vd1tatohao1_400\",\n    \"question\": \"what does the white cat push off a fence?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39289\",\n    \"key\": \"41874\",\n    \"description\": \"a white cat pushes a black cat off a fence.\"\n  },\n  {\n    \"video_name\": \"tumblr_nixculfZ3b1qlbj8uo1_500\",\n    \"question\": \"how many people are singing while wearing headphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16398\",\n    \"key\": \"101727\",\n    \"description\": \"two people are singing while wearing headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6ogaoDLQ1tv8k7po1_400\",\n    \"question\": \"how many girls are laying on the couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34307\",\n    \"key\": \"70363\",\n    \"description\": \"two girls are laying on a couch and a little boy is sitting on them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexxznjybj1sto45zo1_400\",\n    \"question\": \"what falls out of an airplane?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38127\",\n    \"key\": \"42866\",\n    \"description\": \"a car falls out of an airplane.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelgzg0Sl91r0oqh7o1_500\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26310\",\n    \"key\": \"89347\",\n    \"description\": \"a man dressed in a black outfit is dancing in a large room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndth24wYTb1tj3n6no1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38485\",\n    \"key\": \"40782\",\n    \"description\": \"a man with jacket black is moving his mouth and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuq7antOu1t9h1yfo1_400\",\n    \"question\": \"how many twins women are smiling at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50258\",\n    \"key\": \"52004\",\n    \"description\": \"two twins women are smiling at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb814wDUHq1tjlz9vo1_500\",\n    \"question\": \"how many cups of beer is making attention of a man?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33651\",\n    \"key\": \"74926\",\n    \"description\": \"two cups of beer is making attention of a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_niml4vDdxa1s43pimo1_500\",\n    \"question\": \"what does the man play with other guys?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14985\",\n    \"key\": \"87715\",\n    \"description\": \"a man plays the played guitar with other guys.\"\n  },\n  {\n    \"video_name\": \"tumblr_nirh7qn89K1u9pk5io1_250\",\n    \"question\": \"how many people are walking beneath clothes that are falling from the sky?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13802\",\n    \"key\": \"35792\",\n    \"description\": \"two people are walking beneath clothes that are falling from the sky.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdhm4hgxd1qmjp5wo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40105\",\n    \"key\": \"90886\",\n    \"description\": \"the blond haired lady with the white dress is dancing in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncm5ybb69c1til9f1o1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41318\",\n    \"key\": \"22414\",\n    \"description\": \"the girl is wearing a black top and has a ponytail.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqyszt5Ni41td493xo1_500\",\n    \"question\": \"what are two small babies pulling from a shelf?\",\n    \"answer\": \"toys\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13356\",\n    \"key\": \"70615\",\n    \"description\": \"two small babies are pulling toys from a shelf.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxgchqDN41tafdr6o1_400\",\n    \"question\": \"what is the cute man with long hair smiling and holding?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16412\",\n    \"key\": \"26114\",\n    \"description\": \"a cute man with long hair is smiling and holding a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3g8t6mfz1u5ha1qo1_400\",\n    \"question\": \"what does an american football player catches then drop?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17022\",\n    \"key\": \"40995\",\n    \"description\": \"an american football player catches then drops the ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_noks4v4Q2a1ut6u2zo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52293\",\n    \"key\": \"41035\",\n    \"description\": \"a man dressed in black sings in front of a green american flag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhiydsOcmj1rtdnfto1_400\",\n    \"question\": \"what opens his eyes as he looks to his right?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33142\",\n    \"key\": \"74853\",\n    \"description\": \"a dog opens his eyes as he looks to his right.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e0qe1Ghp1sztu6fo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31874\",\n    \"key\": \"54657\",\n    \"description\": \"this image is of a man in a white shirt smelling a flower.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd931nZhS61s1ctsqo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7653\",\n    \"key\": \"64632\",\n    \"description\": \"a boy is wearing a white shirt and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni4gbmLunr1rpqu91o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30398\",\n    \"key\": \"77952\",\n    \"description\": \"a tennis player wearing a blue shirt is breathing hard.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhrro71WM1stugz1o1_500\",\n    \"question\": \"what is the man staring around,\",\n    \"answer\": \"and he 's ? candles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40543\",\n    \"key\": \"91536\",\n    \"description\": \"the man is staring around,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngnw7hrGPi1u60vhlo1_400\",\n    \"question\": \"what does the man with a blue face and horns sit buy?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22843\",\n    \"key\": \"33756\",\n    \"description\": \"a man with a blue face and horns sits buy a christmas tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4vryXuiR1u9o6qbo1_400\",\n    \"question\": \"what is the woman wearing a black jacket reveals smiling?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33824\",\n    \"key\": \"19008\",\n    \"description\": \"a woman wearing a black jacket reveals her dress smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9wv5Byt01qdd57go1_250\",\n    \"question\": \"what ca n't stand on her legs and somebody is trying to pick her up?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44756\",\n    \"key\": \"1884\",\n    \"description\": \"a cat ca n't stand on her legs and somebody is trying to pick her up.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmvsll5lm1t2wqhqo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34784\",\n    \"key\": \"20790\",\n    \"description\": \"a man with red curly hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9o2c5bcu71ti2qwco1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48942\",\n    \"key\": \"91886\",\n    \"description\": \"a person with short,\"\n  },\n  {\n    \"video_name\": \"tumblr_nad9ej0PCm1sk96t7o1_400\",\n    \"question\": \"how many police men are battening the blow up figure?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47182\",\n    \"key\": \"63718\",\n    \"description\": \"two police men are battening a blow up figure.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfv6g2nUvC1s3lpszo1_400\",\n    \"question\": \"what is the boy in a red shirt holding?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27744\",\n    \"key\": \"45443\",\n    \"description\": \"a boy in a red shirt is holding a plastic bottle as he spins around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngduwu0Imi1u4bf8bo1_250\",\n    \"question\": \"what is the woman wearing and yelling at another woman?\",\n    \"answer\": \"bra\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41421\",\n    \"key\": \"43884\",\n    \"description\": \"a woman is wearing a bra and yelling at another woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbedaeuiR61r7t26uo1_400\",\n    \"question\": \"what is the man jumping down a short staircase?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11657\",\n    \"key\": \"52264\",\n    \"description\": \"a man is jumping a skateboard down a short staircase.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3xjjWRr51tdmffyo1_250\",\n    \"question\": \"what is bouncing up and down on the chair?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33469\",\n    \"key\": \"47903\",\n    \"description\": \"a cat is bouncing up and down on a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_netczdYQLZ1u25ovvo1_400\",\n    \"question\": \"what did the man in a red car pass?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4613\",\n    \"key\": \"63490\",\n    \"description\": \"a man in a red car passed another car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndphzaqD8L1u1zstqo1_250\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8952\",\n    \"key\": \"27172\",\n    \"description\": \"a guy in a dark green suit is looking down then looks up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzmtegTVQ1tbjksno1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8434\",\n    \"key\": \"48354\",\n    \"description\": \"a man wearing a brown shirt was talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbw7obBlMP1tx8mn0o1_400\",\n    \"question\": \"what does the man wreck during a race,\",\n    \"answer\": \"then skids on the ground ? motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2611\",\n    \"key\": \"52738\",\n    \"description\": \"a man wrecks his motorcycle during a race,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqhv0vJeU91uswv18o1_400\",\n    \"question\": \"how many people dance and look at each other while putting their hands on their chest?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20819\",\n    \"key\": \"63451\",\n    \"description\": \"two people dance and look at each other while putting their hands on their chest.\"\n  },\n  {\n    \"video_name\": \"tumblr_n94hlvb0f81t1j5ogo1_250\",\n    \"question\": \"how many young men are sitting down when one lifts his head and flips his hair back?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52427\",\n    \"key\": \"2925\",\n    \"description\": \"two young men are sitting down when one lifts his head and flips his hair back.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mskz1L1d1tizn8ho1_400\",\n    \"question\": \"what is the color of the jumper?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4019\",\n    \"key\": \"30132\",\n    \"description\": \"a girl wore a red long sleeved jumper.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0bvasOi81slj978o1_500\",\n    \"question\": \"what does the man drive into a big puddle of water?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7052\",\n    \"key\": \"62301\",\n    \"description\": \"a man drives a red dirt bike into a big puddle of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nama5d6s5b1r67t5oo1_250\",\n    \"question\": \"what does the man in a suit enter?\",\n    \"answer\": \"office\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35567\",\n    \"key\": \"74400\",\n    \"description\": \"a man in a suit enters an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkostdKMvH1r2p4dho1_500\",\n    \"question\": \"what is the man smoking?\",\n    \"answer\": \"outdoors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20920\",\n    \"key\": \"55012\",\n    \"description\": \"a man is smoking a cigarette outdoors.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbo3syb9wg1rhy09eo1_500\",\n    \"question\": \"what is the yellow car speeding down the road and is spinning fast?\",\n    \"answer\": \"tire\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47782\",\n    \"key\": \"98035\",\n    \"description\": \"a yellow car is speeding down the road and the tire is spinning fast.\"\n  },\n  {\n    \"video_name\": \"tumblr_navw512o8K1rm76eto1_250\",\n    \"question\": \"what is the color of the light?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16099\",\n    \"key\": \"15520\",\n    \"description\": \"a woman is dancing in front of a blue light.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd6keloVPQ1tkz87ao1_250\",\n    \"question\": \"what is the blond man holding and talking?\",\n    \"answer\": \"laptop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8417\",\n    \"key\": \"53668\",\n    \"description\": \"a blond man is holding his laptop and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nowj7atVBQ1s9g3wto1_500\",\n    \"question\": \"what is the color of the carpet?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34609\",\n    \"key\": \"48520\",\n    \"description\": \"a famous person is being photographed on the red carpet.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kwbo2P5H1rc6jvuo1_400\",\n    \"question\": \"where is the guy standing shooting another man.\",\n    \"answer\": \"? doorway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8099\",\n    \"key\": \"97799\",\n    \"description\": \"a guy standing in a doorway is shooting another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5gsre85l1rs13bbo1_400\",\n    \"question\": \"how many guys are shaking one finger to point a substitution?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25130\",\n    \"key\": \"72620\",\n    \"description\": \"two guys are shaking one finger to point a substitution.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne00j9tc0m1tx8mn0o1_400\",\n    \"question\": \"what did the car videotape in front of them?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19268\",\n    \"key\": \"55497\",\n    \"description\": \"a car videotapes the road in front of them as they drive.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoamk0kmi1unf50eo1_250\",\n    \"question\": \"what is the man wearing with white stars on it?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48477\",\n    \"key\": \"16053\",\n    \"description\": \"a man is wearing a cap with white stars on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrhak1ptv21uww5a5o1_500\",\n    \"question\": \"what is the boy grinding on a curb that is painted yellow?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30252\",\n    \"key\": \"55768\",\n    \"description\": \"a boy is grinding his skateboard on a curb that is painted yellow.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9665a9Aki1tggkgso1_500\",\n    \"question\": \"what is the man with silver hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17345\",\n    \"key\": \"47871\",\n    \"description\": \"a man with silver hair is playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9w54dvKdg1tfn460o1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27109\",\n    \"key\": \"98240\",\n    \"description\": \"a man in a blue suit uses a whip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9es8cEtL1tc95klo1_400\",\n    \"question\": \"what does in the jungle do a strange dance?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27545\",\n    \"key\": \"77527\",\n    \"description\": \"in the jungle a reddish brown monkey does a strange dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbearz2UtH1tykzato1_500\",\n    \"question\": \"what does two woman 's are singing with a microphone and playing?\",\n    \"answer\": \"instrument\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9108\",\n    \"key\": \"91827\",\n    \"description\": \"two woman 's are singing with a microphone and playing a musical instrument.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh02lkJR1E1rit4woo1_400\",\n    \"question\": \"what is the man talking and holding?\",\n    \"answer\": \"lemon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27136\",\n    \"key\": \"58244\",\n    \"description\": \"the man is talking and holding a lemon.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc8usq5bxK1t6ckbko1_400\",\n    \"question\": \"what is the man wearing sitting next to another man on a couch?\",\n    \"answer\": \"mask\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26498\",\n    \"key\": \"57386\",\n    \"description\": \"a man is wearing a mask sitting next to another man on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne29e5pZmc1sz068fo1_250\",\n    \"question\": \"what is playing with eight to ten puppies in the snow?\",\n    \"answer\": \"retriever\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47715\",\n    \"key\": \"40146\",\n    \"description\": \"a grown golden retriever is playing with eight to ten puppies in the snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhq7q5H9SZ1sdx3fko1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42589\",\n    \"key\": \"12928\",\n    \"description\": \"a man is placing his hand over his heart after seeing a woman in a white dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndab1nCacB1rjh61io1_400\",\n    \"question\": \"what is the girl holding with her hand?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43019\",\n    \"key\": \"37279\",\n    \"description\": \"a girl is holding a white cat with her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1q71Yuov1u1xquho1_500\",\n    \"question\": \"what is the pop star feeding to somebody?\",\n    \"answer\": \"cookie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5205\",\n    \"key\": \"88088\",\n    \"description\": \"a pop star is feeding pink heart-shaped cookie to somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkipeiHUUT1t5pc1to1_250\",\n    \"question\": \"where is the woman with blond curly hair thrashing.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22010\",\n    \"key\": \"5147\",\n    \"description\": \"a woman with blond curly hair is thrashing in her chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_navtszVYAv1tys35ko1_250\",\n    \"question\": \"what are two young men singing and playing?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51608\",\n    \"key\": \"15994\",\n    \"description\": \"two young men are singing and playing guitars.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk56z23mbG1tn49sno1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36251\",\n    \"key\": \"14534\",\n    \"description\": \"a teenager wearing a gray shirt looks up slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4xuxJjdk1sfxnzso1_250\",\n    \"question\": \"what pulls into the port,\",\n    \"answer\": \"it stops at the edge ? car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50413\",\n    \"key\": \"82976\",\n    \"description\": \"a car pulls into a port,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbafnh36931svh8clo1_250\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13905\",\n    \"key\": \"1567\",\n    \"description\": \"two men in black are standing at the corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6g6jC3h71u0skjdo1_500\",\n    \"question\": \"how many figure skaters are skating on ice?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16760\",\n    \"key\": \"52672\",\n    \"description\": \"two figure skaters are skating on ice.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvqkbvG2J1u3xy1to1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35190\",\n    \"key\": \"16912\",\n    \"description\": \"a woman in a gray dress is walking down a runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckb7kU2K51tvnqzoo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36952\",\n    \"key\": \"35907\",\n    \"description\": \"a black shirtless man with a white hat is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9emuzqIhv1sk96t7o1_400\",\n    \"question\": \"what is the snake following around its container?\",\n    \"answer\": \"mouse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29676\",\n    \"key\": \"42486\",\n    \"description\": \"a snake is following a mouse around its container.\"\n  },\n  {\n    \"video_name\": \"tumblr_npeg2iKBbw1u9kj5io1_400\",\n    \"question\": \"how many people are shimming down the board?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18133\",\n    \"key\": \"80041\",\n    \"description\": \"two people are shimming down a board.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelgzg0Sl91r0oqh7o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51811\",\n    \"key\": \"89347\",\n    \"description\": \"a guy with black shirt is dancing in a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncdv4ebLbw1tenxbgo1_250\",\n    \"question\": \"what is the color of the object?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11156\",\n    \"key\": \"43929\",\n    \"description\": \"a trio of guys are getting attention and showing a yellow object.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8dp4ELQI1tkatv1o1_500\",\n    \"question\": \"how many guys are poking each other in the chest with their fingers?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8927\",\n    \"key\": \"93303\",\n    \"description\": \"two guys are poking each other in the chest with their fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv9m5pOMl1slj978o1_400\",\n    \"question\": \"what is the cat chasing down the hallway?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10079\",\n    \"key\": \"37576\",\n    \"description\": \"a cat is chasing another cat down the hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkl0odLJ991txousio1_400\",\n    \"question\": \"where is the boy wearing glasses is scooping.\",\n    \"answer\": \"? bowl\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28476\",\n    \"key\": \"61880\",\n    \"description\": \"a boy wearing glasses is scooping in a bowl.\"\n  },\n  {\n    \"video_name\": \"tumblr_nimjqmgul31u94evjo1_500\",\n    \"question\": \"what is doing the thumbs up with its paw?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13034\",\n    \"key\": \"70177\",\n    \"description\": \"a cat is doing a thumbs up with its paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq17llk2YT1uxdlnuo1_400\",\n    \"question\": \"how many wrestlers are fighting in an arena?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18498\",\n    \"key\": \"53957\",\n    \"description\": \"two wrestlers are fighting in an arena.\"\n  },\n  {\n    \"video_name\": \"tumblr_nda2qhxKfP1tn1i0no1_500\",\n    \"question\": \"how many guys are sitting down and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15538\",\n    \"key\": \"88868\",\n    \"description\": \"these two guys are sitting down and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfcu65SQil1u2kzjzo1_400\",\n    \"question\": \"what is the young man laughing and eating?\",\n    \"answer\": \"bun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34897\",\n    \"key\": \"59354\",\n    \"description\": \"a young man is laughing and eating a honey bun.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngjiqqaBNu1spwzqmo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24752\",\n    \"key\": \"2649\",\n    \"description\": \"a white man with brown hair is surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9vuv0Bgll1ticpqdo1_400\",\n    \"question\": \"where are two young men making weird faces and then they hug.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29789\",\n    \"key\": \"57264\",\n    \"description\": \"two young men in a bedroom are making weird faces and then they hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92oq4Hega1ts0kzio1_400\",\n    \"question\": \"what is the duck following around the house?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8778\",\n    \"key\": \"34144\",\n    \"description\": \"a duck is following a cat around the house.\"\n  },\n  {\n    \"video_name\": \"tumblr_npvscxNKxo1u7q0qeo1_400\",\n    \"question\": \"how many teams are playing soccer on a soccer field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22914\",\n    \"key\": \"101284\",\n    \"description\": \"two teams are playing soccer on a soccer field.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2a5eoxn71qcsx7fo1_400\",\n    \"question\": \"how many men are talking into?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8135\",\n    \"key\": \"82233\",\n    \"description\": \"two men are talking into and the focus becomes on one.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbuxofDUaP1trlo5to1_400\",\n    \"question\": \"how many interviewers talk to the lady with long black hair,\",\n    \"answer\": \"as she puts it all on top of her head ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22660\",\n    \"key\": \"48690\",\n    \"description\": \"two interviewers talk to a lady with long black hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrf04cgRUC1ub19xmo1_400\",\n    \"question\": \"what is sitting on something that is dark blue?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7175\",\n    \"key\": \"52346\",\n    \"description\": \"a gray cat is sitting on something that is dark blue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkr302wD1d1s3xft0o1_400\",\n    \"question\": \"what is the color of the bandanna?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4919\",\n    \"key\": \"66391\",\n    \"description\": \"a person wearing a black bandanna to cover the lower portion of their face,\"\n  },\n  {\n    \"video_name\": \"tumblr_njy94yEQmy1u2wr7oo1_500\",\n    \"question\": \"where does the young man look,\",\n    \"answer\": \"but his reflection is doing something different . ? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA7500\",\n    \"key\": \"52664\",\n    \"description\": \"a young man looks in his mirror,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcfhzsUZH1r7blyco1_400\",\n    \"question\": \"what is the color of the beard?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37908\",\n    \"key\": \"89505\",\n    \"description\": \"an old man flicks his white long beard in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_mx0qn68mIL1r20fzqo1_500\",\n    \"question\": \"where is the woman sitting.\",\n    \"answer\": \"? tub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38490\",\n    \"key\": \"99899\",\n    \"description\": \"a woman is sitting in a hot water bath tub.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmnxtXMH81rd87k4o1_250\",\n    \"question\": \"what is licking the stuffed toy?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13648\",\n    \"key\": \"13409\",\n    \"description\": \"a cat is licking a stuffed toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauhoyxzcP1tx8mn0o1_400\",\n    \"question\": \"what is smoking and spinning out on the race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45971\",\n    \"key\": \"55526\",\n    \"description\": \"a race car is smoking and spinning out on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5h8ba4iB1s3wsijo1_500\",\n    \"question\": \"where are two men sword fighting.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20671\",\n    \"key\": \"69389\",\n    \"description\": \"two men are sword fighting in a closed room.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyzyxj6MC1u6z5ppo1_400\",\n    \"question\": \"what is the man and a woman,\",\n    \"answer\": \"holding , are walking together ? bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37240\",\n    \"key\": \"40415\",\n    \"description\": \"a man and a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9orznkSQa1sorauco1_400\",\n    \"question\": \"how many people sat down on the boat and are getting wet?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15466\",\n    \"key\": \"79628\",\n    \"description\": \"three people sat down on a boat and are getting wet.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcmygDXIz1sn2hzqo1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49948\",\n    \"key\": \"86241\",\n    \"description\": \"a white girl with black hair is crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat8wfWBFb1taq9qwo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32422\",\n    \"key\": \"81591\",\n    \"description\": \"a woman with red hair is wearing a yellow shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc7u35pYt1sdbrm9o1_400\",\n    \"question\": \"where are two boys with dark hair standing.\",\n    \"answer\": \"? nightclub\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33563\",\n    \"key\": \"65496\",\n    \"description\": \"two boys with dark hair are standing in a nightclub.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncixxdsOHf1sxy0d0o1_250\",\n    \"question\": \"what is the man holding a microphone switches off another person?\",\n    \"answer\": \"hats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45049\",\n    \"key\": \"35676\",\n    \"description\": \"a man holding a microphone switches hats off another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcf6u3qah1rd87k4o1_250\",\n    \"question\": \"what is the lady riding through a neighborhood with a smile on her face?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23534\",\n    \"key\": \"13573\",\n    \"description\": \"a lady is riding her bike through a neighborhood with a smile on her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk7pnd2mf41uo5sxwo1_250\",\n    \"question\": \"how many young people are standing next to each other in school?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22807\",\n    \"key\": \"20811\",\n    \"description\": \"two young people are standing next to each other in school.\"\n  },\n  {\n    \"video_name\": \"tumblr_na2hqmICLQ1tsz0rqo1_1280\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11386\",\n    \"key\": \"42172\",\n    \"description\": \"a man with short black hair is looking disgusted.\"\n  },\n  {\n    \"video_name\": \"tumblr_na8990L7Lt1tjvqwmo1_250\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30514\",\n    \"key\": \"40761\",\n    \"description\": \"a woman wearing red lipstick is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n922rsMb261te2f6lo1_400\",\n    \"question\": \"what tries desperately to walk but keeps slipping into the mud?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9995\",\n    \"key\": \"82171\",\n    \"description\": \"a baby elephant tries desperately to walk but keeps slipping into the mud.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6fj3GHOF1ti42h0o1_250\",\n    \"question\": \"how many men does there 's on a stage embracing and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA3459\",\n    \"key\": \"50962\",\n    \"description\": \"there 's two men on a stage embracing and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbvir8XTq1sggdd3o1_250\",\n    \"question\": \"how many woman are making some moves in front of a man?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40896\",\n    \"key\": \"41306\",\n    \"description\": \"two woman are making some moves in front of a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5afoHKml1tfsdl2o1_250\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38291\",\n    \"key\": \"17096\",\n    \"description\": \"a midget is dancing in a red room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwzuum2ZL1uo2vcso1_500\",\n    \"question\": \"what is someone pouring on a stack on pancakes?\",\n    \"answer\": \"syrup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23297\",\n    \"key\": \"66772\",\n    \"description\": \"someone is pouring syrup on a stack on pancakes.\"\n  },\n  {\n    \"video_name\": \"tumblr_naand6DjAO1te592qo1_400\",\n    \"question\": \"how many others smile?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15231\",\n    \"key\": \"11636\",\n    \"description\": \"a woman laughs and covers her mouth,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrh6eMkuA1tkdyoao1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26491\",\n    \"key\": \"82205\",\n    \"description\": \"a lady with black pants and a green shirt is exercising in a gym.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl11vrOCz81tmz5hco1_1280\",\n    \"question\": \"how many young men are laughing and smiling together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50924\",\n    \"key\": \"55504\",\n    \"description\": \"two young men are laughing and smiling together.\"\n  },\n  {\n    \"video_name\": \"tumblr_njqh6ctwOo1s2fr9go1_250\",\n    \"question\": \"how many men are having the conversation about clothing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19496\",\n    \"key\": \"10453\",\n    \"description\": \"two men are having a conversation about clothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncknu7Of5u1rt0zdlo1_500\",\n    \"question\": \"what is the guy receiving and he scores?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21683\",\n    \"key\": \"98907\",\n    \"description\": \"a guy is receiving the ball and he scores.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w0s850qY1ttzauho1_500\",\n    \"question\": \"what does the soccer player kick down the length of the field?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25996\",\n    \"key\": \"100693\",\n    \"description\": \"a soccer player kicks the soccer ball down the length of the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3lneXQNe1qi5ldlo1_500\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29112\",\n    \"key\": \"58974\",\n    \"description\": \"a woman is running blue pants,\"\n  },\n  {\n    \"video_name\": \"tumblr_nde98bVDhd1r21xqpo1_250\",\n    \"question\": \"what is the blue puppet closing?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34100\",\n    \"key\": \"86043\",\n    \"description\": \"a blue puppet is closing a brown door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfncd202K81spvhnko1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5817\",\n    \"key\": \"16269\",\n    \"description\": \"a man dressed in black makes a gesture and face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pwmrX2ZE1tfhnexo1_400\",\n    \"question\": \"what is the color of the shoes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9434\",\n    \"key\": \"93372\",\n    \"description\": \"a man with white shoes is twirling a soccer ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_nas7g5TPSK1rcv1w6o1_250\",\n    \"question\": \"how many men are tying their shoes?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51531\",\n    \"key\": \"23194\",\n    \"description\": \"the two men are tying their shoes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbatooeAde1tx8mn0o1_400\",\n    \"question\": \"what are racing around the track and one car spins off the track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25675\",\n    \"key\": \"52734\",\n    \"description\": \"racing cars are racing around a track and one car spins off the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_noal004K181rk6mu2o1_250\",\n    \"question\": \"how many people disguised collide five in an office?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48555\",\n    \"key\": \"80772\",\n    \"description\": \"two people disguised collide five in an office.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndhu4bx6QO1t96l11o1_250\",\n    \"question\": \"how many people are looking at each other while one is shaking their shoulders?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30254\",\n    \"key\": \"59151\",\n    \"description\": \"two people are looking at each other while one is shaking their shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0rptDA7v1thtfeto1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18586\",\n    \"key\": \"69330\",\n    \"description\": \"a white woman with white hair is in the middle of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk1jrdGhR1uakcnho1_500\",\n    \"question\": \"what is the color of the coat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31222\",\n    \"key\": \"71562\",\n    \"description\": \"one man in a trench coat looks at a man with a black coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1cf3Neme1qdj4eqo1_400\",\n    \"question\": \"what is the color of the mat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51129\",\n    \"key\": \"41718\",\n    \"description\": \"a man does a back somersault onto a blue mat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam4laekMg1raer1zo1_500\",\n    \"question\": \"what walks up to the guy and sniffs his shoes?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10421\",\n    \"key\": \"90546\",\n    \"description\": \"a dog walks up to a guy and sniffs his shoes.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv80p45u21sewywlo1_250\",\n    \"question\": \"how many woman is playing the guitar and another woman is singing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45176\",\n    \"key\": \"39505\",\n    \"description\": \"one woman playing the guitar and another woman is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ft5xtWBY1skz3lko1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA47101\",\n    \"key\": \"72890\",\n    \"description\": \"a man in a white tank top is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5j8beXJa1tmv4hpo1_500\",\n    \"question\": \"what is the woman?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22099\",\n    \"key\": \"72454\",\n    \"description\": \"a woman is a red hat is looking away very upset.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcfhzsUZH1r7blyco1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45880\",\n    \"key\": \"89505\",\n    \"description\": \"a white haired man flipped his goatee.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadr87nz2O1tjeyq6o1_250\",\n    \"question\": \"what is the man eating something and wearing?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16030\",\n    \"key\": \"11218\",\n    \"description\": \"a man is eating something and wearing a white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_no14zzwIRx1u76qh3o1_250\",\n    \"question\": \"how many men is this image of sitting down talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26527\",\n    \"key\": \"7031\",\n    \"description\": \"this image is of two men sitting down talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgkjfHKBs1to8r9ro1_250\",\n    \"question\": \"what is the white girl wearing black is tying up?\",\n    \"answer\": \"boots\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6589\",\n    \"key\": \"69441\",\n    \"description\": \"a white girl wearing black is tying up her boots.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacr4yNfLD1tej38vo1_400\",\n    \"question\": \"how many girls are playing around together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46132\",\n    \"key\": \"28544\",\n    \"description\": \"these two girls are playing around together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9r0jnVOmO1qfhxh5o1_400\",\n    \"question\": \"how many men are moving around the room and one almost knocks the other over?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32800\",\n    \"key\": \"65939\",\n    \"description\": \"two men are moving around a room and one almost knocks the other over.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrv41jHnK1rlowhpo1_400\",\n    \"question\": \"what did two professional wrestlers hit at the same time?\",\n    \"answer\": \"mat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41255\",\n    \"key\": \"63063\",\n    \"description\": \"two professional wrestlers hit the mat at the same time.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbfms5bNhL1s3lrg5o1_400\",\n    \"question\": \"what does the man twist?\",\n    \"answer\": \"device\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7700\",\n    \"key\": \"33329\",\n    \"description\": \"a man twists a snakelike tension device.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni3ew49dux1tjhld9o1_400\",\n    \"question\": \"what does the man throw into a tree?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15720\",\n    \"key\": \"66199\",\n    \"description\": \"a man throws his dog into a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9mbbcATlU1rmxd4mo1_1280\",\n    \"question\": \"what does the man move while walking?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12175\",\n    \"key\": \"62647\",\n    \"description\": \"a man moves his jacket while walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9q078mW9F1tipia9o1_400\",\n    \"question\": \"what does the soccer player pass to a team mate,\",\n    \"answer\": \"then the team mate scores a goal ? ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43974\",\n    \"key\": \"66424\",\n    \"description\": \"a soccer player passes the ball to a team mate,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndyc47w6ph1u25dj6o1_400\",\n    \"question\": \"what gets t boned during a snow fall?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36754\",\n    \"key\": \"57531\",\n    \"description\": \"a black car gets t boned during a snow fall.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq2bdiskz1qayc5ro1_400\",\n    \"question\": \"what does the man swivel around in his chair on board?\",\n    \"answer\": \"spaceship\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7518\",\n    \"key\": \"34906\",\n    \"description\": \"a man swivels around in his chair on board a spaceship.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhs9w0ves71rc6vmmo1_400\",\n    \"question\": \"how many guy sings as three other guys,\",\n    \"answer\": \"one with a guitar are behind him ? one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1505\",\n    \"key\": \"57075\",\n    \"description\": \"one guy sings as three other guys,\"\n  },\n  {\n    \"video_name\": \"tumblr_nes4ajxdH01u2rqewo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11535\",\n    \"key\": \"27373\",\n    \"description\": \"a man with black hair is holding a musical instrument over his shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkzdxdVvFc1s5n087o1_500\",\n    \"question\": \"what is driving along the road with lights at night?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34170\",\n    \"key\": \"57448\",\n    \"description\": \"a car is driving along a road with lights at night.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmz2tmDeda1sddro0o1_250\",\n    \"question\": \"how many men watch the truck spill out a bunch of red carts?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48168\",\n    \"key\": \"24985\",\n    \"description\": \"two men watch a truck spill out a bunch of red carts.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbxshaRNzf1rlqrz3o1_500\",\n    \"question\": \"what spins out during the fast turn on an indoor track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48639\",\n    \"key\": \"68911\",\n    \"description\": \"a yellow sports car spins out during a fast turn on an indoor track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndckk40bTy1r7f6ubo1_250\",\n    \"question\": \"how many men execute the complicated wrestling maneuver?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30766\",\n    \"key\": \"77856\",\n    \"description\": \"two men execute a complicated wrestling maneuver.\"\n  },\n  {\n    \"video_name\": \"tumblr_na35maMaeX1r17l27o2_500\",\n    \"question\": \"how many girls run towards each other and hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22998\",\n    \"key\": \"93211\",\n    \"description\": \"two girls run towards each other and hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr5l8obm4R1uyo3nxo1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50022\",\n    \"key\": \"6351\",\n    \"description\": \"the white haired girl is dancing and pointing with her finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5uusuvNn1u2p22ho1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10034\",\n    \"key\": \"13113\",\n    \"description\": \"a young man and a young woman with red hair are applauding.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnymisLnYK1rjb18uo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28721\",\n    \"key\": \"29925\",\n    \"description\": \"a man wearing a black jacket sings on a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnwo4pR4eE1tk2ngvo1_400\",\n    \"question\": \"what forward a rainbow,\",\n    \"answer\": \"? looks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16034\",\n    \"key\": \"56306\",\n    \"description\": \"white polar bear looks forward a rainbow,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncggr1cNhU1s9ltd9o1_500\",\n    \"question\": \"how many women are singing while they stand close to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15386\",\n    \"key\": \"85223\",\n    \"description\": \"two women are singing while they stand close to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesls65ifv1qj1s5io1_400\",\n    \"question\": \"how many orange robotic arms are fighting with swords?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA32846\",\n    \"key\": \"80347\",\n    \"description\": \"two orange robotic arms are fighting with swords.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8v9ubRZEM1qkep7so1_400\",\n    \"question\": \"what was the little boy holding?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48163\",\n    \"key\": \"28951\",\n    \"description\": \"a little boy was holding a yellow and white cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_neb1kotniS1tbscvbo1_250\",\n    \"question\": \"where does the group move to the music.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA42465\",\n    \"key\": \"81480\",\n    \"description\": \"a group in a car moves to the music.\"\n  },\n  {\n    \"video_name\": \"tumblr_nav1lbS9PX1tifzdso1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38382\",\n    \"key\": \"85716\",\n    \"description\": \"a man in a black shirt is looking up with his mouth open.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs3d4Hye11tb92v8o1_400\",\n    \"question\": \"how many musicians are moving to the beat in unison?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6038\",\n    \"key\": \"59364\",\n    \"description\": \"three musicians are moving to the beat in unison.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0ykvjZDz1s74pxto1_400\",\n    \"question\": \"how many men are talking and raising their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45414\",\n    \"key\": \"74274\",\n    \"description\": \"two men are talking and raising their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfiklnpmXO1u1axtzo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42119\",\n    \"key\": \"9046\",\n    \"description\": \"a young man in a white shirt and chain necklace is putting on a black jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnpjvXW4x1sp70bgo1_250\",\n    \"question\": \"what is the color of the dance?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42230\",\n    \"key\": \"7403\",\n    \"description\": \"someone has a hand to the throat of a woman wearing a black dance who appears to be dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne6d928mgq1sayp7jo1_250\",\n    \"question\": \"what is man driving with a passenger?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12770\",\n    \"key\": \"80077\",\n    \"description\": \"man is driving a vehicle with a passenger.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmvfrXqDL1tzhdnfo1_400\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6944\",\n    \"key\": \"66381\",\n    \"description\": \"a man tackles fights fought a dummy in a fencing outfit white outfit.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndy7ccfmXN1rfibsxo1_400\",\n    \"question\": \"what is rolling towards the teddy bear and then the teddy bear explodes?\",\n    \"answer\": \"grenade\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26096\",\n    \"key\": \"62905\",\n    \"description\": \"a grenade is rolling towards a teddy bear and then the teddy bear explodes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmprtryRm1s013u0o2_r1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2857\",\n    \"key\": \"55145\",\n    \"description\": \"a girl with curly black hair and wearing a blue top is dancing before a yellow background.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdhumxlMs1sxvd87o1_250\",\n    \"question\": \"what is the color of the bear?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13804\",\n    \"key\": \"27329\",\n    \"description\": \"a big brown bear is waving back at someone!\"\n  },\n  {\n    \"video_name\": \"tumblr_ng03s2BcRY1u25ovvo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29637\",\n    \"key\": \"63607\",\n    \"description\": \"a yellow car is being driven down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr076Dwdg1u09s33o1_500\",\n    \"question\": \"how many other men dance with him?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44816\",\n    \"key\": \"60275\",\n    \"description\": \"one man is singing,\"\n  },\n  {\n    \"video_name\": \"tumblr_nr6qo41QuT1r2ersdo1_500\",\n    \"question\": \"what is walking forward?\",\n    \"answer\": \"makeup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19516\",\n    \"key\": \"39355\",\n    \"description\": \"a man wearing makeup is walking forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9powlIXXD1tiu45ao1_400\",\n    \"question\": \"what is the color of the face?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA18804\",\n    \"key\": \"29851\",\n    \"description\": \"a woman with a green face,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne28pi81sm1twibc7o1_500\",\n    \"question\": \"how many people are holding hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10139\",\n    \"key\": \"85312\",\n    \"description\": \"two people are holding hands and then they let go.\"\n  },\n  {\n    \"video_name\": \"tumblr_na49k0ki2b1rm1cb3o1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14361\",\n    \"key\": \"84836\",\n    \"description\": \"this is a girl that is dressed in black being interviewed by another girl that is dressed in black.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zr3gkrqU1skvr8io1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26045\",\n    \"key\": \"96980\",\n    \"description\": \"a guy with short hair wears a jean jacket and walks down a neighborhood street behind a girl in a white dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9u7zLotE1u014wxo1_500\",\n    \"question\": \"what is the person wearing and looking ahead?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46944\",\n    \"key\": \"90809\",\n    \"description\": \"the person is wearing a coat and looking ahead.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7mt8Xm4z1tkeyq7o1_250\",\n    \"question\": \"what is the color of the picks?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6938\",\n    \"key\": \"76150\",\n    \"description\": \"lady dressed in black picks up object and holds it over her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdeeniOGl1s06j30o1_400\",\n    \"question\": \"what did the red bull sponsor through a mud puddle?\",\n    \"answer\": \"drives\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39814\",\n    \"key\": \"57148\",\n    \"description\": \"a red bull sponsored car drives through a mud puddle.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97ntjwFce1qaeqj9o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51320\",\n    \"key\": \"43796\",\n    \"description\": \"a woman with brown hair is laughing at the guy wearing a black shirt with an egg in his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndgbaqmjlx1sn2bh3o1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37334\",\n    \"key\": \"76201\",\n    \"description\": \"a woman in a black hat is shaking her shoulders.\"\n  },\n  {\n    \"video_name\": \"tumblr_noese0qKy21qipc57o1_500\",\n    \"question\": \"what does the woman open to a man holding pizzas?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7813\",\n    \"key\": \"60419\",\n    \"description\": \"a woman opens a door to a man holding pizzas.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7xhpFqh11rcr8lfo1_400\",\n    \"question\": \"how many men are talking face to face?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15042\",\n    \"key\": \"79005\",\n    \"description\": \"two men are talking face to face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqhxb8p5dg1qifjvuo1_250\",\n    \"question\": \"what is making the sign with his hand?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47323\",\n    \"key\": \"42684\",\n    \"description\": \"a guy wearing hat is making a sign with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh89o8FeCP1u6fg3no1_500\",\n    \"question\": \"what was the girl with blonde hair playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26345\",\n    \"key\": \"61501\",\n    \"description\": \"a girl with blonde hair was playing a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndtha3ANlJ1tqurn0o1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA29953\",\n    \"key\": \"9893\",\n    \"description\": \"a black woman is sitting at a desk while playing with her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvhq250Md1rt1dljo1_400\",\n    \"question\": \"what exploded in front of a man 's face?\",\n    \"answer\": \"device\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34106\",\n    \"key\": \"28503\",\n    \"description\": \"the device exploded in front of a man 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nonrseS1vL1sjsqcyo1_500\",\n    \"question\": \"how many women are next to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16717\",\n    \"key\": \"85830\",\n    \"description\": \"two women are next to each other,\"\n  },\n  {\n    \"video_name\": \"tumblr_np97noimRj1swewioo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22489\",\n    \"key\": \"43615\",\n    \"description\": \"a woman with long brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nco7huA9Kl1tqcnjko1_250\",\n    \"question\": \"where is the girl with the green shorts hula hooping.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20483\",\n    \"key\": \"767\",\n    \"description\": \"the girl with the green shorts is hula hooping in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb80spNot51tdmffyo1_400\",\n    \"question\": \"what pushes the tortoise into a bin?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27105\",\n    \"key\": \"22894\",\n    \"description\": \"a bird pushes a tortoise into a bin.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdmedUpvr1tyncywo1_400\",\n    \"question\": \"what is the cat swatting?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35317\",\n    \"key\": \"25608\",\n    \"description\": \"a cat is swatting a dog as it sits in someone 's lap.\"\n  },\n  {\n    \"video_name\": \"tumblr_nklld32jOh1qg5lg0o1_250\",\n    \"question\": \"how many men are slowly opening the door and peering in?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7599\",\n    \"key\": \"53712\",\n    \"description\": \"two men are slowly opening a door and peering in.\"\n  },\n  {\n    \"video_name\": \"tumblr_nefe46IPQf1tjiaa2o1_400\",\n    \"question\": \"what does the man hand to another man while on stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23901\",\n    \"key\": \"33997\",\n    \"description\": \"a man hands a guitar to another man while on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9gfntPgEK1rj8yzto2_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32506\",\n    \"key\": \"6028\",\n    \"description\": \"a white man with a microphone shakes his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6g39be3f1trv4w5o1_400\",\n    \"question\": \"how many boys pose for the photo and one of them embracing a motley?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28082\",\n    \"key\": \"48560\",\n    \"description\": \"two boys pose for a photo and one of them embracing a motley.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2uu3uHFS1ss66xxo1_250\",\n    \"question\": \"what is the white boy with short hair wearing?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41666\",\n    \"key\": \"12981\",\n    \"description\": \"a white boy with short hair is wearing a jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nak0l8OX8X1tatohao1_400\",\n    \"question\": \"what is licking on the man 's ear?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4848\",\n    \"key\": \"58438\",\n    \"description\": \"a horse is licking on a man 's ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7yy71XkD1tkpzw0o1_250\",\n    \"question\": \"what is the man throwing down a well and making a wish?\",\n    \"answer\": \"coin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32146\",\n    \"key\": \"24105\",\n    \"description\": \"a man is throwing a coin down a well and making a wish.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh777pWSdg1r9qdkno1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50887\",\n    \"key\": \"41257\",\n    \"description\": \"a girl in a white hat is eating food without using her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng46uo55Mx1slj978o1_400\",\n    \"question\": \"what are walking along the ice and one slips and falls?\",\n    \"answer\": \"penguins\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36649\",\n    \"key\": \"50029\",\n    \"description\": \"two penguins walking along the ice and one slips and falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbvwsxpdLi1r8kl44o1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13473\",\n    \"key\": \"65957\",\n    \"description\": \"a soccer player wearing a white uniform,\"\n  },\n  {\n    \"video_name\": \"tumblr_no00ddSlG31t34v14o1_250\",\n    \"question\": \"how many wrestler hits the other wrestler?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5180\",\n    \"key\": \"81154\",\n    \"description\": \"one wrestler hits the other wrestler and he falls down.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvf297g0o1ts4ov3o1_400\",\n    \"question\": \"how many people are covering their mouths and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9350\",\n    \"key\": \"33373\",\n    \"description\": \"two people are covering their mouths and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_npzxj9c0Ne1r0vgovo1_500\",\n    \"question\": \"what is the girl opening to a boy who is smiling at her?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16449\",\n    \"key\": \"97445\",\n    \"description\": \"a girl is opening a door to a boy who is smiling at her.\"\n  },\n  {\n    \"video_name\": \"tumblr_niud9uxv741tm4s86o1_500\",\n    \"question\": \"what is the man jumping up and smoke is forming?\",\n    \"answer\": \"wall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32115\",\n    \"key\": \"87224\",\n    \"description\": \"a man is jumping up a wall and smoke is forming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhkpbYVJn1sbqayyo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10476\",\n    \"key\": \"6728\",\n    \"description\": \"a man wearing a black shirt is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_na85llG7VQ1rht9qto1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21650\",\n    \"key\": \"33742\",\n    \"description\": \"a blonde girl in a black shirt is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzl9clEBn1slj978o1_400\",\n    \"question\": \"what is sniffing the mouse standing in front of a cup?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35405\",\n    \"key\": \"28180\",\n    \"description\": \"a kitten is sniffing a mouse standing in front of a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_naymij4o491rnas60o1_250\",\n    \"question\": \"where is the woman dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27081\",\n    \"key\": \"1334\",\n    \"description\": \"a woman is dancing in her room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8n38zP5b1unhekuo1_400\",\n    \"question\": \"how many men sang inside of the car?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36772\",\n    \"key\": \"66354\",\n    \"description\": \"two men sang inside of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhamj8SXDA1u6f7t5o1_400\",\n    \"question\": \"what is the black man lighting and smoking it?\",\n    \"answer\": \"cigar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22050\",\n    \"key\": \"65602\",\n    \"description\": \"a black man is lighting a cigar and smoking it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmeocfPzsS1u2z3v8o1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41082\",\n    \"key\": \"5476\",\n    \"description\": \"a man in a white sweater is arm wrestling with another person.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng6783M04i1sqox3co1_250\",\n    \"question\": \"what does the girl run at another from the corner of the ring and her?\",\n    \"answer\": \"clothes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19566\",\n    \"key\": \"49468\",\n    \"description\": \"a girl runs at another from the corner of the ring and clothes lines her.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkg5leY4e21sof15vo1_500\",\n    \"question\": \"how many girls on a stage sing into microphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52856\",\n    \"key\": \"21834\",\n    \"description\": \"two girls on a stage sing into microphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu43fKXYn1sj961qo1_r1_250\",\n    \"question\": \"what is the color of the cup?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49469\",\n    \"key\": \"17723\",\n    \"description\": \"a woman is dancing with a red cup in her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq63u1ULnD1tfeni1o1_400\",\n    \"question\": \"what is the man jumping onto a concrete wall?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30029\",\n    \"key\": \"35631\",\n    \"description\": \"a man is jumping his skateboard onto a concrete wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngrowlLTYj1tmddexo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49206\",\n    \"key\": \"22045\",\n    \"description\": \"a woman is wearing a white shirt and dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbllxdSjxi1tfeeomo1_500\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27304\",\n    \"key\": \"50525\",\n    \"description\": \"a boy is putting on a black t-shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgyd6uGf41rw1wnno1_500\",\n    \"question\": \"what is kneading the child 's face?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17906\",\n    \"key\": \"33187\",\n    \"description\": \"the cat is kneading the child 's face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojudwiLpl1qedx60o1_540\",\n    \"question\": \"what are seven young men wearing and posing for a photo?\",\n    \"answer\": \"suits\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41696\",\n    \"key\": \"91615\",\n    \"description\": \"seven young men are wearing suits and posing for a photo.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbqjl1RA4r1t0jqwno1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1508\",\n    \"key\": \"11526\",\n    \"description\": \"a woman in red dress is smiling at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_naaje9jDs91tc3enzo1_500\",\n    \"question\": \"how many people are running on the beach behind the lifeguard stand?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38949\",\n    \"key\": \"94879\",\n    \"description\": \"five people are running on the beach behind the lifeguard stand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pqysKgXz1sy7yfqo1_400\",\n    \"question\": \"what is freely running around by itself?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34308\",\n    \"key\": \"64680\",\n    \"description\": \"a brown horse is freely running around by itself.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndkajbX6dP1tx8mn0o1_400\",\n    \"question\": \"how many racing cars almost collide as one cuts in front of the other on the race track?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34830\",\n    \"key\": \"78352\",\n    \"description\": \"two racing cars almost collide as one cuts in front of the other on the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhhykaSB4y1tmnf3co1_500\",\n    \"question\": \"how many man is kissing another man and laughing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA53007\",\n    \"key\": \"92610\",\n    \"description\": \"one man is kissing another man and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk1rp38Pq1uyssdqo1_540\",\n    \"question\": \"what runs down the hallway and then lays down?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19163\",\n    \"key\": \"10262\",\n    \"description\": \"a white cat runs down a hallway and then lays down.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdeeniOGl1s06j30o1_400\",\n    \"question\": \"what runs the windshield wipers while driving through a giant puddle?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21915\",\n    \"key\": \"57148\",\n    \"description\": \"a car runs the windshield wipers while driving through a giant puddle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabjgnLs1w1si703wo1_400\",\n    \"question\": \"where is the woman wearing glasses is lying.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA35069\",\n    \"key\": \"33375\",\n    \"description\": \"a woman wearing glasses is lying in bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fxbgYr0K1rvpycko1_250\",\n    \"question\": \"how many young men are sitting by the lake,\",\n    \"answer\": \"toasting each other with their liquor bottles ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20955\",\n    \"key\": \"53726\",\n    \"description\": \"two young men are sitting by a lake,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngpb6q9to71u0vqe1o1_400\",\n    \"question\": \"what is the young woman holding and looking confused?\",\n    \"answer\": \"lollipop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7985\",\n    \"key\": \"34769\",\n    \"description\": \"a young woman is holding a lollipop and looking confused.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng64tsv1cY1tg5lq8o1_250\",\n    \"question\": \"how many people have their heads close together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44312\",\n    \"key\": \"23017\",\n    \"description\": \"two people have their heads close together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n937oboEIc1swmz50o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11103\",\n    \"key\": \"86499\",\n    \"description\": \"a person with short black hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz5bgkqTO1tkalc5o1_250\",\n    \"question\": \"what is the woman with red hair wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23671\",\n    \"key\": \"2024\",\n    \"description\": \"a woman with red hair is wearing a red hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wbyaTXBZ1t4mpk7o1_400\",\n    \"question\": \"what is the person in black playing?\",\n    \"answer\": \"saxophone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2362\",\n    \"key\": \"35386\",\n    \"description\": \"a person in black is playing the saxophone.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw9h4RH6m1uo484qo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8776\",\n    \"key\": \"90916\",\n    \"description\": \"a woman lies on her back in a white dress and sings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbet5v1L6J1tkpzw0o1_250\",\n    \"question\": \"what are attacking the boy?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6523\",\n    \"key\": \"18230\",\n    \"description\": \"the black dogs are attacking a boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngp8af5yyC1t2bqsgo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37555\",\n    \"key\": \"81010\",\n    \"description\": \"a boy wearing a blue hat pats his hands on a table.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9emuzqIhv1sk96t7o1_400\",\n    \"question\": \"what is running away from the snake?\",\n    \"answer\": \"rat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51906\",\n    \"key\": \"42486\",\n    \"description\": \"a white rat is running away from a snake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoojl8aeM1s2tn5no1_400\",\n    \"question\": \"what is the man holding and singing into it?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4467\",\n    \"key\": \"66258\",\n    \"description\": \"a man is holding a microphone and singing into it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl0ukbRIlb1tz9jaqo1_250\",\n    \"question\": \"what is the man wearing a soccer uniform head butts into the goal?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22606\",\n    \"key\": \"10757\",\n    \"description\": \"A man wearing a soccer uniform head butts the ball into the goal.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn2z78qvl1t0ojyvo1_500\",\n    \"question\": \"how many boy slaps another boy in the chest?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12087\",\n    \"key\": \"89276\",\n    \"description\": \"one boy slaps another boy in the chest.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qllagP7E1rv22ito1_500\",\n    \"question\": \"how many people does the man forcefully separate about to kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15560\",\n    \"key\": \"97627\",\n    \"description\": \"a man forcefully separates two people about to kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_npvtmj2g4g1tptu5lo1_500\",\n    \"question\": \"how many men are wearing swimming glasses and headphones?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41680\",\n    \"key\": \"58618\",\n    \"description\": \"two men are wearing swimming glasses and headphones.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhoo6n51Ff1qml5iuo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31467\",\n    \"key\": \"29569\",\n    \"description\": \"a girl in a blue shirt is acting playfully with a glare.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbacxLA971soueoko1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16787\",\n    \"key\": \"36058\",\n    \"description\": \"a black man shook his head and bit his lip.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9b7fuvZcB1thc5tio1_250\",\n    \"question\": \"how many girls are kissing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35935\",\n    \"key\": \"45636\",\n    \"description\": \"two girls are kissing and one is crying.\"\n  },\n  {\n    \"video_name\": \"tumblr_na00hxaoq01so8ipho1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48252\",\n    \"key\": \"79541\",\n    \"description\": \"a teenager in a white shirt sips a purple drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndnmc06P9U1tjig0uo1_400\",\n    \"question\": \"how many player kicks the soccer ball into the goal?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6891\",\n    \"key\": \"60509\",\n    \"description\": \"soccer players are playing on a field,\"\n  },\n  {\n    \"video_name\": \"tumblr_neu7ebvIhc1s6fotdo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11155\",\n    \"key\": \"27116\",\n    \"description\": \"a man in a gray shirt smiles and laughs.\"\n  },\n  {\n    \"video_name\": \"tumblr_na07x1hrbL1ti3y6yo1_400\",\n    \"question\": \"where is the hamster moving around.\",\n    \"answer\": \"? cage\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31316\",\n    \"key\": \"25005\",\n    \"description\": \"a hamster is moving around in his cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkaonzuJHF1t90xflo1_500\",\n    \"question\": \"what is the woman dropping?\",\n    \"answer\": \"wrap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26699\",\n    \"key\": \"89868\",\n    \"description\": \"the woman is dropping her wrap as she turns.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmz3n9aYMe1rxmp17o1_500\",\n    \"question\": \"what are two man taking off?\",\n    \"answer\": \"capes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41034\",\n    \"key\": \"97109\",\n    \"description\": \"two man are taking off their dark capes to show their body.\"\n  },\n  {\n    \"video_name\": \"tumblr_na0lvzNzJJ1s7vtgpo1_400\",\n    \"question\": \"what does the man play while swaying from side to side?\",\n    \"answer\": \"ukulele\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32201\",\n    \"key\": \"1745\",\n    \"description\": \"a man plays a ukulele while swaying from side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacm0uIlWl1tqmuxfo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40477\",\n    \"key\": \"71258\",\n    \"description\": \"a girl with black hair is hiding from something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacqaixw0M1r2atcqo1_500\",\n    \"question\": \"how many woman are warming up to play soccer?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11757\",\n    \"key\": \"55027\",\n    \"description\": \"two woman are warming up to play soccer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbc69z0qM1sju7t3o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43446\",\n    \"key\": \"64576\",\n    \"description\": \"a man in a black shirt is dancing on the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne44f8BnGg1qhmhclo1_500\",\n    \"question\": \"how many people in a car hit a person moving toward them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44569\",\n    \"key\": \"97777\",\n    \"description\": \"two people in a car hit a person moving toward them.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w0s850qY1ttzauho1_500\",\n    \"question\": \"what is it a soccer match and a player kicks to the air?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7512\",\n    \"key\": \"100693\",\n    \"description\": \"it is a soccer match and a player kicks the ball to the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x3efkZCT1sjz75oo1_250\",\n    \"question\": \"what is the man in the black hat walking up?\",\n    \"answer\": \"stairs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22051\",\n    \"key\": \"437\",\n    \"description\": \"a man in the black hat is walking up the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pixfadpG1sv37tvo1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45056\",\n    \"key\": \"3866\",\n    \"description\": \"a bare chested man is putting on a black sweater.\"\n  },\n  {\n    \"video_name\": \"tumblr_nge4z8vSOF1rtdyjko1_250\",\n    \"question\": \"how many people are standing by each other and moving around?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24248\",\n    \"key\": \"25567\",\n    \"description\": \"two people are standing by each other and moving around.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sh1pn4ju1sgl6u3o1_250\",\n    \"question\": \"how many men are dancing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38919\",\n    \"key\": \"17230\",\n    \"description\": \"three men are dancing and one is singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhh11uNa5j1tngqkyo1_250\",\n    \"question\": \"what does the man play?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12258\",\n    \"key\": \"8192\",\n    \"description\": \"a man plays his guitar as another man plays the drums with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbd7vubGi41r27fbxo1_250\",\n    \"question\": \"what is the girl wearing and barely smiling?\",\n    \"answer\": \"lipstick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50866\",\n    \"key\": \"4851\",\n    \"description\": \"a girl is wearing red lipstick and barely smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndukt6eGH91qkglbyo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2208\",\n    \"key\": \"32463\",\n    \"description\": \"a girl with long brown hair makes a hand gesture.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98dcyLaEN1qbgpp5o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4035\",\n    \"key\": \"11286\",\n    \"description\": \"young man in black jacket holds up his right thumb.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9vr4CKps1qli0myo1_500\",\n    \"question\": \"how many boys are looking surprised at something?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13716\",\n    \"key\": \"99930\",\n    \"description\": \"three boys are looking surprised at something.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9yquiyMK91r6oiiao1_400\",\n    \"question\": \"how many guys with a haircut fashion is talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47456\",\n    \"key\": \"101018\",\n    \"description\": \"Two guys with a haircut fashion is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_naap6eJLbo1t2bkpqo1_500\",\n    \"question\": \"how many guys are in the room filled with flasks?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6757\",\n    \"key\": \"93485\",\n    \"description\": \"five guys are in a room filled with flasks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2di8qIFd1uwadjto1_400\",\n    \"question\": \"how many men are sparring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1326\",\n    \"key\": \"24199\",\n    \"description\": \"two men are sparring and one goes through a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_na25kynLSX1qmkpfbo1_250\",\n    \"question\": \"where is the young man shaking his hips.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41891\",\n    \"key\": \"44064\",\n    \"description\": \"a young man is shaking his hips in a well lit room.\"\n  },\n  {\n    \"video_name\": \"tumblr_neygedcDOt1tkhxdko1_400\",\n    \"question\": \"what does the cat nudge?\",\n    \"answer\": \"lizard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39484\",\n    \"key\": \"46613\",\n    \"description\": \"a cat nudges a lizard who then stops eating.\"\n  },\n  {\n    \"video_name\": \"tumblr_nct6fkK6O11tk0p0po1_400\",\n    \"question\": \"what did the scantily dress on the couch while drinking a beer?\",\n    \"answer\": \"lounges\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32281\",\n    \"key\": \"31741\",\n    \"description\": \"the scantily dressed woman lounges on the couch while drinking a beer.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndvqyftJPT1th9cdzo1_500\",\n    \"question\": \"how many girl with black hair are singing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23425\",\n    \"key\": \"96290\",\n    \"description\": \"two girl with black hair are singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk43srE90O1t7ej2to1_250\",\n    \"question\": \"what is the woman checking?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6016\",\n    \"key\": \"13739\",\n    \"description\": \"a woman is checking her phone as her two friends watch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngp0grlaqL1rgs9f3o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21965\",\n    \"key\": \"88060\",\n    \"description\": \"a woman with black hair is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbl18fV1iz1tjqkt0o1_400\",\n    \"question\": \"what is flickering in the mosaic glass holder?\",\n    \"answer\": \"candle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22045\",\n    \"key\": \"64938\",\n    \"description\": \"a candle is flickering in a mosaic glass holder.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndcfe5F1iy1s2t7gvo1_500\",\n    \"question\": \"how many man removes his coat as they walk down a hall?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38362\",\n    \"key\": \"88875\",\n    \"description\": \"one man removes his coat as they walk down a hall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhw0okMoCW1tx8mn0o1_400\",\n    \"question\": \"what is the person riding through the dirt?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32907\",\n    \"key\": \"77744\",\n    \"description\": \"a person is riding a dirt bike through the dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne02dp4Y5i1tuz9pno1_400\",\n    \"question\": \"where does the fight take place and a woman sets off a fire extinguisher.\",\n    \"answer\": \"? bar\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA20103\",\n    \"key\": \"65686\",\n    \"description\": \"a fight takes place in a bar and a woman sets off a fire extinguisher.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkuw52JAhg1upc7leo1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45528\",\n    \"key\": \"55571\",\n    \"description\": \"a woman wearing a white top,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxes8zoYk1rulxe0o1_400\",\n    \"question\": \"what goes to sit down and falls over?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26089\",\n    \"key\": \"71466\",\n    \"description\": \"a cat goes to sit down and falls over.\"\n  },\n  {\n    \"video_name\": \"tumblr_na18cqVtG31sd26g0o1_500\",\n    \"question\": \"what is trying to mate with the female frog and she 's fighting him off?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8951\",\n    \"key\": \"53182\",\n    \"description\": \"the male frog is trying to mate with the female frog and she 's fighting him off.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvm6qf9dA1u18i2zo1_250\",\n    \"question\": \"how many men are hugging at the meeting?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16501\",\n    \"key\": \"47964\",\n    \"description\": \"three men are hugging at a meeting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7zasAnGK1qa0ndwo1_500\",\n    \"question\": \"what does the man place over a puddle for the woman next to him?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7938\",\n    \"key\": \"49196\",\n    \"description\": \"a man places his coat over a puddle for the woman next to him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2t08LZcs1s9578so1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43410\",\n    \"key\": \"5047\",\n    \"description\": \"a male wearing a red jacket is kissing another male with black hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8qfwdVfrP1s47mwso1_250\",\n    \"question\": \"what is the man holding,\",\n    \"answer\": \"? scissors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29962\",\n    \"key\": \"19276\",\n    \"description\": \"a man is holding large purple scissors,\"\n  },\n  {\n    \"video_name\": \"tumblr_nd49l9MJyE1sgbn05o1_500\",\n    \"question\": \"where does the girl make a dance-move with her hands on her face.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA50528\",\n    \"key\": \"87711\",\n    \"description\": \"a girl in a chair makes a dance-move with her hands on her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nco7huA9Kl1tqcnjko1_250\",\n    \"question\": \"what is the woman in green shorts twirling?\",\n    \"answer\": \"hoop\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39335\",\n    \"key\": \"767\",\n    \"description\": \"a woman in green shorts is twirling a hula hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfwko4ck431u4v3ypo1_400\",\n    \"question\": \"what is the color of the kitten?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34957\",\n    \"key\": \"72642\",\n    \"description\": \"someone is unzipping a lunchbox with a black kitten inside it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf5gnsUemd1td8h7mo1_250\",\n    \"question\": \"what does the man lift to his lips?\",\n    \"answer\": \"glass\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23403\",\n    \"key\": \"7705\",\n    \"description\": \"a man lifts his wine glass to his lips.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u37yY8T21s3att3o1_400\",\n    \"question\": \"what is hatching out of an egg?\",\n    \"answer\": \"snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26467\",\n    \"key\": \"40003\",\n    \"description\": \"a snake is hatching out of an egg.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd7c8krpsM1siujfwo1_400\",\n    \"question\": \"how many groups of people are all dancing together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18483\",\n    \"key\": \"41214\",\n    \"description\": \"three groups of people are all dancing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90hbjy8yN1soofmlo1_250\",\n    \"question\": \"how many young men are sitting around when one starts making a funny face?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA36678\",\n    \"key\": \"43871\",\n    \"description\": \"three young men are sitting around when one starts making a funny face and another starts wiping at his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrlgwkAmGV1qb1u6io1_250\",\n    \"question\": \"how many men are singing on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45\",\n    \"key\": \"27294\",\n    \"description\": \"two men are singing on stage,\"\n  },\n  {\n    \"video_name\": \"tumblr_njwxkwMrDk1si8uq7o1_400\",\n    \"question\": \"what is the bearded man wearing a shirt and tie puts into his mouth?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18876\",\n    \"key\": \"28593\",\n    \"description\": \"a bearded man wearing a shirt and tie puts a cigarette into his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbthmbg6ta1tih2xyo1_250\",\n    \"question\": \"where is the boy holding a white object and looking at it.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA49463\",\n    \"key\": \"12156\",\n    \"description\": \"a boy in a swimming pool is holding a white object and looking at it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncn6fbUX131t5lviko1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16142\",\n    \"key\": \"49614\",\n    \"description\": \"a guy wearing a white jacket is pushing a woman to the side and behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdocwg2Mg1rx8ys3o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6748\",\n    \"key\": \"53301\",\n    \"description\": \"a young man in a black jacket is singing and giving a sign with his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nist56EAVk1r412ako1_250\",\n    \"question\": \"what is this a man with long hair and wearing while holding a drink?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17857\",\n    \"key\": \"2686\",\n    \"description\": \"this is a man with long hair and wearing a baseball cap while holding a drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq36cclrEn1uvp3zyo1_500\",\n    \"question\": \"where is the woman adjusting her clothing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA47428\",\n    \"key\": \"34462\",\n    \"description\": \"a woman in a red room is adjusting her clothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ov6dJ2rK1sj2opgo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3781\",\n    \"key\": \"15836\",\n    \"description\": \"the man in the red shirt is motioning with his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncc75dOsqo1tk5ovoo1_400\",\n    \"question\": \"what is the color of the headset?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20032\",\n    \"key\": \"30828\",\n    \"description\": \"a boy with blonde hair takes off his yellow headset and says some words.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8y7flGO81sgg5k5o1_500\",\n    \"question\": \"what is the man playing while smiling?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9247\",\n    \"key\": \"50950\",\n    \"description\": \"a man is playing the drums while smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkm1e1fJVT1r8ici8o1_500\",\n    \"question\": \"how many people all look at each other seriously?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43579\",\n    \"key\": \"100860\",\n    \"description\": \"three people all look at each other seriously.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvz1zHlqY1slj978o1_250\",\n    \"question\": \"what is the color of the bird?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22989\",\n    \"key\": \"27919\",\n    \"description\": \"a black bird stacks up colored rings on a pin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzqaupSSA1u96zdso1_500\",\n    \"question\": \"what is the color of the play?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27782\",\n    \"key\": \"70130\",\n    \"description\": \"one man in black play 's ukulele and sings into a microphone while another dances.\"\n  },\n  {\n    \"video_name\": \"tumblr_no0ai4eJlH1t0q9vwo1_500\",\n    \"question\": \"how many people is this image of rapping?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10002\",\n    \"key\": \"62821\",\n    \"description\": \"this image is of two people rapping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhdr3clKDa1sntw1mo1_400\",\n    \"question\": \"what is making faces and having fun?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42437\",\n    \"key\": \"39810\",\n    \"description\": \"the dog is making faces and having fun.\"\n  },\n  {\n    \"video_name\": \"tumblr_neot4s0EBL1s2ls31o1_400\",\n    \"question\": \"what flapped its fins in water?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15543\",\n    \"key\": \"32047\",\n    \"description\": \"a fish flapped its fins in water.\"\n  },\n  {\n    \"video_name\": \"tumblr_n4weqhDYCU1tqrkr5o1_250\",\n    \"question\": \"what is the guy facing and then glancing over his shoulder?\",\n    \"answer\": \"wall\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51325\",\n    \"key\": \"51771\",\n    \"description\": \"a guy is facing the wall and then glancing over his shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_na1tbz3mD61slj978o1_400\",\n    \"question\": \"what does the dog in a dress bark and scratches and a dog in a suit growls?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6977\",\n    \"key\": \"28588\",\n    \"description\": \"a dog in a dress barks and scratches a door and a dog in a suit growls.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8s0xxT2ig1ssgyoro1_400\",\n    \"question\": \"what is the color of the ball?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46090\",\n    \"key\": \"56060\",\n    \"description\": \"a dog drops a yellow ball and then chases it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgpm5lJMK1r4iwc5o1_250\",\n    \"question\": \"what displays multiple cards in different colors?\",\n    \"answer\": \"rack\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20952\",\n    \"key\": \"4958\",\n    \"description\": \"a greeting card rack displays multiple cards in different colors.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbplrtZnS81tbjfazo1_400\",\n    \"question\": \"what is swimming around the black box?\",\n    \"answer\": \"shark\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13873\",\n    \"key\": \"41760\",\n    \"description\": \"a small shark is swimming around a black box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafbe4YHCY1tyuwrso1_500\",\n    \"question\": \"how many young men dance towards each other and laugh?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34223\",\n    \"key\": \"101490\",\n    \"description\": \"two young men dance towards each other and laugh.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4o38uibi1sw33zno1_400\",\n    \"question\": \"what does the man throw at a cup?\",\n    \"answer\": \"frisbee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13132\",\n    \"key\": \"64774\",\n    \"description\": \"a man throws a blue frisbee at a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4u6hTLLc1ssgyoro1_250\",\n    \"question\": \"what does the sitting woman almost spit out?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28341\",\n    \"key\": \"8096\",\n    \"description\": \"a sitting woman almost spits out her drink.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3wo9RJe91tkhxdko1_250\",\n    \"question\": \"what is changing her look up?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47724\",\n    \"key\": \"68397\",\n    \"description\": \"a green cat is changing her look up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkxskmh3h1rlakuxo1_500\",\n    \"question\": \"how many men are practicing boxing in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31518\",\n    \"key\": \"95997\",\n    \"description\": \"two men are practicing boxing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4yggPaMS1u3sw0yo1_500\",\n    \"question\": \"where is the man sitting and flipping his hair.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8785\",\n    \"key\": \"84891\",\n    \"description\": \"a man is sitting in a chair and flipping his hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lv4b2SW11s4eig5o1_250\",\n    \"question\": \"what does the man throw up into the air?\",\n    \"answer\": \"flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16858\",\n    \"key\": \"5238\",\n    \"description\": \"a man throws flowers up into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_n98dru4Wpw1rog90no1_500\",\n    \"question\": \"what is the color of the stares?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21961\",\n    \"key\": \"86311\",\n    \"description\": \"a boy wearing black with white hare stares on while two figures sit behind him at a table with two bottles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4tczdT6l1r82feqo1_500\",\n    \"question\": \"what is the guy playing with a fierceness?\",\n    \"answer\": \"violin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19637\",\n    \"key\": \"40213\",\n    \"description\": \"a guy is playing the violin with a fierceness.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtfbt9KZI1s71nvbo1_400\",\n    \"question\": \"what are playing on kids toys on cement?\",\n    \"answer\": \"dogs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28737\",\n    \"key\": \"15351\",\n    \"description\": \"two dogs are playing on kids toys on cement.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkmkwlAgg1u14m77o1_500\",\n    \"question\": \"where are two girls working.\",\n    \"answer\": \"? lab\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13198\",\n    \"key\": \"44518\",\n    \"description\": \"two girls are working in a science lab.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e5a6pCuR1ti0qhqo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44682\",\n    \"key\": \"32475\",\n    \"description\": \"a man wearing a white shirt is singing and waving his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf7ugiCrSM1spy81co1_250\",\n    \"question\": \"what did the pretty blond make with her wine glass?\",\n    \"answer\": \"toast\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23184\",\n    \"key\": \"9876\",\n    \"description\": \"a pretty blond made a toast with her wine glass.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkluev7MYG1u5t34ho1_400\",\n    \"question\": \"how many people are standing head-to-head?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33440\",\n    \"key\": \"13477\",\n    \"description\": \"two people are standing head-to-head and the woman does a peace sign hand gesture.\"\n  },\n  {\n    \"video_name\": \"tumblr_nab2tmk7fx1sk26zho1_500\",\n    \"question\": \"how many girls are holding hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18954\",\n    \"key\": \"30255\",\n    \"description\": \"two girls are holding hands,\"\n  },\n  {\n    \"video_name\": \"tumblr_n9nfflcHiD1sib7jco1_250\",\n    \"question\": \"what is moving its legs but not walking?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28768\",\n    \"key\": \"7707\",\n    \"description\": \"a bird is moving its legs but not walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbx8q1KV9e1rwdmvno1_500\",\n    \"question\": \"how many flowers is the man turning around and smelling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23164\",\n    \"key\": \"26083\",\n    \"description\": \"a man is turning around and smelling two flowers.\"\n  },\n  {\n    \"video_name\": \"tumblr_npcdwhVFY01t3gqalo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10812\",\n    \"key\": \"21964\",\n    \"description\": \"a black woman is singing while moving back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nba8fj99IL1swsvnfo1_400\",\n    \"question\": \"what stalks some bananas,\",\n    \"answer\": \"then jumps in the air and runs away ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2281\",\n    \"key\": \"41749\",\n    \"description\": \"a cat stalks some bananas,\"\n  },\n  {\n    \"video_name\": \"tumblr_nb9dmhTaWM1slwrsuo1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48952\",\n    \"key\": \"76757\",\n    \"description\": \"a man in a blue t-shirt is trying to open a bottle but ca n't.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam1c5I1j61tdjuqvo1_400\",\n    \"question\": \"what hits the car and the rider lands on the roof?\",\n    \"answer\": \"motorcycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35684\",\n    \"key\": \"46061\",\n    \"description\": \"the motorcycle hits a car and the rider lands on the roof.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2c3vlefi1u888u5o1_500\",\n    \"question\": \"how many men are wrestling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7789\",\n    \"key\": \"83194\",\n    \"description\": \"two men are wrestling and one pins the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6u5hYl8H1u6njy9o1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30658\",\n    \"key\": \"71491\",\n    \"description\": \"a girl in a black dress was dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3ataD6lI1sa0lndo1_500\",\n    \"question\": \"how many guys just stare at each other fiercely?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17618\",\n    \"key\": \"76533\",\n    \"description\": \"two guys just stare at each other fiercely.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyy7b3e731tt9zxqo1_500\",\n    \"question\": \"where is the guy with the dark hair sitting.\",\n    \"answer\": \"? bedroom\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36516\",\n    \"key\": \"73229\",\n    \"description\": \"the guy with the dark hair is sitting in his bedroom.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1jgl7aMz1slj978o1_400\",\n    \"question\": \"what tried to hunt the mosquito and failed?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3295\",\n    \"key\": \"95139\",\n    \"description\": \"frog tried to hunt a mosquito and failed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbu0bmRkFb1tya5iuo1_500\",\n    \"question\": \"what is doing the burnout?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45039\",\n    \"key\": \"71634\",\n    \"description\": \"a yellow sports type car is doing a burnout.\"\n  },\n  {\n    \"video_name\": \"tumblr_npm2glII031uxko4yo1_1280\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22651\",\n    \"key\": \"89976\",\n    \"description\": \"a boy with brown hair holds out a piece of pizza and says something.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbjmk2ImAm1sa6fwjo1_400\",\n    \"question\": \"how many eye does the guy have his eyes closed then opens?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34262\",\n    \"key\": \"65833\",\n    \"description\": \"a guy has his eyes closed then opens one eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd93viKo511shv03qo1_r6_400\",\n    \"question\": \"what is the girl moving in her room?\",\n    \"answer\": \"butt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16614\",\n    \"key\": \"11371\",\n    \"description\": \"a girl is moving her butt in her room.\"\n  },\n  {\n    \"video_name\": \"tumblr_na29ckRUG81tso4bpo1_250\",\n    \"question\": \"what is chasing its tail in a circle?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19900\",\n    \"key\": \"11168\",\n    \"description\": \"a dog is chasing its tail in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng0ykvjZDz1s74pxto1_400\",\n    \"question\": \"how many guys are throwing up peace signs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48330\",\n    \"key\": \"74274\",\n    \"description\": \"these 2 guys are throwing up peace signs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknqcxnNVf1upqb0po1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA3275\",\n    \"key\": \"31885\",\n    \"description\": \"the boy in the white shirt is making faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qyart36C1rkbsnzo1_250\",\n    \"question\": \"where are two people driving fast down a winding road with helmets.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3246\",\n    \"key\": \"45347\",\n    \"description\": \"two people are in a car driving fast down a winding road with helmets on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokpkycdga1r2buvvo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14258\",\n    \"key\": \"3855\",\n    \"description\": \"man with white shirt is breaking up two woman fighting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhchptHDxG1slj978o1_250\",\n    \"question\": \"how many cats are running to eat something after somebody opens the door?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29008\",\n    \"key\": \"3857\",\n    \"description\": \"three cats are running to eat something after somebody opens the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvxqpS1CV1ta0gdro1_400\",\n    \"question\": \"how many guys is doing funny expressions around a crowd?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA14819\",\n    \"key\": \"69312\",\n    \"description\": \"two guys is doing funny expressions around a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyr2emPxA1ti6gxco1_500\",\n    \"question\": \"what is wearing red is taking of the horrified mask?\",\n    \"answer\": \"man\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31478\",\n    \"key\": \"8116\",\n    \"description\": \"an asia man wearing red is taking of the horrified mask.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz4nsWbsd1tddirao1_250\",\n    \"question\": \"how many girls are joking and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1533\",\n    \"key\": \"46249\",\n    \"description\": \"the two girls are joking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbapxep1ZI1sk3b6wo1_r1_500\",\n    \"question\": \"where does the man sit comfortably as he ponders.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13547\",\n    \"key\": \"87916\",\n    \"description\": \"a man sits comfortably in a large chair as he ponders.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr4hkbp8Nd1u6qd8so1_250\",\n    \"question\": \"what does the woman throw into a tree?\",\n    \"answer\": \"wolf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21662\",\n    \"key\": \"45718\",\n    \"description\": \"a woman throws a wolf into a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_nag50gxnPI1tdjuqvo1_250\",\n    \"question\": \"what is taking the group of bananas?\",\n    \"answer\": \"elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3493\",\n    \"key\": \"24769\",\n    \"description\": \"a baby elephant is taking a group of bananas.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8sopfHH201tbn1tto1_400\",\n    \"question\": \"what is jumping into the yellow bag?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26302\",\n    \"key\": \"68160\",\n    \"description\": \"a cat is jumping into a yellow bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxiwtAC4Q1u7itf7o1_500\",\n    \"question\": \"how many men in a car are trying to evade the police car?\",\n    \"answer\": \"five\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24853\",\n    \"key\": \"96891\",\n    \"description\": \"five men in a car are trying to evade the police car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne3tqh85vZ1tz3e8yo1_400\",\n    \"question\": \"how many people give each other a hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40795\",\n    \"key\": \"1928\",\n    \"description\": \"two people give each other a hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd9ii12sYt1tx8mn0o1_400\",\n    \"question\": \"what is racing on the track and turns the corner?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10121\",\n    \"key\": \"66589\",\n    \"description\": \"a car is racing on a track and turns the corner.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngv9m5pOMl1slj978o1_400\",\n    \"question\": \"what is chasing another cat down the hallway?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2516\",\n    \"key\": \"37576\",\n    \"description\": \"a cat is chasing another cat down the hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8v9ubRZEM1qkep7so1_400\",\n    \"question\": \"what is the person petting?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19889\",\n    \"key\": \"28951\",\n    \"description\": \"a person is petting an orange and white cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8s1tUL2H1trp7kao1_500\",\n    \"question\": \"how many people with long messy hair are playing guitar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18971\",\n    \"key\": \"26600\",\n    \"description\": \"two people with long messy hair are playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q8iiFAka1toq16fo1_400\",\n    \"question\": \"how many young girls make hand gestures and pull faces?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37457\",\n    \"key\": \"28578\",\n    \"description\": \"two young girls make hand gestures and pull faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngui6owoeN1qfv7h2o1_500\",\n    \"question\": \"what is the man with beard adjusting?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41470\",\n    \"key\": \"89798\",\n    \"description\": \"a man with beard is adjusting his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkpy8bEjVA1upunxgo1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34349\",\n    \"key\": \"32819\",\n    \"description\": \"a little kid in a red sweater jumps around a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k8rtwwg11srx5iro1_400\",\n    \"question\": \"what is the color of the pill?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25187\",\n    \"key\": \"32740\",\n    \"description\": \"a girl has a blue pill that she throws in the air and catches in her mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacgnkjiPg1thrruso1_500\",\n    \"question\": \"what is being poured into the cup of liquid?\",\n    \"answer\": \"coffee\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31699\",\n    \"key\": \"46224\",\n    \"description\": \"coffee is being poured into a cup of liquid.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkchxtDx51tb1f6ao1_400\",\n    \"question\": \"how many people are kissing in the ninety degree angle?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22551\",\n    \"key\": \"34124\",\n    \"description\": \"two people are kissing in a ninety degree angle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkho2cfywd1qkfui5o1_400\",\n    \"question\": \"what is the color of the microphone?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32541\",\n    \"key\": \"52918\",\n    \"description\": \"a woman sings while holding a yellow microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5d4u8cos1r7gr8so1_400\",\n    \"question\": \"what does the guy with a tattooed arm play?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36709\",\n    \"key\": \"51974\",\n    \"description\": \"a guy with a tattooed arm plays a white guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzqaupSSA1u96zdso1_500\",\n    \"question\": \"how many people are playing instruments together in a room?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA38496\",\n    \"key\": \"70130\",\n    \"description\": \"two people are playing instruments together in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxjabeSW11t2s1j1o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37772\",\n    \"key\": \"100016\",\n    \"description\": \"a man wearing a white shirt and black gloves shows his fist.\"\n  },\n  {\n    \"video_name\": \"tumblr_na32wo3UE01r6x1a5o1_500\",\n    \"question\": \"what flip over on the side of the road?\",\n    \"answer\": \"bicycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18616\",\n    \"key\": \"46207\",\n    \"description\": \"two bikes flip over on the side of the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_na780qy6mR1thnh5po1_400\",\n    \"question\": \"what is the man putting into the trunk of a car?\",\n    \"answer\": \"camel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37719\",\n    \"key\": \"45795\",\n    \"description\": \"a man is putting a camel into the trunk of a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncr8j0oYR81r44co8o1_250\",\n    \"question\": \"how many men are speaking into microphones near some beer?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16108\",\n    \"key\": \"47782\",\n    \"description\": \"two men are speaking into microphones near some beer.\"\n  },\n  {\n    \"video_name\": \"tumblr_neozsacZoD1r31wzpo1_500\",\n    \"question\": \"what is driving around and around in the circle?\",\n    \"answer\": \"bicycle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35302\",\n    \"key\": \"56833\",\n    \"description\": \"a dirt bike is driving around and around in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrzdxnmrz1tgetb4o1_250\",\n    \"question\": \"what does the guy kick a dog and then hits him in the crotch with a rake?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6608\",\n    \"key\": \"39882\",\n    \"description\": \"a guy kicks a dog and then the dog hits him in the crotch with a rake.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkag9eNN351unbz69o1_500\",\n    \"question\": \"how many women are standing together and holding hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51606\",\n    \"key\": \"91050\",\n    \"description\": \"two women are standing together and holding hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96c6j5Wb11sqwk8ko1_250\",\n    \"question\": \"where is the man walking.\",\n    \"answer\": \"? corridor\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA1352\",\n    \"key\": \"8319\",\n    \"description\": \"a man is walking slowly in a corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkri3vybCq1tnv2gbo1_400\",\n    \"question\": \"how many women are eating?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39467\",\n    \"key\": \"57775\",\n    \"description\": \"two women are eating and one looks up and waves.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncwtrlgXnQ1rjz4byo1_400\",\n    \"question\": \"where is the woman with glasses on spinning.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38387\",\n    \"key\": \"29191\",\n    \"description\": \"a woman with glasses on is spinning in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9seliTsj1rigtemo1_500\",\n    \"question\": \"where is the man wearing a black shirt is dancing.\",\n    \"answer\": \"? garden\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA39214\",\n    \"key\": \"57607\",\n    \"description\": \"a man wearing a black shirt is dancing in a garden.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9sg42dUuU1s1s2gyo1_500\",\n    \"question\": \"what falls to the ground wit ha reflection of a girl in the background?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31950\",\n    \"key\": \"100227\",\n    \"description\": \"a gun falls to the ground wit ha reflection of a girl in the background.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncb3i7WXVb1tlwdnpo1_250\",\n    \"question\": \"what is the seated man wearing a black top is pulling over his eyes?\",\n    \"answer\": \"beanie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34445\",\n    \"key\": \"23592\",\n    \"description\": \"a seated man wearing a black top is pulling his beanie over his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzszrgVPB1shch57o1_250\",\n    \"question\": \"what are dancing in silly costumes?\",\n    \"answer\": \"stars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46471\",\n    \"key\": \"41369\",\n    \"description\": \"pop stars are dancing in silly costumes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxjfc4PEW1qe0t1to1_1280\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20662\",\n    \"key\": \"56583\",\n    \"description\": \"the guy in the blue shirt is talking on the phone and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96x96RDMq1tp3pcko1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27095\",\n    \"key\": \"14441\",\n    \"description\": \"a boy wearing a blue shirt turns his head and blinks his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy6ugZvKl1rzkug6o2_400\",\n    \"question\": \"what is the color of the jumper?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4854\",\n    \"key\": \"29266\",\n    \"description\": \"a woman wearing a red jumper with black hair is thinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbe5908NiN1re0mxqo1_400\",\n    \"question\": \"how many males are standing in leather jackets?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43112\",\n    \"key\": \"13562\",\n    \"description\": \"three males are standing in leather jackets.\"\n  },\n  {\n    \"video_name\": \"tumblr_nen2gpqUlI1tx8mn0o1_400\",\n    \"question\": \"what are several race cars racing down a track and loses its back end?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17108\",\n    \"key\": \"55482\",\n    \"description\": \"several race cars are racing down a track and the blue car loses its back end.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngite8IUNJ1r5uqe5o1_500\",\n    \"question\": \"where is the cat playing around.\",\n    \"answer\": \"? box\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29725\",\n    \"key\": \"83208\",\n    \"description\": \"a cat is playing around in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkrtbhCLK1rutleno1_400\",\n    \"question\": \"what is the man spinning?\",\n    \"answer\": \"round\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4888\",\n    \"key\": \"9471\",\n    \"description\": \"a man is spinning a woman round after which she lifts her dress.\"\n  },\n  {\n    \"video_name\": \"tumblr_nesu4nuPbX1tzd5txo1_500\",\n    \"question\": \"what are running and their manes are blowing?\",\n    \"answer\": \"horses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9113\",\n    \"key\": \"97005\",\n    \"description\": \"two young black horses are running and their manes are blowing.\"\n  },\n  {\n    \"video_name\": \"tumblr_niv97maKxN1tapxt5o1_400\",\n    \"question\": \"where is the guy sitting and talking.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17997\",\n    \"key\": \"58280\",\n    \"description\": \"a guy is sitting in a red chair and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhub4qN8TV1r37y87o1_500\",\n    \"question\": \"how many people start kissing while another woman holding a glowing bottle?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44439\",\n    \"key\": \"61932\",\n    \"description\": \"two people start kissing while another woman holding a glowing bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngivb5dOC61rwf2xmo1_500\",\n    \"question\": \"what is the couple,\",\n    \"answer\": \"wearing , is hugging in the hallway ? coats\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46600\",\n    \"key\": \"89034\",\n    \"description\": \"the couple,\"\n  },\n  {\n    \"video_name\": \"tumblr_ne739nzddN1t2prlto1_400\",\n    \"question\": \"what does the girl with a hat pull around her head?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21530\",\n    \"key\": \"88985\",\n    \"description\": \"a girl with a hat pulls her hat around her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc5q7jKFWT1rf50qno1_500\",\n    \"question\": \"how many boys are lined up singing together?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44035\",\n    \"key\": \"98018\",\n    \"description\": \"three boys are lined up singing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkqyrrDHMf1upvohzo1_400\",\n    \"question\": \"how many people are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25951\",\n    \"key\": \"69802\",\n    \"description\": \"two people are dancing and one of them is shaking his head side to side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1py0cFid1sorauco1_500\",\n    \"question\": \"how many makes faces?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA11279\",\n    \"key\": \"79780\",\n    \"description\": \"two guys are together and one makes faces.\"\n  },\n  {\n    \"video_name\": \"tumblr_nekk97G6bF1rodbc8o1_250\",\n    \"question\": \"what is the color of the scene?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25578\",\n    \"key\": \"15961\",\n    \"description\": \"a couple in a black in white scene are kissing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ziy4WYm21t29pn7o1_250\",\n    \"question\": \"what is the boy playing to an audience?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14619\",\n    \"key\": \"2306\",\n    \"description\": \"a boy is playing guitar to an audience.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqpemb0oal1tj3r8so1_400\",\n    \"question\": \"what is broken by the yellow car?\",\n    \"answer\": \"balloon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8757\",\n    \"key\": \"40151\",\n    \"description\": \"a pink balloon is broken by a yellow car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgg52CJon1t3ypcjo1_400\",\n    \"question\": \"what is the young man wearing a backwards ball cap is playing?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1498\",\n    \"key\": \"30750\",\n    \"description\": \"a young man wearing a backwards ball cap is playing guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoy0prMQF1uos4s7o2_250\",\n    \"question\": \"what does the woman on the couch grab?\",\n    \"answer\": \"container\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36328\",\n    \"key\": \"17742\",\n    \"description\": \"a woman on the couch grabs a popcorn container.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbl7tkJrBN1tw8vf9o1_250\",\n    \"question\": \"how many woman does there 's doing one legged push ups?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24286\",\n    \"key\": \"27502\",\n    \"description\": \"there 's one woman doing one legged push ups.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd564udcM31thydgho1_400\",\n    \"question\": \"what does the person in a space suit drift off?\",\n    \"answer\": \"spaceship\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8914\",\n    \"key\": \"35050\",\n    \"description\": \"a person in a space suit drifts off a spaceship.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbt26IRlT1rwp7r4o1_500\",\n    \"question\": \"where is the couple very happy to be.\",\n    \"answer\": \"? lobby\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30667\",\n    \"key\": \"92020\",\n    \"description\": \"a couple is very happy to be together in the lobby.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni0wm1MHqZ1s6zpepo1_250\",\n    \"question\": \"how many people place the man in a baby crib?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10724\",\n    \"key\": \"51836\",\n    \"description\": \"two people place a man in a baby crib.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdib2bbIb1s4zvpgo1_250\",\n    \"question\": \"what sits on his perch and plays with a ball attached to a string below him?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12192\",\n    \"key\": \"76388\",\n    \"description\": \"a black cat sits on his perch and plays with a ball attached to a string below him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nijrydrPVc1rtzdq7o1_400\",\n    \"question\": \"what tries to get the treat off of the table but the brown dog gets it instead?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19279\",\n    \"key\": \"94791\",\n    \"description\": \"a white puppy tries to get a treat off of the table but the brown dog gets it instead.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ynh2Hx361qfyx3mo1_400\",\n    \"question\": \"how many guys are waving their hands after opening the door?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17387\",\n    \"key\": \"35241\",\n    \"description\": \"two guys are waving their hands after opening the door.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92olkleN71tf2rjmo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37154\",\n    \"key\": \"46198\",\n    \"description\": \"a cartoon character is watching a lady with brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nek6cxGGAm1u1y32mo1_400\",\n    \"question\": \"how many wrestlers are fighting each other here?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40711\",\n    \"key\": \"9715\",\n    \"description\": \"two wrestlers are fighting each other here.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2vwvezaq1tia8tjo1_400\",\n    \"question\": \"what is the man drinking?\",\n    \"answer\": \"bottle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6108\",\n    \"key\": \"87098\",\n    \"description\": \"the man is drinking a huge water bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfg9btxKYw1u41f5eo1_400\",\n    \"question\": \"how many guy is talking while the other guy moves his head?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28344\",\n    \"key\": \"56637\",\n    \"description\": \"one guy is talking while the other guy moves his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndxcge7SrF1t0ojyvo1_500\",\n    \"question\": \"how many boys dressed in white shirts and holding mics?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5789\",\n    \"key\": \"50672\",\n    \"description\": \"three boys dressed in white shirts and holding mics.\"\n  },\n  {\n    \"video_name\": \"tumblr_nezfs4uELd1u1a7cmo1_250\",\n    \"question\": \"what is the very fit male?\",\n    \"answer\": \"underwear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35003\",\n    \"key\": \"52\",\n    \"description\": \"a very fit male is modeling underwear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbymug4lI1tjxr89o1_400\",\n    \"question\": \"what is spinning in circles?\",\n    \"answer\": \"vehicle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41582\",\n    \"key\": \"69634\",\n    \"description\": \"the army vehicle is spinning in circles.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4ukt1AIR1r7zltao1_400\",\n    \"question\": \"how many women are dancing together at the wedding?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2924\",\n    \"key\": \"58770\",\n    \"description\": \"two women are dancing together at a wedding.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrj8tiIIWd1tkhxdko1_400\",\n    \"question\": \"what is kicking its hind legs while seated on its owner 's legs?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13729\",\n    \"key\": \"22505\",\n    \"description\": \"a cat is kicking its hind legs while seated on its owner 's legs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nckn34k0481tp4h5xo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32462\",\n    \"key\": \"59461\",\n    \"description\": \"a man in a black shirt and teal hair is talking with another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngl13o76hU1tgzsvro1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23568\",\n    \"key\": \"36610\",\n    \"description\": \"a man wearing a black shirt does a dance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh39e5Eyfh1u5quhyo1_400\",\n    \"question\": \"what walks up to skis and skis his way down a slope?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46276\",\n    \"key\": \"14890\",\n    \"description\": \"a dog walks up to skis and skis his way down a slope.\"\n  },\n  {\n    \"video_name\": \"tumblr_niwmiuolPN1tud7j4o1_500\",\n    \"question\": \"what is the woman floating into the air?\",\n    \"answer\": \"scarf\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27601\",\n    \"key\": \"98837\",\n    \"description\": \"a woman is floating a black scarf into the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjdvaRfWy1u3rflco1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30733\",\n    \"key\": \"88889\",\n    \"description\": \"a girl with black hair is moving her shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2mzb98AK1tkpzw0o1_400\",\n    \"question\": \"what is painting the picture with their mouth?\",\n    \"answer\": \"dolphin\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16270\",\n    \"key\": \"21285\",\n    \"description\": \"the dolphin is painting a picture with their mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_neddm7VXxe1u2b0jwo1_400\",\n    \"question\": \"what is dragging itself on the floor?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18768\",\n    \"key\": \"80932\",\n    \"description\": \"a kitten is dragging itself on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xa4psLDY1sb7v5lo1_500\",\n    \"question\": \"what is walking through an open space?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10149\",\n    \"key\": \"70371\",\n    \"description\": \"a horse is walking through an open space.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner8sk0RNA1tlxkplo1_250\",\n    \"question\": \"what is the color of the clothing?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22842\",\n    \"key\": \"9580\",\n    \"description\": \"a young girl wearing orange clothing with a microphone is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9289pJnza1rklnc5o1_500\",\n    \"question\": \"what is the color of the plant?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52201\",\n    \"key\": \"97780\",\n    \"description\": \"a girl with blonde hair is moving in poses near a green plant.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fl1v6DiP1rn8lhxo1_500\",\n    \"question\": \"what is the color of the dancing?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41795\",\n    \"key\": \"95276\",\n    \"description\": \"this image is of a man in white dancing onstage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndrgtqo6ED1thbq0zo1_400\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15173\",\n    \"key\": \"7377\",\n    \"description\": \"this is a black boy saying something to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdmedUpvr1tyncywo1_400\",\n    \"question\": \"what is attacking the dog FRAMEQAeatedly until the dog reacts?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2869\",\n    \"key\": \"25608\",\n    \"description\": \"a cat is attacking a dog FRAMEQAeatedly until the dog reacts.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacr8iiHHd1tjztg6o1_400\",\n    \"question\": \"what is driven along the road and through a puddle?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38299\",\n    \"key\": \"46433\",\n    \"description\": \"a car is driven along a road and through a puddle.\"\n  },\n  {\n    \"video_name\": \"tumblr_njwusmBucB1sk96t7o1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45329\",\n    \"key\": \"36073\",\n    \"description\": \"a small girl cuts her hair with scissors and gives it to a bald boy who gives her his red hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfi5pz1OK01twoivuo1_250\",\n    \"question\": \"what are two men dancing and then falling off?\",\n    \"answer\": \"balcony\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39269\",\n    \"key\": \"417\",\n    \"description\": \"two men are dancing and then falling off a balcony.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghoreH0Je1slplvno1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37297\",\n    \"key\": \"76291\",\n    \"description\": \"a man with brown hair and a beard is sitting still.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtpdn8oHz1s0w3iqo1_400\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49902\",\n    \"key\": \"57885\",\n    \"description\": \"a strong man is driving a black car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbgjlsgNfd1skvcujo1_500\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14130\",\n    \"key\": \"95762\",\n    \"description\": \"two men wearing white shirts are arguing.\"\n  },\n  {\n    \"video_name\": \"tumblr_np3fv0Iucb1sxj25eo1_500\",\n    \"question\": \"how many young men are laughing together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13464\",\n    \"key\": \"80507\",\n    \"description\": \"the two young men are laughing together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nppnpzGIMu1sgpl4mo1_400\",\n    \"question\": \"what is the man holding and singing in front of a crowd?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26251\",\n    \"key\": \"57260\",\n    \"description\": \"a man is holding a microphone and singing in front of a crowd.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbovp2qUqr1tiw4ggo1_500\",\n    \"question\": \"how many men are sitting in chairs while one talks into a microphone and raises his arm in the air?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40965\",\n    \"key\": \"99618\",\n    \"description\": \"three men are sitting in chairs while one talks into a microphone and raises his arm in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhc2tcH5zZ1s1a4hoo1_400\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10193\",\n    \"key\": \"83617\",\n    \"description\": \"the guy with the dark hair and blue eyes is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_no3b329iYX1us0z0zo1_400\",\n    \"question\": \"what is the color of the cap?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22350\",\n    \"key\": \"88994\",\n    \"description\": \"girl with a black cap is sitting on a sofa and smokes out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc6b6VY0h1tl72q2o1_500\",\n    \"question\": \"what is the young man wearing a tie is removing?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29296\",\n    \"key\": \"76805\",\n    \"description\": \"a young man wearing a tie is removing his jacket.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh01ubOfAY1slj978o1_400\",\n    \"question\": \"what is surprised by the laser light and tries to stamp on it?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45606\",\n    \"key\": \"38170\",\n    \"description\": \"a cat is surprised by a laser light and tries to stamp on it.\"\n  },\n  {\n    \"video_name\": \"tumblr_na9bk7YdxS1swtjjuo1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43676\",\n    \"key\": \"54836\",\n    \"description\": \"a red car is driving down the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97ow9Scv41thj3xko1_250\",\n    \"question\": \"how many men are laughing outside and creating many shadows?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34143\",\n    \"key\": \"2346\",\n    \"description\": \"two men are laughing outside and creating many shadows.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzs5oG4kT1tkvhb9o1_500\",\n    \"question\": \"how many people are wrestling in the ring?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29851\",\n    \"key\": \"95880\",\n    \"description\": \"two people are wrestling in a ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngwbl1n70M1u5ha1qo1_400\",\n    \"question\": \"where is the man with dark hair laying.\",\n    \"answer\": \"? boat\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11679\",\n    \"key\": \"63012\",\n    \"description\": \"a man with dark hair is laying in a boat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqj7ahVNOh1uvie7bo1_400\",\n    \"question\": \"what is placed on the dog 's head while it is in the bath?\",\n    \"answer\": \"duck\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40280\",\n    \"key\": \"32783\",\n    \"description\": \"a rubber duck is placed on a dog 's head while it is in the bath.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wkpeXC991re6qqko1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50524\",\n    \"key\": \"88635\",\n    \"description\": \"two persons are talking while a black woman is turn her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_npzronrVMY1u66yx8o1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48867\",\n    \"key\": \"22800\",\n    \"description\": \"a woman with long black hair and a short blue top is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_naoyfvnSx51r8lgn6o1_500\",\n    \"question\": \"what is the man walking along with his feet touching the walls?\",\n    \"answer\": \"corridor\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49503\",\n    \"key\": \"96569\",\n    \"description\": \"a man is walking along a corridor with his feet touching the walls.\"\n  },\n  {\n    \"video_name\": \"tumblr_njtxedpe7W1t7an45o1_250\",\n    \"question\": \"how many pandas are near the toy horse and one plays with it?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42203\",\n    \"key\": \"27296\",\n    \"description\": \"two pandas are near a toy horse and one plays with it.\"\n  },\n  {\n    \"video_name\": \"tumblr_neb1s6WZce1r3qv9to1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28332\",\n    \"key\": \"26257\",\n    \"description\": \"a robot in a red suit rips off his disguise.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxfvg7gBH1th1z7ro1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43837\",\n    \"key\": \"33558\",\n    \"description\": \"a man in a brown suit is dancing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n5dtds5SMm1twu18ko1_500\",\n    \"question\": \"how many formation-dancers dressed as ghosts swaying in sync?\",\n    \"answer\": \"eight\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52617\",\n    \"key\": \"44901\",\n    \"description\": \"eight formation-dancers dressed as ghosts swaying in sync.\"\n  },\n  {\n    \"video_name\": \"tumblr_nce30kjLYV1qfsrsoo1_500\",\n    \"question\": \"what is the color of the berries?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44727\",\n    \"key\": \"49170\",\n    \"description\": \"a young woman is eating small red berries.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgdlsdvel1u3ngjwo1_250\",\n    \"question\": \"what is the person wearing and walking?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1172\",\n    \"key\": \"51710\",\n    \"description\": \"the person is wearing a black jacket and walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepw693vsr1tk2ngvo1_400\",\n    \"question\": \"what lying down on the bed under the duvet and gets up?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9311\",\n    \"key\": \"55996\",\n    \"description\": \"a cat lying down on a bed under the duvet and gets up.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq2ljxqpt1sqatvxo1_250\",\n    \"question\": \"what opens and the hand grabs out money?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31868\",\n    \"key\": \"54229\",\n    \"description\": \"the door opens and a hand grabs out money.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxlgzOQSN1t0x7yto1_500\",\n    \"question\": \"what is driving down the track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12338\",\n    \"key\": \"61137\",\n    \"description\": \"a car is driving down a track.\"\n  },\n  {\n    \"video_name\": \"tumblr_npqo3gqPc91rtl9udo1_400\",\n    \"question\": \"how many young women are talking and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17840\",\n    \"key\": \"84980\",\n    \"description\": \"two young women are talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrk1jrdGhR1uakcnho1_500\",\n    \"question\": \"how many man in a trench coat looks at a man with a black coat?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA13347\",\n    \"key\": \"71562\",\n    \"description\": \"one man in a trench coat looks at a man with a black coat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nip8xkBjCk1u98gv1o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40158\",\n    \"key\": \"8166\",\n    \"description\": \"a man with long black hair licks his lips and stares at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_neuljufw9c1tj55h3o1_1280\",\n    \"question\": \"how many women are sitting down talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4665\",\n    \"key\": \"55884\",\n    \"description\": \"two women are sitting down talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqsvfl5Pzp1uw1tf9o1_250\",\n    \"question\": \"how many women is this sitting in chairs and smiling?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33495\",\n    \"key\": \"24221\",\n    \"description\": \"this is two women sitting in chairs and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfgq3rETof1r5n15ko1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20818\",\n    \"key\": \"35368\",\n    \"description\": \"a woman in black is biting her lower lip.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh05khMCWi1s71nvbo1_400\",\n    \"question\": \"what was trying to drive in water that was too high?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10474\",\n    \"key\": \"54609\",\n    \"description\": \"a car was trying to drive in water that was too high.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk6g39be3f1trv4w5o1_400\",\n    \"question\": \"what is the color of the doll?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51355\",\n    \"key\": \"48560\",\n    \"description\": \"two men stand beside a large,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhfwtoM2RQ1tos9avo1_400\",\n    \"question\": \"what does the big lipped girl pose?\",\n    \"answer\": \"ways\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33592\",\n    \"key\": \"44256\",\n    \"description\": \"a big lipped girl poses multiple ways.\"\n  },\n  {\n    \"video_name\": \"tumblr_nalxhkgg2y1rstjlro1_400\",\n    \"question\": \"what is the guy playing and another one is clapping his hands?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA45891\",\n    \"key\": \"39089\",\n    \"description\": \"a guy is playing the guitar and another one is clapping his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7fsb2EGT1tirmpjo1_500\",\n    \"question\": \"what is the young man lighting and then blowing?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49863\",\n    \"key\": \"36074\",\n    \"description\": \"a young man is lighting a cigarette and then blowing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncx2iyEeec1u0anq1o1_250\",\n    \"question\": \"what is the color of the pants?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46789\",\n    \"key\": \"3560\",\n    \"description\": \"a man in brown pants is dancing animatedly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbh3y0lqgx1tuj3bpo1_400\",\n    \"question\": \"what is the cat setting on the bathtub fence and pushed it to fall inside it?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42051\",\n    \"key\": \"34855\",\n    \"description\": \"a cat is setting on the bathtub fence and a dog pushed it to fall inside it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabnd0SUAv1tjbxaso1_400\",\n    \"question\": \"how many women are play fighting with another woman,\",\n    \"answer\": \"who they push to the ground ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51414\",\n    \"key\": \"28885\",\n    \"description\": \"two women are play fighting with another woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_noyfekqixM1sj7lv3o1_400\",\n    \"question\": \"what is an adult man riding?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30308\",\n    \"key\": \"33877\",\n    \"description\": \"an adult man is riding a toy air plane while other men are riding horses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbbj6piQ91qkplr2o1_250\",\n    \"question\": \"what is the color of the animal?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23109\",\n    \"key\": \"2118\",\n    \"description\": \"a small white furry animal eats a piece of plant.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkodyvmkCZ1u9f952o9_250\",\n    \"question\": \"what is the man in a black shirt giving a thumbs up and wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18194\",\n    \"key\": \"12301\",\n    \"description\": \"a man in a black shirt is giving a thumbs up and wearing a colorful hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrfr0pu7Vh1uamcaro1_500\",\n    \"question\": \"how many people are sitting near each other and on of them is playing with the other 's ear?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31671\",\n    \"key\": \"98535\",\n    \"description\": \"two people are sitting near each other and on of them is playing with the other 's ear.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncw0puR1xZ1tcqo19o1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33299\",\n    \"key\": \"49616\",\n    \"description\": \"a woman wearing a black jacket puts her hands together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfzezkvlY81tvch9xo1_500\",\n    \"question\": \"what does the man hold?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16106\",\n    \"key\": \"46229\",\n    \"description\": \"a man holds a puppy while a super hero looks on.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wwljwZk61sbh7xuo1_500\",\n    \"question\": \"where is the girl opening her mouth wide.\",\n    \"answer\": \"? stick\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA18676\",\n    \"key\": \"61117\",\n    \"description\": \"a girl in red lip stick is opening her mouth wide.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncvl3c8kSe1t7j74xo1_250\",\n    \"question\": \"what is throwing the fit over a strip of bacon being brought to it?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1732\",\n    \"key\": \"1449\",\n    \"description\": \"a small dog is throwing a fit over a strip of bacon being brought to it.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhimvmW0Rk1u68hnpo1_400\",\n    \"question\": \"what does the fat man open with his belly?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2056\",\n    \"key\": \"3331\",\n    \"description\": \"a fat man opens his shirt with his belly.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hvtzkimT1tirskjo1_400\",\n    \"question\": \"what is the young man wearing and nodding?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4796\",\n    \"key\": \"39158\",\n    \"description\": \"a young man is wearing a black hat and nodding.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjwd9zoNn1upsi9qo1_400\",\n    \"question\": \"how many men is this talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31389\",\n    \"key\": \"66967\",\n    \"description\": \"this is two men talking and one is rubbing his hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh97cpE0ME1u4v3ypo1_400\",\n    \"question\": \"what is batting some vegetables in a dish and one falls out?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46081\",\n    \"key\": \"7646\",\n    \"description\": \"a black cat is batting some vegetables in a dish and one falls out.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnw2qphCJA1uuh2j1o1_500\",\n    \"question\": \"what is driving on water starts to slide around?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10208\",\n    \"key\": \"67719\",\n    \"description\": \"a car driving on water starts to slide around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr394z8H8A1uzsb7xo1_500\",\n    \"question\": \"what is rubbing its face against a hairbrush?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6547\",\n    \"key\": \"69717\",\n    \"description\": \"a cat is rubbing its face against a hairbrush.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7d1hWDP01tzjhlno1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48493\",\n    \"key\": \"88503\",\n    \"description\": \"a brown haired woman is squirreling with someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr7b4nQYG31uzjb3wo1_500\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51328\",\n    \"key\": \"73475\",\n    \"description\": \"a young girl in black with long necklaces smiles and walks.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvt4xtqsW1u30he7o1_400\",\n    \"question\": \"how many men are talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA21436\",\n    \"key\": \"89355\",\n    \"description\": \"the two men are talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy3wfD2FB1tx8mn0o1_400\",\n    \"question\": \"what drives on the track and runs into the side of the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13696\",\n    \"key\": \"76947\",\n    \"description\": \"a car drives on a track and runs into the side of the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbyol8TrRL1tdh0pko1_250\",\n    \"question\": \"how many men wave and gesture with their hands and pretend to kiss?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34821\",\n    \"key\": \"40211\",\n    \"description\": \"two men wave and gesture with their hands and pretend to kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf4ylsG3bX1u0iufgo1_500\",\n    \"question\": \"what do the group of four men play together all at once?\",\n    \"answer\": \"guitars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24974\",\n    \"key\": \"76526\",\n    \"description\": \"a group of four men play guitars together all at once.\"\n  },\n  {\n    \"video_name\": \"tumblr_na4vq6k8dM1to5786o1_400\",\n    \"question\": \"how many men are handing off the mic to each other on a stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7839\",\n    \"key\": \"44926\",\n    \"description\": \"two men are handing off a mic to each other on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_na7g2pDrlo1tg1lcjo1_500\",\n    \"question\": \"what is the color of the background?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28615\",\n    \"key\": \"100681\",\n    \"description\": \"a woman holds her hair in front of a white background.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhi0akgRrS1tvv82eo1_400\",\n    \"question\": \"where are the people shopping.\",\n    \"answer\": \"? store\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33797\",\n    \"key\": \"42197\",\n    \"description\": \"the people are shopping in a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq27vij7191thx0k0o1_400\",\n    \"question\": \"what is the child with red shirt drawing?\",\n    \"answer\": \"pencil\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38703\",\n    \"key\": \"63903\",\n    \"description\": \"a child with red shirt is drawing a pencil.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd3brscPGy1tbiuqvo1_400\",\n    \"question\": \"what is the man holding smoking?\",\n    \"answer\": \"gun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51395\",\n    \"key\": \"73961\",\n    \"description\": \"a man is holding a smoking gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk2y5lgrQG1ssust7o1_540\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43833\",\n    \"key\": \"100824\",\n    \"description\": \"a woman with dark brown hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nfhfz9U1go1tghqjmo1_500\",\n    \"question\": \"what is the man?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40041\",\n    \"key\": \"87917\",\n    \"description\": \"a man is a blue shirt is talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncs76jEct01qcx5mpo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41113\",\n    \"key\": \"74649\",\n    \"description\": \"a girl with red hair and a tattoo looks over her shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc798b5n4Y1tju84uo1_500\",\n    \"question\": \"what is the young man in a white shirt taking off?\",\n    \"answer\": \"glasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA53074\",\n    \"key\": \"91289\",\n    \"description\": \"a young man in a white shirt is taking off his glasses.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqtw52djUW1ua09ibo1_250\",\n    \"question\": \"what is the pair of fingers squeezing something and are coming out?\",\n    \"answer\": \"worms\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24038\",\n    \"key\": \"22702\",\n    \"description\": \"a pair of fingers is squeezing something and worms are coming out.\"\n  },\n  {\n    \"video_name\": \"tumblr_njw2gle3ek1u8uroco1_400\",\n    \"question\": \"what is the person pulling out the ear?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36650\",\n    \"key\": \"68448\",\n    \"description\": \"a person is pulling out the ear a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrho0kbKHM1uzqrlco1_400\",\n    \"question\": \"what is the color of the ball?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13283\",\n    \"key\": \"41679\",\n    \"description\": \"a bunny throws a small orange ball into a mini basketball hoop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfbrosDwJL1s0lkcto1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8508\",\n    \"key\": \"14716\",\n    \"description\": \"a guy in a gray shirt is talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nelzmf2VB71u25ovvo1_400\",\n    \"question\": \"what is the white car driving down lined street?\",\n    \"answer\": \"tree\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22379\",\n    \"key\": \"63494\",\n    \"description\": \"a white car is driving down a tree lined street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6t8ixB6O1roo9cdo1_500\",\n    \"question\": \"what is the color of the toy?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24866\",\n    \"key\": \"55790\",\n    \"description\": \"the guy was holding the red toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne7rmaO5xm1tsxjano1_500\",\n    \"question\": \"what is the color of the turns?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43909\",\n    \"key\": \"73359\",\n    \"description\": \"a person dressed in black turns around on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w47i9QxS1rlw0gfo1_400\",\n    \"question\": \"how many people are talking and touching each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35913\",\n    \"key\": \"99904\",\n    \"description\": \"two people are talking and touching each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_noqj7pGE6R1uwqr4do1_250\",\n    \"question\": \"how many men are fighting each other on a couch?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28164\",\n    \"key\": \"14442\",\n    \"description\": \"two men are fighting each other on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_np6excSfZc1uuxd1yo1_500\",\n    \"question\": \"where does the man in a purple shirt walk.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA44839\",\n    \"key\": \"54545\",\n    \"description\": \"a man in a purple shirt walks in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njurnlAkQB1qat224o1_500\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44784\",\n    \"key\": \"59784\",\n    \"description\": \"a man in a white tank top is dancing with a group of people and kicking his leg up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nepw693vsr1tk2ngvo1_400\",\n    \"question\": \"what then gets up?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12278\",\n    \"key\": \"55996\",\n    \"description\": \"a dog is sleeping in a bed then gets up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nou7p2Dlys1s6xaz3o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31300\",\n    \"key\": \"98844\",\n    \"description\": \"this image is of a guy in a red shirt laying his head on a desk smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lhzfwMAi1tdiftmo1_r1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6534\",\n    \"key\": \"101381\",\n    \"description\": \"a person with short brown hair holds their fist over their mouth then points their finger.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh090gwkT11rtvu13o1_250\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4109\",\n    \"key\": \"4231\",\n    \"description\": \"a girl wearing a green scarf speaks with attitude.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncp4d5tmIX1rd7kgvo1_500\",\n    \"question\": \"what is the woman picking up and smelling?\",\n    \"answer\": \"flowers\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43257\",\n    \"key\": \"37853\",\n    \"description\": \"a woman is picking up and smelling flowers.\"\n  },\n  {\n    \"video_name\": \"tumblr_njoau5H0HV1s1ukk9o1_400\",\n    \"question\": \"what is using the leash to walk a dog?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25864\",\n    \"key\": \"81129\",\n    \"description\": \"a cat is using a leash to walk a dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfx7tgZGUP1rm1lhro1_500\",\n    \"question\": \"how many young males wear sunglasses while one does a peace sign with one hand?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33557\",\n    \"key\": \"101620\",\n    \"description\": \"three young males wear sunglasses while one does a peace sign with one hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qncqac351tgg8imo1_500\",\n    \"question\": \"what is the guy with spiked up hair is pulling away from him?\",\n    \"answer\": \"phone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48081\",\n    \"key\": \"69036\",\n    \"description\": \"a guy with spiked up hair is pulling his phone away from him.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbycrsfId1sggdd3o1_400\",\n    \"question\": \"what are two men playing on a huge pool table?\",\n    \"answer\": \"pool\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25307\",\n    \"key\": \"76625\",\n    \"description\": \"two men are playing pool on a huge pool table.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc422pq4Ug1t875gzo1_400\",\n    \"question\": \"how many men are kicking in the middle of a group of people dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45405\",\n    \"key\": \"64972\",\n    \"description\": \"two men are kicking in the middle of a group of people dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne1nzeAfmz1twl08yo1_400\",\n    \"question\": \"where is the man singing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA24455\",\n    \"key\": \"60290\",\n    \"description\": \"a man is singing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nri0fojp0G1tx8mn0o1_400\",\n    \"question\": \"what are going around the race track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16904\",\n    \"key\": \"55938\",\n    \"description\": \"two race cars are going around a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x3efkZCT1sjz75oo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41548\",\n    \"key\": \"437\",\n    \"description\": \"a man in the black hat is walking up the stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncko1cgtVl1rwkjivo1_400\",\n    \"question\": \"what is biting the cat and it turns and attacks another cat?\",\n    \"answer\": \"squirrel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA7747\",\n    \"key\": \"45420\",\n    \"description\": \"a squirrel is biting a cat and it turns and attacks another cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nin3ulmI0K1ropygmo1_400\",\n    \"question\": \"what is the woman playing and singing on stage?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA4488\",\n    \"key\": \"70404\",\n    \"description\": \"a woman is playing the guitar and singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9jrh32UiA1scv8s8o1_250\",\n    \"question\": \"how many young adults are clapping and jumping around in excitement?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29937\",\n    \"key\": \"33326\",\n    \"description\": \"three young adults are clapping and jumping around in excitement.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkjfb5vGh61ts7wbfo1_500\",\n    \"question\": \"what is the color of the scarf?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23916\",\n    \"key\": \"83664\",\n    \"description\": \"a man wearing a gray scarf slowly looks upwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr2di8qIFd1uwadjto1_400\",\n    \"question\": \"where does the man punch a man through a wall.\",\n    \"answer\": \"? gym\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22639\",\n    \"key\": \"24199\",\n    \"description\": \"a man in a gym punches a man through a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhqm4eBnny1qhxpzlo1_500\",\n    \"question\": \"how many team players congratulate each other with a hug?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51540\",\n    \"key\": \"67200\",\n    \"description\": \"two team players congratulate each other with a hug.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngost8GMhb1t5gkiuo1_250\",\n    \"question\": \"what does the young man with red hair slowly sip through a straw?\",\n    \"answer\": \"drink\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3769\",\n    \"key\": \"3059\",\n    \"description\": \"a young man with red hair slowly sips a drink through a straw.\"\n  },\n  {\n    \"video_name\": \"tumblr_njmuuaAUWZ1tqmfzto1_400\",\n    \"question\": \"what is the woman holding and talking to a man?\",\n    \"answer\": \"tablet\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41265\",\n    \"key\": \"37547\",\n    \"description\": \"a woman is holding a tablet and talking to a man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pixfadpG1sv37tvo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51971\",\n    \"key\": \"3866\",\n    \"description\": \"a guy is shown putting on a black shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgnrucLOa1r0ia88o1_400\",\n    \"question\": \"what does the blonde woman pick up a purse and then opens a door?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42104\",\n    \"key\": \"94553\",\n    \"description\": \"a blonde woman picks up a purse and coat then opens a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazdbcRYkw1tfffkuo1_400\",\n    \"question\": \"where are the white girl with glasses talking.\",\n    \"answer\": \"? pool\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA43684\",\n    \"key\": \"53846\",\n    \"description\": \"a white girl with glasses are talking in swimming pool.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8w9d5ZgH1r0vo80o1_250\",\n    \"question\": \"where is the girl with brown hair crying.\",\n    \"answer\": \"? hallway\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8764\",\n    \"key\": \"16016\",\n    \"description\": \"a girl with brown hair is crying in a long hallway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1vsdEVUb1sdbuhgo1_400\",\n    \"question\": \"what is the man wearing with a cigarette in his mouth leans forward?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20071\",\n    \"key\": \"45332\",\n    \"description\": \"a man is wearing a coat with a cigarette in his mouth leans forward.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmghgnOpL1r7btqdo1_400\",\n    \"question\": \"how many women exercise in from of the water?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19556\",\n    \"key\": \"44502\",\n    \"description\": \"four women exercise in from of the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nreudiOfno1tx8mn0o1_400\",\n    \"question\": \"what is coming out of the track with smoke?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31396\",\n    \"key\": \"78282\",\n    \"description\": \"a racing car is coming out of the track with smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92y7xvWoz1t62xtyo1_500\",\n    \"question\": \"what is pushing the tomato with its head?\",\n    \"answer\": \"turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36209\",\n    \"key\": \"34488\",\n    \"description\": \"a turtle is pushing a tomato with its head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngite8IUNJ1r5uqe5o1_500\",\n    \"question\": \"what is stretching and playing in the box?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2100\",\n    \"key\": \"83208\",\n    \"description\": \"the cat is stretching and playing in a box.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhu5ez5Nx21tdjuqvo1_400\",\n    \"question\": \"what is trying to jump on the couch?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9332\",\n    \"key\": \"18965\",\n    \"description\": \"a dog is trying to jump on the couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nebqt1mhTY1rdu9xmo1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36202\",\n    \"key\": \"1256\",\n    \"description\": \"the band members are all in white clothes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgh9qN2aw1s71nvbo1_400\",\n    \"question\": \"where is the man hitting a pushing people.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA17751\",\n    \"key\": \"57168\",\n    \"description\": \"a man is hitting a pushing people in a crowded room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ji43A1Rt1titlh5o1_250\",\n    \"question\": \"what is staring quietly at something unseen?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27023\",\n    \"key\": \"19769\",\n    \"description\": \"a brown dog is staring quietly at something unseen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrkai5chFn1uqslqko1_250\",\n    \"question\": \"what is the color of the blouse?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA27553\",\n    \"key\": \"16524\",\n    \"description\": \"a young woman with long black hair,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndlmycDsSK1tidcnvo1_400\",\n    \"question\": \"what walked forward with its head down?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39397\",\n    \"key\": \"63831\",\n    \"description\": \"a brown horse walked forward with its head down.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lnqa0TkE1rac9v2o1_400\",\n    \"question\": \"how many guys have started kissing and doing other stuff?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44310\",\n    \"key\": \"47875\",\n    \"description\": \"two guys have started kissing and doing other stuff.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbu0bmRkFb1tya5iuo1_500\",\n    \"question\": \"what is doing spins and the wheels are smoking?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39429\",\n    \"key\": \"71634\",\n    \"description\": \"a car is doing spins and the wheels are smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_new21rT4rK1t0w9oqo1_400\",\n    \"question\": \"how many boys are wearing jacket and ties and keep looking around to look at each other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42485\",\n    \"key\": \"31464\",\n    \"description\": \"three boys are wearing jacket and ties and keep looking around to look at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbdybmLWnP1rlpjp7o1_250\",\n    \"question\": \"what does the woman strum?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30403\",\n    \"key\": \"45669\",\n    \"description\": \"a woman strums a toy guitar while a little girl plays the xylophone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkaabSLxV1rzui38o1_400\",\n    \"question\": \"what is the color of the birds?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49841\",\n    \"key\": \"15437\",\n    \"description\": \"a woman in a black outfit with white birds flying around her rotates to the left.\"\n  },\n  {\n    \"video_name\": \"tumblr_naq0fyOyiC1rj38k8o1_400\",\n    \"question\": \"what hops and waves its paws in the air?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26106\",\n    \"key\": \"1318\",\n    \"description\": \"the dog hops and waves its paws in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_np67fnXaAj1tatohao1_400\",\n    \"question\": \"what is the color of the animal?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4960\",\n    \"key\": \"67730\",\n    \"description\": \"a man is kissing a brown animal and rubbing its belly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7jf8uKAM1qexz84o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13914\",\n    \"key\": \"32519\",\n    \"description\": \"a man in a green shirt is sticking out his tongue.\"\n  },\n  {\n    \"video_name\": \"tumblr_nat7piX07F1slj978o1_250\",\n    \"question\": \"what is walking on the bar above water?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14367\",\n    \"key\": \"16348\",\n    \"description\": \"a cat is walking on a bar above water.\"\n  },\n  {\n    \"video_name\": \"tumblr_noq334cIjl1uw7253o1_400\",\n    \"question\": \"what is the man saving from falling on the floor?\",\n    \"answer\": \"cake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31688\",\n    \"key\": \"85509\",\n    \"description\": \"a man is saving a cake from falling on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu62dEFNe1trp7kao1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1803\",\n    \"key\": \"80015\",\n    \"description\": \"a white girl with black hair is happy.\"\n  },\n  {\n    \"video_name\": \"tumblr_neqyaxfZfv1ry1ioco2_500\",\n    \"question\": \"what is the man slowly lifting to his mouth?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39887\",\n    \"key\": \"97316\",\n    \"description\": \"a man is slowly lifting a cigarette to his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndou4ocoom1qkh9mno1_500\",\n    \"question\": \"how many young people with black hair are laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15491\",\n    \"key\": \"89736\",\n    \"description\": \"three young people with black hair are laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1cdezKJt1t3jhfvo1_500\",\n    \"question\": \"how many guys are talking and laughing in the theater?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34038\",\n    \"key\": \"100401\",\n    \"description\": \"two guys are talking and laughing in a theater.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc149nM30B1sk96t7o1_400\",\n    \"question\": \"what does the guy open up and it shoots him in the eye?\",\n    \"answer\": \"cookie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23811\",\n    \"key\": \"31199\",\n    \"description\": \"a guy opens up a cookie and it shoots him in the eye.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4yp2N2Ce1tnmftbo1_250\",\n    \"question\": \"what is the man wearing and moving and talking?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1429\",\n    \"key\": \"6546\",\n    \"description\": \"a man is wearing a hat and moving and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nohtgpEG0y1uvl97qo1_500\",\n    \"question\": \"what rolls to the goal and the man fails to catch it?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12102\",\n    \"key\": \"91610\",\n    \"description\": \"a ball rolls to the goal and the man fails to catch it.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9h9yihZSR1twvbkxo1_400\",\n    \"question\": \"what is the color of the hood?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44275\",\n    \"key\": \"47725\",\n    \"description\": \"a performer is wearing a white hood and whispering to his partner on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2oh2bSvK1tkpzw0o1_400\",\n    \"question\": \"what is the color of the kitten?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28513\",\n    \"key\": \"25145\",\n    \"description\": \"a black kitten sitting on someones lap gets scared by a hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_npdhgdA8ez1sxvd87o1_400\",\n    \"question\": \"what plays with the tail of a larger cat,\",\n    \"answer\": \"who turns and causes the kitten to raise its paw ? kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44860\",\n    \"key\": \"43334\",\n    \"description\": \"a kitten plays with the tail of a larger cat,\"\n  },\n  {\n    \"video_name\": \"tumblr_nqeuudSoy11trx1hko1_250\",\n    \"question\": \"what is the young guy holding?\",\n    \"answer\": \"puppies\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28502\",\n    \"key\": \"3071\",\n    \"description\": \"a young guy is holding two little puppies.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbci2vFibY1st6smgo1_500\",\n    \"question\": \"how many girls are ballet dancing in red outfits?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47948\",\n    \"key\": \"73073\",\n    \"description\": \"two girls are ballet dancing in red outfits.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc1qnKRyZ1tvtr5do1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5190\",\n    \"key\": \"53196\",\n    \"description\": \"a man in a white hat is doing a flip onto the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndc106iim91rgb5tho1_250\",\n    \"question\": \"what is the man wearing and smoking a cigarette?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39781\",\n    \"key\": \"3308\",\n    \"description\": \"a man is wearing a suit and smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk4df7nAnU1txithmo1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17400\",\n    \"key\": \"60229\",\n    \"description\": \"a guy is standing on some stairs with a black shirt over his head nodding and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk77q2amba1unawq7o1_250\",\n    \"question\": \"how many girl pushes her hair back as she talks with another girl?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA33217\",\n    \"key\": \"15856\",\n    \"description\": \"one girl pushes her hair back as she talks with another girl.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbh9dqQku1sgrzwto1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33601\",\n    \"key\": \"63510\",\n    \"description\": \"the soccer player is wearing a yellow shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_n97xz6RSz21tgyx9vo1_400\",\n    \"question\": \"what does the man stand in front of a lake and jumps behind him and pushes him in?\",\n    \"answer\": \"kangaroo\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19505\",\n    \"key\": \"44697\",\n    \"description\": \"a man stands in front of a lake and a kangaroo jumps behind him and pushes him in.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9v07TxUL1sjcvc1o1_250\",\n    \"question\": \"what is the color of the cover?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA1374\",\n    \"key\": \"84536\",\n    \"description\": \"a beautiful man with short hair is breaking a white cover.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnsotwRNgh1tmavx8o1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24626\",\n    \"key\": \"1691\",\n    \"description\": \"a man is unbuttoning his red shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkmfankMEK1rf76tuo3_250\",\n    \"question\": \"how many people sit together at the table and do nothing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12426\",\n    \"key\": \"27616\",\n    \"description\": \"three people sit together at a table and do nothing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nac2esV6nf1tjc6a2o1_250\",\n    \"question\": \"where do two men walk outside and then end up.\",\n    \"answer\": \"? shower\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA30419\",\n    \"key\": \"49698\",\n    \"description\": \"two men walk outside and then end up in a shower.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3ataD6lI1sa0lndo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43622\",\n    \"key\": \"76533\",\n    \"description\": \"a man with stubble is looking over intently at a black man.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9rmj7Ecu51tigxjpo1_400\",\n    \"question\": \"what is the man driving down the highway?\",\n    \"answer\": \"chariot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3788\",\n    \"key\": \"73785\",\n    \"description\": \"a man is driving a chariot down the highway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nenfrmeB4p1u0p4a1o1_250\",\n    \"question\": \"what is the man lighting and breathing in smoke?\",\n    \"answer\": \"candles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39595\",\n    \"key\": \"1343\",\n    \"description\": \"a man is lighting candles and breathing in smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh79ioD59r1u6eyp0o1_400\",\n    \"question\": \"where is the young couple sitting and smiling.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8167\",\n    \"key\": \"30642\",\n    \"description\": \"a young couple is sitting together in a car and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nreudiOfno1tx8mn0o1_400\",\n    \"question\": \"what is this spinning out of control on a race track?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20113\",\n    \"key\": \"78282\",\n    \"description\": \"this is a race car spinning out of control on a race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng8o1nWNXz1u5segmo1_400\",\n    \"question\": \"what is the guy opening?\",\n    \"answer\": \"lock\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37254\",\n    \"key\": \"76676\",\n    \"description\": \"a guy is opening a lock he is holding in his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8vbdRFut1shopj2o1_250\",\n    \"question\": \"how many people are running and lowing something out of their mouths?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40361\",\n    \"key\": \"61352\",\n    \"description\": \"two people are running and lowing something out of their mouths.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk8dq27ECT1s6zpepo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA11832\",\n    \"key\": \"19956\",\n    \"description\": \"a white man with black hair is driving.\"\n  },\n  {\n    \"video_name\": \"tumblr_njz1jkKNf61u4nbmvo1_400\",\n    \"question\": \"what leaps from the floor in a surprise attack?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3808\",\n    \"key\": \"1762\",\n    \"description\": \"the cat leaps from the floor in a surprise attack.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhsaiyM6c61qhrx75o1_400\",\n    \"question\": \"how many hockey teams are skating on ice when one man scores?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41164\",\n    \"key\": \"74728\",\n    \"description\": \"two hockey teams are skating on ice when one man scores.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqs999ZRhM1uxceulo1_400\",\n    \"question\": \"how many communist leaders are standing side by side against a wall?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23920\",\n    \"key\": \"26066\",\n    \"description\": \"two communist leaders are standing side by side against a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1ipwb0hI1suy3djo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51701\",\n    \"key\": \"84447\",\n    \"description\": \"a girl in a purple dress is talking into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhkes0gSSf1u0h3teo1_250\",\n    \"question\": \"what was the man in a purple shirt holding?\",\n    \"answer\": \"cup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32829\",\n    \"key\": \"1426\",\n    \"description\": \"a man in a purple shirt was holding a cup.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkgiuZZhn1un86uao1_500\",\n    \"question\": \"what is the color of the substance?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7394\",\n    \"key\": \"94584\",\n    \"description\": \"a person 's hands are working with a white substance.\"\n  },\n  {\n    \"video_name\": \"tumblr_nazoij8XVM1sepjeio1_400\",\n    \"question\": \"what is the woman smoking and walking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26504\",\n    \"key\": \"35376\",\n    \"description\": \"a woman is smoking a cigarette and walking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n92gvgCiks1r4w6cwo1_500\",\n    \"question\": \"what is the man unleashing very slowly?\",\n    \"answer\": \"sword\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA34021\",\n    \"key\": \"81763\",\n    \"description\": \"a man is unleashing his sword very slowly.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng1jgl7aMz1slj978o1_400\",\n    \"question\": \"what is jumping as it tries to eat a bug?\",\n    \"answer\": \"frog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14670\",\n    \"key\": \"95139\",\n    \"description\": \"a frog is jumping as it tries to eat a bug.\"\n  },\n  {\n    \"video_name\": \"tumblr_no73q2fm0I1uuf348o1_250\",\n    \"question\": \"what is the color of the cone?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19910\",\n    \"key\": \"27138\",\n    \"description\": \"a chocolate cookie is being placed in a white ice cream cone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyngbHW2w1sfwliho1_400\",\n    \"question\": \"what bring down the white mustache in front of a cats mouth?\",\n    \"answer\": \"tongs\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22257\",\n    \"key\": \"37693\",\n    \"description\": \"tongs bring down a white mustache in front of a cats mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxl7m1kah1s9f4vbo1_400\",\n    \"question\": \"what is the color of the trousers?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36011\",\n    \"key\": \"56813\",\n    \"description\": \"a man in baggy purple trousers is practicing free running across a roof.\"\n  },\n  {\n    \"video_name\": \"tumblr_no95meGFVR1uuv7imo1_400\",\n    \"question\": \"what is scared away by the machine gun?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31268\",\n    \"key\": \"39488\",\n    \"description\": \"a car is scared away by a machine gun.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8dsnm0vU1ruoae6o1_1280\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34177\",\n    \"key\": \"94851\",\n    \"description\": \"a man is flicking a v sign from a speeding yellow car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh5j8beXJa1tmv4hpo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41797\",\n    \"key\": \"72454\",\n    \"description\": \"a woman wearing a red hat was shaking her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8hkl5Vn171tgetb4o1_250\",\n    \"question\": \"what is drinking something and a dog is biting her?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48284\",\n    \"key\": \"27225\",\n    \"description\": \"a cat is drinking something and a dog is biting her.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g7puMMHO1rbplvwo1_250\",\n    \"question\": \"what does the guy in white lift up?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA27138\",\n    \"key\": \"20018\",\n    \"description\": \"a guy in white lifts up his shirt to wipe his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqbks5f4pb1tm2by2o1_400\",\n    \"question\": \"how many men is this image of looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA44789\",\n    \"key\": \"64275\",\n    \"description\": \"this image is of two men looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqn263IcBj1uzrtz5o1_500\",\n    \"question\": \"what is the person wearing a hat wrapped under their chin?\",\n    \"answer\": \"rag\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23135\",\n    \"key\": \"6137\",\n    \"description\": \"a person wearing a hat wrapped their dew rag under their chin.\"\n  },\n  {\n    \"video_name\": \"tumblr_na6zm9GLDK1t7h8o0o1_400\",\n    \"question\": \"what is the color of the pole?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31242\",\n    \"key\": \"43353\",\n    \"description\": \"a man in a blue shirt runs around a yellow pole on the field.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1slkO3ZM1s8jkazo1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA174\",\n    \"key\": \"25524\",\n    \"description\": \"a woman puts on a black jacket and a woman in white looks around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoiw6PN6o1uprddoo1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50984\",\n    \"key\": \"73447\",\n    \"description\": \"a man wearing a black jacket is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nocod6ZuBJ1tubsydo1_400\",\n    \"question\": \"what is the color of the shirts?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41852\",\n    \"key\": \"87884\",\n    \"description\": \"asian men in white shirts are dancing and singing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nes951ulUD1t9h1yfo1_400\",\n    \"question\": \"how many men are dancing and singing as they look at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA2802\",\n    \"key\": \"82397\",\n    \"description\": \"two men are dancing and singing as they look at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nokgkjPvdh1uot1e7o1_400\",\n    \"question\": \"what is the young man talking and holding?\",\n    \"answer\": \"pug\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9023\",\n    \"key\": \"60623\",\n    \"description\": \"a young man is talking and holding a pug.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq6fgo0RyG1tk2ngvo1_400\",\n    \"question\": \"what is trying to jump from the fence into a window but he misses and hits the wall of the building?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23981\",\n    \"key\": \"71717\",\n    \"description\": \"a cat is trying to jump from a fence into a window but he misses and hits the wall of the building.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlj7u9svNG1s6zpepo1_400\",\n    \"question\": \"what is demonstrated on the laptop?\",\n    \"answer\": \"game\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43339\",\n    \"key\": \"82818\",\n    \"description\": \"a computer game is demonstrated on a laptop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkhilUtwi1rkmghzo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45519\",\n    \"key\": \"43958\",\n    \"description\": \"the man in the white shirt is punching a bag.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7fakJX6s1r5uv3zo1_400\",\n    \"question\": \"what is sitting on the man;\",\n    \"answer\": \"s head while he is trying to eat ? cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44999\",\n    \"key\": \"66464\",\n    \"description\": \"a cat is sitting on a man;\"\n  },\n  {\n    \"video_name\": \"tumblr_nen2gpqUlI1tx8mn0o1_400\",\n    \"question\": \"what are racing around the track when the bumper comes off of one?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2389\",\n    \"key\": \"55482\",\n    \"description\": \"cars are racing around a track when the bumper comes off of one.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd19bgsTCX1sxkh0mo1_500\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41905\",\n    \"key\": \"48313\",\n    \"description\": \"the woman in the black dress is walking to a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_naly48pXks1t3eui8o1_500\",\n    \"question\": \"how many men in hats are making hand gestures?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37770\",\n    \"key\": \"2542\",\n    \"description\": \"two men in hats are making hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkxj24nYDk1rhiuffo1_400\",\n    \"question\": \"what is the man tossing up onto his head?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23442\",\n    \"key\": \"29599\",\n    \"description\": \"a man is tossing his hat up onto his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nafvx0HnxX1rctjeio1_250\",\n    \"question\": \"what is the man wearing a black shirt is spinning off?\",\n    \"answer\": \"rings\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22368\",\n    \"key\": \"51384\",\n    \"description\": \"a man wearing a black shirt is spinning off suspended gymnastic rings.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2myzj0DY1tkpzw0o1_400\",\n    \"question\": \"what do two people walk out and one falls?\",\n    \"answer\": \"window\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29484\",\n    \"key\": \"18190\",\n    \"description\": \"two people walk out a window and one falls.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9n0wjrVkC1tdjuqvo1_400\",\n    \"question\": \"where did the man ride around people.\",\n    \"answer\": \"? wheelchair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA51944\",\n    \"key\": \"50725\",\n    \"description\": \"a man in a motorized wheelchair rode around people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd4uhd6qJJ1tv0ziio1_400\",\n    \"question\": \"how many men are sitting?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA43688\",\n    \"key\": \"33623\",\n    \"description\": \"two men are sitting and one is using hand gestures.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghnsy9tub1skqoaho1_400\",\n    \"question\": \"what comes flying into the frame and hits a man in the face?\",\n    \"answer\": \"pie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9925\",\n    \"key\": \"62925\",\n    \"description\": \"a pie comes flying into the frame and hits a man in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_njvf297g0o1ts4ov3o1_400\",\n    \"question\": \"how many girls giggle and cover their mouths with their hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30448\",\n    \"key\": \"33373\",\n    \"description\": \"two girls giggle and cover their mouths with their hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbulx7nrhG1tm1rn8o1_250\",\n    \"question\": \"what is lying on its back and having its face stroked?\",\n    \"answer\": \"feline\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42027\",\n    \"key\": \"23202\",\n    \"description\": \"a baby feline is lying on its back and having its face stroked.\"\n  },\n  {\n    \"video_name\": \"tumblr_nghk4snsDL1u5b701o1_400\",\n    \"question\": \"where is the person with glasses on looking.\",\n    \"answer\": \"? mirror\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA13217\",\n    \"key\": \"31559\",\n    \"description\": \"a person with glasses on is looking in the mirror.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndth24wYTb1tj3n6no1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23546\",\n    \"key\": \"40782\",\n    \"description\": \"a young man wearing a gray sweater is crouched down and holding onto a pole.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndayi6M8cK1th4ipno1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19563\",\n    \"key\": \"41211\",\n    \"description\": \"an old man with white shirt is exercising his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nj9qf9m6OT1trbt9ao1_400\",\n    \"question\": \"how many men are in the room dancing with their arms above their heads?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35958\",\n    \"key\": \"28960\",\n    \"description\": \"two men are in a room dancing with their arms above their heads.\"\n  },\n  {\n    \"video_name\": \"tumblr_na02l5mrrH1tgetb4o1_400\",\n    \"question\": \"how many animals are standing right next to the other?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18693\",\n    \"key\": \"82095\",\n    \"description\": \"three animals are standing right next to the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngw2a7V3uS1qeu214o1_500\",\n    \"question\": \"how many girls put there arms around other moving there arms and hands?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47972\",\n    \"key\": \"94369\",\n    \"description\": \"two girls put there arms around other moving there arms and hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqxvud6IgD1thktw9o1_250\",\n    \"question\": \"what is the color of the table?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21626\",\n    \"key\": \"533\",\n    \"description\": \"a little spotted leopard is walking under a white table.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng4rt94t1g1tdjuqvo1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20005\",\n    \"key\": \"86983\",\n    \"description\": \"a brown dog jumps up from a pile of snow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc1cszD2L21tjdvfuo1_1280\",\n    \"question\": \"what presses the button trying to wake the other cats?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26379\",\n    \"key\": \"54206\",\n    \"description\": \"a cat presses a button trying to wake the other cats.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb74ml20iT1r75i3co1_250\",\n    \"question\": \"how many men in costumes and mustaches are looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50580\",\n    \"key\": \"45786\",\n    \"description\": \"two men in costumes and mustaches are looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_non9dnF1Om1u4uss5o1_400\",\n    \"question\": \"how many women kiss passionately and hold each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA35828\",\n    \"key\": \"78286\",\n    \"description\": \"two women kiss passionately and hold each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9msz5bJ7Y1spkaepo1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA37256\",\n    \"key\": \"62640\",\n    \"description\": \"five women wearing black clothes walk along a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9agpx9QDL1s4niibo1_400\",\n    \"question\": \"how many young girls make faces and smile?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26932\",\n    \"key\": \"32543\",\n    \"description\": \"two young girls make faces and smile.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncyr2emPxA1ti6gxco1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA25303\",\n    \"key\": \"8116\",\n    \"description\": \"a man in a red shirt takes off a mask.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9b5ripty1tgux4fo1_250\",\n    \"question\": \"what is the woman running by a fence,\",\n    \"answer\": \"and then are shown ? pictures\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24119\",\n    \"key\": \"90983\",\n    \"description\": \"a woman is running by a fence,\"\n  },\n  {\n    \"video_name\": \"tumblr_mnutecijZ71rkw2b4o1_250\",\n    \"question\": \"what are the man wearing?\",\n    \"answer\": \"suit\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9136\",\n    \"key\": \"45077\",\n    \"description\": \"a man are wearing a black suit smiles and winks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xmz9ajod1tgh87to1_400\",\n    \"question\": \"how many man is talking to another man that is laughing?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22140\",\n    \"key\": \"95184\",\n    \"description\": \"one man is talking to another man that is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_np7tiyMgEP1uw90pdo1_540\",\n    \"question\": \"what is singing and winking?\",\n    \"answer\": \"star\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50914\",\n    \"key\": \"44538\",\n    \"description\": \"a pop star is singing and winking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqy6gpwoGz1uy0526o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41377\",\n    \"key\": \"32991\",\n    \"description\": \"this is a girl that is wearing sunglasses,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhi301UlXH1u0jmtso1_1280\",\n    \"question\": \"where is the woman sitting and showing massive cleavage while smoking a cigarette.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41278\",\n    \"key\": \"75670\",\n    \"description\": \"a woman is sitting in a bed and showing massive cleavage while smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkgh9qN2aw1s71nvbo1_400\",\n    \"question\": \"how many women does the man push over backward in a room full of people?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30619\",\n    \"key\": \"57168\",\n    \"description\": \"a man pushes two women over backward in a room full of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_nihz1vlhvQ1qgnh1wo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5929\",\n    \"key\": \"58943\",\n    \"description\": \"the brown haired man is singing in to a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk9t1iHZZn1uod8uho1_400\",\n    \"question\": \"how many people with dark hair were talking to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20904\",\n    \"key\": \"53103\",\n    \"description\": \"two people with dark hair were talking to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_na580m6GwR1t0ojyvo1_500\",\n    \"question\": \"how many guys are standing next to each other and they strike poses?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA34235\",\n    \"key\": \"94958\",\n    \"description\": \"three guys are standing next to each other and they strike poses.\"\n  },\n  {\n    \"video_name\": \"tumblr_natftdaDTB1rwc3zyo1_400\",\n    \"question\": \"what is the wrestler taking down another wrestler and wearing?\",\n    \"answer\": \"costume\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36883\",\n    \"key\": \"25651\",\n    \"description\": \"a wrestler is taking down another wrestler and wearing a bright pink costume.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfggtzJj401rw4ndto1_400\",\n    \"question\": \"where is the person tossing a shoe about.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA33568\",\n    \"key\": \"447\",\n    \"description\": \"a person in a room is tossing a shoe about.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndm7dz8BTZ1seb31ro1_400\",\n    \"question\": \"what is the man singing and playing?\",\n    \"answer\": \"piano\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32576\",\n    \"key\": \"22584\",\n    \"description\": \"a man is singing and playing the piano.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq1xbdzSNA1spbq2fo1_250\",\n    \"question\": \"how many soccer players are giving the high five for a good game?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA48270\",\n    \"key\": \"21669\",\n    \"description\": \"the two soccer players are giving a high five for a good game.\"\n  },\n  {\n    \"video_name\": \"tumblr_mhzoo3n2ZK1r8egmso1_400\",\n    \"question\": \"how many teenagers bump into each other and fall over?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47713\",\n    \"key\": \"15859\",\n    \"description\": \"two teenagers bump into each other and fall over.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbr61uPtX21r14h39o1_500\",\n    \"question\": \"what is the color of the eyes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA36340\",\n    \"key\": \"61764\",\n    \"description\": \"the girl has blue eyes,\"\n  },\n  {\n    \"video_name\": \"tumblr_ngco2hZoYX1sflxw5o1_250\",\n    \"question\": \"how many men are holding birds close to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA25028\",\n    \"key\": \"8062\",\n    \"description\": \"two men are holding birds close to each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pw2oIrM51t29pn7o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48120\",\n    \"key\": \"18902\",\n    \"description\": \"a man with brown hair is singing into a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ney2qpWl7D1tv2q4bo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24790\",\n    \"key\": \"2296\",\n    \"description\": \"a man in a red jacket is playing guitar while another man plays piano behind him.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3gbw09CO1u3g93no1_400\",\n    \"question\": \"what is the man staring at a boy and touching?\",\n    \"answer\": \"pen\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28240\",\n    \"key\": \"49272\",\n    \"description\": \"a man is staring at a boy and touching a pen.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc9rpqaGy31qhb3vzo1_500\",\n    \"question\": \"where are two people pushing each other.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38630\",\n    \"key\": \"57512\",\n    \"description\": \"two people are pushing each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndz2blSzVT1tlgy1jo1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28915\",\n    \"key\": \"67085\",\n    \"description\": \"a girl in white is leaning her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkngomyhg61u9o884o1_400\",\n    \"question\": \"what licks his lips and turns his head?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51035\",\n    \"key\": \"21925\",\n    \"description\": \"a kitten licks his lips and turns his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n810pw2rtt1qgii4so1_1280\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49660\",\n    \"key\": \"84268\",\n    \"description\": \"a white man with white shirt is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nivsjccx9w1r05qsbo1_400\",\n    \"question\": \"how many cars are going around the racetrack when one car goes off into the dirt?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26433\",\n    \"key\": \"68322\",\n    \"description\": \"two cars are going around a racetrack when one car goes off into the dirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwu4pDsNu1ra5f55o1_500\",\n    \"question\": \"what is the lady with dark hair holding?\",\n    \"answer\": \"parasol\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5332\",\n    \"key\": \"34244\",\n    \"description\": \"a lady with dark hair is holding a parasol.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb330aM2rd1taqruuo1_400\",\n    \"question\": \"what drove through an intersection?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32554\",\n    \"key\": \"64237\",\n    \"description\": \"a bright green car drove through an intersection.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlzuoyTPM61tx8mn0o1_400\",\n    \"question\": \"what are racing around the racetrack and one care spins out of control?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA44722\",\n    \"key\": \"78642\",\n    \"description\": \"cars are racing around a racetrack and one care spins out of control.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdl028aPE1rufswgo1_400\",\n    \"question\": \"what is the hand scratching head?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA31563\",\n    \"key\": \"25068\",\n    \"description\": \"a hand is scratching a dog 's head.\"\n  },\n  {\n    \"video_name\": \"tumblr_njb0ljx8qq1u92e13o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30241\",\n    \"key\": \"47045\",\n    \"description\": \"a girl with long brown hair is talking to someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqx9n4IgAS1u5hcmdo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6587\",\n    \"key\": \"53507\",\n    \"description\": \"a boy wearing a blue shirt is smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nen3ysIv0O1qae7oyo1_500\",\n    \"question\": \"how many young men are performing the dance routine?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9412\",\n    \"key\": \"90210\",\n    \"description\": \"two young men are performing a dance routine.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncx9u3ivlb1tdmffyo1_400\",\n    \"question\": \"what is opening door of a cage to push out a puppy?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9927\",\n    \"key\": \"101281\",\n    \"description\": \"this dog is opening door of a cage to push out a puppy.\"\n  },\n  {\n    \"video_name\": \"tumblr_n96fygwD8Z1tfwf53o1_400\",\n    \"question\": \"where is the man stressed out and yelling.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41621\",\n    \"key\": \"52011\",\n    \"description\": \"a man is stressed out and yelling in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_net9q3fbJj1rxd60qo1_250\",\n    \"question\": \"what is the guy taking?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3386\",\n    \"key\": \"38852\",\n    \"description\": \"a guy is taking other guy 's hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6dweKA4W1tmwagjo1_250\",\n    \"question\": \"where is the young boy with blonde hair singing.\",\n    \"answer\": \"? microphone\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA52967\",\n    \"key\": \"8122\",\n    \"description\": \"a young boy with blonde hair is singing in a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngwbl1n70M1u5ha1qo1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4863\",\n    \"key\": \"63012\",\n    \"description\": \"a person with blue clothes is grabbing a bottle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbm12GQC11u6j8jco1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35419\",\n    \"key\": \"27292\",\n    \"description\": \"a male with long dark hair and a white vest top lifts his arms and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_n91t1n59Ri1qfees0o1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22736\",\n    \"key\": \"70927\",\n    \"description\": \"a white man is kissing another man.\"\n  },\n  {\n    \"video_name\": \"tumblr_nate0j7OwU1scv4uso1_500\",\n    \"question\": \"where do the group of boys perform dance moves.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8720\",\n    \"key\": \"50947\",\n    \"description\": \"a group of boys perform dance moves in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nen3ysIv0O1qae7oyo1_500\",\n    \"question\": \"how many men are doing the dance routine?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA30427\",\n    \"key\": \"90210\",\n    \"description\": \"two men are doing a dance routine.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne8yo1RByn1r7xloyo1_400\",\n    \"question\": \"what are the boy and a girl carving?\",\n    \"answer\": \"pumpkins\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5865\",\n    \"key\": \"101514\",\n    \"description\": \"a boy and a girl are carving pumpkins.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbc1f32FsJ1soh90so1_500\",\n    \"question\": \"where is the man laughing.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11017\",\n    \"key\": \"69672\",\n    \"description\": \"a man is laughing in a recording studio.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbud39wvWd1r3uz8ro1_400\",\n    \"question\": \"what is sitting on top of a pillow and shaking their head?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37863\",\n    \"key\": \"50653\",\n    \"description\": \"a cat is sitting on top of a pillow and shaking their head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhn4qolyxQ1tgouwlo1_400\",\n    \"question\": \"what gets tortured by the gecko and is scared?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24403\",\n    \"key\": \"52435\",\n    \"description\": \"cat gets tortured by a gecko and is scared.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh40cqYid51s6zpepo1_250\",\n    \"question\": \"what played with an ornament on a tree?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50619\",\n    \"key\": \"2329\",\n    \"description\": \"a kitten played with an ornament on a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9zybpUiWe1tra8tyo1_500\",\n    \"question\": \"how many men are sitting next to each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46304\",\n    \"key\": \"83057\",\n    \"description\": \"two men are sitting next to each other and one is laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_neycf1b1Y81s81a83o1_500\",\n    \"question\": \"how many men with dark brown hair are talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16065\",\n    \"key\": \"43536\",\n    \"description\": \"two men with dark brown hair are talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nju1iwQyUo1un53eto1_400\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42272\",\n    \"key\": \"62948\",\n    \"description\": \"a woman dressed in black is walking towards a path.\"\n  },\n  {\n    \"video_name\": \"tumblr_neu0myvkQY1u28lfio2_1280\",\n    \"question\": \"what is the color of the men?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5664\",\n    \"key\": \"92767\",\n    \"description\": \"three young men in black is teasing with each other in the room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7dbrGYV51syww0ro1_400\",\n    \"question\": \"how many men are talking and laughing with each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA51079\",\n    \"key\": \"17288\",\n    \"description\": \"two men are talking and laughing with each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhg6vkuI8y1tgetb4o1_250\",\n    \"question\": \"what attempts to climb in the paper package?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29049\",\n    \"key\": \"53401\",\n    \"description\": \"a cat attempts to climb in a paper package.\"\n  },\n  {\n    \"video_name\": \"tumblr_noka4jzEvu1uvvbrro1_250\",\n    \"question\": \"what are the man picking up while talking on the phone?\",\n    \"answer\": \"weapon\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49623\",\n    \"key\": \"23792\",\n    \"description\": \"a man are picking up a weapon while talking on the phone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kuvyUJT91sual3ro1_250\",\n    \"question\": \"what moves as the cat walks through the water?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37474\",\n    \"key\": \"3721\",\n    \"description\": \"a robot moves as a cat walks through the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmroky0Ibg1sa6u20o1_400\",\n    \"question\": \"what is the hand holding up with a note written in it?\",\n    \"answer\": \"notebook\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA13494\",\n    \"key\": \"44357\",\n    \"description\": \"a hand is holding up a spiral notebook with a note written in it.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndioe7rlJD1u15wpko1_250\",\n    \"question\": \"how many men stare at each other while a third man stands between them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16821\",\n    \"key\": \"37298\",\n    \"description\": \"two men stare at each other while a third man stands between them.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8w6qmRAgr1tfcqrho1_250\",\n    \"question\": \"what does the woman hug,\",\n    \"answer\": \"the horse leans its head around her ? horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15179\",\n    \"key\": \"209\",\n    \"description\": \"a woman hugs a horse,\"\n  },\n  {\n    \"video_name\": \"tumblr_nk3tu3h9Yz1u1v0pco1_400\",\n    \"question\": \"what pounces and charges into the clear tube on the floor?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48894\",\n    \"key\": \"88816\",\n    \"description\": \"a cat pounces and charges into a clear tube on the floor.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rbz7vPdn1tz9jaqo1_400\",\n    \"question\": \"what is the color of the jersey?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42521\",\n    \"key\": \"69179\",\n    \"description\": \"a man is wearing a red athletic jersey and is walking under a tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncxt71hFPt1t7io47o1_250\",\n    \"question\": \"what is dipping its paw in a glass of milk?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16602\",\n    \"key\": \"23002\",\n    \"description\": \"a cat is dipping its paw in a glass of milk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nl3zdwLhgA1ttuja3o1_500\",\n    \"question\": \"where are two people and one of them has a guitar.\",\n    \"answer\": \"? studio\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3482\",\n    \"key\": \"85274\",\n    \"description\": \"two people are in a recording studio and one of them has a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbt3166F731tjpng4o1_500\",\n    \"question\": \"how many guys try to high five?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18917\",\n    \"key\": \"92690\",\n    \"description\": \"two guys try to high five and they miss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnocc9OgKW1unxo73o1_400\",\n    \"question\": \"what are the very colorful close up of a man 's face changing?\",\n    \"answer\": \"colors\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26715\",\n    \"key\": \"34083\",\n    \"description\": \"a very colorful close up of a man 's face are changing colors.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndezaecWOZ1sdp01ro1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6107\",\n    \"key\": \"6960\",\n    \"description\": \"a man in a black top nodded his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ner52sAXiZ1u2omz2o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31202\",\n    \"key\": \"100510\",\n    \"description\": \"the boy with the suit and black hair looked to the right.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr3k1cZSra1sqh42jo1_400\",\n    \"question\": \"what is the color of the trunks?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42820\",\n    \"key\": \"60866\",\n    \"description\": \"the guy with the black shirt dove off the top rope onto the guy with the white trunks.\"\n  },\n  {\n    \"video_name\": \"tumblr_no5a69ZeuT1usb61xo1_400\",\n    \"question\": \"how many men are dancing and singing on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46533\",\n    \"key\": \"48931\",\n    \"description\": \"two men are dancing and singing on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabb9j5rq71rw1wnno1_400\",\n    \"question\": \"what is being attacked by the cat?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16834\",\n    \"key\": \"69434\",\n    \"description\": \"a dog is being attacked by a cat.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndm0v3pkZn1tyvyt1o1_400\",\n    \"question\": \"what does the girl throw on over her head?\",\n    \"answer\": \"purse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14644\",\n    \"key\": \"100815\",\n    \"description\": \"the girl throws her purse on over her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n93sqa0Tt21sjfh08o1_400\",\n    \"question\": \"what is the man taking off and moving backwards?\",\n    \"answer\": \"shirt\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30527\",\n    \"key\": \"30171\",\n    \"description\": \"a man is taking off his shirt and moving backwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkhbeuZhcR1u8dfc7o1_400\",\n    \"question\": \"where are two people fighting.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA27372\",\n    \"key\": \"96835\",\n    \"description\": \"two people are fighting in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9ojivgX6N1qedx60o2_500\",\n    \"question\": \"where is the person in a white shirt sitting.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA22207\",\n    \"key\": \"96484\",\n    \"description\": \"a person in a white shirt is sitting in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9c9tsjxU11t6ksnpo1_500\",\n    \"question\": \"how many people are dancing together in front of another person who is holding a guitar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45290\",\n    \"key\": \"97624\",\n    \"description\": \"two people are dancing together in front of another person who is holding a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncy4plCMec1tm5nq5o1_250\",\n    \"question\": \"what is the woman wearing and smiling?\",\n    \"answer\": \"jacket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42327\",\n    \"key\": \"6674\",\n    \"description\": \"a woman is wearing a black jacket and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh7f06Iimr1r1xcixo1_400\",\n    \"question\": \"how many fingers are two boys and two girls holding up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23620\",\n    \"key\": \"28875\",\n    \"description\": \"two boys and two girls are holding up two fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_npwwzp6mxJ1qltbjko1_400\",\n    \"question\": \"what is flying high above the clouds?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16062\",\n    \"key\": \"77259\",\n    \"description\": \"an airplane is flying high above the clouds.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbbwerXfuY1sjt7a5o1_500\",\n    \"question\": \"what does the person with long hair play?\",\n    \"answer\": \"guitar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36755\",\n    \"key\": \"55266\",\n    \"description\": \"a person with long hair plays a guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkfj17IEnK1u1pokno1_250\",\n    \"question\": \"how many ladies are leaning their heads on bats and spinning in circles?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA49180\",\n    \"key\": \"53570\",\n    \"description\": \"two ladies are leaning their heads on bats and spinning in circles.\"\n  },\n  {\n    \"video_name\": \"tumblr_niu9lzNQeU1u8p1pwo1_500\",\n    \"question\": \"what is swerving on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42402\",\n    \"key\": \"73805\",\n    \"description\": \"a fast car is swerving on a road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nblvftkxsM1t4phwpo1_400\",\n    \"question\": \"what goes up and then it comes down?\",\n    \"answer\": \"building\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35659\",\n    \"key\": \"35534\",\n    \"description\": \"a tall building goes up and then it comes down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nollsdsfZs1sm6bgxo1_400\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16264\",\n    \"key\": \"31771\",\n    \"description\": \"the tan and black dog is licking the window.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrebh9MCk1rruwnyo1_400\",\n    \"question\": \"what is the young woman eating with her fork?\",\n    \"answer\": \"spaghetti\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15192\",\n    \"key\": \"97865\",\n    \"description\": \"a young woman is eating spaghetti with her fork.\"\n  },\n  {\n    \"video_name\": \"tumblr_nev8ygd3491tmnswbo1_400\",\n    \"question\": \"what is the man manipulating body back and forth?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA21111\",\n    \"key\": \"43441\",\n    \"description\": \"a man is manipulating a kitten 's body back and forth.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbn45jzc2V1tlc96ro1_400\",\n    \"question\": \"what is falling down?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15779\",\n    \"key\": \"25609\",\n    \"description\": \"a cute little cat is falling down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhmi7dGdup1qgeu41o1_500\",\n    \"question\": \"how many women look at each other and nod in agreement?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA9051\",\n    \"key\": \"94202\",\n    \"description\": \"two women look at each other and nod in agreement.\"\n  },\n  {\n    \"video_name\": \"tumblr_nggwvt9aWm1t7an45o1_500\",\n    \"question\": \"what is getting air blown into a puffy fluff?\",\n    \"answer\": \"pup\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20632\",\n    \"key\": \"92691\",\n    \"description\": \"a pup is getting air blown into a puffy fluff.\"\n  },\n  {\n    \"video_name\": \"tumblr_nojc0uHi1c1tmavx8o1_400\",\n    \"question\": \"how many men are walking into the vault together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10210\",\n    \"key\": \"42824\",\n    \"description\": \"two men are walking into a vault together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrfz5fPJmO1uzpx6mo1_400\",\n    \"question\": \"what is the crying woman throwing and sitting down?\",\n    \"answer\": \"chair\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46510\",\n    \"key\": \"78802\",\n    \"description\": \"a crying woman is throwing a chair and sitting down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncb4rh5u6V1tw6u06o1_500\",\n    \"question\": \"what is the color of the raspberry?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51813\",\n    \"key\": \"74315\",\n    \"description\": \"a red raspberry is rolling over a pile of blueberries and raspberries.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne9z4wBCgr1u2aovoo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34639\",\n    \"key\": \"65473\",\n    \"description\": \"a black man wearing a necklace slowly moves his arms.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfzjobYaWn1roqntto1_500\",\n    \"question\": \"what is the man taking off?\",\n    \"answer\": \"outside\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38349\",\n    \"key\": \"74967\",\n    \"description\": \"a man is taking off his shirt outside.\"\n  },\n  {\n    \"video_name\": \"tumblr_noaomhd7ZQ1un7qbto1_250\",\n    \"question\": \"what is the little girl hugging by sitting on its back?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5634\",\n    \"key\": \"2261\",\n    \"description\": \"a little girl is hugging a big dog by sitting on its back.\"\n  },\n  {\n    \"video_name\": \"tumblr_noyux3yYKW1qa0byyo1_400\",\n    \"question\": \"where is the baby smiling and laughing.\",\n    \"answer\": \"? bib\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA8271\",\n    \"key\": \"7032\",\n    \"description\": \"a baby in a red bib is smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncap7ix7eJ1thbgs3o1_250\",\n    \"question\": \"what falls after the branch it is sitting on breaks?\",\n    \"answer\": \"bear\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA29517\",\n    \"key\": \"10789\",\n    \"description\": \"A panda bear falls after the branch it is sitting on breaks.\"\n  },\n  {\n    \"video_name\": \"tumblr_n979a0Asuy1thg3s4o1_250\",\n    \"question\": \"how many person is tackling another person while indoors?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40547\",\n    \"key\": \"6092\",\n    \"description\": \"one person is tackling another person while indoors.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngrlu3nb1T1u0sggco1_500\",\n    \"question\": \"how many men are standing under an umbrella and talking?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA4705\",\n    \"key\": \"93562\",\n    \"description\": \"two men are standing under an umbrella and talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncz9wdNmgj1tgftffo1_400\",\n    \"question\": \"how many man shows another man his neck?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27849\",\n    \"key\": \"40373\",\n    \"description\": \"one man shows another man his neck.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g5efSoWD1rsxypwo1_400\",\n    \"question\": \"where do three kittens cuddle.\",\n    \"answer\": \"? container\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA14517\",\n    \"key\": \"22459\",\n    \"description\": \"three kittens cuddle together in a small container.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnn5nj7vw21s8rggqo1_250\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48525\",\n    \"key\": \"2604\",\n    \"description\": \"a black dog sticks his tongue between two cushions.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbcbhoKhs1r80o0mo1_500\",\n    \"question\": \"how many men are dancing and holding golf clubs?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50\",\n    \"key\": \"101339\",\n    \"description\": \"two men are dancing and holding golf clubs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nktgnoK1z31t15h2ho1_250\",\n    \"question\": \"what is the color of the cardigan?\",\n    \"answer\": \"orange\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26053\",\n    \"key\": \"11454\",\n    \"description\": \"a woman with an orange cardigan is having a drink and looking away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfxv4gjrAC1ryxa3bo1_400\",\n    \"question\": \"what is the man riding over a flight of stairs?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49806\",\n    \"key\": \"11423\",\n    \"description\": \"a man is riding a skateboard over a flight of stairs.\"\n  },\n  {\n    \"video_name\": \"tumblr_na5nxkhvGS1ti5broo1_500\",\n    \"question\": \"where is the man with long hair and a beard sitting.\",\n    \"answer\": \"? airplane\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19117\",\n    \"key\": \"39814\",\n    \"description\": \"a man with long hair and a beard is sitting in a plane.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkybgr8MIr1tmnntwo1_250\",\n    \"question\": \"what is the color of the sprays?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21543\",\n    \"key\": \"35718\",\n    \"description\": \"a woman pretends to drink from a bottle but the lid comes off and white liquid sprays on her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nir1kqGVoT1slzs8fo1_400\",\n    \"question\": \"where is the fire burning very bright.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA29871\",\n    \"key\": \"4796\",\n    \"description\": \"a fire is burning very bright in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_njz270ADrC1uo39nto1_400\",\n    \"question\": \"what is the color of the boy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42949\",\n    \"key\": \"62252\",\n    \"description\": \"a white boy is looking forward and then turns away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbrd1GZox1s71nvbo1_500\",\n    \"question\": \"what is blown down the hill by the wind?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30166\",\n    \"key\": \"59464\",\n    \"description\": \"a dead bird is blown down a hill by the wind.\"\n  },\n  {\n    \"video_name\": \"tumblr_npozq32jf31up3ufho1_400\",\n    \"question\": \"where is the person listening to something on his or her headphones is dancing.\",\n    \"answer\": \"? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9318\",\n    \"key\": \"30907\",\n    \"description\": \"a person listening to something on his or her headphones is dancing in a chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkkqdmYAMm1sipe8no1_500\",\n    \"question\": \"how many different boy bands are dancing against each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15944\",\n    \"key\": \"95007\",\n    \"description\": \"two different boy bands are dancing against each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndii8agRre1qegwm1o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16181\",\n    \"key\": \"89932\",\n    \"description\": \"woman with black hair is moving to man with white shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0bvasOi81slj978o1_500\",\n    \"question\": \"what is the color of the bike?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16719\",\n    \"key\": \"62301\",\n    \"description\": \"a man drives a red dirt bike into a big puddle of water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhy4mwvSbf1u05z12o1_500\",\n    \"question\": \"what is the color of the gown?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA9838\",\n    \"key\": \"98510\",\n    \"description\": \"a woman dressed in a white gown is drinking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nontc2hbaR1rlnhwvo1_540\",\n    \"question\": \"what is the girl with the dark hair holding?\",\n    \"answer\": \"gold\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40297\",\n    \"key\": \"101258\",\n    \"description\": \"the girl with the dark hair is holding a gold lighter.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncq9kaqQ2R1tegl32o1_250\",\n    \"question\": \"what is the teenager riding?\",\n    \"answer\": \"cart\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15287\",\n    \"key\": \"14927\",\n    \"description\": \"a teenager is riding a red mobile cart.\"\n  },\n  {\n    \"video_name\": \"tumblr_np34z9JutX1uwk4eao1_500\",\n    \"question\": \"how many man is resting his head on the other 's shoulder?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7879\",\n    \"key\": \"94394\",\n    \"description\": \"one man is resting his head on the other 's shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_njb0rpCsKz1tzc1tgo1_500\",\n    \"question\": \"how many people are on the boat?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37785\",\n    \"key\": \"70885\",\n    \"description\": \"two people are on a boat and one falls into some water.\"\n  },\n  {\n    \"video_name\": \"tumblr_mh1su2V1xR1qbehwco1_500\",\n    \"question\": \"how many young friends are discussing the package of produce?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA45999\",\n    \"key\": \"100674\",\n    \"description\": \"three young friends are discussing a package of produce.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncmkrlulEL1tt4nxqo1_250\",\n    \"question\": \"how many girls are crying so hard their makeup smears?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5416\",\n    \"key\": \"26024\",\n    \"description\": \"two girls are crying so hard their makeup smears.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh9uqzHJuS1rcgywao1_400\",\n    \"question\": \"how many peace signs is the lady holding up?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1249\",\n    \"key\": \"38015\",\n    \"description\": \"a lady is holding up two peace signs.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqzeu4Saoa1uvfg79o1_400\",\n    \"question\": \"what is the man missing golf?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19483\",\n    \"key\": \"71023\",\n    \"description\": \"a man is missing a golf ball.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni06hc76UJ1u639x2o1_500\",\n    \"question\": \"what is the color of the car?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7885\",\n    \"key\": \"72526\",\n    \"description\": \"a black car is sliding around a corner on a racing track.\"\n  },\n  {\n    \"video_name\": \"tumblr_nct9irBVTo1tdjuqvo1_400\",\n    \"question\": \"what eats the piece of banana while someone holds his hand?\",\n    \"answer\": \"monkey\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1497\",\n    \"key\": \"69435\",\n    \"description\": \"a monkey eats a piece of banana while someone holds his hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9di4xF53b1r0dpzwo1_400\",\n    \"question\": \"what crashes into the fence and smashes up?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47701\",\n    \"key\": \"81235\",\n    \"description\": \"a race car crashes into a fence and smashes up.\"\n  },\n  {\n    \"video_name\": \"tumblr_nir1imp3Hd1tkwbico1_400\",\n    \"question\": \"what is shining,\",\n    \"answer\": \"the trees are being passed by , and the clouds are above ? sun\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51144\",\n    \"key\": \"4655\",\n    \"description\": \"the sun is shining,\"\n  },\n  {\n    \"video_name\": \"tumblr_naf3n9tRJN1td8ijso1_500\",\n    \"question\": \"what is speaking in the mike?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33613\",\n    \"key\": \"47511\",\n    \"description\": \"a man wearing cap is speaking in a mike.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb3arfcvho1tunar3o1_250\",\n    \"question\": \"where are two women fighting each other.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA32038\",\n    \"key\": \"4217\",\n    \"description\": \"two women are fighting each other in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nca4fq9EnX1td804io1_250\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13866\",\n    \"key\": \"15472\",\n    \"description\": \"a man in a green jacket looking annoyed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nabhgxpYfE1tjaic7o1_r1_400\",\n    \"question\": \"what is the person kicking away?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25743\",\n    \"key\": \"26368\",\n    \"description\": \"a person is kicking away a skateboard.\"\n  },\n  {\n    \"video_name\": \"tumblr_npu2xyXujL1u7q0qeo1_400\",\n    \"question\": \"what did the footballer kick across the pitch?\",\n    \"answer\": \"ball\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42079\",\n    \"key\": \"96690\",\n    \"description\": \"a footballer kicked a ball across the pitch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd5sszzMyl1r20o7po1_500\",\n    \"question\": \"what is the color of the tie?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31225\",\n    \"key\": \"43493\",\n    \"description\": \"a person with a white shirt and black tie is looking downwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nny2x0HXEO1u7d8xzo1_400\",\n    \"question\": \"what is the color of the robes?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31216\",\n    \"key\": \"31263\",\n    \"description\": \"a man in a suit collapses in a church,\"\n  },\n  {\n    \"video_name\": \"tumblr_ndwfzx0hL91tgkdkbo1_250\",\n    \"question\": \"what is the dog wearing a cape and riding?\",\n    \"answer\": \"scooter\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48417\",\n    \"key\": \"5671\",\n    \"description\": \"a dog is wearing a cape and riding a scooter.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqd1emIDJp1so7p3zo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26003\",\n    \"key\": \"41210\",\n    \"description\": \"a white man with black hair is looking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndurbh6w6U1rm0u6lo1_400\",\n    \"question\": \"what is the color of the person?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10218\",\n    \"key\": \"58760\",\n    \"description\": \"a purple haired person hugged a tall tree.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9djmj80Jg1tqwtb6o1_500\",\n    \"question\": \"what does the person with the bird head release?\",\n    \"answer\": \"bird\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17319\",\n    \"key\": \"35961\",\n    \"description\": \"the person with the bird head releases a bird.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbv2yekEpj1tj55h3o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23121\",\n    \"key\": \"5746\",\n    \"description\": \"a girl with long black hair is opening her eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nec94vgO6I1s95scvo1_400\",\n    \"question\": \"how many boys are sitting together and one laughs hard at the other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15614\",\n    \"key\": \"57619\",\n    \"description\": \"two boys are sitting together and one laughs hard at the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nq1j2bTh2e1uuaiwuo1_400\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA28021\",\n    \"key\": \"38248\",\n    \"description\": \"a man in a brown hat is listening to a person talk while having his fingers in his mouth.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8xdjz1MKC1r6b9h8o1_500\",\n    \"question\": \"how many men are giving each other middle fingers?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19112\",\n    \"key\": \"30622\",\n    \"description\": \"two men are giving each other middle fingers.\"\n  },\n  {\n    \"video_name\": \"tumblr_nee92e9wJt1srt4nmo1_250\",\n    \"question\": \"how many people sat down talking and laughing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15783\",\n    \"key\": \"81215\",\n    \"description\": \"two people sat down talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr0xuomYVF1uqy5dho1_250\",\n    \"question\": \"what jumps in the puddle,\",\n    \"answer\": \"the other elephant pulls it closer ? elephant\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33130\",\n    \"key\": \"82672\",\n    \"description\": \"a baby elephant jumps in a puddle,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkluxwUCXZ1up5k6ro1_250\",\n    \"question\": \"how many guys were talking in the room when another guy bursts in?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA39501\",\n    \"key\": \"77807\",\n    \"description\": \"two guys were talking in a room when another guy bursts in.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnjpac3v6Q1qboh47o1_500\",\n    \"question\": \"what are the group of people staring blankly,\",\n    \"answer\": \"most of them wearing ? sunglasses\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA35094\",\n    \"key\": \"59306\",\n    \"description\": \"a group of people staring blankly,\"\n  },\n  {\n    \"video_name\": \"tumblr_nkz1d7Ed6a1up1p8qo1_250\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA31728\",\n    \"key\": \"10910\",\n    \"description\": \"a black man is embracing and kissing a white woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf1nlpijnR1u2lw0po1_400\",\n    \"question\": \"how many doctors are walking along the hospital corridor?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7109\",\n    \"key\": \"77200\",\n    \"description\": \"two doctors are walking along the hospital corridor.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngilgcU4iR1u0fgfyo2_400\",\n    \"question\": \"what is spinning out of control on a street?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33107\",\n    \"key\": \"59008\",\n    \"description\": \"a car is spinning out of control on a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nde6csPi0h1rg2esto1_400\",\n    \"question\": \"what is being surprised by the squirrel?\",\n    \"answer\": \"panda\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50867\",\n    \"key\": \"90634\",\n    \"description\": \"a panda is being surprised by a squirrel.\"\n  },\n  {\n    \"video_name\": \"tumblr_naj0iuFdz91qhoso4o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23947\",\n    \"key\": \"16855\",\n    \"description\": \"a white girl with black hair is surprised.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndamtkX07d1rc55rmo1_400\",\n    \"question\": \"what is the model showing?\",\n    \"answer\": \"dress\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41365\",\n    \"key\": \"38874\",\n    \"description\": \"a model is showing a new dress being very serious.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbk9h1Vx7T1tx8mn0o1_400\",\n    \"question\": \"what is in the race?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA20211\",\n    \"key\": \"77249\",\n    \"description\": \"a very cute white car is in a race.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8x40tVuG51ri8xzao1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA35087\",\n    \"key\": \"34042\",\n    \"description\": \"a man with black hair is talking and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9cqrdn02m1slj978o1_400\",\n    \"question\": \"what is the color of the vest?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46306\",\n    \"key\": \"24624\",\n    \"description\": \"a man wearing a red vest throws his gun and a clay in the air.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkq6tnFoXV1rif4nho1_400\",\n    \"question\": \"how many young men are being pulled on the cart?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7054\",\n    \"key\": \"24121\",\n    \"description\": \"two young men are being pulled on a cart.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbci2vFibY1st6smgo1_500\",\n    \"question\": \"how many young girls dance and perform together on stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16830\",\n    \"key\": \"73073\",\n    \"description\": \"two young girls dance and perform together on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrd6a5lSj81r5wqxpo1_400\",\n    \"question\": \"how many girl wipes away at her eyes while the other runs her hands through her hair?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18396\",\n    \"key\": \"91865\",\n    \"description\": \"one girl wipes away at her eyes while the other runs her hands through her hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnq4tzM7M51urqm0mo1_500\",\n    \"question\": \"how many planes fly close to each other over a desert?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50911\",\n    \"key\": \"85138\",\n    \"description\": \"two planes fly close to each other over a desert.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb214iSPxA1tdmffyo1_250\",\n    \"question\": \"what is the color of the dress?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA30369\",\n    \"key\": \"14238\",\n    \"description\": \"a woman in a white tutu dress is dancing and shaking.\"\n  },\n  {\n    \"video_name\": \"tumblr_n90vul8OL31sm7km1o1_400\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA5431\",\n    \"key\": \"3794\",\n    \"description\": \"two men wearing dummy heads frighten a woman in a blue top.\"\n  },\n  {\n    \"video_name\": \"tumblr_nozeurbvJO1ssgyoro1_250\",\n    \"question\": \"what does woman in a gym throw threw over her shoulder and waves?\",\n    \"answer\": \"towel\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47419\",\n    \"key\": \"14329\",\n    \"description\": \"woman in a gym throws threw a towel over her shoulder and waves.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb0tu1lItQ1tte6jbo1_500\",\n    \"question\": \"what is the woman smoking and a man is playing music?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49007\",\n    \"key\": \"49206\",\n    \"description\": \"a woman is smoking a cigarette and a man is playing music.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauka09f5w1qf6wjoo1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8007\",\n    \"key\": \"36153\",\n    \"description\": \"a woman wearing a blue jacket is standing in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbm1xca04k1tgmun7o1_500\",\n    \"question\": \"where is the guy sitting and drinking a beer.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA31527\",\n    \"key\": \"73075\",\n    \"description\": \"a guy is sitting and drinking a beer in a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxl2nzKDV1u4v3ypo1_400\",\n    \"question\": \"what is cuddling on top of a pug dog?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28419\",\n    \"key\": \"36764\",\n    \"description\": \"a cat is cuddling on top of a pug dog.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd8luntFAK1s8qlxdo1_400\",\n    \"question\": \"what is jumping across many obstacles?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3123\",\n    \"key\": \"97784\",\n    \"description\": \"a horse is jumping across many obstacles.\"\n  },\n  {\n    \"video_name\": \"tumblr_no51i7FwV61uuvan0o1_500\",\n    \"question\": \"how many guys is this image of laughing and talking together?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA46889\",\n    \"key\": \"86187\",\n    \"description\": \"this image is of four guys laughing and talking together.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbcj1gnaNb1tt9t0wo1_400\",\n    \"question\": \"what is the man playing the guitar and the other one is playing?\",\n    \"answer\": \"drums\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA36395\",\n    \"key\": \"66981\",\n    \"description\": \"the man is playing the guitar and the other one is playing the drums.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbeftbem4C1qbhvh2o1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8949\",\n    \"key\": \"30533\",\n    \"description\": \"a woman in green sweater is giving autograph.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lxprLdzy1tamb9vo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15486\",\n    \"key\": \"27712\",\n    \"description\": \"a man in a red hat was dancing on a roof.\"\n  },\n  {\n    \"video_name\": \"tumblr_nna22wyqkJ1ur3duoo1_400\",\n    \"question\": \"what is the man sitting at a desk,\",\n    \"answer\": \"and are falling down on top of him ? balloons\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42830\",\n    \"key\": \"41507\",\n    \"description\": \"a man is sitting at a desk,\"\n  },\n  {\n    \"video_name\": \"tumblr_nco0vdTzvA1t7lab9o1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA15476\",\n    \"key\": \"32678\",\n    \"description\": \"a girl with a red shirt is smiling shyly.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkb77mjx6t1qalh3co1_250\",\n    \"question\": \"what is the color of the top?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42616\",\n    \"key\": \"47200\",\n    \"description\": \"a woman wearing a gray top is sitting on a floral sofa while looking miserable.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhbn0vv8Gp1tx8mn0o1_400\",\n    \"question\": \"how many cars is racing in the car race?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12311\",\n    \"key\": \"86055\",\n    \"description\": \"three cars is racing in a car race.\"\n  },\n  {\n    \"video_name\": \"tumblr_nadznytQ3X1tj5zkfo1_500\",\n    \"question\": \"how many gentlemen is sitting on a couch and the one in the middle makes a face?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA26947\",\n    \"key\": \"71352\",\n    \"description\": \"three gentlemen sitting on a couch and the one in the middle makes a face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1jamcgAZ1u0agnbo1_500\",\n    \"question\": \"where is the woman driving.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA41631\",\n    \"key\": \"73509\",\n    \"description\": \"a woman is driving in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqqqwvtQlq1uuas63o1_r1_400\",\n    \"question\": \"how many men is wearing jackets are looking at each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA309\",\n    \"key\": \"57714\",\n    \"description\": \"two men wearing jackets are looking at each other.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2r2aqE0a1u87h83o1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA20625\",\n    \"key\": \"90086\",\n    \"description\": \"a man wearing a gray shirt holds his hands up while talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfqoyfh3sz1u25ovvo1_400\",\n    \"question\": \"what is going on the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA17527\",\n    \"key\": \"63597\",\n    \"description\": \"a coupe car is going on the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd0ttcs6US1s9rulno1_400\",\n    \"question\": \"how many shirtless men are hugging on the field?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA53021\",\n    \"key\": \"78934\",\n    \"description\": \"two shirtless men are hugging on a field.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9qycyrMPe1tid4e3o1_250\",\n    \"question\": \"how many girls in bathing suits play together in the water?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40612\",\n    \"key\": \"15970\",\n    \"description\": \"two girls in bathing suits play together in the water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc49njrbDl1r8db76o1_500\",\n    \"question\": \"what is the color of the couch?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51684\",\n    \"key\": \"93956\",\n    \"description\": \"a man is lying sideways on a brown couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbukbwrbP1tc6jy7o1_250\",\n    \"question\": \"what is the color of the polish?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA22077\",\n    \"key\": \"11226\",\n    \"description\": \"a person wearing black fingernail polish is playing with a lighter.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncix6jq2pe1sj2n0po1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA23289\",\n    \"key\": \"64895\",\n    \"description\": \"a woman wearing black clothes and hat is gesturing with her hands.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne899a7xR51tkmovro1_250\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6905\",\n    \"key\": \"7004\",\n    \"description\": \"a man in a purple jacket and yellow sweater is putting his head down.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngvlk8uuV21rqfergo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43848\",\n    \"key\": \"33540\",\n    \"description\": \"a woman with long black hair is dancing to the music.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh6u5hYl8H1u6njy9o1_250\",\n    \"question\": \"what is the color of the outfit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2125\",\n    \"key\": \"71491\",\n    \"description\": \"a dancer in a black outfit is moving her hips.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhz8czNPjn1qeereko1_1280\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA41402\",\n    \"key\": \"93001\",\n    \"description\": \"a man with black jacket is walking and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbd6dlVfS21tkhe6eo1_400\",\n    \"question\": \"how many man is standing in front of a second man,\",\n    \"answer\": \"nods his head and blinks ? one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23028\",\n    \"key\": \"98274\",\n    \"description\": \"one man standing in front of a second man,\"\n  },\n  {\n    \"video_name\": \"tumblr_n8pwnqmWsZ1qbzxofo1_400\",\n    \"question\": \"where is the boy dancing.\",\n    \"answer\": \"? street\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA11604\",\n    \"key\": \"74550\",\n    \"description\": \"a boy is dancing in the street.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhjoevhfoc1te94myo1_400\",\n    \"question\": \"what is offered the toy but keeps smacking it away?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49834\",\n    \"key\": \"10630\",\n    \"description\": \"a dog is offered a toy but keeps smacking it away.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne26g19AFF1tmflpjo1_500\",\n    \"question\": \"what is the man holding and making it wave?\",\n    \"answer\": \"kitten\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA10953\",\n    \"key\": \"58135\",\n    \"description\": \"a man is holding a kitten and making it wave.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95d2oPwhy1suyqwko1_400\",\n    \"question\": \"what is running and playing with someone?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47157\",\n    \"key\": \"56086\",\n    \"description\": \"a puppy is running and playing with someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8hk45xsAu1tgetb4o1_400\",\n    \"question\": \"what is the kitten touching with their face and paw?\",\n    \"answer\": \"fish\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14193\",\n    \"key\": \"66886\",\n    \"description\": \"a kitten is touching a fish with their face and paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfvp6qwyZi1tx8mn0o1_400\",\n    \"question\": \"what are racing around the track and one creates a dust cloud when it overtakes another?\",\n    \"answer\": \"trucks\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22399\",\n    \"key\": \"55600\",\n    \"description\": \"trucks are racing around a track and one creates a dust cloud when it overtakes another.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfieggHos51tz7e01o1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA19957\",\n    \"key\": \"23240\",\n    \"description\": \"a man dressed in black is rubbing his collar on his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnkqmlsRPP1uoyfr8o1_400\",\n    \"question\": \"what is the color of the suit?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32881\",\n    \"key\": \"64657\",\n    \"description\": \"a boy with black suit is riding in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd1f5mbQIk1t1u5gdo1_250\",\n    \"question\": \"what does the woman slowly pull down?\",\n    \"answer\": \"cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1940\",\n    \"key\": \"10688\",\n    \"description\": \"a woman who is wearing a baseball cap slowly pulls the cap down to cover her face.\"\n  },\n  {\n    \"video_name\": \"tumblr_no4wydu9wG1thnpkoo1_400\",\n    \"question\": \"what is the boy wearing and smiling?\",\n    \"answer\": \"coat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5201\",\n    \"key\": \"74664\",\n    \"description\": \"a boy is wearing a furry coat and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_niqzj9bg5M1r1i417o1_500\",\n    \"question\": \"how many people are jumping and dancing while playing the guitar?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA10687\",\n    \"key\": \"36921\",\n    \"description\": \"two people are jumping and dancing while playing the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_no7jjumZkp1rpuigeo1_250\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39\",\n    \"key\": \"6010\",\n    \"description\": \"a man in a white hat is smiling near a microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndadrh4sIT1sjbkgto1_500\",\n    \"question\": \"what are boys in uniform entering?\",\n    \"answer\": \"room\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52405\",\n    \"key\": \"48121\",\n    \"description\": \"boys in uniform are entering a room.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngybd6WcFt1r7cmcvo1_400\",\n    \"question\": \"how many men in armor are following a woman?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52229\",\n    \"key\": \"88803\",\n    \"description\": \"two men in armor are following a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh3o9muUyk1tm1rujo1_400\",\n    \"question\": \"how many woman are ballet dancing at a barre?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA28942\",\n    \"key\": \"41181\",\n    \"description\": \"two woman are ballet dancing at a barre.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh0tcd4mDD1u2x6xfo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21193\",\n    \"key\": \"32603\",\n    \"description\": \"a woman with long black hair is putting a jacket on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkfj17IEnK1u1pokno1_250\",\n    \"question\": \"how many women are turning in circles around their plastic bats on the ground?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31301\",\n    \"key\": \"53570\",\n    \"description\": \"two women are turning in circles around their plastic bats on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhf9v5oufm1tjhld9o1_500\",\n    \"question\": \"what is falling off the tiny couch?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8163\",\n    \"key\": \"76043\",\n    \"description\": \"a tiny puppy is falling off a tiny couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc2xc108CT1sh1v2uo1_500\",\n    \"question\": \"what is the color of the dog?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26957\",\n    \"key\": \"57385\",\n    \"description\": \"a brown dog is running to water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyaonXHxl1tmnntwo1_400\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38484\",\n    \"key\": \"18209\",\n    \"description\": \"this is a black cat going down a slide.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknrigFden1ty49xko6_250\",\n    \"question\": \"how many people is this walking down a sidewalk?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47597\",\n    \"key\": \"39731\",\n    \"description\": \"this is two people walking down a sidewalk.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2amuCSF01suocdbo1_500\",\n    \"question\": \"what tires are smoking as someone revs the accelerator with the handbrake on?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11179\",\n    \"key\": \"70395\",\n    \"description\": \"A car 's tires are smoking as someone revs the accelerator with the handbrake on.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6bp2wUl71t7jda2o1_400\",\n    \"question\": \"what is playing with the lid of a dustbin?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49778\",\n    \"key\": \"71135\",\n    \"description\": \"a cat is playing with the lid of a dustbin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzlhp8DpG1tgouwlo1_500\",\n    \"question\": \"how many cubs are playing with soft toys?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16998\",\n    \"key\": \"38497\",\n    \"description\": \"two cubs are playing with soft toys.\"\n  },\n  {\n    \"video_name\": \"tumblr_naxwhdLvNY1qgf0vjo1_500\",\n    \"question\": \"how many fingers does the woman,\",\n    \"answer\": \"with long brown hair , wink and raises to her face ? two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA7282\",\n    \"key\": \"85323\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_ncgx0gSMVZ1rne0ito1_400\",\n    \"question\": \"what is the handsome young man throwing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16610\",\n    \"key\": \"24150\",\n    \"description\": \"a handsome young man is throwing a black hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxsiqiqON1u7lcb4o1_500\",\n    \"question\": \"what does the man steer down a street?\",\n    \"answer\": \"uncontrollably\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA15798\",\n    \"key\": \"77450\",\n    \"description\": \"a man steers a car uncontrollably down a street.\"\n  },\n  {\n    \"video_name\": \"tumblr_naje2j4n8S1qazjvjo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA49192\",\n    \"key\": \"47238\",\n    \"description\": \"a woman with long black hair is looking very angry.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf3ataD6lI1sa0lndo1_500\",\n    \"question\": \"how many men are staring at each other suspiciously?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29040\",\n    \"key\": \"76533\",\n    \"description\": \"two men are staring at each other suspiciously.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfb23gwoUs1t8bzkuo1_500\",\n    \"question\": \"how many men are talking into the mic and smiling?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA41380\",\n    \"key\": \"96628\",\n    \"description\": \"3 men are talking into a mic and smiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9hbdm15kn1su97m6o1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34779\",\n    \"key\": \"33429\",\n    \"description\": \"a girl in black leaned back and smiled.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q2u62j8H1sqofgbo1_400\",\n    \"question\": \"what is taking off and leaving the lot of smoke?\",\n    \"answer\": \"rocket\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9383\",\n    \"key\": \"44819\",\n    \"description\": \"a rocket is taking off and leaving a lot of smoke.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncy21yF0Kz1sn0ag3o1_400\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"yellow\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39252\",\n    \"key\": \"12421\",\n    \"description\": \"a man wearing a hat and a yellow jacket is tilting his head to the side.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfmprtryRm1s013u0o2_r1_500\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14091\",\n    \"key\": \"55145\",\n    \"description\": \"a woman wearing a blue shirt is dancing around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nju11yo3w51un17g7o1_250\",\n    \"question\": \"where are the couple dancing.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA38267\",\n    \"key\": \"93722\",\n    \"description\": \"a couple are dancing in a large,\"\n  },\n  {\n    \"video_name\": \"tumblr_nate0yTgIe1tkqgqvo1_250\",\n    \"question\": \"what is the woman lighting a cigarette and covering with her hand?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25044\",\n    \"key\": \"47078\",\n    \"description\": \"a woman is lighting a cigarette and covering her cigarette with her hand.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcyybdpPO1qct8qno1_400\",\n    \"question\": \"what is running towards the cow?\",\n    \"answer\": \"sheep\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51618\",\n    \"key\": \"96856\",\n    \"description\": \"a sheep is running towards a cow.\"\n  },\n  {\n    \"video_name\": \"tumblr_nacr8iiHHd1tjztg6o1_400\",\n    \"question\": \"what is driven along the roadway and sprays water?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48416\",\n    \"key\": \"46433\",\n    \"description\": \"a car is driven along a roadway and sprays water.\"\n  },\n  {\n    \"video_name\": \"tumblr_nagxk9TdwJ1t653keo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA2683\",\n    \"key\": \"53209\",\n    \"description\": \"the woman with black hair was sitting in the chair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqic81YShE1uydvxfo1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA14264\",\n    \"key\": \"58873\",\n    \"description\": \"a woman in a black t-shirt is dancing with a group of people.\"\n  },\n  {\n    \"video_name\": \"tumblr_njc40fOfLU1rs757qo1_250\",\n    \"question\": \"what is the woman,\",\n    \"answer\": \"wearing , raises two fingers to her face ? cap\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8347\",\n    \"key\": \"21692\",\n    \"description\": \"a woman,\"\n  },\n  {\n    \"video_name\": \"tumblr_nekejw2Vnh1tpgapwo1_500\",\n    \"question\": \"how many guys laugh at something they see on the laptop?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA23443\",\n    \"key\": \"77959\",\n    \"description\": \"two guys laugh at something they see on the laptop.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqjman0b8a1qcehyco1_400\",\n    \"question\": \"what is driven over bumps in the road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52208\",\n    \"key\": \"50340\",\n    \"description\": \"a car is driven over bumps in the road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nki72xibIX1tatohao1_250\",\n    \"question\": \"what is slapping the dog in the face?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9032\",\n    \"key\": \"3605\",\n    \"description\": \"a cat is slapping a dog in the face.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8q3yiBAaD1sfpgb1o1_250\",\n    \"question\": \"what does the man in distress make?\",\n    \"answer\": \"call\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA3629\",\n    \"key\": \"53297\",\n    \"description\": \"a man in distress makes an emotional phone call.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2s6tD89Q1tdqz0co1_500\",\n    \"question\": \"how many men are talking into microphones and laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA24869\",\n    \"key\": \"67602\",\n    \"description\": \"three men are talking into microphones and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nprmzqr4Z81tkeou1o1_400\",\n    \"question\": \"what is the color of the clothes?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA255\",\n    \"key\": \"18456\",\n    \"description\": \"three young star wearing white clothes are dancing with exciting look.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2wtt5EEO1tnlurpo1_250\",\n    \"question\": \"how many people are sitting on the couch?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA19627\",\n    \"key\": \"12826\",\n    \"description\": \"three people are sitting on a couch.\"\n  },\n  {\n    \"video_name\": \"tumblr_nmgov3vk2o1trtwh4o1_500\",\n    \"question\": \"what is the woman opening?\",\n    \"answer\": \"door\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48923\",\n    \"key\": \"26446\",\n    \"description\": \"a woman is opening the door to go inside.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbsow8trHJ1tlsvejo1_400\",\n    \"question\": \"what looks dangerously close to the cage?\",\n    \"answer\": \"shark\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11741\",\n    \"key\": \"70700\",\n    \"description\": \"the shark looks dangerously close to the cage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9n7fxGuGC1rw9vqmo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA33124\",\n    \"key\": \"17157\",\n    \"description\": \"a man dressed in black is rolling his eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_n99p6kFi1i1t0kzbeo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16618\",\n    \"key\": \"62297\",\n    \"description\": \"the guy with the black hair is riding in the back of the car,\"\n  },\n  {\n    \"video_name\": \"tumblr_nc6j45sSgI1s0altuo1_400\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA52086\",\n    \"key\": \"30520\",\n    \"description\": \"a girl dressed in black is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngcvxuaICP1u5u010o1_400\",\n    \"question\": \"what did the man light with a match?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40227\",\n    \"key\": \"96793\",\n    \"description\": \"a man lit a cigarette with a match.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb692thYgT1toja74o1_400\",\n    \"question\": \"what does the singer swing around?\",\n    \"answer\": \"microphone\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA53057\",\n    \"key\": \"35829\",\n    \"description\": \"a singer swings the microphone around while another plays the guitar.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhvvdlFwGZ1qdbe91o1_400\",\n    \"question\": \"how many men are laughing together as one waves his tie?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA1391\",\n    \"key\": \"77610\",\n    \"description\": \"two men are laughing together as one waves his tie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nehcl8imz61tmewk1o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21502\",\n    \"key\": \"5291\",\n    \"description\": \"a boy with black hair is talking with other boy.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95dgjajvW1syjz5uo1_250\",\n    \"question\": \"how many guys are laughing out loud on the talk show?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20288\",\n    \"key\": \"13891\",\n    \"description\": \"three guys are laughing out loud on a talk show.\"\n  },\n  {\n    \"video_name\": \"tumblr_nku8674mFY1qcrdgyo1_250\",\n    \"question\": \"what is the hand scratching and the cat is pushing the hand back?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49872\",\n    \"key\": \"3555\",\n    \"description\": \"a hand is scratching a cat and the cat is pushing the hand back.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhomuemFfD1u684yco1_250\",\n    \"question\": \"what is the cute white cat holding up and looking around?\",\n    \"answer\": \"paw\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA22768\",\n    \"key\": \"13612\",\n    \"description\": \"a cute white cat is holding up its paw and looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkihuwMaiG1qff887o1_500\",\n    \"question\": \"what is the ginger man eating with chopsticks?\",\n    \"answer\": \"noodles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28358\",\n    \"key\": \"53061\",\n    \"description\": \"a ginger man is eating noodles with chopsticks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbis63V24E1tpt5dko1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA10328\",\n    \"key\": \"33072\",\n    \"description\": \"a woman is fighting a man and takes him to the ground in a blue uniform.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9k8xzjz181tiur4yo1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA50276\",\n    \"key\": \"12182\",\n    \"description\": \"a man in a red track suit top with black hair is talking.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng7t0cL34T1siy4hto1_500\",\n    \"question\": \"what is the color of the glasses?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40654\",\n    \"key\": \"45116\",\n    \"description\": \"a girl in black glasses is chewing and looking down.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhpkjf8wtX1u0ag05o1_250\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42919\",\n    \"key\": \"41440\",\n    \"description\": \"there 's a lady with black hair and rainbow colored dress spinning.\"\n  },\n  {\n    \"video_name\": \"tumblr_nanp56KwNG1ra8x2co1_250\",\n    \"question\": \"what does the baby struggle and suddenly jumps in front of the baby?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50425\",\n    \"key\": \"12150\",\n    \"description\": \"a baby struggles to crawl and a dog suddenly jumps in front of the baby.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngkwncNAQg1u323uto1_500\",\n    \"question\": \"what is the woman with red lips smoking?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32626\",\n    \"key\": \"80350\",\n    \"description\": \"a woman with red lips is smoking a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nedx56ViKO1tl8yi6o1_500\",\n    \"question\": \"what hits the law enforcement officer?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA6996\",\n    \"key\": \"78007\",\n    \"description\": \"an armored car hits a law enforcement officer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nduz284UAa1t4de4ao1_250\",\n    \"question\": \"how many people are running towards each other and one catches the other when they jump towards them?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA20467\",\n    \"key\": \"47011\",\n    \"description\": \"two people are running towards each other and one catches the other when they jump towards them.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqwmhysJ721ua5q7mo1_500\",\n    \"question\": \"how many men dressed in striped shirts and white hats are looking down from a balcony?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA37904\",\n    \"key\": \"32856\",\n    \"description\": \"two men dressed in striped shirts and white hats are looking down from a balcony.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndq39cqvhJ1qhvk2yo1_400\",\n    \"question\": \"what is dancing under the water,\",\n    \"answer\": \"swinging its hips from side to side ? turtle\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA49860\",\n    \"key\": \"7895\",\n    \"description\": \"a turtle is dancing under the water,\"\n  },\n  {\n    \"video_name\": \"tumblr_nhzgghFVtQ1u5gb4jo1_400\",\n    \"question\": \"what is the girl wearing and waving?\",\n    \"answer\": \"wig\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA18187\",\n    \"key\": \"35122\",\n    \"description\": \"a girl is wearing a blond wig and waving.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkoga4fMRx1r9ka6jo1_500\",\n    \"question\": \"how many guys are facing each other with spoons in their mouths?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA52810\",\n    \"key\": \"90422\",\n    \"description\": \"two guys are facing each other with spoons in their mouths.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc0v3rGCgq1srd245o1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA46555\",\n    \"key\": \"49171\",\n    \"description\": \"a man in a white jacket is singing on stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkojhorUl81sjmrcro1_400\",\n    \"question\": \"what is the man wearing a black shirt was taking off?\",\n    \"answer\": \"skates\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28959\",\n    \"key\": \"48297\",\n    \"description\": \"a man wearing a black shirt was taking off his ice skates.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb7m6oseVy1tjgll6o1_400\",\n    \"question\": \"what is the man with dyed hair taking off and shaking his head?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA43090\",\n    \"key\": \"35257\",\n    \"description\": \"a man with dyed hair is taking off his hat and shaking his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nff9qwV7Kn1t1ack3o1_500\",\n    \"question\": \"where is the guy talking.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA28432\",\n    \"key\": \"88562\",\n    \"description\": \"a guy is talking in a walking car.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjtdvdsMt1sdiz3bo1_400\",\n    \"question\": \"what is the color of the room?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38064\",\n    \"key\": \"33402\",\n    \"description\": \"a person in a green room puts his arms over his head and shakes his pelvis.\"\n  },\n  {\n    \"video_name\": \"tumblr_njrzdxnmrz1tgetb4o1_250\",\n    \"question\": \"what is playing with a gardening tool hits a man in the groin?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA38077\",\n    \"key\": \"39882\",\n    \"description\": \"a dog playing with a gardening tool hits a man in the groin.\"\n  },\n  {\n    \"video_name\": \"tumblr_nnzz2eyFYT1tvo8x5o1_500\",\n    \"question\": \"where does the man id dancing whilst being driven.\",\n    \"answer\": \"? car\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA36807\",\n    \"key\": \"60863\",\n    \"description\": \"a man id dancing whilst being driven in a car.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbwoiwcXo1reut2bo1_500\",\n    \"question\": \"how many men are hugging?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA40569\",\n    \"key\": \"91828\",\n    \"description\": \"two men are hugging and one of them buries his face into the other 's shoulder.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2ar7n3F71u4v3ypo1_400\",\n    \"question\": \"what is hugging the can of beer?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42311\",\n    \"key\": \"22058\",\n    \"description\": \"a cat is hugging a can of beer.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne2my0wqMO1tmg8yyo1_500\",\n    \"question\": \"what is the person singing and waiving?\",\n    \"answer\": \"stick\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2542\",\n    \"key\": \"48460\",\n    \"description\": \"a person is singing and waiving a drum stick.\"\n  },\n  {\n    \"video_name\": \"tumblr_np0stcDMuz1u3z45ao1_500\",\n    \"question\": \"where is the man playing a guitar shirtless.\",\n    \"answer\": \"? room\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA302\",\n    \"key\": \"46013\",\n    \"description\": \"a man is playing a guitar shirtless in a dark room.\"\n  },\n  {\n    \"video_name\": \"tumblr_nglczjnOxY1s3ffcpo1_250\",\n    \"question\": \"what do the man and woman sit in a car,\",\n    \"answer\": \"they look at one another , and the woman exits ? car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37291\",\n    \"key\": \"47334\",\n    \"description\": \"a man and woman sit in a car,\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrmv0Ds3t1tc97obo1_500\",\n    \"question\": \"what is the color of the rag?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24968\",\n    \"key\": \"71433\",\n    \"description\": \"a guy in a black dew rag is holding a dog while running and screaming.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhyz55Zgxg1tx8mn0o1_400\",\n    \"question\": \"what is driving down the dirt road?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51120\",\n    \"key\": \"78412\",\n    \"description\": \"a car is driving down a dirt road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni1vxsCvAy1s71nvbo1_500\",\n    \"question\": \"what sways unsteadily as it takes off from the runway?\",\n    \"answer\": \"airplane\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA19562\",\n    \"key\": \"94662\",\n    \"description\": \"an airplane sways unsteadily as it takes off from the runway.\"\n  },\n  {\n    \"video_name\": \"tumblr_nolxxzhyg81tk2ngvo1_400\",\n    \"question\": \"what stole all the food off the table?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46630\",\n    \"key\": \"49339\",\n    \"description\": \"the dog stole all the food off the table.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne5uusuvNn1u2p22ho1_250\",\n    \"question\": \"how many men are happy and clapping?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA50594\",\n    \"key\": \"13113\",\n    \"description\": \"the two men are happy and clapping.\"\n  },\n  {\n    \"video_name\": \"tumblr_nggyrnra3Z1u5urkpo1_500\",\n    \"question\": \"where does the man dance,\",\n    \"answer\": \"his friends join in the background . ? chair\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA3441\",\n    \"key\": \"83489\",\n    \"description\": \"a man dances in a chair,\"\n  },\n  {\n    \"video_name\": \"tumblr_nrgl64288d1uayg4ko1_500\",\n    \"question\": \"what is someone riding on through a city?\",\n    \"answer\": \"insect\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1000\",\n    \"key\": \"82882\",\n    \"description\": \"someone is riding on a flying insect through a city.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncqa0vZplB1u02d5so1_400\",\n    \"question\": \"what is the girl smoking while sitting?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA39213\",\n    \"key\": \"51131\",\n    \"description\": \"a girl is smoking a cigarette while sitting.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfyngbHW2w1sfwliho1_400\",\n    \"question\": \"what is laying down with the pair of tongs and a mustache?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA28306\",\n    \"key\": \"37693\",\n    \"description\": \"a cat is laying down with a pair of tongs and a mustache.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc94ra2nr01r73xvvo1_500\",\n    \"question\": \"how many girls are walking fast on the stage?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA29195\",\n    \"key\": \"62033\",\n    \"description\": \"two girls are walking fast on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtknzed0C1sgeuwzo1_400\",\n    \"question\": \"what is the color of the grabs?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA48422\",\n    \"key\": \"25648\",\n    \"description\": \"a man dressed in white grabs a chainsaw and chases another man through the trees.\"\n  },\n  {\n    \"video_name\": \"tumblr_no66cpooeo1us355ko1_400\",\n    \"question\": \"how many men are running?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA22170\",\n    \"key\": \"64490\",\n    \"description\": \"two men are running,\"\n  },\n  {\n    \"video_name\": \"tumblr_nftwuicUUR1rmlxeco1_400\",\n    \"question\": \"what is the color of the sweater?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA51086\",\n    \"key\": \"32765\",\n    \"description\": \"this image is of a girl in a purple sweater smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_n95d2oPwhy1suyqwko1_400\",\n    \"question\": \"what smiles and walks toward the view?\",\n    \"answer\": \"pug\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA41755\",\n    \"key\": \"56086\",\n    \"description\": \"a light brown pug smiles and walks toward the view.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncbkukZabe1qmbwdqo1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA17760\",\n    \"key\": \"69170\",\n    \"description\": \"a black man is making weird faces at someone.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngb2ovfyKz1qeagqto1_500\",\n    \"question\": \"how many women are dancing together on the stage?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA18071\",\n    \"key\": \"87675\",\n    \"description\": \"three women are dancing together on a stage.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9lnqa0TkE1rac9v2o1_400\",\n    \"question\": \"how many guys are kissing each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6709\",\n    \"key\": \"47875\",\n    \"description\": \"two guys are kissing each other and one is taking off his shirt.\"\n  },\n  {\n    \"video_name\": \"tumblr_nis0671Qu01tjqbh0o1_250\",\n    \"question\": \"what is in the bath tub taking a shower?\",\n    \"answer\": \"dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA8917\",\n    \"key\": \"1463\",\n    \"description\": \"a dog is in a bath tub taking a shower.\"\n  },\n  {\n    \"video_name\": \"tumblr_nr6iikzrr01subslpo1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"brown\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA39030\",\n    \"key\": \"35867\",\n    \"description\": \"a man with brown hair turns and smiles.\"\n  },\n  {\n    \"video_name\": \"tumblr_nknkvtNKt41u7nielo6_250\",\n    \"question\": \"what is the young man holding a helmet cross the sidewalk and enters?\",\n    \"answer\": \"store\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA52034\",\n    \"key\": \"44978\",\n    \"description\": \"a young man holding a helmet cross the sidewalk and enters a store.\"\n  },\n  {\n    \"video_name\": \"tumblr_nov7ahPDEa1s8fgq7o1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA44662\",\n    \"key\": \"89222\",\n    \"description\": \"it is a man taking off his hat and touching his red hair.\"\n  },\n  {\n    \"video_name\": \"tumblr_nju6ndyMjh1u9rjjqo1_400\",\n    \"question\": \"what is the man skateboarding down?\",\n    \"answer\": \"road\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA47558\",\n    \"key\": \"61971\",\n    \"description\": \"a man is skateboarding down a road when he narrowly misses a car and swerves into the verge.\"\n  },\n  {\n    \"video_name\": \"tumblr_nna22wyqkJ1ur3duoo1_400\",\n    \"question\": \"what is the guy sitting down and are falling?\",\n    \"answer\": \"balloons\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA50102\",\n    \"key\": \"41507\",\n    \"description\": \"a guy is sitting down and some balloons are falling.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrc4axMW2T1r92mkgo1_400\",\n    \"question\": \"what is the car turning on the track?\",\n    \"answer\": \"donuts\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA11058\",\n    \"key\": \"62304\",\n    \"description\": \"the car is turning donuts on the track.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9wkpeXC991re6qqko1_500\",\n    \"question\": \"how many persons are talking while the black woman is turn her head?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA6200\",\n    \"key\": \"88635\",\n    \"description\": \"two persons are talking while a black woman is turn her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbonmh32QP1slwrsuo1_400\",\n    \"question\": \"what is playing around with the tablet?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA42789\",\n    \"key\": \"13378\",\n    \"description\": \"a little cat is playing around with the tablet.\"\n  },\n  {\n    \"video_name\": \"tumblr_na84gkxrUE1tdxr8ko1_500\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24755\",\n    \"key\": \"90129\",\n    \"description\": \"a boy with short black hair is looking away and turns his head to the right.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbrgn3y2N31tx8mn0o1_400\",\n    \"question\": \"what is this skidding off of the track and coming to a stop next to a wall?\",\n    \"answer\": \"car\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA46580\",\n    \"key\": \"80363\",\n    \"description\": \"this is a race car skidding off of the track and coming to a stop next to a wall.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9kuvyUJT91sual3ro1_250\",\n    \"question\": \"what is the color of the cat?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA38275\",\n    \"key\": \"3721\",\n    \"description\": \"a white cat walks in water while wearing a harness.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb2tcoMsrZ1qi5axlo1_500\",\n    \"question\": \"what is the color of the guy?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13482\",\n    \"key\": \"76630\",\n    \"description\": \"white guy with sunglasses is looking towards his left.\"\n  },\n  {\n    \"video_name\": \"tumblr_nit1e4bC5N1tx8mn0o1_400\",\n    \"question\": \"what are racing along the race track?\",\n    \"answer\": \"cars\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25007\",\n    \"key\": \"96402\",\n    \"description\": \"the cars are racing along the race track.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndis19khrB1tj3q2po1_250\",\n    \"question\": \"what is the young man with blonde hair eating?\",\n    \"answer\": \"cookie\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA2670\",\n    \"key\": \"5718\",\n    \"description\": \"a young man with blonde hair is eating a chocolate chip cookie.\"\n  },\n  {\n    \"video_name\": \"tumblr_nf2c6jqkXE1tzlevco1_250\",\n    \"question\": \"how many beautiful boys with black and white clothes are dancing?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42744\",\n    \"key\": \"1608\",\n    \"description\": \"two beautiful boys with black and white clothes are dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ng2vlqcXhu1sneimso1_500\",\n    \"question\": \"how many people are standing by each other?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA123\",\n    \"key\": \"101840\",\n    \"description\": \"two people are standing by each other and one is smoking.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko149Q7AN1u8uroco1_250\",\n    \"question\": \"what is the color of the kittens?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13117\",\n    \"key\": \"43578\",\n    \"description\": \"a duck is sitting between two white kittens.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkvji4ecmU1qjxfevo1_250\",\n    \"question\": \"what appears to smile,\",\n    \"answer\": \"then sticks its tongue out ? dog\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9422\",\n    \"key\": \"8778\",\n    \"description\": \"a gray and white dog appears to smile,\"\n  },\n  {\n    \"video_name\": \"tumblr_neu0myvkQY1u28lfio2_1280\",\n    \"question\": \"how many men dressed in black are smiling and laughing?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA15977\",\n    \"key\": \"92767\",\n    \"description\": \"3 men dressed in black are smiling and laughing.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndbdow0oY81tb2kgho1_400\",\n    \"question\": \"what is the woman with long red nails smoking?\",\n    \"answer\": \"cigar\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA920\",\n    \"key\": \"96428\",\n    \"description\": \"a woman with long red nails is smoking a cigar.\"\n  },\n  {\n    \"video_name\": \"tumblr_noqj7pGE6R1uwqr4do1_250\",\n    \"question\": \"how many people are playing around together?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA31383\",\n    \"key\": \"14442\",\n    \"description\": \"the two people are playing around together.\"\n  },\n  {\n    \"video_name\": \"tumblr_neyjq3tjnp1rpq8aco1_400\",\n    \"question\": \"how many boxer is pummeling another boxer in a ring?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA5515\",\n    \"key\": \"82800\",\n    \"description\": \"one boxer is pummeling another boxer in a ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nldohwN6Uw1rum00mo1_500\",\n    \"question\": \"where is the young couple visiting a little boy.\",\n    \"answer\": \"? bed\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA9456\",\n    \"key\": \"77437\",\n    \"description\": \"a young couple is visiting a little boy in a hospital bed.\"\n  },\n  {\n    \"video_name\": \"tumblr_nk5pn1wSC41r36r8mo1_500\",\n    \"question\": \"what is turning his head?\",\n    \"answer\": \"man\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA40350\",\n    \"key\": \"34236\",\n    \"description\": \"a mask man is turning his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncebs8f4oQ1t34v14o1_250\",\n    \"question\": \"how many wrestler body slams another in a boxing ring?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA27620\",\n    \"key\": \"29120\",\n    \"description\": \"one wrestler body slams another in a boxing ring.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb6bp2wUl71t7jda2o1_400\",\n    \"question\": \"what is hitting the waste paper bin with its paw?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA1016\",\n    \"key\": \"71135\",\n    \"description\": \"a cat is hitting a waste paper bin with its paw.\"\n  },\n  {\n    \"video_name\": \"tumblr_nd564udcM31thydgho1_400\",\n    \"question\": \"how many astronauts in space and one floated away?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA8889\",\n    \"key\": \"35050\",\n    \"description\": \"two astronauts in space and one floated away.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbhkpbYVJn1sbqayyo1_250\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16114\",\n    \"key\": \"6728\",\n    \"description\": \"a man in black smokes a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbnsu0m0or1rig0zgo1_400\",\n    \"question\": \"what is the man lighting with a cigarette?\",\n    \"answer\": \"cigarette\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA25124\",\n    \"key\": \"34066\",\n    \"description\": \"the man is lighting his cigarette with a cigarette.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngtd3euAIt1rwc3zyo1_400\",\n    \"question\": \"where is the man looking through binoculars and a woman closes her shirt.\",\n    \"answer\": \"? door\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA12830\",\n    \"key\": \"28060\",\n    \"description\": \"a man is looking through binoculars and a woman closes her shirt in a door.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkyaonXHxl1tmnntwo1_400\",\n    \"question\": \"what is this going down a slide?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA33840\",\n    \"key\": \"18209\",\n    \"description\": \"this is a black cat going down a slide.\"\n  },\n  {\n    \"video_name\": \"tumblr_n810pw2rtt1qgii4so1_1280\",\n    \"question\": \"what is the color of the stares?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA21984\",\n    \"key\": \"84268\",\n    \"description\": \"a man dressed in white stares to the right.\"\n  },\n  {\n    \"video_name\": \"tumblr_ne4kuuZpVa1rlngqxo1_400\",\n    \"question\": \"what is the man wearing a red hat and earphones is using?\",\n    \"answer\": \"computer\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA32806\",\n    \"key\": \"62540\",\n    \"description\": \"a man wearing a red hat and earphones is using a computer.\"\n  },\n  {\n    \"video_name\": \"tumblr_nqgkjfHKBs1to8r9ro1_250\",\n    \"question\": \"what is the color of the girl?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA13337\",\n    \"key\": \"69441\",\n    \"description\": \"a white girl wearing black is tying up her boots.\"\n  },\n  {\n    \"video_name\": \"tumblr_njva29Mg0d1sbjmhmo1_500\",\n    \"question\": \"how many images of the same man is holding his hands appear?\",\n    \"answer\": \"three\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA17512\",\n    \"key\": \"84190\",\n    \"description\": \"three images of the same man holding his hands appear.\"\n  },\n  {\n    \"video_name\": \"tumblr_nppnpzGIMu1sgpl4mo1_400\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA42719\",\n    \"key\": \"57260\",\n    \"description\": \"a man with shirt white is singing to microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nad9ej0PCm1sk96t7o1_400\",\n    \"question\": \"what is the color of the toy?\",\n    \"answer\": \"blue\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4812\",\n    \"key\": \"63718\",\n    \"description\": \"two policemen are chasing and hitting a blue toy.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkodyvmkCZ1u9f952o9_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA24758\",\n    \"key\": \"12301\",\n    \"description\": \"a man in a black shirt is giving a thumbs up and wearing a colorful hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8rboumR0F1skcntdo1_250\",\n    \"question\": \"what is the color of the lipstick?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA6684\",\n    \"key\": \"38367\",\n    \"description\": \"a woman with red lipstick is blowing a kiss.\"\n  },\n  {\n    \"video_name\": \"tumblr_nexhjhoBOY1s9emmto1_400\",\n    \"question\": \"what are hands opening,\",\n    \"answer\": \"and then a massive explosion occurs ? container\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51478\",\n    \"key\": \"37018\",\n    \"description\": \"hands are opening a container,\"\n  },\n  {\n    \"video_name\": \"tumblr_no3edfgW4X1u71py1o1_250\",\n    \"question\": \"what is down stairs with short steps?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9296\",\n    \"key\": \"12211\",\n    \"description\": \"a beautiful robot is down stairs with short steps.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9fdnvH5Kp1t3or8jo1_500\",\n    \"question\": \"how many people are kissing in front of fireworks?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA12436\",\n    \"key\": \"40793\",\n    \"description\": \"two people are kissing in front of fireworks.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbigfaMpHw1rhe0jeo1_250\",\n    \"question\": \"how many man holds another while he licks his face?\",\n    \"answer\": \"one\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA47887\",\n    \"key\": \"41462\",\n    \"description\": \"one man holds another while he licks his face.\"\n  },\n  {\n    \"video_name\": \"tumblr_nko38yTj0p1u5tusoo1_400\",\n    \"question\": \"what is the color of the hair?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8888\",\n    \"key\": \"54430\",\n    \"description\": \"a man with black hair is chewing gum and nodding his head.\"\n  },\n  {\n    \"video_name\": \"tumblr_nc31o8OdwG1qhq89to1_500\",\n    \"question\": \"what is driving and attacking another robot?\",\n    \"answer\": \"robot\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA26566\",\n    \"key\": \"58113\",\n    \"description\": \"a robot is driving and attacking another robot.\"\n  },\n  {\n    \"video_name\": \"tumblr_n949p2g4GF1tabm5fo1_500\",\n    \"question\": \"what are people riding down a dirt road?\",\n    \"answer\": \"bicycles\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA24841\",\n    \"key\": \"67205\",\n    \"description\": \"people are riding their bicycles down a dirt road.\"\n  },\n  {\n    \"video_name\": \"tumblr_nbag18Nh9E1s78p7ko1_500\",\n    \"question\": \"what is the girl holding a snake and kisses the snake,\",\n    \"answer\": \"then kisses her ? snake\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA30463\",\n    \"key\": \"59188\",\n    \"description\": \"a girl is holding a snake and kisses the snake,\"\n  },\n  {\n    \"video_name\": \"tumblr_neyimghSIJ1sqwf9so1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA40639\",\n    \"key\": \"75844\",\n    \"description\": \"a black man flat collapsed and praying in road.\"\n  },\n  {\n    \"video_name\": \"tumblr_ndmmafYKjg1smipaso1_500\",\n    \"question\": \"what is the man licking his lips and wearing?\",\n    \"answer\": \"hat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51031\",\n    \"key\": \"20608\",\n    \"description\": \"a man is licking his lips and wearing a white hat.\"\n  },\n  {\n    \"video_name\": \"tumblr_nauniqfrew1tuke21o1_400\",\n    \"question\": \"what is the man riding past a parked car?\",\n    \"answer\": \"skateboard\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA51504\",\n    \"key\": \"24409\",\n    \"description\": \"a man is riding a skateboard past a parked car.\"\n  },\n  {\n    \"video_name\": \"tumblr_novf5fUQYT1rtmb48o1_400\",\n    \"question\": \"what is the color of the uniform?\",\n    \"answer\": \"green\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA43875\",\n    \"key\": \"96174\",\n    \"description\": \"a soccer player in a green uniform is running in a circle.\"\n  },\n  {\n    \"video_name\": \"tumblr_nene7m6nXo1shp2peo1_400\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA4836\",\n    \"key\": \"65485\",\n    \"description\": \"man white is moving his head and eyes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nfdhg6tHlo1s4pilyo1_400\",\n    \"question\": \"what is the brush sucking up and then it reverses?\",\n    \"answer\": \"spider\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA14707\",\n    \"key\": \"65579\",\n    \"description\": \"a brush is sucking a spider up and then it reverses.\"\n  },\n  {\n    \"video_name\": \"tumblr_ni2r0l3BTc1slj978o1_400\",\n    \"question\": \"what is sniffing something on the ground?\",\n    \"answer\": \"fox\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5337\",\n    \"key\": \"49338\",\n    \"description\": \"a fox is sniffing something on the ground.\"\n  },\n  {\n    \"video_name\": \"tumblr_nb1vzhS7Dk1s3t57eo1_500\",\n    \"question\": \"how many man are saying something at somebody?\",\n    \"answer\": \"two\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA16049\",\n    \"key\": \"73215\",\n    \"description\": \"the two man are saying something at somebody.\"\n  },\n  {\n    \"video_name\": \"tumblr_nibscxbjOp1qlbj8uo1_500\",\n    \"question\": \"what is the color of the hat?\",\n    \"answer\": \"red\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA16494\",\n    \"key\": \"84835\",\n    \"description\": \"the wearing a red hat is dancing.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhxyiivlNC1t06byno1_400\",\n    \"question\": \"what is the tank going?\",\n    \"answer\": \"brakes\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA5108\",\n    \"key\": \"28984\",\n    \"description\": \"a tank is going at full speed and then brakes.\"\n  },\n  {\n    \"video_name\": \"tumblr_nkngomyhg61u9o884o1_400\",\n    \"question\": \"what is licking and looking around?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA12816\",\n    \"key\": \"21925\",\n    \"description\": \"a cat is licking and looking around.\"\n  },\n  {\n    \"video_name\": \"tumblr_ngzs5oG4kT1tkvhb9o1_500\",\n    \"question\": \"where are two women fighting and one manages to throw the other.\",\n    \"answer\": \"? cage\",\n    \"type\": \"3\",\n    \"vid_id\": \"FRAMEQA19467\",\n    \"key\": \"95880\",\n    \"description\": \"two women are fighting in a cage and one manages to throw the other.\"\n  },\n  {\n    \"video_name\": \"tumblr_nki24gDtbq1u554gyo1_500\",\n    \"question\": \"what is the man lifting?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48638\",\n    \"key\": \"74869\",\n    \"description\": \"a man is lifting a cat so it may play with an insect on the ceiling.\"\n  },\n  {\n    \"video_name\": \"tumblr_muxykdVVUk1syvawyo1_400\",\n    \"question\": \"what is the color of the t-shirt?\",\n    \"answer\": \"white\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA34142\",\n    \"key\": \"10492\",\n    \"description\": \"a guy wearing a white t-shirt whose hair is messy and a girl wearing a dark outfit is frowning.\"\n  },\n  {\n    \"video_name\": \"tumblr_nrjzfx6FL41uz06r7o1_400\",\n    \"question\": \"what walks in the large hamster wheel device?\",\n    \"answer\": \"cat\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA37987\",\n    \"key\": \"13614\",\n    \"description\": \"a cat walks in a large hamster wheel device.\"\n  },\n  {\n    \"video_name\": \"tumblr_nam5vurNJs1qzq1wdo1_250\",\n    \"question\": \"what is the color of the shirt?\",\n    \"answer\": \"gray\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA26901\",\n    \"key\": \"1445\",\n    \"description\": \"a man wearing a gray shirt is kissing a woman.\"\n  },\n  {\n    \"video_name\": \"tumblr_new8owyMCV1s81cpko1_500\",\n    \"question\": \"what is the color of the jacket?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA8906\",\n    \"key\": \"100331\",\n    \"description\": \"The man 's wearing a black leather jacket is looking upwards.\"\n  },\n  {\n    \"video_name\": \"tumblr_nhuah4DLZD1u2ui2ko1_500\",\n    \"question\": \"what is the color of the man?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA32004\",\n    \"key\": \"86869\",\n    \"description\": \"man in black is racing his car.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9e2tqLvWh1tdmffyo1_250\",\n    \"question\": \"what is held up and looks at its owner?\",\n    \"answer\": \"puppy\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA9592\",\n    \"key\": \"25535\",\n    \"description\": \"a small puppy is held up and looks at its owner.\"\n  },\n  {\n    \"video_name\": \"tumblr_ncy89sSxEH1t4eui2o1_500\",\n    \"question\": \"what cuddle and lick one another?\",\n    \"answer\": \"lions\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA23857\",\n    \"key\": \"84234\",\n    \"description\": \"two lions cuddle and lick one another.\"\n  },\n  {\n    \"video_name\": \"tumblr_n9g5efSoWD1rsxypwo1_400\",\n    \"question\": \"what cuddle together in the small container?\",\n    \"answer\": \"kittens\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA48203\",\n    \"key\": \"22459\",\n    \"description\": \"three kittens cuddle together in a small container.\"\n  },\n  {\n    \"video_name\": \"tumblr_njy4iao3Hy1u2drlto1_500\",\n    \"question\": \"what is the color of the woman?\",\n    \"answer\": \"black\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA7188\",\n    \"key\": \"44905\",\n    \"description\": \"a woman in black is laughing and holding her head.\"\n  },\n  {\n    \"video_name\": \"tumblr_n8u2swNpQV1qe2thio1_500\",\n    \"question\": \"what is running along the beach during the night?\",\n    \"answer\": \"horse\",\n    \"type\": \"0\",\n    \"vid_id\": \"FRAMEQA16636\",\n    \"key\": \"73413\",\n    \"description\": \"a horse is running along a beach during the night.\"\n  },\n  {\n    \"video_name\": \"tumblr_nlsgn1kl551uof04fo1_500\",\n    \"question\": \"what is the color of the microphone?\",\n    \"answer\": \"purple\",\n    \"type\": \"2\",\n    \"vid_id\": \"FRAMEQA45110\",\n    \"key\": \"88964\",\n    \"description\": \"a woman with a lot of makeup sings into a purple microphone.\"\n  },\n  {\n    \"video_name\": \"tumblr_nh44ofwBxF1u6sidco1_250\",\n    \"question\": \"how many men does there 's on stage singing and dancing?\",\n    \"answer\": \"four\",\n    \"type\": \"1\",\n    \"vid_id\": \"FRAMEQA42177\",\n    \"key\": \"5727\",\n    \"description\": \"there 's four men on stage singing and dancing.\"\n  }\n]"
  },
  {
    "path": "model/univi/eval/table/caps_boxes_coco2014_val_80.jsonl",
    "content": "{\"id\": \"000000296284\", \"image\": \"COCO_val2014_000000296284.jpg\", \"captions\": [\"A donut shop is full of different flavors of donuts.\", \"Fruit flavored donuts lined up in a glass fronted cabinet\", \"A rack with some doughnuts in a glass case.\", \"A display case in a bakery filled with donuts.\", \"An assortment of doughnuts are arranged in a display case.\"], \"instances\": [{\"category\": \"donut\", \"bbox\": [0.37, 0.584, 0.504, 0.709]}, {\"category\": \"donut\", \"bbox\": [0.369, 0.22, 0.492, 0.317]}, {\"category\": \"donut\", \"bbox\": [0.471, 0.587, 0.639, 0.706]}, {\"category\": \"donut\", \"bbox\": [0.544, 0.213, 0.679, 0.316]}, {\"category\": \"donut\", \"bbox\": [0.035, 0.22, 0.196, 0.328]}, {\"category\": \"donut\", \"bbox\": [0.054, 0.608, 0.221, 0.711]}, {\"category\": \"donut\", \"bbox\": [0.283, 0.586, 0.429, 0.708]}, {\"category\": \"donut\", \"bbox\": [0.466, 0.226, 0.585, 0.32]}, {\"category\": \"donut\", \"bbox\": [0.28, 0.232, 0.393, 0.322]}, {\"category\": \"donut\", \"bbox\": [0.0, 0.609, 0.097, 0.722]}]}\n{\"id\": \"000000151358\", \"image\": \"COCO_val2014_000000151358.jpg\", \"captions\": [\"A newspaper that has sunglasses on top of it sitting in front of books.\", \"an apple sunglasses books and a teddy bear\", \"A folded newspaper and sunglasses are on a table with an apple, books, and teddy bear behind.\", \"An apple sitting on a table next to sunglasses and a news paper.\", \"There are sunglasses laying on the folded newspaper.\"], \"instances\": [{\"category\": \"tie\", \"bbox\": [0.258, 0.074, 0.527, 0.589]}, {\"category\": \"apple\", \"bbox\": [0.621, 0.482, 0.853, 0.645]}, {\"category\": \"book\", \"bbox\": [0.154, 0.107, 0.275, 0.59]}, {\"category\": \"book\", \"bbox\": [0.535, 0.09, 0.735, 0.583]}, {\"category\": \"book\", \"bbox\": [0.051, 0.112, 0.159, 0.6]}, {\"category\": \"teddy bear\", \"bbox\": [0.753, 0.084, 1.0, 0.517]}, {\"category\": \"book\", \"bbox\": [0.681, 0.097, 0.796, 0.483]}, {\"category\": \"book\", \"bbox\": [0.443, 0.099, 0.574, 0.588]}, {\"category\": \"book\", \"bbox\": [0.267, 0.337, 0.386, 0.579]}]}\n{\"id\": \"000000052312\", \"image\": \"COCO_val2014_000000052312.jpg\", \"captions\": [\"The old man literally has a toothbrush mustache.\", \"An old man with a tooth brush head under his nose, mimicking Hitler\", \"A man wearing a toothbrush for a moustache.\", \"A man with the head of a toothbrush under his nose like a mustache\", \"An elderly man wearing the head of a toothbrush as a moustache.\"], \"instances\": [{\"category\": \"toothbrush\", \"bbox\": [0.345, 0.59, 0.594, 0.679]}, {\"category\": \"person\", \"bbox\": [0.0, 0.03, 1.0, 0.99]}]}\n{\"id\": \"000000473210\", \"image\": \"COCO_val2014_000000473210.jpg\", \"captions\": [\"two people taking apart their wii controllers to replace batteries\", \"People taking apart video game remote controls on a table\", \"People handling a couple of remotes taking them apart.\", \"two sets of hands a wooden table and two controllers\", \"Two people who are taking apart a video game controller.\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.002, 0.334, 0.453, 0.986]}, {\"category\": \"remote\", \"bbox\": [0.407, 0.207, 0.727, 0.604]}, {\"category\": \"remote\", \"bbox\": [0.088, 0.344, 0.313, 0.547]}, {\"category\": \"laptop\", \"bbox\": [0.001, 0.049, 0.1, 0.197]}, {\"category\": \"person\", \"bbox\": [0.484, 0.254, 0.998, 0.985]}, {\"category\": \"dining table\", \"bbox\": [0.0, 0.003, 1.0, 0.956]}]}\n{\"id\": \"000000097131\", \"image\": \"COCO_val2014_000000097131.jpg\", \"captions\": [\"A car parked by a parking meter in front of a building.\", \"A car is sitting parked at a curb in front of a parking meter.\", \"A black car on the street next to a parking meter.\", \"A gray car parked in front of two parking meters.\", \"A black car parked on the side of the road.\"], \"instances\": [{\"category\": \"car\", \"bbox\": [0.227, 0.362, 0.946, 0.761]}, {\"category\": \"car\", \"bbox\": [0.793, 0.322, 0.88, 0.4]}, {\"category\": \"car\", \"bbox\": [0.0, 0.447, 0.028, 0.726]}, {\"category\": \"parking meter\", \"bbox\": [0.156, 0.35, 0.186, 0.453]}, {\"category\": \"truck\", \"bbox\": [0.907, 0.331, 1.0, 0.408]}, {\"category\": \"parking meter\", \"bbox\": [0.188, 0.349, 0.218, 0.448]}]}\n{\"id\": \"000000543364\", \"image\": \"COCO_val2014_000000543364.jpg\", \"captions\": [\"There is a table in the middle of the room.\", \"A room with a couch, table, lamp and a chaise.\", \"A living room with couch, chaise, track lighting, and a large window.\", \"A room with large windows, a couch and a table.\", \"A living room with lots of furniture and a large window.\"], \"instances\": [{\"category\": \"dining table\", \"bbox\": [0.388, 0.644, 0.636, 0.879]}, {\"category\": \"couch\", \"bbox\": [0.194, 0.531, 0.552, 0.777]}, {\"category\": \"couch\", \"bbox\": [0.568, 0.488, 0.907, 0.783]}, {\"category\": \"remote\", \"bbox\": [0.524, 0.651, 0.556, 0.675]}, {\"category\": \"chair\", \"bbox\": [0.661, 0.478, 0.802, 0.604]}]}\n{\"id\": \"000000217181\", \"image\": \"COCO_val2014_000000217181.jpg\", \"captions\": [\"They are standing next to some stylish motorcycles.\", \"Three men are standing around looking at sports motorcycles.\", \"A small group of men are standing around a motorcycle.\", \"Two men surrounding a blue motorcycle and others\", \"A few blue motorcycles are parked in a lot.\"], \"instances\": [{\"category\": \"car\", \"bbox\": [0.011, 0.177, 0.2, 0.336]}, {\"category\": \"motorcycle\", \"bbox\": [0.032, 0.139, 0.907, 0.982]}, {\"category\": \"motorcycle\", \"bbox\": [0.0, 0.239, 0.148, 0.613]}, {\"category\": \"motorcycle\", \"bbox\": [0.0, 0.301, 0.106, 0.45]}, {\"category\": \"person\", \"bbox\": [0.775, 0.043, 0.93, 0.463]}, {\"category\": \"person\", \"bbox\": [0.717, 0.116, 0.81, 0.509]}, {\"category\": \"person\", \"bbox\": [0.296, 0.008, 0.472, 0.325]}, {\"category\": \"person\", \"bbox\": [0.115, 0.19, 0.164, 0.269]}, {\"category\": \"truck\", \"bbox\": [0.63, 0.227, 0.731, 0.335]}]}\n{\"id\": \"000000140289\", \"image\": \"COCO_val2014_000000140289.jpg\", \"captions\": [\"Two born bears walking though a forest surrounded by trees.\", \"Two full grown brown bears in a habitat.\", \"Two bears are roaming around in the woods.\", \"Two bears around logs in front of a large rock.\", \"Two big bears wandering through the woods together\"], \"instances\": [{\"category\": \"bear\", \"bbox\": [0.131, 0.269, 0.375, 0.65]}, {\"category\": \"bear\", \"bbox\": [0.568, 0.193, 0.809, 0.827]}]}\n{\"id\": \"000000460149\", \"image\": \"COCO_val2014_000000460149.jpg\", \"captions\": [\"A clock hosted on a pole on a pavement next to a building\", \"Street clock on quiet street with trees and bicycles.\", \"A tall clock stands on an empty sidewalk.\", \"A pole that has a clock on the top of it.\", \"a clock on a short tower and potted plants along the sidewalk\"], \"instances\": [{\"category\": \"potted plant\", \"bbox\": [0.14, 0.71, 0.338, 0.856]}, {\"category\": \"bicycle\", \"bbox\": [0.65, 0.671, 0.766, 0.733]}, {\"category\": \"car\", \"bbox\": [0.38, 0.608, 0.488, 0.656]}, {\"category\": \"clock\", \"bbox\": [0.468, 0.048, 0.699, 0.216]}, {\"category\": \"bicycle\", \"bbox\": [0.669, 0.662, 0.719, 0.67]}, {\"category\": \"car\", \"bbox\": [0.786, 0.625, 0.86, 0.668]}, {\"category\": \"potted plant\", \"bbox\": [0.756, 0.637, 0.819, 0.682]}, {\"category\": \"person\", \"bbox\": [0.942, 0.615, 0.954, 0.641]}, {\"category\": \"bicycle\", \"bbox\": [0.648, 0.68, 0.714, 0.747]}, {\"category\": \"car\", \"bbox\": [0.837, 0.619, 0.88, 0.659]}, {\"category\": \"potted plant\", \"bbox\": [0.017, 0.197, 0.443, 0.686]}]}\n{\"id\": \"000000225738\", \"image\": \"COCO_val2014_000000225738.jpg\", \"captions\": [\"A group of giraffes standing up in their natural habitat.\", \"A group of giraffe standing in a grass field.\", \"A group of four giraffes near the same tree.\", \"there are four giraffes standing among some dry brush\", \"A herd of giraffe standing on top of a grass field.\"], \"instances\": [{\"category\": \"giraffe\", \"bbox\": [0.648, 0.231, 0.855, 0.915]}, {\"category\": \"giraffe\", \"bbox\": [0.33, 0.136, 0.521, 0.93]}, {\"category\": \"giraffe\", \"bbox\": [0.406, 0.261, 0.515, 1.0]}, {\"category\": \"giraffe\", \"bbox\": [0.347, 0.194, 0.583, 0.922]}]}\n{\"id\": \"000000109532\", \"image\": \"COCO_val2014_000000109532.jpg\", \"captions\": [\"An adorable husky dog sleeping in a dog bed next to a fan.\", \"A dark room with a dog sleeping on a dog bed.\", \"A dog is sleeping in a dark room.\", \"a large dog laying in a dog bed in a living room\", \"A dog sleeping on a dog bed in a room.\"], \"instances\": [{\"category\": \"dog\", \"bbox\": [0.426, 0.661, 0.582, 0.925]}, {\"category\": \"potted plant\", \"bbox\": [0.603, 0.261, 0.781, 0.613]}, {\"category\": \"chair\", \"bbox\": [0.67, 0.515, 0.899, 0.801]}, {\"category\": \"potted plant\", \"bbox\": [0.671, 0.439, 0.763, 0.612]}, {\"category\": \"chair\", \"bbox\": [0.852, 0.653, 0.948, 0.818]}]}\n{\"id\": \"000000118606\", \"image\": \"COCO_val2014_000000118606.jpg\", \"captions\": [\"A man riding skis on top of a rail.\", \"a person riding a pair of skis on a rail\", \"Someone on a pair of skis on a ramp at the ski slope\", \"Person with skis in the air above the snow.\", \"A man performing a trick on a rail while skiing.\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.444, 0.361, 0.537, 0.633]}, {\"category\": \"skis\", \"bbox\": [0.413, 0.554, 0.539, 0.664]}, {\"category\": \"person\", \"bbox\": [0.342, 0.585, 0.352, 0.62]}, {\"category\": \"person\", \"bbox\": [0.439, 0.565, 0.446, 0.58]}]}\n{\"id\": \"000000385873\", \"image\": \"COCO_val2014_000000385873.jpg\", \"captions\": [\"Three pizzas sitting next to each other in boxes.\", \"Two smaller pizzas sit beside a large pizza topped with tortilla chips.\", \"Three pizzas inside their delivery boxes, one with two side orders of sauce.\", \"One pizza is larger than two other pizzas.\", \"Three pizza boxes with pizza in them are open.\"], \"instances\": [{\"category\": \"bowl\", \"bbox\": [0.634, 0.624, 0.736, 0.752]}, {\"category\": \"pizza\", \"bbox\": [0.3, 0.382, 0.615, 0.733]}, {\"category\": \"pizza\", \"bbox\": [0.0, 0.4, 0.287, 0.745]}, {\"category\": \"pizza\", \"bbox\": [0.624, 0.279, 0.999, 0.753]}, {\"category\": \"bowl\", \"bbox\": [0.94, 0.247, 1.0, 0.352]}]}\n{\"id\": \"000000092109\", \"image\": \"COCO_val2014_000000092109.jpg\", \"captions\": [\"A giraffe's head is pictured in this clear, colorful photo.\", \"A giraffe is standing tall in the middle of several bright green trees\", \"The face of a giraffe looking to the side.\", \"the close up head shot of a giraffe\", \"this is a giraffe chewing on some leaves\"], \"instances\": [{\"category\": \"giraffe\", \"bbox\": [0.236, 0.122, 1.0, 0.987]}]}\n{\"id\": \"000000163076\", \"image\": \"COCO_val2014_000000163076.jpg\", \"captions\": [\"There's an outdoor dining area featuring a fountain.\", \"A table sitting next to a water fountain covered by an umbrella.\", \"An empty restaurant patio with tables and umbrellas.\", \"An outdoor restaurant with a fountain at night\", \"A fountain bubbles in the plaza of an outdoor cafe.\"], \"instances\": [{\"category\": \"umbrella\", \"bbox\": [0.064, 0.069, 0.95, 0.844]}, {\"category\": \"chair\", \"bbox\": [0.198, 0.574, 0.355, 0.704]}, {\"category\": \"chair\", \"bbox\": [0.42, 0.571, 0.55, 0.738]}, {\"category\": \"dining table\", \"bbox\": [0.066, 0.741, 0.766, 0.925]}, {\"category\": \"dining table\", \"bbox\": [0.059, 0.584, 0.27, 0.659]}, {\"category\": \"chair\", \"bbox\": [0.432, 0.567, 0.52, 0.624]}, {\"category\": \"chair\", \"bbox\": [0.433, 0.555, 0.504, 0.6]}, {\"category\": \"chair\", \"bbox\": [0.109, 0.673, 0.374, 0.796]}]}\n{\"id\": \"000000560371\", \"image\": \"COCO_val2014_000000560371.jpg\", \"captions\": [\"Street signs from the corner of 8th ave. and 22 3/4 st.\", \"A two way street sign with one sign that changes from one name to another.\", \"A street sign is pointing towards 8th avenue and the other is pointing towards 22 3/4 street in the middle of the forest.\", \"A street sign standing in front of some trees.\", \"Peculiar street sign showing intersection of 23 3/4 St and 8th Ave/CTH D.\"], \"instances\": []}\n{\"id\": \"000000367571\", \"image\": \"COCO_val2014_000000367571.jpg\", \"captions\": [\"A couple of different doughnuts in a box\", \"There are four donuts in a box, and some are cake donuts and a doughnut with nuts and coconut on top.\", \"A box of glazed doughnuts on a table.\", \"Three donuts with toppings on them sitting inside a box.\", \"A box that is filled with different kinds of doughnuts.\"], \"instances\": [{\"category\": \"donut\", \"bbox\": [0.412, 0.335, 0.711, 0.681]}, {\"category\": \"donut\", \"bbox\": [0.093, 0.493, 0.486, 0.922]}, {\"category\": \"donut\", \"bbox\": [0.713, 0.423, 0.957, 0.874]}, {\"category\": \"donut\", \"bbox\": [0.13, 0.331, 0.397, 0.55]}]}\n{\"id\": \"000000580197\", \"image\": \"COCO_val2014_000000580197.jpg\", \"captions\": [\"Two men in bow ties standing next to steel rafter.\", \"Several men in suits talking together in a room.\", \"An older man in a tuxedo standing next to a younger man in a tuxedo wearing glasses.\", \"Two men wearing tuxedos glance at each other.\", \"Older man in tuxedo sitting next to another younger man in tuxedo.\"], \"instances\": [{\"category\": \"tie\", \"bbox\": [0.914, 0.46, 0.984, 0.512]}, {\"category\": \"person\", \"bbox\": [0.297, 0.638, 0.71, 0.989]}, {\"category\": \"person\", \"bbox\": [0.77, 0.177, 1.0, 0.971]}, {\"category\": \"tie\", \"bbox\": [0.281, 0.481, 0.368, 0.519]}, {\"category\": \"person\", \"bbox\": [0.103, 0.204, 0.497, 1.0]}]}\n{\"id\": \"000000506095\", \"image\": \"COCO_val2014_000000506095.jpg\", \"captions\": [\"A cat is staring at a laptop computer.\", \"a cat on a desk with a laptop and a mouse\", \"A cat that is sitting at a desk next to a laptop.\", \"A kitten sitting on a laptop computer sitting on top of a wooden desk.\", \"A kitten sits facing an open black laptop.\"], \"instances\": [{\"category\": \"cat\", \"bbox\": [0.658, 0.207, 1.0, 0.754]}, {\"category\": \"laptop\", \"bbox\": [0.108, 0.135, 0.766, 0.69]}, {\"category\": \"book\", \"bbox\": [0.836, 0.239, 0.954, 0.273]}, {\"category\": \"book\", \"bbox\": [0.0, 0.556, 0.128, 0.685]}, {\"category\": \"book\", \"bbox\": [0.039, 0.574, 0.257, 0.691]}, {\"category\": \"book\", \"bbox\": [0.825, 0.214, 0.962, 0.254]}, {\"category\": \"book\", \"bbox\": [0.892, 0.275, 0.958, 0.308]}, {\"category\": \"book\", \"bbox\": [0.922, 0.318, 0.986, 0.353]}, {\"category\": \"book\", \"bbox\": [0.87, 0.267, 0.951, 0.291]}, {\"category\": \"book\", \"bbox\": [0.949, 0.102, 0.976, 0.114]}, {\"category\": \"book\", \"bbox\": [0.936, 0.161, 0.958, 0.168]}]}\n{\"id\": \"000000024996\", \"image\": \"COCO_val2014_000000024996.jpg\", \"captions\": [\"A bathroom with a glass door and a sink.\", \"A blue lined bathroom with an open glass door.\", \"A nice bathroom with a sink, toilet, and tiled shower.\", \"A bathroom that is clean and shiny in the day.\", \"a bathroom with a sink and a mirror and a window\"], \"instances\": [{\"category\": \"toilet\", \"bbox\": [0.842, 0.934, 0.95, 1.0]}, {\"category\": \"sink\", \"bbox\": [0.506, 0.724, 0.683, 0.834]}]}\n{\"id\": \"000000457882\", \"image\": \"COCO_val2014_000000457882.jpg\", \"captions\": [\"a girl in a bikini and a brown and white dog and a few other people\", \"A woman with a swimsuit on sitting with a dog.\", \"A woman is sitting with a dog on her lap.\", \"A dog sitting next to a woman in her swimsuit.\", \"WOMAN SITTING WITH HER DOG, AND OTHER WOMEN ARE AROUND\"], \"instances\": [{\"category\": \"dog\", \"bbox\": [0.202, 0.409, 0.54, 0.81]}, {\"category\": \"dog\", \"bbox\": [0.61, 0.428, 0.729, 0.723]}, {\"category\": \"boat\", \"bbox\": [0.003, 0.705, 0.939, 0.974]}, {\"category\": \"person\", \"bbox\": [0.236, 0.001, 0.558, 0.784]}, {\"category\": \"person\", \"bbox\": [0.681, 0.001, 0.957, 0.798]}, {\"category\": \"person\", \"bbox\": [0.849, 0.478, 1.0, 0.946]}, {\"category\": \"person\", \"bbox\": [0.345, 0.187, 0.634, 0.828]}, {\"category\": \"person\", \"bbox\": [0.033, 0.345, 0.109, 0.434]}]}\n{\"id\": \"000000081552\", \"image\": \"COCO_val2014_000000081552.jpg\", \"captions\": [\"A cat sitting and curled up on a red couch\", \"A cat laying on a red couch sleeping.\", \"a tan and black cat curled up asleep on a red velvet seat\", \"A cat is curled up on a red sofa.\", \"Cat curled up, sleeping on a red plush couch.\"], \"instances\": [{\"category\": \"cat\", \"bbox\": [0.412, 0.237, 0.634, 0.482]}, {\"category\": \"couch\", \"bbox\": [0.003, 0.005, 1.0, 0.99]}]}\n{\"id\": \"000000273450\", \"image\": \"COCO_val2014_000000273450.jpg\", \"captions\": [\"A person flipping of a parking meter on the side of a road.\", \"A man holds up his middle finger to a parking meter.\", \"Person giving the middle finger to a parking meter.\", \"a black silver white blue red an orange parking meter and a hand flipping it off\", \"A person is flipping off a parking meter.\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.0, 0.475, 0.565, 0.987]}, {\"category\": \"car\", \"bbox\": [0.0, 0.0, 0.531, 0.734]}, {\"category\": \"parking meter\", \"bbox\": [0.0, 0.0, 1.0, 0.987]}]}\n{\"id\": \"000000203879\", \"image\": \"COCO_val2014_000000203879.jpg\", \"captions\": [\"There is a small cellphone displayed between a set of ear buds and two paper weights.\", \"a cell phone lays next to some diamonds\", \"a close up of a cell phone on a table near earbuds\", \"A cell phone sits on a table next to some jewels.\", \"A cell phone, ear buds, and two jewels laying near each other.\"], \"instances\": [{\"category\": \"cell phone\", \"bbox\": [0.322, 0.233, 0.62, 0.79]}]}\n{\"id\": \"000000346875\", \"image\": \"COCO_val2014_000000346875.jpg\", \"captions\": [\"two zebras in a field near one another\", \"A couple of zebra walking across a green field.\", \"Two zebra are walking near a gravel road.\", \"two zebras in a green field of grass and some trees\", \"A zebra follows another zebra through a park.\"], \"instances\": [{\"category\": \"zebra\", \"bbox\": [0.591, 0.263, 0.82, 0.466]}, {\"category\": \"zebra\", \"bbox\": [0.293, 0.243, 0.561, 0.45]}]}\n{\"id\": \"000000525439\", \"image\": \"COCO_val2014_000000525439.jpg\", \"captions\": [\"a man stands in front of a flipped skate boarder\", \"A man standing next to a skateboard that is laying on the ground wheels pointed up.\", \"Skateboard laying upside down on cement with someone standing next to it.\", \"A boy in camo shorts stands before an overturned skateboard.\", \"a person with an upside down skate board\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.307, 0.001, 0.63, 0.739]}, {\"category\": \"skateboard\", \"bbox\": [0.0, 0.592, 0.626, 0.969]}]}\n{\"id\": \"000000304749\", \"image\": \"COCO_val2014_000000304749.jpg\", \"captions\": [\"The woman is taking a picture in the bathroom mirror.\", \"A picture of a woman in a mirror.\", \"A woman's midsection reflected in a round mirror.\", \"A circular mirror reflecting a woman's stomach in turquoise shirt.\", \"A selfie taken of a person from the neck down.\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.092, 0.001, 0.646, 0.496]}]}\n{\"id\": \"000000323760\", \"image\": \"COCO_val2014_000000323760.jpg\", \"captions\": [\"A toilet is shown in a bare room.\", \"A ugly bathroom with a section of the wall missing.\", \"A toilet in a stripped bathroom with studs, bricks and plaster showing\", \"A bathroom with no walls and a toilet bowl\", \"A white toilet next to some torn out walls.\"], \"instances\": [{\"category\": \"toilet\", \"bbox\": [0.167, 0.585, 0.714, 1.0]}]}\n{\"id\": \"000000066144\", \"image\": \"COCO_val2014_000000066144.jpg\", \"captions\": [\"A woman standing in front of window next to a bug and a stop sign.\", \"A car parked on the street next to a tree and stop sign.\", \"A lone Volkswagen is parked by a stop sign.\", \"A window view of a small car near a street stop sign.\", \"An old VW Bug standing at a stop sign.\"], \"instances\": [{\"category\": \"stop sign\", \"bbox\": [0.501, 0.328, 0.569, 0.428]}, {\"category\": \"car\", \"bbox\": [0.242, 0.488, 0.56, 0.726]}, {\"category\": \"car\", \"bbox\": [0.279, 0.325, 0.33, 0.363]}, {\"category\": \"car\", \"bbox\": [0.153, 0.333, 0.29, 0.405]}, {\"category\": \"car\", \"bbox\": [0.11, 0.339, 0.177, 0.373]}, {\"category\": \"car\", \"bbox\": [0.0, 0.654, 0.082, 0.826]}, {\"category\": \"car\", \"bbox\": [0.0, 0.322, 0.064, 0.364]}, {\"category\": \"car\", \"bbox\": [0.451, 0.333, 0.51, 0.392]}]}\n{\"id\": \"000000455772\", \"image\": \"COCO_val2014_000000455772.jpg\", \"captions\": [\"A person in a field jumping to catch a Frisbee.\", \"A guy jumping to catch a frisbee in mid-air.\", \"A person that is trying to get a frisbee.\", \"Nice reach, but the Frisbee flies on, victorious.\", \"A man playing frisbee in a grassy yard.\"], \"instances\": [{\"category\": \"car\", \"bbox\": [0.148, 0.339, 0.201, 0.476]}, {\"category\": \"car\", \"bbox\": [0.376, 0.396, 0.424, 0.476]}, {\"category\": \"person\", \"bbox\": [0.547, 0.122, 0.698, 0.904]}, {\"category\": \"frisbee\", \"bbox\": [0.479, 0.154, 0.555, 0.231]}, {\"category\": \"car\", \"bbox\": [0.001, 0.299, 0.085, 0.394]}]}\n{\"id\": \"000000511117\", \"image\": \"COCO_val2014_000000511117.jpg\", \"captions\": [\"A couple of kids standing on top of a grass covered field.\", \"A little boy wearing a baseball uniform stands by a little girl.\", \"A young boy in a baseball uniform and a young girl are standing in front of a chain link fence.\", \"A little boy and girl standing on a baseball field. The boy has a uniform on.\", \"A young baseball player is standing next to a young girl.\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.514, 0.178, 0.776, 0.774]}, {\"category\": \"baseball glove\", \"bbox\": [0.468, 0.462, 0.593, 0.609]}, {\"category\": \"person\", \"bbox\": [0.174, 0.051, 0.598, 0.839]}, {\"category\": \"bench\", \"bbox\": [0.558, 0.125, 1.0, 0.315]}]}\n{\"id\": \"000000207151\", \"image\": \"COCO_val2014_000000207151.jpg\", \"captions\": [\"A vegetarian pizza is half eaten on a pizza holder.\", \"A couple of pieces of pizza with vegetable slices on them.\", \"A wooden pan serving tray with a pizza on it.\", \"A pizza on a cutting board is half gone.\", \"A Pizza is nearly finished with only three pieces left.\"], \"instances\": [{\"category\": \"bottle\", \"bbox\": [0.001, 0.001, 0.121, 0.231]}, {\"category\": \"cup\", \"bbox\": [0.0, 0.002, 0.121, 0.238]}, {\"category\": \"pizza\", \"bbox\": [0.17, 0.472, 0.526, 0.82]}, {\"category\": \"pizza\", \"bbox\": [0.398, 0.106, 0.962, 0.679]}, {\"category\": \"dining table\", \"bbox\": [0.0, 0.001, 1.0, 0.988]}]}\n{\"id\": \"000000431165\", \"image\": \"COCO_val2014_000000431165.jpg\", \"captions\": [\"A baby elephant standing in front of a brick building.\", \"An elephant is standing near a dirt mount in an exhibit.\", \"Grey elephant standing next to a large sand dune in a pen.\", \"An elephant standing alone inside of an enclosure.\", \"The baby elephant is alone in the pen.\"], \"instances\": [{\"category\": \"elephant\", \"bbox\": [0.303, 0.399, 0.638, 0.78]}]}\n{\"id\": \"000000378545\", \"image\": \"COCO_val2014_000000378545.jpg\", \"captions\": [\"A pole that has a clock on top of it.\", \"A clock mounted on an outdoor post with Roman numerals.\", \"a clock on a pole saying it is 12:45\", \"An ornamental standing clock is at the foreground of a row of houses.\", \"A black and gold clock on a pole in front of a building.\"], \"instances\": [{\"category\": \"clock\", \"bbox\": [0.216, 0.249, 0.749, 0.658]}]}\n{\"id\": \"000000555904\", \"image\": \"COCO_val2014_000000555904.jpg\", \"captions\": [\"A man sitting at a bar filled with liquor.\", \"People sitting a a take near several bottles of wine on shelves.\", \"Several people are sitting at a table drinking.\", \"Several people in a bar sitting at a long table.\", \"People eating in a restaurant near wine bottles.\"], \"instances\": [{\"category\": \"dining table\", \"bbox\": [0.123, 0.663, 0.317, 0.811]}, {\"category\": \"person\", \"bbox\": [0.715, 0.239, 1.0, 0.998]}, {\"category\": \"person\", \"bbox\": [0.142, 0.528, 0.281, 0.742]}, {\"category\": \"person\", \"bbox\": [0.529, 0.53, 0.606, 0.69]}, {\"category\": \"person\", \"bbox\": [0.705, 0.518, 0.796, 0.673]}, {\"category\": \"wine glass\", \"bbox\": [0.247, 0.669, 0.27, 0.718]}, {\"category\": \"person\", \"bbox\": [0.281, 0.524, 0.534, 1.0]}, {\"category\": \"bottle\", \"bbox\": [0.168, 0.346, 0.189, 0.425]}, {\"category\": \"bottle\", \"bbox\": [0.379, 0.264, 0.431, 0.433]}, {\"category\": \"bottle\", \"bbox\": [0.252, 0.313, 0.277, 0.429]}, {\"category\": \"bottle\", \"bbox\": [0.294, 0.295, 0.326, 0.43]}, {\"category\": \"bottle\", \"bbox\": [0.589, 0.35, 0.613, 0.444]}, {\"category\": \"bottle\", \"bbox\": [0.433, 0.281, 0.473, 0.437]}, {\"category\": \"bottle\", \"bbox\": [0.478, 0.289, 0.513, 0.44]}, {\"category\": \"wine glass\", \"bbox\": [0.688, 0.615, 0.709, 0.69]}, {\"category\": \"cup\", \"bbox\": [0.589, 0.647, 0.612, 0.693]}, {\"category\": \"person\", \"bbox\": [0.732, 0.356, 0.953, 0.806]}, {\"category\": \"bottle\", \"bbox\": [0.555, 0.337, 0.585, 0.438]}, {\"category\": \"bottle\", \"bbox\": [0.337, 0.29, 0.378, 0.432]}, {\"category\": \"bottle\", \"bbox\": [0.21, 0.333, 0.232, 0.426]}, {\"category\": \"bottle\", \"bbox\": [0.134, 0.36, 0.148, 0.422]}, {\"category\": \"bottle\", \"bbox\": [0.516, 0.312, 0.557, 0.439]}, {\"category\": \"cup\", \"bbox\": [0.231, 0.718, 0.26, 0.763]}, {\"category\": \"chair\", \"bbox\": [0.517, 0.828, 0.65, 0.999]}, {\"category\": \"chair\", \"bbox\": [0.643, 0.804, 0.738, 0.841]}, {\"category\": \"chair\", \"bbox\": [0.347, 0.908, 0.519, 1.0]}, {\"category\": \"chair\", \"bbox\": [0.64, 0.806, 0.74, 0.998]}, {\"category\": \"cup\", \"bbox\": [0.205, 0.692, 0.232, 0.767]}, {\"category\": \"dining table\", \"bbox\": [0.536, 0.676, 0.743, 0.838]}, {\"category\": \"person\", \"bbox\": [0.002, 0.501, 0.263, 0.987]}, {\"category\": \"bottle\", \"bbox\": [0.531, 0.461, 0.542, 0.526]}, {\"category\": \"bottle\", \"bbox\": [0.237, 0.354, 0.702, 0.629]}]}\n{\"id\": \"000000415393\", \"image\": \"COCO_val2014_000000415393.jpg\", \"captions\": [\"a man on a skate board looks like he is falling\", \"A man does a skateboard trick on a skateboard ramp\", \"Guy falling off a skateboard in a room.\", \"A man riding a skateboard on top of a table.\", \"a man skating on part of a ramp with his skateboard\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.361, 0.016, 0.809, 0.888]}, {\"category\": \"skateboard\", \"bbox\": [0.606, 0.809, 0.889, 0.901]}, {\"category\": \"person\", \"bbox\": [0.479, 0.091, 0.576, 0.386]}, {\"category\": \"person\", \"bbox\": [0.047, 0.441, 0.197, 0.759]}, {\"category\": \"person\", \"bbox\": [0.038, 0.453, 0.076, 0.545]}, {\"category\": \"person\", \"bbox\": [0.249, 0.307, 0.311, 0.591]}]}\n{\"id\": \"000000161011\", \"image\": \"COCO_val2014_000000161011.jpg\", \"captions\": [\"Three skiers posing for a picture on the slope.\", \"Three skiers pause for a photo at the top of a mountain.\", \"Three people standing on a mountain taking a picture as they ski.\", \"A woman and two men on skis on a snowy hillside surrounded by trees\", \"Three skiers have stopped to pose for a picture.\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.36, 0.321, 0.509, 0.82]}, {\"category\": \"person\", \"bbox\": [0.179, 0.281, 0.349, 0.795]}, {\"category\": \"person\", \"bbox\": [0.611, 0.292, 0.751, 0.809]}, {\"category\": \"skis\", \"bbox\": [0.595, 0.743, 0.732, 0.961]}, {\"category\": \"skis\", \"bbox\": [0.341, 0.724, 0.621, 0.907]}, {\"category\": \"skis\", \"bbox\": [0.212, 0.705, 0.398, 0.905]}]}\n{\"id\": \"000000284296\", \"image\": \"COCO_val2014_000000284296.jpg\", \"captions\": [\"Three giraffe's leaning over to get a sip of water.\", \"an image of a herd of giraffes in the water\", \"three giraffes banding down to drink water with trees in the background\", \"Three giraffe drinking from a pond with brush in back.\", \"Giraffes leaning down to drink at a watering hole\"], \"instances\": [{\"category\": \"giraffe\", \"bbox\": [0.624, 0.387, 0.822, 0.635]}, {\"category\": \"giraffe\", \"bbox\": [0.4, 0.326, 0.561, 0.58]}, {\"category\": \"giraffe\", \"bbox\": [0.152, 0.291, 0.343, 0.551]}]}\n{\"id\": \"000000056013\", \"image\": \"COCO_val2014_000000056013.jpg\", \"captions\": [\"a number of luggage bags on a cart in a lobby\", \"Wheeled cart with luggage at lobby of commercial business.\", \"Trolley used for transporting personal luggage to guests rooms.\", \"A luggage cart topped with lots of luggage.\", \"a cart filled with suitcases and bags\"], \"instances\": [{\"category\": \"backpack\", \"bbox\": [0.276, 0.52, 0.456, 0.678]}, {\"category\": \"suitcase\", \"bbox\": [0.41, 0.58, 0.597, 0.827]}, {\"category\": \"suitcase\", \"bbox\": [0.173, 0.645, 0.363, 0.836]}, {\"category\": \"person\", \"bbox\": [0.959, 0.297, 1.0, 0.478]}, {\"category\": \"suitcase\", \"bbox\": [0.526, 0.519, 0.712, 0.706]}, {\"category\": \"person\", \"bbox\": [0.762, 0.253, 0.871, 0.46]}, {\"category\": \"backpack\", \"bbox\": [0.517, 0.514, 0.694, 0.698]}, {\"category\": \"handbag\", \"bbox\": [0.316, 0.181, 0.431, 0.426]}, {\"category\": \"suitcase\", \"bbox\": [0.747, 0.453, 0.858, 0.557]}]}\n{\"id\": \"000000293505\", \"image\": \"COCO_val2014_000000293505.jpg\", \"captions\": [\"A person on a motor bike next to a cow.\", \"A woman riding a motorcycle down a dirt road.\", \"there is a woman riding a scooter down a dirt road\", \"A woman on a moped, two men and animals walking down the road.\", \"A woman on a motorcycle is next to a man walking a dog along with other people going down a dirt road.\"], \"instances\": [{\"category\": \"cow\", \"bbox\": [0.602, 0.472, 0.721, 0.816]}, {\"category\": \"motorcycle\", \"bbox\": [0.402, 0.512, 0.516, 0.788]}, {\"category\": \"person\", \"bbox\": [0.408, 0.4, 0.514, 0.639]}, {\"category\": \"person\", \"bbox\": [0.754, 0.301, 1.0, 1.0]}, {\"category\": \"person\", \"bbox\": [0.705, 0.415, 0.789, 0.714]}, {\"category\": \"cow\", \"bbox\": [0.347, 0.44, 0.373, 0.509]}, {\"category\": \"cow\", \"bbox\": [0.361, 0.436, 0.381, 0.501]}]}\n{\"id\": \"000000305873\", \"image\": \"COCO_val2014_000000305873.jpg\", \"captions\": [\"A little girl holding a red black dotted umbrella.\", \"A little girl with rain boots and a rain jacket on and an open umbrella to match her jacket.\", \"a little girl holding onto a lady bug pattern umbrella\", \"The child wears a labybug rain coat with a matching umbrella.\", \"A little girl wearing a ladybug raincoat and green rubber boots holding a ladybug umbrella\"], \"instances\": [{\"category\": \"umbrella\", \"bbox\": [0.246, 0.002, 0.992, 0.415]}, {\"category\": \"person\", \"bbox\": [0.35, 0.132, 0.699, 0.791]}, {\"category\": \"car\", \"bbox\": [0.614, 0.0, 1.0, 0.465]}]}\n{\"id\": \"000000034096\", \"image\": \"COCO_val2014_000000034096.jpg\", \"captions\": [\"A house being built with lots of wood.\", \"A big pile of building material is placed on the floor in the wooden structure.\", \"A partially-built house with wooden studs and staircase in view.\", \"A house full of wood getting built at the moment.\", \"The beginning stages of a home still being made.\"], \"instances\": [{\"category\": \"bed\", \"bbox\": [0.505, 0.42, 0.721, 0.59]}, {\"category\": \"tv\", \"bbox\": [0.192, 0.441, 0.335, 0.606]}]}\n{\"id\": \"000000165257\", \"image\": \"COCO_val2014_000000165257.jpg\", \"captions\": [\"A large black counter top sitting next to a sink.\", \"a clean kitchen counter with a clean sink\", \"A kitchen with a sink, dishwasher and some boxes on the counter.\", \"A kitchen with a sink, dishwasher and boxes on the counter.\", \"a black counter on a wood cabinet in a kitchen\", \"a new kitchen cabinet with a sink being installed\"], \"instances\": [{\"category\": \"sink\", \"bbox\": [0.513, 0.243, 0.718, 0.314]}]}\n{\"id\": \"000000431026\", \"image\": \"COCO_val2014_000000431026.jpg\", \"captions\": [\"a street sign on a city street near some tall bushes\", \"street signs on a metal pole lining a sidewalk lined with shrubbery.\", \"a large hedge of bushes on a corner near a street sign.\", \"Two street signs on sidewalk next to bushes and trees.\", \"Street signs along a well manicured street with large houses.\"], \"instances\": []}\n{\"id\": \"000000524575\", \"image\": \"COCO_val2014_000000524575.jpg\", \"captions\": [\"Three giraffe and a wildebeest in a field.\", \"A moose and several giraffes are grazing in the field.\", \"Zebras in the wild with a wildebeest behind them\", \"Two giraffe and a ox standing in a field eating grass.\", \"Giraffes and other safari animals graze in a sunlit field.\"], \"instances\": [{\"category\": \"cow\", \"bbox\": [0.46, 0.716, 0.643, 0.999]}, {\"category\": \"giraffe\", \"bbox\": [0.285, 0.5, 0.401, 0.826]}, {\"category\": \"giraffe\", \"bbox\": [0.083, 0.554, 0.179, 0.821]}, {\"category\": \"giraffe\", \"bbox\": [0.887, 0.481, 0.968, 0.715]}]}\n{\"id\": \"000000326550\", \"image\": \"COCO_val2014_000000326550.jpg\", \"captions\": [\"Black and white photograph of a person holding a surfboard by water.\", \"A person with a surfboard standing next to the water.\", \"A surfer stands on the rocks watching a wave crash.\", \"A man standing on a beach holding a surfboard.\", \"a person looking at the waves ready to surf\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.327, 0.461, 0.492, 0.897]}, {\"category\": \"surfboard\", \"bbox\": [0.282, 0.56, 0.606, 0.741]}, {\"category\": \"person\", \"bbox\": [0.924, 0.352, 0.933, 0.362]}, {\"category\": \"person\", \"bbox\": [0.912, 0.348, 0.919, 0.36]}]}\n{\"id\": \"000000018476\", \"image\": \"COCO_val2014_000000018476.jpg\", \"captions\": [\"A tie that is sitting on top of a shirt.\", \"This photograph appears to be looking truly wonderful.\", \"a uniform complete with shoes laying on a bed\", \"Suit laid out with a red tie, white shirt and black shoes.\", \"a white shirt a red tie and some black shoes\"], \"instances\": [{\"category\": \"tie\", \"bbox\": [0.457, 0.09, 0.853, 0.984]}, {\"category\": \"bed\", \"bbox\": [0.005, 0.005, 1.0, 0.379]}]}\n{\"id\": \"000000480652\", \"image\": \"COCO_val2014_000000480652.jpg\", \"captions\": [\"These suitcases are sitting next to a chair.\", \"An assortment of luggage bags stacked by a kitchen chair.\", \"A stack of luggage by a chair and table.\", \"a table and chair with several pieces of luggage nearby\", \"A pile of luggage sitting on the floor.\"], \"instances\": [{\"category\": \"chair\", \"bbox\": [0.483, 0.192, 1.0, 0.769]}, {\"category\": \"backpack\", \"bbox\": [0.433, 0.429, 0.742, 0.856]}, {\"category\": \"suitcase\", \"bbox\": [0.059, 0.414, 0.453, 0.841]}, {\"category\": \"handbag\", \"bbox\": [0.19, 0.184, 0.779, 0.475]}, {\"category\": \"suitcase\", \"bbox\": [0.175, 0.204, 0.583, 0.462]}]}\n{\"id\": \"000000012748\", \"image\": \"COCO_val2014_000000012748.jpg\", \"captions\": [\"A man and child next to a horse.\", \"a little boy touching the nose of a brown horse\", \"A man holding a baby whose petting a horse.\", \"a man letting his baby pet a horse\", \"man holding a baby and petting a horse\"], \"instances\": [{\"category\": \"horse\", \"bbox\": [0.003, 0.079, 0.504, 0.868]}, {\"category\": \"person\", \"bbox\": [0.452, 0.294, 1.0, 0.989]}, {\"category\": \"person\", \"bbox\": [0.46, 0.217, 1.0, 0.988]}]}\n{\"id\": \"000000247840\", \"image\": \"COCO_val2014_000000247840.jpg\", \"captions\": [\"Large group of people standing outside a restaurant together.\", \"A dairy queen has people standing outside waiting\", \"an image of people standing outside and ice cream store\", \"Several people are  lined up outside of a store.\", \"The front of a Dairy Queen restaurant with people entering the side.\"], \"instances\": [{\"category\": \"fire hydrant\", \"bbox\": [0.774, 0.674, 0.83, 0.807]}, {\"category\": \"person\", \"bbox\": [0.741, 0.465, 0.824, 0.755]}, {\"category\": \"person\", \"bbox\": [0.806, 0.471, 0.839, 0.722]}, {\"category\": \"person\", \"bbox\": [0.831, 0.499, 0.866, 0.726]}, {\"category\": \"bench\", \"bbox\": [0.061, 0.69, 0.219, 0.768]}, {\"category\": \"handbag\", \"bbox\": [0.859, 0.558, 0.877, 0.603]}, {\"category\": \"person\", \"bbox\": [0.719, 0.504, 0.75, 0.626]}, {\"category\": \"potted plant\", \"bbox\": [0.7, 0.648, 0.764, 0.743]}, {\"category\": \"handbag\", \"bbox\": [0.827, 0.548, 0.837, 0.577]}, {\"category\": \"sandwich\", \"bbox\": [0.359, 0.618, 0.417, 0.694]}]}\n{\"id\": \"000000399452\", \"image\": \"COCO_val2014_000000399452.jpg\", \"captions\": [\"a sandwhich sitting on a plate next to a glass of tea, bowl of soup\", \"a sandwich on a white plate a drink on a brown table\", \"A sandwich and chips sit on a white plate.\", \"a large plate of food with a glass of soda by it\", \"A sandwich sitting on top of a white plate next to a cup of coffee.\"], \"instances\": [{\"category\": \"sandwich\", \"bbox\": [0.175, 0.326, 0.605, 0.71]}, {\"category\": \"cup\", \"bbox\": [0.504, 0.024, 0.687, 0.419]}, {\"category\": \"knife\", \"bbox\": [0.742, 0.283, 0.857, 0.376]}, {\"category\": \"spoon\", \"bbox\": [0.618, 0.46, 0.797, 0.809]}, {\"category\": \"fork\", \"bbox\": [0.684, 0.254, 0.805, 0.395]}, {\"category\": \"bowl\", \"bbox\": [0.782, 0.366, 1.0, 0.62]}, {\"category\": \"chair\", \"bbox\": [0.202, 0.0, 0.671, 0.148]}, {\"category\": \"dining table\", \"bbox\": [0.002, 0.126, 0.996, 0.987]}]}\n{\"id\": \"000000515716\", \"image\": \"COCO_val2014_000000515716.jpg\", \"captions\": [\"A couple of women standing on either side of a man wearing glasses.\", \"Two women and a man are holding glasses up at a wine tasting.\", \"Three young adults holding wine glasses while standing at a bar.\", \"A group of people sit holding glasses and smiling at a table with several bottles.\", \"A group of people at a celebration having a taste of wine.\"], \"instances\": [{\"category\": \"bottle\", \"bbox\": [0.529, 0.604, 0.637, 0.908]}, {\"category\": \"bottle\", \"bbox\": [0.379, 0.398, 0.481, 0.892]}, {\"category\": \"bottle\", \"bbox\": [0.942, 0.464, 0.988, 0.653]}, {\"category\": \"person\", \"bbox\": [0.0, 0.126, 0.136, 0.811]}, {\"category\": \"person\", \"bbox\": [0.05, 0.093, 0.211, 0.471]}, {\"category\": \"person\", \"bbox\": [0.401, 0.031, 0.678, 0.683]}, {\"category\": \"person\", \"bbox\": [0.617, 0.191, 0.94, 0.858]}, {\"category\": \"person\", \"bbox\": [0.723, 0.098, 0.947, 0.564]}, {\"category\": \"wine glass\", \"bbox\": [0.634, 0.434, 0.697, 0.628]}, {\"category\": \"wine glass\", \"bbox\": [0.285, 0.346, 0.372, 0.558]}, {\"category\": \"wine glass\", \"bbox\": [0.522, 0.422, 0.583, 0.544]}, {\"category\": \"handbag\", \"bbox\": [0.704, 0.601, 1.0, 0.916]}, {\"category\": \"person\", \"bbox\": [0.944, 0.319, 0.999, 0.604]}, {\"category\": \"bottle\", \"bbox\": [0.921, 0.46, 0.953, 0.636]}, {\"category\": \"person\", \"bbox\": [0.116, 0.171, 0.41, 0.829]}]}\n{\"id\": \"000000116173\", \"image\": \"COCO_val2014_000000116173.jpg\", \"captions\": [\"The boy is on his surfboard in the water riding it.\", \"a young boy riding a boogie board in the water\", \"A boy riding surf board in the ocean.\", \"A young boy is riding a surfboard on a small wave.\", \"A young boy is surfing in the ocean.\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.485, 0.238, 0.702, 0.821]}, {\"category\": \"person\", \"bbox\": [0.866, 0.223, 0.921, 0.29]}, {\"category\": \"person\", \"bbox\": [0.752, 0.146, 0.775, 0.188]}, {\"category\": \"surfboard\", \"bbox\": [0.239, 0.758, 0.782, 0.846]}, {\"category\": \"surfboard\", \"bbox\": [0.853, 0.277, 0.981, 0.29]}, {\"category\": \"surfboard\", \"bbox\": [0.727, 0.169, 0.801, 0.198]}, {\"category\": \"person\", \"bbox\": [0.637, 0.194, 0.677, 0.261]}]}\n{\"id\": \"000000186013\", \"image\": \"COCO_val2014_000000186013.jpg\", \"captions\": [\"A beach scene includes many different kites flying in a cloudy sky.\", \"Kites being flown at the beach at twilight.\", \"A beach with flags in the ground and kites overhead in the sky.\", \"A beach with rows of flags in the sand and kites flying overhead.\", \"A beach filled with kites and wind sails next to the ocean.\"], \"instances\": [{\"category\": \"kite\", \"bbox\": [0.174, 0.4, 0.351, 0.483]}, {\"category\": \"kite\", \"bbox\": [0.144, 0.13, 0.273, 0.17]}, {\"category\": \"kite\", \"bbox\": [0.236, 0.269, 0.268, 0.294]}, {\"category\": \"kite\", \"bbox\": [0.464, 0.204, 0.598, 0.271]}, {\"category\": \"kite\", \"bbox\": [0.61, 0.304, 0.659, 0.342]}, {\"category\": \"kite\", \"bbox\": [0.545, 0.435, 0.565, 0.452]}, {\"category\": \"kite\", \"bbox\": [0.027, 0.558, 0.151, 0.59]}, {\"category\": \"kite\", \"bbox\": [0.93, 0.429, 0.973, 0.536]}, {\"category\": \"kite\", \"bbox\": [0.684, 0.36, 0.697, 0.374]}, {\"category\": \"surfboard\", \"bbox\": [0.393, 0.627, 0.446, 0.934]}, {\"category\": \"person\", \"bbox\": [0.959, 0.685, 0.984, 0.713]}, {\"category\": \"person\", \"bbox\": [0.919, 0.681, 0.94, 0.725]}, {\"category\": \"person\", \"bbox\": [0.8, 0.597, 0.805, 0.61]}, {\"category\": \"person\", \"bbox\": [0.079, 0.928, 0.116, 0.975]}, {\"category\": \"kite\", \"bbox\": [0.743, 0.307, 0.755, 0.319]}, {\"category\": \"kite\", \"bbox\": [0.78, 0.322, 0.795, 0.335]}, {\"category\": \"kite\", \"bbox\": [0.536, 0.526, 0.597, 0.617]}, {\"category\": \"person\", \"bbox\": [0.941, 0.694, 0.961, 0.726]}, {\"category\": \"kite\", \"bbox\": [0.575, 0.446, 0.594, 0.471]}]}\n{\"id\": \"000000015029\", \"image\": \"COCO_val2014_000000015029.jpg\", \"captions\": [\"A man holding a white frisbee standing on top of a field.\", \"A man is playing frisbee next to a tent.\", \"Guy at the park holding a frisbee with people in the back under a tent\", \"A man is holding a Frisbee standing in the grass.\", \"Young adult male holding a frisbee at an event.\"], \"instances\": [{\"category\": \"frisbee\", \"bbox\": [0.138, 0.359, 0.215, 0.587]}, {\"category\": \"person\", \"bbox\": [0.16, 0.002, 0.726, 0.995]}, {\"category\": \"person\", \"bbox\": [0.81, 0.73, 0.852, 0.825]}, {\"category\": \"person\", \"bbox\": [0.786, 0.749, 0.833, 0.814]}, {\"category\": \"person\", \"bbox\": [0.847, 0.743, 0.89, 0.804]}, {\"category\": \"person\", \"bbox\": [0.614, 0.749, 0.706, 0.936]}]}\n{\"id\": \"000000500565\", \"image\": \"COCO_val2014_000000500565.jpg\", \"captions\": [\"A woman holding a child wrapped in a towel brushing her teeth.\", \"A woman is holding a baby who is wrapped in a towel and holding a toothbrush\", \"A woman holding a little boy who is brushing his teeth.\", \"A baby with a toothbrush in his mouth while being held by a woman\", \"a close up of an adult holding a child brushing their teeth\"], \"instances\": [{\"category\": \"toothbrush\", \"bbox\": [0.586, 0.66, 0.754, 0.821]}, {\"category\": \"person\", \"bbox\": [0.002, 0.007, 0.637, 0.991]}, {\"category\": \"person\", \"bbox\": [0.357, 0.196, 0.998, 0.984]}]}\n{\"id\": \"000000297323\", \"image\": \"COCO_val2014_000000297323.jpg\", \"captions\": [\"Two buses are parked against a curb in front of a building.\", \"Two automobiles parked on the side of a building.\", \"two tourist buses parked on street in front of old industrial building\", \"Two unique city buses stopped at a stop sign.\", \"Buses parked outside by a building and stop sign.\"], \"instances\": [{\"category\": \"bus\", \"bbox\": [0.7, 0.711, 0.92, 0.881]}, {\"category\": \"person\", \"bbox\": [0.936, 0.771, 0.972, 0.833]}, {\"category\": \"stop sign\", \"bbox\": [0.237, 0.666, 0.285, 0.728]}, {\"category\": \"bus\", \"bbox\": [0.334, 0.71, 0.678, 0.935]}, {\"category\": \"truck\", \"bbox\": [0.335, 0.72, 0.683, 0.934]}, {\"category\": \"person\", \"bbox\": [0.34, 0.791, 0.367, 0.834]}]}\n{\"id\": \"000000441147\", \"image\": \"COCO_val2014_000000441147.jpg\", \"captions\": [\"Two antique suitcases sit stacked one on top of the other.\", \"Two suitcases are stacked on each other and one is black while the other is brown and yellow.\", \"a close up of two luggage suit cases stacked on each other\", \"A stack of antique luggage is displayed with price tags.\", \"two suitcases made of leather and stacked on top of each other\"], \"instances\": [{\"category\": \"suitcase\", \"bbox\": [0.167, 0.025, 0.989, 0.445]}, {\"category\": \"suitcase\", \"bbox\": [0.002, 0.31, 0.994, 0.996]}]}\n{\"id\": \"000000353536\", \"image\": \"COCO_val2014_000000353536.jpg\", \"captions\": [\"A table topped with plates and glasses with eating utensils..\", \"a fork is laying on a small white plate\", \"dirty dishes on a table, and a bottle of something.\", \"a table top with some dishes on top of it\", \"A table full of dirty dishes is pictured in this image.\"], \"instances\": [{\"category\": \"dining table\", \"bbox\": [0.0, 0.007, 0.998, 0.988]}, {\"category\": \"bottle\", \"bbox\": [0.554, 0.002, 0.768, 0.411]}, {\"category\": \"cup\", \"bbox\": [0.372, 0.011, 0.544, 0.427]}, {\"category\": \"fork\", \"bbox\": [0.442, 0.464, 0.818, 0.572]}, {\"category\": \"fork\", \"bbox\": [0.089, 0.233, 0.272, 0.456]}, {\"category\": \"spoon\", \"bbox\": [0.144, 0.218, 0.326, 0.413]}, {\"category\": \"cup\", \"bbox\": [0.688, 0.056, 0.812, 0.361]}]}\n{\"id\": \"000000416256\", \"image\": \"COCO_val2014_000000416256.jpg\", \"captions\": [\"A cat laying on the floor next to a keyboard.\", \"an orange and white cat is laying next to a keyboard and some wires\", \"A cat is laying next to a computer keyboard.\", \"a cat laying on a floor next to a keyboard\", \"A CAT LAYING ON THE FLOOR AMIDST A COMPUTER,SPEAKERS,CORDS\"], \"instances\": [{\"category\": \"cat\", \"bbox\": [0.235, 0.23, 0.737, 0.639]}, {\"category\": \"keyboard\", \"bbox\": [0.243, 0.562, 0.631, 0.836]}, {\"category\": \"keyboard\", \"bbox\": [0.058, 0.33, 0.277, 0.608]}]}\n{\"id\": \"000000214367\", \"image\": \"COCO_val2014_000000214367.jpg\", \"captions\": [\"Wood shading on the side of a window with brick siding.\", \"A tree filled with lots of red fruit near a building.\", \"By the window outside is a apple tree, where the apples are ready to be picked.\", \"Some very nice looking red fruity by a window,\", \"A shuttered window has a fruit tree outside it.\"], \"instances\": [{\"category\": \"apple\", \"bbox\": [0.214, 0.112, 0.408, 0.266]}, {\"category\": \"apple\", \"bbox\": [0.472, 0.166, 0.618, 0.293]}, {\"category\": \"apple\", \"bbox\": [0.055, 0.592, 0.172, 0.686]}, {\"category\": \"apple\", \"bbox\": [0.126, 0.661, 0.236, 0.739]}, {\"category\": \"apple\", \"bbox\": [0.52, 0.09, 0.609, 0.143]}, {\"category\": \"apple\", \"bbox\": [0.226, 0.354, 0.285, 0.409]}, {\"category\": \"apple\", \"bbox\": [0.0, 0.698, 0.096, 0.771]}, {\"category\": \"apple\", \"bbox\": [0.001, 0.646, 0.042, 0.713]}, {\"category\": \"apple\", \"bbox\": [0.258, 0.719, 0.329, 0.778]}]}\n{\"id\": \"000000210299\", \"image\": \"COCO_val2014_000000210299.jpg\", \"captions\": [\"A little boy riding his bike and wearing a helmet\", \"A little boy raveling down a road on a bike, with a yellow helmet on.\", \"The boy wears a helmet while riding his bicycle.\", \"a small child wearing a helmet and riding a bike\", \"A little boy wearing a helmet and riding a bike.\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.198, 0.259, 0.399, 0.679]}, {\"category\": \"bicycle\", \"bbox\": [0.213, 0.383, 0.408, 0.835]}]}\n{\"id\": \"000000088218\", \"image\": \"COCO_val2014_000000088218.jpg\", \"captions\": [\"Signs proclaim the famous Haight Ashbury intersection and district.\", \"a pole with street lights, signs and wires attached to it\", \"A traffic light at the intersection of Haight and Ashbury\", \"A traffic sign is shown with traffic signs above it.\", \"The street signs and traffic signal are below wires attached to the pole.\"], \"instances\": [{\"category\": \"traffic light\", \"bbox\": [0.443, 0.435, 0.658, 0.721]}]}\n{\"id\": \"000000020650\", \"image\": \"COCO_val2014_000000020650.jpg\", \"captions\": [\"Burger with broccoli, pickle, and fork on orange plate\", \"On a plate is kept a burger and a bowl of broccoli and a fork.\", \"There is half a sandwich on an orange plate with a pickle and a bowl of broccoli\", \"A A bowl and a sandwich on an orange plate on a table.\", \"A plate has a sandwich, broccoli, and a pickle.\"], \"instances\": [{\"category\": \"sandwich\", \"bbox\": [0.436, 0.155, 0.805, 0.859]}, {\"category\": \"sandwich\", \"bbox\": [0.311, 0.006, 0.748, 0.293]}, {\"category\": \"fork\", \"bbox\": [0.0, 0.665, 0.578, 0.876]}, {\"category\": \"bowl\", \"bbox\": [0.002, 0.263, 0.487, 0.744]}, {\"category\": \"bowl\", \"bbox\": [0.708, 0.003, 0.828, 0.03]}, {\"category\": \"broccoli\", \"bbox\": [0.185, 0.288, 0.366, 0.546]}, {\"category\": \"broccoli\", \"bbox\": [0.017, 0.344, 0.384, 0.654]}, {\"category\": \"broccoli\", \"bbox\": [0.31, 0.191, 0.466, 0.463]}, {\"category\": \"broccoli\", \"bbox\": [0.104, 0.107, 0.285, 0.342]}, {\"category\": \"broccoli\", \"bbox\": [0.092, 0.276, 0.242, 0.442]}, {\"category\": \"dining table\", \"bbox\": [0.002, 0.0, 0.999, 0.987]}]}\n{\"id\": \"000000514915\", \"image\": \"COCO_val2014_000000514915.jpg\", \"captions\": [\"A large black dog laying on a kitchen floor.\", \"A dog is laying down on the floor in the home.\", \"Black dog laying down on the kitchen floor next to it's bowls and toy\", \"A black dog with a red collar laying on a tiled floor.\", \"A black dog that is laying on the floor.\"], \"instances\": [{\"category\": \"dog\", \"bbox\": [0.087, 0.276, 0.812, 0.792]}, {\"category\": \"bowl\", \"bbox\": [0.437, 0.09, 0.533, 0.213]}, {\"category\": \"bowl\", \"bbox\": [0.537, 0.035, 0.665, 0.141]}]}\n{\"id\": \"000000205183\", \"image\": \"COCO_val2014_000000205183.jpg\", \"captions\": [\"A duck walking along a paved road next to a patch of grass.\", \"A close up of a duck walking on a path.\", \"a duck walks along a cement patch while looking down\", \"A white duck out of water, walking on the ground.\", \"A goose standing in the road, looking at the ground.\"], \"instances\": [{\"category\": \"bird\", \"bbox\": [0.291, 0.235, 0.859, 0.889]}]}\n{\"id\": \"000000534270\", \"image\": \"COCO_val2014_000000534270.jpg\", \"captions\": [\"Man and woman with umbrella hats sitting on top of a bridge.\", \"A couple equipped with umbrella hats taking a break from walking their dog on a bridge on a rainy day.\", \"Two people in ridiculous looking umbrella hats.\", \"two people with umbrella hats near one another\", \"A couple of people wearing umbrella hats next to the ocean.\"], \"instances\": [{\"category\": \"dog\", \"bbox\": [0.456, 0.832, 0.6, 0.983]}, {\"category\": \"person\", \"bbox\": [0.433, 0.464, 0.636, 0.975]}, {\"category\": \"person\", \"bbox\": [0.263, 0.321, 0.459, 0.978]}, {\"category\": \"boat\", \"bbox\": [0.912, 0.4, 0.978, 0.433]}, {\"category\": \"boat\", \"bbox\": [0.211, 0.236, 0.478, 0.304]}, {\"category\": \"boat\", \"bbox\": [0.144, 0.328, 0.189, 0.361]}, {\"category\": \"umbrella\", \"bbox\": [0.443, 0.402, 0.607, 0.473]}, {\"category\": \"umbrella\", \"bbox\": [0.325, 0.311, 0.483, 0.432]}, {\"category\": \"umbrella\", \"bbox\": [0.207, 0.738, 0.284, 0.778]}, {\"category\": \"umbrella\", \"bbox\": [0.489, 0.713, 0.649, 0.83]}]}\n{\"id\": \"000000408439\", \"image\": \"COCO_val2014_000000408439.jpg\", \"captions\": [\"Cliffs rise on the edge of a placid lake.\", \"A scenic view of a river with a train on the edge of it in the distance.\", \"A large lake surrounded by beautiful tree covered mountains.\", \"a landscape scene with water, mountains and trees\", \"A train on a waterfront track surrounded by mountains.\"], \"instances\": [{\"category\": \"train\", \"bbox\": [0.008, 0.591, 0.562, 0.644]}]}\n{\"id\": \"000000474253\", \"image\": \"COCO_val2014_000000474253.jpg\", \"captions\": [\"A man riding on the back of a horse through a river.\", \"A person is riding a horse through water.\", \"Horse and rider crossing waterway during competitive event.\", \"A woman riding a horse splashes through a large puddle.\", \"A young man riding a horse through some water.\"], \"instances\": [{\"category\": \"horse\", \"bbox\": [0.385, 0.235, 0.651, 0.814]}, {\"category\": \"person\", \"bbox\": [0.396, 0.06, 0.576, 0.675]}, {\"category\": \"person\", \"bbox\": [0.29, 0.148, 0.355, 0.333]}, {\"category\": \"person\", \"bbox\": [0.129, 0.163, 0.212, 0.349]}, {\"category\": \"person\", \"bbox\": [0.005, 0.014, 0.038, 0.165]}, {\"category\": \"person\", \"bbox\": [0.144, 0.011, 0.193, 0.155]}, {\"category\": \"person\", \"bbox\": [0.089, 0.007, 0.133, 0.162]}]}\n{\"id\": \"000000098029\", \"image\": \"COCO_val2014_000000098029.jpg\", \"captions\": [\"a table with many plates on it with a bread basket\", \"A table set for four has many foods and fruits on it.\", \"Several objects displayed on a kitchen table including bread, oranges and plating.\", \"Several dishes and food items sit on a table.\", \"An assortment of foods sitting on a round brown table.\"], \"instances\": [{\"category\": \"refrigerator\", \"bbox\": [0.013, 0.004, 0.37, 0.317]}, {\"category\": \"bottle\", \"bbox\": [0.467, 0.517, 0.555, 0.638]}, {\"category\": \"bottle\", \"bbox\": [0.602, 0.536, 0.658, 0.609]}, {\"category\": \"chair\", \"bbox\": [0.747, 0.367, 1.0, 0.592]}, {\"category\": \"chair\", \"bbox\": [0.044, 0.368, 0.358, 0.544]}, {\"category\": \"cup\", \"bbox\": [0.296, 0.465, 0.359, 0.54]}, {\"category\": \"cup\", \"bbox\": [0.709, 0.67, 0.782, 0.736]}, {\"category\": \"cup\", \"bbox\": [0.213, 0.684, 0.294, 0.753]}, {\"category\": \"knife\", \"bbox\": [0.787, 0.699, 0.922, 0.797]}, {\"category\": \"knife\", \"bbox\": [0.161, 0.539, 0.265, 0.584]}, {\"category\": \"spoon\", \"bbox\": [0.813, 0.674, 0.922, 0.759]}, {\"category\": \"spoon\", \"bbox\": [0.156, 0.555, 0.233, 0.587]}, {\"category\": \"spoon\", \"bbox\": [0.596, 0.467, 0.613, 0.509]}, {\"category\": \"bowl\", \"bbox\": [0.241, 0.753, 0.505, 0.935]}, {\"category\": \"banana\", \"bbox\": [0.632, 0.138, 0.718, 0.161]}, {\"category\": \"apple\", \"bbox\": [0.701, 0.152, 0.758, 0.191]}, {\"category\": \"orange\", \"bbox\": [0.607, 0.66, 0.692, 0.716]}, {\"category\": \"orange\", \"bbox\": [0.565, 0.636, 0.611, 0.667]}, {\"category\": \"orange\", \"bbox\": [0.526, 0.624, 0.572, 0.652]}, {\"category\": \"orange\", \"bbox\": [0.61, 0.628, 0.656, 0.657]}, {\"category\": \"orange\", \"bbox\": [0.599, 0.649, 0.643, 0.677]}, {\"category\": \"dining table\", \"bbox\": [0.013, 0.439, 0.964, 0.986]}, {\"category\": \"cup\", \"bbox\": [0.612, 0.489, 0.669, 0.548]}, {\"category\": \"knife\", \"bbox\": [0.605, 0.457, 0.638, 0.53]}, {\"category\": \"apple\", \"bbox\": [0.502, 0.137, 0.537, 0.159]}, {\"category\": \"orange\", \"bbox\": [0.54, 0.135, 0.563, 0.151]}, {\"category\": \"orange\", \"bbox\": [0.527, 0.129, 0.554, 0.142]}, {\"category\": \"orange\", \"bbox\": [0.611, 0.155, 0.641, 0.171]}, {\"category\": \"chair\", \"bbox\": [0.0, 0.843, 0.29, 0.989]}, {\"category\": \"cup\", \"bbox\": [0.353, 0.469, 0.411, 0.511]}, {\"category\": \"cup\", \"bbox\": [0.609, 0.716, 0.682, 0.786]}, {\"category\": \"orange\", \"bbox\": [0.638, 0.158, 0.679, 0.177]}, {\"category\": \"cake\", \"bbox\": [0.38, 0.821, 0.481, 0.895]}, {\"category\": \"chair\", \"bbox\": [0.79, 0.747, 1.0, 1.0]}, {\"category\": \"bottle\", \"bbox\": [0.719, 0.55, 0.769, 0.616]}, {\"category\": \"bottle\", \"bbox\": [0.795, 0.546, 0.873, 0.613]}, {\"category\": \"knife\", \"bbox\": [0.17, 0.799, 0.264, 0.88]}, {\"category\": \"cup\", \"bbox\": [0.317, 0.695, 0.391, 0.752]}]}\n{\"id\": \"000000294073\", \"image\": \"COCO_val2014_000000294073.jpg\", \"captions\": [\"A woman and a man standing between two brown horses.\", \"A COUPLE WEARING YELLOW DRESS STANDING NEAR TWO HORSES.\", \"An older couple stands between two horses.\", \"A man and a woman standing with two horses\", \"A man and a woman stand in between two horses.\"], \"instances\": [{\"category\": \"horse\", \"bbox\": [0.0, 0.052, 0.49, 0.989]}, {\"category\": \"horse\", \"bbox\": [0.632, 0.23, 1.0, 0.989]}, {\"category\": \"person\", \"bbox\": [0.425, 0.326, 0.696, 0.987]}, {\"category\": \"person\", \"bbox\": [0.627, 0.203, 0.828, 0.986]}, {\"category\": \"book\", \"bbox\": [0.525, 0.597, 0.644, 0.833]}]}\n{\"id\": \"000000203629\", \"image\": \"COCO_val2014_000000203629.jpg\", \"captions\": [\"A man on a cell phone in a public area holding his thumb up.\", \"A group of people gathered inside of a room.\", \"A man on his cellphone posing for a  picture.\", \"A man giving a thumbs up while on a cell phone.\", \"The man is giving a thumbs up while on his phone.\"], \"instances\": [{\"category\": \"cell phone\", \"bbox\": [0.43, 0.459, 0.449, 0.503]}, {\"category\": \"cup\", \"bbox\": [0.756, 0.838, 0.865, 0.98]}, {\"category\": \"person\", \"bbox\": [0.232, 0.317, 0.603, 0.98]}, {\"category\": \"person\", \"bbox\": [0.602, 0.405, 1.0, 0.999]}, {\"category\": \"person\", \"bbox\": [0.003, 0.339, 0.313, 0.987]}, {\"category\": \"person\", \"bbox\": [0.164, 0.379, 0.258, 0.733]}, {\"category\": \"person\", \"bbox\": [0.564, 0.36, 0.673, 0.645]}, {\"category\": \"person\", \"bbox\": [0.241, 0.379, 0.336, 0.512]}, {\"category\": \"person\", \"bbox\": [0.682, 0.372, 0.736, 0.502]}, {\"category\": \"person\", \"bbox\": [0.654, 0.428, 0.734, 0.536]}, {\"category\": \"person\", \"bbox\": [0.718, 0.368, 0.787, 0.508]}, {\"category\": \"person\", \"bbox\": [0.148, 0.362, 0.205, 0.529]}, {\"category\": \"person\", \"bbox\": [0.001, 0.431, 0.044, 0.564]}, {\"category\": \"cup\", \"bbox\": [0.901, 0.808, 0.995, 0.982]}]}\n{\"id\": \"000000119876\", \"image\": \"COCO_val2014_000000119876.jpg\", \"captions\": [\"A man dressed loudly is using his cell phone.\", \"A man talking on the phone while he walks down the street.\", \"A man with pink hair talking on a cell phone.\", \"A man in a purple shirt and tie and purple hair.\", \"a man colored his hair in purple walking on the road\"], \"instances\": [{\"category\": \"bicycle\", \"bbox\": [0.525, 0.222, 0.924, 0.608]}, {\"category\": \"bicycle\", \"bbox\": [0.895, 0.249, 1.0, 0.642]}, {\"category\": \"person\", \"bbox\": [0.0, 0.0, 0.738, 1.0]}, {\"category\": \"tie\", \"bbox\": [0.319, 0.255, 0.423, 0.638]}, {\"category\": \"cell phone\", \"bbox\": [0.411, 0.13, 0.426, 0.161]}, {\"category\": \"handbag\", \"bbox\": [0.369, 0.205, 0.575, 0.839]}]}\n{\"id\": \"000000164255\", \"image\": \"COCO_val2014_000000164255.jpg\", \"captions\": [\"An umbrella that is standing in the sand.\", \"An umbrella is stuck in the sand on the beach.\", \"a colorful striped umbrella on the beach near the ocean\", \"A colorful umbrella is set up at the beach.\", \"The colorful umbrella is sitting by the beach,\"], \"instances\": [{\"category\": \"umbrella\", \"bbox\": [0.0, 0.101, 0.567, 0.575]}]}\n{\"id\": \"000000192817\", \"image\": \"COCO_val2014_000000192817.jpg\", \"captions\": [\"A view from a window high up in the sky.\", \"A bunch of mountains seen from a plane window.\", \"The window from a plane overlooking the ground.\", \"The view of a mountain area from an airplane window.\", \"An aerial view of mountains and lakes from an airplane window.\"], \"instances\": []}\n{\"id\": \"000000258285\", \"image\": \"COCO_val2014_000000258285.jpg\", \"captions\": [\"Two large passenger jets flying over a beach filled with birds.\", \"A plane is flying over a bird filed lake\", \"Two airplanes are in the sky over blue water.\", \"An airplane landing over an airplane on the ground.\", \"A photo of two plans with water and birds surrounding it , one plane in the air one one the ground.\"], \"instances\": [{\"category\": \"bird\", \"bbox\": [0.507, 0.941, 0.536, 0.973]}, {\"category\": \"bird\", \"bbox\": [0.304, 0.933, 0.315, 0.95]}, {\"category\": \"bird\", \"bbox\": [0.129, 0.885, 0.143, 0.912]}, {\"category\": \"bird\", \"bbox\": [0.158, 0.851, 0.165, 0.87]}, {\"category\": \"bird\", \"bbox\": [0.404, 0.839, 0.429, 0.864]}, {\"category\": \"bird\", \"bbox\": [0.498, 0.833, 0.513, 0.861]}, {\"category\": \"airplane\", \"bbox\": [0.276, 0.085, 0.825, 0.316]}, {\"category\": \"airplane\", \"bbox\": [0.478, 0.252, 0.983, 0.495]}, {\"category\": \"bird\", \"bbox\": [0.552, 0.828, 0.564, 0.844]}, {\"category\": \"bird\", \"bbox\": [0.789, 0.812, 0.798, 0.836]}, {\"category\": \"bird\", \"bbox\": [0.927, 0.82, 0.936, 0.838]}, {\"category\": \"bird\", \"bbox\": [0.65, 0.828, 0.664, 0.849]}, {\"category\": \"bird\", \"bbox\": [0.752, 0.81, 0.763, 0.83]}, {\"category\": \"bird\", \"bbox\": [0.841, 0.817, 0.852, 0.828]}, {\"category\": \"bird\", \"bbox\": [0.292, 0.849, 0.311, 0.868]}, {\"category\": \"bird\", \"bbox\": [0.005, 0.727, 0.981, 0.998]}]}\n{\"id\": \"000000506483\", \"image\": \"COCO_val2014_000000506483.jpg\", \"captions\": [\"An art installation is placed by a street.\", \"People sit near a display of large artworks including an oversize bench and painted feline heads.\", \"Looking down on a giant rocking bench and large animal heads.\", \"An over sized wooden bench next to two massive animal art sculptures.\", \"artistic sculptures and images on a city street\"], \"instances\": [{\"category\": \"car\", \"bbox\": [0.656, 0.939, 0.933, 1.0]}, {\"category\": \"person\", \"bbox\": [0.08, 0.664, 0.147, 0.805]}, {\"category\": \"person\", \"bbox\": [0.154, 0.646, 0.217, 0.821]}, {\"category\": \"bench\", \"bbox\": [0.316, 0.124, 0.951, 0.635]}, {\"category\": \"backpack\", \"bbox\": [0.062, 0.701, 0.097, 0.769]}, {\"category\": \"person\", \"bbox\": [0.0, 0.132, 0.031, 0.197]}]}\n{\"id\": \"000000502168\", \"image\": \"COCO_val2014_000000502168.jpg\", \"captions\": [\"a fleet of naval ships in the ocean\", \"A group of men on aircraft carrier with other boats in the distance.\", \"A large ship floating in the ocean next to other ships.\", \"Several men on a boat looking over the side.\", \"The men wear hardhats as they work on the aircraft carrier.\"], \"instances\": [{\"category\": \"boat\", \"bbox\": [0.634, 0.292, 1.0, 0.982]}, {\"category\": \"person\", \"bbox\": [0.675, 0.507, 0.736, 0.731]}, {\"category\": \"person\", \"bbox\": [0.684, 0.737, 0.817, 1.0]}, {\"category\": \"person\", \"bbox\": [0.803, 0.691, 0.883, 0.932]}, {\"category\": \"person\", \"bbox\": [0.741, 0.56, 0.798, 0.767]}, {\"category\": \"person\", \"bbox\": [0.924, 0.269, 0.951, 0.367]}, {\"category\": \"boat\", \"bbox\": [0.079, 0.171, 0.172, 0.231]}, {\"category\": \"boat\", \"bbox\": [0.863, 0.131, 0.961, 0.239]}, {\"category\": \"boat\", \"bbox\": [0.435, 0.288, 0.46, 0.313]}, {\"category\": \"boat\", \"bbox\": [0.591, 0.186, 0.605, 0.222]}, {\"category\": \"person\", \"bbox\": [0.451, 0.289, 0.455, 0.296]}, {\"category\": \"person\", \"bbox\": [0.446, 0.29, 0.451, 0.296]}, {\"category\": \"person\", \"bbox\": [0.872, 0.627, 0.957, 0.966]}, {\"category\": \"person\", \"bbox\": [0.44, 0.288, 0.446, 0.3]}]}\n{\"id\": \"000000319432\", \"image\": \"COCO_val2014_000000319432.jpg\", \"captions\": [\"Man holding two shirts with luggage and window\", \"A man holding clothes on a hanger with a suitcase in front of him.\", \"A man show a red and a white clothing hangers.\", \"A man holding his garment bags in both hands\", \"A man holding up some clothes in some hanger bags.\"], \"instances\": [{\"category\": \"person\", \"bbox\": [0.0, 0.092, 0.776, 0.852]}, {\"category\": \"suitcase\", \"bbox\": [0.153, 0.798, 0.587, 1.0]}]}\n{\"id\": \"000000131019\", \"image\": \"COCO_val2014_000000131019.jpg\", \"captions\": [\"Two zebras and two monkeys walking on the grass.\", \"Two giraffes and another animal are on green grass.\", \"A baboon and two zebras grazing on the savannah.\", \"A baboon and its baby eat by two zebras in the grass\", \"Monkey standing behind two zebras as they graze.\"], \"instances\": [{\"category\": \"zebra\", \"bbox\": [0.367, 0.258, 0.834, 0.646]}, {\"category\": \"zebra\", \"bbox\": [0.161, 0.13, 0.396, 0.375]}, {\"category\": \"bird\", \"bbox\": [0.309, 0.138, 0.34, 0.163]}]}\n"
  },
  {
    "path": "model/univi/eval/table/model.jsonl",
    "content": "{\"model_id\": \"vicuna-13b:20230322-clean-lang\", \"model_name\": \"vicuna-13b\", \"model_version\": \"20230322-clean-lang\", \"model_metadata\": \"vicuna-13b-20230322-clean-lang\"}\n{\"model_id\": \"alpaca-13b:v1\", \"model_name\": \"alpaca-13b\", \"model_version\": \"v1\", \"model_metadata\": \"alpaca-13b\"}\n{\"model_id\": \"llama-13b:v1\", \"model_name\": \"llama-13b\", \"model_version\": \"v1\", \"model_metadata\": \"hf-llama-13b\"}\n{\"model_id\": \"bard:20230327\", \"model_name\": \"bard\", \"model_version\": \"20230327\", \"model_metadata\": \"Google Bard 20230327\"}\n{\"model_id\": \"gpt-3.5-turbo:20230327\", \"model_name\": \"gpt-3.5-turbo\", \"model_version\": \"20230327\", \"model_metadata\": \"OpenAI ChatGPT gpt-3.5-turbo Chat Completion\"}\n"
  },
  {
    "path": "model/univi/eval/table/question.jsonl",
    "content": "{\"question_id\": 1, \"text\": \"How can I improve my time management skills?\", \"category\": \"generic\"}\n{\"question_id\": 2, \"text\": \"What are the most effective ways to deal with stress?\", \"category\": \"generic\"}\n{\"question_id\": 3, \"text\": \"What are the main differences between Python and JavaScript programming languages?\", \"category\": \"generic\"}\n{\"question_id\": 4, \"text\": \"How can I increase my productivity while working from home?\", \"category\": \"generic\"}\n{\"question_id\": 5, \"text\": \"Can you explain the basics of quantum computing?\", \"category\": \"generic\"}\n{\"question_id\": 6, \"text\": \"What are the differences between plant-based and animal-based protein sources?\", \"category\": \"generic\"}\n{\"question_id\": 7, \"text\": \"How can I develop my critical thinking skills?\", \"category\": \"generic\"}\n{\"question_id\": 8, \"text\": \"What are the major challenges faced by the education sector today?\", \"category\": \"generic\"}\n{\"question_id\": 9, \"text\": \"What are the primary factors that influence consumer behavior?\", \"category\": \"generic\"}\n{\"question_id\": 10, \"text\": \"What are the most effective strategies for conflict resolution in the workplace?\", \"category\": \"generic\"}\n{\"question_id\": 11, \"text\": \"What are some potential implications of using a single-use plastic bottle versus a reusable bottle on both the environment and human health?\", \"category\": \"knowledge\"}\n{\"question_id\": 12, \"text\": \"What factors would you consider when designing an inclusive and accessible public transportation system?\", \"category\": \"knowledge\"}\n{\"question_id\": 13, \"text\": \"How can governments utilize fiscal and monetary policies to combat economic recessions?\", \"category\": \"knowledge\"}\n{\"question_id\": 14, \"text\": \"How do language and cultural barriers affect the way people communicate and form relationships in multicultural societies?\", \"category\": \"knowledge\"}\n{\"question_id\": 15, \"text\": \"Describe a scenario where artificial intelligence could be used to improve the quality and efficiency of healthcare delivery.\", \"category\": \"knowledge\"}\n{\"question_id\": 16, \"text\": \"Explain the process of gene editing using CRISPR-Cas9 technology, and discuss its potential applications and ethical implications.\", \"category\": \"knowledge\"}\n{\"question_id\": 17, \"text\": \"How do vaccinations work to protect individuals and communities from infectious diseases, and what is herd immunity?\", \"category\": \"knowledge\"}\n{\"question_id\": 18, \"text\": \"How do social media platforms influence the way people consume and share news, and what are the potential implications for the spread of misinformation?\", \"category\": \"knowledge\"}\n{\"question_id\": 19, \"text\": \"How do cultural, social, and economic factors influence people's food choices, and how can this knowledge be used to promote healthier diets?\", \"category\": \"knowledge\"}\n{\"question_id\": 20, \"text\": \"Explain the process of natural selection and how it contributes to the evolution and adaptation of species.\", \"category\": \"knowledge\"}\n{\"question_id\": 21, \"text\": \"How would you introduce yourself as a medieval knight at a royal banquet?\", \"category\": \"roleplay\"}\n{\"question_id\": 22, \"text\": \"As a pirate captain, what would you say to your crew to motivate them to search for hidden treasure?\", \"category\": \"roleplay\"}\n{\"question_id\": 23, \"text\": \"If you were a Shakespearean character, how would you declare your love for someone in a soliloquy?\", \"category\": \"roleplay\"}\n{\"question_id\": 24, \"text\": \"As a superhero, how would you explain your origin story to a curious child?\", \"category\": \"roleplay\"}\n{\"question_id\": 25, \"text\": \"Imagine you are a time traveler from the year 3000. What technological advancements would you tell people about?\", \"category\": \"roleplay\"}\n{\"question_id\": 26, \"text\": \"As a sports commentator, describe the winning play in the final seconds of a championship game.\", \"category\": \"roleplay\"}\n{\"question_id\": 27, \"text\": \"Pretend to be a world-famous chef. How would you describe your signature dish to a panel of judges?\", \"category\": \"roleplay\"}\n{\"question_id\": 28, \"text\": \"You are a mountain climber reaching the summit of Mount Everest. Describe your emotions and the view from the top.\", \"category\": \"roleplay\"}\n{\"question_id\": 29, \"text\": \"As a space colonist on Mars, describe your daily life and the challenges you face living on another planet.\", \"category\": \"roleplay\"}\n{\"question_id\": 30, \"text\": \"Pretend to be a character in a post-apocalyptic world. Describe how you survive and the allies you encounter.\", \"category\": \"roleplay\"}\n{\"question_id\": 31, \"text\": \"How can you determine if a restaurant is popular among locals or mainly attracts tourists, and why might this information be useful?\", \"category\": \"common-sense\"}\n{\"question_id\": 32, \"text\": \"What are some subtle clues that suggest someone is pretending to understand a topic or conversation when they are actually confused or uninformed?\", \"category\": \"common-sense\"}\n{\"question_id\": 33, \"text\": \"Why might someone choose to use a paper map or ask for directions instead of relying on a GPS device or smartphone app?\", \"category\": \"common-sense\"}\n{\"question_id\": 34, \"text\": \"How can you determine if a person is genuinely interested in a conversation or simply being polite?\", \"category\": \"common-sense\"}\n{\"question_id\": 35, \"text\": \"Why might someone prefer to shop at a small, locally-owned business instead of a large chain store, even if the prices are higher?\", \"category\": \"common-sense\"}\n{\"question_id\": 36, \"text\": \"How can you assess the credibility of a source of information, such as a news article or blog post, without relying solely on the reputation of the author or publisher?\", \"category\": \"common-sense\"}\n{\"question_id\": 37, \"text\": \"Why do some people enjoy the sensation of being scared, such as by watching horror movies or going on roller coasters, while others avoid these experiences?\", \"category\": \"common-sense\"}\n{\"question_id\": 38, \"text\": \"How can observing the behavior of other people in a social situation provide clues about cultural norms and expectations?\", \"category\": \"common-sense\"}\n{\"question_id\": 39, \"text\": \"Do we have a moral obligation to explore space, or should we focus on solving Earth's problems first?\", \"category\": \"common-sense\"}\n{\"question_id\": 40, \"text\": \"In a world where automation is becoming increasingly prevalent, is it more important to prioritize job creation or technological progress?\", \"category\": \"common-sense\"}\n{\"question_id\": 41, \"text\": \"How many times does the average human blink in a lifetime? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step.\", \"category\": \"fermi\"}\n{\"question_id\": 42, \"text\": \"How many atoms are in a grain of salt? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step.\", \"category\": \"fermi\"}\n{\"question_id\": 43, \"text\": \"How many lightning strikes occur on Earth each day? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step.\", \"category\": \"fermi\"}\n{\"question_id\": 44, \"text\": \"How many balloons would it take to lift a house like in the movie \\\"Up\\\"? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step.\", \"category\": \"fermi\"}\n{\"question_id\": 45, \"text\": \"How many text messages are sent globally in a minute? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step.\", \"category\": \"fermi\"}\n{\"question_id\": 46, \"text\": \"How many words are spoken daily on Earth? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step.\", \"category\": \"fermi\"}\n{\"question_id\": 47, \"text\": \"How many snowflakes fall during a typical winter? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step.\", \"category\": \"fermi\"}\n{\"question_id\": 48, \"text\": \"How many pages are in all the books ever written? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step.\", \"category\": \"fermi\"}\n{\"question_id\": 49, \"text\": \"How many times has the Earth orbited the Sun since the beginning of life? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step.\", \"category\": \"fermi\"}\n{\"question_id\": 50, \"text\": \"How many songs have been recorded throughout history? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step.\", \"category\": \"fermi\"}\n{\"question_id\": 51, \"text\": \"What if the Internet had been invented during the Renaissance period?\", \"category\": \"counterfactual\"}\n{\"question_id\": 52, \"text\": \"What if the Aztecs had successfully repelled the Spanish conquistadors?\", \"category\": \"counterfactual\"}\n{\"question_id\": 53, \"text\": \"What if the Black Death had not occurred in the 14th century?\", \"category\": \"counterfactual\"}\n{\"question_id\": 54, \"text\": \"What if Isaac Newton had focused on biology instead of physics?\", \"category\": \"counterfactual\"}\n{\"question_id\": 55, \"text\": \"What if the Beatles had never formed as a band?\", \"category\": \"counterfactual\"}\n{\"question_id\": 56, \"text\": \"What if Alan Turing had not cracked the Enigma code during World War II?\", \"category\": \"counterfactual\"}\n{\"question_id\": 57, \"text\": \"What if the Suez Canal had never been constructed?\", \"category\": \"counterfactual\"}\n{\"question_id\": 58, \"text\": \"What if the Maya civilization had never mysteriously collapsed?\", \"category\": \"counterfactual\"}\n{\"question_id\": 59, \"text\": \"What if Christopher Columbus had not discovered the Americas?\", \"category\": \"counterfactual\"}\n{\"question_id\": 60, \"text\": \"What if Vincent van Gogh had been a successful artist during his lifetime?\", \"category\": \"counterfactual\"}\n{\"question_id\": 61, \"text\": \"Develop a C++ program that reads a text file line by line and counts the number of occurrences of a specific word in the file.\", \"category\": \"coding\"}\n{\"question_id\": 62, \"text\": \"Implement a Python function to find the longest common subsequence of two input strings using dynamic programming.\", \"category\": \"coding\"}\n{\"question_id\": 63, \"text\": \"Implement a regular expression in Python to validate an email address.\", \"category\": \"coding\"}\n{\"question_id\": 64, \"text\": \"Write a program to find the nth Fibonacci number using dynamic programming.\", \"category\": \"coding\"}\n{\"question_id\": 65, \"text\": \"Implement a binary search algorithm to find a specific element in a sorted array.\", \"category\": \"coding\"}\n{\"question_id\": 66, \"text\": \"Implement a queue data structure using two stacks in Python.\", \"category\": \"coding\"}\n{\"question_id\": 67, \"text\": \"Implement a program to find the common elements in two arrays without using any extra data structures.\", \"category\": \"coding\"}\n{\"question_id\": 68, \"text\": \"Given that f(x) = 5x^3 - 2x + 3, find the value of f(2).\", \"category\": \"math\"}\n{\"question_id\": 69, \"text\": \"Solve for x in the equation 3x + 10 = 5(x - 2).\", \"category\": \"math\"}\n{\"question_id\": 70, \"text\": \"If the endpoints of a line segment are (2, -2) and (10, 4), what is the length of the segment?\", \"category\": \"math\"}\n{\"question_id\": 71, \"text\": \"Can you help me write a formal email to a potential business partner proposing a joint venture?\", \"category\": \"writing\"}\n{\"question_id\": 72, \"text\": \"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?\", \"category\": \"writing\"}\n{\"question_id\": 73, \"text\": \"Use an appropriate format to structure a formal letter of recommendation for a student applying to a prestigious graduate program in computer science.\", \"category\": \"writing\"}\n{\"question_id\": 74, \"text\": \"Write a compelling product launch announcement email to inform our customers of our new software solution.\", \"category\": \"writing\"}\n{\"question_id\": 75, \"text\": \"Draft an apology email to a customer who experienced a delay in their order, and provide reassurance that the issue has been resolved.\", \"category\": \"writing\"}\n{\"question_id\": 76, \"text\": \"Write a script for a YouTube video exploring the history and cultural significance of jazz.\", \"category\": \"writing\"}\n{\"question_id\": 77, \"text\": \"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.\", \"category\": \"writing\"}\n{\"question_id\": 78, \"text\": \"Write a captivating movie review for a recently released science fiction film, discussing its plot, characters, and special effects.\", \"category\": \"writing\"}\n{\"question_id\": 79, \"text\": \"Structure a podcast script for an episode discussing the influence of streaming platforms on the music industry.\", \"category\": \"writing\"}\n{\"question_id\": 80, \"text\": \"Write a symphony concert review, discussing the orchestra's performance and overall audience experience.\", \"category\": \"writing\"}\n"
  },
  {
    "path": "model/univi/eval/table/reviewer.jsonl",
    "content": "{\"reviewer_id\": \"gpt-4-0328-default\", \"prompt_id\": 1, \"metadata\": {\"temperature\": 0.2, \"max_tokens\": 1024}, \"description\": \"GPT-4 for general questions\"}\n{\"reviewer_id\": \"gpt-4-0328-coding\", \"prompt_id\": 2, \"metadata\": {\"temperature\": 0.2, \"max_tokens\": 1024}, \"description\": \"GPT-4 for coding questions\"}\n{\"reviewer_id\": \"gpt-4-0328-math\", \"prompt_id\": 3, \"metadata\": {\"temperature\": 0.2, \"max_tokens\": 1024}, \"description\": \"GPT-4 for math questions\"}\n{\"reviewer_id\": \"gpt-4-0417-visual\", \"prompt_id\": 4, \"metadata\": {\"temperature\": 0.2, \"max_tokens\": 1024}, \"description\": \"GPT-4 for math questions\"}\n"
  },
  {
    "path": "model/univi/eval/table/rule.json",
    "content": "{\n    \"coding\": {\"role\": \"Assistant\", \"prompt\": \"Your task is to evaluate the coding abilities of the above two assistants. They have been asked to implement a program to solve a given problem. Please review their code submissions, paying close attention to their problem-solving approach, code structure, readability, and the inclusion of helpful comments.\\n\\nPlease ensure that the assistants' submissions:\\n\\n1. Correctly implement the given problem statement.\\n2. Contain accurate and efficient code.\\n3. Include clear and concise comments that explain the code's logic and functionality.\\n4. Adhere to proper coding standards and best practices.\\n\\nOnce you have carefully reviewed both submissions, provide detailed feedback on their strengths and weaknesses, along with any suggestions for improvement. You should first output a single line containing two scores on the scale of 1-10 (1: no code/no sense; 10: perfect) for Assistant 1 and 2, respectively. Then give extra comments starting from the next line.\"},\n    \"math\":  {\"role\": \"Assistant\", \"prompt\": \"We would like to request your feedback on the mathematical proficiency of two AI assistants regarding the given user question.\\nFirstly, please solve the problem independently, without referring to the answers provided by Assistant 1 and Assistant 2.\\nAfterward, please examine the problem-solving process of Assistant 1 and Assistant 2 step-by-step to ensure their correctness, identifying any incorrect steps if present. Your evaluation should take into account not only the answer but also the problem-solving steps.\\nFinally, please output a Python tuple containing two numerical scores for Assistant 1 and Assistant 2, ranging from 1 to 10, respectively. If applicable, explain the reasons for any variations in their scores and determine which assistant performed better.\"},\n    \"default\":  {\"role\": \"Assistant\", \"prompt\": \"We would like to request your feedback on the performance of two AI assistants in response to the user question displayed above.\\nPlease rate the helpfulness, relevance, accuracy, level of details of their responses. Each assistant receives an overall score on a scale of 1 to 10, where a higher score indicates better overall performance.\\nPlease first output a single line containing only two values indicating the scores for Assistant 1 and 2, respectively. The two scores are separated by a space.\\nIn the subsequent line, please provide a comprehensive explanation of your evaluation, avoiding any potential bias and ensuring that the order in which the responses were presented does not affect your judgment.\"},\n    \"conv\":  {\"role\": \"Assistant\", \"prompt\": \"We would like to request your feedback on the performance of two AI assistants in response to the user question displayed above. The user asks the question on observing an image. For your reference, the visual content in the image is represented with five descriptive sentences describing the same image and the bounding box coordinates of each object in the scene. These coordinates are in the form of bounding boxes, represented as (x1, y1, x2, y2) with floating numbers ranging from 0 to 1. These values correspond to the top left x, top left y, bottom right x, and bottom right y. \\nPlease rate the helpfulness, relevance, accuracy, level of details of their responses. Each assistant receives an overall score on a scale of 1 to 10, where a higher score indicates better overall performance.\\nPlease first output a single line containing only two values indicating the scores for Assistant 1 and 2, respectively. The two scores are separated by a space.\\nIn the subsequent line, please provide a comprehensive explanation of your evaluation, avoiding any potential bias and ensuring that the order in which the responses were presented does not affect your judgment.\"},\n    \"detail\":  {\"role\": \"Assistant\", \"prompt\": \"We would like to request your feedback on the performance of two AI assistants in response to the user question displayed above. The user asks the question on observing an image. For your reference, the visual content in the image is represented with five descriptive sentences describing the same image and the bounding box coordinates of each object in the scene. These coordinates are in the form of bounding boxes, represented as (x1, y1, x2, y2) with floating numbers ranging from 0 to 1. These values correspond to the top left x, top left y, bottom right x, and bottom right y. \\nPlease rate the helpfulness, relevance, accuracy, level of details of their responses. Each assistant receives an overall score on a scale of 1 to 10, where a higher score indicates better overall performance.\\nPlease first output a single line containing only two values indicating the scores for Assistant 1 and 2, respectively. The two scores are separated by a space.\\nIn the subsequent line, please provide a comprehensive explanation of your evaluation, avoiding any potential bias and ensuring that the order in which the responses were presented does not affect your judgment.\"},\n    \"complex\":  {\"role\": \"Assistant\", \"prompt\": \"We would like to request your feedback on the performance of two AI assistants in response to the user question displayed above. The user asks the question on observing an image. For your reference, the visual content in the image is represented with five descriptive sentences describing the same image and the bounding box coordinates of each object in the scene. These coordinates are in the form of bounding boxes, represented as (x1, y1, x2, y2) with floating numbers ranging from 0 to 1. These values correspond to the top left x, top left y, bottom right x, and bottom right y. \\nPlease rate the helpfulness, relevance, accuracy, level of details of their responses. Each assistant receives an overall score on a scale of 1 to 10, where a higher score indicates better overall performance.\\nPlease first output a single line containing only two values indicating the scores for Assistant 1 and 2, respectively. The two scores are separated by a space.\\nIn the subsequent line, please provide a comprehensive explanation of your evaluation, avoiding any potential bias and ensuring that the order in which the responses were presented does not affect your judgment.\"},\n    \"llava_bench_conv\":  {\"role\": \"Assistant\", \"prompt\": \"We would like to request your feedback on the performance of two AI assistants in response to the user question displayed above. The user asks the question on observing an image. For your reference, the visual content in the image is represented with a few sentences describing the image. \\nPlease rate the helpfulness, relevance, accuracy, level of details of their responses. Each assistant receives an overall score on a scale of 1 to 10, where a higher score indicates better overall performance.\\nPlease first output a single line containing only two values indicating the scores for Assistant 1 and 2, respectively. The two scores are separated by a space.\\nIn the subsequent line, please provide a comprehensive explanation of your evaluation, avoiding any potential bias and ensuring that the order in which the responses were presented does not affect your judgment.\"},\n    \"llava_bench_detail\":  {\"role\": \"Assistant\", \"prompt\": \"We would like to request your feedback on the performance of two AI assistants in response to the user question displayed above. The user asks the question on observing an image. For your reference, the visual content in the image is represented with a few sentences describing the image. \\nPlease rate the helpfulness, relevance, accuracy, level of details of their responses. Each assistant receives an overall score on a scale of 1 to 10, where a higher score indicates better overall performance.\\nPlease first output a single line containing only two values indicating the scores for Assistant 1 and 2, respectively. The two scores are separated by a space.\\nIn the subsequent line, please provide a comprehensive explanation of your evaluation, avoiding any potential bias and ensuring that the order in which the responses were presented does not affect your judgment.\"},\n    \"llava_bench_complex\":  {\"role\": \"Assistant\", \"prompt\": \"We would like to request your feedback on the performance of two AI assistants in response to the user question displayed above. The user asks the question on observing an image. For your reference, the visual content in the image is represented with a few sentences describing the image. \\nPlease rate the helpfulness, relevance, accuracy, level of details of their responses. Each assistant receives an overall score on a scale of 1 to 10, where a higher score indicates better overall performance.\\nPlease first output a single line containing only two values indicating the scores for Assistant 1 and 2, respectively. The two scores are separated by a space.\\nIn the subsequent line, please provide a comprehensive explanation of your evaluation, avoiding any potential bias and ensuring that the order in which the responses were presented does not affect your judgment.\"}\n}"
  },
  {
    "path": "model/univi/mm_utils.py",
    "content": "from PIL import Image\nfrom io import BytesIO\nimport base64\n\nimport torch\nfrom transformers import StoppingCriteria\nfrom ChatUniVi.constants import IMAGE_TOKEN_INDEX\n\n\ndef load_image_from_base64(image):\n    return Image.open(BytesIO(base64.b64decode(image)))\n\n\ndef process_images(images, image_processor, model_cfg):\n    return image_processor(images, return_tensors='pt')['pixel_values']\n\n\ndef tokenizer_image_token(prompt, tokenizer, image_token_index=IMAGE_TOKEN_INDEX, return_tensors=None):\n    prompt_chunks = [tokenizer(chunk).input_ids for chunk in prompt.split('<image>')]\n\n    def insert_separator(X, sep):\n        return [ele for sublist in zip(X, [sep]*len(X)) for ele in sublist][:-1]\n\n    input_ids = []\n    offset = 0\n    if len(prompt_chunks) > 0 and len(prompt_chunks[0]) > 0 and prompt_chunks[0][0] == tokenizer.bos_token_id:\n        offset = 1\n        input_ids.append(prompt_chunks[0][0])\n\n    for x in insert_separator(prompt_chunks, [image_token_index] * (offset + 1)):\n        input_ids.extend(x[offset:])\n\n    if return_tensors is not None:\n        if return_tensors == 'pt':\n            return torch.tensor(input_ids, dtype=torch.long)\n        raise ValueError(f'Unsupported tensor type: {return_tensors}')\n\n    return input_ids\n\n\ndef get_model_name_from_path(model_path):\n    model_path = model_path.strip(\"/\")\n    model_paths = model_path.split(\"/\")\n    if model_paths[-1].startswith('checkpoint-'):\n        return model_paths[-2] + \"_\" + model_paths[-1]\n    else:\n        return model_paths[-1]\n\n\nclass KeywordsStoppingCriteria(StoppingCriteria):\n    def __init__(self, keywords, tokenizer, input_ids):\n        self.keywords = keywords\n        self.keyword_ids = []\n        for keyword in keywords:\n            cur_keyword_ids = tokenizer(keyword).input_ids\n            if len(cur_keyword_ids) > 1 and cur_keyword_ids[0] == tokenizer.bos_token_id:\n                cur_keyword_ids = cur_keyword_ids[1:]\n            self.keyword_ids.append(torch.tensor(cur_keyword_ids))\n        self.tokenizer = tokenizer\n        self.start_len = input_ids.shape[1]\n\n    def __call__(self, output_ids: torch.LongTensor, scores: torch.FloatTensor, **kwargs) -> bool:\n        assert output_ids.shape[0] == 1, \"Only support batch size 1 (yet)\"  # TODO\n        offset = min(output_ids.shape[1] - self.start_len, 3)\n        self.keyword_ids = [keyword_id.to(output_ids.device) for keyword_id in self.keyword_ids]\n        for keyword_id in self.keyword_ids:\n            if output_ids[0, -keyword_id.shape[0]:] == keyword_id:\n                return True\n        outputs = self.tokenizer.batch_decode(output_ids[:, -offset:], skip_special_tokens=True)[0]\n        for keyword in self.keywords:\n            if keyword in outputs:\n                return True\n        return False\n"
  },
  {
    "path": "model/univi/model/__init__.py",
    "content": "from .language_model.llama import ChatUniViLlamaForCausalLM, ChatUniViConfig"
  },
  {
    "path": "model/univi/model/apply_delta.py",
    "content": "import argparse\n\nimport torch\nfrom tqdm import tqdm\nfrom transformers import AutoTokenizer, AutoModelForCausalLM\nfrom ChatUniVi import ChatUniViLlamaForCausalLM\n\n\ndef apply_delta(base_model_path, target_model_path, delta_path):\n    print(\"Loading base model\")\n    base = AutoModelForCausalLM.from_pretrained(\n        base_model_path, torch_dtype=torch.float16, low_cpu_mem_usage=True)\n\n    print(\"Loading delta\")\n    delta = ChatUniViLlamaForCausalLM.from_pretrained(delta_path, torch_dtype=torch.float16, low_cpu_mem_usage=True)\n    delta_tokenizer = AutoTokenizer.from_pretrained(delta_path)\n\n    print(\"Applying delta\")\n    for name, param in tqdm(delta.state_dict().items(), desc=\"Applying delta\"):\n        if name not in base.state_dict():\n            assert name in ['model.mm_projector.weight', 'model.mm_projector.bias'], f'{name} not in base model'\n            continue\n        if param.data.shape == base.state_dict()[name].shape:\n            param.data += base.state_dict()[name]\n        else:\n            assert name in ['model.embed_tokens.weight', 'lm_head.weight'], \\\n                f'{name} dimension mismatch: {param.data.shape} vs {base.state_dict()[name].shape}'\n            bparam = base.state_dict()[name]\n            param.data[:bparam.shape[0], :bparam.shape[1]] += bparam\n\n    print(\"Saving target model\")\n    delta.save_pretrained(target_model_path)\n    delta_tokenizer.save_pretrained(target_model_path)\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--base-model-path\", type=str, required=True)\n    parser.add_argument(\"--target-model-path\", type=str, required=True)\n    parser.add_argument(\"--delta-path\", type=str, required=True)\n\n    args = parser.parse_args()\n\n    apply_delta(args.base_model_path, args.target_model_path, args.delta_path)\n"
  },
  {
    "path": "model/univi/model/arch.py",
    "content": "from abc import ABC, abstractmethod\nimport torch\nimport torch.nn as nn\nfrom .multimodal_encoder.builder import build_vision_tower\nfrom model.univi.constants import *\nfrom .cluster import CTM, TCBlock\nfrom collections import OrderedDict\n\n\nclass MetaModel:\n    def __init__(self, config):\n        super(MetaModel, self).__init__(config)\n\n        if hasattr(config, \"mm_vision_tower\"):\n            self.vision_tower = build_vision_tower(config, delay_load=True)\n            self.mm_projector = nn.Linear(config.mm_hidden_size, config.hidden_size)\n\n        if hasattr(config, \"config\"):\n            self.use_cluster = config.config[\"use_cluster\"]\n            if self.use_cluster:\n                self.ctm0 = CTM(sample_ratio=config.config[\"spatial_cluster_rate0\"], embed_dim=self.config.mm_hidden_size, dim_out=self.config.mm_hidden_size, k=5)\n                self.block0 = TCBlock(dim=self.config.mm_hidden_size, num_heads=8)\n\n                self.ctm1 = CTM(sample_ratio=config.config[\"spatial_cluster_rate1\"], embed_dim=self.config.mm_hidden_size, dim_out=self.config.mm_hidden_size, k=3)\n                self.block1 = TCBlock(dim=self.config.mm_hidden_size, num_heads=8)\n\n                self.ctm2 = CTM(sample_ratio=config.config[\"spatial_cluster_rate2\"], embed_dim=self.config.mm_hidden_size, dim_out=self.config.mm_hidden_size, k=3)\n                self.block2 = TCBlock(dim=self.config.mm_hidden_size, num_heads=8)\n\n                self.ctm3 = CTM(sample_ratio=config.config[\"temporal_cluster_rate\"], embed_dim=self.config.mm_hidden_size, dim_out=self.config.mm_hidden_size, k=5)\n                self.block3 = TCBlock(dim=self.config.mm_hidden_size, num_heads=8)\n        else:\n            self.use_cluster = False\n\n    def get_vision_tower(self):\n        vision_tower = getattr(self, 'vision_tower', None)\n        if type(vision_tower) is list:\n            vision_tower = vision_tower[0]\n        return vision_tower\n\n    def initialize_vision_modules(self, model_args, fsdp=None):\n        vision_tower = model_args.vision_tower\n        mm_vision_select_layer = model_args.mm_vision_select_layer\n        mm_vision_select_feature = model_args.mm_vision_select_feature\n        pretrain_mm_mlp_adapter = model_args.pretrain_mm_mlp_adapter\n\n        self.config.mm_vision_tower = vision_tower\n\n        vision_tower = build_vision_tower(model_args)\n\n        self.config.use_mm_proj = True\n        self.config.mm_hidden_size = vision_tower.hidden_size\n        self.config.mm_vision_select_layer = mm_vision_select_layer\n        self.config.mm_vision_select_feature = mm_vision_select_feature\n\n        if fsdp is not None and len(fsdp) > 0:\n            self.vision_tower = [vision_tower]\n        else:\n            self.vision_tower = vision_tower\n\n        if not hasattr(self, 'mm_projector') or not self.mm_projector.weight.size(0):\n            self.mm_projector = nn.Linear(self.config.mm_hidden_size, self.config.hidden_size)\n\n        if pretrain_mm_mlp_adapter is not None:\n            mm_projector_weights = torch.load(pretrain_mm_mlp_adapter, map_location='cpu')\n            def get_w(weights, keyword):\n                return {k.split(keyword + '.')[1]: v for k, v in weights.items() if keyword in k}\n\n            self.mm_projector.load_state_dict(get_w(mm_projector_weights, 'mm_projector'))\n\n    def initialize_cluster_modules(self, model_args):\n        self.use_cluster = model_args.use_cluster\n\n        if self.use_cluster and not hasattr(self, 'ctm0'):\n            self.ctm0 = CTM(sample_ratio=model_args.spatial_cluster_rate0, embed_dim=self.config.mm_hidden_size, dim_out=self.config.mm_hidden_size, k=5)\n            self.block0 = TCBlock(dim=self.config.mm_hidden_size, num_heads=8)\n\n            self.ctm1 = CTM(sample_ratio=model_args.spatial_cluster_rate1, embed_dim=self.config.mm_hidden_size, dim_out=self.config.mm_hidden_size, k=3)\n            self.block1 = TCBlock(dim=self.config.mm_hidden_size, num_heads=8)\n\n            self.ctm2 = CTM(sample_ratio=model_args.spatial_cluster_rate2, embed_dim=self.config.mm_hidden_size, dim_out=self.config.mm_hidden_size, k=3)\n            self.block2 = TCBlock(dim=self.config.mm_hidden_size, num_heads=8)\n\n            self.ctm3 = CTM(sample_ratio=model_args.temporal_cluster_rate, embed_dim=self.config.mm_hidden_size, dim_out=self.config.mm_hidden_size, k=5)\n            self.block3 = TCBlock(dim=self.config.mm_hidden_size, num_heads=8)\n\n\nclass ChatUniViMetaForCausalLM(ABC):\n    @abstractmethod\n    def get_model(self):\n        pass\n\n    def get_vision_tower(self):\n        return self.get_model().get_vision_tower()\n\n    def encode_images(self, images):\n        image_features = self.get_model().get_vision_tower()(images, select_feature=\"patch\")\n        return image_features\n\n    def positional_encoding(self, x, num_features=1024, max_len=64):\n        p = torch.zeros((1, max_len, num_features))\n        _x = torch.arange(max_len, dtype=torch.float32).reshape(-1, 1) / torch.pow(10000,\n                                                                            torch.arange(0, num_features, 2, dtype=torch.float32) / num_features)\n\n        p[:, :, 0::2] = torch.sin(_x)\n        p[:, :, 1::2] = torch.cos(_x)\n        x = x + p[:, :x.shape[1], :].to(x.device).to(x.dtype)\n        return x\n\n    def project(self, image_features, input_type=\"image\"):\n        if self.get_model().use_cluster:\n            if input_type == \"image\":\n                cluster_image_features = []\n                token_dict = {'x': image_features,\n                              'token_num': image_features.size(1),\n                              'idx_token': torch.arange(image_features.size(1))[None, :].repeat(\n                                  image_features.size(0), 1),\n                              'agg_weight': image_features.new_ones(image_features.size(0), image_features.size(1),\n                                                                    1),\n                              'mask': None}\n\n                token_dict = self.get_model().block0(self.get_model().ctm0(token_dict))\n                cluster_image_features.append(token_dict[\"x\"])\n\n                token_dict = self.get_model().block1(self.get_model().ctm1(token_dict))\n                cluster_image_features.append(token_dict[\"x\"])\n\n                token_dict = self.get_model().block2(self.get_model().ctm2(token_dict))\n                cluster_image_features.append(token_dict[\"x\"])\n\n                image_features = torch.cat(cluster_image_features, dim=1)\n                image_features = image_features.to(self.get_model().mm_projector.weight.dtype)\n            else:\n                cls_features = torch.mean(image_features, dim=1, keepdim=False).unsqueeze(0).clone()\n                token_dict = {'x': cls_features,\n                              'token_num': cls_features.size(1),\n                              'idx_token': torch.arange(cls_features.size(1))[None, :].repeat(\n                                  cls_features.size(0), 1),\n                              'agg_weight': cls_features.new_ones(cls_features.size(0), cls_features.size(1),\n                                                                  1),\n                              'mask': None}\n\n                down_dict, token_dict = self.get_model().ctm3(token_dict)\n                events = OrderedDict()\n\n                max_len = 0\n                for id, i in enumerate(down_dict[\"idx_token\"][0].tolist()):\n                    if i not in events:\n                        events[i] = [id]\n                    else:\n                        events[i].append(id)\n                    max_len = len(events[i]) if max_len < len(events[i]) else max_len\n\n                cluster_image_features = []\n                token_dict = {'x': image_features,\n                              'token_num': image_features.size(1),\n                              'idx_token': torch.arange(image_features.size(1))[None, :].repeat(\n                                  image_features.size(0), 1),\n                              'agg_weight': image_features.new_ones(image_features.size(0), image_features.size(1),\n                                                                    1),\n                              'mask': None}\n\n                token_dict0 = self.get_model().block0(self.get_model().ctm0(token_dict))\n                token_dict1 = self.get_model().block1(self.get_model().ctm1(token_dict0))\n                token_dict2 = self.get_model().block2(self.get_model().ctm2(token_dict1))\n\n                for id, key in enumerate(events):\n                    cur_image_features0 = torch.cat([token_dict0[\"x\"][i] for i in events[key]], dim=0).unsqueeze(0)\n                    token_dict = {'x': cur_image_features0,\n                                  'token_num': cur_image_features0.size(1),\n                                  'idx_token': torch.arange(cur_image_features0.size(1))[None, :].repeat(\n                                      cur_image_features0.size(0), 1),\n                                  'agg_weight': cur_image_features0.new_ones(cur_image_features0.size(0),\n                                                                             cur_image_features0.size(1),\n                                                                      1),\n                                  'mask': None}\n\n                    cur_token_dict0 = self.get_model().block0(self.get_model().ctm0(token_dict))\n                    cluster_image_features.append(cur_token_dict0[\"x\"])\n\n                    cur_image_features1 = torch.cat([token_dict1[\"x\"][i] for i in events[key]], dim=0).unsqueeze(0)\n                    token_dict = {'x': cur_image_features1,\n                                  'token_num': cur_image_features1.size(1),\n                                  'idx_token': torch.arange(cur_image_features1.size(1))[None, :].repeat(\n                                      cur_image_features1.size(0), 1),\n                                  'agg_weight': cur_image_features1.new_ones(cur_image_features1.size(0),\n                                                                             cur_image_features1.size(1),\n                                                                             1),\n                                  'mask': None}\n\n                    cur_token_dict1 = self.get_model().block1(self.get_model().ctm1(token_dict))\n                    cluster_image_features.append(cur_token_dict1[\"x\"])\n\n                    cur_image_features2 = torch.cat([token_dict2[\"x\"][i] for i in events[key]], dim=0).unsqueeze(0)\n                    token_dict = {'x': cur_image_features2,\n                                  'token_num': cur_image_features2.size(1),\n                                  'idx_token': torch.arange(cur_image_features2.size(1))[None, :].repeat(\n                                      cur_image_features2.size(0), 1),\n                                  'agg_weight': cur_image_features2.new_ones(cur_image_features2.size(0),\n                                                                             cur_image_features2.size(1),\n                                                                             1),\n                                  'mask': None}\n\n                    cur_token_dict2 = self.get_model().block2(self.get_model().ctm2(token_dict))\n                    cluster_image_features.append(cur_token_dict2[\"x\"])\n\n                image_features = torch.cat(cluster_image_features, dim=1)\n                image_features = image_features.to(self.get_model().mm_projector.weight.dtype)\n\n        else:\n            if input_type == \"video\":\n                image_features, cls_features = torch.mean(image_features, dim=0, keepdim=False).unsqueeze(\n                    0), torch.mean(image_features, dim=1, keepdim=False).unsqueeze(0)\n                image_features = torch.cat([image_features, cls_features], dim=1)\n\n        image_features = self.get_model().mm_projector(image_features)\n        return image_features\n\n    def prepare_inputs_labels_for_multimodal(\n        self, input_ids, attention_mask, past_key_values, labels, images\n    ):\n        vision_tower = self.get_vision_tower()\n        if vision_tower is None or images is None or input_ids.shape[1] == 1:\n            if past_key_values is not None and vision_tower is not None and images is not None and input_ids.shape[1] == 1:\n                attention_mask = torch.ones((attention_mask.shape[0], past_key_values[-1][-1].shape[-2] + 1), dtype=attention_mask.dtype, device=attention_mask.device)\n            return input_ids, attention_mask, past_key_values, None, labels\n        concat_images = torch.cat(images, dim=0)\n        image_features = self.encode_images(concat_images)\n\n        num_image_all = image_features.shape[0]\n\n        new_input_embeds = []\n        new_labels = [] if labels is not None else None\n        cur_image_idx = 0\n        for batch_idx, cur_input_ids in enumerate(input_ids):\n            if (cur_input_ids == IMAGE_TOKEN_INDEX).sum() == 0:\n                # multimodal LLM, but the current sample is not multimodal\n                cur_input_embeds = self.get_model().embed_tokens(cur_input_ids)\n                cur_input_embeds = cur_input_embeds + (0. * self.get_model().mm_projector(vision_tower.dummy_feature)).sum()\n                new_input_embeds.append(cur_input_embeds)\n                if labels is not None:\n                    new_labels.append(labels[batch_idx])\n                cur_image_idx += 1 # for dummy image\n                continue\n\n            image_token_indices = torch.where(cur_input_ids == IMAGE_TOKEN_INDEX)[0]\n\n            cur_new_input_embeds = []\n            if labels is not None:\n                cur_labels = labels[batch_idx]\n                cur_new_labels = []\n                assert cur_labels.shape == cur_input_ids.shape\n\n            if len(image_token_indices) > 0:\n                while True:\n                    image_token_indices = torch.where(cur_input_ids == IMAGE_TOKEN_INDEX)[0]\n                    if image_token_indices.numel() == 0:\n                        break\n\n                    i = [image_token_indices[0]]\n                    image_token_start = i[0]\n                    image_token_end = i[-1]\n                    cur_image_features = []\n\n                    for _ in i:\n                        cur_image_features.append(image_features[cur_image_idx])\n                        cur_image_idx += 1\n\n                    if len(i) > 2:\n                        cur_image_features = torch.stack(cur_image_features, dim=0)\n                        cur_image_features = self.project(cur_image_features, input_type=\"video\")\n                        t, l, n = cur_image_features.size()\n                        cur_image_features = cur_image_features.contiguous().view(t * l, n)\n                    else:\n                        cur_image_features = torch.stack(cur_image_features, dim=0)\n                        cur_image_features = self.project(cur_image_features, input_type=\"image\")\n                        t, l, n = cur_image_features.size()\n                        cur_image_features = cur_image_features.contiguous().view(t * l, n)\n\n                    cur_new_input_embeds.append(self.get_model().embed_tokens(cur_input_ids[:image_token_start]))\n                    cur_new_input_embeds.append(cur_image_features)\n                    cur_input_ids = cur_input_ids[image_token_end + 1:]\n                    if labels is not None:\n                        cur_new_labels.append(cur_labels[:image_token_start])\n                        cur_new_labels.append(torch.full((cur_image_features.shape[0],), IGNORE_INDEX, device=labels.device, dtype=labels.dtype))\n                        cur_labels = cur_labels[image_token_end + 1:]\n\n\n            if cur_input_ids.numel() > 0:\n                cur_new_input_embeds.append(self.get_model().embed_tokens(cur_input_ids))\n                if labels is not None:\n                    cur_new_labels.append(cur_labels)\n                    assert cur_labels.shape[0] == cur_input_ids.shape[0]\n            cur_new_input_embeds = [x.to(device=self.device) for x in cur_new_input_embeds]\n            cur_new_input_embeds = torch.cat(cur_new_input_embeds, dim=0)\n            new_input_embeds.append(cur_new_input_embeds)\n            if labels is not None:\n                cur_new_labels = torch.cat(cur_new_labels, dim=0)\n                new_labels.append(cur_new_labels)\n\n        assert cur_image_idx == num_image_all\n        if any(x.shape != new_input_embeds[0].shape for x in new_input_embeds):\n            max_len = max(x.shape[0] for x in new_input_embeds)\n\n            new_input_embeds_align = []\n            for cur_new_embed in new_input_embeds:\n                cur_new_embed = torch.cat((cur_new_embed, torch.zeros((max_len - cur_new_embed.shape[0], cur_new_embed.shape[1]), dtype=cur_new_embed.dtype, device=cur_new_embed.device)), dim=0)\n                new_input_embeds_align.append(cur_new_embed)\n            new_input_embeds = torch.stack(new_input_embeds_align, dim=0)\n\n            if labels is not None:\n                new_labels_align = []\n                _new_labels = new_labels\n                for cur_new_label in new_labels:\n                    cur_new_label = torch.cat((cur_new_label, torch.full((max_len - cur_new_label.shape[0],), IGNORE_INDEX, dtype=cur_new_label.dtype, device=cur_new_label.device)), dim=0)\n                    new_labels_align.append(cur_new_label)\n                new_labels = torch.stack(new_labels_align, dim=0)\n\n            if attention_mask is not None:\n                new_attention_mask = []\n                for cur_attention_mask, cur_new_labels, cur_new_labels_align in zip(attention_mask, _new_labels, new_labels):\n                    new_attn_mask_pad_left = torch.full((cur_new_labels.shape[0] - labels.shape[1],), True, dtype=attention_mask.dtype, device=attention_mask.device)\n                    new_attn_mask_pad_right = torch.full((cur_new_labels_align.shape[0] - cur_new_labels.shape[0],), False, dtype=attention_mask.dtype, device=attention_mask.device)\n                    cur_new_attention_mask = torch.cat((new_attn_mask_pad_left, cur_attention_mask, new_attn_mask_pad_right), dim=0)\n                    new_attention_mask.append(cur_new_attention_mask)\n                attention_mask = torch.stack(new_attention_mask, dim=0)\n                assert attention_mask.shape == new_labels.shape\n        else:\n            new_input_embeds = torch.stack(new_input_embeds, dim=0)\n            if labels is not None:\n                new_labels = torch.stack(new_labels, dim=0)\n\n            if attention_mask is not None:\n                new_attn_mask_pad_left = torch.full((attention_mask.shape[0], new_input_embeds.shape[1] - input_ids.shape[1]), True, dtype=attention_mask.dtype, device=attention_mask.device)\n                attention_mask = torch.cat((new_attn_mask_pad_left, attention_mask), dim=1)\n                assert attention_mask.shape == new_input_embeds.shape[:2]\n\n        return None, attention_mask, past_key_values, new_input_embeds, new_labels\n\n    def initialize_vision_tokenizer(self, model_args, tokenizer):\n        if model_args.mm_use_im_patch_token:\n            tokenizer.add_tokens([DEFAULT_IMAGE_PATCH_TOKEN], special_tokens=True)\n            tokenizer.add_tokens([DEFAULT_VIDEO_PATCH_TOKEN], special_tokens=True)\n            self.resize_token_embeddings(len(tokenizer))\n\n        if model_args.mm_use_im_start_end:\n            num_new_tokens = tokenizer.add_tokens([DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN, DEFAULT_VID_START_TOKEN, DEFAULT_VID_END_TOKEN], special_tokens=True)\n            self.resize_token_embeddings(len(tokenizer))\n\n            if num_new_tokens > 0:\n                input_embeddings = self.get_input_embeddings().weight.data\n                output_embeddings = self.get_output_embeddings().weight.data\n\n                input_embeddings_avg = input_embeddings[:-num_new_tokens].mean(\n                    dim=0, keepdim=True)\n                output_embeddings_avg = output_embeddings[:-num_new_tokens].mean(\n                    dim=0, keepdim=True)\n\n                input_embeddings[-num_new_tokens:] = input_embeddings_avg\n                output_embeddings[-num_new_tokens:] = output_embeddings_avg\n\n            if model_args.tune_mm_mlp_adapter:\n                for p in self.get_input_embeddings().parameters():\n                    p.requires_grad = True\n                for p in self.get_output_embeddings().parameters():\n                    p.requires_grad = False\n\n            if model_args.pretrain_mm_mlp_adapter:\n                mm_projector_weights = torch.load(model_args.pretrain_mm_mlp_adapter, map_location='cpu')\n                embed_tokens_weight = mm_projector_weights['model.embed_tokens.weight']\n                assert num_new_tokens == 2\n                if input_embeddings.shape == embed_tokens_weight.shape:\n                    input_embeddings[-num_new_tokens:] = embed_tokens_weight[-num_new_tokens:]\n                elif embed_tokens_weight.shape[0] == num_new_tokens:\n                    input_embeddings[-num_new_tokens:] = embed_tokens_weight\n                else:\n                    raise ValueError(f\"Unexpected embed_tokens_weight shape. Pretrained: {embed_tokens_weight.shape}. Current: {input_embeddings.shape}. Numer of new tokens: {num_new_tokens}.\")\n        elif model_args.mm_use_im_patch_token:\n            if model_args.tune_mm_mlp_adapter:\n                for p in self.get_input_embeddings().parameters():\n                    p.requires_grad = False\n                for p in self.get_output_embeddings().parameters():\n                    p.requires_grad = False\n"
  },
  {
    "path": "model/univi/model/builder.py",
    "content": "import os\nimport shutil\nfrom transformers import AutoTokenizer, AutoModelForCausalLM, AutoConfig, BitsAndBytesConfig\nimport torch\nfrom ChatUniVi.model import *\nfrom ChatUniVi.constants import DEFAULT_IMAGE_PATCH_TOKEN, DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN\nfrom accelerate import init_empty_weights, load_checkpoint_and_dispatch\nfrom transformers import AutoConfig, AutoModelForCausalLM\n\n\ndef load_pretrained_model(model_path, model_base, model_name, load_8bit=False, load_4bit=False, device_map=\"auto\"):\n    kwargs = {\"device_map\": device_map}\n\n    if load_8bit:\n        kwargs['load_in_8bit'] = True\n    elif load_4bit:\n        kwargs['load_in_4bit'] = True\n        kwargs['quantization_config'] = BitsAndBytesConfig(\n            load_in_4bit=True,\n            bnb_4bit_compute_dtype=torch.float16,\n            bnb_4bit_use_double_quant=True,\n            bnb_4bit_quant_type='nf4'\n        )\n    else:\n        kwargs['torch_dtype'] = torch.float16\n\n    if 'chatunivi' in model_name.lower():\n        # Load ChatUniVi model\n        if 'lora' in model_name.lower() and model_base is not None:\n            lora_cfg_pretrained = AutoConfig.from_pretrained(model_path)\n            tokenizer = AutoTokenizer.from_pretrained(model_base, use_fast=False)\n            print('Loading ChatUniVi from base model...')\n            model = ChatUniViLlamaForCausalLM.from_pretrained(model_base, low_cpu_mem_usage=True, config=lora_cfg_pretrained, **kwargs)\n            token_num, tokem_dim = model.lm_head.out_features, model.lm_head.in_features\n            if model.lm_head.weight.shape[0] != token_num:\n                model.lm_head.weight = torch.nn.Parameter(torch.empty(token_num, tokem_dim, device=model.device, dtype=model.dtype))\n                model.model.embed_tokens.weight = torch.nn.Parameter(torch.empty(token_num, tokem_dim, device=model.device, dtype=model.dtype))\n\n            print('Loading additional ChatUniVi weights...')\n            if os.path.exists(os.path.join(model_path, 'non_lora_trainables.bin')):\n                non_lora_trainables = torch.load(os.path.join(model_path, 'non_lora_trainables.bin'), map_location='cpu')\n            else:\n                # this is probably from HF Hub\n                from huggingface_hub import hf_hub_download\n                def load_from_hf(repo_id, filename, subfolder=None):\n                    cache_file = hf_hub_download(\n                        repo_id=repo_id,\n                        filename=filename,\n                        subfolder=subfolder)\n                    return torch.load(cache_file, map_location='cpu')\n                non_lora_trainables = load_from_hf(model_path, 'non_lora_trainables.bin')\n            non_lora_trainables = {(k[11:] if k.startswith('base_model.') else k): v for k, v in non_lora_trainables.items()}\n            if any(k.startswith('model.model.') for k in non_lora_trainables):\n                non_lora_trainables = {(k[6:] if k.startswith('model.') else k): v for k, v in non_lora_trainables.items()}\n            model.load_state_dict(non_lora_trainables, strict=False)\n\n            from peft import PeftModel\n            print('Loading LoRA weights...')\n            model = PeftModel.from_pretrained(model, model_path)\n            print('Merging LoRA weights...')\n            model = model.merge_and_unload()\n            print('Model is loaded...')\n        elif model_base is not None:\n            # this may be mm projector only\n            print('Loading ChatUniVi from base model...')\n            tokenizer = AutoTokenizer.from_pretrained(model_base, use_fast=False)\n            cfg_pretrained = AutoConfig.from_pretrained(model_path)\n            model = ChatUniViLlamaForCausalLM.from_pretrained(model_base, low_cpu_mem_usage=True, config=cfg_pretrained, **kwargs)\n\n            mm_projector_weights = torch.load(os.path.join(model_path, 'mm_projector.bin'), map_location='cpu')\n            mm_projector_weights = {k: v.to(torch.float16) for k, v in mm_projector_weights.items()}\n            model.load_state_dict(mm_projector_weights, strict=False)\n        else:\n            tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False)\n            model = AutoModelForCausalLM.from_pretrained(model_path, low_cpu_mem_usage=True, **kwargs)\n    else:\n        # Load language model\n        if model_base is not None:\n            # PEFT model\n            from peft import PeftModel\n            tokenizer = AutoTokenizer.from_pretrained(model_base, use_fast=False)\n            model = AutoModelForCausalLM.from_pretrained(model_base, torch_dtype=torch.float16, low_cpu_mem_usage=True, device_map=\"auto\")\n            print(f\"Loading LoRA weights from {model_path}\")\n            model = PeftModel.from_pretrained(model, model_path)\n            print(f\"Merging weights\")\n            model = model.merge_and_unload()\n            print('Convert to FP16...')\n            model.to(torch.float16)\n        else:\n            use_fast = False\n            tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False)\n            model = AutoModelForCausalLM.from_pretrained(model_path, low_cpu_mem_usage=True, **kwargs)\n\n    image_processor = None\n\n    if 'chatunivi' in model_name.lower():\n        mm_use_im_start_end = getattr(model.config, \"mm_use_im_start_end\", False)\n        mm_use_im_patch_token = getattr(model.config, \"mm_use_im_patch_token\", True)\n        if mm_use_im_patch_token:\n            tokenizer.add_tokens([DEFAULT_IMAGE_PATCH_TOKEN], special_tokens=True)\n        if mm_use_im_start_end:\n            tokenizer.add_tokens([DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN], special_tokens=True)\n        model.resize_token_embeddings(len(tokenizer))\n\n        vision_tower = model.get_vision_tower()\n        if not vision_tower.is_loaded:\n            vision_tower.load_model()\n            vision_tower.to(device='cuda', dtype=torch.float16)\n\n        image_processor = vision_tower.image_eval_processor\n\n    if hasattr(model.config, \"max_sequence_length\"):\n        context_len = model.config.max_sequence_length\n    else:\n        context_len = 2048\n\n    return tokenizer, model, image_processor, context_len\n"
  },
  {
    "path": "model/univi/model/cluster.py",
    "content": "import torch\nimport math\nimport torch.nn as nn\nimport warnings\n\n\ndef _no_grad_trunc_normal_(tensor, mean, std, a, b):\n    # Cut & paste from PyTorch official master until it's in a few official releases - RW\n    # Method based on https://people.sc.fsu.edu/~jburkardt/presentations/truncated_normal.pdf\n    def norm_cdf(x):\n        # Computes standard normal cumulative distribution function\n        return (1. + math.erf(x / math.sqrt(2.))) / 2.\n\n    if (mean < a - 2 * std) or (mean > b + 2 * std):\n        warnings.warn(\"mean is more than 2 std from [a, b] in nn.init.trunc_normal_. \"\n                      \"The distribution of values may be incorrect.\",\n                      stacklevel=2)\n\n    with torch.no_grad():\n        # Values are generated by using a truncated uniform distribution and\n        # then using the inverse CDF for the normal distribution.\n        # Get upper and lower cdf values\n        l = norm_cdf((a - mean) / std)\n        u = norm_cdf((b - mean) / std)\n\n        # Uniformly fill tensor with values from [l, u], then translate to\n        # [2l-1, 2u-1].\n        tensor.uniform_(2 * l - 1, 2 * u - 1)\n\n        # Use inverse cdf transform for normal distribution to get truncated\n        # standard normal\n        tensor.erfinv_()\n\n        # Transform to proper mean, std\n        tensor.mul_(std * math.sqrt(2.))\n        tensor.add_(mean)\n\n        # Clamp to ensure it's in the proper range\n        tensor.clamp_(min=a, max=b)\n        return tensor\n\n\ndef trunc_normal_(tensor, mean=0., std=1., a=-2., b=2.):\n    # type: (Tensor, float, float, float, float) -> Tensor\n    r\"\"\"Fills the input Tensor with values drawn from a truncated\n    normal distribution. The values are effectively drawn from the\n    normal distribution :math:`\\mathcal{N}(\\text{mean}, \\text{std}^2)`\n    with values outside :math:`[a, b]` redrawn until they are within\n    the bounds. The method used for generating the random values works\n    best when :math:`a \\leq \\text{mean} \\leq b`.\n    Args:\n        tensor: an n-dimensional `torch.Tensor`\n        mean: the mean of the normal distribution\n        std: the standard deviation of the normal distribution\n        a: the minimum cutoff value\n        b: the maximum cutoff value\n    Examples:\n        >>> w = torch.empty(3, 5)\n        >>> nn.init.trunc_normal_(w)\n    \"\"\"\n    try:\n        return _no_grad_trunc_normal_(tensor, mean, std, a, b)\n    except:\n        return tensor\n\n\ndef drop_path(x, drop_prob: float = 0., training: bool = False):\n    \"\"\"Drop paths (Stochastic Depth) per sample (when applied in main path of residual blocks).\n    \"\"\"\n    if drop_prob == 0. or not training:\n        return x\n    keep_prob = 1 - drop_prob\n    shape = (x.shape[0],) + (1,) * (x.ndim - 1)  # work with diff dim tensors, not just 2D ConvNets\n    random_tensor = keep_prob + torch.rand(shape, dtype=x.dtype, device=x.device)\n    random_tensor.floor_()  # binarize\n    output = x.div(keep_prob) * random_tensor\n    return output\n\n\nclass DropPath(nn.Module):\n    \"\"\"Drop paths (Stochastic Depth) per sample  (when applied in main path of residual blocks).\n    \"\"\"\n    def __init__(self, drop_prob=None):\n        super(DropPath, self).__init__()\n        self.drop_prob = drop_prob\n\n    def forward(self, x):\n        return drop_path(x, self.drop_prob, self.training)\n\n\ndef index_points(points, idx):\n    \"\"\"Sample features following the index.\n    Returns:\n        new_points:, indexed points data, [B, S, C]\n\n    Args:\n        points: input points data, [B, N, C]\n        idx: sample index data, [B, S]\n    \"\"\"\n    device = points.device\n    B = points.shape[0]\n    view_shape = list(idx.shape)\n    view_shape[1:] = [1] * (len(view_shape) - 1)\n    repeat_shape = list(idx.shape)\n    repeat_shape[0] = 1\n    batch_indices = torch.arange(B, dtype=torch.long).to(device).view(view_shape).repeat(repeat_shape)\n    new_points = points[batch_indices, idx, :]\n    return new_points\n\n\ndef cluster_dpc_knn(token_dict, cluster_num, k=5, token_mask=None):\n    \"\"\"Cluster tokens with DPC-KNN algorithm.\n    Return:\n        idx_cluster (Tensor[B, N]): cluster index of each token.\n        cluster_num (int): actual cluster number. The same with\n            input cluster number\n    Args:\n        token_dict (dict): dict for token information\n        cluster_num (int): cluster number\n        k (int): number of the nearest neighbor used for local density.\n        token_mask (Tensor[B, N]): mask indicate the whether the token is\n            padded empty token. Non-zero value means the token is meaningful,\n            zero value means the token is an empty token. If set to None, all\n            tokens are regarded as meaningful.\n    \"\"\"\n    with torch.no_grad():\n        x = token_dict[\"x\"]\n        B, N, C = x.shape\n\n        dist_matrix = torch.cdist(x.float(), x.float()) / (C ** 0.5)\n\n        if token_mask is not None:\n            token_mask = token_mask > 0\n            # in order to not affect the local density, the distance between empty tokens\n            # and any other tokens should be the maximal distance.\n            dist_matrix = dist_matrix * token_mask[:, None, :] + \\\n                          (dist_matrix.max() + 1) * (~token_mask[:, None, :])\n\n        # get local density\n\n        dist_nearest, index_nearest = torch.topk(dist_matrix, k=k, dim=-1, largest=False)\n        density = (-(dist_nearest ** 2).mean(dim=-1)).exp()\n        # add a little noise to ensure no tokens have the same density.\n        density = density + torch.rand(\n            density.shape, device=density.device, dtype=density.dtype) * 1e-6\n\n        if token_mask is not None:\n            # the density of empty token should be 0\n            density = density * token_mask\n\n        # get distance indicator\n        mask = density[:, None, :] > density[:, :, None]\n        mask = mask.type(x.dtype)\n        dist_max = dist_matrix.flatten(1).max(dim=-1)[0][:, None, None]\n        dist, index_parent = (dist_matrix * mask + dist_max * (1 - mask)).min(dim=-1)\n\n        # select clustering center according to score\n        score = dist * density\n        _, index_down = torch.topk(score, k=cluster_num, dim=-1)\n\n        # assign tokens to the nearest center\n        dist_matrix = index_points(dist_matrix, index_down)\n\n        idx_cluster = dist_matrix.argmin(dim=1)\n\n        # make sure cluster center merge to itself\n        idx_batch = torch.arange(B, device=x.device)[:, None].expand(B, cluster_num)\n        idx_tmp = torch.arange(cluster_num, device=x.device)[None, :].expand(B, cluster_num)\n        idx_cluster[idx_batch.reshape(-1), index_down.reshape(-1)] = idx_tmp.reshape(-1)\n\n    return idx_cluster, cluster_num\n\n\ndef merge_tokens(token_dict, idx_cluster, cluster_num, token_weight=None):\n    \"\"\"Merge tokens in the same cluster to a single cluster.\n    Implemented by torch.index_add(). Flops: B*N*(C+2)\n    Return:\n        out_dict (dict): dict for output token information\n\n    Args:\n        token_dict (dict): dict for input token information\n        idx_cluster (Tensor[B, N]): cluster index of each token.\n        cluster_num (int): cluster number\n        token_weight (Tensor[B, N, 1]): weight for each token.\n    \"\"\"\n\n    x = token_dict['x']\n    idx_token = token_dict['idx_token']\n    agg_weight = token_dict['agg_weight']\n\n    B, N, C = x.shape\n    if token_weight is None:\n        token_weight = x.new_ones(B, N, 1)\n\n    idx_batch = torch.arange(B, device=x.device)[:, None]\n    idx = idx_cluster + idx_batch * cluster_num\n\n    all_weight = token_weight.new_zeros(B * cluster_num, 1)\n    all_weight.index_add_(dim=0, index=idx.reshape(B * N),\n                          source=token_weight.reshape(B * N, 1))\n    all_weight = all_weight + 1e-6\n    norm_weight = token_weight / all_weight[idx]\n\n    # average token features\n    x_merged = x.new_zeros(B * cluster_num, C)\n    source = x * norm_weight\n\n    x_merged.index_add_(dim=0, index=idx.reshape(B * N),\n                        source=source.reshape(B * N, C).type(x.dtype))\n    x_merged = x_merged.reshape(B, cluster_num, C)\n\n    idx_token_new = index_points(idx_cluster[..., None], idx_token).squeeze(-1)\n    weight_t = index_points(norm_weight, idx_token)\n    agg_weight_new = agg_weight * weight_t\n    agg_weight_new / agg_weight_new.max(dim=1, keepdim=True)[0]\n\n    out_dict = {}\n    out_dict['x'] = x_merged\n    out_dict['token_num'] = cluster_num\n    out_dict['idx_token'] = idx_token_new\n    out_dict['agg_weight'] = agg_weight_new\n    out_dict['mask'] = None\n    return out_dict\n\n\nclass CTM(nn.Module):\n    def __init__(self, sample_ratio, embed_dim, dim_out, k=5):\n        super().__init__()\n        self.sample_ratio = sample_ratio\n        self.dim_out = dim_out\n        self.k = k\n\n    def forward(self, token_dict, sample_ratio=None):\n        x = token_dict[\"x\"]\n        B, N, C = x.shape\n\n        token_weight = x.new_ones(B, N)\n\n        if token_dict[\"mask\"] is not None:\n            token_weight.masked_fill_((1 - token_dict[\"mask\"]).to(torch.bool), float(\"-inf\"))\n        token_weight = token_weight.unsqueeze(2)\n        token_dict['x'] = x\n\n        if sample_ratio is not None:\n            cluster_num = max(math.ceil(N * sample_ratio), 1)\n        elif self.sample_ratio > 1:\n            cluster_num = max(math.ceil(self.sample_ratio), 1)\n        else:\n            cluster_num = max(math.ceil(N * self.sample_ratio), 1)\n\n        k = min(3, max(cluster_num//2, 1)) if self.k > cluster_num else self.k\n        idx_cluster, cluster_num = cluster_dpc_knn(\n            token_dict, cluster_num, k, token_mask=token_dict[\"mask\"])\n\n        down_dict = merge_tokens(token_dict, idx_cluster, cluster_num, token_weight)\n        return down_dict, token_dict\n\n\nclass TCBlock(nn.Module):\n    def __init__(self, dim, num_heads, mlp_ratio=4., qkv_bias=True, qk_scale=None, drop=0., attn_drop=0.,\n                 drop_path=0., act_layer=nn.GELU, norm_layer=nn.LayerNorm, sr_ratio=1, use_sr_layer=False):\n        super().__init__()\n        self.apply(self._init_weights)\n\n    def _init_weights(self, m):\n        if isinstance(m, nn.Linear):\n            trunc_normal_(m.weight, std=.02)\n            if isinstance(m, nn.Linear) and m.bias is not None:\n                nn.init.constant_(m.bias, 0)\n        elif isinstance(m, nn.LayerNorm):\n            nn.init.constant_(m.bias, 0)\n            nn.init.constant_(m.weight, 1.0)\n        elif isinstance(m, nn.Conv2d):\n            fan_out = m.kernel_size[0] * m.kernel_size[1] * m.out_channels\n            fan_out //= m.groups\n            m.weight.data.normal_(0, math.sqrt(2.0 / fan_out))\n            if m.bias is not None:\n                m.bias.data.zero_()\n\n    def forward(self, inputs):\n        if isinstance(inputs, tuple) or isinstance(inputs, list):\n            q_dict, kv_dict = inputs\n        else:\n            q_dict, kv_dict = inputs, None\n\n        x = q_dict['x']\n        return q_dict"
  },
  {
    "path": "model/univi/model/consolidate.py",
    "content": "\"\"\"\nUsage:\npython3 -m llava.model.consolidate --src ~/model_weights/llava-7b --dst ~/model_weights/llava-7b_consolidate\n\"\"\"\nimport argparse\n\nimport torch\nfrom transformers import AutoTokenizer, AutoModelForCausalLM\nfrom llava.model import *\nfrom llava.model.utils import auto_upgrade\n\n\ndef consolidate_ckpt(src_path, dst_path):\n    print(\"Loading model\")\n    auto_upgrade(src_path)\n    src_model = AutoModelForCausalLM.from_pretrained(src_path, torch_dtype=torch.float16, low_cpu_mem_usage=True)\n    src_tokenizer = AutoTokenizer.from_pretrained(src_path, use_fast=False)\n    src_model.save_pretrained(dst_path)\n    src_tokenizer.save_pretrained(dst_path)\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--src\", type=str, required=True)\n    parser.add_argument(\"--dst\", type=str, required=True)\n\n    args = parser.parse_args()\n\n    consolidate_ckpt(args.src, args.dst)\n"
  },
  {
    "path": "model/univi/model/dataloader.py",
    "content": "from PIL import Image\nimport math\nfrom decord import VideoReader, cpu\nimport numpy as np\nimport os\nimport torch\n\n\ndef _get_rawvideo_dec(video_path, image_processor, max_frames=64, image_resolution=224, video_framerate=1, s=None, e=None):\n    # speed up video decode via decord.\n    video_mask = np.zeros(max_frames, dtype=np.int64)\n    max_video_length = 0\n\n    # T x 3 x H x W\n    video = np.zeros((max_frames, 3, image_resolution, image_resolution), dtype=np.float64)\n\n    if s is None:\n        start_time, end_time = None, None\n    else:\n        start_time = int(s)\n        end_time = int(e)\n        start_time = start_time if start_time >= 0. else 0.\n        end_time = end_time if end_time >= 0. else 0.\n        if start_time > end_time:\n            start_time, end_time = end_time, start_time\n        elif start_time == end_time:\n            end_time = start_time + 1\n\n    if os.path.exists(video_path):\n        vreader = VideoReader(video_path, ctx=cpu(0))\n    else:\n        print(video_path)\n        raise FileNotFoundError\n\n    fps = vreader.get_avg_fps()\n    f_start = 0 if start_time is None else int(start_time * fps)\n    f_end = int(min(1000000000 if end_time is None else end_time * fps, len(vreader) - 1))\n    num_frames = f_end - f_start + 1\n    if num_frames > 0:\n        # T x 3 x H x W\n        sample_fps = int(video_framerate)\n        t_stride = int(round(float(fps) / sample_fps))\n\n        all_pos = list(range(f_start, f_end + 1, t_stride))\n        if len(all_pos) > max_frames:\n            sample_pos = [all_pos[_] for _ in np.linspace(0, len(all_pos) - 1, num=max_frames, dtype=int)]\n        else:\n            sample_pos = all_pos\n\n        patch_images = [Image.fromarray(f) for f in vreader.get_batch(sample_pos).asnumpy()]\n\n        patch_images = [image_processor.preprocess(img, return_tensors='pt')['pixel_values'][0] for img in patch_images]\n        slice_len = len(patch_images)\n\n        max_video_length = max_video_length if max_video_length > slice_len else slice_len\n        if slice_len < 1:\n            pass\n        else:\n            while len(patch_images) < max_frames:\n                patch_images.append(torch.zeros((3, image_resolution, image_resolution)))\n            # video[:slice_len, ...] = patch_images\n    else:\n        print(\"video path: {} error.\".format(video_path))\n\n    video_mask[:max_video_length] = [1] * max_video_length\n\n    return patch_images, video_mask"
  },
  {
    "path": "model/univi/model/language_model/llama.py",
    "content": "from typing import List, Optional, Tuple, Union\nimport torch\nimport torch.nn as nn\nfrom torch.nn import CrossEntropyLoss\nfrom transformers import AutoConfig, AutoModelForCausalLM, \\\n                         LlamaConfig, LlamaModel, LlamaForCausalLM\nfrom model.tf.modeling_outputs import CausalLMOutputWithPastAndLabel\n\nfrom model.univi.model.arch import MetaModel, ChatUniViMetaForCausalLM\n\n\nclass ChatUniViConfig(LlamaConfig):\n    model_type = \"ChatUniVi\"\n\n\nclass ChatUniViLlamaModel(MetaModel, LlamaModel):\n    config_class = ChatUniViConfig\n\n    def __init__(self, config: LlamaConfig):\n        super(ChatUniViLlamaModel, self).__init__(config)\n\n\nclass ChatUniViLlamaForCausalLM(LlamaForCausalLM, ChatUniViMetaForCausalLM):\n    config_class = ChatUniViConfig\n\n    def __init__(self, config):\n        super(LlamaForCausalLM, self).__init__(config)\n        self.model = ChatUniViLlamaModel(config)\n        self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)\n        # Initialize weights and apply final processing\n        self.post_init()\n\n    def get_model(self):\n        return self.model\n\n    def forward(\n        self,\n        input_ids: torch.LongTensor = None,\n        attention_mask: Optional[torch.Tensor] = None,\n        past_key_values: Optional[List[torch.FloatTensor]] = None,\n        inputs_embeds: Optional[torch.FloatTensor] = None,\n        labels: Optional[torch.LongTensor] = None,\n        use_cache: Optional[bool] = None,\n        output_attentions: Optional[bool] = None,\n        output_hidden_states: Optional[bool] = None,\n        images: Optional[torch.FloatTensor] = None,\n        return_dict: Optional[bool] = None,\n    ) -> Union[Tuple, CausalLMOutputWithPastAndLabel]:\n        output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions\n        output_hidden_states = (\n            output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states\n        )\n        return_dict = return_dict if return_dict is not None else self.config.use_return_dict\n\n        input_ids, attention_mask, past_key_values, inputs_embeds, labels = self.prepare_inputs_labels_for_multimodal(input_ids, attention_mask, past_key_values, labels, images)\n\n        # decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)\n\n        outputs = self.model(\n            input_ids=input_ids,\n            attention_mask=attention_mask,\n            past_key_values=past_key_values,\n            inputs_embeds=inputs_embeds,\n            use_cache=use_cache,\n            output_attentions=output_attentions,\n            output_hidden_states=output_hidden_states,\n            return_dict=return_dict\n        )\n\n        hidden_states = outputs[0]\n        logits = self.lm_head(hidden_states)\n\n\n        # import transformers\n        # tokenizer = transformers.AutoTokenizer.from_pretrained(\n        #     \"/mnt/nlp-ali/usr/yancilin/clyan-data-2/video-llm/Chat-UniVi/Chat-UniVi\",\n        #     cache_dir=None,\n        #     model_max_length=512,\n        #     padding_side=\"right\",\n        #     use_fast=False,\n        # )\n        # tokenizer.pad_token = tokenizer.unk_token\n        # num_added_tokens = tokenizer.add_tokens(\"[SEG]\")\n        # tokenizer(\"[SEG]\", add_special_tokens=False).input_ids[0]\n        # import pdb; pdb.set_trace()\n\n        loss = None\n        if labels is not None:\n            # Shift so that tokens < n predict n\n            shift_logits = logits[..., :-1, :].contiguous()\n            shift_labels = labels[..., 1:].contiguous()\n            # Flatten the tokens\n            loss_fct = CrossEntropyLoss()\n            shift_logits = shift_logits.view(-1, self.config.vocab_size)\n            shift_labels = shift_labels.view(-1)\n            # Enable model/pipeline parallelism\n            shift_labels = shift_labels.to(shift_logits.device)\n            loss = loss_fct(shift_logits, shift_labels)\n\n        if not return_dict:\n            output = (logits,) + outputs[1:]\n            return (loss,) + output if loss is not None else output\n\n        return CausalLMOutputWithPastAndLabel(\n            loss=loss,\n            labels = labels,\n            logits=logits,\n            past_key_values=outputs.past_key_values,\n            hidden_states=outputs.hidden_states,\n            attentions=outputs.attentions,\n        )\n\n    def prepare_inputs_for_generation(\n        self, input_ids, past_key_values=None, attention_mask=None, inputs_embeds=None, **kwargs\n    ):\n        if past_key_values:\n            input_ids = input_ids[:, -1:]\n\n        # if `inputs_embeds` are passed, we only want to use them in the 1st generation step\n        if inputs_embeds is not None and past_key_values is None:\n            model_inputs = {\"inputs_embeds\": inputs_embeds}\n        else:\n            model_inputs = {\"input_ids\": input_ids}\n\n        model_inputs.update(\n            {\n                \"past_key_values\": past_key_values,\n                \"use_cache\": kwargs.get(\"use_cache\"),\n                \"attention_mask\": attention_mask,\n                \"images\": kwargs.get(\"images\", None),\n            }\n        )\n        return model_inputs\n\nAutoConfig.register(\"ChatUniVi\", ChatUniViConfig)\nAutoModelForCausalLM.register(ChatUniViConfig, ChatUniViLlamaForCausalLM)\n"
  },
  {
    "path": "model/univi/model/make_delta.py",
    "content": "\"\"\"\nUsage:\npython3 -m llava.model.make_delta --base ~/model_weights/llama-7b --target ~/model_weights/llava-7b --delta ~/model_weights/llava-7b-delta --hub-repo-id liuhaotian/llava-7b-delta\n\"\"\"\nimport argparse\n\nimport torch\nfrom tqdm import tqdm\nfrom transformers import AutoTokenizer, AutoModelForCausalLM\nfrom llava.model.utils import auto_upgrade\n\n\ndef make_delta(base_model_path, target_model_path, delta_path, hub_repo_id):\n    print(\"Loading base model\")\n    base = AutoModelForCausalLM.from_pretrained(\n        base_model_path, torch_dtype=torch.float16, low_cpu_mem_usage=True)\n\n    print(\"Loading target model\")\n    auto_upgrade(target_model_path)\n    target = AutoModelForCausalLM.from_pretrained(target_model_path, torch_dtype=torch.float16, low_cpu_mem_usage=True)\n\n    print(\"Calculating delta\")\n    for name, param in tqdm(target.state_dict().items(), desc=\"Calculating delta\"):\n        if name not in base.state_dict():\n            assert name in ['model.mm_projector.weight', 'model.mm_projector.bias'], f'{name} not in base model'\n            continue\n        if param.data.shape == base.state_dict()[name].shape:\n            param.data -= base.state_dict()[name]\n        else:\n            assert name in ['model.embed_tokens.weight', 'lm_head.weight'], f'{name} dimension mismatch: {param.data.shape} vs {base.state_dict()[name].shape}'\n            bparam = base.state_dict()[name]\n            param.data[:bparam.shape[0], :bparam.shape[1]] -= bparam\n\n    print(\"Saving delta\")\n    if hub_repo_id:\n        kwargs = {\"push_to_hub\": True, \"repo_id\": hub_repo_id}\n    else:\n        kwargs = {}\n    target.save_pretrained(delta_path, **kwargs)\n    target_tokenizer = AutoTokenizer.from_pretrained(target_model_path)\n    target_tokenizer.save_pretrained(delta_path, **kwargs)\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--base-model-path\", type=str, required=True)\n    parser.add_argument(\"--target-model-path\", type=str, required=True)\n    parser.add_argument(\"--delta-path\", type=str, required=True)\n    parser.add_argument(\"--hub-repo-id\", type=str, default=None)\n    args = parser.parse_args()\n\n    make_delta(args.base_model_path, args.target_model_path, args.delta_path, args.hub_repo_id)\n"
  },
  {
    "path": "model/univi/model/multimodal_encoder/builder.py",
    "content": "from .clip_encoder import CLIPVisionTower\nfrom .eva_encoder import EVAVisionTower\n\n\ndef build_vision_tower(vision_tower_cfg, **kwargs):\n    vision_tower = getattr(vision_tower_cfg, 'mm_vision_tower', getattr(vision_tower_cfg, 'vision_tower', None))\n    if vision_tower.startswith(\"openai\") or vision_tower.startswith(\"laion\"):\n        return CLIPVisionTower(vision_tower, args=vision_tower_cfg, **kwargs)\n\n    elif vision_tower.startswith(\"eva_vit_g\"):\n        return EVAVisionTower(vision_tower, args=vision_tower_cfg, **kwargs)\n\n    raise ValueError(f'Unknown vision tower: {vision_tower}')\n"
  },
  {
    "path": "model/univi/model/multimodal_encoder/clip_encoder.py",
    "content": "import torch\nimport torch.nn as nn\n\nfrom transformers import CLIPVisionModel, CLIPImageProcessor, CLIPVisionConfig\n\n\nclass CLIPVisionTower(nn.Module):\n    def __init__(self, vision_tower, args=None, delay_load=False):\n        super().__init__()\n\n        self.is_loaded = False\n\n        self.vision_tower_name = vision_tower\n        if args is None:\n            self.select_layer = -2\n            self.select_feature = 'patch'\n        else:\n            self.select_layer = args.mm_vision_select_layer\n            self.select_feature = getattr(args, 'mm_vision_select_feature', 'patch')\n\n        if not delay_load:\n            self.load_model()\n        else:\n            self.cfg_only = CLIPVisionConfig.from_pretrained(self.vision_tower_name)\n\n    def load_model(self):\n        self.image_processor = CLIPImageProcessor.from_pretrained(self.vision_tower_name)\n        self.image_eval_processor = CLIPImageProcessor.from_pretrained(self.vision_tower_name)\n        self.vision_tower = CLIPVisionModel.from_pretrained(self.vision_tower_name)\n        self.vision_tower.requires_grad_(False)\n\n        self.is_loaded = True\n\n    def feature_select(self, image_forward_outs, select_feature='patch'):\n        image_features = image_forward_outs.hidden_states[self.select_layer]\n        if select_feature == 'patch':\n            image_features = image_features[:, 1:]\n        elif select_feature == 'cls_patch':\n            image_features = image_features\n        else:\n            raise ValueError(f'Unexpected select feature: {self.select_feature}')\n        return image_features\n\n    @torch.no_grad()\n    def forward(self, images, select_feature='patch'):\n        if type(images) is list:\n            image_features = []\n            for image in images:\n                image_forward_out = self.vision_tower(image.to(device=self.device, dtype=self.dtype).unsqueeze(0), output_hidden_states=True)\n                image_feature = self.feature_select(image_forward_out, select_feature).to(image.dtype)\n                image_features.append(image_feature)\n        else:\n            image_forward_outs = self.vision_tower(images.to(device=self.device, dtype=self.dtype), output_hidden_states=True)\n            image_features = self.feature_select(image_forward_outs, select_feature).to(images.dtype)\n\n        return image_features\n\n    @property\n    def dummy_feature(self):\n        return torch.zeros(1, self.hidden_size, device=self.device, dtype=self.dtype)\n\n    @property\n    def dtype(self):\n        return self.vision_tower.dtype\n\n    @property\n    def device(self):\n        return self.vision_tower.device\n\n    @property\n    def config(self):\n        if self.is_loaded:\n            return self.vision_tower.config\n        else:\n            return self.cfg_only\n\n    @property\n    def hidden_size(self):\n        return self.config.hidden_size\n\n    @property\n    def num_patches(self):\n        return (self.config.image_size // self.config.patch_size) ** 2\n"
  },
  {
    "path": "model/univi/model/multimodal_encoder/eva_encoder.py",
    "content": "import torch\nimport torch.nn as nn\nfrom .eva_vit import create_eva_vit_g, _cfg\nfrom .processor import ImageTrainProcessor, ImageEvalProcessor\n\n\nclass EVAVisionTower(nn.Module):\n    def __init__(self, vision_tower, args, delay_load=False):\n        super().__init__()\n\n        self.is_loaded = False\n\n        self.vision_tower_name = vision_tower\n        self.select_layer = args.mm_vision_select_layer\n        self.select_feature = getattr(args, 'mm_vision_select_feature', 'patch')\n\n        if not delay_load:\n            self.load_model()\n        else:\n            self.cfg_only = _cfg()\n\n    def load_model(self):\n        self.image_processor = ImageTrainProcessor()\n        self.image_eval_processor = ImageEvalProcessor()\n        self.vision_tower = create_eva_vit_g(\n            img_size=224, drop_path_rate=0, use_checkpoint=False, precision=\"fp16\"\n            )\n        # self.vision_tower.requires_grad_(False)\n\n        self.is_loaded = True\n\n    def feature_select(self, image_forward_outs, select_feature='patch'):\n        image_features = image_forward_outs[self.select_layer]\n        if select_feature == 'patch':\n            image_features = image_features[:, 1:]\n        elif select_feature == 'cls_patch':\n            image_features = image_features\n        else:\n            raise ValueError(f'Unexpected select feature: {self.select_feature}')\n        return image_features\n\n    @torch.no_grad()\n    def forward(self, images, select_feature='patch'):\n        if type(images) is list:\n            image_features = []\n            for image in images:\n                image_forward_out = self.vision_tower.get_intermediate_layers(image.to(device=self.device, dtype=self.dtype).unsqueeze(0),)\n                image_feature = self.feature_select(image_forward_out, select_feature).to(image.dtype)\n                image_features.append(image_feature)\n        else:\n            image_forward_outs = self.vision_tower.get_intermediate_layers(images.to(device=self.device, dtype=self.dtype))\n            image_features = self.feature_select(image_forward_outs, select_feature).to(images.dtype)\n\n        return image_features\n\n    @property\n    def dummy_feature(self):\n        return torch.zeros(1, self.hidden_size, device=self.device, dtype=self.dtype)\n\n    @property\n    def dtype(self):\n        return self.vision_tower.cls_token.dtype\n\n    @property\n    def device(self):\n        return self.vision_tower.cls_token.device\n\n    @property\n    def config(self):\n        if self.is_loaded:\n            return self.vision_tower.config\n        else:\n            return self.cfg_only\n\n    @property\n    def hidden_size(self):\n        return self.vision_tower.num_features\n\n    @property\n    def num_patches(self):\n        return (self.config.image_size // self.config.patch_size) ** 2"
  },
  {
    "path": "model/univi/model/multimodal_encoder/eva_vit.py",
    "content": "# Based on EVA, BEIT, timm and DeiT code bases\n# https://github.com/baaivision/EVA\n# https://github.com/rwightman/pytorch-image-models/tree/master/timm\n# https://github.com/microsoft/unilm/tree/master/beit\n# https://github.com/facebookresearch/deit/\n# https://github.com/facebookresearch/dino\n# --------------------------------------------------------'\nimport math\nfrom functools import partial\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nimport torch.utils.checkpoint as checkpoint\nfrom timm.models.layers import drop_path, to_2tuple, trunc_normal_\nfrom timm.models.registry import register_model\n\nfrom .utils import download_cached_file\n\n\ndef _cfg(url='', **kwargs):\n    return {\n        'url': url,\n        'num_classes': 1000, 'input_size': (3, 224, 224), 'pool_size': None,\n        'crop_pct': .9, 'interpolation': 'bicubic',\n        'mean': (0.5, 0.5, 0.5), 'std': (0.5, 0.5, 0.5),\n        **kwargs\n    }\n\n\nclass DropPath(nn.Module):\n    \"\"\"Drop paths (Stochastic Depth) per sample  (when applied in main path of residual blocks).\n    \"\"\"\n\n    def __init__(self, drop_prob=None):\n        super(DropPath, self).__init__()\n        self.drop_prob = drop_prob\n\n    def forward(self, x):\n        return drop_path(x, self.drop_prob, self.training)\n\n    def extra_repr(self) -> str:\n        return 'p={}'.format(self.drop_prob)\n\n\nclass Mlp(nn.Module):\n    def __init__(self, in_features, hidden_features=None, out_features=None, act_layer=nn.GELU, drop=0.):\n        super().__init__()\n        out_features = out_features or in_features\n        hidden_features = hidden_features or in_features\n        self.fc1 = nn.Linear(in_features, hidden_features)\n        self.act = act_layer()\n        self.fc2 = nn.Linear(hidden_features, out_features)\n        self.drop = nn.Dropout(drop)\n\n    def forward(self, x):\n        x = self.fc1(x)\n        x = self.act(x)\n        # x = self.drop(x)\n        # commit this for the orignal BERT implement\n        x = self.fc2(x)\n        x = self.drop(x)\n        return x\n\n\nclass Attention(nn.Module):\n    def __init__(\n            self, dim, num_heads=8, qkv_bias=False, qk_scale=None, attn_drop=0.,\n            proj_drop=0., window_size=None, attn_head_dim=None):\n        super().__init__()\n        self.num_heads = num_heads\n        head_dim = dim // num_heads\n        if attn_head_dim is not None:\n            head_dim = attn_head_dim\n        all_head_dim = head_dim * self.num_heads\n        self.scale = qk_scale or head_dim ** -0.5\n\n        self.qkv = nn.Linear(dim, all_head_dim * 3, bias=False)\n        if qkv_bias:\n            self.q_bias = nn.Parameter(torch.zeros(all_head_dim))\n            self.v_bias = nn.Parameter(torch.zeros(all_head_dim))\n        else:\n            self.q_bias = None\n            self.v_bias = None\n\n        if window_size:\n            self.window_size = window_size\n            self.num_relative_distance = (2 * window_size[0] - 1) * (2 * window_size[1] - 1) + 3\n            self.relative_position_bias_table = nn.Parameter(\n                torch.zeros(self.num_relative_distance, num_heads))  # 2*Wh-1 * 2*Ww-1, nH\n            # cls to token & token 2 cls & cls to cls\n\n            # get pair-wise relative position index for each token inside the window\n            coords_h = torch.arange(window_size[0])\n            coords_w = torch.arange(window_size[1])\n            coords = torch.stack(torch.meshgrid([coords_h, coords_w]))  # 2, Wh, Ww\n            coords_flatten = torch.flatten(coords, 1)  # 2, Wh*Ww\n            relative_coords = coords_flatten[:, :, None] - coords_flatten[:, None, :]  # 2, Wh*Ww, Wh*Ww\n            relative_coords = relative_coords.permute(1, 2, 0).contiguous()  # Wh*Ww, Wh*Ww, 2\n            relative_coords[:, :, 0] += window_size[0] - 1  # shift to start from 0\n            relative_coords[:, :, 1] += window_size[1] - 1\n            relative_coords[:, :, 0] *= 2 * window_size[1] - 1\n            relative_position_index = \\\n                torch.zeros(size=(window_size[0] * window_size[1] + 1,) * 2, dtype=relative_coords.dtype)\n            relative_position_index[1:, 1:] = relative_coords.sum(-1)  # Wh*Ww, Wh*Ww\n            relative_position_index[0, 0:] = self.num_relative_distance - 3\n            relative_position_index[0:, 0] = self.num_relative_distance - 2\n            relative_position_index[0, 0] = self.num_relative_distance - 1\n\n            self.register_buffer(\"relative_position_index\", relative_position_index)\n        else:\n            self.window_size = None\n            self.relative_position_bias_table = None\n            self.relative_position_index = None\n\n        self.attn_drop = nn.Dropout(attn_drop)\n        self.proj = nn.Linear(all_head_dim, dim)\n        self.proj_drop = nn.Dropout(proj_drop)\n\n    def forward(self, x, rel_pos_bias=None):\n        B, N, C = x.shape\n        qkv_bias = None\n        if self.q_bias is not None:\n            qkv_bias = torch.cat((self.q_bias, torch.zeros_like(self.v_bias, requires_grad=False), self.v_bias))\n        # qkv = self.qkv(x).reshape(B, N, 3, self.num_heads, C // self.num_heads).permute(2, 0, 3, 1, 4)\n        qkv = F.linear(input=x, weight=self.qkv.weight, bias=qkv_bias)\n        qkv = qkv.reshape(B, N, 3, self.num_heads, -1).permute(2, 0, 3, 1, 4)\n        q, k, v = qkv[0], qkv[1], qkv[2]  # make torchscript happy (cannot use tensor as tuple)\n\n        q = q * self.scale\n        attn = (q @ k.transpose(-2, -1))\n\n        if self.relative_position_bias_table is not None:\n            relative_position_bias = \\\n                self.relative_position_bias_table[self.relative_position_index.view(-1)].view(\n                    self.window_size[0] * self.window_size[1] + 1,\n                    self.window_size[0] * self.window_size[1] + 1, -1)  # Wh*Ww,Wh*Ww,nH\n            relative_position_bias = relative_position_bias.permute(2, 0, 1).contiguous()  # nH, Wh*Ww, Wh*Ww\n            attn = attn + relative_position_bias.unsqueeze(0)\n\n        if rel_pos_bias is not None:\n            attn = attn + rel_pos_bias\n\n        attn = attn.softmax(dim=-1)\n        attn = self.attn_drop(attn)\n\n        x = (attn @ v).transpose(1, 2).reshape(B, N, -1)\n        x = self.proj(x)\n        x = self.proj_drop(x)\n        return x\n\n\nclass Block(nn.Module):\n\n    def __init__(self, dim, num_heads, mlp_ratio=4., qkv_bias=False, qk_scale=None, drop=0., attn_drop=0.,\n                 drop_path=0., init_values=None, act_layer=nn.GELU, norm_layer=nn.LayerNorm,\n                 window_size=None, attn_head_dim=None):\n        super().__init__()\n        self.norm1 = norm_layer(dim)\n        self.attn = Attention(\n            dim, num_heads=num_heads, qkv_bias=qkv_bias, qk_scale=qk_scale,\n            attn_drop=attn_drop, proj_drop=drop, window_size=window_size, attn_head_dim=attn_head_dim)\n        # NOTE: drop path for stochastic depth, we shall see if this is better than dropout here\n        self.drop_path = DropPath(drop_path) if drop_path > 0. else nn.Identity()\n        self.norm2 = norm_layer(dim)\n        mlp_hidden_dim = int(dim * mlp_ratio)\n        self.mlp = Mlp(in_features=dim, hidden_features=mlp_hidden_dim, act_layer=act_layer, drop=drop)\n\n        if init_values is not None and init_values > 0:\n            self.gamma_1 = nn.Parameter(init_values * torch.ones((dim)), requires_grad=True)\n            self.gamma_2 = nn.Parameter(init_values * torch.ones((dim)), requires_grad=True)\n        else:\n            self.gamma_1, self.gamma_2 = None, None\n\n    def forward(self, x, rel_pos_bias=None):\n        if self.gamma_1 is None:\n            x = x + self.drop_path(self.attn(self.norm1(x), rel_pos_bias=rel_pos_bias))\n            x = x + self.drop_path(self.mlp(self.norm2(x)))\n        else:\n            x = x + self.drop_path(self.gamma_1 * self.attn(self.norm1(x), rel_pos_bias=rel_pos_bias))\n            x = x + self.drop_path(self.gamma_2 * self.mlp(self.norm2(x)))\n        return x\n\n\nclass PatchEmbed(nn.Module):\n    \"\"\" Image to Patch Embedding\n    \"\"\"\n\n    def __init__(self, img_size=224, patch_size=16, in_chans=3, embed_dim=768):\n        super().__init__()\n        img_size = to_2tuple(img_size)\n        patch_size = to_2tuple(patch_size)\n        num_patches = (img_size[1] // patch_size[1]) * (img_size[0] // patch_size[0])\n        self.patch_shape = (img_size[0] // patch_size[0], img_size[1] // patch_size[1])\n        self.img_size = img_size\n        self.patch_size = patch_size\n        self.num_patches = num_patches\n\n        self.proj = nn.Conv2d(in_chans, embed_dim, kernel_size=patch_size, stride=patch_size)\n\n    def forward(self, x, **kwargs):\n        B, C, H, W = x.shape\n        # FIXME look at relaxing size constraints\n        assert H == self.img_size[0] and W == self.img_size[1], \\\n            f\"Input image size ({H}*{W}) doesn't match model ({self.img_size[0]}*{self.img_size[1]}).\"\n        x = self.proj(x).flatten(2).transpose(1, 2)\n        return x\n\n\nclass RelativePositionBias(nn.Module):\n\n    def __init__(self, window_size, num_heads):\n        super().__init__()\n        self.window_size = window_size\n        self.num_relative_distance = (2 * window_size[0] - 1) * (2 * window_size[1] - 1) + 3\n        self.relative_position_bias_table = nn.Parameter(\n            torch.zeros(self.num_relative_distance, num_heads))  # 2*Wh-1 * 2*Ww-1, nH\n        # cls to token & token 2 cls & cls to cls\n\n        # get pair-wise relative position index for each token inside the window\n        coords_h = torch.arange(window_size[0])\n        coords_w = torch.arange(window_size[1])\n        coords = torch.stack(torch.meshgrid([coords_h, coords_w]))  # 2, Wh, Ww\n        coords_flatten = torch.flatten(coords, 1)  # 2, Wh*Ww\n        relative_coords = coords_flatten[:, :, None] - coords_flatten[:, None, :]  # 2, Wh*Ww, Wh*Ww\n        relative_coords = relative_coords.permute(1, 2, 0).contiguous()  # Wh*Ww, Wh*Ww, 2\n        relative_coords[:, :, 0] += window_size[0] - 1  # shift to start from 0\n        relative_coords[:, :, 1] += window_size[1] - 1\n        relative_coords[:, :, 0] *= 2 * window_size[1] - 1\n        relative_position_index = \\\n            torch.zeros(size=(window_size[0] * window_size[1] + 1,) * 2, dtype=relative_coords.dtype)\n        relative_position_index[1:, 1:] = relative_coords.sum(-1)  # Wh*Ww, Wh*Ww\n        relative_position_index[0, 0:] = self.num_relative_distance - 3\n        relative_position_index[0:, 0] = self.num_relative_distance - 2\n        relative_position_index[0, 0] = self.num_relative_distance - 1\n\n        self.register_buffer(\"relative_position_index\", relative_position_index)\n\n        # trunc_normal_(self.relative_position_bias_table, std=.02)\n\n    def forward(self):\n        relative_position_bias = \\\n            self.relative_position_bias_table[self.relative_position_index.view(-1)].view(\n                self.window_size[0] * self.window_size[1] + 1,\n                self.window_size[0] * self.window_size[1] + 1, -1)  # Wh*Ww,Wh*Ww,nH\n        return relative_position_bias.permute(2, 0, 1).contiguous()  # nH, Wh*Ww, Wh*Ww\n\n\nclass VisionTransformer(nn.Module):\n    \"\"\" Vision Transformer with support for patch or hybrid CNN input stage\n    \"\"\"\n\n    def __init__(self, img_size=224, patch_size=16, in_chans=3, num_classes=1000, embed_dim=768, depth=12,\n                 num_heads=12, mlp_ratio=4., qkv_bias=False, qk_scale=None, drop_rate=0., attn_drop_rate=0.,\n                 drop_path_rate=0., norm_layer=nn.LayerNorm, init_values=None,\n                 use_abs_pos_emb=True, use_rel_pos_bias=False, use_shared_rel_pos_bias=False,\n                 use_mean_pooling=True, init_scale=0.001, use_checkpoint=False):\n        super().__init__()\n        self.image_size = img_size\n        self.num_classes = num_classes\n        self.num_features = self.embed_dim = embed_dim  # num_features for consistency with other models\n\n        self.patch_embed = PatchEmbed(\n            img_size=img_size, patch_size=patch_size, in_chans=in_chans, embed_dim=embed_dim)\n        num_patches = self.patch_embed.num_patches\n\n        self.cls_token = nn.Parameter(torch.zeros(1, 1, embed_dim))\n        if use_abs_pos_emb:\n            self.pos_embed = nn.Parameter(torch.zeros(1, num_patches + 1, embed_dim))\n        else:\n            self.pos_embed = None\n        self.pos_drop = nn.Dropout(p=drop_rate)\n\n        if use_shared_rel_pos_bias:\n            self.rel_pos_bias = RelativePositionBias(window_size=self.patch_embed.patch_shape, num_heads=num_heads)\n        else:\n            self.rel_pos_bias = None\n        self.use_checkpoint = use_checkpoint\n\n        dpr = [x.item() for x in torch.linspace(0, drop_path_rate, depth)]  # stochastic depth decay rule\n        self.use_rel_pos_bias = use_rel_pos_bias\n        self.blocks = nn.ModuleList([\n            Block(\n                dim=embed_dim, num_heads=num_heads, mlp_ratio=mlp_ratio, qkv_bias=qkv_bias, qk_scale=qk_scale,\n                drop=drop_rate, attn_drop=attn_drop_rate, drop_path=dpr[i], norm_layer=norm_layer,\n                init_values=init_values, window_size=self.patch_embed.patch_shape if use_rel_pos_bias else None)\n            for i in range(depth)])\n        #         self.norm = nn.Identity() if use_mean_pooling else norm_layer(embed_dim)\n        #         self.fc_norm = norm_layer(embed_dim) if use_mean_pooling else None\n        #         self.head = nn.Linear(embed_dim, num_classes) if num_classes > 0 else nn.Identity()\n\n        if self.pos_embed is not None:\n            trunc_normal_(self.pos_embed, std=.02)\n        trunc_normal_(self.cls_token, std=.02)\n        # trunc_normal_(self.mask_token, std=.02)\n        #         if isinstance(self.head, nn.Linear):\n        #             trunc_normal_(self.head.weight, std=.02)\n        self.apply(self._init_weights)\n        self.fix_init_weight()\n\n    #         if isinstance(self.head, nn.Linear):\n    #             self.head.weight.data.mul_(init_scale)\n    #             self.head.bias.data.mul_(init_scale)\n\n    def fix_init_weight(self):\n        def rescale(param, layer_id):\n            param.div_(math.sqrt(2.0 * layer_id))\n\n        for layer_id, layer in enumerate(self.blocks):\n            rescale(layer.attn.proj.weight.data, layer_id + 1)\n            rescale(layer.mlp.fc2.weight.data, layer_id + 1)\n\n    def _init_weights(self, m):\n        if isinstance(m, nn.Linear):\n            trunc_normal_(m.weight, std=.02)\n            if isinstance(m, nn.Linear) and m.bias is not None:\n                nn.init.constant_(m.bias, 0)\n        elif isinstance(m, nn.LayerNorm):\n            nn.init.constant_(m.bias, 0)\n            nn.init.constant_(m.weight, 1.0)\n\n    def get_classifier(self):\n        return self.head\n\n    def reset_classifier(self, num_classes, global_pool=''):\n        self.num_classes = num_classes\n        self.head = nn.Linear(self.embed_dim, num_classes) if num_classes > 0 else nn.Identity()\n\n    def forward_features(self, x):\n        x = self.patch_embed(x)\n        batch_size, seq_len, _ = x.size()\n\n        cls_tokens = self.cls_token.expand(batch_size, -1, -1)  # stole cls_tokens impl from Phil Wang, thanks\n        x = torch.cat((cls_tokens, x), dim=1)\n        if self.pos_embed is not None:\n            x = x + self.pos_embed\n        x = self.pos_drop(x)\n\n        rel_pos_bias = self.rel_pos_bias() if self.rel_pos_bias is not None else None\n        for blk in self.blocks:\n            if self.use_checkpoint:\n                x = checkpoint.checkpoint(blk, x, rel_pos_bias)\n            else:\n                x = blk(x, rel_pos_bias)\n        return x\n\n    #         x = self.norm(x)\n\n    #         if self.fc_norm is not None:\n    #             t = x[:, 1:, :]\n    #             return self.fc_norm(t.mean(1))\n    #         else:\n    #             return x[:, 0]\n\n    def forward(self, x):\n        x = self.forward_features(x)\n        #         x = self.head(x)\n        return x\n\n    def get_intermediate_layers(self, x):\n        x = self.patch_embed(x)\n        batch_size, seq_len, _ = x.size()\n\n        cls_tokens = self.cls_token.expand(batch_size, -1, -1)  # stole cls_tokens impl from Phil Wang, thanks\n        x = torch.cat((cls_tokens, x), dim=1)\n        if self.pos_embed is not None:\n            x = x + self.pos_embed\n        x = self.pos_drop(x)\n\n        features = []\n        rel_pos_bias = self.rel_pos_bias() if self.rel_pos_bias is not None else None\n        for blk in self.blocks:\n            x = blk(x, rel_pos_bias)\n            features.append(x)\n\n        return features\n\n\ndef interpolate_pos_embed(model, checkpoint_model):\n    if 'pos_embed' in checkpoint_model:\n        pos_embed_checkpoint = checkpoint_model['pos_embed'].float()\n        embedding_size = pos_embed_checkpoint.shape[-1]\n        num_patches = model.patch_embed.num_patches\n        num_extra_tokens = model.pos_embed.shape[-2] - num_patches\n        # height (== width) for the checkpoint position embedding\n        orig_size = int((pos_embed_checkpoint.shape[-2] - num_extra_tokens) ** 0.5)\n        # height (== width) for the new position embedding\n        new_size = int(num_patches ** 0.5)\n        # class_token and dist_token are kept unchanged\n        if orig_size != new_size:\n            print(\"Position interpolate from %dx%d to %dx%d\" % (orig_size, orig_size, new_size, new_size))\n            extra_tokens = pos_embed_checkpoint[:, :num_extra_tokens]\n            # only the position tokens are interpolated\n            pos_tokens = pos_embed_checkpoint[:, num_extra_tokens:]\n            pos_tokens = pos_tokens.reshape(-1, orig_size, orig_size, embedding_size).permute(0, 3, 1, 2)\n            pos_tokens = torch.nn.functional.interpolate(\n                pos_tokens, size=(new_size, new_size), mode='bicubic', align_corners=False)\n            pos_tokens = pos_tokens.permute(0, 2, 3, 1).flatten(1, 2)\n            new_pos_embed = torch.cat((extra_tokens, pos_tokens), dim=1)\n            checkpoint_model['pos_embed'] = new_pos_embed\n\n\ndef convert_weights_to_fp16(model: nn.Module):\n    \"\"\"Convert applicable model parameters to fp16\"\"\"\n\n    def _convert_weights_to_fp16(l):\n        if isinstance(l, (nn.Conv1d, nn.Conv2d, nn.Linear)):\n            l.weight.data = l.weight.data.half()\n            if l.bias is not None:\n                l.bias.data = l.bias.data.half()\n\n    #         if isinstance(l, (nn.MultiheadAttention, Attention)):\n    #             for attr in [*[f\"{s}_proj_weight\" for s in [\"in\", \"q\", \"k\", \"v\"]], \"in_proj_bias\", \"bias_k\", \"bias_v\"]:\n    #                 tensor = getattr(l, attr)\n    #                 if tensor is not None:\n    #                     tensor.data = tensor.data.half()\n\n    model.apply(_convert_weights_to_fp16)\n\n\ndef create_eva_vit_g(img_size=224, drop_path_rate=0.4, use_checkpoint=False, precision=\"fp16\"):\n    model = VisionTransformer(\n        img_size=img_size,\n        patch_size=14,\n        use_mean_pooling=False,\n        embed_dim=1408,\n        depth=39,\n        num_heads=1408 // 88,\n        mlp_ratio=4.3637,\n        qkv_bias=True,\n        drop_path_rate=drop_path_rate,\n        norm_layer=partial(nn.LayerNorm, eps=1e-6),\n        use_checkpoint=use_checkpoint,\n    )\n    url = \"https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/eva_vit_g.pth\"\n    cached_file = download_cached_file(\n        url, check_hash=False, progress=True\n    )\n    state_dict = torch.load(cached_file, map_location=\"cpu\")\n    interpolate_pos_embed(model, state_dict)\n\n    incompatible_keys = model.load_state_dict(state_dict, strict=False)\n    #     print(incompatible_keys)\n\n    if precision == \"fp16\":\n        #         model.to(\"cuda\")\n        convert_weights_to_fp16(model)\n    return model"
  },
  {
    "path": "model/univi/model/multimodal_encoder/processor.py",
    "content": "import re\nfrom torchvision import transforms\nfrom torchvision.transforms.functional import InterpolationMode\n\n\nclass BaseProcessor:\n    def __init__(self, mean=None, std=None):\n        if mean is None:\n            mean = (0.48145466, 0.4578275, 0.40821073)\n        if std is None:\n            std = (0.26862954, 0.26130258, 0.27577711)\n\n        self.normalize = transforms.Normalize(mean, std)\n\n\nclass ImageTrainProcessor(BaseProcessor):\n    def __init__(self, image_size=224, mean=None, std=None, min_scale=0.5, max_scale=1.0):\n        super().__init__(mean=mean, std=std)\n\n        self.transform = transforms.Compose(\n            [\n                transforms.Resize(\n                    (image_size, image_size), interpolation=InterpolationMode.BICUBIC\n                ),\n                transforms.ToTensor(),\n                self.normalize,\n            ]\n        )\n\n    def preprocess(self, item, return_tensors):\n        return {'pixel_values': [self.transform(item)]}\n\n\nclass ImageEvalProcessor(BaseProcessor):\n    def __init__(self, image_size=224, mean=None, std=None):\n        super().__init__(mean=mean, std=std)\n\n        self.transform = transforms.Compose(\n            [\n                transforms.Resize(\n                    (image_size, image_size), interpolation=InterpolationMode.BICUBIC\n                ),\n                transforms.ToTensor(),\n                self.normalize,\n            ]\n        )\n\n    def preprocess(self, item, return_tensors):\n        return {'pixel_values': [self.transform(item)]}\n\n\nclass QWenImageProcessor(BaseProcessor):\n    def __init__(self, image_size=224, mean=None, std=None):\n        super().__init__(mean=mean, std=std)\n\n        mean = (0.48145466, 0.4578275, 0.40821073)\n        std = (0.26862954, 0.26130258, 0.27577711)\n        self.transform = transforms.Compose([\n            transforms.Resize(\n                (448, 448),\n                interpolation=InterpolationMode.BICUBIC\n            ),\n            transforms.ToTensor(),\n            transforms.Normalize(mean=mean, std=std),\n        ])\n\n    def preprocess(self, item, return_tensors):\n        return {'pixel_values': [self.transform(item)]}"
  },
  {
    "path": "model/univi/model/multimodal_encoder/utils.py",
    "content": "\"\"\"\n Copyright (c) 2022, salesforce.com, inc.\n All rights reserved.\n SPDX-License-Identifier: BSD-3-Clause\n For full license text, see the LICENSE_Lavis file in the repo root or https://opensource.org/licenses/BSD-3-Clause\n\"\"\"\n\nimport datetime\nimport functools\nimport os\n\nimport torch\nimport torch.distributed as dist\nimport timm.models.hub as timm_hub\n\n\ndef setup_for_distributed(is_master):\n    \"\"\"\n    This function disables printing when not in master process\n    \"\"\"\n    import builtins as __builtin__\n\n    builtin_print = __builtin__.print\n\n    def print(*args, **kwargs):\n        force = kwargs.pop(\"force\", False)\n        if is_master or force:\n            builtin_print(*args, **kwargs)\n\n    __builtin__.print = print\n\n\ndef is_dist_avail_and_initialized():\n    if not dist.is_available():\n        return False\n    if not dist.is_initialized():\n        return False\n    return True\n\n\ndef get_world_size():\n    if not is_dist_avail_and_initialized():\n        return 1\n    return dist.get_world_size()\n\n\ndef get_rank():\n    if not is_dist_avail_and_initialized():\n        return 0\n    return dist.get_rank()\n\n\ndef is_main_process():\n    return get_rank() == 0\n\n\ndef init_distributed_mode(args):\n    if \"RANK\" in os.environ and \"WORLD_SIZE\" in os.environ:\n        args.rank = int(os.environ[\"RANK\"])\n        args.world_size = int(os.environ[\"WORLD_SIZE\"])\n        args.gpu = int(os.environ[\"LOCAL_RANK\"])\n    elif \"SLURM_PROCID\" in os.environ:\n        args.rank = int(os.environ[\"SLURM_PROCID\"])\n        args.gpu = args.rank % torch.cuda.device_count()\n    else:\n        print(\"Not using distributed mode\")\n        args.distributed = False\n        return\n\n    args.distributed = True\n\n    torch.cuda.set_device(args.gpu)\n    args.dist_backend = \"nccl\"\n    print(\n        \"| distributed init (rank {}, world {}): {}\".format(\n            args.rank, args.world_size, args.dist_url\n        ),\n        flush=True,\n    )\n    torch.distributed.init_process_group(\n        backend=args.dist_backend,\n        init_method=args.dist_url,\n        world_size=args.world_size,\n        rank=args.rank,\n        timeout=datetime.timedelta(\n            days=365\n        ),  # allow auto-downloading and de-compressing\n    )\n    torch.distributed.barrier()\n    setup_for_distributed(args.rank == 0)\n\n\ndef get_dist_info():\n    if torch.__version__ < \"1.0\":\n        initialized = dist._initialized\n    else:\n        initialized = dist.is_initialized()\n    if initialized:\n        rank = dist.get_rank()\n        world_size = dist.get_world_size()\n    else:  # non-distributed training\n        rank = 0\n        world_size = 1\n    return rank, world_size\n\n\ndef main_process(func):\n    @functools.wraps(func)\n    def wrapper(*args, **kwargs):\n        rank, _ = get_dist_info()\n        if rank == 0:\n            return func(*args, **kwargs)\n\n    return wrapper\n\n\ndef download_cached_file(url, check_hash=True, progress=False):\n    \"\"\"\n    Download a file from a URL and cache it locally. If the file already exists, it is not downloaded again.\n    If distributed, only the main process downloads the file, and the other processes wait for the file to be downloaded.\n    \"\"\"\n\n    def get_cached_file_path():\n        # a hack to sync the file path across processes\n        parts = torch.hub.urlparse(url)\n        filename = os.path.basename(parts.path)\n        cached_file = os.path.join(timm_hub.get_cache_dir(), filename)\n\n        return cached_file\n\n    if is_main_process():\n        timm_hub.download_cached_file(url, check_hash, progress)\n\n    if is_dist_avail_and_initialized():\n        dist.barrier()\n\n    return get_cached_file_path()"
  },
  {
    "path": "model/univi/train/llama_flash_attn_monkey_patch.py",
    "content": "from typing import List, Optional, Tuple\nimport logging\n\nimport torch\nfrom torch import nn\n\nimport transformers\nfrom transformers.models.llama.modeling_llama import apply_rotary_pos_emb\n\nfrom einops import rearrange\n\ntry:\n    from flash_attn.flash_attn_interface import flash_attn_unpadded_qkvpacked_func\nexcept ImportError:\n    from flash_attn.flash_attn_interface import flash_attn_varlen_qkvpacked_func as flash_attn_unpadded_qkvpacked_func\nfrom flash_attn.bert_padding import unpad_input, pad_input\n\n\ndef forward(\n    self,\n    hidden_states: torch.Tensor,\n    attention_mask: Optional[torch.Tensor] = None,\n    position_ids: Optional[torch.Tensor] = None,\n    past_key_value: Optional[Tuple[torch.Tensor]] = None,\n    output_attentions: bool = False,\n    use_cache: bool = False,\n) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:\n    \"\"\"Input shape: Batch x Time x Channel\n\n    attention_mask: [bsz, q_len]\n    \"\"\"\n    bsz, q_len, _ = hidden_states.size()\n\n    query_states = (\n        self.q_proj(hidden_states)\n        .view(bsz, q_len, self.num_heads, self.head_dim)\n        .transpose(1, 2)\n    )\n    key_states = (\n        self.k_proj(hidden_states)\n        .view(bsz, q_len, self.num_heads, self.head_dim)\n        .transpose(1, 2)\n    )\n    value_states = (\n        self.v_proj(hidden_states)\n        .view(bsz, q_len, self.num_heads, self.head_dim)\n        .transpose(1, 2)\n    )\n    # [bsz, q_len, nh, hd]\n    # [bsz, nh, q_len, hd]\n\n    kv_seq_len = key_states.shape[-2]\n    assert past_key_value is None, \"past_key_value is not supported\"\n\n    cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)\n    query_states, key_states = apply_rotary_pos_emb(\n        query_states, key_states, cos, sin, position_ids\n    )\n    # [bsz, nh, t, hd]\n    assert not output_attentions, \"output_attentions is not supported\"\n    assert not use_cache, \"use_cache is not supported\"\n\n    # Flash attention codes from\n    # https://github.com/HazyResearch/flash-attention/blob/main/flash_attn/flash_attention.py\n\n    # transform the data into the format required by flash attention\n    qkv = torch.stack(\n        [query_states, key_states, value_states], dim=2\n    )  # [bsz, nh, 3, q_len, hd]\n    qkv = qkv.transpose(1, 3)  # [bsz, q_len, 3, nh, hd]\n    # We have disabled _prepare_decoder_attention_mask in LlamaModel\n    # the attention_mask should be the same as the key_padding_mask\n    key_padding_mask = attention_mask\n\n    if key_padding_mask is None:\n        qkv = rearrange(qkv, \"b s ... -> (b s) ...\")\n        max_s = q_len\n        cu_q_lens = torch.arange(\n            0, (bsz + 1) * q_len, step=q_len, dtype=torch.int32, device=qkv.device\n        )\n        output = flash_attn_unpadded_qkvpacked_func(\n            qkv, cu_q_lens, max_s, 0.0, softmax_scale=None, causal=True\n        )\n        output = rearrange(output, \"(b s) ... -> b s ...\", b=bsz)\n    else:\n        nheads = qkv.shape[-2]\n        x = rearrange(qkv, \"b s three h d -> b s (three h d)\")\n        x_unpad, indices, cu_q_lens, max_s = unpad_input(x, key_padding_mask)\n        x_unpad = rearrange(\n            x_unpad, \"nnz (three h d) -> nnz three h d\", three=3, h=nheads\n        )\n        output_unpad = flash_attn_unpadded_qkvpacked_func(\n            x_unpad, cu_q_lens, max_s, 0.0, softmax_scale=None, causal=True\n        )\n        output = rearrange(\n            pad_input(\n                rearrange(output_unpad, \"nnz h d -> nnz (h d)\"), indices, bsz, q_len\n            ),\n            \"b s (h d) -> b s h d\",\n            h=nheads,\n        )\n    return self.o_proj(rearrange(output, \"b s h d -> b s (h d)\")), None, None\n\n\n# Disable the transformation of the attention mask in LlamaModel as the flash attention\n# requires the attention mask to be the same as the key_padding_mask\ndef _prepare_decoder_attention_mask(\n    self, attention_mask, input_shape, inputs_embeds, past_key_values_length\n):\n    # [bsz, seq_len]\n    return attention_mask\n\n\ndef replace_llama_attn_with_flash_attn():\n    cuda_major, cuda_minor = torch.cuda.get_device_capability()\n    if cuda_major < 8:\n        logging.warning(\n            \"Flash attention is only supported on A100 or H100 GPU during training due to head dim > 64 backward.\"\n            \"ref: https://github.com/HazyResearch/flash-attention/issues/190#issuecomment-1523359593\"\n        )\n    transformers.models.llama.modeling_llama.LlamaModel._prepare_decoder_attention_mask = (\n        _prepare_decoder_attention_mask\n    )\n    transformers.models.llama.modeling_llama.LlamaAttention.forward = forward\n"
  },
  {
    "path": "model/univi/train/train.py",
    "content": "# Adopted from https://github.com/lm-sys/FastChat. Below is the original copyright:\n# Adopted from tatsu-lab@stanford_alpaca. Below is the original copyright:\n#    Copyright 2023 Rohan Taori, Ishaan Gulrajani, Tianyi Zhang, Yann Dubois, Xuechen Li\n#\n#    Licensed under the Apache License, Version 2.0 (the \"License\");\n#    you may not use this file except in compliance with the License.\n#    You may obtain a copy of the License at\n#\n#        http://www.apache.org/licenses/LICENSE-2.0\n#\n#    Unless required by applicable law or agreed to in writing, software\n#    distributed under the License is distributed on an \"AS IS\" BASIS,\n#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n#    See the License for the specific language governing permissions and\n#    limitations under the License.\n\nimport os\nimport copy\nfrom dataclasses import dataclass, field\nimport json\nimport logging\nimport pathlib\nfrom typing import Dict, Optional, Sequence, List\nimport torch\nimport transformers\nfrom ChatUniVi.constants import *\nfrom torch.utils.data import Dataset\nfrom ChatUniVi.train.trainer import ChatUniViTrainer\nfrom ChatUniVi import conversation as conversation_lib\nfrom ChatUniVi.model import *\nfrom ChatUniVi.mm_utils import tokenizer_image_token\nfrom ChatUniVi.config import ModelConfig, DataConfig\nfrom PIL import Image\nimport random\nimport numpy as np\nfrom ChatUniVi.model.dataloader import _get_rawvideo_dec\n\n\nlocal_rank = None\n\n\ndef rank0_print(*args):\n    if local_rank == 0:\n        print(*args)\n\n\n@dataclass\nclass ModelArguments:\n    model_name_or_path: Optional[str] = field(default=\"facebook/opt-125m\")\n    version: Optional[str] = field(default=\"v0\")\n    freeze_backbone: bool = field(default=False)\n    tune_mm_mlp_adapter: bool = field(default=False)\n    vision_tower: Optional[str] = field(default=None)\n    mm_vision_select_layer: Optional[int] = field(default=-1)   # default to the last layer\n    pretrain_mm_mlp_adapter: Optional[str] = field(default=None)\n    mm_use_im_start_end: bool = field(default=False)\n    mm_use_im_patch_token: bool = field(default=True)\n    mm_vision_select_feature: Optional[str] = field(default=\"patch\")\n\n    model_use: str = field(default=\"BASE\")\n    mm_use_box_start_end: bool = field(default=False)\n\n@dataclass\nclass DataArguments:\n    lazy_preprocess: bool = False\n    is_multimodal: bool = False\n    image_aspect_ratio: str = 'square'\n    image_grid_pinpoints: Optional[str] = field(default=None)\n\n    dataset_use: str = field(default=\"Pretrain\")\n\n@dataclass\nclass TrainingArguments(transformers.TrainingArguments):\n    cache_dir: Optional[str] = field(default=None)\n    optim: str = field(default=\"adamw_torch\")\n    remove_unused_columns: bool = field(default=False)\n    freeze_mm_mlp_adapter: bool = field(default=False)\n    mpt_attn_impl: Optional[str] = field(default=\"triton\")\n    model_max_length: int = field(\n        default=512,\n        metadata={\n            \"help\":\n            \"Maximum sequence length. Sequences will be right padded (and possibly truncated).\"\n        },\n    )\n    double_quant: bool = field(\n        default=True,\n        metadata={\"help\": \"Compress the quantization statistics through double quantization.\"}\n    )\n    quant_type: str = field(\n        default=\"nf4\",\n        metadata={\"help\": \"Quantization data type to use. Should be one of `fp4` or `nf4`.\"}\n    )\n    bits: int = field(\n        default=16,\n        metadata={\"help\": \"How many bits to use.\"}\n    )\n    lora_enable: bool = False\n    lora_r: int = 64\n    lora_alpha: int = 16\n    lora_dropout: float = 0.05\n    lora_weight_path: str = \"\"\n    lora_bias: str = \"none\"\n\n    seed = 42\n\n\ndef maybe_zero_3(param, ignore_status=False, name=None):\n    from deepspeed import zero\n    from deepspeed.runtime.zero.partition_parameters import ZeroParamStatus\n    if hasattr(param, \"ds_id\"):\n        if param.ds_status == ZeroParamStatus.NOT_AVAILABLE:\n            if not ignore_status:\n                logging.warning(f\"{name}: param.ds_status != ZeroParamStatus.NOT_AVAILABLE: {param.ds_status}\")\n        with zero.GatheredParameters([param]):\n            param = param.data.detach().cpu().clone()\n    else:\n        param = param.detach().cpu().clone()\n    return param\n\n\n# Borrowed from peft.utils.get_peft_model_state_dict\ndef get_peft_state_maybe_zero_3(named_params, bias):\n    if bias == \"none\":\n        to_return = {k: t for k, t in named_params if \"lora_\" in k}\n    elif bias == \"all\":\n        to_return = {k: t for k, t in named_params if \"lora_\" in k or \"bias\" in k}\n    elif bias == \"lora_only\":\n        to_return = {}\n        maybe_lora_bias = {}\n        lora_bias_names = set()\n        for k, t in named_params:\n            if \"lora_\" in k:\n                to_return[k] = t\n                bias_name = k.split(\"lora_\")[0] + \"bias\"\n                lora_bias_names.add(bias_name)\n            elif \"bias\" in k:\n                maybe_lora_bias[k] = t\n        for k, t in maybe_lora_bias:\n            if bias_name in lora_bias_names:\n                to_return[bias_name] = t\n    else:\n        raise NotImplementedError\n    to_return = {k: maybe_zero_3(v, name=k) for k, v in to_return.items()}\n    return to_return\n\n\ndef get_peft_state_non_lora_maybe_zero_3(named_params, require_grad_only=True):\n    to_return = {k: t for k, t in named_params if \"lora_\" not in k}\n    if require_grad_only:\n        to_return = {k: t for k, t in to_return.items() if t.requires_grad}\n    to_return = {k: maybe_zero_3(v, ignore_status=True).cpu() for k, v in to_return.items()}\n    return to_return\n\n\ndef get_mm_adapter_state_maybe_zero_3(named_params, keys_to_match):\n    to_return = {k: t for k, t in named_params if any(key_match in k for key_match in keys_to_match)}\n    to_return = {k: maybe_zero_3(v, ignore_status=True).cpu() for k, v in to_return.items()}\n    return to_return\n\n\ndef find_all_linear_names(model):\n    cls = torch.nn.Linear\n    lora_module_names = set()\n    for name, module in model.named_modules():\n        if isinstance(module, cls):\n            names = name.split('.')\n            lora_module_names.add(names[0] if len(names) == 1 else names[-1])\n\n\n    if 'lm_head' in lora_module_names: # needed for 16-bit\n        lora_module_names.remove('lm_head')\n    return list(lora_module_names)\n\n\ndef safe_save_model_for_hf_trainer(trainer: transformers.Trainer,\n                                   output_dir: str):\n    \"\"\"Collects the state dict and dump to disk.\"\"\"\n\n    if getattr(trainer.args, \"tune_mm_mlp_adapter\", False):\n        # Only save Adapter\n        keys_to_match = ['mm_projector', \"ctm\", \"block\"]\n        if getattr(trainer.args, \"use_im_start_end\", False):\n            keys_to_match.extend(['embed_tokens', 'embed_in'])\n\n        weight_to_save = get_mm_adapter_state_maybe_zero_3(trainer.model.named_parameters(), keys_to_match)\n        trainer.model.config.save_pretrained(output_dir)\n\n        current_folder = output_dir.split('/')[-1]\n        parent_folder = os.path.dirname(output_dir)\n        if trainer.args.local_rank == 0 or trainer.args.local_rank == -1:\n            if current_folder.startswith('checkpoint-'):\n                mm_projector_folder = os.path.join(parent_folder, \"mm_projector\")\n                os.makedirs(mm_projector_folder, exist_ok=True)\n                torch.save(weight_to_save, os.path.join(mm_projector_folder, f'{current_folder}.bin'))\n            else:\n                torch.save(weight_to_save, os.path.join(output_dir, f'mm_projector.bin'))\n\n    if trainer.deepspeed:\n        torch.cuda.synchronize()\n        trainer.save_model(output_dir)\n        return\n\n    state_dict = trainer.model.state_dict()\n    if trainer.args.should_save:\n        cpu_state_dict = {\n            key: value.cpu()\n            for key, value in state_dict.items()\n        }\n        del state_dict\n        trainer._save(output_dir, state_dict=cpu_state_dict)  # noqa\n\n\ndef smart_tokenizer_and_embedding_resize(\n    special_tokens_dict: Dict,\n    tokenizer: transformers.PreTrainedTokenizer,\n    model: transformers.PreTrainedModel,\n):\n    \"\"\"Resize tokenizer and embedding.\n\n    Note: This is the unoptimized version that may make your embedding size not be divisible by 64.\n    \"\"\"\n    num_new_tokens = tokenizer.add_special_tokens(special_tokens_dict)\n    model.resize_token_embeddings(len(tokenizer))\n\n    if num_new_tokens > 0:\n        input_embeddings = model.get_input_embeddings().weight.data\n        output_embeddings = model.get_output_embeddings().weight.data\n\n        input_embeddings_avg = input_embeddings[:-num_new_tokens].mean(\n            dim=0, keepdim=True)\n        output_embeddings_avg = output_embeddings[:-num_new_tokens].mean(\n            dim=0, keepdim=True)\n\n        input_embeddings[-num_new_tokens:] = input_embeddings_avg\n        output_embeddings[-num_new_tokens:] = output_embeddings_avg\n\n\ndef _tokenize_fn(strings: Sequence[str],\n                 tokenizer: transformers.PreTrainedTokenizer) -> Dict:\n    \"\"\"Tokenize a list of strings.\"\"\"\n    tokenized_list = [\n        tokenizer(\n            text,\n            return_tensors=\"pt\",\n            padding=\"longest\",\n            max_length=tokenizer.model_max_length,\n            truncation=True,\n        ) for text in strings\n    ]\n    input_ids = labels = [\n        tokenized.input_ids[0] for tokenized in tokenized_list\n    ]\n    input_ids_lens = labels_lens = [\n        tokenized.input_ids.ne(tokenizer.pad_token_id).sum().item()\n        for tokenized in tokenized_list\n    ]\n    return dict(\n        input_ids=input_ids,\n        labels=labels,\n        input_ids_lens=input_ids_lens,\n        labels_lens=labels_lens,\n    )\n\n\ndef _mask_targets(target, tokenized_lens, speakers):\n    # cur_idx = 0\n    cur_idx = tokenized_lens[0]\n    tokenized_lens = tokenized_lens[1:]\n    target[:cur_idx] = IGNORE_INDEX\n    for tokenized_len, speaker in zip(tokenized_lens, speakers):\n        if speaker == \"human\":\n            target[cur_idx+2:cur_idx + tokenized_len] = IGNORE_INDEX\n        cur_idx += tokenized_len\n\n\ndef _add_speaker_and_signal(header, source, get_conversation=True):\n    \"\"\"Add speaker and start/end signal on each round.\"\"\"\n    BEGIN_SIGNAL = \"### \"\n    END_SIGNAL = \"\\n\"\n    conversation = header\n    for sentence in source:\n        from_str = sentence[\"from\"]\n        if from_str.lower() == \"human\":\n            from_str = conversation_lib.default_conversation.roles[0]\n        elif from_str.lower() == \"gpt\":\n            from_str = conversation_lib.default_conversation.roles[1]\n        else:\n            from_str = 'unknown'\n        sentence[\"value\"] = (BEGIN_SIGNAL + from_str + \": \" +\n                             sentence[\"value\"] + END_SIGNAL)\n        if get_conversation:\n            conversation += sentence[\"value\"]\n    conversation += BEGIN_SIGNAL\n    return conversation\n\n\ndef preprocess_multimodal(\n    sources: Sequence[str],\n    data_args: DataArguments\n) -> Dict:\n    is_multimodal = data_args.is_multimodal\n    if not is_multimodal:\n        return sources\n\n    for source in sources:\n        for sentence in source:\n            if DEFAULT_IMAGE_TOKEN in sentence['value'] or DEFAULT_VIDEO_TOKEN in sentence['value']:\n                if sentence['value'].endswith(DEFAULT_IMAGE_TOKEN):\n                    IMAGE_TOKEN_NUM = sentence['value'].count(DEFAULT_IMAGE_TOKEN)\n                    sentence['value'] = sentence['value'].replace('\\n' + DEFAULT_IMAGE_TOKEN * IMAGE_TOKEN_NUM, '').strip()\n                    sentence['value'] = DEFAULT_IMAGE_TOKEN * IMAGE_TOKEN_NUM + '\\n' + sentence['value']\n                    sentence['value'] = sentence['value'].strip()\n                if sentence['value'].endswith(DEFAULT_VIDEO_TOKEN):\n                    VIDEO_TOKEN_NUM = sentence['value'].count(DEFAULT_VIDEO_TOKEN)\n                    sentence['value'] = sentence['value'].replace('\\n' + DEFAULT_VIDEO_TOKEN * VIDEO_TOKEN_NUM, '').strip()\n                    sentence['value'] = DEFAULT_VIDEO_TOKEN * VIDEO_TOKEN_NUM + '\\n' + sentence['value']\n                    sentence['value'] = sentence['value'].strip()\n\n                if \"mmtag\" in conversation_lib.default_conversation.version:\n                    sentence['value'] = sentence['value'].replace(DEFAULT_IMAGE_TOKEN, '<Image>' + DEFAULT_IMAGE_TOKEN + '</Image>')\n\n                IMAGE_TOKEN_NUM = sentence['value'].count(DEFAULT_IMAGE_TOKEN)\n                if IMAGE_TOKEN_NUM > MAX_IMAGE_LENGTH:\n                    sentence['value'] = sentence['value'].replace(DEFAULT_IMAGE_TOKEN * IMAGE_TOKEN_NUM, DEFAULT_IMAGE_TOKEN * MAX_IMAGE_LENGTH).strip()\n\n            replace_token, vid_replace_token = DEFAULT_IMAGE_TOKEN, DEFAULT_IMAGE_TOKEN * MAX_IMAGE_LENGTH\n            if data_args.mm_use_im_start_end:\n                replace_token = DEFAULT_IM_START_TOKEN + replace_token + DEFAULT_IM_END_TOKEN\n                vid_replace_token = DEFAULT_VID_START_TOKEN + vid_replace_token + DEFAULT_VID_END_TOKEN\n\n            sentence[\"value\"] = sentence[\"value\"].replace(DEFAULT_IMAGE_TOKEN, replace_token)\n            sentence['value'] = sentence['value'].replace(DEFAULT_VIDEO_TOKEN, vid_replace_token)\n\n    return sources\n\n\ndef preprocess_llama_2(\n    sources,\n    tokenizer: transformers.PreTrainedTokenizer,\n    has_image: bool = False\n) -> Dict:\n    conv = conversation_lib.default_conversation.copy()\n    roles = {\"human\": conv.roles[0], \"gpt\": conv.roles[1]}\n\n    # Apply prompt templates\n    conversations = []\n    for i, source in enumerate(sources):\n        if roles[source[0][\"from\"]] != conv.roles[0]:\n            # Skip the first one if it is not from human\n            source = source[1:]\n\n        conv.messages = []\n        for j, sentence in enumerate(source):\n            role = roles[sentence[\"from\"]]\n            assert role == conv.roles[j % 2], f\"{i}\"\n            conv.append_message(role, sentence[\"value\"])\n        conversations.append(conv.get_prompt())\n\n    # Tokenize conversations\n\n    if has_image:\n        input_ids = torch.stack([tokenizer_image_token(prompt, tokenizer, return_tensors='pt') for prompt in conversations], dim=0)\n    else:\n        input_ids = tokenizer(\n            conversations,\n            return_tensors=\"pt\",\n            padding=\"longest\",\n            max_length=tokenizer.model_max_length,\n            truncation=True,\n        ).input_ids\n\n    targets = input_ids.clone()\n\n    assert conv.sep_style == conversation_lib.SeparatorStyle.LLAMA_2\n\n    # Mask targets\n    sep = \"[/INST] \"\n    for conversation, target in zip(conversations, targets):\n        total_len = int(target.ne(tokenizer.pad_token_id).sum())\n\n        rounds = conversation.split(conv.sep2)\n\n        cur_len = 1\n        target[:cur_len] = IGNORE_INDEX\n\n        for i, rou in enumerate(rounds):\n            if rou == \"\":\n                break\n\n            parts = rou.split(sep)\n            if len(parts) != 2:\n                break\n            parts[0] += sep\n\n            if has_image:\n                round_len = len(tokenizer_image_token(rou, tokenizer))\n                instruction_len = len(tokenizer_image_token(parts[0], tokenizer)) - 2\n            else:\n                round_len = len(tokenizer(rou).input_ids)\n                instruction_len = len(tokenizer(parts[0]).input_ids) - 2\n\n            target[cur_len : cur_len + instruction_len] = IGNORE_INDEX\n\n            cur_len += round_len\n\n        if tokenizer.eos_token == tokenizer.pad_token:\n            cur_len += 1\n\n        target[cur_len:] = IGNORE_INDEX\n\n        if cur_len < tokenizer.model_max_length:\n            if cur_len != total_len:\n                target[:] = IGNORE_INDEX\n                print(\n                    f\"WARNING: tokenization mismatch: {cur_len} vs. {total_len}.\"\n                    f\" (ignored)\"\n                )\n\n    return dict(\n        input_ids=input_ids,\n        labels=targets,\n    )\n\n\ndef preprocess_v1(\n    sources,\n    tokenizer: transformers.PreTrainedTokenizer,\n    has_image: bool = False\n) -> Dict:\n    conv = conversation_lib.default_conversation.copy()\n    roles = {\"human\": conv.roles[0], \"gpt\": conv.roles[1]}\n\n    # Apply prompt templates\n    conversations = []\n    for i, source in enumerate(sources):\n        if roles[source[0][\"from\"]] != conv.roles[0]:\n            # Skip the first one if it is not from human\n            source = source[1:]\n\n        conv.messages = []\n        for j, sentence in enumerate(source):\n            role = roles[sentence[\"from\"]]\n            assert role == conv.roles[j % 2], f\"{i}\"\n            conv.append_message(role, sentence[\"value\"])\n        conversations.append(conv.get_prompt())\n\n    # Tokenize conversations\n\n    if has_image:\n        input_ids = torch.stack([tokenizer_image_token(prompt, tokenizer, return_tensors='pt') for prompt in conversations], dim=0)\n    else:\n        input_ids = tokenizer(\n            conversations,\n            return_tensors=\"pt\",\n            padding=\"longest\",\n            max_length=tokenizer.model_max_length,\n            truncation=True,\n        ).input_ids\n\n    targets = input_ids.clone()\n\n    assert conv.sep_style == conversation_lib.SeparatorStyle.TWO\n\n    # Mask targets\n    sep = conv.sep + conv.roles[1] + \": \"\n    for conversation, target in zip(conversations, targets):\n        total_len = int(target.ne(tokenizer.pad_token_id).sum())\n\n        rounds = conversation.split(conv.sep2)\n        cur_len = 1\n        target[:cur_len] = IGNORE_INDEX\n        for i, rou in enumerate(rounds):\n            if rou == \"\":\n                break\n\n            parts = rou.split(sep)\n            if len(parts) != 2:\n                break\n            parts[0] += sep\n\n            if has_image:\n                round_len = len(tokenizer_image_token(rou, tokenizer))\n                instruction_len = len(tokenizer_image_token(parts[0], tokenizer)) - 2\n            else:\n                round_len = len(tokenizer(rou).input_ids)\n                instruction_len = len(tokenizer(parts[0]).input_ids) - 2\n\n            target[cur_len : cur_len + instruction_len] = IGNORE_INDEX\n\n            cur_len += round_len\n        target[cur_len:] = IGNORE_INDEX\n\n        if cur_len < tokenizer.model_max_length:\n            if cur_len != total_len:\n                target[:] = IGNORE_INDEX\n                print(\n                    f\"WARNING: tokenization mismatch: {cur_len} vs. {total_len}.\"\n                    f\" (ignored)\"\n                )\n\n    return dict(\n        input_ids=input_ids,\n        labels=targets,\n    )\n\n\ndef preprocess_mpt(\n    sources,\n    tokenizer: transformers.PreTrainedTokenizer,\n) -> Dict:\n    conv = conversation_lib.default_conversation.copy()\n    roles = {\"human\": conv.roles[0], \"gpt\": conv.roles[1]}\n\n    # Apply prompt templates\n    conversations = []\n    for i, source in enumerate(sources):\n        if roles[source[0][\"from\"]] != conv.roles[0]:\n            # Skip the first one if it is not from human\n            source = source[1:]\n\n        conv.messages = []\n        for j, sentence in enumerate(source):\n            role = roles[sentence[\"from\"]]\n            assert role == conv.roles[j % 2], f\"{i}\"\n            conv.append_message(role, sentence[\"value\"])\n        conversations.append(conv.get_prompt())\n\n    # Tokenize conversations\n    input_ids = torch.stack([tokenizer_image_token(prompt, tokenizer, return_tensors='pt') for prompt in conversations], dim=0)\n    targets = input_ids.clone()\n    assert conv.sep_style == conversation_lib.SeparatorStyle.MPT\n\n    # Mask targets\n    sep = conv.sep + conv.roles[1]\n    for conversation, target in zip(conversations, targets):\n        total_len = int(target.ne(tokenizer.pad_token_id).sum())\n\n        rounds = conversation.split(conv.sep)\n        re_rounds = [conv.sep.join(rounds[:3])] # system + user + gpt\n        for conv_idx in range(3, len(rounds), 2):\n            re_rounds.append(conv.sep.join(rounds[conv_idx:conv_idx+2]))    # user + gpt\n        cur_len = 0\n        target[:cur_len] = IGNORE_INDEX\n        for i, rou in enumerate(re_rounds):\n            if rou == \"\":\n                break\n\n            parts = rou.split(sep)\n            if len(parts) != 2:\n                break\n            parts[0] += sep\n            round_len = len(tokenizer_image_token(rou, tokenizer)) + len(tokenizer_image_token(conv.sep, tokenizer))\n            instruction_len = len(tokenizer_image_token(parts[0], tokenizer))\n            target[cur_len : cur_len + instruction_len] = IGNORE_INDEX\n\n            cur_len += round_len\n        target[cur_len:] = IGNORE_INDEX\n\n        if cur_len < tokenizer.model_max_length:\n            if cur_len != total_len:\n                target[:] = IGNORE_INDEX\n                print(\n                    f\"WARNING: tokenization mismatch: {cur_len} vs. {total_len}.\"\n                    f\" (ignored)\"\n                )\n\n    return dict(\n        input_ids=input_ids,\n        labels=targets,\n    )\n\n\ndef preprocess_plain(\n    sources: Sequence[str],\n    tokenizer: transformers.PreTrainedTokenizer,\n) -> Dict:\n    # add end signal and concatenate together\n    conversations = []\n    for source in sources:\n        assert len(source) == 2\n        assert DEFAULT_IMAGE_TOKEN in source[0]['value']\n        source[0]['value'] = DEFAULT_IMAGE_TOKEN\n        conversation = source[0]['value'] + source[1]['value'] + conversation_lib.default_conversation.sep\n        conversations.append(conversation)\n    # tokenize conversations\n    input_ids = [tokenizer_image_token(prompt, tokenizer, return_tensors='pt') for prompt in conversations]\n    targets = copy.deepcopy(input_ids)\n    for target, source in zip(targets, sources):\n        tokenized_len = len(tokenizer_image_token(source[0]['value'], tokenizer))\n        target[:tokenized_len] = IGNORE_INDEX\n\n    return dict(input_ids=input_ids, labels=targets)\n\n\ndef preprocess(\n    sources: Sequence[str],\n    tokenizer: transformers.PreTrainedTokenizer,\n    has_image: bool = False\n) -> Dict:\n    \"\"\"\n    Given a list of sources, each is a conversation list. This transform:\n    1. Add signal '### ' at the beginning each sentence, with end signal '\\n';\n    2. Concatenate conversations together;\n    3. Tokenize the concatenated conversation;\n    4. Make a deepcopy as the target. Mask human words with IGNORE_INDEX.\n    \"\"\"\n    if conversation_lib.default_conversation.sep_style == conversation_lib.SeparatorStyle.PLAIN:\n        return preprocess_plain(sources, tokenizer)\n    if conversation_lib.default_conversation.sep_style == conversation_lib.SeparatorStyle.LLAMA_2:\n        return preprocess_llama_2(sources, tokenizer, has_image=has_image)\n    if conversation_lib.default_conversation.version.startswith(\"v1\"):\n        return preprocess_v1(sources, tokenizer, has_image=has_image)\n    if conversation_lib.default_conversation.version == \"mpt\":\n        return preprocess_mpt(sources, tokenizer)\n    # add end signal and concatenate together\n    conversations = []\n    for source in sources:\n        header = f\"{conversation_lib.default_conversation.system}\\n\\n\"\n        conversation = _add_speaker_and_signal(header, source)\n        conversations.append(conversation)\n    # tokenize conversations\n    def get_tokenize_len(prompts):\n        return [len(tokenizer_image_token(prompt, tokenizer)) for prompt in prompts]\n\n    if has_image:\n        input_ids = [tokenizer_image_token(prompt, tokenizer, return_tensors='pt') for prompt in conversations]\n    else:\n        conversations_tokenized = _tokenize_fn(conversations, tokenizer)\n        input_ids = conversations_tokenized[\"input_ids\"]\n\n    targets = copy.deepcopy(input_ids)\n    for target, source in zip(targets, sources):\n        if has_image:\n            tokenized_lens = get_tokenize_len([header] + [s[\"value\"] for s in source])\n        else:\n            tokenized_lens = _tokenize_fn([header] + [s[\"value\"] for s in source], tokenizer)[\"input_ids_lens\"]\n        speakers = [sentence[\"from\"] for sentence in source]\n        _mask_targets(target, tokenized_lens, speakers)\n\n    return dict(input_ids=input_ids, labels=targets)\n\n\nclass LazySupervisedDataset(Dataset):\n    \"\"\"Dataset for supervised fine-tuning.\"\"\"\n\n    def __init__(self, tokenizer: transformers.PreTrainedTokenizer,\n                 data_args: DataArguments):\n        super(LazySupervisedDataset, self).__init__()\n\n        dataset_list = DataConfig[str(data_args.dataset_use)]\n        print(dataset_list)\n\n        self.max_length = MAX_IMAGE_LENGTH\n        list_data_dict = []\n        self.folder_dict = {}\n        for i in dataset_list:\n            list_data_dict += json.load(open(i[\"chat_path\"], \"r\"))\n\n            image_folder = [folder for folder in i if folder is not \"chat_path\"]\n\n            for folder in image_folder:\n                if folder not in self.folder_dict:\n                    self.folder_dict[folder] = i[folder]\n\n        random.shuffle(list_data_dict)\n\n        rank0_print(\"Formatting inputs...Skip in lazy mode\")\n        self.tokenizer = tokenizer\n        self.list_data_dict = list_data_dict\n        self.data_args = data_args\n\n    def __len__(self):\n        return len(self.list_data_dict)\n\n    def __getitem__(self, i) -> Dict[str, torch.Tensor]:\n        sources = self.list_data_dict[i]\n        if isinstance(i, int):\n            sources = [sources]\n        assert len(sources) == 1, \"Don't know why it is wrapped to a list\"  # FIXME\n        if 'image' in sources[0]:\n            image_file = self.list_data_dict[i]['image']\n\n            file = image_file[0] if type(image_file) is list else image_file\n\n            if \"\\\\\" in file:\n                image_folder = self.folder_dict['ScienceQA']\n            elif \"CGD\" in file:\n                image_folder = self.folder_dict['CDG']\n            elif \"DC\" in file:\n                image_folder = self.folder_dict['DC']\n            elif \"LA\" in file:\n                image_folder = self.folder_dict['LA']\n            elif \"SD\" in file:\n                image_folder = self.folder_dict['SD']\n            elif \"SN\" in file:\n                image_folder = self.folder_dict['SN']\n            elif \"TVC\" in file:\n                image_folder = self.folder_dict['TVC']\n            elif \"VST\" in file:\n                image_folder = self.folder_dict['VST']\n            elif \"GCC\" in file:\n                image_folder = self.folder_dict['CC3M']\n            elif \"COCO_train2014\" in file:\n                image_folder = self.folder_dict['COCO2014']\n            else:\n                image_folder = self.folder_dict['COCO2017']\n\n            processor = self.data_args.image_processor\n\n            if type(image_file) is list:\n                image = [Image.open(os.path.join(image_folder, file.replace(\"\\\\\", \"/\"))).convert('RGB') for file in image_file]\n                if self.data_args.image_aspect_ratio == 'pad':\n                    def expand2square(pil_img, background_color):\n                        width, height = pil_img.size\n                        if width == height:\n                            return pil_img\n                        elif width > height:\n                            result = Image.new(pil_img.mode, (width, width), background_color)\n                            result.paste(pil_img, (0, (width - height) // 2))\n                            return result\n                        else:\n                            result = Image.new(pil_img.mode, (height, height), background_color)\n                            result.paste(pil_img, ((height - width) // 2, 0))\n                            return result\n\n                    image = [expand2square(i, tuple(int(x * 255) for x in processor.image_mean)) for i in image]\n                    image = [processor.preprocess(i, return_tensors='pt')['pixel_values'][0] for i in image]\n                else:\n                    image = [processor.preprocess(i, return_tensors='pt')['pixel_values'][0] for i in image]\n            else:\n                image = Image.open(os.path.join(image_folder, image_file.replace(\"\\\\\", \"/\"))).convert('RGB')\n                if self.data_args.image_aspect_ratio == 'pad':\n                    def expand2square(pil_img, background_color):\n                        width, height = pil_img.size\n                        if width == height:\n                            return pil_img\n                        elif width > height:\n                            result = Image.new(pil_img.mode, (width, width), background_color)\n                            result.paste(pil_img, (0, (width - height) // 2))\n                            return result\n                        else:\n                            result = Image.new(pil_img.mode, (height, height), background_color)\n                            result.paste(pil_img, ((height - width) // 2, 0))\n                            return result\n                    image = expand2square(image, tuple(int(x*255) for x in processor.image_mean))\n                    image = processor.preprocess(image, return_tensors='pt')['pixel_values'][0]\n                else:\n                    image = processor.preprocess(image, return_tensors='pt')['pixel_values'][0]\n\n            sources = preprocess_multimodal(\n                copy.deepcopy([e[\"conversations\"] for e in sources]),\n                self.data_args)\n\n            data_dict = preprocess(\n                sources,\n                self.tokenizer,\n                has_image=True)\n\n        elif \"video\" in sources[0]:\n            video_file = self.list_data_dict[i]['video']\n            video_folder = self.folder_dict['VIDEO']\n            processor = self.data_args.image_processor\n            image, _ = _get_rawvideo_dec(os.path.join(video_folder, video_file), processor, max_frames=MAX_IMAGE_LENGTH)\n            sources = preprocess_multimodal(\n                copy.deepcopy([e[\"conversations\"] for e in sources]),\n                self.data_args)\n\n            data_dict = preprocess(\n                sources,\n                self.tokenizer,\n                has_image=True)\n\n        else:\n            sources = copy.deepcopy([e[\"conversations\"] for e in sources])\n\n            data_dict = preprocess(\n                sources,\n                self.tokenizer,\n                has_image=False)\n\n        if isinstance(i, int):\n            data_dict = dict(input_ids=data_dict[\"input_ids\"][0],\n                             labels=data_dict[\"labels\"][0])\n\n        # image exist in the data\n        if 'image' in self.list_data_dict[i] or 'video' in self.list_data_dict[i]:\n            data_dict['image'] = image\n        elif self.data_args.is_multimodal:\n            # image does not exist in the data, but the model is multimodal\n            crop_size = self.data_args.image_processor.crop_size\n            data_dict['image'] = torch.zeros(3, crop_size['height'], crop_size['width'])\n        return data_dict\n\n\n@dataclass\nclass DataCollatorForSupervisedDataset(object):\n    \"\"\"Collate examples for supervised fine-tuning.\"\"\"\n\n    tokenizer: transformers.PreTrainedTokenizer\n\n    def __call__(self, instances: Sequence[Dict]) -> Dict[str, torch.Tensor]:\n        input_ids, labels = tuple([instance[key] for instance in instances]\n                                  for key in (\"input_ids\", \"labels\"))\n        input_ids = torch.nn.utils.rnn.pad_sequence(\n            input_ids,\n            batch_first=True,\n            padding_value=self.tokenizer.pad_token_id)\n        labels = torch.nn.utils.rnn.pad_sequence(labels,\n                                                 batch_first=True,\n                                                 padding_value=IGNORE_INDEX)\n        input_ids = input_ids[:, :self.tokenizer.model_max_length]\n        labels = labels[:, :self.tokenizer.model_max_length]\n        batch = dict(\n            input_ids=input_ids,\n            labels=labels,\n            attention_mask=input_ids.ne(self.tokenizer.pad_token_id),\n        )\n\n        if 'image' in instances[0]:\n            images = [instance['image'] for instance in instances]\n\n            new_images = []\n            for image in images:\n                if type(image) is list:\n                    for i in image:\n                        new_images.append(i)\n                else:\n                    new_images.append(image)\n            images = new_images\n\n            if all(x is not None and x.shape == images[0].shape for x in images):\n                batch['images'] = torch.stack(images)\n            else:\n                batch['images'] = images\n\n        return batch\n\n\ndef make_supervised_data_module(tokenizer: transformers.PreTrainedTokenizer,\n                                data_args) -> Dict:\n    \"\"\"Make dataset and collator for supervised fine-tuning.\"\"\"\n    train_dataset = LazySupervisedDataset(tokenizer=tokenizer, data_args=data_args)\n    data_collator = DataCollatorForSupervisedDataset(tokenizer=tokenizer)\n    return dict(train_dataset=train_dataset,\n                eval_dataset=None,\n                data_collator=data_collator)\n\n\ndef train():\n    global local_rank\n\n    parser = transformers.HfArgumentParser(\n        (ModelArguments, DataArguments, TrainingArguments))\n    model_args, data_args, training_args = parser.parse_args_into_dataclasses()\n    local_rank = training_args.local_rank\n    compute_dtype = (torch.float16 if training_args.fp16 else (torch.bfloat16 if training_args.bf16 else torch.float32))\n\n    random.seed(training_args.seed)\n    os.environ['PYTHONHASHSEED'] = str(training_args.seed)\n    np.random.seed(training_args.seed)\n    torch.manual_seed(training_args.seed)\n    torch.cuda.manual_seed(training_args.seed)\n    torch.cuda.manual_seed_all(training_args.seed)  # if you are using multi-GPU.\n    torch.backends.cudnn.benchmark = False\n    torch.backends.cudnn.deterministic = True\n\n    bnb_model_from_pretrained_args = {}\n    if training_args.bits in [4, 8]:\n        from transformers import BitsAndBytesConfig\n        bnb_model_from_pretrained_args.update(dict(\n            device_map={\"\": training_args.device},\n            load_in_4bit=training_args.bits == 4,\n            load_in_8bit=training_args.bits == 8,\n            quantization_config=BitsAndBytesConfig(\n                load_in_4bit=training_args.bits == 4,\n                load_in_8bit=training_args.bits == 8,\n                llm_int8_threshold=6.0,\n                llm_int8_has_fp16_weight=False,\n                bnb_4bit_compute_dtype=compute_dtype,\n                bnb_4bit_use_double_quant=training_args.double_quant,\n                bnb_4bit_quant_type=training_args.quant_type # {'fp4', 'nf4'}\n            )\n        ))\n\n    if model_args.vision_tower is not None:\n        model = ChatUniViLlamaForCausalLM.from_pretrained(\n            model_args.model_name_or_path,\n            cache_dir=training_args.cache_dir,\n            **bnb_model_from_pretrained_args\n        )\n    else:\n        model = transformers.LlamaForCausalLM.from_pretrained(\n            model_args.model_name_or_path,\n            cache_dir=training_args.cache_dir,\n            **bnb_model_from_pretrained_args\n        )\n    model.config.use_cache = False\n\n    if model_args.freeze_backbone:\n        model.model.requires_grad_(False)\n\n    if training_args.bits in [4, 8]:\n        from peft import prepare_model_for_kbit_training\n        model.config.torch_dtype=(torch.float32 if training_args.fp16 else (torch.bfloat16 if training_args.bf16 else torch.float32))\n        model = prepare_model_for_kbit_training(model, use_gradient_checkpointing=training_args.gradient_checkpointing)\n\n    if training_args.gradient_checkpointing:\n        if hasattr(model, \"enable_input_require_grads\"):\n            model.enable_input_require_grads()\n        else:\n            def make_inputs_require_grad(module, input, output):\n                output.requires_grad_(True)\n            model.get_input_embeddings().register_forward_hook(make_inputs_require_grad)\n\n    if training_args.lora_enable:\n        from peft import LoraConfig, get_peft_model\n        lora_config = LoraConfig(\n            r=training_args.lora_r,\n            lora_alpha=training_args.lora_alpha,\n            target_modules=find_all_linear_names(model),\n            lora_dropout=training_args.lora_dropout,\n            bias=training_args.lora_bias,\n            task_type=\"CAUSAL_LM\",\n        )\n        if training_args.bits == 16:\n            if training_args.bf16:\n                model.to(torch.bfloat16)\n            if training_args.fp16:\n                model.to(torch.float16)\n        rank0_print(\"Adding LoRA adapters...\")\n        model = get_peft_model(model, lora_config)\n\n    if 'mpt' in model_args.model_name_or_path:\n        tokenizer = transformers.AutoTokenizer.from_pretrained(\n            model_args.model_name_or_path,\n            cache_dir=training_args.cache_dir,\n            model_max_length=training_args.model_max_length,\n            padding_side=\"right\"\n        )\n    else:\n        tokenizer = transformers.AutoTokenizer.from_pretrained(\n            model_args.model_name_or_path,\n            cache_dir=training_args.cache_dir,\n            model_max_length=training_args.model_max_length,\n            padding_side=\"right\",\n            use_fast=False,\n        )\n\n    if model_args.version == \"v0\":\n        if tokenizer.pad_token is None:\n            smart_tokenizer_and_embedding_resize(\n                special_tokens_dict=dict(pad_token=\"[PAD]\"),\n                tokenizer=tokenizer,\n                model=model,\n            )\n        if \"llama\" in model_args.model_name_or_path:\n            tokenizer.add_special_tokens({\n                \"eos_token\": \"</s>\",\n                \"bos_token\": \"<s>\",\n                \"unk_token\": \"<unk>\",\n            })\n    elif model_args.version == \"v0.5\":\n        tokenizer.pad_token = tokenizer.unk_token\n    else:\n        if model_args.version in conversation_lib.conv_templates:\n            conversation_lib.default_conversation = conversation_lib.conv_templates[model_args.version]\n        else:\n            conversation_lib.default_conversation = conversation_lib.conv_templates[\"vicuna_v1\"]\n\n    if model_args.vision_tower is not None:\n        model.get_model().initialize_vision_modules(\n            model_args=model_args,\n            fsdp=training_args.fsdp\n        )\n\n        vision_tower = model.get_vision_tower()\n        vision_tower.to(dtype=torch.float16, device=training_args.device)\n\n        data_args.image_processor = vision_tower.image_processor\n        data_args.is_multimodal = True\n\n        model.config.image_aspect_ratio = data_args.image_aspect_ratio\n        model.config.image_grid_pinpoints = data_args.image_grid_pinpoints\n\n        model.config.tune_mm_mlp_adapter = training_args.tune_mm_mlp_adapter = model_args.tune_mm_mlp_adapter\n        if model_args.tune_mm_mlp_adapter:\n            model.requires_grad_(False)\n            for p in model.get_model().mm_projector.parameters():\n                p.requires_grad = True\n\n        model.config.freeze_mm_mlp_adapter = training_args.freeze_mm_mlp_adapter\n        if training_args.freeze_mm_mlp_adapter:\n            for p in model.get_model().mm_projector.parameters():\n                p.requires_grad = False\n\n        if training_args.bits in [4, 8]:\n            model.get_model().mm_projector.to(dtype=compute_dtype, device=training_args.device)\n\n        model.config.mm_use_im_start_end = data_args.mm_use_im_start_end = model_args.mm_use_im_start_end\n        training_args.use_im_start_end = model_args.mm_use_im_start_end\n\n        model.config.mm_use_box_start_end = data_args.mm_use_box_start_end = model_args.mm_use_box_start_end\n        training_args.use_im_start_end = model_args.mm_use_box_start_end\n\n        model.config.mm_use_im_patch_token = model_args.mm_use_im_patch_token\n        model.initialize_vision_tokenizer(model_args, tokenizer=tokenizer)\n\n        model_config = ModelConfig[str(model_args.model_use)]\n        model.config.aarchitectures = \"LlavaLlamaForCausalLM\"\n\n        model.config.config = model_config\n        model_args.use_cluster = model_config[\"use_cluster\"]\n        model_args.spatial_cluster_rate0 = model_config[\"spatial_cluster_rate0\"]\n        model_args.spatial_cluster_rate1 = model_config[\"spatial_cluster_rate1\"]\n        model_args.spatial_cluster_rate2 = model_config[\"spatial_cluster_rate2\"]\n        model_args.temporal_cluster_rate = model_config.get(\"temporal_cluster_rate\", 1/16)\n        model.get_model().initialize_cluster_modules(model_args)\n\n        if model_args.use_cluster:\n            for n, p in model.named_parameters():\n                if \"block\" in n or \"ctm\" in n:\n                    p.requires_grad = True\n\n        if model.config.config[\"freeze\"]:\n            for n, p in model.named_parameters():\n                if \"block\" not in n and \"ctm\" not in n:\n                    p.requires_grad = False\n\n            if model.config.config[\"mm_tune\"]:\n                for p in model.get_model().mm_projector.parameters():\n                    p.requires_grad = True\n\n        model_args.vision_tune = model_config[\"vision_tune\"]\n        for p in model.get_vision_tower().parameters():\n            p.requires_grad = model_args.vision_tune\n\n    params_need_grad = [n for n, p in model.named_parameters() if p.requires_grad]\n    print(\"Parameters require gradients: {}\".format(params_need_grad))\n\n    if training_args.bits in [4, 8]:\n        from peft.tuners.lora import LoraLayer\n        for name, module in model.named_modules():\n            if isinstance(module, LoraLayer):\n                if training_args.bf16:\n                    module = module.to(torch.bfloat16)\n            if 'norm' in name:\n                module = module.to(torch.float32)\n            if 'lm_head' in name or 'embed_tokens' in name:\n                if hasattr(module, 'weight'):\n                    if training_args.bf16 and module.weight.dtype == torch.float32:\n                        module = module.to(torch.bfloat16)\n\n    data_module = make_supervised_data_module(tokenizer=tokenizer,\n                                              data_args=data_args)\n\n    trainer = ChatUniViTrainer(model=model,\n                    tokenizer=tokenizer,\n                    args=training_args,\n                    **data_module)\n\n    if list(pathlib.Path(training_args.output_dir).glob(\"checkpoint-*\")):\n        trainer.train(resume_from_checkpoint=True)\n    else:\n        trainer.train()\n\n    model.config.use_cache = True\n\n    if training_args.lora_enable:\n        state_dict = get_peft_state_maybe_zero_3(\n            model.named_parameters(), training_args.lora_bias\n        )\n        non_lora_state_dict = get_peft_state_non_lora_maybe_zero_3(\n            model.named_parameters()\n        )\n        if training_args.local_rank == 0 or training_args.local_rank == -1:\n            model.config.save_pretrained(training_args.output_dir)\n            model.save_pretrained(training_args.output_dir, state_dict=state_dict)\n            torch.save(non_lora_state_dict, os.path.join(training_args.output_dir, 'non_lora_trainables.bin'))\n    else:\n        safe_save_model_for_hf_trainer(trainer=trainer,\n                                       output_dir=training_args.output_dir)\n\n\nif __name__ == \"__main__\":\n    train()\n"
  },
  {
    "path": "model/univi/train/train_mem.py",
    "content": "# Adopted from https://github.com/lm-sys/FastChat. Below is the original copyright:\n# Adopted from tatsu-lab@stanford_alpaca. Below is the original copyright:\n# Make it more memory efficient by monkey patching the LLaMA model with FlashAttn.\n\n# Need to call this before importing transformers.\nfrom ChatUniVi.train.llama_flash_attn_monkey_patch import replace_llama_attn_with_flash_attn\n\nreplace_llama_attn_with_flash_attn()\n\nfrom ChatUniVi.train.train import train\n\nif __name__ == \"__main__\":\n    train()\n"
  },
  {
    "path": "model/univi/train/trainer.py",
    "content": "import os\nimport torch\nfrom transformers import Trainer\nfrom typing import Optional\n\n\ndef maybe_zero_3(param, ignore_status=False, name=None):\n    from deepspeed import zero\n    from deepspeed.runtime.zero.partition_parameters import ZeroParamStatus\n    if hasattr(param, \"ds_id\"):\n        if param.ds_status == ZeroParamStatus.NOT_AVAILABLE:\n            if not ignore_status:\n                print(name, 'no ignore status')\n        with zero.GatheredParameters([param]):\n            param = param.data.detach().cpu().clone()\n    else:\n        param = param.detach().cpu().clone()\n    return param\n\n\ndef get_mm_adapter_state_maybe_zero_3(named_params, keys_to_match):\n    to_return = {k: t for k, t in named_params if any(key_match in k for key_match in keys_to_match)}\n    to_return = {k: maybe_zero_3(v, ignore_status=True, name=k).cpu() for k, v in to_return.items()}\n    return to_return\n\n\nclass ChatUniViTrainer(Trainer):\n    def _save_checkpoint(self, model, trial, metrics=None):\n        if 0 and getattr(self.args, 'tune_mm_mlp_adapter', False):\n            from transformers.trainer_utils import PREFIX_CHECKPOINT_DIR\n            checkpoint_folder = f\"{PREFIX_CHECKPOINT_DIR}-{self.state.global_step}\"\n\n            run_dir = self._get_output_dir(trial=trial)\n            output_dir = os.path.join(run_dir, checkpoint_folder)\n\n            # Only save Adapter\n            keys_to_match = ['mm_projector', \"ctm\", \"block\"]\n            if getattr(self.args, \"use_im_start_end\", False):\n                keys_to_match.extend(['embed_tokens', 'embed_in'])\n\n            weight_to_save = get_mm_adapter_state_maybe_zero_3(self.model.named_parameters(), keys_to_match)\n\n            if self.args.local_rank == 0 or self.args.local_rank == -1:\n                self.model.config.save_pretrained(output_dir)\n                torch.save(weight_to_save, os.path.join(output_dir, f'mm_projector.bin'))\n        else:\n            super(ChatUniViTrainer, self)._save_checkpoint(model, trial, metrics)\n\n    def _save(self, output_dir: Optional[str] = None, state_dict=None):\n        if 0 and getattr(self.args, 'tune_mm_mlp_adapter', False):\n            pass\n        else:\n            super(ChatUniViTrainer, self)._save(output_dir, state_dict)\n"
  },
  {
    "path": "model/univi/utils.py",
    "content": "import datetime\nimport logging\nimport logging.handlers\nimport os\nimport sys\n\nimport requests\n\nfrom ChatUniVi.constants import LOGDIR\n\nserver_error_msg = \"**NETWORK ERROR DUE TO HIGH TRAFFIC. PLEASE REGENERATE OR REFRESH THIS PAGE.**\"\nmoderation_msg = \"YOUR INPUT VIOLATES OUR CONTENT MODERATION GUIDELINES. PLEASE TRY AGAIN.\"\n\nhandler = None\n\n\ndef build_logger(logger_name, logger_filename):\n    global handler\n\n    formatter = logging.Formatter(\n        fmt=\"%(asctime)s | %(levelname)s | %(name)s | %(message)s\",\n        datefmt=\"%Y-%m-%d %H:%M:%S\",\n    )\n\n    # Set the format of root handlers\n    if not logging.getLogger().handlers:\n        logging.basicConfig(level=logging.INFO)\n    logging.getLogger().handlers[0].setFormatter(formatter)\n\n    # Redirect stdout and stderr to loggers\n    stdout_logger = logging.getLogger(\"stdout\")\n    stdout_logger.setLevel(logging.INFO)\n    sl = StreamToLogger(stdout_logger, logging.INFO)\n    sys.stdout = sl\n\n    stderr_logger = logging.getLogger(\"stderr\")\n    stderr_logger.setLevel(logging.ERROR)\n    sl = StreamToLogger(stderr_logger, logging.ERROR)\n    sys.stderr = sl\n\n    # Get logger\n    logger = logging.getLogger(logger_name)\n    logger.setLevel(logging.INFO)\n\n    # Add a file handler for all loggers\n    if handler is None:\n        os.makedirs(LOGDIR, exist_ok=True)\n        filename = os.path.join(LOGDIR, logger_filename)\n        handler = logging.handlers.TimedRotatingFileHandler(\n            filename, when='D', utc=True)\n        handler.setFormatter(formatter)\n\n        for name, item in logging.root.manager.loggerDict.items():\n            if isinstance(item, logging.Logger):\n                item.addHandler(handler)\n\n    return logger\n\n\nclass StreamToLogger(object):\n    \"\"\"\n    Fake file-like stream object that redirects writes to a logger instance.\n    \"\"\"\n    def __init__(self, logger, log_level=logging.INFO):\n        self.terminal = sys.stdout\n        self.logger = logger\n        self.log_level = log_level\n        self.linebuf = ''\n\n    def __getattr__(self, attr):\n        return getattr(self.terminal, attr)\n\n    def write(self, buf):\n        temp_linebuf = self.linebuf + buf\n        self.linebuf = ''\n        for line in temp_linebuf.splitlines(True):\n            # From the io.TextIOWrapper docs:\n            #   On output, if newline is None, any '\\n' characters written\n            #   are translated to the system default line separator.\n            # By default sys.stdout.write() expects '\\n' newlines and then\n            # translates them so this is still cross platform.\n            if line[-1] == '\\n':\n                self.logger.log(self.log_level, line.rstrip())\n            else:\n                self.linebuf += line\n\n    def flush(self):\n        if self.linebuf != '':\n            self.logger.log(self.log_level, self.linebuf.rstrip())\n        self.linebuf = ''\n\n\ndef disable_torch_init():\n    \"\"\"\n    Disable the redundant torch default initialization to accelerate model creation.\n    \"\"\"\n    import torch\n    setattr(torch.nn.Linear, \"reset_parameters\", lambda self: None)\n    setattr(torch.nn.LayerNorm, \"reset_parameters\", lambda self: None)\n\n\ndef violates_moderation(text):\n    \"\"\"\n    Check whether the text violates OpenAI moderation API.\n    \"\"\"\n    url = \"https://api.openai.com/v1/moderations\"\n    headers = {\"Content-Type\": \"application/json\",\n               \"Authorization\": \"Bearer \" + os.environ[\"OPENAI_API_KEY\"]}\n    text = text.replace(\"\\n\", \"\")\n    data = \"{\" + '\"input\": ' + f'\"{text}\"' + \"}\"\n    data = data.encode(\"utf-8\")\n    try:\n        ret = requests.post(url, headers=headers, data=data, timeout=5)\n        flagged = ret.json()[\"results\"][0][\"flagged\"]\n    except requests.exceptions.RequestException as e:\n        flagged = False\n    except KeyError as e:\n        flagged = False\n\n    return flagged\n\n\ndef pretty_print_semaphore(semaphore):\n    if semaphore is None:\n        return \"None\"\n    return f\"Semaphore(value={semaphore._value}, locked={semaphore.locked()})\"\n"
  },
  {
    "path": "requirements.txt",
    "content": "--extra-index-url https://download.pytorch.org/whl/cu117\ntorch==1.13.1\ntorchvision==0.14.1\npackaging\nsentencepiece\npeft==0.4.0\neinops==0.4.1\nfastapi==0.100.1\ngradio==3.39.0\nmarkdown2==2.4.10\nnumpy==1.24.2\nopenai==0.27.8\nopencv_python==4.8.0.74\nPillow==9.4.0\npycocotools==2.0.6\nray==2.6.1\nRequests==2.31.0\nshortuuid==1.0.11\ntqdm==4.64.1\ntransformers==4.31.0\nuvicorn==0.23.2\nscipy==1.11.2\nbitsandbytes==0.41.1\nscikit-image\ntimm\ndecord"
  },
  {
    "path": "scripts/train_13b.sh",
    "content": "PROJECT_ROOT=$(dirname \"$(dirname \"$(readlink -f \"$0\")\")\")\ncd $PROJECT_ROOT\n\nCUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 deepspeed --master_port=24999 train_ds.py \\\n   --version=\"/mnt/nlp-ali/usr/yancilin/clyan-data-2/video-llm/Chat-UniVi/Chat-UniVi-13B\" \\\n   --dataset_dir='/mnt/nlp-ali/usr/yancilin/LISA/datasets' \\\n   --vision_pretrained=\"/mnt/nlp-ali/usr/yancilin/.cache/sam/sam_vit_h_4b8939.pth\" \\\n   --log_base_dir=\"/mnt/nlp-ali/usr/yancilin/clyan-data/exps/rgvos_ablation\" \\\n   --exp_name=\"VISA-13B\" \\\n   --balance_sample \\\n   --dataset=\"sem_seg||refer_seg||vqa||reason_seg||chatunivi||rvos\" \\\n   --sample_rates=\"9,3,3,1,4,12\" \\\n   --univi_sample_frame_range=\"8,12\" \\\n   --rvos_seg_data=\"mevis_train||refytvos_train||davis17_train||revos_train||lvvis_train\" \\\n   --rvos_sample_ratio=\"4000||15000||400||3000||3000\"\n"
  },
  {
    "path": "scripts/train_7b.sh",
    "content": "PROJECT_ROOT=$(dirname \"$(dirname \"$(readlink -f \"$0\")\")\")\ncd $PROJECT_ROOT\n\nCUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 deepspeed --master_port=24999 train_ds.py \\\n   --version=\"/mnt/nlp-ali/usr/yancilin/clyan-data-2/video-llm/Chat-UniVi/Chat-UniVi\" \\\n   --vision_pretrained=\"/mnt/nlp-ali/usr/yancilin/.cache/sam/sam_vit_h_4b8939.pth\" \\\n   --log_base_dir=\"/mnt/public03/dataset/ovis/rgvos\" \\\n   --exp_name=\"VISA-7B\" \\\n   --balance_sample \\\n   --dataset=\"sem_seg||refer_seg||vqa||reason_seg||chatunivi||rvos\" \\\n   --sample_rates=\"9,3,3,1,4,12\" \\\n   --univi_sample_frame_range=\"8,12\" \\\n   --rvos_seg_data=\"mevis_train||refytvos_train||davis17_train||revos_train||lvvis_train\" \\\n   --rvos_sample_ratio=\"4000||15000||400||3000||3000\"\n"
  },
  {
    "path": "scripts/val_7b_video.sh",
    "content": "PROJECT_ROOT=$(dirname \"$(dirname \"$(readlink -f \"$0\")\")\")\ncd $PROJECT_ROOT\n\nEVAL_DATASET=${1:-revos_valid}  # revos_valid, davis17_valid, refytvos_valid, mevis_test\ndeepspeed --master_port=24999 train_ds.py \\\n   --version=\"/mnt/public03/dataset/ovis/rgvos/visa7b/ckpt_model/hf_model\" \\\n   --vision_pretrained=\"/mnt/public02/usr/yancilin/clyan_data/weights/sam/sam_vit_h_4b8939.pth\" \\\n   --log_base_dir=\"/mnt/public03/dataset/ovis/rgvos/visa7b\" \\\n   --exp_name=\"val_7b\" \\\n   --balance_sample \\\n   --dataset=\"reason_seg\" \\\n   --sample_rates=\"13\" \\\n   --val_dataset \"${EVAL_DATASET}\" \\\n   --eval_only \n"
  },
  {
    "path": "tools/eval_davis17.py",
    "content": "###########################################################################\n# Created by: NTU\n# Email: heshuting555@gmail.com\n# Copyright (c) 2023\n###########################################################################\nimport warnings\n\nwarnings.filterwarnings(\"ignore\", category=RuntimeWarning)\nimport os\nimport os.path as osp\nimport time\nimport pickle\nimport argparse\nimport cv2\nimport json\nimport numpy as np\nfrom pycocotools import mask as cocomask\nfrom metrics import db_eval_iou, db_eval_boundary\nimport multiprocessing as mp\n\nNUM_WOEKERS = 128\n\ndef eval_queue(q, rank, out_dict, mevis_pred_path):\n    while not q.empty():\n        # print(q.qsize())\n        vid_name, exp = q.get()\n\n        vid = exp_dict[vid_name]\n\n        exp_name = f'{vid_name}_{exp}'\n\n        if not os.path.exists(f'{mevis_pred_path}/{vid_name}'):\n            print(f'{vid_name} not found')\n            out_dict[exp_name] = [0, 0]\n            continue\n\n        pred_0_path = f'{mevis_pred_path}/{vid_name}/{exp}/00000.png'\n        pred_0 = cv2.imread(pred_0_path, cv2.IMREAD_GRAYSCALE)\n        h, w = pred_0.shape\n        vid_len = len(vid['frames'])\n        gt_masks = np.zeros((vid_len, h, w), dtype=np.uint8)\n        pred_masks = np.zeros((vid_len, h, w), dtype=np.uint8)\n\n        anno_ids = vid['expressions'][exp]['anno_id']\n\n        for frame_idx, frame_name in enumerate(vid['frames']):\n            for anno_id in anno_ids:\n                mask_rle = mask_dict[str(anno_id)][frame_idx]\n                if mask_rle:\n                    gt_masks[frame_idx] += cocomask.decode(mask_rle)\n\n            pred_masks[frame_idx] = cv2.imread(f'{mevis_pred_path}/{vid_name}/{exp}/{frame_name}.png', cv2.IMREAD_GRAYSCALE)\n\n        j = db_eval_iou(gt_masks, pred_masks).mean()\n        f = db_eval_boundary(gt_masks, pred_masks).mean()\n        out_dict[exp_name] = [j, f]\n\ndef get_meta_exp(mevis_exp_path, ):\n    \n    # read expression data\n    with open(str(mevis_exp_path), 'r') as f:\n        subset_expressions_by_video = json.load(f)['videos']\n    videos = sorted(list(subset_expressions_by_video.keys()))\n\n    metas = []\n    anno_count = 0  # serve as anno_id\n    for vid in videos:\n        vid_data   = subset_expressions_by_video[vid]\n        vid_frames = sorted(vid_data['frames'])\n        vid_len    = len(vid_frames)\n\n        exp_id_list = sorted(list(vid_data['expressions'].keys()))\n        for exp_id in exp_id_list:\n            subset_expressions_by_video[vid]['expressions'][exp_id][\"anno_id\"] = [anno_count, ]\n            anno_count += 1\n    \n    return subset_expressions_by_video\n\n\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"mevis_pred_path\", type=str, )\n    parser.add_argument(\"--mevis_exp_path\", type=str, default=\"/mnt/nlp-ali/usr/yancilin/clyan-data/other-datasets/davis17/meta_expressions/valid/meta_expressions.json\")\n    parser.add_argument(\"--mevis_mask_path\", type=str, default=\"/mnt/nlp-ali/usr/yancilin/clyan-data/other-datasets/davis17/valid/mask_dict.pkl\")\n    parser.add_argument(\"--save_name\", type=str, default=\"david17_val.json\")\n    args = parser.parse_args()\n    queue = mp.Queue()\n    exp_dict = get_meta_exp(args.mevis_exp_path)\n    if args.mevis_mask_path.endswith('json'):\n        mask_dict = json.load(open(args.mevis_mask_path))\n    elif args.mevis_mask_path.endswith('pkl'):\n        mask_dict = pickle.load(open(args.mevis_mask_path, 'rb'))\n    else:\n        raise\n\n    shared_exp_dict = mp.Manager().dict(exp_dict)\n    shared_mask_dict = mp.Manager().dict(mask_dict)\n    output_dict = mp.Manager().dict()\n\n    for vid_name in exp_dict:\n        vid = exp_dict[vid_name]\n        for exp in vid['expressions']:\n            queue.put([vid_name, exp])\n\n    start_time = time.time()\n    processes = []\n    for rank in range(NUM_WOEKERS):\n        p = mp.Process(target=eval_queue, args=(queue, rank, output_dict, args.mevis_pred_path))\n        p.start()\n        processes.append(p)\n\n    for p in processes:\n        p.join()\n\n\n    j = [output_dict[x][0] for x in output_dict]\n    f = [output_dict[x][1] for x in output_dict]\n\n    output_path = osp.join(args.mevis_pred_path, '..', args.save_name)\n    results = {\n        'J'  : round(100 * float(np.mean(j)), 2),\n        'F'  : round(100 * float(np.mean(f)), 2),\n        'J&F': round(100 * float((np.mean(j) + np.mean(f)) / 2), 2),\n    }\n    with open(output_path, 'w') as f:\n        json.dump(results, f, indent=4)\n    \n    print(json.dumps(results, indent=4))\n\n    end_time = time.time()\n    total_time = end_time - start_time\n    print(\"time: %.4f s\" %(total_time))\n\n\n    "
  },
  {
    "path": "tools/eval_mevis.py",
    "content": "###########################################################################\n# Created by: NTU\n# Email: heshuting555@gmail.com\n# Copyright (c) 2023\n###########################################################################\nimport warnings\n\nwarnings.filterwarnings(\"ignore\", category=RuntimeWarning)\nimport os\nimport os.path as osp\nimport time\nimport argparse\nimport cv2\nimport json\nimport numpy as np\nfrom pycocotools import mask as cocomask\nfrom metrics import db_eval_iou, db_eval_boundary\nimport multiprocessing as mp\n\nNUM_WOEKERS = 128\n\ndef eval_queue(q, rank, out_dict, mevis_pred_path):\n    while not q.empty():\n        # print(q.qsize())\n        vid_name, exp = q.get()\n\n        vid = exp_dict[vid_name]\n\n        exp_name = f'{vid_name}_{exp}'\n\n        if not os.path.exists(f'{mevis_pred_path}/{vid_name}'):\n            print(f'{vid_name} not found')\n            out_dict[exp_name] = [0, 0]\n            continue\n\n        pred_0_path = f'{mevis_pred_path}/{vid_name}/{exp}/00000.png'\n        pred_0 = cv2.imread(pred_0_path, cv2.IMREAD_GRAYSCALE)\n        h, w = pred_0.shape\n        vid_len = len(vid['frames'])\n        gt_masks = np.zeros((vid_len, h, w), dtype=np.uint8)\n        pred_masks = np.zeros((vid_len, h, w), dtype=np.uint8)\n\n        anno_ids = vid['expressions'][exp]['anno_id']\n\n        for frame_idx, frame_name in enumerate(vid['frames']):\n            for anno_id in anno_ids:\n                mask_rle = mask_dict[str(anno_id)][frame_idx]\n                if mask_rle:\n                    gt_masks[frame_idx] += cocomask.decode(mask_rle)\n\n            pred_masks[frame_idx] = cv2.imread(f'{mevis_pred_path}/{vid_name}/{exp}/{frame_name}.png', cv2.IMREAD_GRAYSCALE)\n\n        j = db_eval_iou(gt_masks, pred_masks).mean()\n        f = db_eval_boundary(gt_masks, pred_masks).mean()\n        out_dict[exp_name] = [j, f]\n\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"mevis_pred_path\", type=str, )\n    parser.add_argument(\"--mevis_exp_path\", type=str, default=\"/mnt/nlp-ali/usr/yancilin/clyan-data/other-datasets/mevis/valid_u/meta_expressions.json\")\n    parser.add_argument(\"--mevis_mask_path\", type=str, default=\"/mnt/nlp-ali/usr/yancilin/clyan-data/other-datasets/mevis/valid_u/mask_dict.json\")\n    parser.add_argument(\"--save_name\", type=str, default=\"mevis_valu.json\")\n    args = parser.parse_args()\n    queue = mp.Queue()\n    exp_dict = json.load(open(args.mevis_exp_path))['videos']\n    mask_dict = json.load(open(args.mevis_mask_path))\n\n    shared_exp_dict = mp.Manager().dict(exp_dict)\n    shared_mask_dict = mp.Manager().dict(mask_dict)\n    output_dict = mp.Manager().dict()\n\n    for vid_name in exp_dict:\n        vid = exp_dict[vid_name]\n        for exp in vid['expressions']:\n            queue.put([vid_name, exp])\n\n    start_time = time.time()\n    if NUM_WOEKERS > 1:\n        processes = []\n        for rank in range(NUM_WOEKERS):\n            p = mp.Process(target=eval_queue, args=(queue, rank, output_dict, args.mevis_pred_path))\n            p.start()\n            processes.append(p)\n\n        for p in processes:\n            p.join()\n    else:\n        eval_queue(queue, 0, output_dict, args.mevis_pred_path)\n\n\n    j = [output_dict[x][0] for x in output_dict]\n    f = [output_dict[x][1] for x in output_dict]\n\n    output_path = osp.join(args.mevis_pred_path, '..', args.save_name)\n    results = {\n        'J'  : round(100 * float(np.mean(j)), 2),\n        'F'  : round(100 * float(np.mean(f)), 2),\n        'J&F': round(100 * float((np.mean(j) + np.mean(f)) / 2), 2),\n    }\n    with open(output_path, 'w') as f:\n        json.dump(results, f, indent=4)\n    \n    print(json.dumps(results, indent=4))\n\n    end_time = time.time()\n    total_time = end_time - start_time\n    print(\"time: %.4f s\" %(total_time))\n\n    # import pdb; pdb.set_trace()\n    # output_dict = dict(output_dict)\n    # with open('lisa.json', 'w') as f:\n    #     json.dump(output_dict, f)\n"
  },
  {
    "path": "tools/eval_revos.py",
    "content": "###########################################################################\n# Created by: BUAA\n# Email: clyanhh@gmail.com\n# Copyright (c) 2024\n###########################################################################\nimport warnings\n\nwarnings.filterwarnings(\"ignore\", category=RuntimeWarning)\nimport os\nimport os.path as osp\nimport time\nimport argparse\nimport cv2\nimport json\nimport traceback\nimport numpy as np\nimport multiprocessing as mp\nimport pandas as pd\nfrom termcolor import colored\nfrom tqdm import tqdm\nfrom pycocotools import mask as cocomask\nfrom metrics import db_eval_iou, db_eval_boundary, get_r2vos_accuracy, get_r2vos_robustness\n\nNUM_WOEKERS = 128\n\ndef eval_queue(q, rank, out_dict, visa_pred_path):\n    while not q.empty():\n        vid_name, exp = q.get()\n        vid = exp_dict[vid_name]\n        exp_name = f'{vid_name}_{exp}'\n\n        try:\n\n            if not os.path.exists(f'{visa_pred_path}/{vid_name}'):\n                print(f'{vid_name} not found')\n                out_dict[exp_name] = [0, 0, 0, 0]\n                continue\n\n            pred_0_path = f'{visa_pred_path}/{vid_name}/{exp}/{vid[\"frames\"][0]}.png'\n            pred_0 = cv2.imread(pred_0_path, cv2.IMREAD_GRAYSCALE)\n            h, w = pred_0.shape\n            vid_len = len(vid['frames'])\n            gt_masks = np.zeros((vid_len, h, w), dtype=np.uint8)\n            pred_masks = np.zeros((vid_len, h, w), dtype=np.uint8)\n            foreground_masks = np.zeros((vid_len, h, w), dtype=np.uint8)\n\n            anno_ids = vid['expressions'][exp]['anno_id']\n\n            for frame_idx, frame_name in enumerate(vid['frames']):\n                # all instances in the same frame\n                for anno_id in anno_ids:\n                    mask_rle = mask_dict[str(anno_id)][frame_idx]\n                    if mask_rle:\n                        gt_masks[frame_idx] += cocomask.decode(mask_rle)\n\n                # foreground mask\n                mask_fore_rle = mask_dict_foreground[vid_name][\"masks_rle\"][frame_idx]\n                mask_fore = cocomask.decode(mask_fore_rle)\n                mask_fore = mask_fore.sum(axis=2).astype(np.uint8) if mask_fore.ndim == 3 else mask_fore.astype(np.uint8)\n                foreground_masks[frame_idx] = mask_fore\n\n                pred_masks[frame_idx] = cv2.imread(f'{visa_pred_path}/{vid_name}/{exp}/{frame_name}.png', cv2.IMREAD_GRAYSCALE)\n\n            j = db_eval_iou(gt_masks, pred_masks).mean()\n            f = db_eval_boundary(gt_masks, pred_masks).mean()\n            a = get_r2vos_accuracy(gt_masks, pred_masks).mean()\n            r = get_r2vos_robustness(gt_masks, pred_masks, foreground_masks).mean()\n\n            out_dict[exp_name] = [j, f, a, r]\n        except:\n            print(colored(f'error: {exp_name}, {traceback.format_exc()}', 'red'))\n            out_dict[exp_name] = [0.0, 0.0, 0.0, 0.0, ]\n\n\"\"\"\ncd tools\npython eval_revos.py \\\n    /mnt/public03/dataset/ovis/rgvos/visa7b/val_7b/revos_valid/revos_valid_XMem_final/Annotations \\\n    --visa_exp_path /mnt/public02/usr/yancilin/clyan_data/other-datasets/ReVOS/meta_expressions_valid_.json \\\n    --visa_mask_path /mnt/public02/usr/yancilin/clyan_data/other-datasets/ReVOS/mask_dict.json \\\n    --visa_foreground_mask_path /mnt/public02/usr/yancilin/clyan_data/other-datasets/ReVOS/mask_dict_foreground.json\n\"\"\"\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"visa_pred_path\", type=str, )\n    parser.add_argument(\"--visa_exp_path\", type=str, default=\"/mnt/nlp-ali/usr/yancilin/clyan-data/other-datasets/ReVOS/meta_expressions_valid_.json\")\n    parser.add_argument(\"--visa_mask_path\", type=str, default=\"/mnt/nlp-ali/usr/yancilin/clyan-data/other-datasets/ReVOS/mask_dict.json\")\n    parser.add_argument(\"--visa_foreground_mask_path\", type=str, default=\"/mnt/nlp-ali/usr/yancilin/clyan-data/other-datasets/ReVOS/mask_dict_foreground.json\")\n    parser.add_argument(\"--save_json_name\", type=str, default=\"revos_valid.json\")\n    parser.add_argument(\"--save_csv_name\", type=str, default=\"revos_valid.csv\")\n    args = parser.parse_args()\n    queue                = mp.Queue()\n    exp_dict             = json.load(open(args.visa_exp_path))['videos']\n    mask_dict            = json.load(open(args.visa_mask_path))\n    mask_dict_foreground = json.load(open(args.visa_foreground_mask_path, 'r'))\n\n    shared_exp_dict             = mp.Manager().dict(exp_dict)\n    shared_mask_dict            = mp.Manager().dict(mask_dict)\n    shared_mask_dict_foreground = mp.Manager().dict(mask_dict_foreground)\n    output_dict                 = mp.Manager().dict()\n\n    for vid_name in exp_dict:\n        vid = exp_dict[vid_name]\n        for exp in vid['expressions']:\n            queue.put([vid_name, exp])\n\n    start_time = time.time()\n    if NUM_WOEKERS > 1:\n        processes = []\n        for rank in range(NUM_WOEKERS):\n            p = mp.Process(target=eval_queue, args=(queue, rank, output_dict, args.visa_pred_path))\n            p.start()\n            processes.append(p)\n\n        for p in processes:\n            p.join()\n    else:\n        eval_queue(queue, 0, output_dict, args.visa_pred_path)\n\n    # save average results\n    output_json_path = osp.join(args.visa_pred_path, '..', args.save_json_name)\n    output_csv_path  = osp.join(args.visa_pred_path, '..', args.save_csv_name)\n\n    data_list = []\n    for videxp, (j, f, a, r) in output_dict.items():\n        vid_name, exp = videxp.rsplit('_', 1)\n        data = {}\n\n        data['video_name'] = vid_name\n        data['exp_id']     = exp\n        data['exp']        = exp_dict[vid_name]['expressions'][exp]['exp']\n        data['videxp']     = videxp\n        data['J']          = round(100 * j, 2)\n        data['F']          = round(100 * f, 2)\n        data['JF']         = round(100 * (j + f) / 2, 2)\n        data['A']          = round(100 * a, 2)\n        data['R']          = round(100 * r, 2)\n        data['type_id']    = exp_dict[vid_name]['expressions'][exp]['type_id']\n\n        data_list.append(data)\n\n    is_referring = lambda x: x['type_id'] == 0\n    is_reason    = lambda x: x['type_id'] == 1\n    is_nan       = lambda x: x['type_id'] == 2\n\n    j_referring  = np.array([d['J'] for d in data_list if is_referring(d)]).mean()\n    f_referring  = np.array([d['F'] for d in data_list if is_referring(d)]).mean()\n    a_referring  = np.array([d['A'] for d in data_list if is_referring(d)]).mean()\n    r_referring  = np.array([d['R'] for d in data_list if is_referring(d)]).mean()\n    jf_referring = (j_referring + f_referring) / 2\n\n    j_reason  = np.array([d['J'] for d in data_list if is_reason(d)]).mean()\n    f_reason  = np.array([d['F'] for d in data_list if is_reason(d)]).mean()\n    a_reason  = np.array([d['A'] for d in data_list if is_reason(d)]).mean()\n    r_reason  = np.array([d['R'] for d in data_list if is_reason(d)]).mean()\n    jf_reason = (j_reason + f_reason) / 2\n\n    j_referring_reason  = (j_referring + j_reason) / 2\n    f_referring_reason  = (f_referring + f_reason) / 2\n    a_referring_reason  = (a_referring + a_reason) / 2\n    r_referring_reason  = (r_referring + r_reason) / 2\n    jf_referring_reason = (jf_referring + jf_reason) / 2\n\n    results = {\n        \"referring\": {\n            \"J\" : j_referring,\n            \"F\" : f_referring,\n            \"A\" : a_referring,\n            \"R\" : r_referring,\n            \"JF\": jf_referring\n        },\n        \"reason\": {\n            \"J\" : j_reason,\n            \"F\" : f_reason,\n            \"A\" : a_reason,\n            \"R\" : r_reason,\n            \"JF\": jf_reason\n        },\n        \"overall\": {\n            \"J\" : j_referring_reason,\n            \"F\" : f_referring_reason,\n            \"A\" : a_referring_reason,\n            \"R\" : r_referring_reason,\n            \"JF\": jf_referring_reason\n        }\n    }\n\n    with open(output_json_path, 'w') as f:\n        json.dump(results, f, indent=4)\n    print(f\"Results saved to {output_json_path}\")\n\n    data4csv = {}\n    for data in data_list:\n        for k, v in data.items():\n            data4csv[k] = data4csv.get(k, []) + [v]\n\n    df = pd.DataFrame(data4csv)\n    df.to_csv(output_csv_path, index=False)\n    print(f\"Results saved to {output_csv_path}\")\n\n    end_time = time.time()\n    total_time = end_time - start_time\n    print(\"time: %.4f s\" %(total_time))"
  },
  {
    "path": "tools/generate_foreground_mask.py",
    "content": "###########################################################################\n# Created by: BUAA\n# Email: clyanhh@gmail.com\n# Copyright (c) 2024\n###########################################################################\nimport os\nimport os.path as osp\nimport json\nimport argparse\nimport numpy as np\nimport pycocotools.mask as maskUtils\nfrom tqdm import tqdm\nfrom operator import add\nfrom functools import reduce\nfrom termcolor import colored\n\n\ndef get_args():\n    parser = argparse.ArgumentParser(description=\"Merge instances mask to generate foreground mask\")\n    parser.add_argument(\"--meta_expression\", type=str, )\n    parser.add_argument(\"--mask_dict\", type=str, )\n    return parser.parse_args()\n\ndef merge_rle(masks_rle_list: list, height: int, width: int):\n    num_frames = len(masks_rle_list[0])\n    assert all(len(masks_rle) == num_frames for masks_rle in masks_rle_list), \"The number of frames in each mask should be the same\"\n    masks_rle_foreground_list = []\n    foreground_ratio_list = []\n    for frame_idx in range(num_frames):\n        # merge all instance masks in the same frame\n        mask_foreground = np.zeros((height, width), dtype=np.uint8)\n        for masks_rle in masks_rle_list:\n            segm = masks_rle[frame_idx]\n            if segm is not None:\n                m = maskUtils.decode(segm)\n                m = m.sum(axis=2).astype(np.uint8) if m.ndim == 3 else m.astype(np.uint8)\n                mask_foreground = (mask_foreground | m).astype(np.uint8)\n        \n        # calculate the foreground ratio\n        foreground_ratio = mask_foreground.sum() / (height * width)\n        foreground_ratio_list.append(foreground_ratio)\n\n        # encoder the merged mask to rle\n        mask_foreground_rle = maskUtils.encode(np.asfortranarray(mask_foreground))\n        mask_foreground_rle['counts'] = mask_foreground_rle['counts'].decode()\n        masks_rle_foreground_list.append(mask_foreground_rle)\n\n    return masks_rle_foreground_list, foreground_ratio_list\n\n\ndef main():\n    args = get_args()\n    assert args.meta_expression.endswith('.json') and args.mask_dict.endswith('.json')\n\n    mask_dict = json.load(open(args.mask_dict, 'r'))\n    meta_expression = json.load(open(args.meta_expression, 'r'))['videos']\n    mask_dict_foreground_path = args.mask_dict.replace('.json', '_foreground.json')\n\n    assert not osp.exists(mask_dict_foreground_path), f\"{mask_dict_foreground_path} already exists\"\n    mask_dict_foreground = {}  # video_name -> mask_rle (List[rle])\n\n    pbar = tqdm(total = len(meta_expression))\n    for video_name, video_info in meta_expression.items():\n        height = video_info[\"height\"]\n        width = video_info[\"width\"]\n        anno_id_list = list(set(\n            reduce(\n                add, \n                [exp_info[\"anno_id\"] for exp_info in video_info[\"expressions\"].values()]\n            )\n        ))\n        masks_rle_list = [mask_dict[str(anno_id)] for anno_id in anno_id_list]\n        masks_rle_foreground_list, foreground_ratio_list = merge_rle(masks_rle_list, height, width)\n        mask_dict_foreground[video_name] = {\n            \"masks_rle\": masks_rle_foreground_list,\n            \"foreground_ratio\": foreground_ratio_list\n        }\n\n        foreground_ratio = np.array(foreground_ratio_list).mean()\n        pbar.set_description(f\"Foreground ratio of {video_name}: {foreground_ratio:.2f}\")\n        if foreground_ratio == 0.0:\n            print(colored(f\"Foreground ratio of {video_name} is 0.0\", \"red\"))\n        pbar.update(1)\n    pbar.close()\n\n    with open(mask_dict_foreground_path, 'w') as f:\n        json.dump(mask_dict_foreground, f, indent=4)\n\nif __name__ == \"__main__\":\n    main()\n\n\n\n\n\n\n"
  },
  {
    "path": "tools/metrics.py",
    "content": "import math\nimport numpy as np\nimport cv2\nfrom typing import List\n\ndef get_r2vos_accuracy(gt_masks: List[np.ndarray], pred_masks: List[np.ndarray], ):\n    \"\"\" Compute per-pixel accuracy.\n    Args:\n        gt_masks: List[np.ndarray], shape: (n_frames, h, w), dtype: np.uint8\n        pred_masks: List[np.ndarray], shape: (n_frames, h, w), dtype: np.uint8\n    Return:\n        accs: np.ndarray, shape: (n_frames,), dtype: np.float32\n    \"\"\"\n    assert len(gt_masks) == len(pred_masks), \"The number of frames in gt_masks and pred_masks should be the same\"\n    n_frames = len(gt_masks)\n    accs = []\n    for gt_mask, pred_mask in zip(gt_masks, pred_masks):\n        assert gt_mask.shape == pred_mask.shape, \"The shape of gt_mask and pred_mask should be the same\"\n        acc = np.mean(gt_mask == pred_mask)\n        accs.append(acc)\n    return np.array(accs)\n\ndef get_r2vos_robustness(gt_masks: List[np.ndarray], pred_masks: List[np.ndarray], foreground_masks: List[np.ndarray], ):\n    \"\"\"\n    Args:\n        gt_masks: List[np.ndarray], shape: (n_frames, h, w), dtype: np.uint8\n        pred_masks: List[np.ndarray], shape: (n_frames, h, w), dtype: np.uint8\n        foreground_masks: List[np.ndarray], shape: (n_frames, h, w), dtype: np.uint8\n    Return:\n        robustness: np.ndarray, shape: (n_frames,), dtype: np.float32\n    \"\"\"\n    assert len(gt_masks) == len(pred_masks) == len(foreground_masks), \"The number of frames in gt_masks, pred_masks and foreground_masks should be the same\"\n    n_frames = len(gt_masks)\n    robustness = []\n    for gt_mask, pred_mask, foreground_mask in zip(gt_masks, pred_masks, foreground_masks):\n        assert gt_mask.shape == pred_mask.shape == foreground_mask.shape, \"The shape of gt_mask, pred_mask and foreground_mask should be the same\"\n        neg = ((1 - gt_mask) * pred_mask).sum()\n        pos = foreground_mask.sum()\n        robust = max(1 - neg / (pos + 1e-6), 0.0)\n        robustness.append(robust)\n    return np.array(robustness)\n\ndef db_eval_iou(annotation, segmentation, void_pixels=None):\n    \"\"\" Compute region similarity as the Jaccard Index.\n    Arguments:\n        annotation   (ndarray): binary annotation   map.\n        segmentation (ndarray): binary segmentation map.\n        void_pixels  (ndarray): optional mask with void pixels\n\n    Return:\n        jaccard (float): region similarity\n    \"\"\"\n    assert annotation.shape == segmentation.shape, \\\n        f'Annotation({annotation.shape}) and segmentation:{segmentation.shape} dimensions do not match.'\n    annotation = annotation.astype(bool)\n    segmentation = segmentation.astype(bool)\n\n    if void_pixels is not None:\n        assert annotation.shape == void_pixels.shape, \\\n            f'Annotation({annotation.shape}) and void pixels:{void_pixels.shape} dimensions do not match.'\n        void_pixels = void_pixels.astype(bool)\n    else:\n        void_pixels = np.zeros_like(segmentation)\n\n    # Intersection between all sets\n    inters = np.sum((segmentation & annotation) & np.logical_not(void_pixels), axis=(-2, -1))\n    union = np.sum((segmentation | annotation) & np.logical_not(void_pixels), axis=(-2, -1))\n\n    j = inters / union\n    if j.ndim == 0:\n        j = 1 if np.isclose(union, 0) else j\n    else:\n        j[np.isclose(union, 0)] = 1\n    return j\n\n\ndef db_eval_boundary(annotation, segmentation, void_pixels=None, bound_th=0.008):\n    assert annotation.shape == segmentation.shape\n    if void_pixels is not None:\n        assert annotation.shape == void_pixels.shape\n    if annotation.ndim == 3:\n        n_frames = annotation.shape[0]\n        f_res = np.zeros(n_frames)\n        for frame_id in range(n_frames):\n            void_pixels_frame = None if void_pixels is None else void_pixels[frame_id, :, :, ]\n            f_res[frame_id] = f_measure(segmentation[frame_id, :, :, ], annotation[frame_id, :, :], void_pixels_frame, bound_th=bound_th)\n    elif annotation.ndim == 2:\n        f_res = f_measure(segmentation, annotation, void_pixels, bound_th=bound_th)\n    else:\n        raise ValueError(f'db_eval_boundary does not support tensors with {annotation.ndim} dimensions')\n    return f_res\n\n\ndef f_measure(foreground_mask, gt_mask, void_pixels=None, bound_th=0.008):\n    \"\"\"\n    Compute mean,recall and decay from per-frame evaluation.\n    Calculates precision/recall for boundaries between foreground_mask and\n    gt_mask using morphological operators to speed it up.\n\n    Arguments:\n        foreground_mask (ndarray): binary segmentation image.\n        gt_mask         (ndarray): binary annotated image.\n        void_pixels     (ndarray): optional mask with void pixels\n\n    Returns:\n        F (float): boundaries F-measure\n    \"\"\"\n    assert np.atleast_3d(foreground_mask).shape[2] == 1\n    if void_pixels is not None:\n        void_pixels = void_pixels.astype(bool)\n    else:\n        void_pixels = np.zeros_like(foreground_mask).astype(bool)\n\n    bound_pix = bound_th if bound_th >= 1 else np.ceil(bound_th * np.linalg.norm(foreground_mask.shape))\n\n    # Get the pixel boundaries of both masks\n    fg_boundary = _seg2bmap(foreground_mask * np.logical_not(void_pixels))\n    gt_boundary = _seg2bmap(gt_mask * np.logical_not(void_pixels))\n\n    from skimage.morphology import disk\n\n    # fg_dil = binary_dilation(fg_boundary, disk(bound_pix))\n    fg_dil = cv2.dilate(fg_boundary.astype(np.uint8), disk(bound_pix).astype(np.uint8))\n    # gt_dil = binary_dilation(gt_boundary, disk(bound_pix))\n    gt_dil = cv2.dilate(gt_boundary.astype(np.uint8), disk(bound_pix).astype(np.uint8))\n\n    # Get the intersection\n    gt_match = gt_boundary * fg_dil\n    fg_match = fg_boundary * gt_dil\n\n    # Area of the intersection\n    n_fg = np.sum(fg_boundary)\n    n_gt = np.sum(gt_boundary)\n\n    # % Compute precision and recall\n    if n_fg == 0 and n_gt > 0:\n        precision = 1\n        recall = 0\n    elif n_fg > 0 and n_gt == 0:\n        precision = 0\n        recall = 1\n    elif n_fg == 0 and n_gt == 0:\n        precision = 1\n        recall = 1\n    else:\n        precision = np.sum(fg_match) / float(n_fg)\n        recall = np.sum(gt_match) / float(n_gt)\n\n    # Compute F measure\n    if precision + recall == 0:\n        F = 0\n    else:\n        F = 2 * precision * recall / (precision + recall)\n\n    return F\n\n\ndef _seg2bmap(seg, width=None, height=None):\n    \"\"\"\n    From a segmentation, compute a binary boundary map with 1 pixel wide\n    boundaries.  The boundary pixels are offset by 1/2 pixel towards the\n    origin from the actual segment boundary.\n    Arguments:\n        seg     : Segments labeled from 1..k.\n        width\t  :\tWidth of desired bmap  <= seg.shape[1]\n        height  :\tHeight of desired bmap <= seg.shape[0]\n    Returns:\n        bmap (ndarray):\tBinary boundary map.\n     David Martin <dmartin@eecs.berkeley.edu>\n     January 2003\n    \"\"\"\n\n    seg = seg.astype(bool)\n    seg[seg > 0] = 1\n\n    assert np.atleast_3d(seg).shape[2] == 1\n\n    width = seg.shape[1] if width is None else width\n    height = seg.shape[0] if height is None else height\n\n    h, w = seg.shape[:2]\n\n    ar1 = float(width) / float(height)\n    ar2 = float(w) / float(h)\n\n    assert not (\n        width > w | height > h | abs(ar1 - ar2) > 0.01\n    ), \"Can\" \"t convert %dx%d seg to %dx%d bmap.\" % (w, h, width, height)\n\n    e = np.zeros_like(seg)\n    s = np.zeros_like(seg)\n    se = np.zeros_like(seg)\n\n    e[:, :-1] = seg[:, 1:]\n    s[:-1, :] = seg[1:, :]\n    se[:-1, :-1] = seg[1:, 1:]\n\n    b = seg ^ e | seg ^ s | seg ^ se\n    b[-1, :] = seg[-1, :] ^ e[-1, :]\n    b[:, -1] = seg[:, -1] ^ s[:, -1]\n    b[-1, -1] = 0\n\n    if w == width and h == height:\n        bmap = b\n    else:\n        bmap = np.zeros((height, width))\n        for x in range(w):\n            for y in range(h):\n                if b[y, x]:\n                    j = 1 + math.floor((y - 1) + height / h)\n                    i = 1 + math.floor((x - 1) + width / h)\n                    bmap[j, i] = 1\n\n    return bmap\n\n\nif __name__ == '__main__':\n    from davis2017.davis import DAVIS\n    from davis2017.results import Results\n\n    dataset = DAVIS(root='input_dir/ref', subset='val', sequences='aerobatics')\n    results = Results(root_dir='examples/osvos')\n    # Test timing F measure\n    for seq in dataset.get_sequences():\n        all_gt_masks, _, all_masks_id = dataset.get_all_masks(seq, True)\n        all_gt_masks, all_masks_id = all_gt_masks[:, 1:-1, :, :], all_masks_id[1:-1]\n        all_res_masks = results.read_masks(seq, all_masks_id)\n        f_metrics_res = np.zeros(all_gt_masks.shape[:2])\n        for ii in range(all_gt_masks.shape[0]):\n            f_metrics_res[ii, :] = db_eval_boundary(all_gt_masks[ii, ...], all_res_masks[ii, ...])\n\n    # Run using to profile code: python -m cProfile -o f_measure.prof metrics.py\n    #                            snakeviz f_measure.prof\n"
  },
  {
    "path": "tools/zip_mp_mevis.py",
    "content": "###########################################################################\n# Created by: BUAA\n# Email: clyanhh@gmail.com\n# Copyright (c) 2024\n###########################################################################\nimport os\nimport os.path as osp\nimport zipfile\nfrom multiprocessing import Pool, cpu_count\nimport tempfile\nimport shutil\nfrom tqdm import tqdm\nimport argparse\n\n\ndef zip_files(path, temp_zip_file):\n    with zipfile.ZipFile(temp_zip_file, 'w', zipfile.ZIP_DEFLATED) as zipf:\n        for root, dirs, files in os.walk(path):\n            for file in files:\n                full_path = os.path.join(root, file)\n                relative_path = os.path.relpath(full_path, path)\n                zipf.write(full_path, arcname=relative_path)\n\ndef main():\n    parser = argparse.ArgumentParser(description='Zip files')\n    parser.add_argument('dir', help='path to the directory')\n    parser.add_argument('out', help='path to the output zip file')\n    parser.add_argument('--rm', action='store_true', help='remove the directory after zipping')\n    args = parser.parse_args()\n    path      = args.dir[:-1] if args.dir.endswith('/') else args.dir\n    iter_name = osp.basename(path)\n    exp_dir   = osp.dirname(path)\n    exp_name  = osp.basename(exp_dir)\n    out_file  = args.out\n\n    num_cpus = cpu_count()  # 获取CPU的数量\n\n    p = Pool(processes=num_cpus)\n    subdirs = [os.path.join(path, name) for name in os.listdir(path) if os.path.isdir(os.path.join(path, name))]\n    subdir2zip = dict()\n    pbar = tqdm(subdirs, desc='Zipping directories to temporary zip files')\n    for subdir in subdirs:\n        temp_zip_file = tempfile.mkstemp(suffix=f'_{os.getpid()}.zip')[1]\n        p.apply_async(zip_files, args=(subdir, temp_zip_file), error_callback=lambda e: print(e), callback=lambda _: pbar.update())\n        subdir2zip[subdir] = temp_zip_file\n    p.close()\n    p.join()\n\n    # 创建最终的zip文件\n    pbar = tqdm(total=len(subdirs), desc='Merging temporary zip files to final zip file')\n    with zipfile.ZipFile(out_file, 'w') as final_zipf:\n        for subdir, temp_zip_file in subdir2zip.items():\n            subdir_name = osp.basename(subdir)\n            with zipfile.ZipFile(temp_zip_file, 'r') as temp_zipf:\n                for file in temp_zipf.namelist():\n                    final_zipf.writestr(osp.join(subdir_name, file), temp_zipf.read(file))\n            os.remove(temp_zip_file)\n            pbar.update()\n    pbar.close()\n\n    if args.rm:\n        try:\n            shutil.rmtree(path)\n        except Exception as e:\n            os.system(f'sudo rm -rf {path}')\n        print(f'Removed {path}')\n\nif __name__ == '__main__':\n    main()"
  },
  {
    "path": "tools/zip_mp_refytvos.py",
    "content": "###########################################################################\n# Created by: BUAA\n# Email: clyanhh@gmail.com\n# Copyright (c) 2024\n###########################################################################\nimport os\nimport os.path as osp\nimport zipfile\nfrom multiprocessing import Pool, cpu_count\nimport tempfile\nimport shutil\nfrom tqdm import tqdm\nimport argparse\n\n\ndef zip_files(path, temp_zip_file):\n    with zipfile.ZipFile(temp_zip_file, 'w', zipfile.ZIP_DEFLATED) as zipf:\n        for root, dirs, files in os.walk(path):\n            for file in files:\n                full_path = os.path.join(root, file)\n                relative_path = os.path.relpath(full_path, path)\n                zipf.write(full_path, arcname=relative_path)\n\ndef main():\n    parser = argparse.ArgumentParser(description='Zip files')\n    parser.add_argument('dir', help='path to the directory')\n    parser.add_argument('out', default=None, help='path to the output zip file')\n    parser.add_argument('--rm', action='store_true', help='remove the directory after zipping')\n    args = parser.parse_args()\n    path      = args.dir[:-1] if args.dir.endswith('/') else args.dir\n    iter_name = osp.basename(path)\n    exp_dir   = osp.dirname(path)\n    exp_name  = osp.basename(exp_dir)\n    out_file  = args.out\n\n    num_cpus = cpu_count()  # 获取CPU的数量\n\n    p = Pool(processes=num_cpus)\n    subdirs = [os.path.join(path, name) for name in os.listdir(path) if os.path.isdir(os.path.join(path, name))]\n    subdir2zip = dict()\n    pbar = tqdm(subdirs, desc='Zipping directories to temporary zip files')\n    for subdir in subdirs:\n        temp_zip_file = tempfile.mkstemp(suffix=f'_{os.getpid()}.zip')[1]\n        p.apply_async(zip_files, args=(subdir, temp_zip_file), error_callback=lambda e: print(e), callback=lambda _: pbar.update())\n        subdir2zip[subdir] = temp_zip_file\n    p.close()\n    p.join()\n\n    # 创建最终的zip文件\n    pbar = tqdm(total=len(subdirs), desc='Merging temporary zip files to final zip file')\n    with zipfile.ZipFile(out_file, 'w') as final_zipf:\n        for subdir, temp_zip_file in subdir2zip.items():\n            subdir_name = osp.basename(subdir)\n            with zipfile.ZipFile(temp_zip_file, 'r') as temp_zipf:\n                for file in temp_zipf.namelist():\n                    final_zipf.writestr(osp.join('Annotations', subdir_name, file), temp_zipf.read(file))\n            os.remove(temp_zip_file)\n            pbar.update()\n    pbar.close()\n\n    if args.rm:\n        try:\n            shutil.rmtree(path)\n        except Exception as e:\n            os.system(f'sudo rm -rf {path}')\n        print(f'Removed {path}')\n\nif __name__ == '__main__':\n    main()"
  },
  {
    "path": "train_ds.py",
    "content": "import argparse\nimport os\nimport shutil\nimport sys\nimport time\nfrom functools import partial\n\n\nimport deepspeed\nimport numpy as np\nimport torch\nimport tqdm\nimport transformers\nfrom transformers import AutoConfig\nfrom peft import LoraConfig, get_peft_model\nfrom torch.utils.tensorboard import SummaryWriter\n\nfrom PIL import Image\nfrom model.VISA import VISAForCausalLM\nfrom model.univi.config import ModelConfig, DataConfig\nfrom model.llava import conversation as conversation_lib\nfrom utils.dataset import HybridDataset, ValDataset, collate_fn\nfrom utils.rvos_eval_dataset import RVOSEvalDataset\nfrom utils.utils import (\n    DEFAULT_IM_END_TOKEN, DEFAULT_IM_START_TOKEN,\n    AverageMeter, ProgressMeter, Summary, dict_to_cuda, intersectionAndUnionGPU\n)\n\ndef parse_args(args):\n    parser = argparse.ArgumentParser(description=\"VISA Model Training\")\n    parser.add_argument(\"--local_rank\", default=0, type=int, help=\"node rank\")\n    parser.add_argument(\n        \"--version\", default=\"Chat-UniVi/Chat-UniVi\"\n    )\n    parser.add_argument(\"--vis_save_path\", default=\"./vis_output\", type=str)\n    parser.add_argument(\n        \"--precision\",\n        default=\"bf16\",\n        type=str,\n        choices=[\"fp32\", \"bf16\", \"fp16\"],\n        help=\"precision for inference\",\n    )\n    parser.add_argument(\"--image_size\", default=1024, type=int, help=\"image size\")\n    parser.add_argument(\"--model_max_length\", default=2048, type=int)\n    parser.add_argument(\"--lora_r\", default=8, type=int)\n    parser.add_argument(\n        \"--vision-tower\", default=\"openai/clip-vit-large-patch14\", type=str\n    )\n    parser.add_argument(\"--load_in_8bit\", action=\"store_true\", default=False)\n    parser.add_argument(\"--load_in_4bit\", action=\"store_true\", default=False)\n\n\n    parser.add_argument(\n        \"--dataset\", default=\"sem_seg||refer_seg||vqa||reason_seg||chatunivi||rvos\", type=str\n    )\n    parser.add_argument(\"--sample_rates\", default=\"9,3,3,1,5,11\", type=str)\n\n    parser.add_argument(\n        \"--sem_seg_data\",\n        default=\"ade20k||cocostuff||pascal_part||paco_lvis||mapillary\",\n        type=str,\n    )\n    parser.add_argument(\n        \"--refer_seg_data\", default=\"refclef||refcoco||refcoco+||refcocog\", type=str\n    )\n    parser.add_argument(\"--vqa_data\", default=\"llava_instruct_150k\", type=str)\n    parser.add_argument(\"--reason_seg_data\", default=\"ReasonSeg|train\", type=str)\n    parser.add_argument(\"--val_dataset\", default=\"mevis_val\", type=str)\n    parser.add_argument(\"--log_base_dir\", default=\"./runs\", type=str)\n    parser.add_argument(\"--exp_name\", default=\"visa\", type=str)\n    parser.add_argument(\"--epochs\", default=10, type=int)\n    parser.add_argument(\"--steps_per_epoch\", default=1500, type=int)\n    parser.add_argument(\n        \"--batch_size\", default=1, type=int, help=\"batch size per device per step\"\n    )\n    parser.add_argument(\n        \"--grad_accumulation_steps\",\n        default=16,\n        type=int,\n    )\n    parser.add_argument(\"--val_batch_size\", default=1, type=int)\n    parser.add_argument(\"--workers\", default=8, type=int)\n    parser.add_argument(\"--lr\", default=0.0003, type=float)\n    parser.add_argument(\"--ce_loss_weight\", default=1.0, type=float)\n    parser.add_argument(\"--dice_loss_weight\", default=0.5, type=float)\n    parser.add_argument(\"--bce_loss_weight\", default=2.0, type=float)\n    parser.add_argument(\"--lora_alpha\", default=16, type=int)\n    parser.add_argument(\"--lora_dropout\", default=0.05, type=float)\n    parser.add_argument(\"--lora_target_modules\", default=\"q_proj,v_proj\", type=str)\n    parser.add_argument(\"--explanatory\", default=0.1, type=float)\n    parser.add_argument(\"--beta1\", default=0.9, type=float)\n    parser.add_argument(\"--beta2\", default=0.95, type=float)\n    parser.add_argument(\"--num_classes_per_sample\", default=3, type=int)\n    parser.add_argument(\"--exclude_val\", action=\"store_true\", default=False)\n    parser.add_argument(\"--no_eval\", action=\"store_true\", default=False)\n    parser.add_argument(\"--eval_only\", action=\"store_true\", default=False)\n    parser.add_argument(\"--vision_pretrained\", default=\"PATH_TO_SAM_ViT-H\", type=str)\n    parser.add_argument(\"--out_dim\", default=256, type=int)\n    parser.add_argument(\"--resume\", default=\"\", type=str)\n    parser.add_argument(\"--print_freq\", default=1, type=int)\n    parser.add_argument(\"--start_epoch\", default=0, type=int)\n    parser.add_argument(\"--gradient_checkpointing\", action=\"store_true\", default=True)\n    parser.add_argument(\"--train_mask_decoder\", action=\"store_true\", default=True)\n    parser.add_argument(\"--use_mm_start_end\", action=\"store_true\", default=False)\n    parser.add_argument(\"--auto_resume\", action=\"store_true\", default=False)\n    #    parser.add_argument(\"--auto_resume\", default=True)\n    parser.add_argument(\n        \"--conv_type\",\n        default=\"llava_v1\",\n        type=str,\n        choices=[\"llava_v1\", \"llava_llama_2\"],\n    )\n\n    # Balance 采样\n    parser.add_argument('--balance_sample', action='store_true', default=False)\n\n    # ChatUnivi 训练集\n    parser.add_argument('--univi_data_list', default=\"mimic||sqa||video\", type=str)\n    parser.add_argument('--univi_data_ratio', default=\"1||1||1\", type=str)\n    parser.add_argument('--univi_sample_frame_range', default=\"8,12\", type=str)\n    parser.add_argument('--univi_max_image_len', default=64, type=int)  # no use\n\n    parser.add_argument(\"--rvos_seg_data\", default=\"mevis_train||refytvos_train||davis17_train||rgvos_train||lvvis_train\", type=str)\n    parser.add_argument('--rvos_sample_ratio', default=\"4000||15000||400||6000||9000\", type=str,)\n    parser.add_argument('--rvos_num_frames_sample_range', default='8,12', type=str)\n    parser.add_argument('--rvos_sample_policy', default='uniform', type=str)\n    parser.add_argument('--rvos_max_image_token', type=int, default=12)  # 验证集中，最多选用几帧\n\n    return parser.parse_args(args)\n\n\ndef main(args):\n    args = parse_args(args)\n    args.log_dir = os.path.join(args.log_base_dir, args.exp_name)\n    if args.local_rank == 0:\n        os.makedirs(args.log_dir, exist_ok=True)\n        writer = SummaryWriter(args.log_dir)\n    else:\n        writer = None\n\n\n    # Create model\n    tokenizer = transformers.AutoTokenizer.from_pretrained(\n        args.version,\n        cache_dir=None,\n        model_max_length=args.model_max_length,\n        padding_side=\"right\",\n        use_fast=False,\n    )\n    tokenizer.pad_token = tokenizer.unk_token\n    num_added_tokens = tokenizer.add_tokens(\"[SEG]\")\n    args.seg_token_idx = tokenizer(\"[SEG]\", add_special_tokens=False).input_ids[0]\n    if args.use_mm_start_end:\n        tokenizer.add_tokens(\n            [DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN], special_tokens=True\n        )\n\n\n    model_args = {\n        \"train_mask_decoder\": args.train_mask_decoder,\n        \"out_dim\": args.out_dim,\n        \"ce_loss_weight\": args.ce_loss_weight,\n        \"dice_loss_weight\": args.dice_loss_weight,\n        \"bce_loss_weight\": args.bce_loss_weight,\n        \"seg_token_idx\": args.seg_token_idx,\n        \"vision_pretrained\": args.vision_pretrained,\n        \"vision_tower\": \"openai/clip-vit-large-patch14\",\n        \"use_im_start_end\": False,\n    }\n    # model_args = AutoConfig.from_pretrained(args.version)\n    torch_dtype = torch.float32\n    if args.precision == \"bf16\":\n        torch_dtype = torch.bfloat16\n    elif args.precision == \"fp16\":\n        torch_dtype = torch.half\n    model = VISAForCausalLM.from_pretrained(\n        args.version, torch_dtype=torch_dtype, low_cpu_mem_usage=True, **model_args\n    )\n    model.config.eos_token_id = tokenizer.eos_token_id\n    model.config.bos_token_id = tokenizer.bos_token_id\n    model.config.pad_token_id = tokenizer.pad_token_id\n\n\n    model.enable_input_require_grads()\n    model.gradient_checkpointing_enable()\n\n\n    model.get_model().initialize_vision_modules(model.get_model().config)\n    vision_tower = model.get_model().get_vision_tower()\n    vision_tower.to(dtype=torch_dtype, device=args.local_rank)\n\n\n    model_args_from_pt = AutoConfig.from_pretrained(args.version)\n    model_args_from_pt.use_cluster = True\n    model_args_from_pt.freeze = False\n    model_args_from_pt.mm_tune = True\n    model_args_from_pt.spatial_cluster_rate0 = 64\n    model_args_from_pt.spatial_cluster_rate1 = 32\n    model_args_from_pt.spatial_cluster_rate2 = 16\n    model_args_from_pt.temporal_cluster_rate = 0.0625\n    model_args_from_pt.use_cluster = True\n    model_args_from_pt.vision_tune = False\n    model.get_model().initialize_cluster_modules(model_args_from_pt)\n    if not args.eval_only:\n        model.get_model().initialize_lisa_modules(model.get_model().config)\n\n\n    for p in vision_tower.parameters():\n        p.requires_grad = False\n    for p in model.get_model().mm_projector.parameters():\n        p.requires_grad = False\n\n\n    conversation_lib.default_conversation = conversation_lib.conv_templates[\n        args.conv_type\n    ]\n\n\n    lora_r = args.lora_r\n    if lora_r > 0:\n\n\n        def find_linear_layers(model, lora_target_modules):\n            cls = torch.nn.Linear\n            lora_module_names = set()\n            for name, module in model.named_modules():\n                if (\n                    isinstance(module, cls)\n                    and all(\n                        [\n                            x not in name\n                            for x in [\n                                \"visual_model\",\n                                \"vision_tower\",\n                                \"mm_projector\",\n                                \"text_hidden_fcs\",\n                            ]\n                        ]\n                    )\n                    and any([x in name for x in lora_target_modules])\n                ):\n                    lora_module_names.add(name)\n            return sorted(list(lora_module_names))\n\n\n        lora_alpha = args.lora_alpha\n        lora_dropout = args.lora_dropout\n        lora_target_modules = find_linear_layers(\n            model, args.lora_target_modules.split(\",\")\n        )\n        lora_config = LoraConfig(\n            r=lora_r,\n            lora_alpha=lora_alpha,\n            target_modules=lora_target_modules,\n            lora_dropout=lora_dropout,\n            bias=\"none\",\n            task_type=\"CAUSAL_LM\",\n        )\n        model = get_peft_model(model, lora_config)\n        model.print_trainable_parameters()\n\n\n    model.resize_token_embeddings(len(tokenizer))\n\n\n    # make text_hidden_fcs, mask_decoder, lm_head, embed_tokens trainable\n    for n, p in model.named_parameters():\n        if any(\n            [\n                x in n\n                for x in [\"lm_head\", \"embed_tokens\", \"mask_decoder\", \"text_hidden_fcs\"]\n            ]\n        ):\n            print(\"n: \", n, \"p.shape: \", p.shape)\n            p.requires_grad = True\n\n\n    world_size = torch.cuda.device_count()\n    args.distributed = world_size > 1\n    train_dataset = HybridDataset(\n        tokenizer,\n        args.vision_tower,\n        samples_per_epoch=args.batch_size\n        * args.grad_accumulation_steps\n        * args.steps_per_epoch\n        * world_size,\n        precision=args.precision,\n        image_size=args.image_size,\n        num_classes_per_sample=args.num_classes_per_sample,\n        exclude_val=args.exclude_val,\n        dataset=args.dataset,\n        sample_rate=[float(x) for x in args.sample_rates.split(\",\")],\n        sem_seg_data=args.sem_seg_data,\n        refer_seg_data=args.refer_seg_data,\n        vqa_data=args.vqa_data,\n        reason_seg_data=args.reason_seg_data,\n        explanatory=args.explanatory,\n        univi_sample_frame_range=args.univi_sample_frame_range,\n        balance_sample=args.balance_sample,\n        rvos_seg_data=args.rvos_seg_data,\n        rvos_sample_ratio=args.rvos_sample_ratio,\n        rvos_num_frames_sample_range=args.rvos_num_frames_sample_range,\n        rvos_sample_policy=args.rvos_sample_policy,\n        univi_data_list = args.univi_data_list,\n        univi_data_ratio = args.univi_data_ratio,\n        univi_max_image_len = args.univi_max_image_len,\n    )\n    if args.no_eval == False:\n        val_out_dirname = args.val_dataset if '_split' not in args.val_dataset else args.val_dataset.split('_split', 1)[0]\n        val_dataset = RVOSEvalDataset(\n            tokenizer                = tokenizer,\n            vision_tower             = args.vision_tower,\n            output_dir               = os.path.join(args.log_dir, val_out_dirname),\n            precision                = args.precision,\n            image_size               = args.image_size,\n            rvos_dataset_name        = args.val_dataset,\n            max_image_token          = args.rvos_max_image_token\n            )\n\n        print(\n            f\"Training with {len(train_dataset)} examples and validating with {len(val_dataset)} examples.\"\n        )\n    else:\n        val_dataset = None\n        print(f\"Training with {len(train_dataset)} examples.\")\n\n\n    ds_config = {\n        \"train_micro_batch_size_per_gpu\": args.batch_size,\n        \"gradient_accumulation_steps\": args.grad_accumulation_steps,\n        \"optimizer\": {\n            \"type\": \"AdamW\",\n            \"params\": {\n                \"lr\": args.lr,\n                \"weight_decay\": 0.0,\n                \"betas\": (args.beta1, args.beta2),\n            },\n        },\n        \"scheduler\": {\n            \"type\": \"WarmupDecayLR\",\n            \"params\": {\n                \"total_num_steps\": args.epochs * args.steps_per_epoch,\n                \"warmup_min_lr\": 0,\n                \"warmup_max_lr\": args.lr,\n                \"warmup_num_steps\": 100,\n                \"warmup_type\": \"linear\",\n            },\n        },\n        \"fp16\": {\n            \"enabled\": args.precision == \"fp16\",\n        },\n        \"bf16\": {\n            \"enabled\": args.precision == \"bf16\",\n        },\n        \"gradient_clipping\": 1.0,\n        \"zero_optimization\": {\n            \"stage\": 2,\n            \"contiguous_gradients\": True,\n            \"overlap_comm\": True,\n            \"reduce_scatter\": True,\n            \"reduce_bucket_size\": 5e8,\n            \"allgather_bucket_size\": 5e8,\n        },\n    }\n    model_engine, optimizer, train_loader, scheduler = deepspeed.initialize(\n        model=model,\n        model_parameters=model.parameters(),\n        training_data=train_dataset,\n        collate_fn=partial(\n            collate_fn,\n            tokenizer=tokenizer,\n            conv_type=args.conv_type,\n            use_mm_start_end=args.use_mm_start_end,\n            local_rank=args.local_rank,\n        ),\n        config=ds_config,\n    )\n\n\n    # resume deepspeed checkpoint\n    if args.auto_resume and len(args.resume) == 0:\n        resume = os.path.join(args.log_dir, \"ckpt_model\")\n        if os.path.exists(resume):\n            args.resume = resume\n\n\n    if args.resume:\n        load_path, client_state = model_engine.load_checkpoint(args.resume)\n        with open(os.path.join(args.resume, \"latest\"), \"r\") as f:\n            ckpt_dir = f.readlines()[0].strip()\n        args.start_epoch = (\n            int(ckpt_dir.replace(\"global_step\", \"\")) // args.steps_per_epoch\n        )\n        print(\n            \"resume training from {}, start from epoch {}\".format(\n                args.resume, args.start_epoch\n            )\n        )\n\n\n    # validation dataset\n    if val_dataset is not None:\n        assert args.val_batch_size == 1\n        val_sampler = torch.utils.data.distributed.DistributedSampler(\n            val_dataset, shuffle=False, drop_last=False\n        )\n        val_loader = torch.utils.data.DataLoader(\n            val_dataset,\n            batch_size=args.val_batch_size,\n            shuffle=False,\n            num_workers=args.workers,\n            pin_memory=False,\n            sampler=val_sampler,\n            collate_fn=partial(\n                collate_fn,\n                tokenizer=tokenizer,\n                conv_type=args.conv_type,\n                use_mm_start_end=args.use_mm_start_end,\n                local_rank=args.local_rank,\n            ),\n        )\n\n\n    train_iter = iter(train_loader)\n    best_score, cur_ciou = 0.0, 0.0\n\n\n    if args.eval_only:\n        rvos_validate(val_loader, model_engine, 0, writer, args)\n        exit()\n\n\n    for epoch in range(args.start_epoch, args.epochs):\n        # train for one epoch\n        train_iter = train(\n            train_loader,\n            model_engine,\n            epoch,\n            scheduler,\n            writer,\n            train_iter,\n            args,\n        )\n\n        # if args.no_eval or is_best:\n        if True:\n            save_dir = os.path.join(args.log_dir, \"ckpt_model\")\n            if args.local_rank == 0:\n                torch.save(\n                    {\"epoch\": epoch},\n                    os.path.join(\n                        args.log_dir,\n                        \"meta_log_giou{:.3f}_ciou{:.3f}.pth\".format(\n                            best_score, cur_ciou\n                        ),\n                    ),\n                )\n                #if os.path.exists(save_dir):\n                #    shutil.rmtree(save_dir)\n            torch.distributed.barrier()\n            model_engine.save_checkpoint(save_dir)\n\n    if args.no_eval == False:\n        rvos_validate(val_loader, model_engine, epoch, writer, args)\n\ndef train(\n    train_loader,\n    model,\n    epoch,\n    scheduler,\n    writer,\n    train_iter,\n    args,\n):\n    \"\"\"Main training loop.\"\"\"\n    batch_time = AverageMeter(\"Time\", \":6.3f\")\n    data_time = AverageMeter(\"Data\", \":6.3f\")\n    losses = AverageMeter(\"Loss\", \":.4f\")\n    ce_losses = AverageMeter(\"CeLoss\", \":.4f\")\n    mask_bce_losses = AverageMeter(\"MaskBCELoss\", \":.4f\")\n    mask_dice_losses = AverageMeter(\"MaskDICELoss\", \":.4f\")\n    mask_losses = AverageMeter(\"MaskLoss\", \":.4f\")\n\n\n    progress = ProgressMeter(\n        args.steps_per_epoch,\n        [\n            batch_time,\n            losses,\n            ce_losses,\n            mask_losses,\n            mask_bce_losses,\n            mask_dice_losses,\n        ],\n        prefix=\"Epoch: [{}]\".format(epoch),\n    )\n\n\n    # switch to train mode\n    model.train()\n    end = time.time()\n    for global_step in range(args.steps_per_epoch):\n        for i in range(args.grad_accumulation_steps):\n            try:\n                input_dict = next(train_iter)\n            except:\n                train_iter = iter(train_loader)\n                input_dict = next(train_iter)\n\n\n            data_time.update(time.time() - end)\n            input_dict = dict_to_cuda(input_dict)\n\n\n            if args.precision == \"fp16\":\n                input_dict[\"images\"] = [i.half() for i in input_dict[\"images\"]]\n                input_dict[\"images_clip\"] = [i.half() for i in input_dict[\"images_clip\"]]\n            elif args.precision == \"bf16\":\n                input_dict[\"images\"] = [i.bfloat16() for i in input_dict[\"images\"]]\n                input_dict[\"images_clip\"] = [i.bfloat16() for i in input_dict[\"images_clip\"]]\n            else:\n                input_dict[\"images\"] = [i.float() for i in input_dict[\"images\"]]\n                input_dict[\"images_clip\"] = [i.float() for i in input_dict[\"images_clip\"]]\n\n\n            output_dict = model(**input_dict)\n\n\n            loss = output_dict[\"loss\"]\n            ce_loss = output_dict[\"ce_loss\"]\n            mask_bce_loss = output_dict[\"mask_bce_loss\"]\n            mask_dice_loss = output_dict[\"mask_dice_loss\"]\n            mask_loss = output_dict[\"mask_loss\"]\n\n            losses.update(loss.item(), input_dict[\"input_ids\"].size(0))\n            ce_losses.update(ce_loss.item(), input_dict[\"input_ids\"].size(0))\n            mask_bce_losses.update(mask_bce_loss.item(), input_dict[\"input_ids\"].size(0))\n            mask_dice_losses.update(mask_dice_loss.item(), input_dict[\"input_ids\"].size(0))\n            mask_losses.update(mask_loss.item(), input_dict[\"input_ids\"].size(0))\n            model.backward(loss)\n            model.step()\n\n\n        # measure elapsed time\n        batch_time.update(time.time() - end)\n        end = time.time()\n\n\n        if global_step % args.print_freq == 0:\n            if args.distributed:\n                batch_time.all_reduce()\n                data_time.all_reduce()\n\n\n                losses.all_reduce()\n                ce_losses.all_reduce()\n                mask_bce_losses.all_reduce()\n                mask_dice_losses.all_reduce()\n                mask_losses.all_reduce()\n\n\n            if args.local_rank == 0:\n                progress.display(global_step + 1)\n                writer.add_scalar(\"train/loss\", losses.avg, global_step)\n                writer.add_scalar(\"train/ce_loss\", ce_losses.avg, global_step)\n                writer.add_scalar(\n                    \"train/mask_bce_loss\", mask_bce_losses.avg, global_step\n                )\n                writer.add_scalar(\n                    \"train/mask_dice_loss\", mask_dice_losses.avg, global_step\n                )\n                writer.add_scalar(\"train/mask_loss\", mask_losses.avg, global_step)\n                writer.add_scalar(\n                    \"metrics/total_secs_per_batch\", batch_time.avg, global_step\n                )\n                writer.add_scalar(\n                    \"metrics/data_secs_per_batch\", data_time.avg, global_step\n                )\n\n\n            batch_time.reset()\n            data_time.reset()\n            losses.reset()\n            ce_losses.reset()\n            mask_bce_losses.reset()\n            mask_dice_losses.reset()\n            mask_losses.reset()\n\n\n        if global_step != 0:\n            curr_lr = scheduler.get_last_lr()\n            if args.local_rank == 0:\n                writer.add_scalar(\"train/lr\", curr_lr[0], global_step)\n\n\n    return train_iter\n\n\n\n\ndef validate(val_loader, model_engine, epoch, writer, args):\n    intersection_meter = AverageMeter(\"Intersec\", \":6.3f\", Summary.SUM)\n    union_meter = AverageMeter(\"Union\", \":6.3f\", Summary.SUM)\n    acc_iou_meter = AverageMeter(\"gIoU\", \":6.3f\", Summary.SUM)\n\n\n    model_engine.eval()\n\n\n    for input_dict in tqdm.tqdm(val_loader):\n        torch.cuda.empty_cache()\n\n        input_dict = dict_to_cuda(input_dict)\n        if args.precision == \"fp16\":\n            input_dict[\"images\"] = [i.half() for i in input_dict[\"images\"]]\n            input_dict[\"images_clip\"] = [i.half() for i in input_dict[\"images_clip\"]]\n        elif args.precision == \"bf16\":\n            input_dict[\"images\"] = [i.bfloat16() for i in input_dict[\"images\"]]\n            input_dict[\"images_clip\"] = [i.bfloat16() for i in input_dict[\"images_clip\"]]\n        else:\n            input_dict[\"images\"] = [i.float() for i in input_dict[\"images\"]]\n            input_dict[\"images_clip\"] = [i.float() for i in input_dict[\"images_clip\"]]\n\n        with torch.no_grad():\n            output_dict = model_engine(**input_dict)\n\n        pred_masks = output_dict[\"pred_masks\"]\n        masks_list = output_dict[\"gt_masks\"][0].int()\n        output_list = (pred_masks[0] > 0).int()\n        assert len(pred_masks) == 1\n\n\n        intersection, union, acc_iou = 0.0, 0.0, 0.0\n        for mask_i, output_i in zip(masks_list, output_list):\n            intersection_i, union_i, _ = intersectionAndUnionGPU(\n                output_i.contiguous().clone(), mask_i.contiguous(), 2, ignore_index=255\n            )\n            intersection += intersection_i\n            union += union_i\n            acc_iou += intersection_i / (union_i + 1e-5)\n            acc_iou[union_i == 0] += 1.0  # no-object target\n        intersection, union = intersection.cpu().numpy(), union.cpu().numpy()\n        acc_iou = acc_iou.cpu().numpy() / masks_list.shape[0]\n        intersection_meter.update(intersection), union_meter.update(\n            union\n        ), acc_iou_meter.update(acc_iou, n=masks_list.shape[0])\n\n\n    intersection_meter.all_reduce()\n    union_meter.all_reduce()\n    acc_iou_meter.all_reduce()\n\n\n    iou_class = intersection_meter.sum / (union_meter.sum + 1e-10)\n    ciou = iou_class[1]\n    giou = acc_iou_meter.avg[1]\n\n\n    if args.local_rank == 0:\n        writer.add_scalar(\"val/giou\", giou, epoch)\n        writer.add_scalar(\"val/ciou\", ciou, epoch)\n        print(\"giou: {:.4f}, ciou: {:.4f}\".format(giou, ciou))\n\n\n    return giou, ciou\n\ndef rvos_validate(val_loader, model_engine, epoch, writer, args):\n    model_engine.eval()\n\n\n    for input_dict in tqdm.tqdm(val_loader):\n        torch.cuda.empty_cache()\n        input_dict = dict_to_cuda(input_dict)\n        if args.precision == \"fp16\":\n            input_dict[\"images\"] = [i.half() for i in input_dict[\"images\"]]\n            input_dict[\"images_clip\"] = [i.half() for i in input_dict[\"images_clip\"]]\n        elif args.precision == \"bf16\":\n            input_dict[\"images\"] = [i.bfloat16() for i in input_dict[\"images\"]]\n            input_dict[\"images_clip\"] = [i.bfloat16() for i in input_dict[\"images_clip\"]]\n        else:\n            input_dict[\"images\"] = [i.float() for i in input_dict[\"images\"]]\n            input_dict[\"images_clip\"] = [i.float() for i in input_dict[\"images_clip\"]]\n\n        with torch.no_grad():\n            output_dict = model_engine(**input_dict)\n        pred_masks = output_dict[\"pred_masks\"]\n        output_list = (pred_masks[0] > 0).int()\n        assert len(pred_masks) == 1\n        for mask_i, output_path_i in zip(output_list, input_dict['image_paths']):\n            assert output_path_i.endswith('.png'), f'output_path_i: {output_path_i} must end with .png'\n            # output_path_i = \"/\" + os.path.join(*output_path_i.split('/')[:-3], str(epoch), *output_path_i.split('/')[-3:])\n            # save mask_i to output_path_i\n            mask_i = mask_i.cpu().numpy().astype(np.float32)\n            mask_i = Image.fromarray(mask_i * 255).convert('L')\n            os.makedirs(os.path.dirname(output_path_i), exist_ok=True)\n            mask_i.save(output_path_i)\n\n\nif __name__ == \"__main__\":\n    main(sys.argv[1:])\n"
  },
  {
    "path": "utils/ade20k_classes.json",
    "content": "[\n    \"wall\", \"building\", \"sky\", \"floor\", \"tree\", \"ceiling\", \"road\",\n    \"bed\", \"windowpane\", \"grass\", \"cabinet\", \"sidewalk\",\n    \"person\", \"earth\", \"door\", \"table\", \"mountain\", \"plant\",\n    \"curtain\", \"chair\", \"car\", \"water\", \"painting\", \"sofa\",\n    \"shelf\", \"house\", \"sea\", \"mirror\", \"rug\", \"field\", \"armchair\",\n    \"seat\", \"fence\", \"desk\", \"rock\", \"wardrobe\", \"lamp\",\n    \"bathtub\", \"railing\", \"cushion\", \"base\", \"box\", \"column\",\n    \"signboard\", \"chest of drawers\", \"counter\", \"sand\", \"sink\",\n    \"skyscraper\", \"fireplace\", \"refrigerator\", \"grandstand\",\n    \"path\", \"stairs\", \"runway\", \"case\", \"pool table\", \"pillow\",\n    \"screen door\", \"stairway\", \"river\", \"bridge\", \"bookcase\",\n    \"blind\", \"coffee table\", \"toilet\", \"flower\", \"book\", \"hill\",\n    \"bench\", \"countertop\", \"stove\", \"palm\", \"kitchen island\",\n    \"computer\", \"swivel chair\", \"boat\", \"bar\", \"arcade machine\",\n    \"hovel\", \"bus\", \"towel\", \"light\", \"truck\", \"tower\",\n    \"chandelier\", \"awning\", \"streetlight\", \"booth\",\n    \"television receiver\", \"airplane\", \"dirt track\", \"apparel\",\n    \"pole\", \"land\", \"bannister\", \"escalator\", \"ottoman\", \"bottle\",\n    \"buffet\", \"poster\", \"stage\", \"van\", \"ship\", \"fountain\",\n    \"conveyer belt\", \"canopy\", \"washer\", \"plaything\",\n    \"swimming pool\", \"stool\", \"barrel\", \"basket\", \"waterfall\",\n    \"tent\", \"bag\", \"minibike\", \"cradle\", \"oven\", \"ball\", \"food\",\n    \"step\", \"tank\", \"trade name\", \"microwave\", \"pot\", \"animal\",\n    \"bicycle\", \"lake\", \"dishwasher\", \"screen\", \"blanket\",\n    \"sculpture\", \"hood\", \"sconce\", \"vase\", \"traffic light\",\n    \"tray\", \"ashcan\", \"fan\", \"pier\", \"crt screen\", \"plate\",\n    \"monitor\", \"bulletin board\", \"shower\", \"radiator\", \"glass\",\n    \"clock\", \"flag\"\n]"
  },
  {
    "path": "utils/chatunivi_dataset.py",
    "content": "import os\nimport random\n\nimport cv2\nimport numpy as np\nimport torch\nimport copy\nimport traceback\nimport json\nimport torch.nn.functional as F\nfrom termcolor import colored\nfrom pycocotools import mask\nfrom transformers import CLIPImageProcessor\nfrom typing import Dict, Sequence\nfrom PIL import Image\nfrom decord import VideoReader, cpu\n\nfrom model.llava import conversation as conversation_lib\nfrom model.segment_anything.utils.transforms import ResizeLongestSide\n\nfrom .dataset_config import MIMIC_imageonly, SQA, VIDEO\nfrom .utils import (DEFAULT_IM_END_TOKEN, DEFAULT_IM_START_TOKEN, DEFAULT_IMAGE_TOKEN, DEFAULT_VIDEO_TOKEN, convert2imagesplit)\n\ndef _get_rawvideo_dec(video_path, image_processor, max_frames=64, image_resolution=224, video_framerate=1, s=None, e=None):\n    # speed up video decode via decord.\n    # video_mask = np.zeros(max_frames, dtype=np.int64)\n\n    # T x 3 x H x W\n    # video = np.zeros((max_frames, 3, image_resolution, image_resolution), dtype=np.float64)\n\n    if s is None:\n        start_time, end_time = None, None\n    else:\n        start_time = int(s)\n        end_time = int(e)\n        start_time = start_time if start_time >= 0. else 0.\n        end_time = end_time if end_time >= 0. else 0.\n        if start_time > end_time:\n            start_time, end_time = end_time, start_time\n        elif start_time == end_time:\n            end_time = start_time + 1\n\n    if os.path.exists(video_path):\n        vreader = VideoReader(video_path, ctx=cpu(0))\n    else:\n        print(video_path)\n        raise FileNotFoundError\n\n    fps = vreader.get_avg_fps()\n    f_start = 0 if start_time is None else int(start_time * fps)\n    f_end = int(min(1000000000 if end_time is None else end_time * fps, len(vreader) - 1))\n    num_frames = f_end - f_start + 1\n    assert num_frames > 0, f'num_frames: {num_frames}, f_start: {f_start}, f_end: {f_end}, fps: {fps}, video_path: {video_path}'\n    # T x 3 x H x W\n    if num_frames <= max_frames:\n        sample_pos = range(f_start, f_end + 1)\n    else:\n        split_point = np.linspace(0, num_frames, num=max_frames+1, dtype=int)\n        sample_pos = [np.random.randint(split_point[i], split_point[i+1]) for i in range(max_frames)]\n    patch_images = [Image.fromarray(f) for f in vreader.get_batch(sample_pos).asnumpy()]\n\n    patch_images = [image_processor.preprocess(img, return_tensors='pt')['pixel_values'][0] for img in patch_images]\n    slice_len = len(patch_images)\n\n    assert slice_len > 0, f'slice_len: {slice_len}, f_start: {f_start}, f_end: {f_end}, fps: {fps}, video_path: {video_path}'\n\n    return patch_images\n\ndef get_zero_image(processor):\n    i = Image.new('RGB', (224, 224), (0, 0, 0))\n    return processor.preprocess(i, return_tensors='pt')['pixel_values'][0]\n\n\n\nclass ChatUniviDataset(torch.utils.data.Dataset):\n    pixel_mean = torch.Tensor([123.675, 116.28, 103.53]).view(-1, 1, 1)\n    pixel_std = torch.Tensor([58.395, 57.12, 57.375]).view(-1, 1, 1)\n    img_size = 1024\n    ignore_label = 255\n\n    name2cfg = {\n        \"mimic\": MIMIC_imageonly,\n        \"sqa\"  : SQA,\n        \"video\": VIDEO,\n    }\n\n    def __init__(\n        self, \n        tokenizer,\n        vision_tower,\n        samples_per_epoch        : int = 500 * 8 * 2 * 10,\n        precision                : str = \"fp32\",\n        image_size               : int = 224,\n        univi_data_list          : str = \"mimic||sqa||video\",\n        univi_data_ratio         : str = \"1||1||1\",\n        univi_max_image_len      : int = 64,\n        image_aspect_ratio       : str = 'pad',\n        univi_sample_frame_range : str = \"10,12\",\n        univi_sample_list : list = [],\n    ):\n        self.image_aspect_ratio = image_aspect_ratio\n        self.image_size = image_size\n        self.tokenizer = tokenizer\n        self.precision = precision\n        self.transform = ResizeLongestSide(image_size)\n        self.clip_image_processor = CLIPImageProcessor.from_pretrained(vision_tower)\n\n        self.num_be_called = 0\n        self.univi_sample_frame_range = [int(x) for x in univi_sample_frame_range.split(\",\")]\n        assert len(self.univi_sample_frame_range) == 2\n        self.univi_sample_list = univi_sample_list\n\n        self.samples_per_epoch = samples_per_epoch\n        self.univi_data_list = univi_data_list.split(\"||\")\n        univi_data_ratio = np.array([float(x) for x in univi_data_ratio.split(\"||\")])\n        self.univi_data_ratio = univi_data_ratio / univi_data_ratio.sum()\n        self.univi_max_image_len = univi_max_image_len\n        self.name2list_data_dict = {}\n        self.folder_dict = {}\n        for dataset_name in self.univi_data_list:\n            self.name2list_data_dict[dataset_name] = self.load_data(dataset_name)\n            print(colored(f'Loaded {len(self.name2list_data_dict[dataset_name])} samples from {dataset_name}', 'green'))\n            image_folder = [folder for folder in self.name2cfg[dataset_name] if folder != \"chat_path\"]\n            for folder in image_folder:\n                if folder not in self.folder_dict:\n                    self.folder_dict[folder] = self.name2cfg[dataset_name][folder]\n\n    def load_data(self, dataset_name: str):\n        list_data_dict = json.load(open(self.name2cfg[dataset_name][\"chat_path\"], 'r'))\n        if dataset_name == 'sqa':\n            list_data_dict = [e for e in list_data_dict if \"image\" in e]  # only keep the data with image\n            for idx, data_dict in enumerate(list_data_dict):\n                if data_dict[\"conversations\"][0][\"value\"].endswith(\"<image>\"):\n                    data_dict[\"conversations\"][0][\"value\"] = data_dict[\"conversations\"][0][\"value\"].replace(\"<image>\", \"\")\n                    list_data_dict[idx][\"conversations\"][0][\"value\"] = \"<image>\\n\" + data_dict[\"conversations\"][0][\"value\"]\n                assert not list_data_dict[idx][\"conversations\"][0][\"value\"].endswith(\"<image>\"), f'Found <image> in the end of {list_data_dict[idx][\"conversations\"]}'\n        return list_data_dict\n\n    def __len__(self):\n        return self.samples_per_epoch\n\n    def __getitem__(self, i, max_try: int = 10):\n        for idx_try in range(max_try):\n            try:\n                image, file_path, question, answer = self.sample_data()\n\n                ori_size = (1024, 1024)\n                masks = torch.rand(0, *ori_size)\n                label = torch.ones(ori_size) * self.ignore_label\n\n                conv = conversation_lib.default_conversation.copy()\n                conv.messages = []\n                conv.append_message(conv.roles[0], question)\n                conv.append_message(conv.roles[1], answer)\n                conversations = [conv.get_prompt(), ]\n\n                return (\n                    file_path,\n                    torch.zeros((3, ori_size[0], ori_size[1]), dtype=torch.float32),\n                    torch.stack(image,dim=0),\n                    conversations,\n                    masks,\n                    label,\n                    ori_size,\n                    [question, ],\n                    [question, ],\n                )\n            \n            except:\n                print(colored(f'[ {idx_try + 1} / {max_try} ] Error in sample_data: {traceback.format_exc()}', 'red'))\n        raise RuntimeError(f'Cannot find a valid sample after {max_try} tries.')\n\n    def sample_data(self, ):\n        # 随机选择一个dataset\n        dataset_name = np.random.choice(self.univi_data_list, p=self.univi_data_ratio)\n        list_data_dict = self.name2list_data_dict[dataset_name]\n        # 随机选择一个sample\n        source = list_data_dict[np.random.randint(0, len(list_data_dict))]\n        if 'image' in source:\n            image_file = source['image']\n            file = image_file[0] if type(image_file) is list else image_file\n\n            if \"\\\\\" in file:\n                image_folder = self.folder_dict['ScienceQA']\n            elif \"CGD\" in file:\n                image_folder = self.folder_dict['CDG']\n            elif \"DC\" in file:\n                image_folder = self.folder_dict['DC']\n            elif \"LA\" in file:\n                image_folder = self.folder_dict['LA']\n            elif \"SD\" in file:\n                image_folder = self.folder_dict['SD']\n            elif \"SN\" in file:\n                image_folder = self.folder_dict['SN']\n            elif \"TVC\" in file:\n                image_folder = self.folder_dict['TVC']\n            elif \"VST\" in file:\n                image_folder = self.folder_dict['VST']\n            elif \"GCC\" in file:\n                image_folder = self.folder_dict['CC3M']\n            elif \"COCO_train2014\" in file:\n                image_folder = self.folder_dict['COCO2014']\n            else:\n                image_folder = self.folder_dict['COCO2017']\n\n\n            if type(image_file) is list:\n                image = [Image.open(os.path.join(image_folder, file.replace(\"\\\\\", \"/\"))).convert('RGB') for file in image_file]\n                file_path_record = ','.join([os.path.join(image_folder, file.replace(\"\\\\\", \"/\")) for file in image_file])\n                if self.image_aspect_ratio == 'pad':\n                    def expand2square(pil_img, background_color):\n                        width, height = pil_img.size\n                        if width == height:\n                            return pil_img\n                        elif width > height:\n                            result = Image.new(pil_img.mode, (width, width), background_color)\n                            result.paste(pil_img, (0, (width - height) // 2))\n                            return result\n                        else:\n                            result = Image.new(pil_img.mode, (height, height), background_color)\n                            result.paste(pil_img, ((height - width) // 2, 0))\n                            return result\n\n                    image = [expand2square(i, tuple(int(x * 255) for x in self.clip_image_processor.image_mean)) for i in image]\n                    image = [self.clip_image_processor.preprocess(i, return_tensors='pt')['pixel_values'][0] for i in image]\n                else:\n                    image = [self.clip_image_processor.preprocess(i, return_tensors='pt')['pixel_values'][0] for i in image]\n            else:\n                image = Image.open(os.path.join(image_folder, image_file.replace(\"\\\\\", \"/\"))).convert('RGB')\n                file_path_record = os.path.join(image_folder, image_file.replace(\"\\\\\", \"/\"))\n                if self.image_aspect_ratio == 'pad':\n                    def expand2square(pil_img, background_color):\n                        width, height = pil_img.size\n                        if width == height:\n                            return pil_img\n                        elif width > height:\n                            result = Image.new(pil_img.mode, (width, width), background_color)\n                            result.paste(pil_img, (0, (width - height) // 2))\n                            return result\n                        else:\n                            result = Image.new(pil_img.mode, (height, height), background_color)\n                            result.paste(pil_img, ((height - width) // 2, 0))\n                            return result\n                    image = expand2square(image, tuple(int(x * 255) for x in self.clip_image_processor.image_mean))\n                    image = [self.clip_image_processor.preprocess(image, return_tensors='pt')['pixel_values'][0], ]\n                else:\n                    image = [self.clip_image_processor.preprocess(image, return_tensors='pt')['pixel_values'][0], ]\n\n            conversations = copy.deepcopy(source[\"conversations\"])\n\n            question = \"\"\n            answer = \"\"\n            for conv in conversations:\n                if conv['from'] == 'human':\n                    question = conv['value']\n                else:\n                    answer = conv['value']\n            assert (question != \"\") and (answer != \"\"), f'question: {question}, answer: {answer}, conversations: {conversations}'\n            \n            if \"<image><image>\" in question:\n                question = question.replace(\"<image><image>\", DEFAULT_VIDEO_TOKEN)\n                question = convert2imagesplit(question, 2)\n\n        elif \"video\" in source:\n            video_file = source['video']\n            video_folder = self.folder_dict['VIDEO']\n            file_path_record = os.path.join(video_folder, video_file)\n\n            # get sample frame by self.univi_sample_frame_range\n            if len(self.univi_sample_list) > 0:\n                sample_frame_len = self.univi_sample_list[self.num_be_called % len(self.univi_sample_list)]\n                self.num_be_called += 1\n            else:\n                sample_frame_len = np.random.randint(self.univi_sample_frame_range[0], self.univi_sample_frame_range[1] + 1)\n            image = _get_rawvideo_dec(file_path_record, self.clip_image_processor, max_frames=sample_frame_len)\n\n            \n            video_len = len(image)\n\n            conversations = copy.deepcopy(source[\"conversations\"])\n\n            question = \"\"\n            answer = \"\"\n            for conv in conversations:\n                if conv['from'] == 'human':\n                    question = conv['value']\n                else:\n                    answer = conv['value']\n            assert (question != \"\") and (answer != \"\"), f'question: {question}, answer: {answer}, conversations: {conversations}'\n\n            question = convert2imagesplit(question, video_len)\n\n        else:\n            raise NotImplementedError\n\n        return image, file_path_record, question, answer\n\n\n\n\nif __name__ == '__main__':\n    pass\n"
  },
  {
    "path": "utils/cocostuff_classes.txt",
    "content": "0: unlabeled\n1: person\n2: bicycle\n3: car\n4: motorcycle\n5: airplane\n6: bus\n7: train\n8: truck\n9: boat\n10: traffic light\n11: fire hydrant\n12: street sign\n13: stop sign\n14: parking meter\n15: bench\n16: bird\n17: cat\n18: dog\n19: horse\n20: sheep\n21: cow\n22: elephant\n23: bear\n24: zebra\n25: giraffe\n26: hat\n27: backpack\n28: umbrella\n29: shoe\n30: eye glasses\n31: handbag\n32: tie\n33: suitcase\n34: frisbee\n35: skis\n36: snowboard\n37: sports ball\n38: kite\n39: baseball bat\n40: baseball glove\n41: skateboard\n42: surfboard\n43: tennis racket\n44: bottle\n45: plate\n46: wine glass\n47: cup\n48: fork\n49: knife\n50: spoon\n51: bowl\n52: banana\n53: apple\n54: sandwich\n55: orange\n56: broccoli\n57: carrot\n58: hot dog\n59: pizza\n60: donut\n61: cake\n62: chair\n63: couch\n64: potted plant\n65: bed\n66: mirror\n67: dining table\n68: window\n69: desk\n70: toilet\n71: door\n72: tv\n73: laptop\n74: mouse\n75: remote\n76: keyboard\n77: cell phone\n78: microwave\n79: oven\n80: toaster\n81: sink\n82: refrigerator\n83: blender\n84: book\n85: clock\n86: vase\n87: scissors\n88: teddy bear\n89: hair drier\n90: toothbrush\n91: hair brush\n92: banner\n93: blanket\n94: branch\n95: bridge\n96: building-other\n97: bush\n98: cabinet\n99: cage\n100: cardboard\n101: carpet\n102: ceiling-other\n103: ceiling-tile\n104: cloth\n105: clothes\n106: clouds\n107: counter\n108: cupboard\n109: curtain\n110: desk-stuff\n111: dirt\n112: door-stuff\n113: fence\n114: floor-marble\n115: floor-other\n116: floor-stone\n117: floor-tile\n118: floor-wood\n119: flower\n120: fog\n121: food-other\n122: fruit\n123: furniture-other\n124: grass\n125: gravel\n126: ground-other\n127: hill\n128: house\n129: leaves\n130: light\n131: mat\n132: metal\n133: mirror-stuff\n134: moss\n135: mountain\n136: mud\n137: napkin\n138: net\n139: paper\n140: pavement\n141: pillow\n142: plant-other\n143: plastic\n144: platform\n145: playingfield\n146: railing\n147: railroad\n148: river\n149: road\n150: rock\n151: roof\n152: rug\n153: salad\n154: sand\n155: sea\n156: shelf\n157: sky\n158: skyscraper\n159: snow\n160: solid-other\n161: stairs\n162: stone\n163: straw\n164: structural-other\n165: table\n166: tent\n167: textile-other\n168: towel\n169: tree\n170: vegetable\n171: wall-brick\n172: wall-concrete\n173: wall-other\n174: wall-panel\n175: wall-stone\n176: wall-tile\n177: wall-wood\n178: water-other\n179: waterdrops\n180: window-blind\n181: window-other\n182: wood\n"
  },
  {
    "path": "utils/conversation.py",
    "content": "\"\"\"\nConversation prompt templates.\n\"\"\"\n\nimport dataclasses\nfrom enum import Enum, auto\nfrom typing import Any, List\n\n\nclass SeparatorStyle(Enum):\n    \"\"\"Different separator style.\"\"\"\n\n    ADD_COLON_SINGLE = auto()\n    ADD_COLON_TWO = auto()\n    NO_COLON_SINGLE = auto()\n    BAIZE = auto()\n    DOLLY = auto()\n    RWKV = auto()\n\n\n@dataclasses.dataclass\nclass Conversation:\n    \"\"\"A class that keeps all conversation history.\"\"\"\n\n    # System prompts\n    system: str\n    # Two roles\n    roles: List[str]\n    # All messages\n    messages: List[List[str]]\n    # Offset of few shot examples\n    offset: int\n    # Separator\n    sep_style: SeparatorStyle\n    sep: str\n    sep2: str = None\n    # Stop criteria (the default one is EOS token)\n    stop_str: str = None\n    # Stops generation if meeting any token in this list\n    stop_token_ids: List[int] = None\n\n    # Used for the state in the gradio servers.\n    # TODO(lmzheng): refactor this\n    conv_id: Any = None\n    skip_next: bool = False\n    model_name: str = None\n\n    def get_prompt(self):\n        if self.sep_style == SeparatorStyle.ADD_COLON_SINGLE:\n            ret = self.system + self.sep\n            for role, message in self.messages:\n                if message:\n                    ret += role + \": \" + message + self.sep\n                else:\n                    ret += role + \":\"\n            return ret\n        elif self.sep_style == SeparatorStyle.ADD_COLON_TWO:\n            seps = [self.sep, self.sep2]\n            ret = self.system + seps[0]\n            for i, (role, message) in enumerate(self.messages):\n                if message:\n                    ret += role + \": \" + message + seps[i % 2]\n                else:\n                    ret += role + \":\"\n            return ret\n        elif self.sep_style == SeparatorStyle.NO_COLON_SINGLE:\n            ret = self.system\n            for role, message in self.messages:\n                if message:\n                    ret += role + message + self.sep\n                else:\n                    ret += role\n            return ret\n        elif self.sep_style == SeparatorStyle.BAIZE:\n            ret = self.system + \"\\n\"\n            for role, message in self.messages:\n                if message:\n                    ret += role + message + \"\\n\"\n                else:\n                    ret += role\n            return ret\n        elif self.sep_style == SeparatorStyle.DOLLY:\n            seps = [self.sep, self.sep2]\n            ret = self.system\n            for i, (role, message) in enumerate(self.messages):\n                if message:\n                    ret += role + \":\\n\" + message + seps[i % 2]\n                    if i % 2 == 1:\n                        ret += \"\\n\\n\"\n                else:\n                    ret += role + \":\\n\"\n            return ret\n        elif self.sep_style == SeparatorStyle.RWKV:\n            ret = self.system\n            for i, (role, message) in enumerate(self.messages):\n                if message:\n                    ret += (\n                        role\n                        + \": \"\n                        + message.replace(\"\\r\\n\", \"\\n\").replace(\"\\n\\n\", \"\\n\")\n                    )\n                    ret += \"\\n\\n\"\n                else:\n                    ret += role + \":\"\n            return ret\n        else:\n            raise ValueError(f\"Invalid style: {self.sep_style}\")\n\n    def append_message(self, role, message):\n        self.messages.append([role, message])\n\n    def to_gradio_chatbot(self):\n        ret = []\n        for i, (role, msg) in enumerate(self.messages[self.offset :]):\n            if i % 2 == 0:\n                ret.append([msg, None])\n            else:\n                ret[-1][-1] = msg\n        return ret\n\n    def copy(self):\n        return Conversation(\n            system=self.system,\n            roles=self.roles,\n            messages=[[x, y] for x, y in self.messages],\n            offset=self.offset,\n            sep_style=self.sep_style,\n            sep=self.sep,\n            sep2=self.sep2,\n            stop_str=self.stop_str,\n            stop_token_ids=self.stop_token_ids,\n            conv_id=self.conv_id,\n            model_name=self.model_name,\n        )\n\n    def dict(self):\n        return {\n            \"system\": self.system,\n            \"roles\": self.roles,\n            \"messages\": self.messages,\n            \"offset\": self.offset,\n            \"conv_id\": self.conv_id,\n            \"model_name\": self.model_name,\n        }\n\n\n# A template with one conversation example\nconv_one_shot = Conversation(\n    system=\"A chat between a curious human and an artificial intelligence assistant. \"\n    \"The assistant gives helpful, detailed, and polite answers to the human's questions.\",\n    roles=(\"Human\", \"Assistant\"),\n    messages=(\n        (\n            \"Human\",\n            \"What are the key differences between renewable and non-renewable energy sources?\",\n        ),\n        (\n            \"Assistant\",\n            \"Renewable energy sources are those that can be replenished naturally in a relatively \"\n            \"short amount of time, such as solar, wind, hydro, geothermal, and biomass. \"\n            \"Non-renewable energy sources, on the other hand, are finite and will eventually be \"\n            \"depleted, such as coal, oil, and natural gas. Here are some key differences between \"\n            \"renewable and non-renewable energy sources:\\n\"\n            \"1. Availability: Renewable energy sources are virtually inexhaustible, while non-renewable \"\n            \"energy sources are finite and will eventually run out.\\n\"\n            \"2. Environmental impact: Renewable energy sources have a much lower environmental impact \"\n            \"than non-renewable sources, which can lead to air and water pollution, greenhouse gas emissions, \"\n            \"and other negative effects.\\n\"\n            \"3. Cost: Renewable energy sources can be more expensive to initially set up, but they typically \"\n            \"have lower operational costs than non-renewable sources.\\n\"\n            \"4. Reliability: Renewable energy sources are often more reliable and can be used in more remote \"\n            \"locations than non-renewable sources.\\n\"\n            \"5. Flexibility: Renewable energy sources are often more flexible and can be adapted to different \"\n            \"situations and needs, while non-renewable sources are more rigid and inflexible.\\n\"\n            \"6. Sustainability: Renewable energy sources are more sustainable over the long term, while \"\n            \"non-renewable sources are not, and their depletion can lead to economic and social instability.\",\n        ),\n    ),\n    offset=2,\n    sep_style=SeparatorStyle.ADD_COLON_SINGLE,\n    sep=\"\\n### \",\n    stop_str=\"###\",\n)\n\n\n# Vicuna v1.1 template\nconv_vicuna_v1_1 = Conversation(\n    system=\"A chat between a curious user and an artificial intelligence assistant. \"\n    \"The assistant gives helpful, detailed, and polite answers to the user's questions.\",\n    roles=(\"USER\", \"ASSISTANT\"),\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.ADD_COLON_TWO,\n    sep=\" \",\n    sep2=\"</s>\",\n)\n\n# Koala default template\nconv_koala_v1 = Conversation(\n    system=\"BEGINNING OF CONVERSATION:\",\n    roles=(\"USER\", \"GPT\"),\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.ADD_COLON_TWO,\n    sep=\" \",\n    sep2=\"</s>\",\n)\n\n# Dolly V2 default template\nconv_dolly = Conversation(\n    system=\"Below is an instruction that describes a task. Write a response that appropriately completes the request.\\n\\n\",\n    roles=(\"### Instruction\", \"### Response\"),\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.DOLLY,\n    sep=\"\\n\\n\",\n    sep2=\"### End\",\n)\n\n# OpenAssistant Pythia default template\nconv_oasst = Conversation(\n    system=\"\",\n    roles=(\"<|prompter|>\", \"<|assistant|>\"),\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.NO_COLON_SINGLE,\n    sep=\"<|endoftext|>\",\n)\n\n# StableLM Alpha default template\nconv_stablelm = Conversation(\n    system=\"\"\"<|SYSTEM|># StableLM Tuned (Alpha version)\n- StableLM is a helpful and harmless open-source AI language model developed by StabilityAI.\n- StableLM is excited to be able to help the user, but will refuse to do anything that could be considered harmful to the user.\n- StableLM is more than just an information source, StableLM is also able to write poetry, short stories, and make jokes.\n- StableLM will refuse to participate in anything that could harm a human.\n\"\"\",\n    roles=(\"<|USER|>\", \"<|ASSISTANT|>\"),\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.NO_COLON_SINGLE,\n    sep=\"\",\n    stop_token_ids=[50278, 50279, 50277, 1, 0],\n)\n\n# Baize default template\nconv_baize = Conversation(\n    system=\"The following is a conversation between a human and an AI assistant named Baize (named after a mythical creature in Chinese folklore). Baize is an open-source AI assistant developed by UCSD and Sun Yat-Sen University. The human and the AI assistant take turns chatting. Human statements start with [|Human|] and AI assistant statements start with [|AI|]. The AI assistant always provides responses in as much detail as possible, and in Markdown format. The AI assistant always declines to engage with topics, questions and instructions related to unethical, controversial, or sensitive issues. Complete the transcript in exactly that format.\",\n    roles=(\"[|Human|]\", \"[|AI|]\"),\n    messages=(\n        (\"[|Human|]\", \"Hello!\"),\n        (\"[|AI|]\", \"Hi!\"),\n    ),\n    offset=2,\n    sep_style=SeparatorStyle.BAIZE,\n    sep=\"[|Human|]\",\n    stop_str=\"[|Human|]\",\n)\n\n# RWKV-4-Raven default template\nconv_rwkv = Conversation(\n    system=\"\",\n    roles=(\"Bob\", \"Alice\"),\n    messages=(),\n    offset=0,\n    sep_style=SeparatorStyle.RWKV,\n    sep=\"\",\n    stop_str=\"\\n\\n\",\n)\n\nconv_templates = {\n    \"baize\": conv_baize,\n    \"conv_one_shot\": conv_one_shot,\n    \"dolly\": conv_dolly,\n    \"koala_v1\": conv_koala_v1,\n    \"oasst\": conv_oasst,\n    \"stablelm\": conv_stablelm,\n    \"vicuna_v1.1\": conv_vicuna_v1_1,\n    \"rwkv\": conv_rwkv,\n}\n\n\ndef get_default_conv_template(model_name):\n    model_name = model_name.lower()\n    if \"vicuna\" in model_name or \"output\" in model_name:\n        return conv_vicuna_v1_1\n    elif \"koala\" in model_name:\n        return conv_koala_v1\n    elif \"dolly-v2\" in model_name:\n        return conv_dolly\n    elif \"oasst\" in model_name and \"pythia\" in model_name:\n        return conv_oasst\n    elif \"baize\" in model_name:\n        return conv_baize\n    elif \"stablelm\" in model_name:\n        return conv_stablelm\n    elif \"rwkv-4\" in model_name:\n        return conv_rwkv\n    return conv_one_shot\n\n\nif __name__ == \"__main__\":\n    conv = conv_templates[\"vicuna_v1.1\"].copy()\n    conv.append_message(conv.roles[0], \"Hello!\")\n    conv.append_message(conv.roles[1], \"Hi!\")\n    conv.append_message(conv.roles[0], \"How are you?\")\n    conv.append_message(conv.roles[1], None)\n    print(conv.get_prompt())\n"
  },
  {
    "path": "utils/d2_datasets/categories.py",
    "content": "# -------------------------------------------------------------------------------------------------------------------\n# 1. Ref-Youtube-VOS\nytvos_category_dict = {\n    'airplane': 0, 'ape': 1, 'bear': 2, 'bike': 3, 'bird': 4, 'boat': 5, 'bucket': 6, 'bus': 7, 'camel': 8, 'cat': 9, \n    'cow': 10, 'crocodile': 11, 'deer': 12, 'dog': 13, 'dolphin': 14, 'duck': 15, 'eagle': 16, 'earless_seal': 17, \n    'elephant': 18, 'fish': 19, 'fox': 20, 'frisbee': 21, 'frog': 22, 'giant_panda': 23, 'giraffe': 24, 'hand': 25, \n    'hat': 26, 'hedgehog': 27, 'horse': 28, 'knife': 29, 'leopard': 30, 'lion': 31, 'lizard': 32, 'monkey': 33, \n    'motorbike': 34, 'mouse': 35, 'others': 36, 'owl': 37, 'paddle': 38, 'parachute': 39, 'parrot': 40, 'penguin': 41, \n    'person': 42, 'plant': 43, 'rabbit': 44, 'raccoon': 45, 'sedan': 46, 'shark': 47, 'sheep': 48, 'sign': 49, \n    'skateboard': 50, 'snail': 51, 'snake': 52, 'snowboard': 53, 'squirrel': 54, 'surfboard': 55, 'tennis_racket': 56, \n    'tiger': 57, 'toilet': 58, 'train': 59, 'truck': 60, 'turtle': 61, 'umbrella': 62, 'whale': 63, 'zebra': 64\n}\n\nytvos_category_list = [\n    'airplane', 'ape', 'bear', 'bike', 'bird', 'boat', 'bucket', 'bus', 'camel', 'cat', 'cow', 'crocodile', \n    'deer', 'dog', 'dolphin', 'duck', 'eagle', 'earless_seal', 'elephant', 'fish', 'fox', 'frisbee', 'frog', \n    'giant_panda', 'giraffe', 'hand', 'hat', 'hedgehog', 'horse', 'knife', 'leopard', 'lion', 'lizard', \n    'monkey', 'motorbike', 'mouse', 'others', 'owl', 'paddle', 'parachute', 'parrot', 'penguin', 'person', \n    'plant', 'rabbit', 'raccoon', 'sedan', 'shark', 'sheep', 'sign', 'skateboard', 'snail', 'snake', 'snowboard', \n    'squirrel', 'surfboard', 'tennis_racket', 'tiger', 'toilet', 'train', 'truck', 'turtle', 'umbrella', 'whale', 'zebra'\n]\n\n# -------------------------------------------------------------------------------------------------------------------\n# 2. Ref-DAVIS17\ndavis_category_dict = {\n    'airplane': 0, 'backpack': 1, 'ball': 2, 'bear': 3, 'bicycle': 4, 'bird': 5, 'boat': 6, 'bottle': 7, 'box': 8, 'bus': 9, \n    'camel': 10, 'car': 11, 'carriage': 12, 'cat': 13, 'cellphone': 14, 'chamaleon': 15, 'cow': 16, 'deer': 17, 'dog': 18, \n    'dolphin': 19, 'drone': 20, 'elephant': 21, 'excavator': 22, 'fish': 23, 'goat': 24, 'golf cart': 25, 'golf club': 26, \n    'grass': 27, 'guitar': 28, 'gun': 29, 'helicopter': 30, 'horse': 31, 'hoverboard': 32, 'kart': 33, 'key': 34, 'kite': 35, \n    'koala': 36, 'leash': 37, 'lion': 38, 'lock': 39, 'mask': 40, 'microphone': 41, 'monkey': 42, 'motorcycle': 43, 'oar': 44, \n    'paper': 45, 'paraglide': 46, 'person': 47, 'pig': 48, 'pole': 49, 'potted plant': 50, 'puck': 51, 'rack': 52, 'rhino': 53, \n    'rope': 54, 'sail': 55, 'scale': 56, 'scooter': 57, 'selfie stick': 58, 'sheep': 59, 'skateboard': 60, 'ski': 61, 'ski poles': 62, \n    'snake': 63, 'snowboard': 64, 'stick': 65, 'stroller': 66, 'surfboard': 67, 'swing': 68, 'tennis racket': 69, 'tractor': 70, \n    'trailer': 71, 'train': 72, 'truck': 73, 'turtle': 74, 'varanus': 75, 'violin': 76, 'wheelchair': 77\n}\n\ndavis_category_list = [\n    'airplane', 'backpack', 'ball', 'bear', 'bicycle', 'bird', 'boat', 'bottle', 'box', 'bus', 'camel', 'car', 'carriage', \n    'cat', 'cellphone', 'chamaleon', 'cow', 'deer', 'dog', 'dolphin', 'drone', 'elephant', 'excavator', 'fish', 'goat', \n    'golf cart', 'golf club', 'grass', 'guitar', 'gun', 'helicopter', 'horse', 'hoverboard', 'kart', 'key', 'kite', 'koala', \n    'leash', 'lion', 'lock', 'mask', 'microphone', 'monkey', 'motorcycle', 'oar', 'paper', 'paraglide', 'person', 'pig', \n    'pole', 'potted plant', 'puck', 'rack', 'rhino', 'rope', 'sail', 'scale', 'scooter', 'selfie stick', 'sheep', 'skateboard', \n    'ski', 'ski poles', 'snake', 'snowboard', 'stick', 'stroller', 'surfboard', 'swing', 'tennis racket', 'tractor', 'trailer', \n    'train', 'truck', 'turtle', 'varanus', 'violin', 'wheelchair'\n]"
  },
  {
    "path": "utils/d2_datasets/mevis_utils.py",
    "content": "###########################################################################\n# Created by: NTU\n# Email: heshuting555@gmail.com\n# Copyright (c) 2023\n###########################################################################\n\n\nimport json\nimport logging\nimport numpy as np\nimport os\nimport os.path as osp\nfrom tqdm import tqdm\nfrom collections import defaultdict\n\"\"\"\nThis file contains functions to parse MeViS dataset of\nCOCO-format annotations into dicts in \"Detectron2 format\".\n\"\"\"\n\nlogger = logging.getLogger(__name__)\n\ndef load_mevis_json(image_root, json_file, dataset_name, is_train: bool = False):\n\n    ann_file = json_file\n    with open(str(ann_file), 'r') as f:\n        subset_expressions_by_video = json.load(f)['videos']\n    videos = list(subset_expressions_by_video.keys())  # d56a6ec78cfa, 377b1c5f365c, ...\n    print('number of video in the datasets:{}'.format(len(videos)))\n    metas = []\n    is_train = (image_root.split('/')[-1] == 'train') or is_train\n    if is_train:\n        mask_json = os.path.join(image_root, 'mask_dict.json')\n        print(f'Loading masks form {mask_json} ...')\n        with open(mask_json) as fp:\n            mask_dict = json.load(fp)\n\n        vid2metaid = defaultdict(list)\n        for vid in videos:  # d56a6ec78cfa, 377b1c5f365c, ...\n            # vid_data    = {'expressions': dict, 'vid_id': int, 'frames': List[int]}\n            # expressions = {'0': {\"exp\": str, \"obj_id\": List[int], \"anno_id\": List[int]}, ...}\n            vid_data   = subset_expressions_by_video[vid]  \n            vid_frames = sorted(vid_data['frames'])  # 00000, 00001, ...\n            vid_len    = len(vid_frames)\n            if vid_len < 2:\n                continue\n            # if ('rgvos' in dataset_name) and vid_len > 80:\n            #     continue\n            for exp_id, exp_dict in vid_data['expressions'].items():\n                meta = {}\n                meta['video']    = vid  # 377b1c5f365c\n                meta['exp']      = exp_dict['exp']  # 4 lizards moving around\n                meta['obj_id']   = [int(x) for x in exp_dict['obj_id']]   # [0, 1, 2, 3, ]\n                meta['anno_id']  = [str(x) for x in exp_dict['anno_id']]  # [2, 3, 4, 5, ]\n                meta['frames']   = vid_frames  # ['00000', '00001', ...]\n                meta['exp_id']   = exp_id  # '0'\n                meta['category'] = 0\n                meta['length']   = vid_len\n                metas.append(meta)\n                vid2metaid[vid].append(len(metas) - 1)\n    else:\n        mask_dict = dict()\n        vid2metaid = defaultdict(list)\n        for vid in videos:\n            vid_data   = subset_expressions_by_video[vid]\n            vid_frames = sorted(vid_data['frames'])\n            vid_len    = len(vid_frames)\n            for exp_id, exp_dict in vid_data['expressions'].items():\n                meta = {}\n                meta['video']    = vid\n                meta['exp']      = exp_dict['exp']\n                meta['obj_id']   = -1\n                meta['anno_id']  = -1\n                meta['frames']   = vid_frames\n                meta['exp_id']   = exp_id\n                meta['category'] = 0\n                meta['length']   = vid_len\n                metas.append(meta)\n                vid2metaid[vid].append(len(metas) - 1)\n    return metas, mask_dict, vid2metaid, is_train"
  },
  {
    "path": "utils/d2_datasets/refytvos_utils.py",
    "content": "###########################################################################\n# Created by: Xiaohongshu\n# Email: clyanhh@gmail.com\n# Copyright (c) 2023\n###########################################################################\n\n\nimport json\nimport logging\nimport numpy as np\nimport os\nimport os.path as osp\nfrom PIL import Image\nfrom collections import defaultdict\nfrom tqdm import tqdm\nimport pickle\n\nimport pycocotools.mask as maskUtils\n\ntry:\n    from .categories import ytvos_category_dict\n    from .categories import davis_category_dict\nexcept:\n    from categories import ytvos_category_dict\n    from categories import davis_category_dict\n\"\"\"\nThis file contains functions to parse Refer-Youtube-VOS dataset of COCO-format annotations into dicts in \"Detectron2 format\".\n\"\"\"\n\nlogger = logging.getLogger(__name__)\n\ndef encode_anno_mask(frames, vid_len, img_folder, video, obj_id, anno_id, meta, ):\n    anno_id_segm_list = list()\n    for frame_idx in range(vid_len):\n        frame_name = frames[frame_idx]\n        mask_path  = os.path.join(str(img_folder), 'Annotations', video, frame_name + '.png')\n        mask       = Image.open(mask_path).convert('P')\n        mask       = np.array(mask, )\n        mask       = (mask == obj_id) # 0, 1 binary\n        segm       = maskUtils.encode(np.asfortranarray(mask.astype(np.uint8))) if mask.any() else None\n        anno_id_segm_list.append(segm)\n    assert len(anno_id_segm_list) == meta['length']\n    assert len(anno_id_segm_list) == len(meta['frames'])\n    return {str(anno_id): anno_id_segm_list}\n\n\ndef load_refytvos_json(img_folder: str, ann_file: str, dataset_name: str, mask_dict_path: str = None, is_train: bool = False):\n    \"\"\"\n    img_folder (str)    : path to the folder where 'Annotations' && 'JPEGImages' && 'meta.json' are stored.\n    ann_file (str)      : path to the json file.\n    \"\"\"\n\n    def prepare_metas():\n        if ('train' in dataset_name) or is_train:\n            # read object information\n            with open(os.path.join(str(img_folder), 'meta.json'), 'r') as f:\n                subset_metas_by_video = json.load(f)['videos']\n            \n            # read expression data\n            with open(str(ann_file), 'r') as f:\n                subset_expressions_by_video = json.load(f)['videos']\n            videos = sorted(list(subset_expressions_by_video.keys()))\n\n            metas = []\n            anno_count = 0  # serve as anno_id\n            vid2metaid = defaultdict(list)\n            for vid in videos:\n                vid_meta   = subset_metas_by_video[vid]\n                vid_data   = subset_expressions_by_video[vid]\n                vid_frames = sorted(vid_data['frames'])\n                vid_len    = len(vid_frames)\n\n                exp_id_list = sorted(list(vid_data['expressions'].keys()))\n                for exp_id in exp_id_list:\n                    exp_dict            = vid_data['expressions'][exp_id]\n                    meta                = {}\n                    meta['video']       = vid\n                    meta['exp']         = exp_dict['exp']\n                    meta['obj_id']      = [0, ]  # Ref-Youtube-VOS only has one object per expression\n                    meta['anno_id']     = [str(anno_count), ]\n                    anno_count         += 1\n                    meta['frames']      = vid_frames\n                    meta['exp_id']      = exp_id\n                    obj_id              = exp_dict['obj_id']\n                    meta['obj_id_ori']  = int(obj_id)\n                    meta['category']    = vid_meta['objects'][obj_id]['category']\n                    meta['length']      = vid_len\n                    metas.append(meta)\n                    vid2metaid[vid].append(len(metas) - 1)\n        else:\n            # for some reasons the competition's validation expressions dict contains both the validation (202) & \n            # test videos (305). so we simply load the test expressions dict and use it to filter out the test videos from\n            # the validation expressions dict:\n            assert 'valid' in dataset_name\n            data = json.load(open(ann_file, 'r'))[\"videos\"]\n            valid_test_videos = set(data.keys())\n            test_meta_file = ann_file.replace('valid/meta_expressions.json', 'test/meta_expressions.json')\n            test_data = json.load(open(test_meta_file, 'r'))[\"videos\"]\n            test_videos = set(test_data.keys())\n            valid_videos = valid_test_videos - test_videos\n            video_list = sorted([video for video in valid_videos])\n            assert len(video_list) == 202, 'error: incorrect number of validation videos'\n            metas = [] # list[dict], length is number of expressions\n            vid2metaid = defaultdict(list)\n            for video in video_list:\n                expressions = data[video][\"expressions\"]\n                expression_list = list(expressions.keys()) \n                num_expressions = len(expression_list)\n                video_len = len(data[video][\"frames\"])\n\n                # read all the anno meta\n                for i in range(num_expressions):\n                    meta = {}\n                    meta[\"video\"]    = video\n                    meta[\"exp\"]      = expressions[expression_list[i]][\"exp\"]\n                    meta['obj_id']   = -1\n                    meta['anno_id']  = -1\n                    meta[\"frames\"]   = data[video][\"frames\"]\n                    meta[\"exp_id\"]   = expression_list[i]\n                    meta['category'] = 0\n                    meta['length']   = video_len\n                    metas.append(meta)\n                    vid2metaid[video].append(len(metas) - 1)\n\n        return metas, vid2metaid\n\n    if dataset_name.startswith('refytvos'):\n        category_dict = ytvos_category_dict\n    elif dataset_name.startswith('davis'):\n        category_dict = davis_category_dict\n    else:\n        raise ValueError('Unknown dataset name: {}'.format(dataset_name))\n\n    mask_json           = os.path.join(img_folder, 'mask_dict.pkl') if mask_dict_path is None else mask_dict_path\n    read_mask_from_json = osp.exists(mask_json)\n    is_train            = img_folder.split('/')[-1] == 'train'\n    if read_mask_from_json:\n        with open(mask_json, 'rb') as f:\n            mask_dict = pickle.load(f)\n    else:\n        mask_dict = dict()  # need to be filled later, anno_id -> frame_id\n    \n    metas, vid2metaid = prepare_metas()\n    return metas, mask_dict, vid2metaid, is_train"
  },
  {
    "path": "utils/d2_datasets/refytvos_val_videos.py",
    "content": "REFYTVOS_VAL_VIDEOS = [\n    \"48d2909d9e\",\n    \"f143fede6f\",\n    \"dab44991de\",\n    \"8939473ea7\",\n    \"9da2156a73\",\n    \"72d613f21a\",\n    \"4307020e0f\",\n    \"4ee0105885\",\n    \"c280d21988\",\n    \"3674b2c70a\",\n    \"39b7491321\",\n    \"f2a45acf1c\",\n    \"3dd327ab4e\",\n    \"0723d7d4fe\",\n    \"335fc10235\",\n    \"ebe7138e58\",\n    \"47d01d34c8\",\n    \"f7d7fb16d0\",\n    \"a46012c642\",\n    \"0620b43a31\",\n    \"0e8a6b63bb\",\n    \"abae1ce57d\",\n    \"8c60938d92\",\n    \"20a93b4c54\",\n    \"fb104c286f\",\n    \"6a75316e99\",\n    \"3e03f623bb\",\n    \"0782a6df7e\",\n    \"35d5e5149d\",\n    \"b5514f75d8\",\n    \"b05faf54f7\",\n    \"37b4ec2e1a\",\n    \"65350fd60a\",\n    \"2b904b76c9\",\n    \"7775043b5e\",\n    \"822c31928a\",\n    \"f7255a57d0\",\n    \"4f5b3310e3\",\n    \"a806e58451\",\n    \"450bd2e238\",\n    \"65e0640a2a\",\n    \"b2256e265c\",\n    \"d975e5f4a9\",\n    \"44e5d1a969\",\n    \"9a38b8e463\",\n    \"7741a0fbce\",\n    \"c9ef04fe59\",\n    \"45dc90f558\",\n    \"6cc8bce61a\",\n    \"623d24ce2b\",\n    \"b7928ea5c0\",\n    \"fef7e84268\",\n    \"1a894a8f98\",\n    \"0a598e18a8\",\n    \"c42fdedcdd\",\n    \"69c0f7494e\",\n    \"226f1e10f7\",\n    \"0c04834d61\",\n    \"b83923fd72\",\n    \"31d3a7d2ee\",\n    \"b205d868e6\",\n    \"bc9ba8917e\",\n    \"63883da4f5\",\n    \"696e01387c\",\n    \"188cb4e03d\",\n    \"246e38963b\",\n    \"39bce09d8d\",\n    \"94fa9bd3b5\",\n    \"eb49ce8027\",\n    \"182dbfd6ba\",\n    \"a0fc95d8fc\",\n    \"3be852ed44\",\n    \"deed0ab4fc\",\n    \"19cde15c4b\",\n    \"ab9a7583f1\",\n    \"cb06f84b6e\",\n    \"0788b4033d\",\n    \"8d803e87f7\",\n    \"257f7fd5b8\",\n    \"6031809500\",\n    \"03fe6115d4\",\n    \"f3678388a7\",\n    \"218ac81c2d\",\n    \"1ab5f4bbc5\",\n    \"d69812339e\",\n    \"62bf7630b3\",\n    \"749f1abdf9\",\n    \"975be70866\",\n    \"b90f8c11db\",\n    \"0b0c90e21a\",\n    \"7a19a80b19\",\n    \"cc1a82ac2a\",\n    \"eb263ef128\",\n    \"411774e9ff\",\n    \"8dea7458de\",\n    \"1f390d22ea\",\n    \"33e8066265\",\n    \"06a5dfb511\",\n    \"1e20ceafae\",\n    \"31e0beaf99\",\n    \"29c06df0f2\",\n    \"369919ef49\",\n    \"1a609fa7ee\",\n    \"4b783f1fc5\",\n    \"a9f23c9150\",\n    \"7f26b553ae\",\n    \"cbea8f6bea\",\n    \"c74fc37224\",\n    \"e10236eb37\",\n    \"559a611d86\",\n    \"0daaddc9da\",\n    \"f054e28786\",\n    \"d1ac0d8b81\",\n    \"0f3f8b2b2f\",\n    \"17cba76927\",\n    \"64c6f2ed76\",\n    \"dc197289ef\",\n    \"a4bce691c6\",\n    \"9787f452bf\",\n    \"bf2d38aefe\",\n    \"b772ac822a\",\n    \"30fe0ed0ce\",\n    \"e11254d3b9\",\n    \"33c8dcbe09\",\n    \"541ccb0844\",\n    \"8b7b57b94d\",\n    \"ba8823f2d2\",\n    \"a1251195e7\",\n    \"c2bbd6d121\",\n    \"54526e3c66\",\n    \"77df215672\",\n    \"352ad66724\",\n    \"7daa6343e6\",\n    \"8e2e5af6a8\",\n    \"61fca8cbf1\",\n    \"9ce299a510\",\n    \"60362df585\",\n    \"dce363032d\",\n    \"9fd2d2782b\",\n    \"68dab8f80c\",\n    \"b3b92781d9\",\n    \"9f16d17e42\",\n    \"b00ff71889\",\n    \"35948a7fca\",\n    \"eea1a45e49\",\n    \"1335b16cf9\",\n    \"0062f687f1\",\n    \"cd69993923\",\n    \"e633eec195\",\n    \"a7462d6aaf\",\n    \"853ca85618\",\n    \"a2948d4116\",\n    \"34564d26d8\",\n    \"13c3cea202\",\n    \"6cb5b08d93\",\n    \"4f6662e4e0\",\n    \"b7b7e52e02\",\n    \"5460cc540a\",\n    \"1e0257109e\",\n    \"aceb34fcbe\",\n    \"5d2020eff8\",\n    \"7836afc0c2\",\n    \"332dabe378\",\n    \"c16d9a4ade\",\n    \"01c88b5b60\",\n    \"d59c093632\",\n    \"466734bc5c\",\n    \"621487be65\",\n    \"dea0160a12\",\n    \"3f4bacb16a\",\n    \"4037d8305d\",\n    \"3b72dc1941\",\n    \"9f429af409\",\n    \"eeb18f9d47\",\n    \"8273b59141\",\n    \"e027ebc228\",\n    \"cc7c3138ff\",\n    \"547416bda1\",\n    \"cd896a9bee\",\n    \"f39c805b54\",\n    \"7a72130f21\",\n    \"ee9415c553\",\n    \"13ca7bbcfd\",\n    \"0390fabe58\",\n    \"d7a38bf258\",\n    \"4fe6619a47\",\n    \"85968ae408\",\n    \"97b38cabcc\",\n    \"cdcfd9f93a\",\n    \"152fe4902a\",\n    \"d1dd586cfd\",\n    \"43115c42b2\",\n    \"fd8cf868b2\",\n    \"1a1dbe153e\",\n    \"b58a97176b\",\n    \"9c0b55cae5\",\n    \"06cd94d38d\",\n    \"a00c3fa88e\",\n    \"d7ff44ea97\",\n    \"9f21474aca\",\n    \"bf4cc89b18\",\n    \"92fde455eb\"\n]"
  },
  {
    "path": "utils/d2_datasets/ytvis_api/__init__.py",
    "content": ""
  },
  {
    "path": "utils/d2_datasets/ytvis_api/ytvos.py",
    "content": "__author__ = 'ychfan'\n# Interface for accessing the YouTubeVIS dataset.\n\n# The following API functions are defined:\n#  YTVOS       - YTVOS api class that loads YouTubeVIS annotation file and prepare data structures.\n#  decodeMask - Decode binary mask M encoded via run-length encoding.\n#  encodeMask - Encode binary mask M using run-length encoding.\n#  getAnnIds  - Get ann ids that satisfy given filter conditions.\n#  getCatIds  - Get cat ids that satisfy given filter conditions.\n#  getImgIds  - Get img ids that satisfy given filter conditions.\n#  loadAnns   - Load anns with the specified ids.\n#  loadCats   - Load cats with the specified ids.\n#  loadImgs   - Load imgs with the specified ids.\n#  annToMask  - Convert segmentation in an annotation to binary mask.\n#  loadRes    - Load algorithm results and create API for accessing them.\n\n# Microsoft COCO Toolbox.      version 2.0\n# Data, paper, and tutorials available at:  http://mscoco.org/\n# Code written by Piotr Dollar and Tsung-Yi Lin, 2014.\n# Licensed under the Simplified BSD License [see bsd.txt]\n\nimport json\nimport time\nimport matplotlib.pyplot as plt\nfrom matplotlib.collections import PatchCollection\nfrom matplotlib.patches import Polygon\nimport numpy as np\nimport copy\nimport itertools\nfrom pycocotools import mask as maskUtils\nimport os\nfrom collections import defaultdict\nimport sys\nPYTHON_VERSION = sys.version_info[0]\nif PYTHON_VERSION == 2:\n    from urllib import urlretrieve\nelif PYTHON_VERSION == 3:\n    from urllib.request import urlretrieve\n\n\ndef _isArrayLike(obj):\n    return hasattr(obj, '__iter__') and hasattr(obj, '__len__')\n\n\nclass YTVOS:\n    def __init__(self, annotation_file=None):\n        \"\"\"\n        Constructor of Microsoft COCO helper class for reading and visualizing annotations.\n        :param annotation_file (str): location of annotation file\n        :param image_folder (str): location to the folder that hosts images.\n        :return:\n        \"\"\"\n        # load dataset\n        self.dataset, self.anns,self.cats,self.vids = dict(),dict(),dict(),dict()\n        self.vidToAnns, self.catToVids = defaultdict(list), defaultdict(list)\n        if not annotation_file == None:\n            print('loading annotations into memory...')\n            tic = time.time()\n            dataset = json.load(open(annotation_file, 'r'))\n            assert type(dataset)==dict, 'annotation file format {} not supported'.format(type(dataset))\n            print('Done (t={:0.2f}s)'.format(time.time()- tic))\n            self.dataset = dataset\n            self.createIndex()\n\n    def createIndex(self):\n        # create index\n        print('creating index...')\n        anns, cats, vids = {}, {}, {}\n        vidToAnns,catToVids = defaultdict(list),defaultdict(list)\n        if 'annotations' in self.dataset:\n            for ann in self.dataset['annotations']:\n                vidToAnns[ann['video_id']].append(ann)\n                anns[ann['id']] = ann\n\n        if 'videos' in self.dataset:\n            for vid in self.dataset['videos']:\n                vids[vid['id']] = vid\n\n        if 'categories' in self.dataset:\n            for cat in self.dataset['categories']:\n                cats[cat['id']] = cat\n\n        if 'annotations' in self.dataset and 'categories' in self.dataset:\n            for ann in self.dataset['annotations']:\n                catToVids[ann['category_id']].append(ann['video_id'])\n\n        print('index created!')\n\n        # create class members\n        self.anns = anns\n        self.vidToAnns = vidToAnns\n        self.catToVids = catToVids\n        self.vids = vids\n        self.cats = cats\n\n    def info(self):\n        \"\"\"\n        Print information about the annotation file.\n        :return:\n        \"\"\"\n        for key, value in self.dataset['info'].items():\n            print('{}: {}'.format(key, value))\n\n    def getAnnIds(self, vidIds=[], catIds=[], areaRng=[], iscrowd=None):\n        \"\"\"\n        Get ann ids that satisfy given filter conditions. default skips that filter\n        :param vidIds  (int array)     : get anns for given vids\n               catIds  (int array)     : get anns for given cats\n               areaRng (float array)   : get anns for given area range (e.g. [0 inf])\n               iscrowd (boolean)       : get anns for given crowd label (False or True)\n        :return: ids (int array)       : integer array of ann ids\n        \"\"\"\n        vidIds = vidIds if _isArrayLike(vidIds) else [vidIds]\n        catIds = catIds if _isArrayLike(catIds) else [catIds]\n\n        if len(vidIds) == len(catIds) == len(areaRng) == 0:\n            anns = self.dataset['annotations']\n        else:\n            if not len(vidIds) == 0:\n                lists = [self.vidToAnns[vidId] for vidId in vidIds if vidId in self.vidToAnns]\n                anns = list(itertools.chain.from_iterable(lists))\n            else:\n                anns = self.dataset['annotations']\n            anns = anns if len(catIds)  == 0 else [ann for ann in anns if ann['category_id'] in catIds]\n            anns = anns if len(areaRng) == 0 else [ann for ann in anns if ann['avg_area'] > areaRng[0] and ann['avg_area'] < areaRng[1]]\n        if not iscrowd == None:\n            ids = [ann['id'] for ann in anns if ann['iscrowd'] == iscrowd]\n        else:\n            ids = [ann['id'] for ann in anns]\n        return ids\n\n    def getCatIds(self, catNms=[], supNms=[], catIds=[]):\n        \"\"\"\n        filtering parameters. default skips that filter.\n        :param catNms (str array)  : get cats for given cat names\n        :param supNms (str array)  : get cats for given supercategory names\n        :param catIds (int array)  : get cats for given cat ids\n        :return: ids (int array)   : integer array of cat ids\n        \"\"\"\n        catNms = catNms if _isArrayLike(catNms) else [catNms]\n        supNms = supNms if _isArrayLike(supNms) else [supNms]\n        catIds = catIds if _isArrayLike(catIds) else [catIds]\n\n        if len(catNms) == len(supNms) == len(catIds) == 0:\n            cats = self.dataset['categories']\n        else:\n            cats = self.dataset['categories']\n            cats = cats if len(catNms) == 0 else [cat for cat in cats if cat['name']          in catNms]\n            cats = cats if len(supNms) == 0 else [cat for cat in cats if cat['supercategory'] in supNms]\n            cats = cats if len(catIds) == 0 else [cat for cat in cats if cat['id']            in catIds]\n        ids = [cat['id'] for cat in cats]\n        return ids\n\n    def getVidIds(self, vidIds=[], catIds=[]):\n        '''\n        Get vid ids that satisfy given filter conditions.\n        :param vidIds (int array) : get vids for given ids\n        :param catIds (int array) : get vids with all given cats\n        :return: ids (int array)  : integer array of vid ids\n        '''\n        vidIds = vidIds if _isArrayLike(vidIds) else [vidIds]\n        catIds = catIds if _isArrayLike(catIds) else [catIds]\n\n        if len(vidIds) == len(catIds) == 0:\n            ids = self.vids.keys()\n        else:\n            ids = set(vidIds)\n            for i, catId in enumerate(catIds):\n                if i == 0 and len(ids) == 0:\n                    ids = set(self.catToVids[catId])\n                else:\n                    ids &= set(self.catToVids[catId])\n        return list(ids)\n\n    def loadAnns(self, ids=[]):\n        \"\"\"\n        Load anns with the specified ids.\n        :param ids (int array)       : integer ids specifying anns\n        :return: anns (object array) : loaded ann objects\n        \"\"\"\n        if _isArrayLike(ids):\n            return [self.anns[id] for id in ids]\n        elif type(ids) == int:\n            return [self.anns[ids]]\n\n    def loadCats(self, ids=[]):\n        \"\"\"\n        Load cats with the specified ids.\n        :param ids (int array)       : integer ids specifying cats\n        :return: cats (object array) : loaded cat objects\n        \"\"\"\n        if _isArrayLike(ids):\n            return [self.cats[id] for id in ids]\n        elif type(ids) == int:\n            return [self.cats[ids]]\n\n    def loadVids(self, ids=[]):\n        \"\"\"\n        Load anns with the specified ids.\n        :param ids (int array)       : integer ids specifying vid\n        :return: vids (object array) : loaded vid objects\n        \"\"\"\n        if _isArrayLike(ids):\n            return [self.vids[id] for id in ids]\n        elif type(ids) == int:\n            return [self.vids[ids]]\n\n\n    def loadRes(self, resFile):\n        \"\"\"\n        Load result file and return a result api object.\n        :param   resFile (str)     : file name of result file\n        :return: res (obj)         : result api object\n        \"\"\"\n        res = YTVOS()\n        res.dataset['videos'] = [img for img in self.dataset['videos']]\n\n        print('Loading and preparing results...')\n        tic = time.time()\n        if type(resFile) == str or (PYTHON_VERSION == 2 and type(resFile) == unicode):\n            anns = json.load(open(resFile))\n        elif type(resFile) == np.ndarray:\n            anns = self.loadNumpyAnnotations(resFile)\n        else:\n            anns = resFile\n        assert type(anns) == list, 'results in not an array of objects'\n        annsVidIds = [ann['video_id'] for ann in anns]\n        assert set(annsVidIds) == (set(annsVidIds) & set(self.getVidIds())), \\\n               'Results do not correspond to current coco set'\n        if 'segmentations' in anns[0]:\n            res.dataset['categories'] = copy.deepcopy(self.dataset['categories'])\n            for id, ann in enumerate(anns):\n                ann['areas'] = []\n                if not 'bboxes' in ann:\n                    ann['bboxes'] = []\n                for seg in ann['segmentations']:\n                    # now only support compressed RLE format as segmentation results\n                    if seg:\n                        ann['areas'].append(maskUtils.area(seg))\n                        if len(ann['bboxes']) < len(ann['areas']):\n                            ann['bboxes'].append(maskUtils.toBbox(seg))\n                    else:\n                        ann['areas'].append(None)\n                        if len(ann['bboxes']) < len(ann['areas']):\n                            ann['bboxes'].append(None)\n                ann['id'] = id+1\n                l = [a for a in ann['areas'] if a]\n                if len(l)==0:\n                  ann['avg_area'] = 0\n                else:\n                  ann['avg_area'] = np.array(l).mean() \n                ann['iscrowd'] = 0\n        print('DONE (t={:0.2f}s)'.format(time.time()- tic))\n\n        res.dataset['annotations'] = anns\n        res.createIndex()\n        return res\n\n    def annToRLE(self, ann, frameId):\n        \"\"\"\n        Convert annotation which can be polygons, uncompressed RLE to RLE.\n        :return: binary mask (numpy 2D array)\n        \"\"\"\n        t = self.vids[ann['video_id']]\n        h, w = t['height'], t['width']\n        segm = ann['segmentations'][frameId]\n        if type(segm) == list:\n            # polygon -- a single object might consist of multiple parts\n            # we merge all parts into one mask rle code\n            rles = maskUtils.frPyObjects(segm, h, w)\n            rle = maskUtils.merge(rles)\n        elif type(segm['counts']) == list:\n            # uncompressed RLE\n            rle = maskUtils.frPyObjects(segm, h, w)\n        else:\n            # rle\n            rle = segm\n        return rle\n\n    def annToMask(self, ann, frameId):\n        \"\"\"\n        Convert annotation which can be polygons, uncompressed RLE, or RLE to binary mask.\n        :return: binary mask (numpy 2D array)\n        \"\"\"\n        rle = self.annToRLE(ann, frameId)\n        m = maskUtils.decode(rle)\n        return m\n"
  },
  {
    "path": "utils/d2_datasets/ytvis_api/ytvoseval.py",
    "content": "__author__ = 'ychfan'\n\nimport numpy as np\nimport datetime\nimport time\nfrom collections import defaultdict\nfrom pycocotools import mask as maskUtils\nimport copy\n\nclass YTVOSeval:\n    # Interface for evaluating video instance segmentation on the YouTubeVIS dataset.\n    #\n    # The usage for YTVOSeval is as follows:\n    #  cocoGt=..., cocoDt=...       # load dataset and results\n    #  E = YTVOSeval(cocoGt,cocoDt); # initialize YTVOSeval object\n    #  E.params.recThrs = ...;      # set parameters as desired\n    #  E.evaluate();                # run per image evaluation\n    #  E.accumulate();              # accumulate per image results\n    #  E.summarize();               # display summary metrics of results\n    # For example usage see evalDemo.m and http://mscoco.org/.\n    #\n    # The evaluation parameters are as follows (defaults in brackets):\n    #  imgIds     - [all] N img ids to use for evaluation\n    #  catIds     - [all] K cat ids to use for evaluation\n    #  iouThrs    - [.5:.05:.95] T=10 IoU thresholds for evaluation\n    #  recThrs    - [0:.01:1] R=101 recall thresholds for evaluation\n    #  areaRng    - [...] A=4 object area ranges for evaluation\n    #  maxDets    - [1 10 100] M=3 thresholds on max detections per image\n    #  iouType    - ['segm'] set iouType to 'segm', 'bbox' or 'keypoints'\n    #  iouType replaced the now DEPRECATED useSegm parameter.\n    #  useCats    - [1] if true use category labels for evaluation\n    # Note: if useCats=0 category labels are ignored as in proposal scoring.\n    # Note: multiple areaRngs [Ax2] and maxDets [Mx1] can be specified.\n    #\n    # evaluate(): evaluates detections on every image and every category and\n    # concats the results into the \"evalImgs\" with fields:\n    #  dtIds      - [1xD] id for each of the D detections (dt)\n    #  gtIds      - [1xG] id for each of the G ground truths (gt)\n    #  dtMatches  - [TxD] matching gt id at each IoU or 0\n    #  gtMatches  - [TxG] matching dt id at each IoU or 0\n    #  dtScores   - [1xD] confidence of each dt\n    #  gtIgnore   - [1xG] ignore flag for each gt\n    #  dtIgnore   - [TxD] ignore flag for each dt at each IoU\n    #\n    # accumulate(): accumulates the per-image, per-category evaluation\n    # results in \"evalImgs\" into the dictionary \"eval\" with fields:\n    #  params     - parameters used for evaluation\n    #  date       - date evaluation was performed\n    #  counts     - [T,R,K,A,M] parameter dimensions (see above)\n    #  precision  - [TxRxKxAxM] precision for every evaluation setting\n    #  recall     - [TxKxAxM] max recall for every evaluation setting\n    # Note: precision and recall==-1 for settings with no gt objects.\n    #\n    # See also coco, mask, pycocoDemo, pycocoEvalDemo\n    #\n    # Microsoft COCO Toolbox.      version 2.0\n    # Data, paper, and tutorials available at:  http://mscoco.org/\n    # Code written by Piotr Dollar and Tsung-Yi Lin, 2015.\n    # Licensed under the Simplified BSD License [see coco/license.txt]\n    def __init__(self, cocoGt=None, cocoDt=None, iouType='segm'):\n        '''\n        Initialize CocoEval using coco APIs for gt and dt\n        :param cocoGt: coco object with ground truth annotations\n        :param cocoDt: coco object with detection results\n        :return: None\n        '''\n        if not iouType:\n            print('iouType not specified. use default iouType segm')\n        self.cocoGt   = cocoGt              # ground truth COCO API\n        self.cocoDt   = cocoDt              # detections COCO API\n        self.params   = {}                  # evaluation parameters\n        self.evalVids = defaultdict(list)   # per-image per-category evaluation results [KxAxI] elements\n        self.eval     = {}                  # accumulated evaluation results\n        self._gts = defaultdict(list)       # gt for evaluation\n        self._dts = defaultdict(list)       # dt for evaluation\n        self.params = Params(iouType=iouType) # parameters\n        self._paramsEval = {}               # parameters for evaluation\n        self.stats = []                     # result summarization\n        self.ious = {}                      # ious between all gts and dts\n        if not cocoGt is None:\n            self.params.vidIds = sorted(cocoGt.getVidIds())\n            self.params.catIds = sorted(cocoGt.getCatIds())\n\n\n    def _prepare(self):\n        '''\n        Prepare ._gts and ._dts for evaluation based on params\n        :return: None\n        '''\n        def _toMask(anns, coco):\n            # modify ann['segmentation'] by reference\n            for ann in anns:\n                for i, a in enumerate(ann['segmentations']):\n                    if a:\n                        rle = coco.annToRLE(ann, i)\n                        ann['segmentations'][i] = rle\n                l = [a for a in ann['areas'] if a]\n                if len(l)==0:\n                  ann['avg_area'] = 0\n                else:\n                  ann['avg_area'] = np.array(l).mean() \n        p = self.params\n        if p.useCats:\n            gts=self.cocoGt.loadAnns(self.cocoGt.getAnnIds(vidIds=p.vidIds, catIds=p.catIds))\n            dts=self.cocoDt.loadAnns(self.cocoDt.getAnnIds(vidIds=p.vidIds, catIds=p.catIds))\n        else:\n            gts=self.cocoGt.loadAnns(self.cocoGt.getAnnIds(vidIds=p.vidIds))\n            dts=self.cocoDt.loadAnns(self.cocoDt.getAnnIds(vidIds=p.vidIds))\n\n        # convert ground truth to mask if iouType == 'segm'\n        if p.iouType == 'segm':\n            _toMask(gts, self.cocoGt)\n            _toMask(dts, self.cocoDt)\n        # set ignore flag\n        for gt in gts:\n            gt['ignore'] = gt['ignore'] if 'ignore' in gt else 0\n            gt['ignore'] = 'iscrowd' in gt and gt['iscrowd']\n            if p.iouType == 'keypoints':\n                gt['ignore'] = (gt['num_keypoints'] == 0) or gt['ignore']\n        self._gts = defaultdict(list)       # gt for evaluation\n        self._dts = defaultdict(list)       # dt for evaluation\n        for gt in gts:\n            self._gts[gt['video_id'], gt['category_id']].append(gt)\n        for dt in dts:\n            self._dts[dt['video_id'], dt['category_id']].append(dt)\n        self.evalVids = defaultdict(list)   # per-image per-category evaluation results\n        self.eval     = {}                  # accumulated evaluation results\n\n    def evaluate(self):\n        '''\n        Run per image evaluation on given images and store results (a list of dict) in self.evalVids\n        :return: None\n        '''\n        tic = time.time()\n        print('Running per image evaluation...')\n        p = self.params\n        # add backward compatibility if useSegm is specified in params\n        if not p.useSegm is None:\n            p.iouType = 'segm' if p.useSegm == 1 else 'bbox'\n            print('useSegm (deprecated) is not None. Running {} evaluation'.format(p.iouType))\n        print('Evaluate annotation type *{}*'.format(p.iouType))\n        p.vidIds = list(np.unique(p.vidIds))\n        if p.useCats:\n            p.catIds = list(np.unique(p.catIds))\n        p.maxDets = sorted(p.maxDets)\n        self.params=p\n\n        self._prepare()\n        # loop through images, area range, max detection number\n        catIds = p.catIds if p.useCats else [-1]\n\n        if p.iouType == 'segm' or p.iouType == 'bbox':\n            computeIoU = self.computeIoU\n        elif p.iouType == 'keypoints':\n            computeIoU = self.computeOks\n        self.ious = {(vidId, catId): computeIoU(vidId, catId) \\\n                        for vidId in p.vidIds\n                        for catId in catIds}\n\n        evaluateVid = self.evaluateVid\n        maxDet = p.maxDets[-1]\n        \n        \n        self.evalImgs = [evaluateVid(vidId, catId, areaRng, maxDet)\n                 for catId in catIds\n                 for areaRng in p.areaRng\n                 for vidId in p.vidIds\n             ]\n        self._paramsEval = copy.deepcopy(self.params)\n        toc = time.time()\n        print('DONE (t={:0.2f}s).'.format(toc-tic))\n\n    def computeIoU(self, vidId, catId):\n        p = self.params\n        if p.useCats:\n            gt = self._gts[vidId,catId]\n            dt = self._dts[vidId,catId]\n        else:\n            gt = [_ for cId in p.catIds for _ in self._gts[vidId,cId]]\n            dt = [_ for cId in p.catIds for _ in self._dts[vidId,cId]]\n        if len(gt) == 0 and len(dt) ==0:\n            return []\n        inds = np.argsort([-d['score'] for d in dt], kind='mergesort')\n        dt = [dt[i] for i in inds]\n        if len(dt) > p.maxDets[-1]:\n            dt=dt[0:p.maxDets[-1]]\n\n        if p.iouType == 'segm':\n            g = [g['segmentations'] for g in gt]\n            d = [d['segmentations'] for d in dt]\n        elif p.iouType == 'bbox':\n            g = [g['bboxes'] for g in gt]\n            d = [d['bboxes'] for d in dt]\n        else:\n            raise Exception('unknown iouType for iou computation')\n\n        # compute iou between each dt and gt region\n        iscrowd = [int(o['iscrowd']) for o in gt]\n        #ious = maskUtils.iou(d,g,iscrowd)\n        def iou_seq(d_seq, g_seq):\n            i = .0\n            u = .0\n            for d, g in zip(d_seq, g_seq):\n                if d and g:\n                    i += maskUtils.area(maskUtils.merge([d, g], True))\n                    u += maskUtils.area(maskUtils.merge([d, g], False))\n                elif not d and g:\n                    u += maskUtils.area(g)\n                elif d and not g:\n                    u += maskUtils.area(d)\n            if not u > .0:\n                print(\"Mask sizes in video {} and category {} may not match!\".format(vidId, catId))\n            iou = i / u if u > .0 else .0\n            return iou\n        ious = np.zeros([len(d), len(g)])\n        for i, j in np.ndindex(ious.shape):\n            ious[i, j] = iou_seq(d[i], g[j])\n        #print(vidId, catId, ious.shape, ious)\n        return ious\n\n    def computeOks(self, imgId, catId):\n        p = self.params\n        # dimention here should be Nxm\n        gts = self._gts[imgId, catId]\n        dts = self._dts[imgId, catId]\n        inds = np.argsort([-d['score'] for d in dts], kind='mergesort')\n        dts = [dts[i] for i in inds]\n        if len(dts) > p.maxDets[-1]:\n            dts = dts[0:p.maxDets[-1]]\n        # if len(gts) == 0 and len(dts) == 0:\n        if len(gts) == 0 or len(dts) == 0:\n            return []\n        ious = np.zeros((len(dts), len(gts)))\n        sigmas = np.array([.26, .25, .25, .35, .35, .79, .79, .72, .72, .62,.62, 1.07, 1.07, .87, .87, .89, .89])/10.0\n        vars = (sigmas * 2)**2\n        k = len(sigmas)\n        # compute oks between each detection and ground truth object\n        for j, gt in enumerate(gts):\n            # create bounds for ignore regions(double the gt bbox)\n            g = np.array(gt['keypoints'])\n            xg = g[0::3]; yg = g[1::3]; vg = g[2::3]\n            k1 = np.count_nonzero(vg > 0)\n            bb = gt['bbox']\n            x0 = bb[0] - bb[2]; x1 = bb[0] + bb[2] * 2\n            y0 = bb[1] - bb[3]; y1 = bb[1] + bb[3] * 2\n            for i, dt in enumerate(dts):\n                d = np.array(dt['keypoints'])\n                xd = d[0::3]; yd = d[1::3]\n                if k1>0:\n                    # measure the per-keypoint distance if keypoints visible\n                    dx = xd - xg\n                    dy = yd - yg\n                else:\n                    # measure minimum distance to keypoints in (x0,y0) & (x1,y1)\n                    z = np.zeros((k))\n                    dx = np.max((z, x0-xd),axis=0)+np.max((z, xd-x1),axis=0)\n                    dy = np.max((z, y0-yd),axis=0)+np.max((z, yd-y1),axis=0)\n                e = (dx**2 + dy**2) / vars / (gt['avg_area']+np.spacing(1)) / 2\n                if k1 > 0:\n                    e=e[vg > 0]\n                ious[i, j] = np.sum(np.exp(-e)) / e.shape[0]\n        return ious\n\n    def evaluateVid(self, vidId, catId, aRng, maxDet):\n        '''\n        perform evaluation for single category and image\n        :return: dict (single image results)\n        '''\n        p = self.params\n        if p.useCats:\n            gt = self._gts[vidId,catId]\n            dt = self._dts[vidId,catId]\n        else:\n            gt = [_ for cId in p.catIds for _ in self._gts[vidId,cId]]\n            dt = [_ for cId in p.catIds for _ in self._dts[vidId,cId]]\n        if len(gt) == 0 and len(dt) ==0:\n            return None\n\n        for g in gt:\n            if g['ignore'] or (g['avg_area']<aRng[0] or g['avg_area']>aRng[1]):\n                g['_ignore'] = 1\n            else:\n                g['_ignore'] = 0\n\n        # sort dt highest score first, sort gt ignore last\n        gtind = np.argsort([g['_ignore'] for g in gt], kind='mergesort')\n        gt = [gt[i] for i in gtind]\n        dtind = np.argsort([-d['score'] for d in dt], kind='mergesort')\n        dt = [dt[i] for i in dtind[0:maxDet]]\n        iscrowd = [int(o['iscrowd']) for o in gt]\n        # load computed ious\n        ious = self.ious[vidId, catId][:, gtind] if len(self.ious[vidId, catId]) > 0 else self.ious[vidId, catId]\n\n        T = len(p.iouThrs)\n        G = len(gt)\n        D = len(dt)\n        gtm  = np.zeros((T,G))\n        dtm  = np.zeros((T,D))\n        gtIg = np.array([g['_ignore'] for g in gt])\n        dtIg = np.zeros((T,D))\n        if not len(ious)==0:\n            for tind, t in enumerate(p.iouThrs):\n                for dind, d in enumerate(dt):\n                    # information about best match so far (m=-1 -> unmatched)\n                    iou = min([t,1-1e-10])\n                    m   = -1\n                    for gind, g in enumerate(gt):\n                        # if this gt already matched, and not a crowd, continue\n                        if gtm[tind,gind]>0 and not iscrowd[gind]:\n                            continue\n                        # if dt matched to reg gt, and on ignore gt, stop\n                        if m>-1 and gtIg[m]==0 and gtIg[gind]==1:\n                            break\n                        # continue to next gt unless better match made\n                        if ious[dind,gind] < iou:\n                            continue\n                        # if match successful and best so far, store appropriately\n                        iou=ious[dind,gind]\n                        m=gind\n                    # if match made store id of match for both dt and gt\n                    if m ==-1:\n                        continue\n                    dtIg[tind,dind] = gtIg[m]\n                    dtm[tind,dind]  = gt[m]['id']\n                    gtm[tind,m]     = d['id']\n        # set unmatched detections outside of area range to ignore\n        a = np.array([d['avg_area']<aRng[0] or d['avg_area']>aRng[1] for d in dt]).reshape((1, len(dt)))\n        dtIg = np.logical_or(dtIg, np.logical_and(dtm==0, np.repeat(a,T,0)))\n        # store results for given image and category\n        return {\n                'video_id':     vidId,\n                'category_id':  catId,\n                'aRng':         aRng,\n                'maxDet':       maxDet,\n                'dtIds':        [d['id'] for d in dt],\n                'gtIds':        [g['id'] for g in gt],\n                'dtMatches':    dtm,\n                'gtMatches':    gtm,\n                'dtScores':     [d['score'] for d in dt],\n                'gtIgnore':     gtIg,\n                'dtIgnore':     dtIg,\n            }\n\n    def accumulate(self, p = None):\n        '''\n        Accumulate per image evaluation results and store the result in self.eval\n        :param p: input params for evaluation\n        :return: None\n        '''\n        print('Accumulating evaluation results...')\n        tic = time.time()\n        if not self.evalImgs:\n            print('Please run evaluate() first')\n        # allows input customized parameters\n        if p is None:\n            p = self.params\n        p.catIds = p.catIds if p.useCats == 1 else [-1]\n        T           = len(p.iouThrs)\n        R           = len(p.recThrs)\n        K           = len(p.catIds) if p.useCats else 1\n        A           = len(p.areaRng)\n        M           = len(p.maxDets)\n        precision   = -np.ones((T,R,K,A,M)) # -1 for the precision of absent categories\n        recall      = -np.ones((T,K,A,M))\n        scores      = -np.ones((T,R,K,A,M))\n\n        # create dictionary for future indexing\n        _pe = self._paramsEval\n        catIds = _pe.catIds if _pe.useCats else [-1]\n        setK = set(catIds)\n        setA = set(map(tuple, _pe.areaRng))\n        setM = set(_pe.maxDets)\n        setI = set(_pe.vidIds)\n        # get inds to evaluate\n        k_list = [n for n, k in enumerate(p.catIds)  if k in setK]\n        m_list = [m for n, m in enumerate(p.maxDets) if m in setM]\n        a_list = [n for n, a in enumerate(map(lambda x: tuple(x), p.areaRng)) if a in setA]\n        i_list = [n for n, i in enumerate(p.vidIds)  if i in setI]\n        I0 = len(_pe.vidIds)\n        A0 = len(_pe.areaRng)\n        # retrieve E at each category, area range, and max number of detections\n        for k, k0 in enumerate(k_list):\n            Nk = k0*A0*I0\n            for a, a0 in enumerate(a_list):\n                Na = a0*I0\n                for m, maxDet in enumerate(m_list):\n                    E = [self.evalImgs[Nk + Na + i] for i in i_list]\n                    E = [e for e in E if not e is None]\n                    if len(E) == 0:\n                        continue\n                    dtScores = np.concatenate([e['dtScores'][0:maxDet] for e in E])\n\n                    # different sorting method generates slightly different results.\n                    # mergesort is used to be consistent as Matlab implementation.\n                    inds = np.argsort(-dtScores, kind='mergesort')\n                    dtScoresSorted = dtScores[inds]\n\n                    dtm  = np.concatenate([e['dtMatches'][:,0:maxDet] for e in E], axis=1)[:,inds]\n                    dtIg = np.concatenate([e['dtIgnore'][:,0:maxDet]  for e in E], axis=1)[:,inds]\n                    gtIg = np.concatenate([e['gtIgnore'] for e in E])\n                    npig = np.count_nonzero(gtIg==0 )\n                    if npig == 0:\n                        continue\n                    tps = np.logical_and(               dtm,  np.logical_not(dtIg) )\n                    fps = np.logical_and(np.logical_not(dtm), np.logical_not(dtIg) )\n\n                    tp_sum = np.cumsum(tps, axis=1).astype(dtype=np.float)\n                    fp_sum = np.cumsum(fps, axis=1).astype(dtype=np.float)\n                    for t, (tp, fp) in enumerate(zip(tp_sum, fp_sum)):\n                        tp = np.array(tp)\n                        fp = np.array(fp)\n                        nd = len(tp)\n                        rc = tp / npig\n                        pr = tp / (fp+tp+np.spacing(1))\n                        q  = np.zeros((R,))\n                        ss = np.zeros((R,))\n\n                        if nd:\n                            recall[t,k,a,m] = rc[-1]\n                        else:\n                            recall[t,k,a,m] = 0\n\n                        # numpy is slow without cython optimization for accessing elements\n                        # use python array gets significant speed improvement\n                        pr = pr.tolist(); q = q.tolist()\n\n                        for i in range(nd-1, 0, -1):\n                            if pr[i] > pr[i-1]:\n                                pr[i-1] = pr[i]\n\n                        inds = np.searchsorted(rc, p.recThrs, side='left')\n                        try:\n                            for ri, pi in enumerate(inds):\n                                q[ri] = pr[pi]\n                                ss[ri] = dtScoresSorted[pi]\n                        except:\n                            pass\n                        precision[t,:,k,a,m] = np.array(q)\n                        scores[t,:,k,a,m] = np.array(ss)\n        self.eval = {\n            'params': p,\n            'counts': [T, R, K, A, M],\n            'date': datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'),\n            'precision': precision,\n            'recall':   recall,\n            'scores': scores,\n        }\n        toc = time.time()\n        print('DONE (t={:0.2f}s).'.format( toc-tic))\n\n    def summarize(self):\n        '''\n        Compute and display summary metrics for evaluation results.\n        Note this functin can *only* be applied on the default parameter setting\n        '''\n        def _summarize( ap=1, iouThr=None, areaRng='all', maxDets=100 ):\n            p = self.params\n            iStr = ' {:<18} {} @[ IoU={:<9} | area={:>6s} | maxDets={:>3d} ] = {:0.3f}'\n            titleStr = 'Average Precision' if ap == 1 else 'Average Recall'\n            typeStr = '(AP)' if ap==1 else '(AR)'\n            iouStr = '{:0.2f}:{:0.2f}'.format(p.iouThrs[0], p.iouThrs[-1]) \\\n                if iouThr is None else '{:0.2f}'.format(iouThr)\n\n            aind = [i for i, aRng in enumerate(p.areaRngLbl) if aRng == areaRng]\n            mind = [i for i, mDet in enumerate(p.maxDets) if mDet == maxDets]\n            if ap == 1:\n                # dimension of precision: [TxRxKxAxM]\n                s = self.eval['precision']\n                # IoU\n                if iouThr is not None:\n                    t = np.where(iouThr == p.iouThrs)[0]\n                    s = s[t]\n                s = s[:,:,:,aind,mind]\n            else:\n                # dimension of recall: [TxKxAxM]\n                s = self.eval['recall']\n                if iouThr is not None:\n                    t = np.where(iouThr == p.iouThrs)[0]\n                    s = s[t]\n                s = s[:,:,aind,mind]\n            if len(s[s>-1])==0:\n                mean_s = -1\n            else:\n                mean_s = np.mean(s[s>-1])\n            print(iStr.format(titleStr, typeStr, iouStr, areaRng, maxDets, mean_s))\n            return mean_s\n        def _summarizeDets():\n            stats = np.zeros((12,))\n            stats[0] = _summarize(1)\n            stats[1] = _summarize(1, iouThr=.5, maxDets=self.params.maxDets[2])\n            stats[2] = _summarize(1, iouThr=.75, maxDets=self.params.maxDets[2])\n            stats[3] = _summarize(1, areaRng='small', maxDets=self.params.maxDets[2])\n            stats[4] = _summarize(1, areaRng='medium', maxDets=self.params.maxDets[2])\n            stats[5] = _summarize(1, areaRng='large', maxDets=self.params.maxDets[2])\n            stats[6] = _summarize(0, maxDets=self.params.maxDets[0])\n            stats[7] = _summarize(0, maxDets=self.params.maxDets[1])\n            stats[8] = _summarize(0, maxDets=self.params.maxDets[2])\n            stats[9] = _summarize(0, areaRng='small', maxDets=self.params.maxDets[2])\n            stats[10] = _summarize(0, areaRng='medium', maxDets=self.params.maxDets[2])\n            stats[11] = _summarize(0, areaRng='large', maxDets=self.params.maxDets[2])\n            return stats\n        def _summarizeKps():\n            stats = np.zeros((10,))\n            stats[0] = _summarize(1, maxDets=20)\n            stats[1] = _summarize(1, maxDets=20, iouThr=.5)\n            stats[2] = _summarize(1, maxDets=20, iouThr=.75)\n            stats[3] = _summarize(1, maxDets=20, areaRng='medium')\n            stats[4] = _summarize(1, maxDets=20, areaRng='large')\n            stats[5] = _summarize(0, maxDets=20)\n            stats[6] = _summarize(0, maxDets=20, iouThr=.5)\n            stats[7] = _summarize(0, maxDets=20, iouThr=.75)\n            stats[8] = _summarize(0, maxDets=20, areaRng='medium')\n            stats[9] = _summarize(0, maxDets=20, areaRng='large')\n            return stats\n        if not self.eval:\n            raise Exception('Please run accumulate() first')\n        iouType = self.params.iouType\n        if iouType == 'segm' or iouType == 'bbox':\n            summarize = _summarizeDets\n        elif iouType == 'keypoints':\n            summarize = _summarizeKps\n        self.stats = summarize()\n\n    def __str__(self):\n        self.summarize()\n\nclass Params:\n    '''\n    Params for coco evaluation api\n    '''\n    def setDetParams(self):\n        self.vidIds = []\n        self.catIds = []\n        # np.arange causes trouble.  the data point on arange is slightly larger than the true value\n        #self.iouThrs = np.linspace(.5, 0.95, np.round((0.95 - .5) / .05) + 1, endpoint=True)\n        #self.recThrs = np.linspace(.0, 1.00, np.round((1.00 - .0) / .01) + 1, endpoint=True)\n        self.iouThrs = np.linspace(.5, 0.95, int(np.round((0.95 - .5) / .05)) + 1, endpoint=True)\n        self.recThrs = np.linspace(.0, 1.00, int(np.round((1.00 - .0) / .01)) + 1, endpoint=True)\n        self.maxDets = [1, 10, 100]\n        self.areaRng = [[0 ** 2, 1e5 ** 2], [0 ** 2, 128 ** 2], [ 128 ** 2, 256 ** 2], [256 ** 2, 1e5 ** 2]]\n        self.areaRngLbl = ['all', 'small', 'medium', 'large']\n        self.useCats = 1\n\n    def setKpParams(self):\n        self.vidIds = []\n        self.catIds = []\n        # np.arange causes trouble.  the data point on arange is slightly larger than the true value\n        self.iouThrs = np.linspace(.5, 0.95, np.round((0.95 - .5) / .05) + 1, endpoint=True)\n        self.recThrs = np.linspace(.0, 1.00, np.round((1.00 - .0) / .01) + 1, endpoint=True)\n        self.maxDets = [20]\n        self.areaRng = [[0 ** 2, 1e5 ** 2], [32 ** 2, 96 ** 2], [96 ** 2, 1e5 ** 2]]\n        self.areaRngLbl = ['all', 'medium', 'large']\n        self.useCats = 1\n\n    def __init__(self, iouType='segm'):\n        if iouType == 'segm' or iouType == 'bbox':\n            self.setDetParams()\n        elif iouType == 'keypoints':\n            self.setKpParams()\n        else:\n            raise Exception('iouType not supported')\n        self.iouType = iouType\n        # useSegm is deprecated\n        self.useSegm = None\n"
  },
  {
    "path": "utils/data_processing.py",
    "content": "import glob\nimport json\nimport os\n\nimport cv2\nimport numpy as np\n\n\ndef get_mask_from_json(json_path, img):\n    try:\n        with open(json_path, \"r\") as r:\n            anno = json.loads(r.read())\n    except:\n        with open(json_path, \"r\", encoding=\"cp1252\") as r:\n            anno = json.loads(r.read())\n\n    inform = anno[\"shapes\"]\n    comments = anno[\"text\"]\n    is_sentence = anno[\"is_sentence\"]\n\n    height, width = img.shape[:2]\n\n    ### sort polies by area\n    area_list = []\n    valid_poly_list = []\n    for i in inform:\n        label_id = i[\"label\"]\n        points = i[\"points\"]\n        if \"flag\" == label_id.lower():  ## meaningless deprecated annotations\n            continue\n\n        tmp_mask = np.zeros((height, width), dtype=np.uint8)\n        cv2.polylines(tmp_mask, np.array([points], dtype=np.int32), True, 1, 1)\n        cv2.fillPoly(tmp_mask, np.array([points], dtype=np.int32), 1)\n        tmp_area = tmp_mask.sum()\n\n        area_list.append(tmp_area)\n        valid_poly_list.append(i)\n\n    ### ground-truth mask\n    sort_index = np.argsort(area_list)[::-1].astype(np.int32)\n    sort_index = list(sort_index)\n    sort_inform = []\n    for s_idx in sort_index:\n        sort_inform.append(valid_poly_list[s_idx])\n\n    mask = np.zeros((height, width), dtype=np.uint8)\n    for i in sort_inform:\n        label_id = i[\"label\"]\n        points = i[\"points\"]\n\n        if \"ignore\" in label_id.lower():\n            label_value = 255  # ignored during evaluation\n        else:\n            label_value = 1  # target\n\n        cv2.polylines(mask, np.array([points], dtype=np.int32), True, label_value, 1)\n        cv2.fillPoly(mask, np.array([points], dtype=np.int32), label_value)\n\n    return mask, comments, is_sentence\n\n\nif __name__ == \"__main__\":\n    data_dir = \"./train\"\n    vis_dir = \"./vis\"\n\n    if not os.path.exists(vis_dir):\n        os.makedirs(vis_dir)\n\n    json_path_list = sorted(glob.glob(data_dir + \"/*.json\"))\n    for json_path in json_path_list:\n        img_path = json_path.replace(\".json\", \".jpg\")\n        img = cv2.imread(img_path)[:, :, ::-1]\n\n        # In generated mask, value 1 denotes valid target region, and value 255 stands for region ignored during evaluaiton.\n        mask, comments, is_sentence = get_mask_from_json(json_path, img)\n\n        ## visualization. Green for target, and red for ignore.\n        valid_mask = (mask == 1).astype(np.float32)[:, :, None]\n        ignore_mask = (mask == 255).astype(np.float32)[:, :, None]\n        vis_img = img * (1 - valid_mask) * (1 - ignore_mask) + (\n            (np.array([0, 255, 0]) * 0.6 + img * 0.4) * valid_mask\n            + (np.array([255, 0, 0]) * 0.6 + img * 0.4) * ignore_mask\n        )\n        vis_img = np.concatenate([img, vis_img], 1)\n        vis_path = os.path.join(\n            vis_dir, json_path.split(\"/\")[-1].replace(\".json\", \".jpg\")\n        )\n        cv2.imwrite(vis_path, vis_img[:, :, ::-1])\n        print(\"Visualization has been saved to: \", vis_path)\n"
  },
  {
    "path": "utils/dataset.py",
    "content": "import glob\nimport os\nimport os.path as osp\nimport random\n\nimport cv2\nimport numpy as np\nimport torch\nimport torch.nn.functional as F\nfrom pycocotools import mask\nfrom transformers import CLIPImageProcessor\n\nfrom model.llava import conversation as conversation_lib\n\nfrom model.llava.mm_utils import tokenizer_image_token\nfrom model.segment_anything.utils.transforms import ResizeLongestSide\n\nfrom .conversation import get_default_conv_template\nfrom .data_processing import get_mask_from_json\nfrom .reason_seg_dataset import ReasonSegDataset\nfrom .refer import REFER\nfrom .refer_seg_dataset import ReferSegDataset\nfrom .sem_seg_dataset import SemSegDataset\nfrom .utils import (\n    DEFAULT_IM_END_TOKEN, DEFAULT_IM_START_TOKEN,\n    DEFAULT_IMAGE_TOKEN, DEFAULT_VIDEO_TOKEN, IGNORE_INDEX, IMAGE_TOKEN_INDEX, \n    convert2imagesplit, UNIFIED_SHORT_QUESTION_LIST, UNIFIED_LONG_QUESTION_LIST\n)\nfrom .vqa_dataset import VQADataset\nfrom .chatunivi_dataset import ChatUniviDataset\nfrom .rvos_dataset import RVOSDataset\nfrom .random_list import get_random_list\nfrom .dataset_config import LISA_ROOT\n\n\ndef collate_fn(\n    batch, tokenizer=None, conv_type=\"llava_v1\", use_mm_start_end=True, local_rank=-1\n):\n    image_path_list = []\n    images_list = []\n    images_clip_list = []\n    conversation_list = []\n    masks_list = []\n    label_list = []\n    resize_list = []\n    questions_list = []\n    sampled_classes_list = []\n    offset_list = [0]\n    cnt = 0\n    inferences = []\n    num_frame_list = []\n    num_conv_list = []\n    for (\n        image_path,\n        images,\n        images_clip,\n        conversations,\n        masks,\n        label,\n        resize,\n        questions,\n        sampled_classes,\n        inference,\n    ) in batch:\n        image_path_list.append(image_path)\n\n        if images.ndim == 3:\n            images = images.unsqueeze(0)\n        assert images.ndim == 4\n        images_list.append(images)\n\n        if images_clip.ndim == 3:\n            images_clip = images_clip.unsqueeze(0)\n        assert images_clip.ndim == 4\n        images_clip_list.append(images_clip)\n        num_frame = images_clip.shape[0]\n        num_frame_list.append(num_frame)\n\n        conversation_list.extend(conversations)\n        label_list.append(label)\n        num_conv_list.append(len(conversations))\n\n\n        if masks.ndim == 3:  # [num_classes, H, W]\n            if masks.shape[0] == 0:  # [0, H, W] -> [num_classes, 0, H, W]\n                masks = torch.stack([masks, ] * len(conversations), dim=0).float()\n            else: # [num_classes, H, W] -> [num_classes, 1, H, W]\n                masks = masks.unsqueeze(1).float()\n        assert masks.ndim == 4\n        masks_list.append(masks.float())\n\n        resize_list.append(resize)\n        questions_list.append(questions)\n        sampled_classes_list.append(sampled_classes)\n\n        cnt += len(conversations)\n        offset_list.append(cnt)\n        inferences.append(inference)\n\n    if use_mm_start_end:\n        # replace <image> token\n        for i in range(len(conversation_list)):\n            replace_token = DEFAULT_IMAGE_TOKEN\n            replace_token = (\n                DEFAULT_IM_START_TOKEN + replace_token + DEFAULT_IM_END_TOKEN\n            )\n            conversation_list[i] = conversation_list[i].replace(\n                DEFAULT_IMAGE_TOKEN, replace_token\n            )\n\n    for i in range(len(conversation_list)):\n        if DEFAULT_VIDEO_TOKEN in conversation_list[i]:\n            if conversation_list[i].count(DEFAULT_VIDEO_TOKEN) == 1:\n                replace_video_token = DEFAULT_IMAGE_TOKEN * num_frame\n                conversation_list[i] = conversation_list[i].replace(DEFAULT_VIDEO_TOKEN, replace_video_token)\n            else:\n                raise ValueError(\"num video token > 1: \", conversation_list[i].count(DEFAULT_VIDEO_TOKEN))\n\n\n    input_ids = [\n        tokenizer_image_token(prompt, tokenizer, return_tensors=\"pt\")\n        for prompt in conversation_list\n    ]\n    input_ids = torch.nn.utils.rnn.pad_sequence(\n        input_ids, batch_first=True, padding_value=tokenizer.pad_token_id\n    )\n    attention_masks = input_ids.ne(tokenizer.pad_token_id)\n\n    conv = conversation_lib.default_conversation.copy()\n    targets = input_ids.clone()\n\n    if conv_type == \"llava_v1\":\n        sep = conv.sep + conv.roles[1] + \": \"\n    else:\n        sep = \"[/INST] \"\n    for conversation, target in zip(conversation_list, targets):\n        total_len = int(target.ne(tokenizer.pad_token_id).sum())\n\n        rounds = conversation.split(conv.sep2)\n        cur_len = 1\n        target[:cur_len] = IGNORE_INDEX\n        for i, rou in enumerate(rounds):\n            if rou == \"\":\n                break\n\n            parts = rou.split(sep)\n            # if len(parts) != 2:\n            #     break\n            assert len(parts) == 2, (len(parts), rou)\n            parts[0] += sep\n\n            if DEFAULT_IMAGE_TOKEN in conversation:\n                round_len = len(tokenizer_image_token(rou, tokenizer))\n                instruction_len = len(tokenizer_image_token(parts[0], tokenizer)) - 2\n            else:\n                round_len = len(tokenizer(rou).input_ids)\n                instruction_len = len(tokenizer(parts[0]).input_ids) - 2\n\n            target[cur_len : cur_len + instruction_len] = IGNORE_INDEX\n\n            cur_len += round_len\n        target[cur_len:] = IGNORE_INDEX\n\n        if cur_len < tokenizer.model_max_length:\n            assert cur_len == total_len\n\n    return {\n        \"image_paths\": image_path_list,\n        \"images\": images_list, #BS : T(or 1 for chatunivi) * 3 * H * W\n        \"images_clip\": images_clip_list, #BS : T * 3 * H * W\n        \"input_ids\": input_ids,\n        \"labels\": targets,\n        \"attention_masks\": attention_masks,\n        \"masks_list\": masks_list, # [Conv*Frame*H*W, ...]\n        \"label_list\": label_list, # [H*W, ...]\n        \"resize_list\": resize_list,\n        \"offset\": torch.LongTensor(offset_list), #[0, num_conv0, num_conv1, ...]\n        \"questions_list\": questions_list,\n        \"sampled_classes_list\": sampled_classes_list,\n        \"inference\": inferences[0],\n        \"conversation_list\": conversation_list,\n        \"num_frame_list\": num_frame_list,\n        \"num_conv_list\": num_conv_list,\n    }\n\n\nclass HybridDataset(torch.utils.data.Dataset):\n    pixel_mean = torch.Tensor([123.675, 116.28, 103.53]).view(-1, 1, 1)\n    pixel_std = torch.Tensor([58.395, 57.12, 57.375]).view(-1, 1, 1)\n    img_size = 1024\n    ignore_label = 255\n\n    def __init__(\n        self,\n        tokenizer,\n        vision_tower,\n        samples_per_epoch=500 * 8 * 2 * 10,\n        precision: str = \"fp32\",\n        image_size: int = 224,\n        num_classes_per_sample: int = 3,\n        exclude_val=False,\n        dataset=\"sem_seg||refer_seg||vqa||reason_seg\",\n        sample_rate=[9, 3, 3, 1],\n        sem_seg_data=\"ade20k||cocostuff||partimagenet||pascal_part||paco_lvis||mapillary\",\n        refer_seg_data=\"refclef||refcoco||refcoco+||refcocog\",\n        vqa_data=\"llava_instruct_150k\",\n        reason_seg_data=\"ReasonSeg|train\",\n        rvos_seg_data=\"mevis_train||refytvos_train||davis17_train\",\n        rvos_sample_ratio='4000||15000||400',\n        rvos_num_frames_sample_range=\"6,12\",\n        rvos_sample_policy=\"uniform\",\n        univi_data_list = \"mimic||sqa||video\",\n        univi_data_ratio = \"1||1||1\",\n        univi_max_image_len = 64,\n        explanatory=0.1,\n        univi_sample_frame_range=\"10,12\",\n        balance_sample=True,\n    ):\n        self.exclude_val = exclude_val\n        self.dataset = dataset\n        self.samples_per_epoch = samples_per_epoch\n        self.explanatory = explanatory\n        self.num_classes_per_sample = num_classes_per_sample\n        sample_rate = np.array(sample_rate)\n        self.sample_rate = sample_rate / sample_rate.sum()\n\n        self.base_image_dir = base_image_dir = LISA_ROOT\n        self.image_size = image_size\n        self.tokenizer = tokenizer\n        self.precision = precision\n\n        self.datasets = dataset.split(\"||\")\n        self.num_datasets = len(self.datasets)\n\n        self.num_be_called = 0\n        if balance_sample:\n            self.dataset_sample_list = get_random_list(probabilities=self.sample_rate.tolist(), values=list(range(self.num_datasets)), length=samples_per_epoch)\n            chatunivi_sample_range = [int(i) for i in univi_sample_frame_range.split(',')]\n            chatunivi_range_length = chatunivi_sample_range[-1] - chatunivi_sample_range[0] + 1\n            self.chatunivi_sample_list = get_random_list(probabilities=[float(1/chatunivi_range_length) for _ in range(chatunivi_range_length)], values=list(range(chatunivi_sample_range[0],chatunivi_sample_range[-1]+1)), length=10000)\n            rvos_sample_range = [int(i) for i in rvos_num_frames_sample_range.split(',')]\n            rvos_range_length = rvos_sample_range[-1] - rvos_sample_range[0] + 1\n            self.rvos_sample_list = get_random_list(probabilities=[float(1/rvos_range_length) for _ in range(rvos_range_length)], values=list(range(rvos_sample_range[0],rvos_sample_range[-1]+1)), length=10000)\n        else:\n            self.dataset_sample_list = None\n            self.chatunivi_sample_list = []\n            self.rvos_sample_list = []\n        \n\n        self.all_datasets = []\n        for dataset in self.datasets:\n            if dataset == \"sem_seg\":\n                self.all_datasets.append(\n                    SemSegDataset(\n                        base_image_dir,\n                        tokenizer,\n                        vision_tower,\n                        samples_per_epoch,\n                        precision,\n                        image_size,\n                        num_classes_per_sample,\n                        exclude_val,\n                        sem_seg_data,\n                    )\n                )\n            elif dataset == \"refer_seg\":\n                self.all_datasets.append(\n                    ReferSegDataset(\n                        base_image_dir,\n                        tokenizer,\n                        vision_tower,\n                        samples_per_epoch,\n                        precision,\n                        image_size,\n                        num_classes_per_sample,\n                        exclude_val,\n                        refer_seg_data,\n                    )\n                )\n            elif dataset == \"vqa\":\n                self.all_datasets.append(\n                    VQADataset(\n                        base_image_dir,\n                        tokenizer,\n                        vision_tower,\n                        samples_per_epoch,\n                        precision,\n                        image_size,\n                        num_classes_per_sample,\n                        exclude_val,\n                        vqa_data,\n                    )\n                )\n            elif dataset == \"reason_seg\":\n                self.all_datasets.append(\n                    ReasonSegDataset(\n                        base_image_dir,\n                        tokenizer,\n                        vision_tower,\n                        samples_per_epoch,\n                        precision,\n                        image_size,\n                        num_classes_per_sample,\n                        exclude_val,\n                        reason_seg_data,\n                        explanatory,\n                    )\n                )\n            elif dataset == \"chatunivi\":\n                self.all_datasets.append(\n                    ChatUniviDataset(\n                        tokenizer                = tokenizer,\n                        vision_tower             = vision_tower,\n                        samples_per_epoch        = samples_per_epoch,\n                        precision                = precision,\n                        image_size               = image_size,\n                        univi_data_list          = univi_data_list,\n                        univi_data_ratio         = univi_data_ratio,\n                        univi_max_image_len      = univi_max_image_len,\n                        image_aspect_ratio       = 'pad',\n                        univi_sample_frame_range = univi_sample_frame_range,\n                        univi_sample_list        = self.chatunivi_sample_list,\n                    )\n                )\n            elif dataset == \"rvos\":            \n                self.all_datasets.append(\n                    RVOSDataset(\n                        tokenizer                = tokenizer,\n                        vision_tower             = vision_tower,\n                        samples_per_epoch        = samples_per_epoch,\n                        precision                = precision,\n                        image_size               = image_size,\n                        num_classes_per_sample   = num_classes_per_sample,\n                        num_frames_sample_range  = rvos_num_frames_sample_range,\n                        rvos_sample_policy       = rvos_sample_policy,\n                        rvos_seg_data            = rvos_seg_data,\n                        rvos_sample_ratio        = rvos_sample_ratio,\n                        rvos_sample_list         = self.rvos_sample_list,\n                    )\n                )\n\n    def __len__(self):\n        return self.samples_per_epoch\n\n    def __getitem__(self, idx):\n        self.num_be_called += 1\n        if self.dataset_sample_list == None:\n            ind = np.random.choice(list(range(len(self.datasets))), p=self.sample_rate)\n        else:\n            ind = self.dataset_sample_list[self.num_be_called % self.samples_per_epoch]\n        data = self.all_datasets[ind]\n        inference = False\n        return *data[0], inference\n\n\nclass ValDataset(torch.utils.data.Dataset):\n    pixel_mean   = torch.Tensor([123.675, 116.28, 103.53]).view(-1, 1, 1)\n    pixel_std    = torch.Tensor([58.395, 57.12, 57.375]).view(-1, 1, 1)\n    img_size     = 1024\n    ignore_label = 255\n\n    def __init__(\n        self,\n        base_image_dir,\n        tokenizer,\n        vision_tower,\n        val_dataset,\n        image_size=1024,\n    ):\n        self.base_image_dir = base_image_dir\n        splits = val_dataset.split(\"|\")\n        if len(splits) == 2:\n            ds, split = splits\n            images = glob.glob(\n                os.path.join(self.base_image_dir, \"reason_seg\", ds, split, \"*.jpg\")\n            )\n            self.images = images\n            self.data_type = \"reason_seg\"\n        elif len(splits) == 3:\n            ds, splitBy, split = splits\n            refer_api = REFER(osp.join(base_image_dir, 'refer_seg'), ds, splitBy)\n            ref_ids_val = refer_api.getRefIds(split=split)\n            images_ids_val = refer_api.getImgIds(ref_ids=ref_ids_val)\n            refs_val = refer_api.loadRefs(ref_ids=ref_ids_val)\n            refer_seg_ds = {}\n            refer_seg_ds[\"images\"] = []\n            loaded_images = refer_api.loadImgs(image_ids=images_ids_val)\n            for item in loaded_images:\n                item = item.copy()\n                if ds == \"refclef\":\n                    item[\"file_name\"] = os.path.join(\n                        osp.join(base_image_dir, 'refer_seg'), \n                        \"images/saiapr_tc-12\", \n                        item[\"file_name\"]\n                    )\n                elif ds in [\"refcoco\", \"refcoco+\", \"refcocog\", \"grefcoco\"]:\n                    item[\"file_name\"] = os.path.join(\n                        osp.join(base_image_dir, 'refer_seg'),\n                        \"images/mscoco/images/train2014\",\n                        item[\"file_name\"],\n                    )\n                refer_seg_ds[\"images\"].append(item)\n            refer_seg_ds[\"annotations\"] = refer_api.Anns  # anns_val\n\n            img2refs = {}\n            for ref in refs_val:\n                image_id = ref[\"image_id\"]\n                img2refs[image_id] = img2refs.get(image_id, []) + [\n                    ref,\n                ]\n            refer_seg_ds[\"img2refs\"] = img2refs\n            self.refer_seg_ds = refer_seg_ds\n            self.data_type = \"refer_seg\"\n\n        self.ds = ds\n        self.image_size = image_size\n        self.tokenizer = tokenizer\n        self.transform = ResizeLongestSide(image_size)\n        self.clip_image_processor = CLIPImageProcessor.from_pretrained(vision_tower)\n\n    def __len__(self):\n        if self.data_type == \"refer_seg\":\n            return len(self.refer_seg_ds[\"images\"])\n        else:\n            return len(self.images)\n\n    def preprocess(self, x: torch.Tensor) -> torch.Tensor:\n        \"\"\"Normalize pixel values and pad to a square input.\"\"\"\n        # Normalize colors\n        x = (x - self.pixel_mean) / self.pixel_std\n\n        # Pad\n        h, w = x.shape[-2:]\n        padh = self.img_size - h\n        padw = self.img_size - w\n        x = F.pad(x, (0, padw, 0, padh))\n        return x\n\n    def __getitem__(self, idx):\n        if self.data_type == \"refer_seg\":\n            refer_seg_ds = self.refer_seg_ds\n            images = refer_seg_ds[\"images\"]\n            annotations = refer_seg_ds[\"annotations\"]\n            img2refs = refer_seg_ds[\"img2refs\"]\n\n            image_info = images[idx]\n            image_path = image_info[\"file_name\"]\n            image_id = image_info[\"id\"]\n\n            refs = img2refs[image_id]\n            if len(refs) == 0:\n                raise ValueError(\"image {} has no refs\".format(image_id))\n\n            sents = []\n            ann_ids = []\n            for ref in refs:\n                for sent in ref[\"sentences\"]:\n                    sents.append(sent[\"sent\"].strip().lower())\n                    ann_ids.append(ref[\"ann_id\"])\n\n            sampled_sents = sents\n            sampled_ann_ids = ann_ids\n            image = cv2.imread(image_path)\n            image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)\n            is_sentence = False\n        else:\n            image_path = self.images[idx]\n            image = cv2.imread(image_path)\n            image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)\n            json_path = image_path.replace(\".jpg\", \".json\")\n            mask_json, sampled_sents, is_sentence = get_mask_from_json(json_path, image)\n            sampled_sents = [sampled_sents[0]]\n\n        conversations = []\n        conv = conversation_lib.default_conversation.copy()\n        i = 0\n        while i < len(sampled_sents):\n            conv.messages = []\n            text = sampled_sents[i].strip()\n            if is_sentence:\n                conv.append_message(\n                    conv.roles[0],\n                    convert2imagesplit(UNIFIED_LONG_QUESTION_LIST[0].format(sent=text), 1),\n                )\n                conv.append_message(conv.roles[1], \"Sure, it is [SEG].\")\n            else:\n                conv.append_message(\n                    conv.roles[0],\n                    convert2imagesplit(UNIFIED_SHORT_QUESTION_LIST[0].format(sent=text), 1),\n                )\n                conv.append_message(conv.roles[1], \"Sure, it is [SEG].\")\n            conversations.append(conv.get_prompt())\n            i += 1\n\n        # preprocess image for clip\n        image_clip = self.clip_image_processor.preprocess(image, return_tensors=\"pt\")[\n            \"pixel_values\"\n        ][0]\n\n        # preprocess image for sam\n        image = self.transform.apply_image(image)\n        resize = image.shape[:2]\n        image = self.preprocess(torch.from_numpy(image).permute(2, 0, 1).contiguous())\n\n        if self.data_type == \"refer_seg\":\n            masks = []\n            for i, ann_id in enumerate(sampled_ann_ids):\n                ann = annotations[ann_id]\n                if len(ann[\"segmentation\"]) == 0 and sampled_sents[i] != \"\":\n                    m = np.zeros((image_info[\"height\"], image_info[\"width\"], 1))\n                else:\n                    if type(ann[\"segmentation\"][0]) == list:  # polygon\n                        rle = mask.frPyObjects(\n                            ann[\"segmentation\"],\n                            image_info[\"height\"],\n                            image_info[\"width\"],\n                        )\n                    else:\n                        rle = ann[\"segmentation\"]\n                        for i in range(len(rle)):\n                            if not isinstance(rle[i][\"counts\"], bytes):\n                                rle[i][\"counts\"] = rle[i][\"counts\"].encode()\n                    m = mask.decode(rle)\n                m = np.sum(\n                    m, axis=2\n                )  # sometimes there are multiple binary map (corresponding to multiple segs)\n                m = m.astype(np.uint8)  # convert to np.uint8\n                masks.append(m)\n        else:\n            masks = [mask_json]\n\n        masks = np.stack(masks, axis=0)\n        masks = torch.from_numpy(masks)\n        labels = torch.ones(masks.shape[1], masks.shape[2]) * self.ignore_label\n        inference = True\n\n        return (\n            image_path,\n            image,\n            torch.stack([image_clip, image_clip],dim=0),\n            conversations,\n            masks,\n            labels,\n            resize,\n            None,\n            None,\n            inference,\n        )\n"
  },
  {
    "path": "utils/dataset_config.py",
    "content": "import os.path as osp\n\n# LISA\nLISA_ROOT = \"/mnt/nlp-ali/usr/yancilin/LISA/datasets\"\n\n# ChatUniVi\nChatUniVi_ROOT = \"/mnt/nlp-ali/usr/yancilin/clyan-data-2/video-llm/Chat-UniVi-Instruct\"\nMIMIC_imageonly = {\n    \"chat_path\": osp.join(ChatUniVi_ROOT, \"Fine-tuning/MIMIC_imageonly/MIMIC-IT-imageonly.json\"),\n    \"CDG\"      : osp.join(ChatUniVi_ROOT, \"Fine-tuning/MIMIC_imageonly/CDG/images\"),\n    \"LA\"       : osp.join(ChatUniVi_ROOT, \"Fine-tuning/MIMIC_imageonly/LA/images\"),\n    \"SD\"       : osp.join(ChatUniVi_ROOT, \"Fine-tuning/MIMIC_imageonly/SD/images\"),\n}\nVIDEO = {\n    \"chat_path\": osp.join(ChatUniVi_ROOT, \"Fine-tuning/VIDEO/video_chat.json\"),\n    \"VIDEO\"    : osp.join(ChatUniVi_ROOT, \"Fine-tuning/VIDEO/Activity_Videos\"),\n}\nSQA = {\n    \"chat_path\": osp.join(ChatUniVi_ROOT, \"ScienceQA_tuning/llava_train_QCM-LEA.json\"),\n    \"ScienceQA\": osp.join(ChatUniVi_ROOT, \"ScienceQA_tuning/train\"),\n}\n\n# RVOS\nRVOS_ROOT = \"/mnt/nlp-ali/usr/yancilin/clyan-data/other-datasets/\"\nRVOS_DATA_INFO = {\n    \"mevis_train\"   : (\"mevis/train\",           \"mevis/train/meta_expressions.json\"),\n    \"mevis_val\"     : (\"mevis/valid_u\",         \"mevis/valid_u/meta_expressions.json\"),\n    \"mevis_test\"    : (\"mevis/valid\",           \"mevis/valid/meta_expressions.json\"),\n    \"refytvos_train\": ('Ref-Youtube-VOS/train', 'Ref-Youtube-VOS/meta_expressions/train/meta_expressions.json'),\n    \"refytvos_valid\": ('Ref-Youtube-VOS/valid', 'Ref-Youtube-VOS/meta_expressions/valid/meta_expressions.json'),\n    \"davis17_train\" : ('davis17/train',         'davis17/meta_expressions/train/meta_expressions.json'),\n    \"davis17_valid\" : ('davis17/valid',         'davis17/meta_expressions/valid/meta_expressions.json'),\n    \"revos_train\"   : ('ReVOS',                 'ReVOS/meta_expressions_train_.json'),\n    \"revos_valid\"   : ('ReVOS',                 'ReVOS/meta_expressions_valid_.json'),\n    \"lvvis_train\"   : (\"lvvis/train\",           \"lvvis/train/meta_expressions.json\"),\n}"
  },
  {
    "path": "utils/grefcoco.py",
    "content": "import contextlib\nimport copy\nimport io\nimport logging\nimport os\nimport random\n\nimport numpy as np\nimport pycocotools.mask as mask_util\nfrom detectron2.structures import Boxes, BoxMode, PolygonMasks, RotatedBoxes\nfrom detectron2.utils.file_io import PathManager\nfrom fvcore.common.timer import Timer\nfrom PIL import Image\n\n\"\"\"\nThis file contains functions to parse RefCOCO-format annotations into dicts in \"Detectron2 format\".\n\"\"\"\n\n\nlogger = logging.getLogger(__name__)\n\n__all__ = [\"load_refcoco_json\"]\n\n\ndef load_grefcoco_json(\n    refer_root,\n    dataset_name,\n    splitby,\n    split,\n    image_root,\n    extra_annotation_keys=None,\n    extra_refer_keys=None,\n):\n    if dataset_name == \"refcocop\":\n        dataset_name = \"refcoco+\"\n    if dataset_name == \"refcoco\" or dataset_name == \"refcoco+\":\n        splitby == \"unc\"\n    if dataset_name == \"refcocog\":\n        assert splitby == \"umd\" or splitby == \"google\"\n\n    dataset_id = \"_\".join([dataset_name, splitby, split])\n\n    from .grefer import G_REFER\n\n    logger.info(\"Loading dataset {} ({}-{}) ...\".format(dataset_name, splitby, split))\n    logger.info(\"Refcoco root: {}\".format(refer_root))\n    timer = Timer()\n    refer_root = PathManager.get_local_path(refer_root)\n    with contextlib.redirect_stdout(io.StringIO()):\n        refer_api = G_REFER(data_root=refer_root, dataset=dataset_name, splitBy=splitby)\n    if timer.seconds() > 1:\n        logger.info(\n            \"Loading {} takes {:.2f} seconds.\".format(dataset_id, timer.seconds())\n        )\n\n    ref_ids = refer_api.getRefIds(split=split)\n    img_ids = refer_api.getImgIds(ref_ids)\n    refs = refer_api.loadRefs(ref_ids)\n    imgs = [refer_api.loadImgs(ref[\"image_id\"])[0] for ref in refs]\n    anns = [refer_api.loadAnns(ref[\"ann_id\"]) for ref in refs]\n    imgs_refs_anns = list(zip(imgs, refs, anns))\n\n    logger.info(\n        \"Loaded {} images, {} referring object sets in G_RefCOCO format from {}\".format(\n            len(img_ids), len(ref_ids), dataset_id\n        )\n    )\n\n    dataset_dicts = []\n\n    ann_keys = [\"iscrowd\", \"bbox\", \"category_id\"] + (extra_annotation_keys or [])\n    ref_keys = [\"raw\", \"sent_id\"] + (extra_refer_keys or [])\n\n    ann_lib = {}\n\n    NT_count = 0\n    MT_count = 0\n\n    for img_dict, ref_dict, anno_dicts in imgs_refs_anns:\n        record = {}\n        record[\"source\"] = \"grefcoco\"\n        record[\"file_name\"] = os.path.join(image_root, img_dict[\"file_name\"])\n        record[\"height\"] = img_dict[\"height\"]\n        record[\"width\"] = img_dict[\"width\"]\n        image_id = record[\"image_id\"] = img_dict[\"id\"]\n\n        # Check that information of image, ann and ref match each other\n        # This fails only when the data parsing logic or the annotation file is buggy.\n        assert ref_dict[\"image_id\"] == image_id\n        assert ref_dict[\"split\"] == split\n        if not isinstance(ref_dict[\"ann_id\"], list):\n            ref_dict[\"ann_id\"] = [ref_dict[\"ann_id\"]]\n\n        # No target samples\n        if None in anno_dicts:\n            assert anno_dicts == [None]\n            assert ref_dict[\"ann_id\"] == [-1]\n            record[\"empty\"] = True\n            obj = {key: None for key in ann_keys if key in ann_keys}\n            obj[\"bbox_mode\"] = BoxMode.XYWH_ABS\n            obj[\"empty\"] = True\n            obj = [obj]\n\n        # Multi target samples\n        else:\n            record[\"empty\"] = False\n            obj = []\n            for anno_dict in anno_dicts:\n                ann_id = anno_dict[\"id\"]\n                if anno_dict[\"iscrowd\"]:\n                    continue\n                assert anno_dict[\"image_id\"] == image_id\n                assert ann_id in ref_dict[\"ann_id\"]\n\n                if ann_id in ann_lib:\n                    ann = ann_lib[ann_id]\n                else:\n                    ann = {key: anno_dict[key] for key in ann_keys if key in anno_dict}\n                    ann[\"bbox_mode\"] = BoxMode.XYWH_ABS\n                    ann[\"empty\"] = False\n\n                    segm = anno_dict.get(\"segmentation\", None)\n                    assert segm  # either list[list[float]] or dict(RLE)\n                    if isinstance(segm, dict):\n                        if isinstance(segm[\"counts\"], list):\n                            # convert to compressed RLE\n                            segm = mask_util.frPyObjects(segm, *segm[\"size\"])\n                    else:\n                        # filter out invalid polygons (< 3 points)\n                        segm = [\n                            poly\n                            for poly in segm\n                            if len(poly) % 2 == 0 and len(poly) >= 6\n                        ]\n                        if len(segm) == 0:\n                            num_instances_without_valid_segmentation += 1\n                            continue  # ignore this instance\n                    ann[\"segmentation\"] = segm\n                    ann_lib[ann_id] = ann\n\n                obj.append(ann)\n\n        record[\"annotations\"] = obj\n\n        # Process referring expressions\n        sents = ref_dict[\"sentences\"]\n        for sent in sents:\n            ref_record = record.copy()\n            ref = {key: sent[key] for key in ref_keys if key in sent}\n            ref[\"ref_id\"] = ref_dict[\"ref_id\"]\n            ref_record[\"sentence\"] = ref\n            dataset_dicts.append(ref_record)\n    #         if ref_record['empty']:\n    #             NT_count += 1\n    #         else:\n    #             MT_count += 1\n\n    # logger.info(\"NT samples: %d, MT samples: %d\", NT_count, MT_count)\n\n    # Debug mode\n    # return dataset_dicts[:100]\n\n    return dataset_dicts\n\n\nif __name__ == \"__main__\":\n    \"\"\"\n    Test the COCO json dataset loader.\n\n    Usage:\n        python -m detectron2.data.datasets.coco \\\n            path/to/json path/to/image_root dataset_name\n\n        \"dataset_name\" can be \"coco_2014_minival_100\", or other\n        pre-registered ones\n    \"\"\"\n    import sys\n\n    import detectron2.data.datasets  # noqa # add pre-defined metadata\n    from detectron2.utils.logger import setup_logger\n    from detectron2.utils.visualizer import Visualizer\n\n    REFCOCO_PATH = \"/mnt/lustre/hhding/code/ReLA/datasets\"\n    COCO_TRAIN_2014_IMAGE_ROOT = \"/mnt/lustre/hhding/code/ReLA/datasets/images\"\n    REFCOCO_DATASET = \"grefcoco\"\n    REFCOCO_SPLITBY = \"unc\"\n    REFCOCO_SPLIT = \"train\"\n\n    logger = setup_logger(name=__name__)\n\n    dicts = load_grefcoco_json(\n        REFCOCO_PATH,\n        REFCOCO_DATASET,\n        REFCOCO_SPLITBY,\n        REFCOCO_SPLIT,\n        COCO_TRAIN_2014_IMAGE_ROOT,\n    )\n    logger.info(\"Done loading {} samples.\".format(len(dicts)))\n"
  },
  {
    "path": "utils/grefer.py",
    "content": "\"\"\"\ngrefer v0.1\nThis interface provides access to gRefCOCO.\n\nThe following API functions are defined:\nG_REFER      - REFER api class\ngetRefIds    - get ref ids that satisfy given filter conditions.\ngetAnnIds    - get ann ids that satisfy given filter conditions.\ngetImgIds    - get image ids that satisfy given filter conditions.\ngetCatIds    - get category ids that satisfy given filter conditions.\nloadRefs     - load refs with the specified ref ids.\nloadAnns     - load anns with the specified ann ids.\nloadImgs     - load images with the specified image ids.\nloadCats     - load category names with the specified category ids.\ngetRefBox    - get ref's bounding box [x, y, w, h] given the ref_id\nshowRef      - show image, segmentation or box of the referred object with the ref\ngetMaskByRef - get mask and area of the referred object given ref or ref ids\ngetMask      - get mask and area of the referred object given ref\nshowMask     - show mask of the referred object given ref\n\"\"\"\n\nimport itertools\nimport json\nimport os.path as osp\nimport pickle\nimport time\n\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport skimage.io as io\nfrom matplotlib.collections import PatchCollection\nfrom matplotlib.patches import Polygon, Rectangle\nfrom pycocotools import mask\n\n\nclass G_REFER:\n    def __init__(self, data_root, dataset=\"grefcoco\", splitBy=\"unc\"):\n        # provide data_root folder which contains grefcoco\n        print(\"loading dataset %s into memory...\" % dataset)\n        self.ROOT_DIR = osp.abspath(osp.dirname(__file__))\n        self.DATA_DIR = osp.join(data_root, dataset)\n        if dataset in [\"grefcoco\"]:\n            self.IMAGE_DIR = osp.join(data_root, \"images/train2014\")\n        else:\n            raise KeyError(\"No refer dataset is called [%s]\" % dataset)\n\n        tic = time.time()\n\n        # load refs from data/dataset/refs(dataset).json\n        self.data = {}\n        self.data[\"dataset\"] = dataset\n\n        ref_file = osp.join(self.DATA_DIR, f\"grefs({splitBy}).p\")\n        if osp.exists(ref_file):\n            self.data[\"refs\"] = pickle.load(open(ref_file, \"rb\"), fix_imports=True)\n        else:\n            ref_file = osp.join(self.DATA_DIR, f\"grefs({splitBy}).json\")\n            if osp.exists(ref_file):\n                self.data[\"refs\"] = json.load(open(ref_file, \"rb\"))\n            else:\n                raise FileNotFoundError(\"JSON file not found\")\n\n        # load annotations from data/dataset/instances.json\n        instances_file = osp.join(self.DATA_DIR, \"instances.json\")\n        instances = json.load(open(instances_file, \"r\"))\n        self.data[\"images\"] = instances[\"images\"]\n        self.data[\"annotations\"] = instances[\"annotations\"]\n        self.data[\"categories\"] = instances[\"categories\"]\n\n        # create index\n        self.createIndex()\n        print(\"DONE (t=%.2fs)\" % (time.time() - tic))\n\n    @staticmethod\n    def _toList(x):\n        return x if isinstance(x, list) else [x]\n\n    @staticmethod\n    def match_any(a, b):\n        a = a if isinstance(a, list) else [a]\n        b = b if isinstance(b, list) else [b]\n        return set(a) & set(b)\n\n    def createIndex(self):\n        # create sets of mapping\n        # 1)  Refs: \t \t{ref_id: ref}\n        # 2)  Anns: \t \t{ann_id: ann}\n        # 3)  Imgs:\t\t \t{image_id: image}\n        # 4)  Cats: \t \t{category_id: category_name}\n        # 5)  Sents:     \t{sent_id: sent}\n        # 6)  imgToRefs: \t{image_id: refs}\n        # 7)  imgToAnns: \t{image_id: anns}\n        # 8)  refToAnn:  \t{ref_id: ann}\n        # 9)  annToRef:  \t{ann_id: ref}\n        # 10) catToRefs: \t{category_id: refs}\n        # 11) sentToRef: \t{sent_id: ref}\n        # 12) sentToTokens: {sent_id: tokens}\n        print(\"creating index...\")\n        # fetch info from instances\n        Anns, Imgs, Cats, imgToAnns = {}, {}, {}, {}\n        Anns[-1] = None\n        for ann in self.data[\"annotations\"]:\n            Anns[ann[\"id\"]] = ann\n            imgToAnns[ann[\"image_id\"]] = imgToAnns.get(ann[\"image_id\"], []) + [ann]\n        for img in self.data[\"images\"]:\n            Imgs[img[\"id\"]] = img\n        for cat in self.data[\"categories\"]:\n            Cats[cat[\"id\"]] = cat[\"name\"]\n\n        # fetch info from refs\n        Refs, imgToRefs, refToAnn, annToRef, catToRefs = {}, {}, {}, {}, {}\n        Sents, sentToRef, sentToTokens = {}, {}, {}\n        availableSplits = []\n        for ref in self.data[\"refs\"]:\n            # ids\n            ref_id = ref[\"ref_id\"]\n            ann_id = ref[\"ann_id\"]\n            category_id = ref[\"category_id\"]\n            image_id = ref[\"image_id\"]\n\n            if ref[\"split\"] not in availableSplits:\n                availableSplits.append(ref[\"split\"])\n\n            # add mapping related to ref\n            if ref_id in Refs:\n                print(\"Duplicate ref id\")\n            Refs[ref_id] = ref\n            imgToRefs[image_id] = imgToRefs.get(image_id, []) + [ref]\n\n            category_id = self._toList(category_id)\n            added_cats = []\n            for cat in category_id:\n                if cat not in added_cats:\n                    added_cats.append(cat)\n                    catToRefs[cat] = catToRefs.get(cat, []) + [ref]\n\n            ann_id = self._toList(ann_id)\n            refToAnn[ref_id] = [Anns[ann] for ann in ann_id]\n            for ann_id_n in ann_id:\n                annToRef[ann_id_n] = annToRef.get(ann_id_n, []) + [ref]\n\n            # add mapping of sent\n            for sent in ref[\"sentences\"]:\n                Sents[sent[\"sent_id\"]] = sent\n                sentToRef[sent[\"sent_id\"]] = ref\n                sentToTokens[sent[\"sent_id\"]] = sent[\"tokens\"]\n\n        # create class members\n        self.Refs = Refs\n        self.Anns = Anns\n        self.Imgs = Imgs\n        self.Cats = Cats\n        self.Sents = Sents\n        self.imgToRefs = imgToRefs\n        self.imgToAnns = imgToAnns\n        self.refToAnn = refToAnn\n        self.annToRef = annToRef\n        self.catToRefs = catToRefs\n        self.sentToRef = sentToRef\n        self.sentToTokens = sentToTokens\n        self.availableSplits = availableSplits\n        print(\"index created.\")\n\n    def getRefIds(self, image_ids=[], cat_ids=[], split=[]):\n        image_ids = self._toList(image_ids)\n        cat_ids = self._toList(cat_ids)\n        split = self._toList(split)\n\n        for s in split:\n            if s not in self.availableSplits:\n                raise ValueError(f\"Invalid split name: {s}\")\n\n        refs = self.data[\"refs\"]\n\n        if len(image_ids) > 0:\n            lists = [self.imgToRefs[image_id] for image_id in image_ids]\n            refs = list(itertools.chain.from_iterable(lists))\n        if len(cat_ids) > 0:\n            refs = [ref for ref in refs if self.match_any(ref[\"category_id\"], cat_ids)]\n        if len(split) > 0:\n            refs = [ref for ref in refs if ref[\"split\"] in split]\n\n        ref_ids = [ref[\"ref_id\"] for ref in refs]\n        return ref_ids\n\n    def getAnnIds(self, image_ids=[], ref_ids=[]):\n        image_ids = self._toList(image_ids)\n        ref_ids = self._toList(ref_ids)\n\n        if any([len(image_ids), len(ref_ids)]):\n            if len(image_ids) > 0:\n                lists = [\n                    self.imgToAnns[image_id]\n                    for image_id in image_ids\n                    if image_id in self.imgToAnns\n                ]\n                anns = list(itertools.chain.from_iterable(lists))\n            else:\n                anns = self.data[\"annotations\"]\n            ann_ids = [ann[\"id\"] for ann in anns]\n            if len(ref_ids) > 0:\n                lists = [self.Refs[ref_id][\"ann_id\"] for ref_id in ref_ids]\n                anns_by_ref_id = list(itertools.chain.from_iterable(lists))\n                ann_ids = list(set(ann_ids).intersection(set(anns_by_ref_id)))\n        else:\n            ann_ids = [ann[\"id\"] for ann in self.data[\"annotations\"]]\n\n        return ann_ids\n\n    def getImgIds(self, ref_ids=[]):\n        ref_ids = self._toList(ref_ids)\n\n        if len(ref_ids) > 0:\n            image_ids = list(set([self.Refs[ref_id][\"image_id\"] for ref_id in ref_ids]))\n        else:\n            image_ids = self.Imgs.keys()\n        return image_ids\n\n    def getCatIds(self):\n        return self.Cats.keys()\n\n    def loadRefs(self, ref_ids=[]):\n        return [self.Refs[ref_id] for ref_id in self._toList(ref_ids)]\n\n    def loadAnns(self, ann_ids=[]):\n        if isinstance(ann_ids, str):\n            ann_ids = int(ann_ids)\n        return [self.Anns[ann_id] for ann_id in self._toList(ann_ids)]\n\n    def loadImgs(self, image_ids=[]):\n        return [self.Imgs[image_id] for image_id in self._toList(image_ids)]\n\n    def loadCats(self, cat_ids=[]):\n        return [self.Cats[cat_id] for cat_id in self._toList(cat_ids)]\n\n    def getRefBox(self, ref_id):\n        anns = self.refToAnn[ref_id]\n        return [ann[\"bbox\"] for ann in anns]  # [x, y, w, h]\n\n    def showRef(self, ref, seg_box=\"seg\"):\n        ax = plt.gca()\n        # show image\n        image = self.Imgs[ref[\"image_id\"]]\n        I = io.imread(osp.join(self.IMAGE_DIR, image[\"file_name\"]))\n        ax.imshow(I)\n        # show refer expression\n        for sid, sent in enumerate(ref[\"sentences\"]):\n            print(\"%s. %s\" % (sid + 1, sent[\"sent\"]))\n        # show segmentations\n        if seg_box == \"seg\":\n            ann_id = ref[\"ann_id\"]\n            ann = self.Anns[ann_id]\n            polygons = []\n            color = []\n            c = \"none\"\n            if type(ann[\"segmentation\"][0]) == list:\n                # polygon used for refcoco*\n                for seg in ann[\"segmentation\"]:\n                    poly = np.array(seg).reshape((len(seg) / 2, 2))\n                    polygons.append(Polygon(poly, True, alpha=0.4))\n                    color.append(c)\n                p = PatchCollection(\n                    polygons,\n                    facecolors=color,\n                    edgecolors=(1, 1, 0, 0),\n                    linewidths=3,\n                    alpha=1,\n                )\n                ax.add_collection(p)  # thick yellow polygon\n                p = PatchCollection(\n                    polygons,\n                    facecolors=color,\n                    edgecolors=(1, 0, 0, 0),\n                    linewidths=1,\n                    alpha=1,\n                )\n                ax.add_collection(p)  # thin red polygon\n            else:\n                # mask used for refclef\n                rle = ann[\"segmentation\"]\n                m = mask.decode(rle)\n                img = np.ones((m.shape[0], m.shape[1], 3))\n                color_mask = np.array([2.0, 166.0, 101.0]) / 255\n                for i in range(3):\n                    img[:, :, i] = color_mask[i]\n                ax.imshow(np.dstack((img, m * 0.5)))\n        # show bounding-box\n        elif seg_box == \"box\":\n            ann_id = ref[\"ann_id\"]\n            ann = self.Anns[ann_id]\n            bbox = self.getRefBox(ref[\"ref_id\"])\n            box_plot = Rectangle(\n                (bbox[0], bbox[1]),\n                bbox[2],\n                bbox[3],\n                fill=False,\n                edgecolor=\"green\",\n                linewidth=3,\n            )\n            ax.add_patch(box_plot)\n\n    def getMask(self, ann):\n        if not ann:\n            return None\n        if ann[\"iscrowd\"]:\n            raise ValueError(\"Crowd object\")\n        image = self.Imgs[ann[\"image_id\"]]\n        if type(ann[\"segmentation\"][0]) == list:  # polygon\n            rle = mask.frPyObjects(ann[\"segmentation\"], image[\"height\"], image[\"width\"])\n        else:\n            rle = ann[\"segmentation\"]\n\n        m = mask.decode(rle)\n        m = np.sum(\n            m, axis=2\n        )  # sometimes there are multiple binary map (corresponding to multiple segs)\n        m = m.astype(np.uint8)  # convert to np.uint8\n        # compute area\n        area = sum(mask.area(rle))  # should be close to ann['area']\n        return {\"mask\": m, \"area\": area}\n\n    def getMaskByRef(self, ref=None, ref_id=None, merge=False):\n        if not ref and not ref_id:\n            raise ValueError\n        if ref:\n            ann_ids = ref[\"ann_id\"]\n            ref_id = ref[\"ref_id\"]\n        else:\n            ann_ids = self.getAnnIds(ref_ids=ref_id)\n\n        if ann_ids == [-1]:\n            img = self.Imgs[self.Refs[ref_id][\"image_id\"]]\n            return {\n                \"mask\": np.zeros([img[\"height\"], img[\"width\"]], dtype=np.uint8),\n                \"empty\": True,\n            }\n\n        anns = self.loadAnns(ann_ids)\n        mask_list = [self.getMask(ann) for ann in anns if not ann[\"iscrowd\"]]\n\n        if merge:\n            merged_masks = sum([mask[\"mask\"] for mask in mask_list])\n            merged_masks[np.where(merged_masks > 1)] = 1\n            return {\"mask\": merged_masks, \"empty\": False}\n        else:\n            return mask_list\n\n    def showMask(self, ref):\n        M = self.getMask(ref)\n        msk = M[\"mask\"]\n        ax = plt.gca()\n        ax.imshow(msk)\n"
  },
  {
    "path": "utils/random_list.py",
    "content": "import itertools\n\ndef lcg(modulus, a, c, seed):\n    \"\"\"线性同余生成器\"\"\"\n    while True:\n        seed = (a * seed + c) % modulus\n        yield seed\n\ndef get_random_number(probabilities, values, generator):\n    assert len(probabilities) == len(values), \"Length of probabilities and values must be the same\"\n    assert abs(sum(probabilities) - 1) < 1e-6, \"Probabilities must sum to 1\"\n\n    random_float = next(generator) / 256.0  # 转换为0-1之间的浮点数\n\n    for value, accumulated_probability in zip(values, itertools.accumulate(probabilities)):\n        if random_float < accumulated_probability:\n            return value\n    return values[-1]  # 如果由于浮点数精度问题没有返回任何值，返回最后一个值\n\ndef get_random_list(probabilities, values, length, seed: int = 0):\n    # 创建一个生成器\n    generator = lcg(modulus=256, a=1103515245, c=12345, seed=seed)\n    return [get_random_number(probabilities, values, generator) for _ in range(length)]"
  },
  {
    "path": "utils/reason_seg_dataset.py",
    "content": "import glob\nimport json\nimport os\nimport random\n\nimport cv2\nimport numpy as np\nimport torch\nimport torch.nn.functional as F\nfrom transformers import CLIPImageProcessor\n\nfrom model.llava import conversation as conversation_lib\nfrom model.segment_anything.utils.transforms import ResizeLongestSide\n\nfrom .data_processing import get_mask_from_json\nfrom .utils import (ANSWER_LIST, DEFAULT_IMAGE_TOKEN, DEFAULT_VIDEO_TOKEN,\n                    EXPLANATORY_QUESTION_LIST, UNIFIED_SHORT_QUESTION_LIST, UNIFIED_LONG_QUESTION_LIST, convert2imagesplit)\n\n\nclass ReasonSegDataset(torch.utils.data.Dataset):\n    pixel_mean = torch.Tensor([123.675, 116.28, 103.53]).view(-1, 1, 1)\n    pixel_std = torch.Tensor([58.395, 57.12, 57.375]).view(-1, 1, 1)\n    img_size = 1024\n    ignore_label = 255\n\n    def __init__(\n        self,\n        base_image_dir,\n        tokenizer,\n        vision_tower,\n        samples_per_epoch=500 * 8 * 2 * 10,\n        precision: str = \"fp32\",\n        image_size: int = 224,\n        num_classes_per_sample: int = 3,\n        exclude_val=False,\n        reason_seg_data=\"ReasonSeg|train\",\n        explanatory=0.1,\n    ):\n        self.exclude_val = exclude_val\n        self.reason_seg_data = reason_seg_data\n        self.samples_per_epoch = samples_per_epoch\n        self.explanatory = explanatory\n        self.num_classes_per_sample = num_classes_per_sample\n\n        self.base_image_dir = base_image_dir\n        self.image_size = image_size\n        self.tokenizer = tokenizer\n        self.precision = precision\n        self.transform = ResizeLongestSide(image_size)\n        self.clip_image_processor = CLIPImageProcessor.from_pretrained(vision_tower)\n\n        self.short_question_list = UNIFIED_SHORT_QUESTION_LIST\n        self.long_question_list = UNIFIED_LONG_QUESTION_LIST\n        self.answer_list = ANSWER_LIST\n\n        reason_seg_data, splits = reason_seg_data.split(\"|\")\n        splits = splits.split(\"_\")\n        images = []\n        for split in splits:\n            images_split = glob.glob(\n                os.path.join(\n                    base_image_dir, \"reason_seg\", reason_seg_data, split, \"*.jpg\"\n                )\n            )\n            images.extend(images_split)\n        jsons = [path.replace(\".jpg\", \".json\") for path in images]\n        self.reason_seg_data = (images, jsons)\n\n        print(\"number of reason_seg samples: \", len(images))\n\n        if explanatory != -1:\n            self.explanatory_question_list = EXPLANATORY_QUESTION_LIST\n            self.img_to_explanation = {}\n            with open(\n                os.path.join(\n                    base_image_dir,\n                    \"reason_seg\",\n                    reason_seg_data,\n                    \"explanatory\",\n                    \"train.json\",\n                )\n            ) as f:\n                items = json.load(f)\n            for item in items:\n                img_name = item[\"image\"]\n                self.img_to_explanation[img_name] = {\n                    \"query\": item[\"query\"],\n                    \"outputs\": item[\"outputs\"],\n                }\n\n            print(\"len(self.img_to_explanation): \", len(self.img_to_explanation))\n\n    def __len__(self):\n        return self.samples_per_epoch\n\n    def preprocess(self, x: torch.Tensor) -> torch.Tensor:\n        \"\"\"Normalize pixel values and pad to a square input.\"\"\"\n        # Normalize colors\n        x = (x - self.pixel_mean) / self.pixel_std\n\n        # Pad\n        h, w = x.shape[-2:]\n        padh = self.img_size - h\n        padw = self.img_size - w\n        x = F.pad(x, (0, padw, 0, padh))\n        return x\n\n    def __getitem__(self, idx):\n        images, jsons = self.reason_seg_data\n        idx = random.randint(0, len(images) - 1)\n        image_path = images[idx]\n        json_path = jsons[idx]\n\n        image = cv2.imread(image_path)\n        image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)\n        ori_size = image.shape[:2]\n        # preprocess image for clip\n        image_clip = self.clip_image_processor.preprocess(image, return_tensors=\"pt\")[\n            \"pixel_values\"\n        ][0]\n\n        mask, sents, is_sentence = get_mask_from_json(json_path, image)\n        if len(sents) >= self.num_classes_per_sample:\n            sampled_inds = np.random.choice(\n                list(range(len(sents))), size=self.num_classes_per_sample, replace=False\n            )\n        else:\n            sampled_inds = list(range(len(sents)))\n        sampled_sents = np.vectorize(sents.__getitem__)(sampled_inds).tolist()\n        sampled_masks = [\n            (mask == 1).astype(np.float32) for _ in range(len(sampled_inds))\n        ]\n\n        image = self.transform.apply_image(image)  # preprocess image for sam\n        resize = image.shape[:2]\n\n        image_name = image_path.split(\"/\")[-1]\n        if self.explanatory != -1 and image_name in self.img_to_explanation:\n            if random.random() < self.explanatory:\n                choice = 2\n            else:\n                choice = random.randint(0, 1)\n\n        questions = []\n        answers = []\n        for text in sampled_sents:\n            if is_sentence:\n                question_template = random.choice(self.long_question_list)\n                questions.append(question_template.format(sent=text))\n            else:\n                question_template = random.choice(self.short_question_list)\n                questions.append(question_template.format(sent=text.lower()))\n\n            # add explanation if applicable\n            img_name = image_path.split(\"/\")[-1]\n            if self.explanatory != -1 and img_name in self.img_to_explanation:\n                if choice == 0:  # [SEG] token\n                    answers.append(random.choice(self.answer_list))\n                elif choice == 1:  # [SEG] token + text answer\n                    image_name = image_path.split(\"/\")[-1]\n                    answer = self.img_to_explanation[image_name][\"outputs\"]\n                    answer = random.choice(self.answer_list) + \" {}\".format(answer)\n                    questions[-1] = random.choice(self.explanatory_question_list).format(sent=text.lower())\n                    answers.append(answer)\n                elif choice == 2:  # vanilla text answer\n                    image_name = image_path.split(\"/\")[-1]\n                    answer = self.img_to_explanation[image_name][\"outputs\"]\n                    questions[-1] = DEFAULT_VIDEO_TOKEN + \"\\n\" + text\n                    answers.append(answer)\n                else:\n                    raise ValueError(\"Not implemented yet.\")\n            else:\n                answers.append(random.choice(self.answer_list))\n\n        conversations = []\n        conv = conversation_lib.default_conversation.copy()\n        roles = {\"human\": conv.roles[0], \"gpt\": conv.roles[1]}\n\n        i = 0\n        while i < len(questions):\n            questions[i] = convert2imagesplit(questions[i],1)\n            conv.messages = []\n            conv.append_message(conv.roles[0], questions[i])\n            conv.append_message(conv.roles[1], answers[i])\n            conversations.append(conv.get_prompt())\n            i += 1\n\n        image = self.preprocess(torch.from_numpy(image).permute(2, 0, 1).contiguous())\n\n        image_name = image_path.split(\"/\")[-1]\n        if (\n            self.explanatory != -1\n            and image_name in self.img_to_explanation\n            and choice == 2\n        ):\n            masks = torch.rand(0, *ori_size)\n            label = torch.ones(ori_size) * self.ignore_label\n        else:\n            masks = np.stack(sampled_masks, axis=0)\n            masks = torch.from_numpy(masks)\n            label = torch.ones(masks.shape[1], masks.shape[2]) * self.ignore_label\n\n        if self.explanatory != -1 and img_name in self.img_to_explanation and choice == 2:\n            num_image_token = 1\n        else:\n            num_image_token = 2\n        \n        return (\n            image_path,\n            image,\n            torch.stack([image_clip] * num_image_token, dim=0),\n            conversations,\n            masks,\n            label,\n            resize,\n            questions,\n            sampled_sents,\n        )\n"
  },
  {
    "path": "utils/refer.py",
    "content": "__author__ = \"licheng\"\n\n\"\"\"\nThis interface provides access to four datasets:\n1) refclef\n2) refcoco\n3) refcoco+\n4) refcocog\nsplit by unc and google\n\nThe following API functions are defined:\nREFER      - REFER api class\ngetRefIds  - get ref ids that satisfy given filter conditions.\ngetAnnIds  - get ann ids that satisfy given filter conditions.\ngetImgIds  - get image ids that satisfy given filter conditions.\ngetCatIds  - get category ids that satisfy given filter conditions.\nloadRefs   - load refs with the specified ref ids.\nloadAnns   - load anns with the specified ann ids.\nloadImgs   - load images with the specified image ids.\nloadCats   - load category names with the specified category ids.\ngetRefBox  - get ref's bounding box [x, y, w, h] given the ref_id\nshowRef    - show image, segmentation or box of the referred object with the ref\ngetMask    - get mask and area of the referred object given ref\nshowMask   - show mask of the referred object given ref\n\"\"\"\n\nimport itertools\nimport json\nimport os.path as osp\nimport pickle\nimport sys\nimport time\nimport os.path as osp\nfrom pprint import pprint\n\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport skimage.io as io\nfrom matplotlib.collections import PatchCollection\nfrom matplotlib.patches import Polygon, Rectangle\nfrom pycocotools import mask\n\n\nclass REFER:\n    def __init__(self, data_root, dataset=\"refcoco\", splitBy=\"unc\"):\n        # provide data_root folder which contains refclef, refcoco, refcoco+ and refcocog\n        # also provide dataset name and splitBy information\n        # e.g., dataset = 'refcoco', splitBy = 'unc'\n        print(\"loading dataset %s into memory...\" % dataset)\n        self.ROOT_DIR = osp.abspath(osp.dirname(__file__))\n        self.DATA_DIR = osp.join(data_root, dataset)\n        if dataset in [\"refcoco\", \"refcoco+\", \"refcocog\"]:\n            self.IMAGE_DIR = osp.join(data_root, \"images/mscoco/images/train2014\")\n        elif dataset == \"refclef\":\n            self.IMAGE_DIR = osp.join(data_root, \"images/saiapr_tc-12\")\n        else:\n            print(\"No refer dataset is called [%s]\" % dataset)\n            sys.exit()\n\n        self.dataset = dataset\n\n        # load refs from data/dataset/refs(dataset).json\n        tic = time.time()\n\n        ref_file = osp.join(self.DATA_DIR, \"refs(\" + splitBy + \").p\")\n        print(\"ref_file: \", ref_file)\n        self.data = {}\n        self.data[\"dataset\"] = dataset\n        self.data[\"refs\"] = pickle.load(open(ref_file, \"rb\"))\n\n        # load annotations from data/dataset/instances.json\n        instances_file = osp.join(self.DATA_DIR, \"instances.json\")\n        instances = json.load(open(instances_file, \"rb\"))\n        self.data[\"images\"] = instances[\"images\"]\n        self.data[\"annotations\"] = instances[\"annotations\"]\n        self.data[\"categories\"] = instances[\"categories\"]\n\n        # create index\n        self.createIndex()\n        print(\"DONE (t=%.2fs)\" % (time.time() - tic))\n\n    def createIndex(self):\n        # create sets of mapping\n        # 1)  Refs: \t \t{ref_id: ref}\n        # 2)  Anns: \t \t{ann_id: ann}\n        # 3)  Imgs:\t\t \t{image_id: image}\n        # 4)  Cats: \t \t{category_id: category_name}\n        # 5)  Sents:     \t{sent_id: sent}\n        # 6)  imgToRefs: \t{image_id: refs}\n        # 7)  imgToAnns: \t{image_id: anns}\n        # 8)  refToAnn:  \t{ref_id: ann}\n        # 9)  annToRef:  \t{ann_id: ref}\n        # 10) catToRefs: \t{category_id: refs}\n        # 11) sentToRef: \t{sent_id: ref}\n        # 12) sentToTokens: {sent_id: tokens}\n        print(\"creating index...\")\n        # fetch info from instances\n        Anns, Imgs, Cats, imgToAnns = {}, {}, {}, {}\n        for ann in self.data[\"annotations\"]:\n            Anns[ann[\"id\"]] = ann\n            imgToAnns[ann[\"image_id\"]] = imgToAnns.get(ann[\"image_id\"], []) + [ann]\n        for img in self.data[\"images\"]:\n            Imgs[img[\"id\"]] = img\n        for cat in self.data[\"categories\"]:\n            Cats[cat[\"id\"]] = cat[\"name\"]\n\n        # fetch info from refs\n        Refs, imgToRefs, refToAnn, annToRef, catToRefs = {}, {}, {}, {}, {}\n        Sents, sentToRef, sentToTokens = {}, {}, {}\n        for ref in self.data[\"refs\"]:\n            # ids\n            ref_id = ref[\"ref_id\"]\n            ann_id = ref[\"ann_id\"]\n            category_id = ref[\"category_id\"]\n            image_id = ref[\"image_id\"]\n\n            # add mapping related to ref\n            Refs[ref_id] = ref\n            imgToRefs[image_id] = imgToRefs.get(image_id, []) + [ref]\n            catToRefs[category_id] = catToRefs.get(category_id, []) + [ref]\n            refToAnn[ref_id] = Anns[ann_id]\n            annToRef[ann_id] = ref\n\n            # add mapping of sent\n            for sent in ref[\"sentences\"]:\n                Sents[sent[\"sent_id\"]] = sent\n                sentToRef[sent[\"sent_id\"]] = ref\n                sentToTokens[sent[\"sent_id\"]] = sent[\"tokens\"]\n\n        # create class members\n        self.Refs = Refs\n        self.Anns = Anns\n        self.Imgs = Imgs\n        self.Cats = Cats\n        self.Sents = Sents\n        self.imgToRefs = imgToRefs\n        self.imgToAnns = imgToAnns\n        self.refToAnn = refToAnn\n        self.annToRef = annToRef\n        self.catToRefs = catToRefs\n        self.sentToRef = sentToRef\n        self.sentToTokens = sentToTokens\n        print(\"index created.\")\n\n    def getRefIds(self, image_ids=[], cat_ids=[], ref_ids=[], split=\"\"):\n        image_ids = image_ids if type(image_ids) == list else [image_ids]\n        cat_ids = cat_ids if type(cat_ids) == list else [cat_ids]\n        ref_ids = ref_ids if type(ref_ids) == list else [ref_ids]\n\n        if len(image_ids) == len(cat_ids) == len(ref_ids) == len(split) == 0:\n            refs = self.data[\"refs\"]\n        else:\n            if not len(image_ids) == 0:\n                refs = [self.imgToRefs[image_id] for image_id in image_ids]\n            else:\n                refs = self.data[\"refs\"]\n            if not len(cat_ids) == 0:\n                refs = [ref for ref in refs if ref[\"category_id\"] in cat_ids]\n            if not len(ref_ids) == 0:\n                refs = [ref for ref in refs if ref[\"ref_id\"] in ref_ids]\n            if not len(split) == 0:\n                if split in [\"testA\", \"testB\", \"testC\"]:\n                    refs = [\n                        ref for ref in refs if split[-1] in ref[\"split\"]\n                    ]  # we also consider testAB, testBC, ...\n                elif split in [\"testAB\", \"testBC\", \"testAC\"]:\n                    refs = [\n                        ref for ref in refs if ref[\"split\"] == split\n                    ]  # rarely used I guess...\n                elif split == \"test\":\n                    refs = [ref for ref in refs if \"test\" in ref[\"split\"]]\n                elif split == \"train\" or split == \"val\":\n                    refs = [ref for ref in refs if ref[\"split\"] == split]\n                else:\n                    print(\"No such split [%s]\" % split)\n                    sys.exit()\n        ref_ids = [ref[\"ref_id\"] for ref in refs]\n        return ref_ids\n\n    def getAnnIds(self, image_ids=[], cat_ids=[], ref_ids=[]):\n        image_ids = image_ids if type(image_ids) == list else [image_ids]\n        cat_ids = cat_ids if type(cat_ids) == list else [cat_ids]\n        ref_ids = ref_ids if type(ref_ids) == list else [ref_ids]\n\n        if len(image_ids) == len(cat_ids) == len(ref_ids) == 0:\n            ann_ids = [ann[\"id\"] for ann in self.data[\"annotations\"]]\n        else:\n            if not len(image_ids) == 0:\n                lists = [\n                    self.imgToAnns[image_id]\n                    for image_id in image_ids\n                    if image_id in self.imgToAnns\n                ]  # list of [anns]\n                anns = list(itertools.chain.from_iterable(lists))\n            else:\n                anns = self.data[\"annotations\"]\n            if not len(cat_ids) == 0:\n                anns = [ann for ann in anns if ann[\"category_id\"] in cat_ids]\n            ann_ids = [ann[\"id\"] for ann in anns]\n            if not len(ref_ids) == 0:\n                ids = set(ann_ids).intersection(\n                    set([self.Refs[ref_id][\"ann_id\"] for ref_id in ref_ids])\n                )\n        return ann_ids\n\n    def getImgIds(self, ref_ids=[]):\n        ref_ids = ref_ids if type(ref_ids) == list else [ref_ids]\n\n        if not len(ref_ids) == 0:\n            image_ids = list(set([self.Refs[ref_id][\"image_id\"] for ref_id in ref_ids]))\n        else:\n            image_ids = self.Imgs.keys()\n        return image_ids\n\n    def getCatIds(self):\n        return self.Cats.keys()\n\n    def loadRefs(self, ref_ids=[]):\n        if type(ref_ids) == list:\n            return [self.Refs[ref_id] for ref_id in ref_ids]\n        elif type(ref_ids) == int:\n            return [self.Refs[ref_ids]]\n\n    def loadAnns(self, ann_ids=[]):\n        if type(ann_ids) == list:\n            return [self.Anns[ann_id] for ann_id in ann_ids]\n        elif type(ann_ids) == int or type(ann_ids) == unicode:\n            return [self.Anns[ann_ids]]\n\n    def loadImgs(self, image_ids=[]):\n        if type(image_ids) == list:\n            return [self.Imgs[image_id] for image_id in image_ids]\n        elif type(image_ids) == int:\n            return [self.Imgs[image_ids]]\n\n    def loadCats(self, cat_ids=[]):\n        if type(cat_ids) == list:\n            return [self.Cats[cat_id] for cat_id in cat_ids]\n        elif type(cat_ids) == int:\n            return [self.Cats[cat_ids]]\n\n    def getRefBox(self, ref_id):\n        ref = self.Refs[ref_id]\n        ann = self.refToAnn[ref_id]\n        return ann[\"bbox\"]  # [x, y, w, h]\n\n    def showRef(self, ref, seg_box=\"seg\"):\n        ax = plt.gca()\n        # show image\n        image = self.Imgs[ref[\"image_id\"]]\n        I = io.imread(osp.join(self.IMAGE_DIR, image[\"file_name\"]))\n        ax.imshow(I)\n        # show refer expression\n        for sid, sent in enumerate(ref[\"sentences\"]):\n            print(\"%s. %s\" % (sid + 1, sent[\"sent\"]))\n        # show segmentations\n        if seg_box == \"seg\":\n            ann_id = ref[\"ann_id\"]\n            ann = self.Anns[ann_id]\n            polygons = []\n            color = []\n            c = \"none\"\n            if type(ann[\"segmentation\"][0]) == list:\n                # polygon used for refcoco*\n                for seg in ann[\"segmentation\"]:\n                    poly = np.array(seg).reshape((len(seg) / 2, 2))\n                    polygons.append(Polygon(poly, True, alpha=0.4))\n                    color.append(c)\n                p = PatchCollection(\n                    polygons,\n                    facecolors=color,\n                    edgecolors=(1, 1, 0, 0),\n                    linewidths=3,\n                    alpha=1,\n                )\n                ax.add_collection(p)  # thick yellow polygon\n                p = PatchCollection(\n                    polygons,\n                    facecolors=color,\n                    edgecolors=(1, 0, 0, 0),\n                    linewidths=1,\n                    alpha=1,\n                )\n                ax.add_collection(p)  # thin red polygon\n            else:\n                # mask used for refclef\n                rle = ann[\"segmentation\"]\n                m = mask.decode(rle)\n                img = np.ones((m.shape[0], m.shape[1], 3))\n                color_mask = np.array([2.0, 166.0, 101.0]) / 255\n                for i in range(3):\n                    img[:, :, i] = color_mask[i]\n                ax.imshow(np.dstack((img, m * 0.5)))\n        # show bounding-box\n        elif seg_box == \"box\":\n            ann_id = ref[\"ann_id\"]\n            ann = self.Anns[ann_id]\n            bbox = self.getRefBox(ref[\"ref_id\"])\n            box_plot = Rectangle(\n                (bbox[0], bbox[1]),\n                bbox[2],\n                bbox[3],\n                fill=False,\n                edgecolor=\"green\",\n                linewidth=3,\n            )\n            ax.add_patch(box_plot)\n\n    def getMask(self, ref):\n        # return mask, area and mask-center\n        ann = self.refToAnn[ref[\"ref_id\"]]\n        image = self.Imgs[ref[\"image_id\"]]\n        if type(ann[\"segmentation\"][0]) == list:  # polygon\n            rle = mask.frPyObjects(ann[\"segmentation\"], image[\"height\"], image[\"width\"])\n        else:\n            rle = ann[\"segmentation\"]\n        m = mask.decode(rle)\n        m = np.sum(\n            m, axis=2\n        )  # sometimes there are multiple binary map (corresponding to multiple segs)\n        m = m.astype(np.uint8)  # convert to np.uint8\n        # compute area\n        area = sum(mask.area(rle))  # should be close to ann['area']\n        return {\"mask\": m, \"area\": area}\n        # # position\n        # position_x = np.mean(np.where(m==1)[1]) # [1] means columns (matlab style) -> x (c style)\n        # position_y = np.mean(np.where(m==1)[0]) # [0] means rows (matlab style)    -> y (c style)\n        # # mass position (if there were multiple regions, we use the largest one.)\n        # label_m = label(m, connectivity=m.ndim)\n        # regions = regionprops(label_m)\n        # if len(regions) > 0:\n        # \tlargest_id = np.argmax(np.array([props.filled_area for props in regions]))\n        # \tlargest_props = regions[largest_id]\n        # \tmass_y, mass_x = largest_props.centroid\n        # else:\n        # \tmass_x, mass_y = position_x, position_y\n        # # if centroid is not in mask, we find the closest point to it from mask\n        # if m[mass_y, mass_x] != 1:\n        # \tprint('Finding closes mask point ...')\n        # \tkernel = np.ones((10, 10),np.uint8)\n        # \tme = cv2.erode(m, kernel, iterations = 1)\n        # \tpoints = zip(np.where(me == 1)[0].tolist(), np.where(me == 1)[1].tolist())  # row, col style\n        # \tpoints = np.array(points)\n        # \tdist   = np.sum((points - (mass_y, mass_x))**2, axis=1)\n        # \tid     = np.argsort(dist)[0]\n        # \tmass_y, mass_x = points[id]\n        # \t# return\n        # return {'mask': m, 'area': area, 'position_x': position_x, 'position_y': position_y, 'mass_x': mass_x, 'mass_y': mass_y}\n        # # show image and mask\n        # I = io.imread(osp.join(self.IMAGE_DIR, image['file_name']))\n        # plt.figure()\n        # plt.imshow(I)\n        # ax = plt.gca()\n        # img = np.ones( (m.shape[0], m.shape[1], 3) )\n        # color_mask = np.array([2.0,166.0,101.0])/255\n        # for i in range(3):\n        #     img[:,:,i] = color_mask[i]\n        # ax.imshow(np.dstack( (img, m*0.5) ))\n        # plt.show()\n\n    def showMask(self, ref):\n        M = self.getMask(ref)\n        msk = M[\"mask\"]\n        ax = plt.gca()\n        ax.imshow(msk)\n\n\nif __name__ == \"__main__\":\n    refer = REFER(dataset=\"refcocog\", splitBy=\"google\")\n    ref_ids = refer.getRefIds()\n    print(len(ref_ids))\n\n    print(len(refer.Imgs))\n    print(len(refer.imgToRefs))\n\n    ref_ids = refer.getRefIds(split=\"train\")\n    print(\"There are %s training referred objects.\" % len(ref_ids))\n\n    for ref_id in ref_ids:\n        ref = refer.loadRefs(ref_id)[0]\n        if len(ref[\"sentences\"]) < 2:\n            continue\n\n        pprint(ref)\n        print(\"The label is %s.\" % refer.Cats[ref[\"category_id\"]])\n        plt.figure()\n        refer.showRef(ref, seg_box=\"box\")\n        plt.show()\n\n        # plt.figure()\n        # refer.showMask(ref)\n        # plt.show()\n"
  },
  {
    "path": "utils/refer_seg_dataset.py",
    "content": "import os\nimport random\n\nimport cv2\nimport numpy as np\nimport torch\nimport torch.nn.functional as F\nfrom pycocotools import mask\nfrom transformers import CLIPImageProcessor\n\nfrom model.llava import conversation as conversation_lib\nfrom model.segment_anything.utils.transforms import ResizeLongestSide\n\nfrom .grefer import G_REFER\nfrom .refer import REFER\nfrom .utils import ANSWER_LIST, UNIFIED_SHORT_QUESTION_LIST, convert2imagesplit\n\n\nclass ReferSegDataset(torch.utils.data.Dataset):\n    pixel_mean = torch.Tensor([123.675, 116.28, 103.53]).view(-1, 1, 1)\n    pixel_std = torch.Tensor([58.395, 57.12, 57.375]).view(-1, 1, 1)\n    img_size = 1024\n    ignore_label = 255\n\n    def __init__(\n        self,\n        base_image_dir,\n        tokenizer,\n        vision_tower,\n        samples_per_epoch=500 * 8 * 2 * 10,\n        precision: str = \"fp32\",\n        image_size: int = 224,\n        num_classes_per_sample: int = 3,\n        exclude_val=False,\n        refer_seg_data=\"refclef||refcoco||refcoco+||refcocog\",\n    ):\n        self.exclude_val = exclude_val\n        self.samples_per_epoch = samples_per_epoch\n        self.num_classes_per_sample = num_classes_per_sample\n\n        self.base_image_dir = base_image_dir\n        self.image_size = image_size\n        self.tokenizer = tokenizer\n        self.precision = precision\n        self.transform = ResizeLongestSide(image_size)\n        self.clip_image_processor = CLIPImageProcessor.from_pretrained(vision_tower)\n\n        self.short_question_list = UNIFIED_SHORT_QUESTION_LIST\n        self.answer_list = ANSWER_LIST\n\n        DATA_DIR = os.path.join(base_image_dir, \"refer_seg\")\n        self.refer_seg_ds_list = refer_seg_data.split(\n            \"||\"\n        )  # ['refclef', 'refcoco', 'refcoco+', 'refcocog']\n        self.refer_seg_data = {}\n        for ds in self.refer_seg_ds_list:\n            if ds == \"refcocog\":\n                splitBy = \"umd\"\n            else:\n                splitBy = \"unc\"\n\n            if ds == \"grefcoco\":\n                refer_api = G_REFER(DATA_DIR, ds, splitBy)\n            else:\n                refer_api = REFER(DATA_DIR, ds, splitBy)\n            ref_ids_train = refer_api.getRefIds(split=\"train\")\n            images_ids_train = refer_api.getImgIds(ref_ids=ref_ids_train)\n            refs_train = refer_api.loadRefs(ref_ids=ref_ids_train)\n\n            refer_seg_ds = {}\n            refer_seg_ds[\"images\"] = []\n            loaded_images = refer_api.loadImgs(image_ids=images_ids_train)\n\n            for item in loaded_images:\n                item = item.copy()\n                if ds == \"refclef\":\n                    item[\"file_name\"] = os.path.join(\n                        DATA_DIR, \"images/saiapr_tc-12\", item[\"file_name\"]\n                    )\n                else:\n                    item[\"file_name\"] = os.path.join(\n                        DATA_DIR, \"images/mscoco/images/train2014\", item[\"file_name\"]\n                    )\n                refer_seg_ds[\"images\"].append(item)\n            refer_seg_ds[\"annotations\"] = refer_api.Anns  # anns_train\n\n            print(\n                \"dataset {} (refs {}) (train split) has {} images and {} annotations.\".format(\n                    ds,\n                    splitBy,\n                    len(refer_seg_ds[\"images\"]),\n                    len(refer_seg_ds[\"annotations\"]),\n                )\n            )\n\n            img2refs = {}\n            for ref in refs_train:\n                image_id = ref[\"image_id\"]\n                img2refs[image_id] = img2refs.get(image_id, []) + [\n                    ref,\n                ]\n            refer_seg_ds[\"img2refs\"] = img2refs\n            self.refer_seg_data[ds] = refer_seg_ds\n\n    def __len__(self):\n        return self.samples_per_epoch\n\n    def preprocess(self, x: torch.Tensor) -> torch.Tensor:\n        \"\"\"Normalize pixel values and pad to a square input.\"\"\"\n        # Normalize colors\n        x = (x - self.pixel_mean) / self.pixel_std\n\n        # Pad\n        h, w = x.shape[-2:]\n        padh = self.img_size - h\n        padw = self.img_size - w\n        x = F.pad(x, (0, padw, 0, padh))\n        return x\n\n    def __getitem__(self, idx):\n        ds = random.randint(0, len(self.refer_seg_ds_list) - 1)\n        ds = self.refer_seg_ds_list[ds]\n        refer_seg_ds = self.refer_seg_data[ds]\n        images = refer_seg_ds[\"images\"]\n        annotations = refer_seg_ds[\"annotations\"]\n        img2refs = refer_seg_ds[\"img2refs\"]\n        idx = random.randint(0, len(images) - 1)\n        image_info = images[idx]\n        image_path = image_info[\"file_name\"]\n        image_id = image_info[\"id\"]\n        refs = img2refs[image_id]\n        if len(refs) == 0:\n            return self.__getitem__(0)\n\n        sents = []\n        ann_ids = []\n        for ref in refs:\n            for sent in ref[\"sentences\"]:\n                text = sent[\"sent\"]\n                sents.append(text)\n                ann_ids.append(ref[\"ann_id\"])\n        if len(sents) >= self.num_classes_per_sample:\n            sampled_inds = np.random.choice(\n                list(range(len(sents))), size=self.num_classes_per_sample, replace=False\n            )\n        else:\n            sampled_inds = list(range(len(sents)))\n        sampled_sents = np.vectorize(sents.__getitem__)(sampled_inds).tolist()\n        # sampled_ann_ids = np.vectorize(ann_ids.__getitem__)(sampled_inds).tolist()\n        sampled_ann_ids = [ann_ids[ind] for ind in sampled_inds]\n        sampled_classes = sampled_sents\n        image = cv2.imread(image_path)\n        image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)\n\n        # preprocess image for clip\n        image_clip = self.clip_image_processor.preprocess(image, return_tensors=\"pt\")[\n            \"pixel_values\"\n        ][0]\n\n        image = self.transform.apply_image(image)  # preprocess image for sam\n        resize = image.shape[:2]\n\n        questions = []\n        answers = []\n        for text in sampled_classes:\n            text = text.strip()\n            assert len(text.split(\"||\")) == 1\n            question_template = random.choice(self.short_question_list)\n            t_question = convert2imagesplit(question_template.format(sent=text.lower()), 1)\n            questions.append(t_question)\n            answers.append(random.choice(self.answer_list))\n\n        conversations = []\n        conv = conversation_lib.default_conversation.copy()\n\n        i = 0\n        while i < len(questions):\n            conv.messages = []\n            conv.append_message(conv.roles[0], questions[i])\n            conv.append_message(conv.roles[1], answers[i])\n            conversations.append(conv.get_prompt())\n            i += 1\n\n        image = self.preprocess(torch.from_numpy(image).permute(2, 0, 1).contiguous())\n\n        flag = False\n        masks = []\n        for ann_id in sampled_ann_ids:\n            if isinstance(ann_id, list):\n                flag = True\n                if -1 in ann_id:\n                    assert len(ann_id) == 1\n                    m = np.zeros((image_info[\"height\"], image_info[\"width\"])).astype(\n                        np.uint8\n                    )\n                else:\n                    m_final = np.zeros(\n                        (image_info[\"height\"], image_info[\"width\"])\n                    ).astype(np.uint8)\n                    for ann_id_i in ann_id:\n                        ann = annotations[ann_id_i]\n\n                        if len(ann[\"segmentation\"]) == 0:\n                            m = np.zeros(\n                                (image_info[\"height\"], image_info[\"width\"])\n                            ).astype(np.uint8)\n                        else:\n                            if type(ann[\"segmentation\"][0]) == list:  # polygon\n                                rle = mask.frPyObjects(\n                                    ann[\"segmentation\"],\n                                    image_info[\"height\"],\n                                    image_info[\"width\"],\n                                )\n                            else:\n                                rle = ann[\"segmentation\"]\n                                for i in range(len(rle)):\n                                    if not isinstance(rle[i][\"counts\"], bytes):\n                                        rle[i][\"counts\"] = rle[i][\"counts\"].encode()\n                            m = mask.decode(rle)\n                            m = np.sum(\n                                m, axis=2\n                            )  # sometimes there are multiple binary map (corresponding to multiple segs)\n                            m = m.astype(np.uint8)  # convert to np.uint8\n                        m_final = m_final | m\n                    m = m_final\n                masks.append(m)\n                continue\n\n            ann = annotations[ann_id]\n\n            if len(ann[\"segmentation\"]) == 0:\n                m = np.zeros((image_info[\"height\"], image_info[\"width\"])).astype(\n                    np.uint8\n                )\n                masks.append(m)\n                continue\n\n            if type(ann[\"segmentation\"][0]) == list:  # polygon\n                rle = mask.frPyObjects(\n                    ann[\"segmentation\"], image_info[\"height\"], image_info[\"width\"]\n                )\n            else:\n                rle = ann[\"segmentation\"]\n                for i in range(len(rle)):\n                    if not isinstance(rle[i][\"counts\"], bytes):\n                        rle[i][\"counts\"] = rle[i][\"counts\"].encode()\n            m = mask.decode(rle)\n            m = np.sum(\n                m, axis=2\n            )  # sometimes there are multiple binary map (corresponding to multiple segs)\n            m = m.astype(np.uint8)  # convert to np.uint8\n            masks.append(m)\n\n        masks = np.stack(masks, axis=0)\n\n        # if ds == 'grefcoco' and flag:\n        #     import shutil\n        #     image_name = image_path.split(\"/\")[-1]\n        #     save_dir = os.path.join(\"/group/30042/xlai/LISA_refactor_final/debug\", image_name.split(\".\")[0])\n        #     os.makedirs(save_dir, exist_ok=True)\n        #     shutil.copy(image_path, save_dir)\n        #     for i in range(masks.shape[0]):\n        #         cv2.imwrite(os.path.join(save_dir, \"{}_{}_{}.jpg\".format(image_name, i, sampled_classes[i])), masks[i].astype(np.int32) * 100)\n\n        masks = torch.from_numpy(masks)\n        label = torch.ones(masks.shape[1], masks.shape[2]) * self.ignore_label\n\n        return (\n            image_path,\n            image,\n            torch.stack([image_clip, image_clip],dim=0),\n            conversations,\n            masks,\n            label,\n            resize,\n            questions,\n            sampled_classes,\n        )\n"
  },
  {
    "path": "utils/rvos_dataset.py",
    "content": "###########################################################################\n# Created by: BUAA\n# Email: clyanhh@gmail.com\n# Copyright (c) 2024\n###########################################################################\nimport itertools\nimport json\nimport os\nimport os.path as osp\nimport pickle\nimport sys\nimport cv2\nimport time\nimport random\nimport torch\nimport math\nimport torch.nn.functional as F\nfrom pprint import pprint\nfrom termcolor import colored\n\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport skimage.io as io\nfrom matplotlib.collections import PatchCollection\nfrom matplotlib.patches import Polygon, Rectangle\nimport pycocotools.mask as maskUtils\nfrom model.llava import conversation as conversation_lib\nfrom model.segment_anything.utils.transforms import ResizeLongestSide\nfrom transformers import CLIPImageProcessor\nfrom PIL import Image\n\nfrom .d2_datasets.refytvos_utils import load_refytvos_json\nfrom .d2_datasets.mevis_utils import load_mevis_json\nfrom .utils import (\n    DEFAULT_VIDEO_TOKEN, DEFAULT_IMAGE_TOKEN,\n    UNIFIED_SHORT_QUESTION_LIST, UNIFIED_LONG_QUESTION_LIST, ANSWER_LIST,\n    convert2imagesplit\n)\n\nfrom .dataset_config import RVOS_DATA_INFO as _DATA_INFO\nfrom .dataset_config import RVOS_ROOT\n\ndef get_zero_image(processor):\n    i = Image.new('RGB', (224, 224), (0, 0, 0))\n    return processor.preprocess(i, return_tensors='pt')['pixel_values'][0]\n\n\nclass RVOSDataset(torch.utils.data.Dataset):\n    # davis17_train, refytvos_train, mevis_train\n    pixel_mean = torch.Tensor([123.675, 116.28, 103.53]).view(-1, 1, 1)\n    pixel_std = torch.Tensor([58.395, 57.12, 57.375]).view(-1, 1, 1)\n    img_size = 1024\n    ignore_label = 255\n    def __init__(\n        self, \n        tokenizer,\n        vision_tower,\n        samples_per_epoch       : int   = 500 * 8 * 2 * 10,\n        precision               : str   = \"fp32\",\n        image_size              : int   = 224,\n        num_classes_per_sample  : int   = 3,\n        num_frames_sample_range : int   = \"8,12\",\n        rvos_sample_policy      : str   = \"uniform\",\n        rvos_seg_data           : str   = \"mevis_train||refytvos_train||davis17_train||revos_train\",\n        rvos_sample_ratio       : str   = '4000||15000||400||6000',\n        rvos_sample_list        : list  = [],\n        prob_no_in_video        : float = 0.05,\n    ):\n        self.root = RVOS_ROOT\n        self.num_classes_per_sample = num_classes_per_sample\n        self.image_size = image_size\n        self.tokenizer = tokenizer\n        self.precision = precision\n        self.samples_per_epoch = samples_per_epoch\n        self.transform = ResizeLongestSide(image_size)\n        self.num_frames_sample_range = [int(x) for x in num_frames_sample_range.split(\",\")]\n        assert len(self.num_frames_sample_range) == 2 and self.num_frames_sample_range[0] <= self.num_frames_sample_range[1], f\"invalid num_frames_sample_range {num_frames_sample_range}\"\n        self.clip_image_processor = CLIPImageProcessor.from_pretrained(vision_tower)\n        self.prob_no_in_video = prob_no_in_video\n\n        assert rvos_sample_policy in [\"random\", \"uniform\"], f\"invalid rvos_sample_policy {rvos_sample_policy}\"\n        self.rvos_sample_policy = rvos_sample_policy\n        self.rvos_sample_list = rvos_sample_list\n        self.num_be_called = 0\n\n        self.short_question_list = UNIFIED_SHORT_QUESTION_LIST\n        self.long_question_list = UNIFIED_LONG_QUESTION_LIST\n\n        self.answer_list = ANSWER_LIST\n\n        self.rvos_seg_ds_list = rvos_seg_data.split(\"||\")\n        rvos_sample_ratio = np.array([float(x) for x in rvos_sample_ratio.split(\"||\")])\n        self.rvos_sample_ratio = rvos_sample_ratio / rvos_sample_ratio.sum()\n        self.rvos_seg_data = {}\n        for dataset in self.rvos_seg_ds_list:\n            assert dataset in _DATA_INFO.keys(), f\"dataset {dataset} not found!\"\n            print(f\"loading dataset {dataset} into memory...\")\n            image_root, json_file = _DATA_INFO[dataset]\n            image_root = osp.join(self.root, image_root)\n            json_file = osp.join(self.root, json_file)\n            if 'mevis' in dataset or 'revos' in dataset or 'lvvis' in dataset:\n                metas, mask_dict, vid2metaid, is_train = load_mevis_json(image_root, json_file, dataset, is_train = True)\n            elif 'refytvos' in dataset or 'davis' in dataset:\n                metas, mask_dict, vid2metaid, is_train = load_refytvos_json(image_root, json_file, dataset)\n            else:\n                raise ValueError(f\"Unknown dataset name: {dataset}\")\n            assert is_train, 'only support training mode for now'\n            print(f'Loaded {dataset} dataset, with {len(metas)} expressions, {len(vid2metaid)} videos')\n\n            self.rvos_seg_data[dataset] = {\n                'image_root': image_root,\n                'json_file' : json_file,\n                'metas'     : metas,\n                'mask_dict' : mask_dict,\n                'is_train'  : is_train,\n                'vid2metaid': vid2metaid,\n            }\n\n    def __len__(self):\n        return self.samples_per_epoch\n\n    def __getitem__(self, idx):\n        data = self.sample_data()\n\n        frame_list = [cv2.imread(x) for x in data['video_frame_path_list']]\n        frame_list = [cv2.cvtColor(x, cv2.COLOR_BGR2RGB) for x in frame_list]\n        frame_clip_list = [self.clip_image_processor(x, return_tensors=\"pt\")[\"pixel_values\"][0] for x in frame_list]\n        video_len = len(frame_clip_list)\n        \n        seg_frame = cv2.imread(data['seg_frame_path'])\n        seg_frame = cv2.cvtColor(seg_frame, cv2.COLOR_BGR2RGB)\n        seg_frame_clip = self.clip_image_processor(seg_frame, return_tensors=\"pt\")[\"pixel_values\"][0]\n        seg_frame_sam = self.transform.apply_image(seg_frame)\n        resize = seg_frame_sam.shape[:2]\n        frame_sam_list = [self.preprocess(torch.from_numpy(seg_frame_sam).permute(2, 0, 1).contiguous())]\n\n        questions = []\n        answers = []\n        conversations = []\n        masks = []\n        conv = conversation_lib.default_conversation.copy()\n        for exp, mask in data['exp_mask_pairs']:\n            text = exp.strip()\n            assert len(text.split('||')) == 1\n            if text[-1] == \"?\":\n                question = random.choice(self.long_question_list).format(sent=text)\n            else:\n                question = random.choice(self.short_question_list).format(sent=text)\n            question = convert2imagesplit(question, video_len)\n\n            seg_replace = \", \".join(f'({i}) [SEG]' for i in range(video_len))\n            answer = random.choice(self.answer_list).format(seg=seg_replace)\n\n            questions.append(question)\n            answers.append(answer)\n\n            conv.messages = []\n            conv.append_message(conv.roles[0], questions[-1])\n            conv.append_message(conv.roles[1], answers[-1])\n            conversations.append(conv.get_prompt())\n\n            masks.append(mask)\n\n        masks = torch.from_numpy(np.stack(masks, axis=0)) # (num_classes, num_frame, H, W)\n        label = torch.ones(masks.shape[-2], masks.shape[-1]) * self.ignore_label\n        \n        return (\n            ','.join(data['video_frame_path_list']),\n            torch.stack(frame_sam_list,dim=0),\n            torch.stack(frame_clip_list + [seg_frame_clip],dim=0),\n            conversations,\n            masks,\n            label,\n            resize,\n            questions,\n            [exp for exp, _ in data['exp_mask_pairs']],\n        )\n\n    def preprocess(self, x: torch.Tensor) -> torch.Tensor:\n        \"\"\"Normalize pixel values and pad to a square input.\"\"\"\n        # Normalize colors\n        x = (x - self.pixel_mean) / self.pixel_std\n\n        # Pad\n        h, w = x.shape[-2:]\n        padh = self.img_size - h\n        padw = self.img_size - w\n        x = F.pad(x, (0, padw, 0, padh))\n        return x\n    \n\n    def sample_data(self,):\n        ds         = np.random.choice(list(range(len(self.rvos_seg_ds_list))), p=self.rvos_sample_ratio)\n        ds         = self.rvos_seg_ds_list[ds]\n        metas      = self.rvos_seg_data[ds]['metas']\n        mask_dict  = self.rvos_seg_data[ds]['mask_dict']\n        image_root = self.rvos_seg_data[ds]['image_root']\n        vid2metaid = self.rvos_seg_data[ds]['vid2metaid']\n\n        # sample a video \n        vid = np.random.choice(list(vid2metaid.keys()))\n        meta_ids = vid2metaid[vid]\n        # random choose self.num_classes_per_sample indices\n        meta_ids = np.random.choice(meta_ids, min(self.num_classes_per_sample, len(meta_ids)), replace=False)\n        video_name = metas[meta_ids[0]]['video']\n        assert all([metas[meta_id]['video'] == video_name for meta_id in meta_ids]), \"video name not match\"\n\n        record = {}\n        vid_dict_first = metas[meta_ids[0]]\n        record[\"file_names\"] = [\n            os.path.join(image_root, 'JPEGImages', vid_dict_first['video'], vid_dict_first[\"frames\"][i]+ '.jpg') \n            for i in range(vid_dict_first[\"length\"])\n        ]\n        record[\"length\"] = vid_dict_first[\"length\"]\n        # 随机选择 self.num_frames_per_sample 帧\n        # self.num_frames_sample_range\n        if len(self.rvos_sample_list) > 0:\n            num_frames_per_sample = self.rvos_sample_list[self.num_be_called % len(self.rvos_sample_list)]\n            self.num_be_called += 1\n        else:\n            num_frames_per_sample = np.random.randint(self.num_frames_sample_range[0], self.num_frames_sample_range[1] + 1)\n\n        if vid_dict_first[\"length\"] > num_frames_per_sample:\n            if self.rvos_sample_policy == \"random\":\n                frame_ids = np.random.choice(vid_dict_first[\"length\"], num_frames_per_sample, replace=False).tolist()\n                frame_ids = sorted(frame_ids)\n            elif self.rvos_sample_policy == \"uniform\":\n                num_length = vid_dict_first[\"length\"]\n                split_point = np.linspace(0, num_length, num=num_frames_per_sample+1, dtype=int)\n                frame_ids = [np.random.randint(split_point[i], split_point[i+1]) for i in range(num_frames_per_sample)]\n\n        else:\n            frame_ids = list(range(vid_dict_first[\"length\"]))\n        video_frame_path_list = [record[\"file_names\"][i] for i in frame_ids]\n        # 随机选择一帧用作分割\n        seg_frame_id = np.random.choice(frame_ids)\n        seg_frame_path = record[\"file_names\"][seg_frame_id]\n        image_shape = cv2.imread(record[\"file_names\"][0]).shape[:2]\n        # 提取 不同exp 的 mask\n        exp_mask_pairs = []\n        for meta_id in meta_ids:\n            vid_dict = metas[meta_id]\n            assert vid_dict['video'] == video_name, \"video name not match\"\n            assert vid_dict['length'] == vid_dict_first['length'], \"video length not match\"\n            anno_ids = vid_dict['anno_id']\n            obj_ids = vid_dict['obj_id']\n            exp = vid_dict['exp']\n            if 'lvvis' in ds:\n                exp = exp.replace('_', ' ')     \n            m_final_list = []\n            for seg_frame_id in [seg_frame_id]:\n                m_final = np.zeros(image_shape, dtype=np.uint8)\n                for x, obj_id in zip(anno_ids, obj_ids):\n                    segm = mask_dict[x][seg_frame_id]\n                    if segm is not None:\n                        m = maskUtils.decode(segm)\n                        if m.ndim == 3:\n                            m = m.sum(axis=2).astype(np.uint8)\n                        else:\n                            m = m.astype(np.uint8)\n                        m_final = m_final | m\n                m_final_list.append(m_final)\n            m_final_list = np.stack(m_final_list, axis=0)  # (num_frame, H, W)\n\n            exp_mask_pairs.append((exp, m_final_list))\n\n        # 以 self.prob_no_in_video 的概率随机选择其他视频的帧, 并将mask置为0\n        if random.random() < self.prob_no_in_video:\n            vid_other = np.random.choice([x for x in vid2metaid.keys() if x != vid])\n            meta_id_other = random.choice(vid2metaid[vid_other])\n            vid_dict_other = metas[meta_id_other]\n            assert vid_dict_other['video'] != video_name, \"video name not match\"\n            # 随机选择一帧用作分割\n            seg_frame_id_other = np.random.choice(vid_dict_other[\"length\"])\n            frame_path = os.path.join(image_root, 'JPEGImages', vid_dict_other['video'], vid_dict_other[\"frames\"][seg_frame_id_other]+ '.jpg')\n            seg_frame_path = frame_path\n            image_shape = cv2.imread(frame_path).shape[:2]\n            m_final = np.zeros(image_shape, dtype=np.uint8)\n\n            exp_mask_pairs = [(x[0], m_final.copy()) for x in exp_mask_pairs]\n\n        data = {\n            \"video_name\"           : video_name,\n            \"video_frame_path_list\": video_frame_path_list,\n            \"seg_frame_path\"       : seg_frame_path,\n            \"exp_mask_pairs\"       : exp_mask_pairs,\n        }\n\n        return data\n    \n"
  },
  {
    "path": "utils/rvos_eval_dataset.py",
    "content": "###########################################################################\n# Created by: BUAA\n# Email: clyanhh@gmail.com\n# Copyright (c) 2024\n###########################################################################\nimport itertools\nimport json\nimport os\nimport os.path as osp\nimport pickle\nimport sys\nimport cv2\nimport time\nimport random\nimport logging\nimport math\nimport torch\nimport torch.nn.functional as F\nfrom pprint import pprint\nfrom tqdm import tqdm\nfrom termcolor import colored\n\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport skimage.io as io\nfrom matplotlib.collections import PatchCollection\nfrom matplotlib.patches import Polygon, Rectangle\nimport pycocotools.mask as maskUtils\nfrom model.llava import conversation as conversation_lib\nfrom model.segment_anything.utils.transforms import ResizeLongestSide\nfrom transformers import CLIPImageProcessor\nfrom PIL import Image\n\nfrom .d2_datasets.refytvos_utils import load_refytvos_json\nfrom .d2_datasets.mevis_utils import load_mevis_json\nfrom .d2_datasets.refytvos_val_videos import REFYTVOS_VAL_VIDEOS\nfrom .utils import (\n    UNIFIED_SHORT_QUESTION_LIST, UNIFIED_LONG_QUESTION_LIST, ANSWER_LIST,\n    DEFAULT_VIDEO_TOKEN, DEFAULT_IMAGE_TOKEN, convert2imagesplit\n)\nfrom .dataset_config import RVOS_DATA_INFO as _DATA_INFO\nfrom .dataset_config import RVOS_ROOT\n\nlogger = logging.getLogger(__name__)\n\ndef get_zero_image(processor):\n    i = Image.new('RGB', (224, 224), (0, 0, 0))\n    return processor.preprocess(i, return_tensors='pt')['pixel_values'][0]\n\nclass RVOSEvalDataset(torch.utils.data.Dataset):\n    # davis17_train, refytvos_train, mevis_train\n    pixel_mean = torch.Tensor([123.675, 116.28, 103.53]).view(-1, 1, 1)\n    pixel_std = torch.Tensor([58.395, 57.12, 57.375]).view(-1, 1, 1)\n    img_size = 1024\n    ignore_label = 255\n    def __init__(\n        self, \n        tokenizer,\n        vision_tower,\n        output_dir: str,  # osp.join(output_dir, \"Annotations\", video_name, exp_id, f\"{frame_id}.png\")\n        precision               : str  = \"fp32\",\n        image_size              : int  = 224,\n        rvos_dataset_name       : str  = \"refytvos_train\",\n        max_image_token         : int  = 12,\n    ):\n        assert rvos_dataset_name in _DATA_INFO.keys(), f\"dataset {rvos_dataset_name} not found!\"\n        self.root = RVOS_ROOT\n        self.image_size = image_size\n        self.tokenizer = tokenizer\n        self.precision = precision\n        self.transform = ResizeLongestSide(image_size)\n        self.clip_image_processor = CLIPImageProcessor.from_pretrained(vision_tower)\n\n        assert max_image_token < 20, \"max_image_token must < 20\"\n        self.max_image_token = max_image_token\n\n        self.long_question_list = UNIFIED_LONG_QUESTION_LIST\n        self.short_question_list = UNIFIED_SHORT_QUESTION_LIST\n\n        self.answer_list = ANSWER_LIST\n\n        self.output_dir = output_dir\n        self.rvos_dataset_name = rvos_dataset_name\n        assert self.rvos_dataset_name in _DATA_INFO.keys(), f\"dataset {self.rvos_dataset_name} not found!\"\n        print(f\"loading dataset {self.rvos_dataset_name} into memory...\")\n        image_root, json_file = _DATA_INFO[self.rvos_dataset_name]\n        self.image_root = osp.join(self.root, image_root)\n        self.json_file = osp.join(self.root, json_file)\n        self.d2_dataset_dicts, self.lisa_dataset_dicts = self.load_data()\n\n    def __len__(self):\n        return len(self.lisa_dataset_dicts)\n    \n    def load_data(self, ):\n        metas, mask_dict, vid2metaid, is_train = load_mevis_json(self.image_root, self.json_file, self.rvos_dataset_name)\n        d2_dataset_dicts = []\n        lisa_dataset_dicts = []\n        \n        tmp_valid_vid = 0\n        for idx_vd, vid_dict in tqdm(enumerate(metas), desc=f'Loading {self.rvos_dataset_name} ...'):\n            record = {}\n            if (self.rvos_dataset_name == \"refytvos_valid\") and (vid_dict['video'] not in REFYTVOS_VAL_VIDEOS):\n                continue\n            record[\"file_names\"] = [\n                os.path.join(self.image_root, 'JPEGImages', vid_dict['video'], vid_dict[\"frames\"][i]+ '.jpg') \n                for i in range(vid_dict[\"length\"])\n            ]\n            record[\"length\"] = vid_dict[\"length\"]\n            video_name, exp, anno_ids, obj_ids, category, exp_id = \\\n                vid_dict['video'], vid_dict['exp'], vid_dict['anno_id'], vid_dict['obj_id'], vid_dict['category'],  vid_dict['exp_id']\n\n            exp = \" \".join(exp.lower().split())\n            if \"eval_idx\" in vid_dict:\n                record[\"eval_idx\"] = vid_dict[\"eval_idx\"]\n\n            video_objs = []\n            record[\"annotations\"] = video_objs\n            record[\"sentence\"]    = exp\n            record[\"exp_id\"]      = exp_id\n            record[\"video_name\"]  = video_name\n            d2_dataset_dicts.append(record)\n            \n            for file_path in record[\"file_names\"]:\n                file_name = osp.basename(file_path).rsplit('.', 1)[0]\n                output_path = osp.join(self.output_dir, \"Annotations\", video_name, exp_id, file_name + '.png')\n                lisa_dataset_dicts.append(\n                    dict(\n                        idx_d2 = tmp_valid_vid,\n                        frame_path = file_path,\n                        output_path = output_path,\n                    )\n                )\n            tmp_valid_vid += 1\n\n        return d2_dataset_dicts, lisa_dataset_dicts\n\n    def __getitem__(self, idx):\n        data_lisa   = self.lisa_dataset_dicts[idx]\n        data_d2     = self.d2_dataset_dicts[data_lisa['idx_d2']]\n        frame_path  = data_lisa['frame_path']\n        image_shape = cv2.imread(frame_path).shape[:2]\n        zero_mask   = np.zeros(image_shape, dtype=np.uint8)\n        data = {\n            \"video_name\"           : data_d2['video_name'],\n            \"video_frame_path_list\": data_d2['file_names'],\n            \"seg_frame_path\"       : data_lisa['frame_path'],\n            \"exp_mask_pairs\"       : [(data_d2['sentence'], zero_mask)],\n        }\n\n        # NOTE: 划分输入，token长度不能太长，只能抽帧\n        idx_seg = data['video_frame_path_list'].index(data['seg_frame_path'])\n        if self.max_image_token != 1:\n            to_devide = (self.max_image_token - 1)\n            step_size = math.ceil(len(data['video_frame_path_list']) / to_devide)\n            idx_start = idx_seg % step_size\n            idx_select = list(range(idx_start, len(data['video_frame_path_list']), step_size))\n        else:\n            idx_select = [idx_seg, ]\n        assert idx_seg in idx_select\n        data['video_frame_path_list'] = [data['video_frame_path_list'][i] for i in idx_select]\n\n        frame_list = [cv2.imread(x) for x in data['video_frame_path_list']]\n        frame_list = [cv2.cvtColor(x, cv2.COLOR_BGR2RGB) for x in frame_list]\n        frame_clip_list = [self.clip_image_processor(x, return_tensors=\"pt\")[\"pixel_values\"][0] for x in frame_list]\n\n        video_len = len(frame_clip_list)\n        \n        seg_frame = cv2.imread(data['seg_frame_path'])\n        seg_frame = cv2.cvtColor(seg_frame, cv2.COLOR_BGR2RGB)\n        seg_frame_clip = self.clip_image_processor(seg_frame, return_tensors=\"pt\")[\"pixel_values\"][0]\n        seg_frame_sam = self.transform.apply_image(seg_frame)\n        resize = seg_frame_sam.shape[:2]\n        seg_frame_sam = self.preprocess(torch.from_numpy(seg_frame_sam).permute(2, 0, 1).contiguous())\n\n        conversations = []\n        conv = conversation_lib.default_conversation.copy()\n\n        questions = []\n        answers = []\n        conversations = []\n        masks = []\n        conv = conversation_lib.default_conversation.copy()\n        for exp, mask in data['exp_mask_pairs']:\n            text = exp.strip()\n            assert len(text.split('||')) == 1\n            # question_template = random.choice(self.long_question_list)\n            if text[-1] == '?':\n                question = self.long_question_list[0].format(sent=text)\n            else:\n                question = self.short_question_list[0].format(sent=text)\n            question = convert2imagesplit(question, video_len)\n\n            \n            questions.append(question)\n            # answers.append(random.choice(self.answer_list))\n            answers.append(self.answer_list[0])\n\n            conv.messages = []\n            conv.append_message(conv.roles[0], questions[-1])\n            conv.append_message(conv.roles[1], answers[-1])\n            conversations.append(conv.get_prompt())\n\n            masks.append(mask)\n\n        masks = torch.from_numpy(np.stack(masks, axis=0))\n        label = torch.ones(masks.shape[1], masks.shape[2]) * self.ignore_label\n\n        return (\n            data_lisa['output_path'], \n            seg_frame_sam,\n            torch.stack(frame_clip_list + [seg_frame_clip], dim=0),\n            conversations,\n            masks,\n            label,\n            resize,\n            questions,\n            [exp for exp, _ in data['exp_mask_pairs']],\n            True\n        )\n\n    def preprocess(self, x: torch.Tensor) -> torch.Tensor:\n        \"\"\"Normalize pixel values and pad to a square input.\"\"\"\n        # Normalize colors\n        x = (x - self.pixel_mean) / self.pixel_std\n\n        # Pad\n        h, w = x.shape[-2:]\n        padh = self.img_size - h\n        padw = self.img_size - w\n        x = F.pad(x, (0, padw, 0, padh))\n        return x\n\n"
  },
  {
    "path": "utils/sem_seg_dataset.py",
    "content": "import glob\nimport json\nimport os\nimport random\n\nimport cv2\nimport numpy as np\nimport torch\nimport torch.nn.functional as F\nfrom PIL import Image\nfrom pycocotools.coco import COCO\nfrom transformers import CLIPImageProcessor\n\nfrom model.llava import conversation as conversation_lib\nfrom model.segment_anything.utils.transforms import ResizeLongestSide\n\nfrom .utils import ANSWER_LIST, UNIFIED_SHORT_QUESTION_LIST, convert2imagesplit\n\n\ndef init_mapillary(base_image_dir):\n    mapillary_data_root = os.path.join(base_image_dir, \"mapillary\")\n    with open(os.path.join(mapillary_data_root, \"config_v2.0.json\")) as f:\n        mapillary_classes = json.load(f)[\"labels\"]\n    mapillary_classes = [x[\"readable\"].lower() for x in mapillary_classes]\n    mapillary_classes = np.array(mapillary_classes)\n    mapillary_labels = sorted(\n        glob.glob(\n            os.path.join(mapillary_data_root, \"training\", \"v2.0\", \"labels\", \"*.png\")\n        )\n    )\n    mapillary_images = [\n        x.replace(\".png\", \".jpg\").replace(\"v2.0/labels\", \"images\")\n        for x in mapillary_labels\n    ]\n    print(\"mapillary: \", len(mapillary_images))\n    return mapillary_classes, mapillary_images, mapillary_labels\n\n\ndef init_ade20k(base_image_dir):\n    with open(\"utils/ade20k_classes.json\", \"r\") as f:\n        ade20k_classes = json.load(f)\n    ade20k_classes = np.array(ade20k_classes)\n    image_ids = sorted(\n        os.listdir(os.path.join(base_image_dir, \"ade20k/images\", \"training\"))\n    )\n    ade20k_image_ids = []\n    for x in image_ids:\n        if x.endswith(\".jpg\"):\n            ade20k_image_ids.append(x[:-4])\n    ade20k_images = []\n    for image_id in ade20k_image_ids:  # self.descriptions:\n        ade20k_images.append(\n            os.path.join(\n                base_image_dir,\n                \"ade20k\",\n                \"images\",\n                \"training\",\n                \"{}.jpg\".format(image_id),\n            )\n        )\n    ade20k_labels = [\n        x.replace(\".jpg\", \".png\").replace(\"images\", \"annotations\")\n        for x in ade20k_images\n    ]\n    print(\"ade20k: \", len(ade20k_images))\n    return ade20k_classes, ade20k_images, ade20k_labels\n\n\ndef init_cocostuff(base_image_dir):\n    cocostuff_classes = []\n    with open(\"utils/cocostuff_classes.txt\") as f:\n        for line in f.readlines()[1:]:\n            cocostuff_classes.append(line.strip().split(\": \")[-1])\n    cocostuff_classes = np.array(cocostuff_classes)\n    cocostuff_images = []\n\n    cocostuff_labels = glob.glob(\n        os.path.join(base_image_dir, \"cocostuff\", \"train2017\", \"*.png\")\n    )\n    cocostuff_images = [\n        x.replace(\".png\", \".jpg\").replace(\"cocostuff\", \"coco\") for x in cocostuff_labels\n    ]\n\n    print(\"cocostuff: \", len(cocostuff_images))\n    return cocostuff_classes, cocostuff_images, cocostuff_labels\n\n\ndef init_paco_lvis(base_image_dir):\n    coco_api_paco_lvis = COCO(\n        os.path.join(\n            base_image_dir, \"vlpart\", \"paco\", \"annotations\", \"paco_lvis_v1_train.json\"\n        )\n    )\n    all_classes = coco_api_paco_lvis.loadCats(coco_api_paco_lvis.getCatIds())\n    class_map_paco_lvis = {}\n    for cat in all_classes:\n        cat_split = cat[\"name\"].strip().split(\":\")\n        if len(cat_split) == 1:\n            name = cat_split[0].split(\"_(\")[0]\n        else:\n            assert len(cat_split) == 2\n            obj, part = cat_split\n            obj = obj.split(\"_(\")[0]\n            part = part.split(\"_(\")[0]\n            name = (obj, part)\n        class_map_paco_lvis[cat[\"id\"]] = name\n    img_ids = coco_api_paco_lvis.getImgIds()\n    print(\"paco_lvis: \", len(img_ids))\n    return class_map_paco_lvis, img_ids, coco_api_paco_lvis\n\n\ndef init_pascal_part(base_image_dir):\n    coco_api_pascal_part = COCO(\n        os.path.join(base_image_dir, \"vlpart\", \"pascal_part\", \"train.json\")\n    )\n    all_classes = coco_api_pascal_part.loadCats(coco_api_pascal_part.getCatIds())\n    class_map_pascal_part = {}\n    for cat in all_classes:\n        cat_main, cat_part = cat[\"name\"].strip().split(\":\")\n        name = (cat_main, cat_part)\n        class_map_pascal_part[cat[\"id\"]] = name\n    img_ids = coco_api_pascal_part.getImgIds()\n    print(\"pascal_part: \", len(img_ids))\n    return class_map_pascal_part, img_ids, coco_api_pascal_part\n\n\nclass SemSegDataset(torch.utils.data.Dataset):\n    pixel_mean = torch.Tensor([123.675, 116.28, 103.53]).view(-1, 1, 1)\n    pixel_std = torch.Tensor([58.395, 57.12, 57.375]).view(-1, 1, 1)\n    img_size = 1024\n    ignore_label = 255\n\n    def __init__(\n        self,\n        base_image_dir,\n        tokenizer,\n        vision_tower,\n        samples_per_epoch=500 * 8 * 2 * 10,\n        precision: str = \"fp32\",\n        image_size: int = 224,\n        num_classes_per_sample: int = 3,\n        exclude_val=False,\n        sem_seg_data=\"ade20k||cocostuff||partimagenet||pascal_part||paco_lvis||mapillary\",\n    ):\n        self.exclude_val = exclude_val\n        self.samples_per_epoch = samples_per_epoch\n        self.num_classes_per_sample = num_classes_per_sample\n\n        self.base_image_dir = base_image_dir\n        self.image_size = image_size\n        self.tokenizer = tokenizer\n        self.precision = precision\n        self.transform = ResizeLongestSide(image_size)\n        self.clip_image_processor = CLIPImageProcessor.from_pretrained(vision_tower)\n\n        self.short_question_list = UNIFIED_SHORT_QUESTION_LIST\n        self.answer_list = ANSWER_LIST\n\n        self.data2list = {}\n        self.data2classes = {}\n\n        self.sem_seg_datas = sem_seg_data.split(\"||\")\n        for ds in self.sem_seg_datas:\n            classes, images, labels = eval(\"init_{}\".format(ds))(base_image_dir)\n            self.data2list[ds] = (images, labels)\n            self.data2classes[ds] = classes\n\n        if \"cocostuff\" in self.sem_seg_datas:\n            self.cocostuff_class2index = {\n                c: i for i, c in enumerate(self.data2classes[\"cocostuff\"])\n            }\n\n    def __len__(self):\n        return self.samples_per_epoch\n\n    def preprocess(self, x: torch.Tensor) -> torch.Tensor:\n        \"\"\"Normalize pixel values and pad to a square input.\"\"\"\n        # Normalize colors\n        x = (x - self.pixel_mean) / self.pixel_std\n\n        # Pad\n        h, w = x.shape[-2:]\n        padh = self.img_size - h\n        padw = self.img_size - w\n        x = F.pad(x, (0, padw, 0, padh))\n        return x\n\n    def __getitem__(self, idx):\n        ds = random.randint(0, len(self.sem_seg_datas) - 1)\n        ds = self.sem_seg_datas[ds]\n\n        if ds in [\"paco_lvis\", \"pascal_part\"]:\n            class_map = self.data2classes[ds]\n            img_ids, coco_api = self.data2list[ds]\n            idx = random.randint(0, len(img_ids) - 1)\n            img_id = img_ids[idx]\n            image_info = coco_api.loadImgs([img_id])[0]\n            file_name = image_info[\"file_name\"]\n            if ds == \"pascal_part\":\n                file_name = os.path.join(\n                    \"VOCdevkit\", \"VOC2010\", \"JPEGImages\", file_name\n                )\n                image_path = os.path.join(self.base_image_dir, \"vlpart\", ds, file_name)\n            elif ds == \"paco_lvis\":\n                image_path = os.path.join(self.base_image_dir, \"coco\", file_name)\n            image = cv2.imread(image_path)\n            image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)\n\n            # preprocess image for clip\n            image_clip = self.clip_image_processor.preprocess(\n                image, return_tensors=\"pt\"\n            )[\"pixel_values\"][0]\n            image = self.transform.apply_image(image)  # preprocess image for sam\n            resize = image.shape[:2]\n            annIds = coco_api.getAnnIds(imgIds=image_info[\"id\"])\n            anns = coco_api.loadAnns(annIds)\n            if len(anns) == 0:\n                return self.__getitem__(0)\n            if len(anns) >= self.num_classes_per_sample:\n                sampled_anns = np.random.choice(\n                    anns, size=self.num_classes_per_sample, replace=False\n                ).tolist()\n            else:\n                sampled_anns = anns\n            sampled_classes = []\n            for ann in sampled_anns:\n                sampled_cls = class_map[ann[\"category_id\"]]\n                if isinstance(sampled_cls, tuple):\n                    obj, part = sampled_cls\n                    if random.random() < 0.5:\n                        name = obj + \" \" + part\n                    else:\n                        name = \"the {} of the {}\".format(part, obj)\n                else:\n                    name = sampled_cls\n                sampled_classes.append(name)\n\n        elif ds in [\"ade20k\", \"cocostuff\", \"mapillary\"]:\n            image, labels = self.data2list[ds]\n            idx = random.randint(0, len(image) - 1)\n            image_path = image[idx]\n            label_path = labels[idx]\n            label = Image.open(label_path)\n            label = np.array(label)\n            if ds == \"ade20k\":\n                label[label == 0] = 255\n                label -= 1\n                label[label == 254] = 255\n            elif ds == \"cocostuff\":\n                for c, i in self.cocostuff_class2index.items():\n                    if \"-\" in c:\n                        label[label == i] = 255\n            img = cv2.imread(image_path)\n            image = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)\n            # preprocess image for clip\n            image_clip = self.clip_image_processor.preprocess(\n                image, return_tensors=\"pt\"\n            )[\"pixel_values\"][0]\n            image = self.transform.apply_image(image)  # preprocess image for sam\n            resize = image.shape[:2]\n            unique_label = np.unique(label).tolist()\n            if 255 in unique_label:\n                unique_label.remove(255)\n            if len(unique_label) == 0:\n                return self.__getitem__(0)\n\n            classes = [self.data2classes[ds][class_id] for class_id in unique_label]\n            if len(classes) >= self.num_classes_per_sample:\n                sampled_classes = np.random.choice(\n                    classes, size=self.num_classes_per_sample, replace=False\n                ).tolist()\n            else:\n                sampled_classes = classes\n\n        questions = []\n        answers = []\n        class_ids = []\n        for sampled_cls in sampled_classes:\n            text = sampled_cls\n\n            assert len(text.split(\"||\")) == 1\n            question_template = random.choice(self.short_question_list)\n            t_question = convert2imagesplit(question_template.format(sent=text.lower()), 1)\n            questions.append(t_question)\n\n            answers.append(random.choice(self.answer_list))\n\n            if ds in [\"paco_lvis\", \"pascal_part\"]:\n                continue\n\n            class_id = self.data2classes[ds].tolist().index(sampled_cls)\n            class_ids.append(class_id)\n\n        conversations = []\n        conv = conversation_lib.default_conversation.copy()\n\n        i = 0\n        while i < len(questions):\n            conv.messages = []\n            conv.append_message(conv.roles[0], questions[i])\n            conv.append_message(conv.roles[1], answers[i])\n            conversations.append(conv.get_prompt())\n            i += 1\n\n        image = self.preprocess(torch.from_numpy(image).permute(2, 0, 1).contiguous())\n\n        if ds in [\"paco_lvis\", \"pascal_part\"]:\n            masks = []\n            for ann in sampled_anns:\n                try:\n                    masks.append(coco_api.annToMask(ann))\n                except Exception as e:\n                    print(e)\n                    return self.__getitem__(0)\n\n            masks = np.stack(masks, axis=0)\n            masks = torch.from_numpy(masks)\n            label = torch.ones(masks.shape[1], masks.shape[2]) * self.ignore_label\n\n        else:\n            label = torch.from_numpy(label).long()\n            masks = []\n            for class_id in class_ids:\n                masks.append(label == class_id)\n            masks = torch.stack(masks, dim=0)\n        return (\n            image_path,\n            image,\n            torch.stack([image_clip, image_clip], dim=0),\n            conversations,\n            masks,\n            label,\n            resize,\n            questions,\n            sampled_classes,\n        )\n"
  },
  {
    "path": "utils/utils.py",
    "content": "from enum import Enum\n\nimport numpy as np\nimport torch\nimport torch.distributed as dist\n\nIGNORE_INDEX = -100\nIMAGE_TOKEN_INDEX = -200\nDEFAULT_IMAGE_TOKEN = \"<image>\"\nDEFAULT_IMAGE_PATCH_TOKEN = \"<im_patch>\"\nDEFAULT_IM_START_TOKEN = \"<im_start>\"\nDEFAULT_IM_END_TOKEN = \"<im_end>\"\nDEFAULT_VIDEO_TOKEN = \"<video>\"\n\nSHORT_QUESTION_LIST = [\n    DEFAULT_IMAGE_TOKEN + \"\\n\" + \"Can you segment the {class_name} in this image?\",\n    DEFAULT_IMAGE_TOKEN + \"\\n\" + \"Please segment the {class_name} in this image.\",\n    DEFAULT_IMAGE_TOKEN\n    + \"\\n\"\n    + \"What is {class_name} in this image? Please respond with segmentation mask.\",\n    DEFAULT_IMAGE_TOKEN\n    + \"\\n\"\n    + \"What is {class_name} in this image? Please output segmentation mask.\",\n]\n\nLONG_QUESTION_LIST = [\n    DEFAULT_IMAGE_TOKEN + \"\\n\" + \"{sent} Please respond with segmentation mask.\",\n    DEFAULT_IMAGE_TOKEN + \"\\n\" + \"{sent} Please output segmentation mask.\",\n]\n\nEXPLANATORY_QUESTION_LIST = [\n    \"Reference Video: \" + DEFAULT_VIDEO_TOKEN + \" \\n\"\n    \"Target Image: \" + DEFAULT_IMAGE_TOKEN + \" \\n\"\n    \"{sent}Please output segmentation mask in the Target Image and explain why.\",\n    \"Reference Video: \" + DEFAULT_VIDEO_TOKEN + \" \\n\"\n    \"Target Image: \" + DEFAULT_IMAGE_TOKEN + \" \\n\"\n    \"{sent} Please output segmentation mask in the Target Image and explain the reason.\",\n    \"Reference Video: \" + DEFAULT_VIDEO_TOKEN + \" \\n\"\n    \"Target Image: \" + DEFAULT_IMAGE_TOKEN + \" \\n\"\n    \"{sent} Please output segmentation mask in the Target Image and give some explanation.\",\n]\n\nANSWER_LIST = [\n    \"It is [SEG].\",\n    \"Sure, [SEG].\",\n    \"Sure, it is [SEG].\",\n    \"Sure, the segmentation result is [SEG].\",\n]\n\nRVOS_MULTISEG_QUESTION_LIST = [\n    DEFAULT_VIDEO_TOKEN + \"\\n\" + \"Can you segment the {sent} in this video?\",\n    DEFAULT_VIDEO_TOKEN + \"\\n\" + \"Please segment the {sent} in this video.\",\n    DEFAULT_VIDEO_TOKEN\n    + \"\\n\"\n    + \"What is {sent} in this video? Please respond with segmentation mask.\",\n    DEFAULT_VIDEO_TOKEN\n    + \"\\n\"\n    + \"What is {sent} in this video? Please output segmentation mask.\",\n]\n\nUNIFIED_SHORT_QUESTION_LIST = [\n    \"Reference Video: \" + DEFAULT_VIDEO_TOKEN + \" \\n\"\n    \"Target Image: \" + DEFAULT_IMAGE_TOKEN + \" \\n\"\n    \"What is {sent} in the Reference Video? Please respond with segmentation mask in the Target Image.\",\n    \"Reference Video: \" + DEFAULT_VIDEO_TOKEN + \" \\n\"\n    \"Target Image: \" + DEFAULT_IMAGE_TOKEN + \" \\n\"\n    \"What is {sent} in the Reference Video? Please output segmentation mask in the Target Image.\",\n    \"Reference Video: \" + DEFAULT_VIDEO_TOKEN + \" \\n\"\n    \"Target Image: \" + DEFAULT_IMAGE_TOKEN + \" \\n\"\n    \"Please find {sent} in the Reference Video and segment it in the Target Image.\",\n]\n\nUNIFIED_LONG_QUESTION_LIST = [\n    \"Reference Video: \" + DEFAULT_VIDEO_TOKEN + \" \\n\"\n    \"Target Image: \" + DEFAULT_IMAGE_TOKEN + \" \\n\"\n    \"{sent} Please find it in the Reference Video and respond with segmentation mask in the Target Image.\",\n    \"Reference Video: \" + DEFAULT_VIDEO_TOKEN + \" \\n\"\n    \"Target Image: \" + DEFAULT_IMAGE_TOKEN + \" \\n\"\n    \"{sent} Please find it in the Reference Video and output segmentation mask in the Target Image.\",\n]\n\nRVOS_MULTISEG_ANSWER_LIST = [\n    \"It is {seg}.\",\n    \"Sure, {seg}.\",\n    \"Sure, it is {seg}.\",\n    \"Sure, the segmentation result is {seg}.\",\n]\n\ndef convert2imagesplit(sent: str, video_len: int) -> str:\n    assert DEFAULT_VIDEO_TOKEN in sent, \"only support video token\"\n    assert sent.count(DEFAULT_VIDEO_TOKEN) == 1, \"only support one video token\"\n    replace_sent = \", \".join(f'({i}){DEFAULT_IMAGE_TOKEN}' for i in range(video_len))\n    return sent.replace(DEFAULT_VIDEO_TOKEN, replace_sent)\n\nclass Summary(Enum):\n    NONE = 0\n    AVERAGE = 1\n    SUM = 2\n    COUNT = 3\n\n\nclass AverageMeter(object):\n    \"\"\"Computes and stores the average and current value\"\"\"\n\n    def __init__(self, name, fmt=\":f\", summary_type=Summary.AVERAGE):\n        self.name = name\n        self.fmt = fmt\n        self.summary_type = summary_type\n        self.reset()\n\n    def reset(self):\n        self.val = 0\n        self.avg = 0\n        self.sum = 0\n        self.count = 0\n\n    def update(self, val, n=1):\n        self.val = val\n        self.sum += val * n\n        self.count += n\n        self.avg = self.sum / self.count\n\n    def all_reduce(self):\n        device = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n        if isinstance(self.sum, np.ndarray):\n            total = torch.tensor(\n                self.sum.tolist()\n                + [\n                    self.count,\n                ],\n                dtype=torch.float32,\n                device=device,\n            )\n        else:\n            total = torch.tensor(\n                [self.sum, self.count], dtype=torch.float32, device=device\n            )\n\n        dist.all_reduce(total, dist.ReduceOp.SUM, async_op=False)\n        if total.shape[0] > 2:\n            self.sum, self.count = total[:-1].cpu().numpy(), total[-1].cpu().item()\n        else:\n            self.sum, self.count = total.tolist()\n        self.avg = self.sum / (self.count + 1e-5)\n\n    def __str__(self):\n        fmtstr = \"{name} {val\" + self.fmt + \"} ({avg\" + self.fmt + \"})\"\n        return fmtstr.format(**self.__dict__)\n\n    def summary(self):\n        fmtstr = \"\"\n        if self.summary_type is Summary.NONE:\n            fmtstr = \"\"\n        elif self.summary_type is Summary.AVERAGE:\n            fmtstr = \"{name} {avg:.3f}\"\n        elif self.summary_type is Summary.SUM:\n            fmtstr = \"{name} {sum:.3f}\"\n        elif self.summary_type is Summary.COUNT:\n            fmtstr = \"{name} {count:.3f}\"\n        else:\n            raise ValueError(\"invalid summary type %r\" % self.summary_type)\n\n        return fmtstr.format(**self.__dict__)\n\n\ndef intersectionAndUnionGPU(output, target, K, ignore_index=255):\n    # 'K' classes, output and target sizes are N or N * L or N * H * W, each value in range 0 to K - 1.\n    assert output.dim() in [1, 2, 3]\n    assert output.shape == target.shape\n    output = output.view(-1)\n    target = target.view(-1)\n    output[target == ignore_index] = ignore_index\n    intersection = output[output == target]\n    area_intersection = torch.histc(intersection, bins=K, min=0, max=K - 1)\n    area_output = torch.histc(output, bins=K, min=0, max=K - 1)\n    area_target = torch.histc(target, bins=K, min=0, max=K - 1)\n    area_union = area_output + area_target - area_intersection\n    return area_intersection, area_union, area_target\n\n\nclass ProgressMeter(object):\n    def __init__(self, num_batches, meters, prefix=\"\"):\n        self.batch_fmtstr = self._get_batch_fmtstr(num_batches)\n        self.meters = meters\n        self.prefix = prefix\n\n    def display(self, batch):\n        entries = [self.prefix + self.batch_fmtstr.format(batch)]\n        entries += [str(meter) for meter in self.meters]\n        print(\"\\t\".join(entries))\n\n    def display_summary(self):\n        entries = [\" *\"]\n        entries += [meter.summary() for meter in self.meters]\n        print(\" \".join(entries))\n\n    def _get_batch_fmtstr(self, num_batches):\n        num_digits = len(str(num_batches // 1))\n        fmt = \"{:\" + str(num_digits) + \"d}\"\n        return \"[\" + fmt + \"/\" + fmt.format(num_batches) + \"]\"\n\n\ndef dict_to_cuda(input_dict):\n    for k, v in input_dict.items():\n        if isinstance(input_dict[k], torch.Tensor):\n            input_dict[k] = v.cuda(non_blocking=True)\n        elif (\n            isinstance(input_dict[k], list)\n            and len(input_dict[k]) > 0\n            and isinstance(input_dict[k][0], torch.Tensor)\n        ):\n            input_dict[k] = [ele.cuda(non_blocking=True) for ele in v]\n    return input_dict\n"
  },
  {
    "path": "utils/vqa_dataset.py",
    "content": "import json\nimport os\nimport random\n\nimport cv2\nimport torch\nimport torch.nn.functional as F\nfrom transformers import CLIPImageProcessor\n\nfrom model.llava import conversation as conversation_lib\nfrom model.segment_anything.utils.transforms import ResizeLongestSide\n\nfrom .utils import DEFAULT_IMAGE_TOKEN, DEFAULT_VIDEO_TOKEN, convert2imagesplit\n\n\ndef preprocess_multimodal(source, mm_use_im_start_end):\n    for sentence in source:\n        if DEFAULT_IMAGE_TOKEN in sentence[\"value\"]:\n            sentence[\"value\"] = (\n                sentence[\"value\"].replace(DEFAULT_IMAGE_TOKEN, \"\").strip()\n            )\n            sentence[\"value\"] = DEFAULT_VIDEO_TOKEN + \"\\n\" + sentence[\"value\"]\n            sentence[\"value\"] = sentence[\"value\"].strip()\n            sentence[\"value\"] = convert2imagesplit(sentence[\"value\"], 1)\n            if \"mmtag\" in conversation_lib.default_conversation.version:\n                sentence[\"value\"] = sentence[\"value\"].replace(\n                    DEFAULT_IMAGE_TOKEN, \"<Image>\" + DEFAULT_IMAGE_TOKEN + \"</Image>\"\n                )\n    return source\n\n\nclass VQADataset(torch.utils.data.Dataset):\n    pixel_mean = torch.Tensor([123.675, 116.28, 103.53]).view(-1, 1, 1)\n    pixel_std = torch.Tensor([58.395, 57.12, 57.375]).view(-1, 1, 1)\n    img_size = 1024\n    ignore_label = 255\n\n    def __init__(\n        self,\n        base_image_dir,\n        tokenizer,\n        vision_tower,\n        samples_per_epoch=500 * 8 * 2 * 10,\n        precision: str = \"fp32\",\n        image_size: int = 224,\n        num_classes_per_sample: int = 3,\n        exclude_val=False,\n        vqa_data=\"llava_instruct_150k\",\n    ):\n        self.exclude_val = exclude_val\n        self.samples_per_epoch = samples_per_epoch\n        self.num_classes_per_sample = num_classes_per_sample\n\n        self.base_image_dir = base_image_dir\n        self.image_size = image_size\n        self.tokenizer = tokenizer\n        self.precision = precision\n        self.transform = ResizeLongestSide(image_size)\n        self.clip_image_processor = CLIPImageProcessor.from_pretrained(vision_tower)\n\n        DATA_DIR = os.path.join(base_image_dir, \"llava_dataset\")\n        self.vqa_image_root = os.path.join(base_image_dir, \"coco/train2017\")\n        with open(os.path.join(DATA_DIR, \"{}.json\".format(vqa_data))) as f:\n            vqa_data = json.load(f)\n        self.vqa_data = vqa_data\n\n        print(\"vqa_data: \", len(self.vqa_data))\n\n    def __len__(self):\n        return self.samples_per_epoch\n\n    def preprocess(self, x: torch.Tensor) -> torch.Tensor:\n        \"\"\"Normalize pixel values and pad to a square input.\"\"\"\n        # Normalize colors\n        x = (x - self.pixel_mean) / self.pixel_std\n\n        # Pad\n        h, w = x.shape[-2:]\n        padh = self.img_size - h\n        padw = self.img_size - w\n        x = F.pad(x, (0, padw, 0, padh))\n        return x\n\n    def __getitem__(self, idx):\n        idx = random.randint(0, len(self.vqa_data) - 1)\n        item = self.vqa_data[idx]\n        image_path = os.path.join(self.vqa_image_root, item[\"image\"])\n        image = cv2.imread(image_path)\n        image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)\n        ori_size = image.shape[:2]\n        image_clip = self.clip_image_processor.preprocess(image, return_tensors=\"pt\")[\n            \"pixel_values\"\n        ][\n            0\n        ]  # preprocess image for clip\n\n        image = self.transform.apply_image(image)  # preprocess image for sam\n        resize = image.shape[:2]\n\n        conv = conversation_lib.default_conversation.copy()\n        source = item[\"conversations\"]\n        source = preprocess_multimodal(\n            source,\n            mm_use_im_start_end=conv.sep_style == conversation_lib.SeparatorStyle.TWO,\n        )\n        roles = {\"human\": conv.roles[0], \"gpt\": conv.roles[1]}\n        conversations = []\n        if roles[source[0][\"from\"]] != conv.roles[0]:\n            # Skip the first one if it is not from human\n            source = source[1:]\n        conv.messages = []\n        for j, sentence in enumerate(source):\n            role = roles[sentence[\"from\"]]\n            assert role == conv.roles[j % 2], f\"{i}\"\n            conv.append_message(role, sentence[\"value\"])\n        conversations.append(conv.get_prompt())\n\n        questions = conversations\n        sampled_classes = conversations\n\n        image = self.preprocess(torch.from_numpy(image).permute(2, 0, 1).contiguous())\n\n        masks = torch.rand(0, *ori_size)\n        label = torch.ones(ori_size) * self.ignore_label\n\n        return (\n            image_path,\n            image,\n            image_clip,\n            conversations,\n            masks,\n            label,\n            resize,\n            questions,\n            sampled_classes,\n        )\n"
  },
  {
    "path": "utils_llamavid/llamavid_client.py",
    "content": "import json\nimport requests\nimport os\nimport glob\nimport numpy as np\nimport tqdm\nimport argparse\n\n\nimport os\nimport os.path as osp\nimport json\nimport requests\nimport multiprocessing as mp\nfrom tqdm import tqdm\nfrom typing import Tuple, List\nfrom collections import defaultdict\nfrom termcolor import colored\n\n_PORTS = mp.Queue()\n\ndef call(video_dir: str, question: str, ):\n    port = _PORTS.get()\n    url = \"http://localhost:{port}/post\".format(port=port)\n    r = requests.post(url, json={\"video_dir\": video_dir, \"question\": question, }, )\n    r = json.loads(r.content.decode())\n    _PORTS.put(port)\n    return video_dir, question, r\n\ndef call_batch(params_list: List[Tuple[str, str]], ):\n    num_proc = _PORTS.qsize()\n    p = mp.Pool(num_proc)\n    pbar = tqdm(total=len(params_list))\n\n    vid2ques2ans = defaultdict(lambda: defaultdict(list))  # video_dir -> question -> list of answer\n    def _update(result):\n        video_dir, question, answer = result\n        vid2ques2ans[video_dir][question].append(answer)\n        pbar.update(1)\n\n    for params in params_list:\n        p.apply_async(call, args=params, callback=_update, error_callback=lambda e: print(colored(e, 'red')))\n\n    p.close()\n    p.join()\n    pbar.close()\n\n    vid2ques2ans = {k: dict(v) for k, v in vid2ques2ans.items()}\n    return vid2ques2ans\n\n_ELEM_PERCENT_LIST = [\n    (\"last 0%\", 1.0), (\"last 10%\", 0.9), (\"last 20%\", 0.8), (\"last 30%\", 0.7), (\"last 40%\", 0.6),\n    (\"last 50%\", 0.5), (\"last 60%\", 0.4), (\"last 70%\", 0.3), (\"last 80%\", 0.2), (\"last 90%\", 0.1), (\"last 100%\", 0.0),\n    (\"10%\", 0.1), (\"20%\", 0.2), (\"30%\", 0.3), (\"40%\", 0.4), (\"50%\", 0.5), \n    (\"60%\", 0.6), (\"70%\", 0.7), (\"80%\", 0.8), (\"90%\", 0.9), (\"100%\", 1.0), (\"0%\", 0.0), \n]\n\n\"\"\"\npython utils_llamavid/llamavid_client.py \\\n    --video_root /mnt/public02/usr/yancilin/clyan_data/other-datasets/ReVOS/JPEGImages \\\n    --data_json_file /mnt/public02/usr/yancilin/clyan_data/other-datasets/ReVOS/meta_expressions_valid_.json \\\n    --output_json_file /mnt/public02/usr/yancilin/clyan_data/other-datasets/ReVOS/meta_expressions_valid__llamavid.json\n\"\"\"\n\ndef main():\n    parser = argparse.ArgumentParser()\n    parser.add_argument('--video_root', type=str, )\n    parser.add_argument('--data_json_file', type=str, )\n    parser.add_argument('--output_json_file', type=str, default=None)\n    parser.add_argument('--port', type=int, default=[8000, ], nargs='+')\n    parser.add_argument('--repeat_num', type=int, default=10)\n    args = parser.parse_args()\n    for port in args.port:\n        _PORTS.put(port)    \n\n    video_root = args.video_root\n    data_json = json.load(open(args.data_json_file, 'r'))\n    out_json_file = args.data_json_file.replace('.json', '_llamavid.json') if args.output_json_file is None else args.output_json_file\n\n    params_list = []\n    for video_name in data_json['videos'].keys():\n        video_data = data_json['videos'][video_name]\n        video_dir = os.path.join(video_root, video_name)\n        for obj_id in video_data['expressions'].keys():\n            exp = video_data['expressions'][obj_id]['exp']\n            if exp[-1] == '?':\n                exp = exp[:-1]\n            question = (\"If I want to find '\" + exp + \"', which percentage mark of the video should I check?\\n \\\n            Please choose one answer from 0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90%, and 100%.\")\n            params_list.extend([(video_dir, question)] * args.repeat_num)\n    vid2ques2ans = call_batch(params_list)\n\n    for video_name in tqdm(data_json['videos'].keys()):\n        video_data = data_json['videos'][video_name]\n        video_dir = os.path.join(video_root, video_name)\n        for obj_id in video_data['expressions'].keys():\n            exp = video_data['expressions'][obj_id]['exp']\n            if exp[-1] == '?':\n                exp = exp[:-1]\n            question = (\"If I want to find '\" + exp + \"', which percentage mark of the video should I check?\\n \\\n            Please choose one answer from 0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90%, and 100%.\")\n            tp_list = []\n            for response in vid2ques2ans[video_dir][question]:\n                result = response['answer']\n                for elem, percent in _ELEM_PERCENT_LIST:\n                    if elem in result:\n                        tp_list.append(percent)\n                        break\n            tt = 0.5 if len(tp_list) == 0 else np.array(tp_list).mean()\n            video_data['expressions'][obj_id]['tp'] = tt\n    with open(out_json_file, 'w') as f:\n        json.dump(data_json, f, indent=4)\n\nif __name__ == '__main__':\n    main()"
  },
  {
    "path": "utils_llamavid/llamavid_server.py",
    "content": "import sys\nsys.path.insert(0, './LLaMA-VID')\n\nimport cv2\nimport os\nimport os.path as osp\nimport math\nimport json\nimport torch\nimport pickle\nimport argparse\nimport warnings\nimport numpy as np\nimport whisper\nfrom typing import Any\nfrom flask import Flask, request\nfrom decord import VideoReader, cpu\nfrom transformers import CLIPVisionModel, CLIPImageProcessor, AutoTokenizer, AutoModelForCausalLM, AutoConfig, BitsAndBytesConfig\nfrom llamavid.model.multimodal_encoder.eva_vit import EVAVisionTowerLavis\nfrom llamavid.constants import IMAGE_TOKEN_INDEX, DEFAULT_IMAGE_TOKEN, DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN, DEFAULT_IMAGE_PATCH_TOKEN\nfrom llamavid.conversation import conv_templates, SeparatorStyle\nfrom llamavid.model.builder import load_pretrained_model\nfrom llamavid.train.llama_flash_attn_monkey_patch import replace_llama_attn_with_flash_attn\nfrom llava.utils import disable_torch_init\nfrom llava.mm_utils import tokenizer_image_token, get_model_name_from_path, KeywordsStoppingCriteria\nfrom llamavid.model import *\n\nfrom importlib.util import find_spec\nif find_spec(\"gpustat\") is None: os.system(\"pip install gpustat\")\nimport GPUtil\n\nclass VideoFeatureExtractor:\n\n    def __init__(\n        self, \n        vision_tower    : str,\n        image_processor : str,\n        clip_infer_batch: int,\n        gpu_id          : int,\n        keep_last       : bool = True, # 保留最后一个视频的特征, 便于连续调用\n    ):\n        gpu_list = [_.id for _ in GPUtil.getGPUs()]\n        assert gpu_id in gpu_list, f'gpu_id {gpu_id} not in {gpu_list}'\n        torch.cuda.set_device(gpu_id)\n        self.device = torch.device(f'cuda:{gpu_id}')\n\n        self.vision_tower = EVAVisionTowerLavis(vision_tower, image_processor, args=None).to(self.device)\n        self.vision_tower.eval()\n        self.image_processor = self.vision_tower.image_processor\n        self.clip_infer_batch = clip_infer_batch\n\n        self.keep_last = keep_last\n        self.last_video_dir = None\n        self.last_video_features = None\n\n    @torch.no_grad()\n    def __call__(self, video_dir: str) -> dict:\n        # Load video\n        frame_path_list = sorted([osp.join(video_dir, x) for x in os.listdir(video_dir) if x.endswith('.jpg')])\n        frame_list = [cv2.imread(x) for x in frame_path_list]\n        frame_list = [cv2.cvtColor(x, cv2.COLOR_BGR2RGB) for x in frame_list]\n        num_frame = len(frame_list)\n\n        # Extract video features\n        video_input = '<image>' * num_frame\n        if self.keep_last and self.last_video_dir == video_dir:\n            video_features = self.last_video_features\n        else:\n            video_tensor = self.image_processor.preprocess(frame_list, return_tensors='pt')['pixel_values'].half()\n            video_features = torch.FloatTensor(num_frame, 257, 1408).fill_(0)\n            n_iter = int(math.ceil(num_frame / float(self.clip_infer_batch)))\n            for i in range(n_iter):\n                start = i * self.clip_infer_batch\n                end = min((i + 1) * self.clip_infer_batch, num_frame)\n                video_batch = video_tensor[start:end].to(self.device)\n                batch_features = self.vision_tower(video_batch)\n                video_features[start:end] = batch_features.detach()\n            if self.keep_last:\n                self.last_video_dir = video_dir\n                self.last_video_features = video_features\n\n        return dict(feats=video_features, inputs=video_input)\n\nclass LLaMAVIDGenerator:\n\n    PROMPT_START = 'Below is a movie. Memorize the content and answer my question after watching this movie.'\n    PROMPT_END   = 'Now the movie end.'\n\n    def __init__(\n        self, \n        model_path  : str,\n        gpu_id      : int,\n        video_token : int  = 2,\n        model_base  : str  = None,\n        load_8bit   : bool = False,\n        load_4bit   : bool = False,\n        conv_mode   : str  = 'vicuna_v1',\n        vision_tower: str  = None,\n    ):\n        # gpu_list = [_.id for _ in GPUtil.getGPUs()]\n        # assert gpu_id in gpu_list, f'gpu_id {gpu_id} not in {gpu_list}'\n        # torch.cuda.set_device(gpu_id)\n        # self.device = torch.device(f'cuda:{gpu_id}')\n\n        self.conv_mode   = conv_mode\n        self.video_token = video_token\n\n        replace_llama_attn_with_flash_attn(inference=True)\n        model_name = get_model_name_from_path(model_path)\n        # self.tokenizer, self.model, self.image_processor, self.context_len = load_pretrained_model(model_path, model_base, model_name, load_8bit, load_4bit, device = self.device, device_map = {})\n        self.tokenizer, self.model, self.image_processor, self.context_len = load_pretrained_model(model_path, model_base, model_name, load_8bit, load_4bit, )\n        self.model.eval()\n        # self.model = self.model.to(self.device)\n\n\n    def __call__(\n        self, \n        video_info  : dict,\n        question    : str,\n        prompt_start: str = None,\n        prompt_end  : str = None\n    ) -> dict:\n        video = video_info['feats'][:, 1:].half()\n        video = [video]\n\n        prompt_input = video_info['inputs'].replace(DEFAULT_IMAGE_TOKEN, DEFAULT_IMAGE_TOKEN * self.video_token)\n        prompt_start = prompt_start or self.PROMPT_START\n        prompt_end   = prompt_end   or self.PROMPT_END\n        prompt       = prompt_start + prompt_input + prompt_end\n\n        conv = conv_templates[self.conv_mode].copy()\n        if self.model.config.mm_use_im_start_end:\n            question = DEFAULT_IM_START_TOKEN + prompt + DEFAULT_IM_END_TOKEN + '\\n' + question\n        else:\n            question = prompt + '\\n' + question\n        \n        conv = conv_templates[self.conv_mode].copy()\n        conv.append_message(conv.roles[0], question)\n        conv.append_message(conv.roles[1], None)\n        prompt = conv.get_prompt()\n\n        input_ids = tokenizer_image_token(prompt, self.tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(0).cuda()\n        print('> Input token num:', len(input_ids[0]))\n\n        stop_str = conv.sep if conv.sep_style != SeparatorStyle.TWO else conv.sep2\n        keywords = [stop_str]\n        stopping_criteria = KeywordsStoppingCriteria(keywords, self.tokenizer, input_ids)\n\n        cur_prompt = question\n        with torch.inference_mode():\n            self.model.update_prompt([[cur_prompt]])\n            output_ids = self.model.generate(\n                input_ids,\n                images            = video,\n                do_sample         = True,\n                temperature       = 0.6,\n                top_p             = 0.9,\n                max_new_tokens    = 1024,\n                use_cache         = True,\n                stopping_criteria = [stopping_criteria]\n            )\n\n        input_token_len = input_ids.shape[1]\n        n_diff_input_output = (input_ids != output_ids[:, :input_token_len]).sum().item()\n        if n_diff_input_output > 0:\n            print(f'[Warning] {n_diff_input_output} output_ids are not the same as the input_ids')\n        outputs = self.tokenizer.batch_decode(output_ids[:, input_token_len:], skip_special_tokens=True)[0]\n        outputs = outputs.strip()\n        if outputs.endswith(stop_str):\n            outputs = outputs[:-len(stop_str)]\n        outputs = outputs.strip()\n\n        return dict(prompt=prompt, question=question, answer=outputs)\n\nclass Inferencer:\n    def __init__(\n        self, \n        gpu_id          : int,\n        # CLIP\n        vision_tower    : str,\n        image_processor : str,\n        clip_infer_batch: int,\n        # LLaMA-VID\n        model_path      : str,\n        video_token     : int = 2,\n        model_base      : str = None,\n        load_8bit       : bool = False,\n        load_4bit       : bool = False,\n        conv_mode       : str = 'vicuna_v1',\n    ):\n        self.video_feature_extractor = VideoFeatureExtractor(vision_tower, image_processor, clip_infer_batch, gpu_id)\n        self.llama_vid_generator = LLaMAVIDGenerator(model_path, gpu_id, video_token, model_base, load_8bit, load_4bit, conv_mode, vision_tower)\n    \n    def __call__(self, video_dir: str, question: str):\n        video_info = self.video_feature_extractor(video_dir)\n        return self.llama_vid_generator(video_info, question)\n\nclass InferenceServer(Inferencer):\n\n    def __init__(self, **kwargs):\n        port = kwargs.pop('port')\n        super().__init__(**kwargs)\n\n        server = Flask(__name__)\n        server.route('/post', methods=['POST'])(self.post)\n        server.run(host=\"0.0.0.0\", port=port, threaded=False)\n\n    def post(self):\n        if request.method == \"POST\":\n            video_dir = request.json.get('video_dir')\n            question  = request.json.get('question')\n            result = self(video_dir, question)\n            return json.dumps(result)\n\n\"\"\"\npython utils_llamavid/llamavid_server.py \\\n    --vision_tower /mnt/public02/usr/yancilin/llama-vid-2/model_zoo/LAVIS/eva_vit_g.pth \\\n    --image_processor /mnt/public02/usr/yancilin/clyan_data/weights/openai/clip-vit-large-patch14 \\\n    --model-path /mnt/public02/usr/yancilin/clyan_data/weights/llama-vid/YanweiLi/llama-vid-13b-full-224-video-fps-1\n\"\"\"\n\ndef parse_args():\n    parser = argparse.ArgumentParser(description=\"Extract CLIP feature and subtitles for a video\")\n    # CLIP\n    parser.add_argument(\"--clip_infer_batch\", required=False, type=int, default=48, help=\"Number of frames/images to perform batch inference.\")\n    parser.add_argument(\"--vision_tower\",     required=True, type=str, help=\"Path to EVA vision tower.\")\n    parser.add_argument(\"--image_processor\",  required=True, type=str, help=\"Path to CLIP image processor.\")\n    # LLaMA-VID\n    parser.add_argument(\"--model-path\",  type=str, required=True, )\n    parser.add_argument(\"--model-base\",  type=str, default=None)\n    parser.add_argument(\"--video-token\", type=int, default=2)\n    parser.add_argument(\"--gpu-id\",      type=int, default=0)\n    parser.add_argument(\"--port\",        type=int, default=8000)\n    parser.add_argument(\"--conv-mode\",   type=str, default='vicuna_v1')\n    parser.add_argument(\"--load-8bit\",   action=\"store_true\")\n    parser.add_argument(\"--load-4bit\",   action=\"store_true\")\n    args = parser.parse_args()\n    return args\n\ndef main():\n    args = parse_args()\n    print(args)\n    # 修改 YanweiLi/llama-vid-13b-full-224-video-fps-1 中 mm_vision_tower 的值\n    cfg_path = osp.join(args.model_path, 'config.json')\n    cfg = json.load(open(cfg_path, 'r'))\n    cfg['mm_vision_tower'] = args.vision_tower\n    cfg['image_processor'] = './LLaMA-VID/llamavid/processor/clip-patch14-224'\n    json.dump(cfg, open(cfg_path, 'w'), indent=4)\n\n    inferencer = InferenceServer(\n        port             = args.port,\n        gpu_id           = args.gpu_id,\n        vision_tower     = args.vision_tower,\n        image_processor  = args.image_processor,\n        clip_infer_batch = args.clip_infer_batch,\n        model_path       = args.model_path,\n        video_token      = args.video_token,\n        model_base       = args.model_base,\n        load_8bit        = args.load_8bit,\n        load_4bit        = args.load_4bit,\n        conv_mode        = args.conv_mode,\n    )\n\nif __name__ == \"__main__\":\n    main()"
  }
]